From b60ab19b7c727b2c1b43851a2de2a98a9f5429cf Mon Sep 17 00:00:00 2001 From: Stanimir Stoyanov Date: Mon, 11 Jul 2016 15:54:15 +0300 Subject: [PATCH 01/48] Fixes #11759 and deletes expired keys --- phalcon/cache/backend/file.zep | 222 +++++++++++++++++++++++++++------ unit-tests/CacheTest.php | 68 ++++++++++ 2 files changed, 253 insertions(+), 37 deletions(-) diff --git a/phalcon/cache/backend/file.zep b/phalcon/cache/backend/file.zep index d0acf6a8235..fd2bc3b1869 100644 --- a/phalcon/cache/backend/file.zep +++ b/phalcon/cache/backend/file.zep @@ -100,9 +100,14 @@ class File extends Backend /** * Returns a cached content */ - public function get(string keyName, int lifetime = null) -> var | null + public function get(string keyName, var lifetime = null) -> var | null { - var prefixedKey, cacheDir, cacheFile, frontend, lastLifetime, ttl, cachedContent, ret, modifiedTime; + var prefixedKey, cacheDir, cacheFile, frontend, lastLifetime, cachedContent, ret; + int createdTime, ttl; + + if lifetime != null && lifetime < 1 { + throw new Exception("The lifetime must be at least 1 second"); + } let prefixedKey = this->_prefix . this->getKey(keyName); let this->_lastKey = prefixedKey; @@ -117,33 +122,49 @@ class File extends Backend let frontend = this->_frontend; + let cachedContent = json_decode(file_get_contents(cacheFile), true); + /** * Take the lifetime from the frontend or read it from the set in start() + * if the cachedContent is not a valid json array */ if !lifetime { let lastLifetime = this->_lastLifetime; - if !lastLifetime { - let ttl = (int) frontend->getLifeTime(); + if this->isValidArray(cachedContent, "lifetime") { + let ttl = (int) cachedContent["lifetime"]; } else { - let ttl = (int) lastLifetime; + let lastLifetime = this->_lastLifetime; + if !lastLifetime { + let ttl = (int) frontend->getLifeTime(); + } else { + let ttl = (int) lastLifetime; + } } } else { let ttl = (int) lifetime; } clearstatcache(true, cacheFile); - let modifiedTime = (int) filemtime(cacheFile); + if !this->isValidArray(cachedContent, "created") { + let createdTime = (int) filemtime(cacheFile); + } else { + let createdTime = (int) cachedContent["created"]; + } /** * Check if the file has expired * The content is only retrieved if the content has not expired */ - if modifiedTime + ttl > time() { + if !(time() - ttl > createdTime) { /** * Use file-get-contents to control that the openbase_dir can't be skipped */ - let cachedContent = file_get_contents(cacheFile); + if !this->isValidArray(cachedContent, "content") { + let cachedContent = file_get_contents(cacheFile); + } else { + let cachedContent = cachedContent["content"]; + } if cachedContent === false { throw new Exception("Cache file ". cacheFile. " could not be opened"); } @@ -157,7 +178,15 @@ class File extends Backend let ret = frontend->afterRetrieve(cachedContent); return ret; } + } else { + /** + * As the content is expired, deleting the cache file + */ + this->delete(keyName); + return null; } + } else { + return null; } return null; @@ -170,9 +199,16 @@ class File extends Backend * @param string content * @param int lifetime */ - public function save(var keyName = null, var content = null, lifetime = null, boolean stopBuffer = true) -> boolean + public function save(var keyName = null, var content = null, var lifetime = null, boolean stopBuffer = true) -> boolean { - var lastKey, frontend, cacheDir, isBuffering, cacheFile, cachedContent, preparedContent, status; + var lastKey, frontend, cacheDir, isBuffering, cacheFile, cachedContent, preparedContent, status, + finalContent, lastLifetime; + + int ttl; + + if lifetime != null && lifetime < 1 { + throw new Exception("The lifetime must be at least 1 second"); + } if keyName === null { let lastKey = this->_lastKey; @@ -205,10 +241,27 @@ class File extends Backend let preparedContent = cachedContent; } + let preparedContent = frontend->beforeStore(cachedContent); + if !lifetime { + let lastLifetime = this->_lastLifetime; + if !lastLifetime { + let ttl = (int) frontend->getLifeTime(); + } else { + let ttl = (int) lastLifetime; + } + } else { + let ttl = (int) lifetime; + } /** * We use file_put_contents to respect open-base-dir directive */ let status = file_put_contents(cacheFile, preparedContent); + if !is_numeric(cachedContent) { + let finalContent = json_encode(["created": time(), "lifetime": ttl, "content": preparedContent]); + } else { + let finalContent = json_encode(["created": time(), "lifetime": ttl, "content": cachedContent]); + } + let status = file_put_contents(cacheFile, finalContent); if status === false { throw new Exception("Cache file ". cacheFile . " could not be written"); @@ -300,7 +353,9 @@ class File extends Backend */ public function exists(var keyName = null, int lifetime = null) -> boolean { - var lastKey, prefix, cacheFile, ttl, modifiedTime; + var lastKey, prefix, cacheFile, cachedContent; + int ttl; + bool cacheFileExists; if !keyName { let lastKey = this->_lastKey; @@ -313,29 +368,57 @@ class File extends Backend let cacheFile = this->_options["cacheDir"] . lastKey; - if file_exists(cacheFile) { + let cacheFileExists = file_exists(cacheFile); + + if cacheFileExists { /** * Check if the file has expired */ + let cachedContent = json_decode(file_get_contents(cacheFile), true); if !lifetime { - let ttl = (int) this->_frontend->getLifeTime(); + if this->isValidArray(cachedContent, "lifetime") { + let ttl = (int) cachedContent["lifetime"]; + } else { + let ttl = (int) this->_frontend->getLifeTime(); + } } else { let ttl = (int) lifetime; } clearstatcache(true, cacheFile); - let modifiedTime = (int) filemtime(cacheFile); - - if modifiedTime + ttl > time() { + if !this->isValidArray(cachedContent, "created") && filemtime(cacheFile) + ttl > time() { return true; + } else { + if (cachedContent["created"] + ttl > time()) { + return true; + } } } } + /** + * If the cache file exists and is expired, delete it + */ + if cacheFileExists { + this->delete(keyName); + } + return false; } + /** + * Check if given variable is array, containing the key $cacheKey + * + * @param array|null cachedContent + * @param string|null cacheKey + * @return bool + */ + private function isValidArray(var cachedContent = null, var cacheKey = null) + { + return (is_array(cachedContent) && array_key_exists(cacheKey, cachedContent)); + } + /** * Increment of a given key, by number $value * @@ -343,8 +426,9 @@ class File extends Backend */ public function increment(var keyName = null, int value = 1) -> int | null { - var prefixedKey, cacheFile, frontend, lifetime, ttl, - cachedContent, result, modifiedTime; + var prefixedKey, cacheFile, frontend, + cachedContent, result, lastLifetime, newValue; + int modifiedTime, ttl; let prefixedKey = this->_prefix . this->getKey(keyName), this->_lastKey = prefixedKey, @@ -354,44 +438,73 @@ class File extends Backend let frontend = this->_frontend; + /** + * Check if the file has expired + */ + let cachedContent = json_decode(file_get_contents(cacheFile), true); + /** * Take the lifetime from the frontend or read it from the set in start() + * if the cachedContent is not a valid array */ - let lifetime = this->_lastLifetime; - if !lifetime { - let ttl = frontend->getLifeTime(); + if this->isValidArray(cachedContent, "lifetime") { + let ttl = (int) cachedContent["lifetime"]; } else { - let ttl = lifetime; + let lastLifetime = this->_lastLifetime; + if !lastLifetime { + let ttl = (int) frontend->getLifeTime(); + } else { + let ttl = (int) lastLifetime; + } } clearstatcache(true, cacheFile); - let modifiedTime = (int) filemtime(cacheFile); + + if !this->isValidArray(cachedContent, "created") { + let modifiedTime = (int) filemtime(cacheFile); + } else { + let modifiedTime = (int) cachedContent["created"]; + } /** * Check if the file has expired * The content is only retrieved if the content has not expired */ - if modifiedTime + ttl > time() { + if !(time() - ttl > modifiedTime) { /** * Use file-get-contents to control that the openbase_dir can't be skipped */ - let cachedContent = file_get_contents(cacheFile); + if !this->isValidArray(cachedContent, "content") { + let cachedContent = file_get_contents(cacheFile); + } else { + let cachedContent = cachedContent["content"]; + } if cachedContent === false { throw new Exception("Cache file " . cacheFile . " could not be opened"); } if is_numeric(cachedContent) { + let newValue = cachedContent + value; + let result = json_encode(["created": time(), "lifetime": ttl, "content": newValue]); - let result = cachedContent + value; if file_put_contents(cacheFile, result) === false { throw new Exception("Cache directory could not be written"); } - return result; + return newValue; + } else { + throw new Exception("The cache value is not numeric, therefore could not be incremented"); } + } else { + /** + * The cache file is expired, so we're removing it + */ + this->delete(keyName); + return null; } + return null; } return null; @@ -404,7 +517,8 @@ class File extends Backend */ public function decrement(var keyName = null, int value = 1) -> int | null { - var prefixedKey, cacheFile, lifetime, ttl, cachedContent, result, modifiedTime; + var prefixedKey, cacheFile, cachedContent, result, lastLifetime, newValue; + int ttl, modifiedTime, lifetime; let prefixedKey = this->_prefix . this->getKey(keyName), this->_lastKey = prefixedKey, @@ -412,44 +526,77 @@ class File extends Backend if file_exists(cacheFile) { + /** + * Check if the file has expired + */ + let cachedContent = json_decode(file_get_contents(cacheFile), true); + /** * Take the lifetime from the frontend or read it from the set in start() + * if the cachedContent is not a valid array */ - let lifetime = this->_lastLifetime; if !lifetime { - let ttl = this->_frontend->getLifeTime(); + if this->isValidArray(cachedContent, "lifetime") { + let ttl = (int) cachedContent["lifetime"]; + } else { + let lastLifetime = this->_lastLifetime; + if !lastLifetime { + let ttl = (int) this->_frontend->getLifeTime(); + } else { + let ttl = (int) lastLifetime; + } + } + } else { + let ttl = (int) lifetime; + } + + if !this->isValidArray(cachedContent, "created") { + let modifiedTime = (int) filemtime(cacheFile); + let ttl = (int) lifetime; } else { - let ttl = lifetime; + let modifiedTime = (int) cachedContent["created"]; } clearstatcache(true, cacheFile); - let modifiedTime = (int) filemtime(cacheFile); /** * Check if the file has expired * The content is only retrieved if the content has not expired */ - if modifiedTime + ttl > time() { + if !(time() - ttl > modifiedTime) { /** * Use file-get-contents to control that the openbase_dir can't be skipped */ - let cachedContent = file_get_contents(cacheFile); + if !this->isValidArray(cachedContent, "content") { + let cachedContent = file_get_contents(cacheFile); + } else { + let cachedContent = cachedContent["content"]; + } if cachedContent === false { throw new Exception("Cache file " . cacheFile . " could not be opened"); } if is_numeric(cachedContent) { - - let result = cachedContent - value; + let newValue = cachedContent - value; + let result = json_encode(["created": time(), "lifetime": ttl, "content": newValue]); if file_put_contents(cacheFile, result) === false { throw new Exception("Cache directory can't be written"); } - return result; + return newValue; + } else { + throw new Exception("The cache value is not numeric, therefore could not decrement it"); } + } else { + /** + * The cache file is expired, so we're removing it + */ + this->delete(keyName); + return null; } + return null; } return null; @@ -507,3 +654,4 @@ class File extends Backend return this; } } + diff --git a/unit-tests/CacheTest.php b/unit-tests/CacheTest.php index 4600480ce38..bc902b593cb 100644 --- a/unit-tests/CacheTest.php +++ b/unit-tests/CacheTest.php @@ -70,6 +70,74 @@ public function testDataFileCacheDecrement() $this->assertEquals(95, $cache->decrement('foo', 4)); } + /** + * @expectedException \Exception + */ + public function testDataFileCacheSaveNegativeLifetime() + { + $frontCache = new Phalcon\Cache\Frontend\Data(); + + $cache = new Phalcon\Cache\Backend\File($frontCache, array( + 'cacheDir' => 'unit-tests/cache/' + )); + $cache->save('foo', "1", -1); + } + + /** + * @expectedException \Exception + */ + public function testDataFileCacheGetNegativeLifetime() + { + $frontCache = new Phalcon\Cache\Frontend\Data(); + + $cache = new Phalcon\Cache\Backend\File($frontCache, array( + 'cacheDir' => 'unit-tests/cache/' + )); + $cache->save('foo', "1"); + $cache->get('foo', -1); + } + + public function testDataFileCacheGetNonexistentCache() + { + $frontCache = new Phalcon\Cache\Frontend\Data(); + + $cache = new Phalcon\Cache\Backend\File($frontCache, array( + 'cacheDir' => 'unit-tests/cache/' + )); + if ($cache->exists('foo')) { + $cache->delete('foo'); + } + $this->assertEquals($cache->get('foo'), null); + } + + /** + * @expectedException \Exception + */ + public function testDataFileCacheIncrementNonNumeric() + { + $frontCache = new Phalcon\Cache\Frontend\Data(); + + $cache = new Phalcon\Cache\Backend\File($frontCache, array( + 'cacheDir' => 'unit-tests/cache/' + )); + $cache->save('foo', "a"); + $cache->increment('foo', 1); + } + + /** + * @expectedException \Exception + */ + public function testDataFileCacheDecrementNonNumeric() + { + $frontCache = new Phalcon\Cache\Frontend\Data(); + + $cache = new Phalcon\Cache\Backend\File($frontCache, array( + 'cacheDir' => 'unit-tests/cache/' + )); + $cache->save('foo', "a"); + $cache->decrement('foo', 1); + } + /** * @expectedException \Exception */ From 9c3a70fd845fcf331a05a922171f359efe06f25f Mon Sep 17 00:00:00 2001 From: Cameron Hall Date: Wed, 28 Nov 2018 22:40:41 +1100 Subject: [PATCH 02/48] Textarea output is automatically escaped --- CHANGELOG-4.0.md | 1 + phalcon/tag.zep | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG-4.0.md b/CHANGELOG-4.0.md index 70e6031b380..8356fb34629 100644 --- a/CHANGELOG-4.0.md +++ b/CHANGELOG-4.0.md @@ -39,6 +39,7 @@ - Fixed `\Phalcon\Http\Response::setFileToSend` filename last much _ - Changed `Phalcon\Tag::getTitle()`. It returns only the text. It accepts `prepend`, `append` booleans to prepend or append the relevant text to the title. [#13547](https://github.com/phalcon/cphalcon/issues/13547) - Changed `Phalcon\Di\Service` constructor to no longer takes the name of the service. +- Changed `Phalon\Tag::textArea` to use `htmlspecialchars` to prevent XSS injection. [#12428](https://github.com/phalcon/cphalcon/issues/12428) ## Removed - PHP < 7.0 no longer supported diff --git a/phalcon/tag.zep b/phalcon/tag.zep index 6efaacccafa..44122593bf0 100644 --- a/phalcon/tag.zep +++ b/phalcon/tag.zep @@ -1014,7 +1014,7 @@ class Tag } let code = self::renderAttributes(""; + code .= ">" . htmlspecialchars(content) . ""; return code; } From c0af848a72cc0fd0ae1189e55883f90b40ed03b6 Mon Sep 17 00:00:00 2001 From: Nikolaos Dimopoulos Date: Tue, 4 Dec 2018 14:03:48 -0500 Subject: [PATCH 03/48] [#13543] Add more pdo types (#13562) * [#13543] - Work on the ENUM for PostgreSql * [#13543] - Adjusted tests * [#13543] - Corrected if clause * [#13543] - Added enum to the PG sample file * [#13543] - Trying to correct the sql file again * [#13543] - Reverting changes * [#13543] - Reverting tests and sql file * [#13543] - Initial commit for a nanobox isolated environment for tests * [#13543] - Reintroduced enum type parsing * [#13543] - Adjusted test * [#13543] - Again reverting some changes * [#13543] - Reorganized the if statement * [#13543] - Reorganized if statement * [#13543] - More sorting * [#13543] - Reorganization * [#13543] - Added bool and bit * [#13543] - Added initial describe test * [#13543] - Corrections to the table name and import file * [#13543] - Minor change to the boxfile; Added boxfile constants to the tests; Changed case in SQL file * [#13543] - Changed JSON type to TEXT * [#13543] - More work on the db * [#13543] - Another correction to the sql file * [#13543] - Test corrections * [#13543] - Test corrections * [#13543] - Corrected the bind parameter type * [#13543] - Added more fields to the column describe test * [#13543] - Added all the possible columns for the test * [#13543] - Corrected typo * [#13543] - More corrections * [#13543] - Corrections to the test * [#13543] - More test corrections * [#13543] - Correction for bool * [#13543] - Compilation of php-psr for nanobox * [#13543] - Changes for boolean * [#13543] - Disabling some columns temporarily * [#13543] - Debugging booleans * [#13543] - Minor corrections * [#13543] - Adjustments to the if statements; tinyint(1) is a boolean * [#13543] - Booleans are numbers * [#13543] - Added more fields in the array for the test * [#13543] - Adjusted the array for describe * [#13543] - Corrections for floats * [#13543] - Corrected array index * [#13543] - Added more elements to the array of the test; corrections * [#13543] - Corrected indexes in the test array * [#13543] - Added more assertions * [#13543] - Added indexes tests * [#13543] - Fixed typo in test * [#13543] - Moved the describe test to a better location; Minor corrections * [#13543] - Split tests to two files * [#13543] - Renaming and splitting tests * [#13543] - More test corrections * [#13543] - Corrected size * [#13543] - Added reference tests * [#13543] - More test corrections * [#13543] - Refactoring * [#13543] - More refactoring; Added column as object test * [#13543] - Changed control structure to stitch from if * [#13543] - Added more types for MySQL * [#13543] - Added more types * [#13543] - Aligning equals * [#13543] - Added column constants tests * [#13543] - Corrections and additions to tests * [#13543] - Removed duplicate test; Corrections to the mysql dialect * [#13543] - Corrected if statement * [#13543] - Trying to enable Mysql 5.7 * [#13543] - Trying without the password change * [#13543] - Changed casting for double to be string; Change to the schema for JSON * [#13543] - Corrections to the test and schema * [#13543] - Minor corrections * [#13543] - Initial work for postgresql columns * [#13543] - Corrected namespace * [#13543] - Fixing tests * [#13543] - More test corrections * [#13543] - Corrected schema and tests * [#13543] - Renamed the schema files; other corrections * [#13543] - Corrected schema names * [#13543] - Correction to the schema and tests * [#13543] - Added enum in the tests for mysql * [#13543] - Test corrections * [#13543] - Added enum for postgresql * [#13543] - Adjusted the schemas * [#13543] - Corrections to the dialect for postgresql, schema and adapter * [#13543] - Minor refactoring in the dialects; Adjustment to tests * [#13543] - Changed syntax for foreign references in schema; Debugging Columns * [#13543] - More test corrections * [#13543] - More test corrections * [#13543] - Corrected owner * [#13543] - Reverted the schema to what it iwas * [#13543] - Trying to correct the schema * [#13543] - Skipping reference tests for portgresql * [#13543] - Corrected parameters for test * [#13543] - Updated the changelog * [#13543] - Removed boxfile - will send upstream in different commit * [#13543] - Reformatted class to trigger build * [#13543] - Corrected names of schema files --- .travis.yml | 10 +- CHANGELOG-4.0.md | 1 + phalcon/db/adapter/pdo.zep | 5 +- phalcon/db/adapter/pdo/mysql.zep | 260 +- phalcon/db/adapter/pdo/postgresql.zep | 294 +- phalcon/db/adapter/pdo/sqlite.zep | 99 +- phalcon/db/column.zep | 65 +- phalcon/db/columninterface.zep | 3 - phalcon/db/dialect.zep | 40 + phalcon/db/dialect/mysql.zep | 197 +- phalcon/db/dialect/postgresql.zep | 75 +- phalcon/db/dialect/sqlite.zep | 95 +- .../model/metadata/strategy/annotations.zep | 113 +- tests/README.md | 4 +- tests/_bootstrap.php | 24 +- tests/_ci/setup-dbs.sh | 8 +- ...lcon_test.sql => phalcon-schema-mysql.sql} | 825 +- .../schemas/phalcon-schema-postgresql.sql | 11082 ++++++++++++++++ ...=> phalcon-schema-sqlite-translations.sql} | 0 ...con_test.sql => phalcon-schema-sqlite.sql} | 0 .../_data/schemas/postgresql/phalcon_test.sql | 6951 ---------- .../Helper/Db/Adapter/Pdo/MysqlTrait.php | 58 + .../Helper/Db/Adapter/Pdo/PostgresqlTrait.php | 58 + tests/unit.suite.yml | 2 +- tests/unit/Db/Adapter/Pdo/ColumnsBase.php | 103 + .../unit/Db/Adapter/Pdo/Mysql/ColumnsCest.php | 734 + .../unit/Db/Adapter/Pdo/Mysql/TablesCest.php | 86 + tests/unit/Db/Adapter/Pdo/MysqlTest.php | 74 - .../Db/Adapter/Pdo/Postgresql/ColumnsCest.php | 755 ++ .../Db/Adapter/Pdo/Postgresql/TablesCest.php | 48 + tests/unit/Db/Adapter/Pdo/PostgresqlTest.php | 34 - tests/unit/Db/Adapter/Pdo/TablesBase.php | 43 + tests/unit/Db/ColumnCest.php | 61 + tests/unit/Db/ColumnTest.php | 208 - tests/unit/VersionTest.php | 138 +- unit-tests/DbDescribeTest.php | 290 +- 36 files changed, 14291 insertions(+), 8552 deletions(-) rename tests/_data/schemas/{mysql/phalcon_test.sql => phalcon-schema-mysql.sql} (97%) create mode 100644 tests/_data/schemas/phalcon-schema-postgresql.sql rename tests/_data/schemas/{sqlite/translations.sql => phalcon-schema-sqlite-translations.sql} (100%) rename tests/_data/schemas/{sqlite/phalcon_test.sql => phalcon-schema-sqlite.sql} (100%) delete mode 100644 tests/_data/schemas/postgresql/phalcon_test.sql create mode 100644 tests/_support/Helper/Db/Adapter/Pdo/MysqlTrait.php create mode 100644 tests/_support/Helper/Db/Adapter/Pdo/PostgresqlTrait.php create mode 100644 tests/unit/Db/Adapter/Pdo/ColumnsBase.php create mode 100644 tests/unit/Db/Adapter/Pdo/Mysql/ColumnsCest.php create mode 100644 tests/unit/Db/Adapter/Pdo/Mysql/TablesCest.php create mode 100644 tests/unit/Db/Adapter/Pdo/Postgresql/ColumnsCest.php create mode 100644 tests/unit/Db/Adapter/Pdo/Postgresql/TablesCest.php create mode 100644 tests/unit/Db/Adapter/Pdo/TablesBase.php create mode 100644 tests/unit/Db/ColumnCest.php delete mode 100644 tests/unit/Db/ColumnTest.php diff --git a/.travis.yml b/.travis.yml index d61e6d934b5..c7f94846aa7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,10 +18,14 @@ branches: addons: apt: + sources: + - mysql-5.7-trusty packages: - - beanstalkd - - gdb - - lcov + - beanstalkd + - gdb + - lcov + - mysql-server + - mysql-client matrix: fast_finish: true diff --git a/CHANGELOG-4.0.md b/CHANGELOG-4.0.md index 8356fb34629..91915c7c01c 100644 --- a/CHANGELOG-4.0.md +++ b/CHANGELOG-4.0.md @@ -10,6 +10,7 @@ - Added ability to set a custom template for the Flash Messenger. [#13445](https://github.com/phalcon/cphalcon/issues/13445) - Added `forUpdate` in the Sqlite dialect to override the method from the base dialect. [#13539](https://github.com/phalcon/cphalcon/issues/13539) - Added `TYPE_ENUM` in the Mysql adapter. [#11368](https://github.com/phalcon/cphalcon/issues/11368) +- Added more column types for the Mysql adapter. The adapter supports `TYPE_BIGINTEGER`, `TYPE_BIT`, `TYPE_BLOB`, `TYPE_BOOLEAN`, `TYPE_CHAR`, `TYPE_DATE`, `TYPE_DATETIME`, `TYPE_DECIMAL`, `TYPE_DOUBLE`, `TYPE_ENUM`, `TYPE_FLOAT`, `TYPE_INTEGER`, `TYPE_JSON`, `TYPE_JSONB`, `TYPE_LONGBLOB`, `TYPE_LONGTEXT`, `TYPE_MEDIUMBLOB`, `TYPE_MEDIUMINTEGER`, `TYPE_MEDIUMTEXT`, `TYPE_SMALLINTEGER`, `TYPE_TEXT`, `TYPE_TIME`, `TYPE_TIMESTAMP`, `TYPE_TINYBLOB`, `TYPE_TINYINTEGER`, `TYPE_TINYTEXT`, `TYPE_VARCHAR` [#13151](https://github.com/phalcon/cphalcon/issues/13151), [#12223](https://github.com/phalcon/cphalcon/issues/12223), [#524](https://github.com/phalcon/cphalcon/issues/524), [#13225](https://github.com/phalcon/cphalcon/pull/13225) [@zGaron](https://github.com/zGaron), [#12523](https://github.com/phalcon/cphalcon/pull/12523) [@Studentsov](https://github.com/Studentsov), [#12471](https://github.com/phalcon/cphalcon/pull/12471) [@ruudboon](https://github.com/ruudboon) - Added `Phalcon\Acl\Adapter\Memory::addRole` support multiple inherited - Added `Phalcon\Tag::renderTitle()` that renders the title enclosed in `` tags. [#13547](https://github.com/phalcon/cphalcon/issues/13547) - Added `hasHeader()` method to `Phalcon\Http\Response` to provide the ability to check if a header exists. [PR-12189](https://github.com/phalcon/cphalcon/pull/12189) diff --git a/phalcon/db/adapter/pdo.zep b/phalcon/db/adapter/pdo.zep index 3bfda363358..14012a2c76e 100644 --- a/phalcon/db/adapter/pdo.zep +++ b/phalcon/db/adapter/pdo.zep @@ -496,10 +496,11 @@ abstract class Pdo extends Adapter if typeof dataTypes == "array" && fetch type, dataTypes[wildcard] { /** - * The bind type is double so we try to get the double value + * The bind type needs to be string because the precision + * is lost if it is casted as a double */ if type == Column::BIND_PARAM_DECIMAL { - let castValue = doubleval(value), + let castValue = (string) value, type = Column::BIND_SKIP; } else { if globals_get("db.force_casting") { diff --git a/phalcon/db/adapter/pdo/mysql.zep b/phalcon/db/adapter/pdo/mysql.zep index 545a2bf2ef1..a1b6199e9aa 100644 --- a/phalcon/db/adapter/pdo/mysql.zep +++ b/phalcon/db/adapter/pdo/mysql.zep @@ -97,107 +97,233 @@ class Mysql extends PdoAdapter */ let columnType = field[1]; - if memstr(columnType, "enum") { + /** + * The order of these IF statements matters. Since we are using memstr + * to figure out whether a particular string exists in the columnType + * we will end up with false positives if the order changes. + * + * For instance if we have a `varchar` column and we check for `char` + * first, then that will match. Therefore we have firs the IF + * statements that are "unique" and further down the ones that can + * appear a substrings of the columnType above them. + */ + + switch true { /** - * Enum are treated as char + * BOOL */ - let definition["type"] = Column::TYPE_CHAR; - } elseif memstr(columnType, "bigint") { + case memstr(columnType, "tinyint(1)"): + /** + * tinyint(1) is boolean + */ + let definition["type"] = Column::TYPE_BOOLEAN, + definition["isNumeric"] = true, + definition["bindType"] = Column::BIND_PARAM_BOOL; + break; + /** - * Smallint/Bigint/Integers/Int are int + * BIGINT */ - let definition["type"] = Column::TYPE_BIGINTEGER, - definition["isNumeric"] = true, - definition["bindType"] = Column::BIND_PARAM_INT; - } elseif memstr(columnType, "int") { + case memstr(columnType, "bigint"): + let definition["type"] = Column::TYPE_BIGINTEGER, + definition["isNumeric"] = true, + definition["bindType"] = Column::BIND_PARAM_INT; + break; + /** - * Smallint/Bigint/Integers/Int are int + * MEDIUMINT */ - let definition["type"] = Column::TYPE_INTEGER, - definition["isNumeric"] = true, - definition["bindType"] = Column::BIND_PARAM_INT; - } elseif memstr(columnType, "varchar") { + case memstr(columnType, "mediumint"): + let definition["type"] = Column::TYPE_MEDIUMINTEGER, + definition["isNumeric"] = true, + definition["bindType"] = Column::BIND_PARAM_INT; + break; + /** - * Varchar are varchars + * SMALLINT */ - let definition["type"] = Column::TYPE_VARCHAR; - } elseif memstr(columnType, "datetime") { + case memstr(columnType, "smallint"): + let definition["type"] = Column::TYPE_SMALLINTEGER, + definition["isNumeric"] = true, + definition["bindType"] = Column::BIND_PARAM_INT; + break; + /** - * Special type for datetime + * TINYINT */ - let definition["type"] = Column::TYPE_DATETIME; - } elseif memstr(columnType, "char") { + case memstr(columnType, "tinyint"): + /** + * Smallint/Bigint/Integers/Int are int + */ + let definition["type"] = Column::TYPE_TINYINTEGER, + definition["isNumeric"] = true, + definition["bindType"] = Column::BIND_PARAM_INT; + break; + /** - * Chars are chars + * INT */ - let definition["type"] = Column::TYPE_CHAR; - } elseif memstr(columnType, "date") { + case memstr(columnType, "int"): + let definition["type"] = Column::TYPE_INTEGER, + definition["isNumeric"] = true, + definition["bindType"] = Column::BIND_PARAM_INT; + + break; + /** - * Date are dates + * BIT */ - let definition["type"] = Column::TYPE_DATE; - } elseif memstr(columnType, "timestamp") { + case memstr(columnType, "bit"): + let definition["type"] = Column::TYPE_BIT, + definition["bindType"] = Column::BIND_PARAM_INT; + break; + /** - * Timestamp are dates + * ENUM */ - let definition["type"] = Column::TYPE_TIMESTAMP; - } elseif memstr(columnType, "text") { + case memstr(columnType, "enum"): + let definition["type"] = Column::TYPE_ENUM; + break; + + /** - * Text are varchars + * DATE */ - let definition["type"] = Column::TYPE_TEXT; - } elseif memstr(columnType, "decimal") { + case memstr(columnType, "datetime"): + let definition["type"] = Column::TYPE_DATETIME; + break; + + /** + * DATETIME + */ + case memstr(columnType, "date"): + let definition["type"] = Column::TYPE_DATE; + break; + /** - * Decimals are floats + * DECIMAL - This will need to be a string so as not to lose + * the decimals */ - let definition["type"] = Column::TYPE_DECIMAL, - definition["isNumeric"] = true, - definition["bindType"] = Column::BIND_PARAM_DECIMAL; - } elseif memstr(columnType, "double") { + case memstr(columnType, "decimal"): + let definition["type"] = Column::TYPE_DECIMAL, + definition["isNumeric"] = true; + break; + /** - * Doubles + * DOUBLE */ - let definition["type"] = Column::TYPE_DOUBLE, - definition["isNumeric"] = true, - definition["bindType"] = Column::BIND_PARAM_DECIMAL; - } elseif memstr(columnType, "float") { + case memstr(columnType, "double"): + let definition["type"] = Column::TYPE_DOUBLE, + definition["isNumeric"] = true, + definition["bindType"] = Column::BIND_PARAM_DECIMAL; + break; + /** - * Float/Smallfloats/Decimals are float + * FLOAT */ - let definition["type"] = Column::TYPE_FLOAT, - definition["isNumeric"] = true, - definition["bindType"] = Column::BIND_PARAM_DECIMAL; - } elseif memstr(columnType, "bit") { + case memstr(columnType, "float"): + let definition["type"] = Column::TYPE_FLOAT, + definition["isNumeric"] = true, + definition["bindType"] = Column::BIND_PARAM_DECIMAL; + break; + /** - * Boolean + * MEDIUMBLOB */ - let definition["type"] = Column::TYPE_BOOLEAN, - definition["bindType"] = Column::BIND_PARAM_BOOL; - } elseif memstr(columnType, "tinyblob") { + case memstr(columnType, "mediumblob"): + let definition["type"] = Column::TYPE_MEDIUMBLOB; + break; + /** - * Tinyblob + * LONGBLOB */ - let definition["type"] = Column::TYPE_TINYBLOB; - } elseif memstr(columnType, "mediumblob") { + case memstr(columnType, "longblob"): + let definition["type"] = Column::TYPE_LONGBLOB; + break; + /** - * Mediumblob + * TINYBLOB */ - let definition["type"] = Column::TYPE_MEDIUMBLOB; - } elseif memstr(columnType, "longblob") { + case memstr(columnType, "tinyblob"): + let definition["type"] = Column::TYPE_TINYBLOB; + break; + /** - * Longblob + * BLOB */ - let definition["type"] = Column::TYPE_LONGBLOB; - } elseif memstr(columnType, "blob") { + case memstr(columnType, "blob"): + let definition["type"] = Column::TYPE_BLOB; + break; + /** - * Blob + * TIMESTAMP */ - let definition["type"] = Column::TYPE_BLOB; - } else { + case memstr(columnType, "timestamp"): + let definition["type"] = Column::TYPE_TIMESTAMP; + break; + + /** + * TIME + */ + case memstr(columnType, "time"): + let definition["type"] = Column::TYPE_TIME; + break; + + /** + * JSON + */ + case memstr(columnType, "json"): + let definition["type"] = Column::TYPE_JSON; + break; + + /** + * LONGTEXT + */ + case memstr(columnType, "longtext"): + let definition["type"] = Column::TYPE_LONGTEXT; + break; + + /** + * MEDIUMTEXT + */ + case memstr(columnType, "mediumtext"): + let definition["type"] = Column::TYPE_MEDIUMTEXT; + break; + + /** + * TINYTEXT + */ + case memstr(columnType, "tinytext"): + let definition["type"] = Column::TYPE_TINYTEXT; + break; + + /** + * TEXT + */ + case memstr(columnType, "text"): + let definition["type"] = Column::TYPE_TEXT; + break; + + /** + * VARCHAR + */ + case memstr(columnType, "varchar"): + let definition["type"] = Column::TYPE_VARCHAR; + break; + + /** + * CHAR + */ + case memstr(columnType, "char"): + let definition["type"] = Column::TYPE_CHAR; + break; + /** - * By default is string + * Default */ - let definition["type"] = Column::TYPE_VARCHAR; + default: + let definition["type"] = Column::TYPE_VARCHAR; + break; } /** @@ -205,7 +331,9 @@ class Mysql extends PdoAdapter */ if memstr(columnType, "(") { let matches = null; - if preg_match(sizePattern, columnType, matches) { + if definition["type"] == Column::TYPE_ENUM { + let definition["size"] = substr(columnType, 5, -1); + } elseif preg_match(sizePattern, columnType, matches) { if fetch matchOne, matches[1] { let definition["size"] = (int) matchOne; } diff --git a/phalcon/db/adapter/pdo/postgresql.zep b/phalcon/db/adapter/pdo/postgresql.zep index af9e808de66..e59c3452731 100644 --- a/phalcon/db/adapter/pdo/postgresql.zep +++ b/phalcon/db/adapter/pdo/postgresql.zep @@ -154,117 +154,259 @@ class Postgresql extends PdoAdapter numericSize = field[3], numericScale = field[4]; - if memstr(columnType, "smallint(1)") { + /** + * The order of these IF statements matters. Since we are using memstr + * to figure out whether a particular string exists in the columnType + * we will end up with false positives if the order changes. + * + * For instance if we have a `varchar` column and we check for `char` + * first, then that will match. Therefore we have firs the IF + * statements that are "unique" and further down the ones that can + * appear a substrings of the columnType above them. + */ + + switch true { + /** + * BOOL + */ + case memstr(columnType, "boolean"): + /** + * tinyint(1) is boolean + */ + let definition["type"] = Column::TYPE_BOOLEAN, + definition["isNumeric"] = true, + definition["bindType"] = Column::BIND_PARAM_BOOL; + break; + + /** + * BIGINT + */ + case memstr(columnType, "bigint"): + let definition["type"] = Column::TYPE_BIGINTEGER, + definition["isNumeric"] = true, + definition["bindType"] = Column::BIND_PARAM_INT; + break; + + /** + * MEDIUMINT + */ + case memstr(columnType, "mediumint"): + let definition["type"] = Column::TYPE_MEDIUMINTEGER, + definition["isNumeric"] = true, + definition["bindType"] = Column::BIND_PARAM_INT; + break; + + /** + * SMALLINT + */ + case memstr(columnType, "smallint"): + let definition["type"] = Column::TYPE_SMALLINTEGER, + definition["isNumeric"] = true, + definition["bindType"] = Column::BIND_PARAM_INT; + break; + + /** + * TINYINT + */ + case memstr(columnType, "tinyint"): + /** + * Smallint/Bigint/Integers/Int are int + */ + let definition["type"] = Column::TYPE_TINYINTEGER, + definition["isNumeric"] = true, + definition["bindType"] = Column::BIND_PARAM_INT; + break; + + /** + * INT + */ + case memstr(columnType, "int"): + let definition["type"] = Column::TYPE_INTEGER, + definition["isNumeric"] = true, + definition["bindType"] = Column::BIND_PARAM_INT; + + break; + + /** + * BIT + */ + case memstr(columnType, "bit"): + let definition["type"] = Column::TYPE_BIT, + definition["size"] = numericSize; + break; + + /** + * ENUM + */ + case memstr(columnType, "enum"): + let definition["type"] = Column::TYPE_ENUM; + break; + + /** - * Smallint(1) is boolean + * DATE */ - let definition["type"] = Column::TYPE_BOOLEAN, - definition["bindType"] = Column::BIND_PARAM_BOOL; - } elseif memstr(columnType, "bigint") { + case memstr(columnType, "datetime"): + let definition["type"] = Column::TYPE_DATETIME, + definition["size"] = 0; + break; + /** - * Bigint + * DATETIME */ - let definition["type"] = Column::TYPE_BIGINTEGER, - definition["isNumeric"] = true, - definition["bindType"] = Column::BIND_PARAM_INT; - } elseif memstr(columnType, "int") { + case memstr(columnType, "date"): + let definition["type"] = Column::TYPE_DATE, + definition["size"] = 0; + break; + /** - * Int + * NUMERIC -> DECIMAL - This will need to be a string so as not + * to lose the decimals */ - let definition["type"] = Column::TYPE_INTEGER, - definition["isNumeric"] = true, - definition["size"] = numericSize, - definition["bindType"] = Column::BIND_PARAM_INT; - } elseif memstr(columnType, "double precision") { + case memstr(columnType, "decimal"): + case memstr(columnType, "numeric"): + let definition["type"] = Column::TYPE_DECIMAL, + definition["size"] = numericSize, + definition["isNumeric"] = true, + definition["bindType"] = Column::BIND_PARAM_DECIMAL; + break; + /** - * Double Precision + * DOUBLE */ - let definition["type"] = Column::TYPE_DOUBLE, - definition["isNumeric"] = true, - definition["size"] = numericSize, - definition["bindType"] = Column::BIND_PARAM_DECIMAL; - } elseif memstr(columnType, "real") { + case memstr(columnType, "double precision"): + let definition["type"] = Column::TYPE_DOUBLE, + definition["isNumeric"] = true, + definition["size"] = numericSize, + definition["bindType"] = Column::BIND_PARAM_DECIMAL; + break; + /** - * Real + * FLOAT */ - let definition["type"] = Column::TYPE_FLOAT, - definition["isNumeric"] = true, - definition["size"] = numericSize, - definition["bindType"] = Column::BIND_PARAM_DECIMAL; - } elseif memstr(columnType, "varying") { + case memstr(columnType, "float"): + case memstr(columnType, "real"): + let definition["type"] = Column::TYPE_FLOAT, + definition["isNumeric"] = true, + definition["size"] = numericSize, + definition["bindType"] = Column::BIND_PARAM_DECIMAL; + break; + /** - * Varchar + * MEDIUMBLOB */ - let definition["type"] = Column::TYPE_VARCHAR, - definition["size"] = charSize; - } elseif memstr(columnType, "date") { + case memstr(columnType, "mediumblob"): + let definition["type"] = Column::TYPE_TEXT; + break; + /** - * Special type for datetime + * LONGBLOB */ - let definition["type"] = Column::TYPE_DATE, - definition["size"] = 0; - } elseif memstr(columnType, "timestamp") { + case memstr(columnType, "longblob"): + let definition["type"] = Column::TYPE_LONGBLOB; + break; + /** - * Timestamp + * TINYBLOB */ - let definition["type"] = Column::TYPE_TIMESTAMP; - } elseif memstr(columnType, "numeric") { + case memstr(columnType, "tinyblob"): + let definition["type"] = Column::TYPE_TINYBLOB; + break; + /** - * Numeric + * BLOB */ - let definition["type"] = Column::TYPE_DECIMAL, - definition["isNumeric"] = true, - definition["size"] = numericSize, - definition["scale"] = numericScale, - definition["bindType"] = Column::BIND_PARAM_DECIMAL; - } elseif memstr(columnType, "char") { + case memstr(columnType, "blob"): + let definition["type"] = Column::TYPE_BLOB; + break; + /** - * Chars are chars + * TIMESTAMP */ - let definition["type"] = Column::TYPE_CHAR, - definition["size"] = charSize; - } elseif memstr(columnType, "text") { + case memstr(columnType, "timestamp"): + let definition["type"] = Column::TYPE_TIMESTAMP; + break; + /** - * Text are varchars + * TIME */ - let definition["type"] = Column::TYPE_TEXT, - definition["size"] = charSize; - } elseif memstr(columnType, "float") { + case memstr(columnType, "time"): + let definition["type"] = Column::TYPE_TIME; + break; + /** - * Float/Smallfloats/Decimals are float + * JSONB */ - let definition["type"] = Column::TYPE_FLOAT, - definition["isNumeric"] = true, - definition["size"] = numericSize, - definition["bindType"] = Column::BIND_PARAM_DECIMAL; - } elseif memstr(columnType, "bool") { + case memstr(columnType, "jsonb"): + let definition["type"] = Column::TYPE_JSONB; + break; + /** - * Boolean + * JSON */ - let definition["type"] = Column::TYPE_BOOLEAN, - definition["size"] = 0, - definition["bindType"] = Column::BIND_PARAM_BOOL; - } elseif memstr(columnType, "jsonb") { + case memstr(columnType, "json"): + let definition["type"] = Column::TYPE_JSON; + break; + /** - * Jsonb + * LONGTEXT */ - let definition["type"] = Column::TYPE_JSONB; - } elseif memstr(columnType, "json") { + case memstr(columnType, "longtext"): + let definition["type"] = Column::TYPE_LONGTEXT; + break; + /** - * Json + * MEDIUMTEXT */ - let definition["type"] = Column::TYPE_JSON; - } elseif memstr(columnType, "uuid") { + case memstr(columnType, "mediumtext"): + let definition["type"] = Column::TYPE_MEDIUMTEXT; + break; + + /** + * TINYTEXT + */ + case memstr(columnType, "tinytext"): + let definition["type"] = Column::TYPE_TINYTEXT; + break; + + /** + * TEXT + */ + case memstr(columnType, "text"): + let definition["type"] = Column::TYPE_TEXT; + break; + + /** + * VARCHAR + */ + case memstr(columnType, "varying"): + case memstr(columnType, "varchar"): + let definition["type"] = Column::TYPE_VARCHAR, + definition["size"] = charSize; + break; + + /** + * CHAR + */ + case memstr(columnType, "char"): + let definition["type"] = Column::TYPE_CHAR, + definition["size"] = charSize; + break; + /** * UUID */ - let definition["type"] = Column::TYPE_CHAR, - definition["size"] = 36; - } else { + case memstr(columnType, "uuid"): + let definition["type"] = Column::TYPE_CHAR, + definition["size"] = 36; + break; + /** - * By default is string + * Default */ - let definition["type"] = Column::TYPE_VARCHAR; + default: + let definition["type"] = Column::TYPE_VARCHAR; + break; } /** diff --git a/phalcon/db/adapter/pdo/sqlite.zep b/phalcon/db/adapter/pdo/sqlite.zep index aa5f2c97303..5ea7bb0ee27 100644 --- a/phalcon/db/adapter/pdo/sqlite.zep +++ b/phalcon/db/adapter/pdo/sqlite.zep @@ -97,14 +97,19 @@ class Sqlite extends PdoAdapter */ let columnType = field[2]; - if memstr(columnType, "tinyint(1)") { - /** - * Tinyint(1) is boolean - */ - let definition["type"] = Column::TYPE_BOOLEAN, - definition["bindType"] = Column::BIND_PARAM_BOOL, - columnType = "boolean"; // Change column type to skip size check - } elseif memstr(columnType, "bigint") { + /** + * The order of these IF statements matters. Since we are using memstr + * to figure out whether a particular string exists in the columnType + * we will end up with false positives if the order changes. + * + * For instance if we have a `varchar` column and we check for `char` + * first, then that will match. Therefore we have firs the IF + * statements that are "unique" and further down the ones that can + * appear a substrings of the columnType above them. + * + * BIGINT/INT + */ + if memstr(columnType, "bigint") { /** * Bigint are int */ @@ -122,21 +127,40 @@ class Sqlite extends PdoAdapter if field[5] { let definition["autoIncrement"] = true; } - } elseif memstr(columnType, "varchar") { + } elseif memstr(columnType, "tinyint(1)") { /** - * Varchar are varchars + * Tinyint(1) is boolean */ - let definition["type"] = Column::TYPE_VARCHAR; + let definition["type"] = Column::TYPE_BOOLEAN, + definition["bindType"] = Column::BIND_PARAM_BOOL, + columnType = "boolean"; // Change column type to skip size check + + /** + * ENUM + */ + } elseif memstr(columnType, "enum") { + /** + * Enum are treated as char + */ + let definition["type"] = Column::TYPE_CHAR; + + /** + * DATE/DATETIME + */ + } elseif memstr(columnType, "datetime") { + /** + * Special type for datetime + */ + let definition["type"] = Column::TYPE_DATETIME; } elseif memstr(columnType, "date") { /** * Date/Datetime are varchars */ let definition["type"] = Column::TYPE_DATE; - } elseif memstr(columnType, "timestamp") { - /** - * Timestamp as date - */ - let definition["type"] = Column::TYPE_TIMESTAMP; + + /** + * FLOAT/DECIMAL/DOUBLE + */ } elseif memstr(columnType, "decimal") { /** * Decimals are floats @@ -144,21 +168,6 @@ class Sqlite extends PdoAdapter let definition["type"] = Column::TYPE_DECIMAL, definition["isNumeric"] = true, definition["bindType"] = Column::BIND_PARAM_DECIMAL; - } elseif memstr(columnType, "char") { - /** - * Chars are chars - */ - let definition["type"] = Column::TYPE_CHAR; - } elseif memstr(columnType, "datetime") { - /** - * Special type for datetime - */ - let definition["type"] = Column::TYPE_DATETIME; - } elseif memstr(columnType, "text") { - /** - * Text are varchars - */ - let definition["type"] = Column::TYPE_TEXT; } elseif memstr(columnType, "float") { /** * Float/Smallfloats/Decimals are float @@ -166,11 +175,35 @@ class Sqlite extends PdoAdapter let definition["type"] = Column::TYPE_FLOAT, definition["isNumeric"] = true, definition["bindType"] = Column::TYPE_DECIMAL; - } elseif memstr(columnType, "enum") { + + /** + * TIMESTAMP + */ + } elseif memstr(columnType, "timestamp") { /** - * Enum are treated as char + * Timestamp as date + */ + let definition["type"] = Column::TYPE_TIMESTAMP; + + /** + * TEXT/VARCHAR/CHAR + */ + } elseif memstr(columnType, "varchar") { + /** + * Varchar are varchars + */ + let definition["type"] = Column::TYPE_VARCHAR; + } elseif memstr(columnType, "char") { + /** + * Chars are chars */ let definition["type"] = Column::TYPE_CHAR; + } elseif memstr(columnType, "text") { + /** + * Text are varchars + */ + let definition["type"] = Column::TYPE_TEXT; + } else { /** * By default is string diff --git a/phalcon/db/column.zep b/phalcon/db/column.zep index 6acdcca5566..a310eadf0eb 100644 --- a/phalcon/db/column.zep +++ b/phalcon/db/column.zep @@ -81,33 +81,38 @@ class Column implements ColumnInterface */ const TYPE_BIGINTEGER = 14; + /** + * Bit abstract data type + */ + const TYPE_BIT = 19; + /** * Blob abstract data type */ const TYPE_BLOB = 11; /** - * Boolean abstract data type + * Bool abstract data type */ const TYPE_BOOLEAN = 8; /** - * Char abstract type + * Char abstract data type */ const TYPE_CHAR = 5; /** - * Date abstract type + * Date abstract data type */ const TYPE_DATE = 1; /** - * Datetime abstract type + * Datetime abstract data type */ const TYPE_DATETIME = 4; /** - * Decimal abstract type + * Decimal abstract data type */ const TYPE_DECIMAL = 3; @@ -116,23 +121,28 @@ class Column implements ColumnInterface */ const TYPE_DOUBLE = 9; + /** + * Enum abstract data type + */ + const TYPE_ENUM = 18; + /** * Float abstract data type */ const TYPE_FLOAT = 7; /** - * Integer abstract type + * Int abstract data type */ const TYPE_INTEGER = 0; /** - * Json abstract type + * Json abstract data type */ const TYPE_JSON = 15; /** - * Jsonb abstract type + * Jsonb abstract data type */ const TYPE_JSONB = 16; @@ -141,18 +151,43 @@ class Column implements ColumnInterface */ const TYPE_LONGBLOB = 13; + /** + * Longtext abstract data type + */ + const TYPE_LONGTEXT = 24; + /** * Mediumblob abstract data type */ const TYPE_MEDIUMBLOB = 12; + /** + * Mediumintegerr abstract data type + */ + const TYPE_MEDIUMINTEGER = 21; + + /** + * Mediumtext abstract data type + */ + const TYPE_MEDIUMTEXT = 23; + + /** + * Smallint abstract data type + */ + const TYPE_SMALLINTEGER = 22; + /** * Text abstract data type */ const TYPE_TEXT = 6; /** - * Datetime abstract type + * Time abstract data type + */ + const TYPE_TIME = 20; + + /** + * Timestamp abstract data type */ const TYPE_TIMESTAMP = 17; @@ -162,7 +197,17 @@ class Column implements ColumnInterface const TYPE_TINYBLOB = 10; /** - * Varchar abstract type + * Tinyint abstract data type + */ + const TYPE_TINYINTEGER = 26; + + /** + * Tinytext abstract data type + */ + const TYPE_TINYTEXT = 25; + + /** + * Varchar abstract data type */ const TYPE_VARCHAR = 2; diff --git a/phalcon/db/columninterface.zep b/phalcon/db/columninterface.zep index dea00eadac3..3e2c6df6bbc 100644 --- a/phalcon/db/columninterface.zep +++ b/phalcon/db/columninterface.zep @@ -17,7 +17,6 @@ namespace Phalcon\Db; */ interface ColumnInterface { - /** * Restores the internal state of a Phalcon\Db\Column object */ @@ -125,6 +124,4 @@ interface ColumnInterface * Returns true if number column is unsigned */ public function isUnsigned() -> boolean; - - } diff --git a/phalcon/db/dialect.zep b/phalcon/db/dialect.zep index a664d9278e3..6217cfc3a93 100644 --- a/phalcon/db/dialect.zep +++ b/phalcon/db/dialect.zep @@ -522,6 +522,46 @@ abstract class Dialect implements DialectInterface return "ROLLBACK TO SAVEPOINT " . name; } + /** + * Checks the column type and if not string it returns the type reference + */ + protected function checkColumnType(<ColumnInterface> column) -> string + { + if typeof column->getType() == "string" { + return column->getTypeReference(); + } + + return column->getType(); + } + + /** + * Checks the column type and returns the updated SQL statement + */ + protected function checkColumnTypeSql(<ColumnInterface> column) -> string + { + if typeof column->getType() == "string" { + return column->getType(); + } + + return ""; + } + + /** + * Returns the size of the column enclosed in parentheses + */ + protected function getColumnSize(<ColumnInterface> column) -> string + { + return "(" . column->getSize() . ")"; + } + + /** + * Returns the column size and scale enclosed in parentheses + */ + protected function getColumnSizeAndScale(<ColumnInterface> column) -> string + { + return "(" . column->getSize() . "," . column->getScale() . ")"; + } + /** * Resolve Column expressions */ diff --git a/phalcon/db/dialect/mysql.zep b/phalcon/db/dialect/mysql.zep index 182eea767bf..c001b3e6942 100644 --- a/phalcon/db/dialect/mysql.zep +++ b/phalcon/db/dialect/mysql.zep @@ -42,26 +42,44 @@ class Mysql extends Dialect */ public function getColumnDefinition(<ColumnInterface> column) -> string { - var columnSql, size, scale, type, typeValues; + var columnType, columnSql, typeValues; - let columnSql = ""; + let columnSql = this->checkColumnTypeSql(column); + let columnType = this->checkColumnType(column); - let type = column->getType(); - if typeof type == "string" { - let columnSql .= type; - let type = column->getTypeReference(); - } + switch columnType { - switch type { + case Column::TYPE_BIGINTEGER: + if empty columnSql { + let columnSql .= "BIGINT"; + } + let columnSql .= this->getColumnSize(column) . this->checkColumnUnsigned(column); + break; - case Column::TYPE_INTEGER: + case Column::TYPE_BLOB: if empty columnSql { - let columnSql .= "INT"; + let columnSql .= "ΒΙΤ"; + } + let columnSql .= this->getColumnSize(column); + break; + + case Column::TYPE_BLOB: + if empty columnSql { + let columnSql .= "BLOB"; + } + break; + + case Column::TYPE_BOOLEAN: + if empty columnSql { + let columnSql .= "TINYINT(1)"; } - let columnSql .= "(" . column->getSize() . ")"; - if column->isUnsigned() { - let columnSql .= " UNSIGNED"; + break; + + case Column::TYPE_CHAR: + if empty columnSql { + let columnSql .= "CHAR"; } + let columnSql .= this->getColumnSize(column); break; case Column::TYPE_DATE: @@ -70,101 +88,106 @@ class Mysql extends Dialect } break; - case Column::TYPE_VARCHAR: + case Column::TYPE_DATETIME: if empty columnSql { - let columnSql .= "VARCHAR"; + let columnSql .= "DATETIME"; } - let columnSql .= "(" . column->getSize() . ")"; break; case Column::TYPE_DECIMAL: if empty columnSql { let columnSql .= "DECIMAL"; } - let columnSql .= "(" . column->getSize() . "," . column->getScale() . ")"; - if column->isUnsigned() { - let columnSql .= " UNSIGNED"; - } + let columnSql .= this->getColumnSizeAndScale(column) . this->checkColumnUnsigned(column); break; - case Column::TYPE_DATETIME: + case Column::TYPE_DOUBLE: if empty columnSql { - let columnSql .= "DATETIME"; + let columnSql .= "DOUBLE"; } + let columnSql .= this->checkColumnSizeAndScale(column) . this->checkColumnUnsigned(column); break; - case Column::TYPE_TIMESTAMP: + case Column::TYPE_ENUM: if empty columnSql { - let columnSql .= "TIMESTAMP"; + let columnSql .= "ENUM"; } + let columnSql .= this->getColumnSize(column); break; - case Column::TYPE_CHAR: + case Column::TYPE_FLOAT: if empty columnSql { - let columnSql .= "CHAR"; + let columnSql .= "FLOAT"; } - let columnSql .= "(" . column->getSize() . ")"; + let columnSql .= this->checkColumnSizeAndScale(column) . this->checkColumnUnsigned(column); break; - case Column::TYPE_TEXT: + case Column::TYPE_INTEGER: if empty columnSql { - let columnSql .= "TEXT"; + let columnSql .= "INT"; } + let columnSql .= this->getColumnSize(column) . this->checkColumnUnsigned(column); break; - case Column::TYPE_BOOLEAN: + case Column::TYPE_JSON: if empty columnSql { - let columnSql .= "TINYINT(1)"; + let columnSql .= "JSON"; } break; - case Column::TYPE_FLOAT: + case Column::TYPE_LONGBLOB: if empty columnSql { - let columnSql .= "FLOAT"; + let columnSql .= "LONGBLOB"; } - let size = column->getSize(); - if size { - let scale = column->getScale(); - if scale { - let columnSql .= "(" . size . "," . scale . ")"; - } else { - let columnSql .= "(" . size . ")"; - } + break; + + case Column::TYPE_LONGTEXT: + if empty columnSql { + let columnSql .= "LONGTEXT"; } - if column->isUnsigned() { - let columnSql .= " UNSIGNED"; + break; + + case Column::TYPE_MEDIUMBLOB: + if empty columnSql { + let columnSql .= "MEDIUMBLOB"; } break; - case Column::TYPE_DOUBLE: + case Column::TYPE_MEDIUMINTEGER: if empty columnSql { - let columnSql .= "DOUBLE"; + let columnSql .= "MEDIUMINT"; } - let size = column->getSize(); - if size { - let scale = column->getScale(), - columnSql .= "(" . size; - if scale { - let columnSql .= "," . scale . ")"; - } else { - let columnSql .= ")"; - } + let columnSql .= this->getColumnSize(column) . this->checkColumnUnsigned(column); + break; + + case Column::TYPE_MEDIUMTEXT: + if empty columnSql { + let columnSql .= "MEDIUMTEXT"; } - if column->isUnsigned() { - let columnSql .= " UNSIGNED"; + break; + + case Column::TYPE_SMALLINTEGER: + if empty columnSql { + let columnSql .= "SMALLINT"; } + let columnSql .= this->getColumnSize(column) . this->checkColumnUnsigned(column); break; - case Column::TYPE_BIGINTEGER: + case Column::TYPE_TEXT: if empty columnSql { - let columnSql .= "BIGINT"; + let columnSql .= "TEXT"; } - let scale = column->getSize(); - if scale { - let columnSql .= "(" . column->getSize() . ")"; + break; + + case Column::TYPE_TIME: + if empty columnSql { + let columnSql .= "TIME"; } - if column->isUnsigned() { - let columnSql .= " UNSIGNED"; + break; + + case Column::TYPE_TIMESTAMP: + if empty columnSql { + let columnSql .= "TIMESTAMP"; } break; @@ -174,22 +197,24 @@ class Mysql extends Dialect } break; - case Column::TYPE_BLOB: + case Column::TYPE_TINYINTEGER: if empty columnSql { - let columnSql .= "BLOB"; + let columnSql .= "TINYINT"; } + let columnSql .= this->getColumnSize(column) . this->checkColumnUnsigned(column); break; - case Column::TYPE_MEDIUMBLOB: + case Column::TYPE_TINYTEXT: if empty columnSql { - let columnSql .= "MEDIUMBLOB"; + let columnSql .= "TINYTEXT"; } break; - case Column::TYPE_LONGBLOB: + case Column::TYPE_VARCHAR: if empty columnSql { - let columnSql .= "LONGBLOB"; + let columnSql .= "VARCHAR"; } + let columnSql .= this->getColumnSize(column); break; default: @@ -759,4 +784,38 @@ class Mysql extends Dialect { return sqlQuery . " LOCK IN SHARE MODE"; } + + /** + * Checks if the size and/or scale are present and encloses those values + * in parentheses if need be + */ + private function checkColumnSizeAndScale(<ColumnInterface> column) -> string + { + var columnSql; + + if column->getSize() { + let columnSql .= "(" . column->getSize(); + if column->getScale() { + let columnSql .= "," . column->getScale() . ")"; + } else { + let columnSql .= ")"; + } + } else { + let columnSql .= ")"; + } + + return columnSql; + } + + /** + * Checks if a column is unsigned or not and returns the relevant SQL syntax + */ + private function checkColumnUnsigned(<ColumnInterface> column) -> string + { + if column->isUnsigned() { + return " UNSIGNED"; + } + + return ""; + } } diff --git a/phalcon/db/dialect/postgresql.zep b/phalcon/db/dialect/postgresql.zep index e8c3de4cc26..e991932ff3d 100644 --- a/phalcon/db/dialect/postgresql.zep +++ b/phalcon/db/dialect/postgresql.zep @@ -43,47 +43,40 @@ class Postgresql extends Dialect */ public function getColumnDefinition(<ColumnInterface> column) -> string { - var size, columnType, columnSql, typeValues; + var columnType, columnSql, typeValues; - let size = column->getSize(); - let columnType = column->getType(); - let columnSql = ""; - - if typeof columnType == "string" { - let columnSql .= columnType; - let columnType = column->getTypeReference(); - } + let columnSql = this->checkColumnTypeSql(column); + let columnType = this->checkColumnType(column); switch columnType { - case Column::TYPE_INTEGER: + case Column::TYPE_BIGINTEGER: if empty columnSql { if column->isAutoIncrement() { - let columnSql .= "SERIAL"; + let columnSql .= "BIGSERIAL"; } else { - let columnSql .= "INT"; + let columnSql .= "BIGINT"; } } break; - case Column::TYPE_DATE: + case Column::TYPE_BOOLEAN: if empty columnSql { - let columnSql .= "DATE"; + let columnSql .= "BOOLEAN"; } break; - case Column::TYPE_VARCHAR: + case Column::TYPE_CHAR: if empty columnSql { - let columnSql .= "CHARACTER VARYING"; + let columnSql .= "CHARACTER"; } - let columnSql .= "(" . size . ")"; + let columnSql .= this->getColumnSize(column); break; - case Column::TYPE_DECIMAL: + case Column::TYPE_DATE: if empty columnSql { - let columnSql .= "NUMERIC"; + let columnSql .= "DATE"; } - let columnSql .= "(" . size . "," . column->getScale() . ")"; break; case Column::TYPE_DATETIME: @@ -92,23 +85,11 @@ class Postgresql extends Dialect } break; - case Column::TYPE_TIMESTAMP: - if empty columnSql { - let columnSql .= "TIMESTAMP"; - } - break; - - case Column::TYPE_CHAR: - if empty columnSql { - let columnSql .= "CHARACTER"; - } - let columnSql .= "(" . size . ")"; - break; - - case Column::TYPE_TEXT: + case Column::TYPE_DECIMAL: if empty columnSql { - let columnSql .= "TEXT"; + let columnSql .= "NUMERIC"; } + let columnSql .= this->getColumnSizeAndScale(column); break; case Column::TYPE_FLOAT: @@ -117,12 +98,12 @@ class Postgresql extends Dialect } break; - case Column::TYPE_BIGINTEGER: + case Column::TYPE_INTEGER: if empty columnSql { if column->isAutoIncrement() { - let columnSql .= "BIGSERIAL"; + let columnSql .= "SERIAL"; } else { - let columnSql .= "BIGINT"; + let columnSql .= "INT"; } } break; @@ -139,12 +120,26 @@ class Postgresql extends Dialect } break; - case Column::TYPE_BOOLEAN: + case Column::TYPE_TIMESTAMP: if empty columnSql { - let columnSql .= "BOOLEAN"; + let columnSql .= "TIMESTAMP"; + } + break; + + case Column::TYPE_TEXT: + if empty columnSql { + let columnSql .= "TEXT"; } break; + case Column::TYPE_VARCHAR: + if empty columnSql { + let columnSql .= "CHARACTER VARYING"; + } + let columnSql .= this->getColumnSize(column); + break; + + default: if empty columnSql { throw new Exception("Unrecognized PostgreSQL data type at column " . column->getName()); diff --git a/phalcon/db/dialect/sqlite.zep b/phalcon/db/dialect/sqlite.zep index 3763a79b82a..a5d99f0efe3 100644 --- a/phalcon/db/dialect/sqlite.zep +++ b/phalcon/db/dialect/sqlite.zep @@ -44,75 +44,69 @@ class Sqlite extends Dialect */ public function getColumnDefinition(<ColumnInterface> column) -> string { - var columnSql, type, typeValues; + var columnType, columnSql, typeValues; - let columnSql = ""; - - let type = column->getType(); - if typeof type == "string" { - let columnSql .= type; - let type = column->getTypeReference(); - } + let columnSql = this->checkColumnTypeSql(column); + let columnType = this->checkColumnType(column); // SQLite has dynamic column typing. The conversion below maximizes // compatibility with other DBMS's while following the type affinity // rules: http://www.sqlite.org/datatype3.html. - switch type { + switch columnType { - case Column::TYPE_INTEGER: + case Column::TYPE_BIGINTEGER: if empty columnSql { - let columnSql .= "INTEGER"; + let columnSql .= "BIGINT"; } - break; - - case Column::TYPE_DATE: - if empty columnSql { - let columnSql .= "DATE"; + if column->isUnsigned() { + let columnSql .= " UNSIGNED"; } break; - case Column::TYPE_VARCHAR: + case Column::TYPE_BLOB: if empty columnSql { - let columnSql .= "VARCHAR"; + let columnSql .= "BLOB"; } - let columnSql .= "(" . column->getSize() . ")"; break; - case Column::TYPE_DECIMAL: + case Column::TYPE_BOOLEAN: if empty columnSql { - let columnSql .= "NUMERIC"; + let columnSql .= "TINYINT"; } - let columnSql .= "(" . column->getSize() . "," . column->getScale() . ")"; break; - case Column::TYPE_DATETIME: + case Column::TYPE_CHAR: if empty columnSql { - let columnSql .= "DATETIME"; + let columnSql .= "CHARACTER"; } + let columnSql .= this->getColumnSize(column); break; - case Column::TYPE_TIMESTAMP: + case Column::TYPE_DATE: if empty columnSql { - let columnSql .= "TIMESTAMP"; + let columnSql .= "DATE"; } break; - case Column::TYPE_CHAR: + case Column::TYPE_DATETIME: if empty columnSql { - let columnSql .= "CHARACTER"; + let columnSql .= "DATETIME"; } - let columnSql .= "(" . column->getSize() . ")"; break; - case Column::TYPE_TEXT: + case Column::TYPE_DECIMAL: if empty columnSql { - let columnSql .= "TEXT"; + let columnSql .= "NUMERIC"; } + let columnSql .= this->getColumnSizeAndScale(column); break; - case Column::TYPE_BOOLEAN: + case Column::TYPE_DOUBLE: if empty columnSql { - let columnSql .= "TINYINT"; + let columnSql .= "DOUBLE"; + } + if column->isUnsigned() { + let columnSql .= " UNSIGNED"; } break; @@ -122,46 +116,47 @@ class Sqlite extends Dialect } break; - case Column::TYPE_DOUBLE: + case Column::TYPE_INTEGER: if empty columnSql { - let columnSql .= "DOUBLE"; - } - if column->isUnsigned() { - let columnSql .= " UNSIGNED"; + let columnSql .= "INTEGER"; } break; - case Column::TYPE_BIGINTEGER: + case Column::TYPE_LONGBLOB: if empty columnSql { - let columnSql .= "BIGINT"; + let columnSql .= "LONGBLOB"; } - if column->isUnsigned() { - let columnSql .= " UNSIGNED"; + break; + + case Column::TYPE_MEDIUMBLOB: + if empty columnSql { + let columnSql .= "MEDIUMBLOB"; } break; - case Column::TYPE_TINYBLOB: + case Column::TYPE_TEXT: if empty columnSql { - let columnSql .= "TINYBLOB"; + let columnSql .= "TEXT"; } break; - case Column::TYPE_BLOB: + case Column::TYPE_TIMESTAMP: if empty columnSql { - let columnSql .= "BLOB"; + let columnSql .= "TIMESTAMP"; } break; - case Column::TYPE_MEDIUMBLOB: + case Column::TYPE_TINYBLOB: if empty columnSql { - let columnSql .= "MEDIUMBLOB"; + let columnSql .= "TINYBLOB"; } break; - case Column::TYPE_LONGBLOB: + case Column::TYPE_VARCHAR: if empty columnSql { - let columnSql .= "LONGBLOB"; + let columnSql .= "VARCHAR"; } + let columnSql .= this->getColumnSize(column); break; default: diff --git a/phalcon/mvc/model/metadata/strategy/annotations.zep b/phalcon/mvc/model/metadata/strategy/annotations.zep index aaa5a35b19b..0704a0c78f5 100644 --- a/phalcon/mvc/model/metadata/strategy/annotations.zep +++ b/phalcon/mvc/model/metadata/strategy/annotations.zep @@ -112,62 +112,121 @@ class Annotations implements StrategyInterface numericTyped[columnName] = true; break; - case "integer": - let fieldTypes[columnName] = Column::TYPE_INTEGER, + case "bit": + let fieldTypes[columnName] = Column::TYPE_BIT, fieldBindTypes[columnName] = Column::BIND_PARAM_INT, numericTyped[columnName] = true; break; + case "blob": + let fieldTypes[columnName] = Column::TYPE_BLOB, + fieldBindTypes[columnName] = Column::BIND_PARAM_BLOB; + break; + + case "boolean": + let fieldTypes[columnName] = Column::TYPE_BOOLEAN, + fieldBindTypes[columnName] = Column::BIND_PARAM_BOOL; + break; + + case "char": + let fieldTypes[columnName] = Column::TYPE_CHAR, + fieldBindTypes[columnName] = Column::BIND_PARAM_STR; + break; + + case "date": + let fieldTypes[columnName] = Column::TYPE_DATE, + fieldBindTypes[columnName] = Column::BIND_PARAM_STR; + break; + + case "datetime": + let fieldTypes[columnName] = Column::TYPE_DATETIME, + fieldBindTypes[columnName] = Column::BIND_PARAM_STR; + break; + case "decimal": let fieldTypes[columnName] = Column::TYPE_DECIMAL, fieldBindTypes[columnName] = Column::BIND_PARAM_DECIMAL, numericTyped[columnName] = true; break; + case "double": + let fieldTypes[columnName] = Column::TYPE_DOUBLE, + fieldBindTypes[columnName] = Column::BIND_PARAM_DECIMAL, + numericTyped[columnName] = true; + break; + + case "enum": + let fieldTypes[columnName] = Column::TYPE_ENUM, + fieldBindTypes[columnName] = Column::BIND_PARAM_STR, + numericTyped[columnName] = true; + break; + case "float": let fieldTypes[columnName] = Column::TYPE_FLOAT, fieldBindTypes[columnName] = Column::BIND_PARAM_DECIMAL, numericTyped[columnName] = true; break; - case "double": - let fieldTypes[columnName] = Column::TYPE_DOUBLE, - fieldBindTypes[columnName] = Column::BIND_PARAM_DECIMAL, + case "integer": + let fieldTypes[columnName] = Column::TYPE_INTEGER, + fieldBindTypes[columnName] = Column::BIND_PARAM_INT, numericTyped[columnName] = true; break; - case "boolean": - let fieldTypes[columnName] = Column::TYPE_BOOLEAN, - fieldBindTypes[columnName] = Column::BIND_PARAM_BOOL; + case "json": + let fieldTypes[columnName] = Column::TYPE_JSON, + fieldBindTypes[columnName] = Column::BIND_PARAM_STR; break; - case "date": - let fieldTypes[columnName] = Column::TYPE_DATE, + case "jsonb": + let fieldTypes[columnName] = Column::TYPE_JSONB, fieldBindTypes[columnName] = Column::BIND_PARAM_STR; break; - case "datetime": - let fieldTypes[columnName] = Column::TYPE_DATETIME, + case "longblob": + let fieldTypes[columnName] = Column::TYPE_LONGBLOB, + fieldBindTypes[columnName] = Column::BIND_PARAM_BLOB; + break; + + case "longtext": + let fieldTypes[columnName] = Column::TYPE_LONGTEXT, fieldBindTypes[columnName] = Column::BIND_PARAM_STR; break; - case "timestamp": - let fieldTypes[columnName] = Column::TYPE_TIMESTAMP, + case "mediumblob": + let fieldTypes[columnName] = Column::TYPE_MEDIUMBLOB, + fieldBindTypes[columnName] = Column::BIND_PARAM_BLOB; + break; + + case "mediumint": + let fieldTypes[columnName] = Column::TYPE_MEDIUMINTEGER, + fieldBindTypes[columnName] = Column::BIND_PARAM_INT, + numericTyped[columnName] = true; + break; + + case "mediumtext": + let fieldTypes[columnName] = Column::TYPE_MEDIUMTEXT, fieldBindTypes[columnName] = Column::BIND_PARAM_STR; break; + case "smallint": + let fieldTypes[columnName] = Column::TYPE_SMALLINTEGER, + fieldBindTypes[columnName] = Column::BIND_PARAM_INT, + numericTyped[columnName] = true; + break; + case "text": let fieldTypes[columnName] = Column::TYPE_TEXT, fieldBindTypes[columnName] = Column::BIND_PARAM_STR; break; - case "char": - let fieldTypes[columnName] = Column::TYPE_CHAR, + case "time": + let fieldTypes[columnName] = Column::TYPE_TIME, fieldBindTypes[columnName] = Column::BIND_PARAM_STR; break; - case "json": - let fieldTypes[columnName] = Column::TYPE_JSON, + case "timestamp": + let fieldTypes[columnName] = Column::TYPE_TIMESTAMP, fieldBindTypes[columnName] = Column::BIND_PARAM_STR; break; @@ -176,19 +235,15 @@ class Annotations implements StrategyInterface fieldBindTypes[columnName] = Column::BIND_PARAM_BLOB; break; - case "blob": - let fieldTypes[columnName] = Column::TYPE_BLOB, - fieldBindTypes[columnName] = Column::BIND_PARAM_BLOB; - break; - - case "mediumblob": - let fieldTypes[columnName] = Column::TYPE_MEDIUMBLOB, - fieldBindTypes[columnName] = Column::BIND_PARAM_BLOB; + case "tinyint": + let fieldTypes[columnName] = Column::TYPE_TINYINTEGER, + fieldBindTypes[columnName] = Column::BIND_PARAM_INT, + numericTyped[columnName] = true; break; - case "longblob": - let fieldTypes[columnName] = Column::TYPE_LONGBLOB, - fieldBindTypes[columnName] = Column::BIND_PARAM_BLOB; + case "tinytext": + let fieldTypes[columnName] = Column::TYPE_TINYTEXT, + fieldBindTypes[columnName] = Column::BIND_PARAM_STR; break; default: diff --git a/tests/README.md b/tests/README.md index 253b2beba2f..f97e9165bce 100644 --- a/tests/README.md +++ b/tests/README.md @@ -26,13 +26,13 @@ A MySQL/PostgreSQL databases is also bundled in this suite. You can create a dat *MySQL* ```sh echo 'create database phalcon_test charset=utf8mb4 collate=utf8mb4_unicode_ci;' | mysql -u root -mysql -uroot phalcon_test < tests/_data/schemas/mysql/phalcon_test.sql +mysql -uroot phalcon_test < tests/_data/schemas/phalcon-schema-mysql.sql ``` *PostgreSQL* ```sh psql -c 'create database phalcon_test;' -U postgres -psql -U postgres phalcon_test -q -f tests/_data/schemas/postgresql/phalcon_test.sql +psql -U postgres phalcon_test -q -f tests/_data/schemas/phalcon-schema-postgresql.sql ``` **Note:** For these MySQL-related we use the user `root` without a password. diff --git a/tests/_bootstrap.php b/tests/_bootstrap.php index 850ca0cfa24..3d8cd19b732 100644 --- a/tests/_bootstrap.php +++ b/tests/_bootstrap.php @@ -49,7 +49,7 @@ "TEST_BT_PORT" => 11300, // Memcached - "TEST_MC_HOST" => '127.0.0.1', + "TEST_MC_HOST" => defined('DATA_MEMCACHED_HOST') ? getenv('DATA_MEMCACHED_HOST') : '127.0.0.1', "TEST_MC_PORT" => 11211, "TEST_MC_WEIGHT" => 1, @@ -58,35 +58,37 @@ "TEST_DB_I18N_SQLITE_NAME" => PATH_OUTPUT . 'translations.sqlite', // MySQL - "TEST_DB_MYSQL_HOST" => '127.0.0.1', + "TEST_DB_MYSQL_HOST" => defined('DATA_MYSQL_HOST') ? getenv('DATA_MYSQL_HOST') : '127.0.0.1', "TEST_DB_MYSQL_PORT" => 3306, "TEST_DB_MYSQL_USER" => 'root', - "TEST_DB_MYSQL_PASSWD" => '', - "TEST_DB_MYSQL_NAME" => 'phalcon_test', + "TEST_DB_MYSQL_PASSWD" => defined('DATA_MYSQL_ROOT_PASS') ? getenv('DATA_MYSQL_ROOT_PASS') : '', + "TEST_DB_MYSQL_NAME" => defined('DATA_MYSQL_HOST') ? 'gonano' : 'phalcon_test', "TEST_DB_MYSQL_CHARSET" => 'utf8', // Postgresql - "TEST_DB_POSTGRESQL_HOST" => '127.0.0.1', + "TEST_DB_POSTGRESQL_HOST" => defined('DATA_POSTGRES_HOST') ? getenv('DATA_POSTGRES_HOST') : '127.0.0.1', "TEST_DB_POSTGRESQL_PORT" => 5432, - "TEST_DB_POSTGRESQL_USER" => 'postgres', - "TEST_DB_POSTGRESQL_PASSWD" => '', - "TEST_DB_POSTGRESQL_NAME" => 'phalcon_test', + "TEST_DB_POSTGRESQL_USER" => defined('DATA_POSTGRES_NANOBOX_USER') ? getenv('DATA_POSTGRES_NANOBOX_USER') : 'postgres', + "TEST_DB_POSTGRESQL_PASSWD" => defined('DATA_POSTGRES_NANOBOX_PASS') ? getenv('DATA_POSTGRES_NANOBOX_PASS') : '', + "TEST_DB_POSTGRESQL_NAME" => defined('DATA_POSTGRES_HOST') ? 'gonano' : 'phalcon_test', "TEST_DB_POSTGRESQL_SCHEMA" => 'public', // Mongo - "TEST_DB_MONGO_HOST" => '127.0.0.1', + "TEST_DB_MONGO_HOST" => defined('DATA_MONGODB_HOST') ? getenv('DATA_MONGODB_HOST') : '127.0.0.1', "TEST_DB_MONGO_PORT" => 27017, "TEST_DB_MONGO_USER" => 'admin', "TEST_DB_MONGO_PASSWD" => '', "TEST_DB_MONGO_NAME" => 'phalcon_test', // Redis - "TEST_RS_HOST" => '127.0.0.1', + "TEST_RS_HOST" => defined('DATA_REDIS_HOST') ? getenv('DATA_REDIS_HOST') : '127.0.0.1', "TEST_RS_PORT" => 6379, "TEST_RS_DB" => 0, ]; - +/** + * Check if this is running in nanobox and adjust the above + */ foreach ($defaults as $key => $defaultValue) { if (defined($key)) { diff --git a/tests/_ci/setup-dbs.sh b/tests/_ci/setup-dbs.sh index b07e7849c48..0f01030f5ff 100755 --- a/tests/_ci/setup-dbs.sh +++ b/tests/_ci/setup-dbs.sh @@ -11,20 +11,20 @@ PROJECT_ROOT=$(readlink -enq "$(dirname $0)/../../") echo -e "Create MySQL database..." mysql -u root -e "CREATE DATABASE IF NOT EXISTS phalcon_test charset=utf8mb4 collate=utf8mb4_unicode_ci;" -cat "${PROJECT_ROOT}/tests/_data/schemas/mysql/phalcon_test.sql" | mysql -u root phalcon_test +cat "${PROJECT_ROOT}/tests/_data/schemas/phalcon-schema-mysql.sql" | mysql -u root phalcon_test echo -e "Done\n" echo -e "Create PostgreSQL database..." psql -c 'create database phalcon_test;' -U postgres -psql -U postgres phalcon_test -q -f "${PROJECT_ROOT}/tests/_data/schemas/postgresql/phalcon_test.sql" +psql -U postgres phalcon_test -q -f "${PROJECT_ROOT}/tests/_data/schemas/phalcon-schema-postgresql.sql" echo -e "Done\n" echo -e "Create SQLite database..." -sqlite3 /tmp/phalcon_test.sqlite < "${PROJECT_ROOT}/tests/_data/schemas/sqlite/phalcon_test.sql" +sqlite3 /tmp/phalcon_test.sqlite < "${PROJECT_ROOT}/tests/_data/schemas/phalcon-schema-sqlite.sql" echo -e "Done\n" echo -e "Create translations SQLite database..." -sqlite3 /tmp/translations.sqlite < "${PROJECT_ROOT}/tests/_data/schemas/sqlite/translations.sql" +sqlite3 /tmp/translations.sqlite < "${PROJECT_ROOT}/tests/_data/schemas/phalcon-schema-sqlite-translations.sql" echo -e "Done\n" wait diff --git a/tests/_data/schemas/mysql/phalcon_test.sql b/tests/_data/schemas/phalcon-schema-mysql.sql similarity index 97% rename from tests/_data/schemas/mysql/phalcon_test.sql rename to tests/_data/schemas/phalcon-schema-mysql.sql index aa44fa8841e..0f95b119c4d 100644 --- a/tests/_data/schemas/mysql/phalcon_test.sql +++ b/tests/_data/schemas/phalcon-schema-mysql.sql @@ -1,105 +1,43 @@ --- MySQL dump 10.13 Distrib 5.1.66, for debian-linux-gnu (i686) --- --- Host: localhost Database: phalcon_test --- ------------------------------------------------------ --- Server version 5.1.66-0ubuntu0.11.10.3 - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `albums` --- - -DROP TABLE IF EXISTS `albums`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `albums` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `artists_id` int(10) unsigned NOT NULL, - `name` varchar(72) COLLATE utf8_unicode_ci NOT NULL, - PRIMARY KEY (`id`), +drop table if exists `albums`; +create table `albums` ( + `id` int(10) unsigned not null auto_increment, + `artists_id` int(10) unsigned not null, + `name` varchar(72) collate utf8_unicode_ci not null, + primary key (`id`), KEY `artists_id` (`artists_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `albums` --- - -LOCK TABLES `albums` WRITE; -/*!40000 ALTER TABLE `albums` DISABLE KEYS */; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; INSERT INTO `albums` VALUES (1,1,'Born to Die'),(2,1,'Born to Die - The Paradise Edition'); -/*!40000 ALTER TABLE `albums` ENABLE KEYS */; -UNLOCK TABLES; --- --- Table structure for table `artists` --- - -DROP TABLE IF EXISTS `artists`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `artists` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `name` varchar(72) COLLATE utf8_unicode_ci NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `artists` --- - -LOCK TABLES `artists` WRITE; -/*!40000 ALTER TABLE `artists` DISABLE KEYS */; +drop table if exists `artists`; +create table `artists` ( + `id` int(10) unsigned not null auto_increment, + `name` varchar(72) collate utf8_unicode_ci not null, + primary key (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; INSERT INTO `artists` VALUES (1,'Lana del Rey'),(2,'Radiohead'); -/*!40000 ALTER TABLE `artists` ENABLE KEYS */; -UNLOCK TABLES; -- --- Table structure for table `customers` --- - -DROP TABLE IF EXISTS `customers`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `customers` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `document_id` int(3) unsigned NOT NULL, - `customer_id` char(15) COLLATE utf8_unicode_ci NOT NULL, - `first_name` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, - `last_name` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, - `phone` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, - `email` varchar(70) COLLATE utf8_unicode_ci NOT NULL, - `instructions` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, - `status` enum('A','I','X') COLLATE utf8_unicode_ci NOT NULL, +drop table if exists `customers`; +create table `customers` ( + `id` int(10) unsigned not null auto_increment, + `document_id` int(3) unsigned not null, + `customer_id` char(15) collate utf8_unicode_ci not null, + `first_name` varchar(100) collate utf8_unicode_ci default null, + `last_name` varchar(100) collate utf8_unicode_ci default null, + `phone` varchar(20) collate utf8_unicode_ci default null, + `email` varchar(70) collate utf8_unicode_ci not null, + `instructions` varchar(100) collate utf8_unicode_ci default null, + `status` enum('A','I','X') collate utf8_unicode_ci not null, `birth_date` date DEFAULT '1970-01-01', `credit_line` decimal(16,2) DEFAULT '0.00', - `created_at` datetime NOT NULL, + `created_at` datetime not null, `created_at_user_id` int(10) unsigned DEFAULT '0', - PRIMARY KEY (`id`), + primary key (`id`), KEY `customers_document_id_idx` (`document_id`), KEY `customers_customer_id_idx` (`customer_id`), KEY `customers_credit_line_idx` (`credit_line`), KEY `customers_status_idx` (`status`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `customers` --- - -LOCK TABLES `customers` WRITE; -/*!40000 ALTER TABLE `customers` DISABLE KEYS */; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; INSERT INTO `customers` (`id`, `document_id`, `customer_id`, `email`, `status`, `created_at`) VALUES ('1', '1', '1', 'foo@bar.baz', 'A', NOW()), ('2', '1', '3', 'foo@bar.baz', 'A', NOW()), @@ -107,343 +45,177 @@ INSERT INTO `customers` (`id`, `document_id`, `customer_id`, `email`, `status`, ('4', '1', '3', 'foo@bar.baz', 'I', NOW()), ('5', '3', '2', 'foo@bar.baz', 'X', NOW()), ('6', '4', '4', 'foo@bar.baz', 'A', NOW()); -/*!40000 ALTER TABLE `customers` ENABLE KEYS */; -UNLOCK TABLES; - - --- --- Table structure for table `m2m_parts` --- -DROP TABLE IF EXISTS `m2m_parts`; -CREATE TABLE `m2m_parts` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `name` varchar(70) NOT NULL, - PRIMARY KEY (`id`) +drop table if exists `m2m_parts`; +create table `m2m_parts` ( + `id` int(10) unsigned not null auto_increment, + `name` varchar(70) not null, + primary key (`id`) ); --- --- Table structure for table `m2m_robotos` --- - -DROP TABLE IF EXISTS `m2m_robots`; -CREATE TABLE `m2m_robots` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `name` varchar(70) COLLATE utf8_unicode_ci NOT NULL, - PRIMARY KEY (`id`) +drop table if exists `m2m_robots`; +create table `m2m_robots` ( + `id` int(10) unsigned not null auto_increment, + `name` varchar(70) collate utf8_unicode_ci not null, + primary key (`id`) ); --- --- Table structure for table `m2m_robots_parts` --- - -DROP TABLE IF EXISTS `m2m_robots_parts`; -CREATE TABLE `m2m_robots_parts` ( - `robots_id` int(10) unsigned NOT NULL, - `parts_id` int(10) unsigned NOT NULL, - PRIMARY KEY (`robots_id`, `parts_id`) +drop table if exists `m2m_robots_parts`; +create table `m2m_robots_parts` ( + `robots_id` int(10) unsigned not null, + `parts_id` int(10) unsigned not null, + primary key (`robots_id`, `parts_id`) ); - --- --- Table structure for table `parts` --- - -DROP TABLE IF EXISTS `parts`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `parts` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `name` varchar(70) COLLATE utf8_unicode_ci NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `parts` --- - -LOCK TABLES `parts` WRITE; -/*!40000 ALTER TABLE `parts` DISABLE KEYS */; +drop table if exists `parts`; +create table `parts` ( + `id` int(10) unsigned not null auto_increment, + `name` varchar(70) collate utf8_unicode_ci not null, + primary key (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; INSERT INTO `parts` VALUES (1,'Head'),(2,'Body'),(3,'Arms'),(4,'Legs'),(5,'CPU'); -/*!40000 ALTER TABLE `parts` ENABLE KEYS */; -UNLOCK TABLES; --- --- Table structure for table `personas` --- - -DROP TABLE IF EXISTS `personas`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `personas` ( - `cedula` char(15) COLLATE utf8_unicode_ci NOT NULL, - `tipo_documento_id` int(3) unsigned NOT NULL, - `nombres` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `telefono` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, - `direccion` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, - `email` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, +drop table if exists `personas`; +create table `personas` ( + `cedula` char(15) collate utf8_unicode_ci not null, + `tipo_documento_id` int(3) unsigned not null, + `nombres` varchar(100) collate utf8_unicode_ci not null DEFAULT '', + `telefono` varchar(20) collate utf8_unicode_ci default null, + `direccion` varchar(100) collate utf8_unicode_ci default null, + `email` varchar(50) collate utf8_unicode_ci default null, `fecha_nacimiento` date DEFAULT '1970-01-01', `ciudad_id` int(10) unsigned DEFAULT '0', - `creado_at` date DEFAULT NULL, - `cupo` decimal(16,2) NOT NULL, - `estado` enum('A','I','X') COLLATE utf8_unicode_ci NOT NULL, - PRIMARY KEY (`cedula`), + `creado_at` date default null, + `cupo` decimal(16,2) not null, + `estado` enum('A','I','X') collate utf8_unicode_ci not null, + primary key (`cedula`), KEY `estado` (`estado`), KEY `ciudad_id` (`ciudad_id`), KEY `estado_2` (`estado`,`nombres`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `personas` --- - -LOCK TABLES `personas` WRITE; -/*!40000 ALTER TABLE `personas` DISABLE KEYS */; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; INSERT INTO `personas` VALUES ('1',3,'HUANG ZHENGQUIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-18','6930.00','I'),('100',1,'USME FERNANDEZ JUAN GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-04-15','439480.00','A'),('1003',8,'SINMON PEREZ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-25','468610.00','A'),('1009',8,'ARCINIEGAS Y VILLAMIZAR','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-08-12','967680.00','A'),('101',1,'CRANE DE NARVAEZ JUAN PABLO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-06-09','790540.00','A'),('1011',8,'EL EVENTO','191821112','CRA 25 CALLE 100','596@terra.com.co','2011-02-03',127591,'2011-05-24','820390.00','A'),('1020',7,'OSPINA YOLANDA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-02','222970.00','A'),('1025',7,'CHEMIPLAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-08','918670.00','A'),('1034',1,'TAXI FILMS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-09-01','962580.00','A'),('104',1,'CASTELLANOS JIMENEZ NOE','191821112','CRA 25 CALLE 100','127@yahoo.es','2011-02-03',127591,'2011-10-05','95230.00','A'),('1046',3,'JACQUET PIERRE MICHEL ALAIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',263489,'2011-07-23','90810.00','A'),('1048',5,'SPOERER VELEZ CARLOS JORGE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-02-03','184920.00','A'),('1049',3,'SIDNEI DA SILVA LUIZ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117630,'2011-07-02','850180.00','A'),('105',1,'HERRERA SEQUERA ALVARO FRANCISCO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-26','77390.00','A'),('1050',3,'CAVALCANTI YUE CARLA HANLI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-31','696130.00','A'),('1052',1,'BARRETO RIVAS ELKIN MARTIN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',131508,'2011-09-19','562160.00','A'),('1053',3,'WANDERLEY ANTONIO ERNESTO THOME','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150617,'2011-01-31','20490.00','A'),('1054',3,'HE SHAN','191821112','CRA 25 CALLE 100','715@yahoo.es','2011-02-03',132958,'2010-10-05','415970.00','A'),('1055',3,'ZHRNG XIM','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-05','18380.00','A'),('1057',3,'NICKEL GEB. STUTZ KARIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-10-08','164850.00','A'),('1058',1,'VELEZ PAREJA IGNACIO ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132775,'2011-06-24','292250.00','A'),('1059',3,'GURKE RALF ERNST','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',287570,'2011-06-15','966700.00','A'),('106',1,'ESTRADA LONDOÑO JUAN SIMON','191821112','CRA 25 CALLE 100','8@terra.com.co','2011-02-03',128579,'2011-03-09','101260.00','A'),('1060',1,'MEDRANO BARRIOS WILSON','191821112','CRA 25 CALLE 100','479@facebook.com','2011-02-03',132775,'2011-06-18','956740.00','A'),('1061',1,'GERDTS PORTO HANS EDUARDO','191821112','CRA 25 CALLE 100','140@gmail.com','2011-02-03',127591,'2011-05-09','883590.00','A'),('1062',1,'BORGE VISBAL JORGE FIDEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132775,'2011-07-14','547750.00','A'),('1063',3,'GUTIERREZ JOSELYN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-06','87960.00','A'),('1064',4,'OVIEDO PINZON MARYI YULEY','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127538,'2011-04-21','796560.00','A'),('1065',1,'VILORA SILVA OMAR ESTEBAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',133535,'2010-06-09','718910.00','A'),('1066',3,'AGUIAR ROMAN RODRIGO HUMBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',126674,'2011-06-28','204890.00','A'),('1067',1,'GOMEZ AGAMEZ ADOLFO DEL CRISTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',131105,'2011-06-15','867730.00','A'),('1068',3,'GARRIDO CECILIA','191821112','CRA 25 CALLE 100','973@yahoo.com.mx','2011-02-03',118777,'2010-08-16','723980.00','A'),('1069',1,'JIMENEZ MANJARRES DAVID RAFAEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132775,'2010-12-17','16680.00','A'),('107',1,'ARANGUREN TEJADA JORGE ENRIQUE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-16','274110.00','A'),('1070',3,'OYARZUN TEJEDA ANDRES FERNANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-26','911490.00','A'),('1071',3,'MARIN BUCK RAFAEL ENRIQUE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',126180,'2011-05-04','507400.00','A'),('1072',3,'VARGAS JOSE ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',126674,'2011-07-28','802540.00','A'),('1073',3,'JUEZ JAIRALA JOSE ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',126180,'2010-04-09','490510.00','A'),('1074',1,'APONTE PENSO HERNAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132879,'2011-05-27','44900.00','A'),('1075',1,'PIÑERES BUSTILLO ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',126916,'2008-10-29','752980.00','A'),('1076',1,'OTERA OMA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-04-29','630210.00','A'),('1077',3,'CONTRERAS CHINCHILLA JUAN DOMINGO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',139844,'2011-06-21','892110.00','A'),('1078',1,'GAMBA LAURENCIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-09-15','569940.00','A'),('108',1,'MUÑOZ ARANGO JUAN CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-01','66770.00','A'),('1080',1,'PRADA ABAUZA CARLOS AUGUSTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-11-15','156870.00','A'),('1081',1,'PAOLA CAROLINA PINTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-27','264350.00','A'),('1082',1,'PALOMINO HERNANDEZ GERMAN JAVIER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',133535,'2011-03-22','851120.00','A'),('1084',1,'URIBE DANIEL ALBERTO','191821112','CRA 25 CALLE 100','602@hotmail.es','2011-02-03',127591,'2011-09-07','759470.00','A'),('1085',1,'ARGUELLO CALDERON ARMANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-24','409660.00','A'),('1087',1,'CARVAJAL HERNANDEZ CHRISTIAN ARMANDO','191821112','CRA 25 CALLE 100','296@yahoo.es','2011-02-03',159432,'2011-06-03','620410.00','A'),('1088',1,'CASTRO BLANCO MANUEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',150512,'2009-10-08','792400.00','A'),('1089',1,'RIBEROS GUTIERREZ GUSTAVO ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-01-27','100800.00','A'),('109',1,'BELTRAN MARIA LUZ DARY','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-06','511510.00','A'),('1091',4,'ORTIZ ORTIZ BENIGNO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127538,'2011-08-05','331540.00','A'),('1092',3,'JOHN CHRISTOPHER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-04-08','277320.00','A'),('1093',1,'PARRA VILLAREAL MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',129499,'2011-08-23','391980.00','A'),('1094',1,'BESGA RODRIGUEZ JUAN JAVIER','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127300,'2011-09-23','127960.00','A'),('1095',1,'ZAPATA MEZA EDGAR FERNANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',129499,'2011-05-19','463840.00','A'),('1096',3,'CORNEJO BRAVO MARCO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2010-11-08','935340.00','A'),('1099',1,'GARCIA PORRAS FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-14','243360.00','A'),('11',1,'HERNANDEZ PARDO ARMANDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-31','197540.00','A'),('110',1,'VANEGAS JULIAN ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-09-06','357260.00','A'),('1101',1,'QUINTERO BURBANO GABRIEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',129499,'2011-08-20','57420.00','A'),('1102',1,'BOHORQUEZ AFANADOR CHRISTIAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-19','214610.00','A'),('1103',1,'MORA VARGAS JULIO ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-29','900790.00','A'),('1104',1,'PINEDA JORGE ARMANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-21','860110.00','A'),('1105',1,'TORO CEBALLOS GONZALO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',129499,'2011-08-18','598180.00','A'),('1106',1,'SCHENIDER TORRES JAIME','191821112','CRA 25 CALLE 100','85@yahoo.com.mx','2011-02-03',127799,'2011-08-11','410590.00','A'),('1107',1,'RUEDA VILLAMIZAR JAIME','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-11-15','258410.00','A'),('1108',1,'RUEDA VILLAMIZAR RICARDO JAIME','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',129499,'2011-03-22','60260.00','A'),('1109',1,'GOMEZ RODRIGUEZ HERNANDO ARTURO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-06-02','526080.00','A'),('111',1,'FRANCISCO EDUARDO JAIME BOTERO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-09-09','251770.00','A'),('1110',1,'HERNÁNDEZ MÉNDEZ EDGAR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',129499,'2011-03-22','449610.00','A'),('1113',1,'LEON HERNANDEZ OSCAR','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',129499,'2011-03-21','992090.00','A'),('1114',1,'LIZARAZO CARREÑO HUGO ARCENIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',133535,'2010-12-10','959490.00','A'),('1115',1,'LIAN BARRERA GABRIEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-05-30','821170.00','A'),('1117',3,'TELLEZ BEZAN FRANCISCO JAVIER ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',117002,'2011-08-21','673430.00','A'),('1118',1,'FUENTES ARIZA DIEGO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-09','684970.00','A'),('1119',1,'MOLINA M. ROBINSON','191821112','CRA 25 CALLE 100','728@hotmail.com','2011-02-03',129447,'2010-09-19','404580.00','A'),('112',1,'PTIÑO PINTO ARIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-10-06','187050.00','A'),('1120',1,'ORTIZ DURAN BENIGNO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127538,'2011-08-05','967970.00','A'),('1121',1,'CARVAJAL ALMEIDA LUIS RAUL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',129499,'2011-06-22','626140.00','A'),('1122',1,'TORRES QUIROGA EDWIN SILVESTRE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',129447,'2011-08-17','226780.00','A'),('1123',1,'VIVIESCAS JAIMES ALVARO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-10','255480.00','A'),('1124',1,'MARTINEZ RUEDA JAVIER EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',129447,'2011-06-23','597040.00','A'),('1125',1,'ANAYA FLORES JORGE ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',129499,'2011-06-04','218790.00','A'),('1126',3,'TORRES MARTINEZ ANTONIO JESUS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',188640,'2010-09-02','302820.00','A'),('1127',3,'CACHO LEVISIER JOSE MANUEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',153276,'2009-06-25','857720.00','A'),('1129',3,'ULLOA VALDIVIESO CRISTIAN ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-06-02','327570.00','A'),('113',1,'HIGUERA CALA JAIME ENRIQUE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-27','179950.00','A'),('1130',1,'ARCINIEGAS WILLIAM','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',126892,'2011-08-05','497420.00','A'),('1131',1,'BAZA ACUÑA JAVIER','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',129447,'2010-12-10','504410.00','A'),('1132',3,'BUIRA ROS CARLOS MARIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-04-27','29750.00','A'),('1133',1,'RODRIGUEZ JAIME','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',129447,'2011-06-10','635560.00','A'),('1134',1,'QUIROGA PEREZ NELSON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',129447,'2011-05-18','88520.00','A'),('1135',1,'TATIANA AYALA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127122,'2011-07-01','535920.00','A'),('1136',1,'OSORIO BENEDETTI FABIAN AUGUSTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132775,'2010-10-23','414060.00','A'),('1139',1,'CELIS PINTO ARMANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2009-02-25','964970.00','A'),('114',1,'VALDERRAMA CUERVO JOSE IGNACIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-02','338590.00','A'),('1140',1,'ORTIZ ARENAS JUAN MANUEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',129499,'2009-10-21','613300.00','A'),('1141',1,'VALDIVIESO ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',134022,'2009-01-13','171590.00','A'),('1144',1,'LOPEZ CASTILLO NELSON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',129499,'2010-09-09','823110.00','A'),('1145',1,'CAVELIER LUIS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',126916,'2008-11-29','389220.00','A'),('1146',1,'CAVELIER OTOYA LUIS EDURDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',126916,'2010-05-25','476770.00','A'),('1147',1,'GARCIA RUEDA JUAN CARLOS','191821112','CRA 25 CALLE 100','111@yahoo.es','2011-02-03',133535,'2010-09-12','216190.00','A'),('1148',1,'LADINO GOMEZ OMAR ORLANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-02','650640.00','A'),('1149',1,'CARREÑO ORTIZ OSCAR JAVIER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-15','604630.00','A'),('115',1,'NARDEI BONILLO BRUNO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-16','153110.00','A'),('1150',1,'MONTOYA BOZZI MAURICIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',129499,'2011-05-12','71240.00','A'),('1152',1,'LORA RICHARD JAVIER','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-09-15','497700.00','A'),('1153',1,'SILVA PINZON MARCO ANTONIO','191821112','CRA 25 CALLE 100','915@hotmail.es','2011-02-03',127591,'2011-06-15','861670.00','A'),('1154',3,'GEORGE J A KHALILIEH','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-20','815260.00','A'),('1155',3,'CHACON MARIN CARLOS MANUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-07-26','491280.00','A'),('1156',3,'OCHOA CHEHAB XAVIER ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',126180,'2011-06-13','10630.00','A'),('1157',3,'ARAYA GARRI GABRIEL ALEXIS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-09-19','579320.00','A'),('1158',3,'MACCHI ARIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',116366,'2010-04-12','864690.00','A'),('116',1,'GONZALEZ FANDIÑO JAIME EDUARDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-10','749800.00','A'),('1160',1,'CAVALIER LUIS EDUARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',126916,'2009-08-27','333390.00','A'),('1161',3,'DOMINGUEZ DE OBREGON ILEANA DEL CARMEN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',139844,'2011-03-06','910490.00','A'),('1162',2,'FALASCA CLAUDIO ARIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',116511,'2011-07-10','552280.00','A'),('1163',3,'MUTABARUKA PATRICK','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',131352,'2011-03-22','29940.00','A'),('1164',1,'DOMINGUEZ ATENCIA JIMMY CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-07-22','492860.00','A'),('1165',4,'LLANO GONZALEZ ALBERTO MARIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127300,'2010-08-21','374490.00','A'),('1166',3,'LOPEZ ROLDAN JOSE MANUEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-07-31','393860.00','A'),('1167',1,'GUTIERREZ DE PIÑERES JALILIE ARISTIDES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2010-12-09','845810.00','A'),('1168',1,'HEYMANS PIERRE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2010-11-08','47470.00','A'),('1169',1,'BOTERO OSORIO RUBEN DARIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2009-05-27','699940.00','A'),('1170',3,'GARNHAM POBLETE ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',116396,'2011-03-27','357270.00','A'),('1172',1,'DAJUD DURAN JOSE RODRIGO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',133535,'2009-12-02','360910.00','A'),('1173',1,'MARTINEZ MERCADO PEDRO PABLO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-07-25','744930.00','A'),('1174',1,'GARCIA AMADOR ANDRES EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',133535,'2011-05-19','641930.00','A'),('1176',1,'VARGAS VARELA LUIS GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',131568,'2011-08-30','948410.00','A'),('1178',1,'GUTIERRES DE PIÑERES ARISTIDES','191821112','CRA 25 CALLE 100','217@hotmail.com','2011-02-03',133535,'2011-05-10','242490.00','A'),('1179',3,'LEIZAOLA POZO JIMENA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',132958,'2011-08-01','759800.00','A'),('118',1,'FERNANDEZ VELOSO PEDRO HERNANDO','191821112','CRA 25 CALLE 100','452@hotmail.es','2011-02-03',128662,'2010-08-06','198830.00','A'),('1180',3,'MARINO PAOLO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-12-24','71520.00','A'),('1181',1,'MOLINA VIZCAINO GUSTAVO JORGE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-04-28','78220.00','A'),('1182',3,'MEDEL GARCIA FABIAN RODRIGO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-04-25','176540.00','A'),('1183',1,'LESMES ARIAS RUBEN DARIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2010-09-09','648020.00','A'),('1184',1,'ALCALA MARTINEZ ALFREDO ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',132775,'2010-07-23','710470.00','A'),('1186',1,'LLAMAS FOLIACO LUIS ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-07','910210.00','A'),('1187',1,'GUARDO DEL RIO LIBARDO FARID','191821112','CRA 25 CALLE 100','73@yahoo.com.mx','2011-02-03',128662,'2011-09-01','726050.00','A'),('1188',3,'JEFFREY ARTHUR DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',115724,'2011-03-21','899630.00','A'),('1189',1,'DAHL VELEZ JULIANA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',126916,'2011-05-23','320020.00','A'),('119',3,'WALESKA DE LIMA ALMEIDA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118942,'2011-05-09','125240.00','A'),('1190',3,'LUIS JOSE MANUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2008-04-04','901210.00','A'),('1192',1,'AZUERO VALENTINA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-14','26310.00','A'),('1193',1,'MARQUEZ GALINDO MAURICIO JAVIER','191821112','CRA 25 CALLE 100','729@yahoo.es','2011-02-03',131105,'2011-05-13','493560.00','A'),('1195',1,'NIETO FRANCO JUAN FELIPE','191821112','CRA 25 CALLE 100','707@yahoo.com','2011-02-03',127591,'2011-07-30','463790.00','A'),('1196',3,'ESTEVES JOAQUIM LUIS FERNANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-04-05','152270.00','A'),('1197',4,'BARRERO KAREN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-12','369990.00','A'),('1198',1,'CORRALES GUZMAN DELIO ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127689,'2011-08-03','393120.00','A'),('1199',1,'CUELLAR TOCO EDGAR','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127531,'2011-09-20','855640.00','A'),('12',1,'MARIN PRIETO FREDY NELSON ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-23','641210.00','A'),('120',1,'LOPEZ JARAMILLO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2009-04-17','29680.00','A'),('1200',3,'SCHULTER ACHIM','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',291002,'2010-05-21','98860.00','A'),('1201',3,'HOWELL LAURENCE ADRIAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',286785,'2011-05-22','927350.00','A'),('1202',3,'ALCAZAR ESCARATE JAIME PATRICIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117002,'2011-08-25','340160.00','A'),('1203',3,'HIDALGO FUENZALIDA GABRIEL RAUL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-05-03','918780.00','A'),('1206',1,'VANEGAS HENAO ORLANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-27','832910.00','A'),('1207',1,'PEÑARANDA ARIAS RICARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-19','832710.00','A'),('1209',1,'LEZAMA CERVERA JUAN CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132775,'2011-09-14','825980.00','A'),('121',1,'PULIDO JIMENEZ OSCAR HUMBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-29','772700.00','A'),('1211',1,'TRUJILLO BOCANEGRA HAROL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127538,'2011-05-27','199260.00','A'),('1212',1,'ALVAREZ TORRES MARIO RICARDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-08-15','589960.00','A'),('1213',1,'CORRALES VARON BELMER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-26','352030.00','A'),('1214',3,'CUEVAS RODRIGUEZ MANUELA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-30','990250.00','A'),('1216',1,'LOPEZ EDICSON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-31','505210.00','A'),('1217',3,'GARCIA PALOMARES JUAN JAVIER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-07-31','840440.00','A'),('1218',1,'ARCINIEGAS NARANJO RICARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127492,'2010-12-17','686610.00','A'),('122',1,'GONZALEZ RIANO LEONARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128031,'2011-08-05','774450.00','A'),('1220',1,'GARCIA GUTIERREZ WILLIAM','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-06-20','498680.00','A'),('1221',3,'GOMEZ DE ALONSO ANGELA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-27','758300.00','A'),('1222',1,'MEDINA QUIROGA JAMES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127538,'2011-01-16','295480.00','A'),('1224',1,'ARCILA CORREA JUAN CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-03-20','125900.00','A'),('1225',1,'QUIJANO REYES CARLOS ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127538,'2010-04-08','22100.00','A'),('1226',1,'VARGAS GALLEGO JAIRO ALONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2009-07-30','732820.00','A'),('1228',3,'NAPANGA MIRENGHI MARTIN','191821112','CRA 25 CALLE 100','153@yahoo.es','2011-02-03',132958,'2011-02-08','790400.00','A'),('123',1,'LAMUS CASTELLANOS ANDRES RICARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-11','554160.00','A'),('1230',1,'RIVEROS PIÑEROS JOSE ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127492,'2011-09-25','422220.00','A'),('1231',3,'ESSER JUAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127327,'2011-04-01','635060.00','A'),('1232',3,'DOMINGUEZ MORA MAURICIO ALFREDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-22','908630.00','A'),('1233',3,'MOLINA FERNANDEZ FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-05-28','637990.00','A'),('1234',3,'BELLO DANIEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',196234,'2010-09-04','464040.00','A'),('1235',3,'BENADAVA GUEVARA DAVID ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-05-18','406240.00','A'),('1236',3,'RODRIGUEZ MATOS ROBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-03-22','639070.00','A'),('1237',3,'TAPIA ALARCON PATRICIO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2010-07-06','976620.00','A'),('1239',3,'VERCHERE ALFONSO CHRISTIAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',117002,'2010-08-23','899600.00','A'),('1241',1,'ESPINEL LUIS FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128206,'2009-03-09','302860.00','A'),('1242',3,'VERGARA FERREIRA PATRICIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-10-03','713310.00','A'),('1243',3,'ZUMARRAGA SIRVENT CRSTINA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-08-24','657950.00','A'),('1244',4,'ESCORCIA VASQUEZ TOMAS','191821112','CRA 25 CALLE 100','354@yahoo.com.mx','2011-02-03',128662,'2011-04-01','149830.00','A'),('1245',4,'PARAMO CUENCA KELLY LORENA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127492,'2011-05-04','775300.00','A'),('1246',4,'PEREZ LOPEZ VERONICA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2011-07-11','426990.00','A'),('1247',4,'CHAPARRO RODRIGUEZ DANIELA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-10-08','809070.00','A'),('1249',4,'DIAZ MARTINEZ MARIA CAROLINA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',133535,'2011-05-30','394740.00','A'),('125',1,'CALDON RODRIGUEZ JAIME ARIEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',126968,'2011-07-29','574780.00','A'),('1250',4,'PINEDA VASQUEZ JUAN PABLO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2010-09-03','680540.00','A'),('1251',5,'MATIZ URIBE ANGELA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-12-25','218470.00','A'),('1253',1,'ZAMUDIO RICAURTE JAIRO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',126892,'2011-08-05','598160.00','A'),('1254',1,'ALJURE FRANCISCO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-07-21','838660.00','A'),('1255',3,'ARMESTO AIRA ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',196234,'2011-01-29','398840.00','A'),('1257',1,'POTES GUEVARA JAIRO MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127858,'2011-03-17','194580.00','A'),('1258',1,'BURBANO QUIROGA RAFAEL','191821112','CRA 25 CALLE 100','767@facebook.com','2011-02-03',127591,'2011-04-07','538220.00','A'),('1259',1,'CARDONA GOMEZ JAVIR','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2011-03-16','107380.00','A'),('126',1,'PULIDO PARDO GUIDO IVAN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-10-05','531550.00','A'),('1260',1,'LOPERA LEDESMA PABLO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2011-09-19','922240.00','A'),('1263',1,'TRIBIN BARRIGA JUAN MANUEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2011-09-02','525330.00','A'),('1264',1,'NAVIA LOPEZ ANDRÉS FELIPE ','191821112','CRA 25 CALLE 100','353@hotmail.es','2011-02-03',127300,'2011-07-15','591190.00','A'),('1265',1,'CARDONA GOMEZ FABIAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2010-11-18','379940.00','A'),('1266',1,'ESCARRIA VILLEGAS ANDRES JULIAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-08-19','126160.00','A'),('1268',1,'CASTRO HERNANDEZ ALVARO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127300,'2011-03-25','76260.00','A'),('127',1,'RODRIGUEZ RODRIGUEZ GIOVANI FRANCISCO','191821112','CRA 25 CALLE 100','662@hotmail.es','2011-02-03',127591,'2011-09-29','933390.00','A'),('1270',1,'LEAL HERNANDEZ MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-24','313610.00','A'),('1272',1,'ORTIZ CARDONA WILLIAM ENRIQUE','191821112','CRA 25 CALLE 100','914@hotmail.com','2011-02-03',128662,'2011-09-13','272150.00','A'),('1273',1,'ROMERO VAN GOMPEL HERNAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-09-07','832960.00','A'),('1274',1,'BERMUDEZ LONDOÑO JHON FREDY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127300,'2011-08-29','348380.00','A'),('1275',1,'URREA ALVAREZ NICOLAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-01','242980.00','A'),('1276',1,'VALENCIA LLANOS RODRIGO AUGUSTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-04-11','169790.00','A'),('1277',1,'PAZ VALENCIA GUILLERMO ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127300,'2011-08-05','120020.00','A'),('1278',1,'MONROY CORREDOR GERARDO ALONSO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127300,'2011-06-25','90700.00','A'),('1279',1,'RIOS MEDINA JAVIER ERMINSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2011-09-12','93440.00','A'),('128',1,'GALLEGO GUZMAN MARIO ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-06-25','72290.00','A'),('1280',1,'GARCIA OSCAR EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127662,'2011-09-30','195090.00','A'),('1282',1,'MURILLO PESELLIN GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2011-06-15','890530.00','A'),('1284',1,'DIAZ ALVAREZ JOHNY','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2011-06-25','164130.00','A'),('1285',1,'GARCES BELTRAN RAUL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2011-08-11','719220.00','A'),('1286',1,'MATERON POVEDA LUIS ALEJANDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-25','103710.00','A'),('1287',1,'VALENCIA ALEXANDER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-10-23','360880.00','A'),('1288',1,'PEÑA AGUDELO JOSE RAMON','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',134022,'2011-05-25','493280.00','A'),('1289',1,'CORREA NUÑEZ JORGE ALEXANDER','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-08-18','383750.00','A'),('129',1,'ALVAREZ RODRIGUEZ IVAN RICARDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2008-01-28','561290.00','A'),('1291',1,'BEJARANO ROSERO FREDDY ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-10-09','43400.00','A'),('1292',1,'CASTILLO BARRIOS GUSTAVO ADOLFO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127300,'2011-06-17','900180.00','A'),('1296',1,'GALVEZ GUTIERREZ JUAN PABLO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127300,'2010-03-28','807090.00','A'),('1297',3,'CRUZ GARCIA MILTON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',139844,'2011-03-21','75630.00','A'),('1298',1,'VILLEGAS GUTIERREZ JOSE RICARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-11','956860.00','A'),('13',1,'VACA MURCIA JESUS ALFREDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-04','613430.00','A'),('1301',3,'BOTTI ALFONSO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',231989,'2011-04-04','910640.00','A'),('1302',3,'COTINO HUESO LORENZO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-02-02','803450.00','A'),('1304',3,'NESPOLI MANTOVANI LUIZ CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-04-18','16230.00','A'),('1307',4,'AVILA GIL PAULA ANDREA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-19','711110.00','A'),('1308',4,'VALLEJO PINEDA ALEJANDRA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-08-12','323490.00','A'),('1312',1,'ROMERO OSCAR EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-04-17','642460.00','A'),('1314',3,'LULLIES CONSTANZE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',245206,'2010-06-03','154970.00','A'),('1315',1,'CHAPARRO GUTIERREZ JORGE ADRIANO','191821112','CRA 25 CALLE 100','284@hotmail.es','2011-02-03',127591,'2010-12-02','325440.00','A'),('1316',1,'BARRANTES DISI RICARDO JOSE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132879,'2011-07-18','162270.00','A'),('1317',3,'VERDES GAGO JOSE ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2010-03-10','835060.00','A'),('1319',3,'MARTIN MARTINEZ GUSTAVO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2010-05-26','937220.00','A'),('1320',3,'MOTTURA MASSIMO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2008-11-10','620640.00','A'),('1321',3,'RUSSELL TIMOTHY JAMES','191821112','CRA 25 CALLE 100','502@hotmail.es','2011-02-03',145135,'2010-04-16','291560.00','A'),('1322',3,'JAIN TARSEM','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',190393,'2011-05-31','595890.00','A'),('1323',3,'ORTEGA CEVALLOS JULIETA ELIZABETH','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-30','104760.00','A'),('1324',3,'MULLER PICHAIDA ANDRES FELIPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-05-17','736130.00','A'),('1325',3,'ALVEAR TELLEZ JULIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-01-23','366390.00','A'),('1327',3,'MOYA LATORRE MARCELA CAROLINA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-05-17','18520.00','A'),('1328',3,'LAMA ZAROR RODRIGO IGNACIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2010-10-27','221990.00','A'),('1329',3,'HERNANDEZ CIFUENTES MAURICE JEANETTE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',139844,'2011-06-22','54410.00','A'),('133',1,'CORDOBA HOYOS JUAN PABLO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-20','966820.00','A'),('1330',2,'HOCHKOFLER NOEMI CONSUELO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-27','606070.00','A'),('1331',4,'RAMIREZ BARRERO DANIELA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',154563,'2011-04-18','867120.00','A'),('1332',4,'DE LEON DURANGO RICARDO JOSE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',131105,'2011-09-08','517400.00','A'),('1333',4,'RODRIGUEZ MACIAS IVAN MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',129447,'2011-05-23','985620.00','A'),('1334',4,'GUTIERREZ DE PIÑERES YANET MARIA ALEJANDRA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',133535,'2011-06-16','375890.00','A'),('1335',4,'GUTIERREZ DE PIÑERES YANET MARIA GABRIELA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-06-16','922600.00','A'),('1336',4,'CABRALES BECHARA JOSE MARIA','191821112','CRA 25 CALLE 100','708@hotmail.com','2011-02-03',131105,'2011-05-13','485330.00','A'),('1337',4,'MEJIA TOBON LUIS DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127662,'2011-08-05','658860.00','A'),('1338',3,'OROS NERCELLES CRISTIAN ANDRE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',144215,'2011-04-26','838310.00','A'),('1339',3,'MORENO BRAVO CAROLINA ANDREA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',190393,'2010-12-08','214950.00','A'),('134',1,'GONZALEZ LOPEZ DANIEL ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-08','178580.00','A'),('1340',3,'FERNANDEZ GARRIDO MARCELO FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-07-08','559820.00','A'),('1342',3,'SUMEGI IMRE ZOLTAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-16','91750.00','A'),('1343',3,'CALDERON FLANDEZ SERGIO','191821112','CRA 25 CALLE 100','108@hotmail.com','2011-02-03',117002,'2010-12-12','996030.00','A'),('1345',3,'CARBONELL ATCHUGARRY GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',116366,'2010-04-12','536390.00','A'),('1346',3,'MONTEALEGRE AGUILAR FEDERICO ','191821112','CRA 25 CALLE 100','448@yahoo.es','2011-02-03',132165,'2011-08-08','567260.00','A'),('1347',1,'HERNANDEZ MANCHEGO CARLOS JULIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-04-28','227130.00','A'),('1348',1,'ARENAS ZARATE FERNEY ARNULFO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127963,'2011-03-26','433860.00','A'),('1349',3,'DELFIM DINIZ PASSOS PINHEIRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',110784,'2010-04-17','487930.00','A'),('135',1,'GARCIA SIMBAQUEBA RUBEN DARIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-25','992420.00','A'),('1350',3,'BRAUN VALENZUELA FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-29','138050.00','A'),('1351',3,'LEVIN FIORELLI ANDRES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',116366,'2011-04-10','226470.00','A'),('1353',3,'BALTODANO ESQUIVEL LAURA CRISTINA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132165,'2011-08-01','911660.00','A'),('1354',4,'ESCOBAR YEPES ANDREA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-05-19','403630.00','A'),('1356',1,'GAGELI OSORIO ALEJANDRO','191821112','CRA 25 CALLE 100','228@yahoo.com.mx','2011-02-03',128662,'2011-07-14','205070.00','A'),('1357',3,'CABAL ALVAREZ RUBEN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-08-14','175770.00','A'),('1359',4,'HUERFANO JUAN DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-04','790970.00','A'),('136',1,'OSORIO RAMIREZ LEONARDO','191821112','CRA 25 CALLE 100','686@yahoo.es','2011-02-03',128662,'2010-05-14','426380.00','A'),('1360',4,'RAMON GARCIA MARIA PAULA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-01','163890.00','A'),('1362',30,'ALVAREZ CLAVIO CARLA ALEJANDRA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127203,'2011-04-18','741020.00','A'),('1363',3,'SERRA DURAN GERARDO ENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-08-03','365490.00','A'),('1364',3,'NORIEGA VALVERDE SILVIA MARCELA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132775,'2011-02-27','604370.00','A'),('1366',1,'JARAMILLO LOPEZ ALEJANDRO','191821112','CRA 25 CALLE 100','269@terra.com.co','2011-02-03',127559,'2010-11-08','813800.00','A'),('1367',1,'MAZO ROLDAN CARLOS ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-05-04','292880.00','A'),('1368',1,'MURIEL ARCILA MAURICIO HERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-29','22970.00','A'),('1369',1,'RAMIREZ CARLOS FERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-14','236230.00','A'),('137',1,'LUNA PEREZ JUAN PABLO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',126881,'2011-08-05','154640.00','A'),('1370',1,'GARCIA GRAJALES PEDRO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128166,'2011-10-09','112230.00','A'),('1372',3,'GARCIA ESCOBAR ANA MARIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2011-03-29','925670.00','A'),('1373',3,'ALVES DIAS CARLOS AUGUSTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-07','70940.00','A'),('1374',3,'MATTOS CHRISTIANE GARCIA CID','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',183024,'2010-08-25','577700.00','A'),('1376',1,'CARVAJAL ROJAS ORLANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-10','645240.00','A'),('1377',3,'MADARIAGA CADIZ CLAUDIO CRISTIAN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2011-10-04','199200.00','A'),('1379',3,'MARIN YANEZ ALICIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-02-20','703870.00','A'),('138',1,'DIAZ AVENDAÑO MARCELO IVAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-22','494080.00','A'),('1381',3,'COSTA VILLEGAS LUIS ALEJANDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117002,'2011-08-21','580670.00','A'),('1382',3,'DAZA PEREZ JOSE LUIS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',122035,'2009-02-23','888000.00','A'),('1385',4,'RIVEROS ARIAS MARIA ALEJANDRA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127492,'2011-09-26','35710.00','A'),('1386',30,'TORO GIRALDO MATEO','191821112','CRA 25 CALLE 100','433@yahoo.com.mx','2011-02-03',127591,'2011-07-17','700730.00','A'),('1387',4,'ROJAS YARA LAURA DANIELA MARIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-31','396530.00','A'),('1388',3,'GALLEGO RODRIGO MARIA PILAR','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2009-04-19','880450.00','A'),('1389',1,'PANTOJA VELASQUEZ JOSE ARMANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127300,'2011-08-05','212660.00','A'),('139',1,'FRANCO GOMEZ HERNÁN EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-01-19','6450.00','A'),('1390',3,'VAN DEN BORNE KEES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2010-01-28','421930.00','A'),('1391',3,'MONDRAGON FLORES JUAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-08-22','471700.00','A'),('1392',3,'BAGELLA MICHELE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-07-27','92720.00','A'),('1393',3,'BISTIANCIC MACHADO ANA INES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',116366,'2010-08-02','48490.00','A'),('1394',3,'BAÑADOS ORTIZ MARIA PILAR','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-08-25','964280.00','A'),('1395',1,'CHINDOY CHINDOY HERNANDO','191821112','CRA 25 CALLE 100','107@terra.com.co','2011-02-03',126892,'2011-08-25','675920.00','A'),('1396',3,'SOTO NUÑEZ ANDRES ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-10-02','486760.00','A'),('1397',1,'DELGADO MARTINEZ LORGE ELIAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-23','406040.00','A'),('1398',1,'LEON GUEVARA JAVIER ANIBAL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',126892,'2011-09-08','569930.00','A'),('1399',1,'ZARAMA BASTIDAS LUIS GABRIEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',126892,'2011-08-05','631540.00','A'),('14',1,'MAGUIN HENNSSEY LUIS FERNANDO','191821112','CRA 25 CALLE 100','714@gmail.com','2011-02-03',127591,'2011-07-11','143540.00','A'),('140',1,'CARRANZA CUY ALEXANDER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-25','550010.00','A'),('1401',3,'REYNA CASTORENA JOSE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',189815,'2011-08-29','344970.00','A'),('1402',1,'GFALLO BOTERO SERGIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-07-14','381100.00','A'),('1403',1,'ARANGO ARAQUE JUAN CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-05-04','870590.00','A'),('1404',3,'LASSNER NORBERTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118942,'2010-02-28','209650.00','A'),('1405',1,'DURANGO MARIN HECTOR LEON','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'1970-02-02','436480.00','A'),('1407',1,'FRANCO CASTAÑO DIEGO MAURICIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-06-28','457770.00','A'),('1408',1,'HERNANDEZ SERGIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-05-29','628550.00','A'),('1409',1,'CASTAÑO DUQUE CARLOS HUGO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-03-23','769410.00','A'),('141',1,'CHAMORRO CHEDRAUI SERGIO ALBERTO','191821112','CRA 25 CALLE 100','922@yahoo.com.mx','2011-02-03',127591,'2011-05-07','730720.00','A'),('1411',1,'RAMIREZ MONTOYA ADAMO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-04-13','498880.00','A'),('1412',1,'GONZALEZ BENJUMEA OSCAR HUMBERTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-11-01','610150.00','A'),('1413',1,'ARANGO ACEVEDO WALTER ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-10-07','554090.00','A'),('1414',1,'ARANGO GALLO HUMBERTO LEON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-02-25','940010.00','A'),('1415',1,'VELASQUEZ LUIS GONZALO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-07-06','37760.00','A'),('1416',1,'MIRA AGUILAR FRANCISCO ALEJANDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-30','368790.00','A'),('1417',1,'RIVERA ARISTIZABAL CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-03-02','730670.00','A'),('1418',1,'ARISTIZABAL ROLDAN ANDRES RICARDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-02','546960.00','A'),('142',1,'LOPEZ ZULETA MAURICIO ALEXANDER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-01','3550.00','A'),('1420',1,'ESCORCIA ARAMBURO JUAN MARIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-04-01','73100.00','A'),('1421',1,'CORREA PARRA RICARDO ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-08-05','737110.00','A'),('1422',1,'RESTREPO NARANJO DANIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-09-15','466240.00','A'),('1423',1,'VELASQUEZ CARLOS JUAN','191821112','CRA 25 CALLE 100','123@yahoo.com','2011-02-03',128662,'2010-06-09','119880.00','A'),('1424',1,'MACIA GONZALEZ ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2010-11-12','200690.00','A'),('1425',1,'BERRIO MEJIA HELBER ANTONIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2010-06-04','643800.00','A'),('1427',1,'GOMEZ GUTIERREZ CARLOS ARIEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-09-08','153320.00','A'),('1428',1,'RESTREPO LOPEZ JOSE ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-12','915770.00','A'),('1429',1,'BARTH TOBAR LUIS FERNANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-02-23','118900.00','A'),('143',1,'MUNERA BEDIYA JUAN CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-09-21','825600.00','A'),('1430',1,'JIMENEZ VELEZ ANDRES EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-02-26','847160.00','A'),('1431',1,'TAKAHASHI GAVIRIA NICOLAS KEIICHIRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-13','879120.00','A'),('1432',1,'ESCOBAR JARAMILLO ESTEBAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2010-06-10','854110.00','A'),('1433',1,'PALACIO NAVARRO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-08-18','633200.00','A'),('1434',1,'LONDOÑO MUÑOZ ADOLFO LEON','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-09-14','603670.00','A'),('1435',1,'PULGARIN JAIME ANDRES','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2009-11-01','118730.00','A'),('1436',1,'FERRERA ZULUAGA LUIS FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-07-10','782630.00','A'),('1437',1,'VASQUEZ VELEZ HABACUC','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-27','557000.00','A'),('1438',1,'HENAO PALOMINO DIEGO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2009-05-06','437080.00','A'),('1439',1,'HURTADO URIBE JUAN GONZALO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-01-11','514400.00','A'),('144',1,'ALDANA RODOLFO AUGUSTO','191821112','CRA 25 CALLE 100','838@yahoo.es','2011-02-03',127591,'2011-08-07','117350.00','A'),('1441',1,'URIBE DANIEL ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',133535,'2010-11-19','760610.00','A'),('1442',1,'PINEDA GALIANO JUAN CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-07-29','20770.00','A'),('1443',1,'DUQUE BETANCOURT FABIO LEON','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-11-26','822030.00','A'),('1444',1,'JARAMILLO TORO HERNAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-04-27','47830.00','A'),('145',1,'VASQUEZ ZAPATA JUAN CARLOS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-09','109940.00','A'),('1450',1,'TOBON FRANCO MARCO ANTONIO','191821112','CRA 25 CALLE 100','545@facebook.com','2011-02-03',127591,'2011-05-03','889540.00','A'),('1454',1,'LOTERO PAVAS CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-05-28','646750.00','A'),('1455',1,'ESTRADA HENAO JAVIER ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128569,'2009-09-07','215460.00','A'),('1456',1,'VALDERRAMA MAXIMILIANO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-23','137030.00','A'),('1457',3,'ESTRADA ALVAREZ GONZALO ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',154903,'2011-05-02','38790.00','A'),('1458',1,'PAUCAR VALLEJO JAIRO ALONSO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-10-15','782860.00','A'),('1459',1,'RESTREPO GIRALDO JHON DARIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-04-04','797930.00','A'),('146',1,'BAQUERO FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2010-03-03','197650.00','A'),('1460',1,'RESTREPO DOMINGUEZ GUSTAVO ADOLFO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2009-05-18','641050.00','A'),('1461',1,'YANOVICH JACKY','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-08-21','811470.00','A'),('1462',1,'HINCAPIE ROLDAN JOSE ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-08-27','134200.00','A'),('1463',3,'ZEA JORGE OLIVER','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',150699,'2011-03-12','236610.00','A'),('1464',1,'OSCAR MAURICIO ECHAVARRIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-11-24','780440.00','A'),('1465',1,'COSSIO GIL JOSE ALEXANDER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-10-01','192380.00','A'),('1466',1,'GOMEZ CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-03-01','620580.00','A'),('1467',1,'VILLALOBOS OCHOA ANDRES GABRIEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-08-18','525740.00','A'),('1470',1,'GARCIA GONZALEZ DAVID DARIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-09-17','986990.00','A'),('1471',1,'RAMIREZ RESTREPO ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-04-03','162250.00','A'),('1472',1,'VASQUEZ GUTIERREZ JUAN ANDRES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-05','850280.00','A'),('1474',1,'ESCOBAR ARANGO DAVID','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2010-11-01','272460.00','A'),('1475',1,'MEJIA TORO JUAN DAVID','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-05-02','68320.00','A'),('1477',1,'ESCOBAR GOMEZ JUAN MANUEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127848,'2011-05-15','416150.00','A'),('1478',1,'BETANCUR WILSON','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2008-02-09','508060.00','A'),('1479',3,'ROMERO ARRAU GONZALO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-10','291880.00','A'),('148',1,'REINA MORENO MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-08','699240.00','A'),('1480',1,'CASTAÑO OSORIO JORGE ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127662,'2011-09-20','935200.00','A'),('1482',1,'LOPEZ LOPERA ROBINSON FREDY','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-09-02','196280.00','A'),('1484',1,'HERNAN DARIO RENDON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-03-18','312520.00','A'),('1485',1,'MARTINEZ ARBOLEDA MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2010-11-03','821760.00','A'),('1486',1,'RODRIGUEZ MORA CARLOS MORA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-09-16','171270.00','A'),('1487',1,'PENAGOS VASQUEZ JOSE DOMINGO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-09-06','391080.00','A'),('1488',1,'UERRA MEJIA DIEGO LEON','191821112','CRA 25 CALLE 100','704@hotmail.com','2011-02-03',144086,'2011-08-06','441570.00','A'),('1491',1,'QUINTERO GUTIERREZ ABEL PASTOR','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2009-11-16','138100.00','A'),('1492',1,'ALARCON YEPES IVAN DARIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',150699,'2010-05-03','145330.00','A'),('1494',1,'HERNANDEZ VALLEJO ANDRES MAURICIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-09','125770.00','A'),('1495',1,'MONTOYA MORENO LUIS MIGUEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-11-09','691770.00','A'),('1497',1,'BARRERA CARLOS ANDRES','191821112','CRA 25 CALLE 100','62@yahoo.es','2011-02-03',127591,'2010-08-24','332550.00','A'),('1498',1,'ARROYAVE FERNANDEZ PABLO EMILIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-05-12','418030.00','A'),('1499',1,'GOMEZ ANGEL FELIPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-05-03','92480.00','A'),('15',1,'AMSILI COHEN JOSEPH','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-07','877400.00','A'),('150',3,'ARDILA GUTIERREZ DANIEL MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-12','506760.00','A'),('1500',1,'GONZALEZ DUQUE PABLO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-04-13','208330.00','A'),('1502',1,'MEJIA BUSTAMANTE JUAN FELIPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-08-09','196000.00','A'),('1506',1,'SUAREZ MONTOYA JUAN PABLO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128569,'2011-09-13','368250.00','A'),('1508',1,'ALVAREZ GONZALEZ JUAN PABLO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-02-15','355190.00','A'),('1509',1,'NIETO CORREA ANDRES FELIPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-03-31','899980.00','A'),('1511',1,'HERNANDEZ GRANADOS JHONATHAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-08-30','471720.00','A'),('1512',1,'CARDONA ALVAREZ DEIBY','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2010-10-05','55590.00','A'),('1513',1,'TORRES MARULANDA JUAN ESTEBAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2010-10-20','862820.00','A'),('1514',1,'RAMIREZ RAMIREZ JHON JAIRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-05-11','147310.00','A'),('1515',1,'MONDRAGON TORO NICOLAS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-01-19','148100.00','A'),('1517',3,'SUIDA DIETER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2008-07-21','48580.00','A'),('1518',3,'LEFTWICH ANDREW PAUL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',211610,'2011-06-07','347170.00','A'),('1519',3,'RENTON ANDREW GEORGE PATRICK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',269033,'2010-12-11','590120.00','A'),('152',1,'BUSTOS MONZON CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-22','335160.00','A'),('1521',3,'JOSE CUSTODIO DO ALTISSIMO NETONETO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',119814,'2011-04-28','775000.00','A'),('1522',3,'GUARACI FRANCO DE PAIVA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',119167,'2011-04-28','147770.00','A'),('1525',4,'MORENO TENORIO MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-20','888750.00','A'),('1527',1,'VELASQUEZ HERNANDEZ JHON EDUARSON','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-07-19','161270.00','A'),('1528',4,'VANEGAS ALEJANDRA','191821112','CRA 25 CALLE 100','185@yahoo.com','2011-02-03',127591,'2011-06-20','109830.00','A'),('1529',3,'BARBABE CLAIRE LAURENCE ANNICK','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-04','65330.00','A'),('153',1,'GONZALEZ TORREZ MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-01','762560.00','A'),('1530',3,'COREA MARTINEZ GUILLERMO JOSE ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',135360,'2011-09-25','997190.00','A'),('1531',3,'PACHECO RODRIGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117002,'2010-03-08','789960.00','A'),('1532',3,'WELCH RICHARD WILLIAM','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',190393,'2010-10-04','958210.00','A'),('1533',3,'FOREMAN CAROLYN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',107159,'2011-05-23','421200.00','A'),('1535',3,'ZAGAL SOTO CLAUDIA PAZ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2008-05-16','893130.00','A'),('1536',3,'ZAGAL SOTO CLAUDIA PAZ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-10-08','771600.00','A'),('1538',3,'BLANCO RODRIGUEZ JUAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',197162,'2011-04-02','578250.00','A'),('154',1,'HENDEZ PUERTO JAVIER ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-25','807310.00','A'),('1540',3,'CONTRERAS BRAIN JAVIER ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-02-22','42420.00','A'),('1541',3,'RONDON HERNANDEZ MARYLIN DEL CARMEN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132958,'2011-09-29','145780.00','A'),('1542',3,'ELJURI RAMIREZ EMIRA ELIZABETH','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132958,'2010-10-13','601670.00','A'),('1544',3,'REYES LE ROY TOMAS FRANCISCO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2009-06-24','49990.00','A'),('1545',3,'GHETEA GAMUZ JENNY','191821112','CRA 25 CALLE 100','675@gmail.com','2011-02-03',150699,'2010-05-29','536940.00','A'),('1546',3,'DUARTE GONZALEZ ROONEY ORLANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-06-20','534720.00','A'),('1548',3,'BIZOT PHILIPPE PIERRE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',263813,'2011-03-02','709760.00','A'),('1549',3,'PELUFFO RUBIO GUILLERMO JUAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',116366,'2011-05-09','360470.00','A'),('1550',3,'AGLIATI YERKOVIC CAROLINA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2010-06-01','673040.00','A'),('1551',3,'SEPULVEDA LEDEZMA HENRY CORNELIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-08-15','283810.00','A'),('1552',3,'CABRERA CARMINE JAIME FRANCO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2008-11-30','399940.00','A'),('1553',3,'ZINNO PEÑA ALVARO ANTONIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',116366,'2010-08-02','148270.00','A'),('1554',3,'ROMERO BUCCICARDI JUAN CRISTOBAL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-08-01','541530.00','A'),('1555',3,'FEFERKORN ABRAHAM','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',159312,'2011-06-12','262840.00','A'),('1556',3,'MASSE CATESSON CAROLINE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',131272,'2011-06-12','689600.00','A'),('1557',3,'CATESSON ALEXANDRA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',131272,'2011-06-12','659470.00','A'),('1558',3,'FUENTES HERNANDEZ RICARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-18','228540.00','A'),('1559',3,'GUEVARA MENJIVAR WILSON ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-18','164310.00','A'),('1560',3,'DANOWSKI NICOLAS JAMES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-02','135920.00','A'),('1561',3,'CASTRO VELASQUEZ ISMAEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',121318,'2011-07-31','186670.00','A'),('1562',3,'RODRIGUEZ CORNEJO CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-18','525590.00','A'),('1563',3,'VANIA CAROLINA FLORES AVILA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-18','67950.00','A'),('1564',3,'ARMERO RAMOS OSCAR ALEXANDER','191821112','CRA 25 CALLE 100','414@hotmail.com','2011-02-03',127591,'2011-09-18','762950.00','A'),('1565',3,'ORELLANA MARTINEZ JUAN CARLOS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-18','610930.00','A'),('1566',3,'BRATT BABONNEAU CARLOS MIGUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-09-14','765800.00','A'),('1567',3,'YANES FERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150728,'2011-04-12','996200.00','A'),('1568',3,'ANGULO TAMAYO SEBASTIAN GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',126674,'2011-05-19','683600.00','A'),('1569',3,'HENRIQUEZ JOSE LUIS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',138329,'2011-08-15','429390.00','A'),('157',1,'ORTIZ RIOS ALEJANDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-12','365330.00','A'),('1570',3,'GARCIA VILLARROEL RAUL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',126189,'2011-06-12','96140.00','A'),('1571',3,'SOLA HERNANDEZ JOSE FRANCISCO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-09-25','192530.00','A'),('1572',3,'PEREZ PASTOR OSWALDO MAGARREY','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',126674,'2011-05-25','674260.00','A'),('1573',3,'MICHAN QUIÑONES FRANCISCO JOSE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-06-21','793680.00','A'),('1574',3,'GARCIA ARANDA OSCAR DAVID','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-08-15','945620.00','A'),('1575',3,'GARCIA RIBAS JORDI','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-07-10','347070.00','A'),('1576',3,'GALVAN ROMERO MARIA INMACULADA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-09-14','898480.00','A'),('1577',3,'BOSH MOLINAS JUAN JOSE ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',198576,'2011-08-22','451190.00','A'),('1578',3,'MARTIN TENA JOSE MARIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-04-24','560520.00','A'),('1579',3,'HAWKINS ROBERT JAMES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-12','449010.00','A'),('1580',3,'GHERARDI ALEJANDRO EMILIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',180063,'2010-11-15','563500.00','A'),('1581',3,'TELLO JUAN EDUARDO','191821112','CRA 25 CALLE 100','192@hotmail.com','2011-02-03',138329,'2011-05-01','470460.00','A'),('1583',3,'GUZMAN VALDIVIA CINTIA TATIANA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',199862,'2011-04-06','897580.00','A'),('1584',3,'STUBBS MERCEDES CARMEN JOSEFINA DEL MILAGRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',199862,'2011-04-06','502510.00','A'),('1585',3,'QUINTEIRO GORIS JOSE ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-17','819840.00','A'),('1587',3,'RIVAS LORIA PRISCILLA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',205636,'2011-05-01','498720.00','A'),('1588',3,'DE LA TORRE AUGUSTO PATRICIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',20404,'2011-08-31','718670.00','A'),('159',1,'ALDANA PATIÑO NORMAN ALEXANDER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2009-10-10','201500.00','A'),('1590',3,'TORRES VILLAR ROBERTO ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2011-08-10','329950.00','A'),('1591',3,'PETRULLI CARMELO MORENO','191821112','CRA 25 CALLE 100','883@yahoo.com.mx','2011-02-03',127591,'2011-06-20','358180.00','A'),('1592',3,'MUSCO ENZO FRANCESCO GIUSEPPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-09-04','801050.00','A'),('1593',3,'RONCUZZI CLAUDIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127134,'2011-10-02','930700.00','A'),('1594',3,'VELANI FRANCESCA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',199862,'2011-08-22','250360.00','A'),('1596',3,'BENARROCH ASSOR DAVID ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-10-06','547310.00','A'),('1597',3,'FLO VILLASECA ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-05-27','357520.00','A'),('1598',3,'FONT RIBAS ANTONI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',196117,'2011-09-21','145660.00','A'),('1599',3,'LOPEZ BARAHONA MONICA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2011-08-03','655740.00','A'),('16',1,'FLOREZ PEREZ GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132572,'2011-03-30','956370.00','A'),('160',1,'GIRALDO MENDIVELSO MARTIN EDISSON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-14','429010.00','A'),('1600',3,'SCATTIATI ALDO ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',215245,'2011-07-10','841730.00','A'),('1601',3,'MARONE CARLO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',101179,'2011-06-14','241420.00','A'),('1602',3,'CHUVASHEVA ELENA ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',190393,'2011-08-21','681900.00','A'),('1603',3,'GIGLIO FRANCISCO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',122035,'2011-09-19','685250.00','A'),('1604',3,'JUSTO AMATE AGUSTIN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',174598,'2011-05-16','380560.00','A'),('1605',3,'GUARDABASSI FABIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',281044,'2011-07-26','847060.00','A'),('1606',3,'CALABRETTA FRAMCESCO ANTONIO MARIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',199862,'2011-08-22','93590.00','A'),('1607',3,'TARTARINI MASSIMO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',196234,'2011-05-10','926800.00','A'),('1608',3,'BOTTI GIAIME','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',231989,'2011-04-04','353210.00','A'),('1610',3,'PILERI ANDREA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',205040,'2011-09-01','868590.00','A'),('1612',3,'MARTIN GRACIA LUIS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-07-27','324320.00','A'),('1613',3,'GRACIA MARTIN LUIS','191821112','CRA 25 CALLE 100','579@facebook.com','2011-02-03',198248,'2011-08-24','463560.00','A'),('1614',3,'SERRAT SESE JUAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',196234,'2011-05-16','344840.00','A'),('1615',3,'DEL LAGO AMPELIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-06-29','333510.00','A'),('1616',3,'PERUGORRIA RODRIGUEZ JORGE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',148511,'2011-06-06','633040.00','A'),('1617',3,'GIRAL CALVO IGNACIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-09-19','164670.00','A'),('1618',3,'ALONSO CEBRIAN JOSE MARIA','191821112','CRA 25 CALLE 100','253@terra.com.co','2011-02-03',188640,'2011-03-23','924240.00','A'),('162',1,'ARIZA PINEDA JOHN ALEXANDER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-11-27','415710.00','A'),('1620',3,'OLMEDO CARDENETE DOMINGO MIGUEL','191821112','CRA 25 CALLE 100','608@terra.com.co','2011-02-03',135397,'2011-09-03','863200.00','A'),('1622',3,'GIMENEZ BALDRES ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',182860,'2011-05-12','82660.00','A'),('1623',3,'NUÑEZ MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-05-23','609950.00','A'),('1624',3,'PEÑATE CASTRO WENCESLAO LORENZO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',153607,'2011-09-13','801750.00','A'),('1626',3,'ESCODA MIGUEL JOAN JOSEP','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-07-18','489310.00','A'),('1628',3,'ESTRADA CAPILLA ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-07-26','81180.00','A'),('163',1,'PERDOMO LOPEZ ANDRES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-05','456910.00','A'),('1630',3,'SUBIRAIS MARIANA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',196234,'2011-09-08','138700.00','A'),('1632',3,'ENSEÑAT VELASCO JAIME LUIS','191821112','CRA 25 CALLE 100','687@gmail.com','2011-02-03',188640,'2011-04-12','904560.00','A'),('1633',3,'DIEZ POLANCO CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-05-24','530410.00','A'),('1636',3,'CUADRA ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-09-04','688400.00','A'),('1637',3,'UBRIC MUÑOZ RAUL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',98790,'2011-05-30','139830.00','A'),('1638',3,'NEDDERMANN GUJO RICARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-07-31','633990.00','A'),('1639',3,'RENEDO ZALBA JAIME','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-03-13','750430.00','A'),('164',1,'JIMENEZ PADILLA JOHAN MARCEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-05','37430.00','A'),('1640',3,'FERNANDEZ MORENO DAVID','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-05-28','850180.00','A'),('1641',3,'VERGARA SERRANO JUAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-06-30','999620.00','A'),('1642',3,'MARTINEZ HUESO LUCAS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',182860,'2011-06-29','447570.00','A'),('1643',3,'FRANCO POBLET JUAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',196234,'2011-10-03','238990.00','A'),('1644',3,'MORA HIDALGO MIGUEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-06','852250.00','A'),('1645',3,'GARCIA COSO EMILIANO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-09-14','544260.00','A'),('1646',3,'GIMENO ESCRIG ENRIQUE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',180124,'2011-09-20','164580.00','A'),('1647',3,'MORCILLO LOPEZ RAMON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127538,'2011-04-16','190090.00','A'),('1648',3,'RUBIO BONET MANUEL','191821112','CRA 25 CALLE 100','252@facebook.com','2011-02-03',196234,'2011-05-25','456740.00','A'),('1649',3,'PRADO ABUIN FERNANDO ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-07-16','713400.00','A'),('165',1,'RAMIREZ PALMA LUIS FELIPE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-10','816420.00','A'),('1650',3,'DE VEGA PUJOL GEMA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-08-01','196780.00','A'),('1651',3,'IBARGUEN ALFREDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2010-12-03','843720.00','A'),('1652',3,'IBARGUEN ALFREDO','191821112','CRA 25 CALLE 100','856@hotmail.com','2011-02-03',188640,'2011-06-18','628250.00','A'),('1654',3,'MATELLANES RODRIGUEZ NURIA PILAR','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-10-05','165770.00','A'),('1656',3,'VIDAURRAZAGA GUISOLA JUAN ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',188640,'2011-08-08','495320.00','A'),('1658',3,'GOMEZ ULLATE MARIA ELENA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-04-12','919090.00','A'),('1659',3,'ALCAIDE ALONSO JUAN MIGUEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-05-02','152430.00','A'),('166',1,'TUSTANOSKI RODOLFO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-12-03','969790.00','A'),('1660',3,'LARROY GARCIA CRISTINA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-09-14','4900.00','A'),('1661',3,'FERNANDEZ POYATO ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-09-10','567180.00','A'),('1662',3,'TREVEJO PARDO JULIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-25','821200.00','A'),('1663',3,'GORGA CASSINELLI VICTOR DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-05-30','404490.00','A'),('1664',3,'MORUECO GONZALEZ JOSE ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-10-09','558820.00','A'),('1665',3,'IRURETA FERNANDEZ PEDRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',214283,'2011-09-14','580650.00','A'),('1667',3,'TREVEJO PARDO JUAN ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-25','392020.00','A'),('1668',3,'BOCOS NUÑEZ MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',196234,'2011-10-08','279710.00','A'),('1669',3,'LUIS CASTILLO JOSE AGUSTIN','191821112','CRA 25 CALLE 100','557@hotmail.es','2011-02-03',168202,'2011-06-16','222500.00','A'),('167',1,'HURTADO BELALCAZAR JOHN JADY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127300,'2011-08-17','399710.00','A'),('1670',3,'REDONDO GUTIERREZ EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-09-14','273350.00','A'),('1671',3,'MADARIAGA ALONSO RAMON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2011-07-26','699240.00','A'),('1673',3,'REY GONZALEZ LUIS JAVIER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-07-26','283190.00','A'),('1676',3,'PEREZ ESTER ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-10-03','274900.00','A'),('1677',3,'GOMEZ-GRACIA HUERTA ALEJANDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-09-22','112260.00','A'),('1678',3,'DAMASO PUENTE DIEGO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-05-25','736600.00','A'),('168',1,'JUAN PABLO MARTINEZ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-08-15','89160.00','A'),('1680',3,'DIEZ GONZALEZ LUIS MIGUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-05-17','521280.00','A'),('1681',3,'LOPEZ LOPEZ JOSE LUIS','191821112','CRA 25 CALLE 100','853@yahoo.com','2011-02-03',196234,'2010-12-13','567760.00','A'),('1682',3,'MIRO LINARES FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133442,'2011-09-03','274930.00','A'),('1683',3,'ROCA PINTADO MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-05-16','671410.00','A'),('1684',3,'GARCIA BARTOLOME HORACIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-09-29','532220.00','A'),('1686',3,'BALMASEDA DE AHUMADA DIEZ JUAN LUIS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',168202,'2011-04-13','637860.00','A'),('1687',3,'FERNANDEZ IMAZ FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-04-10','248580.00','A'),('1688',3,'ELIAS CASTELLS FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-05-19','329300.00','A'),('1689',3,'ANIDO DIAZ DANIEL','191821112','CRA 25 CALLE 100','491@gmail.com','2011-02-03',188640,'2011-04-04','900780.00','A'),('1691',3,'GATELL ARIMONT MARIA CRISTINA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',196234,'2011-09-17','877700.00','A'),('1692',3,'RIVERA MUÑOZ ADONI','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',211705,'2011-04-05','840470.00','A'),('1693',3,'LUNA LOPEZ ALICIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-10-01','569270.00','A'),('1695',3,'HAMMOND ANN ELIZABETH','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118021,'2011-05-17','916770.00','A'),('1698',3,'RODRIGUEZ PARAJA MARIA CRISTINA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-07-15','649080.00','A'),('1699',3,'RUIZ DIAZ JOSE IGNACIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-06-24','359540.00','A'),('17',1,'SUAREZ CUEVAS FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',129499,'2011-08-31','149640.00','A'),('170',1,'MARROQUIN AVILA FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-04','965840.00','A'),('1700',3,'BACCHELLI ORTEGA JOSE MARIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',126180,'2011-06-07','850450.00','A'),('1701',3,'IGLESIAS JOSE IGNACIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2010-09-14','173630.00','A'),('1702',3,'GUTIEZ CUEVAS JULIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2010-09-07','316800.00','A'),('1704',3,'CALDEIRO ZAMORA JESUS CARMELO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-05-09','365230.00','A'),('1705',3,'ARBONA ABASCAL MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-02-27','636760.00','A'),('1706',3,'COHEN AMAR MOISES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196766,'2011-05-20','88120.00','A'),('1708',3,'FERNANDEZ COBOS ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2010-11-09','387220.00','A'),('1709',3,'CANAL VIVES JOAQUIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',196234,'2011-09-27','345150.00','A'),('171',1,'LADINO MORENO JAVIER ORLANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-25','89230.00','A'),('1710',5,'GARCIA BERTRAND HECTOR','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-04-07','564100.00','A'),('1711',1,'CONSTANZA MARÍN ESCOBAR','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127799,'2011-03-24','785060.00','A'),('1712',1,'NUNEZ BATALLA FAUSTINO JORGE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-26','232970.00','A'),('1713',3,'VILORA LAZARO ERICK MARTIN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-26','809690.00','A'),('1715',3,'ELLIOT EDWARD JAMES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-26','318660.00','A'),('1716',3,'ALCALDE ORTEÑO MAURICIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',117002,'2011-07-23','544650.00','A'),('1717',3,'CIARAVELLA STEFANO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',231989,'2011-06-13','767260.00','A'),('1718',3,'URRA GONZALEZ PEDRO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-05-02','202370.00','A'),('172',1,'GUERRERO ERNESTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-15','548610.00','A'),('1720',3,'JIMENEZ RODRIGUEZ ANNET','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-05-25','943140.00','A'),('1721',3,'LESCAY CASTELLANOS ARNALDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-09-14','585570.00','A'),('1722',3,'OCHOA AGUILAR ELIADES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-25','98410.00','A'),('1723',3,'RODRIGUEZ NUÑES JOSE ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-25','735340.00','A'),('1724',3,'OCHOA BUSTAMANTE ELIADES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-25','381480.00','A'),('1725',3,'MARTINEZ NIEVES JOSE ANGEL','191821112','CRA 25 CALLE 100','919@yahoo.es','2011-02-03',127591,'2011-05-25','701360.00','A'),('1727',3,'DRAGONI ALAIN ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-25','707850.00','A'),('1728',3,'FERNANDEZ LOPEZ MARCOS ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-25','452090.00','A'),('1729',3,'MATURELL ROMERO JORGE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-25','136880.00','A'),('173',1,'RUIZ CEBALLOS ALEXANDER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-04','475380.00','A'),('1730',3,'LARA CASTELLANO LENNIS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-25','328150.00','A'),('1731',3,'GRAHAM CRISTOPHER DRAKE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',203079,'2011-06-27','230120.00','A'),('1732',3,'TORRE LUCA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-05-11','166120.00','A'),('1733',3,'OCHOA HIDALGO EGLIS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-25','140250.00','A'),('1734',3,'LOURERIO DELACROIX FERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',116511,'2011-09-28','202900.00','A'),('1736',3,'LEVIN FIORELLI ANDRES','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',116366,'2011-08-07','360110.00','A'),('1739',3,'BERRY R ALBERT','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',216125,'2011-08-16','22170.00','A'),('174',1,'NIETO PARRA SEBASTIAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-05-11','731040.00','A'),('1740',3,'MARSHALL ROBERT SHEPARD','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',150159,'2011-03-09','62860.00','A'),('1741',3,'HENANDEZ ROY CHRISTOPHER JOHN PATRICK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',179614,'2011-09-26','247780.00','A'),('1742',3,'LANDRY GUILLAUME','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',232263,'2011-04-27','50330.00','A'),('1743',3,'VUCETIC ZELJKO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',232263,'2011-07-25','508320.00','A'),('1744',3,'DE JUANA CELASCO MARIA DEL CARMEN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-04-16','390620.00','A'),('1745',3,'LABONTE RONALD','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',269033,'2011-09-28','428120.00','A'),('1746',3,'NEWMAN PHILIP MARK','191821112','CRA 25 CALLE 100','557@gmail.com','2011-02-03',231373,'2011-07-25','968750.00','A'),('1747',3,'GRENIER MARIE PIERRE ','191821112','CRA 25 CALLE 100','409@facebook.com','2011-02-03',244158,'2011-07-03','559370.00','A'),('1749',3,'SHINDER GARY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',244158,'2011-07-25','775000.00','A'),('175',3,'GALLEGOS BASTIDAS CARLOS EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133211,'2011-08-10','229090.00','A'),('1750',3,'LOPEZ DE GOICOCHEA ZABALA FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-09-13','203120.00','A'),('1751',3,'CORRAL BELLON MANUEL','191821112','CRA 25 CALLE 100','538@yahoo.com','2011-02-03',177443,'2011-05-02','690610.00','A'),('1752',3,'DE SOLA SOLVAS JUAN ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-10-02','843700.00','A'),('1753',3,'GARCIA ALCALA DIAZ REGAÑON EVA MARIA','191821112','CRA 25 CALLE 100','398@yahoo.com','2011-02-03',118777,'2010-03-15','146680.00','A'),('1754',3,'BIELA VILIAM','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132958,'2011-08-16','202290.00','A'),('1755',3,'GUIOT CANO JUAN PATRICK','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',232263,'2011-05-23','571390.00','A'),('1756',3,'JIMENEZ DIAZ LUIS MIGUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-03-27','250100.00','A'),('1757',3,'FOX ELEANORE MAE','191821112','CRA 25 CALLE 100','117@yahoo.com','2011-02-03',190393,'2011-05-04','536340.00','A'),('1758',3,'TANG VAN SON','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132958,'2011-05-07','931400.00','A'),('1759',3,'SUTTON PETER RONALD','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',281673,'2011-06-01','47960.00','A'),('176',1,'GOMEZ IVAN','191821112','CRA 25 CALLE 100','438@yahoo.com.mx','2011-02-03',127591,'2008-04-09','952310.00','A'),('1762',3,'STOODY MATTHEW FRANCIS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-21','84320.00','A'),('1763',3,'SEIX MASO ARNAU','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',150699,'2011-05-24','168880.00','A'),('1764',3,'FERNANDEZ REDEL RAQUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-09-14','591440.00','A'),('1765',3,'PORCAR DESCALS VICENNTE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',176745,'2011-04-24','450580.00','A'),('1766',3,'PEREZ DE VILLEGAS TRILLO FIGUEROA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',196234,'2011-05-17','478560.00','A'),('1767',3,'CELDRAN DEGANO ANGEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',196234,'2011-05-17','41040.00','A'),('1768',3,'TERRAGO MARI FERRAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-09-30','769550.00','A'),('1769',3,'SZUCHOVSZKY GERGELY','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',250256,'2011-05-23','724630.00','A'),('177',1,'SEBASTIAN TORO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127443,'2011-07-14','74270.00','A'),('1771',3,'TORIBIO JOSE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',226612,'2011-09-04','398570.00','A'),('1772',3,'JOSE LUIS BAQUERA PEIRONCELLY','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2010-10-19','49360.00','A'),('1773',3,'MADARIAGA VILLANUEVA MIGUEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-04-12','51090.00','A'),('1774',3,'VILLENA BORREGO ANTONIO','191821112','CRA 25 CALLE 100','830@terra.com.co','2011-02-03',188640,'2011-07-19','107400.00','A'),('1776',3,'VILAR VILLALBA JOSE LUIS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',180124,'2011-09-20','596330.00','A'),('1777',3,'CAGIGAL ORTIZ MACARENA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',214283,'2011-09-14','830530.00','A'),('1778',3,'KORBA ATTILA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',250256,'2011-09-27','363650.00','A'),('1779',3,'KORBA-ELIAS BARBARA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',250256,'2011-09-27','326670.00','A'),('178',1,'AMSILI COHEN HANAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2009-08-29','514450.00','A'),('1780',3,'PINDADO GOMEZ JESUS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',189053,'2011-04-26','542400.00','A'),('1781',3,'IBARRONDO GOMEZ GRACIA ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-09-21','731990.00','A'),('1782',3,'MUNGUIRA GONZALEZ JUAN JULIAN','191821112','CRA 25 CALLE 100','54@hotmail.es','2011-02-03',188640,'2011-09-06','32730.00','A'),('1784',3,'LANDMAN PIETER MARINUS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',294861,'2011-09-22','740260.00','A'),('1789',3,'SUAREZ AINARA ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-05-17','503470.00','A'),('179',1,'CARO JUNCO GUIOVANNY','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-03','349420.00','A'),('1790',3,'MARTINEZ CHACON JOSE JOAQUIN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-05-20','592220.00','A'),('1792',3,'MENDEZ DEL RION LUCIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',120639,'2011-06-16','476910.00','A'),('1793',3,'VERHULST LAMBERTUS CORNELIA FRANCISCUS ALPHONSUS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',295420,'2011-07-04','32410.00','A'),('1794',3,'YAÑEZ YAGUE JESUS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-07-10','731290.00','A'),('1796',3,'GOMEZ ZORRILLA AMATE JOSE MARIOA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',188640,'2011-07-12','602380.00','A'),('1797',3,'LAIZ MORENO ENEKO','191821112','CRA 25 CALLE 100','219@gmail.com','2011-02-03',127591,'2011-08-05','334150.00','A'),('1798',3,'MORODO RUIZ RUBEN DAVID','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-09-14','863620.00','A'),('18',1,'GARZON VARGAS GUILLERMO FEDERICO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-29','879110.00','A'),('1800',3,'ALFARO FAUS MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-09-14','987410.00','A'),('1801',3,'MORRALLA VALLVERDU ENRIC','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',194601,'2011-07-18','990070.00','A'),('1802',3,'BALBASTRE TEJEDOR JUAN VICENTE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',182860,'2011-08-24','988120.00','A'),('1803',3,'MINGO REIZ FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',188640,'2010-03-24','970400.00','A'),('1804',3,'IRURETA FERNANDEZ JOSE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',214283,'2011-09-10','887630.00','A'),('1807',3,'NEBRO MELLADO JOSE JUAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',168996,'2011-08-15','278540.00','A'),('1808',3,'ALBERQUILLA OJEDA JOSE DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-09-27','477070.00','A'),('1809',3,'BUENDIA NORTE MARIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',131401,'2011-07-08','549720.00','A'),('181',1,'CASTELLANOS FLORES RODRIGO ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-18','970470.00','A'),('1811',3,'HILBERT ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',196234,'2011-09-08','937830.00','A'),('1812',3,'GONZALES PINTO COTERILLO ADOLFO LORENZO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',214283,'2011-09-10','736970.00','A'),('1813',3,'ARQUES ALVAREZ JOSE RICARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-04-04','871360.00','A'),('1817',3,'CLAUSELL LOW ROBERTO EMILIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132775,'2011-09-28','348770.00','A'),('1818',3,'BELICHON MARTINEZ JESUS ALVARO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-04-12','327010.00','A'),('182',1,'GUZMAN NIETO JOSE MARIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-20','241130.00','A'),('1821',3,'LINATI DE PUIG JORGE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',196234,'2011-05-18','47210.00','A'),('1823',3,'SINBARRERA ROMA ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',196234,'2011-09-08','598380.00','A'),('1826',2,'JUANES GARATE BRUNO ','191821112','CRA 25 CALLE 100','301@gmail.com','2011-02-03',118777,'2011-08-21','877650.00','A'),('1827',3,'BOLOS GIMENO ROGELIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',200247,'2010-11-28','555470.00','A'),('1828',3,'ZABALA ASTIGARRAGA JOSE MARIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',188640,'2011-09-20','144410.00','A'),('1831',3,'MAPELLI CAFFARENA BORJA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',172381,'2011-09-04','58200.00','A'),('1833',3,'LARMONIE LESLIE MARTIN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-30','604840.00','A'),('1834',3,'WILLEMS ROBERT-JAN MICHAEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',288531,'2011-09-05','756530.00','A'),('1835',3,'ANJEMA LAURENS JAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2011-08-29','968140.00','A'),('1836',3,'VERHULST HENRICUS LAMBERTUS MARIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',295420,'2011-04-03','571100.00','A'),('1837',3,'PIERROT JOZEF MARIE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',288733,'2011-05-18','951100.00','A'),('1838',3,'EIKELBOOM HIDDE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-02','42210.00','A'),('1839',3,'TAMBINI GOMEZ DE MUNG','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',180063,'2011-04-24','357740.00','A'),('1840',3,'MAGAÑA PEREZ GERARDO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',135360,'2011-09-28','662060.00','A'),('1841',3,'COURTOISIE BEYHAUT RAFAEL JUAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',116366,'2011-09-05','237070.00','A'),('1842',3,'ROJAS BENJAMIN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-13','199170.00','A'),('1843',3,'GARCIA VICENTE EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',150699,'2011-08-10','284650.00','A'),('1844',3,'CESTTI LOPEZ RAFAEL GUSTAVO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',144215,'2011-09-27','825750.00','A'),('1845',3,'URTECHO LOPEZ ARMANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',139272,'2011-09-28','274800.00','A'),('1846',3,'SEGURA ESPINOZA ARMANDO SEBASTIAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',135360,'2011-09-28','896730.00','A'),('1847',3,'GONZALEZ VEGA LUIS PASTOR','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',135360,'2011-05-18','659240.00','A'),('185',1,'AYALA CARDENAS NELSON MAURICIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-25','855960.00','A'),('1850',3,'ROTZINGER ROA KLAUS ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',116366,'2011-09-12','444250.00','A'),('1851',3,'FRANCO DE LEON SEBASTIAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',116366,'2011-04-26','63840.00','A'),('1852',3,'RIVAS GAGNONI LUIS ARMANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',135360,'2011-05-18','986440.00','A'),('1853',3,'BARRETO VELASQUEZ JOEL FERNANDO','191821112','CRA 25 CALLE 100','104@hotmail.es','2011-02-03',116511,'2011-04-27','740670.00','A'),('1854',3,'SEVILLA AMAYA ORLANDO','191821112','CRA 25 CALLE 100','264@yahoo.com','2011-02-03',136995,'2011-05-18','744020.00','A'),('1855',3,'VALFRE BRALICH ELEONORA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',116366,'2011-06-06','498080.00','A'),('1857',3,'URDANETA DIAMANTES DIEGO ANDRES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-09-23','797590.00','A'),('1858',3,'RAMIREZ ALVARADO ROBERT JESUS','191821112','CRA 25 CALLE 100','290@yahoo.com.mx','2011-02-03',127591,'2011-09-18','212850.00','A'),('1859',3,'GUTTNER DENNIS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-25','671470.00','A'),('186',1,'CARRASCO SUESCUN ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-15','36620.00','A'),('1861',3,'HEGEMANN JOACHIM','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-25','579710.00','A'),('1862',3,'MALCHER INGO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',292243,'2011-06-23','742060.00','A'),('1864',3,'HOFFMEISTER MALTE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128206,'2011-09-06','629770.00','A'),('1865',3,'BOHME ALEXANDRA LUCE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-14','235260.00','A'),('1866',3,'HAMMAN FRANK THOMAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-13','286980.00','A'),('1867',3,'GOPPERT MARKUS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-09-05','729150.00','A'),('1868',3,'BISCARO CAROLINA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-09-16','784790.00','A'),('1869',3,'MASCHAT SEBASTIAN STEPHAN ANDREAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-02-03','736520.00','A'),('1870',3,'WALTHER DANIEL CLAUS PETER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-24','328220.00','A'),('1871',3,'NENTWIG DANIEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',289697,'2011-02-03','431550.00','A'),('1872',3,'KARUTZ ALEX','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127662,'2011-03-17','173090.00','A'),('1875',3,'KAY KUNNE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',289697,'2011-03-18','961400.00','A'),('1876',2,'SCHLUMPF IVANA PATRICIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',245206,'2011-03-28','802690.00','A'),('1877',3,'RODRIGUEZ BUSTILLO CONSUELO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',139067,'2011-03-21','129280.00','A'),('1878',1,'REHWALDT RICHARD ULRICH','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',289697,'2009-10-25','238320.00','A'),('1880',3,'FONSECA BEHRENS MANUELA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',150699,'2011-08-18','303810.00','A'),('1881',3,'VOGEL MIRKO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-09','107790.00','A'),('1882',3,'WU WEI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',289697,'2011-03-04','627520.00','A'),('1884',3,'KADOLSKY ANKE SIGRID','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',289697,'2010-10-07','188560.00','A'),('1885',3,'PFLUCKER PLENGE CARLOS HERNAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',239124,'2011-08-15','500140.00','A'),('1886',3,'PEÑA LAGOS MELENIA PATRICIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-18','935020.00','A'),('1887',3,'CALVANO MARCO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2011-05-02','174690.00','A'),('1888',3,'KUHLEN LOTHAR WILHELM','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',289232,'2011-08-30','68390.00','A'),('1889',3,'QUIJANO RICO SOFIA VICTORIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',221939,'2011-06-13','817890.00','A'),('189',1,'GOMEZ TRUJILLO SERGIO ANDRES','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-17','985980.00','A'),('1890',3,'SCHILBERZ KARIN','191821112','CRA 25 CALLE 100','405@facebook.com','2011-02-03',287570,'2011-06-23','884260.00','A'),('1891',3,'SCHILBERZ SOPHIE CAHRLOTTE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',287570,'2011-06-23','967640.00','A'),('1892',3,'MOLINA MOLINA MILAGRO DE SUYAPA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',139844,'2011-07-26','185410.00','A'),('1893',3,'BARRIENTOS ESCALANTE RAFAEL ALVARO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',139067,'2011-05-18','24110.00','A'),('1895',3,'ENGELS FRANZBERNARD','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',292243,'2011-07-01','749430.00','A'),('1896',3,'FRIEDHOFF SVEN WILHEM','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',289697,'2010-10-31','54090.00','A'),('1897',3,'BARTELS CHRISTIAN JOHAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',133535,'2011-07-25','22160.00','A'),('1898',3,'NILS REMMEL','191821112','CRA 25 CALLE 100','214@gmail.com','2011-02-03',256231,'2011-08-05','948530.00','A'),('1899',3,'DR SCHEIBE MATTHIAS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',252431,'2011-09-26','676150.00','A'),('19',1,'RIAÑO ROMERO ALBERTO ELIAS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2009-12-14','946630.00','A'),('190',1,'LLOREDA ORTIZ FELIPE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-12-20','30860.00','A'),('1900',3,'CARRASCO CATERIANO PEDRO','191821112','CRA 25 CALLE 100','255@hotmail.com','2011-02-03',286578,'2011-05-02','535180.00','A'),('1901',3,'ROSENBER DIRK PETER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-29','647450.00','A'),('1902',3,'LAUBACH JOHANNES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',289697,'2011-05-01','631720.00','A'),('1904',3,'GRUND STEFAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',256231,'2011-08-05','185990.00','A'),('1905',3,'GRUND BEATE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',256231,'2011-08-05','281280.00','A'),('1906',3,'CORZO PAULA MIRIANA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',180063,'2011-08-02','848400.00','A'),('1907',3,'OESTERHAUS CORNELIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',256231,'2011-03-16','398170.00','A'),('1908',1,'JUAN SEBASTIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127300,'2011-05-12','445660.00','A'),('1909',3,'VAN ZIJL CHRISTIAN ANDREAS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',286785,'2011-09-24','33800.00','A'),('191',1,'CASTAÑEDA CABALLERO JUAN MANUEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-28','196370.00','A'),('1910',3,'LORZA RUIZ MYRIAM ESPERANZA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-29','831990.00','A'),('192',1,'ZEA EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-09','889270.00','A'),('193',1,'VELEZ VICTOR MANUEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2010-10-22','857250.00','A'),('194',1,'ARCINIEGAS GOMEZ ISMAEL','191821112','CRA 25 CALLE 100','937@hotmail.com','2011-02-03',127591,'2011-05-18','618450.00','A'),('195',1,'LINAREZ PEDRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-12','520470.00','A'),('1952',3,'BERND ERNST HEINZ SCHUNEMANN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',255673,'2011-09-04','796820.00','A'),('1953',3,'BUCHNER RICHARD ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-17','808430.00','A'),('1954',3,'CHO YONG BEOM','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',173192,'2011-02-07','651670.00','A'),('1955',3,'BERNECKER WALTER LUDWIG','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',256231,'2011-04-03','833080.00','A'),('1956',3,'SCHIERENBECK THOMAS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',256231,'2011-05-03','210380.00','A'),('1957',3,'STEGMANN WOLF DIETER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-08-27','552650.00','A'),('1958',3,'LEBAGE GONZALEZ VALENTINA CECILIA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',131272,'2011-07-29','132130.00','A'),('1959',3,'CABRERA MACCHI JOSE ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',180063,'2011-08-02','2700.00','A'),('196',1,'OTERO BERNAL ALVARO ERNESTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-04-29','747030.00','A'),('1960',3,'KOO BONKI','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-15','617110.00','A'),('1961',3,'JODJAHN DE CARVALHO BEIRAL FLAVIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118942,'2011-07-05','77460.00','A'),('1963',3,'VIEIRA ROCHA MARQUES ELIANE TEREZINHA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118402,'2011-09-13','447430.00','A'),('1965',3,'KELLEN CRISTINA GATTI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',126180,'2011-07-01','804020.00','A'),('1966',3,'CHAVEZ MARLON TENORIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',120773,'2011-07-25','132310.00','A'),('1967',3,'SERGIO COZZI','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',125750,'2011-08-28','249500.00','A'),('1968',3,'REZENDE LIMA JOSE MARCIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-08-23','850570.00','A'),('1969',3,'RAMOS PEDRO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118942,'2011-08-03','504330.00','A'),('1972',3,'ADAMS THOMAS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118942,'2011-08-11','774000.00','A'),('1973',3,'WALESKA NUCINI BOGO ANDREA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-23','859690.00','A'),('1974',3,'GERMANO PAULO BUNN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118439,'2011-08-30','976440.00','A'),('1975',3,'CALDEIRA FILHO RUBENS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118942,'2011-07-18','303120.00','A'),('1976',3,'JOSE CUSTODIO DO ALTISSIMO NETONETO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',119814,'2011-09-08','586290.00','A'),('1977',3,'GAMAS MARIA CRISTINA ALVES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-09-19','22070.00','A'),('1979',3,'PORTO WEBER FERREIRA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-07','691340.00','A'),('1980',3,'FONSECA LAURO PINTO','191821112','CRA 25 CALLE 100','104@hotmail.es','2011-02-03',127591,'2011-08-16','402140.00','A'),('1981',3,'DUARTE ELENA CECILIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-06-15','936710.00','A'),('1983',3,'CECHINEL CRISTIAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118942,'2011-06-12','575530.00','A'),('1984',3,'BATISTA PINHERO JOAO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-04-25','446250.00','A'),('1987',1,'ISRAEL JOSE MAXWELL','191821112','CRA 25 CALLE 100','936@gmail.com','2011-02-03',125894,'2011-07-04','408350.00','A'),('1988',3,'BATISTA CARVALHO RODRIGO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118864,'2011-09-19','488410.00','A'),('1989',3,'RENO DA SILVEIRA EDNEIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118867,'2011-05-03','216990.00','A'),('199',1,'BASTO CORREA FERNANDO ANTONIO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-21','616860.00','A'),('1990',3,'SEIDLER KOHNERT G TEIXEIRA CHRISTINA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',119814,'2011-08-23','619730.00','A'),('1992',3,'GUIMARAES COSTA LEONARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-04-20','379090.00','A'),('1993',3,'BOTTA RODRIGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118777,'2011-09-16','552510.00','A'),('1994',3,'ARAUJO DA SILVA MARCELO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',125666,'2011-08-03','625260.00','A'),('1995',3,'DA SILVA FELIPE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118864,'2011-04-14','468760.00','A'),('1996',3,'MANFIO RODRIGUEZ FERNANDO','191821112','CRA 25 CALLE 100','974@yahoo.com','2011-02-03',118777,'2011-03-23','468040.00','A'),('1997',3,'NEIVA MORENO DE SOUZA CRISTIANE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-09-24','933900.00','A'),('2',3,'CHEEVER MICHAEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-04','560090.00','I'),('2000',3,'ROCHA GUSTAVO ADRIANO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118288,'2011-07-25','830340.00','A'),('2001',3,'DE ANDRADE CARVALHO VIRGINIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118942,'2011-08-11','575760.00','A'),('2002',3,'CAVALCANTI PIERECK GUILHERME','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',180063,'2011-08-01','387770.00','A'),('2004',3,'HOEGEMANN RAMOS CARLOS FERNANDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-04','894550.00','A'),('201',1,'LUIS FERNANDO AREVALO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-17','156730.00','A'),('2010',3,'GOMES BUCHALA JORGE FERNANDO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-09-23','314800.00','A'),('2011',3,'MARTINS SIMAIKA CATIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-06-01','155020.00','A'),('2012',3,'MONICA CASECA BUENO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-05-16','830710.00','A'),('2013',3,'ALBERTAL MARCELO ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118000,'2010-09-10','688480.00','A'),('2015',3,'GOMES CANTARELLI JAIRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118761,'2011-01-11','685940.00','A'),('2016',3,'CADETTI GARBELLINI ENILICE CRISTINA ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-11','578870.00','A'),('2017',3,'SPIELKAMP KLAUS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',150699,'2011-03-28','836540.00','A'),('2019',3,'GARES HENRI PHILIPPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',135190,'2011-04-05','720730.00','A'),('202',1,'LUCIO CHAUSTRE ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-19','179240.00','A'),('2023',3,'GRECO DE RESENDELUIZ ALFREDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',119814,'2011-04-25','647940.00','A'),('2024',3,'CORTINA EVANDRO JOAO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118922,'2011-05-12','153970.00','A'),('2026',3,'BASQUES MOURA GERALDO CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',119814,'2011-09-07','668250.00','A'),('2027',3,'DA SILVA VALDECIR','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-23','863150.00','A'),('2028',3,'CHI MOW YUNG IVAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-21','311000.00','A'),('2029',3,'YUNG MYRA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-21','965570.00','A'),('2030',3,'MARTINS RAMALHO PATRICIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-03-23','894830.00','A'),('2031',3,'DE LEMOS RIBEIRO GILBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118951,'2011-07-29','577430.00','A'),('2032',3,'AIROLDI CLAUDIO','191821112','CRA 25 CALLE 100','973@terra.com.co','2011-02-03',127591,'2011-09-28','202650.00','A'),('2033',3,'ARRUDA MENDES HEILMANN IONE TEREZA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',120773,'2011-09-07','280990.00','A'),('2034',3,'TAVARES DE CARVALHO EDUARDO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118942,'2011-08-03','796980.00','A'),('2036',3,'FERNANDES ALARCON RAFAEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-08-28','318730.00','A'),('2037',3,'SUCHODOLKI SERGIO GUSMAO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',190393,'2011-07-13','167870.00','A'),('2039',3,'ESTEVES MARCAL MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-02-24','912100.00','A'),('2040',3,'CORSI LUIZ ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-03-25','911080.00','A'),('2041',3,'LOPEZ MONICA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118795,'2011-05-03','819090.00','A'),('2042',3,'QUINTANILHA LUIS CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-16','362230.00','A'),('2043',3,'DE CARLI BRUNO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-05-03','353890.00','A'),('2045',3,'MARINO FRANCA MARILIA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-07-04','352060.00','A'),('2048',3,'VOIGT ALPHONSE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118439,'2010-11-22','384150.00','A'),('2049',3,'ALENCAR ARIMA TATIANA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-05-23','408590.00','A'),('2050',3,'LINIS DE ALMEIDA NEILSON','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',125666,'2011-08-03','890480.00','A'),('2051',3,'PINHEIRO DE CASTRO BENETI','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2011-08-09','226640.00','A'),('2052',3,'ALVES DO LAGO HELMANN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118942,'2011-08-01','461770.00','A'),('2053',3,'OLIVO MARCO ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-22','628900.00','A'),('2054',3,'WILLIAM DOMINGUES SERGIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118085,'2011-08-23','759220.00','A'),('2055',3,'DE SOUZA MENEZES KLEBER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-04-25','909400.00','A'),('2056',3,'CABRAL NEIDE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-16','269340.00','A'),('2057',3,'RODRIGUES RENATO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-06-15','618500.00','A'),('2058',3,'SPADALE PEDRO JORGE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118942,'2011-08-03','284490.00','A'),('2059',3,'MARTINS DE ALMEIDA GUSTAVO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118942,'2011-09-28','566920.00','A'),('206',1,'TORRES HEBER MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-01-29','643210.00','A'),('2060',3,'IKUNO CELINA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-06-08','981170.00','A'),('2061',3,'DAL BELLO FABIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',129499,'2011-08-20','205050.00','A'),('2062',3,'BENATES ADRIANA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-23','81770.00','A'),('2063',3,'CARDOSO ALEXANDRE ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-23','793690.00','A'),('2064',3,'ZANIOLO DE SOUZA CARLOS HENRIQUE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-09-19','723130.00','A'),('2065',3,'DA SILVA LUIZ SIDNEI','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-03-30','234590.00','A'),('2066',3,'RUFATO DE SOUZA LUIZ FERNANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-08-29','3560.00','A'),('2067',3,'DE MEDEIROS LUCIANA','191821112','CRA 25 CALLE 100','994@yahoo.com.mx','2011-02-03',118777,'2011-09-10','314020.00','A'),('2068',3,'WOLFF PIAZERA DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118255,'2011-06-15','559430.00','A'),('2069',3,'DA SILVA FORTUNA MARINA CLAUDIA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2011-09-23','855100.00','A'),('2070',3,'PEREIRA BORGES LUCILA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',120773,'2011-07-26','597210.00','A'),('2072',3,'PORROZZI DE ALMEIDA RENATO','191821112','CRA 25 CALLE 100','812@hotmail.es','2011-02-03',127591,'2011-06-13','312120.00','A'),('2073',3,'KALICHSZTEINN RICARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-03-23','298330.00','A'),('2074',3,'OCCHIALINI GUIMARAES ANA PAULA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118777,'2011-08-03','555310.00','A'),('2075',3,'MAZZUCO FONTES LUIZ ROBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-05-23','881570.00','A'),('2078',3,'TRAN DINH VAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-05-07','98560.00','A'),('2079',3,'NGUYEN THI LE YEN','191821112','CRA 25 CALLE 100','249@yahoo.com.mx','2011-02-03',132958,'2011-05-07','298200.00','A'),('208',1,'GOMEZ GONZALEZ JORGE MARIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-12','889010.00','A'),('2080',3,'MILA DE LA ROCA JOHANA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132958,'2011-01-26','195350.00','A'),('2081',3,'RODRIGUEZ DE FLORES LOURDES MARIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-16','82120.00','A'),('2082',3,'FLORES PEREZ FRANCISCO GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-23','824550.00','A'),('2083',3,'FRAGACHAN BETANCOUT FRANCISCO JO SÉ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-07-04','876400.00','A'),('2084',3,'GAFARO MOLINA CARLOS JULIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-03-22','908370.00','A'),('2085',3,'CACERES REYES JORGEANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-08-11','912630.00','A'),('2086',3,'ALVAREZ RODRIGUEZ VICTOR ROGELIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',132958,'2011-05-23','838040.00','A'),('2087',3,'GARCES ALVARADO JHAGEIMA JOSEFINA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132958,'2011-04-29','452320.00','A'),('2089',3,'FAVREAU CHOLLET JEAN PIERRE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132554,'2011-05-27','380470.00','A'),('209',1,'CRUZ RODRIGEZ CARLOS ANDRES','191821112','CRA 25 CALLE 100','316@hotmail.es','2011-02-03',127591,'2011-06-28','953870.00','A'),('2090',3,'GARAY LLUCH URBI ALAIN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-03-13','659870.00','A'),('2091',3,'LETICIA LETICIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-07','157950.00','A'),('2092',3,'VELASQUEZ RODULFO RAMON ARISTIDES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-09-23','810140.00','A'),('2093',3,'PEREZ EDGAR','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-06','576850.00','A'),('2094',3,'PEREZ MARIELA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-07','453840.00','A'),('2095',3,'PETRUZZI MANGIARANO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132958,'2011-03-27','538650.00','A'),('2096',3,'LINARES GORI RICARDO RAMON','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-12','331730.00','A'),('2097',3,'LAIRET OLIVEROS CAROLINE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-09-25','42680.00','A'),('2099',3,'JIMENEZ GARCIA FERNANDO JOSE','191821112','CRA 25 CALLE 100','78@hotmail.es','2011-02-03',132958,'2011-07-21','963110.00','A'),('21',1,'RUBIO ESCOBAR RUBEN DARIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2009-05-21','639240.00','A'),('2100',3,'ZABALA MILAGROS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-20','160860.00','A'),('2101',3,'VASQUEZ CRUZ NICOLEDANIELA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132958,'2011-07-31','914990.00','A'),('2102',3,'REYES FIGUERA RAMON ALEXANDER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',126674,'2011-04-03','92340.00','A'),('2104',3,'RAMIREZ JIMENEZ MARYLIN CAROLINA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132958,'2011-06-14','306760.00','A'),('2105',3,'TELLES GUILLEN INNA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-09-07','383520.00','A'),('2106',3,'ALVAREZ CARMEN MARINA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-07-20','997340.00','A'),('2107',3,'MARTINEZ YRIGOYEN NABUCODONOSOR','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-07-21','836110.00','A'),('2108',5,'FERNANDEZ RUIZ IGNACIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-01','188530.00','A'),('211',1,'RIVEROS GARCIA JORGE IVAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-01','650050.00','A'),('2110',3,'CACERES REYES JORGE ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2011-08-08','606030.00','A'),('2111',3,'GELFI MARCOS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',199862,'2011-05-17','727190.00','A'),('2112',3,'CERDA CASTILLO CARMEN GLORIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-08-21','817870.00','A'),('2113',3,'RANGEL FERNANDEZ LEONARDO JOSE','191821112','CRA 25 CALLE 100','856@hotmail.com','2011-02-03',133211,'2011-05-16','907750.00','A'),('2114',3,'ROTHSCHILD VARGAS MICHAEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132165,'2011-02-05','85170.00','A'),('2115',3,'RUIZ GRATEROL INGRID JOHANNA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132958,'2011-05-16','702600.00','A'),('2116',2,'DEARMAS ALBERTO FERNANDO ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150699,'2011-07-19','257500.00','A'),('2117',3,'BOSCAN ARRIETA ERICK HUMBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132958,'2011-07-12','179680.00','A'),('2118',3,'GUILLEN DE TELLES NENCY JOSEFINA','191821112','CRA 25 CALLE 100','56@facebook.com','2011-02-03',132958,'2011-09-07','125900.00','A'),('212',1,'BUSTAMANTE BUSTAMANTE CARLOS ENRIQUE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-26','943260.00','A'),('2120',2,'MARK ANTHONY STUART','191821112','CRA 25 CALLE 100','661@terra.com.co','2011-02-03',127591,'2011-06-26','74600.00','A'),('2122',3,'SCOCOZZA GIOVANNA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',190526,'2011-09-23','284220.00','A'),('2125',3,'CHAVES MOLINA JULIO FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132165,'2011-09-22','295360.00','A'),('2127',3,'BERNARDES DE SOUZA TONIATI VIRGINIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-30','565090.00','A'),('2129',2,'BRIAN DAVIS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-19','78460.00','A'),('213',1,'PAREJO CARLOS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-11','766120.00','A'),('2131',3,'DE OLIVEIRA LOPES REGINALDO LAZARO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-10-05','404910.00','A'),('2132',3,'DE MELO MING AZEVEDO PAULO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-10-05','440370.00','A'),('2137',3,'SILVA JORGE ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-10-05','230570.00','A'),('214',1,'CADENA RICARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-08','840.00','A'),('2142',3,'VIEIRA VEIGA PEDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-30','85330.00','A'),('2144',3,'ESCRIBANO LEONARDA DEL VALLE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',133535,'2011-03-24','941440.00','A'),('2145',3,'RODRIGUEZ MENENDEZ BERNARDO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',148511,'2011-08-02','588740.00','A'),('2146',3,'GONZALEZ COURET DANIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',148511,'2011-08-09','119380.00','A'),('2147',3,'GARCIA SOTO WILLIAM','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',135360,'2011-05-18','830660.00','A'),('2148',3,'MENESES ORELLANA RICARDO TOMAS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132165,'2011-06-13','795200.00','A'),('2149',3,'GUEVARA JUAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-27','483990.00','A'),('215',1,'BELTRAN PINZON JUAN CARLO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-08','705860.00','A'),('2151',2,'LLANES GARRIDO JAVIER ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-30','719750.00','A'),('2152',3,'CHAVARRIA CHAVES RAFAEL ADRIAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132165,'2011-09-20','495720.00','A'),('2153',2,'MILBERT ANDREASPETER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-10','319370.00','A'),('2154',2,'GOMEZ SILVA LOZANO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127300,'2011-05-30','109670.00','A'),('2156',3,'WINTON ROBERT DOUGLAS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',115551,'2011-08-08','622290.00','A'),('2157',2,'ROMERO PIÑA MANUEL GUSTAVO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-05-05','340650.00','A'),('2158',3,'KARWALSKI MATTHEW REECE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117229,'2011-08-29','836380.00','A'),('2159',2,'KIM JUNG SIK ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-08','159950.00','A'),('216',1,'MARTINEZ VALBUENA JOSE ALEJANDRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-25','526750.00','A'),('2160',3,'AGAR ROBERT ALEXANDER','191821112','CRA 25 CALLE 100','81@hotmail.es','2011-02-03',116862,'2011-06-11','290620.00','A'),('2161',3,'IGLESIAS EDGAR ALEXIS','191821112','CRA 25 CALLE 100','645@facebook.com','2011-02-03',131272,'2011-04-04','973240.00','A'),('2163',2,'NOAIN MORENO CECILIA KARIM ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-22','51950.00','A'),('2164',2,'FIGUEROA HEBEL ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-26','276760.00','A'),('2166',5,'FRANDBERG DAN RICHARD VERNER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',134022,'2011-04-06','309480.00','A'),('2168',2,'CONTRERAS LILLO EDUARDO ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-27','389320.00','A'),('2169',2,'BLANCO VALLE RICARDO ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-07-13','355950.00','A'),('2171',2,'BELTRAN ZAVALA JIMI ALFONSO MIGUEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',126674,'2011-08-22','991000.00','A'),('2172',2,'RAMIRO OREGUI JOSE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2011-04-27','119700.00','A'),('2175',2,'FENG PUYO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',302172,'2011-10-07','965660.00','A'),('2176',3,'CLERICI GUIDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',116366,'2011-08-30','522970.00','A'),('2177',1,'SEIJAS GUNTER LUIS MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-02','717890.00','A'),('2178',2,'SHOSHANI MOSHE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-13','20520.00','A'),('218',3,'HUCHICHALEO ARSENDIGA FRANCISCA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-05','690.00','A'),('2181',2,'DOMINGO BARTOLOME LUIS FERNANDO','191821112','CRA 25 CALLE 100','173@terra.com.co','2011-02-03',127591,'2011-04-18','569030.00','A'),('2182',3,'GONZALEZ RIJO JOSE ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-10-02','795610.00','A'),('2183',2,'ANDROVICH MORENO LIZETH LILIAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127300,'2011-10-10','270970.00','A'),('2184',2,'ARREAZA LUGO JESUS ALFREDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-08','968030.00','A'),('2185',2,'NAVEDA CANELON KATHERINE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132775,'2011-09-14','27250.00','A'),('2189',2,'LUGO BEHRENS DENISE SOFIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-08','253980.00','A'),('2190',2,'ERICA ROSE MOLDENHAUVER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-25','175480.00','A'),('2192',2,'SOLORZANO GARCIA ANDREINA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-25','50790.00','A'),('2193',3,'DE LA COSTE MARIA CAROLINA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-26','907640.00','A'),('2194',2,'MARTINEZ DIAZ JUAN JOSE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-08','385810.00','A'),('2195',2,'GALARRAGA ECHEVERRIA DAYEN ALI','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-13','206150.00','A'),('2196',2,'GUTIERREZ RAMIREZ HECTOR JOSÉ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133211,'2011-06-07','873330.00','A'),('2197',2,'LOPEZ GONZALEZ SILVIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127662,'2011-09-01','748170.00','A'),('2198',2,'SEGARES LUTZ JOSE IGNACIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-07','120880.00','A'),('2199',2,'NADER MARTIN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127538,'2011-08-12','359880.00','A'),('22',1,'CARDOZO AMAYA JORGE HUMBERTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-25','908720.00','A'),('2200',3,'NATERA BERMUDEZ OSWALDO JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2010-10-18','436740.00','A'),('2201',2,'COSTA RICARDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',150699,'2011-09-01','104090.00','A'),('2202',5,'GRUNDY VALENZUELA ALAN PATRICK','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-08','210230.00','A'),('2203',2,'MONTENEGRO DANIEL ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-05-26','738890.00','A'),('2204',2,'TAMAI BUNGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-24','63730.00','A'),('2205',5,'VINHAS FORTUNA EDSON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',133535,'2011-09-23','102010.00','A'),('2206',2,'RUIZ ERBS MARIO ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-07-19','318860.00','A'),('2207',2,'VENTURA TINEO MARCEL ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-08','288240.00','A'),('2210',2,'RAMIREZ GUZMAN RICARDO JAIME','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-28','338740.00','A'),('2211',2,'STERNBERG GABRIEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132958,'2011-09-04','18070.00','A'),('2212',2,'MARTELLO ALEJOS ROGER ADOLFO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127443,'2011-06-20','74120.00','A'),('2213',2,'CASTANEDA RAFAEL ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-25','316410.00','A'),('2214',2,'LIMON MARTINEZ WILBERT DE JESUS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128904,'2011-09-19','359690.00','A'),('2215',2,'PEREZ HERNANDEZ MONICA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133211,'2011-05-23','849240.00','A'),('2216',2,'AWAD LOBATO RICARDO SEBASTIAN','191821112','CRA 25 CALLE 100','853@hotmail.com','2011-02-03',127591,'2011-04-12','167100.00','A'),('2217',2,'CEPEDA VANEGAS ENDER ENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132958,'2011-08-22','287770.00','A'),('2218',2,'PEREZ CHIQUIN HECTOR','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132572,'2011-04-13','937580.00','A'),('2220',5,'FRANCO DELGADILLO RONALD FERNANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132775,'2011-09-16','310190.00','A'),('2222',2,'ALCAIDE ALONSO JUAN MIGUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-05-02','455360.00','A'),('2223',3,'BROWNING BENJAMIN MARK','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-06-09','45230.00','A'),('2225',3,'HARWOO BENJAMIN JOEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-09','164620.00','A'),('2226',3,'HOEY TIMOTHY ROSS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-06-09','242910.00','A'),('2227',3,'FERGUSON GARRY','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-28','720700.00','A'),('2228',3,' NORMAN NEVILLE ROBERT','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',288493,'2011-06-29','874750.00','A'),('2229',3,'KUK HYUN CHAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-03-22','211660.00','A'),('223',1,'PINZON PLAZA MARCOS VINICIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-22','856300.00','A'),('2230',3,'SLIPAK NATALIA ANDREA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-07-27','434070.00','A'),('2231',3,'BONELLI MASSIMO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',170601,'2011-07-11','535340.00','A'),('2233',3,'VUYLSTEKE ALEXANDER ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',284647,'2011-09-11','266530.00','A'),('2234',3,'DRESSE ALAIN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',284272,'2011-04-19','209100.00','A'),('2235',3,'PAIRON JEAN LOUIS MARIE RAIMOND','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',284272,'2011-03-03','245940.00','A'),('2236',3,'DEVIANE ACHIM','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',284272,'2010-11-14','602370.00','A'),('2239',3,'DE CANNIERE LOUIS GEORFES HELE MARIE-JOZEF','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',285511,'2011-09-11','993540.00','A'),('2240',1,'ERGO ROBERT','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-28','278270.00','A'),('2241',3,'MYRTES RODRIGUEZ MORGANA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-09-18','410740.00','A'),('2242',3,'BRECHBUEHL HANSRUDOLF','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',249059,'2011-07-27','218900.00','A'),('2243',3,'IVANA SCHLUMPF','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',245206,'2011-04-08','862270.00','A'),('2244',3,'JESSICA JACCART','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',189512,'2011-08-28','654640.00','A'),('2246',3,'PAUSELLI MARIANO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',210050,'2011-09-26','468090.00','A'),('2247',3,'VOLONTEIRO RICCARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-04-13','281230.00','A'),('2248',3,'HOFFMANN ALVIR ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',120773,'2011-08-23','1900.00','A'),('2249',3,'MANTOVANI DANIEL FERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118942,'2011-08-09','165820.00','A'),('225',1,'DUARTE RUEDA JAVIER ALEXANDER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-29','293110.00','A'),('2250',3,'LIMA DA COSTA BRENO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-03-23','823370.00','A'),('2251',3,'TAMBORIN MACIEL MAGALI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-23','619420.00','A'),('2252',3,'BELLO DE MUORA BIANCA','191821112','CRA 25 CALLE 100','969@gmail.com','2011-02-03',118942,'2011-08-03','626970.00','A'),('2253',3,'VINHAS FORTUNA PIETRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',133535,'2011-09-23','276600.00','A'),('2255',3,'BLUMENTHAL JAIRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',117630,'2011-07-20','680590.00','A'),('2256',3,'DOS REIS FILHO ELPIDIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',120773,'2011-08-07','896720.00','A'),('2257',3,'COIMBRA CARDOSO MUNARI FERNANDA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-09','441830.00','A'),('2258',3,'LAZANHA FLAVIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118942,'2011-06-14','519000.00','A'),('2259',3,'LAZANHA FLAVIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118942,'2011-06-14','269480.00','A'),('226',1,'HUERFANO FLOREZ JOHN FAVER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-29','148340.00','A'),('2260',3,'JOVETTA EDILSON','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118941,'2011-09-19','790430.00','A'),('2261',3,'DE OLIVEIRA ANDRE RICARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2011-07-25','143680.00','A'),('2263',3,'MUNDO TEIXEIRA CARVALHO SILVIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118864,'2011-09-19','304670.00','A'),('2264',3,'FERREIRA CINTRA ADRIANO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-04-08','481910.00','A'),('2265',3,'AUGUSTO DE OLIVEIRA MARCOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118685,'2011-08-09','495530.00','A'),('2266',3,'CHEN ROBERTO LUIZ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-03-15','31920.00','A'),('2268',3,'WROBLESKI DIENSTMANN RAQUEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117630,'2011-05-15','269320.00','A'),('2269',3,'MALAGOLA GEDERSON','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118864,'2011-05-30','327540.00','A'),('227',1,'LOPEZ ESCOBAR CARLOS ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-06','862360.00','A'),('2271',3,'GOMES EVANDRO HENRIQUE','191821112','CRA 25 CALLE 100','199@hotmail.es','2011-02-03',118777,'2011-03-24','166100.00','A'),('2273',3,'LANDEIRA FERNANDEZ JESUS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-21','207990.00','A'),('2274',3,'ROSSI RENATO','191821112','CRA 25 CALLE 100','791@hotmail.es','2011-02-03',118777,'2011-09-19','16170.00','A'),('2275',3,'CALMON RANGEL PATRICIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-23','456890.00','A'),('2277',3,'CIFU NETO ROQUE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-04-27','808940.00','A'),('2278',3,'GONCALVES PRETO FRANCISCO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118942,'2011-07-25','336930.00','A'),('2279',3,'JORGE JUNIOR ROBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-05-09','257840.00','A'),('2281',3,'ELENCIUC DEMETRIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-04-20','618510.00','A'),('2283',3,'CUNHA MENDEZ RAFAEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',119855,'2011-07-18','431190.00','A'),('2286',3,'DIAZ LENICE APARECIDA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-05-03','977840.00','A'),('2288',3,'DE CARVALHO SIGEL TATIANA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118777,'2011-07-04','123920.00','A'),('229',1,'GALARZA GIRALDO SERGIO ALDEMAR','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150699,'2011-09-17','746930.00','A'),('2290',3,'ACHOA MORANDI BORGUES SIBELE MARIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118777,'2011-09-12','553890.00','A'),('2291',3,'EPAMINONDAS DE ALMEIDA DELIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-09-22','14080.00','A'),('2293',3,'REIS CASTRO SHANA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118942,'2011-08-03','1430.00','A'),('2294',3,'BERNARDES JUNIOR ARMANDO','191821112','CRA 25 CALLE 100','678@gmail.com','2011-02-03',127591,'2011-08-30','780930.00','A'),('2295',3,'LEMOS DE SOUZA AGUIAR SERGIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-10-03','900370.00','A'),('2296',3,'CARVALHO ADAMS KARIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118942,'2011-08-11','159040.00','A'),('2297',3,'GALLINA SILVANA BRASILEIRA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-23','94110.00','A'),('23',1,'COLMENARES PEDREROS EDUARDO ADOLFO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-02','625870.00','A'),('2300',3,'TAVEIRA DE SIQUEIRA TANIA APARECIDA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-24','443910.00','A'),('2301',3,'DA SIVA LIMA ANDRE LUIS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-23','165020.00','A'),('2302',3,'GALVAO GUSTAVO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118942,'2011-09-12','493370.00','A'),('2303',3,'DA COSTA CRUZ GABRIELA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-07-27','971800.00','A'),('2304',3,'BERNHARD GOTTFRIED RABER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-04-30','378870.00','A'),('2306',3,'ALDANA URIBE PABLO AXEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-05-08','758160.00','A'),('2308',3,'FLORES ALONSO EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-04-26','995310.00','A'),('2309',3,'MADRIGAL MIER Y TERAN LUIS FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-02-23','414650.00','A'),('231',1,'ZAPATA CEBALLOS JUAN MANUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127662,'2011-08-16','430320.00','A'),('2310',3,'GONZALEZ ALVARO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-05-19','87330.00','A'),('2313',3,'MONTES PORTO ANDREA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145135,'2011-09-01','929180.00','A'),('2314',3,'ROCHA SUSUNAGA SERGIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2010-10-18','541540.00','A'),('2315',3,'VASQUEZ CALERO FEDERICO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-22','920160.00','A'),('2317',3,'GONZALEZ FERNANDEZ YUSSEN ALEJANDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-26','120530.00','A'),('2319',3,'ATTIAS WENGROWSKY DAVID','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',150581,'2011-09-07','8580.00','A'),('232',1,'OSPINA ABUCHAIBE ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-07-14','748960.00','A'),('2320',3,'EFRON TOPOROVSKY INES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',116511,'2011-07-15','20810.00','A'),('2321',3,'LUNA PLA DARIO','191821112','CRA 25 CALLE 100','95@terra.com.co','2011-02-03',145135,'2011-09-07','78320.00','A'),('2322',1,'VAZQUEZ DANIELA','191821112','CRA 25 CALLE 100','190@gmail.com','2011-02-03',145135,'2011-05-19','329170.00','A'),('2323',3,'BALBI BALBI JUAN DE DIOS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-08-23','410880.00','A'),('2324',3,'MARROQUÍN FERNANDEZ GELACIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-03-23','66880.00','A'),('2325',3,'VAZQUEZ ZAVALA ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-04-11','101770.00','A'),('2326',3,'SOTO MARTINEZ MARIA ELENA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-23','308200.00','A'),('2328',3,'HERNANDEZ MURILLO RICARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-08-22','253830.00','A'),('233',1,'HADDAD LINERO YEBRAIL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',130608,'2010-06-17','453830.00','A'),('2330',3,'TERMINEL HERNANDEZ DANIELA PATRICIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',190393,'2011-08-15','48940.00','A'),('2331',3,'MIJARES FERNANDEZ MAGDALENA GUADALUPE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145135,'2011-07-31','558440.00','A'),('2332',3,'GONZALEZ LUNA CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',146258,'2011-04-26','645400.00','A'),('2333',3,'DIAZ TORREJON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-05-03','551690.00','A'),('2335',3,'PADILLA GUTIERREZ JESUS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-22','456120.00','A'),('2336',3,'TORRES CORONA JORGE ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-04-11','813900.00','A'),('2337',3,'CASTRO RAMSES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',150581,'2011-07-04','701120.00','A'),('2338',3,'APARICIO VALLEJO RUSSELL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-03-16','63890.00','A'),('2339',3,'ALBOR FERNANDEZ LUIS ARTURO','191821112','CRA 25 CALLE 100','574@gmail.com','2011-02-03',147467,'2011-05-09','216110.00','A'),('234',1,'DOMINGUEZ GOMEZ JUAN CARLOS','191821112','CRA 25 CALLE 100','942@hotmail.com','2011-02-03',127591,'2010-08-22','22260.00','A'),('2342',3,'REY ALEJANDRO','191821112','CRA 25 CALLE 100','110@facebook.com','2011-02-03',127591,'2011-03-04','313330.00','A'),('2343',3,'MENDOZA GONZALES ADRIANA','191821112','CRA 25 CALLE 100','295@yahoo.com','2011-02-03',127591,'2011-03-23','178720.00','A'),('2344',3,'RODRIGUEZ SEGOVIA JESUS ALONSO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2011-07-26','953590.00','A'),('2345',3,'GONZALEZ PELAEZ EDUARDO DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-26','231790.00','A'),('2347',3,'VILLEDA GARCIA DAVID','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',144939,'2011-05-29','795600.00','A'),('2348',3,'FERRER BURGES EMILIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-04-11','83430.00','A'),('2349',3,'NARRO ROBLES LUIS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-03-16','30330.00','A'),('2350',3,'ZALDIVAR UGALDE CARLOS IGNACIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-06-19','901380.00','A'),('2351',3,'VARGAS RODRIGUEZ VALENTE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',146258,'2011-04-26','415910.00','A'),('2354',3,'DEL PIERO FRANCISCO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-05-09','19890.00','A'),('2355',3,'VILLAREAL ANA CRISTINA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-23','211810.00','A'),('2356',3,'GARRIDO FERRAN JORGE ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-22','999370.00','A'),('2357',3,'PEREZ PRECIADO EDMUNDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-22','361450.00','A'),('2358',3,'AGUIRRE VIGNAU DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',150581,'2011-08-21','809110.00','A'),('2359',3,'LOPEZ SESMA TOMAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',146258,'2011-09-14','961200.00','A'),('236',1,'VENTO BETANCOURT LUIS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-03-19','682230.00','A'),('2360',3,'BERNAL MALDONADO GUILLERMO JAVIER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-09-19','378670.00','A'),('2361',3,'GUZMAN DELGADO ALFREDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-22','9770.00','A'),('2362',3,'GUZMAN DELGADO MARTIN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-22','912850.00','A'),('2363',3,'GUSMAND ELGADO JORGE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-22','534910.00','A'),('2364',3,'RENDON BUICK JORGE JOSE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-07-26','936010.00','A'),('2365',3,'HERNANDEZ HERNANDEZ HERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-22','75340.00','A'),('2366',3,'ALVAREZ PAZ PEDRO RAFAEL ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-01-02','568650.00','A'),('2367',3,'MIJARES DE LA BARREDA FERNANDA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-07-31','617240.00','A'),('2368',3,'MARTINEZ LOPEZ MAURICIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-08-24','380250.00','A'),('2369',3,'GAYTAN MILLAN YANERI','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-23','49520.00','A'),('237',1,'BARGUIL ASSIS DAVID ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117460,'2009-09-03','161770.00','A'),('2370',3,'DURAN HEREDIA FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-04-15','106850.00','A'),('2371',3,'SEGURA MIJARES CRISTOBAL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-07-31','385700.00','A'),('2372',3,'TEPOS VALTIERRA ERIK ARTURO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',116345,'2011-09-01','607930.00','A'),('2373',3,'RODRIGUEZ AGUILAR EDMUNDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-05-04','882570.00','A'),('2374',3,'MYSLABODSKI MICHAEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-03-08','589060.00','A'),('2375',3,'HERNANDEZ MIRELES JATNIEL ELIOENAI','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-26','297600.00','A'),('2376',3,'SNELL FERNANDEZ SYNTYHA ROCIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-22','720830.00','A'),('2378',3,'HERNANDEZ EIVET AARON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-26','394200.00','A'),('2379',3,'LOPEZ GARZA JAIME','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-22','837000.00','A'),('238',1,'GARCIA PINO CARLOS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-10','762140.00','A'),('2381',3,'TOSCANO ESTRADA RUBEN ENRIQUE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-22','500940.00','A'),('2382',3,'RAMIREZ HUDSON ROGER SILVESTER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-22','497550.00','A'),('2383',3,'RAMOS JUAN ANTONIO','191821112','CRA 25 CALLE 100','362@yahoo.es','2011-02-03',127591,'2011-08-22','984940.00','A'),('2384',3,'CORTES CERVANTES ALEJANDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145135,'2011-04-11','432020.00','A'),('2385',3,'POZOS ESQUIVEL DAVID','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-09-27','205310.00','A'),('2387',3,'ESTRADA AGUIRRE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-22','36470.00','A'),('2388',3,'GARCIA RAMIREZ RAMON','191821112','CRA 25 CALLE 100','177@yahoo.es','2011-02-03',127591,'2011-08-22','990910.00','A'),('2389',3,'PRUD HOMME GARCIA CUBAS XAVIER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-05-18','845140.00','A'),('239',1,'PINZON ARDILA GUSTAVO ALFONSO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-01','325400.00','A'),('2390',3,'ELIZABETH OCHOA ROJAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-05-21','252950.00','A'),('2391',3,'MEZA ALVAREZ JOSE ALBERTO','191821112','CRA 25 CALLE 100','646@terra.com.co','2011-02-03',144939,'2011-05-09','729340.00','A'),('2392',3,'HERRERA REYES RENATO ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2010-02-28','887860.00','A'),('2393',3,'MURILLO GARIBAY GILBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-08-20','251280.00','A'),('2394',3,'GARCIA JIMENEZ CARLOS MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-10-09','592830.00','A'),('2395',3,'GUAGNELLI MARTINEZ BLANCA MONICA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145184,'2010-10-05','210320.00','A'),('2397',3,'GARCIA CISNEROS RAUL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-07-04','734530.00','A'),('2398',3,'MIRANDA ROMO FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-22','853340.00','A'),('24',1,'ARREGOCES GARZON NELSON ORLANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127783,'2011-08-12','403190.00','A'),('240',1,'ARCINIEGAS GOMEZ ALBERTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-18','340590.00','A'),('2400',3,'HERRERA ABARCA EDUARDO VICENTE ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-22','755620.00','A'),('2403',3,'CASTRO MONCAYO LUIS ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-07-29','617260.00','A'),('2404',3,'GUZMAN DELGADO OSBALDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-22','56250.00','A'),('2405',3,'GARCIA LOPEZ DAVID','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-22','429500.00','A'),('2406',3,'JIMENEZ GAMEZ RAFAEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',245206,'2011-03-23','978720.00','A'),('2407',3,'BECERRA MARTINEZ JUAN PABLO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-08-23','605130.00','A'),('2408',3,'GARCIA MARTINEZ BERNARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-22','89480.00','A'),('2409',3,'URRUTIA RAYAS BALTAZAR','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-22','632020.00','A'),('241',1,'MEDINA AGUILA NESTOR EDUARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-09','726730.00','A'),('2411',3,'VERGARA MENDOZAVICTOR HUGO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-06-15','562230.00','A'),('2412',3,'MENDOZA MEDINA JORGE IGNACIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-22','136170.00','A'),('2413',3,'CORONADO CASTILLO HUGO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',147529,'2011-05-09','994160.00','A'),('2414',3,'GONZALEZ SOTO DELIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-03-23','562280.00','A'),('2415',3,'HERNANDEZ FLORES STEPHANIE REYNA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-23','828940.00','A'),('2416',3,'ABRAJAN GUERRERO MARIA DE LOS ANGELES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-03-23','457860.00','A'),('2417',3,'HERNANDEZ LOERA ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-23','802490.00','A'),('2418',3,'TARÍN LÓPEZ JOSE CARMEN','191821112','CRA 25 CALLE 100','117@gmail.com','2011-02-03',127591,'2011-03-23','638870.00','A'),('242',1,'JULIO NARVAEZ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-05','611890.00','A'),('2420',3,'BATTA MARQUEZ VICTOR ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-08-23','17820.00','A'),('2423',3,'GONZALEZ REYES JUAN JOSE','191821112','CRA 25 CALLE 100','55@yahoo.es','2011-02-03',127591,'2011-07-26','758070.00','A'),('2425',3,'ALVAREZ RODRIGUEZ HIRAM RAMSES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-23','847420.00','A'),('2426',3,'FEMATT HERNANDEZ JESUS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-03-23','164130.00','A'),('2427',3,'GUTIERRES ORTEGA FRANCISCO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-22','278410.00','A'),('2428',3,'JIMENEZ DIAZ JUAN JORGE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-05-13','899650.00','A'),('2429',3,'VILLANUEVA PÉREZ MIGUEL ANGEL','191821112','CRA 25 CALLE 100','656@yahoo.es','2011-02-03',150449,'2011-03-23','663000.00','A'),('243',1,'GOMEZ REYES ANDRES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',126674,'2009-12-20','879240.00','A'),('2430',3,'CERON GOMEZ JOEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-03-21','616070.00','A'),('2431',3,'LOPEZ LINALDI DEMETRIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-05-09','91360.00','A'),('2432',3,'JOSEPH NATHAN PEDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-05-02','608580.00','A'),('2433',3,'CARREÑO PULIDO RUBEN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',147242,'2011-06-19','768810.00','A'),('2434',3,'AREVALO MERCADO CARLOS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-06-12','18320.00','A'),('2436',3,'RAMIREZ QUEZADA ERIKA BELEM','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-03','870930.00','A'),('2438',3,'TATTO PRIETO MIGUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-05-19','382740.00','A'),('2439',3,'LOPEZ AYALA LUIS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-10-08','916370.00','A'),('244',1,'DEVIS EDGAR JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-10-08','560540.00','A'),('2440',3,'HERNANDEZ TOVAR JORGE ENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',144991,'2011-10-02','433650.00','A'),('2441',3,'COLLIARD LOPEZ PETER GEORGE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-09','419120.00','A'),('2442',3,'FLORES CHALA GARY','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-22','794670.00','A'),('2443',3,'FANDIÑO MUÑOZ ZAMIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-07-19','715970.00','A'),('2444',3,'BARROSO VARGAS DIEGO ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-26','195840.00','A'),('2446',3,'CRUZ RAMIREZ JUAN PEDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',145135,'2011-07-14','569050.00','A'),('2447',3,'TIJERINA ACOSTA SERGIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-26','351280.00','A'),('2449',3,'JASSO BARRERA CARLOS GUSTAVO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-08-24','192560.00','A'),('245',1,'LENCHIG KALEDA SERGIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-09-02','165000.00','A'),('2450',3,'GARRIDO PATRON VICTOR','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-09-27','814970.00','A'),('2451',3,'VELASQUEZ GUERRERO RUBEN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-20','497150.00','A'),('2452',3,'CHOI SUNGKYU','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',209494,'2011-08-16','40860.00','A'),('2453',3,'CONTRERAS LOPEZ SERGIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',145135,'2011-08-05','712830.00','A'),('2454',3,'CHAVEZ BATAA OSCAR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',150699,'2011-06-14','441590.00','A'),('2455',3,'LEE JONG HYUN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',131272,'2011-10-10','69460.00','A'),('2456',3,'MEDINA PADILLA CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',146589,'2011-04-20','22530.00','A'),('2457',3,'FLORES CUEVAS DOTNARA LUZ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',145135,'2011-05-17','904260.00','A'),('2458',3,'LIU YONGCHAO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-10-09','453710.00','A'),('2459',3,'CASTRO FERNANDES PORTOCARRERO JOSE MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',195892,'2011-06-14','555790.00','A'),('246',1,'YAMHURE FONSECAN ERNESTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2009-10-03','143350.00','A'),('2460',3,'DUAN WEI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-06-22','417820.00','A'),('2461',3,'ZHU XUTAO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-18','421740.00','A'),('2462',3,'MEI SHUANNIU','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-10-09','855240.00','A'),('2464',3,'VEGA VACA LUIS ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-06-08','489110.00','A'),('2465',3,'TANG YUMING','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',147578,'2011-03-26','412660.00','A'),('2466',3,'VILLEDA GARCIA DAVID','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',144939,'2011-06-07','595990.00','A'),('2467',3,'GARCIA GARZA BLANCA ARMIDA','191821112','CRA 25 CALLE 100','927@hotmail.com','2011-02-03',145135,'2011-05-20','741940.00','A'),('2468',3,'HERNANDEZ MARTINEZ EMILIO JOAQUIN','191821112','CRA 25 CALLE 100','356@facebook.com','2011-02-03',145135,'2011-06-16','921740.00','A'),('2469',3,'WANG FAN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',185363,'2011-08-20','382860.00','A'),('247',1,'ROJAS RODRIGUEZ ALVARO HERNAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-09','221760.00','A'),('2470',3,'WANG FEI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-10-09','149100.00','A'),('2471',3,'BERNAL MALDONADO GUILLERMO JAVIER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118777,'2011-07-26','596900.00','A'),('2472',3,'GUTIERREZ GOMEZ ARTURO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145184,'2011-07-24','537210.00','A'),('2474',3,'LAN TYANYE ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-06-23','865050.00','A'),('2475',3,'LAN SHUZHEN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-23','639240.00','A'),('2476',3,'RODRIGUEZ GONZALEZ CARLOS ARTURO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',144616,'2011-08-09','601050.00','A'),('2477',3,'HAIBO NI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-20','87540.00','A'),('2479',3,'RUIZ RODRIGUEZ GRACIELA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-05-20','910130.00','A'),('248',1,'GONZALEZ RODRIGUEZ ANDRES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-03','678750.00','A'),('2480',3,'OROZCO MACIAS NORMA LETICIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-09-20','647010.00','A'),('2481',3,'MEZA ALVAREZ JOSE ALBERTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',144939,'2011-06-07','504670.00','A'),('2482',3,'RODRIGUEZ FIGUEROA RODRIGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',146308,'2011-04-27','582290.00','A'),('2483',3,'CARREON GUERRA ANA CECILIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',110709,'2011-05-27','397440.00','A'),('2484',3,'BOTELHO BARRETO CARLOS JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',195892,'2011-08-02','240350.00','A'),('2485',3,'CORONADO CASTILLO HUGO','191821112','CRA 25 CALLE 100','209@yahoo.com.mx','2011-02-03',147529,'2011-06-07','9420.00','A'),('2486',3,'DE FUENTES GARZA MARCELO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-18','326030.00','A'),('2487',3,'GONZALEZ DUHART GUTIERREZ HORACIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-05-17','601920.00','A'),('2488',3,'LOPEZ LINALDI DEMETRIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-06-07','31500.00','A'),('2489',3,'CASTRO MONCAYO JOSE LUIS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-06-15','351720.00','A'),('249',1,'CASTRO RIBEROS JULIAN ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-23','728470.00','A'),('2490',3,'SERRALDE LOPEZ MARIA GUADALUPE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-07-25','664120.00','A'),('2491',3,'GARRIDO PATRON VICTOR','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-09-29','265450.00','A'),('2492',3,'BRAUN JUAN NICOLAS ANTONIE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-28','334880.00','A'),('2493',3,'BANKA RAHUL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',141138,'2011-05-02','878070.00','A'),('2494',1,'GARCIA MARTINEZ MARIA VIRGINIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-04-17','385690.00','A'),('2495',1,'MARIA VIRGINIA','191821112','CRA 25 CALLE 100','298@yahoo.com.mx','2011-02-03',127591,'2011-04-16','294220.00','A'),('2496',3,'GOMEZ ZENDEJAS MARIA ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145184,'2011-06-06','314060.00','A'),('2498',3,'MENDEZ MARTINEZ RAUL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145135,'2011-07-10','496040.00','A'),('2499',3,'CARREON GUERRA ANA CECILIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-07-29','417240.00','A'),('2501',3,'OLIVAR ARIAS ISMAEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-06-06','738850.00','A'),('2502',3,'ABOUMRAD NASTA EMILE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-07-26','899890.00','A'),('2503',3,'RODRIGUEZ JIMENEZ ROBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-05-03','282900.00','A'),('2504',3,'ESTADOS UNIDOS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145135,'2011-07-27','714840.00','A'),('2505',3,'SOTO MUÑOZ MARCO GREGORIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-26','725480.00','A'),('2506',3,'GARCIA MONTER ANA OTILIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-10-05','482880.00','A'),('2507',3,'THIRUKONDA VIGNESH','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',126180,'2011-05-02','237950.00','A'),('2508',3,'RAMIREZ REATIAGA LYDA YOANA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',150699,'2011-06-26','741120.00','A'),('2509',3,'SEPULVEDA RODRIGUEZ JESUS ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-26','991730.00','A'),('251',1,'MEJIA PIZANO ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-10','845000.00','A'),('2510',3,'FRANCISCO MARIA DIAS COSTA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',179111,'2011-07-12','735330.00','A'),('2511',3,'TEIXEIRA REGO DE OLIVEIRA TIAGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',179111,'2011-06-14','701430.00','A'),('2512',3,'PHILLIP JAMES','191821112','CRA 25 CALLE 100','766@terra.com.co','2011-02-03',127591,'2011-09-28','301150.00','A'),('2513',3,'ERXLEBEN ROBERT','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',216125,'2011-04-13','401460.00','A'),('2514',3,'HUGHES CONNORRICHARD','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',269033,'2011-06-22','103880.00','A'),('2515',3,'LEBLANC MICHAEL PAUL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',216125,'2011-08-09','314990.00','A'),('2517',3,'DEVINE CHRISTOPHER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',269033,'2011-06-22','371560.00','A'),('2518',3,'WONG BRIAN TEK FUNG','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',126885,'2011-09-22','67910.00','A'),('2519',3,'BIDWALA IRFAN A','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',154811,'2011-03-28','224840.00','A'),('252',1,'JIMENEZ LARRARTE JUAN GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-01','406770.00','A'),('2520',3,'LEE HO YIN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',147578,'2011-08-29','920470.00','A'),('2521',3,'DE MOURA MARTINS NUNO ALEXANDRE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196094,'2011-10-09','927850.00','A'),('2522',3,'DA COSTA GOMES CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',179111,'2011-08-10','877850.00','A'),('2523',3,'HOOGWAERTS PAUL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-02-11','605690.00','A'),('2524',3,'LOPES MARQUES LUIS JOSE MANUEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118942,'2011-09-20','394910.00','A'),('2525',3,'CORREIA CAVACO JOSE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',178728,'2011-10-09','157470.00','A'),('2526',3,'HALL JOHN WILLIAM','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-09','602620.00','A'),('2527',3,'KNIGHT MARTIN GYLES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',113550,'2011-08-29','540670.00','A'),('2528',3,'HINDS THMAS TRISTAN PELLEW','191821112','CRA 25 CALLE 100','337@yahoo.es','2011-02-03',116862,'2011-08-23','895500.00','A'),('2529',3,'CARTON ALAN JOHN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-07-31','855510.00','A'),('253',1,'AZCUENAGA RAMIREZ NICOLAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',298472,'2011-05-10','498840.00','A'),('2530',3,'GHIM CHEOLL HO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-27','591060.00','A'),('2531',3,'PHILLIPS NADIA SULLIVAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-28','388750.00','A'),('2532',3,'CHANG KUKHYUN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-03-22','170560.00','A'),('2533',3,'KANG SEOUNGHYUN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',173192,'2011-08-24','686540.00','A'),('2534',3,'CHUNG BYANG HOON','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',125744,'2011-03-14','921030.00','A'),('2535',3,'SHIN MIN CHUL ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',173192,'2011-08-24','545510.00','A'),('2536',3,'CHOI JIN SUNG','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-15','964490.00','A'),('2537',3,'CHOI SUNGMIN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-27','185910.00','A'),('2538',3,'PARK JAESER ','191821112','CRA 25 CALLE 100','525@terra.com.co','2011-02-03',127591,'2011-09-03','36090.00','A'),('2539',3,'KIM DAE HOON ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',173192,'2011-08-24','622700.00','A'),('254',1,'AVENDAÑO PABON ROLANDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-05-12','273900.00','A'),('2540',3,'LYNN MARIA CRISTINA NORMA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',116862,'2011-09-21','5220.00','A'),('2541',3,'KIM CHINIL JULIAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',147578,'2011-08-27','158030.00','A'),('2543',3,'HALL JOHN WILLIAM','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-09','398290.00','A'),('2544',3,'YOSUKE PERDOMO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',165600,'2011-07-26','668040.00','A'),('2546',3,'AKAGI KAZAHIKO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-26','722510.00','A'),('2547',3,'NELSON JONATHAN GARY','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-09','176570.00','A'),('2548',3,'DUONG HOP BA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',116862,'2011-09-14','715310.00','A'),('2549',3,'CHAO-VILLEGAS NIKOLE TUK HING','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',180063,'2011-04-05','46830.00','A'),('255',1,'CORREA ALVARO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-27','872990.00','A'),('2551',3,'APPELS LAURENT BERNHARD','191821112','CRA 25 CALLE 100','891@hotmail.es','2011-02-03',135190,'2011-08-16','300620.00','A'),('2552',3,'PLAISIER ERIK JAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',289294,'2011-05-23','238440.00','A'),('2553',3,'BLOK HENDRIK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',288552,'2011-03-27','290350.00','A'),('2554',3,'NETTE ANNA STERRE','191821112','CRA 25 CALLE 100','621@yahoo.com.mx','2011-02-03',185363,'2011-07-30','736400.00','A'),('2555',3,'FRIELING HANS ERIC','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',107469,'2011-07-31','810990.00','A'),('2556',3,'RUTTE CORNELIA JANTINE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',143579,'2011-03-30','845710.00','A'),('2557',3,'WALRAVEN PIETER PAUL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',289294,'2011-07-29','795620.00','A'),('2558',3,'TREBES LAURENS JOHANNES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-11-22','440940.00','A'),('2559',3,'KROESE ROLANDWILLEBRORDUSMARIA','191821112','CRA 25 CALLE 100','188@facebook.com','2011-02-03',110643,'2011-06-09','817860.00','A'),('256',1,'FARIAS GARCIA REINI','191821112','CRA 25 CALLE 100','615@hotmail.com','2011-02-03',127591,'2011-03-05','543220.00','A'),('2560',3,'VAN DER HEIDE HENDRIK','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',291042,'2011-09-04','766460.00','A'),('2561',3,'VAN DEN BERG DONAR ALEXANDER GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',190393,'2011-07-13','378720.00','A'),('2562',3,'GODEFRIDUS JOHANNES ROPS ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127622,'2011-10-02','594240.00','A'),('2564',3,'WAT YOK YIENG','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',287095,'2011-03-22','392370.00','A'),('2565',3,'BUIS JACOBUS NICOLAAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-20','456810.00','A'),('2567',3,'CHIPPER FRANCIUSCUS NICOLAAS ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',291599,'2011-07-28','164300.00','A'),('2568',3,'ONNO ROUKENS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-11-28','500670.00','A'),('2569',3,'PETRUS MARCELLINUS STEPHANUS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',150699,'2011-06-25','10430.00','A'),('2571',3,'VAN VOLLENHOVEN IVO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-08','719370.00','A'),('2572',3,'LAMBOOIJ BART','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-09-20','946480.00','A'),('2573',3,'LANSER MARIANA PAULINE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',289294,'2011-04-09','574270.00','A'),('2575',3,'KLERKEN JOHANNES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',286101,'2011-05-24','436840.00','A'),('2576',3,'KRAS JACOBUS NICOLAAS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',289294,'2011-09-26','88410.00','A'),('2577',3,'FUCHS MICHAEL JOSEPH','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',185363,'2011-07-30','131530.00','A'),('2578',3,'BIJVANK ERIK JAN WILLEM','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-04-11','392410.00','A'),('2579',3,'SCHMIDT FRANC ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',106742,'2011-09-11','567470.00','A'),('258',1,'SOTO GONZALEZ FRANCISCO LAZARO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',116511,'2011-05-07','856050.00','A'),('2580',3,'VAN DER KOOIJ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',291277,'2011-07-10','660130.00','A'),('2581',2,'KRIS ANDRE GEORGES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2011-07-26','598240.00','A'),('2582',3,'HARDING LUIS ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',263813,'2011-05-08','10820.00','A'),('2583',3,'ROLLI GUY JEAN ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-05-31','259370.00','A'),('2584',3,'NIETO PARRA SEBASTIAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',263813,'2011-07-04','264400.00','A'),('2585',3,'LASTRA CHAVEZ PABLO ARMANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',126674,'2011-05-25','543890.00','A'),('2586',1,'ZAIDA MAYERLY','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-05-05','926250.00','A'),('2587',1,'OSWALDO SOLORZANO CONTRERAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-28','999590.00','A'),('2588',3,'ZHOU XUAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-18','219200.00','A'),('2589',3,'HUANG ZHENGQUN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-18','97230.00','A'),('259',1,'GALARZA NARANJO JAIME RENE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-18','988830.00','A'),('2590',3,'HUANG ZHENQUIN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-18','828560.00','A'),('2591',3,'WEIDEN MULLER AMURER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-29','851110.00','A'),('2593',3,'OESTERHAUS CORNELIA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',256231,'2011-03-29','295960.00','A'),('2594',3,'RINTALAHTI JUHA HENRIK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-23','170220.00','A'),('2597',3,'VERWIJNEN JONAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',289697,'2011-02-03','638040.00','A'),('2598',3,'SHAW ROBERT','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',157414,'2011-07-10','273550.00','A'),('2599',3,'MAKINEN TIMO JUHANI','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',196234,'2011-09-13','453600.00','A'),('260',1,'RIVERA CAÑON JOSE EDWARD','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127538,'2011-09-19','375990.00','A'),('2600',3,'HONKANIEMI ARTO OLAVI','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',301387,'2011-09-06','447380.00','A'),('2601',3,'DAGG JAMIE MICHAEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',216125,'2011-08-09','876080.00','A'),('2602',3,'BOLAND PATRICK CHARLES ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',216125,'2011-09-14','38260.00','A'),('2603',2,'ZULEYKA JERRYS RIVERA MENDOZA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',150347,'2011-03-27','563050.00','A'),('2604',3,'DELGADO SEQUIRA FERRAO JOSE PEDRO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188228,'2011-08-16','700460.00','A'),('2605',3,'YORRO LORA EDGAR MANUEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127689,'2011-06-17','813180.00','A'),('2606',3,'CARRASCO RODRIGUEZQCARLOS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127689,'2011-06-17','964520.00','A'),('2607',30,'ORJUELA VELASQUEZ JULIANA MARIA','191821112','CRA 25 CALLE 100','372@terra.com.co','2011-02-03',132775,'2011-09-01','383070.00','A'),('2608',3,'DUQUE DUTRA LUIS EDUARDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118942,'2011-07-12','21780.00','A'),('261',1,'MURCIA MARQUEZ NESTOR JAVIER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-19','913480.00','A'),('2610',3,'NGUYEN HUU KHUONG','191821112','CRA 25 CALLE 100','457@facebook.com','2011-02-03',132958,'2011-05-07','733120.00','A'),('2611',3,'NGUYEN VAN LAP','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-05-07','786510.00','A'),('2612',3,'PHAM HUU THU','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-05-07','733200.00','A'),('2613',3,'DANG MING CUONG','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132958,'2011-05-07','306460.00','A'),('2614',3,'VU THI HONG HANH','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132958,'2011-05-07','332710.00','A'),('2615',3,'CHAU TANG LANG','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-05-07','744190.00','A'),('2616',3,'CHU BAN THING','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132958,'2011-05-07','722800.00','A'),('2617',3,'NGUYEN QUANG THU','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132958,'2011-05-07','381420.00','A'),('2618',3,'TRAN THI KIM OANH','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-05-07','738690.00','A'),('2619',3,'NGUYEN VAN VINH','191821112','CRA 25 CALLE 100','422@yahoo.com.mx','2011-02-03',132958,'2011-05-07','549210.00','A'),('262',1,'ABDULAZIS ELNESER KHALED','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-27','439430.00','A'),('2620',3,'NGUYEN XUAN VY','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132958,'2011-05-07','529950.00','A'),('2621',3,'HA MANH HOA','191821112','CRA 25 CALLE 100','439@gmail.com','2011-02-03',132958,'2011-05-07','2160.00','A'),('2622',3,'ZAFIROPOULO STEVEN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-25','420930.00','A'),('2623',3,'ZAFIROPOULO ANA I','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-25','98170.00','A'),('2624',3,'TEMIGTERRA MASSIMILIANO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',210050,'2011-09-26','228070.00','A'),('2625',3,'CASSES TRINDADE HELGIO HENRIQUE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118402,'2011-09-13','845850.00','A'),('2626',3,'ASCOLI MASTROENI MARCO ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',120773,'2011-09-07','545010.00','A'),('2627',3,'MONTEIRO SOARES MARCOS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',120773,'2011-07-18','187530.00','A'),('2629',3,'HALL ALVARO AUGUSTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',120773,'2011-08-02','950450.00','A'),('2631',3,'ANDRADE CATUNDA RAFAEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',120773,'2011-08-23','370860.00','A'),('2632',3,'MAGALHAES MAYRA ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118767,'2011-08-23','320960.00','A'),('2633',3,'SPREAFICO MIRIAM ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118587,'2011-08-23','492220.00','A'),('2634',3,'GOMES FERREIRA HELIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',125812,'2011-08-23','498220.00','A'),('2635',3,'FERNANDES SENNA PIRES SERGIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-10-05','14460.00','A'),('2636',3,'BALESTRO FLORIANO FABIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',120773,'2011-08-24','577630.00','A'),('2637',3,'CABANA DE QUEIROZ ANDRADE ALAXANDRE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-23','844780.00','A'),('2638',3,'DALBOSCO CARLA','191821112','CRA 25 CALLE 100','380@yahoo.com.mx','2011-02-03',127591,'2011-06-30','491010.00','A'),('264',1,'ROMERO MONTOYA NICOLAY ENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-13','965220.00','A'),('2640',3,'BILLINI CRUZ RICARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',144215,'2011-03-27','130530.00','A'),('2641',3,'VASQUES ARIAS DAVID','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',144509,'2011-08-19','890500.00','A'),('2642',3,'ROJAS VOLQUEZ GLADYS MICHELLE','191821112','CRA 25 CALLE 100','852@gmail.com','2011-02-03',144215,'2011-07-25','60930.00','A'),('2643',3,'LLANEZA GIL JUAN RAFAELMO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',144215,'2011-07-08','633120.00','A'),('2646',3,'AVILA PEROZO IANKEL JACOB','191821112','CRA 25 CALLE 100','318@hotmail.com','2011-02-03',144215,'2011-09-03','125600.00','A'),('2647',3,'REGULAR EDUARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-19','583540.00','A'),('2648',3,'CORONADO BATISTA JOSE ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-19','540910.00','A'),('2649',3,'OLIVIER JOSE VICTOR','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',144509,'2011-08-19','953910.00','A'),('2650',3,'YOO HOE TAEK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',145135,'2011-08-25','146820.00','A'),('266',1,'CUECA RODRIGUEZ CARLOS ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-22','384280.00','A'),('267',1,'NIETO ALVARADO ARMANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2008-04-28','553450.00','A'),('269',1,'LEAL HOLGUIN FRANCISCO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-25','411700.00','A'),('27',1,'MORENO MORENO CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2009-09-15','995620.00','A'),('270',1,'CANO IBAÑES JUAN FELIPE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-03','215260.00','A'),('271',1,'RESTREPO HERRAN ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132775,'2011-04-18','841220.00','A'),('272',3,'RIOS FRANCISCO JOSE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',199862,'2011-03-24','560300.00','A'),('273',1,'MADERO LORENZANA NICOLAS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-03','277850.00','A'),('274',1,'GOMEZ GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-09-24','708350.00','A'),('275',1,'CONSUEGRA ARENAS ANDRES MAURICIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-09','708210.00','A'),('276',1,'HURTADO ROJAS NICOLAS','191821112','CRA 25 CALLE 100','463@yahoo.com.mx','2011-02-03',127591,'2011-09-07','416000.00','A'),('277',1,'MURCIA BAQUERO MARCO ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-02','955370.00','A'),('2773',3,'TAKUBO KAORI','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',165753,'2011-05-12','872390.00','A'),('2774',3,'OKADA MAKOTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',165753,'2011-06-19','921480.00','A'),('2775',3,'TAKEDA AKIO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',21062,'2011-06-19','990250.00','A'),('2776',3,'KOIKE WATARU ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',165753,'2011-06-19','186800.00','A'),('2777',3,'KUBO SHINEI','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',165753,'2011-02-13','963230.00','A'),('2778',3,'KANNO YONEZO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',165600,'2011-07-26','255770.00','A'),('278',3,'PARENT ELOIDE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',267980,'2011-05-01','528840.00','A'),('2781',3,'SUNADA MINORU ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',165753,'2011-06-19','724450.00','A'),('2782',3,'INOUE KASUYA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-22','87150.00','A'),('2783',3,'OTAKE NOBUTOSHI','191821112','CRA 25 CALLE 100','208@facebook.com','2011-02-03',127591,'2011-06-11','262380.00','A'),('2784',3,'MOTOI KEN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',165753,'2011-06-19','50470.00','A'),('2785',3,'TANAKA KIYOTAKA ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',165753,'2011-06-19','465210.00','A'),('2787',3,'YUMIKOPERDOMO','191821112','CRA 25 CALLE 100','600@yahoo.es','2011-02-03',165600,'2011-07-26','477550.00','A'),('2788',3,'FUKUSHIMA KENZO','191821112','CRA 25 CALLE 100','599@gmail.com','2011-02-03',156960,'2011-05-30','863860.00','A'),('2789',3,'GELGIN LEVENT NURI','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-26','886630.00','A'),('279',1,'AVIATUR S. A.','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-02','778110.00','A'),('2791',3,'GELGIN ENIS ENRE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-26','547940.00','A'),('2792',3,'PAZ SOTO LUBRASCA MARIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',143954,'2011-06-27','215000.00','A'),('2794',3,'MOURAD TAOUFIKI','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-13','511000.00','A'),('2796',3,'DASTUS ALAIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',218656,'2011-05-29','774010.00','A'),('2797',3,'MCDONALD MICHAEL LORNE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',269033,'2011-07-19','85820.00','A'),('2799',3,'KLESO MICHAEL QUENTIN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',269033,'2011-07-26','277950.00','A'),('28',1,'GONZALEZ ACUÑA EDGAR MAURICIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-09-19','531710.00','A'),('280',3,'NEME KARIM CHAIBAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',135967,'2010-05-02','304040.00','A'),('2800',3,'CLERK CHARLES ALEXANDER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',244158,'2011-07-26','68490.00','A'),('2801',3,'BURRIS MAURICE STEWARD','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-27','508600.00','A'),('2802',1,'PINCHEN CLAIRE ELAINE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',216125,'2011-04-13','337530.00','A'),('2803',3,'LETTNER EVA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',231224,'2011-09-20','161860.00','A'),('2804',3,'CANUEL LUCIE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',146258,'2011-09-20','796710.00','A'),('2805',3,'IGLESIAS CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',216125,'2011-08-02','497980.00','A'),('2806',3,'PAQUIN JEAN FRANCOIS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',269033,'2011-03-27','99760.00','A'),('2807',3,'FOURNIER DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',228688,'2011-05-19','4860.00','A'),('2808',3,'BILODEAU MARTIN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-13','725030.00','A'),('2809',3,'KELLNER PETER WILLIAM','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',130757,'2011-07-24','610570.00','A'),('2810',3,'ZAZULAK INGRID ROSEMARIE','191821112','CRA 25 CALLE 100','683@facebook.com','2011-02-03',240550,'2011-09-11','877770.00','A'),('2811',3,'RUCCI JHON MARIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',285188,'2011-05-10','557130.00','A'),('2813',3,'JONCAS MARC','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',33265,'2011-03-21','90360.00','A'),('2814',3,'DUCHARME ERICK','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-03-29','994750.00','A'),('2816',3,'BAILLOD THOMAS DAVID ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',239124,'2010-10-20','529130.00','A'),('2817',3,'MARTINEZ SORIA JOSE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',289697,'2011-09-06','537630.00','A'),('2818',3,'TAMARA RABER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-30','100750.00','A'),('2819',3,'BURGI VINCENT EMANUEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',245206,'2011-04-20','890860.00','A'),('282',1,'HUESPED ASISTENTE A LA CONVENCION DE LA DIAN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2009-06-24','17160.00','A'),('2820',3,'ROBLES TORRALBA IVAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',238949,'2011-05-16','152030.00','A'),('2821',3,'CONSUEGRA MARIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-06','87600.00','A'),('2822',3,'CELMA ADROVER LAIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',190393,'2011-03-23','981880.00','A'),('2823',3,'ALVAREZ JUAN PABLO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150699,'2011-06-20','646610.00','A'),('2824',3,'VARGAS WOODROFFE FRANCISCO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',157414,'2011-06-22','287410.00','A'),('2825',3,'GARCIA GUILLEN VICENTE LUIS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',144215,'2011-08-19','497230.00','A'),('2826',3,'GOMEZ GARCIA DIAMANTES PATRICIA MARIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',286785,'2011-09-22','623930.00','A'),('2827',3,'PEREZ IGLESIAS BIBIANA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-09-30','627940.00','A'),('2830',3,'VILLALONGA MORENES MARIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',169679,'2011-05-29','474910.00','A'),('2831',3,'REY LOPEZ DAVID','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',150699,'2011-08-03','7380.00','A'),('2832',3,'HOYO APARICIO JESUS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',116511,'2011-09-19','612180.00','A'),('2836',3,'GOMEZ GARCIA LOPEZ CARLOS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',150699,'2011-09-21','277540.00','A'),('2839',3,'GALIMERTI MARCO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',235197,'2011-08-28','156870.00','A'),('2840',3,'BAROZZI GIUSEPE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',231989,'2011-05-25','609500.00','A'),('2841',3,'MARIAN RENATO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-12','576900.00','A'),('2842',3,'FAENZA CARLO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',126180,'2011-05-19','55990.00','A'),('2843',3,'PESOLILLO CARMINE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',203162,'2011-06-26','549230.00','A'),('2844',3,'CHIODI FRANCESCO MARIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',199862,'2011-09-10','578210.00','A'),('2845',3,'RUTA MARIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-06-19','243350.00','A'),('2846',3,'BAZZONI MARINO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',101518,'2011-05-03','482140.00','A'),('2848',3,'LAGASIO LEONARDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',231989,'2011-05-04','956670.00','A'),('2849',3,'VIERA DA CUNHA PAULO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',190393,'2011-04-05','741520.00','A'),('2850',3,'DAL BEN DENIS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',116511,'2011-05-26','837590.00','A'),('2851',3,'GIANELLI HERIBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',233927,'2011-05-01','963400.00','A'),('2852',3,'JUSTINO DA SILVA DJAMIR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-04-08','304200.00','A'),('2853',3,'DIPASQUUALE GAETANO','191821112','CRA 25 CALLE 100','574@terra.com.co','2011-02-03',172888,'2011-07-11','630830.00','A'),('2855',3,'CURI MAURO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',199862,'2011-06-19','315160.00','A'),('2856',3,'DI DIO MARCO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-20','851210.00','A'),('2857',3,'ROBERTI MENDONCA CAIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-11','310580.00','A'),('2859',3,'RAMOS MORENO DE SOUZA ANDRE ','191821112','CRA 25 CALLE 100','133@facebook.com','2011-02-03',118777,'2011-09-24','64540.00','A'),('286',8,'INEXMODA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-06-21','50150.00','A'),('2860',3,'JODJAHN DE CARVALHO FLAVIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2011-06-27','324950.00','A'),('2862',3,'LAGASIO LEONARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',231989,'2011-07-04','180760.00','A'),('2863',3,'MOON SUNG RIUL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-08','610440.00','A'),('2865',3,'VAIDYANATHAN VIKRAM','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-11','718220.00','A'),('2866',3,'NARAYANASWAMY RAMSUNDAR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',73079,'2011-10-02','61390.00','A'),('2867',3,'VADADA VENKATA RAMESH KUMAR','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-10','152300.00','A'),('2868',3,'RAMA KRISHNAN ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-10','577300.00','A'),('2869',3,'JALAN PRASHANT','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',122035,'2011-05-02','429600.00','A'),('2871',3,'CHANDRASEKAR VENKAT','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',112862,'2011-06-27','791800.00','A'),('2872',3,'CUMBAKONAM SWAMINATHAN SUBRAMANIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-11','710650.00','A'),('288',8,'BCD TRAVEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-23','645390.00','A'),('289',3,'EMBAJADA ARGENTINA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'1970-02-02','749440.00','A'),('290',3,'EMBAJADA DE BRASIL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-11-16','811030.00','A'),('293',8,'ONU','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-09-19','584810.00','A'),('299',1,'BLANDON GUZMAN JHON JAIRO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-01-13','201740.00','A'),('304',3,'COHEN DANIEL DYLAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',286785,'2010-11-17','184850.00','A'),('306',1,'CINDU ANDINA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2009-06-11','899230.00','A'),('31',1,'GARRIDO LEONARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127662,'2010-09-12','801450.00','A'),('310',3,'CORPORACION CLUB EL NOGAL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2010-08-27','918760.00','A'),('314',3,'CHAWLA AARON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-04-08','295840.00','A'),('317',3,'BAKER HUGHES','191821112','CRA 25 CALLE 100','694@hotmail.com','2011-02-03',127591,'2011-04-03','211990.00','A'),('32',1,'PAEZ SEGURA JOSE ANTONIO','191821112','CRA 25 CALLE 100','675@gmail.com','2011-02-03',129447,'2011-08-22','717340.00','A'),('320',1,'MORENO PAEZ FREDDY ALEXANDER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-31','971670.00','A'),('322',1,'CALDERON CARDOZO GASTON EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-10-05','990640.00','A'),('324',1,'ARCHILA MERA ALFREDOMANUEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-22','77200.00','A'),('326',1,'MUÑOZ AVILA HERNEY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-11-10','550920.00','A'),('327',1,'CHAPARRO CUBILLOS FABIAN ANDRES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-15','685080.00','A'),('329',1,'GOMEZ LOPEZ JUAN SEBASTIAN','191821112','CRA 25 CALLE 100','970@yahoo.com','2011-02-03',127591,'2011-03-20','808070.00','A'),('33',1,'MARTINEZ MARIÑO HENRY HERNAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-04-20','182370.00','A'),('330',3,'MAPSTONE NAOMI LEA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',122035,'2010-02-21','722380.00','A'),('332',3,'ROSSI BURRI NELLY','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132165,'2010-05-10','771210.00','A'),('333',1,'AVELLANEDA OVIEDO JUAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-25','293060.00','A'),('334',1,'SUZA FLOREZ JUAN PABLO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-13','151650.00','A'),('335',1,'ESGUERRA ALVARO ANDRES','191821112','CRA 25 CALLE 100','11@facebook.com','2011-02-03',127591,'2011-09-10','879080.00','A'),('337',3,'DE LA HARPE MARTIN CARAPET WALTER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-27','64960.00','A'),('339',1,'HERNANDEZ ACOSTA SERGIO ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',129499,'2011-06-22','322570.00','A'),('340',3,'ZARAMA DE LA ESPRIELLA MIGUEL PATRICIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-27','102360.00','A'),('342',1,'CABRERA VASQUEZ JUAN PABLO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-01','413440.00','A'),('343',3,'RICHARDSON BEN MARRIS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',286785,'2010-05-18','434890.00','A'),('344',1,'OLARTE PINZON MIGUEL FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-30','934140.00','A'),('345',1,'SOLER SEBASTIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2011-04-20','366020.00','A'),('346',1,'PRIETO JUAN ESTEBAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-07-12','27690.00','A'),('349',1,'BARRERO VELASCO DAVID','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-01','472850.00','A'),('35',1,'VELASQUEZ RAMOS JUAN MANUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-13','251940.00','A'),('350',1,'RANGEL GARCIA SERGIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-03-20','7880.00','A'),('353',1,'ALVAREZ ACEVEDO JOHN FREDDY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-16','540070.00','A'),('354',1,'VILLAMARIN HOME WILMAR ALFREDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-09-19','458810.00','A'),('355',3,'SLUCHIN NAAMAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',263813,'2010-12-01','673830.00','A'),('357',1,'BULLA BERNAL LUIS ERNESTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-06-14','942160.00','A'),('358',1,'BRACCIA AVILA GIANCARLO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-01','732620.00','A'),('359',1,'RODRIGUEZ PINTO RAUL DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-24','836600.00','A'),('36',1,'MALDONADO ALVAREZ JAIRO ASDRUBAL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127300,'2011-06-19','980270.00','A'),('362',1,'POMBO POLANCO JUAN BERNARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-18','124130.00','A'),('363',1,'CARDENAS SUAREZ CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127662,'2011-09-01','372920.00','A'),('364',1,'RIVERA MAZO JOSE DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-06-10','492220.00','A'),('365',1,'LEDERMAN CORDIKI JONATHAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-12-03','342340.00','A'),('367',1,'BARRERA MARTINEZ LUIS CARLOS','191821112','CRA 25 CALLE 100','35@yahoo.com.mx','2011-02-03',127591,'2011-05-24','148130.00','A'),('368',1,'SEPULVEDA RAMIREZ DANIEL MARCELO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-31','35560.00','A'),('369',1,'QUINTERO DIAZ WILSON ASDRUBAL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-24','733430.00','A'),('37',1,'RESTREPO SUAREZ HENRY BERNARDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2011-07-25','145540.00','A'),('370',1,'ROJAS YARA WILLMAR ARLEY','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-12-03','560450.00','A'),('371',3,'CARVER LOUISE EMILY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',286785,'2010-10-07','601980.00','A'),('372',3,'VINCENT DAVID','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',286785,'2011-03-06','328540.00','A'),('374',1,'GONZALEZ DELGADO MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-08-18','198260.00','A'),('375',1,'PAEZ SIMON','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-06-25','480970.00','A'),('376',1,'CADOSCH DELMAR ELIE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-10-07','810080.00','A'),('377',1,'HERRERA VASQUEZ DANIEL EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-06-30','607460.00','A'),('378',1,'CORREAL ROJAS RONALD','191821112','CRA 25 CALLE 100','269@facebook.com','2011-02-03',127591,'2011-07-16','607080.00','A'),('379',1,'VOIDONNIKOLAS MUÑOS PANAGIOTIS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-27','213010.00','A'),('38',1,'CANAL ROJAS MAURICIO HERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-05-29','786900.00','A'),('380',1,'DIAZ ECHEVERRI JUAN DAVID ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-20','243800.00','A'),('381',1,'CIFUENTES MARIN HERNANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-26','579960.00','A'),('382',3,'PAXTON LUCINDA HARRIET','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',107159,'2011-05-23','168420.00','A'),('384',3,'POYNTON BRIAN GEORGE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',286785,'2011-03-20','5790.00','A'),('385',3,'TERMIGNONI ADRIANO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-01-14','722320.00','A'),('386',3,'CARDWELL PAULA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-02-17','594230.00','A'),('389',1,'FONCECA MARTINEZ MIGUEL ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-25','778680.00','A'),('39',1,'GARCIA SUAREZ WILLIAM ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-25','497880.00','A'),('390',1,'GUERRERO NELSON','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-12-03','178650.00','A'),('391',1,'VICTORIA PENA FERNANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-22','557200.00','A'),('392',1,'VAN HISSENHOVEN FERRERO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-13','250060.00','A'),('393',1,'CACERES ORDUZ JUAN GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-28','578690.00','A'),('394',1,'QUINTERO ALVARO FELIPE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-17','143270.00','A'),('395',1,'ANZOLA PEREZ CARLOSDAVID','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-04','980300.00','A'),('397',1,'LLOREDA ORTIZ CARLOS JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-27','417470.00','A'),('398',1,'GONZALES LONDOÑO SEBASTIAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-06-19','672310.00','A'),('4',1,'LONDOÑO DOMINGUEZ ERNESTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-05','324610.00','A'),('40',1,'MORENO ANGULO ORLANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-01','128690.00','A'),('400',8,'TRANSELCA .A','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-04-14','528930.00','A'),('403',1,'VERGARA MURILLO JUAN FERNANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-04','42900.00','A'),('405',1,'CAPERA CAPERA HARRINSON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127799,'2011-06-12','961000.00','A'),('407',1,'MORENO MORA WILLIAM EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-22','872780.00','A'),('408',1,'HIGUERA ROA NICOLAS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-03-28','910430.00','A'),('409',1,'FORERO CASTILLO OSCAR ALEJANDRO','191821112','CRA 25 CALLE 100','988@terra.com.co','2011-02-03',127591,'2011-07-23','933810.00','A'),('410',1,'LOPEZ MURCIA JULIAN DANIEL','191821112','CRA 25 CALLE 100','399@facebook.com','2011-02-03',127591,'2011-08-08','937790.00','A'),('411',1,'ALZATE JOHN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-09-09','887490.00','A'),('412',1,'GONZALES GONZALES ORLANDO ANDREY','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-30','624080.00','A'),('413',1,'ESCOLANO VALENTIN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-05','457930.00','A'),('414',1,'JARAMILLO RODRIGUEZ JUAN CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-12','417420.00','A'),('415',1,'GARCIA MUÑOZ DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-10-02','713300.00','A'),('416',1,'PIÑEROS ARENAS JUAN DAVID','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-10-17','314260.00','A'),('417',1,'ORTIZ ARROYAVE ANDRES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-05-21','431370.00','A'),('418',1,'BAYONA BARRIENTOS JEAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-12','214090.00','A'),('419',1,'AGUDELO VASQUEZ JUAN FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-08-30','776360.00','A'),('420',1,'CALLE DANIEL CJ PRODUCCIONES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-11-04','239500.00','A'),('422',1,'CANO BETANCUR ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-08-20','623620.00','A'),('423',1,'CALDAS BARRETO LUZ MIREYA','191821112','CRA 25 CALLE 100','991@facebook.com','2011-02-03',127591,'2011-05-22','512840.00','A'),('424',1,'SIMBAQUEBA JOSE ERNESTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-25','693320.00','A'),('425',1,'DE SILVESTRE CALERO LUIS GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-18','928110.00','A'),('426',1,'ZORRO PERALTA YEZID','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-25','560560.00','A'),('428',1,'SUAREZ OIDOR DARWIN LEONARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',131272,'2011-09-05','410650.00','A'),('429',1,'GIRAL CARRILLO LUIS ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-04-13','997850.00','A'),('43',1,'MARULANDA VALENCIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-17','365550.00','A'),('430',1,'CORDOBA GARCES JUAN PABLO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-18','757320.00','A'),('431',1,'ARIAS TAMAYO DIEGO MAURICIO','191821112','CRA 25 CALLE 100','36@yahoo.com','2011-02-03',127591,'2011-09-05','793050.00','A'),('432',1,'EICHMANN PERRET MARC WILLY','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-22','693270.00','A'),('433',1,'DIAZ DANIEL ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2008-09-18','87200.00','A'),('435',1,'FACCINI GONZALEZ HERMANN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2009-01-08','519420.00','A'),('436',1,'URIBE DUQUE FELIPE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-28','528470.00','A'),('437',1,'TAVERA GAONA GABREL LEAL','191821112','CRA 25 CALLE 100','280@terra.com.co','2011-02-03',127591,'2011-04-28','84120.00','A'),('438',1,'ORDOÑEZ PARIS FERNANDO MAURICIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150699,'2011-09-26','835170.00','A'),('439',1,'VILLEGAS ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-19','923520.00','A'),('44',1,'MARTINEZ PEDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-08-13','738750.00','A'),('440',1,'MARTINEZ RUEDA JUAN CARLOS','191821112','CRA 25 CALLE 100','805@hotmail.es','2011-02-03',127591,'2011-04-07','112050.00','A'),('441',1,'ROLDAN JUAN CARLOS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-05-25','789720.00','A'),('442',1,'PEREZ BRANDWAYN ELIYAU MOISES','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-10-20','612450.00','A'),('443',1,'VALLEJO TORO JUAN DIEGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128579,'2011-08-16','693080.00','A'),('444',1,'TORRES CABRERA EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-03-19','628070.00','A'),('445',1,'MERINO MEJIA GERMAN ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-28','61100.00','A'),('447',1,'GOMEZ GOMEZ JUAN CARLOS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-08','923070.00','A'),('448',1,'RAUSCH CHEHEBAR STEVEN JOSEPH','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-09-27','351540.00','A'),('449',1,'RESTREPO TRUCCO ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-28','988500.00','A'),('45',1,'GUTIERREZ JARAMILLO CARLOS MARIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',150699,'2011-08-22','597090.00','A'),('450',1,'GOLDSTEIN VAIDA ELI JACK','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-11','887860.00','A'),('451',1,'OLEA PINEDA EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-10','473800.00','A'),('452',1,'JORGE OROZCO','191821112','CRA 25 CALLE 100','503@hotmail.es','2011-02-03',127591,'2011-06-02','705410.00','A'),('454',1,'DE LA TORRE GOMEZ GERMAN ERNESTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-03-03','411990.00','A'),('456',1,'MADERO ARIAS JUAN PABLO','191821112','CRA 25 CALLE 100','452@hotmail.es','2011-02-03',127591,'2011-08-22','479090.00','A'),('457',1,'GOMEZ MACHUCA ALVARO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-08-12','166430.00','A'),('458',1,'MENDIETA TOBON DANIEL RICARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-08','394880.00','A'),('459',1,'VILLADIEGO CORTINA JAVIER TOMAS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-26','475110.00','A'),('46',1,'FERRUCHO ARCINIEGAS JUAN CARLOS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-06','769220.00','A'),('460',1,'DERESER HARTUNG ERNESTO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-12-25','190900.00','A'),('461',1,'RAMIREZ PENA ALEJANDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-06-25','529190.00','A'),('463',1,'IREGUI REYES LUIS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-07','778590.00','A'),('464',1,'PINTO GOMEZ MAURICIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132775,'2010-06-24','673270.00','A'),('465',1,'RAMIREZ RAMIREZ FERNANDO ALONSO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127799,'2011-10-01','30570.00','A'),('466',1,'BERRIDO TRUJILLO JORGE HENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132775,'2011-10-06','133040.00','A'),('467',1,'RIVERA CARVAJAL RAFAEL HUMBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-20','573500.00','A'),('468',3,'FLOREZ PUENTES IVAN ALFONSO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-05-08','468380.00','A'),('469',1,'BALLESTEROS FLOREZ IVAN DARIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-06-02','621410.00','A'),('47',1,'MARIN FLOREZ OMAR EDUARDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-30','54840.00','A'),('470',1,'RODRIGO PEÑA HERRERA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',237734,'2011-10-04','701890.00','A'),('471',1,'RODRIGUEZ SILVA ROGELIO','191821112','CRA 25 CALLE 100','163@gmail.com','2011-02-03',127591,'2011-05-26','645210.00','A'),('473',1,'VASQUEZ VELANDIA JUAN GABRIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-05-04','666330.00','A'),('474',1,'ROBLEDO JAIME','191821112','CRA 25 CALLE 100','409@yahoo.com','2011-02-03',127591,'2011-05-31','970480.00','A'),('475',1,'GRIMBERG DIAZ PHILIP','191821112','CRA 25 CALLE 100','723@yahoo.com','2011-02-03',127591,'2011-03-30','853430.00','A'),('476',1,'CHAUSTRE GARCIA JUAN PABLO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-26','355670.00','A'),('477',1,'GOMEZ FLOREZ IGNASIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-09-14','218090.00','A'),('478',1,'LUIS ALBERTO CABRERA PUENTES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2011-05-26','23420.00','A'),('479',1,'MARTINEZ ZAPATA JUAN CARLOS','191821112','CRA 25 CALLE 100','234@gmail.com','2011-02-03',127122,'2011-07-01','462840.00','A'),('48',1,'PARRA IBAÑEZ FABIAN ERNESTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-02-01','966520.00','A'),('480',3,'WESTERBERG JAN RICKARD','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',300701,'2011-02-01','243940.00','A'),('484',1,'RODRIGUEZ VILLALOBOS EDGAR FERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-19','860320.00','A'),('486',1,'NAVARRO REYES DIEGO FELIPE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-01','530150.00','A'),('487',1,'NOGUERA RICAURTE ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-01-21','384100.00','A'),('488',1,'RUIZ VEJARANO CARLOS DANIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-27','330030.00','A'),('489',1,'CORREA PEREZ ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-12-14','497860.00','A'),('49',1,'FLOREZ PEREZ RUBIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-23','668090.00','A'),('490',1,'REYES GOMEZ LUIS ALEJANDRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-26','499210.00','A'),('491',3,'BERNAL LEON ALBERTO JOSE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',150699,'2011-03-29','2470.00','A'),('492',1,'FELIPE JARAMILLO CARO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2009-10-31','514700.00','A'),('493',1,'GOMEZ PARRA GERMAN DARIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-01-29','566100.00','A'),('494',1,'VALLEJO RAMIREZ CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-13','286390.00','A'),('495',1,'DIAZ LONDOÑO HUGO MARIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-04-06','733670.00','A'),('496',3,'VAN BAKERGEM RONALD JAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2008-11-05','809190.00','A'),('497',1,'MENDEZ RAMIREZ JOSE LEONARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-10','844920.00','A'),('498',3,'QUI TANILLA HENRIQUEZ PAUL ANTONIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-10','797030.00','A'),('499',3,'PELEATO FLOREAL','191821112','CRA 25 CALLE 100','531@hotmail.com','2011-02-03',188640,'2011-04-23','450370.00','A'),('50',1,'SILVA GUZMAN MAURICIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-03-24','440890.00','A'),('502',3,'LEO ULF GORAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',300701,'2010-07-26','181840.00','A'),('503',3,'KARLSSON DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',300701,'2011-07-22','50680.00','A'),('504',1,'JIMENEZ JANER ALEJANDRO','191821112','CRA 25 CALLE 100','889@hotmail.es','2011-02-03',203272,'2011-08-29','707880.00','A'),('506',1,'PABON OCHOA ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-14','813050.00','A'),('507',1,'ACHURY CADENA CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-26','903240.00','A'),('508',1,'ECHEVERRY GARZON SEBASTIN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-23','77050.00','A'),('509',1,'PIÑEROS PEÑA LUIS CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-29','675550.00','A'),('51',1,'CAICEDO URREA JAIME ORLANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127300,'2011-08-17','200160.00','A'),('510',1,'MARTINEZ MARTINEZ LUIS EDUARDO','191821112','CRA 25 CALLE 100','586@facebook.com','2011-02-03',127591,'2010-08-28','146600.00','A'),('511',1,'MOLANO PEÑA JESUS ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-02-05','706320.00','A'),('512',3,'RUDOLPHY FONTAINE ANDRES','191821112','CRA 25 CALLE 100','492@yahoo.com','2011-02-03',117002,'2011-04-12','91820.00','A'),('513',1,'NEIRA CHAVARRO JOHN JAIRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-12','340120.00','A'),('514',3,'MENDEZ VILLALOBOS ARMANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',145135,'2011-03-25','425160.00','A'),('515',3,'HERNANDEZ OLIVA JOSE DE LA CRUZ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-03-25','105440.00','A'),('518',3,'JANCO NICOLAS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-15','955830.00','A'),('52',1,'TAPIA MUÑOZ JAIRO RICARDO','191821112','CRA 25 CALLE 100','920@hotmail.es','2011-02-03',127591,'2011-10-05','678130.00','A'),('520',1,'ALVARADO JAVIER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-26','895550.00','A'),('521',1,'HUERFANO SOTO JONATHAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-30','619910.00','A'),('522',1,'HUERFANO SOTO JONATHAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-04','412900.00','A'),('523',1,'RODRIGEZ GOMEZ WILMAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-14','204790.00','A'),('525',1,'ARROYO BAPTISTE DIEGO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-04-09','311810.00','A'),('526',1,'PULECIO BOEK DANIEL','191821112','CRA 25 CALLE 100','718@gmail.com','2011-02-03',127591,'2011-08-12','203350.00','A'),('527',1,'ESLAVA VELEZ SEBASTIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-10-08','81300.00','A'),('528',1,'CASTRO FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-05-06','796470.00','A'),('53',1,'HINCAPIE MARTINEZ RICARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127573,'2011-09-26','790180.00','A'),('530',1,'ZORRILLA PUJANA NICOLAS','191821112','CRA 25 CALLE 100','312@yahoo.es','2011-02-03',127591,'2011-06-06','302750.00','A'),('531',1,'ZORRILLA PUJANA NICOLAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-06','298440.00','A'),('532',1,'PRETEL ARTEAGA MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-09','583980.00','A'),('533',1,'RAMOS VERGARA HUMBERTO CARLOS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',131105,'2010-05-13','24560.00','A'),('534',1,'BONILLA PIÑEROS DIEGO FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-20','370880.00','A'),('535',1,'BELTRAN TRIVIÑO JULIAN DAVID','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-11-06','780710.00','A'),('536',3,'BLOD ULF FREDERICK EDWARD','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-06','790900.00','A'),('537',1,'VANEGAS OROZCO SEBASTIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-11-10','612400.00','A'),('538',3,'ORUE VALLE MONICA CECILIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',97885,'2011-09-15','689270.00','A'),('539',1,'AGUDELO BEDOYA ANDRES JOSE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-05-24','609160.00','A'),('54',1,'DE HOYOS TRESPALACIOS MAURICIO ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-04-21','916500.00','A'),('540',3,'HEIJKENSKJOLD PER JESPER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-04-06','977980.00','A'),('541',3,'GONZALEZ ALVARADO LUIS RAUL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-08-27','62430.00','A'),('543',1,'GRUPO SURAMERICA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-08-24','703760.00','A'),('545',1,'CORPORACION CONTEXTO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-09-08','809570.00','A'),('546',3,'LUNDIN JOHAN ERIK ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-29','895330.00','A'),('548',3,'VEGERANO JOSE ','191821112','CRA 25 CALLE 100','221@facebook.com','2011-02-03',190393,'2011-06-05','553780.00','A'),('549',3,'SERRANO MADRID CLAUDIA INES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-07-27','625060.00','A'),('55',1,'TAFUR GOMEZ ALEXANDER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2010-09-12','211980.00','A'),('550',1,'MARTINEZ ACEVEDO MAURICIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-10-06','463920.00','A'),('551',1,'GONZALEZ MORENO PABLO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-07-21','444450.00','A'),('552',1,'MEJIA ROJAS ANDRES FELIPE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-08-02','830470.00','A'),('553',3,'RODRIGUEZ ANTHONY HANSEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-16','819000.00','A'),('554',1,'ABUCHAIBE ANNICCHRICO JOSE ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-31','603610.00','A'),('555',3,'MOYES KIMBERLY','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-08','561020.00','A'),('556',3,'MONTINI MARIO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118942,'2010-03-16','994280.00','A'),('557',3,'HOGBERG DANIEL TOBIAS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-15','288350.00','A'),('559',1,'OROZCO PFEIZER MARTIN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-10-07','429520.00','A'),('56',1,'NARIÑO ROJAS GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-27','310390.00','A'),('560',1,'GARCIA MONTOYA ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-06-02','770840.00','A'),('562',1,'VELASQUEZ PALACIO MANUEL ORLANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-06-23','515670.00','A'),('563',1,'GALLEGO PEREZ DIEGO ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-04-14','881460.00','A'),('564',1,'RUEDA URREGO JUAN ESTEBAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-05-04','860270.00','A'),('565',1,'RESTREPO DEL TORO MAURICIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-05-10','656960.00','A'),('567',1,'TORO VALENCIA FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-08-04','549090.00','A'),('568',1,'VILLEGAS LUIS ALFONSO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-05-02','633490.00','A'),('569',3,'RIDSTROM CHRISTER ANDERS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',300701,'2011-09-06','520150.00','A'),('57',1,'TOVAR ARANGO JOHN JAIME','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127662,'2010-07-03','916010.00','A'),('570',3,'SHEPHERD DAVID','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2008-05-11','700280.00','A'),('573',3,'BENGTSSON JOHAN ANDREAS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-04-06','196830.00','A'),('574',3,'PERSSON HANS JONAS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-09','172340.00','A'),('575',3,'SYNNEBY BJORN ERIK','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-15','271210.00','A'),('577',3,'COHEN PAUL KIRTAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-25','381490.00','A'),('578',3,'ROMERO BRAVO FERNANDO EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-08-21','390360.00','A'),('579',3,'GUTHRIE ROBERT DEAN','191821112','CRA 25 CALLE 100','794@gmail.com','2011-02-03',161705,'2010-07-20','807350.00','A'),('58',1,'TORRES ESCOBAR JAIRO ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-06-17','648860.00','A'),('580',3,'ROCASERMEÑO MONTENEGRO MARIO JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',139844,'2010-12-01','865650.00','A'),('581',1,'COCK JORGE EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-08-19','906210.00','A'),('582',3,'REISS ANDREAS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2009-01-31','934120.00','A'),('584',3,'ECHEVERRIA CASTILLO GERMAN FRANCISCO','191821112','CRA 25 CALLE 100','982@yahoo.com','2011-02-03',139844,'2011-07-20','957370.00','A'),('585',3,'BRANDT CARLOS GUSTAVO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-10','931030.00','A'),('586',3,'VEGA NUÑEZ GILBERTO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-14','783010.00','A'),('587',1,'BEJAR MUÑOZ JORDI','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',196234,'2010-10-08','121990.00','A'),('588',3,'WADSO KERSTIN ELIZABETH','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-17','260890.00','A'),('59',1,'RAMOS FORERO JAVIER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-20','496300.00','A'),('590',1,'RODRIGUEZ BETANCOURT JAVIER AUGUSTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127538,'2011-05-23','909850.00','A'),('592',1,'ARBOLEDA HALABY RODRIGO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',150699,'2009-02-03','939170.00','A'),('593',1,'CURE CURE CARLOS ALFREDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150699,'2011-07-11','494600.00','A'),('594',3,'VIDELA PEREZ OSCAR EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-07-13','655510.00','A'),('595',1,'GONZALEZ GAVIRIA NESTOR','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2009-09-28','793760.00','A'),('596',3,'IZQUIERDO DELGADO DIONISIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2009-09-24','2250.00','A'),('597',1,'MORENO DAIRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127300,'2011-06-14','629990.00','A'),('598',1,'RESTREPO FERNNDEZ SOTO JOSE MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-08-31','143210.00','A'),('599',3,'YERYES VERGARA MARIA SOLEDAD','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-10-11','826060.00','A'),('6',1,'GUZMAN ESCOBAR JOSE VICENTE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-10','26390.00','A'),('60',1,'ELEJALDE ESCOBAR TOMAS ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-11-09','534910.00','A'),('601',1,'ESCAF ESCAF WILLIAM MIGUEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',150699,'2011-07-26','25190.00','A'),('602',1,'CEBALLOS ZULUAGA JOSE ALEJANDRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-05-03','23920.00','A'),('603',1,'OLIVELLA GUERRERO RAFAEL ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',134022,'2010-06-23','44040.00','A'),('604',1,'ESCOBAR GALLO CARLOS HUGO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-08-09','148420.00','A'),('605',1,'ESCORCIA RAMIREZ EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128569,'2011-04-01','609990.00','A'),('606',1,'MELGAREJO MORENO PAULA ANDREA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-05','604700.00','A'),('607',1,'TOBON CALLE CARLOS GUILLERMO','191821112','CRA 25 CALLE 100','689@hotmail.es','2011-02-03',128662,'2011-03-16','193510.00','A'),('608',3,'TREVIÑO NOPHAL SILVANO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',110709,'2011-05-27','153470.00','A'),('609',1,'CARDER VELEZ EDWIN JOHN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-09-04','186830.00','A'),('61',1,'GASCA DAZA VICTOR HERNANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-09-09','185660.00','A'),('610',3,'DAVIS JOHN BRADLEY','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-04-06','473740.00','A'),('611',1,'BAQUERO SLDARRIAGA ALVARO ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-09-15','808210.00','A'),('612',3,'SERRACIN ARAUZ YANIRA YAMILET','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',131272,'2011-06-09','619820.00','A'),('613',1,'MORA SOTO ALVARO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-09-20','674450.00','A'),('614',1,'SUAREZ RODRIGUEZ HERNANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-03-29','512820.00','A'),('616',1,'BAQUERO GARCIA JORGE LUIS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2010-07-14','165160.00','A'),('617',3,'ABADI MADURO MOISES SIMON','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',131272,'2009-03-31','203640.00','A'),('62',3,'FLOWER LYNDON BRUCE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',231373,'2011-05-16','323560.00','A'),('624',8,'OLARTE LEONARDO','191821112','CRA 25 CALLE 100','6@hotmail.com','2011-02-03',127591,'2011-06-03','219790.00','A'),('63',1,'RUBIO CORTES OSCAR','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-04-28','60830.00','A'),('630',5,'PROEXPORT','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2010-08-12','708320.00','A'),('632',8,'SUPER COFFEE ','191821112','CRA 25 CALLE 100','792@hotmail.es','2011-02-03',127591,'2011-08-30','306460.00','A'),('636',8,'NOGAL ASESORIAS FINANCIERAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-04-07','752150.00','A'),('64',1,'GUERRA MARTINEZ MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-24','333480.00','A'),('645',8,'GIZ - PROFIS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-31','566330.00','A'),('652',3,'QBE DEL ISTMO COMPAÑIA DE REASEGUROS ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-14','932190.00','A'),('655',3,'CORP. CENTRO DE ESTUDIOS DE DERECHO JUSTICIA Y SOCIEDAD','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-05-04','440370.00','A'),('659',3,'GOOD YEAR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2010-09-24','993830.00','A'),('660',3,'ARCINIEGAS Y VILLAMIZAR','191821112','CRA 25 CALLE 100','258@yahoo.com','2011-02-03',127591,'2010-12-02','787450.00','A'),('67',1,'LOPEZ HOYOS JUAN DIEGO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127662,'2010-04-13','665230.00','A'),('670',8,'APPLUS NORCONTROL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2011-09-06','83210.00','A'),('672',3,'KERLL SEBASTIAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',287273,'2010-12-19','501610.00','A'),('673',1,'RESTREPO MOLINA RAMIRO ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',144215,'2010-12-18','457290.00','A'),('674',1,'PEREZ GIL JOSE IGNACIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-08-18','781610.00','A'),('676',1,'GARCIA LONDOÑO FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-08-23','336160.00','A'),('677',3,'RIJLAARSDAM KARIN AN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-07-03','72210.00','A'),('679',1,'LIZCANO MONTEALEGRE ARNULFO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127203,'2011-02-01','546170.00','A'),('68',1,'MARTINEZ SILVA EDGAR','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-29','54250.00','A'),('680',3,'OLIVARI MAYER PATRICIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',122642,'2011-08-01','673170.00','A'),('682',3,'CHEVALIER FRANCK PIERRE CHARLES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',263813,'2010-12-01','617280.00','A'),('683',3,'NG WAI WING ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',126909,'2011-06-14','904310.00','A'),('684',3,'MULLER DOMINGUEZ CARLOS ANDRES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-22','669700.00','A'),('685',3,'MOSQUEDA DOMNGUEZ ANGEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-04-08','635580.00','A'),('686',3,'LARREGUI MARIN LEON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-08','168800.00','A'),('687',3,'VARGAS VERGARA ALEJANDRO BRAULIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',159245,'2011-09-14','937260.00','A'),('688',3,'SKINNER LYNN CHERYL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-12','179890.00','A'),('689',1,'URIBE CORREA LEONARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2010-07-29','87680.00','A'),('690',1,'TAMAYO JARAMILLO FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-11-10','898730.00','A'),('691',3,'MOTABAN DE BORGES PAULA ELENA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132958,'2010-09-24','230610.00','A'),('692',5,'FERNANDEZ NALDA JOSE MANUEL ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-06-28','456850.00','A'),('693',1,'GOMEZ RESTREPO JUAN FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-06-28','592420.00','A'),('694',1,'CARDENAS TAMAYO JOSE JAIME','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-08-08','591550.00','A'),('696',1,'RESTREPO ARANGO ALEJANDRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-03-31','127820.00','A'),('697',1,'ROCABADO PASTRANA ROBERT JAVIER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127443,'2011-08-13','97600.00','A'),('698',3,'JARVINEN JOONAS JORI KRISTIAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',196234,'2011-05-29','104560.00','A'),('699',1,'MORENO PEREZ HERNAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-08-30','230000.00','A'),('7',1,'PUYANA RAMOS GUILLERMO ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-08-27','331830.00','A'),('70',1,'GALINDO MANZANO JAVIER FRANCISCO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-31','214890.00','A'),('701',1,'ROMERO PEREZ ARCESIO JOSE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132775,'2011-07-13','491650.00','A'),('703',1,'CHAPARRO AGUDELO LEONARDO VIRGILIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-05-04','271320.00','A'),('704',5,'VASQUEZ YANIS MARIA DEL PILAR','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-10-13','508820.00','A'),('705',3,'BARBERO JOSE ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',116511,'2010-09-13','730170.00','A'),('706',1,'CARMONA HERNANDEZ MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-11-08','124380.00','A'),('707',1,'PEREZ SUAREZ JORGE ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132775,'2011-09-14','431370.00','A'),('708',1,'ROJAS JORGE MARIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',130135,'2011-04-01','783740.00','A'),('71',1,'DIAZ JUAN PABLO/JULES JAVIER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-10-01','247860.00','A'),('711',3,'CATALDO CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',116773,'2011-06-06','984810.00','A'),('716',5,'MACIAS PIZARRO PATRICIO ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-06-07','376260.00','A'),('717',1,'RENDON MAYA DAVID ALEXANDER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',130273,'2010-07-25','332310.00','A'),('718',3,'DE HILDEBRAND E GRISI FILHO CELSO CLAUDIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-11','532740.00','A'),('719',3,'ALLIEL FACUSSE JULIO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-06-20','666800.00','A'),('72',1,'LOPEZ ROJAS VICTOR DANIEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-11','594640.00','A'),('720',3,'CHEMELLO JIMENEZ GAETANO ALBERTO FRANCISCO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',132958,'2010-06-23','735760.00','A'),('721',3,'GARCIA BEZANILLA RODOLFO EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-04-12','678420.00','A'),('722',1,'ARIAS EDWIN','191821112','CRA 25 CALLE 100','13@terra.com.co','2011-02-03',127492,'2008-04-24','184800.00','A'),('723',3,'SOHN JANG WON','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-06-07','888750.00','A'),('724',3,'WILHELM GIOVINE JAIME ROBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',115263,'2011-09-20','889340.00','A'),('726',3,'CASTILLERO DANIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',131272,'2011-05-13','234270.00','A'),('727',3,'PORTUGAL LANGHORST MAX GUILLERMO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-13','829960.00','A'),('729',3,'ALFONSO HERRANZ AGUSTIN ALFONSO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-07-21','745060.00','A'),('73',1,'DAVILA MENDEZ OSCAR DIEGO','191821112','CRA 25 CALLE 100','991@yahoo.com.mx','2011-02-03',128569,'2011-08-31','229630.00','A'),('730',3,'ALFONSO HERRANZ AGUSTIN CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2010-03-31','384360.00','A'),('731',1,'NOGUERA RAMIREZ CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-14','686610.00','A'),('732',1,'ACOSTA PERALTA FABIAN ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',134030,'2011-06-21','279960.00','A'),('733',3,'MAC LEAN PIÑA PEDRO SEGUNDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-05-23','339980.00','A'),('734',1,'LEÓN ARCOS ALEX','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',133535,'2011-05-04','860020.00','A'),('736',3,'LAMARCA GARCIA GERMAN JULIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-04-29','820700.00','A'),('737',1,'PORTO VELASQUEZ LUIS MIGUEL','191821112','CRA 25 CALLE 100','321@hotmail.es','2011-02-03',133535,'2011-08-17','263060.00','A'),('738',1,'BUENAVENTURA MEDINA ERICK WILSON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',133535,'2011-09-18','853180.00','A'),('739',1,'LEVY ARRAZOLA RALPH MARC','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',133535,'2011-09-27','476720.00','A'),('74',1,'RAMIREZ SORA EDISON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-03','364220.00','A'),('740',3,'MOON HYUNSIK ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',173192,'2011-05-15','824080.00','A'),('741',3,'LHUILLIER TRONCOSO GASTON MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-09-07','690230.00','A'),('742',3,'UNDURRAGA PELLEGRINI GONZALO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2010-11-21','978900.00','A'),('743',1,'SOLANO TRIBIN NICOLAS SIMON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',134022,'2011-03-16','823800.00','A'),('744',1,'NOGUERA BENAVIDES JACOBO ALONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-06','182300.00','A'),('745',1,'GARCIA LEON MARCO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',133535,'2008-04-16','440110.00','A'),('746',1,'EMILIANI ROJAS ALEXANDER ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-09-12','653640.00','A'),('748',1,'CARREÑO POULSEN HELGEN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-06','778370.00','A'),('749',1,'ALVARADO FANDIÑO ANDRES EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2008-11-05','48280.00','A'),('750',1,'DIAZ GRANADOS JUAN PABLO.','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-01-12','906290.00','A'),('751',1,'OVALLE BETANCOURT ALBERTO JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',134022,'2011-08-14','386620.00','A'),('752',3,'GUTIERREZ VERGARA JOSE MIGUEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-08','214250.00','A'),('753',3,'CHAPARRO GUAIMARAL LIZ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',147467,'2011-03-16','911350.00','A'),('754',3,'CORTES DE SOLMINIHAC PABLO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117002,'2011-01-20','914020.00','A'),('755',3,'CHETAIL VINCENT','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',239124,'2010-08-23','836050.00','A'),('756',3,'PERUGORRIA RODRIGUEZ JORGE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2010-10-17','438210.00','A'),('757',3,'GOLLMANN ROBERTO JUAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',167269,'2011-03-28','682870.00','A'),('758',3,'VARELA SEPULVEDA MARIA PILAR','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2010-07-26','99730.00','A'),('759',3,'MEYER WELIKSON MICHELE JANIK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-05-10','450030.00','A'),('76',1,'VANEGAS RODRIGUEZ OSCAR IVAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-20','568310.00','A'),('77',3,'GATICA SOTOMAYOR MAURICIO VICENTE','191821112','CRA 25 CALLE 100','409@terra.com.co','2011-02-03',117002,'2010-05-13','444970.00','A'),('79',1,'PEÑA VALENZUELA DANIEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-19','264790.00','A'),('8',1,'NAVARRO PALENCIA HUGO RAFAEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',126968,'2011-05-05','579980.00','A'),('80',1,'BARRIOS CUADRADO DAVID','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-29','764140.00','A'),('802',3,'RECK GARRONE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118942,'2009-02-06','767700.00','A'),('81',1,'PARRA QUIROGA JOSE ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-18','26330.00','A'),('811',8,'FEDERACION NACIONAL DE AVICULTORES ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-04-18','926010.00','A'),('812',1,'ORJUELA VELEZ JAIME ALFONSO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-22','257160.00','A'),('813',1,'PEÑA CHACON GUSTAVO ADOLFO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-08-27','507770.00','A'),('814',1,'RONDEROS MOJICA ANDRES FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127443,'2011-05-04','767370.00','A'),('815',1,'RICO NIÑO MARIO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127443,'2011-05-18','313540.00','A'),('817',3,'AVILA CHYTIL MANUEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118471,'2011-07-14','387300.00','A'),('818',3,'JABLONSKI DUARTE SILVEIRA ESTER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2010-12-21','139740.00','A'),('819',3,'BUHLER MOSLER XIMENA ALEJANDRA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2011-06-20','536830.00','A'),('82',1,'CARRILLO GAMBOA JUAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-06-01','839240.00','A'),('820',3,'FALQUETO DALMIRO ANGELO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-06-21','264910.00','A'),('821',1,'RUGER GUSTAVO RODRIGUEZ TAMAYO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',133535,'2010-04-12','714080.00','A'),('822',3,'JULIO RODRIGUEZ FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',117002,'2011-08-16','775650.00','A'),('823',3,'CIBANIK RODOLFO MOISES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132554,'2011-09-19','736020.00','A'),('824',3,'JIMENEZ FRANCO EMMANUEL ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-17','353150.00','A'),('825',3,'GNECCO TREMEDAD','191821112','CRA 25 CALLE 100','818@hotmail.com','2011-02-03',171072,'2011-03-19','557700.00','A'),('826',3,'VILAR MENDOZA JOSE RAFAEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-29','729050.00','A'),('827',3,'GONZALEZ MOLINA CRISTIAN MAURICIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-06-20','972160.00','A'),('828',1,'GONTOVNIK HOBRECKT CARLOS DANIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-08-02','673620.00','A'),('829',3,'DIBARRAT URZUA SEBASTIAN RAIMUNDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-28','451650.00','A'),('830',3,'STOCCHERO HATSCHBACH GUILHERME','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118777,'2010-11-22','237370.00','A'),('831',1,'NAVAS PASSOS NARCISO EVELIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-04-21','831900.00','A'),('832',3,'LUNA SOBENES FAVIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-10-11','447400.00','A'),('833',3,'NUÑEZ NOGUEIRA ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2011-03-19','741290.00','A'),('834',1,'CASTRO BELTRAN ARIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128188,'2011-05-15','364270.00','A'),('835',1,'TURBAY YAMIN MAURICIO JOSE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-03-17','597490.00','A'),('836',1,'GOMEZ BARRAZA RODNEY LORENZO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-07','894610.00','A'),('837',1,'CUELLO LASCANO ROBERTO','191821112','CRA 25 CALLE 100','221@hotmail.es','2011-02-03',133535,'2011-07-11','680610.00','A'),('838',1,'PATERNINA PEINADO JOSE VICENTE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',133535,'2011-08-23','719190.00','A'),('839',1,'YEPES RUBIANO ALFONSO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-05-16','554130.00','A'),('84',1,'ALVIS RAMIREZ ALFREDO','191821112','CRA 25 CALLE 100','292@yahoo.com','2011-02-03',127662,'2011-09-16','68190.00','A'),('840',1,'ROCA LLANOS GUILLERMO ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-08-22','613060.00','A'),('841',1,'RENDON TORRALVO ENRIQUE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',133535,'2011-05-26','402950.00','A'),('842',1,'BLANCO STAND GERMAN ELIECER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-07-17','175530.00','A'),('843',3,'BERNAL MAYRA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',131272,'2010-08-31','668820.00','A'),('844',1,'NAVARRO RUIZ LAZARO GREGORIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',126916,'2008-09-23','817520.00','A'),('846',3,'TUOMINEN OLLI PETTERI','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-09-01','953150.00','A'),('847',1,'ESPARRAGOZA DE LA ESPRIELLA ENRIQUE ALBERTO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',133535,'2011-08-09','522340.00','A'),('848',3,'ARAYA ARIAS JUAN VICENTE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',132165,'2011-08-09','752210.00','A'),('85',1,'GARCIA JORGE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-03-01','989420.00','A'),('850',1,'PARDO GOMEZ GERMAN ENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132775,'2010-11-25','713690.00','A'),('851',1,'ATIQUE JOSE MANUEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2008-03-03','986250.00','A'),('852',1,'HERNANDEZ MEYER EDGARDO DE JESUS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-07-20','790190.00','A'),('853',1,'ZULUAGA DE LEON IVAN JESUS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-07-03','992210.00','A'),('854',1,'VILLARREAL ANGULO ENRIQUE ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-10-02','590450.00','A'),('855',1,'CELIA MARTINEZ APARICIO GIAN PIERO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',133535,'2011-06-15','975620.00','A'),('857',3,'LIPARI RONALDO LUIS','191821112','CRA 25 CALLE 100','84@facebook.com','2011-02-03',118941,'2010-10-13','606990.00','A'),('858',1,'RAVACHI DAVILA ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',133535,'2011-05-04','714620.00','A'),('859',3,'PINHEIRO OLIVEIRA LUCIANO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-04-06','752130.00','A'),('86',1,'GOMEZ LIS CARLOS EMILIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2009-12-22','742520.00','A'),('860',1,'PUGLIESE MERCADO LUIGGI ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-08-19','616780.00','A'),('862',1,'JANNA TELLO DANIEL JALIL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',133535,'2010-08-07','287220.00','A'),('863',3,'MATTAR CARLOS HENRIQUE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2009-04-26','953570.00','A'),('864',1,'MOLINA OLIER OSVALDO ENRIQUE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132775,'2011-04-18','906200.00','A'),('865',1,'BLANCO MCLIN DAVID ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-08-18','670290.00','A'),('866',1,'NARANJO ROMERO ALFREDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2010-08-25','632860.00','A'),('867',1,'SIMANCAS TRUJILLO RICARDO ANTONIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-04-07','153400.00','A'),('868',1,'ARENAS USME GERMAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',126881,'2011-10-01','868430.00','A'),('869',5,'DIAZ CORDERO RODRIGO FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-11-04','881950.00','A'),('87',1,'CELIS PEREZ HERNANDO ALONSO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-10-05','744330.00','A'),('870',3,'BINDER ZBEDA JONATAHAN JANAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',131083,'2010-04-11','804460.00','A'),('871',1,'HINCAPIE HELLMAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-09-15','376440.00','A'),('872',3,'MONTEIRO LANAMAR ALFONSO DE BUSTAMANTE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118942,'2009-03-23','468820.00','A'),('873',3,'AGUDO CARMINATTI REGINA CELIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-01-04','214770.00','A'),('874',1,'GONZALEZ VILLALOBOS CRISTIAN MANUEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',133535,'2011-09-26','667400.00','A'),('875',3,'GUELL VILLANUEVA ALVARO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2008-04-07','692670.00','A'),('876',3,'GRES ANAIS ROBERTO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-12-01','461180.00','A'),('877',3,'GAME MOCOCAIN JUAN ENRIQUE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-07','227890.00','A'),('878',1,'FERRER UCROS FERNANDO LEON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-06-22','755900.00','A'),('879',3,'HERRERA JAUREGUI CARLOS GUSTAVO','191821112','CRA 25 CALLE 100','599@facebook.com','2011-02-03',131272,'2010-07-22','95840.00','A'),('880',3,'BACALLAO HERNANDEZ ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',126180,'2010-04-21','211480.00','A'),('881',1,'GIJON URBINA JAIME','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',144879,'2011-04-03','769910.00','A'),('882',3,'TRUSEN CHRISTOPH WOLFGANG','191821112','CRA 25 CALLE 100','338@yahoo.com.mx','2011-02-03',127591,'2010-10-24','215100.00','A'),('883',3,'ASHOURI ASKANDAR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',157861,'2009-03-03','765760.00','A'),('885',1,'ALTAMAR WATTS JAIRO ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-08-20','620170.00','A'),('887',3,'QUINTANA BALTIERRA ROBERTO ALEX','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-06-21','891370.00','A'),('889',1,'CARILLO PATIÑO VICTOR HILARIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',130226,'2011-09-06','354570.00','A'),('89',1,'CONTRERAS PULIDO LINA MARIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-06','237480.00','A'),('890',1,'GELVES CAÑAS GENARO ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-02','355640.00','A'),('891',3,'CAGNONI DE MELO PAULA CRISTINA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2010-12-14','714490.00','A'),('892',3,'MENA AMESTICA PATRICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2011-03-22','505510.00','A'),('893',1,'CAICEDO ROMES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-04-07','384110.00','A'),('894',1,'ECHEVERRY TRUJILLO ARMANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-06-08','404010.00','A'),('895',1,'CAJIA PEDRAZA ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-02','867700.00','A'),('896',2,'PALACIOS OLIVA ANDRES FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-05-24','126500.00','A'),('897',1,'GUTIERREZ QUINTERO FABIAN ESTEBAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2009-10-24','29380.00','A'),('899',3,'COBO GUEVARA LUIS FELIPE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-12-09','748860.00','A'),('9',1,'OSORIO RODRIGUEZ FELIPE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-09-27','904420.00','A'),('90',1,'LEYTON GONZALEZ FREDY RAFAEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-03-24','705130.00','A'),('901',1,'HERNANDEZ JOSE ANGEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',130266,'2011-05-23','964010.00','A'),('903',3,'GONZALEZ MALDONADO MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2010-11-13','576500.00','A'),('904',1,'OCHOA BARRIGA JORGE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',130266,'2011-05-05','401380.00','A'),('905',1,'OSORIO REDONDO JESUS DAVID','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127300,'2011-08-11','277390.00','A'),('906',1,'BAYONA BARRIENTOS JEAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-01-25','182820.00','A'),('907',1,'MARTINEZ GOMEZ CARLOS ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132775,'2010-03-11','81940.00','A'),('908',1,'PUELLO LOPEZ GUILLERMO LEON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-08-12','861240.00','A'),('909',1,'MOGOLLON LONDOÑO PEDRO LUIS CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132775,'2011-06-22','60380.00','A'),('91',1,'ORTIZ RIOS JAVIER ADOLFO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-12','813200.00','A'),('911',1,'HERRERA HOYOS CARLOS FRANCISCO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132775,'2010-09-12','409800.00','A'),('912',3,'RIM MYUNG HWAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-15','894450.00','A'),('913',3,'BIANCO DORIEN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-29','242820.00','A'),('914',3,'FROIMZON WIEN DANIEL','191821112','CRA 25 CALLE 100','348@yahoo.com','2011-02-03',132165,'2010-11-06','530780.00','A'),('915',3,'ALVEZ AZEVEDO JOAO MIGUEL','191821112','CRA 25 CALLE 100','861@hotmail.es','2011-02-03',127591,'2009-06-25','925420.00','A'),('916',3,'CARRASCO DIAZ LUIS ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-10-02','34780.00','A'),('917',3,'VIVALLOS MEDINA LEONEL EDMUNDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2010-09-12','397640.00','A'),('919',3,'LASSE ANDRE BARKLIEN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',286724,'2011-03-31','226390.00','A'),('92',1,'CUERVO CARDENAS ALEJANDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-08','950630.00','A'),('920',3,'BARCELOS PLOTEGHER LILIA MARA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-07','480380.00','A'),('921',1,'JARAMILLO ARANGO JUAN DIEGO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127559,'2011-06-28','722700.00','A'),('93',3,'RUIZ PRIETO WILLIAM','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',131272,'2011-01-19','313540.00','A'),('932',7,'COMFENALCO ANTIOQUIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-05-05','515430.00','A'),('94',1,'GALLEGO JUAN GUILLERMO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-25','715830.00','A'),('944',3,'KARMELIC PAVLOV VESNA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',120066,'2010-08-07','585580.00','A'),('945',3,'RAMIREZ BORDON OSCAR','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-07-02','526250.00','A'),('946',3,'SORACCO CABEZA RODRIGO ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-07-04','874490.00','A'),('949',1,'GALINDO JORGE ERNESTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127300,'2008-07-10','344110.00','A'),('950',3,'DR KNABLE THOMAS ERNST ALBERT','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',256231,'2009-11-17','685430.00','A'),('953',3,'VELASQUEZ JANETH','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-20','404650.00','A'),('954',3,'SOZA REX JOSE FRANCISCO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',150903,'2011-05-26','269790.00','A'),('955',3,'FONTANA GAETE JAIME PATRICIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-01-11','134970.00','A'),('957',3,'PEREZ MARTINEZ GRECIA INDIRA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132958,'2010-08-27','922610.00','A'),('96',1,'FORERO CUBILLOS JORGEARTURO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-25','45020.00','A'),('97',1,'SILVA ACOSTA MARIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-19','309580.00','A'),('978',3,'BLUMENTHAL JAIRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117630,'2010-04-22','653490.00','A'),('984',3,'SUN XIAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-01-17','203630.00','A'),('99',1,'CANO GUZMAN ALEJANDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-23','135620.00','A'),('999',1,' DRAGER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-12-22','882070.00','A'),('CELL1020',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1021',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1083',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1153',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1179',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1183',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL126',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1326',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1329',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL133',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1413',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1426',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1529',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1614',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1651',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1760',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL179',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1857',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1879',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1902',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1921',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1962',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1992',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2006',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL206',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL215',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2187',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2307',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2322',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2497',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2641',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2736',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2805',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL281',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2905',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2963',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3029',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3090',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3161',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3302',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3309',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3325',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3372',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3422',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3514',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3562',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3614',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3652',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3661',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3673',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3789',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3795',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL381',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3840',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3886',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3944',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL396',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL401',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4012',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL411',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4137',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4159',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4183',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4198',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4291',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4308',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4324',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4330',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4334',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4415',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4440',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4547',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4639',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4662',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4698',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL475',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4790',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4838',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4885',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4939',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5064',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5066',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL51',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5102',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5116',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5187',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5192',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5206',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5226',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5250',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5282',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL536',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5401',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5415',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5503',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5506',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL554',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5544',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5595',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5648',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5801',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5821',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6179',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6201',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6277',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6288',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6358',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6369',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6408',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6418',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6425',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6439',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6509',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6533',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6556',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL673',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6731',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6766',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6775',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6802',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6834',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6842',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6890',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6953',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6957',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7024',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7198',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7216',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL728',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7314',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7316',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7418',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7431',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7432',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7513',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7522',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7617',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7623',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7708',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7777',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL787',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7907',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7951',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7956',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8004',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8058',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL811',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8136',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8162',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8187',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8286',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8300',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8316',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8339',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8366',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8389',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8446',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8487',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8546',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8578',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8643',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8774',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8829',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8846',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8942',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9046',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9110',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL917',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9189',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9206',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9241',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9331',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9429',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9434',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9495',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9517',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9558',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9650',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9748',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9830',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9842',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9878',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9893',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9945',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('T-Cx200',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx201',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx202',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx203',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx204',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx205',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx206',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx207',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx208',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx209',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx210',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx211',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx212',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx213',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx214',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'); -/*!40000 ALTER TABLE `personas` ENABLE KEYS */; -UNLOCK TABLES; --- --- Table structure for table `personnes` --- - -DROP TABLE IF EXISTS `personnes`; +drop table if exists `personnes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; -CREATE TABLE `personnes` ( - `cedula` char(15) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, - `tipo_documento_id` int(3) unsigned NOT NULL, - `nombres` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `telefono` varchar(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, - `direccion` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, - `email` varchar(50) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, +create table `personnes` ( + `cedula` char(15) character set utf8 collate utf8_unicode_ci not null, + `tipo_documento_id` int(3) unsigned not null, + `nombres` varchar(100) character set utf8 collate utf8_unicode_ci not null DEFAULT '', + `telefono` varchar(20) character set utf8 collate utf8_unicode_ci default null, + `direccion` varchar(100) character set utf8 collate utf8_unicode_ci default null, + `email` varchar(50) character set utf8 collate utf8_unicode_ci default null, `fecha_nacimiento` date DEFAULT '1970-01-01', `ciudad_id` int(10) unsigned DEFAULT '0', - `creado_at` date DEFAULT NULL, - `cupo` decimal(16,2) NOT NULL, - `estado` enum('A','I','X') CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, - PRIMARY KEY (`cedula`), + `creado_at` date default null, + `cupo` decimal(16,2) not null, + `estado` enum('A','I','X') character set utf8 collate utf8_unicode_ci not null, + primary key (`cedula`), KEY `ciudad_id` (`ciudad_id`), KEY `estado` (`estado`), KEY `cupo` (`cupo`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `personnes` --- - -LOCK TABLES `personnes` WRITE; -/*!40000 ALTER TABLE `personnes` DISABLE KEYS */; INSERT INTO `personnes` VALUES ('1',3,'HUANG ZHENGQUIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-18','6930.00','I'),('100',1,'USME FERNANDEZ JUAN GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-04-15','439480.00','A'),('1003',8,'SINMON PEREZ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-25','468610.00','A'),('1009',8,'ARCINIEGAS Y VILLAMIZAR','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-08-12','967680.00','A'),('101',1,'CRANE DE NARVAEZ JUAN PABLO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-06-09','790540.00','A'),('1011',8,'EL EVENTO','191821112','CRA 25 CALLE 100','596@terra.com.co','2011-02-03',127591,'2011-05-24','820390.00','A'),('1020',7,'OSPINA YOLANDA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-02','222970.00','A'),('1025',7,'CHEMIPLAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-08','918670.00','A'),('1034',1,'TAXI FILMS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-09-01','962580.00','A'),('104',1,'CASTELLANOS JIMENEZ NOE','191821112','CRA 25 CALLE 100','127@yahoo.es','2011-02-03',127591,'2011-10-05','95230.00','A'),('1046',3,'JACQUET PIERRE MICHEL ALAIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',263489,'2011-07-23','90810.00','A'),('1048',5,'SPOERER VELEZ CARLOS JORGE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-02-03','184920.00','A'),('1049',3,'SIDNEI DA SILVA LUIZ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117630,'2011-07-02','850180.00','A'),('105',1,'HERRERA SEQUERA ALVARO FRANCISCO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-26','77390.00','A'),('1050',3,'CAVALCANTI YUE CARLA HANLI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-31','696130.00','A'),('1052',1,'BARRETO RIVAS ELKIN MARTIN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',131508,'2011-09-19','562160.00','A'),('1053',3,'WANDERLEY ANTONIO ERNESTO THOME','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150617,'2011-01-31','20490.00','A'),('1054',3,'HE SHAN','191821112','CRA 25 CALLE 100','715@yahoo.es','2011-02-03',132958,'2010-10-05','415970.00','A'),('1055',3,'ZHRNG XIM','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-05','18380.00','A'),('1057',3,'NICKEL GEB. STUTZ KARIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-10-08','164850.00','A'),('1058',1,'VELEZ PAREJA IGNACIO ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132775,'2011-06-24','292250.00','A'),('1059',3,'GURKE RALF ERNST','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',287570,'2011-06-15','966700.00','A'),('106',1,'ESTRADA LONDOÑO JUAN SIMON','191821112','CRA 25 CALLE 100','8@terra.com.co','2011-02-03',128579,'2011-03-09','101260.00','A'),('1060',1,'MEDRANO BARRIOS WILSON','191821112','CRA 25 CALLE 100','479@facebook.com','2011-02-03',132775,'2011-06-18','956740.00','A'),('1061',1,'GERDTS PORTO HANS EDUARDO','191821112','CRA 25 CALLE 100','140@gmail.com','2011-02-03',127591,'2011-05-09','883590.00','A'),('1062',1,'BORGE VISBAL JORGE FIDEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132775,'2011-07-14','547750.00','A'),('1063',3,'GUTIERREZ JOSELYN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-06','87960.00','A'),('1064',4,'OVIEDO PINZON MARYI YULEY','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127538,'2011-04-21','796560.00','A'),('1065',1,'VILORA SILVA OMAR ESTEBAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',133535,'2010-06-09','718910.00','A'),('1066',3,'AGUIAR ROMAN RODRIGO HUMBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',126674,'2011-06-28','204890.00','A'),('1067',1,'GOMEZ AGAMEZ ADOLFO DEL CRISTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',131105,'2011-06-15','867730.00','A'),('1068',3,'GARRIDO CECILIA','191821112','CRA 25 CALLE 100','973@yahoo.com.mx','2011-02-03',118777,'2010-08-16','723980.00','A'),('1069',1,'JIMENEZ MANJARRES DAVID RAFAEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132775,'2010-12-17','16680.00','A'),('107',1,'ARANGUREN TEJADA JORGE ENRIQUE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-16','274110.00','A'),('1070',3,'OYARZUN TEJEDA ANDRES FERNANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-26','911490.00','A'),('1071',3,'MARIN BUCK RAFAEL ENRIQUE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',126180,'2011-05-04','507400.00','A'),('1072',3,'VARGAS JOSE ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',126674,'2011-07-28','802540.00','A'),('1073',3,'JUEZ JAIRALA JOSE ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',126180,'2010-04-09','490510.00','A'),('1074',1,'APONTE PENSO HERNAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132879,'2011-05-27','44900.00','A'),('1075',1,'PIÑERES BUSTILLO ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',126916,'2008-10-29','752980.00','A'),('1076',1,'OTERA OMA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-04-29','630210.00','A'),('1077',3,'CONTRERAS CHINCHILLA JUAN DOMINGO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',139844,'2011-06-21','892110.00','A'),('1078',1,'GAMBA LAURENCIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-09-15','569940.00','A'),('108',1,'MUÑOZ ARANGO JUAN CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-01','66770.00','A'),('1080',1,'PRADA ABAUZA CARLOS AUGUSTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-11-15','156870.00','A'),('1081',1,'PAOLA CAROLINA PINTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-27','264350.00','A'),('1082',1,'PALOMINO HERNANDEZ GERMAN JAVIER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',133535,'2011-03-22','851120.00','A'),('1084',1,'URIBE DANIEL ALBERTO','191821112','CRA 25 CALLE 100','602@hotmail.es','2011-02-03',127591,'2011-09-07','759470.00','A'),('1085',1,'ARGUELLO CALDERON ARMANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-24','409660.00','A'),('1087',1,'CARVAJAL HERNANDEZ CHRISTIAN ARMANDO','191821112','CRA 25 CALLE 100','296@yahoo.es','2011-02-03',159432,'2011-06-03','620410.00','A'),('1088',1,'CASTRO BLANCO MANUEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',150512,'2009-10-08','792400.00','A'),('1089',1,'RIBEROS GUTIERREZ GUSTAVO ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-01-27','100800.00','A'),('109',1,'BELTRAN MARIA LUZ DARY','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-06','511510.00','A'),('1091',4,'ORTIZ ORTIZ BENIGNO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127538,'2011-08-05','331540.00','A'),('1092',3,'JOHN CHRISTOPHER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-04-08','277320.00','A'),('1093',1,'PARRA VILLAREAL MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',129499,'2011-08-23','391980.00','A'),('1094',1,'BESGA RODRIGUEZ JUAN JAVIER','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127300,'2011-09-23','127960.00','A'),('1095',1,'ZAPATA MEZA EDGAR FERNANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',129499,'2011-05-19','463840.00','A'),('1096',3,'CORNEJO BRAVO MARCO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2010-11-08','935340.00','A'),('1099',1,'GARCIA PORRAS FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-14','243360.00','A'),('11',1,'HERNANDEZ PARDO ARMANDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-31','197540.00','A'),('110',1,'VANEGAS JULIAN ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-09-06','357260.00','A'),('1101',1,'QUINTERO BURBANO GABRIEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',129499,'2011-08-20','57420.00','A'),('1102',1,'BOHORQUEZ AFANADOR CHRISTIAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-19','214610.00','A'),('1103',1,'MORA VARGAS JULIO ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-29','900790.00','A'),('1104',1,'PINEDA JORGE ARMANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-21','860110.00','A'),('1105',1,'TORO CEBALLOS GONZALO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',129499,'2011-08-18','598180.00','A'),('1106',1,'SCHENIDER TORRES JAIME','191821112','CRA 25 CALLE 100','85@yahoo.com.mx','2011-02-03',127799,'2011-08-11','410590.00','A'),('1107',1,'RUEDA VILLAMIZAR JAIME','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-11-15','258410.00','A'),('1108',1,'RUEDA VILLAMIZAR RICARDO JAIME','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',129499,'2011-03-22','60260.00','A'),('1109',1,'GOMEZ RODRIGUEZ HERNANDO ARTURO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-06-02','526080.00','A'),('111',1,'FRANCISCO EDUARDO JAIME BOTERO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-09-09','251770.00','A'),('1110',1,'HERNÁNDEZ MÉNDEZ EDGAR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',129499,'2011-03-22','449610.00','A'),('1113',1,'LEON HERNANDEZ OSCAR','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',129499,'2011-03-21','992090.00','A'),('1114',1,'LIZARAZO CARREÑO HUGO ARCENIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',133535,'2010-12-10','959490.00','A'),('1115',1,'LIAN BARRERA GABRIEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-05-30','821170.00','A'),('1117',3,'TELLEZ BEZAN FRANCISCO JAVIER ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',117002,'2011-08-21','673430.00','A'),('1118',1,'FUENTES ARIZA DIEGO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-09','684970.00','A'),('1119',1,'MOLINA M. ROBINSON','191821112','CRA 25 CALLE 100','728@hotmail.com','2011-02-03',129447,'2010-09-19','404580.00','A'),('112',1,'PTIÑO PINTO ARIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-10-06','187050.00','A'),('1120',1,'ORTIZ DURAN BENIGNO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127538,'2011-08-05','967970.00','A'),('1121',1,'CARVAJAL ALMEIDA LUIS RAUL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',129499,'2011-06-22','626140.00','A'),('1122',1,'TORRES QUIROGA EDWIN SILVESTRE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',129447,'2011-08-17','226780.00','A'),('1123',1,'VIVIESCAS JAIMES ALVARO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-10','255480.00','A'),('1124',1,'MARTINEZ RUEDA JAVIER EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',129447,'2011-06-23','597040.00','A'),('1125',1,'ANAYA FLORES JORGE ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',129499,'2011-06-04','218790.00','A'),('1126',3,'TORRES MARTINEZ ANTONIO JESUS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',188640,'2010-09-02','302820.00','A'),('1127',3,'CACHO LEVISIER JOSE MANUEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',153276,'2009-06-25','857720.00','A'),('1129',3,'ULLOA VALDIVIESO CRISTIAN ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-06-02','327570.00','A'),('113',1,'HIGUERA CALA JAIME ENRIQUE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-27','179950.00','A'),('1130',1,'ARCINIEGAS WILLIAM','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',126892,'2011-08-05','497420.00','A'),('1131',1,'BAZA ACUÑA JAVIER','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',129447,'2010-12-10','504410.00','A'),('1132',3,'BUIRA ROS CARLOS MARIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-04-27','29750.00','A'),('1133',1,'RODRIGUEZ JAIME','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',129447,'2011-06-10','635560.00','A'),('1134',1,'QUIROGA PEREZ NELSON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',129447,'2011-05-18','88520.00','A'),('1135',1,'TATIANA AYALA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127122,'2011-07-01','535920.00','A'),('1136',1,'OSORIO BENEDETTI FABIAN AUGUSTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132775,'2010-10-23','414060.00','A'),('1139',1,'CELIS PINTO ARMANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2009-02-25','964970.00','A'),('114',1,'VALDERRAMA CUERVO JOSE IGNACIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-02','338590.00','A'),('1140',1,'ORTIZ ARENAS JUAN MANUEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',129499,'2009-10-21','613300.00','A'),('1141',1,'VALDIVIESO ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',134022,'2009-01-13','171590.00','A'),('1144',1,'LOPEZ CASTILLO NELSON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',129499,'2010-09-09','823110.00','A'),('1145',1,'CAVELIER LUIS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',126916,'2008-11-29','389220.00','A'),('1146',1,'CAVELIER OTOYA LUIS EDURDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',126916,'2010-05-25','476770.00','A'),('1147',1,'GARCIA RUEDA JUAN CARLOS','191821112','CRA 25 CALLE 100','111@yahoo.es','2011-02-03',133535,'2010-09-12','216190.00','A'),('1148',1,'LADINO GOMEZ OMAR ORLANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-02','650640.00','A'),('1149',1,'CARREÑO ORTIZ OSCAR JAVIER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-15','604630.00','A'),('115',1,'NARDEI BONILLO BRUNO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-16','153110.00','A'),('1150',1,'MONTOYA BOZZI MAURICIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',129499,'2011-05-12','71240.00','A'),('1152',1,'LORA RICHARD JAVIER','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-09-15','497700.00','A'),('1153',1,'SILVA PINZON MARCO ANTONIO','191821112','CRA 25 CALLE 100','915@hotmail.es','2011-02-03',127591,'2011-06-15','861670.00','A'),('1154',3,'GEORGE J A KHALILIEH','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-20','815260.00','A'),('1155',3,'CHACON MARIN CARLOS MANUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-07-26','491280.00','A'),('1156',3,'OCHOA CHEHAB XAVIER ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',126180,'2011-06-13','10630.00','A'),('1157',3,'ARAYA GARRI GABRIEL ALEXIS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-09-19','579320.00','A'),('1158',3,'MACCHI ARIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',116366,'2010-04-12','864690.00','A'),('116',1,'GONZALEZ FANDIÑO JAIME EDUARDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-10','749800.00','A'),('1160',1,'CAVALIER LUIS EDUARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',126916,'2009-08-27','333390.00','A'),('1161',3,'DOMINGUEZ DE OBREGON ILEANA DEL CARMEN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',139844,'2011-03-06','910490.00','A'),('1162',2,'FALASCA CLAUDIO ARIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',116511,'2011-07-10','552280.00','A'),('1163',3,'MUTABARUKA PATRICK','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',131352,'2011-03-22','29940.00','A'),('1164',1,'DOMINGUEZ ATENCIA JIMMY CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-07-22','492860.00','A'),('1165',4,'LLANO GONZALEZ ALBERTO MARIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127300,'2010-08-21','374490.00','A'),('1166',3,'LOPEZ ROLDAN JOSE MANUEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-07-31','393860.00','A'),('1167',1,'GUTIERREZ DE PIÑERES JALILIE ARISTIDES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2010-12-09','845810.00','A'),('1168',1,'HEYMANS PIERRE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2010-11-08','47470.00','A'),('1169',1,'BOTERO OSORIO RUBEN DARIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2009-05-27','699940.00','A'),('1170',3,'GARNHAM POBLETE ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',116396,'2011-03-27','357270.00','A'),('1172',1,'DAJUD DURAN JOSE RODRIGO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',133535,'2009-12-02','360910.00','A'),('1173',1,'MARTINEZ MERCADO PEDRO PABLO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-07-25','744930.00','A'),('1174',1,'GARCIA AMADOR ANDRES EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',133535,'2011-05-19','641930.00','A'),('1176',1,'VARGAS VARELA LUIS GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',131568,'2011-08-30','948410.00','A'),('1178',1,'GUTIERRES DE PIÑERES ARISTIDES','191821112','CRA 25 CALLE 100','217@hotmail.com','2011-02-03',133535,'2011-05-10','242490.00','A'),('1179',3,'LEIZAOLA POZO JIMENA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',132958,'2011-08-01','759800.00','A'),('118',1,'FERNANDEZ VELOSO PEDRO HERNANDO','191821112','CRA 25 CALLE 100','452@hotmail.es','2011-02-03',128662,'2010-08-06','198830.00','A'),('1180',3,'MARINO PAOLO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-12-24','71520.00','A'),('1181',1,'MOLINA VIZCAINO GUSTAVO JORGE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-04-28','78220.00','A'),('1182',3,'MEDEL GARCIA FABIAN RODRIGO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-04-25','176540.00','A'),('1183',1,'LESMES ARIAS RUBEN DARIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2010-09-09','648020.00','A'),('1184',1,'ALCALA MARTINEZ ALFREDO ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',132775,'2010-07-23','710470.00','A'),('1186',1,'LLAMAS FOLIACO LUIS ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-07','910210.00','A'),('1187',1,'GUARDO DEL RIO LIBARDO FARID','191821112','CRA 25 CALLE 100','73@yahoo.com.mx','2011-02-03',128662,'2011-09-01','726050.00','A'),('1188',3,'JEFFREY ARTHUR DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',115724,'2011-03-21','899630.00','A'),('1189',1,'DAHL VELEZ JULIANA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',126916,'2011-05-23','320020.00','A'),('119',3,'WALESKA DE LIMA ALMEIDA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118942,'2011-05-09','125240.00','A'),('1190',3,'LUIS JOSE MANUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2008-04-04','901210.00','A'),('1192',1,'AZUERO VALENTINA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-14','26310.00','A'),('1193',1,'MARQUEZ GALINDO MAURICIO JAVIER','191821112','CRA 25 CALLE 100','729@yahoo.es','2011-02-03',131105,'2011-05-13','493560.00','A'),('1195',1,'NIETO FRANCO JUAN FELIPE','191821112','CRA 25 CALLE 100','707@yahoo.com','2011-02-03',127591,'2011-07-30','463790.00','A'),('1196',3,'ESTEVES JOAQUIM LUIS FERNANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-04-05','152270.00','A'),('1197',4,'BARRERO KAREN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-12','369990.00','A'),('1198',1,'CORRALES GUZMAN DELIO ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127689,'2011-08-03','393120.00','A'),('1199',1,'CUELLAR TOCO EDGAR','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127531,'2011-09-20','855640.00','A'),('12',1,'MARIN PRIETO FREDY NELSON ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-23','641210.00','A'),('120',1,'LOPEZ JARAMILLO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2009-04-17','29680.00','A'),('1200',3,'SCHULTER ACHIM','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',291002,'2010-05-21','98860.00','A'),('1201',3,'HOWELL LAURENCE ADRIAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',286785,'2011-05-22','927350.00','A'),('1202',3,'ALCAZAR ESCARATE JAIME PATRICIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117002,'2011-08-25','340160.00','A'),('1203',3,'HIDALGO FUENZALIDA GABRIEL RAUL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-05-03','918780.00','A'),('1206',1,'VANEGAS HENAO ORLANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-27','832910.00','A'),('1207',1,'PEÑARANDA ARIAS RICARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-19','832710.00','A'),('1209',1,'LEZAMA CERVERA JUAN CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132775,'2011-09-14','825980.00','A'),('121',1,'PULIDO JIMENEZ OSCAR HUMBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-29','772700.00','A'),('1211',1,'TRUJILLO BOCANEGRA HAROL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127538,'2011-05-27','199260.00','A'),('1212',1,'ALVAREZ TORRES MARIO RICARDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-08-15','589960.00','A'),('1213',1,'CORRALES VARON BELMER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-26','352030.00','A'),('1214',3,'CUEVAS RODRIGUEZ MANUELA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-30','990250.00','A'),('1216',1,'LOPEZ EDICSON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-31','505210.00','A'),('1217',3,'GARCIA PALOMARES JUAN JAVIER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-07-31','840440.00','A'),('1218',1,'ARCINIEGAS NARANJO RICARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127492,'2010-12-17','686610.00','A'),('122',1,'GONZALEZ RIANO LEONARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128031,'2011-08-05','774450.00','A'),('1220',1,'GARCIA GUTIERREZ WILLIAM','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-06-20','498680.00','A'),('1221',3,'GOMEZ DE ALONSO ANGELA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-27','758300.00','A'),('1222',1,'MEDINA QUIROGA JAMES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127538,'2011-01-16','295480.00','A'),('1224',1,'ARCILA CORREA JUAN CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-03-20','125900.00','A'),('1225',1,'QUIJANO REYES CARLOS ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127538,'2010-04-08','22100.00','A'),('1226',1,'VARGAS GALLEGO JAIRO ALONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2009-07-30','732820.00','A'),('1228',3,'NAPANGA MIRENGHI MARTIN','191821112','CRA 25 CALLE 100','153@yahoo.es','2011-02-03',132958,'2011-02-08','790400.00','A'),('123',1,'LAMUS CASTELLANOS ANDRES RICARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-11','554160.00','A'),('1230',1,'RIVEROS PIÑEROS JOSE ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127492,'2011-09-25','422220.00','A'),('1231',3,'ESSER JUAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127327,'2011-04-01','635060.00','A'),('1232',3,'DOMINGUEZ MORA MAURICIO ALFREDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-22','908630.00','A'),('1233',3,'MOLINA FERNANDEZ FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-05-28','637990.00','A'),('1234',3,'BELLO DANIEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',196234,'2010-09-04','464040.00','A'),('1235',3,'BENADAVA GUEVARA DAVID ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-05-18','406240.00','A'),('1236',3,'RODRIGUEZ MATOS ROBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-03-22','639070.00','A'),('1237',3,'TAPIA ALARCON PATRICIO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2010-07-06','976620.00','A'),('1239',3,'VERCHERE ALFONSO CHRISTIAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',117002,'2010-08-23','899600.00','A'),('1241',1,'ESPINEL LUIS FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128206,'2009-03-09','302860.00','A'),('1242',3,'VERGARA FERREIRA PATRICIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-10-03','713310.00','A'),('1243',3,'ZUMARRAGA SIRVENT CRSTINA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-08-24','657950.00','A'),('1244',4,'ESCORCIA VASQUEZ TOMAS','191821112','CRA 25 CALLE 100','354@yahoo.com.mx','2011-02-03',128662,'2011-04-01','149830.00','A'),('1245',4,'PARAMO CUENCA KELLY LORENA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127492,'2011-05-04','775300.00','A'),('1246',4,'PEREZ LOPEZ VERONICA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2011-07-11','426990.00','A'),('1247',4,'CHAPARRO RODRIGUEZ DANIELA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-10-08','809070.00','A'),('1249',4,'DIAZ MARTINEZ MARIA CAROLINA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',133535,'2011-05-30','394740.00','A'),('125',1,'CALDON RODRIGUEZ JAIME ARIEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',126968,'2011-07-29','574780.00','A'),('1250',4,'PINEDA VASQUEZ JUAN PABLO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2010-09-03','680540.00','A'),('1251',5,'MATIZ URIBE ANGELA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-12-25','218470.00','A'),('1253',1,'ZAMUDIO RICAURTE JAIRO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',126892,'2011-08-05','598160.00','A'),('1254',1,'ALJURE FRANCISCO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-07-21','838660.00','A'),('1255',3,'ARMESTO AIRA ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',196234,'2011-01-29','398840.00','A'),('1257',1,'POTES GUEVARA JAIRO MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127858,'2011-03-17','194580.00','A'),('1258',1,'BURBANO QUIROGA RAFAEL','191821112','CRA 25 CALLE 100','767@facebook.com','2011-02-03',127591,'2011-04-07','538220.00','A'),('1259',1,'CARDONA GOMEZ JAVIR','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2011-03-16','107380.00','A'),('126',1,'PULIDO PARDO GUIDO IVAN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-10-05','531550.00','A'),('1260',1,'LOPERA LEDESMA PABLO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2011-09-19','922240.00','A'),('1263',1,'TRIBIN BARRIGA JUAN MANUEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2011-09-02','525330.00','A'),('1264',1,'NAVIA LOPEZ ANDRÉS FELIPE ','191821112','CRA 25 CALLE 100','353@hotmail.es','2011-02-03',127300,'2011-07-15','591190.00','A'),('1265',1,'CARDONA GOMEZ FABIAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2010-11-18','379940.00','A'),('1266',1,'ESCARRIA VILLEGAS ANDRES JULIAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-08-19','126160.00','A'),('1268',1,'CASTRO HERNANDEZ ALVARO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127300,'2011-03-25','76260.00','A'),('127',1,'RODRIGUEZ RODRIGUEZ GIOVANI FRANCISCO','191821112','CRA 25 CALLE 100','662@hotmail.es','2011-02-03',127591,'2011-09-29','933390.00','A'),('1270',1,'LEAL HERNANDEZ MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-24','313610.00','A'),('1272',1,'ORTIZ CARDONA WILLIAM ENRIQUE','191821112','CRA 25 CALLE 100','914@hotmail.com','2011-02-03',128662,'2011-09-13','272150.00','A'),('1273',1,'ROMERO VAN GOMPEL HERNAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-09-07','832960.00','A'),('1274',1,'BERMUDEZ LONDOÑO JHON FREDY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127300,'2011-08-29','348380.00','A'),('1275',1,'URREA ALVAREZ NICOLAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-01','242980.00','A'),('1276',1,'VALENCIA LLANOS RODRIGO AUGUSTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-04-11','169790.00','A'),('1277',1,'PAZ VALENCIA GUILLERMO ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127300,'2011-08-05','120020.00','A'),('1278',1,'MONROY CORREDOR GERARDO ALONSO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127300,'2011-06-25','90700.00','A'),('1279',1,'RIOS MEDINA JAVIER ERMINSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2011-09-12','93440.00','A'),('128',1,'GALLEGO GUZMAN MARIO ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-06-25','72290.00','A'),('1280',1,'GARCIA OSCAR EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127662,'2011-09-30','195090.00','A'),('1282',1,'MURILLO PESELLIN GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2011-06-15','890530.00','A'),('1284',1,'DIAZ ALVAREZ JOHNY','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2011-06-25','164130.00','A'),('1285',1,'GARCES BELTRAN RAUL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2011-08-11','719220.00','A'),('1286',1,'MATERON POVEDA LUIS ALEJANDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-25','103710.00','A'),('1287',1,'VALENCIA ALEXANDER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-10-23','360880.00','A'),('1288',1,'PEÑA AGUDELO JOSE RAMON','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',134022,'2011-05-25','493280.00','A'),('1289',1,'CORREA NUÑEZ JORGE ALEXANDER','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-08-18','383750.00','A'),('129',1,'ALVAREZ RODRIGUEZ IVAN RICARDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2008-01-28','561290.00','A'),('1291',1,'BEJARANO ROSERO FREDDY ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-10-09','43400.00','A'),('1292',1,'CASTILLO BARRIOS GUSTAVO ADOLFO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127300,'2011-06-17','900180.00','A'),('1296',1,'GALVEZ GUTIERREZ JUAN PABLO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127300,'2010-03-28','807090.00','A'),('1297',3,'CRUZ GARCIA MILTON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',139844,'2011-03-21','75630.00','A'),('1298',1,'VILLEGAS GUTIERREZ JOSE RICARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-11','956860.00','A'),('13',1,'VACA MURCIA JESUS ALFREDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-04','613430.00','A'),('1301',3,'BOTTI ALFONSO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',231989,'2011-04-04','910640.00','A'),('1302',3,'COTINO HUESO LORENZO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-02-02','803450.00','A'),('1304',3,'NESPOLI MANTOVANI LUIZ CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-04-18','16230.00','A'),('1307',4,'AVILA GIL PAULA ANDREA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-19','711110.00','A'),('1308',4,'VALLEJO PINEDA ALEJANDRA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-08-12','323490.00','A'),('1312',1,'ROMERO OSCAR EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-04-17','642460.00','A'),('1314',3,'LULLIES CONSTANZE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',245206,'2010-06-03','154970.00','A'),('1315',1,'CHAPARRO GUTIERREZ JORGE ADRIANO','191821112','CRA 25 CALLE 100','284@hotmail.es','2011-02-03',127591,'2010-12-02','325440.00','A'),('1316',1,'BARRANTES DISI RICARDO JOSE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132879,'2011-07-18','162270.00','A'),('1317',3,'VERDES GAGO JOSE ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2010-03-10','835060.00','A'),('1319',3,'MARTIN MARTINEZ GUSTAVO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2010-05-26','937220.00','A'),('1320',3,'MOTTURA MASSIMO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2008-11-10','620640.00','A'),('1321',3,'RUSSELL TIMOTHY JAMES','191821112','CRA 25 CALLE 100','502@hotmail.es','2011-02-03',145135,'2010-04-16','291560.00','A'),('1322',3,'JAIN TARSEM','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',190393,'2011-05-31','595890.00','A'),('1323',3,'ORTEGA CEVALLOS JULIETA ELIZABETH','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-30','104760.00','A'),('1324',3,'MULLER PICHAIDA ANDRES FELIPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-05-17','736130.00','A'),('1325',3,'ALVEAR TELLEZ JULIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-01-23','366390.00','A'),('1327',3,'MOYA LATORRE MARCELA CAROLINA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-05-17','18520.00','A'),('1328',3,'LAMA ZAROR RODRIGO IGNACIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2010-10-27','221990.00','A'),('1329',3,'HERNANDEZ CIFUENTES MAURICE JEANETTE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',139844,'2011-06-22','54410.00','A'),('133',1,'CORDOBA HOYOS JUAN PABLO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-20','966820.00','A'),('1330',2,'HOCHKOFLER NOEMI CONSUELO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-27','606070.00','A'),('1331',4,'RAMIREZ BARRERO DANIELA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',154563,'2011-04-18','867120.00','A'),('1332',4,'DE LEON DURANGO RICARDO JOSE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',131105,'2011-09-08','517400.00','A'),('1333',4,'RODRIGUEZ MACIAS IVAN MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',129447,'2011-05-23','985620.00','A'),('1334',4,'GUTIERREZ DE PIÑERES YANET MARIA ALEJANDRA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',133535,'2011-06-16','375890.00','A'),('1335',4,'GUTIERREZ DE PIÑERES YANET MARIA GABRIELA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-06-16','922600.00','A'),('1336',4,'CABRALES BECHARA JOSE MARIA','191821112','CRA 25 CALLE 100','708@hotmail.com','2011-02-03',131105,'2011-05-13','485330.00','A'),('1337',4,'MEJIA TOBON LUIS DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127662,'2011-08-05','658860.00','A'),('1338',3,'OROS NERCELLES CRISTIAN ANDRE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',144215,'2011-04-26','838310.00','A'),('1339',3,'MORENO BRAVO CAROLINA ANDREA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',190393,'2010-12-08','214950.00','A'),('134',1,'GONZALEZ LOPEZ DANIEL ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-08','178580.00','A'),('1340',3,'FERNANDEZ GARRIDO MARCELO FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-07-08','559820.00','A'),('1342',3,'SUMEGI IMRE ZOLTAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-16','91750.00','A'),('1343',3,'CALDERON FLANDEZ SERGIO','191821112','CRA 25 CALLE 100','108@hotmail.com','2011-02-03',117002,'2010-12-12','996030.00','A'),('1345',3,'CARBONELL ATCHUGARRY GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',116366,'2010-04-12','536390.00','A'),('1346',3,'MONTEALEGRE AGUILAR FEDERICO ','191821112','CRA 25 CALLE 100','448@yahoo.es','2011-02-03',132165,'2011-08-08','567260.00','A'),('1347',1,'HERNANDEZ MANCHEGO CARLOS JULIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-04-28','227130.00','A'),('1348',1,'ARENAS ZARATE FERNEY ARNULFO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127963,'2011-03-26','433860.00','A'),('1349',3,'DELFIM DINIZ PASSOS PINHEIRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',110784,'2010-04-17','487930.00','A'),('135',1,'GARCIA SIMBAQUEBA RUBEN DARIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-25','992420.00','A'),('1350',3,'BRAUN VALENZUELA FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-29','138050.00','A'),('1351',3,'LEVIN FIORELLI ANDRES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',116366,'2011-04-10','226470.00','A'),('1353',3,'BALTODANO ESQUIVEL LAURA CRISTINA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132165,'2011-08-01','911660.00','A'),('1354',4,'ESCOBAR YEPES ANDREA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-05-19','403630.00','A'),('1356',1,'GAGELI OSORIO ALEJANDRO','191821112','CRA 25 CALLE 100','228@yahoo.com.mx','2011-02-03',128662,'2011-07-14','205070.00','A'),('1357',3,'CABAL ALVAREZ RUBEN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-08-14','175770.00','A'),('1359',4,'HUERFANO JUAN DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-04','790970.00','A'),('136',1,'OSORIO RAMIREZ LEONARDO','191821112','CRA 25 CALLE 100','686@yahoo.es','2011-02-03',128662,'2010-05-14','426380.00','A'),('1360',4,'RAMON GARCIA MARIA PAULA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-01','163890.00','A'),('1362',30,'ALVAREZ CLAVIO CARLA ALEJANDRA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127203,'2011-04-18','741020.00','A'),('1363',3,'SERRA DURAN GERARDO ENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-08-03','365490.00','A'),('1364',3,'NORIEGA VALVERDE SILVIA MARCELA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132775,'2011-02-27','604370.00','A'),('1366',1,'JARAMILLO LOPEZ ALEJANDRO','191821112','CRA 25 CALLE 100','269@terra.com.co','2011-02-03',127559,'2010-11-08','813800.00','A'),('1367',1,'MAZO ROLDAN CARLOS ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-05-04','292880.00','A'),('1368',1,'MURIEL ARCILA MAURICIO HERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-29','22970.00','A'),('1369',1,'RAMIREZ CARLOS FERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-14','236230.00','A'),('137',1,'LUNA PEREZ JUAN PABLO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',126881,'2011-08-05','154640.00','A'),('1370',1,'GARCIA GRAJALES PEDRO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128166,'2011-10-09','112230.00','A'),('1372',3,'GARCIA ESCOBAR ANA MARIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2011-03-29','925670.00','A'),('1373',3,'ALVES DIAS CARLOS AUGUSTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-07','70940.00','A'),('1374',3,'MATTOS CHRISTIANE GARCIA CID','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',183024,'2010-08-25','577700.00','A'),('1376',1,'CARVAJAL ROJAS ORLANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-10','645240.00','A'),('1377',3,'MADARIAGA CADIZ CLAUDIO CRISTIAN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2011-10-04','199200.00','A'),('1379',3,'MARIN YANEZ ALICIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-02-20','703870.00','A'),('138',1,'DIAZ AVENDAÑO MARCELO IVAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-22','494080.00','A'),('1381',3,'COSTA VILLEGAS LUIS ALEJANDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117002,'2011-08-21','580670.00','A'),('1382',3,'DAZA PEREZ JOSE LUIS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',122035,'2009-02-23','888000.00','A'),('1385',4,'RIVEROS ARIAS MARIA ALEJANDRA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127492,'2011-09-26','35710.00','A'),('1386',30,'TORO GIRALDO MATEO','191821112','CRA 25 CALLE 100','433@yahoo.com.mx','2011-02-03',127591,'2011-07-17','700730.00','A'),('1387',4,'ROJAS YARA LAURA DANIELA MARIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-31','396530.00','A'),('1388',3,'GALLEGO RODRIGO MARIA PILAR','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2009-04-19','880450.00','A'),('1389',1,'PANTOJA VELASQUEZ JOSE ARMANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127300,'2011-08-05','212660.00','A'),('139',1,'FRANCO GOMEZ HERNÁN EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-01-19','6450.00','A'),('1390',3,'VAN DEN BORNE KEES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2010-01-28','421930.00','A'),('1391',3,'MONDRAGON FLORES JUAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-08-22','471700.00','A'),('1392',3,'BAGELLA MICHELE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-07-27','92720.00','A'),('1393',3,'BISTIANCIC MACHADO ANA INES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',116366,'2010-08-02','48490.00','A'),('1394',3,'BAÑADOS ORTIZ MARIA PILAR','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-08-25','964280.00','A'),('1395',1,'CHINDOY CHINDOY HERNANDO','191821112','CRA 25 CALLE 100','107@terra.com.co','2011-02-03',126892,'2011-08-25','675920.00','A'),('1396',3,'SOTO NUÑEZ ANDRES ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-10-02','486760.00','A'),('1397',1,'DELGADO MARTINEZ LORGE ELIAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-23','406040.00','A'),('1398',1,'LEON GUEVARA JAVIER ANIBAL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',126892,'2011-09-08','569930.00','A'),('1399',1,'ZARAMA BASTIDAS LUIS GABRIEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',126892,'2011-08-05','631540.00','A'),('14',1,'MAGUIN HENNSSEY LUIS FERNANDO','191821112','CRA 25 CALLE 100','714@gmail.com','2011-02-03',127591,'2011-07-11','143540.00','A'),('140',1,'CARRANZA CUY ALEXANDER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-25','550010.00','A'),('1401',3,'REYNA CASTORENA JOSE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',189815,'2011-08-29','344970.00','A'),('1402',1,'GFALLO BOTERO SERGIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-07-14','381100.00','A'),('1403',1,'ARANGO ARAQUE JUAN CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-05-04','870590.00','A'),('1404',3,'LASSNER NORBERTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118942,'2010-02-28','209650.00','A'),('1405',1,'DURANGO MARIN HECTOR LEON','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'1970-02-02','436480.00','A'),('1407',1,'FRANCO CASTAÑO DIEGO MAURICIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-06-28','457770.00','A'),('1408',1,'HERNANDEZ SERGIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-05-29','628550.00','A'),('1409',1,'CASTAÑO DUQUE CARLOS HUGO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-03-23','769410.00','A'),('141',1,'CHAMORRO CHEDRAUI SERGIO ALBERTO','191821112','CRA 25 CALLE 100','922@yahoo.com.mx','2011-02-03',127591,'2011-05-07','730720.00','A'),('1411',1,'RAMIREZ MONTOYA ADAMO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-04-13','498880.00','A'),('1412',1,'GONZALEZ BENJUMEA OSCAR HUMBERTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-11-01','610150.00','A'),('1413',1,'ARANGO ACEVEDO WALTER ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-10-07','554090.00','A'),('1414',1,'ARANGO GALLO HUMBERTO LEON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-02-25','940010.00','A'),('1415',1,'VELASQUEZ LUIS GONZALO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-07-06','37760.00','A'),('1416',1,'MIRA AGUILAR FRANCISCO ALEJANDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-30','368790.00','A'),('1417',1,'RIVERA ARISTIZABAL CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-03-02','730670.00','A'),('1418',1,'ARISTIZABAL ROLDAN ANDRES RICARDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-02','546960.00','A'),('142',1,'LOPEZ ZULETA MAURICIO ALEXANDER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-01','3550.00','A'),('1420',1,'ESCORCIA ARAMBURO JUAN MARIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-04-01','73100.00','A'),('1421',1,'CORREA PARRA RICARDO ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-08-05','737110.00','A'),('1422',1,'RESTREPO NARANJO DANIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-09-15','466240.00','A'),('1423',1,'VELASQUEZ CARLOS JUAN','191821112','CRA 25 CALLE 100','123@yahoo.com','2011-02-03',128662,'2010-06-09','119880.00','A'),('1424',1,'MACIA GONZALEZ ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2010-11-12','200690.00','A'),('1425',1,'BERRIO MEJIA HELBER ANTONIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2010-06-04','643800.00','A'),('1427',1,'GOMEZ GUTIERREZ CARLOS ARIEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-09-08','153320.00','A'),('1428',1,'RESTREPO LOPEZ JOSE ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-12','915770.00','A'),('1429',1,'BARTH TOBAR LUIS FERNANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-02-23','118900.00','A'),('143',1,'MUNERA BEDIYA JUAN CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-09-21','825600.00','A'),('1430',1,'JIMENEZ VELEZ ANDRES EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-02-26','847160.00','A'),('1431',1,'TAKAHASHI GAVIRIA NICOLAS KEIICHIRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-13','879120.00','A'),('1432',1,'ESCOBAR JARAMILLO ESTEBAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2010-06-10','854110.00','A'),('1433',1,'PALACIO NAVARRO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-08-18','633200.00','A'),('1434',1,'LONDOÑO MUÑOZ ADOLFO LEON','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-09-14','603670.00','A'),('1435',1,'PULGARIN JAIME ANDRES','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2009-11-01','118730.00','A'),('1436',1,'FERRERA ZULUAGA LUIS FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-07-10','782630.00','A'),('1437',1,'VASQUEZ VELEZ HABACUC','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-27','557000.00','A'),('1438',1,'HENAO PALOMINO DIEGO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2009-05-06','437080.00','A'),('1439',1,'HURTADO URIBE JUAN GONZALO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-01-11','514400.00','A'),('144',1,'ALDANA RODOLFO AUGUSTO','191821112','CRA 25 CALLE 100','838@yahoo.es','2011-02-03',127591,'2011-08-07','117350.00','A'),('1441',1,'URIBE DANIEL ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',133535,'2010-11-19','760610.00','A'),('1442',1,'PINEDA GALIANO JUAN CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-07-29','20770.00','A'),('1443',1,'DUQUE BETANCOURT FABIO LEON','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-11-26','822030.00','A'),('1444',1,'JARAMILLO TORO HERNAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-04-27','47830.00','A'),('145',1,'VASQUEZ ZAPATA JUAN CARLOS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-09','109940.00','A'),('1450',1,'TOBON FRANCO MARCO ANTONIO','191821112','CRA 25 CALLE 100','545@facebook.com','2011-02-03',127591,'2011-05-03','889540.00','A'),('1454',1,'LOTERO PAVAS CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-05-28','646750.00','A'),('1455',1,'ESTRADA HENAO JAVIER ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128569,'2009-09-07','215460.00','A'),('1456',1,'VALDERRAMA MAXIMILIANO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-23','137030.00','A'),('1457',3,'ESTRADA ALVAREZ GONZALO ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',154903,'2011-05-02','38790.00','A'),('1458',1,'PAUCAR VALLEJO JAIRO ALONSO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-10-15','782860.00','A'),('1459',1,'RESTREPO GIRALDO JHON DARIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-04-04','797930.00','A'),('146',1,'BAQUERO FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2010-03-03','197650.00','A'),('1460',1,'RESTREPO DOMINGUEZ GUSTAVO ADOLFO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2009-05-18','641050.00','A'),('1461',1,'YANOVICH JACKY','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-08-21','811470.00','A'),('1462',1,'HINCAPIE ROLDAN JOSE ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-08-27','134200.00','A'),('1463',3,'ZEA JORGE OLIVER','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',150699,'2011-03-12','236610.00','A'),('1464',1,'OSCAR MAURICIO ECHAVARRIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-11-24','780440.00','A'),('1465',1,'COSSIO GIL JOSE ALEXANDER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-10-01','192380.00','A'),('1466',1,'GOMEZ CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-03-01','620580.00','A'),('1467',1,'VILLALOBOS OCHOA ANDRES GABRIEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-08-18','525740.00','A'),('1470',1,'GARCIA GONZALEZ DAVID DARIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-09-17','986990.00','A'),('1471',1,'RAMIREZ RESTREPO ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-04-03','162250.00','A'),('1472',1,'VASQUEZ GUTIERREZ JUAN ANDRES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-05','850280.00','A'),('1474',1,'ESCOBAR ARANGO DAVID','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2010-11-01','272460.00','A'),('1475',1,'MEJIA TORO JUAN DAVID','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-05-02','68320.00','A'),('1477',1,'ESCOBAR GOMEZ JUAN MANUEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127848,'2011-05-15','416150.00','A'),('1478',1,'BETANCUR WILSON','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2008-02-09','508060.00','A'),('1479',3,'ROMERO ARRAU GONZALO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-10','291880.00','A'),('148',1,'REINA MORENO MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-08','699240.00','A'),('1480',1,'CASTAÑO OSORIO JORGE ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127662,'2011-09-20','935200.00','A'),('1482',1,'LOPEZ LOPERA ROBINSON FREDY','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-09-02','196280.00','A'),('1484',1,'HERNAN DARIO RENDON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-03-18','312520.00','A'),('1485',1,'MARTINEZ ARBOLEDA MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2010-11-03','821760.00','A'),('1486',1,'RODRIGUEZ MORA CARLOS MORA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-09-16','171270.00','A'),('1487',1,'PENAGOS VASQUEZ JOSE DOMINGO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-09-06','391080.00','A'),('1488',1,'UERRA MEJIA DIEGO LEON','191821112','CRA 25 CALLE 100','704@hotmail.com','2011-02-03',144086,'2011-08-06','441570.00','A'),('1491',1,'QUINTERO GUTIERREZ ABEL PASTOR','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2009-11-16','138100.00','A'),('1492',1,'ALARCON YEPES IVAN DARIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',150699,'2010-05-03','145330.00','A'),('1494',1,'HERNANDEZ VALLEJO ANDRES MAURICIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-09','125770.00','A'),('1495',1,'MONTOYA MORENO LUIS MIGUEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-11-09','691770.00','A'),('1497',1,'BARRERA CARLOS ANDRES','191821112','CRA 25 CALLE 100','62@yahoo.es','2011-02-03',127591,'2010-08-24','332550.00','A'),('1498',1,'ARROYAVE FERNANDEZ PABLO EMILIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-05-12','418030.00','A'),('1499',1,'GOMEZ ANGEL FELIPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-05-03','92480.00','A'),('15',1,'AMSILI COHEN JOSEPH','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-07','877400.00','A'),('150',3,'ARDILA GUTIERREZ DANIEL MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-12','506760.00','A'),('1500',1,'GONZALEZ DUQUE PABLO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-04-13','208330.00','A'),('1502',1,'MEJIA BUSTAMANTE JUAN FELIPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-08-09','196000.00','A'),('1506',1,'SUAREZ MONTOYA JUAN PABLO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128569,'2011-09-13','368250.00','A'),('1508',1,'ALVAREZ GONZALEZ JUAN PABLO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-02-15','355190.00','A'),('1509',1,'NIETO CORREA ANDRES FELIPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-03-31','899980.00','A'),('1511',1,'HERNANDEZ GRANADOS JHONATHAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-08-30','471720.00','A'),('1512',1,'CARDONA ALVAREZ DEIBY','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2010-10-05','55590.00','A'),('1513',1,'TORRES MARULANDA JUAN ESTEBAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2010-10-20','862820.00','A'),('1514',1,'RAMIREZ RAMIREZ JHON JAIRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-05-11','147310.00','A'),('1515',1,'MONDRAGON TORO NICOLAS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-01-19','148100.00','A'),('1517',3,'SUIDA DIETER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2008-07-21','48580.00','A'),('1518',3,'LEFTWICH ANDREW PAUL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',211610,'2011-06-07','347170.00','A'),('1519',3,'RENTON ANDREW GEORGE PATRICK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',269033,'2010-12-11','590120.00','A'),('152',1,'BUSTOS MONZON CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-22','335160.00','A'),('1521',3,'JOSE CUSTODIO DO ALTISSIMO NETONETO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',119814,'2011-04-28','775000.00','A'),('1522',3,'GUARACI FRANCO DE PAIVA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',119167,'2011-04-28','147770.00','A'),('1525',4,'MORENO TENORIO MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-20','888750.00','A'),('1527',1,'VELASQUEZ HERNANDEZ JHON EDUARSON','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-07-19','161270.00','A'),('1528',4,'VANEGAS ALEJANDRA','191821112','CRA 25 CALLE 100','185@yahoo.com','2011-02-03',127591,'2011-06-20','109830.00','A'),('1529',3,'BARBABE CLAIRE LAURENCE ANNICK','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-04','65330.00','A'),('153',1,'GONZALEZ TORREZ MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-01','762560.00','A'),('1530',3,'COREA MARTINEZ GUILLERMO JOSE ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',135360,'2011-09-25','997190.00','A'),('1531',3,'PACHECO RODRIGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117002,'2010-03-08','789960.00','A'),('1532',3,'WELCH RICHARD WILLIAM','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',190393,'2010-10-04','958210.00','A'),('1533',3,'FOREMAN CAROLYN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',107159,'2011-05-23','421200.00','A'),('1535',3,'ZAGAL SOTO CLAUDIA PAZ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2008-05-16','893130.00','A'),('1536',3,'ZAGAL SOTO CLAUDIA PAZ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-10-08','771600.00','A'),('1538',3,'BLANCO RODRIGUEZ JUAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',197162,'2011-04-02','578250.00','A'),('154',1,'HENDEZ PUERTO JAVIER ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-25','807310.00','A'),('1540',3,'CONTRERAS BRAIN JAVIER ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-02-22','42420.00','A'),('1541',3,'RONDON HERNANDEZ MARYLIN DEL CARMEN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132958,'2011-09-29','145780.00','A'),('1542',3,'ELJURI RAMIREZ EMIRA ELIZABETH','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132958,'2010-10-13','601670.00','A'),('1544',3,'REYES LE ROY TOMAS FRANCISCO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2009-06-24','49990.00','A'),('1545',3,'GHETEA GAMUZ JENNY','191821112','CRA 25 CALLE 100','675@gmail.com','2011-02-03',150699,'2010-05-29','536940.00','A'),('1546',3,'DUARTE GONZALEZ ROONEY ORLANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-06-20','534720.00','A'),('1548',3,'BIZOT PHILIPPE PIERRE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',263813,'2011-03-02','709760.00','A'),('1549',3,'PELUFFO RUBIO GUILLERMO JUAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',116366,'2011-05-09','360470.00','A'),('1550',3,'AGLIATI YERKOVIC CAROLINA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2010-06-01','673040.00','A'),('1551',3,'SEPULVEDA LEDEZMA HENRY CORNELIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-08-15','283810.00','A'),('1552',3,'CABRERA CARMINE JAIME FRANCO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2008-11-30','399940.00','A'),('1553',3,'ZINNO PEÑA ALVARO ANTONIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',116366,'2010-08-02','148270.00','A'),('1554',3,'ROMERO BUCCICARDI JUAN CRISTOBAL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-08-01','541530.00','A'),('1555',3,'FEFERKORN ABRAHAM','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',159312,'2011-06-12','262840.00','A'),('1556',3,'MASSE CATESSON CAROLINE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',131272,'2011-06-12','689600.00','A'),('1557',3,'CATESSON ALEXANDRA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',131272,'2011-06-12','659470.00','A'),('1558',3,'FUENTES HERNANDEZ RICARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-18','228540.00','A'),('1559',3,'GUEVARA MENJIVAR WILSON ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-18','164310.00','A'),('1560',3,'DANOWSKI NICOLAS JAMES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-02','135920.00','A'),('1561',3,'CASTRO VELASQUEZ ISMAEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',121318,'2011-07-31','186670.00','A'),('1562',3,'RODRIGUEZ CORNEJO CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-18','525590.00','A'),('1563',3,'VANIA CAROLINA FLORES AVILA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-18','67950.00','A'),('1564',3,'ARMERO RAMOS OSCAR ALEXANDER','191821112','CRA 25 CALLE 100','414@hotmail.com','2011-02-03',127591,'2011-09-18','762950.00','A'),('1565',3,'ORELLANA MARTINEZ JUAN CARLOS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-18','610930.00','A'),('1566',3,'BRATT BABONNEAU CARLOS MIGUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-09-14','765800.00','A'),('1567',3,'YANES FERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150728,'2011-04-12','996200.00','A'),('1568',3,'ANGULO TAMAYO SEBASTIAN GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',126674,'2011-05-19','683600.00','A'),('1569',3,'HENRIQUEZ JOSE LUIS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',138329,'2011-08-15','429390.00','A'),('157',1,'ORTIZ RIOS ALEJANDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-12','365330.00','A'),('1570',3,'GARCIA VILLARROEL RAUL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',126189,'2011-06-12','96140.00','A'),('1571',3,'SOLA HERNANDEZ JOSE FRANCISCO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-09-25','192530.00','A'),('1572',3,'PEREZ PASTOR OSWALDO MAGARREY','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',126674,'2011-05-25','674260.00','A'),('1573',3,'MICHAN QUIÑONES FRANCISCO JOSE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-06-21','793680.00','A'),('1574',3,'GARCIA ARANDA OSCAR DAVID','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-08-15','945620.00','A'),('1575',3,'GARCIA RIBAS JORDI','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-07-10','347070.00','A'),('1576',3,'GALVAN ROMERO MARIA INMACULADA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-09-14','898480.00','A'),('1577',3,'BOSH MOLINAS JUAN JOSE ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',198576,'2011-08-22','451190.00','A'),('1578',3,'MARTIN TENA JOSE MARIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-04-24','560520.00','A'),('1579',3,'HAWKINS ROBERT JAMES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-12','449010.00','A'),('1580',3,'GHERARDI ALEJANDRO EMILIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',180063,'2010-11-15','563500.00','A'),('1581',3,'TELLO JUAN EDUARDO','191821112','CRA 25 CALLE 100','192@hotmail.com','2011-02-03',138329,'2011-05-01','470460.00','A'),('1583',3,'GUZMAN VALDIVIA CINTIA TATIANA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',199862,'2011-04-06','897580.00','A'),('1584',3,'STUBBS MERCEDES CARMEN JOSEFINA DEL MILAGRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',199862,'2011-04-06','502510.00','A'),('1585',3,'QUINTEIRO GORIS JOSE ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-17','819840.00','A'),('1587',3,'RIVAS LORIA PRISCILLA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',205636,'2011-05-01','498720.00','A'),('1588',3,'DE LA TORRE AUGUSTO PATRICIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',20404,'2011-08-31','718670.00','A'),('159',1,'ALDANA PATIÑO NORMAN ALEXANDER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2009-10-10','201500.00','A'),('1590',3,'TORRES VILLAR ROBERTO ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2011-08-10','329950.00','A'),('1591',3,'PETRULLI CARMELO MORENO','191821112','CRA 25 CALLE 100','883@yahoo.com.mx','2011-02-03',127591,'2011-06-20','358180.00','A'),('1592',3,'MUSCO ENZO FRANCESCO GIUSEPPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-09-04','801050.00','A'),('1593',3,'RONCUZZI CLAUDIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127134,'2011-10-02','930700.00','A'),('1594',3,'VELANI FRANCESCA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',199862,'2011-08-22','250360.00','A'),('1596',3,'BENARROCH ASSOR DAVID ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-10-06','547310.00','A'),('1597',3,'FLO VILLASECA ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-05-27','357520.00','A'),('1598',3,'FONT RIBAS ANTONI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',196117,'2011-09-21','145660.00','A'),('1599',3,'LOPEZ BARAHONA MONICA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2011-08-03','655740.00','A'),('16',1,'FLOREZ PEREZ GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132572,'2011-03-30','956370.00','A'),('160',1,'GIRALDO MENDIVELSO MARTIN EDISSON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-14','429010.00','A'),('1600',3,'SCATTIATI ALDO ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',215245,'2011-07-10','841730.00','A'),('1601',3,'MARONE CARLO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',101179,'2011-06-14','241420.00','A'),('1602',3,'CHUVASHEVA ELENA ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',190393,'2011-08-21','681900.00','A'),('1603',3,'GIGLIO FRANCISCO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',122035,'2011-09-19','685250.00','A'),('1604',3,'JUSTO AMATE AGUSTIN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',174598,'2011-05-16','380560.00','A'),('1605',3,'GUARDABASSI FABIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',281044,'2011-07-26','847060.00','A'),('1606',3,'CALABRETTA FRAMCESCO ANTONIO MARIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',199862,'2011-08-22','93590.00','A'),('1607',3,'TARTARINI MASSIMO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',196234,'2011-05-10','926800.00','A'),('1608',3,'BOTTI GIAIME','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',231989,'2011-04-04','353210.00','A'),('1610',3,'PILERI ANDREA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',205040,'2011-09-01','868590.00','A'),('1612',3,'MARTIN GRACIA LUIS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-07-27','324320.00','A'),('1613',3,'GRACIA MARTIN LUIS','191821112','CRA 25 CALLE 100','579@facebook.com','2011-02-03',198248,'2011-08-24','463560.00','A'),('1614',3,'SERRAT SESE JUAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',196234,'2011-05-16','344840.00','A'),('1615',3,'DEL LAGO AMPELIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-06-29','333510.00','A'),('1616',3,'PERUGORRIA RODRIGUEZ JORGE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',148511,'2011-06-06','633040.00','A'),('1617',3,'GIRAL CALVO IGNACIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-09-19','164670.00','A'),('1618',3,'ALONSO CEBRIAN JOSE MARIA','191821112','CRA 25 CALLE 100','253@terra.com.co','2011-02-03',188640,'2011-03-23','924240.00','A'),('162',1,'ARIZA PINEDA JOHN ALEXANDER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-11-27','415710.00','A'),('1620',3,'OLMEDO CARDENETE DOMINGO MIGUEL','191821112','CRA 25 CALLE 100','608@terra.com.co','2011-02-03',135397,'2011-09-03','863200.00','A'),('1622',3,'GIMENEZ BALDRES ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',182860,'2011-05-12','82660.00','A'),('1623',3,'NUÑEZ MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-05-23','609950.00','A'),('1624',3,'PEÑATE CASTRO WENCESLAO LORENZO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',153607,'2011-09-13','801750.00','A'),('1626',3,'ESCODA MIGUEL JOAN JOSEP','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-07-18','489310.00','A'),('1628',3,'ESTRADA CAPILLA ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-07-26','81180.00','A'),('163',1,'PERDOMO LOPEZ ANDRES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-05','456910.00','A'),('1630',3,'SUBIRAIS MARIANA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',196234,'2011-09-08','138700.00','A'),('1632',3,'ENSEÑAT VELASCO JAIME LUIS','191821112','CRA 25 CALLE 100','687@gmail.com','2011-02-03',188640,'2011-04-12','904560.00','A'),('1633',3,'DIEZ POLANCO CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-05-24','530410.00','A'),('1636',3,'CUADRA ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-09-04','688400.00','A'),('1637',3,'UBRIC MUÑOZ RAUL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',98790,'2011-05-30','139830.00','A'),('1638',3,'NEDDERMANN GUJO RICARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-07-31','633990.00','A'),('1639',3,'RENEDO ZALBA JAIME','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-03-13','750430.00','A'),('164',1,'JIMENEZ PADILLA JOHAN MARCEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-05','37430.00','A'),('1640',3,'FERNANDEZ MORENO DAVID','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-05-28','850180.00','A'),('1641',3,'VERGARA SERRANO JUAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-06-30','999620.00','A'),('1642',3,'MARTINEZ HUESO LUCAS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',182860,'2011-06-29','447570.00','A'),('1643',3,'FRANCO POBLET JUAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',196234,'2011-10-03','238990.00','A'),('1644',3,'MORA HIDALGO MIGUEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-06','852250.00','A'),('1645',3,'GARCIA COSO EMILIANO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-09-14','544260.00','A'),('1646',3,'GIMENO ESCRIG ENRIQUE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',180124,'2011-09-20','164580.00','A'),('1647',3,'MORCILLO LOPEZ RAMON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127538,'2011-04-16','190090.00','A'),('1648',3,'RUBIO BONET MANUEL','191821112','CRA 25 CALLE 100','252@facebook.com','2011-02-03',196234,'2011-05-25','456740.00','A'),('1649',3,'PRADO ABUIN FERNANDO ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-07-16','713400.00','A'),('165',1,'RAMIREZ PALMA LUIS FELIPE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-10','816420.00','A'),('1650',3,'DE VEGA PUJOL GEMA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-08-01','196780.00','A'),('1651',3,'IBARGUEN ALFREDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2010-12-03','843720.00','A'),('1652',3,'IBARGUEN ALFREDO','191821112','CRA 25 CALLE 100','856@hotmail.com','2011-02-03',188640,'2011-06-18','628250.00','A'),('1654',3,'MATELLANES RODRIGUEZ NURIA PILAR','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-10-05','165770.00','A'),('1656',3,'VIDAURRAZAGA GUISOLA JUAN ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',188640,'2011-08-08','495320.00','A'),('1658',3,'GOMEZ ULLATE MARIA ELENA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-04-12','919090.00','A'),('1659',3,'ALCAIDE ALONSO JUAN MIGUEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-05-02','152430.00','A'),('166',1,'TUSTANOSKI RODOLFO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-12-03','969790.00','A'),('1660',3,'LARROY GARCIA CRISTINA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-09-14','4900.00','A'),('1661',3,'FERNANDEZ POYATO ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-09-10','567180.00','A'),('1662',3,'TREVEJO PARDO JULIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-25','821200.00','A'),('1663',3,'GORGA CASSINELLI VICTOR DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-05-30','404490.00','A'),('1664',3,'MORUECO GONZALEZ JOSE ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-10-09','558820.00','A'),('1665',3,'IRURETA FERNANDEZ PEDRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',214283,'2011-09-14','580650.00','A'),('1667',3,'TREVEJO PARDO JUAN ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-25','392020.00','A'),('1668',3,'BOCOS NUÑEZ MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',196234,'2011-10-08','279710.00','A'),('1669',3,'LUIS CASTILLO JOSE AGUSTIN','191821112','CRA 25 CALLE 100','557@hotmail.es','2011-02-03',168202,'2011-06-16','222500.00','A'),('167',1,'HURTADO BELALCAZAR JOHN JADY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127300,'2011-08-17','399710.00','A'),('1670',3,'REDONDO GUTIERREZ EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-09-14','273350.00','A'),('1671',3,'MADARIAGA ALONSO RAMON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2011-07-26','699240.00','A'),('1673',3,'REY GONZALEZ LUIS JAVIER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-07-26','283190.00','A'),('1676',3,'PEREZ ESTER ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-10-03','274900.00','A'),('1677',3,'GOMEZ-GRACIA HUERTA ALEJANDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-09-22','112260.00','A'),('1678',3,'DAMASO PUENTE DIEGO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-05-25','736600.00','A'),('168',1,'JUAN PABLO MARTINEZ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-08-15','89160.00','A'),('1680',3,'DIEZ GONZALEZ LUIS MIGUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-05-17','521280.00','A'),('1681',3,'LOPEZ LOPEZ JOSE LUIS','191821112','CRA 25 CALLE 100','853@yahoo.com','2011-02-03',196234,'2010-12-13','567760.00','A'),('1682',3,'MIRO LINARES FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133442,'2011-09-03','274930.00','A'),('1683',3,'ROCA PINTADO MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-05-16','671410.00','A'),('1684',3,'GARCIA BARTOLOME HORACIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-09-29','532220.00','A'),('1686',3,'BALMASEDA DE AHUMADA DIEZ JUAN LUIS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',168202,'2011-04-13','637860.00','A'),('1687',3,'FERNANDEZ IMAZ FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-04-10','248580.00','A'),('1688',3,'ELIAS CASTELLS FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-05-19','329300.00','A'),('1689',3,'ANIDO DIAZ DANIEL','191821112','CRA 25 CALLE 100','491@gmail.com','2011-02-03',188640,'2011-04-04','900780.00','A'),('1691',3,'GATELL ARIMONT MARIA CRISTINA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',196234,'2011-09-17','877700.00','A'),('1692',3,'RIVERA MUÑOZ ADONI','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',211705,'2011-04-05','840470.00','A'),('1693',3,'LUNA LOPEZ ALICIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-10-01','569270.00','A'),('1695',3,'HAMMOND ANN ELIZABETH','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118021,'2011-05-17','916770.00','A'),('1698',3,'RODRIGUEZ PARAJA MARIA CRISTINA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-07-15','649080.00','A'),('1699',3,'RUIZ DIAZ JOSE IGNACIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-06-24','359540.00','A'),('17',1,'SUAREZ CUEVAS FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',129499,'2011-08-31','149640.00','A'),('170',1,'MARROQUIN AVILA FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-04','965840.00','A'),('1700',3,'BACCHELLI ORTEGA JOSE MARIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',126180,'2011-06-07','850450.00','A'),('1701',3,'IGLESIAS JOSE IGNACIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2010-09-14','173630.00','A'),('1702',3,'GUTIEZ CUEVAS JULIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2010-09-07','316800.00','A'),('1704',3,'CALDEIRO ZAMORA JESUS CARMELO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-05-09','365230.00','A'),('1705',3,'ARBONA ABASCAL MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-02-27','636760.00','A'),('1706',3,'COHEN AMAR MOISES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196766,'2011-05-20','88120.00','A'),('1708',3,'FERNANDEZ COBOS ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2010-11-09','387220.00','A'),('1709',3,'CANAL VIVES JOAQUIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',196234,'2011-09-27','345150.00','A'),('171',1,'LADINO MORENO JAVIER ORLANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-25','89230.00','A'),('1710',5,'GARCIA BERTRAND HECTOR','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-04-07','564100.00','A'),('1711',1,'CONSTANZA MARÍN ESCOBAR','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127799,'2011-03-24','785060.00','A'),('1712',1,'NUNEZ BATALLA FAUSTINO JORGE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-26','232970.00','A'),('1713',3,'VILORA LAZARO ERICK MARTIN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-26','809690.00','A'),('1715',3,'ELLIOT EDWARD JAMES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-26','318660.00','A'),('1716',3,'ALCALDE ORTEÑO MAURICIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',117002,'2011-07-23','544650.00','A'),('1717',3,'CIARAVELLA STEFANO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',231989,'2011-06-13','767260.00','A'),('1718',3,'URRA GONZALEZ PEDRO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-05-02','202370.00','A'),('172',1,'GUERRERO ERNESTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-15','548610.00','A'),('1720',3,'JIMENEZ RODRIGUEZ ANNET','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-05-25','943140.00','A'),('1721',3,'LESCAY CASTELLANOS ARNALDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-09-14','585570.00','A'),('1722',3,'OCHOA AGUILAR ELIADES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-25','98410.00','A'),('1723',3,'RODRIGUEZ NUÑES JOSE ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-25','735340.00','A'),('1724',3,'OCHOA BUSTAMANTE ELIADES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-25','381480.00','A'),('1725',3,'MARTINEZ NIEVES JOSE ANGEL','191821112','CRA 25 CALLE 100','919@yahoo.es','2011-02-03',127591,'2011-05-25','701360.00','A'),('1727',3,'DRAGONI ALAIN ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-25','707850.00','A'),('1728',3,'FERNANDEZ LOPEZ MARCOS ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-25','452090.00','A'),('1729',3,'MATURELL ROMERO JORGE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-25','136880.00','A'),('173',1,'RUIZ CEBALLOS ALEXANDER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-04','475380.00','A'),('1730',3,'LARA CASTELLANO LENNIS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-25','328150.00','A'),('1731',3,'GRAHAM CRISTOPHER DRAKE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',203079,'2011-06-27','230120.00','A'),('1732',3,'TORRE LUCA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-05-11','166120.00','A'),('1733',3,'OCHOA HIDALGO EGLIS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-25','140250.00','A'),('1734',3,'LOURERIO DELACROIX FERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',116511,'2011-09-28','202900.00','A'),('1736',3,'LEVIN FIORELLI ANDRES','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',116366,'2011-08-07','360110.00','A'),('1739',3,'BERRY R ALBERT','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',216125,'2011-08-16','22170.00','A'),('174',1,'NIETO PARRA SEBASTIAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-05-11','731040.00','A'),('1740',3,'MARSHALL ROBERT SHEPARD','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',150159,'2011-03-09','62860.00','A'),('1741',3,'HENANDEZ ROY CHRISTOPHER JOHN PATRICK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',179614,'2011-09-26','247780.00','A'),('1742',3,'LANDRY GUILLAUME','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',232263,'2011-04-27','50330.00','A'),('1743',3,'VUCETIC ZELJKO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',232263,'2011-07-25','508320.00','A'),('1744',3,'DE JUANA CELASCO MARIA DEL CARMEN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-04-16','390620.00','A'),('1745',3,'LABONTE RONALD','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',269033,'2011-09-28','428120.00','A'),('1746',3,'NEWMAN PHILIP MARK','191821112','CRA 25 CALLE 100','557@gmail.com','2011-02-03',231373,'2011-07-25','968750.00','A'),('1747',3,'GRENIER MARIE PIERRE ','191821112','CRA 25 CALLE 100','409@facebook.com','2011-02-03',244158,'2011-07-03','559370.00','A'),('1749',3,'SHINDER GARY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',244158,'2011-07-25','775000.00','A'),('175',3,'GALLEGOS BASTIDAS CARLOS EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133211,'2011-08-10','229090.00','A'),('1750',3,'LOPEZ DE GOICOCHEA ZABALA FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-09-13','203120.00','A'),('1751',3,'CORRAL BELLON MANUEL','191821112','CRA 25 CALLE 100','538@yahoo.com','2011-02-03',177443,'2011-05-02','690610.00','A'),('1752',3,'DE SOLA SOLVAS JUAN ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-10-02','843700.00','A'),('1753',3,'GARCIA ALCALA DIAZ REGAÑON EVA MARIA','191821112','CRA 25 CALLE 100','398@yahoo.com','2011-02-03',118777,'2010-03-15','146680.00','A'),('1754',3,'BIELA VILIAM','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132958,'2011-08-16','202290.00','A'),('1755',3,'GUIOT CANO JUAN PATRICK','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',232263,'2011-05-23','571390.00','A'),('1756',3,'JIMENEZ DIAZ LUIS MIGUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-03-27','250100.00','A'),('1757',3,'FOX ELEANORE MAE','191821112','CRA 25 CALLE 100','117@yahoo.com','2011-02-03',190393,'2011-05-04','536340.00','A'),('1758',3,'TANG VAN SON','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132958,'2011-05-07','931400.00','A'),('1759',3,'SUTTON PETER RONALD','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',281673,'2011-06-01','47960.00','A'),('176',1,'GOMEZ IVAN','191821112','CRA 25 CALLE 100','438@yahoo.com.mx','2011-02-03',127591,'2008-04-09','952310.00','A'),('1762',3,'STOODY MATTHEW FRANCIS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-21','84320.00','A'),('1763',3,'SEIX MASO ARNAU','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',150699,'2011-05-24','168880.00','A'),('1764',3,'FERNANDEZ REDEL RAQUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-09-14','591440.00','A'),('1765',3,'PORCAR DESCALS VICENNTE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',176745,'2011-04-24','450580.00','A'),('1766',3,'PEREZ DE VILLEGAS TRILLO FIGUEROA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',196234,'2011-05-17','478560.00','A'),('1767',3,'CELDRAN DEGANO ANGEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',196234,'2011-05-17','41040.00','A'),('1768',3,'TERRAGO MARI FERRAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-09-30','769550.00','A'),('1769',3,'SZUCHOVSZKY GERGELY','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',250256,'2011-05-23','724630.00','A'),('177',1,'SEBASTIAN TORO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127443,'2011-07-14','74270.00','A'),('1771',3,'TORIBIO JOSE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',226612,'2011-09-04','398570.00','A'),('1772',3,'JOSE LUIS BAQUERA PEIRONCELLY','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2010-10-19','49360.00','A'),('1773',3,'MADARIAGA VILLANUEVA MIGUEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-04-12','51090.00','A'),('1774',3,'VILLENA BORREGO ANTONIO','191821112','CRA 25 CALLE 100','830@terra.com.co','2011-02-03',188640,'2011-07-19','107400.00','A'),('1776',3,'VILAR VILLALBA JOSE LUIS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',180124,'2011-09-20','596330.00','A'),('1777',3,'CAGIGAL ORTIZ MACARENA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',214283,'2011-09-14','830530.00','A'),('1778',3,'KORBA ATTILA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',250256,'2011-09-27','363650.00','A'),('1779',3,'KORBA-ELIAS BARBARA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',250256,'2011-09-27','326670.00','A'),('178',1,'AMSILI COHEN HANAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2009-08-29','514450.00','A'),('1780',3,'PINDADO GOMEZ JESUS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',189053,'2011-04-26','542400.00','A'),('1781',3,'IBARRONDO GOMEZ GRACIA ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-09-21','731990.00','A'),('1782',3,'MUNGUIRA GONZALEZ JUAN JULIAN','191821112','CRA 25 CALLE 100','54@hotmail.es','2011-02-03',188640,'2011-09-06','32730.00','A'),('1784',3,'LANDMAN PIETER MARINUS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',294861,'2011-09-22','740260.00','A'),('1789',3,'SUAREZ AINARA ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-05-17','503470.00','A'),('179',1,'CARO JUNCO GUIOVANNY','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-03','349420.00','A'),('1790',3,'MARTINEZ CHACON JOSE JOAQUIN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-05-20','592220.00','A'),('1792',3,'MENDEZ DEL RION LUCIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',120639,'2011-06-16','476910.00','A'),('1793',3,'VERHULST LAMBERTUS CORNELIA FRANCISCUS ALPHONSUS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',295420,'2011-07-04','32410.00','A'),('1794',3,'YAÑEZ YAGUE JESUS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-07-10','731290.00','A'),('1796',3,'GOMEZ ZORRILLA AMATE JOSE MARIOA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',188640,'2011-07-12','602380.00','A'),('1797',3,'LAIZ MORENO ENEKO','191821112','CRA 25 CALLE 100','219@gmail.com','2011-02-03',127591,'2011-08-05','334150.00','A'),('1798',3,'MORODO RUIZ RUBEN DAVID','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-09-14','863620.00','A'),('18',1,'GARZON VARGAS GUILLERMO FEDERICO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-29','879110.00','A'),('1800',3,'ALFARO FAUS MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-09-14','987410.00','A'),('1801',3,'MORRALLA VALLVERDU ENRIC','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',194601,'2011-07-18','990070.00','A'),('1802',3,'BALBASTRE TEJEDOR JUAN VICENTE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',182860,'2011-08-24','988120.00','A'),('1803',3,'MINGO REIZ FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',188640,'2010-03-24','970400.00','A'),('1804',3,'IRURETA FERNANDEZ JOSE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',214283,'2011-09-10','887630.00','A'),('1807',3,'NEBRO MELLADO JOSE JUAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',168996,'2011-08-15','278540.00','A'),('1808',3,'ALBERQUILLA OJEDA JOSE DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-09-27','477070.00','A'),('1809',3,'BUENDIA NORTE MARIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',131401,'2011-07-08','549720.00','A'),('181',1,'CASTELLANOS FLORES RODRIGO ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-18','970470.00','A'),('1811',3,'HILBERT ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',196234,'2011-09-08','937830.00','A'),('1812',3,'GONZALES PINTO COTERILLO ADOLFO LORENZO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',214283,'2011-09-10','736970.00','A'),('1813',3,'ARQUES ALVAREZ JOSE RICARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-04-04','871360.00','A'),('1817',3,'CLAUSELL LOW ROBERTO EMILIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132775,'2011-09-28','348770.00','A'),('1818',3,'BELICHON MARTINEZ JESUS ALVARO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-04-12','327010.00','A'),('182',1,'GUZMAN NIETO JOSE MARIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-20','241130.00','A'),('1821',3,'LINATI DE PUIG JORGE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',196234,'2011-05-18','47210.00','A'),('1823',3,'SINBARRERA ROMA ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',196234,'2011-09-08','598380.00','A'),('1826',2,'JUANES GARATE BRUNO ','191821112','CRA 25 CALLE 100','301@gmail.com','2011-02-03',118777,'2011-08-21','877650.00','A'),('1827',3,'BOLOS GIMENO ROGELIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',200247,'2010-11-28','555470.00','A'),('1828',3,'ZABALA ASTIGARRAGA JOSE MARIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',188640,'2011-09-20','144410.00','A'),('1831',3,'MAPELLI CAFFARENA BORJA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',172381,'2011-09-04','58200.00','A'),('1833',3,'LARMONIE LESLIE MARTIN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-30','604840.00','A'),('1834',3,'WILLEMS ROBERT-JAN MICHAEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',288531,'2011-09-05','756530.00','A'),('1835',3,'ANJEMA LAURENS JAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2011-08-29','968140.00','A'),('1836',3,'VERHULST HENRICUS LAMBERTUS MARIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',295420,'2011-04-03','571100.00','A'),('1837',3,'PIERROT JOZEF MARIE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',288733,'2011-05-18','951100.00','A'),('1838',3,'EIKELBOOM HIDDE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-02','42210.00','A'),('1839',3,'TAMBINI GOMEZ DE MUNG','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',180063,'2011-04-24','357740.00','A'),('1840',3,'MAGAÑA PEREZ GERARDO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',135360,'2011-09-28','662060.00','A'),('1841',3,'COURTOISIE BEYHAUT RAFAEL JUAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',116366,'2011-09-05','237070.00','A'),('1842',3,'ROJAS BENJAMIN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-13','199170.00','A'),('1843',3,'GARCIA VICENTE EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',150699,'2011-08-10','284650.00','A'),('1844',3,'CESTTI LOPEZ RAFAEL GUSTAVO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',144215,'2011-09-27','825750.00','A'),('1845',3,'URTECHO LOPEZ ARMANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',139272,'2011-09-28','274800.00','A'),('1846',3,'SEGURA ESPINOZA ARMANDO SEBASTIAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',135360,'2011-09-28','896730.00','A'),('1847',3,'GONZALEZ VEGA LUIS PASTOR','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',135360,'2011-05-18','659240.00','A'),('185',1,'AYALA CARDENAS NELSON MAURICIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-25','855960.00','A'),('1850',3,'ROTZINGER ROA KLAUS ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',116366,'2011-09-12','444250.00','A'),('1851',3,'FRANCO DE LEON SEBASTIAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',116366,'2011-04-26','63840.00','A'),('1852',3,'RIVAS GAGNONI LUIS ARMANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',135360,'2011-05-18','986440.00','A'),('1853',3,'BARRETO VELASQUEZ JOEL FERNANDO','191821112','CRA 25 CALLE 100','104@hotmail.es','2011-02-03',116511,'2011-04-27','740670.00','A'),('1854',3,'SEVILLA AMAYA ORLANDO','191821112','CRA 25 CALLE 100','264@yahoo.com','2011-02-03',136995,'2011-05-18','744020.00','A'),('1855',3,'VALFRE BRALICH ELEONORA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',116366,'2011-06-06','498080.00','A'),('1857',3,'URDANETA DIAMANTES DIEGO ANDRES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-09-23','797590.00','A'),('1858',3,'RAMIREZ ALVARADO ROBERT JESUS','191821112','CRA 25 CALLE 100','290@yahoo.com.mx','2011-02-03',127591,'2011-09-18','212850.00','A'),('1859',3,'GUTTNER DENNIS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-25','671470.00','A'),('186',1,'CARRASCO SUESCUN ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-15','36620.00','A'),('1861',3,'HEGEMANN JOACHIM','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-25','579710.00','A'),('1862',3,'MALCHER INGO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',292243,'2011-06-23','742060.00','A'),('1864',3,'HOFFMEISTER MALTE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128206,'2011-09-06','629770.00','A'),('1865',3,'BOHME ALEXANDRA LUCE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-14','235260.00','A'),('1866',3,'HAMMAN FRANK THOMAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-13','286980.00','A'),('1867',3,'GOPPERT MARKUS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-09-05','729150.00','A'),('1868',3,'BISCARO CAROLINA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-09-16','784790.00','A'),('1869',3,'MASCHAT SEBASTIAN STEPHAN ANDREAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-02-03','736520.00','A'),('1870',3,'WALTHER DANIEL CLAUS PETER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-24','328220.00','A'),('1871',3,'NENTWIG DANIEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',289697,'2011-02-03','431550.00','A'),('1872',3,'KARUTZ ALEX','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127662,'2011-03-17','173090.00','A'),('1875',3,'KAY KUNNE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',289697,'2011-03-18','961400.00','A'),('1876',2,'SCHLUMPF IVANA PATRICIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',245206,'2011-03-28','802690.00','A'),('1877',3,'RODRIGUEZ BUSTILLO CONSUELO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',139067,'2011-03-21','129280.00','A'),('1878',1,'REHWALDT RICHARD ULRICH','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',289697,'2009-10-25','238320.00','A'),('1880',3,'FONSECA BEHRENS MANUELA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',150699,'2011-08-18','303810.00','A'),('1881',3,'VOGEL MIRKO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-09','107790.00','A'),('1882',3,'WU WEI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',289697,'2011-03-04','627520.00','A'),('1884',3,'KADOLSKY ANKE SIGRID','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',289697,'2010-10-07','188560.00','A'),('1885',3,'PFLUCKER PLENGE CARLOS HERNAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',239124,'2011-08-15','500140.00','A'),('1886',3,'PEÑA LAGOS MELENIA PATRICIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-18','935020.00','A'),('1887',3,'CALVANO MARCO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2011-05-02','174690.00','A'),('1888',3,'KUHLEN LOTHAR WILHELM','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',289232,'2011-08-30','68390.00','A'),('1889',3,'QUIJANO RICO SOFIA VICTORIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',221939,'2011-06-13','817890.00','A'),('189',1,'GOMEZ TRUJILLO SERGIO ANDRES','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-17','985980.00','A'),('1890',3,'SCHILBERZ KARIN','191821112','CRA 25 CALLE 100','405@facebook.com','2011-02-03',287570,'2011-06-23','884260.00','A'),('1891',3,'SCHILBERZ SOPHIE CAHRLOTTE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',287570,'2011-06-23','967640.00','A'),('1892',3,'MOLINA MOLINA MILAGRO DE SUYAPA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',139844,'2011-07-26','185410.00','A'),('1893',3,'BARRIENTOS ESCALANTE RAFAEL ALVARO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',139067,'2011-05-18','24110.00','A'),('1895',3,'ENGELS FRANZBERNARD','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',292243,'2011-07-01','749430.00','A'),('1896',3,'FRIEDHOFF SVEN WILHEM','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',289697,'2010-10-31','54090.00','A'),('1897',3,'BARTELS CHRISTIAN JOHAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',133535,'2011-07-25','22160.00','A'),('1898',3,'NILS REMMEL','191821112','CRA 25 CALLE 100','214@gmail.com','2011-02-03',256231,'2011-08-05','948530.00','A'),('1899',3,'DR SCHEIBE MATTHIAS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',252431,'2011-09-26','676150.00','A'),('19',1,'RIAÑO ROMERO ALBERTO ELIAS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2009-12-14','946630.00','A'),('190',1,'LLOREDA ORTIZ FELIPE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-12-20','30860.00','A'),('1900',3,'CARRASCO CATERIANO PEDRO','191821112','CRA 25 CALLE 100','255@hotmail.com','2011-02-03',286578,'2011-05-02','535180.00','A'),('1901',3,'ROSENBER DIRK PETER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-29','647450.00','A'),('1902',3,'LAUBACH JOHANNES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',289697,'2011-05-01','631720.00','A'),('1904',3,'GRUND STEFAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',256231,'2011-08-05','185990.00','A'),('1905',3,'GRUND BEATE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',256231,'2011-08-05','281280.00','A'),('1906',3,'CORZO PAULA MIRIANA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',180063,'2011-08-02','848400.00','A'),('1907',3,'OESTERHAUS CORNELIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',256231,'2011-03-16','398170.00','A'),('1908',1,'JUAN SEBASTIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127300,'2011-05-12','445660.00','A'),('1909',3,'VAN ZIJL CHRISTIAN ANDREAS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',286785,'2011-09-24','33800.00','A'),('191',1,'CASTAÑEDA CABALLERO JUAN MANUEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-28','196370.00','A'),('1910',3,'LORZA RUIZ MYRIAM ESPERANZA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-29','831990.00','A'),('192',1,'ZEA EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-09','889270.00','A'),('193',1,'VELEZ VICTOR MANUEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2010-10-22','857250.00','A'),('194',1,'ARCINIEGAS GOMEZ ISMAEL','191821112','CRA 25 CALLE 100','937@hotmail.com','2011-02-03',127591,'2011-05-18','618450.00','A'),('195',1,'LINAREZ PEDRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-12','520470.00','A'),('1952',3,'BERND ERNST HEINZ SCHUNEMANN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',255673,'2011-09-04','796820.00','A'),('1953',3,'BUCHNER RICHARD ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-17','808430.00','A'),('1954',3,'CHO YONG BEOM','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',173192,'2011-02-07','651670.00','A'),('1955',3,'BERNECKER WALTER LUDWIG','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',256231,'2011-04-03','833080.00','A'),('1956',3,'SCHIERENBECK THOMAS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',256231,'2011-05-03','210380.00','A'),('1957',3,'STEGMANN WOLF DIETER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-08-27','552650.00','A'),('1958',3,'LEBAGE GONZALEZ VALENTINA CECILIA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',131272,'2011-07-29','132130.00','A'),('1959',3,'CABRERA MACCHI JOSE ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',180063,'2011-08-02','2700.00','A'),('196',1,'OTERO BERNAL ALVARO ERNESTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-04-29','747030.00','A'),('1960',3,'KOO BONKI','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-15','617110.00','A'),('1961',3,'JODJAHN DE CARVALHO BEIRAL FLAVIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118942,'2011-07-05','77460.00','A'),('1963',3,'VIEIRA ROCHA MARQUES ELIANE TEREZINHA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118402,'2011-09-13','447430.00','A'),('1965',3,'KELLEN CRISTINA GATTI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',126180,'2011-07-01','804020.00','A'),('1966',3,'CHAVEZ MARLON TENORIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',120773,'2011-07-25','132310.00','A'),('1967',3,'SERGIO COZZI','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',125750,'2011-08-28','249500.00','A'),('1968',3,'REZENDE LIMA JOSE MARCIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-08-23','850570.00','A'),('1969',3,'RAMOS PEDRO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118942,'2011-08-03','504330.00','A'),('1972',3,'ADAMS THOMAS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118942,'2011-08-11','774000.00','A'),('1973',3,'WALESKA NUCINI BOGO ANDREA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-23','859690.00','A'),('1974',3,'GERMANO PAULO BUNN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118439,'2011-08-30','976440.00','A'),('1975',3,'CALDEIRA FILHO RUBENS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118942,'2011-07-18','303120.00','A'),('1976',3,'JOSE CUSTODIO DO ALTISSIMO NETONETO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',119814,'2011-09-08','586290.00','A'),('1977',3,'GAMAS MARIA CRISTINA ALVES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-09-19','22070.00','A'),('1979',3,'PORTO WEBER FERREIRA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-07','691340.00','A'),('1980',3,'FONSECA LAURO PINTO','191821112','CRA 25 CALLE 100','104@hotmail.es','2011-02-03',127591,'2011-08-16','402140.00','A'),('1981',3,'DUARTE ELENA CECILIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-06-15','936710.00','A'),('1983',3,'CECHINEL CRISTIAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118942,'2011-06-12','575530.00','A'),('1984',3,'BATISTA PINHERO JOAO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-04-25','446250.00','A'),('1987',1,'ISRAEL JOSE MAXWELL','191821112','CRA 25 CALLE 100','936@gmail.com','2011-02-03',125894,'2011-07-04','408350.00','A'),('1988',3,'BATISTA CARVALHO RODRIGO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118864,'2011-09-19','488410.00','A'),('1989',3,'RENO DA SILVEIRA EDNEIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118867,'2011-05-03','216990.00','A'),('199',1,'BASTO CORREA FERNANDO ANTONIO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-21','616860.00','A'),('1990',3,'SEIDLER KOHNERT G TEIXEIRA CHRISTINA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',119814,'2011-08-23','619730.00','A'),('1992',3,'GUIMARAES COSTA LEONARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-04-20','379090.00','A'),('1993',3,'BOTTA RODRIGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118777,'2011-09-16','552510.00','A'),('1994',3,'ARAUJO DA SILVA MARCELO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',125666,'2011-08-03','625260.00','A'),('1995',3,'DA SILVA FELIPE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118864,'2011-04-14','468760.00','A'),('1996',3,'MANFIO RODRIGUEZ FERNANDO','191821112','CRA 25 CALLE 100','974@yahoo.com','2011-02-03',118777,'2011-03-23','468040.00','A'),('1997',3,'NEIVA MORENO DE SOUZA CRISTIANE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-09-24','933900.00','A'),('2',3,'CHEEVER MICHAEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-04','560090.00','I'),('2000',3,'ROCHA GUSTAVO ADRIANO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118288,'2011-07-25','830340.00','A'),('2001',3,'DE ANDRADE CARVALHO VIRGINIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118942,'2011-08-11','575760.00','A'),('2002',3,'CAVALCANTI PIERECK GUILHERME','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',180063,'2011-08-01','387770.00','A'),('2004',3,'HOEGEMANN RAMOS CARLOS FERNANDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-04','894550.00','A'),('201',1,'LUIS FERNANDO AREVALO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-17','156730.00','A'),('2010',3,'GOMES BUCHALA JORGE FERNANDO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-09-23','314800.00','A'),('2011',3,'MARTINS SIMAIKA CATIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-06-01','155020.00','A'),('2012',3,'MONICA CASECA BUENO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-05-16','830710.00','A'),('2013',3,'ALBERTAL MARCELO ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118000,'2010-09-10','688480.00','A'),('2015',3,'GOMES CANTARELLI JAIRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118761,'2011-01-11','685940.00','A'),('2016',3,'CADETTI GARBELLINI ENILICE CRISTINA ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-11','578870.00','A'),('2017',3,'SPIELKAMP KLAUS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',150699,'2011-03-28','836540.00','A'),('2019',3,'GARES HENRI PHILIPPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',135190,'2011-04-05','720730.00','A'),('202',1,'LUCIO CHAUSTRE ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-19','179240.00','A'),('2023',3,'GRECO DE RESENDELUIZ ALFREDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',119814,'2011-04-25','647940.00','A'),('2024',3,'CORTINA EVANDRO JOAO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118922,'2011-05-12','153970.00','A'),('2026',3,'BASQUES MOURA GERALDO CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',119814,'2011-09-07','668250.00','A'),('2027',3,'DA SILVA VALDECIR','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-23','863150.00','A'),('2028',3,'CHI MOW YUNG IVAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-21','311000.00','A'),('2029',3,'YUNG MYRA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-21','965570.00','A'),('2030',3,'MARTINS RAMALHO PATRICIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-03-23','894830.00','A'),('2031',3,'DE LEMOS RIBEIRO GILBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118951,'2011-07-29','577430.00','A'),('2032',3,'AIROLDI CLAUDIO','191821112','CRA 25 CALLE 100','973@terra.com.co','2011-02-03',127591,'2011-09-28','202650.00','A'),('2033',3,'ARRUDA MENDES HEILMANN IONE TEREZA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',120773,'2011-09-07','280990.00','A'),('2034',3,'TAVARES DE CARVALHO EDUARDO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118942,'2011-08-03','796980.00','A'),('2036',3,'FERNANDES ALARCON RAFAEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-08-28','318730.00','A'),('2037',3,'SUCHODOLKI SERGIO GUSMAO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',190393,'2011-07-13','167870.00','A'),('2039',3,'ESTEVES MARCAL MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-02-24','912100.00','A'),('2040',3,'CORSI LUIZ ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-03-25','911080.00','A'),('2041',3,'LOPEZ MONICA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118795,'2011-05-03','819090.00','A'),('2042',3,'QUINTANILHA LUIS CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-16','362230.00','A'),('2043',3,'DE CARLI BRUNO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-05-03','353890.00','A'),('2045',3,'MARINO FRANCA MARILIA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-07-04','352060.00','A'),('2048',3,'VOIGT ALPHONSE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118439,'2010-11-22','384150.00','A'),('2049',3,'ALENCAR ARIMA TATIANA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-05-23','408590.00','A'),('2050',3,'LINIS DE ALMEIDA NEILSON','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',125666,'2011-08-03','890480.00','A'),('2051',3,'PINHEIRO DE CASTRO BENETI','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2011-08-09','226640.00','A'),('2052',3,'ALVES DO LAGO HELMANN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118942,'2011-08-01','461770.00','A'),('2053',3,'OLIVO MARCO ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-22','628900.00','A'),('2054',3,'WILLIAM DOMINGUES SERGIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118085,'2011-08-23','759220.00','A'),('2055',3,'DE SOUZA MENEZES KLEBER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-04-25','909400.00','A'),('2056',3,'CABRAL NEIDE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-16','269340.00','A'),('2057',3,'RODRIGUES RENATO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-06-15','618500.00','A'),('2058',3,'SPADALE PEDRO JORGE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118942,'2011-08-03','284490.00','A'),('2059',3,'MARTINS DE ALMEIDA GUSTAVO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118942,'2011-09-28','566920.00','A'),('206',1,'TORRES HEBER MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-01-29','643210.00','A'),('2060',3,'IKUNO CELINA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-06-08','981170.00','A'),('2061',3,'DAL BELLO FABIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',129499,'2011-08-20','205050.00','A'),('2062',3,'BENATES ADRIANA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-23','81770.00','A'),('2063',3,'CARDOSO ALEXANDRE ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-23','793690.00','A'),('2064',3,'ZANIOLO DE SOUZA CARLOS HENRIQUE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-09-19','723130.00','A'),('2065',3,'DA SILVA LUIZ SIDNEI','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-03-30','234590.00','A'),('2066',3,'RUFATO DE SOUZA LUIZ FERNANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-08-29','3560.00','A'),('2067',3,'DE MEDEIROS LUCIANA','191821112','CRA 25 CALLE 100','994@yahoo.com.mx','2011-02-03',118777,'2011-09-10','314020.00','A'),('2068',3,'WOLFF PIAZERA DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118255,'2011-06-15','559430.00','A'),('2069',3,'DA SILVA FORTUNA MARINA CLAUDIA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2011-09-23','855100.00','A'),('2070',3,'PEREIRA BORGES LUCILA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',120773,'2011-07-26','597210.00','A'),('2072',3,'PORROZZI DE ALMEIDA RENATO','191821112','CRA 25 CALLE 100','812@hotmail.es','2011-02-03',127591,'2011-06-13','312120.00','A'),('2073',3,'KALICHSZTEINN RICARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-03-23','298330.00','A'),('2074',3,'OCCHIALINI GUIMARAES ANA PAULA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118777,'2011-08-03','555310.00','A'),('2075',3,'MAZZUCO FONTES LUIZ ROBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-05-23','881570.00','A'),('2078',3,'TRAN DINH VAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-05-07','98560.00','A'),('2079',3,'NGUYEN THI LE YEN','191821112','CRA 25 CALLE 100','249@yahoo.com.mx','2011-02-03',132958,'2011-05-07','298200.00','A'),('208',1,'GOMEZ GONZALEZ JORGE MARIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-12','889010.00','A'),('2080',3,'MILA DE LA ROCA JOHANA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132958,'2011-01-26','195350.00','A'),('2081',3,'RODRIGUEZ DE FLORES LOURDES MARIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-16','82120.00','A'),('2082',3,'FLORES PEREZ FRANCISCO GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-23','824550.00','A'),('2083',3,'FRAGACHAN BETANCOUT FRANCISCO JO SÉ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-07-04','876400.00','A'),('2084',3,'GAFARO MOLINA CARLOS JULIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-03-22','908370.00','A'),('2085',3,'CACERES REYES JORGEANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-08-11','912630.00','A'),('2086',3,'ALVAREZ RODRIGUEZ VICTOR ROGELIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',132958,'2011-05-23','838040.00','A'),('2087',3,'GARCES ALVARADO JHAGEIMA JOSEFINA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132958,'2011-04-29','452320.00','A'),('2089',3,'FAVREAU CHOLLET JEAN PIERRE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132554,'2011-05-27','380470.00','A'),('209',1,'CRUZ RODRIGEZ CARLOS ANDRES','191821112','CRA 25 CALLE 100','316@hotmail.es','2011-02-03',127591,'2011-06-28','953870.00','A'),('2090',3,'GARAY LLUCH URBI ALAIN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-03-13','659870.00','A'),('2091',3,'LETICIA LETICIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-07','157950.00','A'),('2092',3,'VELASQUEZ RODULFO RAMON ARISTIDES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-09-23','810140.00','A'),('2093',3,'PEREZ EDGAR','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-06','576850.00','A'),('2094',3,'PEREZ MARIELA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-07','453840.00','A'),('2095',3,'PETRUZZI MANGIARANO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132958,'2011-03-27','538650.00','A'),('2096',3,'LINARES GORI RICARDO RAMON','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-12','331730.00','A'),('2097',3,'LAIRET OLIVEROS CAROLINE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-09-25','42680.00','A'),('2099',3,'JIMENEZ GARCIA FERNANDO JOSE','191821112','CRA 25 CALLE 100','78@hotmail.es','2011-02-03',132958,'2011-07-21','963110.00','A'),('21',1,'RUBIO ESCOBAR RUBEN DARIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2009-05-21','639240.00','A'),('2100',3,'ZABALA MILAGROS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-20','160860.00','A'),('2101',3,'VASQUEZ CRUZ NICOLEDANIELA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132958,'2011-07-31','914990.00','A'),('2102',3,'REYES FIGUERA RAMON ALEXANDER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',126674,'2011-04-03','92340.00','A'),('2104',3,'RAMIREZ JIMENEZ MARYLIN CAROLINA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132958,'2011-06-14','306760.00','A'),('2105',3,'TELLES GUILLEN INNA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-09-07','383520.00','A'),('2106',3,'ALVAREZ CARMEN MARINA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-07-20','997340.00','A'),('2107',3,'MARTINEZ YRIGOYEN NABUCODONOSOR','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-07-21','836110.00','A'),('2108',5,'FERNANDEZ RUIZ IGNACIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-01','188530.00','A'),('211',1,'RIVEROS GARCIA JORGE IVAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-01','650050.00','A'),('2110',3,'CACERES REYES JORGE ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2011-08-08','606030.00','A'),('2111',3,'GELFI MARCOS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',199862,'2011-05-17','727190.00','A'),('2112',3,'CERDA CASTILLO CARMEN GLORIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-08-21','817870.00','A'),('2113',3,'RANGEL FERNANDEZ LEONARDO JOSE','191821112','CRA 25 CALLE 100','856@hotmail.com','2011-02-03',133211,'2011-05-16','907750.00','A'),('2114',3,'ROTHSCHILD VARGAS MICHAEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132165,'2011-02-05','85170.00','A'),('2115',3,'RUIZ GRATEROL INGRID JOHANNA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132958,'2011-05-16','702600.00','A'),('2116',2,'DEARMAS ALBERTO FERNANDO ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150699,'2011-07-19','257500.00','A'),('2117',3,'BOSCAN ARRIETA ERICK HUMBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132958,'2011-07-12','179680.00','A'),('2118',3,'GUILLEN DE TELLES NENCY JOSEFINA','191821112','CRA 25 CALLE 100','56@facebook.com','2011-02-03',132958,'2011-09-07','125900.00','A'),('212',1,'BUSTAMANTE BUSTAMANTE CARLOS ENRIQUE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-26','943260.00','A'),('2120',2,'MARK ANTHONY STUART','191821112','CRA 25 CALLE 100','661@terra.com.co','2011-02-03',127591,'2011-06-26','74600.00','A'),('2122',3,'SCOCOZZA GIOVANNA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',190526,'2011-09-23','284220.00','A'),('2125',3,'CHAVES MOLINA JULIO FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132165,'2011-09-22','295360.00','A'),('2127',3,'BERNARDES DE SOUZA TONIATI VIRGINIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-30','565090.00','A'),('2129',2,'BRIAN DAVIS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-19','78460.00','A'),('213',1,'PAREJO CARLOS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-11','766120.00','A'),('2131',3,'DE OLIVEIRA LOPES REGINALDO LAZARO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-10-05','404910.00','A'),('2132',3,'DE MELO MING AZEVEDO PAULO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-10-05','440370.00','A'),('2137',3,'SILVA JORGE ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-10-05','230570.00','A'),('214',1,'CADENA RICARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-08','840.00','A'),('2142',3,'VIEIRA VEIGA PEDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-30','85330.00','A'),('2144',3,'ESCRIBANO LEONARDA DEL VALLE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',133535,'2011-03-24','941440.00','A'),('2145',3,'RODRIGUEZ MENENDEZ BERNARDO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',148511,'2011-08-02','588740.00','A'),('2146',3,'GONZALEZ COURET DANIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',148511,'2011-08-09','119380.00','A'),('2147',3,'GARCIA SOTO WILLIAM','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',135360,'2011-05-18','830660.00','A'),('2148',3,'MENESES ORELLANA RICARDO TOMAS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132165,'2011-06-13','795200.00','A'),('2149',3,'GUEVARA JUAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-27','483990.00','A'),('215',1,'BELTRAN PINZON JUAN CARLO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-08','705860.00','A'),('2151',2,'LLANES GARRIDO JAVIER ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-30','719750.00','A'),('2152',3,'CHAVARRIA CHAVES RAFAEL ADRIAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132165,'2011-09-20','495720.00','A'),('2153',2,'MILBERT ANDREASPETER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-10','319370.00','A'),('2154',2,'GOMEZ SILVA LOZANO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127300,'2011-05-30','109670.00','A'),('2156',3,'WINTON ROBERT DOUGLAS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',115551,'2011-08-08','622290.00','A'),('2157',2,'ROMERO PIÑA MANUEL GUSTAVO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-05-05','340650.00','A'),('2158',3,'KARWALSKI MATTHEW REECE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117229,'2011-08-29','836380.00','A'),('2159',2,'KIM JUNG SIK ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-08','159950.00','A'),('216',1,'MARTINEZ VALBUENA JOSE ALEJANDRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-25','526750.00','A'),('2160',3,'AGAR ROBERT ALEXANDER','191821112','CRA 25 CALLE 100','81@hotmail.es','2011-02-03',116862,'2011-06-11','290620.00','A'),('2161',3,'IGLESIAS EDGAR ALEXIS','191821112','CRA 25 CALLE 100','645@facebook.com','2011-02-03',131272,'2011-04-04','973240.00','A'),('2163',2,'NOAIN MORENO CECILIA KARIM ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-22','51950.00','A'),('2164',2,'FIGUEROA HEBEL ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-26','276760.00','A'),('2166',5,'FRANDBERG DAN RICHARD VERNER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',134022,'2011-04-06','309480.00','A'),('2168',2,'CONTRERAS LILLO EDUARDO ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-27','389320.00','A'),('2169',2,'BLANCO VALLE RICARDO ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-07-13','355950.00','A'),('2171',2,'BELTRAN ZAVALA JIMI ALFONSO MIGUEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',126674,'2011-08-22','991000.00','A'),('2172',2,'RAMIRO OREGUI JOSE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2011-04-27','119700.00','A'),('2175',2,'FENG PUYO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',302172,'2011-10-07','965660.00','A'),('2176',3,'CLERICI GUIDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',116366,'2011-08-30','522970.00','A'),('2177',1,'SEIJAS GUNTER LUIS MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-02','717890.00','A'),('2178',2,'SHOSHANI MOSHE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-13','20520.00','A'),('218',3,'HUCHICHALEO ARSENDIGA FRANCISCA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-05','690.00','A'),('2181',2,'DOMINGO BARTOLOME LUIS FERNANDO','191821112','CRA 25 CALLE 100','173@terra.com.co','2011-02-03',127591,'2011-04-18','569030.00','A'),('2182',3,'GONZALEZ RIJO JOSE ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-10-02','795610.00','A'),('2183',2,'ANDROVICH MORENO LIZETH LILIAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127300,'2011-10-10','270970.00','A'),('2184',2,'ARREAZA LUGO JESUS ALFREDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-08','968030.00','A'),('2185',2,'NAVEDA CANELON KATHERINE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132775,'2011-09-14','27250.00','A'),('2189',2,'LUGO BEHRENS DENISE SOFIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-08','253980.00','A'),('2190',2,'ERICA ROSE MOLDENHAUVER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-25','175480.00','A'),('2192',2,'SOLORZANO GARCIA ANDREINA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-25','50790.00','A'),('2193',3,'DE LA COSTE MARIA CAROLINA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-26','907640.00','A'),('2194',2,'MARTINEZ DIAZ JUAN JOSE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-08','385810.00','A'),('2195',2,'GALARRAGA ECHEVERRIA DAYEN ALI','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-13','206150.00','A'),('2196',2,'GUTIERREZ RAMIREZ HECTOR JOSÉ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133211,'2011-06-07','873330.00','A'),('2197',2,'LOPEZ GONZALEZ SILVIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127662,'2011-09-01','748170.00','A'),('2198',2,'SEGARES LUTZ JOSE IGNACIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-07','120880.00','A'),('2199',2,'NADER MARTIN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127538,'2011-08-12','359880.00','A'),('22',1,'CARDOZO AMAYA JORGE HUMBERTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-25','908720.00','A'),('2200',3,'NATERA BERMUDEZ OSWALDO JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2010-10-18','436740.00','A'),('2201',2,'COSTA RICARDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',150699,'2011-09-01','104090.00','A'),('2202',5,'GRUNDY VALENZUELA ALAN PATRICK','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-08','210230.00','A'),('2203',2,'MONTENEGRO DANIEL ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-05-26','738890.00','A'),('2204',2,'TAMAI BUNGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-24','63730.00','A'),('2205',5,'VINHAS FORTUNA EDSON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',133535,'2011-09-23','102010.00','A'),('2206',2,'RUIZ ERBS MARIO ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-07-19','318860.00','A'),('2207',2,'VENTURA TINEO MARCEL ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-08','288240.00','A'),('2210',2,'RAMIREZ GUZMAN RICARDO JAIME','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-28','338740.00','A'),('2211',2,'STERNBERG GABRIEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132958,'2011-09-04','18070.00','A'),('2212',2,'MARTELLO ALEJOS ROGER ADOLFO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127443,'2011-06-20','74120.00','A'),('2213',2,'CASTANEDA RAFAEL ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-25','316410.00','A'),('2214',2,'LIMON MARTINEZ WILBERT DE JESUS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128904,'2011-09-19','359690.00','A'),('2215',2,'PEREZ HERNANDEZ MONICA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133211,'2011-05-23','849240.00','A'),('2216',2,'AWAD LOBATO RICARDO SEBASTIAN','191821112','CRA 25 CALLE 100','853@hotmail.com','2011-02-03',127591,'2011-04-12','167100.00','A'),('2217',2,'CEPEDA VANEGAS ENDER ENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132958,'2011-08-22','287770.00','A'),('2218',2,'PEREZ CHIQUIN HECTOR','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132572,'2011-04-13','937580.00','A'),('2220',5,'FRANCO DELGADILLO RONALD FERNANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132775,'2011-09-16','310190.00','A'),('2222',2,'ALCAIDE ALONSO JUAN MIGUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-05-02','455360.00','A'),('2223',3,'BROWNING BENJAMIN MARK','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-06-09','45230.00','A'),('2225',3,'HARWOO BENJAMIN JOEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-09','164620.00','A'),('2226',3,'HOEY TIMOTHY ROSS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-06-09','242910.00','A'),('2227',3,'FERGUSON GARRY','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-28','720700.00','A'),('2228',3,' NORMAN NEVILLE ROBERT','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',288493,'2011-06-29','874750.00','A'),('2229',3,'KUK HYUN CHAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-03-22','211660.00','A'),('223',1,'PINZON PLAZA MARCOS VINICIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-22','856300.00','A'),('2230',3,'SLIPAK NATALIA ANDREA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-07-27','434070.00','A'),('2231',3,'BONELLI MASSIMO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',170601,'2011-07-11','535340.00','A'),('2233',3,'VUYLSTEKE ALEXANDER ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',284647,'2011-09-11','266530.00','A'),('2234',3,'DRESSE ALAIN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',284272,'2011-04-19','209100.00','A'),('2235',3,'PAIRON JEAN LOUIS MARIE RAIMOND','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',284272,'2011-03-03','245940.00','A'),('2236',3,'DEVIANE ACHIM','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',284272,'2010-11-14','602370.00','A'),('2239',3,'DE CANNIERE LOUIS GEORFES HELE MARIE-JOZEF','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',285511,'2011-09-11','993540.00','A'),('2240',1,'ERGO ROBERT','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-28','278270.00','A'),('2241',3,'MYRTES RODRIGUEZ MORGANA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-09-18','410740.00','A'),('2242',3,'BRECHBUEHL HANSRUDOLF','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',249059,'2011-07-27','218900.00','A'),('2243',3,'IVANA SCHLUMPF','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',245206,'2011-04-08','862270.00','A'),('2244',3,'JESSICA JACCART','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',189512,'2011-08-28','654640.00','A'),('2246',3,'PAUSELLI MARIANO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',210050,'2011-09-26','468090.00','A'),('2247',3,'VOLONTEIRO RICCARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-04-13','281230.00','A'),('2248',3,'HOFFMANN ALVIR ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',120773,'2011-08-23','1900.00','A'),('2249',3,'MANTOVANI DANIEL FERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118942,'2011-08-09','165820.00','A'),('225',1,'DUARTE RUEDA JAVIER ALEXANDER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-29','293110.00','A'),('2250',3,'LIMA DA COSTA BRENO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-03-23','823370.00','A'),('2251',3,'TAMBORIN MACIEL MAGALI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-23','619420.00','A'),('2252',3,'BELLO DE MUORA BIANCA','191821112','CRA 25 CALLE 100','969@gmail.com','2011-02-03',118942,'2011-08-03','626970.00','A'),('2253',3,'VINHAS FORTUNA PIETRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',133535,'2011-09-23','276600.00','A'),('2255',3,'BLUMENTHAL JAIRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',117630,'2011-07-20','680590.00','A'),('2256',3,'DOS REIS FILHO ELPIDIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',120773,'2011-08-07','896720.00','A'),('2257',3,'COIMBRA CARDOSO MUNARI FERNANDA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-09','441830.00','A'),('2258',3,'LAZANHA FLAVIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118942,'2011-06-14','519000.00','A'),('2259',3,'LAZANHA FLAVIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118942,'2011-06-14','269480.00','A'),('226',1,'HUERFANO FLOREZ JOHN FAVER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-29','148340.00','A'),('2260',3,'JOVETTA EDILSON','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118941,'2011-09-19','790430.00','A'),('2261',3,'DE OLIVEIRA ANDRE RICARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2011-07-25','143680.00','A'),('2263',3,'MUNDO TEIXEIRA CARVALHO SILVIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118864,'2011-09-19','304670.00','A'),('2264',3,'FERREIRA CINTRA ADRIANO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-04-08','481910.00','A'),('2265',3,'AUGUSTO DE OLIVEIRA MARCOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118685,'2011-08-09','495530.00','A'),('2266',3,'CHEN ROBERTO LUIZ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-03-15','31920.00','A'),('2268',3,'WROBLESKI DIENSTMANN RAQUEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117630,'2011-05-15','269320.00','A'),('2269',3,'MALAGOLA GEDERSON','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118864,'2011-05-30','327540.00','A'),('227',1,'LOPEZ ESCOBAR CARLOS ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-06','862360.00','A'),('2271',3,'GOMES EVANDRO HENRIQUE','191821112','CRA 25 CALLE 100','199@hotmail.es','2011-02-03',118777,'2011-03-24','166100.00','A'),('2273',3,'LANDEIRA FERNANDEZ JESUS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-21','207990.00','A'),('2274',3,'ROSSI RENATO','191821112','CRA 25 CALLE 100','791@hotmail.es','2011-02-03',118777,'2011-09-19','16170.00','A'),('2275',3,'CALMON RANGEL PATRICIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-23','456890.00','A'),('2277',3,'CIFU NETO ROQUE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-04-27','808940.00','A'),('2278',3,'GONCALVES PRETO FRANCISCO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118942,'2011-07-25','336930.00','A'),('2279',3,'JORGE JUNIOR ROBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-05-09','257840.00','A'),('2281',3,'ELENCIUC DEMETRIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-04-20','618510.00','A'),('2283',3,'CUNHA MENDEZ RAFAEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',119855,'2011-07-18','431190.00','A'),('2286',3,'DIAZ LENICE APARECIDA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-05-03','977840.00','A'),('2288',3,'DE CARVALHO SIGEL TATIANA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118777,'2011-07-04','123920.00','A'),('229',1,'GALARZA GIRALDO SERGIO ALDEMAR','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150699,'2011-09-17','746930.00','A'),('2290',3,'ACHOA MORANDI BORGUES SIBELE MARIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118777,'2011-09-12','553890.00','A'),('2291',3,'EPAMINONDAS DE ALMEIDA DELIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-09-22','14080.00','A'),('2293',3,'REIS CASTRO SHANA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118942,'2011-08-03','1430.00','A'),('2294',3,'BERNARDES JUNIOR ARMANDO','191821112','CRA 25 CALLE 100','678@gmail.com','2011-02-03',127591,'2011-08-30','780930.00','A'),('2295',3,'LEMOS DE SOUZA AGUIAR SERGIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-10-03','900370.00','A'),('2296',3,'CARVALHO ADAMS KARIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118942,'2011-08-11','159040.00','A'),('2297',3,'GALLINA SILVANA BRASILEIRA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-23','94110.00','A'),('23',1,'COLMENARES PEDREROS EDUARDO ADOLFO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-02','625870.00','A'),('2300',3,'TAVEIRA DE SIQUEIRA TANIA APARECIDA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-24','443910.00','A'),('2301',3,'DA SIVA LIMA ANDRE LUIS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-23','165020.00','A'),('2302',3,'GALVAO GUSTAVO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118942,'2011-09-12','493370.00','A'),('2303',3,'DA COSTA CRUZ GABRIELA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-07-27','971800.00','A'),('2304',3,'BERNHARD GOTTFRIED RABER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-04-30','378870.00','A'),('2306',3,'ALDANA URIBE PABLO AXEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-05-08','758160.00','A'),('2308',3,'FLORES ALONSO EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-04-26','995310.00','A'),('2309',3,'MADRIGAL MIER Y TERAN LUIS FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-02-23','414650.00','A'),('231',1,'ZAPATA CEBALLOS JUAN MANUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127662,'2011-08-16','430320.00','A'),('2310',3,'GONZALEZ ALVARO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-05-19','87330.00','A'),('2313',3,'MONTES PORTO ANDREA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145135,'2011-09-01','929180.00','A'),('2314',3,'ROCHA SUSUNAGA SERGIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2010-10-18','541540.00','A'),('2315',3,'VASQUEZ CALERO FEDERICO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-22','920160.00','A'),('2317',3,'GONZALEZ FERNANDEZ YUSSEN ALEJANDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-26','120530.00','A'),('2319',3,'ATTIAS WENGROWSKY DAVID','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',150581,'2011-09-07','8580.00','A'),('232',1,'OSPINA ABUCHAIBE ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-07-14','748960.00','A'),('2320',3,'EFRON TOPOROVSKY INES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',116511,'2011-07-15','20810.00','A'),('2321',3,'LUNA PLA DARIO','191821112','CRA 25 CALLE 100','95@terra.com.co','2011-02-03',145135,'2011-09-07','78320.00','A'),('2322',1,'VAZQUEZ DANIELA','191821112','CRA 25 CALLE 100','190@gmail.com','2011-02-03',145135,'2011-05-19','329170.00','A'),('2323',3,'BALBI BALBI JUAN DE DIOS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-08-23','410880.00','A'),('2324',3,'MARROQUÍN FERNANDEZ GELACIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-03-23','66880.00','A'),('2325',3,'VAZQUEZ ZAVALA ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-04-11','101770.00','A'),('2326',3,'SOTO MARTINEZ MARIA ELENA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-23','308200.00','A'),('2328',3,'HERNANDEZ MURILLO RICARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-08-22','253830.00','A'),('233',1,'HADDAD LINERO YEBRAIL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',130608,'2010-06-17','453830.00','A'),('2330',3,'TERMINEL HERNANDEZ DANIELA PATRICIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',190393,'2011-08-15','48940.00','A'),('2331',3,'MIJARES FERNANDEZ MAGDALENA GUADALUPE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145135,'2011-07-31','558440.00','A'),('2332',3,'GONZALEZ LUNA CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',146258,'2011-04-26','645400.00','A'),('2333',3,'DIAZ TORREJON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-05-03','551690.00','A'),('2335',3,'PADILLA GUTIERREZ JESUS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-22','456120.00','A'),('2336',3,'TORRES CORONA JORGE ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-04-11','813900.00','A'),('2337',3,'CASTRO RAMSES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',150581,'2011-07-04','701120.00','A'),('2338',3,'APARICIO VALLEJO RUSSELL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-03-16','63890.00','A'),('2339',3,'ALBOR FERNANDEZ LUIS ARTURO','191821112','CRA 25 CALLE 100','574@gmail.com','2011-02-03',147467,'2011-05-09','216110.00','A'),('234',1,'DOMINGUEZ GOMEZ JUAN CARLOS','191821112','CRA 25 CALLE 100','942@hotmail.com','2011-02-03',127591,'2010-08-22','22260.00','A'),('2342',3,'REY ALEJANDRO','191821112','CRA 25 CALLE 100','110@facebook.com','2011-02-03',127591,'2011-03-04','313330.00','A'),('2343',3,'MENDOZA GONZALES ADRIANA','191821112','CRA 25 CALLE 100','295@yahoo.com','2011-02-03',127591,'2011-03-23','178720.00','A'),('2344',3,'RODRIGUEZ SEGOVIA JESUS ALONSO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2011-07-26','953590.00','A'),('2345',3,'GONZALEZ PELAEZ EDUARDO DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-26','231790.00','A'),('2347',3,'VILLEDA GARCIA DAVID','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',144939,'2011-05-29','795600.00','A'),('2348',3,'FERRER BURGES EMILIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-04-11','83430.00','A'),('2349',3,'NARRO ROBLES LUIS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-03-16','30330.00','A'),('2350',3,'ZALDIVAR UGALDE CARLOS IGNACIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-06-19','901380.00','A'),('2351',3,'VARGAS RODRIGUEZ VALENTE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',146258,'2011-04-26','415910.00','A'),('2354',3,'DEL PIERO FRANCISCO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-05-09','19890.00','A'),('2355',3,'VILLAREAL ANA CRISTINA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-23','211810.00','A'),('2356',3,'GARRIDO FERRAN JORGE ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-22','999370.00','A'),('2357',3,'PEREZ PRECIADO EDMUNDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-22','361450.00','A'),('2358',3,'AGUIRRE VIGNAU DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',150581,'2011-08-21','809110.00','A'),('2359',3,'LOPEZ SESMA TOMAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',146258,'2011-09-14','961200.00','A'),('236',1,'VENTO BETANCOURT LUIS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-03-19','682230.00','A'),('2360',3,'BERNAL MALDONADO GUILLERMO JAVIER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-09-19','378670.00','A'),('2361',3,'GUZMAN DELGADO ALFREDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-22','9770.00','A'),('2362',3,'GUZMAN DELGADO MARTIN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-22','912850.00','A'),('2363',3,'GUSMAND ELGADO JORGE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-22','534910.00','A'),('2364',3,'RENDON BUICK JORGE JOSE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-07-26','936010.00','A'),('2365',3,'HERNANDEZ HERNANDEZ HERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-22','75340.00','A'),('2366',3,'ALVAREZ PAZ PEDRO RAFAEL ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-01-02','568650.00','A'),('2367',3,'MIJARES DE LA BARREDA FERNANDA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-07-31','617240.00','A'),('2368',3,'MARTINEZ LOPEZ MAURICIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-08-24','380250.00','A'),('2369',3,'GAYTAN MILLAN YANERI','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-23','49520.00','A'),('237',1,'BARGUIL ASSIS DAVID ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117460,'2009-09-03','161770.00','A'),('2370',3,'DURAN HEREDIA FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-04-15','106850.00','A'),('2371',3,'SEGURA MIJARES CRISTOBAL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-07-31','385700.00','A'),('2372',3,'TEPOS VALTIERRA ERIK ARTURO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',116345,'2011-09-01','607930.00','A'),('2373',3,'RODRIGUEZ AGUILAR EDMUNDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-05-04','882570.00','A'),('2374',3,'MYSLABODSKI MICHAEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-03-08','589060.00','A'),('2375',3,'HERNANDEZ MIRELES JATNIEL ELIOENAI','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-26','297600.00','A'),('2376',3,'SNELL FERNANDEZ SYNTYHA ROCIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-22','720830.00','A'),('2378',3,'HERNANDEZ EIVET AARON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-26','394200.00','A'),('2379',3,'LOPEZ GARZA JAIME','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-22','837000.00','A'),('238',1,'GARCIA PINO CARLOS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-10','762140.00','A'),('2381',3,'TOSCANO ESTRADA RUBEN ENRIQUE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-22','500940.00','A'),('2382',3,'RAMIREZ HUDSON ROGER SILVESTER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-22','497550.00','A'),('2383',3,'RAMOS JUAN ANTONIO','191821112','CRA 25 CALLE 100','362@yahoo.es','2011-02-03',127591,'2011-08-22','984940.00','A'),('2384',3,'CORTES CERVANTES ALEJANDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145135,'2011-04-11','432020.00','A'),('2385',3,'POZOS ESQUIVEL DAVID','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-09-27','205310.00','A'),('2387',3,'ESTRADA AGUIRRE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-22','36470.00','A'),('2388',3,'GARCIA RAMIREZ RAMON','191821112','CRA 25 CALLE 100','177@yahoo.es','2011-02-03',127591,'2011-08-22','990910.00','A'),('2389',3,'PRUD HOMME GARCIA CUBAS XAVIER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-05-18','845140.00','A'),('239',1,'PINZON ARDILA GUSTAVO ALFONSO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-01','325400.00','A'),('2390',3,'ELIZABETH OCHOA ROJAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-05-21','252950.00','A'),('2391',3,'MEZA ALVAREZ JOSE ALBERTO','191821112','CRA 25 CALLE 100','646@terra.com.co','2011-02-03',144939,'2011-05-09','729340.00','A'),('2392',3,'HERRERA REYES RENATO ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2010-02-28','887860.00','A'),('2393',3,'MURILLO GARIBAY GILBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-08-20','251280.00','A'),('2394',3,'GARCIA JIMENEZ CARLOS MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-10-09','592830.00','A'),('2395',3,'GUAGNELLI MARTINEZ BLANCA MONICA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145184,'2010-10-05','210320.00','A'),('2397',3,'GARCIA CISNEROS RAUL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-07-04','734530.00','A'),('2398',3,'MIRANDA ROMO FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-22','853340.00','A'),('24',1,'ARREGOCES GARZON NELSON ORLANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127783,'2011-08-12','403190.00','A'),('240',1,'ARCINIEGAS GOMEZ ALBERTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-18','340590.00','A'),('2400',3,'HERRERA ABARCA EDUARDO VICENTE ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-22','755620.00','A'),('2403',3,'CASTRO MONCAYO LUIS ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-07-29','617260.00','A'),('2404',3,'GUZMAN DELGADO OSBALDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-22','56250.00','A'),('2405',3,'GARCIA LOPEZ DAVID','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-22','429500.00','A'),('2406',3,'JIMENEZ GAMEZ RAFAEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',245206,'2011-03-23','978720.00','A'),('2407',3,'BECERRA MARTINEZ JUAN PABLO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-08-23','605130.00','A'),('2408',3,'GARCIA MARTINEZ BERNARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-22','89480.00','A'),('2409',3,'URRUTIA RAYAS BALTAZAR','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-22','632020.00','A'),('241',1,'MEDINA AGUILA NESTOR EDUARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-09','726730.00','A'),('2411',3,'VERGARA MENDOZAVICTOR HUGO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-06-15','562230.00','A'),('2412',3,'MENDOZA MEDINA JORGE IGNACIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-22','136170.00','A'),('2413',3,'CORONADO CASTILLO HUGO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',147529,'2011-05-09','994160.00','A'),('2414',3,'GONZALEZ SOTO DELIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-03-23','562280.00','A'),('2415',3,'HERNANDEZ FLORES STEPHANIE REYNA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-23','828940.00','A'),('2416',3,'ABRAJAN GUERRERO MARIA DE LOS ANGELES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-03-23','457860.00','A'),('2417',3,'HERNANDEZ LOERA ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-23','802490.00','A'),('2418',3,'TARÍN LÓPEZ JOSE CARMEN','191821112','CRA 25 CALLE 100','117@gmail.com','2011-02-03',127591,'2011-03-23','638870.00','A'),('242',1,'JULIO NARVAEZ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-05','611890.00','A'),('2420',3,'BATTA MARQUEZ VICTOR ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-08-23','17820.00','A'),('2423',3,'GONZALEZ REYES JUAN JOSE','191821112','CRA 25 CALLE 100','55@yahoo.es','2011-02-03',127591,'2011-07-26','758070.00','A'),('2425',3,'ALVAREZ RODRIGUEZ HIRAM RAMSES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-23','847420.00','A'),('2426',3,'FEMATT HERNANDEZ JESUS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-03-23','164130.00','A'),('2427',3,'GUTIERRES ORTEGA FRANCISCO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-22','278410.00','A'),('2428',3,'JIMENEZ DIAZ JUAN JORGE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-05-13','899650.00','A'),('2429',3,'VILLANUEVA PÉREZ MIGUEL ANGEL','191821112','CRA 25 CALLE 100','656@yahoo.es','2011-02-03',150449,'2011-03-23','663000.00','A'),('243',1,'GOMEZ REYES ANDRES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',126674,'2009-12-20','879240.00','A'),('2430',3,'CERON GOMEZ JOEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-03-21','616070.00','A'),('2431',3,'LOPEZ LINALDI DEMETRIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-05-09','91360.00','A'),('2432',3,'JOSEPH NATHAN PEDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-05-02','608580.00','A'),('2433',3,'CARREÑO PULIDO RUBEN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',147242,'2011-06-19','768810.00','A'),('2434',3,'AREVALO MERCADO CARLOS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-06-12','18320.00','A'),('2436',3,'RAMIREZ QUEZADA ERIKA BELEM','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-03','870930.00','A'),('2438',3,'TATTO PRIETO MIGUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-05-19','382740.00','A'),('2439',3,'LOPEZ AYALA LUIS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-10-08','916370.00','A'),('244',1,'DEVIS EDGAR JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-10-08','560540.00','A'),('2440',3,'HERNANDEZ TOVAR JORGE ENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',144991,'2011-10-02','433650.00','A'),('2441',3,'COLLIARD LOPEZ PETER GEORGE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-09','419120.00','A'),('2442',3,'FLORES CHALA GARY','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-22','794670.00','A'),('2443',3,'FANDIÑO MUÑOZ ZAMIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-07-19','715970.00','A'),('2444',3,'BARROSO VARGAS DIEGO ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-26','195840.00','A'),('2446',3,'CRUZ RAMIREZ JUAN PEDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',145135,'2011-07-14','569050.00','A'),('2447',3,'TIJERINA ACOSTA SERGIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-26','351280.00','A'),('2449',3,'JASSO BARRERA CARLOS GUSTAVO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-08-24','192560.00','A'),('245',1,'LENCHIG KALEDA SERGIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-09-02','165000.00','A'),('2450',3,'GARRIDO PATRON VICTOR','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-09-27','814970.00','A'),('2451',3,'VELASQUEZ GUERRERO RUBEN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-20','497150.00','A'),('2452',3,'CHOI SUNGKYU','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',209494,'2011-08-16','40860.00','A'),('2453',3,'CONTRERAS LOPEZ SERGIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',145135,'2011-08-05','712830.00','A'),('2454',3,'CHAVEZ BATAA OSCAR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',150699,'2011-06-14','441590.00','A'),('2455',3,'LEE JONG HYUN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',131272,'2011-10-10','69460.00','A'),('2456',3,'MEDINA PADILLA CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',146589,'2011-04-20','22530.00','A'),('2457',3,'FLORES CUEVAS DOTNARA LUZ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',145135,'2011-05-17','904260.00','A'),('2458',3,'LIU YONGCHAO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-10-09','453710.00','A'),('2459',3,'CASTRO FERNANDES PORTOCARRERO JOSE MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',195892,'2011-06-14','555790.00','A'),('246',1,'YAMHURE FONSECAN ERNESTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2009-10-03','143350.00','A'),('2460',3,'DUAN WEI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-06-22','417820.00','A'),('2461',3,'ZHU XUTAO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-18','421740.00','A'),('2462',3,'MEI SHUANNIU','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-10-09','855240.00','A'),('2464',3,'VEGA VACA LUIS ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-06-08','489110.00','A'),('2465',3,'TANG YUMING','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',147578,'2011-03-26','412660.00','A'),('2466',3,'VILLEDA GARCIA DAVID','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',144939,'2011-06-07','595990.00','A'),('2467',3,'GARCIA GARZA BLANCA ARMIDA','191821112','CRA 25 CALLE 100','927@hotmail.com','2011-02-03',145135,'2011-05-20','741940.00','A'),('2468',3,'HERNANDEZ MARTINEZ EMILIO JOAQUIN','191821112','CRA 25 CALLE 100','356@facebook.com','2011-02-03',145135,'2011-06-16','921740.00','A'),('2469',3,'WANG FAN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',185363,'2011-08-20','382860.00','A'),('247',1,'ROJAS RODRIGUEZ ALVARO HERNAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-09','221760.00','A'),('2470',3,'WANG FEI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-10-09','149100.00','A'),('2471',3,'BERNAL MALDONADO GUILLERMO JAVIER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118777,'2011-07-26','596900.00','A'),('2472',3,'GUTIERREZ GOMEZ ARTURO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145184,'2011-07-24','537210.00','A'),('2474',3,'LAN TYANYE ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-06-23','865050.00','A'),('2475',3,'LAN SHUZHEN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-23','639240.00','A'),('2476',3,'RODRIGUEZ GONZALEZ CARLOS ARTURO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',144616,'2011-08-09','601050.00','A'),('2477',3,'HAIBO NI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-20','87540.00','A'),('2479',3,'RUIZ RODRIGUEZ GRACIELA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-05-20','910130.00','A'),('248',1,'GONZALEZ RODRIGUEZ ANDRES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-03','678750.00','A'),('2480',3,'OROZCO MACIAS NORMA LETICIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-09-20','647010.00','A'),('2481',3,'MEZA ALVAREZ JOSE ALBERTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',144939,'2011-06-07','504670.00','A'),('2482',3,'RODRIGUEZ FIGUEROA RODRIGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',146308,'2011-04-27','582290.00','A'),('2483',3,'CARREON GUERRA ANA CECILIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',110709,'2011-05-27','397440.00','A'),('2484',3,'BOTELHO BARRETO CARLOS JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',195892,'2011-08-02','240350.00','A'),('2485',3,'CORONADO CASTILLO HUGO','191821112','CRA 25 CALLE 100','209@yahoo.com.mx','2011-02-03',147529,'2011-06-07','9420.00','A'),('2486',3,'DE FUENTES GARZA MARCELO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-18','326030.00','A'),('2487',3,'GONZALEZ DUHART GUTIERREZ HORACIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-05-17','601920.00','A'),('2488',3,'LOPEZ LINALDI DEMETRIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-06-07','31500.00','A'),('2489',3,'CASTRO MONCAYO JOSE LUIS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-06-15','351720.00','A'),('249',1,'CASTRO RIBEROS JULIAN ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-23','728470.00','A'),('2490',3,'SERRALDE LOPEZ MARIA GUADALUPE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-07-25','664120.00','A'),('2491',3,'GARRIDO PATRON VICTOR','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-09-29','265450.00','A'),('2492',3,'BRAUN JUAN NICOLAS ANTONIE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-28','334880.00','A'),('2493',3,'BANKA RAHUL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',141138,'2011-05-02','878070.00','A'),('2494',1,'GARCIA MARTINEZ MARIA VIRGINIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-04-17','385690.00','A'),('2495',1,'MARIA VIRGINIA','191821112','CRA 25 CALLE 100','298@yahoo.com.mx','2011-02-03',127591,'2011-04-16','294220.00','A'),('2496',3,'GOMEZ ZENDEJAS MARIA ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145184,'2011-06-06','314060.00','A'),('2498',3,'MENDEZ MARTINEZ RAUL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145135,'2011-07-10','496040.00','A'),('2499',3,'CARREON GUERRA ANA CECILIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-07-29','417240.00','A'),('2501',3,'OLIVAR ARIAS ISMAEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-06-06','738850.00','A'),('2502',3,'ABOUMRAD NASTA EMILE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-07-26','899890.00','A'),('2503',3,'RODRIGUEZ JIMENEZ ROBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-05-03','282900.00','A'),('2504',3,'ESTADOS UNIDOS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145135,'2011-07-27','714840.00','A'),('2505',3,'SOTO MUÑOZ MARCO GREGORIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-26','725480.00','A'),('2506',3,'GARCIA MONTER ANA OTILIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-10-05','482880.00','A'),('2507',3,'THIRUKONDA VIGNESH','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',126180,'2011-05-02','237950.00','A'),('2508',3,'RAMIREZ REATIAGA LYDA YOANA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',150699,'2011-06-26','741120.00','A'),('2509',3,'SEPULVEDA RODRIGUEZ JESUS ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-26','991730.00','A'),('251',1,'MEJIA PIZANO ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-10','845000.00','A'),('2510',3,'FRANCISCO MARIA DIAS COSTA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',179111,'2011-07-12','735330.00','A'),('2511',3,'TEIXEIRA REGO DE OLIVEIRA TIAGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',179111,'2011-06-14','701430.00','A'),('2512',3,'PHILLIP JAMES','191821112','CRA 25 CALLE 100','766@terra.com.co','2011-02-03',127591,'2011-09-28','301150.00','A'),('2513',3,'ERXLEBEN ROBERT','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',216125,'2011-04-13','401460.00','A'),('2514',3,'HUGHES CONNORRICHARD','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',269033,'2011-06-22','103880.00','A'),('2515',3,'LEBLANC MICHAEL PAUL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',216125,'2011-08-09','314990.00','A'),('2517',3,'DEVINE CHRISTOPHER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',269033,'2011-06-22','371560.00','A'),('2518',3,'WONG BRIAN TEK FUNG','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',126885,'2011-09-22','67910.00','A'),('2519',3,'BIDWALA IRFAN A','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',154811,'2011-03-28','224840.00','A'),('252',1,'JIMENEZ LARRARTE JUAN GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-01','406770.00','A'),('2520',3,'LEE HO YIN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',147578,'2011-08-29','920470.00','A'),('2521',3,'DE MOURA MARTINS NUNO ALEXANDRE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196094,'2011-10-09','927850.00','A'),('2522',3,'DA COSTA GOMES CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',179111,'2011-08-10','877850.00','A'),('2523',3,'HOOGWAERTS PAUL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-02-11','605690.00','A'),('2524',3,'LOPES MARQUES LUIS JOSE MANUEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118942,'2011-09-20','394910.00','A'),('2525',3,'CORREIA CAVACO JOSE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',178728,'2011-10-09','157470.00','A'),('2526',3,'HALL JOHN WILLIAM','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-09','602620.00','A'),('2527',3,'KNIGHT MARTIN GYLES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',113550,'2011-08-29','540670.00','A'),('2528',3,'HINDS THMAS TRISTAN PELLEW','191821112','CRA 25 CALLE 100','337@yahoo.es','2011-02-03',116862,'2011-08-23','895500.00','A'),('2529',3,'CARTON ALAN JOHN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-07-31','855510.00','A'),('253',1,'AZCUENAGA RAMIREZ NICOLAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',298472,'2011-05-10','498840.00','A'),('2530',3,'GHIM CHEOLL HO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-27','591060.00','A'),('2531',3,'PHILLIPS NADIA SULLIVAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-28','388750.00','A'),('2532',3,'CHANG KUKHYUN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-03-22','170560.00','A'),('2533',3,'KANG SEOUNGHYUN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',173192,'2011-08-24','686540.00','A'),('2534',3,'CHUNG BYANG HOON','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',125744,'2011-03-14','921030.00','A'),('2535',3,'SHIN MIN CHUL ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',173192,'2011-08-24','545510.00','A'),('2536',3,'CHOI JIN SUNG','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-15','964490.00','A'),('2537',3,'CHOI SUNGMIN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-27','185910.00','A'),('2538',3,'PARK JAESER ','191821112','CRA 25 CALLE 100','525@terra.com.co','2011-02-03',127591,'2011-09-03','36090.00','A'),('2539',3,'KIM DAE HOON ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',173192,'2011-08-24','622700.00','A'),('254',1,'AVENDAÑO PABON ROLANDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-05-12','273900.00','A'),('2540',3,'LYNN MARIA CRISTINA NORMA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',116862,'2011-09-21','5220.00','A'),('2541',3,'KIM CHINIL JULIAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',147578,'2011-08-27','158030.00','A'),('2543',3,'HALL JOHN WILLIAM','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-09','398290.00','A'),('2544',3,'YOSUKE PERDOMO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',165600,'2011-07-26','668040.00','A'),('2546',3,'AKAGI KAZAHIKO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-26','722510.00','A'),('2547',3,'NELSON JONATHAN GARY','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-09','176570.00','A'),('2548',3,'DUONG HOP BA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',116862,'2011-09-14','715310.00','A'),('2549',3,'CHAO-VILLEGAS NIKOLE TUK HING','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',180063,'2011-04-05','46830.00','A'),('255',1,'CORREA ALVARO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-27','872990.00','A'),('2551',3,'APPELS LAURENT BERNHARD','191821112','CRA 25 CALLE 100','891@hotmail.es','2011-02-03',135190,'2011-08-16','300620.00','A'),('2552',3,'PLAISIER ERIK JAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',289294,'2011-05-23','238440.00','A'),('2553',3,'BLOK HENDRIK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',288552,'2011-03-27','290350.00','A'),('2554',3,'NETTE ANNA STERRE','191821112','CRA 25 CALLE 100','621@yahoo.com.mx','2011-02-03',185363,'2011-07-30','736400.00','A'),('2555',3,'FRIELING HANS ERIC','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',107469,'2011-07-31','810990.00','A'),('2556',3,'RUTTE CORNELIA JANTINE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',143579,'2011-03-30','845710.00','A'),('2557',3,'WALRAVEN PIETER PAUL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',289294,'2011-07-29','795620.00','A'),('2558',3,'TREBES LAURENS JOHANNES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-11-22','440940.00','A'),('2559',3,'KROESE ROLANDWILLEBRORDUSMARIA','191821112','CRA 25 CALLE 100','188@facebook.com','2011-02-03',110643,'2011-06-09','817860.00','A'),('256',1,'FARIAS GARCIA REINI','191821112','CRA 25 CALLE 100','615@hotmail.com','2011-02-03',127591,'2011-03-05','543220.00','A'),('2560',3,'VAN DER HEIDE HENDRIK','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',291042,'2011-09-04','766460.00','A'),('2561',3,'VAN DEN BERG DONAR ALEXANDER GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',190393,'2011-07-13','378720.00','A'),('2562',3,'GODEFRIDUS JOHANNES ROPS ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127622,'2011-10-02','594240.00','A'),('2564',3,'WAT YOK YIENG','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',287095,'2011-03-22','392370.00','A'),('2565',3,'BUIS JACOBUS NICOLAAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-20','456810.00','A'),('2567',3,'CHIPPER FRANCIUSCUS NICOLAAS ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',291599,'2011-07-28','164300.00','A'),('2568',3,'ONNO ROUKENS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-11-28','500670.00','A'),('2569',3,'PETRUS MARCELLINUS STEPHANUS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',150699,'2011-06-25','10430.00','A'),('2571',3,'VAN VOLLENHOVEN IVO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-08','719370.00','A'),('2572',3,'LAMBOOIJ BART','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-09-20','946480.00','A'),('2573',3,'LANSER MARIANA PAULINE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',289294,'2011-04-09','574270.00','A'),('2575',3,'KLERKEN JOHANNES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',286101,'2011-05-24','436840.00','A'),('2576',3,'KRAS JACOBUS NICOLAAS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',289294,'2011-09-26','88410.00','A'),('2577',3,'FUCHS MICHAEL JOSEPH','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',185363,'2011-07-30','131530.00','A'),('2578',3,'BIJVANK ERIK JAN WILLEM','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-04-11','392410.00','A'),('2579',3,'SCHMIDT FRANC ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',106742,'2011-09-11','567470.00','A'),('258',1,'SOTO GONZALEZ FRANCISCO LAZARO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',116511,'2011-05-07','856050.00','A'),('2580',3,'VAN DER KOOIJ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',291277,'2011-07-10','660130.00','A'),('2581',2,'KRIS ANDRE GEORGES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2011-07-26','598240.00','A'),('2582',3,'HARDING LUIS ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',263813,'2011-05-08','10820.00','A'),('2583',3,'ROLLI GUY JEAN ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-05-31','259370.00','A'),('2584',3,'NIETO PARRA SEBASTIAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',263813,'2011-07-04','264400.00','A'),('2585',3,'LASTRA CHAVEZ PABLO ARMANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',126674,'2011-05-25','543890.00','A'),('2586',1,'ZAIDA MAYERLY','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-05-05','926250.00','A'),('2587',1,'OSWALDO SOLORZANO CONTRERAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-28','999590.00','A'),('2588',3,'ZHOU XUAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-18','219200.00','A'),('2589',3,'HUANG ZHENGQUN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-18','97230.00','A'),('259',1,'GALARZA NARANJO JAIME RENE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-18','988830.00','A'),('2590',3,'HUANG ZHENQUIN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-18','828560.00','A'),('2591',3,'WEIDEN MULLER AMURER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-29','851110.00','A'),('2593',3,'OESTERHAUS CORNELIA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',256231,'2011-03-29','295960.00','A'),('2594',3,'RINTALAHTI JUHA HENRIK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-23','170220.00','A'),('2597',3,'VERWIJNEN JONAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',289697,'2011-02-03','638040.00','A'),('2598',3,'SHAW ROBERT','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',157414,'2011-07-10','273550.00','A'),('2599',3,'MAKINEN TIMO JUHANI','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',196234,'2011-09-13','453600.00','A'),('260',1,'RIVERA CAÑON JOSE EDWARD','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127538,'2011-09-19','375990.00','A'),('2600',3,'HONKANIEMI ARTO OLAVI','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',301387,'2011-09-06','447380.00','A'),('2601',3,'DAGG JAMIE MICHAEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',216125,'2011-08-09','876080.00','A'),('2602',3,'BOLAND PATRICK CHARLES ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',216125,'2011-09-14','38260.00','A'),('2603',2,'ZULEYKA JERRYS RIVERA MENDOZA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',150347,'2011-03-27','563050.00','A'),('2604',3,'DELGADO SEQUIRA FERRAO JOSE PEDRO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188228,'2011-08-16','700460.00','A'),('2605',3,'YORRO LORA EDGAR MANUEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127689,'2011-06-17','813180.00','A'),('2606',3,'CARRASCO RODRIGUEZQCARLOS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127689,'2011-06-17','964520.00','A'),('2607',30,'ORJUELA VELASQUEZ JULIANA MARIA','191821112','CRA 25 CALLE 100','372@terra.com.co','2011-02-03',132775,'2011-09-01','383070.00','A'),('2608',3,'DUQUE DUTRA LUIS EDUARDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118942,'2011-07-12','21780.00','A'),('261',1,'MURCIA MARQUEZ NESTOR JAVIER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-19','913480.00','A'),('2610',3,'NGUYEN HUU KHUONG','191821112','CRA 25 CALLE 100','457@facebook.com','2011-02-03',132958,'2011-05-07','733120.00','A'),('2611',3,'NGUYEN VAN LAP','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-05-07','786510.00','A'),('2612',3,'PHAM HUU THU','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-05-07','733200.00','A'),('2613',3,'DANG MING CUONG','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132958,'2011-05-07','306460.00','A'),('2614',3,'VU THI HONG HANH','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132958,'2011-05-07','332710.00','A'),('2615',3,'CHAU TANG LANG','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-05-07','744190.00','A'),('2616',3,'CHU BAN THING','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132958,'2011-05-07','722800.00','A'),('2617',3,'NGUYEN QUANG THU','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132958,'2011-05-07','381420.00','A'),('2618',3,'TRAN THI KIM OANH','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-05-07','738690.00','A'),('2619',3,'NGUYEN VAN VINH','191821112','CRA 25 CALLE 100','422@yahoo.com.mx','2011-02-03',132958,'2011-05-07','549210.00','A'),('262',1,'ABDULAZIS ELNESER KHALED','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-27','439430.00','A'),('2620',3,'NGUYEN XUAN VY','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132958,'2011-05-07','529950.00','A'),('2621',3,'HA MANH HOA','191821112','CRA 25 CALLE 100','439@gmail.com','2011-02-03',132958,'2011-05-07','2160.00','A'),('2622',3,'ZAFIROPOULO STEVEN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-25','420930.00','A'),('2623',3,'ZAFIROPOULO ANA I','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-25','98170.00','A'),('2624',3,'TEMIGTERRA MASSIMILIANO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',210050,'2011-09-26','228070.00','A'),('2625',3,'CASSES TRINDADE HELGIO HENRIQUE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118402,'2011-09-13','845850.00','A'),('2626',3,'ASCOLI MASTROENI MARCO ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',120773,'2011-09-07','545010.00','A'),('2627',3,'MONTEIRO SOARES MARCOS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',120773,'2011-07-18','187530.00','A'),('2629',3,'HALL ALVARO AUGUSTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',120773,'2011-08-02','950450.00','A'),('2631',3,'ANDRADE CATUNDA RAFAEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',120773,'2011-08-23','370860.00','A'),('2632',3,'MAGALHAES MAYRA ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118767,'2011-08-23','320960.00','A'),('2633',3,'SPREAFICO MIRIAM ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118587,'2011-08-23','492220.00','A'),('2634',3,'GOMES FERREIRA HELIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',125812,'2011-08-23','498220.00','A'),('2635',3,'FERNANDES SENNA PIRES SERGIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-10-05','14460.00','A'),('2636',3,'BALESTRO FLORIANO FABIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',120773,'2011-08-24','577630.00','A'),('2637',3,'CABANA DE QUEIROZ ANDRADE ALAXANDRE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-23','844780.00','A'),('2638',3,'DALBOSCO CARLA','191821112','CRA 25 CALLE 100','380@yahoo.com.mx','2011-02-03',127591,'2011-06-30','491010.00','A'),('264',1,'ROMERO MONTOYA NICOLAY ENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-13','965220.00','A'),('2640',3,'BILLINI CRUZ RICARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',144215,'2011-03-27','130530.00','A'),('2641',3,'VASQUES ARIAS DAVID','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',144509,'2011-08-19','890500.00','A'),('2642',3,'ROJAS VOLQUEZ GLADYS MICHELLE','191821112','CRA 25 CALLE 100','852@gmail.com','2011-02-03',144215,'2011-07-25','60930.00','A'),('2643',3,'LLANEZA GIL JUAN RAFAELMO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',144215,'2011-07-08','633120.00','A'),('2646',3,'AVILA PEROZO IANKEL JACOB','191821112','CRA 25 CALLE 100','318@hotmail.com','2011-02-03',144215,'2011-09-03','125600.00','A'),('2647',3,'REGULAR EDUARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-19','583540.00','A'),('2648',3,'CORONADO BATISTA JOSE ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-19','540910.00','A'),('2649',3,'OLIVIER JOSE VICTOR','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',144509,'2011-08-19','953910.00','A'),('2650',3,'YOO HOE TAEK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',145135,'2011-08-25','146820.00','A'),('266',1,'CUECA RODRIGUEZ CARLOS ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-22','384280.00','A'),('267',1,'NIETO ALVARADO ARMANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2008-04-28','553450.00','A'),('269',1,'LEAL HOLGUIN FRANCISCO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-25','411700.00','A'),('27',1,'MORENO MORENO CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2009-09-15','995620.00','A'),('270',1,'CANO IBAÑES JUAN FELIPE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-03','215260.00','A'),('271',1,'RESTREPO HERRAN ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132775,'2011-04-18','841220.00','A'),('272',3,'RIOS FRANCISCO JOSE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',199862,'2011-03-24','560300.00','A'),('273',1,'MADERO LORENZANA NICOLAS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-03','277850.00','A'),('274',1,'GOMEZ GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-09-24','708350.00','A'),('275',1,'CONSUEGRA ARENAS ANDRES MAURICIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-09','708210.00','A'),('276',1,'HURTADO ROJAS NICOLAS','191821112','CRA 25 CALLE 100','463@yahoo.com.mx','2011-02-03',127591,'2011-09-07','416000.00','A'),('277',1,'MURCIA BAQUERO MARCO ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-02','955370.00','A'),('2773',3,'TAKUBO KAORI','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',165753,'2011-05-12','872390.00','A'),('2774',3,'OKADA MAKOTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',165753,'2011-06-19','921480.00','A'),('2775',3,'TAKEDA AKIO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',21062,'2011-06-19','990250.00','A'),('2776',3,'KOIKE WATARU ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',165753,'2011-06-19','186800.00','A'),('2777',3,'KUBO SHINEI','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',165753,'2011-02-13','963230.00','A'),('2778',3,'KANNO YONEZO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',165600,'2011-07-26','255770.00','A'),('278',3,'PARENT ELOIDE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',267980,'2011-05-01','528840.00','A'),('2781',3,'SUNADA MINORU ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',165753,'2011-06-19','724450.00','A'),('2782',3,'INOUE KASUYA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-22','87150.00','A'),('2783',3,'OTAKE NOBUTOSHI','191821112','CRA 25 CALLE 100','208@facebook.com','2011-02-03',127591,'2011-06-11','262380.00','A'),('2784',3,'MOTOI KEN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',165753,'2011-06-19','50470.00','A'),('2785',3,'TANAKA KIYOTAKA ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',165753,'2011-06-19','465210.00','A'),('2787',3,'YUMIKOPERDOMO','191821112','CRA 25 CALLE 100','600@yahoo.es','2011-02-03',165600,'2011-07-26','477550.00','A'),('2788',3,'FUKUSHIMA KENZO','191821112','CRA 25 CALLE 100','599@gmail.com','2011-02-03',156960,'2011-05-30','863860.00','A'),('2789',3,'GELGIN LEVENT NURI','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-26','886630.00','A'),('279',1,'AVIATUR S. A.','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-02','778110.00','A'),('2791',3,'GELGIN ENIS ENRE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-26','547940.00','A'),('2792',3,'PAZ SOTO LUBRASCA MARIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',143954,'2011-06-27','215000.00','A'),('2794',3,'MOURAD TAOUFIKI','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-13','511000.00','A'),('2796',3,'DASTUS ALAIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',218656,'2011-05-29','774010.00','A'),('2797',3,'MCDONALD MICHAEL LORNE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',269033,'2011-07-19','85820.00','A'),('2799',3,'KLESO MICHAEL QUENTIN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',269033,'2011-07-26','277950.00','A'),('28',1,'GONZALEZ ACUÑA EDGAR MAURICIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-09-19','531710.00','A'),('280',3,'NEME KARIM CHAIBAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',135967,'2010-05-02','304040.00','A'),('2800',3,'CLERK CHARLES ALEXANDER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',244158,'2011-07-26','68490.00','A'),('2801',3,'BURRIS MAURICE STEWARD','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-27','508600.00','A'),('2802',1,'PINCHEN CLAIRE ELAINE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',216125,'2011-04-13','337530.00','A'),('2803',3,'LETTNER EVA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',231224,'2011-09-20','161860.00','A'),('2804',3,'CANUEL LUCIE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',146258,'2011-09-20','796710.00','A'),('2805',3,'IGLESIAS CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',216125,'2011-08-02','497980.00','A'),('2806',3,'PAQUIN JEAN FRANCOIS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',269033,'2011-03-27','99760.00','A'),('2807',3,'FOURNIER DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',228688,'2011-05-19','4860.00','A'),('2808',3,'BILODEAU MARTIN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-13','725030.00','A'),('2809',3,'KELLNER PETER WILLIAM','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',130757,'2011-07-24','610570.00','A'),('2810',3,'ZAZULAK INGRID ROSEMARIE','191821112','CRA 25 CALLE 100','683@facebook.com','2011-02-03',240550,'2011-09-11','877770.00','A'),('2811',3,'RUCCI JHON MARIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',285188,'2011-05-10','557130.00','A'),('2813',3,'JONCAS MARC','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',33265,'2011-03-21','90360.00','A'),('2814',3,'DUCHARME ERICK','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-03-29','994750.00','A'),('2816',3,'BAILLOD THOMAS DAVID ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',239124,'2010-10-20','529130.00','A'),('2817',3,'MARTINEZ SORIA JOSE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',289697,'2011-09-06','537630.00','A'),('2818',3,'TAMARA RABER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-30','100750.00','A'),('2819',3,'BURGI VINCENT EMANUEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',245206,'2011-04-20','890860.00','A'),('282',1,'HUESPED ASISTENTE A LA CONVENCION DE LA DIAN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2009-06-24','17160.00','A'),('2820',3,'ROBLES TORRALBA IVAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',238949,'2011-05-16','152030.00','A'),('2821',3,'CONSUEGRA MARIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-06','87600.00','A'),('2822',3,'CELMA ADROVER LAIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',190393,'2011-03-23','981880.00','A'),('2823',3,'ALVAREZ JUAN PABLO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150699,'2011-06-20','646610.00','A'),('2824',3,'VARGAS WOODROFFE FRANCISCO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',157414,'2011-06-22','287410.00','A'),('2825',3,'GARCIA GUILLEN VICENTE LUIS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',144215,'2011-08-19','497230.00','A'),('2826',3,'GOMEZ GARCIA DIAMANTES PATRICIA MARIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',286785,'2011-09-22','623930.00','A'),('2827',3,'PEREZ IGLESIAS BIBIANA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-09-30','627940.00','A'),('2830',3,'VILLALONGA MORENES MARIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',169679,'2011-05-29','474910.00','A'),('2831',3,'REY LOPEZ DAVID','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',150699,'2011-08-03','7380.00','A'),('2832',3,'HOYO APARICIO JESUS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',116511,'2011-09-19','612180.00','A'),('2836',3,'GOMEZ GARCIA LOPEZ CARLOS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',150699,'2011-09-21','277540.00','A'),('2839',3,'GALIMERTI MARCO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',235197,'2011-08-28','156870.00','A'),('2840',3,'BAROZZI GIUSEPE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',231989,'2011-05-25','609500.00','A'),('2841',3,'MARIAN RENATO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-12','576900.00','A'),('2842',3,'FAENZA CARLO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',126180,'2011-05-19','55990.00','A'),('2843',3,'PESOLILLO CARMINE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',203162,'2011-06-26','549230.00','A'),('2844',3,'CHIODI FRANCESCO MARIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',199862,'2011-09-10','578210.00','A'),('2845',3,'RUTA MARIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-06-19','243350.00','A'),('2846',3,'BAZZONI MARINO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',101518,'2011-05-03','482140.00','A'),('2848',3,'LAGASIO LEONARDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',231989,'2011-05-04','956670.00','A'),('2849',3,'VIERA DA CUNHA PAULO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',190393,'2011-04-05','741520.00','A'),('2850',3,'DAL BEN DENIS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',116511,'2011-05-26','837590.00','A'),('2851',3,'GIANELLI HERIBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',233927,'2011-05-01','963400.00','A'),('2852',3,'JUSTINO DA SILVA DJAMIR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-04-08','304200.00','A'),('2853',3,'DIPASQUUALE GAETANO','191821112','CRA 25 CALLE 100','574@terra.com.co','2011-02-03',172888,'2011-07-11','630830.00','A'),('2855',3,'CURI MAURO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',199862,'2011-06-19','315160.00','A'),('2856',3,'DI DIO MARCO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-20','851210.00','A'),('2857',3,'ROBERTI MENDONCA CAIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-11','310580.00','A'),('2859',3,'RAMOS MORENO DE SOUZA ANDRE ','191821112','CRA 25 CALLE 100','133@facebook.com','2011-02-03',118777,'2011-09-24','64540.00','A'),('286',8,'INEXMODA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-06-21','50150.00','A'),('2860',3,'JODJAHN DE CARVALHO FLAVIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2011-06-27','324950.00','A'),('2862',3,'LAGASIO LEONARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',231989,'2011-07-04','180760.00','A'),('2863',3,'MOON SUNG RIUL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-08','610440.00','A'),('2865',3,'VAIDYANATHAN VIKRAM','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-11','718220.00','A'),('2866',3,'NARAYANASWAMY RAMSUNDAR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',73079,'2011-10-02','61390.00','A'),('2867',3,'VADADA VENKATA RAMESH KUMAR','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-10','152300.00','A'),('2868',3,'RAMA KRISHNAN ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-10','577300.00','A'),('2869',3,'JALAN PRASHANT','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',122035,'2011-05-02','429600.00','A'),('2871',3,'CHANDRASEKAR VENKAT','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',112862,'2011-06-27','791800.00','A'),('2872',3,'CUMBAKONAM SWAMINATHAN SUBRAMANIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-11','710650.00','A'),('288',8,'BCD TRAVEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-23','645390.00','A'),('289',3,'EMBAJADA ARGENTINA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'1970-02-02','749440.00','A'),('290',3,'EMBAJADA DE BRASIL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-11-16','811030.00','A'),('293',8,'ONU','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-09-19','584810.00','A'),('299',1,'BLANDON GUZMAN JHON JAIRO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-01-13','201740.00','A'),('304',3,'COHEN DANIEL DYLAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',286785,'2010-11-17','184850.00','A'),('306',1,'CINDU ANDINA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2009-06-11','899230.00','A'),('31',1,'GARRIDO LEONARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127662,'2010-09-12','801450.00','A'),('310',3,'CORPORACION CLUB EL NOGAL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2010-08-27','918760.00','A'),('314',3,'CHAWLA AARON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-04-08','295840.00','A'),('317',3,'BAKER HUGHES','191821112','CRA 25 CALLE 100','694@hotmail.com','2011-02-03',127591,'2011-04-03','211990.00','A'),('32',1,'PAEZ SEGURA JOSE ANTONIO','191821112','CRA 25 CALLE 100','675@gmail.com','2011-02-03',129447,'2011-08-22','717340.00','A'),('320',1,'MORENO PAEZ FREDDY ALEXANDER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-31','971670.00','A'),('322',1,'CALDERON CARDOZO GASTON EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-10-05','990640.00','A'),('324',1,'ARCHILA MERA ALFREDOMANUEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-22','77200.00','A'),('326',1,'MUÑOZ AVILA HERNEY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-11-10','550920.00','A'),('327',1,'CHAPARRO CUBILLOS FABIAN ANDRES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-15','685080.00','A'),('329',1,'GOMEZ LOPEZ JUAN SEBASTIAN','191821112','CRA 25 CALLE 100','970@yahoo.com','2011-02-03',127591,'2011-03-20','808070.00','A'),('33',1,'MARTINEZ MARIÑO HENRY HERNAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-04-20','182370.00','A'),('330',3,'MAPSTONE NAOMI LEA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',122035,'2010-02-21','722380.00','A'),('332',3,'ROSSI BURRI NELLY','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132165,'2010-05-10','771210.00','A'),('333',1,'AVELLANEDA OVIEDO JUAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-25','293060.00','A'),('334',1,'SUZA FLOREZ JUAN PABLO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-13','151650.00','A'),('335',1,'ESGUERRA ALVARO ANDRES','191821112','CRA 25 CALLE 100','11@facebook.com','2011-02-03',127591,'2011-09-10','879080.00','A'),('337',3,'DE LA HARPE MARTIN CARAPET WALTER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-27','64960.00','A'),('339',1,'HERNANDEZ ACOSTA SERGIO ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',129499,'2011-06-22','322570.00','A'),('340',3,'ZARAMA DE LA ESPRIELLA MIGUEL PATRICIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-27','102360.00','A'),('342',1,'CABRERA VASQUEZ JUAN PABLO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-01','413440.00','A'),('343',3,'RICHARDSON BEN MARRIS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',286785,'2010-05-18','434890.00','A'),('344',1,'OLARTE PINZON MIGUEL FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-30','934140.00','A'),('345',1,'SOLER SEBASTIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2011-04-20','366020.00','A'),('346',1,'PRIETO JUAN ESTEBAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-07-12','27690.00','A'),('349',1,'BARRERO VELASCO DAVID','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-01','472850.00','A'),('35',1,'VELASQUEZ RAMOS JUAN MANUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-13','251940.00','A'),('350',1,'RANGEL GARCIA SERGIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-03-20','7880.00','A'),('353',1,'ALVAREZ ACEVEDO JOHN FREDDY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-16','540070.00','A'),('354',1,'VILLAMARIN HOME WILMAR ALFREDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-09-19','458810.00','A'),('355',3,'SLUCHIN NAAMAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',263813,'2010-12-01','673830.00','A'),('357',1,'BULLA BERNAL LUIS ERNESTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-06-14','942160.00','A'),('358',1,'BRACCIA AVILA GIANCARLO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-01','732620.00','A'),('359',1,'RODRIGUEZ PINTO RAUL DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-24','836600.00','A'),('36',1,'MALDONADO ALVAREZ JAIRO ASDRUBAL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127300,'2011-06-19','980270.00','A'),('362',1,'POMBO POLANCO JUAN BERNARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-18','124130.00','A'),('363',1,'CARDENAS SUAREZ CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127662,'2011-09-01','372920.00','A'),('364',1,'RIVERA MAZO JOSE DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-06-10','492220.00','A'),('365',1,'LEDERMAN CORDIKI JONATHAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-12-03','342340.00','A'),('367',1,'BARRERA MARTINEZ LUIS CARLOS','191821112','CRA 25 CALLE 100','35@yahoo.com.mx','2011-02-03',127591,'2011-05-24','148130.00','A'),('368',1,'SEPULVEDA RAMIREZ DANIEL MARCELO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-31','35560.00','A'),('369',1,'QUINTERO DIAZ WILSON ASDRUBAL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-24','733430.00','A'),('37',1,'RESTREPO SUAREZ HENRY BERNARDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2011-07-25','145540.00','A'),('370',1,'ROJAS YARA WILLMAR ARLEY','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-12-03','560450.00','A'),('371',3,'CARVER LOUISE EMILY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',286785,'2010-10-07','601980.00','A'),('372',3,'VINCENT DAVID','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',286785,'2011-03-06','328540.00','A'),('374',1,'GONZALEZ DELGADO MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-08-18','198260.00','A'),('375',1,'PAEZ SIMON','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-06-25','480970.00','A'),('376',1,'CADOSCH DELMAR ELIE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-10-07','810080.00','A'),('377',1,'HERRERA VASQUEZ DANIEL EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-06-30','607460.00','A'),('378',1,'CORREAL ROJAS RONALD','191821112','CRA 25 CALLE 100','269@facebook.com','2011-02-03',127591,'2011-07-16','607080.00','A'),('379',1,'VOIDONNIKOLAS MUÑOS PANAGIOTIS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-27','213010.00','A'),('38',1,'CANAL ROJAS MAURICIO HERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-05-29','786900.00','A'),('380',1,'DIAZ ECHEVERRI JUAN DAVID ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-20','243800.00','A'),('381',1,'CIFUENTES MARIN HERNANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-26','579960.00','A'),('382',3,'PAXTON LUCINDA HARRIET','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',107159,'2011-05-23','168420.00','A'),('384',3,'POYNTON BRIAN GEORGE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',286785,'2011-03-20','5790.00','A'),('385',3,'TERMIGNONI ADRIANO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-01-14','722320.00','A'),('386',3,'CARDWELL PAULA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-02-17','594230.00','A'),('389',1,'FONCECA MARTINEZ MIGUEL ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-25','778680.00','A'),('39',1,'GARCIA SUAREZ WILLIAM ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-25','497880.00','A'),('390',1,'GUERRERO NELSON','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-12-03','178650.00','A'),('391',1,'VICTORIA PENA FERNANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-22','557200.00','A'),('392',1,'VAN HISSENHOVEN FERRERO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-13','250060.00','A'),('393',1,'CACERES ORDUZ JUAN GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-28','578690.00','A'),('394',1,'QUINTERO ALVARO FELIPE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-17','143270.00','A'),('395',1,'ANZOLA PEREZ CARLOSDAVID','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-04','980300.00','A'),('397',1,'LLOREDA ORTIZ CARLOS JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-27','417470.00','A'),('398',1,'GONZALES LONDOÑO SEBASTIAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-06-19','672310.00','A'),('4',1,'LONDOÑO DOMINGUEZ ERNESTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-05','324610.00','A'),('40',1,'MORENO ANGULO ORLANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-01','128690.00','A'),('400',8,'TRANSELCA .A','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-04-14','528930.00','A'),('403',1,'VERGARA MURILLO JUAN FERNANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-04','42900.00','A'),('405',1,'CAPERA CAPERA HARRINSON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127799,'2011-06-12','961000.00','A'),('407',1,'MORENO MORA WILLIAM EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-22','872780.00','A'),('408',1,'HIGUERA ROA NICOLAS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-03-28','910430.00','A'),('409',1,'FORERO CASTILLO OSCAR ALEJANDRO','191821112','CRA 25 CALLE 100','988@terra.com.co','2011-02-03',127591,'2011-07-23','933810.00','A'),('410',1,'LOPEZ MURCIA JULIAN DANIEL','191821112','CRA 25 CALLE 100','399@facebook.com','2011-02-03',127591,'2011-08-08','937790.00','A'),('411',1,'ALZATE JOHN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-09-09','887490.00','A'),('412',1,'GONZALES GONZALES ORLANDO ANDREY','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-30','624080.00','A'),('413',1,'ESCOLANO VALENTIN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-05','457930.00','A'),('414',1,'JARAMILLO RODRIGUEZ JUAN CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-12','417420.00','A'),('415',1,'GARCIA MUÑOZ DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-10-02','713300.00','A'),('416',1,'PIÑEROS ARENAS JUAN DAVID','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-10-17','314260.00','A'),('417',1,'ORTIZ ARROYAVE ANDRES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-05-21','431370.00','A'),('418',1,'BAYONA BARRIENTOS JEAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-12','214090.00','A'),('419',1,'AGUDELO VASQUEZ JUAN FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-08-30','776360.00','A'),('420',1,'CALLE DANIEL CJ PRODUCCIONES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-11-04','239500.00','A'),('422',1,'CANO BETANCUR ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-08-20','623620.00','A'),('423',1,'CALDAS BARRETO LUZ MIREYA','191821112','CRA 25 CALLE 100','991@facebook.com','2011-02-03',127591,'2011-05-22','512840.00','A'),('424',1,'SIMBAQUEBA JOSE ERNESTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-25','693320.00','A'),('425',1,'DE SILVESTRE CALERO LUIS GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-18','928110.00','A'),('426',1,'ZORRO PERALTA YEZID','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-25','560560.00','A'),('428',1,'SUAREZ OIDOR DARWIN LEONARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',131272,'2011-09-05','410650.00','A'),('429',1,'GIRAL CARRILLO LUIS ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-04-13','997850.00','A'),('43',1,'MARULANDA VALENCIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-17','365550.00','A'),('430',1,'CORDOBA GARCES JUAN PABLO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-18','757320.00','A'),('431',1,'ARIAS TAMAYO DIEGO MAURICIO','191821112','CRA 25 CALLE 100','36@yahoo.com','2011-02-03',127591,'2011-09-05','793050.00','A'),('432',1,'EICHMANN PERRET MARC WILLY','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-22','693270.00','A'),('433',1,'DIAZ DANIEL ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2008-09-18','87200.00','A'),('435',1,'FACCINI GONZALEZ HERMANN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2009-01-08','519420.00','A'),('436',1,'URIBE DUQUE FELIPE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-28','528470.00','A'),('437',1,'TAVERA GAONA GABREL LEAL','191821112','CRA 25 CALLE 100','280@terra.com.co','2011-02-03',127591,'2011-04-28','84120.00','A'),('438',1,'ORDOÑEZ PARIS FERNANDO MAURICIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150699,'2011-09-26','835170.00','A'),('439',1,'VILLEGAS ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-19','923520.00','A'),('44',1,'MARTINEZ PEDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-08-13','738750.00','A'),('440',1,'MARTINEZ RUEDA JUAN CARLOS','191821112','CRA 25 CALLE 100','805@hotmail.es','2011-02-03',127591,'2011-04-07','112050.00','A'),('441',1,'ROLDAN JUAN CARLOS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-05-25','789720.00','A'),('442',1,'PEREZ BRANDWAYN ELIYAU MOISES','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-10-20','612450.00','A'),('443',1,'VALLEJO TORO JUAN DIEGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128579,'2011-08-16','693080.00','A'),('444',1,'TORRES CABRERA EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-03-19','628070.00','A'),('445',1,'MERINO MEJIA GERMAN ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-28','61100.00','A'),('447',1,'GOMEZ GOMEZ JUAN CARLOS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-08','923070.00','A'),('448',1,'RAUSCH CHEHEBAR STEVEN JOSEPH','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-09-27','351540.00','A'),('449',1,'RESTREPO TRUCCO ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-28','988500.00','A'),('45',1,'GUTIERREZ JARAMILLO CARLOS MARIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',150699,'2011-08-22','597090.00','A'),('450',1,'GOLDSTEIN VAIDA ELI JACK','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-11','887860.00','A'),('451',1,'OLEA PINEDA EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-10','473800.00','A'),('452',1,'JORGE OROZCO','191821112','CRA 25 CALLE 100','503@hotmail.es','2011-02-03',127591,'2011-06-02','705410.00','A'),('454',1,'DE LA TORRE GOMEZ GERMAN ERNESTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-03-03','411990.00','A'),('456',1,'MADERO ARIAS JUAN PABLO','191821112','CRA 25 CALLE 100','452@hotmail.es','2011-02-03',127591,'2011-08-22','479090.00','A'),('457',1,'GOMEZ MACHUCA ALVARO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-08-12','166430.00','A'),('458',1,'MENDIETA TOBON DANIEL RICARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-08','394880.00','A'),('459',1,'VILLADIEGO CORTINA JAVIER TOMAS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-26','475110.00','A'),('46',1,'FERRUCHO ARCINIEGAS JUAN CARLOS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-06','769220.00','A'),('460',1,'DERESER HARTUNG ERNESTO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-12-25','190900.00','A'),('461',1,'RAMIREZ PENA ALEJANDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-06-25','529190.00','A'),('463',1,'IREGUI REYES LUIS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-07','778590.00','A'),('464',1,'PINTO GOMEZ MAURICIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132775,'2010-06-24','673270.00','A'),('465',1,'RAMIREZ RAMIREZ FERNANDO ALONSO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127799,'2011-10-01','30570.00','A'),('466',1,'BERRIDO TRUJILLO JORGE HENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132775,'2011-10-06','133040.00','A'),('467',1,'RIVERA CARVAJAL RAFAEL HUMBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-20','573500.00','A'),('468',3,'FLOREZ PUENTES IVAN ALFONSO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-05-08','468380.00','A'),('469',1,'BALLESTEROS FLOREZ IVAN DARIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-06-02','621410.00','A'),('47',1,'MARIN FLOREZ OMAR EDUARDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-30','54840.00','A'),('470',1,'RODRIGO PEÑA HERRERA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',237734,'2011-10-04','701890.00','A'),('471',1,'RODRIGUEZ SILVA ROGELIO','191821112','CRA 25 CALLE 100','163@gmail.com','2011-02-03',127591,'2011-05-26','645210.00','A'),('473',1,'VASQUEZ VELANDIA JUAN GABRIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-05-04','666330.00','A'),('474',1,'ROBLEDO JAIME','191821112','CRA 25 CALLE 100','409@yahoo.com','2011-02-03',127591,'2011-05-31','970480.00','A'),('475',1,'GRIMBERG DIAZ PHILIP','191821112','CRA 25 CALLE 100','723@yahoo.com','2011-02-03',127591,'2011-03-30','853430.00','A'),('476',1,'CHAUSTRE GARCIA JUAN PABLO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-26','355670.00','A'),('477',1,'GOMEZ FLOREZ IGNASIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-09-14','218090.00','A'),('478',1,'LUIS ALBERTO CABRERA PUENTES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2011-05-26','23420.00','A'),('479',1,'MARTINEZ ZAPATA JUAN CARLOS','191821112','CRA 25 CALLE 100','234@gmail.com','2011-02-03',127122,'2011-07-01','462840.00','A'),('48',1,'PARRA IBAÑEZ FABIAN ERNESTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-02-01','966520.00','A'),('480',3,'WESTERBERG JAN RICKARD','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',300701,'2011-02-01','243940.00','A'),('484',1,'RODRIGUEZ VILLALOBOS EDGAR FERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-19','860320.00','A'),('486',1,'NAVARRO REYES DIEGO FELIPE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-01','530150.00','A'),('487',1,'NOGUERA RICAURTE ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-01-21','384100.00','A'),('488',1,'RUIZ VEJARANO CARLOS DANIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-27','330030.00','A'),('489',1,'CORREA PEREZ ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-12-14','497860.00','A'),('49',1,'FLOREZ PEREZ RUBIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-23','668090.00','A'),('490',1,'REYES GOMEZ LUIS ALEJANDRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-26','499210.00','A'),('491',3,'BERNAL LEON ALBERTO JOSE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',150699,'2011-03-29','2470.00','A'),('492',1,'FELIPE JARAMILLO CARO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2009-10-31','514700.00','A'),('493',1,'GOMEZ PARRA GERMAN DARIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-01-29','566100.00','A'),('494',1,'VALLEJO RAMIREZ CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-13','286390.00','A'),('495',1,'DIAZ LONDOÑO HUGO MARIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-04-06','733670.00','A'),('496',3,'VAN BAKERGEM RONALD JAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2008-11-05','809190.00','A'),('497',1,'MENDEZ RAMIREZ JOSE LEONARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-10','844920.00','A'),('498',3,'QUI TANILLA HENRIQUEZ PAUL ANTONIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-10','797030.00','A'),('499',3,'PELEATO FLOREAL','191821112','CRA 25 CALLE 100','531@hotmail.com','2011-02-03',188640,'2011-04-23','450370.00','A'),('50',1,'SILVA GUZMAN MAURICIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-03-24','440890.00','A'),('502',3,'LEO ULF GORAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',300701,'2010-07-26','181840.00','A'),('503',3,'KARLSSON DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',300701,'2011-07-22','50680.00','A'),('504',1,'JIMENEZ JANER ALEJANDRO','191821112','CRA 25 CALLE 100','889@hotmail.es','2011-02-03',203272,'2011-08-29','707880.00','A'),('506',1,'PABON OCHOA ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-14','813050.00','A'),('507',1,'ACHURY CADENA CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-26','903240.00','A'),('508',1,'ECHEVERRY GARZON SEBASTIN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-23','77050.00','A'),('509',1,'PIÑEROS PEÑA LUIS CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-29','675550.00','A'),('51',1,'CAICEDO URREA JAIME ORLANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127300,'2011-08-17','200160.00','A'),('510',1,'MARTINEZ MARTINEZ LUIS EDUARDO','191821112','CRA 25 CALLE 100','586@facebook.com','2011-02-03',127591,'2010-08-28','146600.00','A'),('511',1,'MOLANO PEÑA JESUS ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-02-05','706320.00','A'),('512',3,'RUDOLPHY FONTAINE ANDRES','191821112','CRA 25 CALLE 100','492@yahoo.com','2011-02-03',117002,'2011-04-12','91820.00','A'),('513',1,'NEIRA CHAVARRO JOHN JAIRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-12','340120.00','A'),('514',3,'MENDEZ VILLALOBOS ARMANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',145135,'2011-03-25','425160.00','A'),('515',3,'HERNANDEZ OLIVA JOSE DE LA CRUZ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-03-25','105440.00','A'),('518',3,'JANCO NICOLAS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-15','955830.00','A'),('52',1,'TAPIA MUÑOZ JAIRO RICARDO','191821112','CRA 25 CALLE 100','920@hotmail.es','2011-02-03',127591,'2011-10-05','678130.00','A'),('520',1,'ALVARADO JAVIER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-26','895550.00','A'),('521',1,'HUERFANO SOTO JONATHAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-30','619910.00','A'),('522',1,'HUERFANO SOTO JONATHAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-04','412900.00','A'),('523',1,'RODRIGEZ GOMEZ WILMAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-14','204790.00','A'),('525',1,'ARROYO BAPTISTE DIEGO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-04-09','311810.00','A'),('526',1,'PULECIO BOEK DANIEL','191821112','CRA 25 CALLE 100','718@gmail.com','2011-02-03',127591,'2011-08-12','203350.00','A'),('527',1,'ESLAVA VELEZ SEBASTIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-10-08','81300.00','A'),('528',1,'CASTRO FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-05-06','796470.00','A'),('53',1,'HINCAPIE MARTINEZ RICARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127573,'2011-09-26','790180.00','A'),('530',1,'ZORRILLA PUJANA NICOLAS','191821112','CRA 25 CALLE 100','312@yahoo.es','2011-02-03',127591,'2011-06-06','302750.00','A'),('531',1,'ZORRILLA PUJANA NICOLAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-06','298440.00','A'),('532',1,'PRETEL ARTEAGA MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-09','583980.00','A'),('533',1,'RAMOS VERGARA HUMBERTO CARLOS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',131105,'2010-05-13','24560.00','A'),('534',1,'BONILLA PIÑEROS DIEGO FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-20','370880.00','A'),('535',1,'BELTRAN TRIVIÑO JULIAN DAVID','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-11-06','780710.00','A'),('536',3,'BLOD ULF FREDERICK EDWARD','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-06','790900.00','A'),('537',1,'VANEGAS OROZCO SEBASTIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-11-10','612400.00','A'),('538',3,'ORUE VALLE MONICA CECILIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',97885,'2011-09-15','689270.00','A'),('539',1,'AGUDELO BEDOYA ANDRES JOSE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-05-24','609160.00','A'),('54',1,'DE HOYOS TRESPALACIOS MAURICIO ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-04-21','916500.00','A'),('540',3,'HEIJKENSKJOLD PER JESPER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-04-06','977980.00','A'),('541',3,'GONZALEZ ALVARADO LUIS RAUL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-08-27','62430.00','A'),('543',1,'GRUPO SURAMERICA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-08-24','703760.00','A'),('545',1,'CORPORACION CONTEXTO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-09-08','809570.00','A'),('546',3,'LUNDIN JOHAN ERIK ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-29','895330.00','A'),('548',3,'VEGERANO JOSE ','191821112','CRA 25 CALLE 100','221@facebook.com','2011-02-03',190393,'2011-06-05','553780.00','A'),('549',3,'SERRANO MADRID CLAUDIA INES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-07-27','625060.00','A'),('55',1,'TAFUR GOMEZ ALEXANDER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2010-09-12','211980.00','A'),('550',1,'MARTINEZ ACEVEDO MAURICIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-10-06','463920.00','A'),('551',1,'GONZALEZ MORENO PABLO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-07-21','444450.00','A'),('552',1,'MEJIA ROJAS ANDRES FELIPE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-08-02','830470.00','A'),('553',3,'RODRIGUEZ ANTHONY HANSEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-16','819000.00','A'),('554',1,'ABUCHAIBE ANNICCHRICO JOSE ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-31','603610.00','A'),('555',3,'MOYES KIMBERLY','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-08','561020.00','A'),('556',3,'MONTINI MARIO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118942,'2010-03-16','994280.00','A'),('557',3,'HOGBERG DANIEL TOBIAS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-15','288350.00','A'),('559',1,'OROZCO PFEIZER MARTIN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-10-07','429520.00','A'),('56',1,'NARIÑO ROJAS GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-27','310390.00','A'),('560',1,'GARCIA MONTOYA ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-06-02','770840.00','A'),('562',1,'VELASQUEZ PALACIO MANUEL ORLANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-06-23','515670.00','A'),('563',1,'GALLEGO PEREZ DIEGO ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-04-14','881460.00','A'),('564',1,'RUEDA URREGO JUAN ESTEBAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-05-04','860270.00','A'),('565',1,'RESTREPO DEL TORO MAURICIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-05-10','656960.00','A'),('567',1,'TORO VALENCIA FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-08-04','549090.00','A'),('568',1,'VILLEGAS LUIS ALFONSO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-05-02','633490.00','A'),('569',3,'RIDSTROM CHRISTER ANDERS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',300701,'2011-09-06','520150.00','A'),('57',1,'TOVAR ARANGO JOHN JAIME','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127662,'2010-07-03','916010.00','A'),('570',3,'SHEPHERD DAVID','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2008-05-11','700280.00','A'),('573',3,'BENGTSSON JOHAN ANDREAS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-04-06','196830.00','A'),('574',3,'PERSSON HANS JONAS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-09','172340.00','A'),('575',3,'SYNNEBY BJORN ERIK','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-15','271210.00','A'),('577',3,'COHEN PAUL KIRTAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-25','381490.00','A'),('578',3,'ROMERO BRAVO FERNANDO EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-08-21','390360.00','A'),('579',3,'GUTHRIE ROBERT DEAN','191821112','CRA 25 CALLE 100','794@gmail.com','2011-02-03',161705,'2010-07-20','807350.00','A'),('58',1,'TORRES ESCOBAR JAIRO ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-06-17','648860.00','A'),('580',3,'ROCASERMEÑO MONTENEGRO MARIO JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',139844,'2010-12-01','865650.00','A'),('581',1,'COCK JORGE EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-08-19','906210.00','A'),('582',3,'REISS ANDREAS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2009-01-31','934120.00','A'),('584',3,'ECHEVERRIA CASTILLO GERMAN FRANCISCO','191821112','CRA 25 CALLE 100','982@yahoo.com','2011-02-03',139844,'2011-07-20','957370.00','A'),('585',3,'BRANDT CARLOS GUSTAVO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-10','931030.00','A'),('586',3,'VEGA NUÑEZ GILBERTO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-14','783010.00','A'),('587',1,'BEJAR MUÑOZ JORDI','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',196234,'2010-10-08','121990.00','A'),('588',3,'WADSO KERSTIN ELIZABETH','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-17','260890.00','A'),('59',1,'RAMOS FORERO JAVIER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-20','496300.00','A'),('590',1,'RODRIGUEZ BETANCOURT JAVIER AUGUSTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127538,'2011-05-23','909850.00','A'),('592',1,'ARBOLEDA HALABY RODRIGO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',150699,'2009-02-03','939170.00','A'),('593',1,'CURE CURE CARLOS ALFREDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150699,'2011-07-11','494600.00','A'),('594',3,'VIDELA PEREZ OSCAR EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-07-13','655510.00','A'),('595',1,'GONZALEZ GAVIRIA NESTOR','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2009-09-28','793760.00','A'),('596',3,'IZQUIERDO DELGADO DIONISIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2009-09-24','2250.00','A'),('597',1,'MORENO DAIRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127300,'2011-06-14','629990.00','A'),('598',1,'RESTREPO FERNNDEZ SOTO JOSE MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-08-31','143210.00','A'),('599',3,'YERYES VERGARA MARIA SOLEDAD','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-10-11','826060.00','A'),('6',1,'GUZMAN ESCOBAR JOSE VICENTE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-10','26390.00','A'),('60',1,'ELEJALDE ESCOBAR TOMAS ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-11-09','534910.00','A'),('601',1,'ESCAF ESCAF WILLIAM MIGUEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',150699,'2011-07-26','25190.00','A'),('602',1,'CEBALLOS ZULUAGA JOSE ALEJANDRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-05-03','23920.00','A'),('603',1,'OLIVELLA GUERRERO RAFAEL ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',134022,'2010-06-23','44040.00','A'),('604',1,'ESCOBAR GALLO CARLOS HUGO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-08-09','148420.00','A'),('605',1,'ESCORCIA RAMIREZ EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128569,'2011-04-01','609990.00','A'),('606',1,'MELGAREJO MORENO PAULA ANDREA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-05','604700.00','A'),('607',1,'TOBON CALLE CARLOS GUILLERMO','191821112','CRA 25 CALLE 100','689@hotmail.es','2011-02-03',128662,'2011-03-16','193510.00','A'),('608',3,'TREVIÑO NOPHAL SILVANO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',110709,'2011-05-27','153470.00','A'),('609',1,'CARDER VELEZ EDWIN JOHN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-09-04','186830.00','A'),('61',1,'GASCA DAZA VICTOR HERNANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-09-09','185660.00','A'),('610',3,'DAVIS JOHN BRADLEY','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-04-06','473740.00','A'),('611',1,'BAQUERO SLDARRIAGA ALVARO ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-09-15','808210.00','A'),('612',3,'SERRACIN ARAUZ YANIRA YAMILET','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',131272,'2011-06-09','619820.00','A'),('613',1,'MORA SOTO ALVARO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-09-20','674450.00','A'),('614',1,'SUAREZ RODRIGUEZ HERNANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-03-29','512820.00','A'),('616',1,'BAQUERO GARCIA JORGE LUIS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2010-07-14','165160.00','A'),('617',3,'ABADI MADURO MOISES SIMON','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',131272,'2009-03-31','203640.00','A'),('62',3,'FLOWER LYNDON BRUCE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',231373,'2011-05-16','323560.00','A'),('624',8,'OLARTE LEONARDO','191821112','CRA 25 CALLE 100','6@hotmail.com','2011-02-03',127591,'2011-06-03','219790.00','A'),('63',1,'RUBIO CORTES OSCAR','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-04-28','60830.00','A'),('630',5,'PROEXPORT','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2010-08-12','708320.00','A'),('632',8,'SUPER COFFEE ','191821112','CRA 25 CALLE 100','792@hotmail.es','2011-02-03',127591,'2011-08-30','306460.00','A'),('636',8,'NOGAL ASESORIAS FINANCIERAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-04-07','752150.00','A'),('64',1,'GUERRA MARTINEZ MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-24','333480.00','A'),('645',8,'GIZ - PROFIS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-31','566330.00','A'),('652',3,'QBE DEL ISTMO COMPAÑIA DE REASEGUROS ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-14','932190.00','A'),('655',3,'CORP. CENTRO DE ESTUDIOS DE DERECHO JUSTICIA Y SOCIEDAD','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-05-04','440370.00','A'),('659',3,'GOOD YEAR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2010-09-24','993830.00','A'),('660',3,'ARCINIEGAS Y VILLAMIZAR','191821112','CRA 25 CALLE 100','258@yahoo.com','2011-02-03',127591,'2010-12-02','787450.00','A'),('67',1,'LOPEZ HOYOS JUAN DIEGO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127662,'2010-04-13','665230.00','A'),('670',8,'APPLUS NORCONTROL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2011-09-06','83210.00','A'),('672',3,'KERLL SEBASTIAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',287273,'2010-12-19','501610.00','A'),('673',1,'RESTREPO MOLINA RAMIRO ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',144215,'2010-12-18','457290.00','A'),('674',1,'PEREZ GIL JOSE IGNACIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-08-18','781610.00','A'),('676',1,'GARCIA LONDOÑO FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-08-23','336160.00','A'),('677',3,'RIJLAARSDAM KARIN AN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-07-03','72210.00','A'),('679',1,'LIZCANO MONTEALEGRE ARNULFO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127203,'2011-02-01','546170.00','A'),('68',1,'MARTINEZ SILVA EDGAR','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-29','54250.00','A'),('680',3,'OLIVARI MAYER PATRICIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',122642,'2011-08-01','673170.00','A'),('682',3,'CHEVALIER FRANCK PIERRE CHARLES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',263813,'2010-12-01','617280.00','A'),('683',3,'NG WAI WING ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',126909,'2011-06-14','904310.00','A'),('684',3,'MULLER DOMINGUEZ CARLOS ANDRES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-22','669700.00','A'),('685',3,'MOSQUEDA DOMNGUEZ ANGEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-04-08','635580.00','A'),('686',3,'LARREGUI MARIN LEON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-08','168800.00','A'),('687',3,'VARGAS VERGARA ALEJANDRO BRAULIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',159245,'2011-09-14','937260.00','A'),('688',3,'SKINNER LYNN CHERYL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-12','179890.00','A'),('689',1,'URIBE CORREA LEONARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2010-07-29','87680.00','A'),('690',1,'TAMAYO JARAMILLO FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-11-10','898730.00','A'),('691',3,'MOTABAN DE BORGES PAULA ELENA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132958,'2010-09-24','230610.00','A'),('692',5,'FERNANDEZ NALDA JOSE MANUEL ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-06-28','456850.00','A'),('693',1,'GOMEZ RESTREPO JUAN FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-06-28','592420.00','A'),('694',1,'CARDENAS TAMAYO JOSE JAIME','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-08-08','591550.00','A'),('696',1,'RESTREPO ARANGO ALEJANDRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-03-31','127820.00','A'),('697',1,'ROCABADO PASTRANA ROBERT JAVIER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127443,'2011-08-13','97600.00','A'),('698',3,'JARVINEN JOONAS JORI KRISTIAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',196234,'2011-05-29','104560.00','A'),('699',1,'MORENO PEREZ HERNAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-08-30','230000.00','A'),('7',1,'PUYANA RAMOS GUILLERMO ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-08-27','331830.00','A'),('70',1,'GALINDO MANZANO JAVIER FRANCISCO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-31','214890.00','A'),('701',1,'ROMERO PEREZ ARCESIO JOSE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132775,'2011-07-13','491650.00','A'),('703',1,'CHAPARRO AGUDELO LEONARDO VIRGILIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-05-04','271320.00','A'),('704',5,'VASQUEZ YANIS MARIA DEL PILAR','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-10-13','508820.00','A'),('705',3,'BARBERO JOSE ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',116511,'2010-09-13','730170.00','A'),('706',1,'CARMONA HERNANDEZ MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-11-08','124380.00','A'),('707',1,'PEREZ SUAREZ JORGE ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132775,'2011-09-14','431370.00','A'),('708',1,'ROJAS JORGE MARIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',130135,'2011-04-01','783740.00','A'),('71',1,'DIAZ JUAN PABLO/JULES JAVIER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-10-01','247860.00','A'),('711',3,'CATALDO CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',116773,'2011-06-06','984810.00','A'),('716',5,'MACIAS PIZARRO PATRICIO ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-06-07','376260.00','A'),('717',1,'RENDON MAYA DAVID ALEXANDER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',130273,'2010-07-25','332310.00','A'),('718',3,'DE HILDEBRAND E GRISI FILHO CELSO CLAUDIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-11','532740.00','A'),('719',3,'ALLIEL FACUSSE JULIO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-06-20','666800.00','A'),('72',1,'LOPEZ ROJAS VICTOR DANIEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-11','594640.00','A'),('720',3,'CHEMELLO JIMENEZ GAETANO ALBERTO FRANCISCO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',132958,'2010-06-23','735760.00','A'),('721',3,'GARCIA BEZANILLA RODOLFO EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-04-12','678420.00','A'),('722',1,'ARIAS EDWIN','191821112','CRA 25 CALLE 100','13@terra.com.co','2011-02-03',127492,'2008-04-24','184800.00','A'),('723',3,'SOHN JANG WON','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-06-07','888750.00','A'),('724',3,'WILHELM GIOVINE JAIME ROBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',115263,'2011-09-20','889340.00','A'),('726',3,'CASTILLERO DANIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',131272,'2011-05-13','234270.00','A'),('727',3,'PORTUGAL LANGHORST MAX GUILLERMO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-13','829960.00','A'),('729',3,'ALFONSO HERRANZ AGUSTIN ALFONSO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-07-21','745060.00','A'),('73',1,'DAVILA MENDEZ OSCAR DIEGO','191821112','CRA 25 CALLE 100','991@yahoo.com.mx','2011-02-03',128569,'2011-08-31','229630.00','A'),('730',3,'ALFONSO HERRANZ AGUSTIN CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2010-03-31','384360.00','A'),('731',1,'NOGUERA RAMIREZ CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-14','686610.00','A'),('732',1,'ACOSTA PERALTA FABIAN ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',134030,'2011-06-21','279960.00','A'),('733',3,'MAC LEAN PIÑA PEDRO SEGUNDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-05-23','339980.00','A'),('734',1,'LEÓN ARCOS ALEX','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',133535,'2011-05-04','860020.00','A'),('736',3,'LAMARCA GARCIA GERMAN JULIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-04-29','820700.00','A'),('737',1,'PORTO VELASQUEZ LUIS MIGUEL','191821112','CRA 25 CALLE 100','321@hotmail.es','2011-02-03',133535,'2011-08-17','263060.00','A'),('738',1,'BUENAVENTURA MEDINA ERICK WILSON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',133535,'2011-09-18','853180.00','A'),('739',1,'LEVY ARRAZOLA RALPH MARC','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',133535,'2011-09-27','476720.00','A'),('74',1,'RAMIREZ SORA EDISON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-03','364220.00','A'),('740',3,'MOON HYUNSIK ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',173192,'2011-05-15','824080.00','A'),('741',3,'LHUILLIER TRONCOSO GASTON MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-09-07','690230.00','A'),('742',3,'UNDURRAGA PELLEGRINI GONZALO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2010-11-21','978900.00','A'),('743',1,'SOLANO TRIBIN NICOLAS SIMON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',134022,'2011-03-16','823800.00','A'),('744',1,'NOGUERA BENAVIDES JACOBO ALONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-06','182300.00','A'),('745',1,'GARCIA LEON MARCO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',133535,'2008-04-16','440110.00','A'),('746',1,'EMILIANI ROJAS ALEXANDER ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-09-12','653640.00','A'),('748',1,'CARREÑO POULSEN HELGEN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-06','778370.00','A'),('749',1,'ALVARADO FANDIÑO ANDRES EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2008-11-05','48280.00','A'),('750',1,'DIAZ GRANADOS JUAN PABLO.','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-01-12','906290.00','A'),('751',1,'OVALLE BETANCOURT ALBERTO JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',134022,'2011-08-14','386620.00','A'),('752',3,'GUTIERREZ VERGARA JOSE MIGUEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-08','214250.00','A'),('753',3,'CHAPARRO GUAIMARAL LIZ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',147467,'2011-03-16','911350.00','A'),('754',3,'CORTES DE SOLMINIHAC PABLO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117002,'2011-01-20','914020.00','A'),('755',3,'CHETAIL VINCENT','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',239124,'2010-08-23','836050.00','A'),('756',3,'PERUGORRIA RODRIGUEZ JORGE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2010-10-17','438210.00','A'),('757',3,'GOLLMANN ROBERTO JUAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',167269,'2011-03-28','682870.00','A'),('758',3,'VARELA SEPULVEDA MARIA PILAR','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2010-07-26','99730.00','A'),('759',3,'MEYER WELIKSON MICHELE JANIK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-05-10','450030.00','A'),('76',1,'VANEGAS RODRIGUEZ OSCAR IVAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-20','568310.00','A'),('77',3,'GATICA SOTOMAYOR MAURICIO VICENTE','191821112','CRA 25 CALLE 100','409@terra.com.co','2011-02-03',117002,'2010-05-13','444970.00','A'),('79',1,'PEÑA VALENZUELA DANIEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-19','264790.00','A'),('8',1,'NAVARRO PALENCIA HUGO RAFAEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',126968,'2011-05-05','579980.00','A'),('80',1,'BARRIOS CUADRADO DAVID','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-29','764140.00','A'),('802',3,'RECK GARRONE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118942,'2009-02-06','767700.00','A'),('81',1,'PARRA QUIROGA JOSE ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-18','26330.00','A'),('811',8,'FEDERACION NACIONAL DE AVICULTORES ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-04-18','926010.00','A'),('812',1,'ORJUELA VELEZ JAIME ALFONSO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-22','257160.00','A'),('813',1,'PEÑA CHACON GUSTAVO ADOLFO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-08-27','507770.00','A'),('814',1,'RONDEROS MOJICA ANDRES FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127443,'2011-05-04','767370.00','A'),('815',1,'RICO NIÑO MARIO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127443,'2011-05-18','313540.00','A'),('817',3,'AVILA CHYTIL MANUEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118471,'2011-07-14','387300.00','A'),('818',3,'JABLONSKI DUARTE SILVEIRA ESTER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2010-12-21','139740.00','A'),('819',3,'BUHLER MOSLER XIMENA ALEJANDRA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2011-06-20','536830.00','A'),('82',1,'CARRILLO GAMBOA JUAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-06-01','839240.00','A'),('820',3,'FALQUETO DALMIRO ANGELO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-06-21','264910.00','A'),('821',1,'RUGER GUSTAVO RODRIGUEZ TAMAYO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',133535,'2010-04-12','714080.00','A'),('822',3,'JULIO RODRIGUEZ FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',117002,'2011-08-16','775650.00','A'),('823',3,'CIBANIK RODOLFO MOISES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132554,'2011-09-19','736020.00','A'),('824',3,'JIMENEZ FRANCO EMMANUEL ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-17','353150.00','A'),('825',3,'GNECCO TREMEDAD','191821112','CRA 25 CALLE 100','818@hotmail.com','2011-02-03',171072,'2011-03-19','557700.00','A'),('826',3,'VILAR MENDOZA JOSE RAFAEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-29','729050.00','A'),('827',3,'GONZALEZ MOLINA CRISTIAN MAURICIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-06-20','972160.00','A'),('828',1,'GONTOVNIK HOBRECKT CARLOS DANIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-08-02','673620.00','A'),('829',3,'DIBARRAT URZUA SEBASTIAN RAIMUNDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-28','451650.00','A'),('830',3,'STOCCHERO HATSCHBACH GUILHERME','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118777,'2010-11-22','237370.00','A'),('831',1,'NAVAS PASSOS NARCISO EVELIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-04-21','831900.00','A'),('832',3,'LUNA SOBENES FAVIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-10-11','447400.00','A'),('833',3,'NUÑEZ NOGUEIRA ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2011-03-19','741290.00','A'),('834',1,'CASTRO BELTRAN ARIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128188,'2011-05-15','364270.00','A'),('835',1,'TURBAY YAMIN MAURICIO JOSE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-03-17','597490.00','A'),('836',1,'GOMEZ BARRAZA RODNEY LORENZO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-07','894610.00','A'),('837',1,'CUELLO LASCANO ROBERTO','191821112','CRA 25 CALLE 100','221@hotmail.es','2011-02-03',133535,'2011-07-11','680610.00','A'),('838',1,'PATERNINA PEINADO JOSE VICENTE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',133535,'2011-08-23','719190.00','A'),('839',1,'YEPES RUBIANO ALFONSO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-05-16','554130.00','A'),('84',1,'ALVIS RAMIREZ ALFREDO','191821112','CRA 25 CALLE 100','292@yahoo.com','2011-02-03',127662,'2011-09-16','68190.00','A'),('840',1,'ROCA LLANOS GUILLERMO ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-08-22','613060.00','A'),('841',1,'RENDON TORRALVO ENRIQUE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',133535,'2011-05-26','402950.00','A'),('842',1,'BLANCO STAND GERMAN ELIECER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-07-17','175530.00','A'),('843',3,'BERNAL MAYRA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',131272,'2010-08-31','668820.00','A'),('844',1,'NAVARRO RUIZ LAZARO GREGORIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',126916,'2008-09-23','817520.00','A'),('846',3,'TUOMINEN OLLI PETTERI','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-09-01','953150.00','A'),('847',1,'ESPARRAGOZA DE LA ESPRIELLA ENRIQUE ALBERTO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',133535,'2011-08-09','522340.00','A'),('848',3,'ARAYA ARIAS JUAN VICENTE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',132165,'2011-08-09','752210.00','A'),('85',1,'GARCIA JORGE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-03-01','989420.00','A'),('850',1,'PARDO GOMEZ GERMAN ENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132775,'2010-11-25','713690.00','A'),('851',1,'ATIQUE JOSE MANUEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2008-03-03','986250.00','A'),('852',1,'HERNANDEZ MEYER EDGARDO DE JESUS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-07-20','790190.00','A'),('853',1,'ZULUAGA DE LEON IVAN JESUS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-07-03','992210.00','A'),('854',1,'VILLARREAL ANGULO ENRIQUE ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-10-02','590450.00','A'),('855',1,'CELIA MARTINEZ APARICIO GIAN PIERO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',133535,'2011-06-15','975620.00','A'),('857',3,'LIPARI RONALDO LUIS','191821112','CRA 25 CALLE 100','84@facebook.com','2011-02-03',118941,'2010-10-13','606990.00','A'),('858',1,'RAVACHI DAVILA ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',133535,'2011-05-04','714620.00','A'),('859',3,'PINHEIRO OLIVEIRA LUCIANO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-04-06','752130.00','A'),('86',1,'GOMEZ LIS CARLOS EMILIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2009-12-22','742520.00','A'),('860',1,'PUGLIESE MERCADO LUIGGI ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-08-19','616780.00','A'),('862',1,'JANNA TELLO DANIEL JALIL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',133535,'2010-08-07','287220.00','A'),('863',3,'MATTAR CARLOS HENRIQUE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2009-04-26','953570.00','A'),('864',1,'MOLINA OLIER OSVALDO ENRIQUE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132775,'2011-04-18','906200.00','A'),('865',1,'BLANCO MCLIN DAVID ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-08-18','670290.00','A'),('866',1,'NARANJO ROMERO ALFREDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2010-08-25','632860.00','A'),('867',1,'SIMANCAS TRUJILLO RICARDO ANTONIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-04-07','153400.00','A'),('868',1,'ARENAS USME GERMAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',126881,'2011-10-01','868430.00','A'),('869',5,'DIAZ CORDERO RODRIGO FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-11-04','881950.00','A'),('87',1,'CELIS PEREZ HERNANDO ALONSO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-10-05','744330.00','A'),('870',3,'BINDER ZBEDA JONATAHAN JANAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',131083,'2010-04-11','804460.00','A'),('871',1,'HINCAPIE HELLMAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-09-15','376440.00','A'),('872',3,'MONTEIRO LANAMAR ALFONSO DE BUSTAMANTE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118942,'2009-03-23','468820.00','A'),('873',3,'AGUDO CARMINATTI REGINA CELIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-01-04','214770.00','A'),('874',1,'GONZALEZ VILLALOBOS CRISTIAN MANUEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',133535,'2011-09-26','667400.00','A'),('875',3,'GUELL VILLANUEVA ALVARO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2008-04-07','692670.00','A'),('876',3,'GRES ANAIS ROBERTO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-12-01','461180.00','A'),('877',3,'GAME MOCOCAIN JUAN ENRIQUE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-07','227890.00','A'),('878',1,'FERRER UCROS FERNANDO LEON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-06-22','755900.00','A'),('879',3,'HERRERA JAUREGUI CARLOS GUSTAVO','191821112','CRA 25 CALLE 100','599@facebook.com','2011-02-03',131272,'2010-07-22','95840.00','A'),('880',3,'BACALLAO HERNANDEZ ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',126180,'2010-04-21','211480.00','A'),('881',1,'GIJON URBINA JAIME','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',144879,'2011-04-03','769910.00','A'),('882',3,'TRUSEN CHRISTOPH WOLFGANG','191821112','CRA 25 CALLE 100','338@yahoo.com.mx','2011-02-03',127591,'2010-10-24','215100.00','A'),('883',3,'ASHOURI ASKANDAR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',157861,'2009-03-03','765760.00','A'),('885',1,'ALTAMAR WATTS JAIRO ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-08-20','620170.00','A'),('887',3,'QUINTANA BALTIERRA ROBERTO ALEX','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-06-21','891370.00','A'),('889',1,'CARILLO PATIÑO VICTOR HILARIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',130226,'2011-09-06','354570.00','A'),('89',1,'CONTRERAS PULIDO LINA MARIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-06','237480.00','A'),('890',1,'GELVES CAÑAS GENARO ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-02','355640.00','A'),('891',3,'CAGNONI DE MELO PAULA CRISTINA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2010-12-14','714490.00','A'),('892',3,'MENA AMESTICA PATRICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2011-03-22','505510.00','A'),('893',1,'CAICEDO ROMES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-04-07','384110.00','A'),('894',1,'ECHEVERRY TRUJILLO ARMANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-06-08','404010.00','A'),('895',1,'CAJIA PEDRAZA ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-02','867700.00','A'),('896',2,'PALACIOS OLIVA ANDRES FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-05-24','126500.00','A'),('897',1,'GUTIERREZ QUINTERO FABIAN ESTEBAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2009-10-24','29380.00','A'),('899',3,'COBO GUEVARA LUIS FELIPE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-12-09','748860.00','A'),('9',1,'OSORIO RODRIGUEZ FELIPE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-09-27','904420.00','A'),('90',1,'LEYTON GONZALEZ FREDY RAFAEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-03-24','705130.00','A'),('901',1,'HERNANDEZ JOSE ANGEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',130266,'2011-05-23','964010.00','A'),('903',3,'GONZALEZ MALDONADO MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2010-11-13','576500.00','A'),('904',1,'OCHOA BARRIGA JORGE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',130266,'2011-05-05','401380.00','A'),('905',1,'OSORIO REDONDO JESUS DAVID','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127300,'2011-08-11','277390.00','A'),('906',1,'BAYONA BARRIENTOS JEAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-01-25','182820.00','A'),('907',1,'MARTINEZ GOMEZ CARLOS ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132775,'2010-03-11','81940.00','A'),('908',1,'PUELLO LOPEZ GUILLERMO LEON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-08-12','861240.00','A'),('909',1,'MOGOLLON LONDOÑO PEDRO LUIS CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132775,'2011-06-22','60380.00','A'),('91',1,'ORTIZ RIOS JAVIER ADOLFO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-12','813200.00','A'),('911',1,'HERRERA HOYOS CARLOS FRANCISCO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132775,'2010-09-12','409800.00','A'),('912',3,'RIM MYUNG HWAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-15','894450.00','A'),('913',3,'BIANCO DORIEN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-29','242820.00','A'),('914',3,'FROIMZON WIEN DANIEL','191821112','CRA 25 CALLE 100','348@yahoo.com','2011-02-03',132165,'2010-11-06','530780.00','A'),('915',3,'ALVEZ AZEVEDO JOAO MIGUEL','191821112','CRA 25 CALLE 100','861@hotmail.es','2011-02-03',127591,'2009-06-25','925420.00','A'),('916',3,'CARRASCO DIAZ LUIS ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-10-02','34780.00','A'),('917',3,'VIVALLOS MEDINA LEONEL EDMUNDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2010-09-12','397640.00','A'),('919',3,'LASSE ANDRE BARKLIEN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',286724,'2011-03-31','226390.00','A'),('92',1,'CUERVO CARDENAS ALEJANDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-08','950630.00','A'),('920',3,'BARCELOS PLOTEGHER LILIA MARA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-07','480380.00','A'),('921',1,'JARAMILLO ARANGO JUAN DIEGO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127559,'2011-06-28','722700.00','A'),('93',3,'RUIZ PRIETO WILLIAM','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',131272,'2011-01-19','313540.00','A'),('932',7,'COMFENALCO ANTIOQUIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-05-05','515430.00','A'),('94',1,'GALLEGO JUAN GUILLERMO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-25','715830.00','A'),('944',3,'KARMELIC PAVLOV VESNA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',120066,'2010-08-07','585580.00','A'),('945',3,'RAMIREZ BORDON OSCAR','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-07-02','526250.00','A'),('946',3,'SORACCO CABEZA RODRIGO ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-07-04','874490.00','A'),('949',1,'GALINDO JORGE ERNESTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127300,'2008-07-10','344110.00','A'),('950',3,'DR KNABLE THOMAS ERNST ALBERT','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',256231,'2009-11-17','685430.00','A'),('953',3,'VELASQUEZ JANETH','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-20','404650.00','A'),('954',3,'SOZA REX JOSE FRANCISCO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',150903,'2011-05-26','269790.00','A'),('955',3,'FONTANA GAETE JAIME PATRICIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-01-11','134970.00','A'),('957',3,'PEREZ MARTINEZ GRECIA INDIRA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132958,'2010-08-27','922610.00','A'),('96',1,'FORERO CUBILLOS JORGEARTURO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-25','45020.00','A'),('97',1,'SILVA ACOSTA MARIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-19','309580.00','A'),('978',3,'BLUMENTHAL JAIRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117630,'2010-04-22','653490.00','A'),('984',3,'SUN XIAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-01-17','203630.00','A'),('99',1,'CANO GUZMAN ALEJANDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-23','135620.00','A'),('999',1,' DRAGER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-12-22','882070.00','A'),('CELL1020',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1021',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1083',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1153',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1179',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1183',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL126',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1326',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1329',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL133',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1413',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1426',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1529',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1614',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1651',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1760',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL179',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1857',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1879',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1902',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1921',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1962',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1992',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2006',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL206',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL215',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2187',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2307',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2322',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2497',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2641',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2736',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2805',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL281',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2905',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2963',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3029',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3090',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3161',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3302',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3309',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3325',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3372',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3422',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3514',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3562',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3614',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3652',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3661',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3673',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3789',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3795',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL381',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3840',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3886',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3944',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL396',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL401',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4012',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL411',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4137',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4159',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4183',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4198',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4291',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4308',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4324',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4330',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4334',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4415',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4440',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4547',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4639',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4662',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4698',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL475',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4790',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4838',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4885',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4939',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5064',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5066',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL51',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5102',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5116',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5187',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5192',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5206',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5226',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5250',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5282',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL536',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5401',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5415',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5503',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5506',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL554',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5544',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5595',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5648',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5801',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5821',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6179',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6201',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6277',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6288',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6358',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6369',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6408',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6418',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6425',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6439',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6509',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6533',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6556',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL673',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6731',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6766',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6775',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6802',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6834',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6842',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6890',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6953',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6957',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7024',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7198',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7216',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL728',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7314',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7316',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7418',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7431',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7432',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7513',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7522',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7617',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7623',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7708',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7777',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL787',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7907',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7951',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7956',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8004',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8058',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL811',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8136',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8162',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8187',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8286',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8300',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8316',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8339',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8366',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8389',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8446',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8487',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8546',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8578',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8643',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8774',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8829',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8846',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8942',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9046',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9110',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL917',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9189',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9206',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9241',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9331',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9429',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9434',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9495',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9517',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9558',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9650',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9748',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9830',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9842',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9878',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9893',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9945',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('T-Cx200',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx201',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx202',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx203',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx204',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx205',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx206',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx207',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx208',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx209',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx210',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx211',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx212',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx213',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx214',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'); -/*!40000 ALTER TABLE `personnes` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `prueba` --- -DROP TABLE IF EXISTS `prueba`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `prueba` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `nombre` varchar(120) COLLATE utf8_unicode_ci NOT NULL, - `estado` char(1) COLLATE utf8_unicode_ci NOT NULL, - PRIMARY KEY (`id`), +drop table if exists `prueba`; +create table `prueba` ( + `id` int(10) unsigned not null auto_increment, + `nombre` varchar(120) collate utf8_unicode_ci not null, + `estado` char(1) collate utf8_unicode_ci not null, + primary key (`id`), KEY `estado` (`estado`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `prueba` --- - -LOCK TABLES `prueba` WRITE; -/*!40000 ALTER TABLE `prueba` DISABLE KEYS */; -/*!40000 ALTER TABLE `prueba` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `robots` --- - -DROP TABLE IF EXISTS `robots`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `robots` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `name` varchar(70) COLLATE utf8_unicode_ci NOT NULL, - `type` varchar(32) COLLATE utf8_unicode_ci NOT NULL default 'mechanical', - `year` int(11) NOT NULL default 1900, - `datetime` datetime NOT NULL, - `deleted` datetime DEFAULT NULL, - `text` text NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `robots` --- - -LOCK TABLES `robots` WRITE; -/*!40000 ALTER TABLE `robots` DISABLE KEYS */; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; + +drop table if exists `robots`; +create table `robots` ( + `id` int(10) unsigned not null auto_increment, + `name` varchar(70) collate utf8_unicode_ci not null, + `type` varchar(32) collate utf8_unicode_ci not null default 'mechanical', + `year` int(11) not null default 1900, + `datetime` datetime not null, + `deleted` datetime default null, + `text` text not null, + primary key (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; INSERT INTO `robots` VALUES (1,'Robotina','mechanical',1972,'1972/01/01 00:00:00', null, 'text'), (2,'Astro Boy','mechanical',1952,'1952/01/01 00:00:00', null, 'text'), (3,'Terminator','cyborg',2029,'2029/01/01 00:00:00', null, 'text'); -/*!40000 ALTER TABLE `robots` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `identityless_requests` --- -DROP TABLE IF EXISTS `identityless_requests`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `identityless_requests` ( +drop table if exists `identityless_requests`; +create table `identityless_requests` ( `method` ENUM('GET', 'POST', 'PUT', 'DELETE', 'OPTIONS', 'HEAD', 'PATCH', 'PURGE', 'TRACE', 'CONNECT'), `requested_uri` VARCHAR(255), - `request_count` int(10) unsigned NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `robots_parts` --- - -DROP TABLE IF EXISTS `robots_parts`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `robots_parts` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `robots_id` int(10) unsigned NOT NULL, - `parts_id` int(10) unsigned NOT NULL, - PRIMARY KEY (`id`), + `request_count` int(10) unsigned not null +) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; + +drop table if exists `robots_parts`; +create table `robots_parts` ( + `id` int(10) unsigned not null auto_increment, + `robots_id` int(10) unsigned not null, + `parts_id` int(10) unsigned not null, + primary key (`id`), KEY `robots_id` (`robots_id`), KEY `parts_id` (`parts_id`), CONSTRAINT `robots_parts_ibfk_1` FOREIGN KEY (`robots_id`) REFERENCES `robots` (`id`), CONSTRAINT `robots_parts_ibfk_2` FOREIGN KEY (`parts_id`) REFERENCES `parts` (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `robots_parts` --- - -LOCK TABLES `robots_parts` WRITE; -/*!40000 ALTER TABLE `robots_parts` DISABLE KEYS */; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; INSERT INTO `robots_parts` VALUES (1,1,1),(2,1,2),(3,1,3); -/*!40000 ALTER TABLE `robots_parts` ENABLE KEYS */; -UNLOCK TABLES; --- --- Table structure for table `songs` --- - -DROP TABLE IF EXISTS `songs`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `songs` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `albums_id` int(10) unsigned NOT NULL, - `name` varchar(72) COLLATE utf8_unicode_ci NOT NULL, - PRIMARY KEY (`id`), +drop table if exists `songs`; +create table `songs` ( + `id` int(10) unsigned not null auto_increment, + `albums_id` int(10) unsigned not null, + `name` varchar(72) collate utf8_unicode_ci not null, + primary key (`id`), KEY `albums_id` (`albums_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `songs` --- - -LOCK TABLES `songs` WRITE; -/*!40000 ALTER TABLE `songs` DISABLE KEYS */; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; INSERT INTO `songs` VALUES (1,1,'Born to Die'),(2,1,'Off to Races'),(3,1,'Blue Jeans'),(4,1,'Video Games'),(5,1,'Diet Mountain Dew'),(6,1,'National Anthem'),(7,1,'Dark Paradise'); -/*!40000 ALTER TABLE `songs` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `subscriptores` --- - -DROP TABLE IF EXISTS `subscriptores`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `subscriptores` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `email` varchar(70) COLLATE utf8_unicode_ci NOT NULL, - `created_at` datetime DEFAULT NULL, - `status` char(1) COLLATE utf8_unicode_ci NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; --- --- Dumping data for table `subscriptores` --- - -LOCK TABLES `subscriptores` WRITE; -/*!40000 ALTER TABLE `subscriptores` DISABLE KEYS */; +drop table if exists `subscriptores`; +create table `subscriptores` ( + `id` int(10) unsigned not null auto_increment, + `email` varchar(70) collate utf8_unicode_ci not null, + `created_at` datetime default null, + `status` char(1) collate utf8_unicode_ci not null, + primary key (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; INSERT INTO `subscriptores` VALUES (43,'fuego@hotmail.com','2012-04-14 23:30:33','P'); -/*!40000 ALTER TABLE `subscriptores` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tipo_documento` --- - -DROP TABLE IF EXISTS `tipo_documento`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tipo_documento` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `detalle` varchar(32) COLLATE utf8_unicode_ci NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tipo_documento` --- -LOCK TABLES `tipo_documento` WRITE; -/*!40000 ALTER TABLE `tipo_documento` DISABLE KEYS */; +drop table if exists `tipo_documento`; +create table `tipo_documento` ( + `id` int(10) unsigned not null auto_increment, + `detalle` varchar(32) collate utf8_unicode_ci not null, + primary key (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; INSERT INTO `tipo_documento` VALUES (1,'TIPO 0'),(2,'TIPO 1'),(3,'TIPO 2'),(4,'TIPO 3'),(5,'TIPO 4'),(6,'TIPO 5'),(7,'TIPO 6'),(8,'TIPO 7'),(9,'TIPO 8'),(10,'TIPO 9'),(11,'TIPO 10'),(12,'TIPO 11'),(13,'TIPO 12'),(14,'TIPO 13'),(15,'TIPO 14'),(16,'TIPO 15'),(17,'TIPO 16'),(18,'TIPO 17'),(19,'TIPO 18'),(20,'TIPO 19'),(21,'TIPO 20'),(22,'TIPO 21'),(23,'TIPO 22'),(24,'TIPO 23'),(25,'TIPO 24'),(26,'TIPO 25'),(27,'TIPO 26'),(28,'TIPO 27'),(29,'TIPO 28'),(30,'TIPO 29'),(31,'TIPO 30'),(32,'TIPO 31'),(33,'TIPO 32'),(34,'TIPO 33'),(35,'TIPO 34'),(36,'TIPO 35'),(37,'TIPO 36'),(38,'TIPO 37'),(39,'TIPO 38'),(40,'TIPO 39'),(41,'TIPO 40'),(42,'TIPO 41'),(43,'TIPO 42'),(44,'TIPO 43'),(45,'TIPO 44'),(46,'TIPO 45'),(47,'TIPO 46'),(48,'TIPO 47'),(49,'TIPO 48'),(50,'TIPO 49'),(51,'TIPO 50'),(52,'TIPO 51'),(53,'TIPO 52'),(54,'TIPO 53'),(55,'TIPO 54'),(56,'TIPO 55'),(57,'TIPO 56'),(58,'TIPO 57'),(59,'TIPO 58'),(60,'TIPO 59'),(61,'TIPO 60'),(62,'TIPO 61'),(63,'TIPO 62'),(64,'TIPO 63'),(65,'TIPO 64'),(66,'TIPO 65'),(67,'TIPO 66'),(68,'TIPO 67'),(69,'TIPO 68'),(70,'TIPO 69'),(71,'TIPO 70'),(72,'TIPO 71'),(73,'TIPO 72'),(74,'TIPO 73'),(75,'TIPO 74'),(76,'TIPO 75'),(77,'TIPO 76'),(78,'TIPO 77'),(79,'TIPO 78'),(80,'TIPO 79'),(81,'TIPO 80'),(82,'TIPO 81'),(83,'TIPO 82'),(84,'TIPO 83'),(85,'TIPO 84'),(86,'TIPO 85'),(87,'TIPO 86'),(88,'TIPO 87'),(89,'TIPO 88'),(90,'TIPO 89'),(91,'TIPO 90'),(92,'TIPO 91'),(93,'TIPO 92'),(94,'TIPO 93'),(95,'TIPO 94'),(96,'TIPO 95'),(97,'TIPO 96'),(98,'TIPO 97'),(99,'TIPO 98'),(100,'TIPO 99'),(101,'TIPO 100'),(102,'TIPO 101'),(103,'TIPO 102'),(104,'TIPO 103'),(105,'TIPO 104'),(106,'TIPO 105'),(107,'TIPO 106'),(108,'TIPO 107'),(109,'TIPO 108'),(110,'TIPO 109'),(111,'TIPO 110'),(112,'TIPO 111'),(113,'TIPO 112'),(114,'TIPO 113'),(115,'TIPO 114'),(116,'TIPO 115'),(117,'TIPO 116'),(118,'TIPO 117'),(119,'TIPO 118'),(120,'TIPO 119'),(121,'TIPO 120'),(122,'TIPO 121'),(123,'TIPO 122'),(124,'TIPO 123'),(125,'TIPO 124'),(126,'TIPO 125'),(127,'TIPO 126'),(128,'TIPO 127'),(129,'TIPO 128'),(130,'TIPO 129'),(131,'TIPO 130'),(132,'TIPO 131'),(133,'TIPO 132'),(134,'TIPO 133'),(135,'TIPO 134'),(136,'TIPO 135'),(137,'TIPO 136'),(138,'TIPO 137'),(139,'TIPO 138'),(140,'TIPO 139'),(141,'TIPO 140'),(142,'TIPO 141'),(143,'TIPO 142'),(144,'TIPO 143'),(145,'TIPO 144'),(146,'TIPO 145'),(147,'TIPO 146'),(148,'TIPO 147'),(149,'TIPO 148'),(150,'TIPO 149'),(151,'TIPO 150'),(152,'TIPO 151'),(153,'TIPO 152'),(154,'TIPO 153'),(155,'TIPO 154'),(156,'TIPO 155'),(157,'TIPO 156'),(158,'TIPO 157'),(159,'TIPO 158'),(160,'TIPO 159'),(161,'TIPO 160'),(162,'TIPO 161'),(163,'TIPO 162'),(164,'TIPO 163'),(165,'TIPO 164'),(166,'TIPO 165'),(167,'TIPO 166'),(168,'TIPO 167'),(169,'TIPO 168'),(170,'TIPO 169'),(171,'TIPO 170'),(172,'TIPO 171'),(173,'TIPO 172'),(174,'TIPO 173'),(175,'TIPO 174'),(176,'TIPO 175'),(177,'TIPO 176'),(178,'TIPO 177'),(179,'TIPO 178'),(180,'TIPO 179'),(181,'TIPO 180'),(182,'TIPO 181'),(183,'TIPO 182'),(184,'TIPO 183'),(185,'TIPO 184'),(186,'TIPO 185'),(187,'TIPO 186'),(188,'TIPO 187'),(189,'TIPO 188'),(190,'TIPO 189'),(191,'TIPO 190'),(192,'TIPO 191'),(193,'TIPO 192'),(194,'TIPO 193'),(195,'TIPO 194'),(196,'TIPO 195'),(197,'TIPO 196'),(198,'TIPO 197'),(199,'TIPO 198'),(200,'TIPO 199'),(201,'TIPO 200'),(202,'TIPO 201'),(203,'TIPO 202'),(204,'TIPO 203'),(205,'TIPO 204'),(206,'TIPO 205'),(207,'TIPO 206'),(208,'TIPO 207'),(209,'TIPO 208'),(210,'TIPO 209'),(211,'TIPO 210'),(212,'TIPO 211'),(213,'TIPO 212'),(214,'TIPO 213'),(215,'TIPO 214'),(216,'TIPO 215'),(217,'TIPO 216'),(218,'TIPO 217'),(219,'TIPO 218'),(220,'TIPO 219'),(221,'TIPO 220'),(222,'TIPO 221'),(223,'TIPO 222'),(224,'TIPO 223'),(225,'TIPO 224'),(226,'TIPO 225'),(227,'TIPO 226'),(228,'TIPO 227'),(229,'TIPO 228'),(230,'TIPO 229'),(231,'TIPO 230'),(232,'TIPO 231'),(233,'TIPO 232'),(234,'TIPO 233'),(235,'TIPO 234'),(236,'TIPO 235'),(237,'TIPO 236'),(238,'TIPO 237'),(239,'TIPO 238'),(240,'TIPO 239'),(241,'TIPO 240'),(242,'TIPO 241'),(243,'TIPO 242'),(244,'TIPO 243'),(245,'TIPO 244'),(246,'TIPO 245'),(247,'TIPO 246'),(248,'TIPO 247'),(249,'TIPO 248'),(250,'TIPO 249'),(251,'TIPO 250'),(252,'TIPO 251'),(253,'TIPO 252'),(254,'TIPO 253'),(255,'TIPO 254'),(256,'TIPO 255'),(257,'TIPO 256'),(258,'TIPO 257'),(259,'TIPO 258'),(260,'TIPO 259'),(261,'TIPO 260'),(262,'TIPO 261'),(263,'TIPO 262'),(264,'TIPO 263'),(265,'TIPO 264'),(266,'TIPO 265'),(267,'TIPO 266'),(268,'TIPO 267'),(269,'TIPO 268'),(270,'TIPO 269'),(271,'TIPO 270'),(272,'TIPO 271'),(273,'TIPO 272'),(274,'TIPO 273'),(275,'TIPO 274'),(276,'TIPO 275'),(277,'TIPO 276'),(278,'TIPO 277'),(279,'TIPO 278'),(280,'TIPO 279'),(281,'TIPO 280'),(282,'TIPO 281'),(283,'TIPO 282'),(284,'TIPO 283'),(285,'TIPO 284'),(286,'TIPO 285'),(287,'TIPO 286'),(288,'TIPO 287'),(289,'TIPO 288'),(290,'TIPO 289'),(291,'TIPO 290'),(292,'TIPO 291'),(293,'TIPO 292'),(294,'TIPO 293'),(295,'TIPO 294'),(296,'TIPO 295'),(297,'TIPO 296'),(298,'TIPO 297'),(299,'TIPO 298'),(300,'TIPO 299'),(301,'TIPO 300'),(302,'TIPO 301'),(303,'TIPO 302'),(304,'TIPO 303'),(305,'TIPO 304'),(306,'TIPO 305'),(307,'TIPO 306'),(308,'TIPO 307'),(309,'TIPO 308'),(310,'TIPO 309'),(311,'TIPO 310'),(312,'TIPO 311'),(313,'TIPO 312'),(314,'TIPO 313'),(315,'TIPO 314'),(316,'TIPO 315'),(317,'TIPO 316'),(318,'TIPO 317'),(319,'TIPO 318'),(320,'TIPO 319'),(321,'TIPO 320'),(322,'TIPO 321'),(323,'TIPO 322'),(324,'TIPO 323'),(325,'TIPO 324'),(326,'TIPO 325'),(327,'TIPO 326'),(328,'TIPO 327'),(329,'TIPO 328'),(330,'TIPO 329'),(331,'TIPO 330'),(332,'TIPO 331'),(333,'TIPO 332'),(334,'TIPO 333'),(335,'TIPO 334'),(336,'TIPO 335'),(337,'TIPO 336'),(338,'TIPO 337'),(339,'TIPO 338'),(340,'TIPO 339'),(341,'TIPO 340'),(342,'TIPO 341'),(343,'TIPO 342'),(344,'TIPO 343'),(345,'TIPO 344'),(346,'TIPO 345'),(347,'TIPO 346'),(348,'TIPO 347'),(349,'TIPO 348'),(350,'TIPO 349'),(351,'TIPO 350'),(352,'TIPO 351'),(353,'TIPO 352'),(354,'TIPO 353'),(355,'TIPO 354'),(356,'TIPO 355'),(357,'TIPO 356'),(358,'TIPO 357'),(359,'TIPO 358'),(360,'TIPO 359'),(361,'TIPO 360'),(362,'TIPO 361'),(363,'TIPO 362'),(364,'TIPO 363'),(365,'TIPO 364'),(366,'TIPO 365'),(367,'TIPO 366'),(368,'TIPO 367'),(369,'TIPO 368'),(370,'TIPO 369'),(371,'TIPO 370'),(372,'TIPO 371'),(373,'TIPO 372'),(374,'TIPO 373'),(375,'TIPO 374'),(376,'TIPO 375'),(377,'TIPO 376'),(378,'TIPO 377'),(379,'TIPO 378'),(380,'TIPO 379'),(381,'TIPO 380'),(382,'TIPO 381'),(383,'TIPO 382'),(384,'TIPO 383'),(385,'TIPO 384'),(386,'TIPO 385'),(387,'TIPO 386'),(388,'TIPO 387'),(389,'TIPO 388'),(390,'TIPO 389'),(391,'TIPO 390'),(392,'TIPO 391'),(393,'TIPO 392'),(394,'TIPO 393'),(395,'TIPO 394'),(396,'TIPO 395'),(397,'TIPO 396'),(398,'TIPO 397'),(399,'TIPO 398'),(400,'TIPO 399'),(401,'TIPO 400'),(402,'TIPO 401'),(403,'TIPO 402'),(404,'TIPO 403'),(405,'TIPO 404'),(406,'TIPO 405'),(407,'TIPO 406'),(408,'TIPO 407'),(409,'TIPO 408'),(410,'TIPO 409'),(411,'TIPO 410'),(412,'TIPO 411'),(413,'TIPO 412'),(414,'TIPO 413'),(415,'TIPO 414'),(416,'TIPO 415'),(417,'TIPO 416'),(418,'TIPO 417'),(419,'TIPO 418'),(420,'TIPO 419'),(421,'TIPO 420'),(422,'TIPO 421'),(423,'TIPO 422'),(424,'TIPO 423'),(425,'TIPO 424'),(426,'TIPO 425'),(427,'TIPO 426'),(428,'TIPO 427'),(429,'TIPO 428'),(430,'TIPO 429'),(431,'TIPO 430'),(432,'TIPO 431'),(433,'TIPO 432'),(434,'TIPO 433'),(435,'TIPO 434'),(436,'TIPO 435'),(437,'TIPO 436'),(438,'TIPO 437'),(439,'TIPO 438'),(440,'TIPO 439'),(441,'TIPO 440'),(442,'TIPO 441'),(443,'TIPO 442'),(444,'TIPO 443'),(445,'TIPO 444'),(446,'TIPO 445'),(447,'TIPO 446'),(448,'TIPO 447'),(449,'TIPO 448'),(450,'TIPO 449'),(451,'TIPO 450'),(452,'TIPO 451'),(453,'TIPO 452'),(454,'TIPO 453'),(455,'TIPO 454'),(456,'TIPO 455'),(457,'TIPO 456'),(458,'TIPO 457'),(459,'TIPO 458'),(460,'TIPO 459'),(461,'TIPO 460'),(462,'TIPO 461'),(463,'TIPO 462'),(464,'TIPO 463'),(465,'TIPO 464'),(466,'TIPO 465'),(467,'TIPO 466'),(468,'TIPO 467'),(469,'TIPO 468'),(470,'TIPO 469'),(471,'TIPO 470'),(472,'TIPO 471'),(473,'TIPO 472'),(474,'TIPO 473'),(475,'TIPO 474'),(476,'TIPO 475'),(477,'TIPO 476'),(478,'TIPO 477'),(479,'TIPO 478'),(480,'TIPO 479'),(481,'TIPO 480'),(482,'TIPO 481'),(483,'TIPO 482'),(484,'TIPO 483'),(485,'TIPO 484'),(486,'TIPO 485'),(487,'TIPO 486'),(488,'TIPO 487'),(489,'TIPO 488'),(490,'TIPO 489'),(491,'TIPO 490'),(492,'TIPO 491'),(493,'TIPO 492'),(494,'TIPO 493'),(495,'TIPO 494'),(496,'TIPO 495'),(497,'TIPO 496'),(498,'TIPO 497'),(499,'TIPO 498'),(500,'TIPO 499'),(501,'TIPO 500'),(502,'TIPO 501'),(503,'TIPO 502'),(504,'TIPO 503'),(505,'TIPO 504'),(506,'TIPO 505'),(507,'TIPO 506'),(508,'TIPO 507'),(509,'TIPO 508'),(510,'TIPO 509'),(511,'TIPO 510'),(512,'TIPO 511'),(513,'TIPO 512'),(514,'TIPO 513'),(515,'TIPO 514'),(516,'TIPO 515'),(517,'TIPO 516'),(518,'TIPO 517'),(519,'TIPO 518'),(520,'TIPO 519'),(521,'TIPO 520'),(522,'TIPO 521'),(523,'TIPO 522'),(524,'TIPO 523'),(525,'TIPO 524'),(526,'TIPO 525'),(527,'TIPO 526'),(528,'TIPO 527'),(529,'TIPO 528'),(530,'TIPO 529'),(531,'TIPO 530'),(532,'TIPO 531'),(533,'TIPO 532'),(534,'TIPO 533'),(535,'TIPO 534'),(536,'TIPO 535'),(537,'TIPO 536'),(538,'TIPO 537'),(539,'TIPO 538'),(540,'TIPO 539'),(541,'TIPO 540'),(542,'TIPO 541'),(543,'TIPO 542'),(544,'TIPO 543'),(545,'TIPO 544'),(546,'TIPO 545'),(547,'TIPO 546'),(548,'TIPO 547'),(549,'TIPO 548'),(550,'TIPO 549'),(551,'TIPO 550'),(552,'TIPO 551'),(553,'TIPO 552'),(554,'TIPO 553'),(555,'TIPO 554'),(556,'TIPO 555'),(557,'TIPO 556'),(558,'TIPO 557'),(559,'TIPO 558'),(560,'TIPO 559'),(561,'TIPO 560'),(562,'TIPO 561'),(563,'TIPO 562'),(564,'TIPO 563'),(565,'TIPO 564'),(566,'TIPO 565'),(567,'TIPO 566'),(568,'TIPO 567'),(569,'TIPO 568'),(570,'TIPO 569'),(571,'TIPO 570'),(572,'TIPO 571'),(573,'TIPO 572'),(574,'TIPO 573'),(575,'TIPO 574'),(576,'TIPO 575'),(577,'TIPO 576'),(578,'TIPO 577'),(579,'TIPO 578'),(580,'TIPO 579'),(581,'TIPO 580'),(582,'TIPO 581'),(583,'TIPO 582'),(584,'TIPO 583'),(585,'TIPO 584'),(586,'TIPO 585'),(587,'TIPO 586'),(588,'TIPO 587'),(589,'TIPO 588'),(590,'TIPO 589'),(591,'TIPO 590'),(592,'TIPO 591'),(593,'TIPO 592'),(594,'TIPO 593'),(595,'TIPO 594'),(596,'TIPO 595'),(597,'TIPO 596'),(598,'TIPO 597'),(599,'TIPO 598'),(600,'TIPO 599'),(601,'TIPO 600'),(602,'TIPO 601'),(603,'TIPO 602'),(604,'TIPO 603'),(605,'TIPO 604'),(606,'TIPO 605'),(607,'TIPO 606'),(608,'TIPO 607'),(609,'TIPO 608'),(610,'TIPO 609'),(611,'TIPO 610'),(612,'TIPO 611'),(613,'TIPO 612'),(614,'TIPO 613'),(615,'TIPO 614'),(616,'TIPO 615'),(617,'TIPO 616'),(618,'TIPO 617'),(619,'TIPO 618'),(620,'TIPO 619'),(621,'TIPO 620'),(622,'TIPO 621'),(623,'TIPO 622'),(624,'TIPO 623'),(625,'TIPO 624'),(626,'TIPO 625'),(627,'TIPO 626'),(628,'TIPO 627'),(629,'TIPO 628'),(630,'TIPO 629'),(631,'TIPO 630'),(632,'TIPO 631'),(633,'TIPO 632'),(634,'TIPO 633'),(635,'TIPO 634'),(636,'TIPO 635'),(637,'TIPO 636'),(638,'TIPO 637'),(639,'TIPO 638'),(640,'TIPO 639'),(641,'TIPO 640'),(642,'TIPO 641'),(643,'TIPO 642'),(644,'TIPO 643'),(645,'TIPO 644'),(646,'TIPO 645'),(647,'TIPO 646'),(648,'TIPO 647'),(649,'TIPO 648'),(650,'TIPO 649'),(651,'TIPO 650'),(652,'TIPO 651'),(653,'TIPO 652'),(654,'TIPO 653'),(655,'TIPO 654'),(656,'TIPO 655'),(657,'TIPO 656'),(658,'TIPO 657'),(659,'TIPO 658'),(660,'TIPO 659'),(661,'TIPO 660'),(662,'TIPO 661'),(663,'TIPO 662'),(664,'TIPO 663'),(665,'TIPO 664'),(666,'TIPO 665'),(667,'TIPO 666'),(668,'TIPO 667'),(669,'TIPO 668'),(670,'TIPO 669'),(671,'TIPO 670'),(672,'TIPO 671'),(673,'TIPO 672'),(674,'TIPO 673'),(675,'TIPO 674'),(676,'TIPO 675'),(677,'TIPO 676'),(678,'TIPO 677'),(679,'TIPO 678'),(680,'TIPO 679'),(681,'TIPO 680'),(682,'TIPO 681'),(683,'TIPO 682'),(684,'TIPO 683'),(685,'TIPO 684'),(686,'TIPO 685'),(687,'TIPO 686'),(688,'TIPO 687'),(689,'TIPO 688'),(690,'TIPO 689'),(691,'TIPO 690'),(692,'TIPO 691'),(693,'TIPO 692'),(694,'TIPO 693'),(695,'TIPO 694'),(696,'TIPO 695'),(697,'TIPO 696'),(698,'TIPO 697'),(699,'TIPO 698'),(700,'TIPO 699'),(701,'TIPO 700'),(702,'TIPO 701'),(703,'TIPO 702'),(704,'TIPO 703'),(705,'TIPO 704'),(706,'TIPO 705'),(707,'TIPO 706'),(708,'TIPO 707'),(709,'TIPO 708'),(710,'TIPO 709'),(711,'TIPO 710'),(712,'TIPO 711'),(713,'TIPO 712'),(714,'TIPO 713'),(715,'TIPO 714'),(716,'TIPO 715'),(717,'TIPO 716'),(718,'TIPO 717'),(719,'TIPO 718'),(720,'TIPO 719'),(721,'TIPO 720'),(722,'TIPO 721'),(723,'TIPO 722'),(724,'TIPO 723'),(725,'TIPO 724'),(726,'TIPO 725'),(727,'TIPO 726'),(728,'TIPO 727'),(729,'TIPO 728'),(730,'TIPO 729'),(731,'TIPO 730'),(732,'TIPO 731'),(733,'TIPO 732'),(734,'TIPO 733'),(735,'TIPO 734'),(736,'TIPO 735'),(737,'TIPO 736'),(738,'TIPO 737'),(739,'TIPO 738'),(740,'TIPO 739'),(741,'TIPO 740'),(742,'TIPO 741'),(743,'TIPO 742'),(744,'TIPO 743'),(745,'TIPO 744'),(746,'TIPO 745'),(747,'TIPO 746'),(748,'TIPO 747'),(749,'TIPO 748'),(750,'TIPO 749'),(751,'TIPO 750'),(752,'TIPO 751'),(753,'TIPO 752'),(754,'TIPO 753'),(755,'TIPO 754'),(756,'TIPO 755'),(757,'TIPO 756'),(758,'TIPO 757'),(759,'TIPO 758'),(760,'TIPO 759'),(761,'TIPO 760'),(762,'TIPO 761'),(763,'TIPO 762'),(764,'TIPO 763'),(765,'TIPO 764'),(766,'TIPO 765'),(767,'TIPO 766'),(768,'TIPO 767'),(769,'TIPO 768'),(770,'TIPO 769'),(771,'TIPO 770'),(772,'TIPO 771'),(773,'TIPO 772'),(774,'TIPO 773'),(775,'TIPO 774'),(776,'TIPO 775'),(777,'TIPO 776'),(778,'TIPO 777'),(779,'TIPO 778'),(780,'TIPO 779'),(781,'TIPO 780'),(782,'TIPO 781'),(783,'TIPO 782'),(784,'TIPO 783'),(785,'TIPO 784'),(786,'TIPO 785'),(787,'TIPO 786'),(788,'TIPO 787'),(789,'TIPO 788'),(790,'TIPO 789'),(791,'TIPO 790'),(792,'TIPO 791'),(793,'TIPO 792'),(794,'TIPO 793'),(795,'TIPO 794'),(796,'TIPO 795'),(797,'TIPO 796'),(798,'TIPO 797'),(799,'TIPO 798'),(800,'TIPO 799'),(801,'TIPO 800'),(802,'TIPO 801'),(803,'TIPO 802'),(804,'TIPO 803'),(805,'TIPO 804'),(806,'TIPO 805'),(807,'TIPO 806'),(808,'TIPO 807'),(809,'TIPO 808'),(810,'TIPO 809'),(811,'TIPO 810'),(812,'TIPO 811'),(813,'TIPO 812'),(814,'TIPO 813'),(815,'TIPO 814'),(816,'TIPO 815'),(817,'TIPO 816'),(818,'TIPO 817'),(819,'TIPO 818'),(820,'TIPO 819'),(821,'TIPO 820'),(822,'TIPO 821'),(823,'TIPO 822'),(824,'TIPO 823'),(825,'TIPO 824'),(826,'TIPO 825'),(827,'TIPO 826'),(828,'TIPO 827'),(829,'TIPO 828'),(830,'TIPO 829'),(831,'TIPO 830'),(832,'TIPO 831'),(833,'TIPO 832'),(834,'TIPO 833'),(835,'TIPO 834'),(836,'TIPO 835'),(837,'TIPO 836'),(838,'TIPO 837'),(839,'TIPO 838'),(840,'TIPO 839'),(841,'TIPO 840'),(842,'TIPO 841'),(843,'TIPO 842'),(844,'TIPO 843'),(845,'TIPO 844'),(846,'TIPO 845'),(847,'TIPO 846'),(848,'TIPO 847'),(849,'TIPO 848'),(850,'TIPO 849'),(851,'TIPO 850'),(852,'TIPO 851'),(853,'TIPO 852'),(854,'TIPO 853'),(855,'TIPO 854'),(856,'TIPO 855'),(857,'TIPO 856'),(858,'TIPO 857'),(859,'TIPO 858'),(860,'TIPO 859'),(861,'TIPO 860'),(862,'TIPO 861'),(863,'TIPO 862'),(864,'TIPO 863'),(865,'TIPO 864'),(866,'TIPO 865'),(867,'TIPO 866'),(868,'TIPO 867'),(869,'TIPO 868'),(870,'TIPO 869'),(871,'TIPO 870'),(872,'TIPO 871'),(873,'TIPO 872'),(874,'TIPO 873'),(875,'TIPO 874'),(876,'TIPO 875'),(877,'TIPO 876'),(878,'TIPO 877'),(879,'TIPO 878'),(880,'TIPO 879'),(881,'TIPO 880'),(882,'TIPO 881'),(883,'TIPO 882'),(884,'TIPO 883'),(885,'TIPO 884'),(886,'TIPO 885'),(887,'TIPO 886'),(888,'TIPO 887'),(889,'TIPO 888'),(890,'TIPO 889'),(891,'TIPO 890'),(892,'TIPO 891'),(893,'TIPO 892'),(894,'TIPO 893'),(895,'TIPO 894'),(896,'TIPO 895'),(897,'TIPO 896'),(898,'TIPO 897'),(899,'TIPO 898'),(900,'TIPO 899'),(901,'TIPO 900'),(902,'TIPO 901'),(903,'TIPO 902'),(904,'TIPO 903'),(905,'TIPO 904'),(906,'TIPO 905'),(907,'TIPO 906'),(908,'TIPO 907'),(909,'TIPO 908'),(910,'TIPO 909'),(911,'TIPO 910'),(912,'TIPO 911'),(913,'TIPO 912'),(914,'TIPO 913'),(915,'TIPO 914'),(916,'TIPO 915'),(917,'TIPO 916'),(918,'TIPO 917'),(919,'TIPO 918'),(920,'TIPO 919'),(921,'TIPO 920'),(922,'TIPO 921'),(923,'TIPO 922'),(924,'TIPO 923'),(925,'TIPO 924'),(926,'TIPO 925'),(927,'TIPO 926'),(928,'TIPO 927'),(929,'TIPO 928'),(930,'TIPO 929'),(931,'TIPO 930'),(932,'TIPO 931'),(933,'TIPO 932'),(934,'TIPO 933'),(935,'TIPO 934'),(936,'TIPO 935'),(937,'TIPO 936'),(938,'TIPO 937'),(939,'TIPO 938'),(940,'TIPO 939'),(941,'TIPO 940'),(942,'TIPO 941'),(943,'TIPO 942'),(944,'TIPO 943'),(945,'TIPO 944'),(946,'TIPO 945'),(947,'TIPO 946'),(948,'TIPO 947'),(949,'TIPO 948'),(950,'TIPO 949'),(951,'TIPO 950'),(952,'TIPO 951'),(953,'TIPO 952'),(954,'TIPO 953'),(955,'TIPO 954'),(956,'TIPO 955'),(957,'TIPO 956'),(958,'TIPO 957'),(959,'TIPO 958'),(960,'TIPO 959'),(961,'TIPO 960'),(962,'TIPO 961'),(963,'TIPO 962'),(964,'TIPO 963'),(965,'TIPO 964'),(966,'TIPO 965'),(967,'TIPO 966'),(968,'TIPO 967'),(969,'TIPO 968'),(970,'TIPO 969'),(971,'TIPO 970'),(972,'TIPO 971'),(973,'TIPO 972'),(974,'TIPO 973'),(975,'TIPO 974'),(976,'TIPO 975'),(977,'TIPO 976'),(978,'TIPO 977'),(979,'TIPO 978'),(980,'TIPO 979'),(981,'TIPO 980'),(982,'TIPO 981'),(983,'TIPO 982'),(984,'TIPO 983'),(985,'TIPO 984'),(986,'TIPO 985'),(987,'TIPO 986'),(988,'TIPO 987'),(989,'TIPO 988'),(990,'TIPO 989'),(991,'TIPO 990'),(992,'TIPO 991'),(993,'TIPO 992'),(994,'TIPO 993'),(995,'TIPO 994'),(996,'TIPO 995'),(997,'TIPO 996'),(998,'TIPO 997'),(999,'TIPO 998'),(1000,'TIPO 999'),(1001,'TIPO 1000'),(1002,'TIPO 1001'),(1003,'TIPO 1002'),(1004,'TIPO 1003'),(1005,'TIPO 1004'),(1006,'TIPO 1005'),(1007,'TIPO 1006'),(1008,'TIPO 1007'),(1009,'TIPO 1008'),(1010,'TIPO 1009'),(1011,'TIPO 1010'),(1012,'TIPO 1011'),(1013,'TIPO 1012'),(1014,'TIPO 1013'),(1015,'TIPO 1014'),(1016,'TIPO 1015'),(1017,'TIPO 1016'),(1018,'TIPO 1017'),(1019,'TIPO 1018'),(1020,'TIPO 1019'),(1021,'TIPO 1020'),(1022,'TIPO 1021'),(1023,'TIPO 1022'),(1024,'TIPO 1023'),(1025,'TIPO 1024'),(1026,'TIPO 1025'),(1027,'TIPO 1026'),(1028,'TIPO 1027'),(1029,'TIPO 1028'),(1030,'TIPO 1029'),(1031,'TIPO 1030'),(1032,'TIPO 1031'),(1033,'TIPO 1032'),(1034,'TIPO 1033'),(1035,'TIPO 1034'),(1036,'TIPO 1035'),(1037,'TIPO 1036'),(1038,'TIPO 1037'),(1039,'TIPO 1038'),(1040,'TIPO 1039'),(1041,'TIPO 1040'),(1042,'TIPO 1041'),(1043,'TIPO 1042'),(1044,'TIPO 1043'),(1045,'TIPO 1044'),(1046,'TIPO 1045'),(1047,'TIPO 1046'),(1048,'TIPO 1047'),(1049,'TIPO 1048'),(1050,'TIPO 1049'),(1051,'TIPO 1050'),(1052,'TIPO 1051'),(1053,'TIPO 1052'),(1054,'TIPO 1053'),(1055,'TIPO 1054'),(1056,'TIPO 1055'),(1057,'TIPO 1056'),(1058,'TIPO 1057'),(1059,'TIPO 1058'),(1060,'TIPO 1059'),(1061,'TIPO 1060'),(1062,'TIPO 1061'),(1063,'TIPO 1062'),(1064,'TIPO 1063'),(1065,'TIPO 1064'),(1066,'TIPO 1065'),(1067,'TIPO 1066'),(1068,'TIPO 1067'),(1069,'TIPO 1068'),(1070,'TIPO 1069'),(1071,'TIPO 1070'),(1072,'TIPO 1071'),(1073,'TIPO 1072'),(1074,'TIPO 1073'),(1075,'TIPO 1074'),(1076,'TIPO 1075'),(1077,'TIPO 1076'),(1078,'TIPO 1077'),(1079,'TIPO 1078'),(1080,'TIPO 1079'),(1081,'TIPO 1080'),(1082,'TIPO 1081'),(1083,'TIPO 1082'),(1084,'TIPO 1083'),(1085,'TIPO 1084'),(1086,'TIPO 1085'),(1087,'TIPO 1086'),(1088,'TIPO 1087'),(1089,'TIPO 1088'),(1090,'TIPO 1089'),(1091,'TIPO 1090'),(1092,'TIPO 1091'),(1093,'TIPO 1092'),(1094,'TIPO 1093'),(1095,'TIPO 1094'),(1096,'TIPO 1095'),(1097,'TIPO 1096'),(1098,'TIPO 1097'),(1099,'TIPO 1098'),(1100,'TIPO 1099'),(1101,'TIPO 1100'),(1102,'TIPO 1101'),(1103,'TIPO 1102'),(1104,'TIPO 1103'),(1105,'TIPO 1104'),(1106,'TIPO 1105'),(1107,'TIPO 1106'),(1108,'TIPO 1107'),(1109,'TIPO 1108'),(1110,'TIPO 1109'),(1111,'TIPO 1110'),(1112,'TIPO 1111'),(1113,'TIPO 1112'),(1114,'TIPO 1113'),(1115,'TIPO 1114'),(1116,'TIPO 1115'),(1117,'TIPO 1116'),(1118,'TIPO 1117'),(1119,'TIPO 1118'),(1120,'TIPO 1119'),(1121,'TIPO 1120'),(1122,'TIPO 1121'),(1123,'TIPO 1122'),(1124,'TIPO 1123'),(1125,'TIPO 1124'),(1126,'TIPO 1125'),(1127,'TIPO 1126'),(1128,'TIPO 1127'),(1129,'TIPO 1128'),(1130,'TIPO 1129'),(1131,'TIPO 1130'),(1132,'TIPO 1131'),(1133,'TIPO 1132'),(1134,'TIPO 1133'),(1135,'TIPO 1134'),(1136,'TIPO 1135'),(1137,'TIPO 1136'),(1138,'TIPO 1137'),(1139,'TIPO 1138'),(1140,'TIPO 1139'),(1141,'TIPO 1140'),(1142,'TIPO 1141'),(1143,'TIPO 1142'),(1144,'TIPO 1143'),(1145,'TIPO 1144'),(1146,'TIPO 1145'),(1147,'TIPO 1146'),(1148,'TIPO 1147'),(1149,'TIPO 1148'),(1150,'TIPO 1149'),(1151,'TIPO 1150'),(1152,'TIPO 1151'),(1153,'TIPO 1152'),(1154,'TIPO 1153'),(1155,'TIPO 1154'),(1156,'TIPO 1155'),(1157,'TIPO 1156'),(1158,'TIPO 1157'),(1159,'TIPO 1158'),(1160,'TIPO 1159'),(1161,'TIPO 1160'),(1162,'TIPO 1161'),(1163,'TIPO 1162'),(1164,'TIPO 1163'),(1165,'TIPO 1164'),(1166,'TIPO 1165'),(1167,'TIPO 1166'),(1168,'TIPO 1167'),(1169,'TIPO 1168'),(1170,'TIPO 1169'),(1171,'TIPO 1170'),(1172,'TIPO 1171'),(1173,'TIPO 1172'),(1174,'TIPO 1173'),(1175,'TIPO 1174'),(1176,'TIPO 1175'),(1177,'TIPO 1176'),(1178,'TIPO 1177'),(1179,'TIPO 1178'),(1180,'TIPO 1179'),(1181,'TIPO 1180'),(1182,'TIPO 1181'),(1183,'TIPO 1182'),(1184,'TIPO 1183'),(1185,'TIPO 1184'),(1186,'TIPO 1185'),(1187,'TIPO 1186'),(1188,'TIPO 1187'),(1189,'TIPO 1188'),(1190,'TIPO 1189'),(1191,'TIPO 1190'),(1192,'TIPO 1191'),(1193,'TIPO 1192'),(1194,'TIPO 1193'),(1195,'TIPO 1194'),(1196,'TIPO 1195'),(1197,'TIPO 1196'),(1198,'TIPO 1197'),(1199,'TIPO 1198'),(1200,'TIPO 1199'),(1201,'TIPO 1200'),(1202,'TIPO 1201'),(1203,'TIPO 1202'),(1204,'TIPO 1203'),(1205,'TIPO 1204'),(1206,'TIPO 1205'),(1207,'TIPO 1206'),(1208,'TIPO 1207'),(1209,'TIPO 1208'),(1210,'TIPO 1209'),(1211,'TIPO 1210'),(1212,'TIPO 1211'),(1213,'TIPO 1212'),(1214,'TIPO 1213'),(1215,'TIPO 1214'),(1216,'TIPO 1215'),(1217,'TIPO 1216'),(1218,'TIPO 1217'),(1219,'TIPO 1218'),(1220,'TIPO 1219'),(1221,'TIPO 1220'),(1222,'TIPO 1221'),(1223,'TIPO 1222'),(1224,'TIPO 1223'),(1225,'TIPO 1224'),(1226,'TIPO 1225'),(1227,'TIPO 1226'),(1228,'TIPO 1227'),(1229,'TIPO 1228'),(1230,'TIPO 1229'),(1231,'TIPO 1230'),(1232,'TIPO 1231'),(1233,'TIPO 1232'),(1234,'TIPO 1233'),(1235,'TIPO 1234'),(1236,'TIPO 1235'),(1237,'TIPO 1236'),(1238,'TIPO 1237'),(1239,'TIPO 1238'),(1240,'TIPO 1239'),(1241,'TIPO 1240'),(1242,'TIPO 1241'),(1243,'TIPO 1242'),(1244,'TIPO 1243'),(1245,'TIPO 1244'),(1246,'TIPO 1245'),(1247,'TIPO 1246'),(1248,'TIPO 1247'),(1249,'TIPO 1248'),(1250,'TIPO 1249'),(1251,'TIPO 1250'),(1252,'TIPO 1251'),(1253,'TIPO 1252'),(1254,'TIPO 1253'),(1255,'TIPO 1254'),(1256,'TIPO 1255'),(1257,'TIPO 1256'),(1258,'TIPO 1257'),(1259,'TIPO 1258'),(1260,'TIPO 1259'),(1261,'TIPO 1260'),(1262,'TIPO 1261'),(1263,'TIPO 1262'),(1264,'TIPO 1263'),(1265,'TIPO 1264'),(1266,'TIPO 1265'),(1267,'TIPO 1266'),(1268,'TIPO 1267'),(1269,'TIPO 1268'),(1270,'TIPO 1269'),(1271,'TIPO 1270'),(1272,'TIPO 1271'),(1273,'TIPO 1272'),(1274,'TIPO 1273'),(1275,'TIPO 1274'),(1276,'TIPO 1275'),(1277,'TIPO 1276'),(1278,'TIPO 1277'),(1279,'TIPO 1278'),(1280,'TIPO 1279'),(1281,'TIPO 1280'),(1282,'TIPO 1281'),(1283,'TIPO 1282'),(1284,'TIPO 1283'),(1285,'TIPO 1284'),(1286,'TIPO 1285'),(1287,'TIPO 1286'),(1288,'TIPO 1287'),(1289,'TIPO 1288'),(1290,'TIPO 1289'),(1291,'TIPO 1290'),(1292,'TIPO 1291'),(1293,'TIPO 1292'),(1294,'TIPO 1293'),(1295,'TIPO 1294'),(1296,'TIPO 1295'),(1297,'TIPO 1296'),(1298,'TIPO 1297'),(1299,'TIPO 1298'),(1300,'TIPO 1299'),(1301,'TIPO 1300'),(1302,'TIPO 1301'),(1303,'TIPO 1302'),(1304,'TIPO 1303'),(1305,'TIPO 1304'),(1306,'TIPO 1305'),(1307,'TIPO 1306'),(1308,'TIPO 1307'),(1309,'TIPO 1308'),(1310,'TIPO 1309'),(1311,'TIPO 1310'),(1312,'TIPO 1311'),(1313,'TIPO 1312'),(1314,'TIPO 1313'),(1315,'TIPO 1314'),(1316,'TIPO 1315'),(1317,'TIPO 1316'),(1318,'TIPO 1317'),(1319,'TIPO 1318'),(1320,'TIPO 1319'),(1321,'TIPO 1320'),(1322,'TIPO 1321'),(1323,'TIPO 1322'),(1324,'TIPO 1323'),(1325,'TIPO 1324'),(1326,'TIPO 1325'),(1327,'TIPO 1326'),(1328,'TIPO 1327'),(1329,'TIPO 1328'),(1330,'TIPO 1329'),(1331,'TIPO 1330'),(1332,'TIPO 1331'),(1333,'TIPO 1332'),(1334,'TIPO 1333'),(1335,'TIPO 1334'),(1336,'TIPO 1335'),(1337,'TIPO 1336'),(1338,'TIPO 1337'),(1339,'TIPO 1338'),(1340,'TIPO 1339'),(1341,'TIPO 1340'),(1342,'TIPO 1341'),(1343,'TIPO 1342'),(1344,'TIPO 1343'),(1345,'TIPO 1344'),(1346,'TIPO 1345'),(1347,'TIPO 1346'),(1348,'TIPO 1347'),(1349,'TIPO 1348'),(1350,'TIPO 1349'),(1351,'TIPO 1350'),(1352,'TIPO 1351'),(1353,'TIPO 1352'),(1354,'TIPO 1353'),(1355,'TIPO 1354'),(1356,'TIPO 1355'),(1357,'TIPO 1356'),(1358,'TIPO 1357'),(1359,'TIPO 1358'),(1360,'TIPO 1359'),(1361,'TIPO 1360'),(1362,'TIPO 1361'),(1363,'TIPO 1362'),(1364,'TIPO 1363'),(1365,'TIPO 1364'),(1366,'TIPO 1365'),(1367,'TIPO 1366'),(1368,'TIPO 1367'),(1369,'TIPO 1368'),(1370,'TIPO 1369'),(1371,'TIPO 1370'),(1372,'TIPO 1371'),(1373,'TIPO 1372'),(1374,'TIPO 1373'),(1375,'TIPO 1374'),(1376,'TIPO 1375'),(1377,'TIPO 1376'),(1378,'TIPO 1377'),(1379,'TIPO 1378'),(1380,'TIPO 1379'),(1381,'TIPO 1380'),(1382,'TIPO 1381'),(1383,'TIPO 1382'),(1384,'TIPO 1383'),(1385,'TIPO 1384'),(1386,'TIPO 1385'),(1387,'TIPO 1386'),(1388,'TIPO 1387'),(1389,'TIPO 1388'),(1390,'TIPO 1389'),(1391,'TIPO 1390'),(1392,'TIPO 1391'),(1393,'TIPO 1392'),(1394,'TIPO 1393'),(1395,'TIPO 1394'),(1396,'TIPO 1395'),(1397,'TIPO 1396'),(1398,'TIPO 1397'),(1399,'TIPO 1398'),(1400,'TIPO 1399'),(1401,'TIPO 1400'),(1402,'TIPO 1401'),(1403,'TIPO 1402'),(1404,'TIPO 1403'),(1405,'TIPO 1404'),(1406,'TIPO 1405'),(1407,'TIPO 1406'),(1408,'TIPO 1407'),(1409,'TIPO 1408'),(1410,'TIPO 1409'),(1411,'TIPO 1410'),(1412,'TIPO 1411'),(1413,'TIPO 1412'),(1414,'TIPO 1413'),(1415,'TIPO 1414'),(1416,'TIPO 1415'),(1417,'TIPO 1416'),(1418,'TIPO 1417'),(1419,'TIPO 1418'),(1420,'TIPO 1419'),(1421,'TIPO 1420'),(1422,'TIPO 1421'),(1423,'TIPO 1422'),(1424,'TIPO 1423'),(1425,'TIPO 1424'),(1426,'TIPO 1425'),(1427,'TIPO 1426'),(1428,'TIPO 1427'),(1429,'TIPO 1428'),(1430,'TIPO 1429'),(1431,'TIPO 1430'),(1432,'TIPO 1431'),(1433,'TIPO 1432'),(1434,'TIPO 1433'),(1435,'TIPO 1434'),(1436,'TIPO 1435'),(1437,'TIPO 1436'),(1438,'TIPO 1437'),(1439,'TIPO 1438'),(1440,'TIPO 1439'),(1441,'TIPO 1440'),(1442,'TIPO 1441'),(1443,'TIPO 1442'),(1444,'TIPO 1443'),(1445,'TIPO 1444'),(1446,'TIPO 1445'),(1447,'TIPO 1446'),(1448,'TIPO 1447'),(1449,'TIPO 1448'),(1450,'TIPO 1449'),(1451,'TIPO 1450'),(1452,'TIPO 1451'),(1453,'TIPO 1452'),(1454,'TIPO 1453'),(1455,'TIPO 1454'),(1456,'TIPO 1455'),(1457,'TIPO 1456'),(1458,'TIPO 1457'),(1459,'TIPO 1458'),(1460,'TIPO 1459'),(1461,'TIPO 1460'),(1462,'TIPO 1461'),(1463,'TIPO 1462'),(1464,'TIPO 1463'),(1465,'TIPO 1464'),(1466,'TIPO 1465'),(1467,'TIPO 1466'),(1468,'TIPO 1467'),(1469,'TIPO 1468'),(1470,'TIPO 1469'),(1471,'TIPO 1470'),(1472,'TIPO 1471'),(1473,'TIPO 1472'),(1474,'TIPO 1473'),(1475,'TIPO 1474'),(1476,'TIPO 1475'),(1477,'TIPO 1476'),(1478,'TIPO 1477'),(1479,'TIPO 1478'),(1480,'TIPO 1479'),(1481,'TIPO 1480'),(1482,'TIPO 1481'),(1483,'TIPO 1482'),(1484,'TIPO 1483'),(1485,'TIPO 1484'),(1486,'TIPO 1485'),(1487,'TIPO 1486'),(1488,'TIPO 1487'),(1489,'TIPO 1488'),(1490,'TIPO 1489'),(1491,'TIPO 1490'),(1492,'TIPO 1491'),(1493,'TIPO 1492'),(1494,'TIPO 1493'),(1495,'TIPO 1494'),(1496,'TIPO 1495'),(1497,'TIPO 1496'),(1498,'TIPO 1497'),(1499,'TIPO 1498'),(1500,'TIPO 1499'),(1501,'TIPO 1500'),(1502,'TIPO 1501'),(1503,'TIPO 1502'),(1504,'TIPO 1503'),(1505,'TIPO 1504'),(1506,'TIPO 1505'),(1507,'TIPO 1506'),(1508,'TIPO 1507'),(1509,'TIPO 1508'),(1510,'TIPO 1509'),(1511,'TIPO 1510'),(1512,'TIPO 1511'),(1513,'TIPO 1512'),(1514,'TIPO 1513'),(1515,'TIPO 1514'),(1516,'TIPO 1515'),(1517,'TIPO 1516'),(1518,'TIPO 1517'),(1519,'TIPO 1518'),(1520,'TIPO 1519'),(1521,'TIPO 1520'),(1522,'TIPO 1521'),(1523,'TIPO 1522'),(1524,'TIPO 1523'),(1525,'TIPO 1524'),(1526,'TIPO 1525'),(1527,'TIPO 1526'),(1528,'TIPO 1527'),(1529,'TIPO 1528'),(1530,'TIPO 1529'),(1531,'TIPO 1530'),(1532,'TIPO 1531'),(1533,'TIPO 1532'),(1534,'TIPO 1533'),(1535,'TIPO 1534'),(1536,'TIPO 1535'),(1537,'TIPO 1536'),(1538,'TIPO 1537'),(1539,'TIPO 1538'),(1540,'TIPO 1539'),(1541,'TIPO 1540'),(1542,'TIPO 1541'),(1543,'TIPO 1542'),(1544,'TIPO 1543'),(1545,'TIPO 1544'),(1546,'TIPO 1545'),(1547,'TIPO 1546'),(1548,'TIPO 1547'),(1549,'TIPO 1548'),(1550,'TIPO 1549'),(1551,'TIPO 1550'),(1552,'TIPO 1551'),(1553,'TIPO 1552'),(1554,'TIPO 1553'),(1555,'TIPO 1554'),(1556,'TIPO 1555'),(1557,'TIPO 1556'),(1558,'TIPO 1557'),(1559,'TIPO 1558'),(1560,'TIPO 1559'),(1561,'TIPO 1560'),(1562,'TIPO 1561'),(1563,'TIPO 1562'),(1564,'TIPO 1563'),(1565,'TIPO 1564'),(1566,'TIPO 1565'),(1567,'TIPO 1566'),(1568,'TIPO 1567'),(1569,'TIPO 1568'),(1570,'TIPO 1569'),(1571,'TIPO 1570'),(1572,'TIPO 1571'),(1573,'TIPO 1572'),(1574,'TIPO 1573'),(1575,'TIPO 1574'),(1576,'TIPO 1575'),(1577,'TIPO 1576'),(1578,'TIPO 1577'),(1579,'TIPO 1578'),(1580,'TIPO 1579'),(1581,'TIPO 1580'),(1582,'TIPO 1581'),(1583,'TIPO 1582'),(1584,'TIPO 1583'),(1585,'TIPO 1584'),(1586,'TIPO 1585'),(1587,'TIPO 1586'),(1588,'TIPO 1587'),(1589,'TIPO 1588'),(1590,'TIPO 1589'),(1591,'TIPO 1590'),(1592,'TIPO 1591'),(1593,'TIPO 1592'),(1594,'TIPO 1593'),(1595,'TIPO 1594'),(1596,'TIPO 1595'),(1597,'TIPO 1596'),(1598,'TIPO 1597'),(1599,'TIPO 1598'),(1600,'TIPO 1599'),(1601,'TIPO 1600'),(1602,'TIPO 1601'),(1603,'TIPO 1602'),(1604,'TIPO 1603'),(1605,'TIPO 1604'),(1606,'TIPO 1605'),(1607,'TIPO 1606'),(1608,'TIPO 1607'),(1609,'TIPO 1608'),(1610,'TIPO 1609'),(1611,'TIPO 1610'),(1612,'TIPO 1611'),(1613,'TIPO 1612'),(1614,'TIPO 1613'),(1615,'TIPO 1614'),(1616,'TIPO 1615'),(1617,'TIPO 1616'),(1618,'TIPO 1617'),(1619,'TIPO 1618'),(1620,'TIPO 1619'),(1621,'TIPO 1620'),(1622,'TIPO 1621'),(1623,'TIPO 1622'),(1624,'TIPO 1623'),(1625,'TIPO 1624'),(1626,'TIPO 1625'),(1627,'TIPO 1626'),(1628,'TIPO 1627'),(1629,'TIPO 1628'),(1630,'TIPO 1629'),(1631,'TIPO 1630'),(1632,'TIPO 1631'),(1633,'TIPO 1632'),(1634,'TIPO 1633'),(1635,'TIPO 1634'),(1636,'TIPO 1635'),(1637,'TIPO 1636'),(1638,'TIPO 1637'),(1639,'TIPO 1638'),(1640,'TIPO 1639'),(1641,'TIPO 1640'),(1642,'TIPO 1641'),(1643,'TIPO 1642'),(1644,'TIPO 1643'),(1645,'TIPO 1644'),(1646,'TIPO 1645'),(1647,'TIPO 1646'),(1648,'TIPO 1647'),(1649,'TIPO 1648'),(1650,'TIPO 1649'),(1651,'TIPO 1650'),(1652,'TIPO 1651'),(1653,'TIPO 1652'),(1654,'TIPO 1653'),(1655,'TIPO 1654'),(1656,'TIPO 1655'),(1657,'TIPO 1656'),(1658,'TIPO 1657'),(1659,'TIPO 1658'),(1660,'TIPO 1659'),(1661,'TIPO 1660'),(1662,'TIPO 1661'),(1663,'TIPO 1662'),(1664,'TIPO 1663'),(1665,'TIPO 1664'),(1666,'TIPO 1665'),(1667,'TIPO 1666'),(1668,'TIPO 1667'),(1669,'TIPO 1668'),(1670,'TIPO 1669'),(1671,'TIPO 1670'),(1672,'TIPO 1671'),(1673,'TIPO 1672'),(1674,'TIPO 1673'),(1675,'TIPO 1674'),(1676,'TIPO 1675'),(1677,'TIPO 1676'),(1678,'TIPO 1677'),(1679,'TIPO 1678'),(1680,'TIPO 1679'),(1681,'TIPO 1680'),(1682,'TIPO 1681'),(1683,'TIPO 1682'),(1684,'TIPO 1683'),(1685,'TIPO 1684'),(1686,'TIPO 1685'),(1687,'TIPO 1686'),(1688,'TIPO 1687'),(1689,'TIPO 1688'),(1690,'TIPO 1689'),(1691,'TIPO 1690'),(1692,'TIPO 1691'),(1693,'TIPO 1692'),(1694,'TIPO 1693'),(1695,'TIPO 1694'),(1696,'TIPO 1695'),(1697,'TIPO 1696'),(1698,'TIPO 1697'),(1699,'TIPO 1698'),(1700,'TIPO 1699'),(1701,'TIPO 1700'),(1702,'TIPO 1701'),(1703,'TIPO 1702'),(1704,'TIPO 1703'),(1705,'TIPO 1704'),(1706,'TIPO 1705'),(1707,'TIPO 1706'),(1708,'TIPO 1707'),(1709,'TIPO 1708'),(1710,'TIPO 1709'),(1711,'TIPO 1710'),(1712,'TIPO 1711'),(1713,'TIPO 1712'),(1714,'TIPO 1713'),(1715,'TIPO 1714'),(1716,'TIPO 1715'),(1717,'TIPO 1716'),(1718,'TIPO 1717'),(1719,'TIPO 1718'),(1720,'TIPO 1719'),(1721,'TIPO 1720'),(1722,'TIPO 1721'),(1723,'TIPO 1722'),(1724,'TIPO 1723'),(1725,'TIPO 1724'),(1726,'TIPO 1725'),(1727,'TIPO 1726'),(1728,'TIPO 1727'),(1729,'TIPO 1728'),(1730,'TIPO 1729'),(1731,'TIPO 1730'),(1732,'TIPO 1731'),(1733,'TIPO 1732'),(1734,'TIPO 1733'),(1735,'TIPO 1734'),(1736,'TIPO 1735'),(1737,'TIPO 1736'),(1738,'TIPO 1737'),(1739,'TIPO 1738'),(1740,'TIPO 1739'),(1741,'TIPO 1740'),(1742,'TIPO 1741'),(1743,'TIPO 1742'),(1744,'TIPO 1743'),(1745,'TIPO 1744'),(1746,'TIPO 1745'),(1747,'TIPO 1746'),(1748,'TIPO 1747'),(1749,'TIPO 1748'),(1750,'TIPO 1749'),(1751,'TIPO 1750'),(1752,'TIPO 1751'),(1753,'TIPO 1752'),(1754,'TIPO 1753'),(1755,'TIPO 1754'),(1756,'TIPO 1755'),(1757,'TIPO 1756'),(1758,'TIPO 1757'),(1759,'TIPO 1758'),(1760,'TIPO 1759'),(1761,'TIPO 1760'),(1762,'TIPO 1761'),(1763,'TIPO 1762'),(1764,'TIPO 1763'),(1765,'TIPO 1764'),(1766,'TIPO 1765'),(1767,'TIPO 1766'),(1768,'TIPO 1767'),(1769,'TIPO 1768'),(1770,'TIPO 1769'),(1771,'TIPO 1770'),(1772,'TIPO 1771'),(1773,'TIPO 1772'),(1774,'TIPO 1773'),(1775,'TIPO 1774'),(1776,'TIPO 1775'),(1777,'TIPO 1776'),(1778,'TIPO 1777'),(1779,'TIPO 1778'),(1780,'TIPO 1779'),(1781,'TIPO 1780'),(1782,'TIPO 1781'),(1783,'TIPO 1782'),(1784,'TIPO 1783'),(1785,'TIPO 1784'),(1786,'TIPO 1785'),(1787,'TIPO 1786'),(1788,'TIPO 1787'),(1789,'TIPO 1788'),(1790,'TIPO 1789'),(1791,'TIPO 1790'),(1792,'TIPO 1791'),(1793,'TIPO 1792'),(1794,'TIPO 1793'),(1795,'TIPO 1794'),(1796,'TIPO 1795'),(1797,'TIPO 1796'),(1798,'TIPO 1797'),(1799,'TIPO 1798'),(1800,'TIPO 1799'),(1801,'TIPO 1800'),(1802,'TIPO 1801'),(1803,'TIPO 1802'),(1804,'TIPO 1803'),(1805,'TIPO 1804'),(1806,'TIPO 1805'),(1807,'TIPO 1806'),(1808,'TIPO 1807'),(1809,'TIPO 1808'),(1810,'TIPO 1809'),(1811,'TIPO 1810'),(1812,'TIPO 1811'),(1813,'TIPO 1812'),(1814,'TIPO 1813'),(1815,'TIPO 1814'),(1816,'TIPO 1815'),(1817,'TIPO 1816'),(1818,'TIPO 1817'),(1819,'TIPO 1818'),(1820,'TIPO 1819'),(1821,'TIPO 1820'),(1822,'TIPO 1821'),(1823,'TIPO 1822'),(1824,'TIPO 1823'),(1825,'TIPO 1824'),(1826,'TIPO 1825'),(1827,'TIPO 1826'),(1828,'TIPO 1827'),(1829,'TIPO 1828'),(1830,'TIPO 1829'),(1831,'TIPO 1830'),(1832,'TIPO 1831'),(1833,'TIPO 1832'),(1834,'TIPO 1833'),(1835,'TIPO 1834'),(1836,'TIPO 1835'),(1837,'TIPO 1836'),(1838,'TIPO 1837'),(1839,'TIPO 1838'),(1840,'TIPO 1839'),(1841,'TIPO 1840'),(1842,'TIPO 1841'),(1843,'TIPO 1842'),(1844,'TIPO 1843'),(1845,'TIPO 1844'),(1846,'TIPO 1845'),(1847,'TIPO 1846'),(1848,'TIPO 1847'),(1849,'TIPO 1848'),(1850,'TIPO 1849'),(1851,'TIPO 1850'),(1852,'TIPO 1851'),(1853,'TIPO 1852'),(1854,'TIPO 1853'),(1855,'TIPO 1854'),(1856,'TIPO 1855'),(1857,'TIPO 1856'),(1858,'TIPO 1857'),(1859,'TIPO 1858'),(1860,'TIPO 1859'),(1861,'TIPO 1860'),(1862,'TIPO 1861'),(1863,'TIPO 1862'),(1864,'TIPO 1863'),(1865,'TIPO 1864'),(1866,'TIPO 1865'),(1867,'TIPO 1866'),(1868,'TIPO 1867'),(1869,'TIPO 1868'),(1870,'TIPO 1869'),(1871,'TIPO 1870'),(1872,'TIPO 1871'),(1873,'TIPO 1872'),(1874,'TIPO 1873'),(1875,'TIPO 1874'),(1876,'TIPO 1875'),(1877,'TIPO 1876'),(1878,'TIPO 1877'),(1879,'TIPO 1878'),(1880,'TIPO 1879'),(1881,'TIPO 1880'),(1882,'TIPO 1881'),(1883,'TIPO 1882'),(1884,'TIPO 1883'),(1885,'TIPO 1884'),(1886,'TIPO 1885'),(1887,'TIPO 1886'),(1888,'TIPO 1887'),(1889,'TIPO 1888'),(1890,'TIPO 1889'),(1891,'TIPO 1890'),(1892,'TIPO 1891'),(1893,'TIPO 1892'),(1894,'TIPO 1893'),(1895,'TIPO 1894'),(1896,'TIPO 1895'),(1897,'TIPO 1896'),(1898,'TIPO 1897'),(1899,'TIPO 1898'),(1900,'TIPO 1899'),(1901,'TIPO 1900'),(1902,'TIPO 1901'),(1903,'TIPO 1902'),(1904,'TIPO 1903'),(1905,'TIPO 1904'),(1906,'TIPO 1905'),(1907,'TIPO 1906'),(1908,'TIPO 1907'),(1909,'TIPO 1908'),(1910,'TIPO 1909'),(1911,'TIPO 1910'),(1912,'TIPO 1911'),(1913,'TIPO 1912'),(1914,'TIPO 1913'),(1915,'TIPO 1914'),(1916,'TIPO 1915'),(1917,'TIPO 1916'),(1918,'TIPO 1917'),(1919,'TIPO 1918'),(1920,'TIPO 1919'),(1921,'TIPO 1920'),(1922,'TIPO 1921'),(1923,'TIPO 1922'),(1924,'TIPO 1923'),(1925,'TIPO 1924'),(1926,'TIPO 1925'),(1927,'TIPO 1926'),(1928,'TIPO 1927'),(1929,'TIPO 1928'),(1930,'TIPO 1929'),(1931,'TIPO 1930'),(1932,'TIPO 1931'),(1933,'TIPO 1932'),(1934,'TIPO 1933'),(1935,'TIPO 1934'),(1936,'TIPO 1935'),(1937,'TIPO 1936'),(1938,'TIPO 1937'),(1939,'TIPO 1938'),(1940,'TIPO 1939'),(1941,'TIPO 1940'),(1942,'TIPO 1941'),(1943,'TIPO 1942'),(1944,'TIPO 1943'),(1945,'TIPO 1944'),(1946,'TIPO 1945'),(1947,'TIPO 1946'),(1948,'TIPO 1947'),(1949,'TIPO 1948'),(1950,'TIPO 1949'),(1951,'TIPO 1950'),(1952,'TIPO 1951'),(1953,'TIPO 1952'),(1954,'TIPO 1953'),(1955,'TIPO 1954'),(1956,'TIPO 1955'),(1957,'TIPO 1956'),(1958,'TIPO 1957'),(1959,'TIPO 1958'),(1960,'TIPO 1959'),(1961,'TIPO 1960'),(1962,'TIPO 1961'),(1963,'TIPO 1962'),(1964,'TIPO 1963'),(1965,'TIPO 1964'),(1966,'TIPO 1965'),(1967,'TIPO 1966'),(1968,'TIPO 1967'),(1969,'TIPO 1968'),(1970,'TIPO 1969'),(1971,'TIPO 1970'),(1972,'TIPO 1971'),(1973,'TIPO 1972'),(1974,'TIPO 1973'),(1975,'TIPO 1974'),(1976,'TIPO 1975'),(1977,'TIPO 1976'),(1978,'TIPO 1977'),(1979,'TIPO 1978'),(1980,'TIPO 1979'),(1981,'TIPO 1980'),(1982,'TIPO 1981'),(1983,'TIPO 1982'),(1984,'TIPO 1983'),(1985,'TIPO 1984'),(1986,'TIPO 1985'),(1987,'TIPO 1986'),(1988,'TIPO 1987'),(1989,'TIPO 1988'),(1990,'TIPO 1989'),(1991,'TIPO 1990'),(1992,'TIPO 1991'),(1993,'TIPO 1992'),(1994,'TIPO 1993'),(1995,'TIPO 1994'),(1996,'TIPO 1995'),(1997,'TIPO 1996'),(1998,'TIPO 1997'),(1999,'TIPO 1998'),(2000,'TIPO 1999'); -/*!40000 ALTER TABLE `tipo_documento` ENABLE KEYS */; -UNLOCK TABLES; - -DROP TABLE IF EXISTS `issue_1534`; -CREATE TABLE `issue_1534` ( - `id` smallint(6) unsigned NOT NULL AUTO_INCREMENT, - `language` varchar(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'bb', - `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `slug` varchar(20) COLLATE utf8_unicode_ci NOT NULL, - `brand` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, - `sort` tinyint(3) unsigned NOT NULL DEFAULT '0', - `language2` varchar(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'bb', - PRIMARY KEY (`id`,`language`), - UNIQUE KEY `slug` (`slug`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - -DROP TABLE IF EXISTS `issue_2019`; -CREATE TABLE IF NOT EXISTS `issue_2019` ( - `id` int(10) NOT NULL AUTO_INCREMENT, - `column` varchar(100) COLLATE utf8_unicode_ci NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - -DROP TABLE IF EXISTS `ph_select`; -CREATE TABLE IF NOT EXISTS `ph_select` ( - `sel_id` int(11) unsigned NOT NULL AUTO_INCREMENT, - `sel_name` varchar(16) COLLATE utf8_unicode_ci NOT NULL, - `sel_text` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL, - PRIMARY KEY (`sel_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; +drop table if exists `issue_1534`; +create table `issue_1534` ( + `id` smallint(6) unsigned not null auto_increment, + `language` varchar(2) collate utf8_unicode_ci not null DEFAULT 'bb', + `name` varchar(255) collate utf8_unicode_ci not null, + `slug` varchar(20) collate utf8_unicode_ci not null, + `brand` varchar(100) collate utf8_unicode_ci default null, + `sort` tinyint(3) unsigned not null DEFAULT '0', + `language2` varchar(2) collate utf8_unicode_ci not null DEFAULT 'bb', + primary key (`id`,`language`), + UNIQUE KEY `slug` (`slug`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; + +drop table if exists `issue_2019`; +create table IF NOT EXISTS `issue_2019` ( + `id` int(10) not null auto_increment, + `column` varchar(100) collate utf8_unicode_ci not null, + primary key (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; + +drop table if exists `ph_select`; +create table IF NOT EXISTS `ph_select` ( + `sel_id` int(11) unsigned not null auto_increment, + `sel_name` varchar(16) collate utf8_unicode_ci not null, + `sel_text` varchar(32) collate utf8_unicode_ci default null, + primary key (`sel_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; INSERT INTO `ph_select` (`sel_id`, `sel_name`, `sel_text`) VALUES (1, 'Sun', 'The one and only'), (2, 'Mercury', 'Cold and hot'), @@ -454,47 +226,40 @@ INSERT INTO `ph_select` (`sel_id`, `sel_name`, `sel_text`) VALUES (7, 'Saturn', 'A car'), (8, 'Uranus', 'Loads of jokes for this one'); -DROP TABLE IF EXISTS `issue_11036`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `issue_11036` ( - `id` int(11) unsigned NOT NULL AUTO_INCREMENT, - `token` varchar(100) NOT NULL, - PRIMARY KEY (`id`), +drop table if exists `issue_11036`; +create table `issue_11036` ( + `id` int(11) unsigned not null auto_increment, + `token` varchar(100) not null, + primary key (`id`), UNIQUE KEY `issue_11036_token_UNIQUE` (`token`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -DROP TABLE IF EXISTS `packages`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `packages` ( - `reference_type_id` int(11) NOT NULL, - `reference_id` int(10) unsigned NOT NULL, - `title` varchar(100) COLLATE utf8_unicode_ci NOT NULL, - `created` int(10) unsigned NOT NULL, - `updated` int(10) unsigned NOT NULL, - `deleted` int(10) unsigned DEFAULT NULL, - PRIMARY KEY (`reference_type_id`,`reference_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - +drop table if exists `packages`; +create table `packages` ( + `reference_type_id` int(11) not null, + `reference_id` int(10) unsigned not null, + `title` varchar(100) collate utf8_unicode_ci not null, + `created` int(10) unsigned not null, + `updated` int(10) unsigned not null, + `deleted` int(10) unsigned default null, + primary key (`reference_type_id`,`reference_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; INSERT INTO `packages` (`reference_type_id`, `reference_id`, `title`, `created`, `updated`, `deleted`) VALUES (1, 1, 'Private Package #1', 0, 0, NULL), (1, 2, 'Private Package #2', 0, 0, NULL), (2, 1, 'Public Package #1', 0, 0, NULL); -DROP TABLE IF EXISTS `package_details`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `package_details` ( - `reference_type_id` int(11) NOT NULL, - `reference_id` int(10) unsigned NOT NULL, - `type` varchar(50) COLLATE utf8_unicode_ci NOT NULL, - `value` text COLLATE utf8_unicode_ci NOT NULL, - `created` int(10) unsigned NOT NULL, - `updated` int(10) unsigned NOT NULL, - `deleted` int(10) unsigned DEFAULT NULL, - PRIMARY KEY (`reference_type_id`,`reference_id`,`type`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; +drop table if exists `package_details`; +create table `package_details` ( + `reference_type_id` int(11) not null, + `reference_id` int(10) unsigned not null, + `type` varchar(50) collate utf8_unicode_ci not null, + `value` text collate utf8_unicode_ci not null, + `created` int(10) unsigned not null, + `updated` int(10) unsigned not null, + `deleted` int(10) unsigned default null, + primary key (`reference_type_id`,`reference_id`,`type`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; INSERT INTO `package_details` (`reference_type_id`, `reference_id`, `type`, `value`, `created`, `updated`, `deleted`) VALUES (1, 1, 'detail', 'private package #1 - detail', 0, 0, NULL), @@ -505,162 +270,164 @@ INSERT INTO `package_details` (`reference_type_id`, `reference_id`, `type`, `val (2, 1, 'detail', 'public package #1 - detail', 0, 0, NULL), (2, 1, 'option', 'public package #1 - option', 0, 0, NULL); -DROP TABLE IF EXISTS `childs`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `childs` ( - `id` INT NOT NULL AUTO_INCREMENT, - `parent` INT DEFAULT NULL, - `source` VARCHAR(20) DEFAULT NULL, - `transaction` VARCHAR(20) DEFAULT NULL, - `for` INT DEFAULT NULL, - `group` INT DEFAULT NULL, - PRIMARY KEY (`id`) +drop table if exists `childs`; +create table `childs` ( + `id` INT not null auto_increment, + `parent` INT default null, + `source` VARCHAR(20) default null, + `transaction` VARCHAR(20) default null, + `for` INT default null, + `group` INT default null, + primary key (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; - -DROP TABLE IF EXISTS `users`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `users` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `name` VARCHAR(128) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - -LOCK TABLES `users` WRITE; -/*!40000 ALTER TABLE `users` DISABLE KEYS */; +drop table if exists `users`; +create table `users` ( + `id` int(11) not null auto_increment, + `name` VARCHAR(128) not null, + primary key (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; INSERT INTO `users` (`id`, `name`) VALUES (1, 'Andres Gutierrez'), (2, 'Serghei Iakovlev'), (3, 'Nikolaos Dimopoulos'), (4, 'Eduar Carvajal'); -/*!40000 ALTER TABLE `users` ENABLE KEYS */; -UNLOCK TABLES; -/*!40101 SET character_set_client = @saved_cs_client */; - -DROP TABLE IF EXISTS `issue12071_head`; -CREATE TABLE `issue12071_head` ( - `id` INT NOT NULL AUTO_INCREMENT, - PRIMARY KEY (`id`) +drop table if exists `issue12071_head`; +create table `issue12071_head` ( + `id` INT not null auto_increment, + primary key (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; - -LOCK TABLES `issue12071_head` WRITE; -/*!40000 ALTER TABLE `issue12071_head` DISABLE KEYS */; INSERT INTO `issue12071_head` VALUES (1); INSERT INTO `issue12071_head` VALUES (2); -/*!40000 ALTER TABLE `issue12071_head` ENABLE KEYS */; -UNLOCK TABLES; -DROP TABLE IF EXISTS `issue12071_body`; -CREATE TABLE `issue12071_body` ( - `id` INT NOT NULL AUTO_INCREMENT, +drop table if exists `issue12071_body`; +create table `issue12071_body` ( + `id` INT not null auto_increment, `head_1_id` INT, `head_2_id` INT, - PRIMARY KEY (`id`), + primary key (`id`), CONSTRAINT `issue12071_body_head_1_fkey` FOREIGN KEY (`head_1_id`) REFERENCES `issue12071_head` (`id`), CONSTRAINT `issue12071_body_head_2_fkey` FOREIGN KEY (`head_2_id`) REFERENCES `issue12071_head` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -DROP TABLE IF EXISTS `stats`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `stats` ( - `date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, - `type` TINYINT(3) UNSIGNED NOT NULL, - `value` BIGINT(20) UNSIGNED NOT NULL, - PRIMARY KEY (`date`, `type`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - -LOCK TABLES `stats` WRITE; -/*!40000 ALTER TABLE `stats` DISABLE KEYS */; +drop table if exists `stats`; +create table `stats` ( + `date` TIMESTAMP not null DEFAULT CURRENT_TIMESTAMP, + `type` TINYINT(3) UNSIGNED not null, + `value` BIGINT(20) UNSIGNED not null, + primary key (`date`, `type`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; INSERT INTO `stats` (`date`, `type`, `value`) VALUES ('2016-02-12 00:00:00', 1, 10), ('2016-02-12 00:01:00', 2, 100), ('2016-02-12 00:02:00', 3, 100); -/*!40000 ALTER TABLE `stats` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `stock` --- - -DROP TABLE IF EXISTS `stock`; -CREATE TABLE `stock` ( - `id` int(11) NOT NULL, - `name` varchar(32) NOT NULL, - `stock` int(11) NOT NULL +drop table if exists `stock`; +create table `stock` ( + `id` int(11) auto_increment primary key, + `name` varchar(32) not null, + `stock` int(11) not null ) ENGINE=InnoDB DEFAULT CHARSET=latin1; - --- --- Dumping data for table `stock` --- -LOCK TABLES `stock` WRITE; INSERT INTO `stock` (`id`, `name`, `stock`) VALUES (1, 'Apple', 2), (2, 'Carrot', 6), (3, 'pear', 0); -UNLOCK TABLES; - --- --- Indexes for table `stock` --- -ALTER TABLE `stock` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for table `stock` --- -ALTER TABLE `stock` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; --- --- Table for testing foreign key --- -DROP TABLE IF EXISTS `foreign_key_parent`; -CREATE TABLE `foreign_key_parent` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `name` VARCHAR(32) NOT NULL, - `refer_int` INT(10) NOT NULL, - PRIMARY KEY (`id`), +drop table if exists `foreign_key_parent`; +create table `foreign_key_parent` ( + `id` int(10) unsigned not null auto_increment, + `name` VARCHAR(32) not null, + `refer_int` INT(10) not null, + primary key (`id`), KEY (`refer_int`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -DROP TABLE IF EXISTS `foreign_key_child`; -CREATE TABLE `foreign_key_child` ( - `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, - `name` VARCHAR(32) NOT NULL, - `child_int` INT(10) NOT NULL, - PRIMARY KEY (`id`), +drop table if exists `foreign_key_child`; +create table `foreign_key_child` ( + `id` INT(10) UNSIGNED not null auto_increment, + `name` VARCHAR(32) not null, + `child_int` INT(10) not null, + primary key (`id`), KEY (`child_int`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -DROP TABLE IF EXISTS `table_with_string_field`; -CREATE TABLE `table_with_string_field` ( - `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, - `field` VARCHAR(70) NOT NULL, - PRIMARY KEY (`id`) +drop table if exists `table_with_string_field`; +create table `table_with_string_field` ( + `id` INT(10) UNSIGNED not null auto_increment, + `field` VARCHAR(70) not null, + primary key (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; - -LOCK TABLES `table_with_string_field` WRITE; -/*!40000 ALTER TABLE `table_with_string_field` DISABLE KEYS */; INSERT INTO `table_with_string_field` VALUES (1,'String one'), (2,'String two'), (3,'Another one string'); -/*!40000 ALTER TABLE `table_with_string_field` ENABLE KEYS */; -UNLOCK TABLES; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; +drop table if exists `dialect_table`; +create table dialect_table +( + field_primary int auto_increment + primary key, + field_blob blob null, + field_bit bit null, + field_bit_default bit default b'1' null, + field_bigint bigint null, + field_bigint_default bigint default 1 null, + field_boolean tinyint(1) null, + field_boolean_default tinyint(1) default 1 null, + field_char char(10) null, + field_char_default char(10) default 'ABC' null, + field_decimal decimal(10,4) null, + field_decimal_default decimal(10,4) default 14.5678 null, + field_enum enum('xs', 's', 'm', 'l', 'xl') null, + field_integer int(10) null, + field_integer_default int(10) default 1 null, + field_json json null, + field_float float(10,4) null, + field_float_default float(10,4) default 14.5678 null, + field_date date null, + field_date_default date default '2018-10-01' null, + field_datetime datetime null, + field_datetime_default datetime default '2018-10-01 12:34:56' null, + field_time time null, + field_time_default time default '12:34:56' null, + field_timestamp timestamp null, + field_timestamp_default timestamp default '2018-10-01 12:34:56' null, + field_mediumint mediumint(10) null, + field_mediumint_default mediumint(10) default 1 null, + field_smallint smallint(10) null, + field_smallint_default smallint(10) default 1 null, + field_tinyint tinyint(10) null, + field_tinyint_default tinyint(10) default 1 null, + field_longtext longtext null, + field_mediumtext mediumtext null, + field_tinytext tinytext null, + field_text text null, + field_varchar varchar(10) null, + field_varchar_default varchar(10) default 'D' null, + unique key dialect_table_unique (field_integer), + key dialect_table_index (field_bigint), + key dialect_table_two_fields (field_char, field_char_default) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +drop table if exists `dialect_table_remote`; +create table dialect_table_remote +( + field_primary int auto_increment + primary key, + field_text varchar(20) null +) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2013-01-20 14:29:13 +drop table if exists `dialect_table_intermediate`; +create table dialect_table_intermediate +( + field_primary_id int null, + field_remote_id int null, + constraint dialect_table_intermediate_primary__fk + foreign key (field_primary_id) references dialect_table (field_primary), + constraint dialect_table_intermediate_remote__fk + foreign key (field_remote_id) references dialect_table_remote (field_primary) + on update cascade on delete set null +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + diff --git a/tests/_data/schemas/phalcon-schema-postgresql.sql b/tests/_data/schemas/phalcon-schema-postgresql.sql new file mode 100644 index 00000000000..24b5341f12f --- /dev/null +++ b/tests/_data/schemas/phalcon-schema-postgresql.sql @@ -0,0 +1,11082 @@ +-- +-- PostgreSQL database dump +-- + +SET statement_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SET check_function_bodies = false; +SET client_min_messages = warning; + +-- +-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: +-- + +CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; + +-- +-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: +-- + +COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; + +SET search_path = public, pg_catalog; +SET default_tablespace = ''; +SET default_with_oids = false; + +-- +-- Name: customers; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS customers; +CREATE TABLE customers +( + id SERIAL, + document_id integer NOT NULL, + customer_id char(15) NOT NULL, + first_name varchar(100) DEFAULT NULL, + last_name varchar(100) DEFAULT NULL, + phone varchar(20) DEFAULT NULL, + email varchar(70) NOT NULL, + instructions varchar(100) DEFAULT NULL, + status CHAR(1) NOT NULL, + birth_date date DEFAULT '1970-01-01', + credit_line decimal(16,2) DEFAULT '0.00', + created_at timestamp NOT NULL, + created_at_user_id integer DEFAULT '0', + PRIMARY KEY (id) +); + +CREATE INDEX customers_document_id_idx ON customers (document_id); +CREATE INDEX customers_customer_id_idx ON customers (customer_id); +CREATE INDEX customers_credit_line_idx ON customers (credit_line); +CREATE INDEX customers_status_idx ON customers (status); + +ALTER TABLE public.customers OWNER TO postgres; + +-- +-- Name: parts; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS parts CASCADE; +CREATE TABLE parts +( + id integer NOT NULL, + name character varying(70) NOT NULL +); + +ALTER TABLE public.parts OWNER TO postgres; + +-- +-- Name: images; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS images; +CREATE TABLE images +( + id BIGSERIAL, + base64 TEXT +); + +ALTER TABLE public.images OWNER TO postgres; + +-- +-- Name: personas; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS personas; +CREATE TABLE personas +( + cedula character(15) NOT NULL, + tipo_documento_id integer NOT NULL, + nombres character varying(100) DEFAULT '':: character varying NOT NULL, + telefono character varying(20) DEFAULT NULL:: character varying, + direccion character varying(100) DEFAULT NULL:: character varying, + email character varying(50) DEFAULT NULL:: character varying, + fecha_nacimiento date DEFAULT '1970-01-01':: date, + ciudad_id integer DEFAULT 0, + creado_at date, + cupo numeric(16,2) NOT NULL, + estado character(1) NOT NULL +); + +ALTER TABLE public.personas OWNER TO postgres; + +-- +-- Name: personnes; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS personnes; +CREATE TABLE personnes +( + cedula character(15) NOT NULL, + tipo_documento_id integer NOT NULL, + nombres character varying(100) DEFAULT '':: character varying NOT NULL, + telefono character varying(20) DEFAULT NULL:: character varying, + direccion character varying(100) DEFAULT NULL:: character varying, + email character varying(50) DEFAULT NULL:: character varying, + fecha_nacimiento date DEFAULT '1970-01-01':: date, + ciudad_id integer DEFAULT 0, + creado_at date, + cupo numeric(16,2) NOT NULL, + estado character(1) NOT NULL +); + +ALTER TABLE public.personnes OWNER TO postgres; + +-- +-- Name: prueba; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS prueba; +CREATE TABLE prueba +( + id integer NOT NULL, + nombre character varying(120) NOT NULL, + estado character(1) NOT NULL +); + +ALTER TABLE public.prueba OWNER TO postgres; + +-- +-- Name: prueba_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +DROP SEQUENCE IF EXISTS prueba_id_seq; +CREATE SEQUENCE prueba_id_seq +START WITH 1 +INCREMENT BY 1 +NO MINVALUE +NO MAXVALUE +CACHE 1; + +ALTER TABLE public.prueba_id_seq OWNER TO postgres; + +-- +-- Name: prueba_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE prueba_id_seq OWNED BY prueba.id; + +-- +-- Name: prueba_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('prueba_id_seq', 636, true); + +-- +-- Name: robots; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS robots CASCADE; +CREATE TABLE robots +( + id integer NOT NULL, + name character varying(70) NOT NULL, + type character varying(32) DEFAULT 'mechanical':: character varying NOT NULL, + year integer DEFAULT 1900 NOT NULL, + datetime timestamp NOT NULL, + deleted timestamp DEFAULT NULL, + text text NOT NULL +); + +ALTER TABLE public.robots OWNER TO postgres; + +-- +-- Name: robots_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +DROP SEQUENCE IF EXISTS robots_id_seq; +CREATE SEQUENCE robots_id_seq +START WITH 1 +INCREMENT BY 1 +NO MINVALUE +NO MAXVALUE +CACHE 1; + +ALTER TABLE public.robots_id_seq OWNER TO postgres; + +-- +-- Name: robots_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE robots_id_seq OWNED BY robots.id; + +-- +-- Name: robots_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('robots_id_seq', 1, false); + +-- +-- Name: robots_parts; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS robots_parts; +CREATE TABLE robots_parts +( + id integer NOT NULL, + robots_id integer NOT NULL, + parts_id integer NOT NULL +); + +ALTER TABLE public.robots_parts OWNER TO postgres; + +-- +-- Name: robots_parts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +DROP SEQUENCE IF EXISTS robots_parts_id_seq; +CREATE SEQUENCE robots_parts_id_seq +START WITH 1 +INCREMENT BY 1 +NO MINVALUE +NO MAXVALUE +CACHE 1; + +ALTER TABLE public.robots_parts_id_seq OWNER TO postgres; + +-- +-- Name: robots_parts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE robots_parts_id_seq OWNED BY robots_parts.id; + +-- +-- Name: robots_parts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('robots_parts_id_seq', 1, false); + +-- +-- Name: subscriptores; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS subscriptores; +CREATE TABLE subscriptores +( + id integer NOT NULL, + email character varying(70) NOT NULL, + created_at timestamp without time zone, + status character(1) NOT NULL +); + +ALTER TABLE public.subscriptores OWNER TO postgres; + +-- +-- Name: subscriptores_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +DROP SEQUENCE IF EXISTS subscriptores_id_seq; +CREATE SEQUENCE subscriptores_id_seq +START WITH 1 +INCREMENT BY 1 +NO MINVALUE +NO MAXVALUE +CACHE 1; + +ALTER TABLE public.subscriptores_id_seq OWNER TO postgres; + +-- +-- Name: subscriptores_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE subscriptores_id_seq OWNED BY subscriptores.id; + +-- +-- Name: subscriptores_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('subscriptores_id_seq', 1, false); + +-- +-- Name: tipo_documento; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS tipo_documento; +CREATE TABLE tipo_documento +( + id integer NOT NULL, + detalle character varying(32) NOT NULL +); + +ALTER TABLE public.tipo_documento OWNER TO postgres; + +-- +-- Name: tipo_documento_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +DROP SEQUENCE IF EXISTS tipo_documento_id_seq; +CREATE SEQUENCE tipo_documento_id_seq +START WITH 1 +INCREMENT BY 1 +NO MINVALUE +NO MAXVALUE +CACHE 1; + +-- +-- Name: foreign_key_parent; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS foreign_key_parent; +CREATE TABLE foreign_key_parent +( + id SERIAL, + name character varying(70) NOT NULL, + refer_int integer NOT NULL, + PRIMARY KEY (id), + UNIQUE (refer_int) +); + +ALTER TABLE public.foreign_key_parent OWNER TO postgres; + +-- +-- Name: ph_select; Type: TABLE TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS ph_select; +CREATE TABLE ph_select +( + sel_id SERIAL, + sel_name character varying(16) NOT NULL, + sel_text character varying(32) DEFAULT NULL, + PRIMARY KEY (sel_id) +); + +INSERT INTO ph_select (sel_id, sel_name, sel_text) +VALUES + (1, 'Sun', 'The one and only'), + (2, 'Mercury', 'Cold and hot'), + (3, 'Venus', 'Yeah baby she''s got it'), + (4, 'Earth', 'Home'), + (5, 'Mars', 'The God of War'), + (6, 'Jupiter', NULL), + (7, 'Saturn', 'A car'), + (8, 'Uranus', 'Loads of jokes for this one'); + +ALTER TABLE public.ph_select OWNER TO postgres; + +-- +-- Name: foreign_key_child; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS foreign_key_child; +CREATE TABLE foreign_key_child +( + id SERIAL, + name character varying(70) NOT NULL, + child_int integer NOT NULL, + PRIMARY KEY (id), + UNIQUE (child_int) +); + +ALTER TABLE public.foreign_key_child OWNER TO postgres; +ALTER TABLE public.tipo_documento_id_seq OWNER TO postgres; + +ALTER TABLE foreign_key_child + ADD CONSTRAINT test_describeReferences + FOREIGN KEY (child_int) + REFERENCES foreign_key_parent (refer_int) + ON UPDATE CASCADE ON DELETE RESTRICT; + +-- +-- Name: tipo_documento_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE tipo_documento_id_seq OWNED BY tipo_documento.id; + +-- +-- Name: tipo_documento_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('tipo_documento_id_seq', 1, false); + +-- +-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY prueba ALTER COLUMN id SET DEFAULT nextval('prueba_id_seq'::regclass); + +-- +-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY robots ALTER COLUMN id SET DEFAULT nextval('robots_id_seq'::regclass); + +-- +-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY robots_parts ALTER COLUMN id SET DEFAULT nextval('robots_parts_id_seq'::regclass); + +-- +-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY subscriptores ALTER COLUMN id SET DEFAULT nextval('subscriptores_id_seq'::regclass); + +-- +-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY tipo_documento ALTER COLUMN id SET DEFAULT nextval('tipo_documento_id_seq'::regclass); + +-- +-- Data for Name: parts; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +INSERT INTO parts (id, name) +VALUES + (1, 'Head'), + (2, 'Body'), + (3, 'Arms'), + (4, 'Legs'), + (5, 'CPU'); + +-- +-- Data for Name: personas; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +INSERT INTO personas (cedula, tipo_documento_id, nombres, telefono, direccion, + email, fecha_nacimiento, ciudad_id, creado_at, cupo, + estado) +VALUES +(1, 3, 'HUANG ZHENGQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-05-18', 6930.00, 'I'), +(100, 1, 'USME FERNANDEZ JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-04-15', 439480.00, 'A'), +(1003, 8, 'SINMON PEREZ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-08-25', 468610.00, 'A'), +(1009, 8, 'ARCINIEGAS Y VILLAMIZAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-08-12', 967680.00, 'A'), +(101, 1, 'CRANE DE NARVAEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-06-09', 790540.00, 'A'), +(1011, 8, 'EL EVENTO', 191821112, 'CRA 25 CALLE 100', '596@terra.com.co', + '2011-02-03', 127591, '2011-05-24', 820390.00, 'A'), +(1020, 7, 'OSPINA YOLANDA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-05-02', 222970.00, 'A'), +(1025, 7, 'CHEMIPLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-08', 918670.00, 'A'), +(1034, 1, 'TAXI FILMS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2010-09-01', 962580.00, 'A'), +(104, 1, 'CASTELLANOS JIMENEZ NOE', 191821112, 'CRA 25 CALLE 100', + '127@yahoo.es', '2011-02-03', 127591, '2011-10-05', 95230.00, 'A'), +(1046, 3, 'JACQUET PIERRE MICHEL ALAIN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 263489, '2011-07-23', 90810.00, 'A'), +(1048, 5, 'SPOERER VELEZ CARLOS JORGE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-02-03', 184920.00, 'A'), +(1049, 3, 'SIDNEI DA SILVA LUIZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 117630, '2011-07-02', 850180.00, 'A'), +(105, 1, 'HERRERA SEQUERA ALVARO FRANCISCO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-04-26', 77390.00, 'A'), +(1050, 3, 'CAVALCANTI YUE CARLA HANLI', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-31', 696130.00, 'A'), +(1052, 1, 'BARRETO RIVAS ELKIN MARTIN', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 131508, '2011-09-19', 562160.00, 'A'), +(1053, 3, 'WANDERLEY ANTONIO ERNESTO THOME', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 150617, '2011-01-31', 20490.00, 'A'), +(1054, 3, 'HE SHAN', 191821112, 'CRA 25 CALLE 100', '715@yahoo.es', + '2011-02-03', 132958, '2010-10-05', 415970.00, 'A'), +(1055, 3, 'ZHRNG XIM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2010-10-05', 18380.00, 'A'), +(1057, 3, 'NICKEL GEB. STUTZ KARIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-10-08', 164850.00, 'A'), +(1058, 1, 'VELEZ PAREJA IGNACIO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132775, '2011-06-24', 292250.00, 'A'), +(1059, 3, 'GURKE RALF ERNST', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 287570, '2011-06-15', 966700.00, 'A'), +(106, 1, 'ESTRADA LONDONO JUAN SIMON', 191821112, 'CRA 25 CALLE 100', + '8@terra.com.co', '2011-02-03', 128579, '2011-03-09', 101260.00, 'A'), +(1060, 1, 'MEDRANO BARRIOS WILSON', 191821112, 'CRA 25 CALLE 100', + '479@facebook.com', '2011-02-03', 132775, '2011-06-18', 956740.00, 'A'), +(1061, 1, 'GERDTS PORTO HANS EDUARDO', 191821112, 'CRA 25 CALLE 100', + '140@gmail.com', '2011-02-03', 127591, '2011-05-09', 883590.00, 'A'), +(1062, 1, 'BORGE VISBAL JORGE FIDEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 132775, '2011-07-14', 547750.00, 'A'), +(1063, 3, 'GUTIERREZ JOSELYN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-06-06', 87960.00, 'A'), +(1064, 4, 'OVIEDO PINZON MARYI YULEY', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127538, '2011-04-21', 796560.00, 'A'), +(1065, 1, 'VILORA SILVA OMAR ESTEBAN', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 133535, '2010-06-09', 718910.00, 'A'), +(1066, 3, 'AGUIAR ROMAN RODRIGO HUMBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 126674, '2011-06-28', 204890.00, 'A'), +(1067, 1, 'GOMEZ AGAMEZ ADOLFO DEL CRISTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 131105, '2011-06-15', 867730.00, 'A'), +(1068, 3, 'GARRIDO CECILIA', 191821112, 'CRA 25 CALLE 100', '973@yahoo.com.mx', + '2011-02-03', 118777, '2010-08-16', 723980.00, 'A'), +(1069, 1, 'JIMENEZ MANJARRES DAVID RAFAEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132775, '2010-12-17', 16680.00, 'A'), +(107, 1, 'ARANGUREN TEJADA JORGE ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-16', 274110.00, 'A'), +(1070, 3, 'OYARZUN TEJEDA ANDRES FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-05-26', 911490.00, 'A'), +(1071, 3, 'MARIN BUCK RAFAEL ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 126180, '2011-05-04', 507400.00, 'A'), +(1072, 3, 'VARGAS JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 126674, '2011-07-28', 802540.00, 'A'), +(1073, 3, 'JUEZ JAIRALA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 126180, '2010-04-09', 490510.00, 'A'), +(1074, 1, 'APONTE PENSO HERNAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 132879, '2011-05-27', 44900.00, 'A'), +(1075, 1, 'PINERES BUSTILLO ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 126916, '2008-10-29', 752980.00, 'A'), +(1076, 1, 'OTERA OMA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 128662, '2011-04-29', 630210.00, 'A'), +(1077, 3, 'CONTRERAS CHINCHILLA JUAN DOMINGO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 139844, '2011-06-21', 892110.00, 'A'), +(1078, 1, 'GAMBA LAURENCIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2010-09-15', 569940.00, 'A'), +(108, 1, 'MUNOZ ARANGO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-01', 66770.00, 'A'), +(1080, 1, 'PRADA ABAUZA CARLOS AUGUSTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-11-15', 156870.00, 'A'), +(1081, 1, 'PAOLA CAROLINA PINTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-08-27', 264350.00, 'A'), +(1082, 1, 'PALOMINO HERNANDEZ GERMAN JAVIER', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 133535, '2011-03-22', 851120.00, 'A'), +(1084, 1, 'URIBE DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', + '602@hotmail.es', '2011-02-03', 127591, '2011-09-07', 759470.00, 'A'), +(1085, 1, 'ARGUELLO CALDERON ARMANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-24', 409660.00, 'A'), +(1087, 1, 'CARVAJAL HERNANDEZ CHRISTIAN ARMANDO', 191821112, 'CRA 25 CALLE 100', + '296@yahoo.es', '2011-02-03', 159432, '2011-06-03', 620410.00, 'A'), +(1088, 1, 'CASTRO BLANCO MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 150512, '2009-10-08', 792400.00, 'A'), +(1089, 1, 'RIBEROS GUTIERREZ GUSTAVO ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-01-27', 100800.00, 'A'), +(109, 1, 'BELTRAN MARIA LUZ DARY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-09-06', 511510.00, 'A'), +(1091, 4, 'ORTIZ ORTIZ BENIGNO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127538, '2011-08-05', 331540.00, 'A'), +(1092, 3, 'JOHN CHRISTOPHER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-04-08', 277320.00, 'A'), +(1093, 1, 'PARRA VILLAREAL MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 129499, '2011-08-23', 391980.00, 'A'), +(1094, 1, 'BESGA RODRIGUEZ JUAN JAVIER', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127300, '2011-09-23', 127960.00, 'A'), +(1095, 1, 'ZAPATA MEZA EDGAR FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 129499, '2011-05-19', 463840.00, 'A'), +(1096, 3, 'CORNEJO BRAVO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 117002, '2010-11-08', 935340.00, 'A'), +('CELL3944', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1099, 1, 'GARCIA PORRAS FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-14', 243360.00, 'A'), +(11, 1, 'HERNANDEZ PARDO ARMANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-31', 197540.00, 'A'), +(110, 1, 'VANEGAS JULIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-09-06', 357260.00, 'A'), +(1101, 1, 'QUINTERO BURBANO GABRIEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 129499, '2011-08-20', 57420.00, 'A'), +(1102, 1, 'BOHORQUEZ AFANADOR CHRISTIAN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 214610.00, 'A'), +(1103, 1, 'MORA VARGAS JULIO ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-29', 900790.00, 'A'), +(1104, 1, 'PINEDA JORGE ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-06-21', 860110.00, 'A'), +(1105, 1, 'TORO CEBALLOS GONZALO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 129499, '2011-08-18', 598180.00, 'A'), +(1106, 1, 'SCHENIDER TORRES JAIME', 191821112, 'CRA 25 CALLE 100', + '85@yahoo.com.mx', '2011-02-03', 127799, '2011-08-11', 410590.00, 'A'), +(1107, 1, 'RUEDA VILLAMIZAR JAIME', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2010-11-15', 258410.00, 'A'), +(1108, 1, 'RUEDA VILLAMIZAR RICARDO JAIME', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 129499, '2011-03-22', 60260.00, 'A'), +(1109, 1, 'GOMEZ RODRIGUEZ HERNANDO ARTURO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-06-02', 526080.00, 'A'), +(111, 1, 'FRANCISCO EDUARDO JAIME BOTERO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-09-09', 251770.00, 'A'), +(1110, 1, 'HERNANDEZ MENDEZ EDGAR', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 129499, '2011-03-22', 449610.00, 'A'), +(1113, 1, 'LEON HERNANDEZ OSCAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 129499, '2011-03-21', 992090.00, 'A'), +(1114, 1, 'LIZARAZO CARRENO HUGO ARCENIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 133535, '2010-12-10', 959490.00, 'A'), +(1115, 1, 'LIAN BARRERA GABRIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2010-05-30', 821170.00, 'A'), +(1117, 3, 'TELLEZ BEZAN FRANCISCO JAVIER ', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 117002, '2011-08-21', 673430.00, 'A'), +(1118, 1, 'FUENTES ARIZA DIEGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-06-09', 684970.00, 'A'), +(1119, 1, 'MOLINA M. ROBINSON', 191821112, 'CRA 25 CALLE 100', + '728@hotmail.com', '2011-02-03', 129447, '2010-09-19', 404580.00, 'A'), +(112, 1, 'PATINO PINTO ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-10-06', 187050.00, 'A'), +(1120, 1, 'ORTIZ DURAN BENIGNO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127538, '2011-08-05', 967970.00, 'A'), +(1121, 1, 'CARVAJAL ALMEIDA LUIS RAUL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 129499, '2011-06-22', 626140.00, 'A'), +(1122, 1, 'TORRES QUIROGA EDWIN SILVESTRE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 129447, '2011-08-17', 226780.00, 'A'), +(1123, 1, 'VIVIESCAS JAIMES ALVARO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-10', 255480.00, 'A'), +(1124, 1, 'MARTINEZ RUEDA JAVIER EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 129447, '2011-06-23', 597040.00, 'A'), +(1125, 1, 'ANAYA FLORES JORGE ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 129499, '2011-06-04', 218790.00, 'A'), +(1126, 3, 'TORRES MARTINEZ ANTONIO JESUS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 188640, '2010-09-02', 302820.00, 'A'), +(1127, 3, 'CACHO LEVISIER JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 153276, '2009-06-25', 857720.00, 'A'), +(1129, 3, 'ULLOA VALDIVIESO CRISTIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 117002, '2011-06-02', 327570.00, 'A'), +(113, 1, 'HIGUERA CALA JAIME ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-07-27', 179950.00, 'A'), +(1130, 1, 'ARCINIEGAS WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 126892, '2011-08-05', 497420.00, 'A'), +(1131, 1, 'BAZA ACUNA JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 129447, '2010-12-10', 504410.00, 'A'), +(1132, 3, 'BUIRA ROS CARLOS MARIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2010-04-27', 29750.00, 'A'), +(1133, 1, 'RODRIGUEZ JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 129447, '2011-06-10', 635560.00, 'A'), +(1134, 1, 'QUIROGA PEREZ NELSON', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 129447, '2011-05-18', 88520.00, 'A'), +(1135, 1, 'TATIANA AYALA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127122, '2011-07-01', 535920.00, 'A'), +(1136, 1, 'OSORIO BENEDETTI FABIAN AUGUSTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132775, '2010-10-23', 414060.00, 'A'), +(1139, 1, 'CELIS PINTO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2009-02-25', 964970.00, 'A'), +(114, 1, 'VALDERRAMA CUERVO JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-02', 338590.00, 'A'), +(1140, 1, 'ORTIZ ARENAS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 129499, '2009-10-21', 613300.00, 'A'), +(1141, 1, 'VALDIVIESO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 134022, '2009-01-13', 171590.00, 'A'), +(1144, 1, 'LOPEZ CASTILLO NELSON', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 129499, '2010-09-09', 823110.00, 'A'), +(1145, 1, 'CAVELIER LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 126916, '2008-11-29', 389220.00, 'A'), +(1146, 1, 'CAVELIER OTOYA LUIS EDURDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 126916, '2010-05-25', 476770.00, 'A'), +(1147, 1, 'GARCIA RUEDA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '111@yahoo.es', '2011-02-03', 133535, '2010-09-12', 216190.00, 'A'), +(1148, 1, 'LADINO GOMEZ OMAR ORLANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-02', 650640.00, 'A'), +(1149, 1, 'CARRENO ORTIZ OSCAR JAVIER', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-03-15', 604630.00, 'A'), +(115, 1, 'NARDEI BONILLO BRUNO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-04-16', 153110.00, 'A'), +(1150, 1, 'MONTOYA BOZZI MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 129499, '2011-05-12', 71240.00, 'A'), +(1152, 1, 'LORA RICHARD JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2010-09-15', 497700.00, 'A'), +(1153, 1, 'SILVA PINZON MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '915@hotmail.es', '2011-02-03', 127591, '2011-06-15', 861670.00, 'A'), +(1154, 3, 'GEORGE J A KHALILIEH', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-20', 815260.00, 'A'), +(1155, 3, 'CHACON MARIN CARLOS MANUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-07-26', 491280.00, 'A'), +(1156, 3, 'OCHOA CHEHAB XAVIER ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 126180, '2011-06-13', 10630.00, 'A'), +(1157, 3, 'ARAYA GARRI GABRIEL ALEXIS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 117002, '2011-09-19', 579320.00, 'A'), +(1158, 3, 'MACCHI ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 116366, '2010-04-12', 864690.00, 'A'), +(116, 1, 'GONZALEZ FANDINO JAIME EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-10', 749800.00, 'A'), +(1160, 1, 'CAVALIER LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 126916, '2009-08-27', 333390.00, 'A'), +('CELL396', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1161, 3, 'DOMINGUEZ DE OBREGON ILEANA DEL CARMEN', 191821112, + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 139844, '2011-03-06', + 910490.00, 'A'), +(1162, 2, 'FALASCA CLAUDIO ARIEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 116511, '2011-07-10', 552280.00, 'A'), +(1163, 3, 'MUTABARUKA PATRICK', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 131352, '2011-03-22', 29940.00, 'A'), +(1164, 1, 'DOMINGUEZ ATENCIA JIMMY CARLOS', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-07-22', 492860.00, 'A'), +(1165, 4, 'LLANO GONZALEZ ALBERTO MARIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127300, '2010-08-21', 374490.00, 'A'), +(1166, 3, 'LOPEZ ROLDAN JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188640, '2011-07-31', 393860.00, 'A'), +(1167, 1, 'GUTIERREZ DE PINERES JALILIE ARISTIDES', 191821112, + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2010-12-09', 845810.00, + 'A'), +(1168, 1, 'HEYMANS PIERRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 128662, '2010-11-08', 47470.00, 'A'), +(1169, 1, 'BOTERO OSORIO RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2009-05-27', 699940.00, 'A'), +(1170, 3, 'GARNHAM POBLETE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 116396, '2011-03-27', 357270.00, 'A'), +(1172, 1, 'DAJUD DURAN JOSE RODRIGO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 133535, '2009-12-02', 360910.00, 'A'), +(1173, 1, 'MARTINEZ MERCADO PEDRO PABLO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-07-25', 744930.00, 'A'), +(1174, 1, 'GARCIA AMADOR ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 133535, '2011-05-19', 641930.00, 'A'), +(1176, 1, 'VARGAS VARELA LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 131568, '2011-08-30', 948410.00, 'A'), +(1178, 1, 'GUTIERRES DE PINERES ARISTIDES', 191821112, 'CRA 25 CALLE 100', + '217@hotmail.com', '2011-02-03', 133535, '2011-05-10', 242490.00, 'A'), +(1179, 3, 'LEIZAOLA POZO JIMENA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 132958, '2011-08-01', 759800.00, 'A'), +(118, 1, 'FERNANDEZ VELOSO PEDRO HERNANDO', 191821112, 'CRA 25 CALLE 100', + '452@hotmail.es', '2011-02-03', 128662, '2010-08-06', 198830.00, 'A'), +(1180, 3, 'MARINO PAOLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2010-12-24', 71520.00, 'A'), +(1181, 1, 'MOLINA VIZCAINO GUSTAVO JORGE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-28', 78220.00, 'A'), +(1182, 3, 'MEDEL GARCIA FABIAN RODRIGO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 117002, '2011-04-25', 176540.00, 'A'), +(1183, 1, 'LESMES ARIAS RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2010-09-09', 648020.00, 'A'), +(1184, 1, 'ALCALA MARTINEZ ALFREDO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 132775, '2010-07-23', 710470.00, 'A'), +(1186, 1, 'LLAMAS FOLIACO LUIS ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-07', 910210.00, 'A'), +(1187, 1, 'GUARDO DEL RIO LIBARDO FARID', 191821112, 'CRA 25 CALLE 100', + '73@yahoo.com.mx', '2011-02-03', 128662, '2011-09-01', 726050.00, 'A'), +(1188, 3, 'JEFFREY ARTHUR DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 115724, '2011-03-21', 899630.00, 'A'), +(1189, 1, 'DAHL VELEZ JULIANA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 126916, '2011-05-23', 320020.00, 'A'), +(119, 3, 'WALESKA DE LIMA ALMEIDA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118942, '2011-05-09', 125240.00, 'A'), +(1190, 3, 'LUIS JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 118777, '2008-04-04', 901210.00, 'A'), +(1192, 1, 'AZUERO VALENTINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-04-14', 26310.00, 'A'), +(1193, 1, 'MARQUEZ GALINDO MAURICIO JAVIER', 191821112, 'CRA 25 CALLE 100', + '729@yahoo.es', '2011-02-03', 131105, '2011-05-13', 493560.00, 'A'), +(1195, 1, 'NIETO FRANCO JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', + '707@yahoo.com', '2011-02-03', 127591, '2011-07-30', 463790.00, 'A'), +(1196, 3, 'ESTEVES JOAQUIM LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-04-05', 152270.00, 'A'), +(1197, 4, 'BARRERO KAREN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-06-12', 369990.00, 'A'), +(1198, 1, 'CORRALES GUZMAN DELIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127689, '2011-08-03', 393120.00, 'A'), +(1199, 1, 'CUELLAR TOCO EDGAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127531, '2011-09-20', 855640.00, 'A'), +(12, 1, 'MARIN PRIETO FREDY NELSON ', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-23', 641210.00, 'A'), +(120, 1, 'LOPEZ JARAMILLO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2009-04-17', 29680.00, 'A'), +(1200, 3, 'SCHULTER ACHIM', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 291002, '2010-05-21', 98860.00, 'A'), +(1201, 3, 'HOWELL LAURENCE ADRIAN', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 286785, '2011-05-22', 927350.00, 'A'), +(1202, 3, 'ALCAZAR ESCARATE JAIME PATRICIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 117002, '2011-08-25', 340160.00, 'A'), +(1203, 3, 'HIDALGO FUENZALIDA GABRIEL RAUL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-03', 918780.00, 'A'), +(1206, 1, 'VANEGAS HENAO ORLANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-09-27', 832910.00, 'A'), +(1207, 1, 'PENARANDA ARIAS RICARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-19', 832710.00, 'A'), +(1209, 1, 'LEZAMA CERVERA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132775, '2011-09-14', 825980.00, 'A'), +(121, 1, 'PULIDO JIMENEZ OSCAR HUMBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-29', 772700.00, 'A'), +(1211, 1, 'TRUJILLO BOCANEGRA HAROL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127538, '2011-05-27', 199260.00, 'A'), +(1212, 1, 'ALVAREZ TORRES MARIO RICARDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-08-15', 589960.00, 'A'), +(1213, 1, 'CORRALES VARON BELMER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-26', 352030.00, 'A'), +(1214, 3, 'CUEVAS RODRIGUEZ MANUELA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-30', 990250.00, 'A'), +(1216, 1, 'LOPEZ EDICSON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-08-31', 505210.00, 'A'), +(1217, 3, 'GARCIA PALOMARES JUAN JAVIER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188640, '2011-07-31', 840440.00, 'A'), +(1218, 1, 'ARCINIEGAS NARANJO RICARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127492, '2010-12-17', 686610.00, 'A'), +(122, 1, 'GONZALEZ RIANO LEONARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128031, '2011-08-05', 774450.00, 'A'), +(1220, 1, 'GARCIA GUTIERREZ WILLIAM', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-06-20', 498680.00, 'A'), +(1221, 3, 'GOMEZ DE ALONSO ANGELA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-27', 758300.00, 'A'), +(1222, 1, 'MEDINA QUIROGA JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127538, '2011-01-16', 295480.00, 'A'), +(1224, 1, 'ARCILA CORREA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-03-20', 125900.00, 'A'), +(1225, 1, 'QUIJANO REYES CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127538, '2010-04-08', 22100.00, 'A'), +(157, 1, 'ORTIZ RIOS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-05-12', 365330.00, 'A'), +(1226, 1, 'VARGAS GALLEGO JAIRO ALONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127300, '2009-07-30', 732820.00, 'A'), +(1228, 3, 'NAPANGA MIRENGHI MARTIN', 191821112, 'CRA 25 CALLE 100', + '153@yahoo.es', '2011-02-03', 132958, '2011-02-08', 790400.00, 'A'), +(123, 1, 'LAMUS CASTELLANOS ANDRES RICARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-05-11', 554160.00, 'A'), +(1230, 1, 'RIVEROS PINEROS JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127492, '2011-09-25', 422220.00, 'A'), +(1231, 3, 'ESSER JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127327, '2011-04-01', 635060.00, 'A'), +(1232, 3, 'DOMINGUEZ MORA MAURICIO ALFREDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-22', 908630.00, 'A'), +(1233, 3, 'MOLINA FERNANDEZ FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-05-28', 637990.00, 'A'), +(1234, 3, 'BELLO DANIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 196234, '2010-09-04', 464040.00, 'A'), +(1235, 3, 'BENADAVA GUEVARA DAVID ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-05-18', 406240.00, 'A'), +(1236, 3, 'RODRIGUEZ MATOS ROBERTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-03-22', 639070.00, 'A'), +(1237, 3, 'TAPIA ALARCON PATRICIO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 117002, '2010-07-06', 976620.00, 'A'), +(1239, 3, 'VERCHERE ALFONSO CHRISTIAN', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 117002, '2010-08-23', 899600.00, 'A'), +(1241, 1, 'ESPINEL LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 128206, '2009-03-09', 302860.00, 'A'), +(1242, 3, 'VERGARA FERREIRA PATRICIA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-10-03', 713310.00, 'A'), +(1243, 3, 'ZUMARRAGA SIRVENT CRSTINA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-08-24', 657950.00, 'A'), +(1244, 4, 'ESCORCIA VASQUEZ TOMAS', 191821112, 'CRA 25 CALLE 100', + '354@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', 149830.00, 'A'), +(1245, 4, 'PARAMO CUENCA KELLY LORENA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127492, '2011-05-04', 775300.00, 'A'), +(1246, 4, 'PEREZ LOPEZ VERONICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 128662, '2011-07-11', 426990.00, 'A'), +(1247, 4, 'CHAPARRO RODRIGUEZ DANIELA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-10-08', 809070.00, 'A'), +(1249, 4, 'DIAZ MARTINEZ MARIA CAROLINA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 133535, '2011-05-30', 394740.00, 'A'), +(125, 1, 'CALDON RODRIGUEZ JAIME ARIEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 126968, '2011-07-29', 574780.00, 'A'), +(1250, 4, 'PINEDA VASQUEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2010-09-03', 680540.00, 'A'), +(1251, 5, 'MATIZ URIBE ANGELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-12-25', 218470.00, 'A'), +(1253, 1, 'ZAMUDIO RICAURTE JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 126892, '2011-08-05', 598160.00, 'A'), +(1254, 1, 'ALJURE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2010-07-21', 838660.00, 'A'), +(1255, 3, 'ARMESTO AIRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 196234, '2011-01-29', 398840.00, 'A'), +(1257, 1, 'POTES GUEVARA JAIRO MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127858, '2011-03-17', 194580.00, 'A'), +(1258, 1, 'BURBANO QUIROGA RAFAEL', 191821112, 'CRA 25 CALLE 100', + '767@facebook.com', '2011-02-03', 127591, '2011-04-07', 538220.00, 'A'), +(1259, 1, 'CARDONA GOMEZ JAVIR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127300, '2011-03-16', 107380.00, 'A'), +(126, 1, 'PULIDO PARDO GUIDO IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-10-05', 531550.00, 'A'), +(1260, 1, 'LOPERA LEDESMA PABLO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-19', 922240.00, 'A'), +(1263, 1, 'TRIBIN BARRIGA JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127300, '2011-09-02', 525330.00, 'A'), +(1264, 1, 'NAVIA LOPEZ ANDRES FELIPE ', 191821112, 'CRA 25 CALLE 100', + '353@hotmail.es', '2011-02-03', 127300, '2011-07-15', 591190.00, 'A'), +(1265, 1, 'CARDONA GOMEZ FABIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127300, '2010-11-18', 379940.00, 'A'), +(1266, 1, 'ESCARRIA VILLEGAS ANDRES JULIAN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-08-19', 126160.00, 'A'), +(1268, 1, 'CASTRO HERNANDEZ ALVARO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127300, '2011-03-25', 76260.00, 'A'), +(127, 1, 'RODRIGUEZ RODRIGUEZ GIOVANI FRANCISCO', 191821112, 'CRA 25 CALLE 100', + '662@hotmail.es', '2011-02-03', 127591, '2011-09-29', 933390.00, 'A'), +(1270, 1, 'LEAL HERNANDEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', 313610.00, 'A'), +(1272, 1, 'ORTIZ CARDONA WILLIAM ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '914@hotmail.com', '2011-02-03', 128662, '2011-09-13', 272150.00, 'A'), +(1273, 1, 'ROMERO VAN GOMPEL HERNAN', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-09-07', 832960.00, 'A'), +(1274, 1, 'BERMUDEZ LONDONO JHON FREDY', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127300, '2011-08-29', 348380.00, 'A'), +(1275, 1, 'URREA ALVAREZ NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-09-01', 242980.00, 'A'), +(1276, 1, 'VALENCIA LLANOS RODRIGO AUGUSTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-04-11', 169790.00, 'A'), +(1277, 1, 'PAZ VALENCIA GUILLERMO ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127300, '2011-08-05', 120020.00, 'A'), +(1278, 1, 'MONROY CORREDOR GERARDO ALONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127300, '2011-06-25', 90700.00, 'A'), +(1279, 1, 'RIOS MEDINA JAVIER ERMINSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-12', 93440.00, 'A'), +(128, 1, 'GALLEGO GUZMAN MARIO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-06-25', 72290.00, 'A'), +(1280, 1, 'GARCIA OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-30', 195090.00, 'A'), +(1282, 1, 'MURILLO PESELLIN GABRIEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127300, '2011-06-15', 890530.00, 'A'), +(1284, 1, 'DIAZ ALVAREZ JOHNY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127300, '2011-06-25', 164130.00, 'A'), +(1285, 1, 'GARCES BELTRAN RAUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127300, '2011-08-11', 719220.00, 'A'), +(1286, 1, 'MATERON POVEDA LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-25', 103710.00, 'A'), +(1287, 1, 'VALENCIA ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2010-10-23', 360880.00, 'A'), +(1288, 1, 'PENA AGUDELO JOSE RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 134022, '2011-05-25', 493280.00, 'A'), +(1289, 1, 'CORREA NUNEZ JORGE ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-08-18', 383750.00, 'A'), +(129, 1, 'ALVAREZ RODRIGUEZ IVAN RICARDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2008-01-28', 561290.00, 'A'), +(1291, 1, 'BEJARANO ROSERO FREDDY ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-10-09', 43400.00, 'A'), +(1292, 1, 'CASTILLO BARRIOS GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127300, '2011-06-17', 900180.00, 'A'), +('CELL401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1296, 1, 'GALVEZ GUTIERREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127300, '2010-03-28', 807090.00, 'A'), +(1297, 3, 'CRUZ GARCIA MILTON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 139844, '2011-03-21', 75630.00, 'A'), +(1298, 1, 'VILLEGAS GUTIERREZ JOSE RICARDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-11', 956860.00, 'A'), +(13, 1, 'VACA MURCIA JESUS ALFREDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-04', 613430.00, 'A'), +(1301, 3, 'BOTTI ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 231989, '2011-04-04', 910640.00, 'A'), +(1302, 3, 'COTINO HUESO LORENZO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2010-02-02', 803450.00, 'A'), +(1304, 3, 'NESPOLI MANTOVANI LUIZ CARLOS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-04-18', 16230.00, 'A'), +(1307, 4, 'AVILA GIL PAULA ANDREA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-19', 711110.00, 'A'), +(1308, 4, 'VALLEJO PINEDA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-12', 323490.00, 'A'), +(1312, 1, 'ROMERO OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-04-17', 642460.00, 'A'), +(1314, 3, 'LULLIES CONSTANZE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 245206, '2010-06-03', 154970.00, 'A'), +(1315, 1, 'CHAPARRO GUTIERREZ JORGE ADRIANO', 191821112, 'CRA 25 CALLE 100', + '284@hotmail.es', '2011-02-03', 127591, '2010-12-02', 325440.00, 'A'), +(1316, 1, 'BARRANTES DISI RICARDO JOSE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 132879, '2011-07-18', 162270.00, 'A'), +(1317, 3, 'VERDES GAGO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 188640, '2010-03-10', 835060.00, 'A'), +(1319, 3, 'MARTIN MARTINEZ GUSTAVO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2010-05-26', 937220.00, 'A'), +(1320, 3, 'MOTTURA MASSIMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 118777, '2008-11-10', 620640.00, 'A'), +(1321, 3, 'RUSSELL TIMOTHY JAMES', 191821112, 'CRA 25 CALLE 100', + '502@hotmail.es', '2011-02-03', 145135, '2010-04-16', 291560.00, 'A'), +(1322, 3, 'JAIN TARSEM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 190393, '2011-05-31', 595890.00, 'A'), +(1323, 3, 'ORTEGA CEVALLOS JULIETA ELIZABETH', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-30', 104760.00, 'A'), +(1324, 3, 'MULLER PICHAIDA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 117002, '2011-05-17', 736130.00, 'A'), +(1325, 3, 'ALVEAR TELLEZ JULIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 117002, '2011-01-23', 366390.00, 'A'), +(1327, 3, 'MOYA LATORRE MARCELA CAROLINA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 117002, '2011-05-17', 18520.00, 'A'), +(1328, 3, 'LAMA ZAROR RODRIGO IGNACIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 117002, '2010-10-27', 221990.00, 'A'), +(1329, 3, 'HERNANDEZ CIFUENTES MAURICE JEANETTE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 139844, '2011-06-22', 54410.00, 'A'), +(133, 1, 'CORDOBA HOYOS JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-20', 966820.00, 'A'), +(1330, 2, 'HOCHKOFLER NOEMI CONSUELO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-27', 606070.00, 'A'), +(1331, 4, 'RAMIREZ BARRERO DANIELA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 154563, '2011-04-18', 867120.00, 'A'), +(1332, 4, 'DE LEON DURANGO RICARDO JOSE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 131105, '2011-09-08', 517400.00, 'A'), +(1333, 4, 'RODRIGUEZ MACIAS IVAN MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 129447, '2011-05-23', 985620.00, 'A'), +(1334, 4, 'GUTIERREZ DE PINERES YANET MARIA ALEJANDRA', 191821112, + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-06-16', + 375890.00, 'A'), +(1335, 4, 'GUTIERREZ DE PINERES YANET MARIA GABRIELA', 191821112, + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-06-16', + 922600.00, 'A'), +(1336, 4, 'CABRALES BECHARA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', + '708@hotmail.com', '2011-02-03', 131105, '2011-05-13', 485330.00, 'A'), +(1337, 4, 'MEJIA TOBON LUIS DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127662, '2011-08-05', 658860.00, 'A'), +(1338, 3, 'OROS NERCELLES CRISTIAN ANDRE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 144215, '2011-04-26', 838310.00, 'A'), +(1339, 3, 'MORENO BRAVO CAROLINA ANDREA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 190393, '2010-12-08', 214950.00, 'A'), +(134, 1, 'GONZALEZ LOPEZ DANIEL ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-08', 178580.00, 'A'), +(1340, 3, 'FERNANDEZ GARRIDO MARCELO FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-07-08', 559820.00, 'A'), +(1342, 3, 'SUMEGI IMRE ZOLTAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-07-16', 91750.00, 'A'), +(1343, 3, 'CALDERON FLANDEZ SERGIO', 191821112, 'CRA 25 CALLE 100', + '108@hotmail.com', '2011-02-03', 117002, '2010-12-12', 996030.00, 'A'), +(1345, 3, 'CARBONELL ATCHUGARRY GUILLERMO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 116366, '2010-04-12', 536390.00, 'A'), +(1346, 3, 'MONTEALEGRE AGUILAR FEDERICO ', 191821112, 'CRA 25 CALLE 100', + '448@yahoo.es', '2011-02-03', 132165, '2011-08-08', 567260.00, 'A'), +(1347, 1, 'HERNANDEZ MANCHEGO CARLOS JULIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-04-28', 227130.00, 'A'), +(1348, 1, 'ARENAS ZARATE FERNEY ARNULFO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127963, '2011-03-26', 433860.00, 'A'), +(1349, 3, 'DELFIM DINIZ PASSOS PINHEIRO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 110784, '2010-04-17', 487930.00, 'A'), +(135, 1, 'GARCIA SIMBAQUEBA RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 992420.00, 'A'), +(1350, 3, 'BRAUN VALENZUELA FELIPE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-29', 138050.00, 'A'), +(1351, 3, 'LEVIN FIORELLI ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 116366, '2011-04-10', 226470.00, 'A'), +(1353, 3, 'BALTODANO ESQUIVEL LAURA CRISTINA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132165, '2011-08-01', 911660.00, 'A'), +(1354, 4, 'ESCOBAR YEPES ANDREA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-05-19', 403630.00, 'A'), +(1356, 1, 'GAGELI OSORIO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '228@yahoo.com.mx', '2011-02-03', 128662, '2011-07-14', 205070.00, 'A'), +(1357, 3, 'CABAL ALVAREZ RUBEN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 188640, '2011-08-14', 175770.00, 'A'), +(1359, 4, 'HUERFANO JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-06-04', 790970.00, 'A'), +(136, 1, 'OSORIO RAMIREZ LEONARDO', 191821112, 'CRA 25 CALLE 100', + '686@yahoo.es', '2011-02-03', 128662, '2010-05-14', 426380.00, 'A'), +(1360, 4, 'RAMON GARCIA MARIA PAULA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-01', 163890.00, 'A'), +(1362, 30, 'ALVAREZ CLAVIO CARLA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127203, '2011-04-18', 741020.00, 'A'), +(1363, 3, 'SERRA DURAN GERARDO ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-03', 365490.00, 'A'), +(1364, 3, 'NORIEGA VALVERDE SILVIA MARCELA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 132775, '2011-02-27', 604370.00, 'A'), +(1366, 1, 'JARAMILLO LOPEZ ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '269@terra.com.co', '2011-02-03', 127559, '2010-11-08', 813800.00, 'A'), +(1367, 1, 'MAZO ROLDAN CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-04', 292880.00, 'A'), +(1368, 1, 'MURIEL ARCILA MAURICIO HERNANDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-29', 22970.00, 'A'), +(1369, 1, 'RAMIREZ CARLOS FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-14', 236230.00, 'A'), +(137, 1, 'LUNA PEREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 126881, '2011-08-05', 154640.00, 'A'), +(1370, 1, 'GARCIA GRAJALES PEDRO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128166, '2011-10-09', 112230.00, 'A'), +(1372, 3, 'GARCIA ESCOBAR ANA MARIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-29', 925670.00, 'A'), +(1373, 3, 'ALVES DIAS CARLOS AUGUSTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-07', 70940.00, 'A'), +(1374, 3, 'MATTOS CHRISTIANE GARCIA CID', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 183024, '2010-08-25', 577700.00, 'A'), +(1376, 1, 'CARVAJAL ROJAS ORLANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-10', 645240.00, 'A'), +(1377, 3, 'MADARIAGA CADIZ CLAUDIO CRISTIAN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 117002, '2011-10-04', 199200.00, 'A'), +(1379, 3, 'MARIN YANEZ ALICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 188640, '2011-02-20', 703870.00, 'A'), +(138, 1, 'DIAZ AVENDANO MARCELO IVAN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-22', 494080.00, 'A'), +(1381, 3, 'COSTA VILLEGAS LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 117002, '2011-08-21', 580670.00, 'A'), +(1382, 3, 'DAZA PEREZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 122035, '2009-02-23', 888000.00, 'A'), +(1385, 4, 'RIVEROS ARIAS MARIA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127492, '2011-09-26', 35710.00, 'A'), +(1386, 30, 'TORO GIRALDO MATEO', 191821112, 'CRA 25 CALLE 100', + '433@yahoo.com.mx', '2011-02-03', 127591, '2011-07-17', 700730.00, 'A'), +(1387, 4, 'ROJAS YARA LAURA DANIELA MARIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-31', 396530.00, 'A'), +(1388, 3, 'GALLEGO RODRIGO MARIA PILAR', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2009-04-19', 880450.00, 'A'), +(1389, 1, 'PANTOJA VELASQUEZ JOSE ARMANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127300, '2011-08-05', 212660.00, 'A'), +(139, 1, 'RANCO GOMEZ HERNÁN EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-01-19', 6450.00, 'A'), +(1390, 3, 'VAN DEN BORNE KEES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 132958, '2010-01-28', 421930.00, 'A'), +(1391, 3, 'MONDRAGON FLORES JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118777, '2011-08-22', 471700.00, 'A'), +(1392, 3, 'BAGELLA MICHELE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2010-07-27', 92720.00, 'A'), +(1393, 3, 'BISTIANCIC MACHADO ANA INES', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 116366, '2010-08-02', 48490.00, 'A'), +(1394, 3, 'BANADOS ORTIZ MARIA PILAR', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-08-25', 964280.00, 'A'), +(1395, 1, 'CHINDOY CHINDOY HERNANDO', 191821112, 'CRA 25 CALLE 100', + '107@terra.com.co', '2011-02-03', 126892, '2011-08-25', 675920.00, 'A'), +(1396, 3, 'SOTO NUNEZ ANDRES ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 117002, '2011-10-02', 486760.00, 'A'), +(1397, 1, 'DELGADO MARTINEZ LORGE ELIAS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-05-23', 406040.00, 'A'), +(1398, 1, 'LEON GUEVARA JAVIER ANIBAL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 126892, '2011-09-08', 569930.00, 'A'), +(1399, 1, 'ZARAMA BASTIDAS LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 126892, '2011-08-05', 631540.00, 'A'), +(14, 1, 'MAGUIN HENNSSEY LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', + '714@gmail.com', '2011-02-03', 127591, '2011-07-11', 143540.00, 'A'), +(140, 1, 'CARRANZA CUY ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-25', 550010.00, 'A'), +(1401, 3, 'REYNA CASTORENA JOSE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 189815, '2011-08-29', 344970.00, 'A'), +(1402, 1, 'GFALLO BOTERO SERGIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2011-07-14', 381100.00, 'A'), +(1403, 1, 'ARANGO ARAQUE JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-05-04', 870590.00, 'A'), +(1404, 3, 'LASSNER NORBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 118942, '2010-02-28', 209650.00, 'A'), +(1405, 1, 'DURANGO MARIN HECTOR LEON', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '1970-02-02', 436480.00, 'A'), +(1407, 1, 'FRANCO CASTANO DIEGO MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-06-28', 457770.00, 'A'), +(1408, 1, 'HERNANDEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 128662, '2011-05-29', 628550.00, 'A'), +(1409, 1, 'CASTANO DUQUE CARLOS HUGO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-03-23', 769410.00, 'A'), +(141, 1, 'CHAMORRO CHEDRAUI SERGIO ALBERTO', 191821112, 'CRA 25 CALLE 100', + '922@yahoo.com.mx', '2011-02-03', 127591, '2011-05-07', 730720.00, 'A'), +(1411, 1, 'RAMIREZ MONTOYA ADAMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2011-04-13', 498880.00, 'A'), +(1412, 1, 'GONZALEZ BENJUMEA OSCAR HUMBERTO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-11-01', 610150.00, 'A'), +(1413, 1, 'ARANGO ACEVEDO WALTER ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2010-10-07', 554090.00, 'A'), +(1414, 1, 'ARANGO GALLO HUMBERTO LEON', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-02-25', 940010.00, 'A'), +(1415, 1, 'VELASQUEZ LUIS GONZALO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2011-07-06', 37760.00, 'A'), +(1416, 1, 'MIRA AGUILAR FRANCISCO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-30', 368790.00, 'A'), +(1417, 1, 'RIVERA ARISTIZABAL CARLOS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-03-02', 730670.00, 'A'), +(1418, 1, 'ARISTIZABAL ROLDAN ANDRES RICARDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-02', 546960.00, 'A'), +(142, 1, 'LOPEZ ZULETA MAURICIO ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-01', 3550.00, 'A'), +(1420, 1, 'ESCORCIA ARAMBURO JUAN MARIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', 73100.00, 'A'), +(1421, 1, 'CORREA PARRA RICARDO ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-08-05', 737110.00, 'A'), +(1422, 1, 'RESTREPO NARANJO DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 128662, '2011-09-15', 466240.00, 'A'), +(1423, 1, 'VELASQUEZ CARLOS JUAN', 191821112, 'CRA 25 CALLE 100', + '123@yahoo.com', '2011-02-03', 128662, '2010-06-09', 119880.00, 'A'), +(1424, 1, 'MACIA GONZALEZ ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2010-11-12', 200690.00, 'A'), +(1425, 1, 'BERRIO MEJIA HELBER ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2010-06-04', 643800.00, 'A'), +(1427, 1, 'GOMEZ GUTIERREZ CARLOS ARIEL', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-09-08', 153320.00, 'A'), +(1428, 1, 'RESTREPO LOPEZ JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-12', 915770.00, 'A'), +('CELL4012', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1429, 1, 'BARTH TOBAR LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-02-23', 118900.00, 'A'), +(143, 1, 'MUNERA BEDIYA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2010-09-21', 825600.00, 'A'), +(1430, 1, 'JIMENEZ VELEZ ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2010-02-26', 847160.00, 'A'), +(1431, 1, 'TAKAHASHI GAVIRIA NICOLAS KEIICHIRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-13', 879120.00, 'A'), +(1432, 1, 'ESCOBAR JARAMILLO ESTEBAN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2010-06-10', 854110.00, 'A'), +(1433, 1, 'PALACIO NAVARRO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-08-18', 633200.00, 'A'), +(1434, 1, 'LONDONO MUNOZ ADOLFO LEON', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-09-14', 603670.00, 'A'), +(1435, 1, 'PULGARIN JAIME ANDRES', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2009-11-01', 118730.00, 'A'), +(1436, 1, 'FERRERA ZULUAGA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2010-07-10', 782630.00, 'A'), +(1437, 1, 'VASQUEZ VELEZ HABACUC', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-27', 557000.00, 'A'), +(1438, 1, 'HENAO PALOMINO DIEGO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2009-05-06', 437080.00, 'A'), +(1439, 1, 'HURTADO URIBE JUAN GONZALO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-01-11', 514400.00, 'A'), +(144, 1, 'ALDANA RODOLFO AUGUSTO', 191821112, 'CRA 25 CALLE 100', + '838@yahoo.es', '2011-02-03', 127591, '2011-08-07', 117350.00, 'A'), +(1441, 1, 'URIBE DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 133535, '2010-11-19', 760610.00, 'A'), +(1442, 1, 'PINEDA GALIANO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2010-07-29', 20770.00, 'A'), +(1443, 1, 'DUQUE BETANCOURT FABIO LEON', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-11-26', 822030.00, 'A'), +(1444, 1, 'JARAMILLO TORO HERNAN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-04-27', 47830.00, 'A'), +(145, 1, 'VASQUEZ ZAPATA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-09', 109940.00, 'A'), +(1450, 1, 'TOBON FRANCO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '545@facebook.com', '2011-02-03', 127591, '2011-05-03', 889540.00, 'A'), +(1454, 1, 'LOTERO PAVAS CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-28', 646750.00, 'A'), +(1455, 1, 'ESTRADA HENAO JAVIER ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128569, '2009-09-07', 215460.00, 'A'), +(1456, 1, 'VALDERRAMA MAXIMILIANO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-03-23', 137030.00, 'A'), +(1457, 3, 'ESTRADA ALVAREZ GONZALO ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 154903, '2011-05-02', 38790.00, 'A'), +(1458, 1, 'PAUCAR VALLEJO JAIRO ALONSO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-10-15', 782860.00, 'A'), +(1459, 1, 'RESTREPO GIRALDO JHON DARIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-04-04', 797930.00, 'A'), +(146, 1, 'BAQUERO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 128662, '2010-03-03', 197650.00, 'A'), +(1460, 1, 'RESTREPO DOMINGUEZ GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2009-05-18', 641050.00, 'A'), +(1461, 1, 'YANOVICH JACKY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 128662, '2010-08-21', 811470.00, 'A'), +(1462, 1, 'HINCAPIE ROLDAN JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-08-27', 134200.00, 'A'), +(1463, 3, 'ZEA JORGE OLIVER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 150699, '2011-03-12', 236610.00, 'A'), +(1464, 1, 'OSCAR MAURICIO ECHAVARRIA', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2010-11-24', 780440.00, 'A'), +(1465, 1, 'COSSIO GIL JOSE ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-10-01', 192380.00, 'A'), +(1466, 1, 'GOMEZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-03-01', 620580.00, 'A'), +(1467, 1, 'VILLALOBOS OCHOA ANDRES GABRIEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-08-18', 525740.00, 'A'), +(1470, 1, 'GARCIA GONZALEZ DAVID DARIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-09-17', 986990.00, 'A'), +(1471, 1, 'RAMIREZ RESTREPO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-03', 162250.00, 'A'), +(1472, 1, 'VASQUEZ GUTIERREZ JUAN ANDRES', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-04-05', 850280.00, 'A'), +(1474, 1, 'ESCOBAR ARANGO DAVID', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2010-11-01', 272460.00, 'A'), +(1475, 1, 'MEJIA TORO JUAN DAVID', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-05-02', 68320.00, 'A'), +(1477, 1, 'ESCOBAR GOMEZ JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127848, '2011-05-15', 416150.00, 'A'), +(1478, 1, 'BETANCUR WILSON', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2008-02-09', 508060.00, 'A'), +(1479, 3, 'ROMERO ARRAU GONZALO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-06-10', 291880.00, 'A'), +(148, 1, 'REINA MORENO MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-08', 699240.00, 'A'), +(1480, 1, 'CASTANO OSORIO JORGE ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127662, '2011-09-20', 935200.00, 'A'), +(1482, 1, 'LOPEZ LOPERA ROBINSON FREDY', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-09-02', 196280.00, 'A'), +(1484, 1, 'HERNAN DARIO RENDON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 128662, '2011-03-18', 312520.00, 'A'), +(1485, 1, 'MARTINEZ ARBOLEDA MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2010-11-03', 821760.00, 'A'), +(1486, 1, 'RODRIGUEZ MORA CARLOS MORA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-09-16', 171270.00, 'A'), +(1487, 1, 'PENAGOS VASQUEZ JOSE DOMINGO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-09-06', 391080.00, 'A'), +(1488, 1, 'UERRA MEJIA DIEGO LEON', 191821112, 'CRA 25 CALLE 100', + '704@hotmail.com', '2011-02-03', 144086, '2011-08-06', 441570.00, 'A'), +(1491, 1, 'QUINTERO GUTIERREZ ABEL PASTOR', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2009-11-16', 138100.00, 'A'), +(1492, 1, 'ALARCON YEPES IVAN DARIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 150699, '2010-05-03', 145330.00, 'A'), +(1494, 1, 'HERNANDEZ VALLEJO ANDRES MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-05-09', 125770.00, 'A'), +(1495, 1, 'MONTOYA MORENO LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-11-09', 691770.00, 'A'), +(1497, 1, 'BARRERA CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '62@yahoo.es', + '2011-02-03', 127591, '2010-08-24', 332550.00, 'A'), +(1498, 1, 'ARROYAVE FERNANDEZ PABLO EMILIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-05-12', 418030.00, 'A'), +(1499, 1, 'GOMEZ ANGEL FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 128662, '2011-05-03', 92480.00, 'A'), +(15, 1, 'AMSILI COHEN JOSEPH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-10-07', 877400.00, 'A'), +('CELL411', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(150, 3, 'ARDILA GUTIERREZ DANIEL MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-12', 506760.00, 'A'), +(1500, 1, 'GONZALEZ DUQUE PABLO JOSE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2010-04-13', 208330.00, 'A'), +(1502, 1, 'MEJIA BUSTAMANTE JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-08-09', 196000.00, 'A'), +(1506, 1, 'SUAREZ MONTOYA JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128569, '2011-09-13', 368250.00, 'A'), +(1508, 1, 'ALVAREZ GONZALEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-02-15', 355190.00, 'A'), +(1509, 1, 'NIETO CORREA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-03-31', 899980.00, 'A'), +(1511, 1, 'HERNANDEZ GRANADOS JHONATHAN', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-08-30', 471720.00, 'A'), +(1512, 1, 'CARDONA ALVAREZ DEIBY', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 128662, '2010-10-05', 55590.00, 'A'), +(1513, 1, 'TORRES MARULANDA JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2010-10-20', 862820.00, 'A'), +(1514, 1, 'RAMIREZ RAMIREZ JHON JAIRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-05-11', 147310.00, 'A'), +(1515, 1, 'MONDRAGON TORO NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-01-19', 148100.00, 'A'), +(1517, 3, 'SUIDA DIETER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 118942, '2008-07-21', 48580.00, 'A'), +(1518, 3, 'LEFTWICH ANDREW PAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 211610, '2011-06-07', 347170.00, 'A'), +(1519, 3, 'RENTON ANDREW GEORGE PATRICK', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 269033, '2010-12-11', 590120.00, 'A'), +(152, 1, 'BUSTOS MONZON CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-22', 335160.00, 'A'), +(1521, 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 119814, '2011-04-28', 775000.00, 'A'), +(1522, 3, 'GUARACI FRANCO DE PAIVA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 119167, '2011-04-28', 147770.00, 'A'), +(1525, 4, 'MORENO TENORIO MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-20', 888750.00, 'A'), +(1527, 1, 'VELASQUEZ HERNANDEZ JHON EDUARSON', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-07-19', 161270.00, 'A'), +(1528, 4, 'VANEGAS ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '185@yahoo.com', + '2011-02-03', 127591, '2011-06-20', 109830.00, 'A'), +(1529, 3, 'BARBABE CLAIRE LAURENCE ANNICK', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-04', 65330.00, 'A'), +(153, 1, 'GONZALEZ TORREZ MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-01', 762560.00, 'A'), +(1530, 3, 'COREA MARTINEZ GUILLERMO JOSE ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 135360, '2011-09-25', 997190.00, 'A'), +(1531, 3, 'PACHECO RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 117002, '2010-03-08', 789960.00, 'A'), +(1532, 3, 'WELCH RICHARD WILLIAM', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 190393, '2010-10-04', 958210.00, 'A'), +(1533, 3, 'FOREMAN CAROLYN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 107159, '2011-05-23', 421200.00, 'A'), +(1535, 3, 'ZAGAL SOTO CLAUDIA PAZ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 117002, '2008-05-16', 893130.00, 'A'), +(1536, 3, 'ZAGAL SOTO CLAUDIA PAZ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 117002, '2011-10-08', 771600.00, 'A'), +(1538, 3, 'BLANCO RODRIGUEZ JUAN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 197162, '2011-04-02', 578250.00, 'A'), +(154, 1, 'HENDEZ PUERTO JAVIER ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 807310.00, 'A'), +(1540, 3, 'CONTRERAS BRAIN JAVIER ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-02-22', 42420.00, 'A'), +(1541, 3, 'RONDON HERNANDEZ MARYLIN DEL CARMEN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132958, '2011-09-29', 145780.00, 'A'), +(1542, 3, 'ELJURI RAMIREZ EMIRA ELIZABETH', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 132958, '2010-10-13', 601670.00, 'A'), +(1544, 3, 'REYES LE ROY TOMAS FRANCISCO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2009-06-24', 49990.00, 'A'), +(1545, 3, 'GHETEA GAMUZ JENNY', 191821112, 'CRA 25 CALLE 100', '675@gmail.com', + '2011-02-03', 150699, '2010-05-29', 536940.00, 'A'), +(1546, 3, 'DUARTE GONZALEZ ROONEY ORLANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 117002, '2011-06-20', 534720.00, 'A'), +(1548, 3, 'BIZOT PHILIPPE PIERRE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 263813, '2011-03-02', 709760.00, 'A'), +(1549, 3, 'PELUFFO RUBIO GUILLERMO JUAN', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 116366, '2011-05-09', 360470.00, 'A'), +(1550, 3, 'AGLIATI YERKOVIC CAROLINA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2010-06-01', 673040.00, 'A'), +(1551, 3, 'SEPULVEDA LEDEZMA HENRY CORNELIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-08-15', 283810.00, 'A'), +(1552, 3, 'CABRERA CARMINE JAIME FRANCO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 117002, '2008-11-30', 399940.00, 'A'), +(1553, 3, 'ZINNO PENA ALVARO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 116366, '2010-08-02', 148270.00, 'A'), +(1554, 3, 'ROMERO BUCCICARDI JUAN CRISTOBAL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 117002, '2011-08-01', 541530.00, 'A'), +(1555, 3, 'FEFERKORN ABRAHAM', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 159312, '2011-06-12', 262840.00, 'A'), +(1556, 3, 'MASSE CATESSON CAROLINE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 131272, '2011-06-12', 689600.00, 'A'), +(1557, 3, 'CATESSON ALEXANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 131272, '2011-06-12', 659470.00, 'A'), +(1558, 3, 'FUENTES HERNANDEZ RICARDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-18', 228540.00, 'A'), +(1559, 3, 'GUEVARA MENJIVAR WILSON ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-18', 164310.00, 'A'), +(1560, 3, 'DANOWSKI NICOLAS JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-05-02', 135920.00, 'A'), +(1561, 3, 'CASTRO VELASQUEZ ISMAEL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 121318, '2011-07-31', 186670.00, 'A'), +(1562, 3, 'RODRIGUEZ CORNEJO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 525590.00, 'A'), +(1563, 3, 'VANIA CAROLINA FLORES AVILA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-18', 67950.00, 'A'), +(1564, 3, 'ARMERO RAMOS OSCAR ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '414@hotmail.com', '2011-02-03', 127591, '2011-09-18', 762950.00, 'A'), +(1565, 3, 'ORELLANA MARTINEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-18', 610930.00, 'A'), +(1566, 3, 'BRATT BABONNEAU CARLOS MIGUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', 765800.00, 'A'), +(1567, 3, 'YANES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 150728, '2011-04-12', 996200.00, 'A'), +(1568, 3, 'ANGULO TAMAYO SEBASTIAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 126674, '2011-05-19', 683600.00, 'A'), +(1569, 3, 'HENRIQUEZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 138329, '2011-08-15', 429390.00, 'A'), +('CELL4137', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1570, 3, 'GARCIA VILLARROEL RAUL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 126189, '2011-06-12', 96140.00, 'A'), +(1571, 3, 'SOLA HERNANDEZ JOSE FRANCISCO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188640, '2011-09-25', 192530.00, 'A'), +(1572, 3, 'PEREZ PASTOR OSWALDO MAGARREY', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 126674, '2011-05-25', 674260.00, 'A'), +(1573, 3, 'MICHAN QUINONES FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-06-21', 793680.00, 'A'), +(1574, 3, 'GARCIA ARANDA OSCAR DAVID', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-08-15', 945620.00, 'A'), +(1575, 3, 'GARCIA RIBAS JORDI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 188640, '2011-07-10', 347070.00, 'A'), +(1576, 3, 'GALVAN ROMERO MARIA INMACULADA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-09-14', 898480.00, 'A'), +(1577, 3, 'BOSH MOLINAS JUAN JOSE ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 198576, '2011-08-22', 451190.00, 'A'), +(1578, 3, 'MARTIN TENA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 188640, '2011-04-24', 560520.00, 'A'), +(1579, 3, 'HAWKINS ROBERT JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-09-12', 449010.00, 'A'), +(1580, 3, 'GHERARDI ALEJANDRO EMILIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 180063, '2010-11-15', 563500.00, 'A'), +(1581, 3, 'TELLO JUAN EDUARDO', 191821112, 'CRA 25 CALLE 100', + '192@hotmail.com', '2011-02-03', 138329, '2011-05-01', 470460.00, 'A'), +(1583, 3, 'GUZMAN VALDIVIA CINTIA TATIANA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 199862, '2011-04-06', 897580.00, 'A'), +(1584, 3, 'STUBBS MERCEDES CARMEN JOSEFINA DEL MILAGRO', 191821112, + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 199862, '2011-04-06', + 502510.00, 'A'), +(1585, 3, 'QUINTEIRO GORIS JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-17', 819840.00, 'A'), +(1587, 3, 'RIVAS LORIA PRISCILLA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 205636, '2011-05-01', 498720.00, 'A'), +(1588, 3, 'DE LA TORRE AUGUSTO PATRICIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 20404, '2011-08-31', 718670.00, 'A'), +(159, 1, 'ALDANA PATINO NORMAN ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2009-10-10', 201500.00, 'A'), +(1590, 3, 'TORRES VILLAR ROBERTO ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2011-08-10', 329950.00, 'A'), +(1591, 3, 'PETRULLI CARMELO MORENO', 191821112, 'CRA 25 CALLE 100', + '883@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', 358180.00, 'A'), +(1592, 3, 'MUSCO ENZO FRANCESCO GIUSEPPE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-09-04', 801050.00, 'A'), +(1593, 3, 'RONCUZZI CLAUDIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127134, '2011-10-02', 930700.00, 'A'), +(1594, 3, 'VELANI FRANCESCA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 199862, '2011-08-22', 250360.00, 'A'), +(1596, 3, 'BENARROCH ASSOR DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-10-06', 547310.00, 'A'), +(1597, 3, 'FLO VILLASECA ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-05-27', 357520.00, 'A'), +(1598, 3, 'FONT RIBAS ANTONI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 196117, '2011-09-21', 145660.00, 'A'), +(1599, 3, 'LOPEZ BARAHONA MONICA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2011-08-03', 655740.00, 'A'), +(16, 1, 'FLOREZ PEREZ GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 132572, '2011-03-30', 956370.00, 'A'), +(160, 1, 'GIRALDO MENDIVELSO MARTIN EDISSON', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-14', 429010.00, 'A'), +(1600, 3, 'SCATTIATI ALDO ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 215245, '2011-07-10', 841730.00, 'A'), +(1601, 3, 'MARONE CARLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 101179, '2011-06-14', 241420.00, 'A'), +(1602, 3, 'CHUVASHEVA ELENA ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 190393, '2011-08-21', 681900.00, 'A'), +(1603, 3, 'GIGLIO FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 122035, '2011-09-19', 685250.00, 'A'), +(1604, 3, 'JUSTO AMATE AGUSTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 174598, '2011-05-16', 380560.00, 'A'), +(1605, 3, 'GUARDABASSI FABIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 281044, '2011-07-26', 847060.00, 'A'), +(1606, 3, 'CALABRETTA FRAMCESCO ANTONIO MARIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 199862, '2011-08-22', 93590.00, 'A'), +(1607, 3, 'TARTARINI MASSIMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 196234, '2011-05-10', 926800.00, 'A'), +(1608, 3, 'BOTTI GIAIME', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 231989, '2011-04-04', 353210.00, 'A'), +(1610, 3, 'PILERI ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 205040, '2011-09-01', 868590.00, 'A'), +(1612, 3, 'MARTIN GRACIA LUIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 128662, '2011-07-27', 324320.00, 'A'), +(1613, 3, 'GRACIA MARTIN LUIS', 191821112, 'CRA 25 CALLE 100', + '579@facebook.com', '2011-02-03', 198248, '2011-08-24', 463560.00, 'A'), +(1614, 3, 'SERRAT SESE JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 196234, '2011-05-16', 344840.00, 'A'), +(1615, 3, 'DEL LAGO AMPELIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 145135, '2011-06-29', 333510.00, 'A'), +(1616, 3, 'PERUGORRIA RODRIGUEZ JORGE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 148511, '2011-06-06', 633040.00, 'A'), +(1617, 3, 'GIRAL CALVO IGNACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 196234, '2011-09-19', 164670.00, 'A'), +(1618, 3, 'ALONSO CEBRIAN JOSE MARIA', 191821112, 'CRA 25 CALLE 100', + '253@terra.com.co', '2011-02-03', 188640, '2011-03-23', 924240.00, 'A'), +(162, 1, 'ARIZA PINEDA JOHN ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-11-27', 415710.00, 'A'), +(1620, 3, 'OLMEDO CARDENETE DOMINGO MIGUEL', 191821112, 'CRA 25 CALLE 100', + '608@terra.com.co', '2011-02-03', 135397, '2011-09-03', 863200.00, 'A'), +(1622, 3, 'GIMENEZ BALDRES ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 182860, '2011-05-12', 82660.00, 'A'), +(1623, 3, 'NUNEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 128662, '2011-05-23', 609950.00, 'A'), +(1624, 3, 'PENATE CASTRO WENCESLAO LORENZO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 153607, '2011-09-13', 801750.00, 'A'), +(1626, 3, 'ESCODA MIGUEL JOAN JOSEP', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 188640, '2011-07-18', 489310.00, 'A'), +(1628, 3, 'ESTRADA CAPILLA ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-07-26', 81180.00, 'A'), +(163, 1, 'PERDOMO LOPEZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-09-05', 456910.00, 'A'), +(1630, 3, 'SUBIRAIS MARIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 196234, '2011-09-08', 138700.00, 'A'), +(1632, 3, 'ENSENAT VELASCO JAIME LUIS', 191821112, 'CRA 25 CALLE 100', + '687@gmail.com', '2011-02-03', 188640, '2011-04-12', 904560.00, 'A'), +(1633, 3, 'DIEZ POLANCO CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 188640, '2011-05-24', 530410.00, 'A'), +(1636, 3, 'CUADRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 188640, '2011-09-04', 688400.00, 'A'), +(1637, 3, 'UBRIC MUNOZ RAUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 98790, '2011-05-30', 139830.00, 'A'), +('CELL4159', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1638, 3, 'NEDDERMANN GUJO RICARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-07-31', 633990.00, 'A'), +(1639, 3, 'RENEDO ZALBA JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 188640, '2011-03-13', 750430.00, 'A'), +(164, 1, 'JIMENEZ PADILLA JOHAN MARCEL', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-05', 37430.00, 'A'), +(1640, 3, 'FERNANDEZ MORENO DAVID', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-05-28', 850180.00, 'A'), +(1641, 3, 'VERGARA SERRANO JUAN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196234, '2011-06-30', 999620.00, 'A'), +(1642, 3, 'MARTINEZ HUESO LUCAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 182860, '2011-06-29', 447570.00, 'A'), +(1643, 3, 'FRANCO POBLET JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 196234, '2011-10-03', 238990.00, 'A'), +(1644, 3, 'MORA HIDALGO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-09-06', 852250.00, 'A'), +(1645, 3, 'GARCIA COSO EMILIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 188640, '2011-09-14', 544260.00, 'A'), +(1646, 3, 'GIMENO ESCRIG ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 180124, '2011-09-20', 164580.00, 'A'), +(1647, 3, 'MORCILLO LOPEZ RAMON', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127538, '2011-04-16', 190090.00, 'A'), +(1648, 3, 'RUBIO BONET MANUEL', 191821112, 'CRA 25 CALLE 100', + '252@facebook.com', '2011-02-03', 196234, '2011-05-25', 456740.00, 'A'), +(1649, 3, 'PRADO ABUIN FERNANDO ', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-07-16', 713400.00, 'A'), +(165, 1, 'RAMIREZ PALMA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-10', 816420.00, 'A'), +(1650, 3, 'DE VEGA PUJOL GEMA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 196234, '2011-08-01', 196780.00, 'A'), +(1651, 3, 'IBARGUEN ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 188640, '2010-12-03', 843720.00, 'A'), +(1652, 3, 'IBARGUEN ALFREDO', 191821112, 'CRA 25 CALLE 100', '856@hotmail.com', + '2011-02-03', 188640, '2011-06-18', 628250.00, 'A'), +(1654, 3, 'MATELLANES RODRIGUEZ NURIA PILAR', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188640, '2011-10-05', 165770.00, 'A'), +(1656, 3, 'VIDAURRAZAGA GUISOLA JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 188640, '2011-08-08', 495320.00, 'A'), +(1658, 3, 'GOMEZ ULLATE MARIA ELENA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-04-12', 919090.00, 'A'), +(1659, 3, 'ALCAIDE ALONSO JUAN MIGUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-05-02', 152430.00, 'A'), +(166, 1, 'TUSTANOSKI RODOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2010-12-03', 969790.00, 'A'), +(1660, 3, 'LARROY GARCIA CRISTINA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-09-14', 4900.00, 'A'), +(1661, 3, 'FERNANDEZ POYATO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-09-10', 567180.00, 'A'), +(1662, 3, 'TREVEJO PARDO JULIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-09-25', 821200.00, 'A'), +(1663, 3, 'GORGA CASSINELLI VICTOR DANIEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2011-05-30', 404490.00, 'A'), +(1664, 3, 'MORUECO GONZALEZ JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 188640, '2011-10-09', 558820.00, 'A'), +(1665, 3, 'IRURETA FERNANDEZ PEDRO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 214283, '2011-09-14', 580650.00, 'A'), +(1667, 3, 'TREVEJO PARDO JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-25', 392020.00, 'A'), +(1668, 3, 'BOCOS NUNEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 196234, '2011-10-08', 279710.00, 'A'), +(1669, 3, 'LUIS CASTILLO JOSE AGUSTIN', 191821112, 'CRA 25 CALLE 100', + '557@hotmail.es', '2011-02-03', 168202, '2011-06-16', 222500.00, 'A'), +(167, 1, 'HURTADO BELALCAZAR JOHN JADY', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127300, '2011-08-17', 399710.00, 'A'), +(1670, 3, 'REDONDO GUTIERREZ EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-09-14', 273350.00, 'A'), +(1671, 3, 'MADARIAGA ALONSO RAMON', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2011-07-26', 699240.00, 'A'), +(1673, 3, 'REY GONZALEZ LUIS JAVIER', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 188640, '2011-07-26', 283190.00, 'A'), +(1676, 3, 'PEREZ ESTER ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-10-03', 274900.00, 'A'), +(1677, 3, 'GOMEZ-GRACIA HUERTA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-09-22', 112260.00, 'A'), +(1678, 3, 'DAMASO PUENTE DIEGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 188640, '2011-05-25', 736600.00, 'A'), +(168, 1, 'JUAN PABLO MARTINEZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2010-08-15', 89160.00, 'A'), +(1680, 3, 'DIEZ GONZALEZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-17', 521280.00, 'A'), +(1681, 3, 'LOPEZ LOPEZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', + '853@yahoo.com', '2011-02-03', 196234, '2010-12-13', 567760.00, 'A'), +(1682, 3, 'MIRO LINARES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 133442, '2011-09-03', 274930.00, 'A'), +(1683, 3, 'ROCA PINTADO MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 196234, '2011-05-16', 671410.00, 'A'), +(1684, 3, 'GARCIA BARTOLOME HORACIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196234, '2011-09-29', 532220.00, 'A'), +(1686, 3, 'BALMASEDA DE AHUMADA DIEZ JUAN LUIS', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 168202, '2011-04-13', 637860.00, 'A'), +(1687, 3, 'FERNANDEZ IMAZ FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2011-04-10', 248580.00, 'A'), +(1688, 3, 'ELIAS CASTELLS FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-05-19', 329300.00, 'A'), +(1689, 3, 'ANIDO DIAZ DANIEL', 191821112, 'CRA 25 CALLE 100', '491@gmail.com', + '2011-02-03', 188640, '2011-04-04', 900780.00, 'A'), +(1691, 3, 'GATELL ARIMONT MARIA CRISTINA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-17', 877700.00, 'A'), +(1692, 3, 'RIVERA MUNOZ ADONI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 211705, '2011-04-05', 840470.00, 'A'), +(1693, 3, 'LUNA LOPEZ ALICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 188640, '2011-10-01', 569270.00, 'A'), +(1695, 3, 'HAMMOND ANN ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 118021, '2011-05-17', 916770.00, 'A'), +(1698, 3, 'RODRIGUEZ PARAJA MARIA CRISTINA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-07-15', 649080.00, 'A'), +(1699, 3, 'RUIZ DIAZ JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-06-24', 359540.00, 'A'), +(17, 1, 'SUAREZ CUEVAS FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 129499, '2011-08-31', 149640.00, 'A'), +(170, 1, 'MARROQUIN AVILA FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-04', 965840.00, 'A'), +(1700, 3, 'BACCHELLI ORTEGA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 126180, '2011-06-07', 850450.00, 'A'), +(1701, 3, 'IGLESIAS JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 188640, '2010-09-14', 173630.00, 'A'), +(1702, 3, 'GUTIEZ CUEVAS JULIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 188640, '2010-09-07', 316800.00, 'A'), +('CELL4183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1704, 3, 'CALDEIRO ZAMORA JESUS CARMELO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2011-05-09', 365230.00, 'A'), +(1705, 3, 'ARBONA ABASCAL MANUEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-02-27', 636760.00, 'A'), +(1706, 3, 'COHEN AMAR MOISES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 196766, '2011-05-20', 88120.00, 'A'), +(1708, 3, 'FERNANDEZ COBOS ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2010-11-09', 387220.00, 'A'), +(1709, 3, 'CANAL VIVES JOAQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 196234, '2011-09-27', 345150.00, 'A'), +(171, 1, 'LADINO MORENO JAVIER ORLANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-25', 89230.00, 'A'), +(1710, 5, 'GARCIA BERTRAND HECTOR', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-04-07', 564100.00, 'A'), +(1711, 1, 'CONSTANZA MARIN ESCOBAR', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127799, '2011-03-24', 785060.00, 'A'), +(1712, 1, 'NUNEZ BATALLA FAUSTINO JORGE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-26', 232970.00, 'A'), +(1713, 3, 'VILORA LAZARO ERICK MARTIN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-26', 809690.00, 'A'), +(1715, 3, 'ELLIOT EDWARD JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-09-26', 318660.00, 'A'), +(1716, 3, 'ALCALDE ORTENO MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 117002, '2011-07-23', 544650.00, 'A'), +(1717, 3, 'CIARAVELLA STEFANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 231989, '2011-06-13', 767260.00, 'A'), +(1718, 3, 'URRA GONZALEZ PEDRO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118777, '2011-05-02', 202370.00, 'A'), +(172, 1, 'GUERRERO ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-07-15', 548610.00, 'A'), +(1720, 3, 'JIMENEZ RODRIGUEZ ANNET', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-05-25', 943140.00, 'A'), +(1721, 3, 'LESCAY CASTELLANOS ARNALDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', 585570.00, 'A'), +(1722, 3, 'OCHOA AGUILAR ELIADES', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-25', 98410.00, 'A'), +(1723, 3, 'RODRIGUEZ NUNES JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 735340.00, 'A'), +(1724, 3, 'OCHOA BUSTAMANTE ELIADES', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-25', 381480.00, 'A'), +(1725, 3, 'MARTINEZ NIEVES JOSE ANGEL', 191821112, 'CRA 25 CALLE 100', + '919@yahoo.es', '2011-02-03', 127591, '2011-05-25', 701360.00, 'A'), +(1727, 3, 'DRAGONI ALAIN ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-25', 707850.00, 'A'), +(1728, 3, 'FERNANDEZ LOPEZ MARCOS ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-25', 452090.00, 'A'), +(1729, 3, 'MATURELL ROMERO JORGE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-05-25', 136880.00, 'A'), +(173, 1, 'RUIZ CEBALLOS ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-04', 475380.00, 'A'), +(1730, 3, 'LARA CASTELLANO LENNIS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-25', 328150.00, 'A'), +(1731, 3, 'GRAHAM CRISTOPHER DRAKE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 203079, '2011-06-27', 230120.00, 'A'), +(1732, 3, 'TORRE LUCA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 188640, '2011-05-11', 166120.00, 'A'), +(1733, 3, 'OCHOA HIDALGO EGLIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-05-25', 140250.00, 'A'), +(1734, 3, 'LOURERIO DELACROIX FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 116511, '2011-09-28', 202900.00, 'A'), +(1736, 3, 'LEVIN FIORELLI ANDRES', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 116366, '2011-08-07', 360110.00, 'A'), +(1739, 3, 'BERRY R ALBERT', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 216125, '2011-08-16', 22170.00, 'A'), +(174, 1, 'NIETO PARRA SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-05-11', 731040.00, 'A'), +(1740, 3, 'MARSHALL ROBERT SHEPARD', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 150159, '2011-03-09', 62860.00, 'A'), +(1741, 3, 'HENANDEZ ROY CHRISTOPHER JOHN PATRICK', 191821112, + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 179614, '2011-09-26', + 247780.00, 'A'), +(1742, 3, 'LANDRY GUILLAUME', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 232263, '2011-04-27', 50330.00, 'A'), +(1743, 3, 'VUCETIC ZELJKO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 232263, '2011-07-25', 508320.00, 'A'), +(1744, 3, 'DE JUANA CELASCO MARIA DEL CARMEN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188640, '2011-04-16', 390620.00, 'A'), +(1745, 3, 'LABONTE RONALD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 269033, '2011-09-28', 428120.00, 'A'), +(1746, 3, 'NEWMAN PHILIP MARK', 191821112, 'CRA 25 CALLE 100', '557@gmail.com', + '2011-02-03', 231373, '2011-07-25', 968750.00, 'A'), +(1747, 3, 'GRENIER MARIE PIERRE ', 191821112, 'CRA 25 CALLE 100', + '409@facebook.com', '2011-02-03', 244158, '2011-07-03', 559370.00, 'A'), +(1749, 3, 'SHINDER GARY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 244158, '2011-07-25', 775000.00, 'A'), +(175, 3, 'GALLEGOS BASTIDAS CARLOS EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 133211, '2011-08-10', 229090.00, 'A'), +(1750, 3, 'LOPEZ DE GOICOCHEA ZABALA FRANCISCO JAVIER', 191821112, + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-13', + 203120.00, 'A'), +(1751, 3, 'CORRAL BELLON MANUEL', 191821112, 'CRA 25 CALLE 100', + '538@yahoo.com', '2011-02-03', 177443, '2011-05-02', 690610.00, 'A'), +(1752, 3, 'DE SOLA SOLVAS JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2011-10-02', 843700.00, 'A'), +(1753, 3, 'GARCIA ALCALA DIAZ REGANON EVA MARIA', 191821112, 'CRA 25 CALLE 100', + '398@yahoo.com', '2011-02-03', 118777, '2010-03-15', 146680.00, 'A'), +(1754, 3, 'BIELA VILIAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 132958, '2011-08-16', 202290.00, 'A'), +(1755, 3, 'GUIOT CANO JUAN PATRICK', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 232263, '2011-05-23', 571390.00, 'A'), +(1756, 3, 'JIMENEZ DIAZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-03-27', 250100.00, 'A'), +(1757, 3, 'FOX ELEANORE MAE', 191821112, 'CRA 25 CALLE 100', '117@yahoo.com', + '2011-02-03', 190393, '2011-05-04', 536340.00, 'A'), +(1758, 3, 'TANG VAN SON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 132958, '2011-05-07', 931400.00, 'A'), +(1759, 3, 'SUTTON PETER RONALD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 281673, '2011-06-01', 47960.00, 'A'), +(176, 1, 'GOMEZ IVAN', 191821112, 'CRA 25 CALLE 100', '438@yahoo.com.mx', + '2011-02-03', 127591, '2008-04-09', 952310.00, 'A'), +(1762, 3, 'STOODY MATTHEW FRANCIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-07-21', 84320.00, 'A'), +(1763, 3, 'SEIX MASO ARNAU', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 150699, '2011-05-24', 168880.00, 'A'), +(1764, 3, 'FERNANDEZ REDEL RAQUEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-09-14', 591440.00, 'A'), +(1765, 3, 'PORCAR DESCALS VICENNTE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 176745, '2011-04-24', 450580.00, 'A'), +(1766, 3, 'PEREZ DE VILLEGAS TRILLO FIGUEROA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 196234, '2011-05-17', 478560.00, 'A'), +('CELL4198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1767, 3, 'CELDRAN DEGANO ANGEL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 196234, '2011-05-17', 41040.00, 'A'), +(1768, 3, 'TERRAGO MARI FERRAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 188640, '2011-09-30', 769550.00, 'A'), +(1769, 3, 'SZUCHOVSZKY GERGELY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 250256, '2011-05-23', 724630.00, 'A'), +(177, 1, 'SEBASTIAN TORO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127443, '2011-07-14', 74270.00, 'A'), +(1771, 3, 'TORIBIO JOSE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 226612, '2011-09-04', 398570.00, 'A'), +(1772, 3, 'JOSE LUIS BAQUERA PEIRONCELLY', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 133535, '2010-10-19', 49360.00, 'A'), +(1773, 3, 'MADARIAGA VILLANUEVA MIGUEL', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 188640, '2011-04-12', 51090.00, 'A'), +(1774, 3, 'VILLENA BORREGO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '830@terra.com.co', '2011-02-03', 188640, '2011-07-19', 107400.00, 'A'), +(1776, 3, 'VILAR VILLALBA JOSE LUIS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 180124, '2011-09-20', 596330.00, 'A'), +(1777, 3, 'CAGIGAL ORTIZ MACARENA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 214283, '2011-09-14', 830530.00, 'A'), +(1778, 3, 'KORBA ATTILA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 250256, '2011-09-27', 363650.00, 'A'), +(1779, 3, 'KORBA-ELIAS BARBARA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 250256, '2011-09-27', 326670.00, 'A'), +(178, 1, 'AMSILI COHEN HANAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2009-08-29', 514450.00, 'A'), +(1780, 3, 'PINDADO GOMEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 189053, '2011-04-26', 542400.00, 'A'), +(1781, 3, 'IBARRONDO GOMEZ GRACIA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-09-21', 731990.00, 'A'), +(1782, 3, 'MUNGUIRA GONZALEZ JUAN JULIAN', 191821112, 'CRA 25 CALLE 100', + '54@hotmail.es', '2011-02-03', 188640, '2011-09-06', 32730.00, 'A'), +(1784, 3, 'LANDMAN PIETER MARINUS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 294861, '2011-09-22', 740260.00, 'A'), +(1789, 3, 'SUAREZ AINARA ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 188640, '2011-05-17', 503470.00, 'A'), +(179, 1, 'CARO JUNCO GUIOVANNY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-07-03', 349420.00, 'A'), +(1790, 3, 'MARTINEZ CHACON JOSE JOAQUIN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2011-05-20', 592220.00, 'A'), +(1792, 3, 'MENDEZ DEL RION LUCIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 120639, '2011-06-16', 476910.00, 'A'), +(1793, 3, 'VERHULST LAMBERTUS CORNELIA FRANCISCUS ALPHONSUS', 191821112, + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 295420, '2011-07-04', + 32410.00, 'A'), +(1794, 3, 'YANEZ YAGUE JESUS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 188640, '2011-07-10', 731290.00, 'A'), +(1796, 3, 'GOMEZ ZORRILLA AMATE JOSE MARIOA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 188640, '2011-07-12', 602380.00, 'A'), +(1797, 3, 'LAIZ MORENO ENEKO', 191821112, 'CRA 25 CALLE 100', '219@gmail.com', + '2011-02-03', 127591, '2011-08-05', 334150.00, 'A'), +(1798, 3, 'MORODO RUIZ RUBEN DAVID', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-09-14', 863620.00, 'A'), +(18, 1, 'GARZON VARGAS GUILLERMO FEDERICO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-29', 879110.00, 'A'), +(1800, 3, 'ALFARO FAUS MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 196234, '2011-09-14', 987410.00, 'A'), +(1801, 3, 'MORRALLA VALLVERDU ENRIC', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 194601, '2011-07-18', 990070.00, 'A'), +(1802, 3, 'BALBASTRE TEJEDOR JUAN VICENTE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 182860, '2011-08-24', 988120.00, 'A'), +(1803, 3, 'MINGO REIZ FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 188640, '2010-03-24', 970400.00, 'A'), +(1804, 3, 'IRURETA FERNANDEZ JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 214283, '2011-09-10', 887630.00, 'A'), +(1807, 3, 'NEBRO MELLADO JOSE JUAN', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 168996, '2011-08-15', 278540.00, 'A'), +(1808, 3, 'ALBERQUILLA OJEDA JOSE DANIEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2011-09-27', 477070.00, 'A'), +(1809, 3, 'BUENDIA NORTE MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 131401, '2011-07-08', 549720.00, 'A'), +(181, 1, 'CASTELLANOS FLORES RODRIGO ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-18', 970470.00, 'A'), +(1811, 3, 'HILBERT ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 196234, '2011-09-08', 937830.00, 'A'), +(1812, 3, 'GONZALES PINTO COTERILLO ADOLFO LORENZO', 191821112, + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 214283, '2011-09-10', + 736970.00, 'A'), +(1813, 3, 'ARQUES ALVAREZ JOSE RICARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-04-04', 871360.00, 'A'), +(1817, 3, 'CLAUSELL LOW ROBERTO EMILIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132775, '2011-09-28', 348770.00, 'A'), +(1818, 3, 'BELICHON MARTINEZ JESUS ALVARO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-04-12', 327010.00, 'A'), +(182, 1, 'GUZMAN NIETO JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-09-20', 241130.00, 'A'), +(1821, 3, 'LINATI DE PUIG JORGE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 196234, '2011-05-18', 47210.00, 'A'), +(1823, 3, 'SINBARRERA ROMA ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 196234, '2011-09-08', 598380.00, 'A'), +(1826, 2, 'JUANES GARATE BRUNO ', 191821112, 'CRA 25 CALLE 100', + '301@gmail.com', '2011-02-03', 118777, '2011-08-21', 877650.00, 'A'), +(1827, 3, 'BOLOS GIMENO ROGELIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 200247, '2010-11-28', 555470.00, 'A'), +(1828, 3, 'ZABALA ASTIGARRAGA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 188640, '2011-09-20', 144410.00, 'A'), +(1831, 3, 'MAPELLI CAFFARENA BORJA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 172381, '2011-09-04', 58200.00, 'A'), +(1833, 3, 'LARMONIE LESLIE MARTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-05-30', 604840.00, 'A'), +(1834, 3, 'WILLEMS ROBERT-JAN MICHAEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 288531, '2011-09-05', 756530.00, 'A'), +(1835, 3, 'ANJEMA LAURENS JAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 128662, '2011-08-29', 968140.00, 'A'), +(1836, 3, 'VERHULST HENRICUS LAMBERTUS MARIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 295420, '2011-04-03', 571100.00, 'A'), +(1837, 3, 'PIERROT JOZEF MARIE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 288733, '2011-05-18', 951100.00, 'A'), +(1838, 3, 'EIKELBOOM HIDDE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-09-02', 42210.00, 'A'), +(1839, 3, 'TAMBINI GOMEZ DE MUNG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 180063, '2011-04-24', 357740.00, 'A'), +(1840, 3, 'MAGANA PEREZ GERARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 135360, '2011-09-28', 662060.00, 'A'), +(1841, 3, 'COURTOISIE BEYHAUT RAFAEL JUAN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 116366, '2011-09-05', 237070.00, 'A'), +(1842, 3, 'ROJAS BENJAMIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-06-13', 199170.00, 'A'), +(1843, 3, 'GARCIA VICENTE EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 150699, '2011-08-10', 284650.00, 'A'), +('CELL4291', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1844, 3, 'CESTTI LOPEZ RAFAEL GUSTAVO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 144215, '2011-09-27', 825750.00, 'A'), +(1845, 3, 'URTECHO LOPEZ ARMANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 139272, '2011-09-28', 274800.00, 'A'), +(1846, 3, 'SEGURA ESPINOZA ARMANDO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 135360, '2011-09-28', 896730.00, 'A'), +(1847, 3, 'GONZALEZ VEGA LUIS PASTOR', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 135360, '2011-05-18', 659240.00, 'A'), +(185, 1, 'AYALA CARDENAS NELSON MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 855960.00, 'A'), +(1850, 3, 'ROTZINGER ROA KLAUS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 116366, '2011-09-12', 444250.00, 'A'), +(1851, 3, 'FRANCO DE LEON SEBASTIAN', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 116366, '2011-04-26', 63840.00, 'A'), +(1852, 3, 'RIVAS GAGNONI LUIS ARMANDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 135360, '2011-05-18', 986440.00, 'A'), +(1853, 3, 'BARRETO VELASQUEZ JOEL FERNANDO', 191821112, 'CRA 25 CALLE 100', + '104@hotmail.es', '2011-02-03', 116511, '2011-04-27', 740670.00, 'A'), +(1854, 3, 'SEVILLA AMAYA ORLANDO', 191821112, 'CRA 25 CALLE 100', + '264@yahoo.com', '2011-02-03', 136995, '2011-05-18', 744020.00, 'A'), +(1855, 3, 'VALFRE BRALICH ELEONORA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 116366, '2011-06-06', 498080.00, 'A'), +(1857, 3, 'URDANETA DIAMANTES DIEGO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 132958, '2011-09-23', 797590.00, 'A'), +(1858, 3, 'RAMIREZ ALVARADO ROBERT JESUS', 191821112, 'CRA 25 CALLE 100', + '290@yahoo.com.mx', '2011-02-03', 127591, '2011-09-18', 212850.00, 'A'), +(1859, 3, 'GUTTNER DENNIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-06-25', 671470.00, 'A'), +(186, 1, 'CARRASCO SUESCUN ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-15', 36620.00, 'A'), +(1861, 3, 'HEGEMANN JOACHIM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-06-25', 579710.00, 'A'), +(1862, 3, 'MALCHER INGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 292243, '2011-06-23', 742060.00, 'A'), +(1864, 3, 'HOFFMEISTER MALTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 128206, '2011-09-06', 629770.00, 'A'), +(1865, 3, 'BOHME ALEXANDRA LUCE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-09-14', 235260.00, 'A'), +(1866, 3, 'HAMMAN FRANK THOMAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-08-13', 286980.00, 'A'), +(1867, 3, 'GOPPERT MARKUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 145135, '2011-09-05', 729150.00, 'A'), +(1868, 3, 'BISCARO CAROLINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 118777, '2011-09-16', 784790.00, 'A'), +(1869, 3, 'MASCHAT SEBASTIAN STEPHAN ANDREAS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-02-03', 736520.00, 'A'), +(1870, 3, 'WALTHER DANIEL CLAUS PETER', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-03-24', 328220.00, 'A'), +(1871, 3, 'NENTWIG DANIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 289697, '2011-02-03', 431550.00, 'A'), +(1872, 3, 'KARUTZ ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127662, '2011-03-17', 173090.00, 'A'), +(1875, 3, 'KAY KUNNE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 289697, '2011-03-18', 961400.00, 'A'), +(1876, 2, 'SCHLUMPF IVANA PATRICIA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 245206, '2011-03-28', 802690.00, 'A'), +(1877, 3, 'RODRIGUEZ BUSTILLO CONSUELO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 139067, '2011-03-21', 129280.00, 'A'), +(1878, 1, 'REHWALDT RICHARD ULRICH', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 289697, '2009-10-25', 238320.00, 'A'), +(1880, 3, 'FONSECA BEHRENS MANUELA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-18', 303810.00, 'A'), +(1881, 3, 'VOGEL MIRKO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-06-09', 107790.00, 'A'), +(1882, 3, 'WU WEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', + 289697, '2011-03-04', 627520.00, 'A'), +(1884, 3, 'KADOLSKY ANKE SIGRID', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 289697, '2010-10-07', 188560.00, 'A'), +(1885, 3, 'PFLUCKER PLENGE CARLOS HERNAN', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 239124, '2011-08-15', 500140.00, 'A'), +(1886, 3, 'PENA LAGOS MELENIA PATRICIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 935020.00, 'A'), +(1887, 3, 'CALVANO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118942, '2011-05-02', 174690.00, 'A'), +(1888, 3, 'KUHLEN LOTHAR WILHELM', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 289232, '2011-08-30', 68390.00, 'A'), +(1889, 3, 'QUIJANO RICO SOFIA VICTORIA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 221939, '2011-06-13', 817890.00, 'A'), +(189, 1, 'GOMEZ TRUJILLO SERGIO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-17', 985980.00, 'A'), +(1890, 3, 'SCHILBERZ KARIN', 191821112, 'CRA 25 CALLE 100', '405@facebook.com', + '2011-02-03', 287570, '2011-06-23', 884260.00, 'A'), +(1891, 3, 'SCHILBERZ SOPHIE CAHRLOTTE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 287570, '2011-06-23', 967640.00, 'A'), +(1892, 3, 'MOLINA MOLINA MILAGRO DE SUYAPA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 139844, '2011-07-26', 185410.00, 'A'), +(1893, 3, 'BARRIENTOS ESCALANTE RAFAEL ALVARO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 139067, '2011-05-18', 24110.00, 'A'), +(1895, 3, 'ENGELS FRANZBERNARD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 292243, '2011-07-01', 749430.00, 'A'), +(1896, 3, 'FRIEDHOFF SVEN WILHEM', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 289697, '2010-10-31', 54090.00, 'A'), +(1897, 3, 'BARTELS CHRISTIAN JOHAN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 133535, '2011-07-25', 22160.00, 'A'), +(1898, 3, 'NILS REMMEL', 191821112, 'CRA 25 CALLE 100', '214@gmail.com', + '2011-02-03', 256231, '2011-08-05', 948530.00, 'A'), +(1899, 3, 'DR SCHEIBE MATTHIAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 252431, '2011-09-26', 676150.00, 'A'), +(19, 1, 'RIANO ROMERO ALBERTO ELIAS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2009-12-14', 946630.00, 'A'), +(190, 1, 'LLOREDA ORTIZ FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2010-12-20', 30860.00, 'A'), +(1900, 3, 'CARRASCO CATERIANO PEDRO', 191821112, 'CRA 25 CALLE 100', + '255@hotmail.com', '2011-02-03', 286578, '2011-05-02', 535180.00, 'A'), +(1901, 3, 'ROSENBER DIRK PETER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-09-29', 647450.00, 'A'), +(1902, 3, 'LAUBACH JOHANNES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 289697, '2011-05-01', 631720.00, 'A'), +(1904, 3, 'GRUND STEFAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 256231, '2011-08-05', 185990.00, 'A'), +(1905, 3, 'GRUND BEATE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 256231, '2011-08-05', 281280.00, 'A'), +(1906, 3, 'CORZO PAULA MIRIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 180063, '2011-08-02', 848400.00, 'A'), +(1907, 3, 'OESTERHAUS CORNELIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 256231, '2011-03-16', 398170.00, 'A'), +(1908, 1, 'JUAN SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127300, '2011-05-12', 445660.00, 'A'), +(1909, 3, 'VAN ZIJL CHRISTIAN ANDREAS', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 286785, '2011-09-24', 33800.00, 'A'), +(191, 1, 'CASTANEDA CABALLERO JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-28', 196370.00, 'A'), +(1910, 3, 'LORZA RUIZ MYRIAM ESPERANZA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-04-29', 831990.00, 'A'), +(192, 1, 'ZEA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-09-09', 889270.00, 'A'), +(193, 1, 'VELEZ VICTOR MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 128662, '2010-10-22', 857250.00, 'A'), +(194, 1, 'ARCINIEGAS GOMEZ ISMAEL', 191821112, 'CRA 25 CALLE 100', + '937@hotmail.com', '2011-02-03', 127591, '2011-05-18', 618450.00, 'A'), +(195, 1, 'LINAREZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-09-12', 520470.00, 'A'), +(1952, 3, 'BERND ERNST HEINZ SCHUNEMANN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 255673, '2011-09-04', 796820.00, 'A'), +(1953, 3, 'BUCHNER RICHARD ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-09-17', 808430.00, 'A'), +(1954, 3, 'CHO YONG BEOM', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 173192, '2011-02-07', 651670.00, 'A'), +(1955, 3, 'BERNECKER WALTER LUDWIG', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 256231, '2011-04-03', 833080.00, 'A'), +(1956, 3, 'SCHIERENBECK THOMAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 256231, '2011-05-03', 210380.00, 'A'), +(1957, 3, 'STEGMANN WOLF DIETER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 128662, '2011-08-27', 552650.00, 'A'), +(1958, 3, 'LEBAGE GONZALEZ VALENTINA CECILIA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 131272, '2011-07-29', 132130.00, 'A'), +(1959, 3, 'CABRERA MACCHI JOSE ', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 180063, '2011-08-02', 2700.00, 'A'), +(196, 1, 'OTERO BERNAL ALVARO ERNESTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-04-29', 747030.00, 'A'), +(1960, 3, 'KOO BONKI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', + 127591, '2011-05-15', 617110.00, 'A'), +(1961, 3, 'JODJAHN DE CARVALHO BEIRAL FLAVIA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118942, '2011-07-05', 77460.00, 'A'), +(1963, 3, 'VIEIRA ROCHA MARQUES ELIANE TEREZINHA', 191821112, + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118402, '2011-09-13', + 447430.00, 'A'), +(1965, 3, 'KELLEN CRISTINA GATTI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 126180, '2011-07-01', 804020.00, 'A'), +(1966, 3, 'CHAVEZ MARLON TENORIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-25', 132310.00, 'A'), +(1967, 3, 'SERGIO COZZI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 125750, '2011-08-28', 249500.00, 'A'), +(1968, 3, 'REZENDE LIMA JOSE MARCIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118777, '2011-08-23', 850570.00, 'A'), +(1969, 3, 'RAMOS PEDRO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 118942, '2011-08-03', 504330.00, 'A'), +(1972, 3, 'ADAMS THOMAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118942, '2011-08-11', 774000.00, 'A'), +(1973, 3, 'WALESKA NUCINI BOGO ANDREA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-23', 859690.00, 'A'), +(1974, 3, 'GERMANO PAULO BUNN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 118439, '2011-08-30', 976440.00, 'A'), +(1975, 3, 'CALDEIRA FILHO RUBENS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 118942, '2011-07-18', 303120.00, 'A'), +(1976, 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 119814, '2011-09-08', 586290.00, 'A'), +(1977, 3, 'GAMAS MARIA CRISTINA ALVES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118777, '2011-09-19', 22070.00, 'A'), +(1979, 3, 'PORTO WEBER FERREIRA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-07', 691340.00, 'A'), +(1980, 3, 'FONSECA LAURO PINTO', 191821112, 'CRA 25 CALLE 100', + '104@hotmail.es', '2011-02-03', 127591, '2011-08-16', 402140.00, 'A'), +(1981, 3, 'DUARTE ELENA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 118777, '2011-06-15', 936710.00, 'A'), +(1983, 3, 'CECHINEL CRISTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 118942, '2011-06-12', 575530.00, 'A'), +(1984, 3, 'BATISTA PINHERO JOAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 118777, '2011-04-25', 446250.00, 'A'), +(1987, 1, 'ISRAEL JOSE MAXWELL', 191821112, 'CRA 25 CALLE 100', '936@gmail.com', + '2011-02-03', 125894, '2011-07-04', 408350.00, 'A'), +(1988, 3, 'BATISTA CARVALHO RODRIGO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118864, '2011-09-19', 488410.00, 'A'), +(1989, 3, 'RENO DA SILVEIRA EDNEIA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118867, '2011-05-03', 216990.00, 'A'), +(199, 1, 'BASTO CORREA FERNANDO ANTONIO ', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-21', 616860.00, 'A'), +(1990, 3, 'SEIDLER KOHNERT G TEIXEIRA CHRISTINA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 119814, '2011-08-23', 619730.00, 'A'), +(1992, 3, 'GUIMARAES COSTA LEONARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2011-04-20', 379090.00, 'A'), +(1993, 3, 'BOTTA RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 118777, '2011-09-16', 552510.00, 'A'), +(1994, 3, 'ARAUJO DA SILVA MARCELO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 125666, '2011-08-03', 625260.00, 'A'), +(1995, 3, 'DA SILVA FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 118864, '2011-04-14', 468760.00, 'A'), +(1996, 3, 'MANFIO RODRIGUEZ FERNANDO', 191821112, 'CRA 25 CALLE 100', + '974@yahoo.com', '2011-02-03', 118777, '2011-03-23', 468040.00, 'A'), +(1997, 3, 'NEIVA MORENO DE SOUZA CRISTIANE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-24', 933900.00, 'A'), +(2, 3, 'CHEEVER MICHAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-07-04', 560090.00, 'I'), +(2000, 3, 'ROCHA GUSTAVO ADRIANO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118288, '2011-07-25', 830340.00, 'A'), +(2001, 3, 'DE ANDRADE CARVALHO VIRGINIA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118942, '2011-08-11', 575760.00, 'A'), +(2002, 3, 'CAVALCANTI PIERECK GUILHERME', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 180063, '2011-08-01', 387770.00, 'A'), +(2004, 3, 'HOEGEMANN RAMOS CARLOS FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-04', 894550.00, 'A'), +(201, 1, 'LUIS FERNANDO AREVALO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-06-17', 156730.00, 'A'), +(2010, 3, 'GOMES BUCHALA JORGE FERNANDO ', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-23', 314800.00, 'A'), +(2011, 3, 'MARTINS SIMAIKA CATIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 118777, '2011-06-01', 155020.00, 'A'), +(2012, 3, 'MONICA CASECA BUENO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 118777, '2011-05-16', 830710.00, 'A'), +(2013, 3, 'ALBERTAL MARCELO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118000, '2010-09-10', 688480.00, 'A'), +(2015, 3, 'GOMES CANTARELLI JAIRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118761, '2011-01-11', 685940.00, 'A'), +(2016, 3, 'CADETTI GARBELLINI ENILICE CRISTINA ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-11', 578870.00, 'A'), +(2017, 3, 'SPIELKAMP KLAUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 150699, '2011-03-28', 836540.00, 'A'), +(2019, 3, 'GARES HENRI PHILIPPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 135190, '2011-04-05', 720730.00, 'A'), +('CELL4308', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(202, 1, 'LUCIO CHAUSTRE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-19', 179240.00, 'A'), +(2023, 3, 'GRECO DE RESENDELUIZ ALFREDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 119814, '2011-04-25', 647940.00, 'A'), +(2024, 3, 'CORTINA EVANDRO JOAO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118922, '2011-05-12', 153970.00, 'A'), +(2026, 3, 'BASQUES MOURA GERALDO CARLOS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 119814, '2011-09-07', 668250.00, 'A'), +(2027, 3, 'DA SILVA VALDECIR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-08-23', 863150.00, 'A'), +(2028, 3, 'CHI MOW YUNG IVAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-08-21', 311000.00, 'A'), +(2029, 3, 'YUNG MYRA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-08-21', 965570.00, 'A'), +(2030, 3, 'MARTINS RAMALHO PATRICIA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2011-03-23', 894830.00, 'A'), +(2031, 3, 'DE LEMOS RIBEIRO GILBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118951, '2011-07-29', 577430.00, 'A'), +(2032, 3, 'AIROLDI CLAUDIO', 191821112, 'CRA 25 CALLE 100', '973@terra.com.co', + '2011-02-03', 127591, '2011-09-28', 202650.00, 'A'), +(2033, 3, 'ARRUDA MENDES HEILMANN IONE TEREZA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 120773, '2011-09-07', 280990.00, 'A'), +(2034, 3, 'TAVARES DE CARVALHO EDUARDO JOSE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118942, '2011-08-03', 796980.00, 'A'), +(2036, 3, 'FERNANDES ALARCON RAFAEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118777, '2011-08-28', 318730.00, 'A'), +(2037, 3, 'SUCHODOLKI SERGIO GUSMAO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 190393, '2011-07-13', 167870.00, 'A'), +(2039, 3, 'ESTEVES MARCAL MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-02-24', 912100.00, 'A'), +(2040, 3, 'CORSI LUIZ ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 118777, '2011-03-25', 911080.00, 'A'), +(2041, 3, 'LOPEZ MONICA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 118795, '2011-05-03', 819090.00, 'A'), +(2042, 3, 'QUINTANILHA LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-16', 362230.00, 'A'), +(2043, 3, 'DE CARLI BRUNO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 118777, '2011-05-03', 353890.00, 'A'), +(2045, 3, 'MARINO FRANCA MARILIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 118777, '2011-07-04', 352060.00, 'A'), +(2048, 3, 'VOIGT ALPHONSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 118439, '2010-11-22', 384150.00, 'A'), +(2049, 3, 'ALENCAR ARIMA TATIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118777, '2011-05-23', 408590.00, 'A'), +(2050, 3, 'LINIS DE ALMEIDA NEILSON', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 125666, '2011-08-03', 890480.00, 'A'), +(2051, 3, 'PINHEIRO DE CASTRO BENETI', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118942, '2011-08-09', 226640.00, 'A'), +(2052, 3, 'ALVES DO LAGO HELMANN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 118942, '2011-08-01', 461770.00, 'A'), +(2053, 3, 'OLIVO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-03-22', 628900.00, 'A'), +(2054, 3, 'WILLIAM DOMINGUES SERGIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118085, '2011-08-23', 759220.00, 'A'), +(2055, 3, 'DE SOUZA MENEZES KLEBER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118777, '2011-04-25', 909400.00, 'A'), +(2056, 3, 'CABRAL NEIDE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-09-16', 269340.00, 'A'), +(2057, 3, 'RODRIGUES RENATO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118777, '2011-06-15', 618500.00, 'A'), +(2058, 3, 'SPADALE PEDRO JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 118942, '2011-08-03', 284490.00, 'A'), +(2059, 3, 'MARTINS DE ALMEIDA GUSTAVO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118942, '2011-09-28', 566920.00, 'A'), +(206, 1, 'TORRES HEBER MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 128662, '2011-01-29', 643210.00, 'A'), +(2060, 3, 'IKUNO CELINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 118777, '2011-06-08', 981170.00, 'A'), +(2061, 3, 'DAL BELLO FABIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 129499, '2011-08-20', 205050.00, 'A'), +(2062, 3, 'BENATES ADRIANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-08-23', 81770.00, 'A'), +(2063, 3, 'CARDOSO ALEXANDRE ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-08-23', 793690.00, 'A'), +(2064, 3, 'ZANIOLO DE SOUZA CARLOS HENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118777, '2011-09-19', 723130.00, 'A'), +(2065, 3, 'DA SILVA LUIZ SIDNEI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118777, '2011-03-30', 234590.00, 'A'), +(2066, 3, 'RUFATO DE SOUZA LUIZ FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118777, '2011-08-29', 3560.00, 'A'), +(2067, 3, 'DE MEDEIROS LUCIANA', 191821112, 'CRA 25 CALLE 100', + '994@yahoo.com.mx', '2011-02-03', 118777, '2011-09-10', 314020.00, 'A'), +(2068, 3, 'WOLFF PIAZERA DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 118255, '2011-06-15', 559430.00, 'A'), +(2069, 3, 'DA SILVA FORTUNA MARINA CLAUDIA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 133535, '2011-09-23', 855100.00, 'A'), +(2070, 3, 'PEREIRA BORGES LUCILA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-26', 597210.00, 'A'), +(2072, 3, 'PORROZZI DE ALMEIDA RENATO', 191821112, 'CRA 25 CALLE 100', + '812@hotmail.es', '2011-02-03', 127591, '2011-06-13', 312120.00, 'A'), +(2073, 3, 'KALICHSZTEINN RICARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118777, '2011-03-23', 298330.00, 'A'), +(2074, 3, 'OCCHIALINI GUIMARAES ANA PAULA', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118777, '2011-08-03', 555310.00, 'A'), +(2075, 3, 'MAZZUCO FONTES LUIZ ROBERTO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2011-05-23', 881570.00, 'A'), +(2078, 3, 'TRAN DINH VAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 132958, '2011-05-07', 98560.00, 'A'), +(2079, 3, 'NGUYEN THI LE YEN', 191821112, 'CRA 25 CALLE 100', + '249@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 298200.00, 'A'), +(208, 1, 'GOMEZ GONZALEZ JORGE MARIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-12', 889010.00, 'A'), +(2080, 3, 'MILA DE LA ROCA JOHANA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132958, '2011-01-26', 195350.00, 'A'), +(2081, 3, 'RODRIGUEZ DE FLORES LOURDES MARIA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-16', 82120.00, 'A'), +(2082, 3, 'FLORES PEREZ FRANCISCO GUILLERMO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-23', 824550.00, 'A'), +(2083, 3, 'FRAGACHAN BETANCOUT FRANCISCO JO SE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132958, '2011-07-04', 876400.00, 'A'), +(2084, 3, 'GAFARO MOLINA CARLOS JULIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-03-22', 908370.00, 'A'), +(2085, 3, 'CACERES REYES JORGEANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 117002, '2011-08-11', 912630.00, 'A'), +(2086, 3, 'ALVAREZ RODRIGUEZ VICTOR ROGELIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 132958, '2011-05-23', 838040.00, 'A'), +(2087, 3, 'GARCES ALVARADO JHAGEIMA JOSEFINA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 132958, '2011-04-29', 452320.00, 'A'), +('CELL4324', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(2089, 3, 'FAVREAU CHOLLET JEAN PIERRE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132554, '2011-05-27', 380470.00, 'A'), +(209, 1, 'CRUZ RODRIGEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', + '316@hotmail.es', '2011-02-03', 127591, '2011-06-28', 953870.00, 'A'), +(2090, 3, 'GARAY LLUCH URBI ALAIN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132958, '2011-03-13', 659870.00, 'A'), +(2091, 3, 'LETICIA LETICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-06-07', 157950.00, 'A'), +(2092, 3, 'VELASQUEZ RODULFO RAMON ARISTIDES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-23', 810140.00, 'A'), +(2093, 3, 'PEREZ EDGAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-06-06', 576850.00, 'A'), +(2094, 3, 'PEREZ MARIELA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-06-07', 453840.00, 'A'), +(2095, 3, 'PETRUZZI MANGIARANO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 132958, '2011-03-27', 538650.00, 'A'), +(2096, 3, 'LINARES GORI RICARDO RAMON', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-05-12', 331730.00, 'A'), +(2097, 3, 'LAIRET OLIVEROS CAROLINE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-25', 42680.00, 'A'), +(2099, 3, 'JIMENEZ GARCIA FERNANDO JOSE', 191821112, 'CRA 25 CALLE 100', + '78@hotmail.es', '2011-02-03', 132958, '2011-07-21', 963110.00, 'A'), +(21, 1, 'RUBIO ESCOBAR RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2009-05-21', 639240.00, 'A'), +(2100, 3, 'ZABALA MILAGROS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-07-20', 160860.00, 'A'), +(2101, 3, 'VASQUEZ CRUZ NICOLEDANIELA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 132958, '2011-07-31', 914990.00, 'A'), +(2102, 3, 'REYES FIGUERA RAMON ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 126674, '2011-04-03', 92340.00, 'A'), +(2104, 3, 'RAMIREZ JIMENEZ MARYLIN CAROLINA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 132958, '2011-06-14', 306760.00, 'A'), +(2105, 3, 'TELLES GUILLEN INNA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 132958, '2011-09-07', 383520.00, 'A'), +(2106, 3, 'ALVAREZ CARMEN MARINA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-07-20', 997340.00, 'A'), +(2107, 3, 'MARTINEZ YRIGOYEN NABUCODONOSOR', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 132958, '2011-07-21', 836110.00, 'A'), +(2108, 5, 'FERNANDEZ RUIZ IGNACIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-01', 188530.00, 'A'), +(211, 1, 'RIVEROS GARCIA JORGE IVAN', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-01', 650050.00, 'A'), +(2110, 3, 'CACERES REYES JORGE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 117002, '2011-08-08', 606030.00, 'A'), +(2111, 3, 'GELFI MARCOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 199862, '2011-05-17', 727190.00, 'A'), +(2112, 3, 'CERDA CASTILLO CARMEN GLORIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', 817870.00, 'A'), +(2113, 3, 'RANGEL FERNANDEZ LEONARDO JOSE', 191821112, 'CRA 25 CALLE 100', + '856@hotmail.com', '2011-02-03', 133211, '2011-05-16', 907750.00, 'A'), +(2114, 3, 'ROTHSCHILD VARGAS MICHAEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132165, '2011-02-05', 85170.00, 'A'), +(2115, 3, 'RUIZ GRATEROL INGRID JOHANNA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 132958, '2011-05-16', 702600.00, 'A'), +(2116, 2, 'DEARMAS ALBERTO FERNANDO ', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 150699, '2011-07-19', 257500.00, 'A'), +(2117, 3, 'BOSCAN ARRIETA ERICK HUMBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132958, '2011-07-12', 179680.00, 'A'), +(2118, 3, 'GUILLEN DE TELLES NENCY JOSEFINA', 191821112, 'CRA 25 CALLE 100', + '56@facebook.com', '2011-02-03', 132958, '2011-09-07', 125900.00, 'A'), +(212, 1, 'BUSTAMANTE BUSTAMANTE CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-26', 943260.00, 'A'), +(2120, 2, 'MARK ANTHONY STUART', 191821112, 'CRA 25 CALLE 100', + '661@terra.com.co', '2011-02-03', 127591, '2011-06-26', 74600.00, 'A'), +(2122, 3, 'SCOCOZZA GIOVANNA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 190526, '2011-09-23', 284220.00, 'A'), +(2125, 3, 'CHAVES MOLINA JULIO FELIPE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132165, '2011-09-22', 295360.00, 'A'), +(2127, 3, 'BERNARDES DE SOUZA TONIATI VIRGINIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-06-30', 565090.00, 'A'), +(2129, 2, 'BRIAN DAVIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-03-19', 78460.00, 'A'), +(213, 1, 'PAREJO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-08-11', 766120.00, 'A'), +(2131, 3, 'DE OLIVEIRA LOPES REGINALDO LAZARO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-10-05', 404910.00, 'A'), +(2132, 3, 'DE MELO MING AZEVEDO PAULO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-10-05', 440370.00, 'A'), +(2137, 3, 'SILVA JORGE ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-10-05', 230570.00, 'A'), +(214, 1, 'CADENA RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-08-08', 840.00, 'A'), +(2142, 3, 'VIEIRA VEIGA PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-06-30', 85330.00, 'A'), +(2144, 3, 'ESCRIBANO LEONARDA DEL VALLE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 133535, '2011-03-24', 941440.00, 'A'), +(2145, 3, 'RODRIGUEZ MENENDEZ BERNARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 148511, '2011-08-02', 588740.00, 'A'), +(2146, 3, 'GONZALEZ COURET DANIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 148511, '2011-08-09', 119380.00, 'A'), +(2147, 3, 'GARCIA SOTO WILLIAM', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 135360, '2011-05-18', 830660.00, 'A'), +(2148, 3, 'MENESES ORELLANA RICARDO TOMAS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132165, '2011-06-13', 795200.00, 'A'), +(2149, 3, 'GUEVARA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-06-27', 483990.00, 'A'), +(215, 1, 'BELTRAN PINZON JUAN CARLO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-08', 705860.00, 'A'), +(2151, 2, 'LLANES GARRIDO JAVIER ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-08-30', 719750.00, 'A'), +(2152, 3, 'CHAVARRIA CHAVES RAFAEL ADRIAN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 132165, '2011-09-20', 495720.00, 'A'), +(2153, 2, 'MILBERT ANDREASPETER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-08-10', 319370.00, 'A'), +(2154, 2, 'GOMEZ SILVA LOZANO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127300, '2011-05-30', 109670.00, 'A'), +(2156, 3, 'WINTON ROBERT DOUGLAS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 115551, '2011-08-08', 622290.00, 'A'), +(2157, 2, 'ROMERO PINA MANUEL GUSTAVO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-05-05', 340650.00, 'A'), +(2158, 3, 'KARWALSKI MATTHEW REECE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 117229, '2011-08-29', 836380.00, 'A'), +(2159, 2, 'KIM JUNG SIK ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-07-08', 159950.00, 'A'), +(216, 1, 'MARTINEZ VALBUENA JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 526750.00, 'A'), +(2160, 3, 'AGAR ROBERT ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '81@hotmail.es', '2011-02-03', 116862, '2011-06-11', 290620.00, 'A'), +(2161, 3, 'IGLESIAS EDGAR ALEXIS', 191821112, 'CRA 25 CALLE 100', + '645@facebook.com', '2011-02-03', 131272, '2011-04-04', 973240.00, 'A'), +(2163, 2, 'NOAIN MORENO CECILIA KARIM ', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-06-22', 51950.00, 'A'), +(2164, 2, 'FIGUEROA HEBEL ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-04-26', 276760.00, 'A'), +(2166, 5, 'FRANDBERG DAN RICHARD VERNER', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 134022, '2011-04-06', 309480.00, 'A'), +(2168, 2, 'CONTRERAS LILLO EDUARDO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-27', 389320.00, 'A'), +(2169, 2, 'BLANCO VALLE RICARDO ', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-07-13', 355950.00, 'A'), +(2171, 2, 'BELTRAN ZAVALA JIMI ALFONSO MIGUEL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 126674, '2011-08-22', 991000.00, 'A'), +(2172, 2, 'RAMIRO OREGUI JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 133535, '2011-04-27', 119700.00, 'A'), +(2175, 2, 'FENG PUYO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 302172, '2011-10-07', 965660.00, 'A'), +(2176, 3, 'CLERICI GUIDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 116366, '2011-08-30', 522970.00, 'A'), +(2177, 1, 'SEIJAS GUNTER LUIS MANUEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-02', 717890.00, 'A'), +(2178, 2, 'SHOSHANI MOSHE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-06-13', 20520.00, 'A'), +(218, 3, 'HUCHICHALEO ARSENDIGA FRANCISCA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-05', 690.00, 'A'), +(2181, 2, 'DOMINGO BARTOLOME LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', + '173@terra.com.co', '2011-02-03', 127591, '2011-04-18', 569030.00, 'A'), +(2182, 3, 'GONZALEZ RIJO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-10-02', 795610.00, 'A'), +(2183, 2, 'ANDROVICH MORENO LIZETH LILIAN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127300, '2011-10-10', 270970.00, 'A'), +(2184, 2, 'ARREAZA LUGO JESUS ALFREDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-08', 968030.00, 'A'), +(2185, 2, 'NAVEDA CANELON KATHERINE', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 132775, '2011-09-14', 27250.00, 'A'), +(2189, 2, 'LUGO BEHRENS DENISE SOFIA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-08', 253980.00, 'A'), +(2190, 2, 'ERICA ROSE MOLDENHAUVER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-25', 175480.00, 'A'), +(2192, 2, 'SOLORZANO GARCIA ANDREINA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 50790.00, 'A'), +(2193, 3, 'DE LA COSTE MARIA CAROLINA', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-07-26', 907640.00, 'A'), +(2194, 2, 'MARTINEZ DIAZ JUAN JOSE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-08', 385810.00, 'A'), +(2195, 2, 'GALARRAGA ECHEVERRIA DAYEN ALI', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-07-13', 206150.00, 'A'), +(2196, 2, 'GUTIERREZ RAMIREZ HECTOR JOSE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 133211, '2011-06-07', 873330.00, 'A'), +(2197, 2, 'LOPEZ GONZALEZ SILVIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127662, '2011-09-01', 748170.00, 'A'), +(2198, 2, 'SEGARES LUTZ JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-07', 120880.00, 'A'), +(2199, 2, 'NADER MARTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127538, '2011-08-12', 359880.00, 'A'), +(22, 1, 'CARDOZO AMAYA JORGE HUMBERTO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-07-25', 908720.00, 'A'), +(2200, 3, 'NATERA BERMUDEZ OSWALDO JOSE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2010-10-18', 436740.00, 'A'), +(2201, 2, 'COSTA RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 150699, '2011-09-01', 104090.00, 'A'), +(2202, 5, 'GRUNDY VALENZUELA ALAN PATRICK', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-08', 210230.00, 'A'), +(2203, 2, 'MONTENEGRO DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-05-26', 738890.00, 'A'), +(2204, 2, 'TAMAI BUNGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-24', 63730.00, 'A'), +(2205, 5, 'VINHAS FORTUNA EDSON', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 133535, '2011-09-23', 102010.00, 'A'), +(2206, 2, 'RUIZ ERBS MARIO ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-07-19', 318860.00, 'A'), +(2207, 2, 'VENTURA TINEO MARCEL ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-08', 288240.00, 'A'), +(2210, 2, 'RAMIREZ GUZMAN RICARDO JAIME', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-04-28', 338740.00, 'A'), +(2211, 2, 'STERNBERG GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 132958, '2011-09-04', 18070.00, 'A'), +(2212, 2, 'MARTELLO ALEJOS ROGER ADOLFO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127443, '2011-06-20', 74120.00, 'A'), +(2213, 2, 'CASTANEDA RAFAEL ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 316410.00, 'A'), +(2214, 2, 'LIMON MARTINEZ WILBERT DE JESUS', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128904, '2011-09-19', 359690.00, 'A'), +(2215, 2, 'PEREZ HERNANDEZ MONICA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 133211, '2011-05-23', 849240.00, 'A'), +(2216, 2, 'AWAD LOBATO RICARDO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', + '853@hotmail.com', '2011-02-03', 127591, '2011-04-12', 167100.00, 'A'), +(2217, 2, 'CEPEDA VANEGAS ENDER ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132958, '2011-08-22', 287770.00, 'A'), +(2218, 2, 'PEREZ CHIQUIN HECTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 132572, '2011-04-13', 937580.00, 'A'), +(2220, 5, 'FRANCO DELGADILLO RONALD FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 132775, '2011-09-16', 310190.00, 'A'), +(2222, 2, 'ALCAIDE ALONSO JUAN MIGUEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-05-02', 455360.00, 'A'), +(2223, 3, 'BROWNING BENJAMIN MARK', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-06-09', 45230.00, 'A'), +(2225, 3, 'HARWOO BENJAMIN JOEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 164620.00, 'A'), +(2226, 3, 'HOEY TIMOTHY ROSS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-06-09', 242910.00, 'A'), +(2227, 3, 'FERGUSON GARRY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-07-28', 720700.00, 'A'), +(2228, 3, 'NORMAN NEVILLE ROBERT', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 288493, '2011-06-29', 874750.00, 'A'), +(2229, 3, 'KUK HYUN CHAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 128662, '2011-03-22', 211660.00, 'A'), +(223, 1, 'PINZON PLAZA MARCOS VINICIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 856300.00, 'A'), +(2230, 3, 'SLIPAK NATALIA ANDREA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-07-27', 434070.00, 'A'), +(2231, 3, 'BONELLI MASSIMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 170601, '2011-07-11', 535340.00, 'A'), +(2233, 3, 'VUYLSTEKE ALEXANDER ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 284647, '2011-09-11', 266530.00, 'A'), +(2234, 3, 'DRESSE ALAIN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 284272, '2011-04-19', 209100.00, 'A'), +(2235, 3, 'PAIRON JEAN LOUIS MARIE RAIMOND', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 284272, '2011-03-03', 245940.00, 'A'), +(2236, 3, 'DEVIANE ACHIM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 284272, '2010-11-14', 602370.00, 'A'), +(2239, 3, 'DE CANNIERE LOUIS GEORFES HELE MARIE-JOZEF', 191821112, + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 285511, '2011-09-11', + 993540.00, 'A'), +(2240, 1, 'ERGO ROBERT', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-09-28', 278270.00, 'A'), +(2241, 3, 'MYRTES RODRIGUEZ MORGANA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2011-09-18', 410740.00, 'A'), +(2242, 3, 'BRECHBUEHL HANSRUDOLF', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 249059, '2011-07-27', 218900.00, 'A'), +(2243, 3, 'IVANA SCHLUMPF', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 245206, '2011-04-08', 862270.00, 'A'), +(2244, 3, 'JESSICA JACCART', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 189512, '2011-08-28', 654640.00, 'A'), +(2246, 3, 'PAUSELLI MARIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 210050, '2011-09-26', 468090.00, 'A'), +(2247, 3, 'VOLONTEIRO RICCARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 118777, '2011-04-13', 281230.00, 'A'), +(2248, 3, 'HOFFMANN ALVIR ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 120773, '2011-08-23', 1900.00, 'A'), +(2249, 3, 'MANTOVANI DANIEL FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118942, '2011-08-09', 165820.00, 'A'), +(225, 1, 'DUARTE RUEDA JAVIER ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-29', 293110.00, 'A'), +(2250, 3, 'LIMA DA COSTA BRENO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118777, '2011-03-23', 823370.00, 'A'), +(2251, 3, 'TAMBORIN MACIEL MAGALI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-23', 619420.00, 'A'), +(2252, 3, 'BELLO DE MUORA BIANCA', 191821112, 'CRA 25 CALLE 100', + '969@gmail.com', '2011-02-03', 118942, '2011-08-03', 626970.00, 'A'), +(2253, 3, 'VINHAS FORTUNA PIETRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 133535, '2011-09-23', 276600.00, 'A'), +(2255, 3, 'BLUMENTHAL JAIRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 117630, '2011-07-20', 680590.00, 'A'), +(2256, 3, 'DOS REIS FILHO ELPIDIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 120773, '2011-08-07', 896720.00, 'A'), +(2257, 3, 'COIMBRA CARDOSO MUNARI FERNANDA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-09', 441830.00, 'A'), +(2258, 3, 'LAZANHA FLAVIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 118942, '2011-06-14', 519000.00, 'A'), +(2259, 3, 'LAZANHA FLAVIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 118942, '2011-06-14', 269480.00, 'A'), +(226, 1, 'HUERFANO FLOREZ JOHN FAVER', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-29', 148340.00, 'A'), +(2260, 3, 'JOVETTA EDILSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 118941, '2011-09-19', 790430.00, 'A'), +(2261, 3, 'DE OLIVEIRA ANDRE RICARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118942, '2011-07-25', 143680.00, 'A'), +(2263, 3, 'MUNDO TEIXEIRA CARVALHO SILVIA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118864, '2011-09-19', 304670.00, 'A'), +(2264, 3, 'FERREIRA CINTRA ADRIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 128662, '2011-04-08', 481910.00, 'A'), +(2265, 3, 'AUGUSTO DE OLIVEIRA MARCOS', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118685, '2011-08-09', 495530.00, 'A'), +(2266, 3, 'CHEN ROBERTO LUIZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 118777, '2011-03-15', 31920.00, 'A'), +(2268, 3, 'WROBLESKI DIENSTMANN RAQUEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 117630, '2011-05-15', 269320.00, 'A'), +(2269, 3, 'MALAGOLA GEDERSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 118864, '2011-05-30', 327540.00, 'A'), +(227, 1, 'LOPEZ ESCOBAR CARLOS ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-06', 862360.00, 'A'), +(2271, 3, 'GOMES EVANDRO HENRIQUE', 191821112, 'CRA 25 CALLE 100', + '199@hotmail.es', '2011-02-03', 118777, '2011-03-24', 166100.00, 'A'), +(2273, 3, 'LANDEIRA FERNANDEZ JESUS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-21', 207990.00, 'A'), +(2274, 3, 'ROSSI RENATO', 191821112, 'CRA 25 CALLE 100', '791@hotmail.es', + '2011-02-03', 118777, '2011-09-19', 16170.00, 'A'), +(2275, 3, 'CALMON RANGEL PATRICIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-23', 456890.00, 'A'), +(2277, 3, 'CIFU NETO ROQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118777, '2011-04-27', 808940.00, 'A'), +(2278, 3, 'GONCALVES PRETO FRANCISCO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118942, '2011-07-25', 336930.00, 'A'), +(2279, 3, 'JORGE JUNIOR ROBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 118777, '2011-05-09', 257840.00, 'A'), +(2281, 3, 'ELENCIUC DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 118777, '2011-04-20', 618510.00, 'A'), +(2283, 3, 'CUNHA MENDEZ RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 119855, '2011-07-18', 431190.00, 'A'), +(2286, 3, 'DIAZ LENICE APARECIDA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-03', 977840.00, 'A'), +(2288, 3, 'DE CARVALHO SIGEL TATIANA', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118777, '2011-07-04', 123920.00, 'A'), +(229, 1, 'GALARZA GIRALDO SERGIO ALDEMAR', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 150699, '2011-09-17', 746930.00, 'A'), +(2290, 3, 'ACHOA MORANDI BORGUES SIBELE MARIA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118777, '2011-09-12', 553890.00, 'A'), +(2291, 3, 'EPAMINONDAS DE ALMEIDA DELIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2011-09-22', 14080.00, 'A'), +(2293, 3, 'REIS CASTRO SHANA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 118942, '2011-08-03', 1430.00, 'A'), +(2294, 3, 'BERNARDES JUNIOR ARMANDO', 191821112, 'CRA 25 CALLE 100', + '678@gmail.com', '2011-02-03', 127591, '2011-08-30', 780930.00, 'A'), +(2295, 3, 'LEMOS DE SOUZA AGUIAR SERGIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118777, '2011-10-03', 900370.00, 'A'), +(2296, 3, 'CARVALHO ADAMS KARIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118942, '2011-08-11', 159040.00, 'A'), +(2297, 3, 'GALLINA SILVANA BRASILEIRA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 94110.00, 'A'), +(23, 1, 'COLMENARES PEDREROS EDUARDO ADOLFO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 625870.00, 'A'), +(2300, 3, 'TAVEIRA DE SIQUEIRA TANIA APARECIDA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-24', 443910.00, 'A'), +(2301, 3, 'DA SIVA LIMA ANDRE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-08-23', 165020.00, 'A'), +(2302, 3, 'GALVAO GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 118942, '2011-09-12', 493370.00, 'A'), +(2303, 3, 'DA COSTA CRUZ GABRIELA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2011-07-27', 971800.00, 'A'), +(2304, 3, 'BERNHARD GOTTFRIED RABER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-04-30', 378870.00, 'A'), +(2306, 3, 'ALDANA URIBE PABLO AXEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-05-08', 758160.00, 'A'), +(2308, 3, 'FLORES ALONSO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 145135, '2011-04-26', 995310.00, 'A'), +('CELL4330', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(2309, 3, 'MADRIGAL MIER Y TERAN LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 145135, '2011-02-23', 414650.00, 'A'), +(231, 1, 'ZAPATA CEBALLOS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127662, '2011-08-16', 430320.00, 'A'), +(2310, 3, 'GONZALEZ ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 145135, '2011-05-19', 87330.00, 'A'), +(2313, 3, 'MONTES PORTO ANDREA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 145135, '2011-09-01', 929180.00, 'A'), +(2314, 3, 'ROCHA SUSUNAGA SERGIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2010-10-18', 541540.00, 'A'), +(2315, 3, 'VASQUEZ CALERO FEDERICO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 920160.00, 'A'), +(2317, 3, 'GONZALEZ FERNANDEZ YUSSEN ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-26', 120530.00, 'A'), +(2319, 3, 'ATTIAS WENGROWSKY DAVID', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 150581, '2011-09-07', 8580.00, 'A'), +(232, 1, 'OSPINA ABUCHAIBE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 133535, '2011-07-14', 748960.00, 'A'), +(2320, 3, 'EFRON TOPOROVSKY INES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 116511, '2011-07-15', 20810.00, 'A'), +(2321, 3, 'LUNA PLA DARIO', 191821112, 'CRA 25 CALLE 100', '95@terra.com.co', + '2011-02-03', 145135, '2011-09-07', 78320.00, 'A'), +(2322, 1, 'VAZQUEZ DANIELA', 191821112, 'CRA 25 CALLE 100', '190@gmail.com', + '2011-02-03', 145135, '2011-05-19', 329170.00, 'A'), +(2323, 3, 'BALBI BALBI JUAN DE DIOS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-23', 410880.00, 'A'), +(2324, 3, 'MARROQUIN FERNANDEZ GELACIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-03-23', 66880.00, 'A'), +(2325, 3, 'VAZQUEZ ZAVALA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-04-11', 101770.00, 'A'), +(2326, 3, 'SOTO MARTINEZ MARIA ELENA', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-03-23', 308200.00, 'A'), +(2328, 3, 'HERNANDEZ MURILLO RICARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-22', 253830.00, 'A'), +(233, 1, 'HADDAD LINERO YEBRAIL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 130608, '2010-06-17', 453830.00, 'A'), +(2330, 3, 'TERMINEL HERNANDEZ DANIELA PATRICIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 190393, '2011-08-15', 48940.00, 'A'), +(2331, 3, 'MIJARES FERNANDEZ MAGDALENA GUADALUPE', 191821112, + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-31', + 558440.00, 'A'), +(2332, 3, 'GONZALEZ LUNA CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 146258, '2011-04-26', 645400.00, 'A'), +(2333, 3, 'DIAZ TORREJON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 145135, '2011-05-03', 551690.00, 'A'), +(2335, 3, 'PADILLA GUTIERREZ JESUS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 456120.00, 'A'), +(2336, 3, 'TORRES CORONA JORGE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', 813900.00, 'A'), +(2337, 3, 'CASTRO RAMSES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 150581, '2011-07-04', 701120.00, 'A'), +(2338, 3, 'APARICIO VALLEJO RUSSELL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-03-16', 63890.00, 'A'), +(2339, 3, 'ALBOR FERNANDEZ LUIS ARTURO', 191821112, 'CRA 25 CALLE 100', + '574@gmail.com', '2011-02-03', 147467, '2011-05-09', 216110.00, 'A'), +(234, 1, 'DOMINGUEZ GOMEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '942@hotmail.com', '2011-02-03', 127591, '2010-08-22', 22260.00, 'A'), +(2342, 3, 'REY ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '110@facebook.com', + '2011-02-03', 127591, '2011-03-04', 313330.00, 'A'), +(2343, 3, 'MENDOZA GONZALES ADRIANA', 191821112, 'CRA 25 CALLE 100', + '295@yahoo.com', '2011-02-03', 127591, '2011-03-23', 178720.00, 'A'), +(2344, 3, 'RODRIGUEZ SEGOVIA JESUS ALONSO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2011-07-26', 953590.00, 'A'), +(2345, 3, 'GONZALEZ PELAEZ EDUARDO DAVID', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 231790.00, 'A'), +(2347, 3, 'VILLEDA GARCIA DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 144939, '2011-05-29', 795600.00, 'A'), +(2348, 3, 'FERRER BURGES EMILIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', 83430.00, 'A'), +(2349, 3, 'NARRO ROBLES LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 145135, '2011-03-16', 30330.00, 'A'), +(2350, 3, 'ZALDIVAR UGALDE CARLOS IGNACIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-06-19', 901380.00, 'A'), +(2351, 3, 'VARGAS RODRIGUEZ VALENTE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 146258, '2011-04-26', 415910.00, 'A'), +(2354, 3, 'DEL PIERO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 145135, '2011-05-09', 19890.00, 'A'), +(2355, 3, 'VILLAREAL ANA CRISTINA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-03-23', 211810.00, 'A'), +(2356, 3, 'GARRIDO FERRAN JORGE ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 999370.00, 'A'), +(2357, 3, 'PEREZ PRECIADO EDMUNDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-22', 361450.00, 'A'), +(2358, 3, 'AGUIRRE VIGNAU DANIEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 150581, '2011-08-21', 809110.00, 'A'), +(2359, 3, 'LOPEZ SESMA TOMAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 146258, '2011-09-14', 961200.00, 'A'), +(236, 1, 'VENTO BETANCOURT LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-03-19', 682230.00, 'A'), +(2360, 3, 'BERNAL MALDONADO GUILLERMO JAVIER', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2011-09-19', 378670.00, 'A'), +(2361, 3, 'GUZMAN DELGADO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-22', 9770.00, 'A'), +(2362, 3, 'GUZMAN DELGADO MARTIN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 912850.00, 'A'), +(2363, 3, 'GUSMAND ELGADO JORGE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-08-22', 534910.00, 'A'), +(2364, 3, 'RENDON BUICK JORGE JOSE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-07-26', 936010.00, 'A'), +(2365, 3, 'HERNANDEZ HERNANDEZ HERNANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 75340.00, 'A'), +(2366, 3, 'ALVAREZ PAZ PEDRO RAFAEL ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-01-02', 568650.00, 'A'), +(2367, 3, 'MIJARES DE LA BARREDA FERNANDA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-07-31', 617240.00, 'A'), +(2368, 3, 'MARTINEZ LOPEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-08-24', 380250.00, 'A'), +(2369, 3, 'GAYTAN MILLAN YANERI', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 49520.00, 'A'), +(237, 1, 'BARGUIL ASSIS DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 117460, '2009-09-03', 161770.00, 'A'), +(2370, 3, 'DURAN HEREDIA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 145135, '2011-04-15', 106850.00, 'A'), +(2371, 3, 'SEGURA MIJARES CRISTOBAL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-07-31', 385700.00, 'A'), +(2372, 3, 'TEPOS VALTIERRA ERIK ARTURO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 116345, '2011-09-01', 607930.00, 'A'), +(2373, 3, 'RODRIGUEZ AGUILAR EDMUNDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 145135, '2011-05-04', 882570.00, 'A'), +(2374, 3, 'MYSLABODSKI MICHAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 145135, '2011-03-08', 589060.00, 'A'), +(2375, 3, 'HERNANDEZ MIRELES JATNIEL ELIOENAI', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', 297600.00, 'A'), +(2376, 3, 'SNELL FERNANDEZ SYNTYHA ROCIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 720830.00, 'A'), +(2378, 3, 'HERNANDEZ EIVET AARON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-07-26', 394200.00, 'A'), +(2379, 3, 'LOPEZ GARZA JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-08-22', 837000.00, 'A'), +(238, 1, 'GARCIA PINO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-05-10', 762140.00, 'A'), +(2381, 3, 'TOSCANO ESTRADA RUBEN ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-22', 500940.00, 'A'), +(2382, 3, 'RAMIREZ HUDSON ROGER SILVESTER', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-22', 497550.00, 'A'), +(2383, 3, 'RAMOS JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '362@yahoo.es', + '2011-02-03', 127591, '2011-08-22', 984940.00, 'A'), +(2384, 3, 'CORTES CERVANTES ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 145135, '2011-04-11', 432020.00, 'A'), +(2385, 3, 'POZOS ESQUIVEL DAVID', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-27', 205310.00, 'A'), +(2387, 3, 'ESTRADA AGUIRRE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-08-22', 36470.00, 'A'), +(2388, 3, 'GARCIA RAMIREZ RAMON', 191821112, 'CRA 25 CALLE 100', '177@yahoo.es', + '2011-02-03', 127591, '2011-08-22', 990910.00, 'A'), +(2389, 3, 'PRUD HOMME GARCIA CUBAS XAVIER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-18', 845140.00, 'A'), +(239, 1, 'PINZON ARDILA GUSTAVO ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-01', 325400.00, 'A'), +(2390, 3, 'ELIZABETH OCHOA ROJAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 145135, '2011-05-21', 252950.00, 'A'), +(2391, 3, 'MEZA ALVAREZ JOSE ALBERTO', 191821112, 'CRA 25 CALLE 100', + '646@terra.com.co', '2011-02-03', 144939, '2011-05-09', 729340.00, 'A'), +(2392, 3, 'HERRERA REYES RENATO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2010-02-28', 887860.00, 'A'), +(2393, 3, 'MURILLO GARIBAY GILBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-08-20', 251280.00, 'A'), +(2394, 3, 'GARCIA JIMENEZ CARLOS MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-10-09', 592830.00, 'A'), +(2395, 3, 'GUAGNELLI MARTINEZ BLANCA MONICA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 145184, '2010-10-05', 210320.00, 'A'), +(2397, 3, 'GARCIA CISNEROS RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 128662, '2011-07-04', 734530.00, 'A'), +(2398, 3, 'MIRANDA ROMO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 853340.00, 'A'), +(24, 1, 'ARREGOCES GARZON NELSON ORLANDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127783, '2011-08-12', 403190.00, 'A'), +(240, 1, 'ARCINIEGAS GOMEZ ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-18', 340590.00, 'A'), +(2400, 3, 'HERRERA ABARCA EDUARDO VICENTE ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 755620.00, 'A'), +(2403, 3, 'CASTRO MONCAYO LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-07-29', 617260.00, 'A'), +(2404, 3, 'GUZMAN DELGADO OSBALDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 56250.00, 'A'), +(2405, 3, 'GARCIA LOPEZ DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-08-22', 429500.00, 'A'), +(2406, 3, 'JIMENEZ GAMEZ RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 245206, '2011-03-23', 978720.00, 'A'), +(2407, 3, 'BECERRA MARTINEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-08-23', 605130.00, 'A'), +(2408, 3, 'GARCIA MARTINEZ BERNARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 89480.00, 'A'), +(2409, 3, 'URRUTIA RAYAS BALTAZAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-08-22', 632020.00, 'A'), +(241, 1, 'MEDINA AGUILA NESTOR EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-09', 726730.00, 'A'), +(2411, 3, 'VERGARA MENDOZAVICTOR HUGO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-06-15', 562230.00, 'A'), +(2412, 3, 'MENDOZA MEDINA JORGE IGNACIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 136170.00, 'A'), +(2413, 3, 'CORONADO CASTILLO HUGO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 147529, '2011-05-09', 994160.00, 'A'), +(2414, 3, 'GONZALEZ SOTO DELIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-03-23', 562280.00, 'A'), +(2415, 3, 'HERNANDEZ FLORES STEPHANIE REYNA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 828940.00, 'A'), +(2416, 3, 'ABRAJAN GUERRERO MARIA DE LOS ANGELES', 191821112, + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-23', 457860.00, + 'A'), +(2417, 3, 'HERNANDEZ LOERA ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 802490.00, 'A'), +(2418, 3, 'TARIN LOPEZ JOSE CARMEN', 191821112, 'CRA 25 CALLE 100', + '117@gmail.com', '2011-02-03', 127591, '2011-03-23', 638870.00, 'A'), +(242, 1, 'JULIO NARVAEZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-07-05', 611890.00, 'A'), +(2420, 3, 'BATTA MARQUEZ VICTOR ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-08-23', 17820.00, 'A'), +(2423, 3, 'GONZALEZ REYES JUAN JOSE', 191821112, 'CRA 25 CALLE 100', + '55@yahoo.es', '2011-02-03', 127591, '2011-07-26', 758070.00, 'A'), +(2425, 3, 'ALVAREZ RODRIGUEZ HIRAM RAMSES', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-03-23', 847420.00, 'A'), +(2426, 3, 'FEMATT HERNANDEZ JESUS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-03-23', 164130.00, 'A'), +(2427, 3, 'GUTIERRES ORTEGA FRANCISCO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 278410.00, 'A'), +(2428, 3, 'JIMENEZ DIAZ JUAN JORGE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-05-13', 899650.00, 'A'), +(2429, 3, 'VILLANUEVA PEREZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', + '656@yahoo.es', '2011-02-03', 150449, '2011-03-23', 663000.00, 'A'), +(243, 1, 'GOMEZ REYES ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 126674, '2009-12-20', 879240.00, 'A'), +(2430, 3, 'CERON GOMEZ JOEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 145135, '2011-03-21', 616070.00, 'A'), +(2431, 3, 'LOPEZ LINALDI DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 145135, '2011-05-09', 91360.00, 'A'), +(2432, 3, 'JOSEPH NATHAN PEDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 145135, '2011-05-02', 608580.00, 'A'), +(2433, 3, 'CARRENO PULIDO RUBEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 147242, '2011-06-19', 768810.00, 'A'), +(2434, 3, 'AREVALO MERCADO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 145135, '2011-06-12', 18320.00, 'A'), +(2436, 3, 'RAMIREZ QUEZADA ERIKA BELEM', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-03', 870930.00, 'A'), +(2438, 3, 'TATTO PRIETO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 145135, '2011-05-19', 382740.00, 'A'), +(2439, 3, 'LOPEZ AYALA LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-10-08', 916370.00, 'A'), +(244, 1, 'DEVIS EDGAR JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2010-10-08', 560540.00, 'A'), +(2440, 3, 'HERNANDEZ TOVAR JORGE ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 144991, '2011-10-02', 433650.00, 'A'), +(2441, 3, 'COLLIARD LOPEZ PETER GEORGE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 419120.00, 'A'), +(2442, 3, 'FLORES CHALA GARY', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-08-22', 794670.00, 'A'), +(2443, 3, 'FANDINO MUNOZ ZAMIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 145135, '2011-07-19', 715970.00, 'A'), +(2444, 3, 'BARROSO VARGAS DIEGO ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-26', 195840.00, 'A'), +(2446, 3, 'CRUZ RAMIREZ JUAN PEDRO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 145135, '2011-07-14', 569050.00, 'A'), +(2447, 3, 'TIJERINA ACOSTA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-07-26', 351280.00, 'A'), +(2449, 3, 'JASSO BARRERA CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 145135, '2011-08-24', 192560.00, 'A'), +(245, 1, 'LENCHIG KALEDA SERGIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-02', 165000.00, 'A'), +(2450, 3, 'GARRIDO PATRON VICTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 145135, '2011-09-27', 814970.00, 'A'), +(2451, 3, 'VELASQUEZ GUERRERO RUBEN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', 497150.00, 'A'), +(2452, 3, 'CHOI SUNGKYU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 209494, '2011-08-16', 40860.00, 'A'), +(2453, 3, 'CONTRERAS LOPEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 145135, '2011-08-05', 712830.00, 'A'), +(2454, 3, 'CHAVEZ BATAA OSCAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 150699, '2011-06-14', 441590.00, 'A'), +(2455, 3, 'LEE JONG HYUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 131272, '2011-10-10', 69460.00, 'A'), +(2456, 3, 'MEDINA PADILLA CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 146589, '2011-04-20', 22530.00, 'A'), +(2457, 3, 'FLORES CUEVAS DOTNARA LUZ', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 145135, '2011-05-17', 904260.00, 'A'), +(2458, 3, 'LIU YONGCHAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-10-09', 453710.00, 'A'), +(2459, 3, 'CASTRO FERNANDES PORTOCARRERO JOSE MANUEL', 191821112, + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 195892, '2011-06-14', + 555790.00, 'A'), +(246, 1, 'YAMHURE FONSECAN ERNESTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2009-10-03', 143350.00, 'A'), +(2460, 3, 'DUAN WEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', + 128662, '2011-06-22', 417820.00, 'A'), +(2461, 3, 'ZHU XUTAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-05-18', 421740.00, 'A'), +(2462, 3, 'MEI SHUANNIU', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-10-09', 855240.00, 'A'), +(2464, 3, 'VEGA VACA LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-06-08', 489110.00, 'A'), +(2465, 3, 'TANG YUMING', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 147578, '2011-03-26', 412660.00, 'A'), +(2466, 3, 'VILLEDA GARCIA DAVID', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 144939, '2011-06-07', 595990.00, 'A'), +(2467, 3, 'GARCIA GARZA BLANCA ARMIDA', 191821112, 'CRA 25 CALLE 100', + '927@hotmail.com', '2011-02-03', 145135, '2011-05-20', 741940.00, 'A'), +(2468, 3, 'HERNANDEZ MARTINEZ EMILIO JOAQUIN', 191821112, 'CRA 25 CALLE 100', + '356@facebook.com', '2011-02-03', 145135, '2011-06-16', 921740.00, 'A'), +(2469, 3, 'WANG FAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', + 185363, '2011-08-20', 382860.00, 'A'), +(247, 1, 'ROJAS RODRIGUEZ ALVARO HERNAN', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-09', 221760.00, 'A'), +(2470, 3, 'WANG FEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', + 127591, '2011-10-09', 149100.00, 'A'), +(2471, 3, 'BERNAL MALDONADO GUILLERMO JAVIER', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118777, '2011-07-26', 596900.00, 'A'), +(2472, 3, 'GUTIERREZ GOMEZ ARTURO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145184, '2011-07-24', 537210.00, 'A'), +(2474, 3, 'LAN TYANYE ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-06-23', 865050.00, 'A'), +(2475, 3, 'LAN SHUZHEN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-06-23', 639240.00, 'A'), +(2476, 3, 'RODRIGUEZ GONZALEZ CARLOS ARTURO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 144616, '2011-08-09', 601050.00, 'A'), +(2477, 3, 'HAIBO NI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', + 127591, '2011-08-20', 87540.00, 'A'), +(2479, 3, 'RUIZ RODRIGUEZ GRACIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 145135, '2011-05-20', 910130.00, 'A'), +(248, 1, 'GONZALEZ RODRIGUEZ ANDRES', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-03', 678750.00, 'A'), +(2480, 3, 'OROZCO MACIAS NORMA LETICIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-20', 647010.00, 'A'), +(2481, 3, 'MEZA ALVAREZ JOSE ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 144939, '2011-06-07', 504670.00, 'A'), +(2482, 3, 'RODRIGUEZ FIGUEROA RODRIGO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 146308, '2011-04-27', 582290.00, 'A'), +(2483, 3, 'CARREON GUERRA ANA CECILIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 110709, '2011-05-27', 397440.00, 'A'), +(2484, 3, 'BOTELHO BARRETO CARLOS JOSE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 195892, '2011-08-02', 240350.00, 'A'), +(2485, 3, 'CORONADO CASTILLO HUGO', 191821112, 'CRA 25 CALLE 100', + '209@yahoo.com.mx', '2011-02-03', 147529, '2011-06-07', 9420.00, 'A'), +(2486, 3, 'DE FUENTES GARZA MARCELO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-18', 326030.00, 'A'), +(2487, 3, 'GONZALEZ DUHART GUTIERREZ HORACIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-05-17', 601920.00, 'A'), +(2488, 3, 'LOPEZ LINALDI DEMETRIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-06-07', 31500.00, 'A'), +(2489, 3, 'CASTRO MONCAYO JOSE LUIS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-06-15', 351720.00, 'A'), +(249, 1, 'CASTRO RIBEROS JULIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-23', 728470.00, 'A'), +(2490, 3, 'SERRALDE LOPEZ MARIA GUADALUPE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-07-25', 664120.00, 'A'), +(2491, 3, 'GARRIDO PATRON VICTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 145135, '2011-09-29', 265450.00, 'A'), +(2492, 3, 'BRAUN JUAN NICOLAS ANTONIE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-28', 334880.00, 'A'), +(2493, 3, 'BANKA RAHUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 141138, '2011-05-02', 878070.00, 'A'), +(2494, 1, 'GARCIA MARTINEZ MARIA VIRGINIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-04-17', 385690.00, 'A'), +(2495, 1, 'MARIA VIRGINIA', 191821112, 'CRA 25 CALLE 100', '298@yahoo.com.mx', + '2011-02-03', 127591, '2011-04-16', 294220.00, 'A'), +(2496, 3, 'GOMEZ ZENDEJAS MARIA ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145184, '2011-06-06', 314060.00, 'A'), +(2498, 3, 'MENDEZ MARTINEZ RAUL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 145135, '2011-07-10', 496040.00, 'A'), +(2623, 3, 'ZAFIROPOULO ANA I', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-05-25', 98170.00, 'A'), +(2499, 3, 'CARREON GUERRA ANA CECILIA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-07-29', 417240.00, 'A'), +(2501, 3, 'OLIVAR ARIAS ISMAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 145135, '2011-06-06', 738850.00, 'A'), +(2502, 3, 'ABOUMRAD NASTA EMILE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 145135, '2011-07-26', 899890.00, 'A'), +(2503, 3, 'RODRIGUEZ JIMENEZ ROBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-05-03', 282900.00, 'A'), +(2504, 3, 'ESTADOS UNIDOS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 145135, '2011-07-27', 714840.00, 'A'), +(2505, 3, 'SOTO MUNOZ MARCO GREGORIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-26', 725480.00, 'A'), +(2506, 3, 'GARCIA MONTER ANA OTILIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-10-05', 482880.00, 'A'), +(2507, 3, 'THIRUKONDA VIGNESH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 126180, '2011-05-02', 237950.00, 'A'), +(2508, 3, 'RAMIREZ REATIAGA LYDA YOANA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 150699, '2011-06-26', 741120.00, 'A'), +(2509, 3, 'SEPULVEDA RODRIGUEZ JESUS ', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', 991730.00, 'A'), +(251, 1, 'MEJIA PIZANO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-07-10', 845000.00, 'A'), +(2510, 3, 'FRANCISCO MARIA DIAS COSTA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 179111, '2011-07-12', 735330.00, 'A'), +(2511, 3, 'TEIXEIRA REGO DE OLIVEIRA TIAGO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 179111, '2011-06-14', 701430.00, 'A'), +(2512, 3, 'PHILLIP JAMES', 191821112, 'CRA 25 CALLE 100', '766@terra.com.co', + '2011-02-03', 127591, '2011-09-28', 301150.00, 'A'), +(2513, 3, 'ERXLEBEN ROBERT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 216125, '2011-04-13', 401460.00, 'A'), +(2514, 3, 'HUGHES CONNORRICHARD', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 269033, '2011-06-22', 103880.00, 'A'), +(2515, 3, 'LEBLANC MICHAEL PAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 216125, '2011-08-09', 314990.00, 'A'), +(2517, 3, 'DEVINE CHRISTOPHER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 269033, '2011-06-22', 371560.00, 'A'), +(2518, 3, 'WONG BRIAN TEK FUNG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 126885, '2011-09-22', 67910.00, 'A'), +(2519, 3, 'BIDWALA IRFAN A', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 154811, '2011-03-28', 224840.00, 'A'), +(252, 1, 'JIMENEZ LARRARTE JUAN GABRIEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-05-01', 406770.00, 'A'), +(2520, 3, 'LEE HO YIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 147578, '2011-08-29', 920470.00, 'A'), +(2521, 3, 'DE MOURA MARTINS NUNO ALEXANDRE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196094, '2011-10-09', 927850.00, 'A'), +(2522, 3, 'DA COSTA GOMES CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 179111, '2011-08-10', 877850.00, 'A'), +(2523, 3, 'HOOGWAERTS PAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 118777, '2011-02-11', 605690.00, 'A'), +(2524, 3, 'LOPES MARQUES LUIS JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118942, '2011-09-20', 394910.00, 'A'), +(2525, 3, 'CORREIA CAVACO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 178728, '2011-10-09', 157470.00, 'A'), +(2526, 3, 'HALL JOHN WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-06-09', 602620.00, 'A'), +(2527, 3, 'KNIGHT MARTIN GYLES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 113550, '2011-08-29', 540670.00, 'A'), +(2528, 3, 'HINDS THMAS TRISTAN PELLEW', 191821112, 'CRA 25 CALLE 100', + '337@yahoo.es', '2011-02-03', 116862, '2011-08-23', 895500.00, 'A'), +(2529, 3, 'CARTON ALAN JOHN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 117002, '2011-07-31', 855510.00, 'A'), +(253, 1, 'AZCUENAGA RAMIREZ NICOLAS', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 298472, '2011-05-10', 498840.00, 'A'), +(2530, 3, 'GHIM CHEOLL HO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-08-27', 591060.00, 'A'), +(2531, 3, 'PHILLIPS NADIA SULLIVAN', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-28', 388750.00, 'A'), +(2532, 3, 'CHANG KUKHYUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-03-22', 170560.00, 'A'), +(2533, 3, 'KANG SEOUNGHYUN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 173192, '2011-08-24', 686540.00, 'A'), +(2534, 3, 'CHUNG BYANG HOON', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 125744, '2011-03-14', 921030.00, 'A'), +(2535, 3, 'SHIN MIN CHUL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 173192, '2011-08-24', 545510.00, 'A'), +(2536, 3, 'CHOI JIN SUNG', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-05-15', 964490.00, 'A'), +(2537, 3, 'CHOI SUNGMIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-27', 185910.00, 'A'), +(2538, 3, 'PARK JAESER ', 191821112, 'CRA 25 CALLE 100', '525@terra.com.co', + '2011-02-03', 127591, '2011-09-03', 36090.00, 'A'), +(2539, 3, 'KIM DAE HOON ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 173192, '2011-08-24', 622700.00, 'A'), +(254, 1, 'AVENDANO PABON ROLANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-05-12', 273900.00, 'A'), +(2540, 3, 'LYNN MARIA CRISTINA NORMA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 116862, '2011-09-21', 5220.00, 'A'), +(2541, 3, 'KIM CHINIL JULIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 147578, '2011-08-27', 158030.00, 'A'), +(2543, 3, 'HALL JOHN WILLIAM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-06-09', 398290.00, 'A'), +(2544, 3, 'YOSUKE PERDOMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 165600, '2011-07-26', 668040.00, 'A'), +(2546, 3, 'AKAGI KAZAHIKO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-08-26', 722510.00, 'A'), +(2547, 3, 'NELSON JONATHAN GARY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-06-09', 176570.00, 'A'), +(2548, 3, 'DUONG HOP BA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 116862, '2011-09-14', 715310.00, 'A'), +(2549, 3, 'CHAO-VILLEGAS NIKOLE TUK HING', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 180063, '2011-04-05', 46830.00, 'A'), +(255, 1, 'CORREA ALVARO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-05-27', 872990.00, 'A'), +(2551, 3, 'APPELS LAURENT BERNHARD', 191821112, 'CRA 25 CALLE 100', + '891@hotmail.es', '2011-02-03', 135190, '2011-08-16', 300620.00, 'A'), +(2552, 3, 'PLAISIER ERIK JAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 289294, '2011-05-23', 238440.00, 'A'), +(2553, 3, 'BLOK HENDRIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 288552, '2011-03-27', 290350.00, 'A'), +(2554, 3, 'NETTE ANNA STERRE', 191821112, 'CRA 25 CALLE 100', + '621@yahoo.com.mx', '2011-02-03', 185363, '2011-07-30', 736400.00, 'A'), +(2555, 3, 'FRIELING HANS ERIC', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 107469, '2011-07-31', 810990.00, 'A'), +(2556, 3, 'RUTTE CORNELIA JANTINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 143579, '2011-03-30', 845710.00, 'A'), +(2557, 3, 'WALRAVEN PIETER PAUL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 289294, '2011-07-29', 795620.00, 'A'), +(2558, 3, 'TREBES LAURENS JOHANNES', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-11-22', 440940.00, 'A'), +(2559, 3, 'KROESE ROLANDWILLEBRORDUSMARIA', 191821112, 'CRA 25 CALLE 100', + '188@facebook.com', '2011-02-03', 110643, '2011-06-09', 817860.00, 'A'), +(256, 1, 'FARIAS GARCIA REINI', 191821112, 'CRA 25 CALLE 100', + '615@hotmail.com', '2011-02-03', 127591, '2011-03-05', 543220.00, 'A'), +(2560, 3, 'VAN DER HEIDE HENDRIK', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 291042, '2011-09-04', 766460.00, 'A'), +(2561, 3, 'VAN DEN BERG DONAR ALEXANDER GABRIEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 190393, '2011-07-13', 378720.00, 'A'), +(2562, 3, 'GODEFRIDUS JOHANNES ROPS ', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127622, '2011-10-02', 594240.00, 'A'), +(2564, 3, 'WAT YOK YIENG', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 287095, '2011-03-22', 392370.00, 'A'), +(2565, 3, 'BUIS JACOBUS NICOLAAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-09-20', 456810.00, 'A'), +(2567, 3, 'CHIPPER FRANCIUSCUS NICOLAAS ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 291599, '2011-07-28', 164300.00, 'A'), +(2568, 3, 'ONNO ROUKENS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-11-28', 500670.00, 'A'), +(2569, 3, 'PETRUS MARCELLINUS STEPHANUS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 150699, '2011-06-25', 10430.00, 'A'), +(2571, 3, 'VAN VOLLENHOVEN IVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-08-08', 719370.00, 'A'), +(2572, 3, 'LAMBOOIJ BART', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2011-09-20', 946480.00, 'A'), +(2573, 3, 'LANSER MARIANA PAULINE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 289294, '2011-04-09', 574270.00, 'A'), +(2575, 3, 'KLERKEN JOHANNES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 286101, '2011-05-24', 436840.00, 'A'), +(2576, 3, 'KRAS JACOBUS NICOLAAS', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 289294, '2011-09-26', 88410.00, 'A'), +(2577, 3, 'FUCHS MICHAEL JOSEPH', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 185363, '2011-07-30', 131530.00, 'A'), +(2578, 3, 'BIJVANK ERIK JAN WILLEM', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-04-11', 392410.00, 'A'), +(2579, 3, 'SCHMIDT FRANC ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 106742, '2011-09-11', 567470.00, 'A'), +(258, 1, 'SOTO GONZALEZ FRANCISCO LAZARO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 116511, '2011-05-07', 856050.00, 'A'), +(2580, 3, 'VAN DER KOOIJ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 291277, '2011-07-10', 660130.00, 'A'), +(2581, 2, 'KRIS ANDRE GEORGES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127300, '2011-07-26', 598240.00, 'A'), +(2582, 3, 'HARDING LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 263813, '2011-05-08', 10820.00, 'A'), +(2583, 3, 'ROLLI GUY JEAN ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 145135, '2011-05-31', 259370.00, 'A'), +(2584, 3, 'NIETO PARRA SEBASTIAN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 263813, '2011-07-04', 264400.00, 'A'), +(2585, 3, 'LASTRA CHAVEZ PABLO ARMANDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 126674, '2011-05-25', 543890.00, 'A'), +(2586, 1, 'ZAIDA MAYERLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 132958, '2011-05-05', 926250.00, 'A'), +(2587, 1, 'OSWALDO SOLORZANO CONTRERAS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-28', 999590.00, 'A'), +(2588, 3, 'ZHOU XUAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-05-18', 219200.00, 'A'), +(2589, 3, 'HUANG ZHENGQUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-05-18', 97230.00, 'A'), +(259, 1, 'GALARZA NARANJO JAIME RENE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 988830.00, 'A'), +(2590, 3, 'HUANG ZHENQUIN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-05-18', 828560.00, 'A'), +(2591, 3, 'WEIDEN MULLER AMURER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-03-29', 851110.00, 'A'), +(2593, 3, 'OESTERHAUS CORNELIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 256231, '2011-03-29', 295960.00, 'A'), +(2594, 3, 'RINTALAHTI JUHA HENRIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-23', 170220.00, 'A'), +(2597, 3, 'VERWIJNEN JONAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 289697, '2011-02-03', 638040.00, 'A'), +(2598, 3, 'SHAW ROBERT', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 157414, '2011-07-10', 273550.00, 'A'), +(2599, 3, 'MAKINEN TIMO JUHANI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 196234, '2011-09-13', 453600.00, 'A'), +(260, 1, 'RIVERA CANON JOSE EDWARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127538, '2011-09-19', 375990.00, 'A'), +(2600, 3, 'HONKANIEMI ARTO OLAVI', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 301387, '2011-09-06', 447380.00, 'A'), +(2601, 3, 'DAGG JAMIE MICHAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 216125, '2011-08-09', 876080.00, 'A'), +(2602, 3, 'BOLAND PATRICK CHARLES ', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 216125, '2011-09-14', 38260.00, 'A'), +(2603, 2, 'ZULEYKA JERRYS RIVERA MENDOZA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 150347, '2011-03-27', 563050.00, 'A'), +(2604, 3, 'DELGADO SEQUIRA FERRAO JOSE PEDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188228, '2011-08-16', 700460.00, 'A'), +(2605, 3, 'YORRO LORA EDGAR MANUEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127689, '2011-06-17', 813180.00, 'A'), +(2606, 3, 'CARRASCO RODRIGUEZQCARLOS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127689, '2011-06-17', 964520.00, 'A'), +(2607, 30, 'ORJUELA VELASQUEZ JULIANA MARIA', 191821112, 'CRA 25 CALLE 100', + '372@terra.com.co', '2011-02-03', 132775, '2011-09-01', 383070.00, 'A'), +(2608, 3, 'DUQUE DUTRA LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118942, '2011-07-12', 21780.00, 'A'), +(261, 1, 'MURCIA MARQUEZ NESTOR JAVIER', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-19', 913480.00, 'A'), +(2610, 3, 'NGUYEN HUU KHUONG', 191821112, 'CRA 25 CALLE 100', + '457@facebook.com', '2011-02-03', 132958, '2011-05-07', 733120.00, 'A'), +(2611, 3, 'NGUYEN VAN LAP', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 132958, '2011-05-07', 786510.00, 'A'), +(2612, 3, 'PHAM HUU THU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 132958, '2011-05-07', 733200.00, 'A'), +(2613, 3, 'DANG MING CUONG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 132958, '2011-05-07', 306460.00, 'A'), +(2614, 3, 'VU THI HONG HANH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 132958, '2011-05-07', 332710.00, 'A'), +(2615, 3, 'CHAU TANG LANG', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 132958, '2011-05-07', 744190.00, 'A'), +(2616, 3, 'CHU BAN THING', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 132958, '2011-05-07', 722800.00, 'A'), +(2617, 3, 'NGUYEN QUANG THU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 132958, '2011-05-07', 381420.00, 'A'), +(2618, 3, 'TRAN THI KIM OANH', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 132958, '2011-05-07', 738690.00, 'A'), +(2619, 3, 'NGUYEN VAN VINH', 191821112, 'CRA 25 CALLE 100', '422@yahoo.com.mx', + '2011-02-03', 132958, '2011-05-07', 549210.00, 'A'), +(262, 1, 'ABDULAZIS ELNESER KHALED', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-27', 439430.00, 'A'), +(2620, 3, 'NGUYEN XUAN VY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 132958, '2011-05-07', 529950.00, 'A'), +(2621, 3, 'HA MANH HOA', 191821112, 'CRA 25 CALLE 100', '439@gmail.com', + '2011-02-03', 132958, '2011-05-07', 2160.00, 'A'), +(2622, 3, 'ZAFIROPOULO STEVEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-05-25', 420930.00, 'A'), +(2624, 3, 'TEMIGTERRA MASSIMILIANO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 210050, '2011-09-26', 228070.00, 'A'), +(2625, 3, 'CASSES TRINDADE HELGIO HENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118402, '2011-09-13', 845850.00, 'A'), +(2626, 3, 'ASCOLI MASTROENI MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 120773, '2011-09-07', 545010.00, 'A'), +(2627, 3, 'MONTEIRO SOARES MARCOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 120773, '2011-07-18', 187530.00, 'A'), +(2629, 3, 'HALL ALVARO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 120773, '2011-08-02', 950450.00, 'A'), +(2631, 3, 'ANDRADE CATUNDA RAFAEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 120773, '2011-08-23', 370860.00, 'A'), +(2632, 3, 'MAGALHAES MAYRA ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 118767, '2011-08-23', 320960.00, 'A'), +(2633, 3, 'SPREAFICO MIRIAM ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 118587, '2011-08-23', 492220.00, 'A'), +(2634, 3, 'GOMES FERREIRA HELIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 125812, '2011-08-23', 498220.00, 'A'), +(2635, 3, 'FERNANDES SENNA PIRES SERGIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-10-05', 14460.00, 'A'), +(2636, 3, 'BALESTRO FLORIANO FABIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 120773, '2011-08-24', 577630.00, 'A'), +(2637, 3, 'CABANA DE QUEIROZ ANDRADE ALAXANDRE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-23', 844780.00, 'A'), +(2638, 3, 'DALBOSCO CARLA', 191821112, 'CRA 25 CALLE 100', '380@yahoo.com.mx', + '2011-02-03', 127591, '2011-06-30', 491010.00, 'A'), +(264, 1, 'ROMERO MONTOYA NICOLAY ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-13', 965220.00, 'A'), +(2640, 3, 'BILLINI CRUZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 144215, '2011-03-27', 130530.00, 'A'), +(2641, 3, 'VASQUES ARIAS DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 144509, '2011-08-19', 890500.00, 'A'), +(2642, 3, 'ROJAS VOLQUEZ GLADYS MICHELLE', 191821112, 'CRA 25 CALLE 100', + '852@gmail.com', '2011-02-03', 144215, '2011-07-25', 60930.00, 'A'), +(2643, 3, 'LLANEZA GIL JUAN RAFAELMO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 144215, '2011-07-08', 633120.00, 'A'), +(2646, 3, 'AVILA PEROZO IANKEL JACOB', 191821112, 'CRA 25 CALLE 100', + '318@hotmail.com', '2011-02-03', 144215, '2011-09-03', 125600.00, 'A'), +(2647, 3, 'REGULAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-08-19', 583540.00, 'A'), +(2648, 3, 'CORONADO BATISTA JOSE ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-19', 540910.00, 'A'), +(2649, 3, 'OLIVIER JOSE VICTOR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 144509, '2011-08-19', 953910.00, 'A'), +(2650, 3, 'YOO HOE TAEK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 145135, '2011-08-25', 146820.00, 'A'), +(266, 1, 'CUECA RODRIGUEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-22', 384280.00, 'A'), +(267, 1, 'NIETO ALVARADO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2008-04-28', 553450.00, 'A'), +(269, 1, 'LEAL HOLGUIN FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-07-25', 411700.00, 'A'), +(27, 1, 'MORENO MORENO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2009-09-15', 995620.00, 'A'), +(270, 1, 'CANO IBANES JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-06-03', 215260.00, 'A'), +(271, 1, 'RESTREPO HERRAN ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132775, '2011-04-18', 841220.00, 'A'), +(272, 3, 'RIOS FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 199862, '2011-03-24', 560300.00, 'A'), +(273, 1, 'MADERO LORENZANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-08-03', 277850.00, 'A'), +(274, 1, 'GOMEZ GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-09-24', 708350.00, 'A'), +(275, 1, 'CONSUEGRA ARENAS ANDRES MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-09', 708210.00, 'A'), +(276, 1, 'HURTADO ROJAS NICOLAS', 191821112, 'CRA 25 CALLE 100', + '463@yahoo.com.mx', '2011-02-03', 127591, '2011-09-07', 416000.00, 'A'), +(277, 1, 'MURCIA BAQUERO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-02', 955370.00, 'A'), +(2773, 3, 'TAKUBO KAORI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 165753, '2011-05-12', 872390.00, 'A'), +(2774, 3, 'OKADA MAKOTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 165753, '2011-06-19', 921480.00, 'A'), +(2775, 3, 'TAKEDA AKIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 21062, '2011-06-19', 990250.00, 'A'), +(2776, 3, 'KOIKE WATARU ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 165753, '2011-06-19', 186800.00, 'A'), +(2777, 3, 'KUBO SHINEI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 165753, '2011-02-13', 963230.00, 'A'), +(2778, 3, 'KANNO YONEZO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 165600, '2011-07-26', 255770.00, 'A'), +(278, 3, 'PARENT ELOIDE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 267980, '2011-05-01', 528840.00, 'A'), +(2781, 3, 'SUNADA MINORU ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 165753, '2011-06-19', 724450.00, 'A'), +(2782, 3, 'INOUE KASUYA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-06-22', 87150.00, 'A'), +(2783, 3, 'OTAKE NOBUTOSHI', 191821112, 'CRA 25 CALLE 100', '208@facebook.com', + '2011-02-03', 127591, '2011-06-11', 262380.00, 'A'), +(2784, 3, 'MOTOI KEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 165753, '2011-06-19', 50470.00, 'A'), +(2785, 3, 'TANAKA KIYOTAKA ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 165753, '2011-06-19', 465210.00, 'A'), +(2787, 3, 'YUMIKOPERDOMO', 191821112, 'CRA 25 CALLE 100', '600@yahoo.es', + '2011-02-03', 165600, '2011-07-26', 477550.00, 'A'), +(2788, 3, 'FUKUSHIMA KENZO', 191821112, 'CRA 25 CALLE 100', '599@gmail.com', + '2011-02-03', 156960, '2011-05-30', 863860.00, 'A'), +(2789, 3, 'GELGIN LEVENT NURI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-05-26', 886630.00, 'A'), +(279, 1, 'AVIATUR S. A.', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-05-02', 778110.00, 'A'), +(2791, 3, 'GELGIN ENIS ENRE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-05-26', 547940.00, 'A'), +(2792, 3, 'PAZ SOTO LUBRASCA MARIA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 143954, '2011-06-27', 215000.00, 'A'), +(2794, 3, 'MOURAD TAOUFIKI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-04-13', 511000.00, 'A'), +(2796, 3, 'DASTUS ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 218656, '2011-05-29', 774010.00, 'A'), +(2797, 3, 'MCDONALD MICHAEL LORNE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 269033, '2011-07-19', 85820.00, 'A'), +(2799, 3, 'KLESO MICHAEL QUENTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 269033, '2011-07-26', 277950.00, 'A'), +(28, 1, 'GONZALEZ ACUNA EDGAR MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-09-19', 531710.00, 'A'), +(280, 3, 'NEME KARIM CHAIBAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 135967, '2010-05-02', 304040.00, 'A'), +(2800, 3, 'CLERK CHARLES ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 244158, '2011-07-26', 68490.00, 'A'), +('CELL3673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(2801, 3, 'BURRIS MAURICE STEWARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-09-27', 508600.00, 'A'), +(2802, 1, 'PINCHEN CLAIRE ELAINE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 216125, '2011-04-13', 337530.00, 'A'), +(2803, 3, 'LETTNER EVA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 231224, '2011-09-20', 161860.00, 'A'), +(2804, 3, 'CANUEL LUCIE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 146258, '2011-09-20', 796710.00, 'A'), +(2805, 3, 'IGLESIAS CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 216125, '2011-08-02', 497980.00, 'A'), +(2806, 3, 'PAQUIN JEAN FRANCOIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 269033, '2011-03-27', 99760.00, 'A'), +(2807, 3, 'FOURNIER DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 228688, '2011-05-19', 4860.00, 'A'), +(2808, 3, 'BILODEAU MARTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-09-13', 725030.00, 'A'), +(2809, 3, 'KELLNER PETER WILLIAM', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 130757, '2011-07-24', 610570.00, 'A'), +(2810, 3, 'ZAZULAK INGRID ROSEMARIE', 191821112, 'CRA 25 CALLE 100', + '683@facebook.com', '2011-02-03', 240550, '2011-09-11', 877770.00, 'A'), +(2811, 3, 'RUCCI JHON MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 285188, '2011-05-10', 557130.00, 'A'), +(2813, 3, 'JONCAS MARC', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 33265, '2011-03-21', 90360.00, 'A'), +(2814, 3, 'DUCHARME ERICK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-03-29', 994750.00, 'A'), +(2816, 3, 'BAILLOD THOMAS DAVID ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 239124, '2010-10-20', 529130.00, 'A'), +(2817, 3, 'MARTINEZ SORIA JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 289697, '2011-09-06', 537630.00, 'A'), +(2818, 3, 'TAMARA RABER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-04-30', 100750.00, 'A'), +(2819, 3, 'BURGI VINCENT EMANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 245206, '2011-04-20', 890860.00, 'A'), +(282, 1, 'HUESPED ASISTENTE A LA CONVENCION DE LA DIAN', 191821112, + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2009-06-24', 17160.00, + 'A'), +(2820, 3, 'ROBLES TORRALBA IVAN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 238949, '2011-05-16', 152030.00, 'A'), +(2821, 3, 'CONSUEGRA MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-06-06', 87600.00, 'A'), +(2822, 3, 'CELMA ADROVER LAIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 190393, '2011-03-23', 981880.00, 'A'), +(2823, 3, 'ALVAREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 150699, '2011-06-20', 646610.00, 'A'), +(2824, 3, 'VARGAS WOODROFFE FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 157414, '2011-06-22', 287410.00, 'A'), +(2825, 3, 'GARCIA GUILLEN VICENTE LUIS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 144215, '2011-08-19', 497230.00, 'A'), +(2826, 3, 'GOMEZ GARCIA DIAMANTES PATRICIA MARIA', 191821112, + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2011-09-22', + 623930.00, 'A'), +(2827, 3, 'PEREZ IGLESIAS BIBIANA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 132958, '2011-09-30', 627940.00, 'A'), +(2830, 3, 'VILLALONGA MORENES MARIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 169679, '2011-05-29', 474910.00, 'A'), +(2831, 3, 'REY LOPEZ DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 150699, '2011-08-03', 7380.00, 'A'), +(2832, 3, 'HOYO APARICIO JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 116511, '2011-09-19', 612180.00, 'A'), +(2836, 3, 'GOMEZ GARCIA LOPEZ CARLOS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 150699, '2011-09-21', 277540.00, 'A'), +(2839, 3, 'GALIMERTI MARCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 235197, '2011-08-28', 156870.00, 'A'), +(2840, 3, 'BAROZZI GIUSEPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 231989, '2011-05-25', 609500.00, 'A'), +(2841, 3, 'MARIAN RENATO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-06-12', 576900.00, 'A'), +(2842, 3, 'FAENZA CARLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 126180, '2011-05-19', 55990.00, 'A'), +(2843, 3, 'PESOLILLO CARMINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 203162, '2011-06-26', 549230.00, 'A'), +(2844, 3, 'CHIODI FRANCESCO MARIA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 199862, '2011-09-10', 578210.00, 'A'), +(2845, 3, 'RUTA MARIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2011-06-19', 243350.00, 'A'), +(2846, 3, 'BAZZONI MARINO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 101518, '2011-05-03', 482140.00, 'A'), +(2848, 3, 'LAGASIO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 231989, '2011-05-04', 956670.00, 'A'), +(2849, 3, 'VIERA DA CUNHA PAULO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 190393, '2011-04-05', 741520.00, 'A'), +(2850, 3, 'DAL BEN DENIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 116511, '2011-05-26', 837590.00, 'A'), +(2851, 3, 'GIANELLI HERIBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 233927, '2011-05-01', 963400.00, 'A'), +(2852, 3, 'JUSTINO DA SILVA DJAMIR', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-04-08', 304200.00, 'A'), +(2853, 3, 'DIPASQUUALE GAETANO', 191821112, 'CRA 25 CALLE 100', + '574@terra.com.co', '2011-02-03', 172888, '2011-07-11', 630830.00, 'A'), +(2855, 3, 'CURI MAURO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 199862, '2011-06-19', 315160.00, 'A'), +(2856, 3, 'DI DIO MARCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-08-20', 851210.00, 'A'), +(2857, 3, 'ROBERTI MENDONCA CAIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-11', 310580.00, 'A'), +(2859, 3, 'RAMOS MORENO DE SOUZA ANDRE ', 191821112, 'CRA 25 CALLE 100', + '133@facebook.com', '2011-02-03', 118777, '2011-09-24', 64540.00, 'A'), +(286, 8, 'INEXMODA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 128662, '2011-06-21', 50150.00, 'A'), +(2860, 3, 'JODJAHN DE CARVALHO FLAVIA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118942, '2011-06-27', 324950.00, 'A'), +(2862, 3, 'LAGASIO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 231989, '2011-07-04', 180760.00, 'A'), +(2863, 3, 'MOON SUNG RIUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-04-08', 610440.00, 'A'), +(2865, 3, 'VAIDYANATHAN VIKRAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-05-11', 718220.00, 'A'), +(2866, 3, 'NARAYANASWAMY RAMSUNDAR', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 73079, '2011-10-02', 61390.00, 'A'), +(2867, 3, 'VADADA VENKATA RAMESH KUMAR', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-10', 152300.00, 'A'), +(2868, 3, 'RAMA KRISHNAN ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-09-10', 577300.00, 'A'), +(2869, 3, 'JALAN PRASHANT', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 122035, '2011-05-02', 429600.00, 'A'), +(2871, 3, 'CHANDRASEKAR VENKAT', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 112862, '2011-06-27', 791800.00, 'A'), +(2872, 3, 'CUMBAKONAM SWAMINATHAN SUBRAMANIAN', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-11', 710650.00, 'A'), +(288, 8, 'BCD TRAVEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-07-23', 645390.00, 'A'), +(289, 3, 'EMBAJADA ARGENTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '1970-02-02', 749440.00, 'A'), +('CELL3789', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(290, 3, 'EMBAJADA DE BRASIL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 128662, '2010-11-16', 811030.00, 'A'), +(293, 8, 'ONU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', + 127591, '2010-09-19', 584810.00, 'A'), +(299, 1, 'BLANDON GUZMAN JHON JAIRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-01-13', 201740.00, 'A'), +(304, 3, 'COHEN DANIEL DYLAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 286785, '2010-11-17', 184850.00, 'A'), +(306, 1, 'CINDU ANDINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2009-06-11', 899230.00, 'A'), +(31, 1, 'GARRIDO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127662, '2010-09-12', 801450.00, 'A'), +(310, 3, 'CORPORACION CLUB EL NOGAL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2010-08-27', 918760.00, 'A'), +(314, 3, 'CHAWLA AARON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-04-08', 295840.00, 'A'), +(317, 3, 'BAKER HUGHES', 191821112, 'CRA 25 CALLE 100', '694@hotmail.com', + '2011-02-03', 127591, '2011-04-03', 211990.00, 'A'), +(32, 1, 'PAEZ SEGURA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '675@gmail.com', '2011-02-03', 129447, '2011-08-22', 717340.00, 'A'), +(320, 1, 'MORENO PAEZ FREDDY ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-31', 971670.00, 'A'), +(322, 1, 'CALDERON CARDOZO GASTON EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-10-05', 990640.00, 'A'), +(324, 1, 'ARCHILA MERA ALFREDOMANUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-22', 77200.00, 'A'), +(326, 1, 'MUNOZ AVILA HERNEY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2010-11-10', 550920.00, 'A'), +(327, 1, 'CHAPARRO CUBILLOS FABIAN ANDRES', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-15', 685080.00, 'A'), +(329, 1, 'GOMEZ LOPEZ JUAN SEBASTIAN', 191821112, 'CRA 25 CALLE 100', + '970@yahoo.com', '2011-02-03', 127591, '2011-03-20', 808070.00, 'A'), +(33, 1, 'MARTINEZ MARINO HENRY HERNAN', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-04-20', 182370.00, 'A'), +(330, 3, 'MAPSTONE NAOMI LEA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 122035, '2010-02-21', 722380.00, 'A'), +(332, 3, 'ROSSI BURRI NELLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 132165, '2010-05-10', 771210.00, 'A'), +(333, 1, 'AVELLANEDA OVIEDO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-25', 293060.00, 'A'), +(334, 1, 'SUZA FLOREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-05-13', 151650.00, 'A'), +(335, 1, 'ESGUERRA ALVARO ANDRES', 191821112, 'CRA 25 CALLE 100', + '11@facebook.com', '2011-02-03', 127591, '2011-09-10', 879080.00, 'A'), +(337, 3, 'DE LA HARPE MARTIN CARAPET WALTER', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-27', 64960.00, 'A'), +(339, 1, 'HERNANDEZ ACOSTA SERGIO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 129499, '2011-06-22', 322570.00, 'A'), +(340, 3, 'ZARAMA DE LA ESPRIELLA MIGUEL PATRICIO', 191821112, + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-27', + 102360.00, 'A'), +(342, 1, 'CABRERA VASQUEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-01', 413440.00, 'A'), +(343, 3, 'RICHARDSON BEN MARRIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 286785, '2010-05-18', 434890.00, 'A'), +(344, 1, 'OLARTE PINZON MIGUEL FELIPE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-30', 934140.00, 'A'), +(345, 1, 'SOLER SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 128662, '2011-04-20', 366020.00, 'A'), +(346, 1, 'PRIETO JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2010-07-12', 27690.00, 'A'), +(349, 1, 'BARRERO VELASCO DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-05-01', 472850.00, 'A'), +(35, 1, 'VELASQUEZ RAMOS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-13', 251940.00, 'A'), +(350, 1, 'RANGEL GARCIA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-03-20', 7880.00, 'A'), +(353, 1, 'ALVAREZ ACEVEDO JOHN FREDDY', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-16', 540070.00, 'A'), +(354, 1, 'VILLAMARIN HOME WILMAR ALFREDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-09-19', 458810.00, 'A'), +(355, 3, 'SLUCHIN NAAMAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 263813, '2010-12-01', 673830.00, 'A'), +(357, 1, 'BULLA BERNAL LUIS ERNESTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-06-14', 942160.00, 'A'), +(358, 1, 'BRACCIA AVILA GIANCARLO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-01', 732620.00, 'A'), +(359, 1, 'RODRIGUEZ PINTO RAUL DAVID', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-24', 836600.00, 'A'), +(36, 1, 'MALDONADO ALVAREZ JAIRO ASDRUBAL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127300, '2011-06-19', 980270.00, 'A'), +(362, 1, 'POMBO POLANCO JUAN BERNARDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-18', 124130.00, 'A'), +(363, 1, 'CARDENAS SUAREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-01', 372920.00, 'A'), +(364, 1, 'RIVERA MAZO JOSE DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 128662, '2010-06-10', 492220.00, 'A'), +(365, 1, 'LEDERMAN CORDIKI JONATHAN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-12-03', 342340.00, 'A'), +(367, 1, 'BARRERA MARTINEZ LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', + '35@yahoo.com.mx', '2011-02-03', 127591, '2011-05-24', 148130.00, 'A'), +(368, 1, 'SEPULVEDA RAMIREZ DANIEL MARCELO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-31', 35560.00, 'A'), +(369, 1, 'QUINTERO DIAZ WILSON ASDRUBAL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', 733430.00, 'A'), +(37, 1, 'RESTREPO SUAREZ HENRY BERNARDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127300, '2011-07-25', 145540.00, 'A'), +(370, 1, 'ROJAS YARA WILLMAR ARLEY', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-12-03', 560450.00, 'A'), +(371, 3, 'CARVER LOUISE EMILY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 286785, '2010-10-07', 601980.00, 'A'), +(372, 3, 'VINCENT DAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 286785, '2011-03-06', 328540.00, 'A'), +(374, 1, 'GONZALEZ DELGADO MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-08-18', 198260.00, 'A'), +(375, 1, 'PAEZ SIMON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-06-25', 480970.00, 'A'), +(376, 1, 'CADOSCH DELMAR ELIE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-10-07', 810080.00, 'A'), +(377, 1, 'HERRERA VASQUEZ DANIEL EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-06-30', 607460.00, 'A'), +(378, 1, 'CORREAL ROJAS RONALD', 191821112, 'CRA 25 CALLE 100', + '269@facebook.com', '2011-02-03', 127591, '2011-07-16', 607080.00, 'A'), +(379, 1, 'VOIDONNIKOLAS MUNOS PANAGIOTIS', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-27', 213010.00, 'A'), +(38, 1, 'CANAL ROJAS MAURICIO HERNANDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-05-29', 786900.00, 'A'), +(380, 1, 'DIAZ ECHEVERRI JUAN DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-20', 243800.00, 'A'), +(381, 1, 'CIFUENTES MARIN HERNANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-05-26', 579960.00, 'A'), +(382, 3, 'PAXTON LUCINDA HARRIET', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 107159, '2011-05-23', 168420.00, 'A'), +(384, 3, 'POYNTON BRIAN GEORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 286785, '2011-03-20', 5790.00, 'A'), +(385, 3, 'TERMIGNONI ADRIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-01-14', 722320.00, 'A'), +(386, 3, 'CARDWELL PAULA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-02-17', 594230.00, 'A'), +(389, 1, 'FONCECA MARTINEZ MIGUEL ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-25', 778680.00, 'A'), +(39, 1, 'GARCIA SUAREZ WILLIAM ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-25', 497880.00, 'A'), +(390, 1, 'GUERRERO NELSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2010-12-03', 178650.00, 'A'), +(391, 1, 'VICTORIA PENA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-06-22', 557200.00, 'A'), +(392, 1, 'VAN HISSENHOVEN FERRERO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-13', 250060.00, 'A'), +(393, 1, 'CACERES ORDUZ JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-06-28', 578690.00, 'A'), +(394, 1, 'QUINTERO ALVARO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-08-17', 143270.00, 'A'), +(395, 1, 'ANZOLA PEREZ CARLOSDAVID', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-04', 980300.00, 'A'), +(397, 1, 'LLOREDA ORTIZ CARLOS JOSE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-27', 417470.00, 'A'), +(398, 1, 'GONZALES LONDONO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-06-19', 672310.00, 'A'), +(4, 1, 'LONDONO DOMINGUEZ ERNESTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-09-05', 324610.00, 'A'), +(40, 1, 'MORENO ANGULO ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-06-01', 128690.00, 'A'), +(400, 8, 'TRANSELCA .A', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 133535, '2011-04-14', 528930.00, 'A'), +(403, 1, 'VERGARA MURILLO JUAN FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-03-04', 42900.00, 'A'), +(405, 1, 'CAPERA CAPERA HARRINSON', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127799, '2011-06-12', 961000.00, 'A'), +(407, 1, 'MORENO MORA WILLIAM EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-22', 872780.00, 'A'), +(408, 1, 'HIGUERA ROA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-03-28', 910430.00, 'A'), +(409, 1, 'FORERO CASTILLO OSCAR ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '988@terra.com.co', '2011-02-03', 127591, '2011-07-23', 933810.00, 'A'), +(410, 1, 'LOPEZ MURCIA JULIAN DANIEL', 191821112, 'CRA 25 CALLE 100', + '399@facebook.com', '2011-02-03', 127591, '2011-08-08', 937790.00, 'A'), +(411, 1, 'ALZATE JOHN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 128662, '2011-09-09', 887490.00, 'A'), +(412, 1, 'GONZALES GONZALES ORLANDO ANDREY', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-30', 624080.00, 'A'), +(413, 1, 'ESCOLANO VALENTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-08-05', 457930.00, 'A'), +(414, 1, 'JARAMILLO RODRIGUEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-12', 417420.00, 'A'), +(415, 1, 'GARCIA MUNOZ DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-10-02', 713300.00, 'A'), +(416, 1, 'PINEROS ARENAS JUAN DAVID', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-10-17', 314260.00, 'A'), +(417, 1, 'ORTIZ ARROYAVE ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2011-05-21', 431370.00, 'A'), +(418, 1, 'BAYONA BARRIENTOS JEAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-12', 214090.00, 'A'), +(419, 1, 'AGUDELO VASQUEZ JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-08-30', 776360.00, 'A'), +(420, 1, 'CALLE DANIEL CJ PRODUCCIONES', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-11-04', 239500.00, 'A'), +(422, 1, 'CANO BETANCUR ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 128662, '2011-08-20', 623620.00, 'A'), +(423, 1, 'CALDAS BARRETO LUZ MIREYA', 191821112, 'CRA 25 CALLE 100', + '991@facebook.com', '2011-02-03', 127591, '2011-05-22', 512840.00, 'A'), +(424, 1, 'SIMBAQUEBA JOSE ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-07-25', 693320.00, 'A'), +(425, 1, 'DE SILVESTRE CALERO LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-18', 928110.00, 'A'), +(426, 1, 'ZORRO PERALTA YEZID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-07-25', 560560.00, 'A'), +(428, 1, 'SUAREZ OIDOR DARWIN LEONARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 131272, '2011-09-05', 410650.00, 'A'), +(429, 1, 'GIRAL CARRILLO LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-13', 997850.00, 'A'), +(43, 1, 'MARULANDA VALENCIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-09-17', 365550.00, 'A'), +(430, 1, 'CORDOBA GARCES JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-18', 757320.00, 'A'), +(431, 1, 'ARIAS TAMAYO DIEGO MAURICIO', 191821112, 'CRA 25 CALLE 100', + '36@yahoo.com', '2011-02-03', 127591, '2011-09-05', 793050.00, 'A'), +(432, 1, 'EICHMANN PERRET MARC WILLY', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-22', 693270.00, 'A'), +(433, 1, 'DIAZ DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2008-09-18', 87200.00, 'A'), +(435, 1, 'FACCINI GONZALEZ HERMANN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2009-01-08', 519420.00, 'A'), +(436, 1, 'URIBE DUQUE FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-06-28', 528470.00, 'A'), +(437, 1, 'TAVERA GAONA GABREL LEAL', 191821112, 'CRA 25 CALLE 100', + '280@terra.com.co', '2011-02-03', 127591, '2011-04-28', 84120.00, 'A'), +(438, 1, 'ORDONEZ PARIS FERNANDO MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 150699, '2011-09-26', 835170.00, 'A'), +(439, 1, 'VILLEGAS ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-03-19', 923520.00, 'A'), +(44, 1, 'MARTINEZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 128662, '2011-08-13', 738750.00, 'A'), +(440, 1, 'MARTINEZ RUEDA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '805@hotmail.es', '2011-02-03', 127591, '2011-04-07', 112050.00, 'A'), +(441, 1, 'ROLDAN JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2010-05-25', 789720.00, 'A'), +(442, 1, 'PEREZ BRANDWAYN ELIYAU MOISES', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-10-20', 612450.00, 'A'), +(443, 1, 'VALLEJO TORO JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128579, '2011-08-16', 693080.00, 'A'), +(444, 1, 'TORRES CABRERA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-03-19', 628070.00, 'A'), +(445, 1, 'MERINO MEJIA GERMAN ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-28', 61100.00, 'A'), +(447, 1, 'GOMEZ GOMEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-09-08', 923070.00, 'A'), +(448, 1, 'RAUSCH CHEHEBAR STEVEN JOSEPH', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 133535, '2011-09-27', 351540.00, 'A'), +(449, 1, 'RESTREPO TRUCCO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-28', 988500.00, 'A'), +(45, 1, 'GUTIERREZ JARAMILLO CARLOS MARIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-22', 597090.00, 'A'), +(450, 1, 'GOLDSTEIN VAIDA ELI JACK', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-11', 887860.00, 'A'), +(451, 1, 'OLEA PINEDA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-08-10', 473800.00, 'A'), +(452, 1, 'JORGE OROZCO', 191821112, 'CRA 25 CALLE 100', '503@hotmail.es', + '2011-02-03', 127591, '2011-06-02', 705410.00, 'A'), +(454, 1, 'DE LA TORRE GOMEZ GERMAN ERNESTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-03-03', 411990.00, 'A'), +(456, 1, 'MADERO ARIAS JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '452@hotmail.es', '2011-02-03', 127591, '2011-08-22', 479090.00, 'A'), +(457, 1, 'GOMEZ MACHUCA ALVARO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-08-12', 166430.00, 'A'), +(458, 1, 'MENDIETA TOBON DANIEL RICARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-08', 394880.00, 'A'), +(459, 1, 'VILLADIEGO CORTINA JAVIER TOMAS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-26', 475110.00, 'A'), +(46, 1, 'FERRUCHO ARCINIEGAS JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', 769220.00, 'A'), +(460, 1, 'DERESER HARTUNG ERNESTO JOSE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-12-25', 190900.00, 'A'), +(461, 1, 'RAMIREZ PENA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-06-25', 529190.00, 'A'), +(463, 1, 'IREGUI REYES LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-10-07', 778590.00, 'A'), +(464, 1, 'PINTO GOMEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 132775, '2010-06-24', 673270.00, 'A'), +(465, 1, 'RAMIREZ RAMIREZ FERNANDO ALONSO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127799, '2011-10-01', 30570.00, 'A'), +(466, 1, 'BERRIDO TRUJILLO JORGE HENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132775, '2011-10-06', 133040.00, 'A'), +(467, 1, 'RIVERA CARVAJAL RAFAEL HUMBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-20', 573500.00, 'A'), +(468, 3, 'FLOREZ PUENTES IVAN ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-05-08', 468380.00, 'A'), +(469, 1, 'BALLESTEROS FLOREZ IVAN DARIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-06-02', 621410.00, 'A'), +(47, 1, 'MARIN FLOREZ OMAR EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-30', 54840.00, 'A'), +(470, 1, 'RODRIGO PENA HERRERA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 237734, '2011-10-04', 701890.00, 'A'), +(471, 1, 'RODRIGUEZ SILVA ROGELIO', 191821112, 'CRA 25 CALLE 100', + '163@gmail.com', '2011-02-03', 127591, '2011-05-26', 645210.00, 'A'), +(473, 1, 'VASQUEZ VELANDIA JUAN GABRIEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196234, '2011-05-04', 666330.00, 'A'), +(474, 1, 'ROBLEDO JAIME', 191821112, 'CRA 25 CALLE 100', '409@yahoo.com', + '2011-02-03', 127591, '2011-05-31', 970480.00, 'A'), +(475, 1, 'GRIMBERG DIAZ PHILIP', 191821112, 'CRA 25 CALLE 100', '723@yahoo.com', + '2011-02-03', 127591, '2011-03-30', 853430.00, 'A'), +(476, 1, 'CHAUSTRE GARCIA JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-26', 355670.00, 'A'), +(477, 1, 'GOMEZ FLOREZ IGNASIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2010-09-14', 218090.00, 'A'), +(478, 1, 'LUIS ALBERTO CABRERA PUENTES', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 133535, '2011-05-26', 23420.00, 'A'), +(479, 1, 'MARTINEZ ZAPATA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '234@gmail.com', '2011-02-03', 127122, '2011-07-01', 462840.00, 'A'), +(48, 1, 'PARRA IBANEZ FABIAN ERNESTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-02-01', 966520.00, 'A'), +(480, 3, 'WESTERBERG JAN RICKARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 300701, '2011-02-01', 243940.00, 'A'), +(484, 1, 'RODRIGUEZ VILLALOBOS EDGAR FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-19', 860320.00, 'A'), +(486, 1, 'NAVARRO REYES DIEGO FELIPE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-01', 530150.00, 'A'), +(487, 1, 'NOGUERA RICAURTE ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-01-21', 384100.00, 'A'), +(488, 1, 'RUIZ VEJARANO CARLOS DANIEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-27', 330030.00, 'A'), +(489, 1, 'CORREA PEREZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2010-12-14', 497860.00, 'A'), +(49, 1, 'FLOREZ PEREZ RUBIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-05-23', 668090.00, 'A'), +(490, 1, 'REYES GOMEZ LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-26', 499210.00, 'A'), +(491, 3, 'BERNAL LEON ALBERTO JOSE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 150699, '2011-03-29', 2470.00, 'A'), +(492, 1, 'FELIPE JARAMILLO CARO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2009-10-31', 514700.00, 'A'), +(493, 1, 'GOMEZ PARRA GERMAN DARIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-01-29', 566100.00, 'A'), +(494, 1, 'VALLEJO RAMIREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-13', 286390.00, 'A'), +(495, 1, 'DIAZ LONDONO HUGO MARIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 733670.00, 'A'), +(496, 3, 'VAN BAKERGEM RONALD JAN', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2008-11-05', 809190.00, 'A'), +(497, 1, 'MENDEZ RAMIREZ JOSE LEONARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-10', 844920.00, 'A'), +(498, 3, 'QUI TANILLA HENRIQUEZ PAUL ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-10', 797030.00, 'A'), +(499, 3, 'PELEATO FLOREAL', 191821112, 'CRA 25 CALLE 100', '531@hotmail.com', + '2011-02-03', 188640, '2011-04-23', 450370.00, 'A'), +(50, 1, 'SILVA GUZMAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-03-24', 440890.00, 'A'), +(502, 3, 'LEO ULF GORAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 300701, '2010-07-26', 181840.00, 'A'), +(503, 3, 'KARLSSON DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 300701, '2011-07-22', 50680.00, 'A'), +(504, 1, 'JIMENEZ JANER ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '889@hotmail.es', '2011-02-03', 203272, '2011-08-29', 707880.00, 'A'), +(506, 1, 'PABON OCHOA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-14', 813050.00, 'A'), +(507, 1, 'ACHURY CADENA CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-26', 903240.00, 'A'), +(508, 1, 'ECHEVERRY GARZON SEBASTIN', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-23', 77050.00, 'A'), +(509, 1, 'PINEROS PENA LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-29', 675550.00, 'A'), +(51, 1, 'CAICEDO URREA JAIME ORLANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127300, '2011-08-17', 200160.00, 'A'), +('CELL3795', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(510, 1, 'MARTINEZ MARTINEZ LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', + '586@facebook.com', '2011-02-03', 127591, '2010-08-28', 146600.00, 'A'), +(511, 1, 'MOLANO PENA JESUS ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-02-05', 706320.00, 'A'), +(512, 3, 'RUDOLPHY FONTAINE ANDRES', 191821112, 'CRA 25 CALLE 100', + '492@yahoo.com', '2011-02-03', 117002, '2011-04-12', 91820.00, 'A'), +(513, 1, 'NEIRA CHAVARRO JOHN JAIRO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-12', 340120.00, 'A'), +(514, 3, 'MENDEZ VILLALOBOS ARMANDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 145135, '2011-03-25', 425160.00, 'A'), +(515, 3, 'HERNANDEZ OLIVA JOSE DE LA CRUZ', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 145135, '2011-03-25', 105440.00, 'A'), +(518, 3, 'JANCO NICOLAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-06-15', 955830.00, 'A'), +(52, 1, 'TAPIA MUNOZ JAIRO RICARDO', 191821112, 'CRA 25 CALLE 100', + '920@hotmail.es', '2011-02-03', 127591, '2011-10-05', 678130.00, 'A'), +(520, 1, 'ALVARADO JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-05-26', 895550.00, 'A'), +(521, 1, 'HUERFANO SOTO JONATHAN', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-30', 619910.00, 'A'), +(522, 1, 'HUERFANO SOTO JONATHAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-06-04', 412900.00, 'A'), +(523, 1, 'RODRIGEZ GOMEZ WILMAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-05-14', 204790.00, 'A'), +(525, 1, 'ARROYO BAPTISTE DIEGO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-09', 311810.00, 'A'), +(526, 1, 'PULECIO BOEK DANIEL', 191821112, 'CRA 25 CALLE 100', '718@gmail.com', + '2011-02-03', 127591, '2011-08-12', 203350.00, 'A'), +(527, 1, 'ESLAVA VELEZ SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2010-10-08', 81300.00, 'A'), +(528, 1, 'CASTRO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-05-06', 796470.00, 'A'), +(53, 1, 'HINCAPIE MARTINEZ RICARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127573, '2011-09-26', 790180.00, 'A'), +(530, 1, 'ZORRILLA PUJANA NICOLAS', 191821112, 'CRA 25 CALLE 100', + '312@yahoo.es', '2011-02-03', 127591, '2011-06-06', 302750.00, 'A'), +(531, 1, 'ZORRILLA PUJANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-06-06', 298440.00, 'A'), +(532, 1, 'PRETEL ARTEAGA MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-05-09', 583980.00, 'A'), +(533, 1, 'RAMOS VERGARA HUMBERTO CARLOS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 131105, '2010-05-13', 24560.00, 'A'), +(534, 1, 'BONILLA PINEROS DIEGO FELIPE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', 370880.00, 'A'), +(535, 1, 'BELTRAN TRIVINO JULIAN DAVID', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-11-06', 780710.00, 'A'), +(536, 3, 'BLOD ULF FREDERICK EDWARD', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-04-06', 790900.00, 'A'), +(537, 1, 'VANEGAS OROZCO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-11-10', 612400.00, 'A'), +(538, 3, 'ORUE VALLE MONICA CECILIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 97885, '2011-09-15', 689270.00, 'A'), +(539, 1, 'AGUDELO BEDOYA ANDRES JOSE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2011-05-24', 609160.00, 'A'), +(54, 1, 'DE HOYOS TRESPALACIOS MAURICIO ALEJANDRO', 191821112, + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-21', + 916500.00, 'A'), +(540, 3, 'HEIJKENSKJOLD PER JESPER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-06', 977980.00, 'A'), +(541, 3, 'GONZALEZ ALVARADO LUIS RAUL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 117002, '2011-08-27', 62430.00, 'A'), +(543, 1, 'GRUPO SURAMERICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 128662, '2011-08-24', 703760.00, 'A'), +(545, 1, 'CORPORACION CONTEXTO ', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-08', 809570.00, 'A'), +(546, 3, 'LUNDIN JOHAN ERIK ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-07-29', 895330.00, 'A'), +(548, 3, 'VEGERANO JOSE ', 191821112, 'CRA 25 CALLE 100', '221@facebook.com', + '2011-02-03', 190393, '2011-06-05', 553780.00, 'A'), +(549, 3, 'SERRANO MADRID CLAUDIA INES', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-07-27', 625060.00, 'A'), +(55, 1, 'TAFUR GOMEZ ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127300, '2010-09-12', 211980.00, 'A'), +(550, 1, 'MARTINEZ ACEVEDO MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-10-06', 463920.00, 'A'), +(551, 1, 'GONZALEZ MORENO PABLO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-07-21', 444450.00, 'A'), +(552, 1, 'MEJIA ROJAS ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-08-02', 830470.00, 'A'), +(553, 3, 'RODRIGUEZ ANTHONY HANSEL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-16', 819000.00, 'A'), +(554, 1, 'ABUCHAIBE ANNICCHRICO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-31', 603610.00, 'A'), +(555, 3, 'MOYES KIMBERLY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-04-08', 561020.00, 'A'), +(556, 3, 'MONTINI MARIO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 118942, '2010-03-16', 994280.00, 'A'), +(557, 3, 'HOGBERG DANIEL TOBIAS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-15', 288350.00, 'A'), +(559, 1, 'OROZCO PFEIZER MARTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2010-10-07', 429520.00, 'A'), +(56, 1, 'NARINO ROJAS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-09-27', 310390.00, 'A'), +(560, 1, 'GARCIA MONTOYA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-06-02', 770840.00, 'A'), +(562, 1, 'VELASQUEZ PALACIO MANUEL ORLANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-06-23', 515670.00, 'A'), +(563, 1, 'GALLEGO PEREZ DIEGO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-14', 881460.00, 'A'), +(564, 1, 'RUEDA URREGO JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-05-04', 860270.00, 'A'), +(565, 1, 'RESTREPO DEL TORO MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-05-10', 656960.00, 'A'), +(567, 1, 'TORO VALENCIA FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2010-08-04', 549090.00, 'A'), +(568, 1, 'VILLEGAS LUIS ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-05-02', 633490.00, 'A'), +(569, 3, 'RIDSTROM CHRISTER ANDERS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 300701, '2011-09-06', 520150.00, 'A'), +(57, 1, 'TOVAR ARANGO JOHN JAIME', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127662, '2010-07-03', 916010.00, 'A'), +(570, 3, 'SHEPHERD DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2008-05-11', 700280.00, 'A'), +(573, 3, 'BENGTSSON JOHAN ANDREAS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 196830.00, 'A'), +(574, 3, 'PERSSON HANS JONAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-06-09', 172340.00, 'A'), +(575, 3, 'SYNNEBY BJORN ERIK', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-06-15', 271210.00, 'A'), +('CELL381', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(577, 3, 'COHEN PAUL KIRTAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-05-25', 381490.00, 'A'), +(578, 3, 'ROMERO BRAVO FERNANDO EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', 390360.00, 'A'), +(579, 3, 'GUTHRIE ROBERT DEAN', 191821112, 'CRA 25 CALLE 100', '794@gmail.com', + '2011-02-03', 161705, '2010-07-20', 807350.00, 'A'), +(58, 1, 'TORRES ESCOBAR JAIRO ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-06-17', 648860.00, 'A'), +(580, 3, 'ROCASERMENO MONTENEGRO MARIO JOSE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 139844, '2010-12-01', 865650.00, 'A'), +(581, 1, 'COCK JORGE EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 128662, '2011-08-19', 906210.00, 'A'), +(582, 3, 'REISS ANDREAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2009-01-31', 934120.00, 'A'), +(584, 3, 'ECHEVERRIA CASTILLO GERMAN FRANCISCO', 191821112, 'CRA 25 CALLE 100', + '982@yahoo.com', '2011-02-03', 139844, '2011-07-20', 957370.00, 'A'), +(585, 3, 'BRANDT CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-10', 931030.00, 'A'), +(586, 3, 'VEGA NUNEZ GILBERTO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-14', 783010.00, 'A'), +(587, 1, 'BEJAR MUNOZ JORDI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 196234, '2010-10-08', 121990.00, 'A'), +(588, 3, 'WADSO KERSTIN ELIZABETH', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-17', 260890.00, 'A'), +(59, 1, 'RAMOS FORERO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-06-20', 496300.00, 'A'), +(590, 1, 'RODRIGUEZ BETANCOURT JAVIER AUGUSTO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127538, '2011-05-23', 909850.00, 'A'), +(592, 1, 'ARBOLEDA HALABY RODRIGO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 150699, '2009-02-03', 939170.00, 'A'), +(593, 1, 'CURE CURE CARLOS ALFREDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 150699, '2011-07-11', 494600.00, 'A'), +(594, 3, 'VIDELA PEREZ OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 117002, '2011-07-13', 655510.00, 'A'), +(595, 1, 'GONZALEZ GAVIRIA NESTOR', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2009-09-28', 793760.00, 'A'), +(596, 3, 'IZQUIERDO DELGADO DIONISIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2009-09-24', 2250.00, 'A'), +(597, 1, 'MORENO DAIRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127300, '2011-06-14', 629990.00, 'A'), +(598, 1, 'RESTREPO FERNNDEZ SOTO JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-08-31', 143210.00, 'A'), +(599, 3, 'YERYES VERGARA MARIA SOLEDAD', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-10-11', 826060.00, 'A'), +(6, 1, 'GUZMAN ESCOBAR JOSE VICENTE', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-10', 26390.00, 'A'), +(60, 1, 'ELEJALDE ESCOBAR TOMAS ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-11-09', 534910.00, 'A'), +(601, 1, 'ESCAF ESCAF WILLIAM MIGUEL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 150699, '2011-07-26', 25190.00, 'A'), +(602, 1, 'CEBALLOS ZULUAGA JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-05-03', 23920.00, 'A'), +(603, 1, 'OLIVELLA GUERRERO RAFAEL ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 134022, '2010-06-23', 44040.00, 'A'), +(604, 1, 'ESCOBAR GALLO CARLOS HUGO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-09', 148420.00, 'A'), +(605, 1, 'ESCORCIA RAMIREZ EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128569, '2011-04-01', 609990.00, 'A'), +(606, 1, 'MELGAREJO MORENO PAULA ANDREA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-05', 604700.00, 'A'), +(607, 1, 'TOBON CALLE CARLOS GUILLERMO', 191821112, 'CRA 25 CALLE 100', + '689@hotmail.es', '2011-02-03', 128662, '2011-03-16', 193510.00, 'A'), +(608, 3, 'TREVINO NOPHAL SILVANO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 110709, '2011-05-27', 153470.00, 'A'), +(609, 1, 'CARDER VELEZ EDWIN JOHN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-04', 186830.00, 'A'), +(61, 1, 'GASCA DAZA VICTOR HERNANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-09-09', 185660.00, 'A'), +(610, 3, 'DAVIS JOHN BRADLEY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-04-06', 473740.00, 'A'), +(611, 1, 'BAQUERO SLDARRIAGA ALVARO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-09-15', 808210.00, 'A'), +(612, 3, 'SERRACIN ARAUZ YANIRA YAMILET', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 131272, '2011-06-09', 619820.00, 'A'), +(613, 1, 'MORA SOTO ALVARO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 128662, '2011-09-20', 674450.00, 'A'), +(614, 1, 'SUAREZ RODRIGUEZ HERNANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-03-29', 512820.00, 'A'), +(616, 1, 'BAQUERO GARCIA JORGE LUIS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2010-07-14', 165160.00, 'A'), +(617, 3, 'ABADI MADURO MOISES SIMON', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 131272, '2009-03-31', 203640.00, 'A'), +(62, 3, 'FLOWER LYNDON BRUCE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 231373, '2011-05-16', 323560.00, 'A'), +(624, 8, 'OLARTE LEONARDO', 191821112, 'CRA 25 CALLE 100', '6@hotmail.com', + '2011-02-03', 127591, '2011-06-03', 219790.00, 'A'), +(63, 1, 'RUBIO CORTES OSCAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2011-04-28', 60830.00, 'A'), +(630, 5, 'PROEXPORT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 128662, '2010-08-12', 708320.00, 'A'), +(632, 8, 'SUPER COFFEE ', 191821112, 'CRA 25 CALLE 100', '792@hotmail.es', + '2011-02-03', 127591, '2011-08-30', 306460.00, 'A'), +(636, 8, 'NOGAL ASESORIAS FINANCIERAS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-04-07', 752150.00, 'A'), +(64, 1, 'GUERRA MARTINEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-09-24', 333480.00, 'A'), +(645, 8, 'GIZ - PROFIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-08-31', 566330.00, 'A'), +(652, 3, 'QBE DEL ISTMO COMPANIA DE REASEGUROS ', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-14', 932190.00, 'A'), +(655, 3, 'CORP. CENTRO DE ESTUDIOS DE DERECHO JUSTICIA Y SOCIEDAD', 191821112, + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-05-04', + 440370.00, 'A'), +(659, 3, 'GOOD YEAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 128662, '2010-09-24', 993830.00, 'A'), +(660, 3, 'ARCINIEGAS Y VILLAMIZAR', 191821112, 'CRA 25 CALLE 100', + '258@yahoo.com', '2011-02-03', 127591, '2010-12-02', 787450.00, 'A'), +(67, 1, 'LOPEZ HOYOS JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127662, '2010-04-13', 665230.00, 'A'), +(670, 8, 'APPLUS NORCONTROL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 133535, '2011-09-06', 83210.00, 'A'), +(672, 3, 'KERLL SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 287273, '2010-12-19', 501610.00, 'A'), +(673, 1, 'RESTREPO MOLINA RAMIRO ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 144215, '2010-12-18', 457290.00, 'A'), +(674, 1, 'PEREZ GIL JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2011-08-18', 781610.00, 'A'), +('CELL3840', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(676, 1, 'GARCIA LONDONO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-23', 336160.00, 'A'), +(677, 3, 'RIJLAARSDAM KARIN AN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-07-03', 72210.00, 'A'), +(679, 1, 'LIZCANO MONTEALEGRE ARNULFO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127203, '2011-02-01', 546170.00, 'A'), +(68, 1, 'MARTINEZ SILVA EDGAR', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-08-29', 54250.00, 'A'), +(680, 3, 'OLIVARI MAYER PATRICIA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 122642, '2011-08-01', 673170.00, 'A'), +(682, 3, 'CHEVALIER FRANCK PIERRE CHARLES', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 263813, '2010-12-01', 617280.00, 'A'), +(683, 3, 'NG WAI WING ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 126909, '2011-06-14', 904310.00, 'A'), +(684, 3, 'MULLER DOMINGUEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-22', 669700.00, 'A'), +(685, 3, 'MOSQUEDA DOMNGUEZ ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-04-08', 635580.00, 'A'), +(686, 3, 'LARREGUI MARIN LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-04-08', 168800.00, 'A'), +(687, 3, 'VARGAS VERGARA ALEJANDRO BRAULIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 159245, '2011-09-14', 937260.00, 'A'), +(688, 3, 'SKINNER LYNN CHERYL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-06-12', 179890.00, 'A'), +(689, 1, 'URIBE CORREA LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 128662, '2010-07-29', 87680.00, 'A'), +(690, 1, 'TAMAYO JARAMILLO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2010-11-10', 898730.00, 'A'), +(691, 3, 'MOTABAN DE BORGES PAULA ELENA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 132958, '2010-09-24', 230610.00, 'A'), +(692, 5, 'FERNANDEZ NALDA JOSE MANUEL ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 117002, '2011-06-28', 456850.00, 'A'), +(693, 1, 'GOMEZ RESTREPO JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-06-28', 592420.00, 'A'), +(694, 1, 'CARDENAS TAMAYO JOSE JAIME', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-08-08', 591550.00, 'A'), +(696, 1, 'RESTREPO ARANGO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-03-31', 127820.00, 'A'), +(697, 1, 'ROCABADO PASTRANA ROBERT JAVIER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127443, '2011-08-13', 97600.00, 'A'), +(698, 3, 'JARVINEN JOONAS JORI KRISTIAN', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 196234, '2011-05-29', 104560.00, 'A'), +(699, 1, 'MORENO PEREZ HERNAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 128662, '2011-08-30', 230000.00, 'A'), +(7, 1, 'PUYANA RAMOS GUILLERMO ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-08-27', 331830.00, 'A'), +(70, 1, 'GALINDO MANZANO JAVIER FRANCISCO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-31', 214890.00, 'A'), +(701, 1, 'ROMERO PEREZ ARCESIO JOSE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 132775, '2011-07-13', 491650.00, 'A'), +(703, 1, 'CHAPARRO AGUDELO LEONARDO VIRGILIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-05-04', 271320.00, 'A'), +(704, 5, 'VASQUEZ YANIS MARIA DEL PILAR', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-10-13', 508820.00, 'A'), +(705, 3, 'BARBERO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 116511, '2010-09-13', 730170.00, 'A'), +(706, 1, 'CARMONA HERNANDEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-11-08', 124380.00, 'A'), +(707, 1, 'PEREZ SUAREZ JORGE ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132775, '2011-09-14', 431370.00, 'A'), +(708, 1, 'ROJAS JORGE MARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 130135, '2011-04-01', 783740.00, 'A'), +(71, 1, 'DIAZ JUAN PABLO/JULES JAVIER', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-10-01', 247860.00, 'A'), +(711, 3, 'CATALDO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 116773, '2011-06-06', 984810.00, 'A'), +(716, 5, 'MACIAS PIZARRO PATRICIO ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 117002, '2011-06-07', 376260.00, 'A'), +(717, 1, 'RENDON MAYA DAVID ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 130273, '2010-07-25', 332310.00, 'A'), +(718, 3, 'DE HILDEBRAND E GRISI FILHO CELSO CLAUDIO', 191821112, + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-11', + 532740.00, 'A'), +(719, 3, 'ALLIEL FACUSSE JULIO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 117002, '2011-06-20', 666800.00, 'A'), +(72, 1, 'LOPEZ ROJAS VICTOR DANIEL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-11', 594640.00, 'A'), +(720, 3, 'CHEMELLO JIMENEZ GAETANO ALBERTO FRANCISCO', 191821112, + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2010-06-23', + 735760.00, 'A'), +(721, 3, 'GARCIA BEZANILLA RODOLFO EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-04-12', 678420.00, 'A'), +(722, 1, 'ARIAS EDWIN', 191821112, 'CRA 25 CALLE 100', '13@terra.com.co', + '2011-02-03', 127492, '2008-04-24', 184800.00, 'A'), +(723, 3, 'SOHN JANG WON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2010-06-07', 888750.00, 'A'), +(724, 3, 'WILHELM GIOVINE JAIME ROBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 115263, '2011-09-20', 889340.00, 'A'), +(726, 3, 'CASTILLERO DANIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 131272, '2011-05-13', 234270.00, 'A'), +(727, 3, 'PORTUGAL LANGHORST MAX GUILLERMO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-03-13', 829960.00, 'A'), +(729, 3, 'ALFONSO HERRANZ AGUSTIN ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-07-21', 745060.00, 'A'), +(73, 1, 'DAVILA MENDEZ OSCAR DIEGO', 191821112, 'CRA 25 CALLE 100', + '991@yahoo.com.mx', '2011-02-03', 128569, '2011-08-31', 229630.00, 'A'), +(730, 3, 'ALFONSO HERRANZ AGUSTIN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2010-03-31', 384360.00, 'A'), +(731, 1, 'NOGUERA RAMIREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-07-14', 686610.00, 'A'), +(732, 1, 'ACOSTA PERALTA FABIAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 134030, '2011-06-21', 279960.00, 'A'), +(733, 3, 'MAC LEAN PINA PEDRO SEGUNDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 117002, '2011-05-23', 339980.00, 'A'), +(734, 1, 'LEON ARCOS ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 133535, '2011-05-04', 860020.00, 'A'), +(736, 3, 'LAMARCA GARCIA GERMAN JULIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-04-29', 820700.00, 'A'), +(737, 1, 'PORTO VELASQUEZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', + '321@hotmail.es', '2011-02-03', 133535, '2011-08-17', 263060.00, 'A'), +(738, 1, 'BUENAVENTURA MEDINA ERICK WILSON', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 133535, '2011-09-18', 853180.00, 'A'), +(739, 1, 'LEVY ARRAZOLA RALPH MARC', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 133535, '2011-09-27', 476720.00, 'A'), +(74, 1, 'RAMIREZ SORA EDISON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-10-03', 364220.00, 'A'), +(740, 3, 'MOON HYUNSIK ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 173192, '2011-05-15', 824080.00, 'A'), +(741, 3, 'LHUILLIER TRONCOSO GASTON MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 117002, '2011-09-07', 690230.00, 'A'), +(742, 3, 'UNDURRAGA PELLEGRINI GONZALO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 117002, '2010-11-21', 978900.00, 'A'), +(743, 1, 'SOLANO TRIBIN NICOLAS SIMON', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 134022, '2011-03-16', 823800.00, 'A'), +(744, 1, 'NOGUERA BENAVIDES JACOBO ALONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-06', 182300.00, 'A'), +(745, 1, 'GARCIA LEON MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 133535, '2008-04-16', 440110.00, 'A'), +(746, 1, 'EMILIANI ROJAS ALEXANDER ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2011-09-12', 653640.00, 'A'), +(748, 1, 'CARRENO POULSEN HELGEN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', 778370.00, 'A'), +(749, 1, 'ALVARADO FANDINO ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2008-11-05', 48280.00, 'A'), +(750, 1, 'DIAZ GRANADOS JUAN PABLO.', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-01-12', 906290.00, 'A'), +(751, 1, 'OVALLE BETANCOURT ALBERTO JOSE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 134022, '2011-08-14', 386620.00, 'A'), +(752, 3, 'GUTIERREZ VERGARA JOSE MIGUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-05-08', 214250.00, 'A'), +(753, 3, 'CHAPARRO GUAIMARAL LIZ', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 147467, '2011-03-16', 911350.00, 'A'), +(754, 3, 'CORTES DE SOLMINIHAC PABLO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 117002, '2011-01-20', 914020.00, 'A'), +(755, 3, 'CHETAIL VINCENT', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 239124, '2010-08-23', 836050.00, 'A'), +(756, 3, 'PERUGORRIA RODRIGUEZ JORGE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2010-10-17', 438210.00, 'A'), +(757, 3, 'GOLLMANN ROBERTO JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 167269, '2011-03-28', 682870.00, 'A'), +(758, 3, 'VARELA SEPULVEDA MARIA PILAR', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2010-07-26', 99730.00, 'A'), +(759, 3, 'MEYER WELIKSON MICHELE JANIK', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-05-10', 450030.00, 'A'), +(76, 1, 'VANEGAS RODRIGUEZ OSCAR IVAN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', 568310.00, 'A'), +(77, 3, 'GATICA SOTOMAYOR MAURICIO VICENTE', 191821112, 'CRA 25 CALLE 100', + '409@terra.com.co', '2011-02-03', 117002, '2010-05-13', 444970.00, 'A'), +(79, 1, 'PENA VALENZUELA DANIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-07-19', 264790.00, 'A'), +(8, 1, 'NAVARRO PALENCIA HUGO RAFAEL', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 126968, '2011-05-05', 579980.00, 'A'), +(80, 1, 'BARRIOS CUADRADO DAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-07-29', 764140.00, 'A'), +(802, 3, 'RECK GARRONE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118942, '2009-02-06', 767700.00, 'A'), +(81, 1, 'PARRA QUIROGA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 26330.00, 'A'), +(811, 8, 'FEDERACION NACIONAL DE AVICULTORES ', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-04-18', 926010.00, 'A'), +(812, 1, 'ORJUELA VELEZ JAIME ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 257160.00, 'A'), +(813, 1, 'PENA CHACON GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-08-27', 507770.00, 'A'), +(814, 1, 'RONDEROS MOJICA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127443, '2011-05-04', 767370.00, 'A'), +(815, 1, 'RICO NINO MARIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127443, '2011-05-18', 313540.00, 'A'), +(817, 3, 'AVILA CHYTIL MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118471, '2011-07-14', 387300.00, 'A'), +(818, 3, 'JABLONSKI DUARTE SILVEIRA ESTER', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118942, '2010-12-21', 139740.00, 'A'), +(819, 3, 'BUHLER MOSLER XIMENA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 117002, '2011-06-20', 536830.00, 'A'), +(82, 1, 'CARRILLO GAMBOA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-06-01', 839240.00, 'A'), +(820, 3, 'FALQUETO DALMIRO ANGELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-06-21', 264910.00, 'A'), +(821, 1, 'RUGER GUSTAVO RODRIGUEZ TAMAYO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 133535, '2010-04-12', 714080.00, 'A'), +(822, 3, 'JULIO RODRIGUEZ FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 117002, '2011-08-16', 775650.00, 'A'), +(823, 3, 'CIBANIK RODOLFO MOISES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 132554, '2011-09-19', 736020.00, 'A'), +(824, 3, 'JIMENEZ FRANCO EMMANUEL ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-17', 353150.00, 'A'), +(825, 3, 'GNECCO TREMEDAD', 191821112, 'CRA 25 CALLE 100', '818@hotmail.com', + '2011-02-03', 171072, '2011-03-19', 557700.00, 'A'), +(826, 3, 'VILAR MENDOZA JOSE RAFAEL', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-06-29', 729050.00, 'A'), +(827, 3, 'GONZALEZ MOLINA CRISTIAN MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-06-20', 972160.00, 'A'), +(828, 1, 'GONTOVNIK HOBRECKT CARLOS DANIEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2011-08-02', 673620.00, 'A'), +(829, 3, 'DIBARRAT URZUA SEBASTIAN RAIMUNDO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-28', 451650.00, 'A'), +(830, 3, 'STOCCHERO HATSCHBACH GUILHERME', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118777, '2010-11-22', 237370.00, 'A'), +(831, 1, 'NAVAS PASSOS NARCISO EVELIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2011-04-21', 831900.00, 'A'), +(832, 3, 'LUNA SOBENES FAVIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2010-10-11', 447400.00, 'A'), +(833, 3, 'NUNEZ NOGUEIRA ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-19', 741290.00, 'A'), +(834, 1, 'CASTRO BELTRAN ARIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 128188, '2011-05-15', 364270.00, 'A'), +(835, 1, 'TURBAY YAMIN MAURICIO JOSE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-03-17', 597490.00, 'A'), +(836, 1, 'GOMEZ BARRAZA RODNEY LORENZO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 894610.00, 'A'), +(837, 1, 'CUELLO LASCANO ROBERTO', 191821112, 'CRA 25 CALLE 100', + '221@hotmail.es', '2011-02-03', 133535, '2011-07-11', 680610.00, 'A'), +(838, 1, 'PATERNINA PEINADO JOSE VICENTE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 133535, '2011-08-23', 719190.00, 'A'), +(839, 1, 'YEPES RUBIANO ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 133535, '2011-05-16', 554130.00, 'A'), +(84, 1, 'ALVIS RAMIREZ ALFREDO', 191821112, 'CRA 25 CALLE 100', '292@yahoo.com', + '2011-02-03', 127662, '2011-09-16', 68190.00, 'A'), +(840, 1, 'ROCA LLANOS GUILLERMO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2011-08-22', 613060.00, 'A'), +(841, 1, 'RENDON TORRALVO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 133535, '2011-05-26', 402950.00, 'A'), +(842, 1, 'BLANCO STAND GERMAN ELIECER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2011-07-17', 175530.00, 'A'), +(843, 3, 'BERNAL MAYRA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 131272, '2010-08-31', 668820.00, 'A'), +(844, 1, 'NAVARRO RUIZ LAZARO GREGORIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 126916, '2008-09-23', 817520.00, 'A'), +(846, 3, 'TUOMINEN OLLI PETTERI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2010-09-01', 953150.00, 'A'), +(847, 1, 'ESPARRAGOZA DE LA ESPRIELLA ENRIQUE ALBERTO ', 191821112, + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-08-09', + 522340.00, 'A'), +(848, 3, 'ARAYA ARIAS JUAN VICENTE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 132165, '2011-08-09', 752210.00, 'A'), +(85, 1, 'GARCIA JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-03-01', 989420.00, 'A'), +(850, 1, 'PARDO GOMEZ GERMAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132775, '2010-11-25', 713690.00, 'A'), +(851, 1, 'ATIQUE JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 133535, '2008-03-03', 986250.00, 'A'), +(852, 1, 'HERNANDEZ MEYER EDGARDO DE JESUS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2011-07-20', 790190.00, 'A'), +(853, 1, 'ZULUAGA DE LEON IVAN JESUS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-07-03', 992210.00, 'A'), +(854, 1, 'VILLARREAL ANGULO ENRIQUE ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2011-10-02', 590450.00, 'A'), +(855, 1, 'CELIA MARTINEZ APARICIO GIAN PIERO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 133535, '2011-06-15', 975620.00, 'A'), +(857, 3, 'LIPARI RONALDO LUIS', 191821112, 'CRA 25 CALLE 100', + '84@facebook.com', '2011-02-03', 118941, '2010-10-13', 606990.00, 'A'), +(858, 1, 'RAVACHI DAVILA ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 133535, '2011-05-04', 714620.00, 'A'), +(859, 3, 'PINHEIRO OLIVEIRA LUCIANO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 752130.00, 'A'), +(86, 1, 'GOMEZ LIS CARLOS EMILIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2009-12-22', 742520.00, 'A'), +(860, 1, 'PUGLIESE MERCADO LUIGGI ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-08-19', 616780.00, 'A'), +(862, 1, 'JANNA TELLO DANIEL JALIL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 133535, '2010-08-07', 287220.00, 'A'), +(863, 3, 'MATTAR CARLOS HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2009-04-26', 953570.00, 'A'), +(864, 1, 'MOLINA OLIER OSVALDO ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132775, '2011-04-18', 906200.00, 'A'), +(865, 1, 'BLANCO MCLIN DAVID ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-08-18', 670290.00, 'A'), +(866, 1, 'NARANJO ROMERO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 133535, '2010-08-25', 632860.00, 'A'), +(867, 1, 'SIMANCAS TRUJILLO RICARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 133535, '2011-04-07', 153400.00, 'A'), +(868, 1, 'ARENAS USME GERMAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 126881, '2011-10-01', 868430.00, 'A'), +(869, 5, 'DIAZ CORDERO RODRIGO FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-11-04', 881950.00, 'A'), +(87, 1, 'CELIS PEREZ HERNANDO ALONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-10-05', 744330.00, 'A'), +(870, 3, 'BINDER ZBEDA JONATAHAN JANAN', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 131083, '2010-04-11', 804460.00, 'A'), +(871, 1, 'HINCAPIE HELLMAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2010-09-15', 376440.00, 'A'), +(872, 3, 'MONTEIRO LANAMAR ALFONSO DE BUSTAMANTE', 191821112, + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118942, '2009-03-23', + 468820.00, 'A'), +(873, 3, 'AGUDO CARMINATTI REGINA CELIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2011-01-04', 214770.00, 'A'), +(874, 1, 'GONZALEZ VILLALOBOS CRISTIAN MANUEL', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 133535, '2011-09-26', 667400.00, 'A'), +(875, 3, 'GUELL VILLANUEVA ALVARO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2008-04-07', 692670.00, 'A'), +(876, 3, 'GRES ANAIS ROBERTO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-12-01', 461180.00, 'A'), +(877, 3, 'GAME MOCOCAIN JUAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-07', 227890.00, 'A'), +(878, 1, 'FERRER UCROS FERNANDO LEON', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 133535, '2011-06-22', 755900.00, 'A'), +(879, 3, 'HERRERA JAUREGUI CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', + '599@facebook.com', '2011-02-03', 131272, '2010-07-22', 95840.00, 'A'), +(880, 3, 'BACALLAO HERNANDEZ ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 126180, '2010-04-21', 211480.00, 'A'), +(881, 1, 'GIJON URBINA JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 144879, '2011-04-03', 769910.00, 'A'), +(882, 3, 'TRUSEN CHRISTOPH WOLFGANG', 191821112, 'CRA 25 CALLE 100', + '338@yahoo.com.mx', '2011-02-03', 127591, '2010-10-24', 215100.00, 'A'), +(883, 3, 'ASHOURI ASKANDAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 157861, '2009-03-03', 765760.00, 'A'), +(885, 1, 'ALTAMAR WATTS JAIRO ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 133535, '2011-08-20', 620170.00, 'A'), +(887, 3, 'QUINTANA BALTIERRA ROBERTO ALEX', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 117002, '2011-06-21', 891370.00, 'A'), +(889, 1, 'CARILLO PATINO VICTOR HILARIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 130226, '2011-09-06', 354570.00, 'A'), +(89, 1, 'CONTRERAS PULIDO LINA MARIA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-06', 237480.00, 'A'), +(890, 1, 'GELVES CANAS GENARO ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-04-02', 355640.00, 'A'), +(891, 3, 'CAGNONI DE MELO PAULA CRISTINA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2010-12-14', 714490.00, 'A'), +(892, 3, 'MENA AMESTICA PATRICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 117002, '2011-03-22', 505510.00, 'A'), +(893, 1, 'CAICEDO ROMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-04-07', 384110.00, 'A'), +(894, 1, 'ECHEVERRY TRUJILLO ARMANDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-06-08', 404010.00, 'A'), +(895, 1, 'CAJIA PEDRAZA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-09-02', 867700.00, 'A'), +(896, 2, 'PALACIOS OLIVA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-24', 126500.00, 'A'), +(897, 1, 'GUTIERREZ QUINTERO FABIAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2009-10-24', 29380.00, 'A'), +(899, 3, 'COBO GUEVARA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-12-09', 748860.00, 'A'), +(9, 1, 'OSORIO RODRIGUEZ FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2010-09-27', 904420.00, 'A'), +(90, 1, 'LEYTON GONZALEZ FREDY RAFAEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-03-24', 705130.00, 'A'), +(901, 1, 'HERNANDEZ JOSE ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 130266, '2011-05-23', 964010.00, 'A'), +(903, 3, 'GONZALEZ MALDONADO MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 117002, '2010-11-13', 576500.00, 'A'), +(904, 1, 'OCHOA BARRIGA JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 130266, '2011-05-05', 401380.00, 'A'), +('CELL3886', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(905, 1, 'OSORIO REDONDO JESUS DAVID', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127300, '2011-08-11', 277390.00, 'A'), +(906, 1, 'BAYONA BARRIENTOS JEAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-01-25', 182820.00, 'A'), +(907, 1, 'MARTINEZ GOMEZ CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132775, '2010-03-11', 81940.00, 'A'), +(908, 1, 'PUELLO LOPEZ GUILLERMO LEON', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 133535, '2011-08-12', 861240.00, 'A'), +(909, 1, 'MOGOLLON LONDONO PEDRO LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132775, '2011-06-22', 60380.00, 'A'), +(91, 1, 'ORTIZ RIOS JAVIER ADOLFO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-05-12', 813200.00, 'A'), +(911, 1, 'HERRERA HOYOS CARLOS FRANCISCO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132775, '2010-09-12', 409800.00, 'A'), +(912, 3, 'RIM MYUNG HWAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-05-15', 894450.00, 'A'), +(913, 3, 'BIANCO DORIEN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-09-29', 242820.00, 'A'), +(914, 3, 'FROIMZON WIEN DANIEL', 191821112, 'CRA 25 CALLE 100', '348@yahoo.com', + '2011-02-03', 132165, '2010-11-06', 530780.00, 'A'), +(915, 3, 'ALVEZ AZEVEDO JOAO MIGUEL', 191821112, 'CRA 25 CALLE 100', + '861@hotmail.es', '2011-02-03', 127591, '2009-06-25', 925420.00, 'A'), +(916, 3, 'CARRASCO DIAZ LUIS ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-10-02', 34780.00, 'A'), +(917, 3, 'VIVALLOS MEDINA LEONEL EDMUNDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2010-09-12', 397640.00, 'A'), +(919, 3, 'LASSE ANDRE BARKLIEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 286724, '2011-03-31', 226390.00, 'A'), +(92, 1, 'CUERVO CARDENAS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-08', 950630.00, 'A'), +(920, 3, 'BARCELOS PLOTEGHER LILIA MARA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-07', 480380.00, 'A'), +(921, 1, 'JARAMILLO ARANGO JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127559, '2011-06-28', 722700.00, 'A'), +(93, 3, 'RUIZ PRIETO WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 131272, '2011-01-19', 313540.00, 'A'), +(932, 7, 'COMFENALCO ANTIOQUIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 128662, '2011-05-05', 515430.00, 'A'), +(94, 1, 'GALLEGO JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-06-25', 715830.00, 'A'), +(944, 3, 'KARMELIC PAVLOV VESNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 120066, '2010-08-07', 585580.00, 'A'), +(945, 3, 'RAMIREZ BORDON OSCAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2010-07-02', 526250.00, 'A'), +(946, 3, 'SORACCO CABEZA RODRIGO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-07-04', 874490.00, 'A'), +(949, 1, 'GALINDO JORGE ERNESTO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127300, '2008-07-10', 344110.00, 'A'), +(950, 3, 'DR KNABLE THOMAS ERNST ALBERT', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 256231, '2009-11-17', 685430.00, 'A'), +(953, 3, 'VELASQUEZ JANETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-07-20', 404650.00, 'A'), +(954, 3, 'SOZA REX JOSE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 150903, '2011-05-26', 269790.00, 'A'), +(955, 3, 'FONTANA GAETE JAIME PATRICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 117002, '2011-01-11', 134970.00, 'A'), +(957, 3, 'PEREZ MARTINEZ GRECIA INDIRA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132958, '2010-08-27', 922610.00, 'A'), +(96, 1, 'FORERO CUBILLOS JORGEARTURO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-25', 45020.00, 'A'), +(97, 1, 'SILVA ACOSTA MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-09-19', 309580.00, 'A'), +(978, 3, 'BLUMENTHAL JAIRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 117630, '2010-04-22', 653490.00, 'A'), +(984, 3, 'SUN XIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-01-17', 203630.00, 'A'), +(99, 1, 'CANO GUZMAN ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-23', 135620.00, 'A'), +(999, 1, 'DRAGER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', + 127591, '2010-12-22', 882070.00, 'A'), +('CELL1020', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1083', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1153', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL126', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1326', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1329', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL133', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1413', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1426', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1529', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1651', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1760', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1857', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1879', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1902', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1921', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1962', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1992', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2006', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL215', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2307', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2322', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2497', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2641', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2736', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2805', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL281', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2905', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2963', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3029', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3090', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3161', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3302', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3309', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3325', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3372', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3422', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3514', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3562', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3652', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3661', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4334', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4440', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4547', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4639', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4662', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4698', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL475', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4790', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4838', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4885', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4939', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5064', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5066', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL51', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5102', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5116', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5192', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5226', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5250', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5282', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL536', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5503', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5506', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL554', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5544', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5595', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5648', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5801', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5821', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6201', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6277', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6288', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6358', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6369', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6408', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6425', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6439', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6509', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6533', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6556', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6731', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6766', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6775', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6802', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6834', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6890', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6953', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6957', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7024', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7216', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL728', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7314', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7431', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7432', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7513', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7522', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7617', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7623', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7708', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7777', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL787', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7907', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7951', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7956', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8004', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8058', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL811', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8136', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8162', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8286', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8300', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8339', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8366', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8389', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8446', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8487', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8546', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8578', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8643', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8774', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8829', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8846', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8942', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9046', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9110', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL917', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9189', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9241', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9331', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9429', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9434', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9495', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9517', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9558', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9650', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9748', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9830', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9878', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9893', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9945', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('T-Cx200', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx201', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx202', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx203', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx204', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx205', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx206', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx207', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx208', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx209', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx210', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx211', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx212', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx213', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx214', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('CELL4021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5255', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5730', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2540', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7376', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5471', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2588', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL570', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2854', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6683', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1382', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2051', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7086', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9220', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9701', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'); + +-- +-- Data for Name: personnes; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +INSERT INTO personnes (cedula, tipo_documento_id, nombres, telefono, direccion, + email, fecha_nacimiento, ciudad_id, creado_at, cupo, + estado) +VALUES +(1, 3, 'HUANG ZHENGQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-05-18', 6930.00, 'I'), +(100, 1, 'USME FERNANDEZ JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-04-15', 439480.00, 'A'), +(1003, 8, 'SINMON PEREZ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-08-25', 468610.00, 'A'), +(1009, 8, 'ARCINIEGAS Y VILLAMIZAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-08-12', 967680.00, 'A'), +(101, 1, 'CRANE DE NARVAEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-06-09', 790540.00, 'A'), +(1011, 8, 'EL EVENTO', 191821112, 'CRA 25 CALLE 100', '596@terra.com.co', + '2011-02-03', 127591, '2011-05-24', 820390.00, 'A'), +(1020, 7, 'OSPINA YOLANDA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-05-02', 222970.00, 'A'), +(1025, 7, 'CHEMIPLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-08', 918670.00, 'A'), +(1034, 1, 'TAXI FILMS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2010-09-01', 962580.00, 'A'), +(104, 1, 'CASTELLANOS JIMENEZ NOE', 191821112, 'CRA 25 CALLE 100', + '127@yahoo.es', '2011-02-03', 127591, '2011-10-05', 95230.00, 'A'), +(1046, 3, 'JACQUET PIERRE MICHEL ALAIN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 263489, '2011-07-23', 90810.00, 'A'), +(1048, 5, 'SPOERER VELEZ CARLOS JORGE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-02-03', 184920.00, 'A'), +(1049, 3, 'SIDNEI DA SILVA LUIZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 117630, '2011-07-02', 850180.00, 'A'), +(105, 1, 'HERRERA SEQUERA ALVARO FRANCISCO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-04-26', 77390.00, 'A'), +(1050, 3, 'CAVALCANTI YUE CARLA HANLI', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-31', 696130.00, 'A'), +(1052, 1, 'BARRETO RIVAS ELKIN MARTIN', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 131508, '2011-09-19', 562160.00, 'A'), +(1053, 3, 'WANDERLEY ANTONIO ERNESTO THOME', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 150617, '2011-01-31', 20490.00, 'A'), +(1054, 3, 'HE SHAN', 191821112, 'CRA 25 CALLE 100', '715@yahoo.es', + '2011-02-03', 132958, '2010-10-05', 415970.00, 'A'), +(1055, 3, 'ZHRNG XIM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2010-10-05', 18380.00, 'A'), +(1057, 3, 'NICKEL GEB. STUTZ KARIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-10-08', 164850.00, 'A'), +(1058, 1, 'VELEZ PAREJA IGNACIO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132775, '2011-06-24', 292250.00, 'A'), +(1059, 3, 'GURKE RALF ERNST', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 287570, '2011-06-15', 966700.00, 'A'), +(106, 1, 'ESTRADA LONDONO JUAN SIMON', 191821112, 'CRA 25 CALLE 100', + '8@terra.com.co', '2011-02-03', 128579, '2011-03-09', 101260.00, 'A'), +(1060, 1, 'MEDRANO BARRIOS WILSON', 191821112, 'CRA 25 CALLE 100', + '479@facebook.com', '2011-02-03', 132775, '2011-06-18', 956740.00, 'A'), +(1061, 1, 'GERDTS PORTO HANS EDUARDO', 191821112, 'CRA 25 CALLE 100', + '140@gmail.com', '2011-02-03', 127591, '2011-05-09', 883590.00, 'A'), +(1062, 1, 'BORGE VISBAL JORGE FIDEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 132775, '2011-07-14', 547750.00, 'A'), +(1063, 3, 'GUTIERREZ JOSELYN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-06-06', 87960.00, 'A'), +(1064, 4, 'OVIEDO PINZON MARYI YULEY', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127538, '2011-04-21', 796560.00, 'A'), +(1065, 1, 'VILORA SILVA OMAR ESTEBAN', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 133535, '2010-06-09', 718910.00, 'A'), +(1066, 3, 'AGUIAR ROMAN RODRIGO HUMBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 126674, '2011-06-28', 204890.00, 'A'), +(1067, 1, 'GOMEZ AGAMEZ ADOLFO DEL CRISTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 131105, '2011-06-15', 867730.00, 'A'), +(1068, 3, 'GARRIDO CECILIA', 191821112, 'CRA 25 CALLE 100', '973@yahoo.com.mx', + '2011-02-03', 118777, '2010-08-16', 723980.00, 'A'), +(1069, 1, 'JIMENEZ MANJARRES DAVID RAFAEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132775, '2010-12-17', 16680.00, 'A'), +(107, 1, 'ARANGUREN TEJADA JORGE ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-16', 274110.00, 'A'), +(1070, 3, 'OYARZUN TEJEDA ANDRES FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-05-26', 911490.00, 'A'), +(1071, 3, 'MARIN BUCK RAFAEL ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 126180, '2011-05-04', 507400.00, 'A'), +(1072, 3, 'VARGAS JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 126674, '2011-07-28', 802540.00, 'A'), +(1073, 3, 'JUEZ JAIRALA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 126180, '2010-04-09', 490510.00, 'A'), +(1074, 1, 'APONTE PENSO HERNAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 132879, '2011-05-27', 44900.00, 'A'), +(1075, 1, 'PINERES BUSTILLO ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 126916, '2008-10-29', 752980.00, 'A'), +(1076, 1, 'OTERA OMA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 128662, '2011-04-29', 630210.00, 'A'), +(1077, 3, 'CONTRERAS CHINCHILLA JUAN DOMINGO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 139844, '2011-06-21', 892110.00, 'A'), +(1078, 1, 'GAMBA LAURENCIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2010-09-15', 569940.00, 'A'), +(108, 1, 'MUNOZ ARANGO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-01', 66770.00, 'A'), +(1080, 1, 'PRADA ABAUZA CARLOS AUGUSTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-11-15', 156870.00, 'A'), +(1081, 1, 'PAOLA CAROLINA PINTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-08-27', 264350.00, 'A'), +(1082, 1, 'PALOMINO HERNANDEZ GERMAN JAVIER', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 133535, '2011-03-22', 851120.00, 'A'), +(1084, 1, 'URIBE DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', + '602@hotmail.es', '2011-02-03', 127591, '2011-09-07', 759470.00, 'A'), +(1085, 1, 'ARGUELLO CALDERON ARMANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-24', 409660.00, 'A'), +(1087, 1, 'CARVAJAL HERNANDEZ CHRISTIAN ARMANDO', 191821112, 'CRA 25 CALLE 100', + '296@yahoo.es', '2011-02-03', 159432, '2011-06-03', 620410.00, 'A'), +(1088, 1, 'CASTRO BLANCO MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 150512, '2009-10-08', 792400.00, 'A'), +(1089, 1, 'RIBEROS GUTIERREZ GUSTAVO ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-01-27', 100800.00, 'A'), +(109, 1, 'BELTRAN MARIA LUZ DARY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-09-06', 511510.00, 'A'), +(1091, 4, 'ORTIZ ORTIZ BENIGNO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127538, '2011-08-05', 331540.00, 'A'), +(1092, 3, 'JOHN CHRISTOPHER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-04-08', 277320.00, 'A'), +(1093, 1, 'PARRA VILLAREAL MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 129499, '2011-08-23', 391980.00, 'A'), +(1094, 1, 'BESGA RODRIGUEZ JUAN JAVIER', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127300, '2011-09-23', 127960.00, 'A'), +(1095, 1, 'ZAPATA MEZA EDGAR FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 129499, '2011-05-19', 463840.00, 'A'), +(1096, 3, 'CORNEJO BRAVO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 117002, '2010-11-08', 935340.00, 'A'), +('CELL3944', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1099, 1, 'GARCIA PORRAS FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-14', 243360.00, 'A'), +(11, 1, 'HERNANDEZ PARDO ARMANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-31', 197540.00, 'A'), +(110, 1, 'VANEGAS JULIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-09-06', 357260.00, 'A'), +(1101, 1, 'QUINTERO BURBANO GABRIEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 129499, '2011-08-20', 57420.00, 'A'), +(1102, 1, 'BOHORQUEZ AFANADOR CHRISTIAN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 214610.00, 'A'), +(1103, 1, 'MORA VARGAS JULIO ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-29', 900790.00, 'A'), +(1104, 1, 'PINEDA JORGE ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-06-21', 860110.00, 'A'), +(1105, 1, 'TORO CEBALLOS GONZALO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 129499, '2011-08-18', 598180.00, 'A'), +(1106, 1, 'SCHENIDER TORRES JAIME', 191821112, 'CRA 25 CALLE 100', + '85@yahoo.com.mx', '2011-02-03', 127799, '2011-08-11', 410590.00, 'A'), +(1107, 1, 'RUEDA VILLAMIZAR JAIME', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2010-11-15', 258410.00, 'A'), +(1108, 1, 'RUEDA VILLAMIZAR RICARDO JAIME', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 129499, '2011-03-22', 60260.00, 'A'), +(1109, 1, 'GOMEZ RODRIGUEZ HERNANDO ARTURO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-06-02', 526080.00, 'A'), +(111, 1, 'FRANCISCO EDUARDO JAIME BOTERO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-09-09', 251770.00, 'A'), +(1110, 1, 'HERNANDEZ MENDEZ EDGAR', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 129499, '2011-03-22', 449610.00, 'A'), +(1113, 1, 'LEON HERNANDEZ OSCAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 129499, '2011-03-21', 992090.00, 'A'), +(1114, 1, 'LIZARAZO CARRENO HUGO ARCENIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 133535, '2010-12-10', 959490.00, 'A'), +(1115, 1, 'LIAN BARRERA GABRIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2010-05-30', 821170.00, 'A'), +(1117, 3, 'TELLEZ BEZAN FRANCISCO JAVIER ', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 117002, '2011-08-21', 673430.00, 'A'), +(1118, 1, 'FUENTES ARIZA DIEGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-06-09', 684970.00, 'A'), +(1119, 1, 'MOLINA M. ROBINSON', 191821112, 'CRA 25 CALLE 100', + '728@hotmail.com', '2011-02-03', 129447, '2010-09-19', 404580.00, 'A'), +(112, 1, 'PATINO PINTO ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-10-06', 187050.00, 'A'), +(1120, 1, 'ORTIZ DURAN BENIGNO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127538, '2011-08-05', 967970.00, 'A'), +(1121, 1, 'CARVAJAL ALMEIDA LUIS RAUL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 129499, '2011-06-22', 626140.00, 'A'), +(1122, 1, 'TORRES QUIROGA EDWIN SILVESTRE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 129447, '2011-08-17', 226780.00, 'A'), +(1123, 1, 'VIVIESCAS JAIMES ALVARO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-10', 255480.00, 'A'), +(1124, 1, 'MARTINEZ RUEDA JAVIER EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 129447, '2011-06-23', 597040.00, 'A'), +(1125, 1, 'ANAYA FLORES JORGE ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 129499, '2011-06-04', 218790.00, 'A'), +(1126, 3, 'TORRES MARTINEZ ANTONIO JESUS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 188640, '2010-09-02', 302820.00, 'A'), +(1127, 3, 'CACHO LEVISIER JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 153276, '2009-06-25', 857720.00, 'A'), +(1129, 3, 'ULLOA VALDIVIESO CRISTIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 117002, '2011-06-02', 327570.00, 'A'), +(113, 1, 'HIGUERA CALA JAIME ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-07-27', 179950.00, 'A'), +(1130, 1, 'ARCINIEGAS WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 126892, '2011-08-05', 497420.00, 'A'), +(1131, 1, 'BAZA ACUNA JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 129447, '2010-12-10', 504410.00, 'A'), +(1132, 3, 'BUIRA ROS CARLOS MARIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2010-04-27', 29750.00, 'A'), +(1133, 1, 'RODRIGUEZ JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 129447, '2011-06-10', 635560.00, 'A'), +(1134, 1, 'QUIROGA PEREZ NELSON', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 129447, '2011-05-18', 88520.00, 'A'), +(1135, 1, 'TATIANA AYALA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127122, '2011-07-01', 535920.00, 'A'), +(1136, 1, 'OSORIO BENEDETTI FABIAN AUGUSTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132775, '2010-10-23', 414060.00, 'A'), +(1139, 1, 'CELIS PINTO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2009-02-25', 964970.00, 'A'), +(114, 1, 'VALDERRAMA CUERVO JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-02', 338590.00, 'A'), +(1140, 1, 'ORTIZ ARENAS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 129499, '2009-10-21', 613300.00, 'A'), +(1141, 1, 'VALDIVIESO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 134022, '2009-01-13', 171590.00, 'A'), +(1144, 1, 'LOPEZ CASTILLO NELSON', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 129499, '2010-09-09', 823110.00, 'A'), +(1145, 1, 'CAVELIER LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 126916, '2008-11-29', 389220.00, 'A'), +(1146, 1, 'CAVELIER OTOYA LUIS EDURDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 126916, '2010-05-25', 476770.00, 'A'), +(1147, 1, 'GARCIA RUEDA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '111@yahoo.es', '2011-02-03', 133535, '2010-09-12', 216190.00, 'A'), +(1148, 1, 'LADINO GOMEZ OMAR ORLANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-02', 650640.00, 'A'), +(1149, 1, 'CARRENO ORTIZ OSCAR JAVIER', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-03-15', 604630.00, 'A'), +(115, 1, 'NARDEI BONILLO BRUNO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-04-16', 153110.00, 'A'), +(1150, 1, 'MONTOYA BOZZI MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 129499, '2011-05-12', 71240.00, 'A'), +(1152, 1, 'LORA RICHARD JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2010-09-15', 497700.00, 'A'), +(1153, 1, 'SILVA PINZON MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '915@hotmail.es', '2011-02-03', 127591, '2011-06-15', 861670.00, 'A'), +(1154, 3, 'GEORGE J A KHALILIEH', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-20', 815260.00, 'A'), +(1155, 3, 'CHACON MARIN CARLOS MANUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-07-26', 491280.00, 'A'), +(1156, 3, 'OCHOA CHEHAB XAVIER ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 126180, '2011-06-13', 10630.00, 'A'), +(1157, 3, 'ARAYA GARRI GABRIEL ALEXIS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 117002, '2011-09-19', 579320.00, 'A'), +(1158, 3, 'MACCHI ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 116366, '2010-04-12', 864690.00, 'A'), +(116, 1, 'GONZALEZ FANDINO JAIME EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-10', 749800.00, 'A'), +(1160, 1, 'CAVALIER LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 126916, '2009-08-27', 333390.00, 'A'), +('CELL396', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1161, 3, 'DOMINGUEZ DE OBREGON ILEANA DEL CARMEN', 191821112, + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 139844, '2011-03-06', + 910490.00, 'A'), +(1162, 2, 'FALASCA CLAUDIO ARIEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 116511, '2011-07-10', 552280.00, 'A'), +(1163, 3, 'MUTABARUKA PATRICK', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 131352, '2011-03-22', 29940.00, 'A'), +(1164, 1, 'DOMINGUEZ ATENCIA JIMMY CARLOS', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-07-22', 492860.00, 'A'), +(1165, 4, 'LLANO GONZALEZ ALBERTO MARIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127300, '2010-08-21', 374490.00, 'A'), +(1166, 3, 'LOPEZ ROLDAN JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188640, '2011-07-31', 393860.00, 'A'), +(1167, 1, 'GUTIERREZ DE PINERES JALILIE ARISTIDES', 191821112, + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2010-12-09', 845810.00, + 'A'), +(1168, 1, 'HEYMANS PIERRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 128662, '2010-11-08', 47470.00, 'A'), +(1169, 1, 'BOTERO OSORIO RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2009-05-27', 699940.00, 'A'), +(1170, 3, 'GARNHAM POBLETE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 116396, '2011-03-27', 357270.00, 'A'), +(1172, 1, 'DAJUD DURAN JOSE RODRIGO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 133535, '2009-12-02', 360910.00, 'A'), +(1173, 1, 'MARTINEZ MERCADO PEDRO PABLO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-07-25', 744930.00, 'A'), +(1174, 1, 'GARCIA AMADOR ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 133535, '2011-05-19', 641930.00, 'A'), +(1176, 1, 'VARGAS VARELA LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 131568, '2011-08-30', 948410.00, 'A'), +(1178, 1, 'GUTIERRES DE PINERES ARISTIDES', 191821112, 'CRA 25 CALLE 100', + '217@hotmail.com', '2011-02-03', 133535, '2011-05-10', 242490.00, 'A'), +(1179, 3, 'LEIZAOLA POZO JIMENA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 132958, '2011-08-01', 759800.00, 'A'), +(118, 1, 'FERNANDEZ VELOSO PEDRO HERNANDO', 191821112, 'CRA 25 CALLE 100', + '452@hotmail.es', '2011-02-03', 128662, '2010-08-06', 198830.00, 'A'), +(1180, 3, 'MARINO PAOLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2010-12-24', 71520.00, 'A'), +(1181, 1, 'MOLINA VIZCAINO GUSTAVO JORGE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-28', 78220.00, 'A'), +(1182, 3, 'MEDEL GARCIA FABIAN RODRIGO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 117002, '2011-04-25', 176540.00, 'A'), +(1183, 1, 'LESMES ARIAS RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2010-09-09', 648020.00, 'A'), +(1184, 1, 'ALCALA MARTINEZ ALFREDO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 132775, '2010-07-23', 710470.00, 'A'), +(1186, 1, 'LLAMAS FOLIACO LUIS ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-07', 910210.00, 'A'), +(1187, 1, 'GUARDO DEL RIO LIBARDO FARID', 191821112, 'CRA 25 CALLE 100', + '73@yahoo.com.mx', '2011-02-03', 128662, '2011-09-01', 726050.00, 'A'), +(1188, 3, 'JEFFREY ARTHUR DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 115724, '2011-03-21', 899630.00, 'A'), +(1189, 1, 'DAHL VELEZ JULIANA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 126916, '2011-05-23', 320020.00, 'A'), +(119, 3, 'WALESKA DE LIMA ALMEIDA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118942, '2011-05-09', 125240.00, 'A'), +(1190, 3, 'LUIS JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 118777, '2008-04-04', 901210.00, 'A'), +(1192, 1, 'AZUERO VALENTINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-04-14', 26310.00, 'A'), +(1193, 1, 'MARQUEZ GALINDO MAURICIO JAVIER', 191821112, 'CRA 25 CALLE 100', + '729@yahoo.es', '2011-02-03', 131105, '2011-05-13', 493560.00, 'A'), +(1195, 1, 'NIETO FRANCO JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', + '707@yahoo.com', '2011-02-03', 127591, '2011-07-30', 463790.00, 'A'), +(1196, 3, 'ESTEVES JOAQUIM LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-04-05', 152270.00, 'A'), +(1197, 4, 'BARRERO KAREN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-06-12', 369990.00, 'A'), +(1198, 1, 'CORRALES GUZMAN DELIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127689, '2011-08-03', 393120.00, 'A'), +(1199, 1, 'CUELLAR TOCO EDGAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127531, '2011-09-20', 855640.00, 'A'), +(12, 1, 'MARIN PRIETO FREDY NELSON ', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-23', 641210.00, 'A'), +(120, 1, 'LOPEZ JARAMILLO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2009-04-17', 29680.00, 'A'), +(1200, 3, 'SCHULTER ACHIM', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 291002, '2010-05-21', 98860.00, 'A'), +(1201, 3, 'HOWELL LAURENCE ADRIAN', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 286785, '2011-05-22', 927350.00, 'A'), +(1202, 3, 'ALCAZAR ESCARATE JAIME PATRICIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 117002, '2011-08-25', 340160.00, 'A'), +(1203, 3, 'HIDALGO FUENZALIDA GABRIEL RAUL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-03', 918780.00, 'A'), +(1206, 1, 'VANEGAS HENAO ORLANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-09-27', 832910.00, 'A'), +(1207, 1, 'PENARANDA ARIAS RICARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-19', 832710.00, 'A'), +(1209, 1, 'LEZAMA CERVERA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132775, '2011-09-14', 825980.00, 'A'), +(121, 1, 'PULIDO JIMENEZ OSCAR HUMBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-29', 772700.00, 'A'), +(1211, 1, 'TRUJILLO BOCANEGRA HAROL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127538, '2011-05-27', 199260.00, 'A'), +(1212, 1, 'ALVAREZ TORRES MARIO RICARDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-08-15', 589960.00, 'A'), +(1213, 1, 'CORRALES VARON BELMER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-26', 352030.00, 'A'), +(1214, 3, 'CUEVAS RODRIGUEZ MANUELA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-30', 990250.00, 'A'), +(1216, 1, 'LOPEZ EDICSON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-08-31', 505210.00, 'A'), +(1217, 3, 'GARCIA PALOMARES JUAN JAVIER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188640, '2011-07-31', 840440.00, 'A'), +(1218, 1, 'ARCINIEGAS NARANJO RICARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127492, '2010-12-17', 686610.00, 'A'), +(122, 1, 'GONZALEZ RIANO LEONARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128031, '2011-08-05', 774450.00, 'A'), +(1220, 1, 'GARCIA GUTIERREZ WILLIAM', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-06-20', 498680.00, 'A'), +(1221, 3, 'GOMEZ DE ALONSO ANGELA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-27', 758300.00, 'A'), +(1222, 1, 'MEDINA QUIROGA JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127538, '2011-01-16', 295480.00, 'A'), +(1224, 1, 'ARCILA CORREA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-03-20', 125900.00, 'A'), +(1225, 1, 'QUIJANO REYES CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127538, '2010-04-08', 22100.00, 'A'), +(157, 1, 'ORTIZ RIOS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-05-12', 365330.00, 'A'), +(1226, 1, 'VARGAS GALLEGO JAIRO ALONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127300, '2009-07-30', 732820.00, 'A'), +(1228, 3, 'NAPANGA MIRENGHI MARTIN', 191821112, 'CRA 25 CALLE 100', + '153@yahoo.es', '2011-02-03', 132958, '2011-02-08', 790400.00, 'A'), +(123, 1, 'LAMUS CASTELLANOS ANDRES RICARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-05-11', 554160.00, 'A'), +(1230, 1, 'RIVEROS PINEROS JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127492, '2011-09-25', 422220.00, 'A'), +(1231, 3, 'ESSER JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127327, '2011-04-01', 635060.00, 'A'), +(1232, 3, 'DOMINGUEZ MORA MAURICIO ALFREDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-22', 908630.00, 'A'), +(1233, 3, 'MOLINA FERNANDEZ FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-05-28', 637990.00, 'A'), +(1234, 3, 'BELLO DANIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 196234, '2010-09-04', 464040.00, 'A'), +(1235, 3, 'BENADAVA GUEVARA DAVID ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-05-18', 406240.00, 'A'), +(1236, 3, 'RODRIGUEZ MATOS ROBERTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-03-22', 639070.00, 'A'), +(1237, 3, 'TAPIA ALARCON PATRICIO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 117002, '2010-07-06', 976620.00, 'A'), +(1239, 3, 'VERCHERE ALFONSO CHRISTIAN', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 117002, '2010-08-23', 899600.00, 'A'), +(1241, 1, 'ESPINEL LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 128206, '2009-03-09', 302860.00, 'A'), +(1242, 3, 'VERGARA FERREIRA PATRICIA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-10-03', 713310.00, 'A'), +(1243, 3, 'ZUMARRAGA SIRVENT CRSTINA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-08-24', 657950.00, 'A'), +(1244, 4, 'ESCORCIA VASQUEZ TOMAS', 191821112, 'CRA 25 CALLE 100', + '354@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', 149830.00, 'A'), +(1245, 4, 'PARAMO CUENCA KELLY LORENA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127492, '2011-05-04', 775300.00, 'A'), +(1246, 4, 'PEREZ LOPEZ VERONICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 128662, '2011-07-11', 426990.00, 'A'), +(1247, 4, 'CHAPARRO RODRIGUEZ DANIELA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-10-08', 809070.00, 'A'), +(1249, 4, 'DIAZ MARTINEZ MARIA CAROLINA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 133535, '2011-05-30', 394740.00, 'A'), +(125, 1, 'CALDON RODRIGUEZ JAIME ARIEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 126968, '2011-07-29', 574780.00, 'A'), +(1250, 4, 'PINEDA VASQUEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2010-09-03', 680540.00, 'A'), +(1251, 5, 'MATIZ URIBE ANGELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-12-25', 218470.00, 'A'), +(1253, 1, 'ZAMUDIO RICAURTE JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 126892, '2011-08-05', 598160.00, 'A'), +(1254, 1, 'ALJURE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2010-07-21', 838660.00, 'A'), +(1255, 3, 'ARMESTO AIRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 196234, '2011-01-29', 398840.00, 'A'), +(1257, 1, 'POTES GUEVARA JAIRO MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127858, '2011-03-17', 194580.00, 'A'), +(1258, 1, 'BURBANO QUIROGA RAFAEL', 191821112, 'CRA 25 CALLE 100', + '767@facebook.com', '2011-02-03', 127591, '2011-04-07', 538220.00, 'A'), +(1259, 1, 'CARDONA GOMEZ JAVIR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127300, '2011-03-16', 107380.00, 'A'), +(126, 1, 'PULIDO PARDO GUIDO IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-10-05', 531550.00, 'A'), +(1260, 1, 'LOPERA LEDESMA PABLO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-19', 922240.00, 'A'), +(1263, 1, 'TRIBIN BARRIGA JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127300, '2011-09-02', 525330.00, 'A'), +(1264, 1, 'NAVIA LOPEZ ANDRES FELIPE ', 191821112, 'CRA 25 CALLE 100', + '353@hotmail.es', '2011-02-03', 127300, '2011-07-15', 591190.00, 'A'), +(1265, 1, 'CARDONA GOMEZ FABIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127300, '2010-11-18', 379940.00, 'A'), +(1266, 1, 'ESCARRIA VILLEGAS ANDRES JULIAN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-08-19', 126160.00, 'A'), +(1268, 1, 'CASTRO HERNANDEZ ALVARO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127300, '2011-03-25', 76260.00, 'A'), +(127, 1, 'RODRIGUEZ RODRIGUEZ GIOVANI FRANCISCO', 191821112, 'CRA 25 CALLE 100', + '662@hotmail.es', '2011-02-03', 127591, '2011-09-29', 933390.00, 'A'), +(1270, 1, 'LEAL HERNANDEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', 313610.00, 'A'), +(1272, 1, 'ORTIZ CARDONA WILLIAM ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '914@hotmail.com', '2011-02-03', 128662, '2011-09-13', 272150.00, 'A'), +(1273, 1, 'ROMERO VAN GOMPEL HERNAN', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-09-07', 832960.00, 'A'), +(1274, 1, 'BERMUDEZ LONDONO JHON FREDY', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127300, '2011-08-29', 348380.00, 'A'), +(1275, 1, 'URREA ALVAREZ NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-09-01', 242980.00, 'A'), +(1276, 1, 'VALENCIA LLANOS RODRIGO AUGUSTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-04-11', 169790.00, 'A'), +(1277, 1, 'PAZ VALENCIA GUILLERMO ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127300, '2011-08-05', 120020.00, 'A'), +(1278, 1, 'MONROY CORREDOR GERARDO ALONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127300, '2011-06-25', 90700.00, 'A'), +(1279, 1, 'RIOS MEDINA JAVIER ERMINSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-12', 93440.00, 'A'), +(128, 1, 'GALLEGO GUZMAN MARIO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-06-25', 72290.00, 'A'), +(1280, 1, 'GARCIA OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-30', 195090.00, 'A'), +(1282, 1, 'MURILLO PESELLIN GABRIEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127300, '2011-06-15', 890530.00, 'A'), +(1284, 1, 'DIAZ ALVAREZ JOHNY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127300, '2011-06-25', 164130.00, 'A'), +(1285, 1, 'GARCES BELTRAN RAUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127300, '2011-08-11', 719220.00, 'A'), +(1286, 1, 'MATERON POVEDA LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-25', 103710.00, 'A'), +(1287, 1, 'VALENCIA ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2010-10-23', 360880.00, 'A'), +(1288, 1, 'PENA AGUDELO JOSE RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 134022, '2011-05-25', 493280.00, 'A'), +(1289, 1, 'CORREA NUNEZ JORGE ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-08-18', 383750.00, 'A'), +(129, 1, 'ALVAREZ RODRIGUEZ IVAN RICARDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2008-01-28', 561290.00, 'A'), +(1291, 1, 'BEJARANO ROSERO FREDDY ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-10-09', 43400.00, 'A'), +(1292, 1, 'CASTILLO BARRIOS GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127300, '2011-06-17', 900180.00, 'A'), +('CELL401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1296, 1, 'GALVEZ GUTIERREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127300, '2010-03-28', 807090.00, 'A'), +(1297, 3, 'CRUZ GARCIA MILTON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 139844, '2011-03-21', 75630.00, 'A'), +(1298, 1, 'VILLEGAS GUTIERREZ JOSE RICARDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-11', 956860.00, 'A'), +(13, 1, 'VACA MURCIA JESUS ALFREDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-04', 613430.00, 'A'), +(1301, 3, 'BOTTI ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 231989, '2011-04-04', 910640.00, 'A'), +(1302, 3, 'COTINO HUESO LORENZO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2010-02-02', 803450.00, 'A'), +(1304, 3, 'NESPOLI MANTOVANI LUIZ CARLOS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-04-18', 16230.00, 'A'), +(1307, 4, 'AVILA GIL PAULA ANDREA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-19', 711110.00, 'A'), +(1308, 4, 'VALLEJO PINEDA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-12', 323490.00, 'A'), +(1312, 1, 'ROMERO OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-04-17', 642460.00, 'A'), +(1314, 3, 'LULLIES CONSTANZE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 245206, '2010-06-03', 154970.00, 'A'), +(1315, 1, 'CHAPARRO GUTIERREZ JORGE ADRIANO', 191821112, 'CRA 25 CALLE 100', + '284@hotmail.es', '2011-02-03', 127591, '2010-12-02', 325440.00, 'A'), +(1316, 1, 'BARRANTES DISI RICARDO JOSE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 132879, '2011-07-18', 162270.00, 'A'), +(1317, 3, 'VERDES GAGO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 188640, '2010-03-10', 835060.00, 'A'), +(1319, 3, 'MARTIN MARTINEZ GUSTAVO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2010-05-26', 937220.00, 'A'), +(1320, 3, 'MOTTURA MASSIMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 118777, '2008-11-10', 620640.00, 'A'), +(1321, 3, 'RUSSELL TIMOTHY JAMES', 191821112, 'CRA 25 CALLE 100', + '502@hotmail.es', '2011-02-03', 145135, '2010-04-16', 291560.00, 'A'), +(1322, 3, 'JAIN TARSEM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 190393, '2011-05-31', 595890.00, 'A'), +(1323, 3, 'ORTEGA CEVALLOS JULIETA ELIZABETH', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-30', 104760.00, 'A'), +(1324, 3, 'MULLER PICHAIDA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 117002, '2011-05-17', 736130.00, 'A'), +(1325, 3, 'ALVEAR TELLEZ JULIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 117002, '2011-01-23', 366390.00, 'A'), +(1327, 3, 'MOYA LATORRE MARCELA CAROLINA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 117002, '2011-05-17', 18520.00, 'A'), +(1328, 3, 'LAMA ZAROR RODRIGO IGNACIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 117002, '2010-10-27', 221990.00, 'A'), +(1329, 3, 'HERNANDEZ CIFUENTES MAURICE JEANETTE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 139844, '2011-06-22', 54410.00, 'A'), +(133, 1, 'CORDOBA HOYOS JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-20', 966820.00, 'A'), +(1330, 2, 'HOCHKOFLER NOEMI CONSUELO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-27', 606070.00, 'A'), +(1331, 4, 'RAMIREZ BARRERO DANIELA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 154563, '2011-04-18', 867120.00, 'A'), +(1332, 4, 'DE LEON DURANGO RICARDO JOSE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 131105, '2011-09-08', 517400.00, 'A'), +(1333, 4, 'RODRIGUEZ MACIAS IVAN MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 129447, '2011-05-23', 985620.00, 'A'), +(1334, 4, 'GUTIERREZ DE PINERES YANET MARIA ALEJANDRA', 191821112, + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-06-16', + 375890.00, 'A'), +(1335, 4, 'GUTIERREZ DE PINERES YANET MARIA GABRIELA', 191821112, + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-06-16', + 922600.00, 'A'), +(1336, 4, 'CABRALES BECHARA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', + '708@hotmail.com', '2011-02-03', 131105, '2011-05-13', 485330.00, 'A'), +(1337, 4, 'MEJIA TOBON LUIS DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127662, '2011-08-05', 658860.00, 'A'), +(1338, 3, 'OROS NERCELLES CRISTIAN ANDRE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 144215, '2011-04-26', 838310.00, 'A'), +(1339, 3, 'MORENO BRAVO CAROLINA ANDREA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 190393, '2010-12-08', 214950.00, 'A'), +(134, 1, 'GONZALEZ LOPEZ DANIEL ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-08', 178580.00, 'A'), +(1340, 3, 'FERNANDEZ GARRIDO MARCELO FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-07-08', 559820.00, 'A'), +(1342, 3, 'SUMEGI IMRE ZOLTAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-07-16', 91750.00, 'A'), +(1343, 3, 'CALDERON FLANDEZ SERGIO', 191821112, 'CRA 25 CALLE 100', + '108@hotmail.com', '2011-02-03', 117002, '2010-12-12', 996030.00, 'A'), +(1345, 3, 'CARBONELL ATCHUGARRY GUILLERMO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 116366, '2010-04-12', 536390.00, 'A'), +(1346, 3, 'MONTEALEGRE AGUILAR FEDERICO ', 191821112, 'CRA 25 CALLE 100', + '448@yahoo.es', '2011-02-03', 132165, '2011-08-08', 567260.00, 'A'), +(1347, 1, 'HERNANDEZ MANCHEGO CARLOS JULIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-04-28', 227130.00, 'A'), +(1348, 1, 'ARENAS ZARATE FERNEY ARNULFO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127963, '2011-03-26', 433860.00, 'A'), +(1349, 3, 'DELFIM DINIZ PASSOS PINHEIRO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 110784, '2010-04-17', 487930.00, 'A'), +(135, 1, 'GARCIA SIMBAQUEBA RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 992420.00, 'A'), +(1350, 3, 'BRAUN VALENZUELA FELIPE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-29', 138050.00, 'A'), +(1351, 3, 'LEVIN FIORELLI ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 116366, '2011-04-10', 226470.00, 'A'), +(1353, 3, 'BALTODANO ESQUIVEL LAURA CRISTINA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132165, '2011-08-01', 911660.00, 'A'), +(1354, 4, 'ESCOBAR YEPES ANDREA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-05-19', 403630.00, 'A'), +(1356, 1, 'GAGELI OSORIO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '228@yahoo.com.mx', '2011-02-03', 128662, '2011-07-14', 205070.00, 'A'), +(1357, 3, 'CABAL ALVAREZ RUBEN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 188640, '2011-08-14', 175770.00, 'A'), +(1359, 4, 'HUERFANO JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-06-04', 790970.00, 'A'), +(136, 1, 'OSORIO RAMIREZ LEONARDO', 191821112, 'CRA 25 CALLE 100', + '686@yahoo.es', '2011-02-03', 128662, '2010-05-14', 426380.00, 'A'), +(1360, 4, 'RAMON GARCIA MARIA PAULA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-01', 163890.00, 'A'), +(1362, 30, 'ALVAREZ CLAVIO CARLA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127203, '2011-04-18', 741020.00, 'A'), +(1363, 3, 'SERRA DURAN GERARDO ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-03', 365490.00, 'A'), +(1364, 3, 'NORIEGA VALVERDE SILVIA MARCELA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 132775, '2011-02-27', 604370.00, 'A'), +(1366, 1, 'JARAMILLO LOPEZ ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '269@terra.com.co', '2011-02-03', 127559, '2010-11-08', 813800.00, 'A'), +(1367, 1, 'MAZO ROLDAN CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-04', 292880.00, 'A'), +(1368, 1, 'MURIEL ARCILA MAURICIO HERNANDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-29', 22970.00, 'A'), +(1369, 1, 'RAMIREZ CARLOS FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-14', 236230.00, 'A'), +(137, 1, 'LUNA PEREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 126881, '2011-08-05', 154640.00, 'A'), +(1370, 1, 'GARCIA GRAJALES PEDRO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128166, '2011-10-09', 112230.00, 'A'), +(1372, 3, 'GARCIA ESCOBAR ANA MARIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-29', 925670.00, 'A'), +(1373, 3, 'ALVES DIAS CARLOS AUGUSTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-07', 70940.00, 'A'), +(1374, 3, 'MATTOS CHRISTIANE GARCIA CID', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 183024, '2010-08-25', 577700.00, 'A'), +(1376, 1, 'CARVAJAL ROJAS ORLANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-10', 645240.00, 'A'), +(1377, 3, 'MADARIAGA CADIZ CLAUDIO CRISTIAN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 117002, '2011-10-04', 199200.00, 'A'), +(1379, 3, 'MARIN YANEZ ALICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 188640, '2011-02-20', 703870.00, 'A'), +(138, 1, 'DIAZ AVENDANO MARCELO IVAN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-22', 494080.00, 'A'), +(1381, 3, 'COSTA VILLEGAS LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 117002, '2011-08-21', 580670.00, 'A'), +(1382, 3, 'DAZA PEREZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 122035, '2009-02-23', 888000.00, 'A'), +(1385, 4, 'RIVEROS ARIAS MARIA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127492, '2011-09-26', 35710.00, 'A'), +(1386, 30, 'TORO GIRALDO MATEO', 191821112, 'CRA 25 CALLE 100', + '433@yahoo.com.mx', '2011-02-03', 127591, '2011-07-17', 700730.00, 'A'), +(1387, 4, 'ROJAS YARA LAURA DANIELA MARIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-31', 396530.00, 'A'), +(1388, 3, 'GALLEGO RODRIGO MARIA PILAR', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2009-04-19', 880450.00, 'A'), +(1389, 1, 'PANTOJA VELASQUEZ JOSE ARMANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127300, '2011-08-05', 212660.00, 'A'), +(139, 1, 'RANCO GOMEZ HERNÁN EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-01-19', 6450.00, 'A'), +(1390, 3, 'VAN DEN BORNE KEES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 132958, '2010-01-28', 421930.00, 'A'), +(1391, 3, 'MONDRAGON FLORES JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118777, '2011-08-22', 471700.00, 'A'), +(1392, 3, 'BAGELLA MICHELE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2010-07-27', 92720.00, 'A'), +(1393, 3, 'BISTIANCIC MACHADO ANA INES', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 116366, '2010-08-02', 48490.00, 'A'), +(1394, 3, 'BANADOS ORTIZ MARIA PILAR', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-08-25', 964280.00, 'A'), +(1395, 1, 'CHINDOY CHINDOY HERNANDO', 191821112, 'CRA 25 CALLE 100', + '107@terra.com.co', '2011-02-03', 126892, '2011-08-25', 675920.00, 'A'), +(1396, 3, 'SOTO NUNEZ ANDRES ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 117002, '2011-10-02', 486760.00, 'A'), +(1397, 1, 'DELGADO MARTINEZ LORGE ELIAS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-05-23', 406040.00, 'A'), +(1398, 1, 'LEON GUEVARA JAVIER ANIBAL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 126892, '2011-09-08', 569930.00, 'A'), +(1399, 1, 'ZARAMA BASTIDAS LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 126892, '2011-08-05', 631540.00, 'A'), +(14, 1, 'MAGUIN HENNSSEY LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', + '714@gmail.com', '2011-02-03', 127591, '2011-07-11', 143540.00, 'A'), +(140, 1, 'CARRANZA CUY ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-25', 550010.00, 'A'), +(1401, 3, 'REYNA CASTORENA JOSE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 189815, '2011-08-29', 344970.00, 'A'), +(1402, 1, 'GFALLO BOTERO SERGIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2011-07-14', 381100.00, 'A'), +(1403, 1, 'ARANGO ARAQUE JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-05-04', 870590.00, 'A'), +(1404, 3, 'LASSNER NORBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 118942, '2010-02-28', 209650.00, 'A'), +(1405, 1, 'DURANGO MARIN HECTOR LEON', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '1970-02-02', 436480.00, 'A'), +(1407, 1, 'FRANCO CASTANO DIEGO MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-06-28', 457770.00, 'A'), +(1408, 1, 'HERNANDEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 128662, '2011-05-29', 628550.00, 'A'), +(1409, 1, 'CASTANO DUQUE CARLOS HUGO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-03-23', 769410.00, 'A'), +(141, 1, 'CHAMORRO CHEDRAUI SERGIO ALBERTO', 191821112, 'CRA 25 CALLE 100', + '922@yahoo.com.mx', '2011-02-03', 127591, '2011-05-07', 730720.00, 'A'), +(1411, 1, 'RAMIREZ MONTOYA ADAMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2011-04-13', 498880.00, 'A'), +(1412, 1, 'GONZALEZ BENJUMEA OSCAR HUMBERTO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-11-01', 610150.00, 'A'), +(1413, 1, 'ARANGO ACEVEDO WALTER ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2010-10-07', 554090.00, 'A'), +(1414, 1, 'ARANGO GALLO HUMBERTO LEON', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-02-25', 940010.00, 'A'), +(1415, 1, 'VELASQUEZ LUIS GONZALO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2011-07-06', 37760.00, 'A'), +(1416, 1, 'MIRA AGUILAR FRANCISCO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-30', 368790.00, 'A'), +(1417, 1, 'RIVERA ARISTIZABAL CARLOS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-03-02', 730670.00, 'A'), +(1418, 1, 'ARISTIZABAL ROLDAN ANDRES RICARDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-02', 546960.00, 'A'), +(142, 1, 'LOPEZ ZULETA MAURICIO ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-01', 3550.00, 'A'), +(1420, 1, 'ESCORCIA ARAMBURO JUAN MARIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', 73100.00, 'A'), +(1421, 1, 'CORREA PARRA RICARDO ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-08-05', 737110.00, 'A'), +(1422, 1, 'RESTREPO NARANJO DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 128662, '2011-09-15', 466240.00, 'A'), +(1423, 1, 'VELASQUEZ CARLOS JUAN', 191821112, 'CRA 25 CALLE 100', + '123@yahoo.com', '2011-02-03', 128662, '2010-06-09', 119880.00, 'A'), +(1424, 1, 'MACIA GONZALEZ ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2010-11-12', 200690.00, 'A'), +(1425, 1, 'BERRIO MEJIA HELBER ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2010-06-04', 643800.00, 'A'), +(1427, 1, 'GOMEZ GUTIERREZ CARLOS ARIEL', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-09-08', 153320.00, 'A'), +(1428, 1, 'RESTREPO LOPEZ JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-12', 915770.00, 'A'), +('CELL4012', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1429, 1, 'BARTH TOBAR LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-02-23', 118900.00, 'A'), +(143, 1, 'MUNERA BEDIYA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2010-09-21', 825600.00, 'A'), +(1430, 1, 'JIMENEZ VELEZ ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2010-02-26', 847160.00, 'A'), +(1431, 1, 'TAKAHASHI GAVIRIA NICOLAS KEIICHIRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-13', 879120.00, 'A'), +(1432, 1, 'ESCOBAR JARAMILLO ESTEBAN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2010-06-10', 854110.00, 'A'), +(1433, 1, 'PALACIO NAVARRO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-08-18', 633200.00, 'A'), +(1434, 1, 'LONDONO MUNOZ ADOLFO LEON', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-09-14', 603670.00, 'A'), +(1435, 1, 'PULGARIN JAIME ANDRES', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2009-11-01', 118730.00, 'A'), +(1436, 1, 'FERRERA ZULUAGA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2010-07-10', 782630.00, 'A'), +(1437, 1, 'VASQUEZ VELEZ HABACUC', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-27', 557000.00, 'A'), +(1438, 1, 'HENAO PALOMINO DIEGO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2009-05-06', 437080.00, 'A'), +(1439, 1, 'HURTADO URIBE JUAN GONZALO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-01-11', 514400.00, 'A'), +(144, 1, 'ALDANA RODOLFO AUGUSTO', 191821112, 'CRA 25 CALLE 100', + '838@yahoo.es', '2011-02-03', 127591, '2011-08-07', 117350.00, 'A'), +(1441, 1, 'URIBE DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 133535, '2010-11-19', 760610.00, 'A'), +(1442, 1, 'PINEDA GALIANO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2010-07-29', 20770.00, 'A'), +(1443, 1, 'DUQUE BETANCOURT FABIO LEON', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-11-26', 822030.00, 'A'), +(1444, 1, 'JARAMILLO TORO HERNAN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-04-27', 47830.00, 'A'), +(145, 1, 'VASQUEZ ZAPATA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-09', 109940.00, 'A'), +(1450, 1, 'TOBON FRANCO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '545@facebook.com', '2011-02-03', 127591, '2011-05-03', 889540.00, 'A'), +(1454, 1, 'LOTERO PAVAS CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-28', 646750.00, 'A'), +(1455, 1, 'ESTRADA HENAO JAVIER ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128569, '2009-09-07', 215460.00, 'A'), +(1456, 1, 'VALDERRAMA MAXIMILIANO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-03-23', 137030.00, 'A'), +(1457, 3, 'ESTRADA ALVAREZ GONZALO ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 154903, '2011-05-02', 38790.00, 'A'), +(1458, 1, 'PAUCAR VALLEJO JAIRO ALONSO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-10-15', 782860.00, 'A'), +(1459, 1, 'RESTREPO GIRALDO JHON DARIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-04-04', 797930.00, 'A'), +(146, 1, 'BAQUERO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 128662, '2010-03-03', 197650.00, 'A'), +(1460, 1, 'RESTREPO DOMINGUEZ GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2009-05-18', 641050.00, 'A'), +(1461, 1, 'YANOVICH JACKY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 128662, '2010-08-21', 811470.00, 'A'), +(1462, 1, 'HINCAPIE ROLDAN JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-08-27', 134200.00, 'A'), +(1463, 3, 'ZEA JORGE OLIVER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 150699, '2011-03-12', 236610.00, 'A'), +(1464, 1, 'OSCAR MAURICIO ECHAVARRIA', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2010-11-24', 780440.00, 'A'), +(1465, 1, 'COSSIO GIL JOSE ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-10-01', 192380.00, 'A'), +(1466, 1, 'GOMEZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-03-01', 620580.00, 'A'), +(1467, 1, 'VILLALOBOS OCHOA ANDRES GABRIEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-08-18', 525740.00, 'A'), +(1470, 1, 'GARCIA GONZALEZ DAVID DARIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-09-17', 986990.00, 'A'), +(1471, 1, 'RAMIREZ RESTREPO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-03', 162250.00, 'A'), +(1472, 1, 'VASQUEZ GUTIERREZ JUAN ANDRES', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-04-05', 850280.00, 'A'), +(1474, 1, 'ESCOBAR ARANGO DAVID', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2010-11-01', 272460.00, 'A'), +(1475, 1, 'MEJIA TORO JUAN DAVID', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-05-02', 68320.00, 'A'), +(1477, 1, 'ESCOBAR GOMEZ JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127848, '2011-05-15', 416150.00, 'A'), +(1478, 1, 'BETANCUR WILSON', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2008-02-09', 508060.00, 'A'), +(1479, 3, 'ROMERO ARRAU GONZALO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-06-10', 291880.00, 'A'), +(148, 1, 'REINA MORENO MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-08', 699240.00, 'A'), +(1480, 1, 'CASTANO OSORIO JORGE ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127662, '2011-09-20', 935200.00, 'A'), +(1482, 1, 'LOPEZ LOPERA ROBINSON FREDY', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-09-02', 196280.00, 'A'), +(1484, 1, 'HERNAN DARIO RENDON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 128662, '2011-03-18', 312520.00, 'A'), +(1485, 1, 'MARTINEZ ARBOLEDA MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2010-11-03', 821760.00, 'A'), +(1486, 1, 'RODRIGUEZ MORA CARLOS MORA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-09-16', 171270.00, 'A'), +(1487, 1, 'PENAGOS VASQUEZ JOSE DOMINGO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-09-06', 391080.00, 'A'), +(1488, 1, 'UERRA MEJIA DIEGO LEON', 191821112, 'CRA 25 CALLE 100', + '704@hotmail.com', '2011-02-03', 144086, '2011-08-06', 441570.00, 'A'), +(1491, 1, 'QUINTERO GUTIERREZ ABEL PASTOR', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2009-11-16', 138100.00, 'A'), +(1492, 1, 'ALARCON YEPES IVAN DARIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 150699, '2010-05-03', 145330.00, 'A'), +(1494, 1, 'HERNANDEZ VALLEJO ANDRES MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-05-09', 125770.00, 'A'), +(1495, 1, 'MONTOYA MORENO LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-11-09', 691770.00, 'A'), +(1497, 1, 'BARRERA CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '62@yahoo.es', + '2011-02-03', 127591, '2010-08-24', 332550.00, 'A'), +(1498, 1, 'ARROYAVE FERNANDEZ PABLO EMILIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-05-12', 418030.00, 'A'), +(1499, 1, 'GOMEZ ANGEL FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 128662, '2011-05-03', 92480.00, 'A'), +(15, 1, 'AMSILI COHEN JOSEPH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-10-07', 877400.00, 'A'), +('CELL411', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(150, 3, 'ARDILA GUTIERREZ DANIEL MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-12', 506760.00, 'A'), +(1500, 1, 'GONZALEZ DUQUE PABLO JOSE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2010-04-13', 208330.00, 'A'), +(1502, 1, 'MEJIA BUSTAMANTE JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-08-09', 196000.00, 'A'), +(1506, 1, 'SUAREZ MONTOYA JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128569, '2011-09-13', 368250.00, 'A'), +(1508, 1, 'ALVAREZ GONZALEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-02-15', 355190.00, 'A'), +(1509, 1, 'NIETO CORREA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-03-31', 899980.00, 'A'), +(1511, 1, 'HERNANDEZ GRANADOS JHONATHAN', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-08-30', 471720.00, 'A'), +(1512, 1, 'CARDONA ALVAREZ DEIBY', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 128662, '2010-10-05', 55590.00, 'A'), +(1513, 1, 'TORRES MARULANDA JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2010-10-20', 862820.00, 'A'), +(1514, 1, 'RAMIREZ RAMIREZ JHON JAIRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-05-11', 147310.00, 'A'), +(1515, 1, 'MONDRAGON TORO NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-01-19', 148100.00, 'A'), +(1517, 3, 'SUIDA DIETER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 118942, '2008-07-21', 48580.00, 'A'), +(1518, 3, 'LEFTWICH ANDREW PAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 211610, '2011-06-07', 347170.00, 'A'), +(1519, 3, 'RENTON ANDREW GEORGE PATRICK', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 269033, '2010-12-11', 590120.00, 'A'), +(152, 1, 'BUSTOS MONZON CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-22', 335160.00, 'A'), +(1521, 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 119814, '2011-04-28', 775000.00, 'A'), +(1522, 3, 'GUARACI FRANCO DE PAIVA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 119167, '2011-04-28', 147770.00, 'A'), +(1525, 4, 'MORENO TENORIO MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-20', 888750.00, 'A'), +(1527, 1, 'VELASQUEZ HERNANDEZ JHON EDUARSON', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-07-19', 161270.00, 'A'), +(1528, 4, 'VANEGAS ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '185@yahoo.com', + '2011-02-03', 127591, '2011-06-20', 109830.00, 'A'), +(1529, 3, 'BARBABE CLAIRE LAURENCE ANNICK', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-04', 65330.00, 'A'), +(153, 1, 'GONZALEZ TORREZ MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-01', 762560.00, 'A'), +(1530, 3, 'COREA MARTINEZ GUILLERMO JOSE ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 135360, '2011-09-25', 997190.00, 'A'), +(1531, 3, 'PACHECO RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 117002, '2010-03-08', 789960.00, 'A'), +(1532, 3, 'WELCH RICHARD WILLIAM', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 190393, '2010-10-04', 958210.00, 'A'), +(1533, 3, 'FOREMAN CAROLYN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 107159, '2011-05-23', 421200.00, 'A'), +(1535, 3, 'ZAGAL SOTO CLAUDIA PAZ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 117002, '2008-05-16', 893130.00, 'A'), +(1536, 3, 'ZAGAL SOTO CLAUDIA PAZ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 117002, '2011-10-08', 771600.00, 'A'), +(1538, 3, 'BLANCO RODRIGUEZ JUAN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 197162, '2011-04-02', 578250.00, 'A'), +(154, 1, 'HENDEZ PUERTO JAVIER ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 807310.00, 'A'), +(1540, 3, 'CONTRERAS BRAIN JAVIER ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-02-22', 42420.00, 'A'), +(1541, 3, 'RONDON HERNANDEZ MARYLIN DEL CARMEN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132958, '2011-09-29', 145780.00, 'A'), +(1542, 3, 'ELJURI RAMIREZ EMIRA ELIZABETH', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 132958, '2010-10-13', 601670.00, 'A'), +(1544, 3, 'REYES LE ROY TOMAS FRANCISCO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2009-06-24', 49990.00, 'A'), +(1545, 3, 'GHETEA GAMUZ JENNY', 191821112, 'CRA 25 CALLE 100', '675@gmail.com', + '2011-02-03', 150699, '2010-05-29', 536940.00, 'A'), +(1546, 3, 'DUARTE GONZALEZ ROONEY ORLANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 117002, '2011-06-20', 534720.00, 'A'), +(1548, 3, 'BIZOT PHILIPPE PIERRE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 263813, '2011-03-02', 709760.00, 'A'), +(1549, 3, 'PELUFFO RUBIO GUILLERMO JUAN', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 116366, '2011-05-09', 360470.00, 'A'), +(1550, 3, 'AGLIATI YERKOVIC CAROLINA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2010-06-01', 673040.00, 'A'), +(1551, 3, 'SEPULVEDA LEDEZMA HENRY CORNELIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-08-15', 283810.00, 'A'), +(1552, 3, 'CABRERA CARMINE JAIME FRANCO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 117002, '2008-11-30', 399940.00, 'A'), +(1553, 3, 'ZINNO PENA ALVARO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 116366, '2010-08-02', 148270.00, 'A'), +(1554, 3, 'ROMERO BUCCICARDI JUAN CRISTOBAL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 117002, '2011-08-01', 541530.00, 'A'), +(1555, 3, 'FEFERKORN ABRAHAM', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 159312, '2011-06-12', 262840.00, 'A'), +(1556, 3, 'MASSE CATESSON CAROLINE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 131272, '2011-06-12', 689600.00, 'A'), +(1557, 3, 'CATESSON ALEXANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 131272, '2011-06-12', 659470.00, 'A'), +(1558, 3, 'FUENTES HERNANDEZ RICARDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-18', 228540.00, 'A'), +(1559, 3, 'GUEVARA MENJIVAR WILSON ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-18', 164310.00, 'A'), +(1560, 3, 'DANOWSKI NICOLAS JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-05-02', 135920.00, 'A'), +(1561, 3, 'CASTRO VELASQUEZ ISMAEL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 121318, '2011-07-31', 186670.00, 'A'), +(1562, 3, 'RODRIGUEZ CORNEJO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 525590.00, 'A'), +(1563, 3, 'VANIA CAROLINA FLORES AVILA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-18', 67950.00, 'A'), +(1564, 3, 'ARMERO RAMOS OSCAR ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '414@hotmail.com', '2011-02-03', 127591, '2011-09-18', 762950.00, 'A'), +(1565, 3, 'ORELLANA MARTINEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-18', 610930.00, 'A'), +(1566, 3, 'BRATT BABONNEAU CARLOS MIGUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', 765800.00, 'A'), +(1567, 3, 'YANES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 150728, '2011-04-12', 996200.00, 'A'), +(1568, 3, 'ANGULO TAMAYO SEBASTIAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 126674, '2011-05-19', 683600.00, 'A'), +(1569, 3, 'HENRIQUEZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 138329, '2011-08-15', 429390.00, 'A'), +('CELL4137', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1570, 3, 'GARCIA VILLARROEL RAUL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 126189, '2011-06-12', 96140.00, 'A'), +(1571, 3, 'SOLA HERNANDEZ JOSE FRANCISCO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188640, '2011-09-25', 192530.00, 'A'), +(1572, 3, 'PEREZ PASTOR OSWALDO MAGARREY', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 126674, '2011-05-25', 674260.00, 'A'), +(1573, 3, 'MICHAN QUINONES FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-06-21', 793680.00, 'A'), +(1574, 3, 'GARCIA ARANDA OSCAR DAVID', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-08-15', 945620.00, 'A'), +(1575, 3, 'GARCIA RIBAS JORDI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 188640, '2011-07-10', 347070.00, 'A'), +(1576, 3, 'GALVAN ROMERO MARIA INMACULADA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-09-14', 898480.00, 'A'), +(1577, 3, 'BOSH MOLINAS JUAN JOSE ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 198576, '2011-08-22', 451190.00, 'A'), +(1578, 3, 'MARTIN TENA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 188640, '2011-04-24', 560520.00, 'A'), +(1579, 3, 'HAWKINS ROBERT JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-09-12', 449010.00, 'A'), +(1580, 3, 'GHERARDI ALEJANDRO EMILIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 180063, '2010-11-15', 563500.00, 'A'), +(1581, 3, 'TELLO JUAN EDUARDO', 191821112, 'CRA 25 CALLE 100', + '192@hotmail.com', '2011-02-03', 138329, '2011-05-01', 470460.00, 'A'), +(1583, 3, 'GUZMAN VALDIVIA CINTIA TATIANA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 199862, '2011-04-06', 897580.00, 'A'), +(1584, 3, 'STUBBS MERCEDES CARMEN JOSEFINA DEL MILAGRO', 191821112, + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 199862, '2011-04-06', + 502510.00, 'A'), +(1585, 3, 'QUINTEIRO GORIS JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-17', 819840.00, 'A'), +(1587, 3, 'RIVAS LORIA PRISCILLA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 205636, '2011-05-01', 498720.00, 'A'), +(1588, 3, 'DE LA TORRE AUGUSTO PATRICIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 20404, '2011-08-31', 718670.00, 'A'), +(159, 1, 'ALDANA PATINO NORMAN ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2009-10-10', 201500.00, 'A'), +(1590, 3, 'TORRES VILLAR ROBERTO ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2011-08-10', 329950.00, 'A'), +(1591, 3, 'PETRULLI CARMELO MORENO', 191821112, 'CRA 25 CALLE 100', + '883@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', 358180.00, 'A'), +(1592, 3, 'MUSCO ENZO FRANCESCO GIUSEPPE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-09-04', 801050.00, 'A'), +(1593, 3, 'RONCUZZI CLAUDIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127134, '2011-10-02', 930700.00, 'A'), +(1594, 3, 'VELANI FRANCESCA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 199862, '2011-08-22', 250360.00, 'A'), +(1596, 3, 'BENARROCH ASSOR DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-10-06', 547310.00, 'A'), +(1597, 3, 'FLO VILLASECA ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-05-27', 357520.00, 'A'), +(1598, 3, 'FONT RIBAS ANTONI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 196117, '2011-09-21', 145660.00, 'A'), +(1599, 3, 'LOPEZ BARAHONA MONICA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2011-08-03', 655740.00, 'A'), +(16, 1, 'FLOREZ PEREZ GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 132572, '2011-03-30', 956370.00, 'A'), +(160, 1, 'GIRALDO MENDIVELSO MARTIN EDISSON', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-14', 429010.00, 'A'), +(1600, 3, 'SCATTIATI ALDO ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 215245, '2011-07-10', 841730.00, 'A'), +(1601, 3, 'MARONE CARLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 101179, '2011-06-14', 241420.00, 'A'), +(1602, 3, 'CHUVASHEVA ELENA ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 190393, '2011-08-21', 681900.00, 'A'), +(1603, 3, 'GIGLIO FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 122035, '2011-09-19', 685250.00, 'A'), +(1604, 3, 'JUSTO AMATE AGUSTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 174598, '2011-05-16', 380560.00, 'A'), +(1605, 3, 'GUARDABASSI FABIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 281044, '2011-07-26', 847060.00, 'A'), +(1606, 3, 'CALABRETTA FRAMCESCO ANTONIO MARIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 199862, '2011-08-22', 93590.00, 'A'), +(1607, 3, 'TARTARINI MASSIMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 196234, '2011-05-10', 926800.00, 'A'), +(1608, 3, 'BOTTI GIAIME', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 231989, '2011-04-04', 353210.00, 'A'), +(1610, 3, 'PILERI ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 205040, '2011-09-01', 868590.00, 'A'), +(1612, 3, 'MARTIN GRACIA LUIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 128662, '2011-07-27', 324320.00, 'A'), +(1613, 3, 'GRACIA MARTIN LUIS', 191821112, 'CRA 25 CALLE 100', + '579@facebook.com', '2011-02-03', 198248, '2011-08-24', 463560.00, 'A'), +(1614, 3, 'SERRAT SESE JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 196234, '2011-05-16', 344840.00, 'A'), +(1615, 3, 'DEL LAGO AMPELIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 145135, '2011-06-29', 333510.00, 'A'), +(1616, 3, 'PERUGORRIA RODRIGUEZ JORGE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 148511, '2011-06-06', 633040.00, 'A'), +(1617, 3, 'GIRAL CALVO IGNACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 196234, '2011-09-19', 164670.00, 'A'), +(1618, 3, 'ALONSO CEBRIAN JOSE MARIA', 191821112, 'CRA 25 CALLE 100', + '253@terra.com.co', '2011-02-03', 188640, '2011-03-23', 924240.00, 'A'), +(162, 1, 'ARIZA PINEDA JOHN ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-11-27', 415710.00, 'A'), +(1620, 3, 'OLMEDO CARDENETE DOMINGO MIGUEL', 191821112, 'CRA 25 CALLE 100', + '608@terra.com.co', '2011-02-03', 135397, '2011-09-03', 863200.00, 'A'), +(1622, 3, 'GIMENEZ BALDRES ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 182860, '2011-05-12', 82660.00, 'A'), +(1623, 3, 'NUNEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 128662, '2011-05-23', 609950.00, 'A'), +(1624, 3, 'PENATE CASTRO WENCESLAO LORENZO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 153607, '2011-09-13', 801750.00, 'A'), +(1626, 3, 'ESCODA MIGUEL JOAN JOSEP', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 188640, '2011-07-18', 489310.00, 'A'), +(1628, 3, 'ESTRADA CAPILLA ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-07-26', 81180.00, 'A'), +(163, 1, 'PERDOMO LOPEZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-09-05', 456910.00, 'A'), +(1630, 3, 'SUBIRAIS MARIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 196234, '2011-09-08', 138700.00, 'A'), +(1632, 3, 'ENSENAT VELASCO JAIME LUIS', 191821112, 'CRA 25 CALLE 100', + '687@gmail.com', '2011-02-03', 188640, '2011-04-12', 904560.00, 'A'), +(1633, 3, 'DIEZ POLANCO CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 188640, '2011-05-24', 530410.00, 'A'), +(1636, 3, 'CUADRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 188640, '2011-09-04', 688400.00, 'A'), +(1637, 3, 'UBRIC MUNOZ RAUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 98790, '2011-05-30', 139830.00, 'A'), +('CELL4159', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1638, 3, 'NEDDERMANN GUJO RICARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-07-31', 633990.00, 'A'), +(1639, 3, 'RENEDO ZALBA JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 188640, '2011-03-13', 750430.00, 'A'), +(164, 1, 'JIMENEZ PADILLA JOHAN MARCEL', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-05', 37430.00, 'A'), +(1640, 3, 'FERNANDEZ MORENO DAVID', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-05-28', 850180.00, 'A'), +(1641, 3, 'VERGARA SERRANO JUAN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196234, '2011-06-30', 999620.00, 'A'), +(1642, 3, 'MARTINEZ HUESO LUCAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 182860, '2011-06-29', 447570.00, 'A'), +(1643, 3, 'FRANCO POBLET JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 196234, '2011-10-03', 238990.00, 'A'), +(1644, 3, 'MORA HIDALGO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-09-06', 852250.00, 'A'), +(1645, 3, 'GARCIA COSO EMILIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 188640, '2011-09-14', 544260.00, 'A'), +(1646, 3, 'GIMENO ESCRIG ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 180124, '2011-09-20', 164580.00, 'A'), +(1647, 3, 'MORCILLO LOPEZ RAMON', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127538, '2011-04-16', 190090.00, 'A'), +(1648, 3, 'RUBIO BONET MANUEL', 191821112, 'CRA 25 CALLE 100', + '252@facebook.com', '2011-02-03', 196234, '2011-05-25', 456740.00, 'A'), +(1649, 3, 'PRADO ABUIN FERNANDO ', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-07-16', 713400.00, 'A'), +(165, 1, 'RAMIREZ PALMA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-10', 816420.00, 'A'), +(1650, 3, 'DE VEGA PUJOL GEMA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 196234, '2011-08-01', 196780.00, 'A'), +(1651, 3, 'IBARGUEN ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 188640, '2010-12-03', 843720.00, 'A'), +(1652, 3, 'IBARGUEN ALFREDO', 191821112, 'CRA 25 CALLE 100', '856@hotmail.com', + '2011-02-03', 188640, '2011-06-18', 628250.00, 'A'), +(1654, 3, 'MATELLANES RODRIGUEZ NURIA PILAR', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188640, '2011-10-05', 165770.00, 'A'), +(1656, 3, 'VIDAURRAZAGA GUISOLA JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 188640, '2011-08-08', 495320.00, 'A'), +(1658, 3, 'GOMEZ ULLATE MARIA ELENA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-04-12', 919090.00, 'A'), +(1659, 3, 'ALCAIDE ALONSO JUAN MIGUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-05-02', 152430.00, 'A'), +(166, 1, 'TUSTANOSKI RODOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2010-12-03', 969790.00, 'A'), +(1660, 3, 'LARROY GARCIA CRISTINA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-09-14', 4900.00, 'A'), +(1661, 3, 'FERNANDEZ POYATO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-09-10', 567180.00, 'A'), +(1662, 3, 'TREVEJO PARDO JULIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-09-25', 821200.00, 'A'), +(1663, 3, 'GORGA CASSINELLI VICTOR DANIEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2011-05-30', 404490.00, 'A'), +(1664, 3, 'MORUECO GONZALEZ JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 188640, '2011-10-09', 558820.00, 'A'), +(1665, 3, 'IRURETA FERNANDEZ PEDRO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 214283, '2011-09-14', 580650.00, 'A'), +(1667, 3, 'TREVEJO PARDO JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-25', 392020.00, 'A'), +(1668, 3, 'BOCOS NUNEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 196234, '2011-10-08', 279710.00, 'A'), +(1669, 3, 'LUIS CASTILLO JOSE AGUSTIN', 191821112, 'CRA 25 CALLE 100', + '557@hotmail.es', '2011-02-03', 168202, '2011-06-16', 222500.00, 'A'), +(167, 1, 'HURTADO BELALCAZAR JOHN JADY', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127300, '2011-08-17', 399710.00, 'A'), +(1670, 3, 'REDONDO GUTIERREZ EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-09-14', 273350.00, 'A'), +(1671, 3, 'MADARIAGA ALONSO RAMON', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2011-07-26', 699240.00, 'A'), +(1673, 3, 'REY GONZALEZ LUIS JAVIER', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 188640, '2011-07-26', 283190.00, 'A'), +(1676, 3, 'PEREZ ESTER ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-10-03', 274900.00, 'A'), +(1677, 3, 'GOMEZ-GRACIA HUERTA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-09-22', 112260.00, 'A'), +(1678, 3, 'DAMASO PUENTE DIEGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 188640, '2011-05-25', 736600.00, 'A'), +(168, 1, 'JUAN PABLO MARTINEZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2010-08-15', 89160.00, 'A'), +(1680, 3, 'DIEZ GONZALEZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-17', 521280.00, 'A'), +(1681, 3, 'LOPEZ LOPEZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', + '853@yahoo.com', '2011-02-03', 196234, '2010-12-13', 567760.00, 'A'), +(1682, 3, 'MIRO LINARES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 133442, '2011-09-03', 274930.00, 'A'), +(1683, 3, 'ROCA PINTADO MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 196234, '2011-05-16', 671410.00, 'A'), +(1684, 3, 'GARCIA BARTOLOME HORACIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196234, '2011-09-29', 532220.00, 'A'), +(1686, 3, 'BALMASEDA DE AHUMADA DIEZ JUAN LUIS', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 168202, '2011-04-13', 637860.00, 'A'), +(1687, 3, 'FERNANDEZ IMAZ FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2011-04-10', 248580.00, 'A'), +(1688, 3, 'ELIAS CASTELLS FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-05-19', 329300.00, 'A'), +(1689, 3, 'ANIDO DIAZ DANIEL', 191821112, 'CRA 25 CALLE 100', '491@gmail.com', + '2011-02-03', 188640, '2011-04-04', 900780.00, 'A'), +(1691, 3, 'GATELL ARIMONT MARIA CRISTINA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-17', 877700.00, 'A'), +(1692, 3, 'RIVERA MUNOZ ADONI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 211705, '2011-04-05', 840470.00, 'A'), +(1693, 3, 'LUNA LOPEZ ALICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 188640, '2011-10-01', 569270.00, 'A'), +(1695, 3, 'HAMMOND ANN ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 118021, '2011-05-17', 916770.00, 'A'), +(1698, 3, 'RODRIGUEZ PARAJA MARIA CRISTINA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-07-15', 649080.00, 'A'), +(1699, 3, 'RUIZ DIAZ JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-06-24', 359540.00, 'A'), +(17, 1, 'SUAREZ CUEVAS FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 129499, '2011-08-31', 149640.00, 'A'), +(170, 1, 'MARROQUIN AVILA FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-04', 965840.00, 'A'), +(1700, 3, 'BACCHELLI ORTEGA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 126180, '2011-06-07', 850450.00, 'A'), +(1701, 3, 'IGLESIAS JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 188640, '2010-09-14', 173630.00, 'A'), +(1702, 3, 'GUTIEZ CUEVAS JULIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 188640, '2010-09-07', 316800.00, 'A'), +('CELL4183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1704, 3, 'CALDEIRO ZAMORA JESUS CARMELO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2011-05-09', 365230.00, 'A'), +(1705, 3, 'ARBONA ABASCAL MANUEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-02-27', 636760.00, 'A'), +(1706, 3, 'COHEN AMAR MOISES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 196766, '2011-05-20', 88120.00, 'A'), +(1708, 3, 'FERNANDEZ COBOS ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2010-11-09', 387220.00, 'A'), +(1709, 3, 'CANAL VIVES JOAQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 196234, '2011-09-27', 345150.00, 'A'), +(171, 1, 'LADINO MORENO JAVIER ORLANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-25', 89230.00, 'A'), +(1710, 5, 'GARCIA BERTRAND HECTOR', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-04-07', 564100.00, 'A'), +(1711, 1, 'CONSTANZA MARIN ESCOBAR', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127799, '2011-03-24', 785060.00, 'A'), +(1712, 1, 'NUNEZ BATALLA FAUSTINO JORGE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-26', 232970.00, 'A'), +(1713, 3, 'VILORA LAZARO ERICK MARTIN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-26', 809690.00, 'A'), +(1715, 3, 'ELLIOT EDWARD JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-09-26', 318660.00, 'A'), +(1716, 3, 'ALCALDE ORTENO MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 117002, '2011-07-23', 544650.00, 'A'), +(1717, 3, 'CIARAVELLA STEFANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 231989, '2011-06-13', 767260.00, 'A'), +(1718, 3, 'URRA GONZALEZ PEDRO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118777, '2011-05-02', 202370.00, 'A'), +(172, 1, 'GUERRERO ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-07-15', 548610.00, 'A'), +(1720, 3, 'JIMENEZ RODRIGUEZ ANNET', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-05-25', 943140.00, 'A'), +(1721, 3, 'LESCAY CASTELLANOS ARNALDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', 585570.00, 'A'), +(1722, 3, 'OCHOA AGUILAR ELIADES', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-25', 98410.00, 'A'), +(1723, 3, 'RODRIGUEZ NUNES JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 735340.00, 'A'), +(1724, 3, 'OCHOA BUSTAMANTE ELIADES', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-25', 381480.00, 'A'), +(1725, 3, 'MARTINEZ NIEVES JOSE ANGEL', 191821112, 'CRA 25 CALLE 100', + '919@yahoo.es', '2011-02-03', 127591, '2011-05-25', 701360.00, 'A'), +(1727, 3, 'DRAGONI ALAIN ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-25', 707850.00, 'A'), +(1728, 3, 'FERNANDEZ LOPEZ MARCOS ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-25', 452090.00, 'A'), +(1729, 3, 'MATURELL ROMERO JORGE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-05-25', 136880.00, 'A'), +(173, 1, 'RUIZ CEBALLOS ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-04', 475380.00, 'A'), +(1730, 3, 'LARA CASTELLANO LENNIS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-25', 328150.00, 'A'), +(1731, 3, 'GRAHAM CRISTOPHER DRAKE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 203079, '2011-06-27', 230120.00, 'A'), +(1732, 3, 'TORRE LUCA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 188640, '2011-05-11', 166120.00, 'A'), +(1733, 3, 'OCHOA HIDALGO EGLIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-05-25', 140250.00, 'A'), +(1734, 3, 'LOURERIO DELACROIX FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 116511, '2011-09-28', 202900.00, 'A'), +(1736, 3, 'LEVIN FIORELLI ANDRES', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 116366, '2011-08-07', 360110.00, 'A'), +(1739, 3, 'BERRY R ALBERT', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 216125, '2011-08-16', 22170.00, 'A'), +(174, 1, 'NIETO PARRA SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-05-11', 731040.00, 'A'), +(1740, 3, 'MARSHALL ROBERT SHEPARD', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 150159, '2011-03-09', 62860.00, 'A'), +(1741, 3, 'HENANDEZ ROY CHRISTOPHER JOHN PATRICK', 191821112, + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 179614, '2011-09-26', + 247780.00, 'A'), +(1742, 3, 'LANDRY GUILLAUME', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 232263, '2011-04-27', 50330.00, 'A'), +(1743, 3, 'VUCETIC ZELJKO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 232263, '2011-07-25', 508320.00, 'A'), +(1744, 3, 'DE JUANA CELASCO MARIA DEL CARMEN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188640, '2011-04-16', 390620.00, 'A'), +(1745, 3, 'LABONTE RONALD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 269033, '2011-09-28', 428120.00, 'A'), +(1746, 3, 'NEWMAN PHILIP MARK', 191821112, 'CRA 25 CALLE 100', '557@gmail.com', + '2011-02-03', 231373, '2011-07-25', 968750.00, 'A'), +(1747, 3, 'GRENIER MARIE PIERRE ', 191821112, 'CRA 25 CALLE 100', + '409@facebook.com', '2011-02-03', 244158, '2011-07-03', 559370.00, 'A'), +(1749, 3, 'SHINDER GARY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 244158, '2011-07-25', 775000.00, 'A'), +(175, 3, 'GALLEGOS BASTIDAS CARLOS EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 133211, '2011-08-10', 229090.00, 'A'), +(1750, 3, 'LOPEZ DE GOICOCHEA ZABALA FRANCISCO JAVIER', 191821112, + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-13', + 203120.00, 'A'), +(1751, 3, 'CORRAL BELLON MANUEL', 191821112, 'CRA 25 CALLE 100', + '538@yahoo.com', '2011-02-03', 177443, '2011-05-02', 690610.00, 'A'), +(1752, 3, 'DE SOLA SOLVAS JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2011-10-02', 843700.00, 'A'), +(1753, 3, 'GARCIA ALCALA DIAZ REGANON EVA MARIA', 191821112, 'CRA 25 CALLE 100', + '398@yahoo.com', '2011-02-03', 118777, '2010-03-15', 146680.00, 'A'), +(1754, 3, 'BIELA VILIAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 132958, '2011-08-16', 202290.00, 'A'), +(1755, 3, 'GUIOT CANO JUAN PATRICK', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 232263, '2011-05-23', 571390.00, 'A'), +(1756, 3, 'JIMENEZ DIAZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-03-27', 250100.00, 'A'), +(1757, 3, 'FOX ELEANORE MAE', 191821112, 'CRA 25 CALLE 100', '117@yahoo.com', + '2011-02-03', 190393, '2011-05-04', 536340.00, 'A'), +(1758, 3, 'TANG VAN SON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 132958, '2011-05-07', 931400.00, 'A'), +(1759, 3, 'SUTTON PETER RONALD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 281673, '2011-06-01', 47960.00, 'A'), +(176, 1, 'GOMEZ IVAN', 191821112, 'CRA 25 CALLE 100', '438@yahoo.com.mx', + '2011-02-03', 127591, '2008-04-09', 952310.00, 'A'), +(1762, 3, 'STOODY MATTHEW FRANCIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-07-21', 84320.00, 'A'), +(1763, 3, 'SEIX MASO ARNAU', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 150699, '2011-05-24', 168880.00, 'A'), +(1764, 3, 'FERNANDEZ REDEL RAQUEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-09-14', 591440.00, 'A'), +(1765, 3, 'PORCAR DESCALS VICENNTE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 176745, '2011-04-24', 450580.00, 'A'), +(1766, 3, 'PEREZ DE VILLEGAS TRILLO FIGUEROA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 196234, '2011-05-17', 478560.00, 'A'), +('CELL4198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1767, 3, 'CELDRAN DEGANO ANGEL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 196234, '2011-05-17', 41040.00, 'A'), +(1768, 3, 'TERRAGO MARI FERRAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 188640, '2011-09-30', 769550.00, 'A'), +(1769, 3, 'SZUCHOVSZKY GERGELY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 250256, '2011-05-23', 724630.00, 'A'), +(177, 1, 'SEBASTIAN TORO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127443, '2011-07-14', 74270.00, 'A'), +(1771, 3, 'TORIBIO JOSE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 226612, '2011-09-04', 398570.00, 'A'), +(1772, 3, 'JOSE LUIS BAQUERA PEIRONCELLY', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 133535, '2010-10-19', 49360.00, 'A'), +(1773, 3, 'MADARIAGA VILLANUEVA MIGUEL', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 188640, '2011-04-12', 51090.00, 'A'), +(1774, 3, 'VILLENA BORREGO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '830@terra.com.co', '2011-02-03', 188640, '2011-07-19', 107400.00, 'A'), +(1776, 3, 'VILAR VILLALBA JOSE LUIS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 180124, '2011-09-20', 596330.00, 'A'), +(1777, 3, 'CAGIGAL ORTIZ MACARENA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 214283, '2011-09-14', 830530.00, 'A'), +(1778, 3, 'KORBA ATTILA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 250256, '2011-09-27', 363650.00, 'A'), +(1779, 3, 'KORBA-ELIAS BARBARA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 250256, '2011-09-27', 326670.00, 'A'), +(178, 1, 'AMSILI COHEN HANAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2009-08-29', 514450.00, 'A'), +(1780, 3, 'PINDADO GOMEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 189053, '2011-04-26', 542400.00, 'A'), +(1781, 3, 'IBARRONDO GOMEZ GRACIA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-09-21', 731990.00, 'A'), +(1782, 3, 'MUNGUIRA GONZALEZ JUAN JULIAN', 191821112, 'CRA 25 CALLE 100', + '54@hotmail.es', '2011-02-03', 188640, '2011-09-06', 32730.00, 'A'), +(1784, 3, 'LANDMAN PIETER MARINUS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 294861, '2011-09-22', 740260.00, 'A'), +(1789, 3, 'SUAREZ AINARA ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 188640, '2011-05-17', 503470.00, 'A'), +(179, 1, 'CARO JUNCO GUIOVANNY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-07-03', 349420.00, 'A'), +(1790, 3, 'MARTINEZ CHACON JOSE JOAQUIN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2011-05-20', 592220.00, 'A'), +(1792, 3, 'MENDEZ DEL RION LUCIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 120639, '2011-06-16', 476910.00, 'A'), +(1793, 3, 'VERHULST LAMBERTUS CORNELIA FRANCISCUS ALPHONSUS', 191821112, + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 295420, '2011-07-04', + 32410.00, 'A'), +(1794, 3, 'YANEZ YAGUE JESUS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 188640, '2011-07-10', 731290.00, 'A'), +(1796, 3, 'GOMEZ ZORRILLA AMATE JOSE MARIOA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 188640, '2011-07-12', 602380.00, 'A'), +(1797, 3, 'LAIZ MORENO ENEKO', 191821112, 'CRA 25 CALLE 100', '219@gmail.com', + '2011-02-03', 127591, '2011-08-05', 334150.00, 'A'), +(1798, 3, 'MORODO RUIZ RUBEN DAVID', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-09-14', 863620.00, 'A'), +(18, 1, 'GARZON VARGAS GUILLERMO FEDERICO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-29', 879110.00, 'A'), +(1800, 3, 'ALFARO FAUS MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 196234, '2011-09-14', 987410.00, 'A'), +(1801, 3, 'MORRALLA VALLVERDU ENRIC', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 194601, '2011-07-18', 990070.00, 'A'), +(1802, 3, 'BALBASTRE TEJEDOR JUAN VICENTE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 182860, '2011-08-24', 988120.00, 'A'), +(1803, 3, 'MINGO REIZ FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 188640, '2010-03-24', 970400.00, 'A'), +(1804, 3, 'IRURETA FERNANDEZ JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 214283, '2011-09-10', 887630.00, 'A'), +(1807, 3, 'NEBRO MELLADO JOSE JUAN', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 168996, '2011-08-15', 278540.00, 'A'), +(1808, 3, 'ALBERQUILLA OJEDA JOSE DANIEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2011-09-27', 477070.00, 'A'), +(1809, 3, 'BUENDIA NORTE MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 131401, '2011-07-08', 549720.00, 'A'), +(181, 1, 'CASTELLANOS FLORES RODRIGO ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-18', 970470.00, 'A'), +(1811, 3, 'HILBERT ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 196234, '2011-09-08', 937830.00, 'A'), +(1812, 3, 'GONZALES PINTO COTERILLO ADOLFO LORENZO', 191821112, + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 214283, '2011-09-10', + 736970.00, 'A'), +(1813, 3, 'ARQUES ALVAREZ JOSE RICARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-04-04', 871360.00, 'A'), +(1817, 3, 'CLAUSELL LOW ROBERTO EMILIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132775, '2011-09-28', 348770.00, 'A'), +(1818, 3, 'BELICHON MARTINEZ JESUS ALVARO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-04-12', 327010.00, 'A'), +(182, 1, 'GUZMAN NIETO JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-09-20', 241130.00, 'A'), +(1821, 3, 'LINATI DE PUIG JORGE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 196234, '2011-05-18', 47210.00, 'A'), +(1823, 3, 'SINBARRERA ROMA ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 196234, '2011-09-08', 598380.00, 'A'), +(1826, 2, 'JUANES GARATE BRUNO ', 191821112, 'CRA 25 CALLE 100', + '301@gmail.com', '2011-02-03', 118777, '2011-08-21', 877650.00, 'A'), +(1827, 3, 'BOLOS GIMENO ROGELIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 200247, '2010-11-28', 555470.00, 'A'), +(1828, 3, 'ZABALA ASTIGARRAGA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 188640, '2011-09-20', 144410.00, 'A'), +(1831, 3, 'MAPELLI CAFFARENA BORJA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 172381, '2011-09-04', 58200.00, 'A'), +(1833, 3, 'LARMONIE LESLIE MARTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-05-30', 604840.00, 'A'), +(1834, 3, 'WILLEMS ROBERT-JAN MICHAEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 288531, '2011-09-05', 756530.00, 'A'), +(1835, 3, 'ANJEMA LAURENS JAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 128662, '2011-08-29', 968140.00, 'A'), +(1836, 3, 'VERHULST HENRICUS LAMBERTUS MARIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 295420, '2011-04-03', 571100.00, 'A'), +(1837, 3, 'PIERROT JOZEF MARIE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 288733, '2011-05-18', 951100.00, 'A'), +(1838, 3, 'EIKELBOOM HIDDE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-09-02', 42210.00, 'A'), +(1839, 3, 'TAMBINI GOMEZ DE MUNG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 180063, '2011-04-24', 357740.00, 'A'), +(1840, 3, 'MAGANA PEREZ GERARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 135360, '2011-09-28', 662060.00, 'A'), +(1841, 3, 'COURTOISIE BEYHAUT RAFAEL JUAN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 116366, '2011-09-05', 237070.00, 'A'), +(1842, 3, 'ROJAS BENJAMIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-06-13', 199170.00, 'A'), +(1843, 3, 'GARCIA VICENTE EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 150699, '2011-08-10', 284650.00, 'A'), +('CELL4291', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1844, 3, 'CESTTI LOPEZ RAFAEL GUSTAVO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 144215, '2011-09-27', 825750.00, 'A'), +(1845, 3, 'URTECHO LOPEZ ARMANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 139272, '2011-09-28', 274800.00, 'A'), +(1846, 3, 'SEGURA ESPINOZA ARMANDO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 135360, '2011-09-28', 896730.00, 'A'), +(1847, 3, 'GONZALEZ VEGA LUIS PASTOR', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 135360, '2011-05-18', 659240.00, 'A'), +(185, 1, 'AYALA CARDENAS NELSON MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 855960.00, 'A'), +(1850, 3, 'ROTZINGER ROA KLAUS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 116366, '2011-09-12', 444250.00, 'A'), +(1851, 3, 'FRANCO DE LEON SEBASTIAN', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 116366, '2011-04-26', 63840.00, 'A'), +(1852, 3, 'RIVAS GAGNONI LUIS ARMANDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 135360, '2011-05-18', 986440.00, 'A'), +(1853, 3, 'BARRETO VELASQUEZ JOEL FERNANDO', 191821112, 'CRA 25 CALLE 100', + '104@hotmail.es', '2011-02-03', 116511, '2011-04-27', 740670.00, 'A'), +(1854, 3, 'SEVILLA AMAYA ORLANDO', 191821112, 'CRA 25 CALLE 100', + '264@yahoo.com', '2011-02-03', 136995, '2011-05-18', 744020.00, 'A'), +(1855, 3, 'VALFRE BRALICH ELEONORA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 116366, '2011-06-06', 498080.00, 'A'), +(1857, 3, 'URDANETA DIAMANTES DIEGO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 132958, '2011-09-23', 797590.00, 'A'), +(1858, 3, 'RAMIREZ ALVARADO ROBERT JESUS', 191821112, 'CRA 25 CALLE 100', + '290@yahoo.com.mx', '2011-02-03', 127591, '2011-09-18', 212850.00, 'A'), +(1859, 3, 'GUTTNER DENNIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-06-25', 671470.00, 'A'), +(186, 1, 'CARRASCO SUESCUN ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-15', 36620.00, 'A'), +(1861, 3, 'HEGEMANN JOACHIM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-06-25', 579710.00, 'A'), +(1862, 3, 'MALCHER INGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 292243, '2011-06-23', 742060.00, 'A'), +(1864, 3, 'HOFFMEISTER MALTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 128206, '2011-09-06', 629770.00, 'A'), +(1865, 3, 'BOHME ALEXANDRA LUCE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-09-14', 235260.00, 'A'), +(1866, 3, 'HAMMAN FRANK THOMAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-08-13', 286980.00, 'A'), +(1867, 3, 'GOPPERT MARKUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 145135, '2011-09-05', 729150.00, 'A'), +(1868, 3, 'BISCARO CAROLINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 118777, '2011-09-16', 784790.00, 'A'), +(1869, 3, 'MASCHAT SEBASTIAN STEPHAN ANDREAS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-02-03', 736520.00, 'A'), +(1870, 3, 'WALTHER DANIEL CLAUS PETER', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-03-24', 328220.00, 'A'), +(1871, 3, 'NENTWIG DANIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 289697, '2011-02-03', 431550.00, 'A'), +(1872, 3, 'KARUTZ ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127662, '2011-03-17', 173090.00, 'A'), +(1875, 3, 'KAY KUNNE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 289697, '2011-03-18', 961400.00, 'A'), +(1876, 2, 'SCHLUMPF IVANA PATRICIA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 245206, '2011-03-28', 802690.00, 'A'), +(1877, 3, 'RODRIGUEZ BUSTILLO CONSUELO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 139067, '2011-03-21', 129280.00, 'A'), +(1878, 1, 'REHWALDT RICHARD ULRICH', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 289697, '2009-10-25', 238320.00, 'A'), +(1880, 3, 'FONSECA BEHRENS MANUELA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-18', 303810.00, 'A'), +(1881, 3, 'VOGEL MIRKO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-06-09', 107790.00, 'A'), +(1882, 3, 'WU WEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', + 289697, '2011-03-04', 627520.00, 'A'), +(1884, 3, 'KADOLSKY ANKE SIGRID', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 289697, '2010-10-07', 188560.00, 'A'), +(1885, 3, 'PFLUCKER PLENGE CARLOS HERNAN', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 239124, '2011-08-15', 500140.00, 'A'), +(1886, 3, 'PENA LAGOS MELENIA PATRICIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 935020.00, 'A'), +(1887, 3, 'CALVANO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118942, '2011-05-02', 174690.00, 'A'), +(1888, 3, 'KUHLEN LOTHAR WILHELM', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 289232, '2011-08-30', 68390.00, 'A'), +(1889, 3, 'QUIJANO RICO SOFIA VICTORIA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 221939, '2011-06-13', 817890.00, 'A'), +(189, 1, 'GOMEZ TRUJILLO SERGIO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-17', 985980.00, 'A'), +(1890, 3, 'SCHILBERZ KARIN', 191821112, 'CRA 25 CALLE 100', '405@facebook.com', + '2011-02-03', 287570, '2011-06-23', 884260.00, 'A'), +(1891, 3, 'SCHILBERZ SOPHIE CAHRLOTTE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 287570, '2011-06-23', 967640.00, 'A'), +(1892, 3, 'MOLINA MOLINA MILAGRO DE SUYAPA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 139844, '2011-07-26', 185410.00, 'A'), +(1893, 3, 'BARRIENTOS ESCALANTE RAFAEL ALVARO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 139067, '2011-05-18', 24110.00, 'A'), +(1895, 3, 'ENGELS FRANZBERNARD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 292243, '2011-07-01', 749430.00, 'A'), +(1896, 3, 'FRIEDHOFF SVEN WILHEM', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 289697, '2010-10-31', 54090.00, 'A'), +(1897, 3, 'BARTELS CHRISTIAN JOHAN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 133535, '2011-07-25', 22160.00, 'A'), +(1898, 3, 'NILS REMMEL', 191821112, 'CRA 25 CALLE 100', '214@gmail.com', + '2011-02-03', 256231, '2011-08-05', 948530.00, 'A'), +(1899, 3, 'DR SCHEIBE MATTHIAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 252431, '2011-09-26', 676150.00, 'A'), +(19, 1, 'RIANO ROMERO ALBERTO ELIAS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2009-12-14', 946630.00, 'A'), +(190, 1, 'LLOREDA ORTIZ FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2010-12-20', 30860.00, 'A'), +(1900, 3, 'CARRASCO CATERIANO PEDRO', 191821112, 'CRA 25 CALLE 100', + '255@hotmail.com', '2011-02-03', 286578, '2011-05-02', 535180.00, 'A'), +(1901, 3, 'ROSENBER DIRK PETER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-09-29', 647450.00, 'A'), +(1902, 3, 'LAUBACH JOHANNES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 289697, '2011-05-01', 631720.00, 'A'), +(1904, 3, 'GRUND STEFAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 256231, '2011-08-05', 185990.00, 'A'), +(1905, 3, 'GRUND BEATE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 256231, '2011-08-05', 281280.00, 'A'), +(1906, 3, 'CORZO PAULA MIRIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 180063, '2011-08-02', 848400.00, 'A'), +(1907, 3, 'OESTERHAUS CORNELIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 256231, '2011-03-16', 398170.00, 'A'), +(1908, 1, 'JUAN SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127300, '2011-05-12', 445660.00, 'A'), +(1909, 3, 'VAN ZIJL CHRISTIAN ANDREAS', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 286785, '2011-09-24', 33800.00, 'A'), +(191, 1, 'CASTANEDA CABALLERO JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-28', 196370.00, 'A'), +(1910, 3, 'LORZA RUIZ MYRIAM ESPERANZA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-04-29', 831990.00, 'A'), +(192, 1, 'ZEA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-09-09', 889270.00, 'A'), +(193, 1, 'VELEZ VICTOR MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 128662, '2010-10-22', 857250.00, 'A'), +(194, 1, 'ARCINIEGAS GOMEZ ISMAEL', 191821112, 'CRA 25 CALLE 100', + '937@hotmail.com', '2011-02-03', 127591, '2011-05-18', 618450.00, 'A'), +(195, 1, 'LINAREZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-09-12', 520470.00, 'A'), +(1952, 3, 'BERND ERNST HEINZ SCHUNEMANN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 255673, '2011-09-04', 796820.00, 'A'), +(1953, 3, 'BUCHNER RICHARD ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-09-17', 808430.00, 'A'), +(1954, 3, 'CHO YONG BEOM', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 173192, '2011-02-07', 651670.00, 'A'), +(1955, 3, 'BERNECKER WALTER LUDWIG', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 256231, '2011-04-03', 833080.00, 'A'), +(1956, 3, 'SCHIERENBECK THOMAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 256231, '2011-05-03', 210380.00, 'A'), +(1957, 3, 'STEGMANN WOLF DIETER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 128662, '2011-08-27', 552650.00, 'A'), +(1958, 3, 'LEBAGE GONZALEZ VALENTINA CECILIA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 131272, '2011-07-29', 132130.00, 'A'), +(1959, 3, 'CABRERA MACCHI JOSE ', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 180063, '2011-08-02', 2700.00, 'A'), +(196, 1, 'OTERO BERNAL ALVARO ERNESTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-04-29', 747030.00, 'A'), +(1960, 3, 'KOO BONKI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', + 127591, '2011-05-15', 617110.00, 'A'), +(1961, 3, 'JODJAHN DE CARVALHO BEIRAL FLAVIA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118942, '2011-07-05', 77460.00, 'A'), +(1963, 3, 'VIEIRA ROCHA MARQUES ELIANE TEREZINHA', 191821112, + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118402, '2011-09-13', + 447430.00, 'A'), +(1965, 3, 'KELLEN CRISTINA GATTI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 126180, '2011-07-01', 804020.00, 'A'), +(1966, 3, 'CHAVEZ MARLON TENORIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-25', 132310.00, 'A'), +(1967, 3, 'SERGIO COZZI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 125750, '2011-08-28', 249500.00, 'A'), +(1968, 3, 'REZENDE LIMA JOSE MARCIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118777, '2011-08-23', 850570.00, 'A'), +(1969, 3, 'RAMOS PEDRO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 118942, '2011-08-03', 504330.00, 'A'), +(1972, 3, 'ADAMS THOMAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118942, '2011-08-11', 774000.00, 'A'), +(1973, 3, 'WALESKA NUCINI BOGO ANDREA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-23', 859690.00, 'A'), +(1974, 3, 'GERMANO PAULO BUNN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 118439, '2011-08-30', 976440.00, 'A'), +(1975, 3, 'CALDEIRA FILHO RUBENS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 118942, '2011-07-18', 303120.00, 'A'), +(1976, 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 119814, '2011-09-08', 586290.00, 'A'), +(1977, 3, 'GAMAS MARIA CRISTINA ALVES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118777, '2011-09-19', 22070.00, 'A'), +(1979, 3, 'PORTO WEBER FERREIRA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-07', 691340.00, 'A'), +(1980, 3, 'FONSECA LAURO PINTO', 191821112, 'CRA 25 CALLE 100', + '104@hotmail.es', '2011-02-03', 127591, '2011-08-16', 402140.00, 'A'), +(1981, 3, 'DUARTE ELENA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 118777, '2011-06-15', 936710.00, 'A'), +(1983, 3, 'CECHINEL CRISTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 118942, '2011-06-12', 575530.00, 'A'), +(1984, 3, 'BATISTA PINHERO JOAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 118777, '2011-04-25', 446250.00, 'A'), +(1987, 1, 'ISRAEL JOSE MAXWELL', 191821112, 'CRA 25 CALLE 100', '936@gmail.com', + '2011-02-03', 125894, '2011-07-04', 408350.00, 'A'), +(1988, 3, 'BATISTA CARVALHO RODRIGO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118864, '2011-09-19', 488410.00, 'A'), +(1989, 3, 'RENO DA SILVEIRA EDNEIA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118867, '2011-05-03', 216990.00, 'A'), +(199, 1, 'BASTO CORREA FERNANDO ANTONIO ', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-21', 616860.00, 'A'), +(1990, 3, 'SEIDLER KOHNERT G TEIXEIRA CHRISTINA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 119814, '2011-08-23', 619730.00, 'A'), +(1992, 3, 'GUIMARAES COSTA LEONARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2011-04-20', 379090.00, 'A'), +(1993, 3, 'BOTTA RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 118777, '2011-09-16', 552510.00, 'A'), +(1994, 3, 'ARAUJO DA SILVA MARCELO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 125666, '2011-08-03', 625260.00, 'A'), +(1995, 3, 'DA SILVA FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 118864, '2011-04-14', 468760.00, 'A'), +(1996, 3, 'MANFIO RODRIGUEZ FERNANDO', 191821112, 'CRA 25 CALLE 100', + '974@yahoo.com', '2011-02-03', 118777, '2011-03-23', 468040.00, 'A'), +(1997, 3, 'NEIVA MORENO DE SOUZA CRISTIANE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-24', 933900.00, 'A'), +(2, 3, 'CHEEVER MICHAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-07-04', 560090.00, 'I'), +(2000, 3, 'ROCHA GUSTAVO ADRIANO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118288, '2011-07-25', 830340.00, 'A'), +(2001, 3, 'DE ANDRADE CARVALHO VIRGINIA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118942, '2011-08-11', 575760.00, 'A'), +(2002, 3, 'CAVALCANTI PIERECK GUILHERME', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 180063, '2011-08-01', 387770.00, 'A'), +(2004, 3, 'HOEGEMANN RAMOS CARLOS FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-04', 894550.00, 'A'), +(201, 1, 'LUIS FERNANDO AREVALO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-06-17', 156730.00, 'A'), +(2010, 3, 'GOMES BUCHALA JORGE FERNANDO ', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-23', 314800.00, 'A'), +(2011, 3, 'MARTINS SIMAIKA CATIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 118777, '2011-06-01', 155020.00, 'A'), +(2012, 3, 'MONICA CASECA BUENO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 118777, '2011-05-16', 830710.00, 'A'), +(2013, 3, 'ALBERTAL MARCELO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118000, '2010-09-10', 688480.00, 'A'), +(2015, 3, 'GOMES CANTARELLI JAIRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118761, '2011-01-11', 685940.00, 'A'), +(2016, 3, 'CADETTI GARBELLINI ENILICE CRISTINA ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-11', 578870.00, 'A'), +(2017, 3, 'SPIELKAMP KLAUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 150699, '2011-03-28', 836540.00, 'A'), +(2019, 3, 'GARES HENRI PHILIPPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 135190, '2011-04-05', 720730.00, 'A'), +('CELL4308', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(202, 1, 'LUCIO CHAUSTRE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-19', 179240.00, 'A'), +(2023, 3, 'GRECO DE RESENDELUIZ ALFREDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 119814, '2011-04-25', 647940.00, 'A'), +(2024, 3, 'CORTINA EVANDRO JOAO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118922, '2011-05-12', 153970.00, 'A'), +(2026, 3, 'BASQUES MOURA GERALDO CARLOS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 119814, '2011-09-07', 668250.00, 'A'), +(2027, 3, 'DA SILVA VALDECIR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-08-23', 863150.00, 'A'), +(2028, 3, 'CHI MOW YUNG IVAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-08-21', 311000.00, 'A'), +(2029, 3, 'YUNG MYRA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-08-21', 965570.00, 'A'), +(2030, 3, 'MARTINS RAMALHO PATRICIA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2011-03-23', 894830.00, 'A'), +(2031, 3, 'DE LEMOS RIBEIRO GILBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118951, '2011-07-29', 577430.00, 'A'), +(2032, 3, 'AIROLDI CLAUDIO', 191821112, 'CRA 25 CALLE 100', '973@terra.com.co', + '2011-02-03', 127591, '2011-09-28', 202650.00, 'A'), +(2033, 3, 'ARRUDA MENDES HEILMANN IONE TEREZA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 120773, '2011-09-07', 280990.00, 'A'), +(2034, 3, 'TAVARES DE CARVALHO EDUARDO JOSE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118942, '2011-08-03', 796980.00, 'A'), +(2036, 3, 'FERNANDES ALARCON RAFAEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118777, '2011-08-28', 318730.00, 'A'), +(2037, 3, 'SUCHODOLKI SERGIO GUSMAO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 190393, '2011-07-13', 167870.00, 'A'), +(2039, 3, 'ESTEVES MARCAL MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-02-24', 912100.00, 'A'), +(2040, 3, 'CORSI LUIZ ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 118777, '2011-03-25', 911080.00, 'A'), +(2041, 3, 'LOPEZ MONICA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 118795, '2011-05-03', 819090.00, 'A'), +(2042, 3, 'QUINTANILHA LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-16', 362230.00, 'A'), +(2043, 3, 'DE CARLI BRUNO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 118777, '2011-05-03', 353890.00, 'A'), +(2045, 3, 'MARINO FRANCA MARILIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 118777, '2011-07-04', 352060.00, 'A'), +(2048, 3, 'VOIGT ALPHONSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 118439, '2010-11-22', 384150.00, 'A'), +(2049, 3, 'ALENCAR ARIMA TATIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118777, '2011-05-23', 408590.00, 'A'), +(2050, 3, 'LINIS DE ALMEIDA NEILSON', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 125666, '2011-08-03', 890480.00, 'A'), +(2051, 3, 'PINHEIRO DE CASTRO BENETI', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118942, '2011-08-09', 226640.00, 'A'), +(2052, 3, 'ALVES DO LAGO HELMANN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 118942, '2011-08-01', 461770.00, 'A'), +(2053, 3, 'OLIVO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-03-22', 628900.00, 'A'), +(2054, 3, 'WILLIAM DOMINGUES SERGIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118085, '2011-08-23', 759220.00, 'A'), +(2055, 3, 'DE SOUZA MENEZES KLEBER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118777, '2011-04-25', 909400.00, 'A'), +(2056, 3, 'CABRAL NEIDE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-09-16', 269340.00, 'A'), +(2057, 3, 'RODRIGUES RENATO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118777, '2011-06-15', 618500.00, 'A'), +(2058, 3, 'SPADALE PEDRO JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 118942, '2011-08-03', 284490.00, 'A'), +(2059, 3, 'MARTINS DE ALMEIDA GUSTAVO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118942, '2011-09-28', 566920.00, 'A'), +(206, 1, 'TORRES HEBER MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 128662, '2011-01-29', 643210.00, 'A'), +(2060, 3, 'IKUNO CELINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 118777, '2011-06-08', 981170.00, 'A'), +(2061, 3, 'DAL BELLO FABIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 129499, '2011-08-20', 205050.00, 'A'), +(2062, 3, 'BENATES ADRIANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-08-23', 81770.00, 'A'), +(2063, 3, 'CARDOSO ALEXANDRE ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-08-23', 793690.00, 'A'), +(2064, 3, 'ZANIOLO DE SOUZA CARLOS HENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118777, '2011-09-19', 723130.00, 'A'), +(2065, 3, 'DA SILVA LUIZ SIDNEI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118777, '2011-03-30', 234590.00, 'A'), +(2066, 3, 'RUFATO DE SOUZA LUIZ FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118777, '2011-08-29', 3560.00, 'A'), +(2067, 3, 'DE MEDEIROS LUCIANA', 191821112, 'CRA 25 CALLE 100', + '994@yahoo.com.mx', '2011-02-03', 118777, '2011-09-10', 314020.00, 'A'), +(2068, 3, 'WOLFF PIAZERA DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 118255, '2011-06-15', 559430.00, 'A'), +(2069, 3, 'DA SILVA FORTUNA MARINA CLAUDIA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 133535, '2011-09-23', 855100.00, 'A'), +(2070, 3, 'PEREIRA BORGES LUCILA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-26', 597210.00, 'A'), +(2072, 3, 'PORROZZI DE ALMEIDA RENATO', 191821112, 'CRA 25 CALLE 100', + '812@hotmail.es', '2011-02-03', 127591, '2011-06-13', 312120.00, 'A'), +(2073, 3, 'KALICHSZTEINN RICARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118777, '2011-03-23', 298330.00, 'A'), +(2074, 3, 'OCCHIALINI GUIMARAES ANA PAULA', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118777, '2011-08-03', 555310.00, 'A'), +(2075, 3, 'MAZZUCO FONTES LUIZ ROBERTO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2011-05-23', 881570.00, 'A'), +(2078, 3, 'TRAN DINH VAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 132958, '2011-05-07', 98560.00, 'A'), +(2079, 3, 'NGUYEN THI LE YEN', 191821112, 'CRA 25 CALLE 100', + '249@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 298200.00, 'A'), +(208, 1, 'GOMEZ GONZALEZ JORGE MARIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-12', 889010.00, 'A'), +(2080, 3, 'MILA DE LA ROCA JOHANA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132958, '2011-01-26', 195350.00, 'A'), +(2081, 3, 'RODRIGUEZ DE FLORES LOURDES MARIA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-16', 82120.00, 'A'), +(2082, 3, 'FLORES PEREZ FRANCISCO GUILLERMO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-23', 824550.00, 'A'), +(2083, 3, 'FRAGACHAN BETANCOUT FRANCISCO JO SE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132958, '2011-07-04', 876400.00, 'A'), +(2084, 3, 'GAFARO MOLINA CARLOS JULIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-03-22', 908370.00, 'A'), +(2085, 3, 'CACERES REYES JORGEANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 117002, '2011-08-11', 912630.00, 'A'), +(2086, 3, 'ALVAREZ RODRIGUEZ VICTOR ROGELIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 132958, '2011-05-23', 838040.00, 'A'), +(2087, 3, 'GARCES ALVARADO JHAGEIMA JOSEFINA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 132958, '2011-04-29', 452320.00, 'A'), +('CELL4324', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(2089, 3, 'FAVREAU CHOLLET JEAN PIERRE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132554, '2011-05-27', 380470.00, 'A'), +(209, 1, 'CRUZ RODRIGEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', + '316@hotmail.es', '2011-02-03', 127591, '2011-06-28', 953870.00, 'A'), +(2090, 3, 'GARAY LLUCH URBI ALAIN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132958, '2011-03-13', 659870.00, 'A'), +(2091, 3, 'LETICIA LETICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-06-07', 157950.00, 'A'), +(2092, 3, 'VELASQUEZ RODULFO RAMON ARISTIDES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-23', 810140.00, 'A'), +(2093, 3, 'PEREZ EDGAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-06-06', 576850.00, 'A'), +(2094, 3, 'PEREZ MARIELA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-06-07', 453840.00, 'A'), +(2095, 3, 'PETRUZZI MANGIARANO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 132958, '2011-03-27', 538650.00, 'A'), +(2096, 3, 'LINARES GORI RICARDO RAMON', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-05-12', 331730.00, 'A'), +(2097, 3, 'LAIRET OLIVEROS CAROLINE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-25', 42680.00, 'A'), +(2099, 3, 'JIMENEZ GARCIA FERNANDO JOSE', 191821112, 'CRA 25 CALLE 100', + '78@hotmail.es', '2011-02-03', 132958, '2011-07-21', 963110.00, 'A'), +(21, 1, 'RUBIO ESCOBAR RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2009-05-21', 639240.00, 'A'), +(2100, 3, 'ZABALA MILAGROS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-07-20', 160860.00, 'A'), +(2101, 3, 'VASQUEZ CRUZ NICOLEDANIELA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 132958, '2011-07-31', 914990.00, 'A'), +(2102, 3, 'REYES FIGUERA RAMON ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 126674, '2011-04-03', 92340.00, 'A'), +(2104, 3, 'RAMIREZ JIMENEZ MARYLIN CAROLINA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 132958, '2011-06-14', 306760.00, 'A'), +(2105, 3, 'TELLES GUILLEN INNA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 132958, '2011-09-07', 383520.00, 'A'), +(2106, 3, 'ALVAREZ CARMEN MARINA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-07-20', 997340.00, 'A'), +(2107, 3, 'MARTINEZ YRIGOYEN NABUCODONOSOR', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 132958, '2011-07-21', 836110.00, 'A'), +(2108, 5, 'FERNANDEZ RUIZ IGNACIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-01', 188530.00, 'A'), +(211, 1, 'RIVEROS GARCIA JORGE IVAN', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-01', 650050.00, 'A'), +(2110, 3, 'CACERES REYES JORGE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 117002, '2011-08-08', 606030.00, 'A'), +(2111, 3, 'GELFI MARCOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 199862, '2011-05-17', 727190.00, 'A'), +(2112, 3, 'CERDA CASTILLO CARMEN GLORIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', 817870.00, 'A'), +(2113, 3, 'RANGEL FERNANDEZ LEONARDO JOSE', 191821112, 'CRA 25 CALLE 100', + '856@hotmail.com', '2011-02-03', 133211, '2011-05-16', 907750.00, 'A'), +(2114, 3, 'ROTHSCHILD VARGAS MICHAEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132165, '2011-02-05', 85170.00, 'A'), +(2115, 3, 'RUIZ GRATEROL INGRID JOHANNA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 132958, '2011-05-16', 702600.00, 'A'), +(2116, 2, 'DEARMAS ALBERTO FERNANDO ', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 150699, '2011-07-19', 257500.00, 'A'), +(2117, 3, 'BOSCAN ARRIETA ERICK HUMBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132958, '2011-07-12', 179680.00, 'A'), +(2118, 3, 'GUILLEN DE TELLES NENCY JOSEFINA', 191821112, 'CRA 25 CALLE 100', + '56@facebook.com', '2011-02-03', 132958, '2011-09-07', 125900.00, 'A'), +(212, 1, 'BUSTAMANTE BUSTAMANTE CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-26', 943260.00, 'A'), +(2120, 2, 'MARK ANTHONY STUART', 191821112, 'CRA 25 CALLE 100', + '661@terra.com.co', '2011-02-03', 127591, '2011-06-26', 74600.00, 'A'), +(2122, 3, 'SCOCOZZA GIOVANNA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 190526, '2011-09-23', 284220.00, 'A'), +(2125, 3, 'CHAVES MOLINA JULIO FELIPE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132165, '2011-09-22', 295360.00, 'A'), +(2127, 3, 'BERNARDES DE SOUZA TONIATI VIRGINIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-06-30', 565090.00, 'A'), +(2129, 2, 'BRIAN DAVIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-03-19', 78460.00, 'A'), +(213, 1, 'PAREJO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-08-11', 766120.00, 'A'), +(2131, 3, 'DE OLIVEIRA LOPES REGINALDO LAZARO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-10-05', 404910.00, 'A'), +(2132, 3, 'DE MELO MING AZEVEDO PAULO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-10-05', 440370.00, 'A'), +(2137, 3, 'SILVA JORGE ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-10-05', 230570.00, 'A'), +(214, 1, 'CADENA RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-08-08', 840.00, 'A'), +(2142, 3, 'VIEIRA VEIGA PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-06-30', 85330.00, 'A'), +(2144, 3, 'ESCRIBANO LEONARDA DEL VALLE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 133535, '2011-03-24', 941440.00, 'A'), +(2145, 3, 'RODRIGUEZ MENENDEZ BERNARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 148511, '2011-08-02', 588740.00, 'A'), +(2146, 3, 'GONZALEZ COURET DANIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 148511, '2011-08-09', 119380.00, 'A'), +(2147, 3, 'GARCIA SOTO WILLIAM', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 135360, '2011-05-18', 830660.00, 'A'), +(2148, 3, 'MENESES ORELLANA RICARDO TOMAS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132165, '2011-06-13', 795200.00, 'A'), +(2149, 3, 'GUEVARA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-06-27', 483990.00, 'A'), +(215, 1, 'BELTRAN PINZON JUAN CARLO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-08', 705860.00, 'A'), +(2151, 2, 'LLANES GARRIDO JAVIER ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-08-30', 719750.00, 'A'), +(2152, 3, 'CHAVARRIA CHAVES RAFAEL ADRIAN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 132165, '2011-09-20', 495720.00, 'A'), +(2153, 2, 'MILBERT ANDREASPETER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-08-10', 319370.00, 'A'), +(2154, 2, 'GOMEZ SILVA LOZANO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127300, '2011-05-30', 109670.00, 'A'), +(2156, 3, 'WINTON ROBERT DOUGLAS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 115551, '2011-08-08', 622290.00, 'A'), +(2157, 2, 'ROMERO PINA MANUEL GUSTAVO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-05-05', 340650.00, 'A'), +(2158, 3, 'KARWALSKI MATTHEW REECE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 117229, '2011-08-29', 836380.00, 'A'), +(2159, 2, 'KIM JUNG SIK ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-07-08', 159950.00, 'A'), +(216, 1, 'MARTINEZ VALBUENA JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 526750.00, 'A'), +(2160, 3, 'AGAR ROBERT ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '81@hotmail.es', '2011-02-03', 116862, '2011-06-11', 290620.00, 'A'), +(2161, 3, 'IGLESIAS EDGAR ALEXIS', 191821112, 'CRA 25 CALLE 100', + '645@facebook.com', '2011-02-03', 131272, '2011-04-04', 973240.00, 'A'), +(2163, 2, 'NOAIN MORENO CECILIA KARIM ', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-06-22', 51950.00, 'A'), +(2164, 2, 'FIGUEROA HEBEL ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-04-26', 276760.00, 'A'), +(2166, 5, 'FRANDBERG DAN RICHARD VERNER', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 134022, '2011-04-06', 309480.00, 'A'), +(2168, 2, 'CONTRERAS LILLO EDUARDO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-27', 389320.00, 'A'), +(2169, 2, 'BLANCO VALLE RICARDO ', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-07-13', 355950.00, 'A'), +(2171, 2, 'BELTRAN ZAVALA JIMI ALFONSO MIGUEL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 126674, '2011-08-22', 991000.00, 'A'), +(2172, 2, 'RAMIRO OREGUI JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 133535, '2011-04-27', 119700.00, 'A'), +(2175, 2, 'FENG PUYO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 302172, '2011-10-07', 965660.00, 'A'), +(2176, 3, 'CLERICI GUIDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 116366, '2011-08-30', 522970.00, 'A'), +(2177, 1, 'SEIJAS GUNTER LUIS MANUEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-02', 717890.00, 'A'), +(2178, 2, 'SHOSHANI MOSHE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-06-13', 20520.00, 'A'), +(218, 3, 'HUCHICHALEO ARSENDIGA FRANCISCA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-05', 690.00, 'A'), +(2181, 2, 'DOMINGO BARTOLOME LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', + '173@terra.com.co', '2011-02-03', 127591, '2011-04-18', 569030.00, 'A'), +(2182, 3, 'GONZALEZ RIJO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-10-02', 795610.00, 'A'), +(2183, 2, 'ANDROVICH MORENO LIZETH LILIAN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127300, '2011-10-10', 270970.00, 'A'), +(2184, 2, 'ARREAZA LUGO JESUS ALFREDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-08', 968030.00, 'A'), +(2185, 2, 'NAVEDA CANELON KATHERINE', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 132775, '2011-09-14', 27250.00, 'A'), +(2189, 2, 'LUGO BEHRENS DENISE SOFIA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-08', 253980.00, 'A'), +(2190, 2, 'ERICA ROSE MOLDENHAUVER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-25', 175480.00, 'A'), +(2192, 2, 'SOLORZANO GARCIA ANDREINA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 50790.00, 'A'), +(2193, 3, 'DE LA COSTE MARIA CAROLINA', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-07-26', 907640.00, 'A'), +(2194, 2, 'MARTINEZ DIAZ JUAN JOSE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-08', 385810.00, 'A'), +(2195, 2, 'GALARRAGA ECHEVERRIA DAYEN ALI', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-07-13', 206150.00, 'A'), +(2196, 2, 'GUTIERREZ RAMIREZ HECTOR JOSE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 133211, '2011-06-07', 873330.00, 'A'), +(2197, 2, 'LOPEZ GONZALEZ SILVIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127662, '2011-09-01', 748170.00, 'A'), +(2198, 2, 'SEGARES LUTZ JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-07', 120880.00, 'A'), +(2199, 2, 'NADER MARTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127538, '2011-08-12', 359880.00, 'A'), +(22, 1, 'CARDOZO AMAYA JORGE HUMBERTO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-07-25', 908720.00, 'A'), +(2200, 3, 'NATERA BERMUDEZ OSWALDO JOSE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2010-10-18', 436740.00, 'A'), +(2201, 2, 'COSTA RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 150699, '2011-09-01', 104090.00, 'A'), +(2202, 5, 'GRUNDY VALENZUELA ALAN PATRICK', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-08', 210230.00, 'A'), +(2203, 2, 'MONTENEGRO DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-05-26', 738890.00, 'A'), +(2204, 2, 'TAMAI BUNGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-24', 63730.00, 'A'), +(2205, 5, 'VINHAS FORTUNA EDSON', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 133535, '2011-09-23', 102010.00, 'A'), +(2206, 2, 'RUIZ ERBS MARIO ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-07-19', 318860.00, 'A'), +(2207, 2, 'VENTURA TINEO MARCEL ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-08', 288240.00, 'A'), +(2210, 2, 'RAMIREZ GUZMAN RICARDO JAIME', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-04-28', 338740.00, 'A'), +(2211, 2, 'STERNBERG GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 132958, '2011-09-04', 18070.00, 'A'), +(2212, 2, 'MARTELLO ALEJOS ROGER ADOLFO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127443, '2011-06-20', 74120.00, 'A'), +(2213, 2, 'CASTANEDA RAFAEL ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 316410.00, 'A'), +(2214, 2, 'LIMON MARTINEZ WILBERT DE JESUS', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128904, '2011-09-19', 359690.00, 'A'), +(2215, 2, 'PEREZ HERNANDEZ MONICA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 133211, '2011-05-23', 849240.00, 'A'), +(2216, 2, 'AWAD LOBATO RICARDO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', + '853@hotmail.com', '2011-02-03', 127591, '2011-04-12', 167100.00, 'A'), +(2217, 2, 'CEPEDA VANEGAS ENDER ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132958, '2011-08-22', 287770.00, 'A'), +(2218, 2, 'PEREZ CHIQUIN HECTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 132572, '2011-04-13', 937580.00, 'A'), +(2220, 5, 'FRANCO DELGADILLO RONALD FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 132775, '2011-09-16', 310190.00, 'A'), +(2222, 2, 'ALCAIDE ALONSO JUAN MIGUEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-05-02', 455360.00, 'A'), +(2223, 3, 'BROWNING BENJAMIN MARK', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-06-09', 45230.00, 'A'), +(2225, 3, 'HARWOO BENJAMIN JOEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 164620.00, 'A'), +(2226, 3, 'HOEY TIMOTHY ROSS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-06-09', 242910.00, 'A'), +(2227, 3, 'FERGUSON GARRY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-07-28', 720700.00, 'A'), +(2228, 3, 'NORMAN NEVILLE ROBERT', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 288493, '2011-06-29', 874750.00, 'A'), +(2229, 3, 'KUK HYUN CHAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 128662, '2011-03-22', 211660.00, 'A'), +(223, 1, 'PINZON PLAZA MARCOS VINICIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 856300.00, 'A'), +(2230, 3, 'SLIPAK NATALIA ANDREA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-07-27', 434070.00, 'A'), +(2231, 3, 'BONELLI MASSIMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 170601, '2011-07-11', 535340.00, 'A'), +(2233, 3, 'VUYLSTEKE ALEXANDER ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 284647, '2011-09-11', 266530.00, 'A'), +(2234, 3, 'DRESSE ALAIN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 284272, '2011-04-19', 209100.00, 'A'), +(2235, 3, 'PAIRON JEAN LOUIS MARIE RAIMOND', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 284272, '2011-03-03', 245940.00, 'A'), +(2236, 3, 'DEVIANE ACHIM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 284272, '2010-11-14', 602370.00, 'A'), +(2239, 3, 'DE CANNIERE LOUIS GEORFES HELE MARIE-JOZEF', 191821112, + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 285511, '2011-09-11', + 993540.00, 'A'), +(2240, 1, 'ERGO ROBERT', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-09-28', 278270.00, 'A'), +(2241, 3, 'MYRTES RODRIGUEZ MORGANA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2011-09-18', 410740.00, 'A'), +(2242, 3, 'BRECHBUEHL HANSRUDOLF', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 249059, '2011-07-27', 218900.00, 'A'), +(2243, 3, 'IVANA SCHLUMPF', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 245206, '2011-04-08', 862270.00, 'A'), +(2244, 3, 'JESSICA JACCART', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 189512, '2011-08-28', 654640.00, 'A'), +(2246, 3, 'PAUSELLI MARIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 210050, '2011-09-26', 468090.00, 'A'), +(2247, 3, 'VOLONTEIRO RICCARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 118777, '2011-04-13', 281230.00, 'A'), +(2248, 3, 'HOFFMANN ALVIR ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 120773, '2011-08-23', 1900.00, 'A'), +(2249, 3, 'MANTOVANI DANIEL FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118942, '2011-08-09', 165820.00, 'A'), +(225, 1, 'DUARTE RUEDA JAVIER ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-29', 293110.00, 'A'), +(2250, 3, 'LIMA DA COSTA BRENO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118777, '2011-03-23', 823370.00, 'A'), +(2251, 3, 'TAMBORIN MACIEL MAGALI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-23', 619420.00, 'A'), +(2252, 3, 'BELLO DE MUORA BIANCA', 191821112, 'CRA 25 CALLE 100', + '969@gmail.com', '2011-02-03', 118942, '2011-08-03', 626970.00, 'A'), +(2253, 3, 'VINHAS FORTUNA PIETRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 133535, '2011-09-23', 276600.00, 'A'), +(2255, 3, 'BLUMENTHAL JAIRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 117630, '2011-07-20', 680590.00, 'A'), +(2256, 3, 'DOS REIS FILHO ELPIDIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 120773, '2011-08-07', 896720.00, 'A'), +(2257, 3, 'COIMBRA CARDOSO MUNARI FERNANDA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-09', 441830.00, 'A'), +(2258, 3, 'LAZANHA FLAVIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 118942, '2011-06-14', 519000.00, 'A'), +(2259, 3, 'LAZANHA FLAVIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 118942, '2011-06-14', 269480.00, 'A'), +(226, 1, 'HUERFANO FLOREZ JOHN FAVER', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-29', 148340.00, 'A'), +(2260, 3, 'JOVETTA EDILSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 118941, '2011-09-19', 790430.00, 'A'), +(2261, 3, 'DE OLIVEIRA ANDRE RICARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118942, '2011-07-25', 143680.00, 'A'), +(2263, 3, 'MUNDO TEIXEIRA CARVALHO SILVIA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118864, '2011-09-19', 304670.00, 'A'), +(2264, 3, 'FERREIRA CINTRA ADRIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 128662, '2011-04-08', 481910.00, 'A'), +(2265, 3, 'AUGUSTO DE OLIVEIRA MARCOS', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118685, '2011-08-09', 495530.00, 'A'), +(2266, 3, 'CHEN ROBERTO LUIZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 118777, '2011-03-15', 31920.00, 'A'), +(2268, 3, 'WROBLESKI DIENSTMANN RAQUEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 117630, '2011-05-15', 269320.00, 'A'), +(2269, 3, 'MALAGOLA GEDERSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 118864, '2011-05-30', 327540.00, 'A'), +(227, 1, 'LOPEZ ESCOBAR CARLOS ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-06', 862360.00, 'A'), +(2271, 3, 'GOMES EVANDRO HENRIQUE', 191821112, 'CRA 25 CALLE 100', + '199@hotmail.es', '2011-02-03', 118777, '2011-03-24', 166100.00, 'A'), +(2273, 3, 'LANDEIRA FERNANDEZ JESUS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-21', 207990.00, 'A'), +(2274, 3, 'ROSSI RENATO', 191821112, 'CRA 25 CALLE 100', '791@hotmail.es', + '2011-02-03', 118777, '2011-09-19', 16170.00, 'A'), +(2275, 3, 'CALMON RANGEL PATRICIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-23', 456890.00, 'A'), +(2277, 3, 'CIFU NETO ROQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118777, '2011-04-27', 808940.00, 'A'), +(2278, 3, 'GONCALVES PRETO FRANCISCO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118942, '2011-07-25', 336930.00, 'A'), +(2279, 3, 'JORGE JUNIOR ROBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 118777, '2011-05-09', 257840.00, 'A'), +(2281, 3, 'ELENCIUC DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 118777, '2011-04-20', 618510.00, 'A'), +(2283, 3, 'CUNHA MENDEZ RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 119855, '2011-07-18', 431190.00, 'A'), +(2286, 3, 'DIAZ LENICE APARECIDA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-03', 977840.00, 'A'), +(2288, 3, 'DE CARVALHO SIGEL TATIANA', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118777, '2011-07-04', 123920.00, 'A'), +(229, 1, 'GALARZA GIRALDO SERGIO ALDEMAR', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 150699, '2011-09-17', 746930.00, 'A'), +(2290, 3, 'ACHOA MORANDI BORGUES SIBELE MARIA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118777, '2011-09-12', 553890.00, 'A'), +(2291, 3, 'EPAMINONDAS DE ALMEIDA DELIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2011-09-22', 14080.00, 'A'), +(2293, 3, 'REIS CASTRO SHANA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 118942, '2011-08-03', 1430.00, 'A'), +(2294, 3, 'BERNARDES JUNIOR ARMANDO', 191821112, 'CRA 25 CALLE 100', + '678@gmail.com', '2011-02-03', 127591, '2011-08-30', 780930.00, 'A'), +(2295, 3, 'LEMOS DE SOUZA AGUIAR SERGIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118777, '2011-10-03', 900370.00, 'A'), +(2296, 3, 'CARVALHO ADAMS KARIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118942, '2011-08-11', 159040.00, 'A'), +(2297, 3, 'GALLINA SILVANA BRASILEIRA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 94110.00, 'A'), +(23, 1, 'COLMENARES PEDREROS EDUARDO ADOLFO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 625870.00, 'A'), +(2300, 3, 'TAVEIRA DE SIQUEIRA TANIA APARECIDA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-24', 443910.00, 'A'), +(2301, 3, 'DA SIVA LIMA ANDRE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-08-23', 165020.00, 'A'), +(2302, 3, 'GALVAO GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 118942, '2011-09-12', 493370.00, 'A'), +(2303, 3, 'DA COSTA CRUZ GABRIELA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2011-07-27', 971800.00, 'A'), +(2304, 3, 'BERNHARD GOTTFRIED RABER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-04-30', 378870.00, 'A'), +(2306, 3, 'ALDANA URIBE PABLO AXEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-05-08', 758160.00, 'A'), +(2308, 3, 'FLORES ALONSO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 145135, '2011-04-26', 995310.00, 'A'), +('CELL4330', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(2309, 3, 'MADRIGAL MIER Y TERAN LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 145135, '2011-02-23', 414650.00, 'A'), +(231, 1, 'ZAPATA CEBALLOS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127662, '2011-08-16', 430320.00, 'A'), +(2310, 3, 'GONZALEZ ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 145135, '2011-05-19', 87330.00, 'A'), +(2313, 3, 'MONTES PORTO ANDREA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 145135, '2011-09-01', 929180.00, 'A'), +(2314, 3, 'ROCHA SUSUNAGA SERGIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2010-10-18', 541540.00, 'A'), +(2315, 3, 'VASQUEZ CALERO FEDERICO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 920160.00, 'A'), +(2317, 3, 'GONZALEZ FERNANDEZ YUSSEN ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-26', 120530.00, 'A'), +(2319, 3, 'ATTIAS WENGROWSKY DAVID', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 150581, '2011-09-07', 8580.00, 'A'), +(232, 1, 'OSPINA ABUCHAIBE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 133535, '2011-07-14', 748960.00, 'A'), +(2320, 3, 'EFRON TOPOROVSKY INES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 116511, '2011-07-15', 20810.00, 'A'), +(2321, 3, 'LUNA PLA DARIO', 191821112, 'CRA 25 CALLE 100', '95@terra.com.co', + '2011-02-03', 145135, '2011-09-07', 78320.00, 'A'), +(2322, 1, 'VAZQUEZ DANIELA', 191821112, 'CRA 25 CALLE 100', '190@gmail.com', + '2011-02-03', 145135, '2011-05-19', 329170.00, 'A'), +(2323, 3, 'BALBI BALBI JUAN DE DIOS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-23', 410880.00, 'A'), +(2324, 3, 'MARROQUIN FERNANDEZ GELACIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-03-23', 66880.00, 'A'), +(2325, 3, 'VAZQUEZ ZAVALA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-04-11', 101770.00, 'A'), +(2326, 3, 'SOTO MARTINEZ MARIA ELENA', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-03-23', 308200.00, 'A'), +(2328, 3, 'HERNANDEZ MURILLO RICARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-22', 253830.00, 'A'), +(233, 1, 'HADDAD LINERO YEBRAIL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 130608, '2010-06-17', 453830.00, 'A'), +(2330, 3, 'TERMINEL HERNANDEZ DANIELA PATRICIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 190393, '2011-08-15', 48940.00, 'A'), +(2331, 3, 'MIJARES FERNANDEZ MAGDALENA GUADALUPE', 191821112, + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-31', + 558440.00, 'A'), +(2332, 3, 'GONZALEZ LUNA CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 146258, '2011-04-26', 645400.00, 'A'), +(2333, 3, 'DIAZ TORREJON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 145135, '2011-05-03', 551690.00, 'A'), +(2335, 3, 'PADILLA GUTIERREZ JESUS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 456120.00, 'A'), +(2336, 3, 'TORRES CORONA JORGE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', 813900.00, 'A'), +(2337, 3, 'CASTRO RAMSES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 150581, '2011-07-04', 701120.00, 'A'), +(2338, 3, 'APARICIO VALLEJO RUSSELL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-03-16', 63890.00, 'A'), +(2339, 3, 'ALBOR FERNANDEZ LUIS ARTURO', 191821112, 'CRA 25 CALLE 100', + '574@gmail.com', '2011-02-03', 147467, '2011-05-09', 216110.00, 'A'), +(234, 1, 'DOMINGUEZ GOMEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '942@hotmail.com', '2011-02-03', 127591, '2010-08-22', 22260.00, 'A'), +(2342, 3, 'REY ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '110@facebook.com', + '2011-02-03', 127591, '2011-03-04', 313330.00, 'A'), +(2343, 3, 'MENDOZA GONZALES ADRIANA', 191821112, 'CRA 25 CALLE 100', + '295@yahoo.com', '2011-02-03', 127591, '2011-03-23', 178720.00, 'A'), +(2344, 3, 'RODRIGUEZ SEGOVIA JESUS ALONSO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2011-07-26', 953590.00, 'A'), +(2345, 3, 'GONZALEZ PELAEZ EDUARDO DAVID', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 231790.00, 'A'), +(2347, 3, 'VILLEDA GARCIA DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 144939, '2011-05-29', 795600.00, 'A'), +(2348, 3, 'FERRER BURGES EMILIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', 83430.00, 'A'), +(2349, 3, 'NARRO ROBLES LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 145135, '2011-03-16', 30330.00, 'A'), +(2350, 3, 'ZALDIVAR UGALDE CARLOS IGNACIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-06-19', 901380.00, 'A'), +(2351, 3, 'VARGAS RODRIGUEZ VALENTE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 146258, '2011-04-26', 415910.00, 'A'), +(2354, 3, 'DEL PIERO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 145135, '2011-05-09', 19890.00, 'A'), +(2355, 3, 'VILLAREAL ANA CRISTINA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-03-23', 211810.00, 'A'), +(2356, 3, 'GARRIDO FERRAN JORGE ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 999370.00, 'A'), +(2357, 3, 'PEREZ PRECIADO EDMUNDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-22', 361450.00, 'A'), +(2358, 3, 'AGUIRRE VIGNAU DANIEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 150581, '2011-08-21', 809110.00, 'A'), +(2359, 3, 'LOPEZ SESMA TOMAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 146258, '2011-09-14', 961200.00, 'A'), +(236, 1, 'VENTO BETANCOURT LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-03-19', 682230.00, 'A'), +(2360, 3, 'BERNAL MALDONADO GUILLERMO JAVIER', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2011-09-19', 378670.00, 'A'), +(2361, 3, 'GUZMAN DELGADO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-22', 9770.00, 'A'), +(2362, 3, 'GUZMAN DELGADO MARTIN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 912850.00, 'A'), +(2363, 3, 'GUSMAND ELGADO JORGE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-08-22', 534910.00, 'A'), +(2364, 3, 'RENDON BUICK JORGE JOSE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-07-26', 936010.00, 'A'), +(2365, 3, 'HERNANDEZ HERNANDEZ HERNANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 75340.00, 'A'), +(2366, 3, 'ALVAREZ PAZ PEDRO RAFAEL ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-01-02', 568650.00, 'A'), +(2367, 3, 'MIJARES DE LA BARREDA FERNANDA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-07-31', 617240.00, 'A'), +(2368, 3, 'MARTINEZ LOPEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-08-24', 380250.00, 'A'), +(2369, 3, 'GAYTAN MILLAN YANERI', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 49520.00, 'A'), +(237, 1, 'BARGUIL ASSIS DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 117460, '2009-09-03', 161770.00, 'A'), +(2370, 3, 'DURAN HEREDIA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 145135, '2011-04-15', 106850.00, 'A'), +(2371, 3, 'SEGURA MIJARES CRISTOBAL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-07-31', 385700.00, 'A'), +(2372, 3, 'TEPOS VALTIERRA ERIK ARTURO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 116345, '2011-09-01', 607930.00, 'A'), +(2373, 3, 'RODRIGUEZ AGUILAR EDMUNDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 145135, '2011-05-04', 882570.00, 'A'), +(2374, 3, 'MYSLABODSKI MICHAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 145135, '2011-03-08', 589060.00, 'A'), +(2375, 3, 'HERNANDEZ MIRELES JATNIEL ELIOENAI', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', 297600.00, 'A'), +(2376, 3, 'SNELL FERNANDEZ SYNTYHA ROCIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 720830.00, 'A'), +(2378, 3, 'HERNANDEZ EIVET AARON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-07-26', 394200.00, 'A'), +(2379, 3, 'LOPEZ GARZA JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-08-22', 837000.00, 'A'), +(238, 1, 'GARCIA PINO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-05-10', 762140.00, 'A'), +(2381, 3, 'TOSCANO ESTRADA RUBEN ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-22', 500940.00, 'A'), +(2382, 3, 'RAMIREZ HUDSON ROGER SILVESTER', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-22', 497550.00, 'A'), +(2383, 3, 'RAMOS JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '362@yahoo.es', + '2011-02-03', 127591, '2011-08-22', 984940.00, 'A'), +(2384, 3, 'CORTES CERVANTES ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 145135, '2011-04-11', 432020.00, 'A'), +(2385, 3, 'POZOS ESQUIVEL DAVID', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-27', 205310.00, 'A'), +(2387, 3, 'ESTRADA AGUIRRE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-08-22', 36470.00, 'A'), +(2388, 3, 'GARCIA RAMIREZ RAMON', 191821112, 'CRA 25 CALLE 100', '177@yahoo.es', + '2011-02-03', 127591, '2011-08-22', 990910.00, 'A'), +(2389, 3, 'PRUD HOMME GARCIA CUBAS XAVIER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-18', 845140.00, 'A'), +(239, 1, 'PINZON ARDILA GUSTAVO ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-01', 325400.00, 'A'), +(2390, 3, 'ELIZABETH OCHOA ROJAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 145135, '2011-05-21', 252950.00, 'A'), +(2391, 3, 'MEZA ALVAREZ JOSE ALBERTO', 191821112, 'CRA 25 CALLE 100', + '646@terra.com.co', '2011-02-03', 144939, '2011-05-09', 729340.00, 'A'), +(2392, 3, 'HERRERA REYES RENATO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2010-02-28', 887860.00, 'A'), +(2393, 3, 'MURILLO GARIBAY GILBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-08-20', 251280.00, 'A'), +(2394, 3, 'GARCIA JIMENEZ CARLOS MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-10-09', 592830.00, 'A'), +(2395, 3, 'GUAGNELLI MARTINEZ BLANCA MONICA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 145184, '2010-10-05', 210320.00, 'A'), +(2397, 3, 'GARCIA CISNEROS RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 128662, '2011-07-04', 734530.00, 'A'), +(2398, 3, 'MIRANDA ROMO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 853340.00, 'A'), +(24, 1, 'ARREGOCES GARZON NELSON ORLANDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127783, '2011-08-12', 403190.00, 'A'), +(240, 1, 'ARCINIEGAS GOMEZ ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-18', 340590.00, 'A'), +(2400, 3, 'HERRERA ABARCA EDUARDO VICENTE ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 755620.00, 'A'), +(2403, 3, 'CASTRO MONCAYO LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-07-29', 617260.00, 'A'), +(2404, 3, 'GUZMAN DELGADO OSBALDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 56250.00, 'A'), +(2405, 3, 'GARCIA LOPEZ DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-08-22', 429500.00, 'A'), +(2406, 3, 'JIMENEZ GAMEZ RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 245206, '2011-03-23', 978720.00, 'A'), +(2407, 3, 'BECERRA MARTINEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-08-23', 605130.00, 'A'), +(2408, 3, 'GARCIA MARTINEZ BERNARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 89480.00, 'A'), +(2409, 3, 'URRUTIA RAYAS BALTAZAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-08-22', 632020.00, 'A'), +(241, 1, 'MEDINA AGUILA NESTOR EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-09', 726730.00, 'A'), +(2411, 3, 'VERGARA MENDOZAVICTOR HUGO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-06-15', 562230.00, 'A'), +(2412, 3, 'MENDOZA MEDINA JORGE IGNACIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 136170.00, 'A'), +(2413, 3, 'CORONADO CASTILLO HUGO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 147529, '2011-05-09', 994160.00, 'A'), +(2414, 3, 'GONZALEZ SOTO DELIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-03-23', 562280.00, 'A'), +(2415, 3, 'HERNANDEZ FLORES STEPHANIE REYNA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 828940.00, 'A'), +(2416, 3, 'ABRAJAN GUERRERO MARIA DE LOS ANGELES', 191821112, + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-23', 457860.00, + 'A'), +(2417, 3, 'HERNANDEZ LOERA ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 802490.00, 'A'), +(2418, 3, 'TARIN LOPEZ JOSE CARMEN', 191821112, 'CRA 25 CALLE 100', + '117@gmail.com', '2011-02-03', 127591, '2011-03-23', 638870.00, 'A'), +(242, 1, 'JULIO NARVAEZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-07-05', 611890.00, 'A'), +(2420, 3, 'BATTA MARQUEZ VICTOR ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-08-23', 17820.00, 'A'), +(2423, 3, 'GONZALEZ REYES JUAN JOSE', 191821112, 'CRA 25 CALLE 100', + '55@yahoo.es', '2011-02-03', 127591, '2011-07-26', 758070.00, 'A'), +(2425, 3, 'ALVAREZ RODRIGUEZ HIRAM RAMSES', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-03-23', 847420.00, 'A'), +(2426, 3, 'FEMATT HERNANDEZ JESUS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-03-23', 164130.00, 'A'), +(2427, 3, 'GUTIERRES ORTEGA FRANCISCO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 278410.00, 'A'), +(2428, 3, 'JIMENEZ DIAZ JUAN JORGE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-05-13', 899650.00, 'A'), +(2429, 3, 'VILLANUEVA PEREZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', + '656@yahoo.es', '2011-02-03', 150449, '2011-03-23', 663000.00, 'A'), +(243, 1, 'GOMEZ REYES ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 126674, '2009-12-20', 879240.00, 'A'), +(2430, 3, 'CERON GOMEZ JOEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 145135, '2011-03-21', 616070.00, 'A'), +(2431, 3, 'LOPEZ LINALDI DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 145135, '2011-05-09', 91360.00, 'A'), +(2432, 3, 'JOSEPH NATHAN PEDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 145135, '2011-05-02', 608580.00, 'A'), +(2433, 3, 'CARRENO PULIDO RUBEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 147242, '2011-06-19', 768810.00, 'A'), +(2434, 3, 'AREVALO MERCADO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 145135, '2011-06-12', 18320.00, 'A'), +(2436, 3, 'RAMIREZ QUEZADA ERIKA BELEM', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-03', 870930.00, 'A'), +(2438, 3, 'TATTO PRIETO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 145135, '2011-05-19', 382740.00, 'A'), +(2439, 3, 'LOPEZ AYALA LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-10-08', 916370.00, 'A'), +(244, 1, 'DEVIS EDGAR JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2010-10-08', 560540.00, 'A'), +(2440, 3, 'HERNANDEZ TOVAR JORGE ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 144991, '2011-10-02', 433650.00, 'A'), +(2441, 3, 'COLLIARD LOPEZ PETER GEORGE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 419120.00, 'A'), +(2442, 3, 'FLORES CHALA GARY', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-08-22', 794670.00, 'A'), +(2443, 3, 'FANDINO MUNOZ ZAMIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 145135, '2011-07-19', 715970.00, 'A'), +(2444, 3, 'BARROSO VARGAS DIEGO ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-26', 195840.00, 'A'), +(2446, 3, 'CRUZ RAMIREZ JUAN PEDRO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 145135, '2011-07-14', 569050.00, 'A'), +(2447, 3, 'TIJERINA ACOSTA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-07-26', 351280.00, 'A'), +(2449, 3, 'JASSO BARRERA CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 145135, '2011-08-24', 192560.00, 'A'), +(245, 1, 'LENCHIG KALEDA SERGIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-02', 165000.00, 'A'), +(2450, 3, 'GARRIDO PATRON VICTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 145135, '2011-09-27', 814970.00, 'A'), +(2451, 3, 'VELASQUEZ GUERRERO RUBEN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', 497150.00, 'A'), +(2452, 3, 'CHOI SUNGKYU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 209494, '2011-08-16', 40860.00, 'A'), +(2453, 3, 'CONTRERAS LOPEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 145135, '2011-08-05', 712830.00, 'A'), +(2454, 3, 'CHAVEZ BATAA OSCAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 150699, '2011-06-14', 441590.00, 'A'), +(2455, 3, 'LEE JONG HYUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 131272, '2011-10-10', 69460.00, 'A'), +(2456, 3, 'MEDINA PADILLA CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 146589, '2011-04-20', 22530.00, 'A'), +(2457, 3, 'FLORES CUEVAS DOTNARA LUZ', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 145135, '2011-05-17', 904260.00, 'A'), +(2458, 3, 'LIU YONGCHAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-10-09', 453710.00, 'A'), +(2459, 3, 'CASTRO FERNANDES PORTOCARRERO JOSE MANUEL', 191821112, + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 195892, '2011-06-14', + 555790.00, 'A'), +(246, 1, 'YAMHURE FONSECAN ERNESTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2009-10-03', 143350.00, 'A'), +(2460, 3, 'DUAN WEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', + 128662, '2011-06-22', 417820.00, 'A'), +(2461, 3, 'ZHU XUTAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-05-18', 421740.00, 'A'), +(2462, 3, 'MEI SHUANNIU', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-10-09', 855240.00, 'A'), +(2464, 3, 'VEGA VACA LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-06-08', 489110.00, 'A'), +(2465, 3, 'TANG YUMING', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 147578, '2011-03-26', 412660.00, 'A'), +(2466, 3, 'VILLEDA GARCIA DAVID', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 144939, '2011-06-07', 595990.00, 'A'), +(2467, 3, 'GARCIA GARZA BLANCA ARMIDA', 191821112, 'CRA 25 CALLE 100', + '927@hotmail.com', '2011-02-03', 145135, '2011-05-20', 741940.00, 'A'), +(2468, 3, 'HERNANDEZ MARTINEZ EMILIO JOAQUIN', 191821112, 'CRA 25 CALLE 100', + '356@facebook.com', '2011-02-03', 145135, '2011-06-16', 921740.00, 'A'), +(2469, 3, 'WANG FAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', + 185363, '2011-08-20', 382860.00, 'A'), +(247, 1, 'ROJAS RODRIGUEZ ALVARO HERNAN', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-09', 221760.00, 'A'), +(2470, 3, 'WANG FEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', + 127591, '2011-10-09', 149100.00, 'A'), +(2471, 3, 'BERNAL MALDONADO GUILLERMO JAVIER', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118777, '2011-07-26', 596900.00, 'A'), +(2472, 3, 'GUTIERREZ GOMEZ ARTURO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145184, '2011-07-24', 537210.00, 'A'), +(2474, 3, 'LAN TYANYE ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-06-23', 865050.00, 'A'), +(2475, 3, 'LAN SHUZHEN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-06-23', 639240.00, 'A'), +(2476, 3, 'RODRIGUEZ GONZALEZ CARLOS ARTURO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 144616, '2011-08-09', 601050.00, 'A'), +(2477, 3, 'HAIBO NI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', + 127591, '2011-08-20', 87540.00, 'A'), +(2479, 3, 'RUIZ RODRIGUEZ GRACIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 145135, '2011-05-20', 910130.00, 'A'), +(248, 1, 'GONZALEZ RODRIGUEZ ANDRES', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-03', 678750.00, 'A'), +(2480, 3, 'OROZCO MACIAS NORMA LETICIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-20', 647010.00, 'A'), +(2481, 3, 'MEZA ALVAREZ JOSE ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 144939, '2011-06-07', 504670.00, 'A'), +(2482, 3, 'RODRIGUEZ FIGUEROA RODRIGO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 146308, '2011-04-27', 582290.00, 'A'), +(2483, 3, 'CARREON GUERRA ANA CECILIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 110709, '2011-05-27', 397440.00, 'A'), +(2484, 3, 'BOTELHO BARRETO CARLOS JOSE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 195892, '2011-08-02', 240350.00, 'A'), +(2485, 3, 'CORONADO CASTILLO HUGO', 191821112, 'CRA 25 CALLE 100', + '209@yahoo.com.mx', '2011-02-03', 147529, '2011-06-07', 9420.00, 'A'), +(2486, 3, 'DE FUENTES GARZA MARCELO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-18', 326030.00, 'A'), +(2487, 3, 'GONZALEZ DUHART GUTIERREZ HORACIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-05-17', 601920.00, 'A'), +(2488, 3, 'LOPEZ LINALDI DEMETRIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-06-07', 31500.00, 'A'), +(2489, 3, 'CASTRO MONCAYO JOSE LUIS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-06-15', 351720.00, 'A'), +(249, 1, 'CASTRO RIBEROS JULIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-23', 728470.00, 'A'), +(2490, 3, 'SERRALDE LOPEZ MARIA GUADALUPE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-07-25', 664120.00, 'A'), +(2491, 3, 'GARRIDO PATRON VICTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 145135, '2011-09-29', 265450.00, 'A'), +(2492, 3, 'BRAUN JUAN NICOLAS ANTONIE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-28', 334880.00, 'A'), +(2493, 3, 'BANKA RAHUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 141138, '2011-05-02', 878070.00, 'A'), +(2494, 1, 'GARCIA MARTINEZ MARIA VIRGINIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-04-17', 385690.00, 'A'), +(2495, 1, 'MARIA VIRGINIA', 191821112, 'CRA 25 CALLE 100', '298@yahoo.com.mx', + '2011-02-03', 127591, '2011-04-16', 294220.00, 'A'), +(2496, 3, 'GOMEZ ZENDEJAS MARIA ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145184, '2011-06-06', 314060.00, 'A'), +(2498, 3, 'MENDEZ MARTINEZ RAUL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 145135, '2011-07-10', 496040.00, 'A'), +(2623, 3, 'ZAFIROPOULO ANA I', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-05-25', 98170.00, 'A'), +(2499, 3, 'CARREON GUERRA ANA CECILIA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-07-29', 417240.00, 'A'), +(2501, 3, 'OLIVAR ARIAS ISMAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 145135, '2011-06-06', 738850.00, 'A'), +(2502, 3, 'ABOUMRAD NASTA EMILE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 145135, '2011-07-26', 899890.00, 'A'), +(2503, 3, 'RODRIGUEZ JIMENEZ ROBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-05-03', 282900.00, 'A'), +(2504, 3, 'ESTADOS UNIDOS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 145135, '2011-07-27', 714840.00, 'A'), +(2505, 3, 'SOTO MUNOZ MARCO GREGORIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-26', 725480.00, 'A'), +(2506, 3, 'GARCIA MONTER ANA OTILIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-10-05', 482880.00, 'A'), +(2507, 3, 'THIRUKONDA VIGNESH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 126180, '2011-05-02', 237950.00, 'A'), +(2508, 3, 'RAMIREZ REATIAGA LYDA YOANA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 150699, '2011-06-26', 741120.00, 'A'), +(2509, 3, 'SEPULVEDA RODRIGUEZ JESUS ', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', 991730.00, 'A'), +(251, 1, 'MEJIA PIZANO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-07-10', 845000.00, 'A'), +(2510, 3, 'FRANCISCO MARIA DIAS COSTA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 179111, '2011-07-12', 735330.00, 'A'), +(2511, 3, 'TEIXEIRA REGO DE OLIVEIRA TIAGO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 179111, '2011-06-14', 701430.00, 'A'), +(2512, 3, 'PHILLIP JAMES', 191821112, 'CRA 25 CALLE 100', '766@terra.com.co', + '2011-02-03', 127591, '2011-09-28', 301150.00, 'A'), +(2513, 3, 'ERXLEBEN ROBERT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 216125, '2011-04-13', 401460.00, 'A'), +(2514, 3, 'HUGHES CONNORRICHARD', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 269033, '2011-06-22', 103880.00, 'A'), +(2515, 3, 'LEBLANC MICHAEL PAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 216125, '2011-08-09', 314990.00, 'A'), +(2517, 3, 'DEVINE CHRISTOPHER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 269033, '2011-06-22', 371560.00, 'A'), +(2518, 3, 'WONG BRIAN TEK FUNG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 126885, '2011-09-22', 67910.00, 'A'), +(2519, 3, 'BIDWALA IRFAN A', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 154811, '2011-03-28', 224840.00, 'A'), +(252, 1, 'JIMENEZ LARRARTE JUAN GABRIEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-05-01', 406770.00, 'A'), +(2520, 3, 'LEE HO YIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 147578, '2011-08-29', 920470.00, 'A'), +(2521, 3, 'DE MOURA MARTINS NUNO ALEXANDRE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196094, '2011-10-09', 927850.00, 'A'), +(2522, 3, 'DA COSTA GOMES CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 179111, '2011-08-10', 877850.00, 'A'), +(2523, 3, 'HOOGWAERTS PAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 118777, '2011-02-11', 605690.00, 'A'), +(2524, 3, 'LOPES MARQUES LUIS JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118942, '2011-09-20', 394910.00, 'A'), +(2525, 3, 'CORREIA CAVACO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 178728, '2011-10-09', 157470.00, 'A'), +(2526, 3, 'HALL JOHN WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-06-09', 602620.00, 'A'), +(2527, 3, 'KNIGHT MARTIN GYLES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 113550, '2011-08-29', 540670.00, 'A'), +(2528, 3, 'HINDS THMAS TRISTAN PELLEW', 191821112, 'CRA 25 CALLE 100', + '337@yahoo.es', '2011-02-03', 116862, '2011-08-23', 895500.00, 'A'), +(2529, 3, 'CARTON ALAN JOHN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 117002, '2011-07-31', 855510.00, 'A'), +(253, 1, 'AZCUENAGA RAMIREZ NICOLAS', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 298472, '2011-05-10', 498840.00, 'A'), +(2530, 3, 'GHIM CHEOLL HO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-08-27', 591060.00, 'A'), +(2531, 3, 'PHILLIPS NADIA SULLIVAN', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-28', 388750.00, 'A'), +(2532, 3, 'CHANG KUKHYUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-03-22', 170560.00, 'A'), +(2533, 3, 'KANG SEOUNGHYUN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 173192, '2011-08-24', 686540.00, 'A'), +(2534, 3, 'CHUNG BYANG HOON', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 125744, '2011-03-14', 921030.00, 'A'), +(2535, 3, 'SHIN MIN CHUL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 173192, '2011-08-24', 545510.00, 'A'), +(2536, 3, 'CHOI JIN SUNG', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-05-15', 964490.00, 'A'), +(2537, 3, 'CHOI SUNGMIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-27', 185910.00, 'A'), +(2538, 3, 'PARK JAESER ', 191821112, 'CRA 25 CALLE 100', '525@terra.com.co', + '2011-02-03', 127591, '2011-09-03', 36090.00, 'A'), +(2539, 3, 'KIM DAE HOON ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 173192, '2011-08-24', 622700.00, 'A'), +(254, 1, 'AVENDANO PABON ROLANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-05-12', 273900.00, 'A'), +(2540, 3, 'LYNN MARIA CRISTINA NORMA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 116862, '2011-09-21', 5220.00, 'A'), +(2541, 3, 'KIM CHINIL JULIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 147578, '2011-08-27', 158030.00, 'A'), +(2543, 3, 'HALL JOHN WILLIAM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-06-09', 398290.00, 'A'), +(2544, 3, 'YOSUKE PERDOMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 165600, '2011-07-26', 668040.00, 'A'), +(2546, 3, 'AKAGI KAZAHIKO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-08-26', 722510.00, 'A'), +(2547, 3, 'NELSON JONATHAN GARY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-06-09', 176570.00, 'A'), +(2548, 3, 'DUONG HOP BA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 116862, '2011-09-14', 715310.00, 'A'), +(2549, 3, 'CHAO-VILLEGAS NIKOLE TUK HING', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 180063, '2011-04-05', 46830.00, 'A'), +(255, 1, 'CORREA ALVARO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-05-27', 872990.00, 'A'), +(2551, 3, 'APPELS LAURENT BERNHARD', 191821112, 'CRA 25 CALLE 100', + '891@hotmail.es', '2011-02-03', 135190, '2011-08-16', 300620.00, 'A'), +(2552, 3, 'PLAISIER ERIK JAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 289294, '2011-05-23', 238440.00, 'A'), +(2553, 3, 'BLOK HENDRIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 288552, '2011-03-27', 290350.00, 'A'), +(2554, 3, 'NETTE ANNA STERRE', 191821112, 'CRA 25 CALLE 100', + '621@yahoo.com.mx', '2011-02-03', 185363, '2011-07-30', 736400.00, 'A'), +(2555, 3, 'FRIELING HANS ERIC', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 107469, '2011-07-31', 810990.00, 'A'), +(2556, 3, 'RUTTE CORNELIA JANTINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 143579, '2011-03-30', 845710.00, 'A'), +(2557, 3, 'WALRAVEN PIETER PAUL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 289294, '2011-07-29', 795620.00, 'A'), +(2558, 3, 'TREBES LAURENS JOHANNES', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-11-22', 440940.00, 'A'), +(2559, 3, 'KROESE ROLANDWILLEBRORDUSMARIA', 191821112, 'CRA 25 CALLE 100', + '188@facebook.com', '2011-02-03', 110643, '2011-06-09', 817860.00, 'A'), +(256, 1, 'FARIAS GARCIA REINI', 191821112, 'CRA 25 CALLE 100', + '615@hotmail.com', '2011-02-03', 127591, '2011-03-05', 543220.00, 'A'), +(2560, 3, 'VAN DER HEIDE HENDRIK', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 291042, '2011-09-04', 766460.00, 'A'), +(2561, 3, 'VAN DEN BERG DONAR ALEXANDER GABRIEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 190393, '2011-07-13', 378720.00, 'A'), +(2562, 3, 'GODEFRIDUS JOHANNES ROPS ', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127622, '2011-10-02', 594240.00, 'A'), +(2564, 3, 'WAT YOK YIENG', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 287095, '2011-03-22', 392370.00, 'A'), +(2565, 3, 'BUIS JACOBUS NICOLAAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-09-20', 456810.00, 'A'), +(2567, 3, 'CHIPPER FRANCIUSCUS NICOLAAS ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 291599, '2011-07-28', 164300.00, 'A'), +(2568, 3, 'ONNO ROUKENS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-11-28', 500670.00, 'A'), +(2569, 3, 'PETRUS MARCELLINUS STEPHANUS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 150699, '2011-06-25', 10430.00, 'A'), +(2571, 3, 'VAN VOLLENHOVEN IVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-08-08', 719370.00, 'A'), +(2572, 3, 'LAMBOOIJ BART', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2011-09-20', 946480.00, 'A'), +(2573, 3, 'LANSER MARIANA PAULINE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 289294, '2011-04-09', 574270.00, 'A'), +(2575, 3, 'KLERKEN JOHANNES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 286101, '2011-05-24', 436840.00, 'A'), +(2576, 3, 'KRAS JACOBUS NICOLAAS', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 289294, '2011-09-26', 88410.00, 'A'), +(2577, 3, 'FUCHS MICHAEL JOSEPH', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 185363, '2011-07-30', 131530.00, 'A'), +(2578, 3, 'BIJVANK ERIK JAN WILLEM', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-04-11', 392410.00, 'A'), +(2579, 3, 'SCHMIDT FRANC ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 106742, '2011-09-11', 567470.00, 'A'), +(258, 1, 'SOTO GONZALEZ FRANCISCO LAZARO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 116511, '2011-05-07', 856050.00, 'A'), +(2580, 3, 'VAN DER KOOIJ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 291277, '2011-07-10', 660130.00, 'A'), +(2581, 2, 'KRIS ANDRE GEORGES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127300, '2011-07-26', 598240.00, 'A'), +(2582, 3, 'HARDING LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 263813, '2011-05-08', 10820.00, 'A'), +(2583, 3, 'ROLLI GUY JEAN ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 145135, '2011-05-31', 259370.00, 'A'), +(2584, 3, 'NIETO PARRA SEBASTIAN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 263813, '2011-07-04', 264400.00, 'A'), +(2585, 3, 'LASTRA CHAVEZ PABLO ARMANDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 126674, '2011-05-25', 543890.00, 'A'), +(2586, 1, 'ZAIDA MAYERLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 132958, '2011-05-05', 926250.00, 'A'), +(2587, 1, 'OSWALDO SOLORZANO CONTRERAS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-28', 999590.00, 'A'), +(2588, 3, 'ZHOU XUAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-05-18', 219200.00, 'A'), +(2589, 3, 'HUANG ZHENGQUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-05-18', 97230.00, 'A'), +(259, 1, 'GALARZA NARANJO JAIME RENE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 988830.00, 'A'), +(2590, 3, 'HUANG ZHENQUIN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-05-18', 828560.00, 'A'), +(2591, 3, 'WEIDEN MULLER AMURER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-03-29', 851110.00, 'A'), +(2593, 3, 'OESTERHAUS CORNELIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 256231, '2011-03-29', 295960.00, 'A'), +(2594, 3, 'RINTALAHTI JUHA HENRIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-23', 170220.00, 'A'), +(2597, 3, 'VERWIJNEN JONAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 289697, '2011-02-03', 638040.00, 'A'), +(2598, 3, 'SHAW ROBERT', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 157414, '2011-07-10', 273550.00, 'A'), +(2599, 3, 'MAKINEN TIMO JUHANI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 196234, '2011-09-13', 453600.00, 'A'), +(260, 1, 'RIVERA CANON JOSE EDWARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127538, '2011-09-19', 375990.00, 'A'), +(2600, 3, 'HONKANIEMI ARTO OLAVI', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 301387, '2011-09-06', 447380.00, 'A'), +(2601, 3, 'DAGG JAMIE MICHAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 216125, '2011-08-09', 876080.00, 'A'), +(2602, 3, 'BOLAND PATRICK CHARLES ', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 216125, '2011-09-14', 38260.00, 'A'), +(2603, 2, 'ZULEYKA JERRYS RIVERA MENDOZA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 150347, '2011-03-27', 563050.00, 'A'), +(2604, 3, 'DELGADO SEQUIRA FERRAO JOSE PEDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188228, '2011-08-16', 700460.00, 'A'), +(2605, 3, 'YORRO LORA EDGAR MANUEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127689, '2011-06-17', 813180.00, 'A'), +(2606, 3, 'CARRASCO RODRIGUEZQCARLOS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127689, '2011-06-17', 964520.00, 'A'), +(2607, 30, 'ORJUELA VELASQUEZ JULIANA MARIA', 191821112, 'CRA 25 CALLE 100', + '372@terra.com.co', '2011-02-03', 132775, '2011-09-01', 383070.00, 'A'), +(2608, 3, 'DUQUE DUTRA LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118942, '2011-07-12', 21780.00, 'A'), +(261, 1, 'MURCIA MARQUEZ NESTOR JAVIER', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-19', 913480.00, 'A'), +(2610, 3, 'NGUYEN HUU KHUONG', 191821112, 'CRA 25 CALLE 100', + '457@facebook.com', '2011-02-03', 132958, '2011-05-07', 733120.00, 'A'), +(2611, 3, 'NGUYEN VAN LAP', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 132958, '2011-05-07', 786510.00, 'A'), +(2612, 3, 'PHAM HUU THU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 132958, '2011-05-07', 733200.00, 'A'), +(2613, 3, 'DANG MING CUONG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 132958, '2011-05-07', 306460.00, 'A'), +(2614, 3, 'VU THI HONG HANH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 132958, '2011-05-07', 332710.00, 'A'), +(2615, 3, 'CHAU TANG LANG', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 132958, '2011-05-07', 744190.00, 'A'), +(2616, 3, 'CHU BAN THING', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 132958, '2011-05-07', 722800.00, 'A'), +(2617, 3, 'NGUYEN QUANG THU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 132958, '2011-05-07', 381420.00, 'A'), +(2618, 3, 'TRAN THI KIM OANH', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 132958, '2011-05-07', 738690.00, 'A'), +(2619, 3, 'NGUYEN VAN VINH', 191821112, 'CRA 25 CALLE 100', '422@yahoo.com.mx', + '2011-02-03', 132958, '2011-05-07', 549210.00, 'A'), +(262, 1, 'ABDULAZIS ELNESER KHALED', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-27', 439430.00, 'A'), +(2620, 3, 'NGUYEN XUAN VY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 132958, '2011-05-07', 529950.00, 'A'), +(2621, 3, 'HA MANH HOA', 191821112, 'CRA 25 CALLE 100', '439@gmail.com', + '2011-02-03', 132958, '2011-05-07', 2160.00, 'A'), +(2622, 3, 'ZAFIROPOULO STEVEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-05-25', 420930.00, 'A'), +(2624, 3, 'TEMIGTERRA MASSIMILIANO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 210050, '2011-09-26', 228070.00, 'A'), +(2625, 3, 'CASSES TRINDADE HELGIO HENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118402, '2011-09-13', 845850.00, 'A'), +(2626, 3, 'ASCOLI MASTROENI MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 120773, '2011-09-07', 545010.00, 'A'), +(2627, 3, 'MONTEIRO SOARES MARCOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 120773, '2011-07-18', 187530.00, 'A'), +(2629, 3, 'HALL ALVARO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 120773, '2011-08-02', 950450.00, 'A'), +(2631, 3, 'ANDRADE CATUNDA RAFAEL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 120773, '2011-08-23', 370860.00, 'A'), +(2632, 3, 'MAGALHAES MAYRA ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 118767, '2011-08-23', 320960.00, 'A'), +(2633, 3, 'SPREAFICO MIRIAM ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 118587, '2011-08-23', 492220.00, 'A'), +(2634, 3, 'GOMES FERREIRA HELIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 125812, '2011-08-23', 498220.00, 'A'), +(2635, 3, 'FERNANDES SENNA PIRES SERGIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-10-05', 14460.00, 'A'), +(2636, 3, 'BALESTRO FLORIANO FABIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 120773, '2011-08-24', 577630.00, 'A'), +(2637, 3, 'CABANA DE QUEIROZ ANDRADE ALAXANDRE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-23', 844780.00, 'A'), +(2638, 3, 'DALBOSCO CARLA', 191821112, 'CRA 25 CALLE 100', '380@yahoo.com.mx', + '2011-02-03', 127591, '2011-06-30', 491010.00, 'A'), +(264, 1, 'ROMERO MONTOYA NICOLAY ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-13', 965220.00, 'A'), +(2640, 3, 'BILLINI CRUZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 144215, '2011-03-27', 130530.00, 'A'), +(2641, 3, 'VASQUES ARIAS DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 144509, '2011-08-19', 890500.00, 'A'), +(2642, 3, 'ROJAS VOLQUEZ GLADYS MICHELLE', 191821112, 'CRA 25 CALLE 100', + '852@gmail.com', '2011-02-03', 144215, '2011-07-25', 60930.00, 'A'), +(2643, 3, 'LLANEZA GIL JUAN RAFAELMO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 144215, '2011-07-08', 633120.00, 'A'), +(2646, 3, 'AVILA PEROZO IANKEL JACOB', 191821112, 'CRA 25 CALLE 100', + '318@hotmail.com', '2011-02-03', 144215, '2011-09-03', 125600.00, 'A'), +(2647, 3, 'REGULAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-08-19', 583540.00, 'A'), +(2648, 3, 'CORONADO BATISTA JOSE ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-19', 540910.00, 'A'), +(2649, 3, 'OLIVIER JOSE VICTOR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 144509, '2011-08-19', 953910.00, 'A'), +(2650, 3, 'YOO HOE TAEK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 145135, '2011-08-25', 146820.00, 'A'), +(266, 1, 'CUECA RODRIGUEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-22', 384280.00, 'A'), +(267, 1, 'NIETO ALVARADO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2008-04-28', 553450.00, 'A'), +(269, 1, 'LEAL HOLGUIN FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-07-25', 411700.00, 'A'), +(27, 1, 'MORENO MORENO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2009-09-15', 995620.00, 'A'), +(270, 1, 'CANO IBANES JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-06-03', 215260.00, 'A'), +(271, 1, 'RESTREPO HERRAN ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132775, '2011-04-18', 841220.00, 'A'), +(272, 3, 'RIOS FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 199862, '2011-03-24', 560300.00, 'A'), +(273, 1, 'MADERO LORENZANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-08-03', 277850.00, 'A'), +(274, 1, 'GOMEZ GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-09-24', 708350.00, 'A'), +(275, 1, 'CONSUEGRA ARENAS ANDRES MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-09', 708210.00, 'A'), +(276, 1, 'HURTADO ROJAS NICOLAS', 191821112, 'CRA 25 CALLE 100', + '463@yahoo.com.mx', '2011-02-03', 127591, '2011-09-07', 416000.00, 'A'), +(277, 1, 'MURCIA BAQUERO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-02', 955370.00, 'A'), +(2773, 3, 'TAKUBO KAORI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 165753, '2011-05-12', 872390.00, 'A'), +(2774, 3, 'OKADA MAKOTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 165753, '2011-06-19', 921480.00, 'A'), +(2775, 3, 'TAKEDA AKIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 21062, '2011-06-19', 990250.00, 'A'), +(2776, 3, 'KOIKE WATARU ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 165753, '2011-06-19', 186800.00, 'A'), +(2777, 3, 'KUBO SHINEI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 165753, '2011-02-13', 963230.00, 'A'), +(2778, 3, 'KANNO YONEZO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 165600, '2011-07-26', 255770.00, 'A'), +(278, 3, 'PARENT ELOIDE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 267980, '2011-05-01', 528840.00, 'A'), +(2781, 3, 'SUNADA MINORU ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 165753, '2011-06-19', 724450.00, 'A'), +(2782, 3, 'INOUE KASUYA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-06-22', 87150.00, 'A'), +(2783, 3, 'OTAKE NOBUTOSHI', 191821112, 'CRA 25 CALLE 100', '208@facebook.com', + '2011-02-03', 127591, '2011-06-11', 262380.00, 'A'), +(2784, 3, 'MOTOI KEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 165753, '2011-06-19', 50470.00, 'A'), +(2785, 3, 'TANAKA KIYOTAKA ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 165753, '2011-06-19', 465210.00, 'A'), +(2787, 3, 'YUMIKOPERDOMO', 191821112, 'CRA 25 CALLE 100', '600@yahoo.es', + '2011-02-03', 165600, '2011-07-26', 477550.00, 'A'), +(2788, 3, 'FUKUSHIMA KENZO', 191821112, 'CRA 25 CALLE 100', '599@gmail.com', + '2011-02-03', 156960, '2011-05-30', 863860.00, 'A'), +(2789, 3, 'GELGIN LEVENT NURI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-05-26', 886630.00, 'A'), +(279, 1, 'AVIATUR S. A.', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-05-02', 778110.00, 'A'), +(2791, 3, 'GELGIN ENIS ENRE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-05-26', 547940.00, 'A'), +(2792, 3, 'PAZ SOTO LUBRASCA MARIA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 143954, '2011-06-27', 215000.00, 'A'), +(2794, 3, 'MOURAD TAOUFIKI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-04-13', 511000.00, 'A'), +(2796, 3, 'DASTUS ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 218656, '2011-05-29', 774010.00, 'A'), +(2797, 3, 'MCDONALD MICHAEL LORNE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 269033, '2011-07-19', 85820.00, 'A'), +(2799, 3, 'KLESO MICHAEL QUENTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 269033, '2011-07-26', 277950.00, 'A'), +(28, 1, 'GONZALEZ ACUNA EDGAR MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-09-19', 531710.00, 'A'), +(280, 3, 'NEME KARIM CHAIBAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 135967, '2010-05-02', 304040.00, 'A'), +(2800, 3, 'CLERK CHARLES ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 244158, '2011-07-26', 68490.00, 'A'), +('CELL3673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(2801, 3, 'BURRIS MAURICE STEWARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-09-27', 508600.00, 'A'), +(2802, 1, 'PINCHEN CLAIRE ELAINE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 216125, '2011-04-13', 337530.00, 'A'), +(2803, 3, 'LETTNER EVA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 231224, '2011-09-20', 161860.00, 'A'), +(2804, 3, 'CANUEL LUCIE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 146258, '2011-09-20', 796710.00, 'A'), +(2805, 3, 'IGLESIAS CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 216125, '2011-08-02', 497980.00, 'A'), +(2806, 3, 'PAQUIN JEAN FRANCOIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 269033, '2011-03-27', 99760.00, 'A'), +(2807, 3, 'FOURNIER DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 228688, '2011-05-19', 4860.00, 'A'), +(2808, 3, 'BILODEAU MARTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-09-13', 725030.00, 'A'), +(2809, 3, 'KELLNER PETER WILLIAM', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 130757, '2011-07-24', 610570.00, 'A'), +(2810, 3, 'ZAZULAK INGRID ROSEMARIE', 191821112, 'CRA 25 CALLE 100', + '683@facebook.com', '2011-02-03', 240550, '2011-09-11', 877770.00, 'A'), +(2811, 3, 'RUCCI JHON MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 285188, '2011-05-10', 557130.00, 'A'), +(2813, 3, 'JONCAS MARC', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 33265, '2011-03-21', 90360.00, 'A'), +(2814, 3, 'DUCHARME ERICK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-03-29', 994750.00, 'A'), +(2816, 3, 'BAILLOD THOMAS DAVID ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 239124, '2010-10-20', 529130.00, 'A'), +(2817, 3, 'MARTINEZ SORIA JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 289697, '2011-09-06', 537630.00, 'A'), +(2818, 3, 'TAMARA RABER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-04-30', 100750.00, 'A'), +(2819, 3, 'BURGI VINCENT EMANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 245206, '2011-04-20', 890860.00, 'A'), +(282, 1, 'HUESPED ASISTENTE A LA CONVENCION DE LA DIAN', 191821112, + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2009-06-24', 17160.00, + 'A'), +(2820, 3, 'ROBLES TORRALBA IVAN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 238949, '2011-05-16', 152030.00, 'A'), +(2821, 3, 'CONSUEGRA MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-06-06', 87600.00, 'A'), +(2822, 3, 'CELMA ADROVER LAIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 190393, '2011-03-23', 981880.00, 'A'), +(2823, 3, 'ALVAREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 150699, '2011-06-20', 646610.00, 'A'), +(2824, 3, 'VARGAS WOODROFFE FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 157414, '2011-06-22', 287410.00, 'A'), +(2825, 3, 'GARCIA GUILLEN VICENTE LUIS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 144215, '2011-08-19', 497230.00, 'A'), +(2826, 3, 'GOMEZ GARCIA DIAMANTES PATRICIA MARIA', 191821112, + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2011-09-22', + 623930.00, 'A'), +(2827, 3, 'PEREZ IGLESIAS BIBIANA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 132958, '2011-09-30', 627940.00, 'A'), +(2830, 3, 'VILLALONGA MORENES MARIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 169679, '2011-05-29', 474910.00, 'A'), +(2831, 3, 'REY LOPEZ DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 150699, '2011-08-03', 7380.00, 'A'), +(2832, 3, 'HOYO APARICIO JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 116511, '2011-09-19', 612180.00, 'A'), +(2836, 3, 'GOMEZ GARCIA LOPEZ CARLOS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 150699, '2011-09-21', 277540.00, 'A'), +(2839, 3, 'GALIMERTI MARCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 235197, '2011-08-28', 156870.00, 'A'), +(2840, 3, 'BAROZZI GIUSEPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 231989, '2011-05-25', 609500.00, 'A'), +(2841, 3, 'MARIAN RENATO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-06-12', 576900.00, 'A'), +(2842, 3, 'FAENZA CARLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 126180, '2011-05-19', 55990.00, 'A'), +(2843, 3, 'PESOLILLO CARMINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 203162, '2011-06-26', 549230.00, 'A'), +(2844, 3, 'CHIODI FRANCESCO MARIA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 199862, '2011-09-10', 578210.00, 'A'), +(2845, 3, 'RUTA MARIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2011-06-19', 243350.00, 'A'), +(2846, 3, 'BAZZONI MARINO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 101518, '2011-05-03', 482140.00, 'A'), +(2848, 3, 'LAGASIO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 231989, '2011-05-04', 956670.00, 'A'), +(2849, 3, 'VIERA DA CUNHA PAULO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 190393, '2011-04-05', 741520.00, 'A'), +(2850, 3, 'DAL BEN DENIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 116511, '2011-05-26', 837590.00, 'A'), +(2851, 3, 'GIANELLI HERIBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 233927, '2011-05-01', 963400.00, 'A'), +(2852, 3, 'JUSTINO DA SILVA DJAMIR', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-04-08', 304200.00, 'A'), +(2853, 3, 'DIPASQUUALE GAETANO', 191821112, 'CRA 25 CALLE 100', + '574@terra.com.co', '2011-02-03', 172888, '2011-07-11', 630830.00, 'A'), +(2855, 3, 'CURI MAURO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 199862, '2011-06-19', 315160.00, 'A'), +(2856, 3, 'DI DIO MARCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-08-20', 851210.00, 'A'), +(2857, 3, 'ROBERTI MENDONCA CAIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-11', 310580.00, 'A'), +(2859, 3, 'RAMOS MORENO DE SOUZA ANDRE ', 191821112, 'CRA 25 CALLE 100', + '133@facebook.com', '2011-02-03', 118777, '2011-09-24', 64540.00, 'A'), +(286, 8, 'INEXMODA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 128662, '2011-06-21', 50150.00, 'A'), +(2860, 3, 'JODJAHN DE CARVALHO FLAVIA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118942, '2011-06-27', 324950.00, 'A'), +(2862, 3, 'LAGASIO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 231989, '2011-07-04', 180760.00, 'A'), +(2863, 3, 'MOON SUNG RIUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-04-08', 610440.00, 'A'), +(2865, 3, 'VAIDYANATHAN VIKRAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-05-11', 718220.00, 'A'), +(2866, 3, 'NARAYANASWAMY RAMSUNDAR', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 73079, '2011-10-02', 61390.00, 'A'), +(2867, 3, 'VADADA VENKATA RAMESH KUMAR', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-10', 152300.00, 'A'), +(2868, 3, 'RAMA KRISHNAN ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-09-10', 577300.00, 'A'), +(2869, 3, 'JALAN PRASHANT', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 122035, '2011-05-02', 429600.00, 'A'), +(2871, 3, 'CHANDRASEKAR VENKAT', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 112862, '2011-06-27', 791800.00, 'A'), +(2872, 3, 'CUMBAKONAM SWAMINATHAN SUBRAMANIAN', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-11', 710650.00, 'A'), +(288, 8, 'BCD TRAVEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-07-23', 645390.00, 'A'), +(289, 3, 'EMBAJADA ARGENTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '1970-02-02', 749440.00, 'A'), +('CELL3789', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(290, 3, 'EMBAJADA DE BRASIL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 128662, '2010-11-16', 811030.00, 'A'), +(293, 8, 'ONU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', + 127591, '2010-09-19', 584810.00, 'A'), +(299, 1, 'BLANDON GUZMAN JHON JAIRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-01-13', 201740.00, 'A'), +(304, 3, 'COHEN DANIEL DYLAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 286785, '2010-11-17', 184850.00, 'A'), +(306, 1, 'CINDU ANDINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2009-06-11', 899230.00, 'A'), +(31, 1, 'GARRIDO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127662, '2010-09-12', 801450.00, 'A'), +(310, 3, 'CORPORACION CLUB EL NOGAL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2010-08-27', 918760.00, 'A'), +(314, 3, 'CHAWLA AARON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-04-08', 295840.00, 'A'), +(317, 3, 'BAKER HUGHES', 191821112, 'CRA 25 CALLE 100', '694@hotmail.com', + '2011-02-03', 127591, '2011-04-03', 211990.00, 'A'), +(32, 1, 'PAEZ SEGURA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '675@gmail.com', '2011-02-03', 129447, '2011-08-22', 717340.00, 'A'), +(320, 1, 'MORENO PAEZ FREDDY ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-31', 971670.00, 'A'), +(322, 1, 'CALDERON CARDOZO GASTON EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-10-05', 990640.00, 'A'), +(324, 1, 'ARCHILA MERA ALFREDOMANUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-22', 77200.00, 'A'), +(326, 1, 'MUNOZ AVILA HERNEY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2010-11-10', 550920.00, 'A'), +(327, 1, 'CHAPARRO CUBILLOS FABIAN ANDRES', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-15', 685080.00, 'A'), +(329, 1, 'GOMEZ LOPEZ JUAN SEBASTIAN', 191821112, 'CRA 25 CALLE 100', + '970@yahoo.com', '2011-02-03', 127591, '2011-03-20', 808070.00, 'A'), +(33, 1, 'MARTINEZ MARINO HENRY HERNAN', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-04-20', 182370.00, 'A'), +(330, 3, 'MAPSTONE NAOMI LEA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 122035, '2010-02-21', 722380.00, 'A'), +(332, 3, 'ROSSI BURRI NELLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 132165, '2010-05-10', 771210.00, 'A'), +(333, 1, 'AVELLANEDA OVIEDO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-25', 293060.00, 'A'), +(334, 1, 'SUZA FLOREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-05-13', 151650.00, 'A'), +(335, 1, 'ESGUERRA ALVARO ANDRES', 191821112, 'CRA 25 CALLE 100', + '11@facebook.com', '2011-02-03', 127591, '2011-09-10', 879080.00, 'A'), +(337, 3, 'DE LA HARPE MARTIN CARAPET WALTER', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-27', 64960.00, 'A'), +(339, 1, 'HERNANDEZ ACOSTA SERGIO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 129499, '2011-06-22', 322570.00, 'A'), +(340, 3, 'ZARAMA DE LA ESPRIELLA MIGUEL PATRICIO', 191821112, + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-27', + 102360.00, 'A'), +(342, 1, 'CABRERA VASQUEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-01', 413440.00, 'A'), +(343, 3, 'RICHARDSON BEN MARRIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 286785, '2010-05-18', 434890.00, 'A'), +(344, 1, 'OLARTE PINZON MIGUEL FELIPE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-30', 934140.00, 'A'), +(345, 1, 'SOLER SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 128662, '2011-04-20', 366020.00, 'A'), +(346, 1, 'PRIETO JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2010-07-12', 27690.00, 'A'), +(349, 1, 'BARRERO VELASCO DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-05-01', 472850.00, 'A'), +(35, 1, 'VELASQUEZ RAMOS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-13', 251940.00, 'A'), +(350, 1, 'RANGEL GARCIA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-03-20', 7880.00, 'A'), +(353, 1, 'ALVAREZ ACEVEDO JOHN FREDDY', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-16', 540070.00, 'A'), +(354, 1, 'VILLAMARIN HOME WILMAR ALFREDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-09-19', 458810.00, 'A'), +(355, 3, 'SLUCHIN NAAMAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 263813, '2010-12-01', 673830.00, 'A'), +(357, 1, 'BULLA BERNAL LUIS ERNESTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-06-14', 942160.00, 'A'), +(358, 1, 'BRACCIA AVILA GIANCARLO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-01', 732620.00, 'A'), +(359, 1, 'RODRIGUEZ PINTO RAUL DAVID', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-24', 836600.00, 'A'), +(36, 1, 'MALDONADO ALVAREZ JAIRO ASDRUBAL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127300, '2011-06-19', 980270.00, 'A'), +(362, 1, 'POMBO POLANCO JUAN BERNARDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-18', 124130.00, 'A'), +(363, 1, 'CARDENAS SUAREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-01', 372920.00, 'A'), +(364, 1, 'RIVERA MAZO JOSE DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 128662, '2010-06-10', 492220.00, 'A'), +(365, 1, 'LEDERMAN CORDIKI JONATHAN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-12-03', 342340.00, 'A'), +(367, 1, 'BARRERA MARTINEZ LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', + '35@yahoo.com.mx', '2011-02-03', 127591, '2011-05-24', 148130.00, 'A'), +(368, 1, 'SEPULVEDA RAMIREZ DANIEL MARCELO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-31', 35560.00, 'A'), +(369, 1, 'QUINTERO DIAZ WILSON ASDRUBAL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', 733430.00, 'A'), +(37, 1, 'RESTREPO SUAREZ HENRY BERNARDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127300, '2011-07-25', 145540.00, 'A'), +(370, 1, 'ROJAS YARA WILLMAR ARLEY', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-12-03', 560450.00, 'A'), +(371, 3, 'CARVER LOUISE EMILY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 286785, '2010-10-07', 601980.00, 'A'), +(372, 3, 'VINCENT DAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 286785, '2011-03-06', 328540.00, 'A'), +(374, 1, 'GONZALEZ DELGADO MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-08-18', 198260.00, 'A'), +(375, 1, 'PAEZ SIMON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-06-25', 480970.00, 'A'), +(376, 1, 'CADOSCH DELMAR ELIE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-10-07', 810080.00, 'A'), +(377, 1, 'HERRERA VASQUEZ DANIEL EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-06-30', 607460.00, 'A'), +(378, 1, 'CORREAL ROJAS RONALD', 191821112, 'CRA 25 CALLE 100', + '269@facebook.com', '2011-02-03', 127591, '2011-07-16', 607080.00, 'A'), +(379, 1, 'VOIDONNIKOLAS MUNOS PANAGIOTIS', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-27', 213010.00, 'A'), +(38, 1, 'CANAL ROJAS MAURICIO HERNANDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-05-29', 786900.00, 'A'), +(380, 1, 'DIAZ ECHEVERRI JUAN DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-20', 243800.00, 'A'), +(381, 1, 'CIFUENTES MARIN HERNANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-05-26', 579960.00, 'A'), +(382, 3, 'PAXTON LUCINDA HARRIET', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 107159, '2011-05-23', 168420.00, 'A'), +(384, 3, 'POYNTON BRIAN GEORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 286785, '2011-03-20', 5790.00, 'A'), +(385, 3, 'TERMIGNONI ADRIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-01-14', 722320.00, 'A'), +(386, 3, 'CARDWELL PAULA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-02-17', 594230.00, 'A'), +(389, 1, 'FONCECA MARTINEZ MIGUEL ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-25', 778680.00, 'A'), +(39, 1, 'GARCIA SUAREZ WILLIAM ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-25', 497880.00, 'A'), +(390, 1, 'GUERRERO NELSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2010-12-03', 178650.00, 'A'), +(391, 1, 'VICTORIA PENA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-06-22', 557200.00, 'A'), +(392, 1, 'VAN HISSENHOVEN FERRERO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-13', 250060.00, 'A'), +(393, 1, 'CACERES ORDUZ JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-06-28', 578690.00, 'A'), +(394, 1, 'QUINTERO ALVARO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-08-17', 143270.00, 'A'), +(395, 1, 'ANZOLA PEREZ CARLOSDAVID', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-04', 980300.00, 'A'), +(397, 1, 'LLOREDA ORTIZ CARLOS JOSE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-27', 417470.00, 'A'), +(398, 1, 'GONZALES LONDONO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-06-19', 672310.00, 'A'), +(4, 1, 'LONDONO DOMINGUEZ ERNESTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-09-05', 324610.00, 'A'), +(40, 1, 'MORENO ANGULO ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-06-01', 128690.00, 'A'), +(400, 8, 'TRANSELCA .A', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 133535, '2011-04-14', 528930.00, 'A'), +(403, 1, 'VERGARA MURILLO JUAN FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-03-04', 42900.00, 'A'), +(405, 1, 'CAPERA CAPERA HARRINSON', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127799, '2011-06-12', 961000.00, 'A'), +(407, 1, 'MORENO MORA WILLIAM EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-22', 872780.00, 'A'), +(408, 1, 'HIGUERA ROA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-03-28', 910430.00, 'A'), +(409, 1, 'FORERO CASTILLO OSCAR ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '988@terra.com.co', '2011-02-03', 127591, '2011-07-23', 933810.00, 'A'), +(410, 1, 'LOPEZ MURCIA JULIAN DANIEL', 191821112, 'CRA 25 CALLE 100', + '399@facebook.com', '2011-02-03', 127591, '2011-08-08', 937790.00, 'A'), +(411, 1, 'ALZATE JOHN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 128662, '2011-09-09', 887490.00, 'A'), +(412, 1, 'GONZALES GONZALES ORLANDO ANDREY', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-30', 624080.00, 'A'), +(413, 1, 'ESCOLANO VALENTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-08-05', 457930.00, 'A'), +(414, 1, 'JARAMILLO RODRIGUEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-12', 417420.00, 'A'), +(415, 1, 'GARCIA MUNOZ DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-10-02', 713300.00, 'A'), +(416, 1, 'PINEROS ARENAS JUAN DAVID', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-10-17', 314260.00, 'A'), +(417, 1, 'ORTIZ ARROYAVE ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2011-05-21', 431370.00, 'A'), +(418, 1, 'BAYONA BARRIENTOS JEAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-12', 214090.00, 'A'), +(419, 1, 'AGUDELO VASQUEZ JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-08-30', 776360.00, 'A'), +(420, 1, 'CALLE DANIEL CJ PRODUCCIONES', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-11-04', 239500.00, 'A'), +(422, 1, 'CANO BETANCUR ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 128662, '2011-08-20', 623620.00, 'A'), +(423, 1, 'CALDAS BARRETO LUZ MIREYA', 191821112, 'CRA 25 CALLE 100', + '991@facebook.com', '2011-02-03', 127591, '2011-05-22', 512840.00, 'A'), +(424, 1, 'SIMBAQUEBA JOSE ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-07-25', 693320.00, 'A'), +(425, 1, 'DE SILVESTRE CALERO LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-18', 928110.00, 'A'), +(426, 1, 'ZORRO PERALTA YEZID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-07-25', 560560.00, 'A'), +(428, 1, 'SUAREZ OIDOR DARWIN LEONARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 131272, '2011-09-05', 410650.00, 'A'), +(429, 1, 'GIRAL CARRILLO LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-13', 997850.00, 'A'), +(43, 1, 'MARULANDA VALENCIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-09-17', 365550.00, 'A'), +(430, 1, 'CORDOBA GARCES JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-18', 757320.00, 'A'), +(431, 1, 'ARIAS TAMAYO DIEGO MAURICIO', 191821112, 'CRA 25 CALLE 100', + '36@yahoo.com', '2011-02-03', 127591, '2011-09-05', 793050.00, 'A'), +(432, 1, 'EICHMANN PERRET MARC WILLY', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-22', 693270.00, 'A'), +(433, 1, 'DIAZ DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2008-09-18', 87200.00, 'A'), +(435, 1, 'FACCINI GONZALEZ HERMANN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2009-01-08', 519420.00, 'A'), +(436, 1, 'URIBE DUQUE FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-06-28', 528470.00, 'A'), +(437, 1, 'TAVERA GAONA GABREL LEAL', 191821112, 'CRA 25 CALLE 100', + '280@terra.com.co', '2011-02-03', 127591, '2011-04-28', 84120.00, 'A'), +(438, 1, 'ORDONEZ PARIS FERNANDO MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 150699, '2011-09-26', 835170.00, 'A'), +(439, 1, 'VILLEGAS ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-03-19', 923520.00, 'A'), +(44, 1, 'MARTINEZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 128662, '2011-08-13', 738750.00, 'A'), +(440, 1, 'MARTINEZ RUEDA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '805@hotmail.es', '2011-02-03', 127591, '2011-04-07', 112050.00, 'A'), +(441, 1, 'ROLDAN JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2010-05-25', 789720.00, 'A'), +(442, 1, 'PEREZ BRANDWAYN ELIYAU MOISES', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-10-20', 612450.00, 'A'), +(443, 1, 'VALLEJO TORO JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128579, '2011-08-16', 693080.00, 'A'), +(444, 1, 'TORRES CABRERA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-03-19', 628070.00, 'A'), +(445, 1, 'MERINO MEJIA GERMAN ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-28', 61100.00, 'A'), +(447, 1, 'GOMEZ GOMEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-09-08', 923070.00, 'A'), +(448, 1, 'RAUSCH CHEHEBAR STEVEN JOSEPH', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 133535, '2011-09-27', 351540.00, 'A'), +(449, 1, 'RESTREPO TRUCCO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-28', 988500.00, 'A'), +(45, 1, 'GUTIERREZ JARAMILLO CARLOS MARIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-22', 597090.00, 'A'), +(450, 1, 'GOLDSTEIN VAIDA ELI JACK', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-11', 887860.00, 'A'), +(451, 1, 'OLEA PINEDA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-08-10', 473800.00, 'A'), +(452, 1, 'JORGE OROZCO', 191821112, 'CRA 25 CALLE 100', '503@hotmail.es', + '2011-02-03', 127591, '2011-06-02', 705410.00, 'A'), +(454, 1, 'DE LA TORRE GOMEZ GERMAN ERNESTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-03-03', 411990.00, 'A'), +(456, 1, 'MADERO ARIAS JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '452@hotmail.es', '2011-02-03', 127591, '2011-08-22', 479090.00, 'A'), +(457, 1, 'GOMEZ MACHUCA ALVARO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-08-12', 166430.00, 'A'), +(458, 1, 'MENDIETA TOBON DANIEL RICARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-08', 394880.00, 'A'), +(459, 1, 'VILLADIEGO CORTINA JAVIER TOMAS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-26', 475110.00, 'A'), +(46, 1, 'FERRUCHO ARCINIEGAS JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', 769220.00, 'A'), +(460, 1, 'DERESER HARTUNG ERNESTO JOSE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-12-25', 190900.00, 'A'), +(461, 1, 'RAMIREZ PENA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-06-25', 529190.00, 'A'), +(463, 1, 'IREGUI REYES LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-10-07', 778590.00, 'A'), +(464, 1, 'PINTO GOMEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 132775, '2010-06-24', 673270.00, 'A'), +(465, 1, 'RAMIREZ RAMIREZ FERNANDO ALONSO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127799, '2011-10-01', 30570.00, 'A'), +(466, 1, 'BERRIDO TRUJILLO JORGE HENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132775, '2011-10-06', 133040.00, 'A'), +(467, 1, 'RIVERA CARVAJAL RAFAEL HUMBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-20', 573500.00, 'A'), +(468, 3, 'FLOREZ PUENTES IVAN ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-05-08', 468380.00, 'A'), +(469, 1, 'BALLESTEROS FLOREZ IVAN DARIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-06-02', 621410.00, 'A'), +(47, 1, 'MARIN FLOREZ OMAR EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-30', 54840.00, 'A'), +(470, 1, 'RODRIGO PENA HERRERA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 237734, '2011-10-04', 701890.00, 'A'), +(471, 1, 'RODRIGUEZ SILVA ROGELIO', 191821112, 'CRA 25 CALLE 100', + '163@gmail.com', '2011-02-03', 127591, '2011-05-26', 645210.00, 'A'), +(473, 1, 'VASQUEZ VELANDIA JUAN GABRIEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196234, '2011-05-04', 666330.00, 'A'), +(474, 1, 'ROBLEDO JAIME', 191821112, 'CRA 25 CALLE 100', '409@yahoo.com', + '2011-02-03', 127591, '2011-05-31', 970480.00, 'A'), +(475, 1, 'GRIMBERG DIAZ PHILIP', 191821112, 'CRA 25 CALLE 100', '723@yahoo.com', + '2011-02-03', 127591, '2011-03-30', 853430.00, 'A'), +(476, 1, 'CHAUSTRE GARCIA JUAN PABLO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-26', 355670.00, 'A'), +(477, 1, 'GOMEZ FLOREZ IGNASIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2010-09-14', 218090.00, 'A'), +(478, 1, 'LUIS ALBERTO CABRERA PUENTES', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 133535, '2011-05-26', 23420.00, 'A'), +(479, 1, 'MARTINEZ ZAPATA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '234@gmail.com', '2011-02-03', 127122, '2011-07-01', 462840.00, 'A'), +(48, 1, 'PARRA IBANEZ FABIAN ERNESTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-02-01', 966520.00, 'A'), +(480, 3, 'WESTERBERG JAN RICKARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 300701, '2011-02-01', 243940.00, 'A'), +(484, 1, 'RODRIGUEZ VILLALOBOS EDGAR FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-19', 860320.00, 'A'), +(486, 1, 'NAVARRO REYES DIEGO FELIPE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-01', 530150.00, 'A'), +(487, 1, 'NOGUERA RICAURTE ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-01-21', 384100.00, 'A'), +(488, 1, 'RUIZ VEJARANO CARLOS DANIEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-27', 330030.00, 'A'), +(489, 1, 'CORREA PEREZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2010-12-14', 497860.00, 'A'), +(49, 1, 'FLOREZ PEREZ RUBIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-05-23', 668090.00, 'A'), +(490, 1, 'REYES GOMEZ LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-26', 499210.00, 'A'), +(491, 3, 'BERNAL LEON ALBERTO JOSE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 150699, '2011-03-29', 2470.00, 'A'), +(492, 1, 'FELIPE JARAMILLO CARO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2009-10-31', 514700.00, 'A'), +(493, 1, 'GOMEZ PARRA GERMAN DARIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-01-29', 566100.00, 'A'), +(494, 1, 'VALLEJO RAMIREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-13', 286390.00, 'A'), +(495, 1, 'DIAZ LONDONO HUGO MARIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 733670.00, 'A'), +(496, 3, 'VAN BAKERGEM RONALD JAN', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2008-11-05', 809190.00, 'A'), +(497, 1, 'MENDEZ RAMIREZ JOSE LEONARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-10', 844920.00, 'A'), +(498, 3, 'QUI TANILLA HENRIQUEZ PAUL ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-10', 797030.00, 'A'), +(499, 3, 'PELEATO FLOREAL', 191821112, 'CRA 25 CALLE 100', '531@hotmail.com', + '2011-02-03', 188640, '2011-04-23', 450370.00, 'A'), +(50, 1, 'SILVA GUZMAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-03-24', 440890.00, 'A'), +(502, 3, 'LEO ULF GORAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 300701, '2010-07-26', 181840.00, 'A'), +(503, 3, 'KARLSSON DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 300701, '2011-07-22', 50680.00, 'A'), +(504, 1, 'JIMENEZ JANER ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '889@hotmail.es', '2011-02-03', 203272, '2011-08-29', 707880.00, 'A'), +(506, 1, 'PABON OCHOA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-14', 813050.00, 'A'), +(507, 1, 'ACHURY CADENA CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-26', 903240.00, 'A'), +(508, 1, 'ECHEVERRY GARZON SEBASTIN', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-23', 77050.00, 'A'), +(509, 1, 'PINEROS PENA LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-29', 675550.00, 'A'), +(51, 1, 'CAICEDO URREA JAIME ORLANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127300, '2011-08-17', 200160.00, 'A'), +('CELL3795', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(510, 1, 'MARTINEZ MARTINEZ LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', + '586@facebook.com', '2011-02-03', 127591, '2010-08-28', 146600.00, 'A'), +(511, 1, 'MOLANO PENA JESUS ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-02-05', 706320.00, 'A'), +(512, 3, 'RUDOLPHY FONTAINE ANDRES', 191821112, 'CRA 25 CALLE 100', + '492@yahoo.com', '2011-02-03', 117002, '2011-04-12', 91820.00, 'A'), +(513, 1, 'NEIRA CHAVARRO JOHN JAIRO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-12', 340120.00, 'A'), +(514, 3, 'MENDEZ VILLALOBOS ARMANDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 145135, '2011-03-25', 425160.00, 'A'), +(515, 3, 'HERNANDEZ OLIVA JOSE DE LA CRUZ', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 145135, '2011-03-25', 105440.00, 'A'), +(518, 3, 'JANCO NICOLAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-06-15', 955830.00, 'A'), +(52, 1, 'TAPIA MUNOZ JAIRO RICARDO', 191821112, 'CRA 25 CALLE 100', + '920@hotmail.es', '2011-02-03', 127591, '2011-10-05', 678130.00, 'A'), +(520, 1, 'ALVARADO JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-05-26', 895550.00, 'A'), +(521, 1, 'HUERFANO SOTO JONATHAN', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-30', 619910.00, 'A'), +(522, 1, 'HUERFANO SOTO JONATHAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-06-04', 412900.00, 'A'), +(523, 1, 'RODRIGEZ GOMEZ WILMAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-05-14', 204790.00, 'A'), +(525, 1, 'ARROYO BAPTISTE DIEGO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-09', 311810.00, 'A'), +(526, 1, 'PULECIO BOEK DANIEL', 191821112, 'CRA 25 CALLE 100', '718@gmail.com', + '2011-02-03', 127591, '2011-08-12', 203350.00, 'A'), +(527, 1, 'ESLAVA VELEZ SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2010-10-08', 81300.00, 'A'), +(528, 1, 'CASTRO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-05-06', 796470.00, 'A'), +(53, 1, 'HINCAPIE MARTINEZ RICARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127573, '2011-09-26', 790180.00, 'A'), +(530, 1, 'ZORRILLA PUJANA NICOLAS', 191821112, 'CRA 25 CALLE 100', + '312@yahoo.es', '2011-02-03', 127591, '2011-06-06', 302750.00, 'A'), +(531, 1, 'ZORRILLA PUJANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-06-06', 298440.00, 'A'), +(532, 1, 'PRETEL ARTEAGA MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-05-09', 583980.00, 'A'), +(533, 1, 'RAMOS VERGARA HUMBERTO CARLOS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 131105, '2010-05-13', 24560.00, 'A'), +(534, 1, 'BONILLA PINEROS DIEGO FELIPE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', 370880.00, 'A'), +(535, 1, 'BELTRAN TRIVINO JULIAN DAVID', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-11-06', 780710.00, 'A'), +(536, 3, 'BLOD ULF FREDERICK EDWARD', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-04-06', 790900.00, 'A'), +(537, 1, 'VANEGAS OROZCO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-11-10', 612400.00, 'A'), +(538, 3, 'ORUE VALLE MONICA CECILIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 97885, '2011-09-15', 689270.00, 'A'), +(539, 1, 'AGUDELO BEDOYA ANDRES JOSE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2011-05-24', 609160.00, 'A'), +(54, 1, 'DE HOYOS TRESPALACIOS MAURICIO ALEJANDRO', 191821112, + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-21', + 916500.00, 'A'), +(540, 3, 'HEIJKENSKJOLD PER JESPER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-06', 977980.00, 'A'), +(541, 3, 'GONZALEZ ALVARADO LUIS RAUL', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 117002, '2011-08-27', 62430.00, 'A'), +(543, 1, 'GRUPO SURAMERICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 128662, '2011-08-24', 703760.00, 'A'), +(545, 1, 'CORPORACION CONTEXTO ', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-08', 809570.00, 'A'), +(546, 3, 'LUNDIN JOHAN ERIK ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-07-29', 895330.00, 'A'), +(548, 3, 'VEGERANO JOSE ', 191821112, 'CRA 25 CALLE 100', '221@facebook.com', + '2011-02-03', 190393, '2011-06-05', 553780.00, 'A'), +(549, 3, 'SERRANO MADRID CLAUDIA INES', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-07-27', 625060.00, 'A'), +(55, 1, 'TAFUR GOMEZ ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127300, '2010-09-12', 211980.00, 'A'), +(550, 1, 'MARTINEZ ACEVEDO MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-10-06', 463920.00, 'A'), +(551, 1, 'GONZALEZ MORENO PABLO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-07-21', 444450.00, 'A'), +(552, 1, 'MEJIA ROJAS ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-08-02', 830470.00, 'A'), +(553, 3, 'RODRIGUEZ ANTHONY HANSEL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-16', 819000.00, 'A'), +(554, 1, 'ABUCHAIBE ANNICCHRICO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-31', 603610.00, 'A'), +(555, 3, 'MOYES KIMBERLY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-04-08', 561020.00, 'A'), +(556, 3, 'MONTINI MARIO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 118942, '2010-03-16', 994280.00, 'A'), +(557, 3, 'HOGBERG DANIEL TOBIAS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-15', 288350.00, 'A'), +(559, 1, 'OROZCO PFEIZER MARTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2010-10-07', 429520.00, 'A'), +(56, 1, 'NARINO ROJAS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-09-27', 310390.00, 'A'), +(560, 1, 'GARCIA MONTOYA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-06-02', 770840.00, 'A'), +(562, 1, 'VELASQUEZ PALACIO MANUEL ORLANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-06-23', 515670.00, 'A'), +(563, 1, 'GALLEGO PEREZ DIEGO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-14', 881460.00, 'A'), +(564, 1, 'RUEDA URREGO JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-05-04', 860270.00, 'A'), +(565, 1, 'RESTREPO DEL TORO MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-05-10', 656960.00, 'A'), +(567, 1, 'TORO VALENCIA FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2010-08-04', 549090.00, 'A'), +(568, 1, 'VILLEGAS LUIS ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-05-02', 633490.00, 'A'), +(569, 3, 'RIDSTROM CHRISTER ANDERS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 300701, '2011-09-06', 520150.00, 'A'), +(57, 1, 'TOVAR ARANGO JOHN JAIME', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127662, '2010-07-03', 916010.00, 'A'), +(570, 3, 'SHEPHERD DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2008-05-11', 700280.00, 'A'), +(573, 3, 'BENGTSSON JOHAN ANDREAS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 196830.00, 'A'), +(574, 3, 'PERSSON HANS JONAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-06-09', 172340.00, 'A'), +(575, 3, 'SYNNEBY BJORN ERIK', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-06-15', 271210.00, 'A'), +('CELL381', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(577, 3, 'COHEN PAUL KIRTAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-05-25', 381490.00, 'A'), +(578, 3, 'ROMERO BRAVO FERNANDO EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', 390360.00, 'A'), +(579, 3, 'GUTHRIE ROBERT DEAN', 191821112, 'CRA 25 CALLE 100', '794@gmail.com', + '2011-02-03', 161705, '2010-07-20', 807350.00, 'A'), +(58, 1, 'TORRES ESCOBAR JAIRO ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-06-17', 648860.00, 'A'), +(580, 3, 'ROCASERMENO MONTENEGRO MARIO JOSE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 139844, '2010-12-01', 865650.00, 'A'), +(581, 1, 'COCK JORGE EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 128662, '2011-08-19', 906210.00, 'A'), +(582, 3, 'REISS ANDREAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2009-01-31', 934120.00, 'A'), +(584, 3, 'ECHEVERRIA CASTILLO GERMAN FRANCISCO', 191821112, 'CRA 25 CALLE 100', + '982@yahoo.com', '2011-02-03', 139844, '2011-07-20', 957370.00, 'A'), +(585, 3, 'BRANDT CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-10', 931030.00, 'A'), +(586, 3, 'VEGA NUNEZ GILBERTO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-14', 783010.00, 'A'), +(587, 1, 'BEJAR MUNOZ JORDI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 196234, '2010-10-08', 121990.00, 'A'), +(588, 3, 'WADSO KERSTIN ELIZABETH', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-17', 260890.00, 'A'), +(59, 1, 'RAMOS FORERO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-06-20', 496300.00, 'A'), +(590, 1, 'RODRIGUEZ BETANCOURT JAVIER AUGUSTO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127538, '2011-05-23', 909850.00, 'A'), +(592, 1, 'ARBOLEDA HALABY RODRIGO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 150699, '2009-02-03', 939170.00, 'A'), +(593, 1, 'CURE CURE CARLOS ALFREDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 150699, '2011-07-11', 494600.00, 'A'), +(594, 3, 'VIDELA PEREZ OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 117002, '2011-07-13', 655510.00, 'A'), +(595, 1, 'GONZALEZ GAVIRIA NESTOR', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2009-09-28', 793760.00, 'A'), +(596, 3, 'IZQUIERDO DELGADO DIONISIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2009-09-24', 2250.00, 'A'), +(597, 1, 'MORENO DAIRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127300, '2011-06-14', 629990.00, 'A'), +(598, 1, 'RESTREPO FERNNDEZ SOTO JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-08-31', 143210.00, 'A'), +(599, 3, 'YERYES VERGARA MARIA SOLEDAD', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-10-11', 826060.00, 'A'), +(6, 1, 'GUZMAN ESCOBAR JOSE VICENTE', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-10', 26390.00, 'A'), +(60, 1, 'ELEJALDE ESCOBAR TOMAS ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-11-09', 534910.00, 'A'), +(601, 1, 'ESCAF ESCAF WILLIAM MIGUEL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 150699, '2011-07-26', 25190.00, 'A'), +(602, 1, 'CEBALLOS ZULUAGA JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-05-03', 23920.00, 'A'), +(603, 1, 'OLIVELLA GUERRERO RAFAEL ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 134022, '2010-06-23', 44040.00, 'A'), +(604, 1, 'ESCOBAR GALLO CARLOS HUGO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-09', 148420.00, 'A'), +(605, 1, 'ESCORCIA RAMIREZ EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128569, '2011-04-01', 609990.00, 'A'), +(606, 1, 'MELGAREJO MORENO PAULA ANDREA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-05', 604700.00, 'A'), +(607, 1, 'TOBON CALLE CARLOS GUILLERMO', 191821112, 'CRA 25 CALLE 100', + '689@hotmail.es', '2011-02-03', 128662, '2011-03-16', 193510.00, 'A'), +(608, 3, 'TREVINO NOPHAL SILVANO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 110709, '2011-05-27', 153470.00, 'A'), +(609, 1, 'CARDER VELEZ EDWIN JOHN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-04', 186830.00, 'A'), +(61, 1, 'GASCA DAZA VICTOR HERNANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-09-09', 185660.00, 'A'), +(610, 3, 'DAVIS JOHN BRADLEY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-04-06', 473740.00, 'A'), +(611, 1, 'BAQUERO SLDARRIAGA ALVARO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-09-15', 808210.00, 'A'), +(612, 3, 'SERRACIN ARAUZ YANIRA YAMILET', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 131272, '2011-06-09', 619820.00, 'A'), +(613, 1, 'MORA SOTO ALVARO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 128662, '2011-09-20', 674450.00, 'A'), +(614, 1, 'SUAREZ RODRIGUEZ HERNANDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-03-29', 512820.00, 'A'), +(616, 1, 'BAQUERO GARCIA JORGE LUIS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2010-07-14', 165160.00, 'A'), +(617, 3, 'ABADI MADURO MOISES SIMON', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 131272, '2009-03-31', 203640.00, 'A'), +(62, 3, 'FLOWER LYNDON BRUCE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 231373, '2011-05-16', 323560.00, 'A'), +(624, 8, 'OLARTE LEONARDO', 191821112, 'CRA 25 CALLE 100', '6@hotmail.com', + '2011-02-03', 127591, '2011-06-03', 219790.00, 'A'), +(63, 1, 'RUBIO CORTES OSCAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2011-04-28', 60830.00, 'A'), +(630, 5, 'PROEXPORT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 128662, '2010-08-12', 708320.00, 'A'), +(632, 8, 'SUPER COFFEE ', 191821112, 'CRA 25 CALLE 100', '792@hotmail.es', + '2011-02-03', 127591, '2011-08-30', 306460.00, 'A'), +(636, 8, 'NOGAL ASESORIAS FINANCIERAS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-04-07', 752150.00, 'A'), +(64, 1, 'GUERRA MARTINEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-09-24', 333480.00, 'A'), +(645, 8, 'GIZ - PROFIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-08-31', 566330.00, 'A'), +(652, 3, 'QBE DEL ISTMO COMPANIA DE REASEGUROS ', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-14', 932190.00, 'A'), +(655, 3, 'CORP. CENTRO DE ESTUDIOS DE DERECHO JUSTICIA Y SOCIEDAD', 191821112, + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-05-04', + 440370.00, 'A'), +(659, 3, 'GOOD YEAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 128662, '2010-09-24', 993830.00, 'A'), +(660, 3, 'ARCINIEGAS Y VILLAMIZAR', 191821112, 'CRA 25 CALLE 100', + '258@yahoo.com', '2011-02-03', 127591, '2010-12-02', 787450.00, 'A'), +(67, 1, 'LOPEZ HOYOS JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127662, '2010-04-13', 665230.00, 'A'), +(670, 8, 'APPLUS NORCONTROL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 133535, '2011-09-06', 83210.00, 'A'), +(672, 3, 'KERLL SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 287273, '2010-12-19', 501610.00, 'A'), +(673, 1, 'RESTREPO MOLINA RAMIRO ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 144215, '2010-12-18', 457290.00, 'A'), +(674, 1, 'PEREZ GIL JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2011-08-18', 781610.00, 'A'), +('CELL3840', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(676, 1, 'GARCIA LONDONO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-23', 336160.00, 'A'), +(677, 3, 'RIJLAARSDAM KARIN AN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-07-03', 72210.00, 'A'), +(679, 1, 'LIZCANO MONTEALEGRE ARNULFO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127203, '2011-02-01', 546170.00, 'A'), +(68, 1, 'MARTINEZ SILVA EDGAR', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 127591, '2011-08-29', 54250.00, 'A'), +(680, 3, 'OLIVARI MAYER PATRICIA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 122642, '2011-08-01', 673170.00, 'A'), +(682, 3, 'CHEVALIER FRANCK PIERRE CHARLES', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 263813, '2010-12-01', 617280.00, 'A'), +(683, 3, 'NG WAI WING ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 126909, '2011-06-14', 904310.00, 'A'), +(684, 3, 'MULLER DOMINGUEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-22', 669700.00, 'A'), +(685, 3, 'MOSQUEDA DOMNGUEZ ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-04-08', 635580.00, 'A'), +(686, 3, 'LARREGUI MARIN LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 127591, '2011-04-08', 168800.00, 'A'), +(687, 3, 'VARGAS VERGARA ALEJANDRO BRAULIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 159245, '2011-09-14', 937260.00, 'A'), +(688, 3, 'SKINNER LYNN CHERYL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-06-12', 179890.00, 'A'), +(689, 1, 'URIBE CORREA LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 128662, '2010-07-29', 87680.00, 'A'), +(690, 1, 'TAMAYO JARAMILLO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2010-11-10', 898730.00, 'A'), +(691, 3, 'MOTABAN DE BORGES PAULA ELENA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 132958, '2010-09-24', 230610.00, 'A'), +(692, 5, 'FERNANDEZ NALDA JOSE MANUEL ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 117002, '2011-06-28', 456850.00, 'A'), +(693, 1, 'GOMEZ RESTREPO JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-06-28', 592420.00, 'A'), +(694, 1, 'CARDENAS TAMAYO JOSE JAIME', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-08-08', 591550.00, 'A'), +(696, 1, 'RESTREPO ARANGO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-03-31', 127820.00, 'A'), +(697, 1, 'ROCABADO PASTRANA ROBERT JAVIER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127443, '2011-08-13', 97600.00, 'A'), +(698, 3, 'JARVINEN JOONAS JORI KRISTIAN', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 196234, '2011-05-29', 104560.00, 'A'), +(699, 1, 'MORENO PEREZ HERNAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 128662, '2011-08-30', 230000.00, 'A'), +(7, 1, 'PUYANA RAMOS GUILLERMO ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-08-27', 331830.00, 'A'), +(70, 1, 'GALINDO MANZANO JAVIER FRANCISCO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-31', 214890.00, 'A'), +(701, 1, 'ROMERO PEREZ ARCESIO JOSE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 132775, '2011-07-13', 491650.00, 'A'), +(703, 1, 'CHAPARRO AGUDELO LEONARDO VIRGILIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-05-04', 271320.00, 'A'), +(704, 5, 'VASQUEZ YANIS MARIA DEL PILAR', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-10-13', 508820.00, 'A'), +(705, 3, 'BARBERO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 116511, '2010-09-13', 730170.00, 'A'), +(706, 1, 'CARMONA HERNANDEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-11-08', 124380.00, 'A'), +(707, 1, 'PEREZ SUAREZ JORGE ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132775, '2011-09-14', 431370.00, 'A'), +(708, 1, 'ROJAS JORGE MARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 130135, '2011-04-01', 783740.00, 'A'), +(71, 1, 'DIAZ JUAN PABLO/JULES JAVIER', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-10-01', 247860.00, 'A'), +(711, 3, 'CATALDO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 116773, '2011-06-06', 984810.00, 'A'), +(716, 5, 'MACIAS PIZARRO PATRICIO ', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 117002, '2011-06-07', 376260.00, 'A'), +(717, 1, 'RENDON MAYA DAVID ALEXANDER', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 130273, '2010-07-25', 332310.00, 'A'), +(718, 3, 'DE HILDEBRAND E GRISI FILHO CELSO CLAUDIO', 191821112, + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-11', + 532740.00, 'A'), +(719, 3, 'ALLIEL FACUSSE JULIO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 117002, '2011-06-20', 666800.00, 'A'), +(72, 1, 'LOPEZ ROJAS VICTOR DANIEL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-11', 594640.00, 'A'), +(720, 3, 'CHEMELLO JIMENEZ GAETANO ALBERTO FRANCISCO', 191821112, + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2010-06-23', + 735760.00, 'A'), +(721, 3, 'GARCIA BEZANILLA RODOLFO EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-04-12', 678420.00, 'A'), +(722, 1, 'ARIAS EDWIN', 191821112, 'CRA 25 CALLE 100', '13@terra.com.co', + '2011-02-03', 127492, '2008-04-24', 184800.00, 'A'), +(723, 3, 'SOHN JANG WON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2010-06-07', 888750.00, 'A'), +(724, 3, 'WILHELM GIOVINE JAIME ROBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 115263, '2011-09-20', 889340.00, 'A'), +(726, 3, 'CASTILLERO DANIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 131272, '2011-05-13', 234270.00, 'A'), +(727, 3, 'PORTUGAL LANGHORST MAX GUILLERMO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-03-13', 829960.00, 'A'), +(729, 3, 'ALFONSO HERRANZ AGUSTIN ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-07-21', 745060.00, 'A'), +(73, 1, 'DAVILA MENDEZ OSCAR DIEGO', 191821112, 'CRA 25 CALLE 100', + '991@yahoo.com.mx', '2011-02-03', 128569, '2011-08-31', 229630.00, 'A'), +(730, 3, 'ALFONSO HERRANZ AGUSTIN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2010-03-31', 384360.00, 'A'), +(731, 1, 'NOGUERA RAMIREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-07-14', 686610.00, 'A'), +(732, 1, 'ACOSTA PERALTA FABIAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 134030, '2011-06-21', 279960.00, 'A'), +(733, 3, 'MAC LEAN PINA PEDRO SEGUNDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 117002, '2011-05-23', 339980.00, 'A'), +(734, 1, 'LEON ARCOS ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 133535, '2011-05-04', 860020.00, 'A'), +(736, 3, 'LAMARCA GARCIA GERMAN JULIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-04-29', 820700.00, 'A'), +(737, 1, 'PORTO VELASQUEZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', + '321@hotmail.es', '2011-02-03', 133535, '2011-08-17', 263060.00, 'A'), +(738, 1, 'BUENAVENTURA MEDINA ERICK WILSON', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 133535, '2011-09-18', 853180.00, 'A'), +(739, 1, 'LEVY ARRAZOLA RALPH MARC', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 133535, '2011-09-27', 476720.00, 'A'), +(74, 1, 'RAMIREZ SORA EDISON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-10-03', 364220.00, 'A'), +(740, 3, 'MOON HYUNSIK ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 173192, '2011-05-15', 824080.00, 'A'), +(741, 3, 'LHUILLIER TRONCOSO GASTON MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 117002, '2011-09-07', 690230.00, 'A'), +(742, 3, 'UNDURRAGA PELLEGRINI GONZALO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 117002, '2010-11-21', 978900.00, 'A'), +(743, 1, 'SOLANO TRIBIN NICOLAS SIMON', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 134022, '2011-03-16', 823800.00, 'A'), +(744, 1, 'NOGUERA BENAVIDES JACOBO ALONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-06', 182300.00, 'A'), +(745, 1, 'GARCIA LEON MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 133535, '2008-04-16', 440110.00, 'A'), +(746, 1, 'EMILIANI ROJAS ALEXANDER ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2011-09-12', 653640.00, 'A'), +(748, 1, 'CARRENO POULSEN HELGEN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', 778370.00, 'A'), +(749, 1, 'ALVARADO FANDINO ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2008-11-05', 48280.00, 'A'), +(750, 1, 'DIAZ GRANADOS JUAN PABLO.', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-01-12', 906290.00, 'A'), +(751, 1, 'OVALLE BETANCOURT ALBERTO JOSE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 134022, '2011-08-14', 386620.00, 'A'), +(752, 3, 'GUTIERREZ VERGARA JOSE MIGUEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-05-08', 214250.00, 'A'), +(753, 3, 'CHAPARRO GUAIMARAL LIZ', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 147467, '2011-03-16', 911350.00, 'A'), +(754, 3, 'CORTES DE SOLMINIHAC PABLO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 117002, '2011-01-20', 914020.00, 'A'), +(755, 3, 'CHETAIL VINCENT', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 239124, '2010-08-23', 836050.00, 'A'), +(756, 3, 'PERUGORRIA RODRIGUEZ JORGE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2010-10-17', 438210.00, 'A'), +(757, 3, 'GOLLMANN ROBERTO JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 167269, '2011-03-28', 682870.00, 'A'), +(758, 3, 'VARELA SEPULVEDA MARIA PILAR', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2010-07-26', 99730.00, 'A'), +(759, 3, 'MEYER WELIKSON MICHELE JANIK', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-05-10', 450030.00, 'A'), +(76, 1, 'VANEGAS RODRIGUEZ OSCAR IVAN', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', 568310.00, 'A'), +(77, 3, 'GATICA SOTOMAYOR MAURICIO VICENTE', 191821112, 'CRA 25 CALLE 100', + '409@terra.com.co', '2011-02-03', 117002, '2010-05-13', 444970.00, 'A'), +(79, 1, 'PENA VALENZUELA DANIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-07-19', 264790.00, 'A'), +(8, 1, 'NAVARRO PALENCIA HUGO RAFAEL', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 126968, '2011-05-05', 579980.00, 'A'), +(80, 1, 'BARRIOS CUADRADO DAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-07-29', 764140.00, 'A'), +(802, 3, 'RECK GARRONE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118942, '2009-02-06', 767700.00, 'A'), +(81, 1, 'PARRA QUIROGA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 26330.00, 'A'), +(811, 8, 'FEDERACION NACIONAL DE AVICULTORES ', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-04-18', 926010.00, 'A'), +(812, 1, 'ORJUELA VELEZ JAIME ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 257160.00, 'A'), +(813, 1, 'PENA CHACON GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-08-27', 507770.00, 'A'), +(814, 1, 'RONDEROS MOJICA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127443, '2011-05-04', 767370.00, 'A'), +(815, 1, 'RICO NINO MARIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127443, '2011-05-18', 313540.00, 'A'), +(817, 3, 'AVILA CHYTIL MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118471, '2011-07-14', 387300.00, 'A'), +(818, 3, 'JABLONSKI DUARTE SILVEIRA ESTER', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118942, '2010-12-21', 139740.00, 'A'), +(819, 3, 'BUHLER MOSLER XIMENA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 117002, '2011-06-20', 536830.00, 'A'), +(82, 1, 'CARRILLO GAMBOA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-06-01', 839240.00, 'A'), +(820, 3, 'FALQUETO DALMIRO ANGELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-06-21', 264910.00, 'A'), +(821, 1, 'RUGER GUSTAVO RODRIGUEZ TAMAYO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 133535, '2010-04-12', 714080.00, 'A'), +(822, 3, 'JULIO RODRIGUEZ FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 117002, '2011-08-16', 775650.00, 'A'), +(823, 3, 'CIBANIK RODOLFO MOISES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 132554, '2011-09-19', 736020.00, 'A'), +(824, 3, 'JIMENEZ FRANCO EMMANUEL ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-17', 353150.00, 'A'), +(825, 3, 'GNECCO TREMEDAD', 191821112, 'CRA 25 CALLE 100', '818@hotmail.com', + '2011-02-03', 171072, '2011-03-19', 557700.00, 'A'), +(826, 3, 'VILAR MENDOZA JOSE RAFAEL', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-06-29', 729050.00, 'A'), +(827, 3, 'GONZALEZ MOLINA CRISTIAN MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-06-20', 972160.00, 'A'), +(828, 1, 'GONTOVNIK HOBRECKT CARLOS DANIEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2011-08-02', 673620.00, 'A'), +(829, 3, 'DIBARRAT URZUA SEBASTIAN RAIMUNDO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-28', 451650.00, 'A'), +(830, 3, 'STOCCHERO HATSCHBACH GUILHERME', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118777, '2010-11-22', 237370.00, 'A'), +(831, 1, 'NAVAS PASSOS NARCISO EVELIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2011-04-21', 831900.00, 'A'), +(832, 3, 'LUNA SOBENES FAVIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2010-10-11', 447400.00, 'A'), +(833, 3, 'NUNEZ NOGUEIRA ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-19', 741290.00, 'A'), +(834, 1, 'CASTRO BELTRAN ARIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 128188, '2011-05-15', 364270.00, 'A'), +(835, 1, 'TURBAY YAMIN MAURICIO JOSE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-03-17', 597490.00, 'A'), +(836, 1, 'GOMEZ BARRAZA RODNEY LORENZO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 894610.00, 'A'), +(837, 1, 'CUELLO LASCANO ROBERTO', 191821112, 'CRA 25 CALLE 100', + '221@hotmail.es', '2011-02-03', 133535, '2011-07-11', 680610.00, 'A'), +(838, 1, 'PATERNINA PEINADO JOSE VICENTE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 133535, '2011-08-23', 719190.00, 'A'), +(839, 1, 'YEPES RUBIANO ALFONSO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 133535, '2011-05-16', 554130.00, 'A'), +(84, 1, 'ALVIS RAMIREZ ALFREDO', 191821112, 'CRA 25 CALLE 100', '292@yahoo.com', + '2011-02-03', 127662, '2011-09-16', 68190.00, 'A'), +(840, 1, 'ROCA LLANOS GUILLERMO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2011-08-22', 613060.00, 'A'), +(841, 1, 'RENDON TORRALVO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 133535, '2011-05-26', 402950.00, 'A'), +(842, 1, 'BLANCO STAND GERMAN ELIECER', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2011-07-17', 175530.00, 'A'), +(843, 3, 'BERNAL MAYRA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 131272, '2010-08-31', 668820.00, 'A'), +(844, 1, 'NAVARRO RUIZ LAZARO GREGORIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 126916, '2008-09-23', 817520.00, 'A'), +(846, 3, 'TUOMINEN OLLI PETTERI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2010-09-01', 953150.00, 'A'), +(847, 1, 'ESPARRAGOZA DE LA ESPRIELLA ENRIQUE ALBERTO ', 191821112, + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-08-09', + 522340.00, 'A'), +(848, 3, 'ARAYA ARIAS JUAN VICENTE', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 132165, '2011-08-09', 752210.00, 'A'), +(85, 1, 'GARCIA JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-03-01', 989420.00, 'A'), +(850, 1, 'PARDO GOMEZ GERMAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132775, '2010-11-25', 713690.00, 'A'), +(851, 1, 'ATIQUE JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 133535, '2008-03-03', 986250.00, 'A'), +(852, 1, 'HERNANDEZ MEYER EDGARDO DE JESUS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2011-07-20', 790190.00, 'A'), +(853, 1, 'ZULUAGA DE LEON IVAN JESUS', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-07-03', 992210.00, 'A'), +(854, 1, 'VILLARREAL ANGULO ENRIQUE ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2011-10-02', 590450.00, 'A'), +(855, 1, 'CELIA MARTINEZ APARICIO GIAN PIERO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 133535, '2011-06-15', 975620.00, 'A'), +(857, 3, 'LIPARI RONALDO LUIS', 191821112, 'CRA 25 CALLE 100', + '84@facebook.com', '2011-02-03', 118941, '2010-10-13', 606990.00, 'A'), +(858, 1, 'RAVACHI DAVILA ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 133535, '2011-05-04', 714620.00, 'A'), +(859, 3, 'PINHEIRO OLIVEIRA LUCIANO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 752130.00, 'A'), +(86, 1, 'GOMEZ LIS CARLOS EMILIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2009-12-22', 742520.00, 'A'), +(860, 1, 'PUGLIESE MERCADO LUIGGI ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-08-19', 616780.00, 'A'), +(862, 1, 'JANNA TELLO DANIEL JALIL', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 133535, '2010-08-07', 287220.00, 'A'), +(863, 3, 'MATTAR CARLOS HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2009-04-26', 953570.00, 'A'), +(864, 1, 'MOLINA OLIER OSVALDO ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132775, '2011-04-18', 906200.00, 'A'), +(865, 1, 'BLANCO MCLIN DAVID ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-08-18', 670290.00, 'A'), +(866, 1, 'NARANJO ROMERO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 133535, '2010-08-25', 632860.00, 'A'), +(867, 1, 'SIMANCAS TRUJILLO RICARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 133535, '2011-04-07', 153400.00, 'A'), +(868, 1, 'ARENAS USME GERMAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 126881, '2011-10-01', 868430.00, 'A'), +(869, 5, 'DIAZ CORDERO RODRIGO FERNANDO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-11-04', 881950.00, 'A'), +(87, 1, 'CELIS PEREZ HERNANDO ALONSO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-10-05', 744330.00, 'A'), +(870, 3, 'BINDER ZBEDA JONATAHAN JANAN', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 131083, '2010-04-11', 804460.00, 'A'), +(871, 1, 'HINCAPIE HELLMAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2010-09-15', 376440.00, 'A'), +(872, 3, 'MONTEIRO LANAMAR ALFONSO DE BUSTAMANTE', 191821112, + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118942, '2009-03-23', + 468820.00, 'A'), +(873, 3, 'AGUDO CARMINATTI REGINA CELIA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2011-01-04', 214770.00, 'A'), +(874, 1, 'GONZALEZ VILLALOBOS CRISTIAN MANUEL', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 133535, '2011-09-26', 667400.00, 'A'), +(875, 3, 'GUELL VILLANUEVA ALVARO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2008-04-07', 692670.00, 'A'), +(876, 3, 'GRES ANAIS ROBERTO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-12-01', 461180.00, 'A'), +(877, 3, 'GAME MOCOCAIN JUAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-07', 227890.00, 'A'), +(878, 1, 'FERRER UCROS FERNANDO LEON', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 133535, '2011-06-22', 755900.00, 'A'), +(879, 3, 'HERRERA JAUREGUI CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', + '599@facebook.com', '2011-02-03', 131272, '2010-07-22', 95840.00, 'A'), +(880, 3, 'BACALLAO HERNANDEZ ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 126180, '2010-04-21', 211480.00, 'A'), +(881, 1, 'GIJON URBINA JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 144879, '2011-04-03', 769910.00, 'A'), +(882, 3, 'TRUSEN CHRISTOPH WOLFGANG', 191821112, 'CRA 25 CALLE 100', + '338@yahoo.com.mx', '2011-02-03', 127591, '2010-10-24', 215100.00, 'A'), +(883, 3, 'ASHOURI ASKANDAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 157861, '2009-03-03', 765760.00, 'A'), +(885, 1, 'ALTAMAR WATTS JAIRO ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 133535, '2011-08-20', 620170.00, 'A'), +(887, 3, 'QUINTANA BALTIERRA ROBERTO ALEX', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 117002, '2011-06-21', 891370.00, 'A'), +(889, 1, 'CARILLO PATINO VICTOR HILARIO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 130226, '2011-09-06', 354570.00, 'A'), +(89, 1, 'CONTRERAS PULIDO LINA MARIA', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-06', 237480.00, 'A'), +(890, 1, 'GELVES CANAS GENARO ALBERTO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-04-02', 355640.00, 'A'), +(891, 3, 'CAGNONI DE MELO PAULA CRISTINA', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2010-12-14', 714490.00, 'A'), +(892, 3, 'MENA AMESTICA PATRICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 117002, '2011-03-22', 505510.00, 'A'), +(893, 1, 'CAICEDO ROMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-04-07', 384110.00, 'A'), +(894, 1, 'ECHEVERRY TRUJILLO ARMANDO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-06-08', 404010.00, 'A'), +(895, 1, 'CAJIA PEDRAZA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-09-02', 867700.00, 'A'), +(896, 2, 'PALACIOS OLIVA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-24', 126500.00, 'A'), +(897, 1, 'GUTIERREZ QUINTERO FABIAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2009-10-24', 29380.00, 'A'), +(899, 3, 'COBO GUEVARA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-12-09', 748860.00, 'A'), +(9, 1, 'OSORIO RODRIGUEZ FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2010-09-27', 904420.00, 'A'), +(90, 1, 'LEYTON GONZALEZ FREDY RAFAEL', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-03-24', 705130.00, 'A'), +(901, 1, 'HERNANDEZ JOSE ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 130266, '2011-05-23', 964010.00, 'A'), +(903, 3, 'GONZALEZ MALDONADO MAURICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 117002, '2010-11-13', 576500.00, 'A'), +(904, 1, 'OCHOA BARRIGA JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 130266, '2011-05-05', 401380.00, 'A'), +('CELL3886', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(905, 1, 'OSORIO REDONDO JESUS DAVID', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127300, '2011-08-11', 277390.00, 'A'), +(906, 1, 'BAYONA BARRIENTOS JEAN CARLOS', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-01-25', 182820.00, 'A'), +(907, 1, 'MARTINEZ GOMEZ CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132775, '2010-03-11', 81940.00, 'A'), +(908, 1, 'PUELLO LOPEZ GUILLERMO LEON', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 133535, '2011-08-12', 861240.00, 'A'), +(909, 1, 'MOGOLLON LONDONO PEDRO LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132775, '2011-06-22', 60380.00, 'A'), +(91, 1, 'ORTIZ RIOS JAVIER ADOLFO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-05-12', 813200.00, 'A'), +(911, 1, 'HERRERA HOYOS CARLOS FRANCISCO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132775, '2010-09-12', 409800.00, 'A'), +(912, 3, 'RIM MYUNG HWAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-05-15', 894450.00, 'A'), +(913, 3, 'BIANCO DORIEN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-09-29', 242820.00, 'A'), +(914, 3, 'FROIMZON WIEN DANIEL', 191821112, 'CRA 25 CALLE 100', '348@yahoo.com', + '2011-02-03', 132165, '2010-11-06', 530780.00, 'A'), +(915, 3, 'ALVEZ AZEVEDO JOAO MIGUEL', 191821112, 'CRA 25 CALLE 100', + '861@hotmail.es', '2011-02-03', 127591, '2009-06-25', 925420.00, 'A'), +(916, 3, 'CARRASCO DIAZ LUIS ANTONIO', 191821112, 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-10-02', 34780.00, 'A'), +(917, 3, 'VIVALLOS MEDINA LEONEL EDMUNDO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2010-09-12', 397640.00, 'A'), +(919, 3, 'LASSE ANDRE BARKLIEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 286724, '2011-03-31', 226390.00, 'A'), +(92, 1, 'CUERVO CARDENAS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-08', 950630.00, 'A'), +(920, 3, 'BARCELOS PLOTEGHER LILIA MARA', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-07', 480380.00, 'A'), +(921, 1, 'JARAMILLO ARANGO JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127559, '2011-06-28', 722700.00, 'A'), +(93, 3, 'RUIZ PRIETO WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 131272, '2011-01-19', 313540.00, 'A'), +(932, 7, 'COMFENALCO ANTIOQUIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 128662, '2011-05-05', 515430.00, 'A'), +(94, 1, 'GALLEGO JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-06-25', 715830.00, 'A'), +(944, 3, 'KARMELIC PAVLOV VESNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 120066, '2010-08-07', 585580.00, 'A'), +(945, 3, 'RAMIREZ BORDON OSCAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2010-07-02', 526250.00, 'A'), +(946, 3, 'SORACCO CABEZA RODRIGO ANDRES', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-07-04', 874490.00, 'A'), +(949, 1, 'GALINDO JORGE ERNESTO', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127300, '2008-07-10', 344110.00, 'A'), +(950, 3, 'DR KNABLE THOMAS ERNST ALBERT', 191821112, 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 256231, '2009-11-17', 685430.00, 'A'), +(953, 3, 'VELASQUEZ JANETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-07-20', 404650.00, 'A'), +(954, 3, 'SOZA REX JOSE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 150903, '2011-05-26', 269790.00, 'A'), +(955, 3, 'FONTANA GAETE JAIME PATRICIO', 191821112, 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 117002, '2011-01-11', 134970.00, 'A'), +(957, 3, 'PEREZ MARTINEZ GRECIA INDIRA', 191821112, 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132958, '2010-08-27', 922610.00, 'A'), +(96, 1, 'FORERO CUBILLOS JORGEARTURO', 191821112, 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-25', 45020.00, 'A'), +(97, 1, 'SILVA ACOSTA MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-09-19', 309580.00, 'A'), +(978, 3, 'BLUMENTHAL JAIRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 117630, '2010-04-22', 653490.00, 'A'), +(984, 3, 'SUN XIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-01-17', 203630.00, 'A'), +(99, 1, 'CANO GUZMAN ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-23', 135620.00, 'A'), +(999, 1, 'DRAGER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', + 127591, '2010-12-22', 882070.00, 'A'), +('CELL1020', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1083', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1153', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL126', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1326', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1329', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL133', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1413', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1426', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1529', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1651', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1760', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1857', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1879', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1902', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1921', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1962', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1992', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2006', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL215', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2307', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2322', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2497', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2641', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2736', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2805', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL281', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2905', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2963', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3029', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3090', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3161', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3302', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3309', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3325', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3372', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3422', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3514', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3562', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3652', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3661', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4334', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4440', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4547', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4639', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4662', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4698', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL475', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4790', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4838', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4885', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4939', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5064', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5066', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL51', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5102', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5116', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5192', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5226', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5250', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5282', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL536', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5503', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5506', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL554', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5544', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5595', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5648', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5801', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5821', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6201', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6277', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6288', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6358', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6369', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6408', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6425', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6439', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6509', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6533', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6556', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6731', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6766', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6775', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6802', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6834', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6890', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6953', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6957', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7024', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7216', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL728', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7314', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7431', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7432', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7513', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7522', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7617', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7623', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7708', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7777', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL787', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7907', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7951', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7956', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8004', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8058', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL811', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8136', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8162', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8286', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8300', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8339', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8366', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8389', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8446', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8487', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8546', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8578', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8643', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8774', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8829', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8846', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8942', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9046', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9110', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL917', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9189', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9241', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9331', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9429', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9434', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9495', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9517', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9558', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9650', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9748', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9830', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9878', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9893', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9945', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('T-Cx200', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx201', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx202', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx203', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx204', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx205', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx206', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx207', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx208', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx209', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx210', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx211', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx212', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx213', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx214', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('CELL4021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5255', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5730', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2540', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7376', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5471', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2588', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL570', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2854', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6683', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1382', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2051', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7086', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9220', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9701', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'); + +-- +-- Data for Name: robots; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +INSERT INTO robots (id, name, type, year, datetime, text) +VALUES +(1, 'Robotina', 'mechanical', 1972, '1972-01-01 00:00:00', 'text'), +(2, 'Astro Boy', 'mechanical', 1952, '1952-01-01 00:00:00', 'text'), +(3, 'Terminator', 'cyborg', 2029, '2029-01-01 00:00:00', 'text'); + +-- +-- Data for Name: robots_parts; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +INSERT INTO robots_parts (id, robots_id, parts_id) +VALUES + (1, 1, 1), + (2, 1, 2), + (3, 1, 3); + +-- +-- Data for Name: subscriptores; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +INSERT INTO subscriptores (id, email, created_at, status) +VALUES +(43, 'fuego@hotmail.com', '2012-04-14 23:30:33', 'P'); + +-- +-- Data for Name: tipo_documento; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +INSERT INTO tipo_documento (id, detalle) +VALUES + (1, 'TIPO'), + (2, 'TIPO'), + (3, 'TIPO'), + (4, 'TIPO'), + (5, 'TIPO'), + (6, 'TIPO'), + (7, 'TIPO'), + (8, 'TIPO'), + (9, 'TIPO'), + (10, 'TIPO'), + (11, 'TIPO'), + (12, 'TIPO'), + (13, 'TIPO'), + (14, 'TIPO'), + (15, 'TIPO'), + (16, 'TIPO'), + (17, 'TIPO'), + (18, 'TIPO'), + (19, 'TIPO'), + (20, 'TIPO'), + (21, 'TIPO'), + (22, 'TIPO'), + (23, 'TIPO'), + (24, 'TIPO'), + (25, 'TIPO'), + (26, 'TIPO'), + (27, 'TIPO'), + (28, 'TIPO'), + (29, 'TIPO'), + (30, 'TIPO'), + (31, 'TIPO'), + (32, 'TIPO'), + (33, 'TIPO'), + (34, 'TIPO'), + (35, 'TIPO'), + (36, 'TIPO'), + (37, 'TIPO'), + (38, 'TIPO'), + (39, 'TIPO'), + (40, 'TIPO'), + (41, 'TIPO'), + (42, 'TIPO'), + (43, 'TIPO'), + (44, 'TIPO'), + (45, 'TIPO'), + (46, 'TIPO'), + (47, 'TIPO'), + (48, 'TIPO'), + (49, 'TIPO'), + (50, 'TIPO'), + (51, 'TIPO'), + (52, 'TIPO'), + (53, 'TIPO'), + (54, 'TIPO'), + (55, 'TIPO'), + (56, 'TIPO'), + (57, 'TIPO'), + (58, 'TIPO'), + (59, 'TIPO'), + (60, 'TIPO'), + (61, 'TIPO'), + (62, 'TIPO'), + (63, 'TIPO'), + (64, 'TIPO'), + (65, 'TIPO'), + (66, 'TIPO'), + (67, 'TIPO'), + (68, 'TIPO'), + (69, 'TIPO'), + (70, 'TIPO'), + (71, 'TIPO'), + (72, 'TIPO'), + (73, 'TIPO'), + (74, 'TIPO'), + (75, 'TIPO'), + (76, 'TIPO'), + (77, 'TIPO'), + (78, 'TIPO'), + (79, 'TIPO'), + (80, 'TIPO'), + (81, 'TIPO'), + (82, 'TIPO'), + (83, 'TIPO'), + (84, 'TIPO'), + (85, 'TIPO'), + (86, 'TIPO'), + (87, 'TIPO'), + (88, 'TIPO'), + (89, 'TIPO'), + (90, 'TIPO'), + (91, 'TIPO'), + (92, 'TIPO'), + (93, 'TIPO'), + (94, 'TIPO'), + (95, 'TIPO'), + (96, 'TIPO'), + (97, 'TIPO'), + (98, 'TIPO'), + (99, 'TIPO'), + (100, 'TIPO'), + (101, 'TIPO'), + (102, 'TIPO'), + (103, 'TIPO'), + (104, 'TIPO'), + (105, 'TIPO'), + (106, 'TIPO'), + (107, 'TIPO'), + (108, 'TIPO'), + (109, 'TIPO'), + (110, 'TIPO'), + (111, 'TIPO'), + (112, 'TIPO'), + (113, 'TIPO'), + (114, 'TIPO'), + (115, 'TIPO'), + (116, 'TIPO'), + (117, 'TIPO'), + (118, 'TIPO'), + (119, 'TIPO'), + (120, 'TIPO'), + (121, 'TIPO'), + (122, 'TIPO'), + (123, 'TIPO'), + (124, 'TIPO'), + (125, 'TIPO'), + (126, 'TIPO'), + (127, 'TIPO'), + (128, 'TIPO'), + (129, 'TIPO'), + (130, 'TIPO'), + (131, 'TIPO'), + (132, 'TIPO'), + (133, 'TIPO'), + (134, 'TIPO'), + (135, 'TIPO'), + (136, 'TIPO'), + (137, 'TIPO'), + (138, 'TIPO'), + (139, 'TIPO'), + (140, 'TIPO'), + (141, 'TIPO'), + (142, 'TIPO'), + (143, 'TIPO'), + (144, 'TIPO'), + (145, 'TIPO'), + (146, 'TIPO'), + (147, 'TIPO'), + (148, 'TIPO'), + (149, 'TIPO'), + (150, 'TIPO'), + (151, 'TIPO'), + (152, 'TIPO'), + (153, 'TIPO'), + (154, 'TIPO'), + (155, 'TIPO'), + (156, 'TIPO'), + (157, 'TIPO'), + (158, 'TIPO'), + (159, 'TIPO'), + (160, 'TIPO'), + (161, 'TIPO'), + (162, 'TIPO'), + (163, 'TIPO'), + (164, 'TIPO'), + (165, 'TIPO'), + (166, 'TIPO'), + (167, 'TIPO'), + (168, 'TIPO'), + (169, 'TIPO'), + (170, 'TIPO'), + (171, 'TIPO'), + (172, 'TIPO'), + (173, 'TIPO'), + (174, 'TIPO'), + (175, 'TIPO'), + (176, 'TIPO'), + (177, 'TIPO'), + (178, 'TIPO'), + (179, 'TIPO'), + (180, 'TIPO'), + (181, 'TIPO'), + (182, 'TIPO'), + (183, 'TIPO'), + (184, 'TIPO'), + (185, 'TIPO'), + (186, 'TIPO'), + (187, 'TIPO'), + (188, 'TIPO'), + (189, 'TIPO'), + (190, 'TIPO'), + (191, 'TIPO'), + (192, 'TIPO'), + (193, 'TIPO'), + (194, 'TIPO'), + (195, 'TIPO'), + (196, 'TIPO'), + (197, 'TIPO'), + (198, 'TIPO'), + (199, 'TIPO'), + (200, 'TIPO'), + (201, 'TIPO'), + (202, 'TIPO'), + (203, 'TIPO'), + (204, 'TIPO'), + (205, 'TIPO'), + (206, 'TIPO'), + (207, 'TIPO'), + (208, 'TIPO'), + (209, 'TIPO'), + (210, 'TIPO'), + (211, 'TIPO'), + (212, 'TIPO'), + (213, 'TIPO'), + (214, 'TIPO'), + (215, 'TIPO'), + (216, 'TIPO'), + (217, 'TIPO'), + (218, 'TIPO'), + (219, 'TIPO'), + (220, 'TIPO'), + (221, 'TIPO'), + (222, 'TIPO'), + (223, 'TIPO'), + (224, 'TIPO'), + (225, 'TIPO'), + (226, 'TIPO'), + (227, 'TIPO'), + (228, 'TIPO'), + (229, 'TIPO'), + (230, 'TIPO'), + (231, 'TIPO'), + (232, 'TIPO'), + (233, 'TIPO'), + (234, 'TIPO'), + (235, 'TIPO'), + (236, 'TIPO'), + (237, 'TIPO'), + (238, 'TIPO'), + (239, 'TIPO'), + (240, 'TIPO'), + (241, 'TIPO'), + (242, 'TIPO'), + (243, 'TIPO'), + (244, 'TIPO'), + (245, 'TIPO'), + (246, 'TIPO'), + (247, 'TIPO'), + (248, 'TIPO'), + (249, 'TIPO'), + (250, 'TIPO'), + (251, 'TIPO'), + (252, 'TIPO'), + (253, 'TIPO'), + (254, 'TIPO'), + (255, 'TIPO'), + (256, 'TIPO'), + (257, 'TIPO'), + (258, 'TIPO'), + (259, 'TIPO'), + (260, 'TIPO'), + (261, 'TIPO'), + (262, 'TIPO'), + (263, 'TIPO'), + (264, 'TIPO'), + (265, 'TIPO'), + (266, 'TIPO'), + (267, 'TIPO'), + (268, 'TIPO'), + (269, 'TIPO'), + (270, 'TIPO'), + (271, 'TIPO'), + (272, 'TIPO'), + (273, 'TIPO'), + (274, 'TIPO'), + (275, 'TIPO'), + (276, 'TIPO'), + (277, 'TIPO'), + (278, 'TIPO'), + (279, 'TIPO'), + (280, 'TIPO'), + (281, 'TIPO'), + (282, 'TIPO'), + (283, 'TIPO'), + (284, 'TIPO'), + (285, 'TIPO'), + (286, 'TIPO'), + (287, 'TIPO'), + (288, 'TIPO'), + (289, 'TIPO'), + (290, 'TIPO'), + (291, 'TIPO'), + (292, 'TIPO'), + (293, 'TIPO'), + (294, 'TIPO'), + (295, 'TIPO'), + (296, 'TIPO'), + (297, 'TIPO'), + (298, 'TIPO'), + (299, 'TIPO'), + (300, 'TIPO'), + (301, 'TIPO'), + (302, 'TIPO'), + (303, 'TIPO'), + (304, 'TIPO'), + (305, 'TIPO'), + (306, 'TIPO'), + (307, 'TIPO'), + (308, 'TIPO'), + (309, 'TIPO'), + (310, 'TIPO'), + (311, 'TIPO'), + (312, 'TIPO'), + (313, 'TIPO'), + (314, 'TIPO'), + (315, 'TIPO'), + (316, 'TIPO'), + (317, 'TIPO'), + (318, 'TIPO'), + (319, 'TIPO'), + (320, 'TIPO'), + (321, 'TIPO'), + (322, 'TIPO'), + (323, 'TIPO'), + (324, 'TIPO'), + (325, 'TIPO'), + (326, 'TIPO'), + (327, 'TIPO'), + (328, 'TIPO'), + (329, 'TIPO'), + (330, 'TIPO'), + (331, 'TIPO'), + (332, 'TIPO'), + (333, 'TIPO'), + (334, 'TIPO'), + (335, 'TIPO'), + (336, 'TIPO'), + (337, 'TIPO'), + (338, 'TIPO'), + (339, 'TIPO'), + (340, 'TIPO'), + (341, 'TIPO'), + (342, 'TIPO'), + (343, 'TIPO'), + (344, 'TIPO'), + (345, 'TIPO'), + (346, 'TIPO'), + (347, 'TIPO'), + (348, 'TIPO'), + (349, 'TIPO'), + (350, 'TIPO'), + (351, 'TIPO'), + (352, 'TIPO'), + (353, 'TIPO'), + (354, 'TIPO'), + (355, 'TIPO'), + (356, 'TIPO'), + (357, 'TIPO'), + (358, 'TIPO'), + (359, 'TIPO'), + (360, 'TIPO'), + (361, 'TIPO'), + (362, 'TIPO'), + (363, 'TIPO'), + (364, 'TIPO'), + (365, 'TIPO'), + (366, 'TIPO'), + (367, 'TIPO'), + (368, 'TIPO'), + (369, 'TIPO'), + (370, 'TIPO'), + (371, 'TIPO'), + (372, 'TIPO'), + (373, 'TIPO'), + (374, 'TIPO'), + (375, 'TIPO'), + (376, 'TIPO'), + (377, 'TIPO'), + (378, 'TIPO'), + (379, 'TIPO'), + (380, 'TIPO'), + (381, 'TIPO'), + (382, 'TIPO'), + (383, 'TIPO'), + (384, 'TIPO'), + (385, 'TIPO'), + (386, 'TIPO'), + (387, 'TIPO'), + (388, 'TIPO'), + (389, 'TIPO'), + (390, 'TIPO'), + (391, 'TIPO'), + (392, 'TIPO'), + (393, 'TIPO'), + (394, 'TIPO'), + (395, 'TIPO'), + (396, 'TIPO'), + (397, 'TIPO'), + (398, 'TIPO'), + (399, 'TIPO'), + (400, 'TIPO'), + (401, 'TIPO'), + (402, 'TIPO'), + (403, 'TIPO'), + (404, 'TIPO'), + (405, 'TIPO'), + (406, 'TIPO'), + (407, 'TIPO'), + (408, 'TIPO'), + (409, 'TIPO'), + (410, 'TIPO'), + (411, 'TIPO'), + (412, 'TIPO'), + (413, 'TIPO'), + (414, 'TIPO'), + (415, 'TIPO'), + (416, 'TIPO'), + (417, 'TIPO'), + (418, 'TIPO'), + (419, 'TIPO'), + (420, 'TIPO'), + (421, 'TIPO'), + (422, 'TIPO'), + (423, 'TIPO'), + (424, 'TIPO'), + (425, 'TIPO'), + (426, 'TIPO'), + (427, 'TIPO'), + (428, 'TIPO'), + (429, 'TIPO'), + (430, 'TIPO'), + (431, 'TIPO'), + (432, 'TIPO'), + (433, 'TIPO'), + (434, 'TIPO'), + (435, 'TIPO'), + (436, 'TIPO'), + (437, 'TIPO'), + (438, 'TIPO'), + (439, 'TIPO'), + (440, 'TIPO'), + (441, 'TIPO'), + (442, 'TIPO'), + (443, 'TIPO'), + (444, 'TIPO'), + (445, 'TIPO'), + (446, 'TIPO'), + (447, 'TIPO'), + (448, 'TIPO'), + (449, 'TIPO'), + (450, 'TIPO'), + (451, 'TIPO'), + (452, 'TIPO'), + (453, 'TIPO'), + (454, 'TIPO'), + (455, 'TIPO'), + (456, 'TIPO'), + (457, 'TIPO'), + (458, 'TIPO'), + (459, 'TIPO'), + (460, 'TIPO'), + (461, 'TIPO'), + (462, 'TIPO'), + (463, 'TIPO'), + (464, 'TIPO'), + (465, 'TIPO'), + (466, 'TIPO'), + (467, 'TIPO'), + (468, 'TIPO'), + (469, 'TIPO'), + (470, 'TIPO'), + (471, 'TIPO'), + (472, 'TIPO'), + (473, 'TIPO'), + (474, 'TIPO'), + (475, 'TIPO'), + (476, 'TIPO'), + (477, 'TIPO'), + (478, 'TIPO'), + (479, 'TIPO'), + (480, 'TIPO'), + (481, 'TIPO'), + (482, 'TIPO'), + (483, 'TIPO'), + (484, 'TIPO'), + (485, 'TIPO'), + (486, 'TIPO'), + (487, 'TIPO'), + (488, 'TIPO'), + (489, 'TIPO'), + (490, 'TIPO'), + (491, 'TIPO'), + (492, 'TIPO'), + (493, 'TIPO'), + (494, 'TIPO'), + (495, 'TIPO'), + (496, 'TIPO'), + (497, 'TIPO'), + (498, 'TIPO'), + (499, 'TIPO'), + (500, 'TIPO'), + (501, 'TIPO'), + (502, 'TIPO'), + (503, 'TIPO'), + (504, 'TIPO'), + (505, 'TIPO'), + (506, 'TIPO'), + (507, 'TIPO'), + (508, 'TIPO'), + (509, 'TIPO'), + (510, 'TIPO'), + (511, 'TIPO'), + (512, 'TIPO'), + (513, 'TIPO'), + (514, 'TIPO'), + (515, 'TIPO'), + (516, 'TIPO'), + (517, 'TIPO'), + (518, 'TIPO'), + (519, 'TIPO'), + (520, 'TIPO'), + (521, 'TIPO'), + (522, 'TIPO'), + (523, 'TIPO'), + (524, 'TIPO'), + (525, 'TIPO'), + (526, 'TIPO'), + (527, 'TIPO'), + (528, 'TIPO'), + (529, 'TIPO'), + (530, 'TIPO'), + (531, 'TIPO'), + (532, 'TIPO'), + (533, 'TIPO'), + (534, 'TIPO'), + (535, 'TIPO'), + (536, 'TIPO'), + (537, 'TIPO'), + (538, 'TIPO'), + (539, 'TIPO'), + (540, 'TIPO'), + (541, 'TIPO'), + (542, 'TIPO'), + (543, 'TIPO'), + (544, 'TIPO'), + (545, 'TIPO'), + (546, 'TIPO'), + (547, 'TIPO'), + (548, 'TIPO'), + (549, 'TIPO'), + (550, 'TIPO'), + (551, 'TIPO'), + (552, 'TIPO'), + (553, 'TIPO'), + (554, 'TIPO'), + (555, 'TIPO'), + (556, 'TIPO'), + (557, 'TIPO'), + (558, 'TIPO'), + (559, 'TIPO'), + (560, 'TIPO'), + (561, 'TIPO'), + (562, 'TIPO'), + (563, 'TIPO'), + (564, 'TIPO'), + (565, 'TIPO'), + (566, 'TIPO'), + (567, 'TIPO'), + (568, 'TIPO'), + (569, 'TIPO'), + (570, 'TIPO'), + (571, 'TIPO'), + (572, 'TIPO'), + (573, 'TIPO'), + (574, 'TIPO'), + (575, 'TIPO'), + (576, 'TIPO'), + (577, 'TIPO'), + (578, 'TIPO'), + (579, 'TIPO'), + (580, 'TIPO'), + (581, 'TIPO'), + (582, 'TIPO'), + (583, 'TIPO'), + (584, 'TIPO'), + (585, 'TIPO'), + (586, 'TIPO'), + (587, 'TIPO'), + (588, 'TIPO'), + (589, 'TIPO'), + (590, 'TIPO'), + (591, 'TIPO'), + (592, 'TIPO'), + (593, 'TIPO'), + (594, 'TIPO'), + (595, 'TIPO'), + (596, 'TIPO'), + (597, 'TIPO'), + (598, 'TIPO'), + (599, 'TIPO'), + (600, 'TIPO'), + (601, 'TIPO'), + (602, 'TIPO'), + (603, 'TIPO'), + (604, 'TIPO'), + (605, 'TIPO'), + (606, 'TIPO'), + (607, 'TIPO'), + (608, 'TIPO'), + (609, 'TIPO'), + (610, 'TIPO'), + (611, 'TIPO'), + (612, 'TIPO'), + (613, 'TIPO'), + (614, 'TIPO'), + (615, 'TIPO'), + (616, 'TIPO'), + (617, 'TIPO'), + (618, 'TIPO'), + (619, 'TIPO'), + (620, 'TIPO'), + (621, 'TIPO'), + (622, 'TIPO'), + (623, 'TIPO'), + (624, 'TIPO'), + (625, 'TIPO'), + (626, 'TIPO'), + (627, 'TIPO'), + (628, 'TIPO'), + (629, 'TIPO'), + (630, 'TIPO'), + (631, 'TIPO'), + (632, 'TIPO'), + (633, 'TIPO'), + (634, 'TIPO'), + (635, 'TIPO'), + (636, 'TIPO'), + (637, 'TIPO'), + (638, 'TIPO'), + (639, 'TIPO'), + (640, 'TIPO'), + (641, 'TIPO'), + (642, 'TIPO'), + (643, 'TIPO'), + (644, 'TIPO'), + (645, 'TIPO'), + (646, 'TIPO'), + (647, 'TIPO'), + (648, 'TIPO'), + (649, 'TIPO'), + (650, 'TIPO'), + (651, 'TIPO'), + (652, 'TIPO'), + (653, 'TIPO'), + (654, 'TIPO'), + (655, 'TIPO'), + (656, 'TIPO'), + (657, 'TIPO'), + (658, 'TIPO'), + (659, 'TIPO'), + (660, 'TIPO'), + (661, 'TIPO'), + (662, 'TIPO'), + (663, 'TIPO'), + (664, 'TIPO'), + (665, 'TIPO'), + (666, 'TIPO'), + (667, 'TIPO'), + (668, 'TIPO'), + (669, 'TIPO'), + (670, 'TIPO'), + (671, 'TIPO'), + (672, 'TIPO'), + (673, 'TIPO'), + (674, 'TIPO'), + (675, 'TIPO'), + (676, 'TIPO'), + (677, 'TIPO'), + (678, 'TIPO'), + (679, 'TIPO'), + (680, 'TIPO'), + (681, 'TIPO'), + (682, 'TIPO'), + (683, 'TIPO'), + (684, 'TIPO'), + (685, 'TIPO'), + (686, 'TIPO'), + (687, 'TIPO'), + (688, 'TIPO'), + (689, 'TIPO'), + (690, 'TIPO'), + (691, 'TIPO'), + (692, 'TIPO'), + (693, 'TIPO'), + (694, 'TIPO'), + (695, 'TIPO'), + (696, 'TIPO'), + (697, 'TIPO'), + (698, 'TIPO'), + (699, 'TIPO'), + (700, 'TIPO'), + (701, 'TIPO'), + (702, 'TIPO'), + (703, 'TIPO'), + (704, 'TIPO'), + (705, 'TIPO'), + (706, 'TIPO'), + (707, 'TIPO'), + (708, 'TIPO'), + (709, 'TIPO'), + (710, 'TIPO'), + (711, 'TIPO'), + (712, 'TIPO'), + (713, 'TIPO'), + (714, 'TIPO'), + (715, 'TIPO'), + (716, 'TIPO'), + (717, 'TIPO'), + (718, 'TIPO'), + (719, 'TIPO'), + (720, 'TIPO'), + (721, 'TIPO'), + (722, 'TIPO'), + (723, 'TIPO'), + (724, 'TIPO'), + (725, 'TIPO'), + (726, 'TIPO'), + (727, 'TIPO'), + (728, 'TIPO'), + (729, 'TIPO'), + (730, 'TIPO'), + (731, 'TIPO'), + (732, 'TIPO'), + (733, 'TIPO'), + (734, 'TIPO'), + (735, 'TIPO'), + (736, 'TIPO'), + (737, 'TIPO'), + (738, 'TIPO'), + (739, 'TIPO'), + (740, 'TIPO'), + (741, 'TIPO'), + (742, 'TIPO'), + (743, 'TIPO'), + (744, 'TIPO'), + (745, 'TIPO'), + (746, 'TIPO'), + (747, 'TIPO'), + (748, 'TIPO'), + (749, 'TIPO'), + (750, 'TIPO'), + (751, 'TIPO'), + (752, 'TIPO'), + (753, 'TIPO'), + (754, 'TIPO'), + (755, 'TIPO'), + (756, 'TIPO'), + (757, 'TIPO'), + (758, 'TIPO'), + (759, 'TIPO'), + (760, 'TIPO'), + (761, 'TIPO'), + (762, 'TIPO'), + (763, 'TIPO'), + (764, 'TIPO'), + (765, 'TIPO'), + (766, 'TIPO'), + (767, 'TIPO'), + (768, 'TIPO'), + (769, 'TIPO'), + (770, 'TIPO'), + (771, 'TIPO'), + (772, 'TIPO'), + (773, 'TIPO'), + (774, 'TIPO'), + (775, 'TIPO'), + (776, 'TIPO'), + (777, 'TIPO'), + (778, 'TIPO'), + (779, 'TIPO'), + (780, 'TIPO'), + (781, 'TIPO'), + (782, 'TIPO'), + (783, 'TIPO'), + (784, 'TIPO'), + (785, 'TIPO'), + (786, 'TIPO'), + (787, 'TIPO'), + (788, 'TIPO'), + (789, 'TIPO'), + (790, 'TIPO'), + (791, 'TIPO'), + (792, 'TIPO'), + (793, 'TIPO'), + (794, 'TIPO'), + (795, 'TIPO'), + (796, 'TIPO'), + (797, 'TIPO'), + (798, 'TIPO'), + (799, 'TIPO'), + (800, 'TIPO'), + (801, 'TIPO'), + (802, 'TIPO'), + (803, 'TIPO'), + (804, 'TIPO'), + (805, 'TIPO'), + (806, 'TIPO'), + (807, 'TIPO'), + (808, 'TIPO'), + (809, 'TIPO'), + (810, 'TIPO'), + (811, 'TIPO'), + (812, 'TIPO'), + (813, 'TIPO'), + (814, 'TIPO'), + (815, 'TIPO'), + (816, 'TIPO'), + (817, 'TIPO'), + (818, 'TIPO'), + (819, 'TIPO'), + (820, 'TIPO'), + (821, 'TIPO'), + (822, 'TIPO'), + (823, 'TIPO'), + (824, 'TIPO'), + (825, 'TIPO'), + (826, 'TIPO'), + (827, 'TIPO'), + (828, 'TIPO'), + (829, 'TIPO'), + (830, 'TIPO'), + (831, 'TIPO'), + (832, 'TIPO'), + (833, 'TIPO'), + (834, 'TIPO'), + (835, 'TIPO'), + (836, 'TIPO'), + (837, 'TIPO'), + (838, 'TIPO'), + (839, 'TIPO'), + (840, 'TIPO'), + (841, 'TIPO'), + (842, 'TIPO'), + (843, 'TIPO'), + (844, 'TIPO'), + (845, 'TIPO'), + (846, 'TIPO'), + (847, 'TIPO'), + (848, 'TIPO'), + (849, 'TIPO'), + (850, 'TIPO'), + (851, 'TIPO'), + (852, 'TIPO'), + (853, 'TIPO'), + (854, 'TIPO'), + (855, 'TIPO'), + (856, 'TIPO'), + (857, 'TIPO'), + (858, 'TIPO'), + (859, 'TIPO'), + (860, 'TIPO'), + (861, 'TIPO'), + (862, 'TIPO'), + (863, 'TIPO'), + (864, 'TIPO'), + (865, 'TIPO'), + (866, 'TIPO'), + (867, 'TIPO'), + (868, 'TIPO'), + (869, 'TIPO'), + (870, 'TIPO'), + (871, 'TIPO'), + (872, 'TIPO'), + (873, 'TIPO'), + (874, 'TIPO'), + (875, 'TIPO'), + (876, 'TIPO'), + (877, 'TIPO'), + (878, 'TIPO'), + (879, 'TIPO'), + (880, 'TIPO'), + (881, 'TIPO'), + (882, 'TIPO'), + (883, 'TIPO'), + (884, 'TIPO'), + (885, 'TIPO'), + (886, 'TIPO'), + (887, 'TIPO'), + (888, 'TIPO'), + (889, 'TIPO'), + (890, 'TIPO'), + (891, 'TIPO'), + (892, 'TIPO'), + (893, 'TIPO'), + (894, 'TIPO'), + (895, 'TIPO'), + (896, 'TIPO'), + (897, 'TIPO'), + (898, 'TIPO'), + (899, 'TIPO'), + (900, 'TIPO'), + (901, 'TIPO'), + (902, 'TIPO'), + (903, 'TIPO'), + (904, 'TIPO'), + (905, 'TIPO'), + (906, 'TIPO'), + (907, 'TIPO'), + (908, 'TIPO'), + (909, 'TIPO'), + (910, 'TIPO'), + (911, 'TIPO'), + (912, 'TIPO'), + (913, 'TIPO'), + (914, 'TIPO'), + (915, 'TIPO'), + (916, 'TIPO'), + (917, 'TIPO'), + (918, 'TIPO'), + (919, 'TIPO'), + (920, 'TIPO'), + (921, 'TIPO'), + (922, 'TIPO'), + (923, 'TIPO'), + (924, 'TIPO'), + (925, 'TIPO'), + (926, 'TIPO'), + (927, 'TIPO'), + (928, 'TIPO'), + (929, 'TIPO'), + (930, 'TIPO'), + (931, 'TIPO'), + (932, 'TIPO'), + (933, 'TIPO'), + (934, 'TIPO'), + (935, 'TIPO'), + (936, 'TIPO'), + (937, 'TIPO'), + (938, 'TIPO'), + (939, 'TIPO'), + (940, 'TIPO'), + (941, 'TIPO'), + (942, 'TIPO'), + (943, 'TIPO'), + (944, 'TIPO'), + (945, 'TIPO'), + (946, 'TIPO'), + (947, 'TIPO'), + (948, 'TIPO'), + (949, 'TIPO'), + (950, 'TIPO'), + (951, 'TIPO'), + (952, 'TIPO'), + (953, 'TIPO'), + (954, 'TIPO'), + (955, 'TIPO'), + (956, 'TIPO'), + (957, 'TIPO'), + (958, 'TIPO'), + (959, 'TIPO'), + (960, 'TIPO'), + (961, 'TIPO'), + (962, 'TIPO'), + (963, 'TIPO'), + (964, 'TIPO'), + (965, 'TIPO'), + (966, 'TIPO'), + (967, 'TIPO'), + (968, 'TIPO'), + (969, 'TIPO'), + (970, 'TIPO'), + (971, 'TIPO'), + (972, 'TIPO'), + (973, 'TIPO'), + (974, 'TIPO'), + (975, 'TIPO'), + (976, 'TIPO'), + (977, 'TIPO'), + (978, 'TIPO'), + (979, 'TIPO'), + (980, 'TIPO'), + (981, 'TIPO'), + (982, 'TIPO'), + (983, 'TIPO'), + (984, 'TIPO'), + (985, 'TIPO'), + (986, 'TIPO'), + (987, 'TIPO'), + (988, 'TIPO'), + (989, 'TIPO'), + (990, 'TIPO'), + (991, 'TIPO'), + (992, 'TIPO'), + (993, 'TIPO'), + (994, 'TIPO'), + (995, 'TIPO'), + (996, 'TIPO'), + (997, 'TIPO'), + (998, 'TIPO'), + (999, 'TIPO'), + (1000, 'TIPO'), + (1001, 'TIPO'), + (1002, 'TIPO'), + (1003, 'TIPO'), + (1004, 'TIPO'), + (1005, 'TIPO'), + (1006, 'TIPO'), + (1007, 'TIPO'), + (1008, 'TIPO'), + (1009, 'TIPO'), + (1010, 'TIPO'), + (1011, 'TIPO'), + (1012, 'TIPO'), + (1013, 'TIPO'), + (1014, 'TIPO'), + (1015, 'TIPO'), + (1016, 'TIPO'), + (1017, 'TIPO'), + (1018, 'TIPO'), + (1019, 'TIPO'), + (1020, 'TIPO'), + (1021, 'TIPO'), + (1022, 'TIPO'), + (1023, 'TIPO'), + (1024, 'TIPO'), + (1025, 'TIPO'), + (1026, 'TIPO'), + (1027, 'TIPO'), + (1028, 'TIPO'), + (1029, 'TIPO'), + (1030, 'TIPO'), + (1031, 'TIPO'), + (1032, 'TIPO'), + (1033, 'TIPO'), + (1034, 'TIPO'), + (1035, 'TIPO'), + (1036, 'TIPO'), + (1037, 'TIPO'), + (1038, 'TIPO'), + (1039, 'TIPO'), + (1040, 'TIPO'), + (1041, 'TIPO'), + (1042, 'TIPO'), + (1043, 'TIPO'), + (1044, 'TIPO'), + (1045, 'TIPO'), + (1046, 'TIPO'), + (1047, 'TIPO'), + (1048, 'TIPO'), + (1049, 'TIPO'), + (1050, 'TIPO'), + (1051, 'TIPO'), + (1052, 'TIPO'), + (1053, 'TIPO'), + (1054, 'TIPO'), + (1055, 'TIPO'), + (1056, 'TIPO'), + (1057, 'TIPO'), + (1058, 'TIPO'), + (1059, 'TIPO'), + (1060, 'TIPO'), + (1061, 'TIPO'), + (1062, 'TIPO'), + (1063, 'TIPO'), + (1064, 'TIPO'), + (1065, 'TIPO'), + (1066, 'TIPO'), + (1067, 'TIPO'), + (1068, 'TIPO'), + (1069, 'TIPO'), + (1070, 'TIPO'), + (1071, 'TIPO'), + (1072, 'TIPO'), + (1073, 'TIPO'), + (1074, 'TIPO'), + (1075, 'TIPO'), + (1076, 'TIPO'), + (1077, 'TIPO'), + (1078, 'TIPO'), + (1079, 'TIPO'), + (1080, 'TIPO'), + (1081, 'TIPO'), + (1082, 'TIPO'), + (1083, 'TIPO'), + (1084, 'TIPO'), + (1085, 'TIPO'), + (1086, 'TIPO'), + (1087, 'TIPO'), + (1088, 'TIPO'), + (1089, 'TIPO'), + (1090, 'TIPO'), + (1091, 'TIPO'), + (1092, 'TIPO'), + (1093, 'TIPO'), + (1094, 'TIPO'), + (1095, 'TIPO'), + (1096, 'TIPO'), + (1097, 'TIPO'), + (1098, 'TIPO'), + (1099, 'TIPO'), + (1100, 'TIPO'), + (1101, 'TIPO'), + (1102, 'TIPO'), + (1103, 'TIPO'), + (1104, 'TIPO'), + (1105, 'TIPO'), + (1106, 'TIPO'), + (1107, 'TIPO'), + (1108, 'TIPO'), + (1109, 'TIPO'), + (1110, 'TIPO'), + (1111, 'TIPO'), + (1112, 'TIPO'), + (1113, 'TIPO'), + (1114, 'TIPO'), + (1115, 'TIPO'), + (1116, 'TIPO'), + (1117, 'TIPO'), + (1118, 'TIPO'), + (1119, 'TIPO'), + (1120, 'TIPO'), + (1121, 'TIPO'), + (1122, 'TIPO'), + (1123, 'TIPO'), + (1124, 'TIPO'), + (1125, 'TIPO'), + (1126, 'TIPO'), + (1127, 'TIPO'), + (1128, 'TIPO'), + (1129, 'TIPO'), + (1130, 'TIPO'), + (1131, 'TIPO'), + (1132, 'TIPO'), + (1133, 'TIPO'), + (1134, 'TIPO'), + (1135, 'TIPO'), + (1136, 'TIPO'), + (1137, 'TIPO'), + (1138, 'TIPO'), + (1139, 'TIPO'), + (1140, 'TIPO'), + (1141, 'TIPO'), + (1142, 'TIPO'), + (1143, 'TIPO'), + (1144, 'TIPO'), + (1145, 'TIPO'), + (1146, 'TIPO'), + (1147, 'TIPO'), + (1148, 'TIPO'), + (1149, 'TIPO'), + (1150, 'TIPO'), + (1151, 'TIPO'), + (1152, 'TIPO'), + (1153, 'TIPO'), + (1154, 'TIPO'), + (1155, 'TIPO'), + (1156, 'TIPO'), + (1157, 'TIPO'), + (1158, 'TIPO'), + (1159, 'TIPO'), + (1160, 'TIPO'), + (1161, 'TIPO'), + (1162, 'TIPO'), + (1163, 'TIPO'), + (1164, 'TIPO'), + (1165, 'TIPO'), + (1166, 'TIPO'), + (1167, 'TIPO'), + (1168, 'TIPO'), + (1169, 'TIPO'), + (1170, 'TIPO'), + (1171, 'TIPO'), + (1172, 'TIPO'), + (1173, 'TIPO'), + (1174, 'TIPO'), + (1175, 'TIPO'), + (1176, 'TIPO'), + (1177, 'TIPO'), + (1178, 'TIPO'), + (1179, 'TIPO'), + (1180, 'TIPO'), + (1181, 'TIPO'), + (1182, 'TIPO'), + (1183, 'TIPO'), + (1184, 'TIPO'), + (1185, 'TIPO'), + (1186, 'TIPO'), + (1187, 'TIPO'), + (1188, 'TIPO'), + (1189, 'TIPO'), + (1190, 'TIPO'), + (1191, 'TIPO'), + (1192, 'TIPO'), + (1193, 'TIPO'), + (1194, 'TIPO'), + (1195, 'TIPO'), + (1196, 'TIPO'), + (1197, 'TIPO'), + (1198, 'TIPO'), + (1199, 'TIPO'), + (1200, 'TIPO'), + (1201, 'TIPO'), + (1202, 'TIPO'), + (1203, 'TIPO'), + (1204, 'TIPO'), + (1205, 'TIPO'), + (1206, 'TIPO'), + (1207, 'TIPO'), + (1208, 'TIPO'), + (1209, 'TIPO'), + (1210, 'TIPO'), + (1211, 'TIPO'), + (1212, 'TIPO'), + (1213, 'TIPO'), + (1214, 'TIPO'), + (1215, 'TIPO'), + (1216, 'TIPO'), + (1217, 'TIPO'), + (1218, 'TIPO'), + (1219, 'TIPO'), + (1220, 'TIPO'), + (1221, 'TIPO'), + (1222, 'TIPO'), + (1223, 'TIPO'), + (1224, 'TIPO'), + (1225, 'TIPO'), + (1226, 'TIPO'), + (1227, 'TIPO'), + (1228, 'TIPO'), + (1229, 'TIPO'), + (1230, 'TIPO'), + (1231, 'TIPO'), + (1232, 'TIPO'), + (1233, 'TIPO'), + (1234, 'TIPO'), + (1235, 'TIPO'), + (1236, 'TIPO'), + (1237, 'TIPO'), + (1238, 'TIPO'), + (1239, 'TIPO'), + (1240, 'TIPO'), + (1241, 'TIPO'), + (1242, 'TIPO'), + (1243, 'TIPO'), + (1244, 'TIPO'), + (1245, 'TIPO'), + (1246, 'TIPO'), + (1247, 'TIPO'), + (1248, 'TIPO'), + (1249, 'TIPO'), + (1250, 'TIPO'), + (1251, 'TIPO'), + (1252, 'TIPO'), + (1253, 'TIPO'), + (1254, 'TIPO'), + (1255, 'TIPO'), + (1256, 'TIPO'), + (1257, 'TIPO'), + (1258, 'TIPO'), + (1259, 'TIPO'), + (1260, 'TIPO'), + (1261, 'TIPO'), + (1262, 'TIPO'), + (1263, 'TIPO'), + (1264, 'TIPO'), + (1265, 'TIPO'), + (1266, 'TIPO'), + (1267, 'TIPO'), + (1268, 'TIPO'), + (1269, 'TIPO'), + (1270, 'TIPO'), + (1271, 'TIPO'), + (1272, 'TIPO'), + (1273, 'TIPO'), + (1274, 'TIPO'), + (1275, 'TIPO'), + (1276, 'TIPO'), + (1277, 'TIPO'), + (1278, 'TIPO'), + (1279, 'TIPO'), + (1280, 'TIPO'), + (1281, 'TIPO'), + (1282, 'TIPO'), + (1283, 'TIPO'), + (1284, 'TIPO'), + (1285, 'TIPO'), + (1286, 'TIPO'), + (1287, 'TIPO'), + (1288, 'TIPO'), + (1289, 'TIPO'), + (1290, 'TIPO'), + (1291, 'TIPO'), + (1292, 'TIPO'), + (1293, 'TIPO'), + (1294, 'TIPO'), + (1295, 'TIPO'), + (1296, 'TIPO'), + (1297, 'TIPO'), + (1298, 'TIPO'), + (1299, 'TIPO'), + (1300, 'TIPO'), + (1301, 'TIPO'), + (1302, 'TIPO'), + (1303, 'TIPO'), + (1304, 'TIPO'), + (1305, 'TIPO'), + (1306, 'TIPO'), + (1307, 'TIPO'), + (1308, 'TIPO'), + (1309, 'TIPO'), + (1310, 'TIPO'), + (1311, 'TIPO'), + (1312, 'TIPO'), + (1313, 'TIPO'), + (1314, 'TIPO'), + (1315, 'TIPO'), + (1316, 'TIPO'), + (1317, 'TIPO'), + (1318, 'TIPO'), + (1319, 'TIPO'), + (1320, 'TIPO'), + (1321, 'TIPO'), + (1322, 'TIPO'), + (1323, 'TIPO'), + (1324, 'TIPO'), + (1325, 'TIPO'), + (1326, 'TIPO'), + (1327, 'TIPO'), + (1328, 'TIPO'), + (1329, 'TIPO'), + (1330, 'TIPO'), + (1331, 'TIPO'), + (1332, 'TIPO'), + (1333, 'TIPO'), + (1334, 'TIPO'), + (1335, 'TIPO'), + (1336, 'TIPO'), + (1337, 'TIPO'), + (1338, 'TIPO'), + (1339, 'TIPO'), + (1340, 'TIPO'), + (1341, 'TIPO'), + (1342, 'TIPO'), + (1343, 'TIPO'), + (1344, 'TIPO'), + (1345, 'TIPO'), + (1346, 'TIPO'), + (1347, 'TIPO'), + (1348, 'TIPO'), + (1349, 'TIPO'), + (1350, 'TIPO'), + (1351, 'TIPO'), + (1352, 'TIPO'), + (1353, 'TIPO'), + (1354, 'TIPO'), + (1355, 'TIPO'), + (1356, 'TIPO'), + (1357, 'TIPO'), + (1358, 'TIPO'), + (1359, 'TIPO'), + (1360, 'TIPO'), + (1361, 'TIPO'), + (1362, 'TIPO'), + (1363, 'TIPO'), + (1364, 'TIPO'), + (1365, 'TIPO'), + (1366, 'TIPO'), + (1367, 'TIPO'), + (1368, 'TIPO'), + (1369, 'TIPO'), + (1370, 'TIPO'), + (1371, 'TIPO'), + (1372, 'TIPO'), + (1373, 'TIPO'), + (1374, 'TIPO'), + (1375, 'TIPO'), + (1376, 'TIPO'), + (1377, 'TIPO'), + (1378, 'TIPO'), + (1379, 'TIPO'), + (1380, 'TIPO'), + (1381, 'TIPO'), + (1382, 'TIPO'), + (1383, 'TIPO'), + (1384, 'TIPO'), + (1385, 'TIPO'), + (1386, 'TIPO'), + (1387, 'TIPO'), + (1388, 'TIPO'), + (1389, 'TIPO'), + (1390, 'TIPO'), + (1391, 'TIPO'), + (1392, 'TIPO'), + (1393, 'TIPO'), + (1394, 'TIPO'), + (1395, 'TIPO'), + (1396, 'TIPO'), + (1397, 'TIPO'), + (1398, 'TIPO'), + (1399, 'TIPO'), + (1400, 'TIPO'), + (1401, 'TIPO'), + (1402, 'TIPO'), + (1403, 'TIPO'), + (1404, 'TIPO'), + (1405, 'TIPO'), + (1406, 'TIPO'), + (1407, 'TIPO'), + (1408, 'TIPO'), + (1409, 'TIPO'), + (1410, 'TIPO'), + (1411, 'TIPO'), + (1412, 'TIPO'), + (1413, 'TIPO'), + (1414, 'TIPO'), + (1415, 'TIPO'), + (1416, 'TIPO'), + (1417, 'TIPO'), + (1418, 'TIPO'), + (1419, 'TIPO'), + (1420, 'TIPO'), + (1421, 'TIPO'), + (1422, 'TIPO'), + (1423, 'TIPO'), + (1424, 'TIPO'), + (1425, 'TIPO'), + (1426, 'TIPO'), + (1427, 'TIPO'), + (1428, 'TIPO'), + (1429, 'TIPO'), + (1430, 'TIPO'), + (1431, 'TIPO'), + (1432, 'TIPO'), + (1433, 'TIPO'), + (1434, 'TIPO'), + (1435, 'TIPO'), + (1436, 'TIPO'), + (1437, 'TIPO'), + (1438, 'TIPO'), + (1439, 'TIPO'), + (1440, 'TIPO'), + (1441, 'TIPO'), + (1442, 'TIPO'), + (1443, 'TIPO'), + (1444, 'TIPO'), + (1445, 'TIPO'), + (1446, 'TIPO'), + (1447, 'TIPO'), + (1448, 'TIPO'), + (1449, 'TIPO'), + (1450, 'TIPO'), + (1451, 'TIPO'), + (1452, 'TIPO'), + (1453, 'TIPO'), + (1454, 'TIPO'), + (1455, 'TIPO'), + (1456, 'TIPO'), + (1457, 'TIPO'), + (1458, 'TIPO'), + (1459, 'TIPO'), + (1460, 'TIPO'), + (1461, 'TIPO'), + (1462, 'TIPO'), + (1463, 'TIPO'), + (1464, 'TIPO'), + (1465, 'TIPO'), + (1466, 'TIPO'), + (1467, 'TIPO'), + (1468, 'TIPO'), + (1469, 'TIPO'), + (1470, 'TIPO'), + (1471, 'TIPO'), + (1472, 'TIPO'), + (1473, 'TIPO'), + (1474, 'TIPO'), + (1475, 'TIPO'), + (1476, 'TIPO'), + (1477, 'TIPO'), + (1478, 'TIPO'), + (1479, 'TIPO'), + (1480, 'TIPO'), + (1481, 'TIPO'), + (1482, 'TIPO'), + (1483, 'TIPO'), + (1484, 'TIPO'), + (1485, 'TIPO'), + (1486, 'TIPO'), + (1487, 'TIPO'), + (1488, 'TIPO'), + (1489, 'TIPO'), + (1490, 'TIPO'), + (1491, 'TIPO'), + (1492, 'TIPO'), + (1493, 'TIPO'), + (1494, 'TIPO'), + (1495, 'TIPO'), + (1496, 'TIPO'), + (1497, 'TIPO'), + (1498, 'TIPO'), + (1499, 'TIPO'), + (1500, 'TIPO'), + (1501, 'TIPO'), + (1502, 'TIPO'), + (1503, 'TIPO'), + (1504, 'TIPO'), + (1505, 'TIPO'), + (1506, 'TIPO'), + (1507, 'TIPO'), + (1508, 'TIPO'), + (1509, 'TIPO'), + (1510, 'TIPO'), + (1511, 'TIPO'), + (1512, 'TIPO'), + (1513, 'TIPO'), + (1514, 'TIPO'), + (1515, 'TIPO'), + (1516, 'TIPO'), + (1517, 'TIPO'), + (1518, 'TIPO'), + (1519, 'TIPO'), + (1520, 'TIPO'), + (1521, 'TIPO'), + (1522, 'TIPO'), + (1523, 'TIPO'), + (1524, 'TIPO'), + (1525, 'TIPO'), + (1526, 'TIPO'), + (1527, 'TIPO'), + (1528, 'TIPO'), + (1529, 'TIPO'), + (1530, 'TIPO'), + (1531, 'TIPO'), + (1532, 'TIPO'), + (1533, 'TIPO'), + (1534, 'TIPO'), + (1535, 'TIPO'), + (1536, 'TIPO'), + (1537, 'TIPO'), + (1538, 'TIPO'), + (1539, 'TIPO'), + (1540, 'TIPO'), + (1541, 'TIPO'), + (1542, 'TIPO'), + (1543, 'TIPO'), + (1544, 'TIPO'), + (1545, 'TIPO'), + (1546, 'TIPO'), + (1547, 'TIPO'), + (1548, 'TIPO'), + (1549, 'TIPO'), + (1550, 'TIPO'), + (1551, 'TIPO'), + (1552, 'TIPO'), + (1553, 'TIPO'), + (1554, 'TIPO'), + (1555, 'TIPO'), + (1556, 'TIPO'), + (1557, 'TIPO'), + (1558, 'TIPO'), + (1559, 'TIPO'), + (1560, 'TIPO'), + (1561, 'TIPO'), + (1562, 'TIPO'), + (1563, 'TIPO'), + (1564, 'TIPO'), + (1565, 'TIPO'), + (1566, 'TIPO'), + (1567, 'TIPO'), + (1568, 'TIPO'), + (1569, 'TIPO'), + (1570, 'TIPO'), + (1571, 'TIPO'), + (1572, 'TIPO'), + (1573, 'TIPO'), + (1574, 'TIPO'), + (1575, 'TIPO'), + (1576, 'TIPO'), + (1577, 'TIPO'), + (1578, 'TIPO'), + (1579, 'TIPO'), + (1580, 'TIPO'), + (1581, 'TIPO'), + (1582, 'TIPO'), + (1583, 'TIPO'), + (1584, 'TIPO'), + (1585, 'TIPO'), + (1586, 'TIPO'), + (1587, 'TIPO'), + (1588, 'TIPO'), + (1589, 'TIPO'), + (1590, 'TIPO'), + (1591, 'TIPO'), + (1592, 'TIPO'), + (1593, 'TIPO'), + (1594, 'TIPO'), + (1595, 'TIPO'), + (1596, 'TIPO'), + (1597, 'TIPO'), + (1598, 'TIPO'), + (1599, 'TIPO'), + (1600, 'TIPO'), + (1601, 'TIPO'), + (1602, 'TIPO'), + (1603, 'TIPO'), + (1604, 'TIPO'), + (1605, 'TIPO'), + (1606, 'TIPO'), + (1607, 'TIPO'), + (1608, 'TIPO'), + (1609, 'TIPO'), + (1610, 'TIPO'), + (1611, 'TIPO'), + (1612, 'TIPO'), + (1613, 'TIPO'), + (1614, 'TIPO'), + (1615, 'TIPO'), + (1616, 'TIPO'), + (1617, 'TIPO'), + (1618, 'TIPO'), + (1619, 'TIPO'), + (1620, 'TIPO'), + (1621, 'TIPO'), + (1622, 'TIPO'), + (1623, 'TIPO'), + (1624, 'TIPO'), + (1625, 'TIPO'), + (1626, 'TIPO'), + (1627, 'TIPO'), + (1628, 'TIPO'), + (1629, 'TIPO'), + (1630, 'TIPO'), + (1631, 'TIPO'), + (1632, 'TIPO'), + (1633, 'TIPO'), + (1634, 'TIPO'), + (1635, 'TIPO'), + (1636, 'TIPO'), + (1637, 'TIPO'), + (1638, 'TIPO'), + (1639, 'TIPO'), + (1640, 'TIPO'), + (1641, 'TIPO'), + (1642, 'TIPO'), + (1643, 'TIPO'), + (1644, 'TIPO'), + (1645, 'TIPO'), + (1646, 'TIPO'), + (1647, 'TIPO'), + (1648, 'TIPO'), + (1649, 'TIPO'), + (1650, 'TIPO'), + (1651, 'TIPO'), + (1652, 'TIPO'), + (1653, 'TIPO'), + (1654, 'TIPO'), + (1655, 'TIPO'), + (1656, 'TIPO'), + (1657, 'TIPO'), + (1658, 'TIPO'), + (1659, 'TIPO'), + (1660, 'TIPO'), + (1661, 'TIPO'), + (1662, 'TIPO'), + (1663, 'TIPO'), + (1664, 'TIPO'), + (1665, 'TIPO'), + (1666, 'TIPO'), + (1667, 'TIPO'), + (1668, 'TIPO'), + (1669, 'TIPO'), + (1670, 'TIPO'), + (1671, 'TIPO'), + (1672, 'TIPO'), + (1673, 'TIPO'), + (1674, 'TIPO'), + (1675, 'TIPO'), + (1676, 'TIPO'), + (1677, 'TIPO'), + (1678, 'TIPO'), + (1679, 'TIPO'), + (1680, 'TIPO'), + (1681, 'TIPO'), + (1682, 'TIPO'), + (1683, 'TIPO'), + (1684, 'TIPO'), + (1685, 'TIPO'), + (1686, 'TIPO'), + (1687, 'TIPO'), + (1688, 'TIPO'), + (1689, 'TIPO'), + (1690, 'TIPO'), + (1691, 'TIPO'), + (1692, 'TIPO'), + (1693, 'TIPO'), + (1694, 'TIPO'), + (1695, 'TIPO'), + (1696, 'TIPO'), + (1697, 'TIPO'), + (1698, 'TIPO'), + (1699, 'TIPO'), + (1700, 'TIPO'), + (1701, 'TIPO'), + (1702, 'TIPO'), + (1703, 'TIPO'), + (1704, 'TIPO'), + (1705, 'TIPO'), + (1706, 'TIPO'), + (1707, 'TIPO'), + (1708, 'TIPO'), + (1709, 'TIPO'), + (1710, 'TIPO'), + (1711, 'TIPO'), + (1712, 'TIPO'), + (1713, 'TIPO'), + (1714, 'TIPO'), + (1715, 'TIPO'), + (1716, 'TIPO'), + (1717, 'TIPO'), + (1718, 'TIPO'), + (1719, 'TIPO'), + (1720, 'TIPO'), + (1721, 'TIPO'), + (1722, 'TIPO'), + (1723, 'TIPO'), + (1724, 'TIPO'), + (1725, 'TIPO'), + (1726, 'TIPO'), + (1727, 'TIPO'), + (1728, 'TIPO'), + (1729, 'TIPO'), + (1730, 'TIPO'), + (1731, 'TIPO'), + (1732, 'TIPO'), + (1733, 'TIPO'), + (1734, 'TIPO'), + (1735, 'TIPO'), + (1736, 'TIPO'), + (1737, 'TIPO'), + (1738, 'TIPO'), + (1739, 'TIPO'), + (1740, 'TIPO'), + (1741, 'TIPO'), + (1742, 'TIPO'), + (1743, 'TIPO'), + (1744, 'TIPO'), + (1745, 'TIPO'), + (1746, 'TIPO'), + (1747, 'TIPO'), + (1748, 'TIPO'), + (1749, 'TIPO'), + (1750, 'TIPO'), + (1751, 'TIPO'), + (1752, 'TIPO'), + (1753, 'TIPO'), + (1754, 'TIPO'), + (1755, 'TIPO'), + (1756, 'TIPO'), + (1757, 'TIPO'), + (1758, 'TIPO'), + (1759, 'TIPO'), + (1760, 'TIPO'), + (1761, 'TIPO'), + (1762, 'TIPO'), + (1763, 'TIPO'), + (1764, 'TIPO'), + (1765, 'TIPO'), + (1766, 'TIPO'), + (1767, 'TIPO'), + (1768, 'TIPO'), + (1769, 'TIPO'), + (1770, 'TIPO'), + (1771, 'TIPO'), + (1772, 'TIPO'), + (1773, 'TIPO'), + (1774, 'TIPO'), + (1775, 'TIPO'), + (1776, 'TIPO'), + (1777, 'TIPO'), + (1778, 'TIPO'), + (1779, 'TIPO'), + (1780, 'TIPO'), + (1781, 'TIPO'), + (1782, 'TIPO'), + (1783, 'TIPO'), + (1784, 'TIPO'), + (1785, 'TIPO'), + (1786, 'TIPO'), + (1787, 'TIPO'), + (1788, 'TIPO'), + (1789, 'TIPO'), + (1790, 'TIPO'), + (1791, 'TIPO'), + (1792, 'TIPO'), + (1793, 'TIPO'), + (1794, 'TIPO'), + (1795, 'TIPO'), + (1796, 'TIPO'), + (1797, 'TIPO'), + (1798, 'TIPO'), + (1799, 'TIPO'), + (1800, 'TIPO'), + (1801, 'TIPO'), + (1802, 'TIPO'), + (1803, 'TIPO'), + (1804, 'TIPO'), + (1805, 'TIPO'), + (1806, 'TIPO'), + (1807, 'TIPO'), + (1808, 'TIPO'), + (1809, 'TIPO'), + (1810, 'TIPO'), + (1811, 'TIPO'), + (1812, 'TIPO'), + (1813, 'TIPO'), + (1814, 'TIPO'), + (1815, 'TIPO'), + (1816, 'TIPO'), + (1817, 'TIPO'), + (1818, 'TIPO'), + (1819, 'TIPO'), + (1820, 'TIPO'), + (1821, 'TIPO'), + (1822, 'TIPO'), + (1823, 'TIPO'), + (1824, 'TIPO'), + (1825, 'TIPO'), + (1826, 'TIPO'), + (1827, 'TIPO'), + (1828, 'TIPO'), + (1829, 'TIPO'), + (1830, 'TIPO'), + (1831, 'TIPO'), + (1832, 'TIPO'), + (1833, 'TIPO'), + (1834, 'TIPO'), + (1835, 'TIPO'), + (1836, 'TIPO'), + (1837, 'TIPO'), + (1838, 'TIPO'), + (1839, 'TIPO'), + (1840, 'TIPO'), + (1841, 'TIPO'), + (1842, 'TIPO'), + (1843, 'TIPO'), + (1844, 'TIPO'), + (1845, 'TIPO'), + (1846, 'TIPO'), + (1847, 'TIPO'), + (1848, 'TIPO'), + (1849, 'TIPO'), + (1850, 'TIPO'), + (1851, 'TIPO'), + (1852, 'TIPO'), + (1853, 'TIPO'), + (1854, 'TIPO'), + (1855, 'TIPO'), + (1856, 'TIPO'), + (1857, 'TIPO'), + (1858, 'TIPO'), + (1859, 'TIPO'), + (1860, 'TIPO'), + (1861, 'TIPO'), + (1862, 'TIPO'), + (1863, 'TIPO'), + (1864, 'TIPO'), + (1865, 'TIPO'), + (1866, 'TIPO'), + (1867, 'TIPO'), + (1868, 'TIPO'), + (1869, 'TIPO'), + (1870, 'TIPO'), + (1871, 'TIPO'), + (1872, 'TIPO'), + (1873, 'TIPO'), + (1874, 'TIPO'), + (1875, 'TIPO'), + (1876, 'TIPO'), + (1877, 'TIPO'), + (1878, 'TIPO'), + (1879, 'TIPO'), + (1880, 'TIPO'), + (1881, 'TIPO'), + (1882, 'TIPO'), + (1883, 'TIPO'), + (1884, 'TIPO'), + (1885, 'TIPO'), + (1886, 'TIPO'), + (1887, 'TIPO'), + (1888, 'TIPO'), + (1889, 'TIPO'), + (1890, 'TIPO'), + (1891, 'TIPO'), + (1892, 'TIPO'), + (1893, 'TIPO'), + (1894, 'TIPO'), + (1895, 'TIPO'), + (1896, 'TIPO'), + (1897, 'TIPO'), + (1898, 'TIPO'), + (1899, 'TIPO'), + (1900, 'TIPO'), + (1901, 'TIPO'), + (1902, 'TIPO'), + (1903, 'TIPO'), + (1904, 'TIPO'), + (1905, 'TIPO'), + (1906, 'TIPO'), + (1907, 'TIPO'), + (1908, 'TIPO'), + (1909, 'TIPO'), + (1910, 'TIPO'), + (1911, 'TIPO'), + (1912, 'TIPO'), + (1913, 'TIPO'), + (1914, 'TIPO'), + (1915, 'TIPO'), + (1916, 'TIPO'), + (1917, 'TIPO'), + (1918, 'TIPO'), + (1919, 'TIPO'), + (1920, 'TIPO'), + (1921, 'TIPO'), + (1922, 'TIPO'), + (1923, 'TIPO'), + (1924, 'TIPO'), + (1925, 'TIPO'), + (1926, 'TIPO'), + (1927, 'TIPO'), + (1928, 'TIPO'), + (1929, 'TIPO'), + (1930, 'TIPO'), + (1931, 'TIPO'), + (1932, 'TIPO'), + (1933, 'TIPO'), + (1934, 'TIPO'), + (1935, 'TIPO'), + (1936, 'TIPO'), + (1937, 'TIPO'), + (1938, 'TIPO'), + (1939, 'TIPO'), + (1940, 'TIPO'), + (1941, 'TIPO'), + (1942, 'TIPO'), + (1943, 'TIPO'), + (1944, 'TIPO'), + (1945, 'TIPO'), + (1946, 'TIPO'), + (1947, 'TIPO'), + (1948, 'TIPO'), + (1949, 'TIPO'), + (1950, 'TIPO'), + (1951, 'TIPO'), + (1952, 'TIPO'), + (1953, 'TIPO'), + (1954, 'TIPO'), + (1955, 'TIPO'), + (1956, 'TIPO'), + (1957, 'TIPO'), + (1958, 'TIPO'), + (1959, 'TIPO'), + (1960, 'TIPO'), + (1961, 'TIPO'), + (1962, 'TIPO'), + (1963, 'TIPO'), + (1964, 'TIPO'), + (1965, 'TIPO'), + (1966, 'TIPO'), + (1967, 'TIPO'), + (1968, 'TIPO'), + (1969, 'TIPO'), + (1970, 'TIPO'), + (1971, 'TIPO'), + (1972, 'TIPO'), + (1973, 'TIPO'), + (1974, 'TIPO'), + (1975, 'TIPO'), + (1976, 'TIPO'), + (1977, 'TIPO'), + (1978, 'TIPO'), + (1979, 'TIPO'), + (1980, 'TIPO'), + (1981, 'TIPO'), + (1982, 'TIPO'), + (1983, 'TIPO'), + (1984, 'TIPO'), + (1985, 'TIPO'), + (1986, 'TIPO'), + (1987, 'TIPO'), + (1988, 'TIPO'), + (1989, 'TIPO'), + (1990, 'TIPO'), + (1991, 'TIPO'), + (1992, 'TIPO'), + (1993, 'TIPO'), + (1994, 'TIPO'), + (1995, 'TIPO'), + (1996, 'TIPO'), + (1997, 'TIPO'), + (1998, 'TIPO'), + (1999, 'TIPO'), + (2000, 'TIPO'); + +-- +-- Name: parts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: +-- + +ALTER TABLE ONLY parts ADD CONSTRAINT parts_pkey PRIMARY KEY (id); + +-- +-- Name: personas_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: +-- + +ALTER TABLE ONLY personas ADD CONSTRAINT personas_pkey PRIMARY KEY (cedula); + +-- +-- Name: personnes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: +-- + +ALTER TABLE ONLY personnes ADD CONSTRAINT personnes_pkey PRIMARY KEY (cedula); + +-- +-- Name: prueba_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: +-- + +ALTER TABLE ONLY prueba ADD CONSTRAINT prueba_pkey PRIMARY KEY (id); + +-- +-- Name: robots_parts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: +-- + +ALTER TABLE ONLY robots_parts ADD CONSTRAINT robots_parts_pkey PRIMARY KEY (id); + +-- +-- Name: robots_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: +-- + +ALTER TABLE ONLY robots ADD CONSTRAINT robots_pkey PRIMARY KEY (id); + +-- +-- Name: subscriptores_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: +-- + +ALTER TABLE ONLY subscriptores ADD CONSTRAINT subscriptores_pkey PRIMARY KEY (id); + +-- +-- Name: tipo_documento_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: +-- + +ALTER TABLE ONLY tipo_documento ADD CONSTRAINT tipo_documento_pkey PRIMARY KEY (id); + +-- +-- Name: personas_estado_idx; Type: INDEX; Schema: public; Owner: postgres; Tablespace: +-- + +CREATE INDEX personas_estado_idx ON personas USING btree (estado); + +-- +-- Name: robots_parts_parts_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace: +-- + +CREATE INDEX robots_parts_parts_id ON robots_parts USING btree (parts_id); + +-- +-- Name: robots_parts_robots_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace: +-- + +CREATE INDEX robots_parts_robots_id ON robots_parts USING btree (robots_id); + +-- +-- Name: robots_parts_ibfk_1; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY robots_parts ADD CONSTRAINT robots_parts_ibfk_1 FOREIGN KEY (robots_id) REFERENCES robots(id); + +-- +-- Name: robots_parts_ibfk_2; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY robots_parts ADD CONSTRAINT robots_parts_ibfk_2 FOREIGN KEY (parts_id) REFERENCES parts(id); + +-- +-- Name: table_with_string_field; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +DROP TABLE IF EXISTS table_with_string_field; +CREATE TABLE table_with_string_field +( + id integer NOT NULL, + field character varying(70) NOT NULL +); + + + +drop type if exists type_enum_size; +create type type_enum_size as enum +( + 'xs', + 's', + 'm', + 'l', + 'xl' +); + +drop table if exists dialect_table; +create table dialect_table +( + field_primary serial not null + constraint dialect_table_pk + primary key, + field_blob text, + field_bit bit, + field_bit_default bit default B'1'::"bit", + field_bigint bigint, + field_bigint_default bigint default 1, + field_boolean boolean, + field_boolean_default boolean default true, + field_char char(10), + field_char_default char(10) default 'ABC'::bpchar, + field_decimal numeric(10,4), + field_decimal_default numeric(10,4) default 14.5678, + field_enum type_enum_size, + field_integer integer, + field_integer_default integer default 1, + field_json json, + field_float numeric(10,4), + field_float_default numeric(10,4) default 14.5678, + field_date date, + field_date_default date default '2018-10-01':: date, + field_datetime timestamp, + field_datetime_default timestamp default '2018-10-01 12:34:56':: timestamp without time zone, + field_time time, + field_time_default time default '12:34:56':: time without time zone, + field_timestamp timestamp, + field_timestamp_default timestamp default '2018-10-01 12:34:56':: timestamp without time zone, + field_mediumint integer, + field_mediumint_default integer default 1, + field_smallint smallint, + field_smallint_default smallint default 1, + field_tinyint smallint, + field_tinyint_default smallint default 1, + field_longtext text, + field_mediumtext text, + field_tinytext text, + field_text text, + field_varchar varchar(10), + field_varchar_default varchar(10) default 'D':: character varying +); + +alter table public.dialect_table OWNER TO postgres; + +create index dialect_table_index +on dialect_table (field_bigint); + +create index dialect_table_two_fields +on dialect_table (field_char, field_char_default); + +create unique index dialect_table_unique +on dialect_table (field_integer); + +drop table if exists dialect_table_remote; +create table dialect_table_remote +( + field_primary serial not null + constraint dialect_table_remote_pk + primary key, + field_text varchar(20) +); +alter table public.dialect_table_remote OWNER TO postgres; + +drop table if exists dialect_table_intermediate; +create table dialect_table_intermediate +( + field_primary_id integer, + field_remote_id integer +); +alter table public.dialect_table_intermediate OWNER TO postgres; + +alter table only dialect_table_intermediate + add constraint dialect_table_intermediate_primary__fk + foreign key (field_primary_id); + references dialect_table (field_primary) + on update cascade on delete restrict; + +alter table only dialect_table_intermediate + add constraint dialect_table_intermediate_remote__fk + foreign key (field_remote_id); + references dialect_table_remote (field_primary); + +-- +-- Name: public; Type: ACL; Schema: -; Owner: postgres +-- + +REVOKE ALL ON SCHEMA public FROM PUBLIC; +REVOKE ALL ON SCHEMA public FROM postgres; +GRANT ALL ON SCHEMA public TO postgres; +GRANT ALL ON SCHEMA public TO PUBLIC; diff --git a/tests/_data/schemas/sqlite/translations.sql b/tests/_data/schemas/phalcon-schema-sqlite-translations.sql similarity index 100% rename from tests/_data/schemas/sqlite/translations.sql rename to tests/_data/schemas/phalcon-schema-sqlite-translations.sql diff --git a/tests/_data/schemas/sqlite/phalcon_test.sql b/tests/_data/schemas/phalcon-schema-sqlite.sql similarity index 100% rename from tests/_data/schemas/sqlite/phalcon_test.sql rename to tests/_data/schemas/phalcon-schema-sqlite.sql diff --git a/tests/_data/schemas/postgresql/phalcon_test.sql b/tests/_data/schemas/postgresql/phalcon_test.sql deleted file mode 100644 index 1c5967f38e6..00000000000 --- a/tests/_data/schemas/postgresql/phalcon_test.sql +++ /dev/null @@ -1,6951 +0,0 @@ --- --- PostgreSQL database dump --- - -SET statement_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SET check_function_bodies = false; -SET client_min_messages = warning; - --- --- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: --- - -CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; - --- --- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: --- - -COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; - -SET search_path = public, pg_catalog; -SET default_tablespace = ''; -SET default_with_oids = false; - --- --- Name: customers; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS customers; -CREATE TABLE customers ( - id SERIAL, - document_id integer NOT NULL, - customer_id char(15) NOT NULL, - first_name varchar(100) DEFAULT NULL, - last_name varchar(100) DEFAULT NULL, - phone varchar(20) DEFAULT NULL, - email varchar(70) NOT NULL, - instructions varchar(100) DEFAULT NULL, - status CHAR(1) NOT NULL, - birth_date date DEFAULT '1970-01-01', - credit_line decimal(16,2) DEFAULT '0.00', - created_at timestamp NOT NULL, - created_at_user_id integer DEFAULT '0', - PRIMARY KEY (id) -); - -CREATE INDEX customers_document_id_idx ON customers (document_id); -CREATE INDEX customers_customer_id_idx ON customers (customer_id); -CREATE INDEX customers_credit_line_idx ON customers (credit_line); -CREATE INDEX customers_status_idx ON customers (status); - -ALTER TABLE public.customers OWNER TO postgres; - --- --- Name: parts; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS parts CASCADE; -CREATE TABLE parts ( - id integer NOT NULL, - name character varying(70) NOT NULL -); - -ALTER TABLE public.parts OWNER TO postgres; - --- --- Name: images; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS images; -CREATE TABLE images ( - id BIGSERIAL, - base64 TEXT -); - -ALTER TABLE public.images OWNER TO postgres; - --- --- Name: personas; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS personas; -CREATE TABLE personas ( - cedula character(15) NOT NULL, - tipo_documento_id integer NOT NULL, - nombres character varying(100) DEFAULT ''::character varying NOT NULL, - telefono character varying(20) DEFAULT NULL::character varying, - direccion character varying(100) DEFAULT NULL::character varying, - email character varying(50) DEFAULT NULL::character varying, - fecha_nacimiento date DEFAULT '1970-01-01'::date, - ciudad_id integer DEFAULT 0, - creado_at date, - cupo numeric(16,2) NOT NULL, - estado character(1) NOT NULL -); - -ALTER TABLE public.personas OWNER TO postgres; - --- --- Name: personnes; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS personnes; -CREATE TABLE personnes ( - cedula character(15) NOT NULL, - tipo_documento_id integer NOT NULL, - nombres character varying(100) DEFAULT ''::character varying NOT NULL, - telefono character varying(20) DEFAULT NULL::character varying, - direccion character varying(100) DEFAULT NULL::character varying, - email character varying(50) DEFAULT NULL::character varying, - fecha_nacimiento date DEFAULT '1970-01-01'::date, - ciudad_id integer DEFAULT 0, - creado_at date, - cupo numeric(16,2) NOT NULL, - estado character(1) NOT NULL -); - -ALTER TABLE public.personnes OWNER TO postgres; - --- --- Name: prueba; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS prueba; -CREATE TABLE prueba ( - id integer NOT NULL, - nombre character varying(120) NOT NULL, - estado character(1) NOT NULL -); - -ALTER TABLE public.prueba OWNER TO postgres; - --- --- Name: prueba_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -DROP SEQUENCE IF EXISTS prueba_id_seq; -CREATE SEQUENCE prueba_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - -ALTER TABLE public.prueba_id_seq OWNER TO postgres; - --- --- Name: prueba_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE prueba_id_seq OWNED BY prueba.id; - --- --- Name: prueba_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('prueba_id_seq', 636, true); - --- --- Name: robots; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS robots CASCADE; -CREATE TABLE robots ( - id integer NOT NULL, - name character varying(70) NOT NULL, - type character varying(32) DEFAULT 'mechanical'::character varying NOT NULL, - year integer DEFAULT 1900 NOT NULL, - datetime timestamp NOT NULL, - deleted timestamp DEFAULT NULL, - text text NOT NULL -); - -ALTER TABLE public.robots OWNER TO postgres; - --- --- Name: robots_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -DROP SEQUENCE IF EXISTS robots_id_seq; -CREATE SEQUENCE robots_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - -ALTER TABLE public.robots_id_seq OWNER TO postgres; - --- --- Name: robots_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE robots_id_seq OWNED BY robots.id; - --- --- Name: robots_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('robots_id_seq', 1, false); - --- --- Name: robots_parts; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS robots_parts; -CREATE TABLE robots_parts ( - id integer NOT NULL, - robots_id integer NOT NULL, - parts_id integer NOT NULL -); - -ALTER TABLE public.robots_parts OWNER TO postgres; - --- --- Name: robots_parts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -DROP SEQUENCE IF EXISTS robots_parts_id_seq; -CREATE SEQUENCE robots_parts_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - -ALTER TABLE public.robots_parts_id_seq OWNER TO postgres; - --- --- Name: robots_parts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE robots_parts_id_seq OWNED BY robots_parts.id; - --- --- Name: robots_parts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('robots_parts_id_seq', 1, false); - --- --- Name: subscriptores; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS subscriptores; -CREATE TABLE subscriptores ( - id integer NOT NULL, - email character varying(70) NOT NULL, - created_at timestamp without time zone, - status character(1) NOT NULL -); - -ALTER TABLE public.subscriptores OWNER TO postgres; - --- --- Name: subscriptores_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -DROP SEQUENCE IF EXISTS subscriptores_id_seq; -CREATE SEQUENCE subscriptores_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - -ALTER TABLE public.subscriptores_id_seq OWNER TO postgres; - --- --- Name: subscriptores_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE subscriptores_id_seq OWNED BY subscriptores.id; - --- --- Name: subscriptores_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('subscriptores_id_seq', 1, false); - --- --- Name: tipo_documento; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS tipo_documento; -CREATE TABLE tipo_documento ( - id integer NOT NULL, - detalle character varying(32) NOT NULL -); - -ALTER TABLE public.tipo_documento OWNER TO postgres; - --- --- Name: tipo_documento_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -DROP SEQUENCE IF EXISTS tipo_documento_id_seq; -CREATE SEQUENCE tipo_documento_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - --- --- Name: foreign_key_parent; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS foreign_key_parent; -CREATE TABLE foreign_key_parent ( - id SERIAL, - name character varying(70) NOT NULL, - refer_int integer NOT NULL, - PRIMARY KEY (id), - UNIQUE (refer_int) -); - -ALTER TABLE public.foreign_key_parent OWNER TO postgres; - --- --- Name: ph_select; Type: TABLE TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS ph_select; -CREATE TABLE ph_select ( - sel_id SERIAL, - sel_name character varying(16) NOT NULL, - sel_text character varying(32) DEFAULT NULL, - PRIMARY KEY (sel_id) -); - -INSERT INTO ph_select (sel_id, sel_name, sel_text) VALUES - (1, 'Sun', 'The one and only'), - (2, 'Mercury', 'Cold and hot'), - (3, 'Venus', 'Yeah baby she''s got it'), - (4, 'Earth', 'Home'), - (5, 'Mars', 'The God of War'), - (6, 'Jupiter', NULL), - (7, 'Saturn', 'A car'), - (8, 'Uranus', 'Loads of jokes for this one'); - -ALTER TABLE public.ph_select OWNER TO postgres; - --- --- Name: foreign_key_child; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS foreign_key_child; -CREATE TABLE foreign_key_child ( - id SERIAL, - name character varying(70) NOT NULL, - child_int integer NOT NULL, - PRIMARY KEY (id), - UNIQUE (child_int) -); - -ALTER TABLE public.foreign_key_child OWNER TO postgres; -ALTER TABLE public.tipo_documento_id_seq OWNER TO postgres; - -ALTER TABLE foreign_key_child ADD CONSTRAINT test_describeReferences FOREIGN KEY (child_int) REFERENCES foreign_key_parent (refer_int) ON UPDATE CASCADE ON DELETE RESTRICT; - --- --- Name: tipo_documento_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE tipo_documento_id_seq OWNED BY tipo_documento.id; - --- --- Name: tipo_documento_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('tipo_documento_id_seq', 1, false); - --- --- Name: id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY prueba ALTER COLUMN id SET DEFAULT nextval('prueba_id_seq'::regclass); - --- --- Name: id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY robots ALTER COLUMN id SET DEFAULT nextval('robots_id_seq'::regclass); - --- --- Name: id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY robots_parts ALTER COLUMN id SET DEFAULT nextval('robots_parts_id_seq'::regclass); - --- --- Name: id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY subscriptores ALTER COLUMN id SET DEFAULT nextval('subscriptores_id_seq'::regclass); - --- --- Name: id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY tipo_documento ALTER COLUMN id SET DEFAULT nextval('tipo_documento_id_seq'::regclass); - --- --- Data for Name: parts; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO parts (id, name) VALUES - (1, 'Head'), - (2, 'Body'), - (3, 'Arms'), - (4, 'Legs'), - (5, 'CPU'); - --- --- Data for Name: personas; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO personas (cedula, tipo_documento_id, nombres, telefono, direccion, email, fecha_nacimiento, ciudad_id, creado_at, cupo, estado) VALUES - (1, 3, 'HUANG ZHENGQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-18', 6930.00, 'I'), - (100, 1, 'USME FERNANDEZ JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-04-15', 439480.00, 'A'), - (1003, 8, 'SINMON PEREZ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-25', 468610.00, 'A'), - (1009, 8, 'ARCINIEGAS Y VILLAMIZAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-08-12', 967680.00, 'A'), - (101, 1, 'CRANE DE NARVAEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-06-09', 790540.00, 'A'), - (1011, 8, 'EL EVENTO', 191821112, 'CRA 25 CALLE 100', '596@terra.com.co', '2011-02-03', 127591, '2011-05-24', 820390.00, 'A'), - (1020, 7, 'OSPINA YOLANDA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-02', 222970.00, 'A'), - (1025, 7, 'CHEMIPLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', 918670.00, 'A'), - (1034, 1, 'TAXI FILMS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-09-01', 962580.00, 'A'), - (104, 1, 'CASTELLANOS JIMENEZ NOE', 191821112, 'CRA 25 CALLE 100', '127@yahoo.es', '2011-02-03', 127591, '2011-10-05', 95230.00, 'A'), - (1046, 3, 'JACQUET PIERRE MICHEL ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 263489, '2011-07-23', 90810.00, 'A'), - (1048, 5, 'SPOERER VELEZ CARLOS JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-02-03', 184920.00, 'A'), - (1049, 3, 'SIDNEI DA SILVA LUIZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117630, '2011-07-02', 850180.00, 'A'), - (105, 1, 'HERRERA SEQUERA ALVARO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-26', 77390.00, 'A'), - (1050, 3, 'CAVALCANTI YUE CARLA HANLI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-31', 696130.00, 'A'), - (1052, 1, 'BARRETO RIVAS ELKIN MARTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 131508, '2011-09-19', 562160.00, 'A'), - (1053, 3, 'WANDERLEY ANTONIO ERNESTO THOME', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150617, '2011-01-31', 20490.00, 'A'), - (1054, 3, 'HE SHAN', 191821112, 'CRA 25 CALLE 100', '715@yahoo.es', '2011-02-03', 132958, '2010-10-05', 415970.00, 'A'), - (1055, 3, 'ZHRNG XIM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-05', 18380.00, 'A'), - (1057, 3, 'NICKEL GEB. STUTZ KARIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-10-08', 164850.00, 'A'), - (1058, 1, 'VELEZ PAREJA IGNACIO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2011-06-24', 292250.00, 'A'), - (1059, 3, 'GURKE RALF ERNST', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 287570, '2011-06-15', 966700.00, 'A'), - (106, 1, 'ESTRADA LONDONO JUAN SIMON', 191821112, 'CRA 25 CALLE 100', '8@terra.com.co', '2011-02-03', 128579, '2011-03-09', 101260.00, 'A'), - (1060, 1, 'MEDRANO BARRIOS WILSON', 191821112, 'CRA 25 CALLE 100', '479@facebook.com', '2011-02-03', 132775, '2011-06-18', 956740.00, 'A'), - (1061, 1, 'GERDTS PORTO HANS EDUARDO', 191821112, 'CRA 25 CALLE 100', '140@gmail.com', '2011-02-03', 127591, '2011-05-09', 883590.00, 'A'), - (1062, 1, 'BORGE VISBAL JORGE FIDEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132775, '2011-07-14', 547750.00, 'A'), - (1063, 3, 'GUTIERREZ JOSELYN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-06', 87960.00, 'A'), - (1064, 4, 'OVIEDO PINZON MARYI YULEY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2011-04-21', 796560.00, 'A'), - (1065, 1, 'VILORA SILVA OMAR ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2010-06-09', 718910.00, 'A'), - (1066, 3, 'AGUIAR ROMAN RODRIGO HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126674, '2011-06-28', 204890.00, 'A'), - (1067, 1, 'GOMEZ AGAMEZ ADOLFO DEL CRISTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131105, '2011-06-15', 867730.00, 'A'), - (1068, 3, 'GARRIDO CECILIA', 191821112, 'CRA 25 CALLE 100', '973@yahoo.com.mx', '2011-02-03', 118777, '2010-08-16', 723980.00, 'A'), - (1069, 1, 'JIMENEZ MANJARRES DAVID RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2010-12-17', 16680.00, 'A'), - (107, 1, 'ARANGUREN TEJADA JORGE ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-16', 274110.00, 'A'), - (1070, 3, 'OYARZUN TEJEDA ANDRES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-26', 911490.00, 'A'), - (1071, 3, 'MARIN BUCK RAFAEL ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126180, '2011-05-04', 507400.00, 'A'), - (1072, 3, 'VARGAS JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126674, '2011-07-28', 802540.00, 'A'), - (1073, 3, 'JUEZ JAIRALA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126180, '2010-04-09', 490510.00, 'A'), - (1074, 1, 'APONTE PENSO HERNAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132879, '2011-05-27', 44900.00, 'A'), - (1075, 1, 'PINERES BUSTILLO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126916, '2008-10-29', 752980.00, 'A'), - (1076, 1, 'OTERA OMA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-04-29', 630210.00, 'A'), - (1077, 3, 'CONTRERAS CHINCHILLA JUAN DOMINGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 139844, '2011-06-21', 892110.00, 'A'), - (1078, 1, 'GAMBA LAURENCIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-09-15', 569940.00, 'A'), - (108, 1, 'MUNOZ ARANGO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-01', 66770.00, 'A'), - (1080, 1, 'PRADA ABAUZA CARLOS AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-11-15', 156870.00, 'A'), - (1081, 1, 'PAOLA CAROLINA PINTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-27', 264350.00, 'A'), - (1082, 1, 'PALOMINO HERNANDEZ GERMAN JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-03-22', 851120.00, 'A'), - (1084, 1, 'URIBE DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '602@hotmail.es', '2011-02-03', 127591, '2011-09-07', 759470.00, 'A'), - (1085, 1, 'ARGUELLO CALDERON ARMANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-24', 409660.00, 'A'), - (1087, 1, 'CARVAJAL HERNANDEZ CHRISTIAN ARMANDO', 191821112, 'CRA 25 CALLE 100', '296@yahoo.es', '2011-02-03', 159432, '2011-06-03', 620410.00, 'A'), - (1088, 1, 'CASTRO BLANCO MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150512, '2009-10-08', 792400.00, 'A'), - (1089, 1, 'RIBEROS GUTIERREZ GUSTAVO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-01-27', 100800.00, 'A'), - (109, 1, 'BELTRAN MARIA LUZ DARY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-06', 511510.00, 'A'), - (1091, 4, 'ORTIZ ORTIZ BENIGNO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127538, '2011-08-05', 331540.00, 'A'), - (1092, 3, 'JOHN CHRISTOPHER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-08', 277320.00, 'A'), - (1093, 1, 'PARRA VILLAREAL MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 129499, '2011-08-23', 391980.00, 'A'), - (1094, 1, 'BESGA RODRIGUEZ JUAN JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-09-23', 127960.00, 'A'), - (1095, 1, 'ZAPATA MEZA EDGAR FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-05-19', 463840.00, 'A'), - (1096, 3, 'CORNEJO BRAVO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2010-11-08', 935340.00, 'A'), - ('CELL3944', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (1099, 1, 'GARCIA PORRAS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-14', 243360.00, 'A'), - (11, 1, 'HERNANDEZ PARDO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-31', 197540.00, 'A'), - (110, 1, 'VANEGAS JULIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-06', 357260.00, 'A'), - (1101, 1, 'QUINTERO BURBANO GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-08-20', 57420.00, 'A'), - (1102, 1, 'BOHORQUEZ AFANADOR CHRISTIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 214610.00, 'A'), - (1103, 1, 'MORA VARGAS JULIO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-29', 900790.00, 'A'), - (1104, 1, 'PINEDA JORGE ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-21', 860110.00, 'A'), - (1105, 1, 'TORO CEBALLOS GONZALO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 129499, '2011-08-18', 598180.00, 'A'), - (1106, 1, 'SCHENIDER TORRES JAIME', 191821112, 'CRA 25 CALLE 100', '85@yahoo.com.mx', '2011-02-03', 127799, '2011-08-11', 410590.00, 'A'), - (1107, 1, 'RUEDA VILLAMIZAR JAIME', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-11-15', 258410.00, 'A'), - (1108, 1, 'RUEDA VILLAMIZAR RICARDO JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129499, '2011-03-22', 60260.00, 'A'), - (1109, 1, 'GOMEZ RODRIGUEZ HERNANDO ARTURO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-06-02', 526080.00, 'A'), - (111, 1, 'FRANCISCO EDUARDO JAIME BOTERO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-09-09', 251770.00, 'A'), - (1110, 1, 'HERNANDEZ MENDEZ EDGAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 129499, '2011-03-22', 449610.00, 'A'), - (1113, 1, 'LEON HERNANDEZ OSCAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129499, '2011-03-21', 992090.00, 'A'), - (1114, 1, 'LIZARAZO CARRENO HUGO ARCENIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2010-12-10', 959490.00, 'A'), - (1115, 1, 'LIAN BARRERA GABRIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-05-30', 821170.00, 'A'), - (1117, 3, 'TELLEZ BEZAN FRANCISCO JAVIER ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-08-21', 673430.00, 'A'), - (1118, 1, 'FUENTES ARIZA DIEGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-09', 684970.00, 'A'), - (1119, 1, 'MOLINA M. ROBINSON', 191821112, 'CRA 25 CALLE 100', '728@hotmail.com', '2011-02-03', 129447, '2010-09-19', 404580.00, 'A'), - (112, 1, 'PATINO PINTO ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-06', 187050.00, 'A'), - (1120, 1, 'ORTIZ DURAN BENIGNO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127538, '2011-08-05', 967970.00, 'A'), - (1121, 1, 'CARVAJAL ALMEIDA LUIS RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2011-06-22', 626140.00, 'A'), - (1122, 1, 'TORRES QUIROGA EDWIN SILVESTRE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 129447, '2011-08-17', 226780.00, 'A'), - (1123, 1, 'VIVIESCAS JAIMES ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-10', 255480.00, 'A'), - (1124, 1, 'MARTINEZ RUEDA JAVIER EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129447, '2011-06-23', 597040.00, 'A'), - (1125, 1, 'ANAYA FLORES JORGE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-06-04', 218790.00, 'A'), - (1126, 3, 'TORRES MARTINEZ ANTONIO JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2010-09-02', 302820.00, 'A'), - (1127, 3, 'CACHO LEVISIER JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 153276, '2009-06-25', 857720.00, 'A'), - (1129, 3, 'ULLOA VALDIVIESO CRISTIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-06-02', 327570.00, 'A'), - (113, 1, 'HIGUERA CALA JAIME ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-27', 179950.00, 'A'), - (1130, 1, 'ARCINIEGAS WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126892, '2011-08-05', 497420.00, 'A'), - (1131, 1, 'BAZA ACUNA JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129447, '2010-12-10', 504410.00, 'A'), - (1132, 3, 'BUIRA ROS CARLOS MARIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-04-27', 29750.00, 'A'), - (1133, 1, 'RODRIGUEZ JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 129447, '2011-06-10', 635560.00, 'A'), - (1134, 1, 'QUIROGA PEREZ NELSON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 129447, '2011-05-18', 88520.00, 'A'), - (1135, 1, 'TATIANA AYALA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127122, '2011-07-01', 535920.00, 'A'), - (1136, 1, 'OSORIO BENEDETTI FABIAN AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2010-10-23', 414060.00, 'A'), - (1139, 1, 'CELIS PINTO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2009-02-25', 964970.00, 'A'), - (114, 1, 'VALDERRAMA CUERVO JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-02', 338590.00, 'A'), - (1140, 1, 'ORTIZ ARENAS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2009-10-21', 613300.00, 'A'), - (1141, 1, 'VALDIVIESO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2009-01-13', 171590.00, 'A'), - (1144, 1, 'LOPEZ CASTILLO NELSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 129499, '2010-09-09', 823110.00, 'A'), - (1145, 1, 'CAVELIER LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126916, '2008-11-29', 389220.00, 'A'), - (1146, 1, 'CAVELIER OTOYA LUIS EDURDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126916, '2010-05-25', 476770.00, 'A'), - (1147, 1, 'GARCIA RUEDA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '111@yahoo.es', '2011-02-03', 133535, '2010-09-12', 216190.00, 'A'), - (1148, 1, 'LADINO GOMEZ OMAR ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-02', 650640.00, 'A'), - (1149, 1, 'CARRENO ORTIZ OSCAR JAVIER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-15', 604630.00, 'A'), - (115, 1, 'NARDEI BONILLO BRUNO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-16', 153110.00, 'A'), - (1150, 1, 'MONTOYA BOZZI MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 129499, '2011-05-12', 71240.00, 'A'), - (1152, 1, 'LORA RICHARD JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-09-15', 497700.00, 'A'), - (1153, 1, 'SILVA PINZON MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '915@hotmail.es', '2011-02-03', 127591, '2011-06-15', 861670.00, 'A'), - (1154, 3, 'GEORGE J A KHALILIEH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-20', 815260.00, 'A'), - (1155, 3, 'CHACON MARIN CARLOS MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-07-26', 491280.00, 'A'), - (1156, 3, 'OCHOA CHEHAB XAVIER ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 126180, '2011-06-13', 10630.00, 'A'), - (1157, 3, 'ARAYA GARRI GABRIEL ALEXIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-09-19', 579320.00, 'A'), - (1158, 3, 'MACCHI ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116366, '2010-04-12', 864690.00, 'A'), - (116, 1, 'GONZALEZ FANDINO JAIME EDUARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-10', 749800.00, 'A'), - (1160, 1, 'CAVALIER LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126916, '2009-08-27', 333390.00, 'A'), - ('CELL396', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (1161, 3, 'DOMINGUEZ DE OBREGON ILEANA DEL CARMEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 139844, '2011-03-06', 910490.00, 'A'), - (1162, 2, 'FALASCA CLAUDIO ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116511, '2011-07-10', 552280.00, 'A'), - (1163, 3, 'MUTABARUKA PATRICK', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131352, '2011-03-22', 29940.00, 'A'), - (1164, 1, 'DOMINGUEZ ATENCIA JIMMY CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-22', 492860.00, 'A'), - (1165, 4, 'LLANO GONZALEZ ALBERTO MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2010-08-21', 374490.00, 'A'), - (1166, 3, 'LOPEZ ROLDAN JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-07-31', 393860.00, 'A'), - (1167, 1, 'GUTIERREZ DE PINERES JALILIE ARISTIDES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2010-12-09', 845810.00, 'A'), - (1168, 1, 'HEYMANS PIERRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2010-11-08', 47470.00, 'A'), - (1169, 1, 'BOTERO OSORIO RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2009-05-27', 699940.00, 'A'), - (1170, 3, 'GARNHAM POBLETE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 116396, '2011-03-27', 357270.00, 'A'), - (1172, 1, 'DAJUD DURAN JOSE RODRIGO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2009-12-02', 360910.00, 'A'), - (1173, 1, 'MARTINEZ MERCADO PEDRO PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-07-25', 744930.00, 'A'), - (1174, 1, 'GARCIA AMADOR ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-05-19', 641930.00, 'A'), - (1176, 1, 'VARGAS VARELA LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 131568, '2011-08-30', 948410.00, 'A'), - (1178, 1, 'GUTIERRES DE PINERES ARISTIDES', 191821112, 'CRA 25 CALLE 100', '217@hotmail.com', '2011-02-03', 133535, '2011-05-10', 242490.00, 'A'), - (1179, 3, 'LEIZAOLA POZO JIMENA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2011-08-01', 759800.00, 'A'), - (118, 1, 'FERNANDEZ VELOSO PEDRO HERNANDO', 191821112, 'CRA 25 CALLE 100', '452@hotmail.es', '2011-02-03', 128662, '2010-08-06', 198830.00, 'A'), - (1180, 3, 'MARINO PAOLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-12-24', 71520.00, 'A'), - (1181, 1, 'MOLINA VIZCAINO GUSTAVO JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-28', 78220.00, 'A'), - (1182, 3, 'MEDEL GARCIA FABIAN RODRIGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-04-25', 176540.00, 'A'), - (1183, 1, 'LESMES ARIAS RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-09-09', 648020.00, 'A'), - (1184, 1, 'ALCALA MARTINEZ ALFREDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132775, '2010-07-23', 710470.00, 'A'), - (1186, 1, 'LLAMAS FOLIACO LUIS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-07', 910210.00, 'A'), - (1187, 1, 'GUARDO DEL RIO LIBARDO FARID', 191821112, 'CRA 25 CALLE 100', '73@yahoo.com.mx', '2011-02-03', 128662, '2011-09-01', 726050.00, 'A'), - (1188, 3, 'JEFFREY ARTHUR DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 115724, '2011-03-21', 899630.00, 'A'), - (1189, 1, 'DAHL VELEZ JULIANA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126916, '2011-05-23', 320020.00, 'A'), - (119, 3, 'WALESKA DE LIMA ALMEIDA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-05-09', 125240.00, 'A'), - (1190, 3, 'LUIS JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2008-04-04', 901210.00, 'A'), - (1192, 1, 'AZUERO VALENTINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-14', 26310.00, 'A'), - (1193, 1, 'MARQUEZ GALINDO MAURICIO JAVIER', 191821112, 'CRA 25 CALLE 100', '729@yahoo.es', '2011-02-03', 131105, '2011-05-13', 493560.00, 'A'), - (1195, 1, 'NIETO FRANCO JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '707@yahoo.com', '2011-02-03', 127591, '2011-07-30', 463790.00, 'A'), - (1196, 3, 'ESTEVES JOAQUIM LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-04-05', 152270.00, 'A'), - (1197, 4, 'BARRERO KAREN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-12', 369990.00, 'A'), - (1198, 1, 'CORRALES GUZMAN DELIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127689, '2011-08-03', 393120.00, 'A'), - (1199, 1, 'CUELLAR TOCO EDGAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127531, '2011-09-20', 855640.00, 'A'), - (12, 1, 'MARIN PRIETO FREDY NELSON ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-23', 641210.00, 'A'), - (120, 1, 'LOPEZ JARAMILLO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2009-04-17', 29680.00, 'A'), - (1200, 3, 'SCHULTER ACHIM', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 291002, '2010-05-21', 98860.00, 'A'), - (1201, 3, 'HOWELL LAURENCE ADRIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 286785, '2011-05-22', 927350.00, 'A'), - (1202, 3, 'ALCAZAR ESCARATE JAIME PATRICIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-08-25', 340160.00, 'A'), - (1203, 3, 'HIDALGO FUENZALIDA GABRIEL RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-03', 918780.00, 'A'), - (1206, 1, 'VANEGAS HENAO ORLANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-27', 832910.00, 'A'), - (1207, 1, 'PENARANDA ARIAS RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-19', 832710.00, 'A'), - (1209, 1, 'LEZAMA CERVERA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2011-09-14', 825980.00, 'A'), - (121, 1, 'PULIDO JIMENEZ OSCAR HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-29', 772700.00, 'A'), - (1211, 1, 'TRUJILLO BOCANEGRA HAROL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127538, '2011-05-27', 199260.00, 'A'), - (1212, 1, 'ALVAREZ TORRES MARIO RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-08-15', 589960.00, 'A'), - (1213, 1, 'CORRALES VARON BELMER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-26', 352030.00, 'A'), - (1214, 3, 'CUEVAS RODRIGUEZ MANUELA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-30', 990250.00, 'A'), - (1216, 1, 'LOPEZ EDICSON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-31', 505210.00, 'A'), - (1217, 3, 'GARCIA PALOMARES JUAN JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-07-31', 840440.00, 'A'), - (1218, 1, 'ARCINIEGAS NARANJO RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127492, '2010-12-17', 686610.00, 'A'), - (122, 1, 'GONZALEZ RIANO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128031, '2011-08-05', 774450.00, 'A'), - (1220, 1, 'GARCIA GUTIERREZ WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-06-20', 498680.00, 'A'), - (1221, 3, 'GOMEZ DE ALONSO ANGELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-27', 758300.00, 'A'), - (1222, 1, 'MEDINA QUIROGA JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127538, '2011-01-16', 295480.00, 'A'), - (1224, 1, 'ARCILA CORREA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-03-20', 125900.00, 'A'), - (1225, 1, 'QUIJANO REYES CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2010-04-08', 22100.00, 'A'), - (157, 1, 'ORTIZ RIOS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-12', 365330.00, 'A'), - (1226, 1, 'VARGAS GALLEGO JAIRO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2009-07-30', 732820.00, 'A'), - (1228, 3, 'NAPANGA MIRENGHI MARTIN', 191821112, 'CRA 25 CALLE 100', '153@yahoo.es', '2011-02-03', 132958, '2011-02-08', 790400.00, 'A'), - (123, 1, 'LAMUS CASTELLANOS ANDRES RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-11', 554160.00, 'A'), - (1230, 1, 'RIVEROS PINEROS JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127492, '2011-09-25', 422220.00, 'A'), - (1231, 3, 'ESSER JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127327, '2011-04-01', 635060.00, 'A'), - (1232, 3, 'DOMINGUEZ MORA MAURICIO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-22', 908630.00, 'A'), - (1233, 3, 'MOLINA FERNANDEZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-05-28', 637990.00, 'A'), - (1234, 3, 'BELLO DANIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 196234, '2010-09-04', 464040.00, 'A'), - (1235, 3, 'BENADAVA GUEVARA DAVID ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-05-18', 406240.00, 'A'), - (1236, 3, 'RODRIGUEZ MATOS ROBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-03-22', 639070.00, 'A'), - (1237, 3, 'TAPIA ALARCON PATRICIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2010-07-06', 976620.00, 'A'), - (1239, 3, 'VERCHERE ALFONSO CHRISTIAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2010-08-23', 899600.00, 'A'), - (1241, 1, 'ESPINEL LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128206, '2009-03-09', 302860.00, 'A'), - (1242, 3, 'VERGARA FERREIRA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-03', 713310.00, 'A'), - (1243, 3, 'ZUMARRAGA SIRVENT CRSTINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-08-24', 657950.00, 'A'), - (1244, 4, 'ESCORCIA VASQUEZ TOMAS', 191821112, 'CRA 25 CALLE 100', '354@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', 149830.00, 'A'), - (1245, 4, 'PARAMO CUENCA KELLY LORENA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127492, '2011-05-04', 775300.00, 'A'), - (1246, 4, 'PEREZ LOPEZ VERONICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-07-11', 426990.00, 'A'), - (1247, 4, 'CHAPARRO RODRIGUEZ DANIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-08', 809070.00, 'A'), - (1249, 4, 'DIAZ MARTINEZ MARIA CAROLINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2011-05-30', 394740.00, 'A'), - (125, 1, 'CALDON RODRIGUEZ JAIME ARIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126968, '2011-07-29', 574780.00, 'A'), - (1250, 4, 'PINEDA VASQUEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2010-09-03', 680540.00, 'A'), - (1251, 5, 'MATIZ URIBE ANGELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-12-25', 218470.00, 'A'), - (1253, 1, 'ZAMUDIO RICAURTE JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126892, '2011-08-05', 598160.00, 'A'), - (1254, 1, 'ALJURE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-21', 838660.00, 'A'), - (1255, 3, 'ARMESTO AIRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 196234, '2011-01-29', 398840.00, 'A'), - (1257, 1, 'POTES GUEVARA JAIRO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127858, '2011-03-17', 194580.00, 'A'), - (1258, 1, 'BURBANO QUIROGA RAFAEL', 191821112, 'CRA 25 CALLE 100', '767@facebook.com', '2011-02-03', 127591, '2011-04-07', 538220.00, 'A'), - (1259, 1, 'CARDONA GOMEZ JAVIR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-03-16', 107380.00, 'A'), - (126, 1, 'PULIDO PARDO GUIDO IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-05', 531550.00, 'A'), - (1260, 1, 'LOPERA LEDESMA PABLO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-19', 922240.00, 'A'), - (1263, 1, 'TRIBIN BARRIGA JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-09-02', 525330.00, 'A'), - (1264, 1, 'NAVIA LOPEZ ANDRES FELIPE ', 191821112, 'CRA 25 CALLE 100', '353@hotmail.es', '2011-02-03', 127300, '2011-07-15', 591190.00, 'A'), - (1265, 1, 'CARDONA GOMEZ FABIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2010-11-18', 379940.00, 'A'), - (1266, 1, 'ESCARRIA VILLEGAS ANDRES JULIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-08-19', 126160.00, 'A'), - (1268, 1, 'CASTRO HERNANDEZ ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-03-25', 76260.00, 'A'), - (127, 1, 'RODRIGUEZ RODRIGUEZ GIOVANI FRANCISCO', 191821112, 'CRA 25 CALLE 100', '662@hotmail.es', '2011-02-03', 127591, '2011-09-29', 933390.00, 'A'), - (1270, 1, 'LEAL HERNANDEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', 313610.00, 'A'), - (1272, 1, 'ORTIZ CARDONA WILLIAM ENRIQUE', 191821112, 'CRA 25 CALLE 100', '914@hotmail.com', '2011-02-03', 128662, '2011-09-13', 272150.00, 'A'), - (1273, 1, 'ROMERO VAN GOMPEL HERNAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-09-07', 832960.00, 'A'), - (1274, 1, 'BERMUDEZ LONDONO JHON FREDY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-08-29', 348380.00, 'A'), - (1275, 1, 'URREA ALVAREZ NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-01', 242980.00, 'A'), - (1276, 1, 'VALENCIA LLANOS RODRIGO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-04-11', 169790.00, 'A'), - (1277, 1, 'PAZ VALENCIA GUILLERMO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127300, '2011-08-05', 120020.00, 'A'), - (1278, 1, 'MONROY CORREDOR GERARDO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-06-25', 90700.00, 'A'), - (1279, 1, 'RIOS MEDINA JAVIER ERMINSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-12', 93440.00, 'A'), - (128, 1, 'GALLEGO GUZMAN MARIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-06-25', 72290.00, 'A'), - (1280, 1, 'GARCIA OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-30', 195090.00, 'A'), - (1282, 1, 'MURILLO PESELLIN GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-06-15', 890530.00, 'A'), - (1284, 1, 'DIAZ ALVAREZ JOHNY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-06-25', 164130.00, 'A'), - (1285, 1, 'GARCES BELTRAN RAUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-08-11', 719220.00, 'A'), - (1286, 1, 'MATERON POVEDA LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-25', 103710.00, 'A'), - (1287, 1, 'VALENCIA ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-10-23', 360880.00, 'A'), - (1288, 1, 'PENA AGUDELO JOSE RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 134022, '2011-05-25', 493280.00, 'A'), - (1289, 1, 'CORREA NUNEZ JORGE ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-08-18', 383750.00, 'A'), - (129, 1, 'ALVAREZ RODRIGUEZ IVAN RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2008-01-28', 561290.00, 'A'), - (1291, 1, 'BEJARANO ROSERO FREDDY ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-09', 43400.00, 'A'), - (1292, 1, 'CASTILLO BARRIOS GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-06-17', 900180.00, 'A'), - ('CELL401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (1296, 1, 'GALVEZ GUTIERREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2010-03-28', 807090.00, 'A'), - (1297, 3, 'CRUZ GARCIA MILTON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 139844, '2011-03-21', 75630.00, 'A'), - (1298, 1, 'VILLEGAS GUTIERREZ JOSE RICARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-11', 956860.00, 'A'), - (13, 1, 'VACA MURCIA JESUS ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-04', 613430.00, 'A'), - (1301, 3, 'BOTTI ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 231989, '2011-04-04', 910640.00, 'A'), - (1302, 3, 'COTINO HUESO LORENZO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-02-02', 803450.00, 'A'), - (1304, 3, 'NESPOLI MANTOVANI LUIZ CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-04-18', 16230.00, 'A'), - (1307, 4, 'AVILA GIL PAULA ANDREA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-19', 711110.00, 'A'), - (1308, 4, 'VALLEJO PINEDA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-12', 323490.00, 'A'), - (1312, 1, 'ROMERO OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-17', 642460.00, 'A'), - (1314, 3, 'LULLIES CONSTANZE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 245206, '2010-06-03', 154970.00, 'A'), - (1315, 1, 'CHAPARRO GUTIERREZ JORGE ADRIANO', 191821112, 'CRA 25 CALLE 100', '284@hotmail.es', '2011-02-03', 127591, '2010-12-02', 325440.00, 'A'), - (1316, 1, 'BARRANTES DISI RICARDO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132879, '2011-07-18', 162270.00, 'A'), - (1317, 3, 'VERDES GAGO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2010-03-10', 835060.00, 'A'), - (1319, 3, 'MARTIN MARTINEZ GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2010-05-26', 937220.00, 'A'), - (1320, 3, 'MOTTURA MASSIMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2008-11-10', 620640.00, 'A'), - (1321, 3, 'RUSSELL TIMOTHY JAMES', 191821112, 'CRA 25 CALLE 100', '502@hotmail.es', '2011-02-03', 145135, '2010-04-16', 291560.00, 'A'), - (1322, 3, 'JAIN TARSEM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 190393, '2011-05-31', 595890.00, 'A'), - (1323, 3, 'ORTEGA CEVALLOS JULIETA ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-30', 104760.00, 'A'), - (1324, 3, 'MULLER PICHAIDA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-05-17', 736130.00, 'A'), - (1325, 3, 'ALVEAR TELLEZ JULIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-01-23', 366390.00, 'A'), - (1327, 3, 'MOYA LATORRE MARCELA CAROLINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-05-17', 18520.00, 'A'), - (1328, 3, 'LAMA ZAROR RODRIGO IGNACIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2010-10-27', 221990.00, 'A'), - (1329, 3, 'HERNANDEZ CIFUENTES MAURICE JEANETTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 139844, '2011-06-22', 54410.00, 'A'), - (133, 1, 'CORDOBA HOYOS JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-20', 966820.00, 'A'), - (1330, 2, 'HOCHKOFLER NOEMI CONSUELO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-27', 606070.00, 'A'), - (1331, 4, 'RAMIREZ BARRERO DANIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 154563, '2011-04-18', 867120.00, 'A'), - (1332, 4, 'DE LEON DURANGO RICARDO JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131105, '2011-09-08', 517400.00, 'A'), - (1333, 4, 'RODRIGUEZ MACIAS IVAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129447, '2011-05-23', 985620.00, 'A'), - (1334, 4, 'GUTIERREZ DE PINERES YANET MARIA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-06-16', 375890.00, 'A'), - (1335, 4, 'GUTIERREZ DE PINERES YANET MARIA GABRIELA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-06-16', 922600.00, 'A'), - (1336, 4, 'CABRALES BECHARA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '708@hotmail.com', '2011-02-03', 131105, '2011-05-13', 485330.00, 'A'), - (1337, 4, 'MEJIA TOBON LUIS DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127662, '2011-08-05', 658860.00, 'A'), - (1338, 3, 'OROS NERCELLES CRISTIAN ANDRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 144215, '2011-04-26', 838310.00, 'A'), - (1339, 3, 'MORENO BRAVO CAROLINA ANDREA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 190393, '2010-12-08', 214950.00, 'A'), - (134, 1, 'GONZALEZ LOPEZ DANIEL ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-08', 178580.00, 'A'), - (1340, 3, 'FERNANDEZ GARRIDO MARCELO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-07-08', 559820.00, 'A'), - (1342, 3, 'SUMEGI IMRE ZOLTAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-16', 91750.00, 'A'), - (1343, 3, 'CALDERON FLANDEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '108@hotmail.com', '2011-02-03', 117002, '2010-12-12', 996030.00, 'A'), - (1345, 3, 'CARBONELL ATCHUGARRY GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116366, '2010-04-12', 536390.00, 'A'), - (1346, 3, 'MONTEALEGRE AGUILAR FEDERICO ', 191821112, 'CRA 25 CALLE 100', '448@yahoo.es', '2011-02-03', 132165, '2011-08-08', 567260.00, 'A'), - (1347, 1, 'HERNANDEZ MANCHEGO CARLOS JULIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-04-28', 227130.00, 'A'), - (1348, 1, 'ARENAS ZARATE FERNEY ARNULFO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127963, '2011-03-26', 433860.00, 'A'), - (1349, 3, 'DELFIM DINIZ PASSOS PINHEIRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 110784, '2010-04-17', 487930.00, 'A'), - (135, 1, 'GARCIA SIMBAQUEBA RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 992420.00, 'A'), - (1350, 3, 'BRAUN VALENZUELA FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-29', 138050.00, 'A'), - (1351, 3, 'LEVIN FIORELLI ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 116366, '2011-04-10', 226470.00, 'A'), - (1353, 3, 'BALTODANO ESQUIVEL LAURA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-08-01', 911660.00, 'A'), - (1354, 4, 'ESCOBAR YEPES ANDREA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-19', 403630.00, 'A'), - (1356, 1, 'GAGELI OSORIO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '228@yahoo.com.mx', '2011-02-03', 128662, '2011-07-14', 205070.00, 'A'), - (1357, 3, 'CABAL ALVAREZ RUBEN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-08-14', 175770.00, 'A'), - (1359, 4, 'HUERFANO JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-04', 790970.00, 'A'), - (136, 1, 'OSORIO RAMIREZ LEONARDO', 191821112, 'CRA 25 CALLE 100', '686@yahoo.es', '2011-02-03', 128662, '2010-05-14', 426380.00, 'A'), - (1360, 4, 'RAMON GARCIA MARIA PAULA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-01', 163890.00, 'A'), - (1362, 30, 'ALVAREZ CLAVIO CARLA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127203, '2011-04-18', 741020.00, 'A'), - (1363, 3, 'SERRA DURAN GERARDO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-03', 365490.00, 'A'), - (1364, 3, 'NORIEGA VALVERDE SILVIA MARCELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132775, '2011-02-27', 604370.00, 'A'), - (1366, 1, 'JARAMILLO LOPEZ ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '269@terra.com.co', '2011-02-03', 127559, '2010-11-08', 813800.00, 'A'), - (1367, 1, 'MAZO ROLDAN CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-04', 292880.00, 'A'), - (1368, 1, 'MURIEL ARCILA MAURICIO HERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-29', 22970.00, 'A'), - (1369, 1, 'RAMIREZ CARLOS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-14', 236230.00, 'A'), - (137, 1, 'LUNA PEREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126881, '2011-08-05', 154640.00, 'A'), - (1370, 1, 'GARCIA GRAJALES PEDRO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128166, '2011-10-09', 112230.00, 'A'), - (1372, 3, 'GARCIA ESCOBAR ANA MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-29', 925670.00, 'A'), - (1373, 3, 'ALVES DIAS CARLOS AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-07', 70940.00, 'A'), - (1374, 3, 'MATTOS CHRISTIANE GARCIA CID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 183024, '2010-08-25', 577700.00, 'A'), - (1376, 1, 'CARVAJAL ROJAS ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-10', 645240.00, 'A'), - (1377, 3, 'MADARIAGA CADIZ CLAUDIO CRISTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-10-04', 199200.00, 'A'), - (1379, 3, 'MARIN YANEZ ALICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-02-20', 703870.00, 'A'), - (138, 1, 'DIAZ AVENDANO MARCELO IVAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-22', 494080.00, 'A'), - (1381, 3, 'COSTA VILLEGAS LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-08-21', 580670.00, 'A'), - (1382, 3, 'DAZA PEREZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 122035, '2009-02-23', 888000.00, 'A'), - (1385, 4, 'RIVEROS ARIAS MARIA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127492, '2011-09-26', 35710.00, 'A'), - (1386, 30, 'TORO GIRALDO MATEO', 191821112, 'CRA 25 CALLE 100', '433@yahoo.com.mx', '2011-02-03', 127591, '2011-07-17', 700730.00, 'A'), - (1387, 4, 'ROJAS YARA LAURA DANIELA MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-31', 396530.00, 'A'), - (1388, 3, 'GALLEGO RODRIGO MARIA PILAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2009-04-19', 880450.00, 'A'), - (1389, 1, 'PANTOJA VELASQUEZ JOSE ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2011-08-05', 212660.00, 'A'), - (139, 1, 'RANCO GOMEZ HERNÁN EDUARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-01-19', 6450.00, 'A'), - (1390, 3, 'VAN DEN BORNE KEES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2010-01-28', 421930.00, 'A'), - (1391, 3, 'MONDRAGON FLORES JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-08-22', 471700.00, 'A'), - (1392, 3, 'BAGELLA MICHELE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-07-27', 92720.00, 'A'), - (1393, 3, 'BISTIANCIC MACHADO ANA INES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 116366, '2010-08-02', 48490.00, 'A'), - (1394, 3, 'BANADOS ORTIZ MARIA PILAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-08-25', 964280.00, 'A'), - (1395, 1, 'CHINDOY CHINDOY HERNANDO', 191821112, 'CRA 25 CALLE 100', '107@terra.com.co', '2011-02-03', 126892, '2011-08-25', 675920.00, 'A'), - (1396, 3, 'SOTO NUNEZ ANDRES ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-10-02', 486760.00, 'A'), - (1397, 1, 'DELGADO MARTINEZ LORGE ELIAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-23', 406040.00, 'A'), - (1398, 1, 'LEON GUEVARA JAVIER ANIBAL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126892, '2011-09-08', 569930.00, 'A'), - (1399, 1, 'ZARAMA BASTIDAS LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126892, '2011-08-05', 631540.00, 'A'), - (14, 1, 'MAGUIN HENNSSEY LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '714@gmail.com', '2011-02-03', 127591, '2011-07-11', 143540.00, 'A'), - (140, 1, 'CARRANZA CUY ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-25', 550010.00, 'A'), - (1401, 3, 'REYNA CASTORENA JOSE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 189815, '2011-08-29', 344970.00, 'A'), - (1402, 1, 'GFALLO BOTERO SERGIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-07-14', 381100.00, 'A'), - (1403, 1, 'ARANGO ARAQUE JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-05-04', 870590.00, 'A'), - (1404, 3, 'LASSNER NORBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118942, '2010-02-28', 209650.00, 'A'), - (1405, 1, 'DURANGO MARIN HECTOR LEON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '1970-02-02', 436480.00, 'A'), - (1407, 1, 'FRANCO CASTANO DIEGO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-06-28', 457770.00, 'A'), - (1408, 1, 'HERNANDEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-05-29', 628550.00, 'A'), - (1409, 1, 'CASTANO DUQUE CARLOS HUGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-03-23', 769410.00, 'A'), - (141, 1, 'CHAMORRO CHEDRAUI SERGIO ALBERTO', 191821112, 'CRA 25 CALLE 100', '922@yahoo.com.mx', '2011-02-03', 127591, '2011-05-07', 730720.00, 'A'), - (1411, 1, 'RAMIREZ MONTOYA ADAMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-04-13', 498880.00, 'A'), - (1412, 1, 'GONZALEZ BENJUMEA OSCAR HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-11-01', 610150.00, 'A'), - (1413, 1, 'ARANGO ACEVEDO WALTER ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-10-07', 554090.00, 'A'), - (1414, 1, 'ARANGO GALLO HUMBERTO LEON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-02-25', 940010.00, 'A'), - (1415, 1, 'VELASQUEZ LUIS GONZALO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-07-06', 37760.00, 'A'), - (1416, 1, 'MIRA AGUILAR FRANCISCO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-30', 368790.00, 'A'), - (1417, 1, 'RIVERA ARISTIZABAL CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-03-02', 730670.00, 'A'), - (1418, 1, 'ARISTIZABAL ROLDAN ANDRES RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-02', 546960.00, 'A'), - (142, 1, 'LOPEZ ZULETA MAURICIO ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-01', 3550.00, 'A'), - (1420, 1, 'ESCORCIA ARAMBURO JUAN MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', 73100.00, 'A'), - (1421, 1, 'CORREA PARRA RICARDO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-05', 737110.00, 'A'), - (1422, 1, 'RESTREPO NARANJO DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-09-15', 466240.00, 'A'), - (1423, 1, 'VELASQUEZ CARLOS JUAN', 191821112, 'CRA 25 CALLE 100', '123@yahoo.com', '2011-02-03', 128662, '2010-06-09', 119880.00, 'A'), - (1424, 1, 'MACIA GONZALEZ ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2010-11-12', 200690.00, 'A'), - (1425, 1, 'BERRIO MEJIA HELBER ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2010-06-04', 643800.00, 'A'), - (1427, 1, 'GOMEZ GUTIERREZ CARLOS ARIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-09-08', 153320.00, 'A'), - (1428, 1, 'RESTREPO LOPEZ JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-12', 915770.00, 'A'), - ('CELL4012', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (1429, 1, 'BARTH TOBAR LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-02-23', 118900.00, 'A'), - (143, 1, 'MUNERA BEDIYA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-09-21', 825600.00, 'A'), - (1430, 1, 'JIMENEZ VELEZ ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-02-26', 847160.00, 'A'), - (1431, 1, 'TAKAHASHI GAVIRIA NICOLAS KEIICHIRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-13', 879120.00, 'A'), - (1432, 1, 'ESCOBAR JARAMILLO ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-06-10', 854110.00, 'A'), - (1433, 1, 'PALACIO NAVARRO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-08-18', 633200.00, 'A'), - (1434, 1, 'LONDONO MUNOZ ADOLFO LEON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-09-14', 603670.00, 'A'), - (1435, 1, 'PULGARIN JAIME ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2009-11-01', 118730.00, 'A'), - (1436, 1, 'FERRERA ZULUAGA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-07-10', 782630.00, 'A'), - (1437, 1, 'VASQUEZ VELEZ HABACUC', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-27', 557000.00, 'A'), - (1438, 1, 'HENAO PALOMINO DIEGO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2009-05-06', 437080.00, 'A'), - (1439, 1, 'HURTADO URIBE JUAN GONZALO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-01-11', 514400.00, 'A'), - (144, 1, 'ALDANA RODOLFO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '838@yahoo.es', '2011-02-03', 127591, '2011-08-07', 117350.00, 'A'), - (1441, 1, 'URIBE DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2010-11-19', 760610.00, 'A'), - (1442, 1, 'PINEDA GALIANO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-07-29', 20770.00, 'A'), - (1443, 1, 'DUQUE BETANCOURT FABIO LEON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-26', 822030.00, 'A'), - (1444, 1, 'JARAMILLO TORO HERNAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-04-27', 47830.00, 'A'), - (145, 1, 'VASQUEZ ZAPATA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-09', 109940.00, 'A'), - (1450, 1, 'TOBON FRANCO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '545@facebook.com', '2011-02-03', 127591, '2011-05-03', 889540.00, 'A'), - (1454, 1, 'LOTERO PAVAS CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-28', 646750.00, 'A'), - (1455, 1, 'ESTRADA HENAO JAVIER ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128569, '2009-09-07', 215460.00, 'A'), - (1456, 1, 'VALDERRAMA MAXIMILIANO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-23', 137030.00, 'A'), - (1457, 3, 'ESTRADA ALVAREZ GONZALO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 154903, '2011-05-02', 38790.00, 'A'), - (1458, 1, 'PAUCAR VALLEJO JAIRO ALONSO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-10-15', 782860.00, 'A'), - (1459, 1, 'RESTREPO GIRALDO JHON DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-04-04', 797930.00, 'A'), - (146, 1, 'BAQUERO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-03-03', 197650.00, 'A'), - (1460, 1, 'RESTREPO DOMINGUEZ GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2009-05-18', 641050.00, 'A'), - (1461, 1, 'YANOVICH JACKY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-08-21', 811470.00, 'A'), - (1462, 1, 'HINCAPIE ROLDAN JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-27', 134200.00, 'A'), - (1463, 3, 'ZEA JORGE OLIVER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2011-03-12', 236610.00, 'A'), - (1464, 1, 'OSCAR MAURICIO ECHAVARRIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-11-24', 780440.00, 'A'), - (1465, 1, 'COSSIO GIL JOSE ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-10-01', 192380.00, 'A'), - (1466, 1, 'GOMEZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-03-01', 620580.00, 'A'), - (1467, 1, 'VILLALOBOS OCHOA ANDRES GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-18', 525740.00, 'A'), - (1470, 1, 'GARCIA GONZALEZ DAVID DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-09-17', 986990.00, 'A'), - (1471, 1, 'RAMIREZ RESTREPO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-03', 162250.00, 'A'), - (1472, 1, 'VASQUEZ GUTIERREZ JUAN ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-05', 850280.00, 'A'), - (1474, 1, 'ESCOBAR ARANGO DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-11-01', 272460.00, 'A'), - (1475, 1, 'MEJIA TORO JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-05-02', 68320.00, 'A'), - (1477, 1, 'ESCOBAR GOMEZ JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127848, '2011-05-15', 416150.00, 'A'), - (1478, 1, 'BETANCUR WILSON', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2008-02-09', 508060.00, 'A'), - (1479, 3, 'ROMERO ARRAU GONZALO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-10', 291880.00, 'A'), - (148, 1, 'REINA MORENO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-08', 699240.00, 'A'), - (1480, 1, 'CASTANO OSORIO JORGE ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127662, '2011-09-20', 935200.00, 'A'), - (1482, 1, 'LOPEZ LOPERA ROBINSON FREDY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-09-02', 196280.00, 'A'), - (1484, 1, 'HERNAN DARIO RENDON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-03-18', 312520.00, 'A'), - (1485, 1, 'MARTINEZ ARBOLEDA MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-11-03', 821760.00, 'A'), - (1486, 1, 'RODRIGUEZ MORA CARLOS MORA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-09-16', 171270.00, 'A'), - (1487, 1, 'PENAGOS VASQUEZ JOSE DOMINGO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-09-06', 391080.00, 'A'), - (1488, 1, 'UERRA MEJIA DIEGO LEON', 191821112, 'CRA 25 CALLE 100', '704@hotmail.com', '2011-02-03', 144086, '2011-08-06', 441570.00, 'A'), - (1491, 1, 'QUINTERO GUTIERREZ ABEL PASTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2009-11-16', 138100.00, 'A'), - (1492, 1, 'ALARCON YEPES IVAN DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2010-05-03', 145330.00, 'A'), - (1494, 1, 'HERNANDEZ VALLEJO ANDRES MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-09', 125770.00, 'A'), - (1495, 1, 'MONTOYA MORENO LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-09', 691770.00, 'A'), - (1497, 1, 'BARRERA CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '62@yahoo.es', '2011-02-03', 127591, '2010-08-24', 332550.00, 'A'), - (1498, 1, 'ARROYAVE FERNANDEZ PABLO EMILIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-05-12', 418030.00, 'A'), - (1499, 1, 'GOMEZ ANGEL FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-05-03', 92480.00, 'A'), - (15, 1, 'AMSILI COHEN JOSEPH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 877400.00, 'A'), - ('CELL411', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (150, 3, 'ARDILA GUTIERREZ DANIEL MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-12', 506760.00, 'A'), - (1500, 1, 'GONZALEZ DUQUE PABLO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-04-13', 208330.00, 'A'), - (1502, 1, 'MEJIA BUSTAMANTE JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-09', 196000.00, 'A'), - (1506, 1, 'SUAREZ MONTOYA JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128569, '2011-09-13', 368250.00, 'A'), - (1508, 1, 'ALVAREZ GONZALEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-02-15', 355190.00, 'A'), - (1509, 1, 'NIETO CORREA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-31', 899980.00, 'A'), - (1511, 1, 'HERNANDEZ GRANADOS JHONATHAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-08-30', 471720.00, 'A'), - (1512, 1, 'CARDONA ALVAREZ DEIBY', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2010-10-05', 55590.00, 'A'), - (1513, 1, 'TORRES MARULANDA JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-20', 862820.00, 'A'), - (1514, 1, 'RAMIREZ RAMIREZ JHON JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-11', 147310.00, 'A'), - (1515, 1, 'MONDRAGON TORO NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-01-19', 148100.00, 'A'), - (1517, 3, 'SUIDA DIETER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2008-07-21', 48580.00, 'A'), - (1518, 3, 'LEFTWICH ANDREW PAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 211610, '2011-06-07', 347170.00, 'A'), - (1519, 3, 'RENTON ANDREW GEORGE PATRICK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2010-12-11', 590120.00, 'A'), - (152, 1, 'BUSTOS MONZON CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-22', 335160.00, 'A'), - (1521, 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 119814, '2011-04-28', 775000.00, 'A'), - (1522, 3, 'GUARACI FRANCO DE PAIVA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 119167, '2011-04-28', 147770.00, 'A'), - (1525, 4, 'MORENO TENORIO MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-20', 888750.00, 'A'), - (1527, 1, 'VELASQUEZ HERNANDEZ JHON EDUARSON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-19', 161270.00, 'A'), - (1528, 4, 'VANEGAS ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '185@yahoo.com', '2011-02-03', 127591, '2011-06-20', 109830.00, 'A'), - (1529, 3, 'BARBABE CLAIRE LAURENCE ANNICK', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-04', 65330.00, 'A'), - (153, 1, 'GONZALEZ TORREZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-01', 762560.00, 'A'), - (1530, 3, 'COREA MARTINEZ GUILLERMO JOSE ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-09-25', 997190.00, 'A'), - (1531, 3, 'PACHECO RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2010-03-08', 789960.00, 'A'), - (1532, 3, 'WELCH RICHARD WILLIAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 190393, '2010-10-04', 958210.00, 'A'), - (1533, 3, 'FOREMAN CAROLYN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 107159, '2011-05-23', 421200.00, 'A'), - (1535, 3, 'ZAGAL SOTO CLAUDIA PAZ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2008-05-16', 893130.00, 'A'), - (1536, 3, 'ZAGAL SOTO CLAUDIA PAZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-10-08', 771600.00, 'A'), - (1538, 3, 'BLANCO RODRIGUEZ JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 197162, '2011-04-02', 578250.00, 'A'), - (154, 1, 'HENDEZ PUERTO JAVIER ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 807310.00, 'A'), - (1540, 3, 'CONTRERAS BRAIN JAVIER ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-02-22', 42420.00, 'A'), - (1541, 3, 'RONDON HERNANDEZ MARYLIN DEL CARMEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-09-29', 145780.00, 'A'), - (1542, 3, 'ELJURI RAMIREZ EMIRA ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2010-10-13', 601670.00, 'A'), - (1544, 3, 'REYES LE ROY TOMAS FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2009-06-24', 49990.00, 'A'), - (1545, 3, 'GHETEA GAMUZ JENNY', 191821112, 'CRA 25 CALLE 100', '675@gmail.com', '2011-02-03', 150699, '2010-05-29', 536940.00, 'A'), - (1546, 3, 'DUARTE GONZALEZ ROONEY ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-20', 534720.00, 'A'), - (1548, 3, 'BIZOT PHILIPPE PIERRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 263813, '2011-03-02', 709760.00, 'A'), - (1549, 3, 'PELUFFO RUBIO GUILLERMO JUAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 116366, '2011-05-09', 360470.00, 'A'), - (1550, 3, 'AGLIATI YERKOVIC CAROLINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-06-01', 673040.00, 'A'), - (1551, 3, 'SEPULVEDA LEDEZMA HENRY CORNELIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-08-15', 283810.00, 'A'), - (1552, 3, 'CABRERA CARMINE JAIME FRANCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2008-11-30', 399940.00, 'A'), - (1553, 3, 'ZINNO PENA ALVARO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116366, '2010-08-02', 148270.00, 'A'), - (1554, 3, 'ROMERO BUCCICARDI JUAN CRISTOBAL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-08-01', 541530.00, 'A'), - (1555, 3, 'FEFERKORN ABRAHAM', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 159312, '2011-06-12', 262840.00, 'A'), - (1556, 3, 'MASSE CATESSON CAROLINE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131272, '2011-06-12', 689600.00, 'A'), - (1557, 3, 'CATESSON ALEXANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 131272, '2011-06-12', 659470.00, 'A'), - (1558, 3, 'FUENTES HERNANDEZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-18', 228540.00, 'A'), - (1559, 3, 'GUEVARA MENJIVAR WILSON ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-18', 164310.00, 'A'), - (1560, 3, 'DANOWSKI NICOLAS JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-02', 135920.00, 'A'), - (1561, 3, 'CASTRO VELASQUEZ ISMAEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 121318, '2011-07-31', 186670.00, 'A'), - (1562, 3, 'RODRIGUEZ CORNEJO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 525590.00, 'A'), - (1563, 3, 'VANIA CAROLINA FLORES AVILA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-18', 67950.00, 'A'), - (1564, 3, 'ARMERO RAMOS OSCAR ALEXANDER', 191821112, 'CRA 25 CALLE 100', '414@hotmail.com', '2011-02-03', 127591, '2011-09-18', 762950.00, 'A'), - (1565, 3, 'ORELLANA MARTINEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-18', 610930.00, 'A'), - (1566, 3, 'BRATT BABONNEAU CARLOS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', 765800.00, 'A'), - (1567, 3, 'YANES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150728, '2011-04-12', 996200.00, 'A'), - (1568, 3, 'ANGULO TAMAYO SEBASTIAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126674, '2011-05-19', 683600.00, 'A'), - (1569, 3, 'HENRIQUEZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 138329, '2011-08-15', 429390.00, 'A'), - ('CELL4137', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (1570, 3, 'GARCIA VILLARROEL RAUL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126189, '2011-06-12', 96140.00, 'A'), - (1571, 3, 'SOLA HERNANDEZ JOSE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-09-25', 192530.00, 'A'), - (1572, 3, 'PEREZ PASTOR OSWALDO MAGARREY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126674, '2011-05-25', 674260.00, 'A'), - (1573, 3, 'MICHAN QUINONES FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-06-21', 793680.00, 'A'), - (1574, 3, 'GARCIA ARANDA OSCAR DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-08-15', 945620.00, 'A'), - (1575, 3, 'GARCIA RIBAS JORDI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-10', 347070.00, 'A'), - (1576, 3, 'GALVAN ROMERO MARIA INMACULADA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-09-14', 898480.00, 'A'), - (1577, 3, 'BOSH MOLINAS JUAN JOSE ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 198576, '2011-08-22', 451190.00, 'A'), - (1578, 3, 'MARTIN TENA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-04-24', 560520.00, 'A'), - (1579, 3, 'HAWKINS ROBERT JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-12', 449010.00, 'A'), - (1580, 3, 'GHERARDI ALEJANDRO EMILIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 180063, '2010-11-15', 563500.00, 'A'), - (1581, 3, 'TELLO JUAN EDUARDO', 191821112, 'CRA 25 CALLE 100', '192@hotmail.com', '2011-02-03', 138329, '2011-05-01', 470460.00, 'A'), - (1583, 3, 'GUZMAN VALDIVIA CINTIA TATIANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 199862, '2011-04-06', 897580.00, 'A'), - (1584, 3, 'STUBBS MERCEDES CARMEN JOSEFINA DEL MILAGRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 199862, '2011-04-06', 502510.00, 'A'), - (1585, 3, 'QUINTEIRO GORIS JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-17', 819840.00, 'A'), - (1587, 3, 'RIVAS LORIA PRISCILLA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 205636, '2011-05-01', 498720.00, 'A'), - (1588, 3, 'DE LA TORRE AUGUSTO PATRICIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 20404, '2011-08-31', 718670.00, 'A'), - (159, 1, 'ALDANA PATINO NORMAN ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2009-10-10', 201500.00, 'A'), - (1590, 3, 'TORRES VILLAR ROBERTO ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-08-10', 329950.00, 'A'), - (1591, 3, 'PETRULLI CARMELO MORENO', 191821112, 'CRA 25 CALLE 100', '883@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', 358180.00, 'A'), - (1592, 3, 'MUSCO ENZO FRANCESCO GIUSEPPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-04', 801050.00, 'A'), - (1593, 3, 'RONCUZZI CLAUDIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127134, '2011-10-02', 930700.00, 'A'), - (1594, 3, 'VELANI FRANCESCA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 199862, '2011-08-22', 250360.00, 'A'), - (1596, 3, 'BENARROCH ASSOR DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-10-06', 547310.00, 'A'), - (1597, 3, 'FLO VILLASECA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-05-27', 357520.00, 'A'), - (1598, 3, 'FONT RIBAS ANTONI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196117, '2011-09-21', 145660.00, 'A'), - (1599, 3, 'LOPEZ BARAHONA MONICA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-08-03', 655740.00, 'A'), - (16, 1, 'FLOREZ PEREZ GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132572, '2011-03-30', 956370.00, 'A'), - (160, 1, 'GIRALDO MENDIVELSO MARTIN EDISSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-14', 429010.00, 'A'), - (1600, 3, 'SCATTIATI ALDO ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 215245, '2011-07-10', 841730.00, 'A'), - (1601, 3, 'MARONE CARLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 101179, '2011-06-14', 241420.00, 'A'), - (1602, 3, 'CHUVASHEVA ELENA ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 190393, '2011-08-21', 681900.00, 'A'), - (1603, 3, 'GIGLIO FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 122035, '2011-09-19', 685250.00, 'A'), - (1604, 3, 'JUSTO AMATE AGUSTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 174598, '2011-05-16', 380560.00, 'A'), - (1605, 3, 'GUARDABASSI FABIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 281044, '2011-07-26', 847060.00, 'A'), - (1606, 3, 'CALABRETTA FRAMCESCO ANTONIO MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 199862, '2011-08-22', 93590.00, 'A'), - (1607, 3, 'TARTARINI MASSIMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196234, '2011-05-10', 926800.00, 'A'), - (1608, 3, 'BOTTI GIAIME', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 231989, '2011-04-04', 353210.00, 'A'), - (1610, 3, 'PILERI ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 205040, '2011-09-01', 868590.00, 'A'), - (1612, 3, 'MARTIN GRACIA LUIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-07-27', 324320.00, 'A'), - (1613, 3, 'GRACIA MARTIN LUIS', 191821112, 'CRA 25 CALLE 100', '579@facebook.com', '2011-02-03', 198248, '2011-08-24', 463560.00, 'A'), - (1614, 3, 'SERRAT SESE JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-05-16', 344840.00, 'A'), - (1615, 3, 'DEL LAGO AMPELIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-06-29', 333510.00, 'A'), - (1616, 3, 'PERUGORRIA RODRIGUEZ JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 148511, '2011-06-06', 633040.00, 'A'), - (1617, 3, 'GIRAL CALVO IGNACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-09-19', 164670.00, 'A'), - (1618, 3, 'ALONSO CEBRIAN JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '253@terra.com.co', '2011-02-03', 188640, '2011-03-23', 924240.00, 'A'), - (162, 1, 'ARIZA PINEDA JOHN ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-11-27', 415710.00, 'A'), - (1620, 3, 'OLMEDO CARDENETE DOMINGO MIGUEL', 191821112, 'CRA 25 CALLE 100', '608@terra.com.co', '2011-02-03', 135397, '2011-09-03', 863200.00, 'A'), - (1622, 3, 'GIMENEZ BALDRES ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 182860, '2011-05-12', 82660.00, 'A'), - (1623, 3, 'NUNEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-05-23', 609950.00, 'A'), - (1624, 3, 'PENATE CASTRO WENCESLAO LORENZO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 153607, '2011-09-13', 801750.00, 'A'), - (1626, 3, 'ESCODA MIGUEL JOAN JOSEP', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-07-18', 489310.00, 'A'), - (1628, 3, 'ESTRADA CAPILLA ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-26', 81180.00, 'A'), - (163, 1, 'PERDOMO LOPEZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-05', 456910.00, 'A'), - (1630, 3, 'SUBIRAIS MARIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-08', 138700.00, 'A'), - (1632, 3, 'ENSENAT VELASCO JAIME LUIS', 191821112, 'CRA 25 CALLE 100', '687@gmail.com', '2011-02-03', 188640, '2011-04-12', 904560.00, 'A'), - (1633, 3, 'DIEZ POLANCO CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-05-24', 530410.00, 'A'), - (1636, 3, 'CUADRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-09-04', 688400.00, 'A'), - (1637, 3, 'UBRIC MUNOZ RAUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 98790, '2011-05-30', 139830.00, 'A'), - ('CELL4159', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (1638, 3, 'NEDDERMANN GUJO RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-31', 633990.00, 'A'), - (1639, 3, 'RENEDO ZALBA JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-03-13', 750430.00, 'A'), - (164, 1, 'JIMENEZ PADILLA JOHAN MARCEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-05', 37430.00, 'A'), - (1640, 3, 'FERNANDEZ MORENO DAVID', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-05-28', 850180.00, 'A'), - (1641, 3, 'VERGARA SERRANO JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-06-30', 999620.00, 'A'), - (1642, 3, 'MARTINEZ HUESO LUCAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 182860, '2011-06-29', 447570.00, 'A'), - (1643, 3, 'FRANCO POBLET JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-10-03', 238990.00, 'A'), - (1644, 3, 'MORA HIDALGO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-06', 852250.00, 'A'), - (1645, 3, 'GARCIA COSO EMILIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-09-14', 544260.00, 'A'), - (1646, 3, 'GIMENO ESCRIG ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 180124, '2011-09-20', 164580.00, 'A'), - (1647, 3, 'MORCILLO LOPEZ RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127538, '2011-04-16', 190090.00, 'A'), - (1648, 3, 'RUBIO BONET MANUEL', 191821112, 'CRA 25 CALLE 100', '252@facebook.com', '2011-02-03', 196234, '2011-05-25', 456740.00, 'A'), - (1649, 3, 'PRADO ABUIN FERNANDO ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-07-16', 713400.00, 'A'), - (165, 1, 'RAMIREZ PALMA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-10', 816420.00, 'A'), - (1650, 3, 'DE VEGA PUJOL GEMA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-08-01', 196780.00, 'A'), - (1651, 3, 'IBARGUEN ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2010-12-03', 843720.00, 'A'), - (1652, 3, 'IBARGUEN ALFREDO', 191821112, 'CRA 25 CALLE 100', '856@hotmail.com', '2011-02-03', 188640, '2011-06-18', 628250.00, 'A'), - (1654, 3, 'MATELLANES RODRIGUEZ NURIA PILAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-10-05', 165770.00, 'A'), - (1656, 3, 'VIDAURRAZAGA GUISOLA JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-08-08', 495320.00, 'A'), - (1658, 3, 'GOMEZ ULLATE MARIA ELENA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-04-12', 919090.00, 'A'), - (1659, 3, 'ALCAIDE ALONSO JUAN MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-02', 152430.00, 'A'), - (166, 1, 'TUSTANOSKI RODOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-12-03', 969790.00, 'A'), - (1660, 3, 'LARROY GARCIA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-14', 4900.00, 'A'), - (1661, 3, 'FERNANDEZ POYATO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-10', 567180.00, 'A'), - (1662, 3, 'TREVEJO PARDO JULIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-25', 821200.00, 'A'), - (1663, 3, 'GORGA CASSINELLI VICTOR DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-30', 404490.00, 'A'), - (1664, 3, 'MORUECO GONZALEZ JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-10-09', 558820.00, 'A'), - (1665, 3, 'IRURETA FERNANDEZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 214283, '2011-09-14', 580650.00, 'A'), - (1667, 3, 'TREVEJO PARDO JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-25', 392020.00, 'A'), - (1668, 3, 'BOCOS NUNEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-10-08', 279710.00, 'A'), - (1669, 3, 'LUIS CASTILLO JOSE AGUSTIN', 191821112, 'CRA 25 CALLE 100', '557@hotmail.es', '2011-02-03', 168202, '2011-06-16', 222500.00, 'A'), - (167, 1, 'HURTADO BELALCAZAR JOHN JADY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-08-17', 399710.00, 'A'), - (1670, 3, 'REDONDO GUTIERREZ EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-09-14', 273350.00, 'A'), - (1671, 3, 'MADARIAGA ALONSO RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-07-26', 699240.00, 'A'), - (1673, 3, 'REY GONZALEZ LUIS JAVIER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-07-26', 283190.00, 'A'), - (1676, 3, 'PEREZ ESTER ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-10-03', 274900.00, 'A'), - (1677, 3, 'GOMEZ-GRACIA HUERTA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-22', 112260.00, 'A'), - (1678, 3, 'DAMASO PUENTE DIEGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-25', 736600.00, 'A'), - (168, 1, 'JUAN PABLO MARTINEZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-15', 89160.00, 'A'), - (1680, 3, 'DIEZ GONZALEZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-17', 521280.00, 'A'), - (1681, 3, 'LOPEZ LOPEZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '853@yahoo.com', '2011-02-03', 196234, '2010-12-13', 567760.00, 'A'), - (1682, 3, 'MIRO LINARES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133442, '2011-09-03', 274930.00, 'A'), - (1683, 3, 'ROCA PINTADO MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-05-16', 671410.00, 'A'), - (1684, 3, 'GARCIA BARTOLOME HORACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-09-29', 532220.00, 'A'), - (1686, 3, 'BALMASEDA DE AHUMADA DIEZ JUAN LUIS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 168202, '2011-04-13', 637860.00, 'A'), - (1687, 3, 'FERNANDEZ IMAZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-04-10', 248580.00, 'A'), - (1688, 3, 'ELIAS CASTELLS FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-19', 329300.00, 'A'), - (1689, 3, 'ANIDO DIAZ DANIEL', 191821112, 'CRA 25 CALLE 100', '491@gmail.com', '2011-02-03', 188640, '2011-04-04', 900780.00, 'A'), - (1691, 3, 'GATELL ARIMONT MARIA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-17', 877700.00, 'A'), - (1692, 3, 'RIVERA MUNOZ ADONI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 211705, '2011-04-05', 840470.00, 'A'), - (1693, 3, 'LUNA LOPEZ ALICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-10-01', 569270.00, 'A'), - (1695, 3, 'HAMMOND ANN ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118021, '2011-05-17', 916770.00, 'A'), - (1698, 3, 'RODRIGUEZ PARAJA MARIA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-15', 649080.00, 'A'), - (1699, 3, 'RUIZ DIAZ JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-06-24', 359540.00, 'A'), - (17, 1, 'SUAREZ CUEVAS FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2011-08-31', 149640.00, 'A'), - (170, 1, 'MARROQUIN AVILA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-04', 965840.00, 'A'), - (1700, 3, 'BACCHELLI ORTEGA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126180, '2011-06-07', 850450.00, 'A'), - (1701, 3, 'IGLESIAS JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2010-09-14', 173630.00, 'A'), - (1702, 3, 'GUTIEZ CUEVAS JULIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2010-09-07', 316800.00, 'A'), - ('CELL4183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (1704, 3, 'CALDEIRO ZAMORA JESUS CARMELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-09', 365230.00, 'A'), - (1705, 3, 'ARBONA ABASCAL MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-02-27', 636760.00, 'A'), - (1706, 3, 'COHEN AMAR MOISES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196766, '2011-05-20', 88120.00, 'A'), - (1708, 3, 'FERNANDEZ COBOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2010-11-09', 387220.00, 'A'), - (1709, 3, 'CANAL VIVES JOAQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 196234, '2011-09-27', 345150.00, 'A'), - (171, 1, 'LADINO MORENO JAVIER ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-25', 89230.00, 'A'), - (1710, 5, 'GARCIA BERTRAND HECTOR', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-04-07', 564100.00, 'A'), - (1711, 1, 'CONSTANZA MARIN ESCOBAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127799, '2011-03-24', 785060.00, 'A'), - (1712, 1, 'NUNEZ BATALLA FAUSTINO JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-26', 232970.00, 'A'), - (1713, 3, 'VILORA LAZARO ERICK MARTIN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-26', 809690.00, 'A'), - (1715, 3, 'ELLIOT EDWARD JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-26', 318660.00, 'A'), - (1716, 3, 'ALCALDE ORTENO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-07-23', 544650.00, 'A'), - (1717, 3, 'CIARAVELLA STEFANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 231989, '2011-06-13', 767260.00, 'A'), - (1718, 3, 'URRA GONZALEZ PEDRO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-05-02', 202370.00, 'A'), - (172, 1, 'GUERRERO ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-15', 548610.00, 'A'), - (1720, 3, 'JIMENEZ RODRIGUEZ ANNET', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-05-25', 943140.00, 'A'), - (1721, 3, 'LESCAY CASTELLANOS ARNALDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', 585570.00, 'A'), - (1722, 3, 'OCHOA AGUILAR ELIADES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-25', 98410.00, 'A'), - (1723, 3, 'RODRIGUEZ NUNES JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 735340.00, 'A'), - (1724, 3, 'OCHOA BUSTAMANTE ELIADES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-25', 381480.00, 'A'), - (1725, 3, 'MARTINEZ NIEVES JOSE ANGEL', 191821112, 'CRA 25 CALLE 100', '919@yahoo.es', '2011-02-03', 127591, '2011-05-25', 701360.00, 'A'), - (1727, 3, 'DRAGONI ALAIN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-25', 707850.00, 'A'), - (1728, 3, 'FERNANDEZ LOPEZ MARCOS ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-25', 452090.00, 'A'), - (1729, 3, 'MATURELL ROMERO JORGE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-25', 136880.00, 'A'), - (173, 1, 'RUIZ CEBALLOS ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-04', 475380.00, 'A'), - (1730, 3, 'LARA CASTELLANO LENNIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-25', 328150.00, 'A'), - (1731, 3, 'GRAHAM CRISTOPHER DRAKE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 203079, '2011-06-27', 230120.00, 'A'), - (1732, 3, 'TORRE LUCA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-05-11', 166120.00, 'A'), - (1733, 3, 'OCHOA HIDALGO EGLIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 140250.00, 'A'), - (1734, 3, 'LOURERIO DELACROIX FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116511, '2011-09-28', 202900.00, 'A'), - (1736, 3, 'LEVIN FIORELLI ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116366, '2011-08-07', 360110.00, 'A'), - (1739, 3, 'BERRY R ALBERT', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 216125, '2011-08-16', 22170.00, 'A'), - (174, 1, 'NIETO PARRA SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-05-11', 731040.00, 'A'), - (1740, 3, 'MARSHALL ROBERT SHEPARD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 150159, '2011-03-09', 62860.00, 'A'), - (1741, 3, 'HENANDEZ ROY CHRISTOPHER JOHN PATRICK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 179614, '2011-09-26', 247780.00, 'A'), - (1742, 3, 'LANDRY GUILLAUME', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 232263, '2011-04-27', 50330.00, 'A'), - (1743, 3, 'VUCETIC ZELJKO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 232263, '2011-07-25', 508320.00, 'A'), - (1744, 3, 'DE JUANA CELASCO MARIA DEL CARMEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-04-16', 390620.00, 'A'), - (1745, 3, 'LABONTE RONALD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 269033, '2011-09-28', 428120.00, 'A'), - (1746, 3, 'NEWMAN PHILIP MARK', 191821112, 'CRA 25 CALLE 100', '557@gmail.com', '2011-02-03', 231373, '2011-07-25', 968750.00, 'A'), - (1747, 3, 'GRENIER MARIE PIERRE ', 191821112, 'CRA 25 CALLE 100', '409@facebook.com', '2011-02-03', 244158, '2011-07-03', 559370.00, 'A'), - (1749, 3, 'SHINDER GARY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 244158, '2011-07-25', 775000.00, 'A'), - (175, 3, 'GALLEGOS BASTIDAS CARLOS EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133211, '2011-08-10', 229090.00, 'A'), - (1750, 3, 'LOPEZ DE GOICOCHEA ZABALA FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-13', 203120.00, 'A'), - (1751, 3, 'CORRAL BELLON MANUEL', 191821112, 'CRA 25 CALLE 100', '538@yahoo.com', '2011-02-03', 177443, '2011-05-02', 690610.00, 'A'), - (1752, 3, 'DE SOLA SOLVAS JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-10-02', 843700.00, 'A'), - (1753, 3, 'GARCIA ALCALA DIAZ REGANON EVA MARIA', 191821112, 'CRA 25 CALLE 100', '398@yahoo.com', '2011-02-03', 118777, '2010-03-15', 146680.00, 'A'), - (1754, 3, 'BIELA VILIAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2011-08-16', 202290.00, 'A'), - (1755, 3, 'GUIOT CANO JUAN PATRICK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 232263, '2011-05-23', 571390.00, 'A'), - (1756, 3, 'JIMENEZ DIAZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-03-27', 250100.00, 'A'), - (1757, 3, 'FOX ELEANORE MAE', 191821112, 'CRA 25 CALLE 100', '117@yahoo.com', '2011-02-03', 190393, '2011-05-04', 536340.00, 'A'), - (1758, 3, 'TANG VAN SON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-05-07', 931400.00, 'A'), - (1759, 3, 'SUTTON PETER RONALD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 281673, '2011-06-01', 47960.00, 'A'), - (176, 1, 'GOMEZ IVAN', 191821112, 'CRA 25 CALLE 100', '438@yahoo.com.mx', '2011-02-03', 127591, '2008-04-09', 952310.00, 'A'), - (1762, 3, 'STOODY MATTHEW FRANCIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-21', 84320.00, 'A'), - (1763, 3, 'SEIX MASO ARNAU', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150699, '2011-05-24', 168880.00, 'A'), - (1764, 3, 'FERNANDEZ REDEL RAQUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-09-14', 591440.00, 'A'), - (1765, 3, 'PORCAR DESCALS VICENNTE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 176745, '2011-04-24', 450580.00, 'A'), - (1766, 3, 'PEREZ DE VILLEGAS TRILLO FIGUEROA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-05-17', 478560.00, 'A'), - ('CELL4198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (1767, 3, 'CELDRAN DEGANO ANGEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 196234, '2011-05-17', 41040.00, 'A'), - (1768, 3, 'TERRAGO MARI FERRAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-09-30', 769550.00, 'A'), - (1769, 3, 'SZUCHOVSZKY GERGELY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 250256, '2011-05-23', 724630.00, 'A'), - (177, 1, 'SEBASTIAN TORO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127443, '2011-07-14', 74270.00, 'A'), - (1771, 3, 'TORIBIO JOSE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 226612, '2011-09-04', 398570.00, 'A'), - (1772, 3, 'JOSE LUIS BAQUERA PEIRONCELLY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2010-10-19', 49360.00, 'A'), - (1773, 3, 'MADARIAGA VILLANUEVA MIGUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-04-12', 51090.00, 'A'), - (1774, 3, 'VILLENA BORREGO ANTONIO', 191821112, 'CRA 25 CALLE 100', '830@terra.com.co', '2011-02-03', 188640, '2011-07-19', 107400.00, 'A'), - (1776, 3, 'VILAR VILLALBA JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 180124, '2011-09-20', 596330.00, 'A'), - (1777, 3, 'CAGIGAL ORTIZ MACARENA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 214283, '2011-09-14', 830530.00, 'A'), - (1778, 3, 'KORBA ATTILA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 250256, '2011-09-27', 363650.00, 'A'), - (1779, 3, 'KORBA-ELIAS BARBARA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 250256, '2011-09-27', 326670.00, 'A'), - (178, 1, 'AMSILI COHEN HANAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-08-29', 514450.00, 'A'), - (1780, 3, 'PINDADO GOMEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 189053, '2011-04-26', 542400.00, 'A'), - (1781, 3, 'IBARRONDO GOMEZ GRACIA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-09-21', 731990.00, 'A'), - (1782, 3, 'MUNGUIRA GONZALEZ JUAN JULIAN', 191821112, 'CRA 25 CALLE 100', '54@hotmail.es', '2011-02-03', 188640, '2011-09-06', 32730.00, 'A'), - (1784, 3, 'LANDMAN PIETER MARINUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 294861, '2011-09-22', 740260.00, 'A'), - (1789, 3, 'SUAREZ AINARA ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-05-17', 503470.00, 'A'), - (179, 1, 'CARO JUNCO GUIOVANNY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-03', 349420.00, 'A'), - (1790, 3, 'MARTINEZ CHACON JOSE JOAQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-20', 592220.00, 'A'), - (1792, 3, 'MENDEZ DEL RION LUCIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 120639, '2011-06-16', 476910.00, 'A'), - (1793, 3, 'VERHULST LAMBERTUS CORNELIA FRANCISCUS ALPHONSUS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 295420, '2011-07-04', 32410.00, 'A'), - (1794, 3, 'YANEZ YAGUE JESUS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-07-10', 731290.00, 'A'), - (1796, 3, 'GOMEZ ZORRILLA AMATE JOSE MARIOA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-07-12', 602380.00, 'A'), - (1797, 3, 'LAIZ MORENO ENEKO', 191821112, 'CRA 25 CALLE 100', '219@gmail.com', '2011-02-03', 127591, '2011-08-05', 334150.00, 'A'), - (1798, 3, 'MORODO RUIZ RUBEN DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-09-14', 863620.00, 'A'), - (18, 1, 'GARZON VARGAS GUILLERMO FEDERICO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-29', 879110.00, 'A'), - (1800, 3, 'ALFARO FAUS MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-09-14', 987410.00, 'A'), - (1801, 3, 'MORRALLA VALLVERDU ENRIC', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 194601, '2011-07-18', 990070.00, 'A'), - (1802, 3, 'BALBASTRE TEJEDOR JUAN VICENTE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 182860, '2011-08-24', 988120.00, 'A'), - (1803, 3, 'MINGO REIZ FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2010-03-24', 970400.00, 'A'), - (1804, 3, 'IRURETA FERNANDEZ JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 214283, '2011-09-10', 887630.00, 'A'), - (1807, 3, 'NEBRO MELLADO JOSE JUAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 168996, '2011-08-15', 278540.00, 'A'), - (1808, 3, 'ALBERQUILLA OJEDA JOSE DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-09-27', 477070.00, 'A'), - (1809, 3, 'BUENDIA NORTE MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 131401, '2011-07-08', 549720.00, 'A'), - (181, 1, 'CASTELLANOS FLORES RODRIGO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-18', 970470.00, 'A'), - (1811, 3, 'HILBERT ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-08', 937830.00, 'A'), - (1812, 3, 'GONZALES PINTO COTERILLO ADOLFO LORENZO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 214283, '2011-09-10', 736970.00, 'A'), - (1813, 3, 'ARQUES ALVAREZ JOSE RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-04-04', 871360.00, 'A'), - (1817, 3, 'CLAUSELL LOW ROBERTO EMILIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2011-09-28', 348770.00, 'A'), - (1818, 3, 'BELICHON MARTINEZ JESUS ALVARO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-04-12', 327010.00, 'A'), - (182, 1, 'GUZMAN NIETO JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-20', 241130.00, 'A'), - (1821, 3, 'LINATI DE PUIG JORGE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 196234, '2011-05-18', 47210.00, 'A'), - (1823, 3, 'SINBARRERA ROMA ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196234, '2011-09-08', 598380.00, 'A'), - (1826, 2, 'JUANES GARATE BRUNO ', 191821112, 'CRA 25 CALLE 100', '301@gmail.com', '2011-02-03', 118777, '2011-08-21', 877650.00, 'A'), - (1827, 3, 'BOLOS GIMENO ROGELIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 200247, '2010-11-28', 555470.00, 'A'), - (1828, 3, 'ZABALA ASTIGARRAGA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-09-20', 144410.00, 'A'), - (1831, 3, 'MAPELLI CAFFARENA BORJA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 172381, '2011-09-04', 58200.00, 'A'), - (1833, 3, 'LARMONIE LESLIE MARTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-30', 604840.00, 'A'), - (1834, 3, 'WILLEMS ROBERT-JAN MICHAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 288531, '2011-09-05', 756530.00, 'A'), - (1835, 3, 'ANJEMA LAURENS JAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-08-29', 968140.00, 'A'), - (1836, 3, 'VERHULST HENRICUS LAMBERTUS MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 295420, '2011-04-03', 571100.00, 'A'), - (1837, 3, 'PIERROT JOZEF MARIE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 288733, '2011-05-18', 951100.00, 'A'), - (1838, 3, 'EIKELBOOM HIDDE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 42210.00, 'A'), - (1839, 3, 'TAMBINI GOMEZ DE MUNG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 180063, '2011-04-24', 357740.00, 'A'), - (1840, 3, 'MAGANA PEREZ GERARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-09-28', 662060.00, 'A'), - (1841, 3, 'COURTOISIE BEYHAUT RAFAEL JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116366, '2011-09-05', 237070.00, 'A'), - (1842, 3, 'ROJAS BENJAMIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-13', 199170.00, 'A'), - (1843, 3, 'GARCIA VICENTE EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 150699, '2011-08-10', 284650.00, 'A'), - ('CELL4291', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (1844, 3, 'CESTTI LOPEZ RAFAEL GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 144215, '2011-09-27', 825750.00, 'A'), - (1845, 3, 'URTECHO LOPEZ ARMANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 139272, '2011-09-28', 274800.00, 'A'), - (1846, 3, 'SEGURA ESPINOZA ARMANDO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 135360, '2011-09-28', 896730.00, 'A'), - (1847, 3, 'GONZALEZ VEGA LUIS PASTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-05-18', 659240.00, 'A'), - (185, 1, 'AYALA CARDENAS NELSON MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 855960.00, 'A'), - (1850, 3, 'ROTZINGER ROA KLAUS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 116366, '2011-09-12', 444250.00, 'A'), - (1851, 3, 'FRANCO DE LEON SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116366, '2011-04-26', 63840.00, 'A'), - (1852, 3, 'RIVAS GAGNONI LUIS ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 135360, '2011-05-18', 986440.00, 'A'), - (1853, 3, 'BARRETO VELASQUEZ JOEL FERNANDO', 191821112, 'CRA 25 CALLE 100', '104@hotmail.es', '2011-02-03', 116511, '2011-04-27', 740670.00, 'A'), - (1854, 3, 'SEVILLA AMAYA ORLANDO', 191821112, 'CRA 25 CALLE 100', '264@yahoo.com', '2011-02-03', 136995, '2011-05-18', 744020.00, 'A'), - (1855, 3, 'VALFRE BRALICH ELEONORA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116366, '2011-06-06', 498080.00, 'A'), - (1857, 3, 'URDANETA DIAMANTES DIEGO ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-09-23', 797590.00, 'A'), - (1858, 3, 'RAMIREZ ALVARADO ROBERT JESUS', 191821112, 'CRA 25 CALLE 100', '290@yahoo.com.mx', '2011-02-03', 127591, '2011-09-18', 212850.00, 'A'), - (1859, 3, 'GUTTNER DENNIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-25', 671470.00, 'A'), - (186, 1, 'CARRASCO SUESCUN ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-15', 36620.00, 'A'), - (1861, 3, 'HEGEMANN JOACHIM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-25', 579710.00, 'A'), - (1862, 3, 'MALCHER INGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 292243, '2011-06-23', 742060.00, 'A'), - (1864, 3, 'HOFFMEISTER MALTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128206, '2011-09-06', 629770.00, 'A'), - (1865, 3, 'BOHME ALEXANDRA LUCE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-14', 235260.00, 'A'), - (1866, 3, 'HAMMAN FRANK THOMAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-13', 286980.00, 'A'), - (1867, 3, 'GOPPERT MARKUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-09-05', 729150.00, 'A'), - (1868, 3, 'BISCARO CAROLINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-16', 784790.00, 'A'), - (1869, 3, 'MASCHAT SEBASTIAN STEPHAN ANDREAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-02-03', 736520.00, 'A'), - (1870, 3, 'WALTHER DANIEL CLAUS PETER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-24', 328220.00, 'A'), - (1871, 3, 'NENTWIG DANIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 289697, '2011-02-03', 431550.00, 'A'), - (1872, 3, 'KARUTZ ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127662, '2011-03-17', 173090.00, 'A'), - (1875, 3, 'KAY KUNNE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 289697, '2011-03-18', 961400.00, 'A'), - (1876, 2, 'SCHLUMPF IVANA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 245206, '2011-03-28', 802690.00, 'A'), - (1877, 3, 'RODRIGUEZ BUSTILLO CONSUELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 139067, '2011-03-21', 129280.00, 'A'), - (1878, 1, 'REHWALDT RICHARD ULRICH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289697, '2009-10-25', 238320.00, 'A'), - (1880, 3, 'FONSECA BEHRENS MANUELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-18', 303810.00, 'A'), - (1881, 3, 'VOGEL MIRKO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-09', 107790.00, 'A'), - (1882, 3, 'WU WEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 289697, '2011-03-04', 627520.00, 'A'), - (1884, 3, 'KADOLSKY ANKE SIGRID', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 289697, '2010-10-07', 188560.00, 'A'), - (1885, 3, 'PFLUCKER PLENGE CARLOS HERNAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 239124, '2011-08-15', 500140.00, 'A'), - (1886, 3, 'PENA LAGOS MELENIA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 935020.00, 'A'), - (1887, 3, 'CALVANO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-05-02', 174690.00, 'A'), - (1888, 3, 'KUHLEN LOTHAR WILHELM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 289232, '2011-08-30', 68390.00, 'A'), - (1889, 3, 'QUIJANO RICO SOFIA VICTORIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 221939, '2011-06-13', 817890.00, 'A'), - (189, 1, 'GOMEZ TRUJILLO SERGIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-17', 985980.00, 'A'), - (1890, 3, 'SCHILBERZ KARIN', 191821112, 'CRA 25 CALLE 100', '405@facebook.com', '2011-02-03', 287570, '2011-06-23', 884260.00, 'A'), - (1891, 3, 'SCHILBERZ SOPHIE CAHRLOTTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 287570, '2011-06-23', 967640.00, 'A'), - (1892, 3, 'MOLINA MOLINA MILAGRO DE SUYAPA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 139844, '2011-07-26', 185410.00, 'A'), - (1893, 3, 'BARRIENTOS ESCALANTE RAFAEL ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 139067, '2011-05-18', 24110.00, 'A'), - (1895, 3, 'ENGELS FRANZBERNARD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 292243, '2011-07-01', 749430.00, 'A'), - (1896, 3, 'FRIEDHOFF SVEN WILHEM', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 289697, '2010-10-31', 54090.00, 'A'), - (1897, 3, 'BARTELS CHRISTIAN JOHAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-07-25', 22160.00, 'A'), - (1898, 3, 'NILS REMMEL', 191821112, 'CRA 25 CALLE 100', '214@gmail.com', '2011-02-03', 256231, '2011-08-05', 948530.00, 'A'), - (1899, 3, 'DR SCHEIBE MATTHIAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 252431, '2011-09-26', 676150.00, 'A'), - (19, 1, 'RIANO ROMERO ALBERTO ELIAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-12-14', 946630.00, 'A'), - (190, 1, 'LLOREDA ORTIZ FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-12-20', 30860.00, 'A'), - (1900, 3, 'CARRASCO CATERIANO PEDRO', 191821112, 'CRA 25 CALLE 100', '255@hotmail.com', '2011-02-03', 286578, '2011-05-02', 535180.00, 'A'), - (1901, 3, 'ROSENBER DIRK PETER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-29', 647450.00, 'A'), - (1902, 3, 'LAUBACH JOHANNES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289697, '2011-05-01', 631720.00, 'A'), - (1904, 3, 'GRUND STEFAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 256231, '2011-08-05', 185990.00, 'A'), - (1905, 3, 'GRUND BEATE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 256231, '2011-08-05', 281280.00, 'A'), - (1906, 3, 'CORZO PAULA MIRIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 180063, '2011-08-02', 848400.00, 'A'), - (1907, 3, 'OESTERHAUS CORNELIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 256231, '2011-03-16', 398170.00, 'A'), - (1908, 1, 'JUAN SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-05-12', 445660.00, 'A'), - (1909, 3, 'VAN ZIJL CHRISTIAN ANDREAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 286785, '2011-09-24', 33800.00, 'A'), - (191, 1, 'CASTANEDA CABALLERO JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-28', 196370.00, 'A'), - (1910, 3, 'LORZA RUIZ MYRIAM ESPERANZA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-29', 831990.00, 'A'), - (192, 1, 'ZEA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-09', 889270.00, 'A'), - (193, 1, 'VELEZ VICTOR MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-22', 857250.00, 'A'), - (194, 1, 'ARCINIEGAS GOMEZ ISMAEL', 191821112, 'CRA 25 CALLE 100', '937@hotmail.com', '2011-02-03', 127591, '2011-05-18', 618450.00, 'A'), - (195, 1, 'LINAREZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-12', 520470.00, 'A'), - (1952, 3, 'BERND ERNST HEINZ SCHUNEMANN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 255673, '2011-09-04', 796820.00, 'A'), - (1953, 3, 'BUCHNER RICHARD ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-17', 808430.00, 'A'), - (1954, 3, 'CHO YONG BEOM', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 173192, '2011-02-07', 651670.00, 'A'), - (1955, 3, 'BERNECKER WALTER LUDWIG', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 256231, '2011-04-03', 833080.00, 'A'), - (1956, 3, 'SCHIERENBECK THOMAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 256231, '2011-05-03', 210380.00, 'A'), - (1957, 3, 'STEGMANN WOLF DIETER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-08-27', 552650.00, 'A'), - (1958, 3, 'LEBAGE GONZALEZ VALENTINA CECILIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 131272, '2011-07-29', 132130.00, 'A'), - (1959, 3, 'CABRERA MACCHI JOSE ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 180063, '2011-08-02', 2700.00, 'A'), - (196, 1, 'OTERO BERNAL ALVARO ERNESTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-04-29', 747030.00, 'A'), - (1960, 3, 'KOO BONKI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-15', 617110.00, 'A'), - (1961, 3, 'JODJAHN DE CARVALHO BEIRAL FLAVIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-07-05', 77460.00, 'A'), - (1963, 3, 'VIEIRA ROCHA MARQUES ELIANE TEREZINHA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118402, '2011-09-13', 447430.00, 'A'), - (1965, 3, 'KELLEN CRISTINA GATTI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126180, '2011-07-01', 804020.00, 'A'), - (1966, 3, 'CHAVEZ MARLON TENORIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-25', 132310.00, 'A'), - (1967, 3, 'SERGIO COZZI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 125750, '2011-08-28', 249500.00, 'A'), - (1968, 3, 'REZENDE LIMA JOSE MARCIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-08-23', 850570.00, 'A'), - (1969, 3, 'RAMOS PEDRO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118942, '2011-08-03', 504330.00, 'A'), - (1972, 3, 'ADAMS THOMAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2011-08-11', 774000.00, 'A'), - (1973, 3, 'WALESKA NUCINI BOGO ANDREA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-23', 859690.00, 'A'), - (1974, 3, 'GERMANO PAULO BUNN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118439, '2011-08-30', 976440.00, 'A'), - (1975, 3, 'CALDEIRA FILHO RUBENS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118942, '2011-07-18', 303120.00, 'A'), - (1976, 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 119814, '2011-09-08', 586290.00, 'A'), - (1977, 3, 'GAMAS MARIA CRISTINA ALVES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-09-19', 22070.00, 'A'), - (1979, 3, 'PORTO WEBER FERREIRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-07', 691340.00, 'A'), - (1980, 3, 'FONSECA LAURO PINTO', 191821112, 'CRA 25 CALLE 100', '104@hotmail.es', '2011-02-03', 127591, '2011-08-16', 402140.00, 'A'), - (1981, 3, 'DUARTE ELENA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-06-15', 936710.00, 'A'), - (1983, 3, 'CECHINEL CRISTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118942, '2011-06-12', 575530.00, 'A'), - (1984, 3, 'BATISTA PINHERO JOAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-04-25', 446250.00, 'A'), - (1987, 1, 'ISRAEL JOSE MAXWELL', 191821112, 'CRA 25 CALLE 100', '936@gmail.com', '2011-02-03', 125894, '2011-07-04', 408350.00, 'A'), - (1988, 3, 'BATISTA CARVALHO RODRIGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118864, '2011-09-19', 488410.00, 'A'), - (1989, 3, 'RENO DA SILVEIRA EDNEIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118867, '2011-05-03', 216990.00, 'A'), - (199, 1, 'BASTO CORREA FERNANDO ANTONIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-21', 616860.00, 'A'), - (1990, 3, 'SEIDLER KOHNERT G TEIXEIRA CHRISTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 119814, '2011-08-23', 619730.00, 'A'), - (1992, 3, 'GUIMARAES COSTA LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-04-20', 379090.00, 'A'), - (1993, 3, 'BOTTA RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2011-09-16', 552510.00, 'A'), - (1994, 3, 'ARAUJO DA SILVA MARCELO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 125666, '2011-08-03', 625260.00, 'A'), - (1995, 3, 'DA SILVA FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118864, '2011-04-14', 468760.00, 'A'), - (1996, 3, 'MANFIO RODRIGUEZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '974@yahoo.com', '2011-02-03', 118777, '2011-03-23', 468040.00, 'A'), - (1997, 3, 'NEIVA MORENO DE SOUZA CRISTIANE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-24', 933900.00, 'A'), - (2, 3, 'CHEEVER MICHAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-04', 560090.00, 'I'), - (2000, 3, 'ROCHA GUSTAVO ADRIANO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118288, '2011-07-25', 830340.00, 'A'), - (2001, 3, 'DE ANDRADE CARVALHO VIRGINIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-08-11', 575760.00, 'A'), - (2002, 3, 'CAVALCANTI PIERECK GUILHERME', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 180063, '2011-08-01', 387770.00, 'A'), - (2004, 3, 'HOEGEMANN RAMOS CARLOS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-04', 894550.00, 'A'), - (201, 1, 'LUIS FERNANDO AREVALO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-17', 156730.00, 'A'), - (2010, 3, 'GOMES BUCHALA JORGE FERNANDO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-23', 314800.00, 'A'), - (2011, 3, 'MARTINS SIMAIKA CATIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-06-01', 155020.00, 'A'), - (2012, 3, 'MONICA CASECA BUENO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-05-16', 830710.00, 'A'), - (2013, 3, 'ALBERTAL MARCELO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118000, '2010-09-10', 688480.00, 'A'), - (2015, 3, 'GOMES CANTARELLI JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118761, '2011-01-11', 685940.00, 'A'), - (2016, 3, 'CADETTI GARBELLINI ENILICE CRISTINA ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-11', 578870.00, 'A'), - (2017, 3, 'SPIELKAMP KLAUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 150699, '2011-03-28', 836540.00, 'A'), - (2019, 3, 'GARES HENRI PHILIPPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 135190, '2011-04-05', 720730.00, 'A'), - ('CELL4308', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (202, 1, 'LUCIO CHAUSTRE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-19', 179240.00, 'A'), - (2023, 3, 'GRECO DE RESENDELUIZ ALFREDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 119814, '2011-04-25', 647940.00, 'A'), - (2024, 3, 'CORTINA EVANDRO JOAO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118922, '2011-05-12', 153970.00, 'A'), - (2026, 3, 'BASQUES MOURA GERALDO CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 119814, '2011-09-07', 668250.00, 'A'), - (2027, 3, 'DA SILVA VALDECIR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 863150.00, 'A'), - (2028, 3, 'CHI MOW YUNG IVAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-21', 311000.00, 'A'), - (2029, 3, 'YUNG MYRA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-21', 965570.00, 'A'), - (2030, 3, 'MARTINS RAMALHO PATRICIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-03-23', 894830.00, 'A'), - (2031, 3, 'DE LEMOS RIBEIRO GILBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118951, '2011-07-29', 577430.00, 'A'), - (2032, 3, 'AIROLDI CLAUDIO', 191821112, 'CRA 25 CALLE 100', '973@terra.com.co', '2011-02-03', 127591, '2011-09-28', 202650.00, 'A'), - (2033, 3, 'ARRUDA MENDES HEILMANN IONE TEREZA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 120773, '2011-09-07', 280990.00, 'A'), - (2034, 3, 'TAVARES DE CARVALHO EDUARDO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118942, '2011-08-03', 796980.00, 'A'), - (2036, 3, 'FERNANDES ALARCON RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-08-28', 318730.00, 'A'), - (2037, 3, 'SUCHODOLKI SERGIO GUSMAO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 190393, '2011-07-13', 167870.00, 'A'), - (2039, 3, 'ESTEVES MARCAL MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-02-24', 912100.00, 'A'), - (2040, 3, 'CORSI LUIZ ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-03-25', 911080.00, 'A'), - (2041, 3, 'LOPEZ MONICA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118795, '2011-05-03', 819090.00, 'A'), - (2042, 3, 'QUINTANILHA LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-16', 362230.00, 'A'), - (2043, 3, 'DE CARLI BRUNO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-05-03', 353890.00, 'A'), - (2045, 3, 'MARINO FRANCA MARILIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-07-04', 352060.00, 'A'), - (2048, 3, 'VOIGT ALPHONSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118439, '2010-11-22', 384150.00, 'A'), - (2049, 3, 'ALENCAR ARIMA TATIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-05-23', 408590.00, 'A'), - (2050, 3, 'LINIS DE ALMEIDA NEILSON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 125666, '2011-08-03', 890480.00, 'A'), - (2051, 3, 'PINHEIRO DE CASTRO BENETI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-08-09', 226640.00, 'A'), - (2052, 3, 'ALVES DO LAGO HELMANN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118942, '2011-08-01', 461770.00, 'A'), - (2053, 3, 'OLIVO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-22', 628900.00, 'A'), - (2054, 3, 'WILLIAM DOMINGUES SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118085, '2011-08-23', 759220.00, 'A'), - (2055, 3, 'DE SOUZA MENEZES KLEBER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-04-25', 909400.00, 'A'), - (2056, 3, 'CABRAL NEIDE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-16', 269340.00, 'A'), - (2057, 3, 'RODRIGUES RENATO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-06-15', 618500.00, 'A'), - (2058, 3, 'SPADALE PEDRO JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-08-03', 284490.00, 'A'), - (2059, 3, 'MARTINS DE ALMEIDA GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-09-28', 566920.00, 'A'), - (206, 1, 'TORRES HEBER MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-01-29', 643210.00, 'A'), - (2060, 3, 'IKUNO CELINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-06-08', 981170.00, 'A'), - (2061, 3, 'DAL BELLO FABIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129499, '2011-08-20', 205050.00, 'A'), - (2062, 3, 'BENATES ADRIANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-23', 81770.00, 'A'), - (2063, 3, 'CARDOSO ALEXANDRE ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 793690.00, 'A'), - (2064, 3, 'ZANIOLO DE SOUZA CARLOS HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-09-19', 723130.00, 'A'), - (2065, 3, 'DA SILVA LUIZ SIDNEI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-03-30', 234590.00, 'A'), - (2066, 3, 'RUFATO DE SOUZA LUIZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-08-29', 3560.00, 'A'), - (2067, 3, 'DE MEDEIROS LUCIANA', 191821112, 'CRA 25 CALLE 100', '994@yahoo.com.mx', '2011-02-03', 118777, '2011-09-10', 314020.00, 'A'), - (2068, 3, 'WOLFF PIAZERA DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118255, '2011-06-15', 559430.00, 'A'), - (2069, 3, 'DA SILVA FORTUNA MARINA CLAUDIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-09-23', 855100.00, 'A'), - (2070, 3, 'PEREIRA BORGES LUCILA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-26', 597210.00, 'A'), - (2072, 3, 'PORROZZI DE ALMEIDA RENATO', 191821112, 'CRA 25 CALLE 100', '812@hotmail.es', '2011-02-03', 127591, '2011-06-13', 312120.00, 'A'), - (2073, 3, 'KALICHSZTEINN RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-03-23', 298330.00, 'A'), - (2074, 3, 'OCCHIALINI GUIMARAES ANA PAULA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2011-08-03', 555310.00, 'A'), - (2075, 3, 'MAZZUCO FONTES LUIZ ROBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-05-23', 881570.00, 'A'), - (2078, 3, 'TRAN DINH VAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 98560.00, 'A'), - (2079, 3, 'NGUYEN THI LE YEN', 191821112, 'CRA 25 CALLE 100', '249@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 298200.00, 'A'), - (208, 1, 'GOMEZ GONZALEZ JORGE MARIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-12', 889010.00, 'A'), - (2080, 3, 'MILA DE LA ROCA JOHANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-01-26', 195350.00, 'A'), - (2081, 3, 'RODRIGUEZ DE FLORES LOURDES MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-16', 82120.00, 'A'), - (2082, 3, 'FLORES PEREZ FRANCISCO GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-23', 824550.00, 'A'), - (2083, 3, 'FRAGACHAN BETANCOUT FRANCISCO JO SE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-07-04', 876400.00, 'A'), - (2084, 3, 'GAFARO MOLINA CARLOS JULIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-22', 908370.00, 'A'), - (2085, 3, 'CACERES REYES JORGEANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-08-11', 912630.00, 'A'), - (2086, 3, 'ALVAREZ RODRIGUEZ VICTOR ROGELIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2011-05-23', 838040.00, 'A'), - (2087, 3, 'GARCES ALVARADO JHAGEIMA JOSEFINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-04-29', 452320.00, 'A'), - ('CELL4324', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (2089, 3, 'FAVREAU CHOLLET JEAN PIERRE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132554, '2011-05-27', 380470.00, 'A'), - (209, 1, 'CRUZ RODRIGEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '316@hotmail.es', '2011-02-03', 127591, '2011-06-28', 953870.00, 'A'), - (2090, 3, 'GARAY LLUCH URBI ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-03-13', 659870.00, 'A'), - (2091, 3, 'LETICIA LETICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-07', 157950.00, 'A'), - (2092, 3, 'VELASQUEZ RODULFO RAMON ARISTIDES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-23', 810140.00, 'A'), - (2093, 3, 'PEREZ EDGAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-06', 576850.00, 'A'), - (2094, 3, 'PEREZ MARIELA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-07', 453840.00, 'A'), - (2095, 3, 'PETRUZZI MANGIARANO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132958, '2011-03-27', 538650.00, 'A'), - (2096, 3, 'LINARES GORI RICARDO RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-12', 331730.00, 'A'), - (2097, 3, 'LAIRET OLIVEROS CAROLINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-25', 42680.00, 'A'), - (2099, 3, 'JIMENEZ GARCIA FERNANDO JOSE', 191821112, 'CRA 25 CALLE 100', '78@hotmail.es', '2011-02-03', 132958, '2011-07-21', 963110.00, 'A'), - (21, 1, 'RUBIO ESCOBAR RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-05-21', 639240.00, 'A'), - (2100, 3, 'ZABALA MILAGROS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-20', 160860.00, 'A'), - (2101, 3, 'VASQUEZ CRUZ NICOLEDANIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-07-31', 914990.00, 'A'), - (2102, 3, 'REYES FIGUERA RAMON ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126674, '2011-04-03', 92340.00, 'A'), - (2104, 3, 'RAMIREZ JIMENEZ MARYLIN CAROLINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2011-06-14', 306760.00, 'A'), - (2105, 3, 'TELLES GUILLEN INNA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-09-07', 383520.00, 'A'), - (2106, 3, 'ALVAREZ CARMEN MARINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-07-20', 997340.00, 'A'), - (2107, 3, 'MARTINEZ YRIGOYEN NABUCODONOSOR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-07-21', 836110.00, 'A'), - (2108, 5, 'FERNANDEZ RUIZ IGNACIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-01', 188530.00, 'A'), - (211, 1, 'RIVEROS GARCIA JORGE IVAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-01', 650050.00, 'A'), - (2110, 3, 'CACERES REYES JORGE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-08-08', 606030.00, 'A'), - (2111, 3, 'GELFI MARCOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 199862, '2011-05-17', 727190.00, 'A'), - (2112, 3, 'CERDA CASTILLO CARMEN GLORIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', 817870.00, 'A'), - (2113, 3, 'RANGEL FERNANDEZ LEONARDO JOSE', 191821112, 'CRA 25 CALLE 100', '856@hotmail.com', '2011-02-03', 133211, '2011-05-16', 907750.00, 'A'), - (2114, 3, 'ROTHSCHILD VARGAS MICHAEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-02-05', 85170.00, 'A'), - (2115, 3, 'RUIZ GRATEROL INGRID JOHANNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-05-16', 702600.00, 'A'), - (2116, 2, 'DEARMAS ALBERTO FERNANDO ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-07-19', 257500.00, 'A'), - (2117, 3, 'BOSCAN ARRIETA ERICK HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-07-12', 179680.00, 'A'), - (2118, 3, 'GUILLEN DE TELLES NENCY JOSEFINA', 191821112, 'CRA 25 CALLE 100', '56@facebook.com', '2011-02-03', 132958, '2011-09-07', 125900.00, 'A'), - (212, 1, 'BUSTAMANTE BUSTAMANTE CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-26', 943260.00, 'A'), - (2120, 2, 'MARK ANTHONY STUART', 191821112, 'CRA 25 CALLE 100', '661@terra.com.co', '2011-02-03', 127591, '2011-06-26', 74600.00, 'A'), - (2122, 3, 'SCOCOZZA GIOVANNA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 190526, '2011-09-23', 284220.00, 'A'), - (2125, 3, 'CHAVES MOLINA JULIO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132165, '2011-09-22', 295360.00, 'A'), - (2127, 3, 'BERNARDES DE SOUZA TONIATI VIRGINIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-30', 565090.00, 'A'), - (2129, 2, 'BRIAN DAVIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 78460.00, 'A'), - (213, 1, 'PAREJO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-11', 766120.00, 'A'), - (2131, 3, 'DE OLIVEIRA LOPES REGINALDO LAZARO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-05', 404910.00, 'A'), - (2132, 3, 'DE MELO MING AZEVEDO PAULO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-10-05', 440370.00, 'A'), - (2137, 3, 'SILVA JORGE ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-05', 230570.00, 'A'), - (214, 1, 'CADENA RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-08', 840.00, 'A'), - (2142, 3, 'VIEIRA VEIGA PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-30', 85330.00, 'A'), - (2144, 3, 'ESCRIBANO LEONARDA DEL VALLE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-03-24', 941440.00, 'A'), - (2145, 3, 'RODRIGUEZ MENENDEZ BERNARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 148511, '2011-08-02', 588740.00, 'A'), - (2146, 3, 'GONZALEZ COURET DANIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 148511, '2011-08-09', 119380.00, 'A'), - (2147, 3, 'GARCIA SOTO WILLIAM', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 135360, '2011-05-18', 830660.00, 'A'), - (2148, 3, 'MENESES ORELLANA RICARDO TOMAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-06-13', 795200.00, 'A'), - (2149, 3, 'GUEVARA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-27', 483990.00, 'A'), - (215, 1, 'BELTRAN PINZON JUAN CARLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-08', 705860.00, 'A'), - (2151, 2, 'LLANES GARRIDO JAVIER ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-30', 719750.00, 'A'), - (2152, 3, 'CHAVARRIA CHAVES RAFAEL ADRIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132165, '2011-09-20', 495720.00, 'A'), - (2153, 2, 'MILBERT ANDREASPETER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-10', 319370.00, 'A'), - (2154, 2, 'GOMEZ SILVA LOZANO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127300, '2011-05-30', 109670.00, 'A'), - (2156, 3, 'WINTON ROBERT DOUGLAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 115551, '2011-08-08', 622290.00, 'A'), - (2157, 2, 'ROMERO PINA MANUEL GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-05', 340650.00, 'A'), - (2158, 3, 'KARWALSKI MATTHEW REECE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117229, '2011-08-29', 836380.00, 'A'), - (2159, 2, 'KIM JUNG SIK ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-08', 159950.00, 'A'), - (216, 1, 'MARTINEZ VALBUENA JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 526750.00, 'A'), - (2160, 3, 'AGAR ROBERT ALEXANDER', 191821112, 'CRA 25 CALLE 100', '81@hotmail.es', '2011-02-03', 116862, '2011-06-11', 290620.00, 'A'), - (2161, 3, 'IGLESIAS EDGAR ALEXIS', 191821112, 'CRA 25 CALLE 100', '645@facebook.com', '2011-02-03', 131272, '2011-04-04', 973240.00, 'A'), - (2163, 2, 'NOAIN MORENO CECILIA KARIM ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-22', 51950.00, 'A'), - (2164, 2, 'FIGUEROA HEBEL ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-26', 276760.00, 'A'), - (2166, 5, 'FRANDBERG DAN RICHARD VERNER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 134022, '2011-04-06', 309480.00, 'A'), - (2168, 2, 'CONTRERAS LILLO EDUARDO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-27', 389320.00, 'A'), - (2169, 2, 'BLANCO VALLE RICARDO ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-07-13', 355950.00, 'A'), - (2171, 2, 'BELTRAN ZAVALA JIMI ALFONSO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126674, '2011-08-22', 991000.00, 'A'), - (2172, 2, 'RAMIRO OREGUI JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-04-27', 119700.00, 'A'), - (2175, 2, 'FENG PUYO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 302172, '2011-10-07', 965660.00, 'A'), - (2176, 3, 'CLERICI GUIDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 116366, '2011-08-30', 522970.00, 'A'), - (2177, 1, 'SEIJAS GUNTER LUIS MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-02', 717890.00, 'A'), - (2178, 2, 'SHOSHANI MOSHE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-13', 20520.00, 'A'), - (218, 3, 'HUCHICHALEO ARSENDIGA FRANCISCA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-05', 690.00, 'A'), - (2181, 2, 'DOMINGO BARTOLOME LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '173@terra.com.co', '2011-02-03', 127591, '2011-04-18', 569030.00, 'A'), - (2182, 3, 'GONZALEZ RIJO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-10-02', 795610.00, 'A'), - (2183, 2, 'ANDROVICH MORENO LIZETH LILIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127300, '2011-10-10', 270970.00, 'A'), - (2184, 2, 'ARREAZA LUGO JESUS ALFREDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', 968030.00, 'A'), - (2185, 2, 'NAVEDA CANELON KATHERINE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132775, '2011-09-14', 27250.00, 'A'), - (2189, 2, 'LUGO BEHRENS DENISE SOFIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-08', 253980.00, 'A'), - (2190, 2, 'ERICA ROSE MOLDENHAUVER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-25', 175480.00, 'A'), - (2192, 2, 'SOLORZANO GARCIA ANDREINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 50790.00, 'A'), - (2193, 3, 'DE LA COSTE MARIA CAROLINA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-26', 907640.00, 'A'), - (2194, 2, 'MARTINEZ DIAZ JUAN JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-08', 385810.00, 'A'), - (2195, 2, 'GALARRAGA ECHEVERRIA DAYEN ALI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-13', 206150.00, 'A'), - (2196, 2, 'GUTIERREZ RAMIREZ HECTOR JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133211, '2011-06-07', 873330.00, 'A'), - (2197, 2, 'LOPEZ GONZALEZ SILVIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127662, '2011-09-01', 748170.00, 'A'), - (2198, 2, 'SEGARES LUTZ JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-07', 120880.00, 'A'), - (2199, 2, 'NADER MARTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127538, '2011-08-12', 359880.00, 'A'), - (22, 1, 'CARDOZO AMAYA JORGE HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-25', 908720.00, 'A'), - (2200, 3, 'NATERA BERMUDEZ OSWALDO JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-18', 436740.00, 'A'), - (2201, 2, 'COSTA RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 150699, '2011-09-01', 104090.00, 'A'), - (2202, 5, 'GRUNDY VALENZUELA ALAN PATRICK', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-08', 210230.00, 'A'), - (2203, 2, 'MONTENEGRO DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-26', 738890.00, 'A'), - (2204, 2, 'TAMAI BUNGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-24', 63730.00, 'A'), - (2205, 5, 'VINHAS FORTUNA EDSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-09-23', 102010.00, 'A'), - (2206, 2, 'RUIZ ERBS MARIO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-07-19', 318860.00, 'A'), - (2207, 2, 'VENTURA TINEO MARCEL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', 288240.00, 'A'), - (2210, 2, 'RAMIREZ GUZMAN RICARDO JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-28', 338740.00, 'A'), - (2211, 2, 'STERNBERG GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2011-09-04', 18070.00, 'A'), - (2212, 2, 'MARTELLO ALEJOS ROGER ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127443, '2011-06-20', 74120.00, 'A'), - (2213, 2, 'CASTANEDA RAFAEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 316410.00, 'A'), - (2214, 2, 'LIMON MARTINEZ WILBERT DE JESUS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128904, '2011-09-19', 359690.00, 'A'), - (2215, 2, 'PEREZ HERNANDEZ MONICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133211, '2011-05-23', 849240.00, 'A'), - (2216, 2, 'AWAD LOBATO RICARDO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '853@hotmail.com', '2011-02-03', 127591, '2011-04-12', 167100.00, 'A'), - (2217, 2, 'CEPEDA VANEGAS ENDER ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-08-22', 287770.00, 'A'), - (2218, 2, 'PEREZ CHIQUIN HECTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132572, '2011-04-13', 937580.00, 'A'), - (2220, 5, 'FRANCO DELGADILLO RONALD FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132775, '2011-09-16', 310190.00, 'A'), - (2222, 2, 'ALCAIDE ALONSO JUAN MIGUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-02', 455360.00, 'A'), - (2223, 3, 'BROWNING BENJAMIN MARK', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-09', 45230.00, 'A'), - (2225, 3, 'HARWOO BENJAMIN JOEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 164620.00, 'A'), - (2226, 3, 'HOEY TIMOTHY ROSS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-09', 242910.00, 'A'), - (2227, 3, 'FERGUSON GARRY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-28', 720700.00, 'A'), - (2228, 3, 'NORMAN NEVILLE ROBERT', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 288493, '2011-06-29', 874750.00, 'A'), - (2229, 3, 'KUK HYUN CHAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-03-22', 211660.00, 'A'), - (223, 1, 'PINZON PLAZA MARCOS VINICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 856300.00, 'A'), - (2230, 3, 'SLIPAK NATALIA ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-07-27', 434070.00, 'A'), - (2231, 3, 'BONELLI MASSIMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 170601, '2011-07-11', 535340.00, 'A'), - (2233, 3, 'VUYLSTEKE ALEXANDER ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 284647, '2011-09-11', 266530.00, 'A'), - (2234, 3, 'DRESSE ALAIN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 284272, '2011-04-19', 209100.00, 'A'), - (2235, 3, 'PAIRON JEAN LOUIS MARIE RAIMOND', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 284272, '2011-03-03', 245940.00, 'A'), - (2236, 3, 'DEVIANE ACHIM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 284272, '2010-11-14', 602370.00, 'A'), - (2239, 3, 'DE CANNIERE LOUIS GEORFES HELE MARIE-JOZEF', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 285511, '2011-09-11', 993540.00, 'A'), - (2240, 1, 'ERGO ROBERT', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-28', 278270.00, 'A'), - (2241, 3, 'MYRTES RODRIGUEZ MORGANA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-18', 410740.00, 'A'), - (2242, 3, 'BRECHBUEHL HANSRUDOLF', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 249059, '2011-07-27', 218900.00, 'A'), - (2243, 3, 'IVANA SCHLUMPF', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 245206, '2011-04-08', 862270.00, 'A'), - (2244, 3, 'JESSICA JACCART', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 189512, '2011-08-28', 654640.00, 'A'), - (2246, 3, 'PAUSELLI MARIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 210050, '2011-09-26', 468090.00, 'A'), - (2247, 3, 'VOLONTEIRO RICCARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-04-13', 281230.00, 'A'), - (2248, 3, 'HOFFMANN ALVIR ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 120773, '2011-08-23', 1900.00, 'A'), - (2249, 3, 'MANTOVANI DANIEL FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-08-09', 165820.00, 'A'), - (225, 1, 'DUARTE RUEDA JAVIER ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-29', 293110.00, 'A'), - (2250, 3, 'LIMA DA COSTA BRENO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-03-23', 823370.00, 'A'), - (2251, 3, 'TAMBORIN MACIEL MAGALI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 619420.00, 'A'), - (2252, 3, 'BELLO DE MUORA BIANCA', 191821112, 'CRA 25 CALLE 100', '969@gmail.com', '2011-02-03', 118942, '2011-08-03', 626970.00, 'A'), - (2253, 3, 'VINHAS FORTUNA PIETRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2011-09-23', 276600.00, 'A'), - (2255, 3, 'BLUMENTHAL JAIRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117630, '2011-07-20', 680590.00, 'A'), - (2256, 3, 'DOS REIS FILHO ELPIDIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 120773, '2011-08-07', 896720.00, 'A'), - (2257, 3, 'COIMBRA CARDOSO MUNARI FERNANDA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-09', 441830.00, 'A'), - (2258, 3, 'LAZANHA FLAVIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118942, '2011-06-14', 519000.00, 'A'), - (2259, 3, 'LAZANHA FLAVIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-06-14', 269480.00, 'A'), - (226, 1, 'HUERFANO FLOREZ JOHN FAVER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-29', 148340.00, 'A'), - (2260, 3, 'JOVETTA EDILSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118941, '2011-09-19', 790430.00, 'A'), - (2261, 3, 'DE OLIVEIRA ANDRE RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-07-25', 143680.00, 'A'), - (2263, 3, 'MUNDO TEIXEIRA CARVALHO SILVIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118864, '2011-09-19', 304670.00, 'A'), - (2264, 3, 'FERREIRA CINTRA ADRIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-04-08', 481910.00, 'A'), - (2265, 3, 'AUGUSTO DE OLIVEIRA MARCOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118685, '2011-08-09', 495530.00, 'A'), - (2266, 3, 'CHEN ROBERTO LUIZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-03-15', 31920.00, 'A'), - (2268, 3, 'WROBLESKI DIENSTMANN RAQUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117630, '2011-05-15', 269320.00, 'A'), - (2269, 3, 'MALAGOLA GEDERSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118864, '2011-05-30', 327540.00, 'A'), - (227, 1, 'LOPEZ ESCOBAR CARLOS ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-06', 862360.00, 'A'), - (2271, 3, 'GOMES EVANDRO HENRIQUE', 191821112, 'CRA 25 CALLE 100', '199@hotmail.es', '2011-02-03', 118777, '2011-03-24', 166100.00, 'A'), - (2273, 3, 'LANDEIRA FERNANDEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-21', 207990.00, 'A'), - (2274, 3, 'ROSSI RENATO', 191821112, 'CRA 25 CALLE 100', '791@hotmail.es', '2011-02-03', 118777, '2011-09-19', 16170.00, 'A'), - (2275, 3, 'CALMON RANGEL PATRICIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 456890.00, 'A'), - (2277, 3, 'CIFU NETO ROQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-04-27', 808940.00, 'A'), - (2278, 3, 'GONCALVES PRETO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118942, '2011-07-25', 336930.00, 'A'), - (2279, 3, 'JORGE JUNIOR ROBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-05-09', 257840.00, 'A'), - (2281, 3, 'ELENCIUC DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-04-20', 618510.00, 'A'), - (2283, 3, 'CUNHA MENDEZ RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 119855, '2011-07-18', 431190.00, 'A'), - (2286, 3, 'DIAZ LENICE APARECIDA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-03', 977840.00, 'A'), - (2288, 3, 'DE CARVALHO SIGEL TATIANA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2011-07-04', 123920.00, 'A'), - (229, 1, 'GALARZA GIRALDO SERGIO ALDEMAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-09-17', 746930.00, 'A'), - (2290, 3, 'ACHOA MORANDI BORGUES SIBELE MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118777, '2011-09-12', 553890.00, 'A'), - (2291, 3, 'EPAMINONDAS DE ALMEIDA DELIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-22', 14080.00, 'A'), - (2293, 3, 'REIS CASTRO SHANA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-08-03', 1430.00, 'A'), - (2294, 3, 'BERNARDES JUNIOR ARMANDO', 191821112, 'CRA 25 CALLE 100', '678@gmail.com', '2011-02-03', 127591, '2011-08-30', 780930.00, 'A'), - (2295, 3, 'LEMOS DE SOUZA AGUIAR SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-10-03', 900370.00, 'A'), - (2296, 3, 'CARVALHO ADAMS KARIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2011-08-11', 159040.00, 'A'), - (2297, 3, 'GALLINA SILVANA BRASILEIRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 94110.00, 'A'), - (23, 1, 'COLMENARES PEDREROS EDUARDO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 625870.00, 'A'), - (2300, 3, 'TAVEIRA DE SIQUEIRA TANIA APARECIDA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-24', 443910.00, 'A'), - (2301, 3, 'DA SIVA LIMA ANDRE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-23', 165020.00, 'A'), - (2302, 3, 'GALVAO GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-09-12', 493370.00, 'A'), - (2303, 3, 'DA COSTA CRUZ GABRIELA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-07-27', 971800.00, 'A'), - (2304, 3, 'BERNHARD GOTTFRIED RABER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-04-30', 378870.00, 'A'), - (2306, 3, 'ALDANA URIBE PABLO AXEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-05-08', 758160.00, 'A'), - (2308, 3, 'FLORES ALONSO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-04-26', 995310.00, 'A'), - ('CELL4330', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (2309, 3, 'MADRIGAL MIER Y TERAN LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-02-23', 414650.00, 'A'), - (231, 1, 'ZAPATA CEBALLOS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-08-16', 430320.00, 'A'), - (2310, 3, 'GONZALEZ ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-05-19', 87330.00, 'A'), - (2313, 3, 'MONTES PORTO ANDREA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-09-01', 929180.00, 'A'), - (2314, 3, 'ROCHA SUSUNAGA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2010-10-18', 541540.00, 'A'), - (2315, 3, 'VASQUEZ CALERO FEDERICO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 920160.00, 'A'), - (2317, 3, 'GONZALEZ FERNANDEZ YUSSEN ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-26', 120530.00, 'A'), - (2319, 3, 'ATTIAS WENGROWSKY DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150581, '2011-09-07', 8580.00, 'A'), - (232, 1, 'OSPINA ABUCHAIBE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-14', 748960.00, 'A'), - (2320, 3, 'EFRON TOPOROVSKY INES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 116511, '2011-07-15', 20810.00, 'A'), - (2321, 3, 'LUNA PLA DARIO', 191821112, 'CRA 25 CALLE 100', '95@terra.com.co', '2011-02-03', 145135, '2011-09-07', 78320.00, 'A'), - (2322, 1, 'VAZQUEZ DANIELA', 191821112, 'CRA 25 CALLE 100', '190@gmail.com', '2011-02-03', 145135, '2011-05-19', 329170.00, 'A'), - (2323, 3, 'BALBI BALBI JUAN DE DIOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-23', 410880.00, 'A'), - (2324, 3, 'MARROQUIN FERNANDEZ GELACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-23', 66880.00, 'A'), - (2325, 3, 'VAZQUEZ ZAVALA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-04-11', 101770.00, 'A'), - (2326, 3, 'SOTO MARTINEZ MARIA ELENA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-23', 308200.00, 'A'), - (2328, 3, 'HERNANDEZ MURILLO RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-22', 253830.00, 'A'), - (233, 1, 'HADDAD LINERO YEBRAIL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 130608, '2010-06-17', 453830.00, 'A'), - (2330, 3, 'TERMINEL HERNANDEZ DANIELA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 190393, '2011-08-15', 48940.00, 'A'), - (2331, 3, 'MIJARES FERNANDEZ MAGDALENA GUADALUPE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-31', 558440.00, 'A'), - (2332, 3, 'GONZALEZ LUNA CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 146258, '2011-04-26', 645400.00, 'A'), - (2333, 3, 'DIAZ TORREJON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-03', 551690.00, 'A'), - (2335, 3, 'PADILLA GUTIERREZ JESUS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 456120.00, 'A'), - (2336, 3, 'TORRES CORONA JORGE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', 813900.00, 'A'), - (2337, 3, 'CASTRO RAMSES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150581, '2011-07-04', 701120.00, 'A'), - (2338, 3, 'APARICIO VALLEJO RUSSELL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-03-16', 63890.00, 'A'), - (2339, 3, 'ALBOR FERNANDEZ LUIS ARTURO', 191821112, 'CRA 25 CALLE 100', '574@gmail.com', '2011-02-03', 147467, '2011-05-09', 216110.00, 'A'), - (234, 1, 'DOMINGUEZ GOMEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '942@hotmail.com', '2011-02-03', 127591, '2010-08-22', 22260.00, 'A'), - (2342, 3, 'REY ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '110@facebook.com', '2011-02-03', 127591, '2011-03-04', 313330.00, 'A'), - (2343, 3, 'MENDOZA GONZALES ADRIANA', 191821112, 'CRA 25 CALLE 100', '295@yahoo.com', '2011-02-03', 127591, '2011-03-23', 178720.00, 'A'), - (2344, 3, 'RODRIGUEZ SEGOVIA JESUS ALONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-07-26', 953590.00, 'A'), - (2345, 3, 'GONZALEZ PELAEZ EDUARDO DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 231790.00, 'A'), - (2347, 3, 'VILLEDA GARCIA DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 144939, '2011-05-29', 795600.00, 'A'), - (2348, 3, 'FERRER BURGES EMILIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', 83430.00, 'A'), - (2349, 3, 'NARRO ROBLES LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-03-16', 30330.00, 'A'), - (2350, 3, 'ZALDIVAR UGALDE CARLOS IGNACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-06-19', 901380.00, 'A'), - (2351, 3, 'VARGAS RODRIGUEZ VALENTE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 146258, '2011-04-26', 415910.00, 'A'), - (2354, 3, 'DEL PIERO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-09', 19890.00, 'A'), - (2355, 3, 'VILLAREAL ANA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-23', 211810.00, 'A'), - (2356, 3, 'GARRIDO FERRAN JORGE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 999370.00, 'A'), - (2357, 3, 'PEREZ PRECIADO EDMUNDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-22', 361450.00, 'A'), - (2358, 3, 'AGUIRRE VIGNAU DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150581, '2011-08-21', 809110.00, 'A'), - (2359, 3, 'LOPEZ SESMA TOMAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 146258, '2011-09-14', 961200.00, 'A'), - (236, 1, 'VENTO BETANCOURT LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-19', 682230.00, 'A'), - (2360, 3, 'BERNAL MALDONADO GUILLERMO JAVIER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-19', 378670.00, 'A'), - (2361, 3, 'GUZMAN DELGADO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-22', 9770.00, 'A'), - (2362, 3, 'GUZMAN DELGADO MARTIN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 912850.00, 'A'), - (2363, 3, 'GUSMAND ELGADO JORGE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-22', 534910.00, 'A'), - (2364, 3, 'RENDON BUICK JORGE JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-26', 936010.00, 'A'), - (2365, 3, 'HERNANDEZ HERNANDEZ HERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 75340.00, 'A'), - (2366, 3, 'ALVAREZ PAZ PEDRO RAFAEL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-01-02', 568650.00, 'A'), - (2367, 3, 'MIJARES DE LA BARREDA FERNANDA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-07-31', 617240.00, 'A'), - (2368, 3, 'MARTINEZ LOPEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-08-24', 380250.00, 'A'), - (2369, 3, 'GAYTAN MILLAN YANERI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 49520.00, 'A'), - (237, 1, 'BARGUIL ASSIS DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117460, '2009-09-03', 161770.00, 'A'), - (2370, 3, 'DURAN HEREDIA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-04-15', 106850.00, 'A'), - (2371, 3, 'SEGURA MIJARES CRISTOBAL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-31', 385700.00, 'A'), - (2372, 3, 'TEPOS VALTIERRA ERIK ARTURO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116345, '2011-09-01', 607930.00, 'A'), - (2373, 3, 'RODRIGUEZ AGUILAR EDMUNDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-05-04', 882570.00, 'A'), - (2374, 3, 'MYSLABODSKI MICHAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-03-08', 589060.00, 'A'), - (2375, 3, 'HERNANDEZ MIRELES JATNIEL ELIOENAI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', 297600.00, 'A'), - (2376, 3, 'SNELL FERNANDEZ SYNTYHA ROCIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 720830.00, 'A'), - (2378, 3, 'HERNANDEZ EIVET AARON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 394200.00, 'A'), - (2379, 3, 'LOPEZ GARZA JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-22', 837000.00, 'A'), - (238, 1, 'GARCIA PINO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-10', 762140.00, 'A'), - (2381, 3, 'TOSCANO ESTRADA RUBEN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-22', 500940.00, 'A'), - (2382, 3, 'RAMIREZ HUDSON ROGER SILVESTER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-22', 497550.00, 'A'), - (2383, 3, 'RAMOS JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '362@yahoo.es', '2011-02-03', 127591, '2011-08-22', 984940.00, 'A'), - (2384, 3, 'CORTES CERVANTES ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-04-11', 432020.00, 'A'), - (2385, 3, 'POZOS ESQUIVEL DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-27', 205310.00, 'A'), - (2387, 3, 'ESTRADA AGUIRRE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 36470.00, 'A'), - (2388, 3, 'GARCIA RAMIREZ RAMON', 191821112, 'CRA 25 CALLE 100', '177@yahoo.es', '2011-02-03', 127591, '2011-08-22', 990910.00, 'A'), - (2389, 3, 'PRUD HOMME GARCIA CUBAS XAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-18', 845140.00, 'A'), - (239, 1, 'PINZON ARDILA GUSTAVO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-01', 325400.00, 'A'), - (2390, 3, 'ELIZABETH OCHOA ROJAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-05-21', 252950.00, 'A'), - (2391, 3, 'MEZA ALVAREZ JOSE ALBERTO', 191821112, 'CRA 25 CALLE 100', '646@terra.com.co', '2011-02-03', 144939, '2011-05-09', 729340.00, 'A'), - (2392, 3, 'HERRERA REYES RENATO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2010-02-28', 887860.00, 'A'), - (2393, 3, 'MURILLO GARIBAY GILBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-08-20', 251280.00, 'A'), - (2394, 3, 'GARCIA JIMENEZ CARLOS MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-09', 592830.00, 'A'), - (2395, 3, 'GUAGNELLI MARTINEZ BLANCA MONICA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145184, '2010-10-05', 210320.00, 'A'), - (2397, 3, 'GARCIA CISNEROS RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-07-04', 734530.00, 'A'), - (2398, 3, 'MIRANDA ROMO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 853340.00, 'A'), - (24, 1, 'ARREGOCES GARZON NELSON ORLANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127783, '2011-08-12', 403190.00, 'A'), - (240, 1, 'ARCINIEGAS GOMEZ ALBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-18', 340590.00, 'A'), - (2400, 3, 'HERRERA ABARCA EDUARDO VICENTE ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 755620.00, 'A'), - (2403, 3, 'CASTRO MONCAYO LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-07-29', 617260.00, 'A'), - (2404, 3, 'GUZMAN DELGADO OSBALDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 56250.00, 'A'), - (2405, 3, 'GARCIA LOPEZ DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-22', 429500.00, 'A'), - (2406, 3, 'JIMENEZ GAMEZ RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 245206, '2011-03-23', 978720.00, 'A'), - (2407, 3, 'BECERRA MARTINEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-08-23', 605130.00, 'A'), - (2408, 3, 'GARCIA MARTINEZ BERNARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 89480.00, 'A'), - (2409, 3, 'URRUTIA RAYAS BALTAZAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 632020.00, 'A'), - (241, 1, 'MEDINA AGUILA NESTOR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-09', 726730.00, 'A'), - (2411, 3, 'VERGARA MENDOZAVICTOR HUGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-06-15', 562230.00, 'A'), - (2412, 3, 'MENDOZA MEDINA JORGE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 136170.00, 'A'), - (2413, 3, 'CORONADO CASTILLO HUGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 147529, '2011-05-09', 994160.00, 'A'), - (2414, 3, 'GONZALEZ SOTO DELIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-03-23', 562280.00, 'A'), - (2415, 3, 'HERNANDEZ FLORES STEPHANIE REYNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 828940.00, 'A'), - (2416, 3, 'ABRAJAN GUERRERO MARIA DE LOS ANGELES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-23', 457860.00, 'A'), - (2417, 3, 'HERNANDEZ LOERA ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 802490.00, 'A'), - (2418, 3, 'TARIN LOPEZ JOSE CARMEN', 191821112, 'CRA 25 CALLE 100', '117@gmail.com', '2011-02-03', 127591, '2011-03-23', 638870.00, 'A'), - (242, 1, 'JULIO NARVAEZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-05', 611890.00, 'A'), - (2420, 3, 'BATTA MARQUEZ VICTOR ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-08-23', 17820.00, 'A'), - (2423, 3, 'GONZALEZ REYES JUAN JOSE', 191821112, 'CRA 25 CALLE 100', '55@yahoo.es', '2011-02-03', 127591, '2011-07-26', 758070.00, 'A'), - (2425, 3, 'ALVAREZ RODRIGUEZ HIRAM RAMSES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-23', 847420.00, 'A'), - (2426, 3, 'FEMATT HERNANDEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-03-23', 164130.00, 'A'), - (2427, 3, 'GUTIERRES ORTEGA FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 278410.00, 'A'), - (2428, 3, 'JIMENEZ DIAZ JUAN JORGE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-13', 899650.00, 'A'), - (2429, 3, 'VILLANUEVA PEREZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '656@yahoo.es', '2011-02-03', 150449, '2011-03-23', 663000.00, 'A'), - (243, 1, 'GOMEZ REYES ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126674, '2009-12-20', 879240.00, 'A'), - (2430, 3, 'CERON GOMEZ JOEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-03-21', 616070.00, 'A'), - (2431, 3, 'LOPEZ LINALDI DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-05-09', 91360.00, 'A'), - (2432, 3, 'JOSEPH NATHAN PEDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-02', 608580.00, 'A'), - (2433, 3, 'CARRENO PULIDO RUBEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 147242, '2011-06-19', 768810.00, 'A'), - (2434, 3, 'AREVALO MERCADO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-06-12', 18320.00, 'A'), - (2436, 3, 'RAMIREZ QUEZADA ERIKA BELEM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-03', 870930.00, 'A'), - (2438, 3, 'TATTO PRIETO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-19', 382740.00, 'A'), - (2439, 3, 'LOPEZ AYALA LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-10-08', 916370.00, 'A'), - (244, 1, 'DEVIS EDGAR JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-10-08', 560540.00, 'A'), - (2440, 3, 'HERNANDEZ TOVAR JORGE ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 144991, '2011-10-02', 433650.00, 'A'), - (2441, 3, 'COLLIARD LOPEZ PETER GEORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 419120.00, 'A'), - (2442, 3, 'FLORES CHALA GARY', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 794670.00, 'A'), - (2443, 3, 'FANDINO MUNOZ ZAMIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-19', 715970.00, 'A'), - (2444, 3, 'BARROSO VARGAS DIEGO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-26', 195840.00, 'A'), - (2446, 3, 'CRUZ RAMIREZ JUAN PEDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-07-14', 569050.00, 'A'), - (2447, 3, 'TIJERINA ACOSTA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 351280.00, 'A'), - (2449, 3, 'JASSO BARRERA CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-08-24', 192560.00, 'A'), - (245, 1, 'LENCHIG KALEDA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-02', 165000.00, 'A'), - (2450, 3, 'GARRIDO PATRON VICTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-09-27', 814970.00, 'A'), - (2451, 3, 'VELASQUEZ GUERRERO RUBEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', 497150.00, 'A'), - (2452, 3, 'CHOI SUNGKYU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 209494, '2011-08-16', 40860.00, 'A'), - (2453, 3, 'CONTRERAS LOPEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-08-05', 712830.00, 'A'), - (2454, 3, 'CHAVEZ BATAA OSCAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 150699, '2011-06-14', 441590.00, 'A'), - (2455, 3, 'LEE JONG HYUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131272, '2011-10-10', 69460.00, 'A'), - (2456, 3, 'MEDINA PADILLA CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 146589, '2011-04-20', 22530.00, 'A'), - (2457, 3, 'FLORES CUEVAS DOTNARA LUZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-05-17', 904260.00, 'A'), - (2458, 3, 'LIU YONGCHAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-10-09', 453710.00, 'A'), - (2459, 3, 'CASTRO FERNANDES PORTOCARRERO JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 195892, '2011-06-14', 555790.00, 'A'), - (246, 1, 'YAMHURE FONSECAN ERNESTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-10-03', 143350.00, 'A'), - (2460, 3, 'DUAN WEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-06-22', 417820.00, 'A'), - (2461, 3, 'ZHU XUTAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-18', 421740.00, 'A'), - (2462, 3, 'MEI SHUANNIU', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-09', 855240.00, 'A'), - (2464, 3, 'VEGA VACA LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-06-08', 489110.00, 'A'), - (2465, 3, 'TANG YUMING', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 147578, '2011-03-26', 412660.00, 'A'), - (2466, 3, 'VILLEDA GARCIA DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 144939, '2011-06-07', 595990.00, 'A'), - (2467, 3, 'GARCIA GARZA BLANCA ARMIDA', 191821112, 'CRA 25 CALLE 100', '927@hotmail.com', '2011-02-03', 145135, '2011-05-20', 741940.00, 'A'), - (2468, 3, 'HERNANDEZ MARTINEZ EMILIO JOAQUIN', 191821112, 'CRA 25 CALLE 100', '356@facebook.com', '2011-02-03', 145135, '2011-06-16', 921740.00, 'A'), - (2469, 3, 'WANG FAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 185363, '2011-08-20', 382860.00, 'A'), - (247, 1, 'ROJAS RODRIGUEZ ALVARO HERNAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-09', 221760.00, 'A'), - (2470, 3, 'WANG FEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-10-09', 149100.00, 'A'), - (2471, 3, 'BERNAL MALDONADO GUILLERMO JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118777, '2011-07-26', 596900.00, 'A'), - (2472, 3, 'GUTIERREZ GOMEZ ARTURO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145184, '2011-07-24', 537210.00, 'A'), - (2474, 3, 'LAN TYANYE ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-23', 865050.00, 'A'), - (2475, 3, 'LAN SHUZHEN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-23', 639240.00, 'A'), - (2476, 3, 'RODRIGUEZ GONZALEZ CARLOS ARTURO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 144616, '2011-08-09', 601050.00, 'A'), - (2477, 3, 'HAIBO NI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-20', 87540.00, 'A'), - (2479, 3, 'RUIZ RODRIGUEZ GRACIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-05-20', 910130.00, 'A'), - (248, 1, 'GONZALEZ RODRIGUEZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-03', 678750.00, 'A'), - (2480, 3, 'OROZCO MACIAS NORMA LETICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-20', 647010.00, 'A'), - (2481, 3, 'MEZA ALVAREZ JOSE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 144939, '2011-06-07', 504670.00, 'A'), - (2482, 3, 'RODRIGUEZ FIGUEROA RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 146308, '2011-04-27', 582290.00, 'A'), - (2483, 3, 'CARREON GUERRA ANA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 110709, '2011-05-27', 397440.00, 'A'), - (2484, 3, 'BOTELHO BARRETO CARLOS JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 195892, '2011-08-02', 240350.00, 'A'), - (2485, 3, 'CORONADO CASTILLO HUGO', 191821112, 'CRA 25 CALLE 100', '209@yahoo.com.mx', '2011-02-03', 147529, '2011-06-07', 9420.00, 'A'), - (2486, 3, 'DE FUENTES GARZA MARCELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-18', 326030.00, 'A'), - (2487, 3, 'GONZALEZ DUHART GUTIERREZ HORACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-17', 601920.00, 'A'), - (2488, 3, 'LOPEZ LINALDI DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-06-07', 31500.00, 'A'), - (2489, 3, 'CASTRO MONCAYO JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-06-15', 351720.00, 'A'), - (249, 1, 'CASTRO RIBEROS JULIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-23', 728470.00, 'A'), - (2490, 3, 'SERRALDE LOPEZ MARIA GUADALUPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-25', 664120.00, 'A'), - (2491, 3, 'GARRIDO PATRON VICTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-09-29', 265450.00, 'A'), - (2492, 3, 'BRAUN JUAN NICOLAS ANTONIE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-28', 334880.00, 'A'), - (2493, 3, 'BANKA RAHUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 141138, '2011-05-02', 878070.00, 'A'), - (2494, 1, 'GARCIA MARTINEZ MARIA VIRGINIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-17', 385690.00, 'A'), - (2495, 1, 'MARIA VIRGINIA', 191821112, 'CRA 25 CALLE 100', '298@yahoo.com.mx', '2011-02-03', 127591, '2011-04-16', 294220.00, 'A'), - (2496, 3, 'GOMEZ ZENDEJAS MARIA ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145184, '2011-06-06', 314060.00, 'A'), - (2498, 3, 'MENDEZ MARTINEZ RAUL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-10', 496040.00, 'A'), - (2623, 3, 'ZAFIROPOULO ANA I', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 98170.00, 'A'), - (2499, 3, 'CARREON GUERRA ANA CECILIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-29', 417240.00, 'A'), - (2501, 3, 'OLIVAR ARIAS ISMAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-06-06', 738850.00, 'A'), - (2502, 3, 'ABOUMRAD NASTA EMILE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-07-26', 899890.00, 'A'), - (2503, 3, 'RODRIGUEZ JIMENEZ ROBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-05-03', 282900.00, 'A'), - (2504, 3, 'ESTADOS UNIDOS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-27', 714840.00, 'A'), - (2505, 3, 'SOTO MUNOZ MARCO GREGORIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-26', 725480.00, 'A'), - (2506, 3, 'GARCIA MONTER ANA OTILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-10-05', 482880.00, 'A'), - (2507, 3, 'THIRUKONDA VIGNESH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126180, '2011-05-02', 237950.00, 'A'), - (2508, 3, 'RAMIREZ REATIAGA LYDA YOANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 150699, '2011-06-26', 741120.00, 'A'), - (2509, 3, 'SEPULVEDA RODRIGUEZ JESUS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', 991730.00, 'A'), - (251, 1, 'MEJIA PIZANO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-10', 845000.00, 'A'), - (2510, 3, 'FRANCISCO MARIA DIAS COSTA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 179111, '2011-07-12', 735330.00, 'A'), - (2511, 3, 'TEIXEIRA REGO DE OLIVEIRA TIAGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 179111, '2011-06-14', 701430.00, 'A'), - (2512, 3, 'PHILLIP JAMES', 191821112, 'CRA 25 CALLE 100', '766@terra.com.co', '2011-02-03', 127591, '2011-09-28', 301150.00, 'A'), - (2513, 3, 'ERXLEBEN ROBERT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 216125, '2011-04-13', 401460.00, 'A'), - (2514, 3, 'HUGHES CONNORRICHARD', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-06-22', 103880.00, 'A'), - (2515, 3, 'LEBLANC MICHAEL PAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 216125, '2011-08-09', 314990.00, 'A'), - (2517, 3, 'DEVINE CHRISTOPHER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-06-22', 371560.00, 'A'), - (2518, 3, 'WONG BRIAN TEK FUNG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126885, '2011-09-22', 67910.00, 'A'), - (2519, 3, 'BIDWALA IRFAN A', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 154811, '2011-03-28', 224840.00, 'A'), - (252, 1, 'JIMENEZ LARRARTE JUAN GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-01', 406770.00, 'A'), - (2520, 3, 'LEE HO YIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 147578, '2011-08-29', 920470.00, 'A'), - (2521, 3, 'DE MOURA MARTINS NUNO ALEXANDRE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196094, '2011-10-09', 927850.00, 'A'), - (2522, 3, 'DA COSTA GOMES CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 179111, '2011-08-10', 877850.00, 'A'), - (2523, 3, 'HOOGWAERTS PAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-02-11', 605690.00, 'A'), - (2524, 3, 'LOPES MARQUES LUIS JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2011-09-20', 394910.00, 'A'), - (2525, 3, 'CORREIA CAVACO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 178728, '2011-10-09', 157470.00, 'A'), - (2526, 3, 'HALL JOHN WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-09', 602620.00, 'A'), - (2527, 3, 'KNIGHT MARTIN GYLES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 113550, '2011-08-29', 540670.00, 'A'), - (2528, 3, 'HINDS THMAS TRISTAN PELLEW', 191821112, 'CRA 25 CALLE 100', '337@yahoo.es', '2011-02-03', 116862, '2011-08-23', 895500.00, 'A'), - (2529, 3, 'CARTON ALAN JOHN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-07-31', 855510.00, 'A'), - (253, 1, 'AZCUENAGA RAMIREZ NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 298472, '2011-05-10', 498840.00, 'A'), - (2530, 3, 'GHIM CHEOLL HO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-27', 591060.00, 'A'), - (2531, 3, 'PHILLIPS NADIA SULLIVAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-28', 388750.00, 'A'), - (2532, 3, 'CHANG KUKHYUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-22', 170560.00, 'A'), - (2533, 3, 'KANG SEOUNGHYUN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 173192, '2011-08-24', 686540.00, 'A'), - (2534, 3, 'CHUNG BYANG HOON', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 125744, '2011-03-14', 921030.00, 'A'), - (2535, 3, 'SHIN MIN CHUL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 173192, '2011-08-24', 545510.00, 'A'), - (2536, 3, 'CHOI JIN SUNG', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-15', 964490.00, 'A'), - (2537, 3, 'CHOI SUNGMIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-27', 185910.00, 'A'), - (2538, 3, 'PARK JAESER ', 191821112, 'CRA 25 CALLE 100', '525@terra.com.co', '2011-02-03', 127591, '2011-09-03', 36090.00, 'A'), - (2539, 3, 'KIM DAE HOON ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 173192, '2011-08-24', 622700.00, 'A'), - (254, 1, 'AVENDANO PABON ROLANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-05-12', 273900.00, 'A'), - (2540, 3, 'LYNN MARIA CRISTINA NORMA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116862, '2011-09-21', 5220.00, 'A'), - (2541, 3, 'KIM CHINIL JULIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 147578, '2011-08-27', 158030.00, 'A'), - (2543, 3, 'HALL JOHN WILLIAM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 398290.00, 'A'), - (2544, 3, 'YOSUKE PERDOMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 165600, '2011-07-26', 668040.00, 'A'), - (2546, 3, 'AKAGI KAZAHIKO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-26', 722510.00, 'A'), - (2547, 3, 'NELSON JONATHAN GARY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-09', 176570.00, 'A'), - (2548, 3, 'DUONG HOP BA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 116862, '2011-09-14', 715310.00, 'A'), - (2549, 3, 'CHAO-VILLEGAS NIKOLE TUK HING', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 180063, '2011-04-05', 46830.00, 'A'), - (255, 1, 'CORREA ALVARO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-27', 872990.00, 'A'), - (2551, 3, 'APPELS LAURENT BERNHARD', 191821112, 'CRA 25 CALLE 100', '891@hotmail.es', '2011-02-03', 135190, '2011-08-16', 300620.00, 'A'), - (2552, 3, 'PLAISIER ERIK JAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289294, '2011-05-23', 238440.00, 'A'), - (2553, 3, 'BLOK HENDRIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 288552, '2011-03-27', 290350.00, 'A'), - (2554, 3, 'NETTE ANNA STERRE', 191821112, 'CRA 25 CALLE 100', '621@yahoo.com.mx', '2011-02-03', 185363, '2011-07-30', 736400.00, 'A'), - (2555, 3, 'FRIELING HANS ERIC', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 107469, '2011-07-31', 810990.00, 'A'), - (2556, 3, 'RUTTE CORNELIA JANTINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 143579, '2011-03-30', 845710.00, 'A'), - (2557, 3, 'WALRAVEN PIETER PAUL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 289294, '2011-07-29', 795620.00, 'A'), - (2558, 3, 'TREBES LAURENS JOHANNES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-11-22', 440940.00, 'A'), - (2559, 3, 'KROESE ROLANDWILLEBRORDUSMARIA', 191821112, 'CRA 25 CALLE 100', '188@facebook.com', '2011-02-03', 110643, '2011-06-09', 817860.00, 'A'), - (256, 1, 'FARIAS GARCIA REINI', 191821112, 'CRA 25 CALLE 100', '615@hotmail.com', '2011-02-03', 127591, '2011-03-05', 543220.00, 'A'), - (2560, 3, 'VAN DER HEIDE HENDRIK', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 291042, '2011-09-04', 766460.00, 'A'), - (2561, 3, 'VAN DEN BERG DONAR ALEXANDER GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 190393, '2011-07-13', 378720.00, 'A'), - (2562, 3, 'GODEFRIDUS JOHANNES ROPS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127622, '2011-10-02', 594240.00, 'A'), - (2564, 3, 'WAT YOK YIENG', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 287095, '2011-03-22', 392370.00, 'A'), - (2565, 3, 'BUIS JACOBUS NICOLAAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-20', 456810.00, 'A'), - (2567, 3, 'CHIPPER FRANCIUSCUS NICOLAAS ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 291599, '2011-07-28', 164300.00, 'A'), - (2568, 3, 'ONNO ROUKENS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-11-28', 500670.00, 'A'), - (2569, 3, 'PETRUS MARCELLINUS STEPHANUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-06-25', 10430.00, 'A'), - (2571, 3, 'VAN VOLLENHOVEN IVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-08', 719370.00, 'A'), - (2572, 3, 'LAMBOOIJ BART', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-09-20', 946480.00, 'A'), - (2573, 3, 'LANSER MARIANA PAULINE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 289294, '2011-04-09', 574270.00, 'A'), - (2575, 3, 'KLERKEN JOHANNES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 286101, '2011-05-24', 436840.00, 'A'), - (2576, 3, 'KRAS JACOBUS NICOLAAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289294, '2011-09-26', 88410.00, 'A'), - (2577, 3, 'FUCHS MICHAEL JOSEPH', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 185363, '2011-07-30', 131530.00, 'A'), - (2578, 3, 'BIJVANK ERIK JAN WILLEM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-11', 392410.00, 'A'), - (2579, 3, 'SCHMIDT FRANC ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 106742, '2011-09-11', 567470.00, 'A'), - (258, 1, 'SOTO GONZALEZ FRANCISCO LAZARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 116511, '2011-05-07', 856050.00, 'A'), - (2580, 3, 'VAN DER KOOIJ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 291277, '2011-07-10', 660130.00, 'A'), - (2581, 2, 'KRIS ANDRE GEORGES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-07-26', 598240.00, 'A'), - (2582, 3, 'HARDING LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 263813, '2011-05-08', 10820.00, 'A'), - (2583, 3, 'ROLLI GUY JEAN ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-05-31', 259370.00, 'A'), - (2584, 3, 'NIETO PARRA SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 263813, '2011-07-04', 264400.00, 'A'), - (2585, 3, 'LASTRA CHAVEZ PABLO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126674, '2011-05-25', 543890.00, 'A'), - (2586, 1, 'ZAIDA MAYERLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-05', 926250.00, 'A'), - (2587, 1, 'OSWALDO SOLORZANO CONTRERAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-28', 999590.00, 'A'), - (2588, 3, 'ZHOU XUAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-18', 219200.00, 'A'), - (2589, 3, 'HUANG ZHENGQUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-18', 97230.00, 'A'), - (259, 1, 'GALARZA NARANJO JAIME RENE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 988830.00, 'A'), - (2590, 3, 'HUANG ZHENQUIN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-18', 828560.00, 'A'), - (2591, 3, 'WEIDEN MULLER AMURER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-29', 851110.00, 'A'), - (2593, 3, 'OESTERHAUS CORNELIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 256231, '2011-03-29', 295960.00, 'A'), - (2594, 3, 'RINTALAHTI JUHA HENRIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 170220.00, 'A'), - (2597, 3, 'VERWIJNEN JONAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 289697, '2011-02-03', 638040.00, 'A'), - (2598, 3, 'SHAW ROBERT', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 157414, '2011-07-10', 273550.00, 'A'), - (2599, 3, 'MAKINEN TIMO JUHANI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-09-13', 453600.00, 'A'), - (260, 1, 'RIVERA CANON JOSE EDWARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127538, '2011-09-19', 375990.00, 'A'), - (2600, 3, 'HONKANIEMI ARTO OLAVI', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 301387, '2011-09-06', 447380.00, 'A'), - (2601, 3, 'DAGG JAMIE MICHAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 216125, '2011-08-09', 876080.00, 'A'), - (2602, 3, 'BOLAND PATRICK CHARLES ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 216125, '2011-09-14', 38260.00, 'A'), - (2603, 2, 'ZULEYKA JERRYS RIVERA MENDOZA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 150347, '2011-03-27', 563050.00, 'A'), - (2604, 3, 'DELGADO SEQUIRA FERRAO JOSE PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188228, '2011-08-16', 700460.00, 'A'), - (2605, 3, 'YORRO LORA EDGAR MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127689, '2011-06-17', 813180.00, 'A'), - (2606, 3, 'CARRASCO RODRIGUEZQCARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127689, '2011-06-17', 964520.00, 'A'), - (2607, 30, 'ORJUELA VELASQUEZ JULIANA MARIA', 191821112, 'CRA 25 CALLE 100', '372@terra.com.co', '2011-02-03', 132775, '2011-09-01', 383070.00, 'A'), - (2608, 3, 'DUQUE DUTRA LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-07-12', 21780.00, 'A'), - (261, 1, 'MURCIA MARQUEZ NESTOR JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-19', 913480.00, 'A'), - (2610, 3, 'NGUYEN HUU KHUONG', 191821112, 'CRA 25 CALLE 100', '457@facebook.com', '2011-02-03', 132958, '2011-05-07', 733120.00, 'A'), - (2611, 3, 'NGUYEN VAN LAP', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 786510.00, 'A'), - (2612, 3, 'PHAM HUU THU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 733200.00, 'A'), - (2613, 3, 'DANG MING CUONG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-05-07', 306460.00, 'A'), - (2614, 3, 'VU THI HONG HANH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-05-07', 332710.00, 'A'), - (2615, 3, 'CHAU TANG LANG', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-05-07', 744190.00, 'A'), - (2616, 3, 'CHU BAN THING', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-05-07', 722800.00, 'A'), - (2617, 3, 'NGUYEN QUANG THU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-05-07', 381420.00, 'A'), - (2618, 3, 'TRAN THI KIM OANH', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-05-07', 738690.00, 'A'), - (2619, 3, 'NGUYEN VAN VINH', 191821112, 'CRA 25 CALLE 100', '422@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 549210.00, 'A'), - (262, 1, 'ABDULAZIS ELNESER KHALED', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-27', 439430.00, 'A'), - (2620, 3, 'NGUYEN XUAN VY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132958, '2011-05-07', 529950.00, 'A'), - (2621, 3, 'HA MANH HOA', 191821112, 'CRA 25 CALLE 100', '439@gmail.com', '2011-02-03', 132958, '2011-05-07', 2160.00, 'A'), - (2622, 3, 'ZAFIROPOULO STEVEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 420930.00, 'A'), - (2624, 3, 'TEMIGTERRA MASSIMILIANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 210050, '2011-09-26', 228070.00, 'A'), - (2625, 3, 'CASSES TRINDADE HELGIO HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118402, '2011-09-13', 845850.00, 'A'), - (2626, 3, 'ASCOLI MASTROENI MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 120773, '2011-09-07', 545010.00, 'A'), - (2627, 3, 'MONTEIRO SOARES MARCOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 120773, '2011-07-18', 187530.00, 'A'), - (2629, 3, 'HALL ALVARO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 120773, '2011-08-02', 950450.00, 'A'), - (2631, 3, 'ANDRADE CATUNDA RAFAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 120773, '2011-08-23', 370860.00, 'A'), - (2632, 3, 'MAGALHAES MAYRA ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118767, '2011-08-23', 320960.00, 'A'), - (2633, 3, 'SPREAFICO MIRIAM ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118587, '2011-08-23', 492220.00, 'A'), - (2634, 3, 'GOMES FERREIRA HELIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 125812, '2011-08-23', 498220.00, 'A'), - (2635, 3, 'FERNANDES SENNA PIRES SERGIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-05', 14460.00, 'A'), - (2636, 3, 'BALESTRO FLORIANO FABIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 120773, '2011-08-24', 577630.00, 'A'), - (2637, 3, 'CABANA DE QUEIROZ ANDRADE ALAXANDRE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-23', 844780.00, 'A'), - (2638, 3, 'DALBOSCO CARLA', 191821112, 'CRA 25 CALLE 100', '380@yahoo.com.mx', '2011-02-03', 127591, '2011-06-30', 491010.00, 'A'), - (264, 1, 'ROMERO MONTOYA NICOLAY ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-13', 965220.00, 'A'), - (2640, 3, 'BILLINI CRUZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 144215, '2011-03-27', 130530.00, 'A'), - (2641, 3, 'VASQUES ARIAS DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 144509, '2011-08-19', 890500.00, 'A'), - (2642, 3, 'ROJAS VOLQUEZ GLADYS MICHELLE', 191821112, 'CRA 25 CALLE 100', '852@gmail.com', '2011-02-03', 144215, '2011-07-25', 60930.00, 'A'), - (2643, 3, 'LLANEZA GIL JUAN RAFAELMO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 144215, '2011-07-08', 633120.00, 'A'), - (2646, 3, 'AVILA PEROZO IANKEL JACOB', 191821112, 'CRA 25 CALLE 100', '318@hotmail.com', '2011-02-03', 144215, '2011-09-03', 125600.00, 'A'), - (2647, 3, 'REGULAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-19', 583540.00, 'A'), - (2648, 3, 'CORONADO BATISTA JOSE ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-19', 540910.00, 'A'), - (2649, 3, 'OLIVIER JOSE VICTOR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 144509, '2011-08-19', 953910.00, 'A'), - (2650, 3, 'YOO HOE TAEK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-08-25', 146820.00, 'A'), - (266, 1, 'CUECA RODRIGUEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-22', 384280.00, 'A'), - (267, 1, 'NIETO ALVARADO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2008-04-28', 553450.00, 'A'), - (269, 1, 'LEAL HOLGUIN FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-25', 411700.00, 'A'), - (27, 1, 'MORENO MORENO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2009-09-15', 995620.00, 'A'), - (270, 1, 'CANO IBANES JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-03', 215260.00, 'A'), - (271, 1, 'RESTREPO HERRAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2011-04-18', 841220.00, 'A'), - (272, 3, 'RIOS FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 199862, '2011-03-24', 560300.00, 'A'), - (273, 1, 'MADERO LORENZANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-03', 277850.00, 'A'), - (274, 1, 'GOMEZ GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-09-24', 708350.00, 'A'), - (275, 1, 'CONSUEGRA ARENAS ANDRES MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-09', 708210.00, 'A'), - (276, 1, 'HURTADO ROJAS NICOLAS', 191821112, 'CRA 25 CALLE 100', '463@yahoo.com.mx', '2011-02-03', 127591, '2011-09-07', 416000.00, 'A'), - (277, 1, 'MURCIA BAQUERO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-02', 955370.00, 'A'), - (2773, 3, 'TAKUBO KAORI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 165753, '2011-05-12', 872390.00, 'A'), - (2774, 3, 'OKADA MAKOTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 165753, '2011-06-19', 921480.00, 'A'), - (2775, 3, 'TAKEDA AKIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 21062, '2011-06-19', 990250.00, 'A'), - (2776, 3, 'KOIKE WATARU ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 165753, '2011-06-19', 186800.00, 'A'), - (2777, 3, 'KUBO SHINEI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 165753, '2011-02-13', 963230.00, 'A'), - (2778, 3, 'KANNO YONEZO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 165600, '2011-07-26', 255770.00, 'A'), - (278, 3, 'PARENT ELOIDE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 267980, '2011-05-01', 528840.00, 'A'), - (2781, 3, 'SUNADA MINORU ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 165753, '2011-06-19', 724450.00, 'A'), - (2782, 3, 'INOUE KASUYA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-22', 87150.00, 'A'), - (2783, 3, 'OTAKE NOBUTOSHI', 191821112, 'CRA 25 CALLE 100', '208@facebook.com', '2011-02-03', 127591, '2011-06-11', 262380.00, 'A'), - (2784, 3, 'MOTOI KEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 165753, '2011-06-19', 50470.00, 'A'), - (2785, 3, 'TANAKA KIYOTAKA ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 165753, '2011-06-19', 465210.00, 'A'), - (2787, 3, 'YUMIKOPERDOMO', 191821112, 'CRA 25 CALLE 100', '600@yahoo.es', '2011-02-03', 165600, '2011-07-26', 477550.00, 'A'), - (2788, 3, 'FUKUSHIMA KENZO', 191821112, 'CRA 25 CALLE 100', '599@gmail.com', '2011-02-03', 156960, '2011-05-30', 863860.00, 'A'), - (2789, 3, 'GELGIN LEVENT NURI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-26', 886630.00, 'A'), - (279, 1, 'AVIATUR S. A.', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-02', 778110.00, 'A'), - (2791, 3, 'GELGIN ENIS ENRE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-26', 547940.00, 'A'), - (2792, 3, 'PAZ SOTO LUBRASCA MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 143954, '2011-06-27', 215000.00, 'A'), - (2794, 3, 'MOURAD TAOUFIKI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-13', 511000.00, 'A'), - (2796, 3, 'DASTUS ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 218656, '2011-05-29', 774010.00, 'A'), - (2797, 3, 'MCDONALD MICHAEL LORNE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 269033, '2011-07-19', 85820.00, 'A'), - (2799, 3, 'KLESO MICHAEL QUENTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-07-26', 277950.00, 'A'), - (28, 1, 'GONZALEZ ACUNA EDGAR MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-19', 531710.00, 'A'), - (280, 3, 'NEME KARIM CHAIBAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 135967, '2010-05-02', 304040.00, 'A'), - (2800, 3, 'CLERK CHARLES ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 244158, '2011-07-26', 68490.00, 'A'), - ('CELL3673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (2801, 3, 'BURRIS MAURICE STEWARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-27', 508600.00, 'A'), - (2802, 1, 'PINCHEN CLAIRE ELAINE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 216125, '2011-04-13', 337530.00, 'A'), - (2803, 3, 'LETTNER EVA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 231224, '2011-09-20', 161860.00, 'A'), - (2804, 3, 'CANUEL LUCIE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 146258, '2011-09-20', 796710.00, 'A'), - (2805, 3, 'IGLESIAS CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 216125, '2011-08-02', 497980.00, 'A'), - (2806, 3, 'PAQUIN JEAN FRANCOIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-03-27', 99760.00, 'A'), - (2807, 3, 'FOURNIER DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 228688, '2011-05-19', 4860.00, 'A'), - (2808, 3, 'BILODEAU MARTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-13', 725030.00, 'A'), - (2809, 3, 'KELLNER PETER WILLIAM', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 130757, '2011-07-24', 610570.00, 'A'), - (2810, 3, 'ZAZULAK INGRID ROSEMARIE', 191821112, 'CRA 25 CALLE 100', '683@facebook.com', '2011-02-03', 240550, '2011-09-11', 877770.00, 'A'), - (2811, 3, 'RUCCI JHON MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 285188, '2011-05-10', 557130.00, 'A'), - (2813, 3, 'JONCAS MARC', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 33265, '2011-03-21', 90360.00, 'A'), - (2814, 3, 'DUCHARME ERICK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-03-29', 994750.00, 'A'), - (2816, 3, 'BAILLOD THOMAS DAVID ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 239124, '2010-10-20', 529130.00, 'A'), - (2817, 3, 'MARTINEZ SORIA JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 289697, '2011-09-06', 537630.00, 'A'), - (2818, 3, 'TAMARA RABER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-30', 100750.00, 'A'), - (2819, 3, 'BURGI VINCENT EMANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 245206, '2011-04-20', 890860.00, 'A'), - (282, 1, 'HUESPED ASISTENTE A LA CONVENCION DE LA DIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2009-06-24', 17160.00, 'A'), - (2820, 3, 'ROBLES TORRALBA IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 238949, '2011-05-16', 152030.00, 'A'), - (2821, 3, 'CONSUEGRA MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-06', 87600.00, 'A'), - (2822, 3, 'CELMA ADROVER LAIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 190393, '2011-03-23', 981880.00, 'A'), - (2823, 3, 'ALVAREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-06-20', 646610.00, 'A'), - (2824, 3, 'VARGAS WOODROFFE FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 157414, '2011-06-22', 287410.00, 'A'), - (2825, 3, 'GARCIA GUILLEN VICENTE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 144215, '2011-08-19', 497230.00, 'A'), - (2826, 3, 'GOMEZ GARCIA DIAMANTES PATRICIA MARIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2011-09-22', 623930.00, 'A'), - (2827, 3, 'PEREZ IGLESIAS BIBIANA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-09-30', 627940.00, 'A'), - (2830, 3, 'VILLALONGA MORENES MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 169679, '2011-05-29', 474910.00, 'A'), - (2831, 3, 'REY LOPEZ DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2011-08-03', 7380.00, 'A'), - (2832, 3, 'HOYO APARICIO JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116511, '2011-09-19', 612180.00, 'A'), - (2836, 3, 'GOMEZ GARCIA LOPEZ CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150699, '2011-09-21', 277540.00, 'A'), - (2839, 3, 'GALIMERTI MARCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 235197, '2011-08-28', 156870.00, 'A'), - (2840, 3, 'BAROZZI GIUSEPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 231989, '2011-05-25', 609500.00, 'A'), - (2841, 3, 'MARIAN RENATO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-12', 576900.00, 'A'), - (2842, 3, 'FAENZA CARLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126180, '2011-05-19', 55990.00, 'A'), - (2843, 3, 'PESOLILLO CARMINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 203162, '2011-06-26', 549230.00, 'A'), - (2844, 3, 'CHIODI FRANCESCO MARIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 199862, '2011-09-10', 578210.00, 'A'), - (2845, 3, 'RUTA MARIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-06-19', 243350.00, 'A'), - (2846, 3, 'BAZZONI MARINO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 101518, '2011-05-03', 482140.00, 'A'), - (2848, 3, 'LAGASIO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 231989, '2011-05-04', 956670.00, 'A'), - (2849, 3, 'VIERA DA CUNHA PAULO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 190393, '2011-04-05', 741520.00, 'A'), - (2850, 3, 'DAL BEN DENIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 116511, '2011-05-26', 837590.00, 'A'), - (2851, 3, 'GIANELLI HERIBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 233927, '2011-05-01', 963400.00, 'A'), - (2852, 3, 'JUSTINO DA SILVA DJAMIR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-08', 304200.00, 'A'), - (2853, 3, 'DIPASQUUALE GAETANO', 191821112, 'CRA 25 CALLE 100', '574@terra.com.co', '2011-02-03', 172888, '2011-07-11', 630830.00, 'A'), - (2855, 3, 'CURI MAURO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 199862, '2011-06-19', 315160.00, 'A'), - (2856, 3, 'DI DIO MARCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-20', 851210.00, 'A'), - (2857, 3, 'ROBERTI MENDONCA CAIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-11', 310580.00, 'A'), - (2859, 3, 'RAMOS MORENO DE SOUZA ANDRE ', 191821112, 'CRA 25 CALLE 100', '133@facebook.com', '2011-02-03', 118777, '2011-09-24', 64540.00, 'A'), - (286, 8, 'INEXMODA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-06-21', 50150.00, 'A'), - (2860, 3, 'JODJAHN DE CARVALHO FLAVIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-06-27', 324950.00, 'A'), - (2862, 3, 'LAGASIO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 231989, '2011-07-04', 180760.00, 'A'), - (2863, 3, 'MOON SUNG RIUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-08', 610440.00, 'A'), - (2865, 3, 'VAIDYANATHAN VIKRAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-11', 718220.00, 'A'), - (2866, 3, 'NARAYANASWAMY RAMSUNDAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 73079, '2011-10-02', 61390.00, 'A'), - (2867, 3, 'VADADA VENKATA RAMESH KUMAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-10', 152300.00, 'A'), - (2868, 3, 'RAMA KRISHNAN ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-10', 577300.00, 'A'), - (2869, 3, 'JALAN PRASHANT', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 122035, '2011-05-02', 429600.00, 'A'), - (2871, 3, 'CHANDRASEKAR VENKAT', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 112862, '2011-06-27', 791800.00, 'A'), - (2872, 3, 'CUMBAKONAM SWAMINATHAN SUBRAMANIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-11', 710650.00, 'A'), - (288, 8, 'BCD TRAVEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-23', 645390.00, 'A'), - (289, 3, 'EMBAJADA ARGENTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '1970-02-02', 749440.00, 'A'), - ('CELL3789', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (290, 3, 'EMBAJADA DE BRASIL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-11-16', 811030.00, 'A'), - (293, 8, 'ONU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-19', 584810.00, 'A'), - (299, 1, 'BLANDON GUZMAN JHON JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-01-13', 201740.00, 'A'), - (304, 3, 'COHEN DANIEL DYLAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 286785, '2010-11-17', 184850.00, 'A'), - (306, 1, 'CINDU ANDINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2009-06-11', 899230.00, 'A'), - (31, 1, 'GARRIDO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127662, '2010-09-12', 801450.00, 'A'), - (310, 3, 'CORPORACION CLUB EL NOGAL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2010-08-27', 918760.00, 'A'), - (314, 3, 'CHAWLA AARON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-08', 295840.00, 'A'), - (317, 3, 'BAKER HUGHES', 191821112, 'CRA 25 CALLE 100', '694@hotmail.com', '2011-02-03', 127591, '2011-04-03', 211990.00, 'A'), - (32, 1, 'PAEZ SEGURA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '675@gmail.com', '2011-02-03', 129447, '2011-08-22', 717340.00, 'A'), - (320, 1, 'MORENO PAEZ FREDDY ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-31', 971670.00, 'A'), - (322, 1, 'CALDERON CARDOZO GASTON EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-05', 990640.00, 'A'), - (324, 1, 'ARCHILA MERA ALFREDOMANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-22', 77200.00, 'A'), - (326, 1, 'MUNOZ AVILA HERNEY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-11-10', 550920.00, 'A'), - (327, 1, 'CHAPARRO CUBILLOS FABIAN ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-15', 685080.00, 'A'), - (329, 1, 'GOMEZ LOPEZ JUAN SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '970@yahoo.com', '2011-02-03', 127591, '2011-03-20', 808070.00, 'A'), - (33, 1, 'MARTINEZ MARINO HENRY HERNAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-04-20', 182370.00, 'A'), - (330, 3, 'MAPSTONE NAOMI LEA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 122035, '2010-02-21', 722380.00, 'A'), - (332, 3, 'ROSSI BURRI NELLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132165, '2010-05-10', 771210.00, 'A'), - (333, 1, 'AVELLANEDA OVIEDO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-25', 293060.00, 'A'), - (334, 1, 'SUZA FLOREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-13', 151650.00, 'A'), - (335, 1, 'ESGUERRA ALVARO ANDRES', 191821112, 'CRA 25 CALLE 100', '11@facebook.com', '2011-02-03', 127591, '2011-09-10', 879080.00, 'A'), - (337, 3, 'DE LA HARPE MARTIN CARAPET WALTER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-27', 64960.00, 'A'), - (339, 1, 'HERNANDEZ ACOSTA SERGIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 129499, '2011-06-22', 322570.00, 'A'), - (340, 3, 'ZARAMA DE LA ESPRIELLA MIGUEL PATRICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-27', 102360.00, 'A'), - (342, 1, 'CABRERA VASQUEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-01', 413440.00, 'A'), - (343, 3, 'RICHARDSON BEN MARRIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2010-05-18', 434890.00, 'A'), - (344, 1, 'OLARTE PINZON MIGUEL FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-30', 934140.00, 'A'), - (345, 1, 'SOLER SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-04-20', 366020.00, 'A'), - (346, 1, 'PRIETO JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-07-12', 27690.00, 'A'), - (349, 1, 'BARRERO VELASCO DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-01', 472850.00, 'A'), - (35, 1, 'VELASQUEZ RAMOS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-13', 251940.00, 'A'), - (350, 1, 'RANGEL GARCIA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-03-20', 7880.00, 'A'), - (353, 1, 'ALVAREZ ACEVEDO JOHN FREDDY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-16', 540070.00, 'A'), - (354, 1, 'VILLAMARIN HOME WILMAR ALFREDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-19', 458810.00, 'A'), - (355, 3, 'SLUCHIN NAAMAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 263813, '2010-12-01', 673830.00, 'A'), - (357, 1, 'BULLA BERNAL LUIS ERNESTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-14', 942160.00, 'A'), - (358, 1, 'BRACCIA AVILA GIANCARLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-01', 732620.00, 'A'), - (359, 1, 'RODRIGUEZ PINTO RAUL DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-24', 836600.00, 'A'), - (36, 1, 'MALDONADO ALVAREZ JAIRO ASDRUBAL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-06-19', 980270.00, 'A'), - (362, 1, 'POMBO POLANCO JUAN BERNARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-18', 124130.00, 'A'), - (363, 1, 'CARDENAS SUAREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-01', 372920.00, 'A'), - (364, 1, 'RIVERA MAZO JOSE DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-06-10', 492220.00, 'A'), - (365, 1, 'LEDERMAN CORDIKI JONATHAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-12-03', 342340.00, 'A'), - (367, 1, 'BARRERA MARTINEZ LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '35@yahoo.com.mx', '2011-02-03', 127591, '2011-05-24', 148130.00, 'A'), - (368, 1, 'SEPULVEDA RAMIREZ DANIEL MARCELO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-31', 35560.00, 'A'), - (369, 1, 'QUINTERO DIAZ WILSON ASDRUBAL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', 733430.00, 'A'), - (37, 1, 'RESTREPO SUAREZ HENRY BERNARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-07-25', 145540.00, 'A'), - (370, 1, 'ROJAS YARA WILLMAR ARLEY', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-12-03', 560450.00, 'A'), - (371, 3, 'CARVER LOUISE EMILY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 286785, '2010-10-07', 601980.00, 'A'), - (372, 3, 'VINCENT DAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2011-03-06', 328540.00, 'A'), - (374, 1, 'GONZALEZ DELGADO MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-18', 198260.00, 'A'), - (375, 1, 'PAEZ SIMON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-25', 480970.00, 'A'), - (376, 1, 'CADOSCH DELMAR ELIE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-07', 810080.00, 'A'), - (377, 1, 'HERRERA VASQUEZ DANIEL EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-06-30', 607460.00, 'A'), - (378, 1, 'CORREAL ROJAS RONALD', 191821112, 'CRA 25 CALLE 100', '269@facebook.com', '2011-02-03', 127591, '2011-07-16', 607080.00, 'A'), - (379, 1, 'VOIDONNIKOLAS MUNOS PANAGIOTIS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-27', 213010.00, 'A'), - (38, 1, 'CANAL ROJAS MAURICIO HERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-05-29', 786900.00, 'A'), - (380, 1, 'DIAZ ECHEVERRI JUAN DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-20', 243800.00, 'A'), - (381, 1, 'CIFUENTES MARIN HERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-26', 579960.00, 'A'), - (382, 3, 'PAXTON LUCINDA HARRIET', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 107159, '2011-05-23', 168420.00, 'A'), - (384, 3, 'POYNTON BRIAN GEORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 286785, '2011-03-20', 5790.00, 'A'), - (385, 3, 'TERMIGNONI ADRIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-01-14', 722320.00, 'A'), - (386, 3, 'CARDWELL PAULA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-02-17', 594230.00, 'A'), - (389, 1, 'FONCECA MARTINEZ MIGUEL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-25', 778680.00, 'A'), - (39, 1, 'GARCIA SUAREZ WILLIAM ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-25', 497880.00, 'A'), - (390, 1, 'GUERRERO NELSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-12-03', 178650.00, 'A'), - (391, 1, 'VICTORIA PENA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-22', 557200.00, 'A'), - (392, 1, 'VAN HISSENHOVEN FERRERO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-13', 250060.00, 'A'), - (393, 1, 'CACERES ORDUZ JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-28', 578690.00, 'A'), - (394, 1, 'QUINTERO ALVARO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-17', 143270.00, 'A'), - (395, 1, 'ANZOLA PEREZ CARLOSDAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-04', 980300.00, 'A'), - (397, 1, 'LLOREDA ORTIZ CARLOS JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-27', 417470.00, 'A'), - (398, 1, 'GONZALES LONDONO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-19', 672310.00, 'A'), - (4, 1, 'LONDONO DOMINGUEZ ERNESTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-05', 324610.00, 'A'), - (40, 1, 'MORENO ANGULO ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-01', 128690.00, 'A'), - (400, 8, 'TRANSELCA .A', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-04-14', 528930.00, 'A'), - (403, 1, 'VERGARA MURILLO JUAN FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-04', 42900.00, 'A'), - (405, 1, 'CAPERA CAPERA HARRINSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127799, '2011-06-12', 961000.00, 'A'), - (407, 1, 'MORENO MORA WILLIAM EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-22', 872780.00, 'A'), - (408, 1, 'HIGUERA ROA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-28', 910430.00, 'A'), - (409, 1, 'FORERO CASTILLO OSCAR ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '988@terra.com.co', '2011-02-03', 127591, '2011-07-23', 933810.00, 'A'), - (410, 1, 'LOPEZ MURCIA JULIAN DANIEL', 191821112, 'CRA 25 CALLE 100', '399@facebook.com', '2011-02-03', 127591, '2011-08-08', 937790.00, 'A'), - (411, 1, 'ALZATE JOHN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-09-09', 887490.00, 'A'), - (412, 1, 'GONZALES GONZALES ORLANDO ANDREY', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-30', 624080.00, 'A'), - (413, 1, 'ESCOLANO VALENTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-05', 457930.00, 'A'), - (414, 1, 'JARAMILLO RODRIGUEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-12', 417420.00, 'A'), - (415, 1, 'GARCIA MUNOZ DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-02', 713300.00, 'A'), - (416, 1, 'PINEROS ARENAS JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-10-17', 314260.00, 'A'), - (417, 1, 'ORTIZ ARROYAVE ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-05-21', 431370.00, 'A'), - (418, 1, 'BAYONA BARRIENTOS JEAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-12', 214090.00, 'A'), - (419, 1, 'AGUDELO VASQUEZ JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-30', 776360.00, 'A'), - (420, 1, 'CALLE DANIEL CJ PRODUCCIONES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-04', 239500.00, 'A'), - (422, 1, 'CANO BETANCUR ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-08-20', 623620.00, 'A'), - (423, 1, 'CALDAS BARRETO LUZ MIREYA', 191821112, 'CRA 25 CALLE 100', '991@facebook.com', '2011-02-03', 127591, '2011-05-22', 512840.00, 'A'), - (424, 1, 'SIMBAQUEBA JOSE ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 693320.00, 'A'), - (425, 1, 'DE SILVESTRE CALERO LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-18', 928110.00, 'A'), - (426, 1, 'ZORRO PERALTA YEZID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-25', 560560.00, 'A'), - (428, 1, 'SUAREZ OIDOR DARWIN LEONARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131272, '2011-09-05', 410650.00, 'A'), - (429, 1, 'GIRAL CARRILLO LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-13', 997850.00, 'A'), - (43, 1, 'MARULANDA VALENCIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-17', 365550.00, 'A'), - (430, 1, 'CORDOBA GARCES JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-18', 757320.00, 'A'), - (431, 1, 'ARIAS TAMAYO DIEGO MAURICIO', 191821112, 'CRA 25 CALLE 100', '36@yahoo.com', '2011-02-03', 127591, '2011-09-05', 793050.00, 'A'), - (432, 1, 'EICHMANN PERRET MARC WILLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-22', 693270.00, 'A'), - (433, 1, 'DIAZ DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2008-09-18', 87200.00, 'A'), - (435, 1, 'FACCINI GONZALEZ HERMANN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2009-01-08', 519420.00, 'A'), - (436, 1, 'URIBE DUQUE FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-28', 528470.00, 'A'), - (437, 1, 'TAVERA GAONA GABREL LEAL', 191821112, 'CRA 25 CALLE 100', '280@terra.com.co', '2011-02-03', 127591, '2011-04-28', 84120.00, 'A'), - (438, 1, 'ORDONEZ PARIS FERNANDO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-09-26', 835170.00, 'A'), - (439, 1, 'VILLEGAS ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 923520.00, 'A'), - (44, 1, 'MARTINEZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-08-13', 738750.00, 'A'), - (440, 1, 'MARTINEZ RUEDA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '805@hotmail.es', '2011-02-03', 127591, '2011-04-07', 112050.00, 'A'), - (441, 1, 'ROLDAN JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-05-25', 789720.00, 'A'), - (442, 1, 'PEREZ BRANDWAYN ELIYAU MOISES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-10-20', 612450.00, 'A'), - (443, 1, 'VALLEJO TORO JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128579, '2011-08-16', 693080.00, 'A'), - (444, 1, 'TORRES CABRERA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-19', 628070.00, 'A'), - (445, 1, 'MERINO MEJIA GERMAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-28', 61100.00, 'A'), - (447, 1, 'GOMEZ GOMEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-08', 923070.00, 'A'), - (448, 1, 'RAUSCH CHEHEBAR STEVEN JOSEPH', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-09-27', 351540.00, 'A'), - (449, 1, 'RESTREPO TRUCCO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-28', 988500.00, 'A'), - (45, 1, 'GUTIERREZ JARAMILLO CARLOS MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-22', 597090.00, 'A'), - (450, 1, 'GOLDSTEIN VAIDA ELI JACK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-11', 887860.00, 'A'), - (451, 1, 'OLEA PINEDA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-10', 473800.00, 'A'), - (452, 1, 'JORGE OROZCO', 191821112, 'CRA 25 CALLE 100', '503@hotmail.es', '2011-02-03', 127591, '2011-06-02', 705410.00, 'A'), - (454, 1, 'DE LA TORRE GOMEZ GERMAN ERNESTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-03', 411990.00, 'A'), - (456, 1, 'MADERO ARIAS JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '452@hotmail.es', '2011-02-03', 127591, '2011-08-22', 479090.00, 'A'), - (457, 1, 'GOMEZ MACHUCA ALVARO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-12', 166430.00, 'A'), - (458, 1, 'MENDIETA TOBON DANIEL RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-08', 394880.00, 'A'), - (459, 1, 'VILLADIEGO CORTINA JAVIER TOMAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-26', 475110.00, 'A'), - (46, 1, 'FERRUCHO ARCINIEGAS JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', 769220.00, 'A'), - (460, 1, 'DERESER HARTUNG ERNESTO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-12-25', 190900.00, 'A'), - (461, 1, 'RAMIREZ PENA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-06-25', 529190.00, 'A'), - (463, 1, 'IREGUI REYES LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 778590.00, 'A'), - (464, 1, 'PINTO GOMEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2010-06-24', 673270.00, 'A'), - (465, 1, 'RAMIREZ RAMIREZ FERNANDO ALONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127799, '2011-10-01', 30570.00, 'A'), - (466, 1, 'BERRIDO TRUJILLO JORGE HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2011-10-06', 133040.00, 'A'), - (467, 1, 'RIVERA CARVAJAL RAFAEL HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-20', 573500.00, 'A'), - (468, 3, 'FLOREZ PUENTES IVAN ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-08', 468380.00, 'A'), - (469, 1, 'BALLESTEROS FLOREZ IVAN DARIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-02', 621410.00, 'A'), - (47, 1, 'MARIN FLOREZ OMAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-30', 54840.00, 'A'), - (470, 1, 'RODRIGO PENA HERRERA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 237734, '2011-10-04', 701890.00, 'A'), - (471, 1, 'RODRIGUEZ SILVA ROGELIO', 191821112, 'CRA 25 CALLE 100', '163@gmail.com', '2011-02-03', 127591, '2011-05-26', 645210.00, 'A'), - (473, 1, 'VASQUEZ VELANDIA JUAN GABRIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-05-04', 666330.00, 'A'), - (474, 1, 'ROBLEDO JAIME', 191821112, 'CRA 25 CALLE 100', '409@yahoo.com', '2011-02-03', 127591, '2011-05-31', 970480.00, 'A'), - (475, 1, 'GRIMBERG DIAZ PHILIP', 191821112, 'CRA 25 CALLE 100', '723@yahoo.com', '2011-02-03', 127591, '2011-03-30', 853430.00, 'A'), - (476, 1, 'CHAUSTRE GARCIA JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-26', 355670.00, 'A'), - (477, 1, 'GOMEZ FLOREZ IGNASIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-14', 218090.00, 'A'), - (478, 1, 'LUIS ALBERTO CABRERA PUENTES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-05-26', 23420.00, 'A'), - (479, 1, 'MARTINEZ ZAPATA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '234@gmail.com', '2011-02-03', 127122, '2011-07-01', 462840.00, 'A'), - (48, 1, 'PARRA IBANEZ FABIAN ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-02-01', 966520.00, 'A'), - (480, 3, 'WESTERBERG JAN RICKARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 300701, '2011-02-01', 243940.00, 'A'), - (484, 1, 'RODRIGUEZ VILLALOBOS EDGAR FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-19', 860320.00, 'A'), - (486, 1, 'NAVARRO REYES DIEGO FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-01', 530150.00, 'A'), - (487, 1, 'NOGUERA RICAURTE ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-01-21', 384100.00, 'A'), - (488, 1, 'RUIZ VEJARANO CARLOS DANIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-27', 330030.00, 'A'), - (489, 1, 'CORREA PEREZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-12-14', 497860.00, 'A'), - (49, 1, 'FLOREZ PEREZ RUBIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-23', 668090.00, 'A'), - (490, 1, 'REYES GOMEZ LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-26', 499210.00, 'A'), - (491, 3, 'BERNAL LEON ALBERTO JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2011-03-29', 2470.00, 'A'), - (492, 1, 'FELIPE JARAMILLO CARO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2009-10-31', 514700.00, 'A'), - (493, 1, 'GOMEZ PARRA GERMAN DARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-01-29', 566100.00, 'A'), - (494, 1, 'VALLEJO RAMIREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-13', 286390.00, 'A'), - (495, 1, 'DIAZ LONDONO HUGO MARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 733670.00, 'A'), - (496, 3, 'VAN BAKERGEM RONALD JAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2008-11-05', 809190.00, 'A'), - (497, 1, 'MENDEZ RAMIREZ JOSE LEONARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-10', 844920.00, 'A'), - (498, 3, 'QUI TANILLA HENRIQUEZ PAUL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-10', 797030.00, 'A'), - (499, 3, 'PELEATO FLOREAL', 191821112, 'CRA 25 CALLE 100', '531@hotmail.com', '2011-02-03', 188640, '2011-04-23', 450370.00, 'A'), - (50, 1, 'SILVA GUZMAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-24', 440890.00, 'A'), - (502, 3, 'LEO ULF GORAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 300701, '2010-07-26', 181840.00, 'A'), - (503, 3, 'KARLSSON DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 300701, '2011-07-22', 50680.00, 'A'), - (504, 1, 'JIMENEZ JANER ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '889@hotmail.es', '2011-02-03', 203272, '2011-08-29', 707880.00, 'A'), - (506, 1, 'PABON OCHOA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-14', 813050.00, 'A'), - (507, 1, 'ACHURY CADENA CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-26', 903240.00, 'A'), - (508, 1, 'ECHEVERRY GARZON SEBASTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-23', 77050.00, 'A'), - (509, 1, 'PINEROS PENA LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-29', 675550.00, 'A'), - (51, 1, 'CAICEDO URREA JAIME ORLANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-08-17', 200160.00, 'A'), - ('CELL3795', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (510, 1, 'MARTINEZ MARTINEZ LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', '586@facebook.com', '2011-02-03', 127591, '2010-08-28', 146600.00, 'A'), - (511, 1, 'MOLANO PENA JESUS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-02-05', 706320.00, 'A'), - (512, 3, 'RUDOLPHY FONTAINE ANDRES', 191821112, 'CRA 25 CALLE 100', '492@yahoo.com', '2011-02-03', 117002, '2011-04-12', 91820.00, 'A'), - (513, 1, 'NEIRA CHAVARRO JOHN JAIRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-12', 340120.00, 'A'), - (514, 3, 'MENDEZ VILLALOBOS ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-03-25', 425160.00, 'A'), - (515, 3, 'HERNANDEZ OLIVA JOSE DE LA CRUZ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-03-25', 105440.00, 'A'), - (518, 3, 'JANCO NICOLAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-15', 955830.00, 'A'), - (52, 1, 'TAPIA MUNOZ JAIRO RICARDO', 191821112, 'CRA 25 CALLE 100', '920@hotmail.es', '2011-02-03', 127591, '2011-10-05', 678130.00, 'A'), - (520, 1, 'ALVARADO JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-26', 895550.00, 'A'), - (521, 1, 'HUERFANO SOTO JONATHAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-30', 619910.00, 'A'), - (522, 1, 'HUERFANO SOTO JONATHAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-04', 412900.00, 'A'), - (523, 1, 'RODRIGEZ GOMEZ WILMAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-14', 204790.00, 'A'), - (525, 1, 'ARROYO BAPTISTE DIEGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-09', 311810.00, 'A'), - (526, 1, 'PULECIO BOEK DANIEL', 191821112, 'CRA 25 CALLE 100', '718@gmail.com', '2011-02-03', 127591, '2011-08-12', 203350.00, 'A'), - (527, 1, 'ESLAVA VELEZ SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-10-08', 81300.00, 'A'), - (528, 1, 'CASTRO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-05-06', 796470.00, 'A'), - (53, 1, 'HINCAPIE MARTINEZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127573, '2011-09-26', 790180.00, 'A'), - (530, 1, 'ZORRILLA PUJANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '312@yahoo.es', '2011-02-03', 127591, '2011-06-06', 302750.00, 'A'), - (531, 1, 'ZORRILLA PUJANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-06', 298440.00, 'A'), - (532, 1, 'PRETEL ARTEAGA MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-09', 583980.00, 'A'), - (533, 1, 'RAMOS VERGARA HUMBERTO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 131105, '2010-05-13', 24560.00, 'A'), - (534, 1, 'BONILLA PINEROS DIEGO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', 370880.00, 'A'), - (535, 1, 'BELTRAN TRIVINO JULIAN DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-11-06', 780710.00, 'A'), - (536, 3, 'BLOD ULF FREDERICK EDWARD', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-06', 790900.00, 'A'), - (537, 1, 'VANEGAS OROZCO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-10', 612400.00, 'A'), - (538, 3, 'ORUE VALLE MONICA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 97885, '2011-09-15', 689270.00, 'A'), - (539, 1, 'AGUDELO BEDOYA ANDRES JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-05-24', 609160.00, 'A'), - (54, 1, 'DE HOYOS TRESPALACIOS MAURICIO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-21', 916500.00, 'A'), - (540, 3, 'HEIJKENSKJOLD PER JESPER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-06', 977980.00, 'A'), - (541, 3, 'GONZALEZ ALVARADO LUIS RAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-08-27', 62430.00, 'A'), - (543, 1, 'GRUPO SURAMERICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-08-24', 703760.00, 'A'), - (545, 1, 'CORPORACION CONTEXTO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-08', 809570.00, 'A'), - (546, 3, 'LUNDIN JOHAN ERIK ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-29', 895330.00, 'A'), - (548, 3, 'VEGERANO JOSE ', 191821112, 'CRA 25 CALLE 100', '221@facebook.com', '2011-02-03', 190393, '2011-06-05', 553780.00, 'A'), - (549, 3, 'SERRANO MADRID CLAUDIA INES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-27', 625060.00, 'A'), - (55, 1, 'TAFUR GOMEZ ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2010-09-12', 211980.00, 'A'), - (550, 1, 'MARTINEZ ACEVEDO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-10-06', 463920.00, 'A'), - (551, 1, 'GONZALEZ MORENO PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-07-21', 444450.00, 'A'), - (552, 1, 'MEJIA ROJAS ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-08-02', 830470.00, 'A'), - (553, 3, 'RODRIGUEZ ANTHONY HANSEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-16', 819000.00, 'A'), - (554, 1, 'ABUCHAIBE ANNICCHRICO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-31', 603610.00, 'A'), - (555, 3, 'MOYES KIMBERLY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-08', 561020.00, 'A'), - (556, 3, 'MONTINI MARIO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118942, '2010-03-16', 994280.00, 'A'), - (557, 3, 'HOGBERG DANIEL TOBIAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-15', 288350.00, 'A'), - (559, 1, 'OROZCO PFEIZER MARTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-10-07', 429520.00, 'A'), - (56, 1, 'NARINO ROJAS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-27', 310390.00, 'A'), - (560, 1, 'GARCIA MONTOYA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-06-02', 770840.00, 'A'), - (562, 1, 'VELASQUEZ PALACIO MANUEL ORLANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-06-23', 515670.00, 'A'), - (563, 1, 'GALLEGO PEREZ DIEGO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-14', 881460.00, 'A'), - (564, 1, 'RUEDA URREGO JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-04', 860270.00, 'A'), - (565, 1, 'RESTREPO DEL TORO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-10', 656960.00, 'A'), - (567, 1, 'TORO VALENCIA FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-08-04', 549090.00, 'A'), - (568, 1, 'VILLEGAS LUIS ALFONSO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-02', 633490.00, 'A'), - (569, 3, 'RIDSTROM CHRISTER ANDERS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 300701, '2011-09-06', 520150.00, 'A'), - (57, 1, 'TOVAR ARANGO JOHN JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127662, '2010-07-03', 916010.00, 'A'), - (570, 3, 'SHEPHERD DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2008-05-11', 700280.00, 'A'), - (573, 3, 'BENGTSSON JOHAN ANDREAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 196830.00, 'A'), - (574, 3, 'PERSSON HANS JONAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-09', 172340.00, 'A'), - (575, 3, 'SYNNEBY BJORN ERIK', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-15', 271210.00, 'A'), - ('CELL381', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (577, 3, 'COHEN PAUL KIRTAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 381490.00, 'A'), - (578, 3, 'ROMERO BRAVO FERNANDO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', 390360.00, 'A'), - (579, 3, 'GUTHRIE ROBERT DEAN', 191821112, 'CRA 25 CALLE 100', '794@gmail.com', '2011-02-03', 161705, '2010-07-20', 807350.00, 'A'), - (58, 1, 'TORRES ESCOBAR JAIRO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-06-17', 648860.00, 'A'), - (580, 3, 'ROCASERMENO MONTENEGRO MARIO JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 139844, '2010-12-01', 865650.00, 'A'), - (581, 1, 'COCK JORGE EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-19', 906210.00, 'A'), - (582, 3, 'REISS ANDREAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-01-31', 934120.00, 'A'), - (584, 3, 'ECHEVERRIA CASTILLO GERMAN FRANCISCO', 191821112, 'CRA 25 CALLE 100', '982@yahoo.com', '2011-02-03', 139844, '2011-07-20', 957370.00, 'A'), - (585, 3, 'BRANDT CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-10', 931030.00, 'A'), - (586, 3, 'VEGA NUNEZ GILBERTO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-14', 783010.00, 'A'), - (587, 1, 'BEJAR MUNOZ JORDI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 196234, '2010-10-08', 121990.00, 'A'), - (588, 3, 'WADSO KERSTIN ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-17', 260890.00, 'A'), - (59, 1, 'RAMOS FORERO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-20', 496300.00, 'A'), - (590, 1, 'RODRIGUEZ BETANCOURT JAVIER AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2011-05-23', 909850.00, 'A'), - (592, 1, 'ARBOLEDA HALABY RODRIGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 150699, '2009-02-03', 939170.00, 'A'), - (593, 1, 'CURE CURE CARLOS ALFREDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-07-11', 494600.00, 'A'), - (594, 3, 'VIDELA PEREZ OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-07-13', 655510.00, 'A'), - (595, 1, 'GONZALEZ GAVIRIA NESTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2009-09-28', 793760.00, 'A'), - (596, 3, 'IZQUIERDO DELGADO DIONISIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2009-09-24', 2250.00, 'A'), - (597, 1, 'MORENO DAIRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-06-14', 629990.00, 'A'), - (598, 1, 'RESTREPO FERNNDEZ SOTO JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-08-31', 143210.00, 'A'), - (599, 3, 'YERYES VERGARA MARIA SOLEDAD', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-10-11', 826060.00, 'A'), - (6, 1, 'GUZMAN ESCOBAR JOSE VICENTE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-10', 26390.00, 'A'), - (60, 1, 'ELEJALDE ESCOBAR TOMAS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-11-09', 534910.00, 'A'), - (601, 1, 'ESCAF ESCAF WILLIAM MIGUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 150699, '2011-07-26', 25190.00, 'A'), - (602, 1, 'CEBALLOS ZULUAGA JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-03', 23920.00, 'A'), - (603, 1, 'OLIVELLA GUERRERO RAFAEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2010-06-23', 44040.00, 'A'), - (604, 1, 'ESCOBAR GALLO CARLOS HUGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-09', 148420.00, 'A'), - (605, 1, 'ESCORCIA RAMIREZ EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128569, '2011-04-01', 609990.00, 'A'), - (606, 1, 'MELGAREJO MORENO PAULA ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-05', 604700.00, 'A'), - (607, 1, 'TOBON CALLE CARLOS GUILLERMO', 191821112, 'CRA 25 CALLE 100', '689@hotmail.es', '2011-02-03', 128662, '2011-03-16', 193510.00, 'A'), - (608, 3, 'TREVINO NOPHAL SILVANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 110709, '2011-05-27', 153470.00, 'A'), - (609, 1, 'CARDER VELEZ EDWIN JOHN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-04', 186830.00, 'A'), - (61, 1, 'GASCA DAZA VICTOR HERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-09', 185660.00, 'A'), - (610, 3, 'DAVIS JOHN BRADLEY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-04-06', 473740.00, 'A'), - (611, 1, 'BAQUERO SLDARRIAGA ALVARO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-09-15', 808210.00, 'A'), - (612, 3, 'SERRACIN ARAUZ YANIRA YAMILET', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 131272, '2011-06-09', 619820.00, 'A'), - (613, 1, 'MORA SOTO ALVARO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-09-20', 674450.00, 'A'), - (614, 1, 'SUAREZ RODRIGUEZ HERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-03-29', 512820.00, 'A'), - (616, 1, 'BAQUERO GARCIA JORGE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-07-14', 165160.00, 'A'), - (617, 3, 'ABADI MADURO MOISES SIMON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 131272, '2009-03-31', 203640.00, 'A'), - (62, 3, 'FLOWER LYNDON BRUCE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 231373, '2011-05-16', 323560.00, 'A'), - (624, 8, 'OLARTE LEONARDO', 191821112, 'CRA 25 CALLE 100', '6@hotmail.com', '2011-02-03', 127591, '2011-06-03', 219790.00, 'A'), - (63, 1, 'RUBIO CORTES OSCAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-04-28', 60830.00, 'A'), - (630, 5, 'PROEXPORT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2010-08-12', 708320.00, 'A'), - (632, 8, 'SUPER COFFEE ', 191821112, 'CRA 25 CALLE 100', '792@hotmail.es', '2011-02-03', 127591, '2011-08-30', 306460.00, 'A'), - (636, 8, 'NOGAL ASESORIAS FINANCIERAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-04-07', 752150.00, 'A'), - (64, 1, 'GUERRA MARTINEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-24', 333480.00, 'A'), - (645, 8, 'GIZ - PROFIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-31', 566330.00, 'A'), - (652, 3, 'QBE DEL ISTMO COMPANIA DE REASEGUROS ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-14', 932190.00, 'A'), - (655, 3, 'CORP. CENTRO DE ESTUDIOS DE DERECHO JUSTICIA Y SOCIEDAD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-05-04', 440370.00, 'A'), - (659, 3, 'GOOD YEAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2010-09-24', 993830.00, 'A'), - (660, 3, 'ARCINIEGAS Y VILLAMIZAR', 191821112, 'CRA 25 CALLE 100', '258@yahoo.com', '2011-02-03', 127591, '2010-12-02', 787450.00, 'A'), - (67, 1, 'LOPEZ HOYOS JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127662, '2010-04-13', 665230.00, 'A'), - (670, 8, 'APPLUS NORCONTROL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-09-06', 83210.00, 'A'), - (672, 3, 'KERLL SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 287273, '2010-12-19', 501610.00, 'A'), - (673, 1, 'RESTREPO MOLINA RAMIRO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 144215, '2010-12-18', 457290.00, 'A'), - (674, 1, 'PEREZ GIL JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-08-18', 781610.00, 'A'), - ('CELL3840', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (676, 1, 'GARCIA LONDONO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-23', 336160.00, 'A'), - (677, 3, 'RIJLAARSDAM KARIN AN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-07-03', 72210.00, 'A'), - (679, 1, 'LIZCANO MONTEALEGRE ARNULFO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127203, '2011-02-01', 546170.00, 'A'), - (68, 1, 'MARTINEZ SILVA EDGAR', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-29', 54250.00, 'A'), - (680, 3, 'OLIVARI MAYER PATRICIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 122642, '2011-08-01', 673170.00, 'A'), - (682, 3, 'CHEVALIER FRANCK PIERRE CHARLES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 263813, '2010-12-01', 617280.00, 'A'), - (683, 3, 'NG WAI WING ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126909, '2011-06-14', 904310.00, 'A'), - (684, 3, 'MULLER DOMINGUEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-22', 669700.00, 'A'), - (685, 3, 'MOSQUEDA DOMNGUEZ ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-04-08', 635580.00, 'A'), - (686, 3, 'LARREGUI MARIN LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-08', 168800.00, 'A'), - (687, 3, 'VARGAS VERGARA ALEJANDRO BRAULIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 159245, '2011-09-14', 937260.00, 'A'), - (688, 3, 'SKINNER LYNN CHERYL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-12', 179890.00, 'A'), - (689, 1, 'URIBE CORREA LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2010-07-29', 87680.00, 'A'), - (690, 1, 'TAMAYO JARAMILLO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-11-10', 898730.00, 'A'), - (691, 3, 'MOTABAN DE BORGES PAULA ELENA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2010-09-24', 230610.00, 'A'), - (692, 5, 'FERNANDEZ NALDA JOSE MANUEL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-06-28', 456850.00, 'A'), - (693, 1, 'GOMEZ RESTREPO JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-06-28', 592420.00, 'A'), - (694, 1, 'CARDENAS TAMAYO JOSE JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-08-08', 591550.00, 'A'), - (696, 1, 'RESTREPO ARANGO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-03-31', 127820.00, 'A'), - (697, 1, 'ROCABADO PASTRANA ROBERT JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127443, '2011-08-13', 97600.00, 'A'), - (698, 3, 'JARVINEN JOONAS JORI KRISTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196234, '2011-05-29', 104560.00, 'A'), - (699, 1, 'MORENO PEREZ HERNAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-30', 230000.00, 'A'), - (7, 1, 'PUYANA RAMOS GUILLERMO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-27', 331830.00, 'A'), - (70, 1, 'GALINDO MANZANO JAVIER FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-31', 214890.00, 'A'), - (701, 1, 'ROMERO PEREZ ARCESIO JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132775, '2011-07-13', 491650.00, 'A'), - (703, 1, 'CHAPARRO AGUDELO LEONARDO VIRGILIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-05-04', 271320.00, 'A'), - (704, 5, 'VASQUEZ YANIS MARIA DEL PILAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-10-13', 508820.00, 'A'), - (705, 3, 'BARBERO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 116511, '2010-09-13', 730170.00, 'A'), - (706, 1, 'CARMONA HERNANDEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-11-08', 124380.00, 'A'), - (707, 1, 'PEREZ SUAREZ JORGE ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2011-09-14', 431370.00, 'A'), - (708, 1, 'ROJAS JORGE MARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 130135, '2011-04-01', 783740.00, 'A'), - (71, 1, 'DIAZ JUAN PABLO/JULES JAVIER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-10-01', 247860.00, 'A'), - (711, 3, 'CATALDO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116773, '2011-06-06', 984810.00, 'A'), - (716, 5, 'MACIAS PIZARRO PATRICIO ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-06-07', 376260.00, 'A'), - (717, 1, 'RENDON MAYA DAVID ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 130273, '2010-07-25', 332310.00, 'A'), - (718, 3, 'DE HILDEBRAND E GRISI FILHO CELSO CLAUDIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-11', 532740.00, 'A'), - (719, 3, 'ALLIEL FACUSSE JULIO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-20', 666800.00, 'A'), - (72, 1, 'LOPEZ ROJAS VICTOR DANIEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-11', 594640.00, 'A'), - (720, 3, 'CHEMELLO JIMENEZ GAETANO ALBERTO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2010-06-23', 735760.00, 'A'), - (721, 3, 'GARCIA BEZANILLA RODOLFO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-04-12', 678420.00, 'A'), - (722, 1, 'ARIAS EDWIN', 191821112, 'CRA 25 CALLE 100', '13@terra.com.co', '2011-02-03', 127492, '2008-04-24', 184800.00, 'A'), - (723, 3, 'SOHN JANG WON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-07', 888750.00, 'A'), - (724, 3, 'WILHELM GIOVINE JAIME ROBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 115263, '2011-09-20', 889340.00, 'A'), - (726, 3, 'CASTILLERO DANIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 131272, '2011-05-13', 234270.00, 'A'), - (727, 3, 'PORTUGAL LANGHORST MAX GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-13', 829960.00, 'A'), - (729, 3, 'ALFONSO HERRANZ AGUSTIN ALFONSO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-21', 745060.00, 'A'), - (73, 1, 'DAVILA MENDEZ OSCAR DIEGO', 191821112, 'CRA 25 CALLE 100', '991@yahoo.com.mx', '2011-02-03', 128569, '2011-08-31', 229630.00, 'A'), - (730, 3, 'ALFONSO HERRANZ AGUSTIN CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-03-31', 384360.00, 'A'), - (731, 1, 'NOGUERA RAMIREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-14', 686610.00, 'A'), - (732, 1, 'ACOSTA PERALTA FABIAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 134030, '2011-06-21', 279960.00, 'A'), - (733, 3, 'MAC LEAN PINA PEDRO SEGUNDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-05-23', 339980.00, 'A'), - (734, 1, 'LEON ARCOS ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-05-04', 860020.00, 'A'), - (736, 3, 'LAMARCA GARCIA GERMAN JULIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-04-29', 820700.00, 'A'), - (737, 1, 'PORTO VELASQUEZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '321@hotmail.es', '2011-02-03', 133535, '2011-08-17', 263060.00, 'A'), - (738, 1, 'BUENAVENTURA MEDINA ERICK WILSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-09-18', 853180.00, 'A'), - (739, 1, 'LEVY ARRAZOLA RALPH MARC', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2011-09-27', 476720.00, 'A'), - (74, 1, 'RAMIREZ SORA EDISON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-03', 364220.00, 'A'), - (740, 3, 'MOON HYUNSIK ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 173192, '2011-05-15', 824080.00, 'A'), - (741, 3, 'LHUILLIER TRONCOSO GASTON MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-09-07', 690230.00, 'A'), - (742, 3, 'UNDURRAGA PELLEGRINI GONZALO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2010-11-21', 978900.00, 'A'), - (743, 1, 'SOLANO TRIBIN NICOLAS SIMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 134022, '2011-03-16', 823800.00, 'A'), - (744, 1, 'NOGUERA BENAVIDES JACOBO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-06', 182300.00, 'A'), - (745, 1, 'GARCIA LEON MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2008-04-16', 440110.00, 'A'), - (746, 1, 'EMILIANI ROJAS ALEXANDER ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-09-12', 653640.00, 'A'), - (748, 1, 'CARRENO POULSEN HELGEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', 778370.00, 'A'), - (749, 1, 'ALVARADO FANDINO ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2008-11-05', 48280.00, 'A'), - (750, 1, 'DIAZ GRANADOS JUAN PABLO.', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-01-12', 906290.00, 'A'), - (751, 1, 'OVALLE BETANCOURT ALBERTO JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2011-08-14', 386620.00, 'A'), - (752, 3, 'GUTIERREZ VERGARA JOSE MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-08', 214250.00, 'A'), - (753, 3, 'CHAPARRO GUAIMARAL LIZ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 147467, '2011-03-16', 911350.00, 'A'), - (754, 3, 'CORTES DE SOLMINIHAC PABLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-01-20', 914020.00, 'A'), - (755, 3, 'CHETAIL VINCENT', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 239124, '2010-08-23', 836050.00, 'A'), - (756, 3, 'PERUGORRIA RODRIGUEZ JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2010-10-17', 438210.00, 'A'), - (757, 3, 'GOLLMANN ROBERTO JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 167269, '2011-03-28', 682870.00, 'A'), - (758, 3, 'VARELA SEPULVEDA MARIA PILAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2010-07-26', 99730.00, 'A'), - (759, 3, 'MEYER WELIKSON MICHELE JANIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-05-10', 450030.00, 'A'), - (76, 1, 'VANEGAS RODRIGUEZ OSCAR IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', 568310.00, 'A'), - (77, 3, 'GATICA SOTOMAYOR MAURICIO VICENTE', 191821112, 'CRA 25 CALLE 100', '409@terra.com.co', '2011-02-03', 117002, '2010-05-13', 444970.00, 'A'), - (79, 1, 'PENA VALENZUELA DANIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-19', 264790.00, 'A'), - (8, 1, 'NAVARRO PALENCIA HUGO RAFAEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126968, '2011-05-05', 579980.00, 'A'), - (80, 1, 'BARRIOS CUADRADO DAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-29', 764140.00, 'A'), - (802, 3, 'RECK GARRONE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2009-02-06', 767700.00, 'A'), - (81, 1, 'PARRA QUIROGA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 26330.00, 'A'), - (811, 8, 'FEDERACION NACIONAL DE AVICULTORES ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-04-18', 926010.00, 'A'), - (812, 1, 'ORJUELA VELEZ JAIME ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 257160.00, 'A'), - (813, 1, 'PENA CHACON GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-08-27', 507770.00, 'A'), - (814, 1, 'RONDEROS MOJICA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127443, '2011-05-04', 767370.00, 'A'), - (815, 1, 'RICO NINO MARIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127443, '2011-05-18', 313540.00, 'A'), - (817, 3, 'AVILA CHYTIL MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118471, '2011-07-14', 387300.00, 'A'), - (818, 3, 'JABLONSKI DUARTE SILVEIRA ESTER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2010-12-21', 139740.00, 'A'), - (819, 3, 'BUHLER MOSLER XIMENA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-06-20', 536830.00, 'A'), - (82, 1, 'CARRILLO GAMBOA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-06-01', 839240.00, 'A'), - (820, 3, 'FALQUETO DALMIRO ANGELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-06-21', 264910.00, 'A'), - (821, 1, 'RUGER GUSTAVO RODRIGUEZ TAMAYO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2010-04-12', 714080.00, 'A'), - (822, 3, 'JULIO RODRIGUEZ FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-08-16', 775650.00, 'A'), - (823, 3, 'CIBANIK RODOLFO MOISES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132554, '2011-09-19', 736020.00, 'A'), - (824, 3, 'JIMENEZ FRANCO EMMANUEL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-17', 353150.00, 'A'), - (825, 3, 'GNECCO TREMEDAD', 191821112, 'CRA 25 CALLE 100', '818@hotmail.com', '2011-02-03', 171072, '2011-03-19', 557700.00, 'A'), - (826, 3, 'VILAR MENDOZA JOSE RAFAEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-29', 729050.00, 'A'), - (827, 3, 'GONZALEZ MOLINA CRISTIAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-06-20', 972160.00, 'A'), - (828, 1, 'GONTOVNIK HOBRECKT CARLOS DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-08-02', 673620.00, 'A'), - (829, 3, 'DIBARRAT URZUA SEBASTIAN RAIMUNDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-28', 451650.00, 'A'), - (830, 3, 'STOCCHERO HATSCHBACH GUILHERME', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2010-11-22', 237370.00, 'A'), - (831, 1, 'NAVAS PASSOS NARCISO EVELIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-04-21', 831900.00, 'A'), - (832, 3, 'LUNA SOBENES FAVIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-10-11', 447400.00, 'A'), - (833, 3, 'NUNEZ NOGUEIRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-19', 741290.00, 'A'), - (834, 1, 'CASTRO BELTRAN ARIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128188, '2011-05-15', 364270.00, 'A'), - (835, 1, 'TURBAY YAMIN MAURICIO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-03-17', 597490.00, 'A'), - (836, 1, 'GOMEZ BARRAZA RODNEY LORENZO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 894610.00, 'A'), - (837, 1, 'CUELLO LASCANO ROBERTO', 191821112, 'CRA 25 CALLE 100', '221@hotmail.es', '2011-02-03', 133535, '2011-07-11', 680610.00, 'A'), - (838, 1, 'PATERNINA PEINADO JOSE VICENTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-08-23', 719190.00, 'A'), - (839, 1, 'YEPES RUBIANO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-05-16', 554130.00, 'A'), - (84, 1, 'ALVIS RAMIREZ ALFREDO', 191821112, 'CRA 25 CALLE 100', '292@yahoo.com', '2011-02-03', 127662, '2011-09-16', 68190.00, 'A'), - (840, 1, 'ROCA LLANOS GUILLERMO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-08-22', 613060.00, 'A'), - (841, 1, 'RENDON TORRALVO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2011-05-26', 402950.00, 'A'), - (842, 1, 'BLANCO STAND GERMAN ELIECER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-17', 175530.00, 'A'), - (843, 3, 'BERNAL MAYRA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131272, '2010-08-31', 668820.00, 'A'), - (844, 1, 'NAVARRO RUIZ LAZARO GREGORIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 126916, '2008-09-23', 817520.00, 'A'), - (846, 3, 'TUOMINEN OLLI PETTERI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-09-01', 953150.00, 'A'), - (847, 1, 'ESPARRAGOZA DE LA ESPRIELLA ENRIQUE ALBERTO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-08-09', 522340.00, 'A'), - (848, 3, 'ARAYA ARIAS JUAN VICENTE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132165, '2011-08-09', 752210.00, 'A'), - (85, 1, 'GARCIA JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-03-01', 989420.00, 'A'), - (850, 1, 'PARDO GOMEZ GERMAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2010-11-25', 713690.00, 'A'), - (851, 1, 'ATIQUE JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2008-03-03', 986250.00, 'A'), - (852, 1, 'HERNANDEZ MEYER EDGARDO DE JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-20', 790190.00, 'A'), - (853, 1, 'ZULUAGA DE LEON IVAN JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-07-03', 992210.00, 'A'), - (854, 1, 'VILLARREAL ANGULO ENRIQUE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-10-02', 590450.00, 'A'), - (855, 1, 'CELIA MARTINEZ APARICIO GIAN PIERO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-06-15', 975620.00, 'A'), - (857, 3, 'LIPARI RONALDO LUIS', 191821112, 'CRA 25 CALLE 100', '84@facebook.com', '2011-02-03', 118941, '2010-10-13', 606990.00, 'A'), - (858, 1, 'RAVACHI DAVILA ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2011-05-04', 714620.00, 'A'), - (859, 3, 'PINHEIRO OLIVEIRA LUCIANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 752130.00, 'A'), - (86, 1, 'GOMEZ LIS CARLOS EMILIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2009-12-22', 742520.00, 'A'), - (860, 1, 'PUGLIESE MERCADO LUIGGI ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-08-19', 616780.00, 'A'), - (862, 1, 'JANNA TELLO DANIEL JALIL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2010-08-07', 287220.00, 'A'), - (863, 3, 'MATTAR CARLOS HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2009-04-26', 953570.00, 'A'), - (864, 1, 'MOLINA OLIER OSVALDO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2011-04-18', 906200.00, 'A'), - (865, 1, 'BLANCO MCLIN DAVID ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-08-18', 670290.00, 'A'), - (866, 1, 'NARANJO ROMERO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2010-08-25', 632860.00, 'A'), - (867, 1, 'SIMANCAS TRUJILLO RICARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-04-07', 153400.00, 'A'), - (868, 1, 'ARENAS USME GERMAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126881, '2011-10-01', 868430.00, 'A'), - (869, 5, 'DIAZ CORDERO RODRIGO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-11-04', 881950.00, 'A'), - (87, 1, 'CELIS PEREZ HERNANDO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-05', 744330.00, 'A'), - (870, 3, 'BINDER ZBEDA JONATAHAN JANAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131083, '2010-04-11', 804460.00, 'A'), - (871, 1, 'HINCAPIE HELLMAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-09-15', 376440.00, 'A'), - (872, 3, 'MONTEIRO LANAMAR ALFONSO DE BUSTAMANTE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118942, '2009-03-23', 468820.00, 'A'), - (873, 3, 'AGUDO CARMINATTI REGINA CELIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-01-04', 214770.00, 'A'), - (874, 1, 'GONZALEZ VILLALOBOS CRISTIAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2011-09-26', 667400.00, 'A'), - (875, 3, 'GUELL VILLANUEVA ALVARO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2008-04-07', 692670.00, 'A'), - (876, 3, 'GRES ANAIS ROBERTO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-12-01', 461180.00, 'A'), - (877, 3, 'GAME MOCOCAIN JUAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-07', 227890.00, 'A'), - (878, 1, 'FERRER UCROS FERNANDO LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-06-22', 755900.00, 'A'), - (879, 3, 'HERRERA JAUREGUI CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', '599@facebook.com', '2011-02-03', 131272, '2010-07-22', 95840.00, 'A'), - (880, 3, 'BACALLAO HERNANDEZ ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126180, '2010-04-21', 211480.00, 'A'), - (881, 1, 'GIJON URBINA JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 144879, '2011-04-03', 769910.00, 'A'), - (882, 3, 'TRUSEN CHRISTOPH WOLFGANG', 191821112, 'CRA 25 CALLE 100', '338@yahoo.com.mx', '2011-02-03', 127591, '2010-10-24', 215100.00, 'A'), - (883, 3, 'ASHOURI ASKANDAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 157861, '2009-03-03', 765760.00, 'A'), - (885, 1, 'ALTAMAR WATTS JAIRO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-08-20', 620170.00, 'A'), - (887, 3, 'QUINTANA BALTIERRA ROBERTO ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-21', 891370.00, 'A'), - (889, 1, 'CARILLO PATINO VICTOR HILARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 130226, '2011-09-06', 354570.00, 'A'), - (89, 1, 'CONTRERAS PULIDO LINA MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-06', 237480.00, 'A'), - (890, 1, 'GELVES CANAS GENARO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-02', 355640.00, 'A'), - (891, 3, 'CAGNONI DE MELO PAULA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2010-12-14', 714490.00, 'A'), - (892, 3, 'MENA AMESTICA PATRICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-03-22', 505510.00, 'A'), - (893, 1, 'CAICEDO ROMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-07', 384110.00, 'A'), - (894, 1, 'ECHEVERRY TRUJILLO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-08', 404010.00, 'A'), - (895, 1, 'CAJIA PEDRAZA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 867700.00, 'A'), - (896, 2, 'PALACIOS OLIVA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-24', 126500.00, 'A'), - (897, 1, 'GUTIERREZ QUINTERO FABIAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2009-10-24', 29380.00, 'A'), - (899, 3, 'COBO GUEVARA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-12-09', 748860.00, 'A'), - (9, 1, 'OSORIO RODRIGUEZ FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-09-27', 904420.00, 'A'), - (90, 1, 'LEYTON GONZALEZ FREDY RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-24', 705130.00, 'A'), - (901, 1, 'HERNANDEZ JOSE ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 130266, '2011-05-23', 964010.00, 'A'), - (903, 3, 'GONZALEZ MALDONADO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2010-11-13', 576500.00, 'A'), - (904, 1, 'OCHOA BARRIGA JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 130266, '2011-05-05', 401380.00, 'A'), - ('CELL3886', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (905, 1, 'OSORIO REDONDO JESUS DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2011-08-11', 277390.00, 'A'), - (906, 1, 'BAYONA BARRIENTOS JEAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-01-25', 182820.00, 'A'), - (907, 1, 'MARTINEZ GOMEZ CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2010-03-11', 81940.00, 'A'), - (908, 1, 'PUELLO LOPEZ GUILLERMO LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-08-12', 861240.00, 'A'), - (909, 1, 'MOGOLLON LONDONO PEDRO LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2011-06-22', 60380.00, 'A'), - (91, 1, 'ORTIZ RIOS JAVIER ADOLFO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-12', 813200.00, 'A'), - (911, 1, 'HERRERA HOYOS CARLOS FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2010-09-12', 409800.00, 'A'), - (912, 3, 'RIM MYUNG HWAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-15', 894450.00, 'A'), - (913, 3, 'BIANCO DORIEN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-29', 242820.00, 'A'), - (914, 3, 'FROIMZON WIEN DANIEL', 191821112, 'CRA 25 CALLE 100', '348@yahoo.com', '2011-02-03', 132165, '2010-11-06', 530780.00, 'A'), - (915, 3, 'ALVEZ AZEVEDO JOAO MIGUEL', 191821112, 'CRA 25 CALLE 100', '861@hotmail.es', '2011-02-03', 127591, '2009-06-25', 925420.00, 'A'), - (916, 3, 'CARRASCO DIAZ LUIS ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-02', 34780.00, 'A'), - (917, 3, 'VIVALLOS MEDINA LEONEL EDMUNDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-09-12', 397640.00, 'A'), - (919, 3, 'LASSE ANDRE BARKLIEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 286724, '2011-03-31', 226390.00, 'A'), - (92, 1, 'CUERVO CARDENAS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-08', 950630.00, 'A'), - (920, 3, 'BARCELOS PLOTEGHER LILIA MARA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-07', 480380.00, 'A'), - (921, 1, 'JARAMILLO ARANGO JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127559, '2011-06-28', 722700.00, 'A'), - (93, 3, 'RUIZ PRIETO WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 131272, '2011-01-19', 313540.00, 'A'), - (932, 7, 'COMFENALCO ANTIOQUIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-05', 515430.00, 'A'), - (94, 1, 'GALLEGO JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-25', 715830.00, 'A'), - (944, 3, 'KARMELIC PAVLOV VESNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 120066, '2010-08-07', 585580.00, 'A'), - (945, 3, 'RAMIREZ BORDON OSCAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-07-02', 526250.00, 'A'), - (946, 3, 'SORACCO CABEZA RODRIGO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-04', 874490.00, 'A'), - (949, 1, 'GALINDO JORGE ERNESTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127300, '2008-07-10', 344110.00, 'A'), - (950, 3, 'DR KNABLE THOMAS ERNST ALBERT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 256231, '2009-11-17', 685430.00, 'A'), - (953, 3, 'VELASQUEZ JANETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-20', 404650.00, 'A'), - (954, 3, 'SOZA REX JOSE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 150903, '2011-05-26', 269790.00, 'A'), - (955, 3, 'FONTANA GAETE JAIME PATRICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-01-11', 134970.00, 'A'), - (957, 3, 'PEREZ MARTINEZ GRECIA INDIRA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2010-08-27', 922610.00, 'A'), - (96, 1, 'FORERO CUBILLOS JORGEARTURO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-25', 45020.00, 'A'), - (97, 1, 'SILVA ACOSTA MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-19', 309580.00, 'A'), - (978, 3, 'BLUMENTHAL JAIRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117630, '2010-04-22', 653490.00, 'A'), - (984, 3, 'SUN XIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-01-17', 203630.00, 'A'), - (99, 1, 'CANO GUZMAN ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 135620.00, 'A'), - (999, 1, 'DRAGER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-12-22', 882070.00, 'A'), - ('CELL1020', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1083', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1153', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL126', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1326', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1329', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL133', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1413', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1426', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1529', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1651', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1760', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1857', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1879', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1902', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1921', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1962', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1992', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2006', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL215', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2307', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2322', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2497', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2641', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2736', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2805', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL281', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2905', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2963', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3029', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3090', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3161', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3302', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3309', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3325', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3372', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3422', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3514', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3562', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3652', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3661', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4334', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4440', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4547', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4639', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4662', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4698', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL475', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4790', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4838', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4885', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4939', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5064', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5066', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL51', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5102', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5116', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5192', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5226', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5250', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5282', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL536', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5503', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5506', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL554', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5544', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5595', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5648', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5801', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5821', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6201', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6277', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6288', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6358', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6369', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6408', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6425', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6439', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6509', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6533', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6556', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6731', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6766', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6775', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6802', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6834', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6890', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6953', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6957', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7024', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7216', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL728', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7314', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7431', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7432', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7513', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7522', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7617', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7623', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7708', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7777', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL787', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7907', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7951', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7956', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8004', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8058', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL811', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8136', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8162', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8286', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8300', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8339', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8366', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8389', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8446', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8487', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8546', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8578', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8643', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8774', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8829', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8846', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8942', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9046', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9110', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL917', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9189', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9241', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9331', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9429', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9434', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9495', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9517', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9558', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9650', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9748', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9830', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9878', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9893', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9945', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('T-Cx200', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx201', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx202', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx203', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx204', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx205', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx206', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx207', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx208', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx209', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx210', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx211', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx212', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx213', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx214', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('CELL4021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5255', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5730', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2540', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7376', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5471', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2588', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL570', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2854', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6683', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1382', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2051', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7086', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9220', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9701', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'); - --- --- Data for Name: personnes; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO personnes (cedula, tipo_documento_id, nombres, telefono, direccion, email, fecha_nacimiento, ciudad_id, creado_at, cupo, estado) VALUES - (1, 3, 'HUANG ZHENGQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-18', 6930.00, 'I'), - (100, 1, 'USME FERNANDEZ JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-04-15', 439480.00, 'A'), - (1003, 8, 'SINMON PEREZ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-25', 468610.00, 'A'), - (1009, 8, 'ARCINIEGAS Y VILLAMIZAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-08-12', 967680.00, 'A'), - (101, 1, 'CRANE DE NARVAEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-06-09', 790540.00, 'A'), - (1011, 8, 'EL EVENTO', 191821112, 'CRA 25 CALLE 100', '596@terra.com.co', '2011-02-03', 127591, '2011-05-24', 820390.00, 'A'), - (1020, 7, 'OSPINA YOLANDA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-02', 222970.00, 'A'), - (1025, 7, 'CHEMIPLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', 918670.00, 'A'), - (1034, 1, 'TAXI FILMS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-09-01', 962580.00, 'A'), - (104, 1, 'CASTELLANOS JIMENEZ NOE', 191821112, 'CRA 25 CALLE 100', '127@yahoo.es', '2011-02-03', 127591, '2011-10-05', 95230.00, 'A'), - (1046, 3, 'JACQUET PIERRE MICHEL ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 263489, '2011-07-23', 90810.00, 'A'), - (1048, 5, 'SPOERER VELEZ CARLOS JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-02-03', 184920.00, 'A'), - (1049, 3, 'SIDNEI DA SILVA LUIZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117630, '2011-07-02', 850180.00, 'A'), - (105, 1, 'HERRERA SEQUERA ALVARO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-26', 77390.00, 'A'), - (1050, 3, 'CAVALCANTI YUE CARLA HANLI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-31', 696130.00, 'A'), - (1052, 1, 'BARRETO RIVAS ELKIN MARTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 131508, '2011-09-19', 562160.00, 'A'), - (1053, 3, 'WANDERLEY ANTONIO ERNESTO THOME', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150617, '2011-01-31', 20490.00, 'A'), - (1054, 3, 'HE SHAN', 191821112, 'CRA 25 CALLE 100', '715@yahoo.es', '2011-02-03', 132958, '2010-10-05', 415970.00, 'A'), - (1055, 3, 'ZHRNG XIM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-05', 18380.00, 'A'), - (1057, 3, 'NICKEL GEB. STUTZ KARIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-10-08', 164850.00, 'A'), - (1058, 1, 'VELEZ PAREJA IGNACIO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2011-06-24', 292250.00, 'A'), - (1059, 3, 'GURKE RALF ERNST', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 287570, '2011-06-15', 966700.00, 'A'), - (106, 1, 'ESTRADA LONDONO JUAN SIMON', 191821112, 'CRA 25 CALLE 100', '8@terra.com.co', '2011-02-03', 128579, '2011-03-09', 101260.00, 'A'), - (1060, 1, 'MEDRANO BARRIOS WILSON', 191821112, 'CRA 25 CALLE 100', '479@facebook.com', '2011-02-03', 132775, '2011-06-18', 956740.00, 'A'), - (1061, 1, 'GERDTS PORTO HANS EDUARDO', 191821112, 'CRA 25 CALLE 100', '140@gmail.com', '2011-02-03', 127591, '2011-05-09', 883590.00, 'A'), - (1062, 1, 'BORGE VISBAL JORGE FIDEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132775, '2011-07-14', 547750.00, 'A'), - (1063, 3, 'GUTIERREZ JOSELYN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-06', 87960.00, 'A'), - (1064, 4, 'OVIEDO PINZON MARYI YULEY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2011-04-21', 796560.00, 'A'), - (1065, 1, 'VILORA SILVA OMAR ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2010-06-09', 718910.00, 'A'), - (1066, 3, 'AGUIAR ROMAN RODRIGO HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126674, '2011-06-28', 204890.00, 'A'), - (1067, 1, 'GOMEZ AGAMEZ ADOLFO DEL CRISTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131105, '2011-06-15', 867730.00, 'A'), - (1068, 3, 'GARRIDO CECILIA', 191821112, 'CRA 25 CALLE 100', '973@yahoo.com.mx', '2011-02-03', 118777, '2010-08-16', 723980.00, 'A'), - (1069, 1, 'JIMENEZ MANJARRES DAVID RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2010-12-17', 16680.00, 'A'), - (107, 1, 'ARANGUREN TEJADA JORGE ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-16', 274110.00, 'A'), - (1070, 3, 'OYARZUN TEJEDA ANDRES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-26', 911490.00, 'A'), - (1071, 3, 'MARIN BUCK RAFAEL ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126180, '2011-05-04', 507400.00, 'A'), - (1072, 3, 'VARGAS JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126674, '2011-07-28', 802540.00, 'A'), - (1073, 3, 'JUEZ JAIRALA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126180, '2010-04-09', 490510.00, 'A'), - (1074, 1, 'APONTE PENSO HERNAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132879, '2011-05-27', 44900.00, 'A'), - (1075, 1, 'PINERES BUSTILLO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126916, '2008-10-29', 752980.00, 'A'), - (1076, 1, 'OTERA OMA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-04-29', 630210.00, 'A'), - (1077, 3, 'CONTRERAS CHINCHILLA JUAN DOMINGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 139844, '2011-06-21', 892110.00, 'A'), - (1078, 1, 'GAMBA LAURENCIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-09-15', 569940.00, 'A'), - (108, 1, 'MUNOZ ARANGO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-01', 66770.00, 'A'), - (1080, 1, 'PRADA ABAUZA CARLOS AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-11-15', 156870.00, 'A'), - (1081, 1, 'PAOLA CAROLINA PINTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-27', 264350.00, 'A'), - (1082, 1, 'PALOMINO HERNANDEZ GERMAN JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-03-22', 851120.00, 'A'), - (1084, 1, 'URIBE DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '602@hotmail.es', '2011-02-03', 127591, '2011-09-07', 759470.00, 'A'), - (1085, 1, 'ARGUELLO CALDERON ARMANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-24', 409660.00, 'A'), - (1087, 1, 'CARVAJAL HERNANDEZ CHRISTIAN ARMANDO', 191821112, 'CRA 25 CALLE 100', '296@yahoo.es', '2011-02-03', 159432, '2011-06-03', 620410.00, 'A'), - (1088, 1, 'CASTRO BLANCO MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150512, '2009-10-08', 792400.00, 'A'), - (1089, 1, 'RIBEROS GUTIERREZ GUSTAVO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-01-27', 100800.00, 'A'), - (109, 1, 'BELTRAN MARIA LUZ DARY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-06', 511510.00, 'A'), - (1091, 4, 'ORTIZ ORTIZ BENIGNO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127538, '2011-08-05', 331540.00, 'A'), - (1092, 3, 'JOHN CHRISTOPHER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-08', 277320.00, 'A'), - (1093, 1, 'PARRA VILLAREAL MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 129499, '2011-08-23', 391980.00, 'A'), - (1094, 1, 'BESGA RODRIGUEZ JUAN JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-09-23', 127960.00, 'A'), - (1095, 1, 'ZAPATA MEZA EDGAR FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-05-19', 463840.00, 'A'), - (1096, 3, 'CORNEJO BRAVO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2010-11-08', 935340.00, 'A'), - ('CELL3944', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (1099, 1, 'GARCIA PORRAS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-14', 243360.00, 'A'), - (11, 1, 'HERNANDEZ PARDO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-31', 197540.00, 'A'), - (110, 1, 'VANEGAS JULIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-06', 357260.00, 'A'), - (1101, 1, 'QUINTERO BURBANO GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-08-20', 57420.00, 'A'), - (1102, 1, 'BOHORQUEZ AFANADOR CHRISTIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 214610.00, 'A'), - (1103, 1, 'MORA VARGAS JULIO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-29', 900790.00, 'A'), - (1104, 1, 'PINEDA JORGE ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-21', 860110.00, 'A'), - (1105, 1, 'TORO CEBALLOS GONZALO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 129499, '2011-08-18', 598180.00, 'A'), - (1106, 1, 'SCHENIDER TORRES JAIME', 191821112, 'CRA 25 CALLE 100', '85@yahoo.com.mx', '2011-02-03', 127799, '2011-08-11', 410590.00, 'A'), - (1107, 1, 'RUEDA VILLAMIZAR JAIME', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-11-15', 258410.00, 'A'), - (1108, 1, 'RUEDA VILLAMIZAR RICARDO JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129499, '2011-03-22', 60260.00, 'A'), - (1109, 1, 'GOMEZ RODRIGUEZ HERNANDO ARTURO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-06-02', 526080.00, 'A'), - (111, 1, 'FRANCISCO EDUARDO JAIME BOTERO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-09-09', 251770.00, 'A'), - (1110, 1, 'HERNANDEZ MENDEZ EDGAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 129499, '2011-03-22', 449610.00, 'A'), - (1113, 1, 'LEON HERNANDEZ OSCAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129499, '2011-03-21', 992090.00, 'A'), - (1114, 1, 'LIZARAZO CARRENO HUGO ARCENIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2010-12-10', 959490.00, 'A'), - (1115, 1, 'LIAN BARRERA GABRIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-05-30', 821170.00, 'A'), - (1117, 3, 'TELLEZ BEZAN FRANCISCO JAVIER ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-08-21', 673430.00, 'A'), - (1118, 1, 'FUENTES ARIZA DIEGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-09', 684970.00, 'A'), - (1119, 1, 'MOLINA M. ROBINSON', 191821112, 'CRA 25 CALLE 100', '728@hotmail.com', '2011-02-03', 129447, '2010-09-19', 404580.00, 'A'), - (112, 1, 'PATINO PINTO ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-06', 187050.00, 'A'), - (1120, 1, 'ORTIZ DURAN BENIGNO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127538, '2011-08-05', 967970.00, 'A'), - (1121, 1, 'CARVAJAL ALMEIDA LUIS RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2011-06-22', 626140.00, 'A'), - (1122, 1, 'TORRES QUIROGA EDWIN SILVESTRE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 129447, '2011-08-17', 226780.00, 'A'), - (1123, 1, 'VIVIESCAS JAIMES ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-10', 255480.00, 'A'), - (1124, 1, 'MARTINEZ RUEDA JAVIER EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129447, '2011-06-23', 597040.00, 'A'), - (1125, 1, 'ANAYA FLORES JORGE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-06-04', 218790.00, 'A'), - (1126, 3, 'TORRES MARTINEZ ANTONIO JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2010-09-02', 302820.00, 'A'), - (1127, 3, 'CACHO LEVISIER JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 153276, '2009-06-25', 857720.00, 'A'), - (1129, 3, 'ULLOA VALDIVIESO CRISTIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-06-02', 327570.00, 'A'), - (113, 1, 'HIGUERA CALA JAIME ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-27', 179950.00, 'A'), - (1130, 1, 'ARCINIEGAS WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126892, '2011-08-05', 497420.00, 'A'), - (1131, 1, 'BAZA ACUNA JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129447, '2010-12-10', 504410.00, 'A'), - (1132, 3, 'BUIRA ROS CARLOS MARIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-04-27', 29750.00, 'A'), - (1133, 1, 'RODRIGUEZ JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 129447, '2011-06-10', 635560.00, 'A'), - (1134, 1, 'QUIROGA PEREZ NELSON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 129447, '2011-05-18', 88520.00, 'A'), - (1135, 1, 'TATIANA AYALA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127122, '2011-07-01', 535920.00, 'A'), - (1136, 1, 'OSORIO BENEDETTI FABIAN AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2010-10-23', 414060.00, 'A'), - (1139, 1, 'CELIS PINTO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2009-02-25', 964970.00, 'A'), - (114, 1, 'VALDERRAMA CUERVO JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-02', 338590.00, 'A'), - (1140, 1, 'ORTIZ ARENAS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2009-10-21', 613300.00, 'A'), - (1141, 1, 'VALDIVIESO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2009-01-13', 171590.00, 'A'), - (1144, 1, 'LOPEZ CASTILLO NELSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 129499, '2010-09-09', 823110.00, 'A'), - (1145, 1, 'CAVELIER LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126916, '2008-11-29', 389220.00, 'A'), - (1146, 1, 'CAVELIER OTOYA LUIS EDURDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126916, '2010-05-25', 476770.00, 'A'), - (1147, 1, 'GARCIA RUEDA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '111@yahoo.es', '2011-02-03', 133535, '2010-09-12', 216190.00, 'A'), - (1148, 1, 'LADINO GOMEZ OMAR ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-02', 650640.00, 'A'), - (1149, 1, 'CARRENO ORTIZ OSCAR JAVIER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-15', 604630.00, 'A'), - (115, 1, 'NARDEI BONILLO BRUNO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-16', 153110.00, 'A'), - (1150, 1, 'MONTOYA BOZZI MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 129499, '2011-05-12', 71240.00, 'A'), - (1152, 1, 'LORA RICHARD JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-09-15', 497700.00, 'A'), - (1153, 1, 'SILVA PINZON MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '915@hotmail.es', '2011-02-03', 127591, '2011-06-15', 861670.00, 'A'), - (1154, 3, 'GEORGE J A KHALILIEH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-20', 815260.00, 'A'), - (1155, 3, 'CHACON MARIN CARLOS MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-07-26', 491280.00, 'A'), - (1156, 3, 'OCHOA CHEHAB XAVIER ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 126180, '2011-06-13', 10630.00, 'A'), - (1157, 3, 'ARAYA GARRI GABRIEL ALEXIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-09-19', 579320.00, 'A'), - (1158, 3, 'MACCHI ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116366, '2010-04-12', 864690.00, 'A'), - (116, 1, 'GONZALEZ FANDINO JAIME EDUARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-10', 749800.00, 'A'), - (1160, 1, 'CAVALIER LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126916, '2009-08-27', 333390.00, 'A'), - ('CELL396', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (1161, 3, 'DOMINGUEZ DE OBREGON ILEANA DEL CARMEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 139844, '2011-03-06', 910490.00, 'A'), - (1162, 2, 'FALASCA CLAUDIO ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116511, '2011-07-10', 552280.00, 'A'), - (1163, 3, 'MUTABARUKA PATRICK', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131352, '2011-03-22', 29940.00, 'A'), - (1164, 1, 'DOMINGUEZ ATENCIA JIMMY CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-22', 492860.00, 'A'), - (1165, 4, 'LLANO GONZALEZ ALBERTO MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2010-08-21', 374490.00, 'A'), - (1166, 3, 'LOPEZ ROLDAN JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-07-31', 393860.00, 'A'), - (1167, 1, 'GUTIERREZ DE PINERES JALILIE ARISTIDES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2010-12-09', 845810.00, 'A'), - (1168, 1, 'HEYMANS PIERRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2010-11-08', 47470.00, 'A'), - (1169, 1, 'BOTERO OSORIO RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2009-05-27', 699940.00, 'A'), - (1170, 3, 'GARNHAM POBLETE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 116396, '2011-03-27', 357270.00, 'A'), - (1172, 1, 'DAJUD DURAN JOSE RODRIGO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2009-12-02', 360910.00, 'A'), - (1173, 1, 'MARTINEZ MERCADO PEDRO PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-07-25', 744930.00, 'A'), - (1174, 1, 'GARCIA AMADOR ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-05-19', 641930.00, 'A'), - (1176, 1, 'VARGAS VARELA LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 131568, '2011-08-30', 948410.00, 'A'), - (1178, 1, 'GUTIERRES DE PINERES ARISTIDES', 191821112, 'CRA 25 CALLE 100', '217@hotmail.com', '2011-02-03', 133535, '2011-05-10', 242490.00, 'A'), - (1179, 3, 'LEIZAOLA POZO JIMENA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2011-08-01', 759800.00, 'A'), - (118, 1, 'FERNANDEZ VELOSO PEDRO HERNANDO', 191821112, 'CRA 25 CALLE 100', '452@hotmail.es', '2011-02-03', 128662, '2010-08-06', 198830.00, 'A'), - (1180, 3, 'MARINO PAOLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-12-24', 71520.00, 'A'), - (1181, 1, 'MOLINA VIZCAINO GUSTAVO JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-28', 78220.00, 'A'), - (1182, 3, 'MEDEL GARCIA FABIAN RODRIGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-04-25', 176540.00, 'A'), - (1183, 1, 'LESMES ARIAS RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-09-09', 648020.00, 'A'), - (1184, 1, 'ALCALA MARTINEZ ALFREDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132775, '2010-07-23', 710470.00, 'A'), - (1186, 1, 'LLAMAS FOLIACO LUIS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-07', 910210.00, 'A'), - (1187, 1, 'GUARDO DEL RIO LIBARDO FARID', 191821112, 'CRA 25 CALLE 100', '73@yahoo.com.mx', '2011-02-03', 128662, '2011-09-01', 726050.00, 'A'), - (1188, 3, 'JEFFREY ARTHUR DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 115724, '2011-03-21', 899630.00, 'A'), - (1189, 1, 'DAHL VELEZ JULIANA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126916, '2011-05-23', 320020.00, 'A'), - (119, 3, 'WALESKA DE LIMA ALMEIDA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-05-09', 125240.00, 'A'), - (1190, 3, 'LUIS JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2008-04-04', 901210.00, 'A'), - (1192, 1, 'AZUERO VALENTINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-14', 26310.00, 'A'), - (1193, 1, 'MARQUEZ GALINDO MAURICIO JAVIER', 191821112, 'CRA 25 CALLE 100', '729@yahoo.es', '2011-02-03', 131105, '2011-05-13', 493560.00, 'A'), - (1195, 1, 'NIETO FRANCO JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '707@yahoo.com', '2011-02-03', 127591, '2011-07-30', 463790.00, 'A'), - (1196, 3, 'ESTEVES JOAQUIM LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-04-05', 152270.00, 'A'), - (1197, 4, 'BARRERO KAREN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-12', 369990.00, 'A'), - (1198, 1, 'CORRALES GUZMAN DELIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127689, '2011-08-03', 393120.00, 'A'), - (1199, 1, 'CUELLAR TOCO EDGAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127531, '2011-09-20', 855640.00, 'A'), - (12, 1, 'MARIN PRIETO FREDY NELSON ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-23', 641210.00, 'A'), - (120, 1, 'LOPEZ JARAMILLO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2009-04-17', 29680.00, 'A'), - (1200, 3, 'SCHULTER ACHIM', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 291002, '2010-05-21', 98860.00, 'A'), - (1201, 3, 'HOWELL LAURENCE ADRIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 286785, '2011-05-22', 927350.00, 'A'), - (1202, 3, 'ALCAZAR ESCARATE JAIME PATRICIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-08-25', 340160.00, 'A'), - (1203, 3, 'HIDALGO FUENZALIDA GABRIEL RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-03', 918780.00, 'A'), - (1206, 1, 'VANEGAS HENAO ORLANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-27', 832910.00, 'A'), - (1207, 1, 'PENARANDA ARIAS RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-19', 832710.00, 'A'), - (1209, 1, 'LEZAMA CERVERA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2011-09-14', 825980.00, 'A'), - (121, 1, 'PULIDO JIMENEZ OSCAR HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-29', 772700.00, 'A'), - (1211, 1, 'TRUJILLO BOCANEGRA HAROL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127538, '2011-05-27', 199260.00, 'A'), - (1212, 1, 'ALVAREZ TORRES MARIO RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-08-15', 589960.00, 'A'), - (1213, 1, 'CORRALES VARON BELMER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-26', 352030.00, 'A'), - (1214, 3, 'CUEVAS RODRIGUEZ MANUELA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-30', 990250.00, 'A'), - (1216, 1, 'LOPEZ EDICSON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-31', 505210.00, 'A'), - (1217, 3, 'GARCIA PALOMARES JUAN JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-07-31', 840440.00, 'A'), - (1218, 1, 'ARCINIEGAS NARANJO RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127492, '2010-12-17', 686610.00, 'A'), - (122, 1, 'GONZALEZ RIANO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128031, '2011-08-05', 774450.00, 'A'), - (1220, 1, 'GARCIA GUTIERREZ WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-06-20', 498680.00, 'A'), - (1221, 3, 'GOMEZ DE ALONSO ANGELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-27', 758300.00, 'A'), - (1222, 1, 'MEDINA QUIROGA JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127538, '2011-01-16', 295480.00, 'A'), - (1224, 1, 'ARCILA CORREA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-03-20', 125900.00, 'A'), - (1225, 1, 'QUIJANO REYES CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2010-04-08', 22100.00, 'A'), - (157, 1, 'ORTIZ RIOS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-12', 365330.00, 'A'), - (1226, 1, 'VARGAS GALLEGO JAIRO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2009-07-30', 732820.00, 'A'), - (1228, 3, 'NAPANGA MIRENGHI MARTIN', 191821112, 'CRA 25 CALLE 100', '153@yahoo.es', '2011-02-03', 132958, '2011-02-08', 790400.00, 'A'), - (123, 1, 'LAMUS CASTELLANOS ANDRES RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-11', 554160.00, 'A'), - (1230, 1, 'RIVEROS PINEROS JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127492, '2011-09-25', 422220.00, 'A'), - (1231, 3, 'ESSER JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127327, '2011-04-01', 635060.00, 'A'), - (1232, 3, 'DOMINGUEZ MORA MAURICIO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-22', 908630.00, 'A'), - (1233, 3, 'MOLINA FERNANDEZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-05-28', 637990.00, 'A'), - (1234, 3, 'BELLO DANIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 196234, '2010-09-04', 464040.00, 'A'), - (1235, 3, 'BENADAVA GUEVARA DAVID ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-05-18', 406240.00, 'A'), - (1236, 3, 'RODRIGUEZ MATOS ROBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-03-22', 639070.00, 'A'), - (1237, 3, 'TAPIA ALARCON PATRICIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2010-07-06', 976620.00, 'A'), - (1239, 3, 'VERCHERE ALFONSO CHRISTIAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2010-08-23', 899600.00, 'A'), - (1241, 1, 'ESPINEL LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128206, '2009-03-09', 302860.00, 'A'), - (1242, 3, 'VERGARA FERREIRA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-03', 713310.00, 'A'), - (1243, 3, 'ZUMARRAGA SIRVENT CRSTINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-08-24', 657950.00, 'A'), - (1244, 4, 'ESCORCIA VASQUEZ TOMAS', 191821112, 'CRA 25 CALLE 100', '354@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', 149830.00, 'A'), - (1245, 4, 'PARAMO CUENCA KELLY LORENA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127492, '2011-05-04', 775300.00, 'A'), - (1246, 4, 'PEREZ LOPEZ VERONICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-07-11', 426990.00, 'A'), - (1247, 4, 'CHAPARRO RODRIGUEZ DANIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-08', 809070.00, 'A'), - (1249, 4, 'DIAZ MARTINEZ MARIA CAROLINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2011-05-30', 394740.00, 'A'), - (125, 1, 'CALDON RODRIGUEZ JAIME ARIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126968, '2011-07-29', 574780.00, 'A'), - (1250, 4, 'PINEDA VASQUEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2010-09-03', 680540.00, 'A'), - (1251, 5, 'MATIZ URIBE ANGELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-12-25', 218470.00, 'A'), - (1253, 1, 'ZAMUDIO RICAURTE JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126892, '2011-08-05', 598160.00, 'A'), - (1254, 1, 'ALJURE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-21', 838660.00, 'A'), - (1255, 3, 'ARMESTO AIRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 196234, '2011-01-29', 398840.00, 'A'), - (1257, 1, 'POTES GUEVARA JAIRO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127858, '2011-03-17', 194580.00, 'A'), - (1258, 1, 'BURBANO QUIROGA RAFAEL', 191821112, 'CRA 25 CALLE 100', '767@facebook.com', '2011-02-03', 127591, '2011-04-07', 538220.00, 'A'), - (1259, 1, 'CARDONA GOMEZ JAVIR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-03-16', 107380.00, 'A'), - (126, 1, 'PULIDO PARDO GUIDO IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-05', 531550.00, 'A'), - (1260, 1, 'LOPERA LEDESMA PABLO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-19', 922240.00, 'A'), - (1263, 1, 'TRIBIN BARRIGA JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-09-02', 525330.00, 'A'), - (1264, 1, 'NAVIA LOPEZ ANDRES FELIPE ', 191821112, 'CRA 25 CALLE 100', '353@hotmail.es', '2011-02-03', 127300, '2011-07-15', 591190.00, 'A'), - (1265, 1, 'CARDONA GOMEZ FABIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2010-11-18', 379940.00, 'A'), - (1266, 1, 'ESCARRIA VILLEGAS ANDRES JULIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-08-19', 126160.00, 'A'), - (1268, 1, 'CASTRO HERNANDEZ ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-03-25', 76260.00, 'A'), - (127, 1, 'RODRIGUEZ RODRIGUEZ GIOVANI FRANCISCO', 191821112, 'CRA 25 CALLE 100', '662@hotmail.es', '2011-02-03', 127591, '2011-09-29', 933390.00, 'A'), - (1270, 1, 'LEAL HERNANDEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', 313610.00, 'A'), - (1272, 1, 'ORTIZ CARDONA WILLIAM ENRIQUE', 191821112, 'CRA 25 CALLE 100', '914@hotmail.com', '2011-02-03', 128662, '2011-09-13', 272150.00, 'A'), - (1273, 1, 'ROMERO VAN GOMPEL HERNAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-09-07', 832960.00, 'A'), - (1274, 1, 'BERMUDEZ LONDONO JHON FREDY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-08-29', 348380.00, 'A'), - (1275, 1, 'URREA ALVAREZ NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-01', 242980.00, 'A'), - (1276, 1, 'VALENCIA LLANOS RODRIGO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-04-11', 169790.00, 'A'), - (1277, 1, 'PAZ VALENCIA GUILLERMO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127300, '2011-08-05', 120020.00, 'A'), - (1278, 1, 'MONROY CORREDOR GERARDO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-06-25', 90700.00, 'A'), - (1279, 1, 'RIOS MEDINA JAVIER ERMINSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-12', 93440.00, 'A'), - (128, 1, 'GALLEGO GUZMAN MARIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-06-25', 72290.00, 'A'), - (1280, 1, 'GARCIA OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-30', 195090.00, 'A'), - (1282, 1, 'MURILLO PESELLIN GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-06-15', 890530.00, 'A'), - (1284, 1, 'DIAZ ALVAREZ JOHNY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-06-25', 164130.00, 'A'), - (1285, 1, 'GARCES BELTRAN RAUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-08-11', 719220.00, 'A'), - (1286, 1, 'MATERON POVEDA LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-25', 103710.00, 'A'), - (1287, 1, 'VALENCIA ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-10-23', 360880.00, 'A'), - (1288, 1, 'PENA AGUDELO JOSE RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 134022, '2011-05-25', 493280.00, 'A'), - (1289, 1, 'CORREA NUNEZ JORGE ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-08-18', 383750.00, 'A'), - (129, 1, 'ALVAREZ RODRIGUEZ IVAN RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2008-01-28', 561290.00, 'A'), - (1291, 1, 'BEJARANO ROSERO FREDDY ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-09', 43400.00, 'A'), - (1292, 1, 'CASTILLO BARRIOS GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-06-17', 900180.00, 'A'), - ('CELL401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (1296, 1, 'GALVEZ GUTIERREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2010-03-28', 807090.00, 'A'), - (1297, 3, 'CRUZ GARCIA MILTON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 139844, '2011-03-21', 75630.00, 'A'), - (1298, 1, 'VILLEGAS GUTIERREZ JOSE RICARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-11', 956860.00, 'A'), - (13, 1, 'VACA MURCIA JESUS ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-04', 613430.00, 'A'), - (1301, 3, 'BOTTI ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 231989, '2011-04-04', 910640.00, 'A'), - (1302, 3, 'COTINO HUESO LORENZO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-02-02', 803450.00, 'A'), - (1304, 3, 'NESPOLI MANTOVANI LUIZ CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-04-18', 16230.00, 'A'), - (1307, 4, 'AVILA GIL PAULA ANDREA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-19', 711110.00, 'A'), - (1308, 4, 'VALLEJO PINEDA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-12', 323490.00, 'A'), - (1312, 1, 'ROMERO OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-17', 642460.00, 'A'), - (1314, 3, 'LULLIES CONSTANZE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 245206, '2010-06-03', 154970.00, 'A'), - (1315, 1, 'CHAPARRO GUTIERREZ JORGE ADRIANO', 191821112, 'CRA 25 CALLE 100', '284@hotmail.es', '2011-02-03', 127591, '2010-12-02', 325440.00, 'A'), - (1316, 1, 'BARRANTES DISI RICARDO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132879, '2011-07-18', 162270.00, 'A'), - (1317, 3, 'VERDES GAGO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2010-03-10', 835060.00, 'A'), - (1319, 3, 'MARTIN MARTINEZ GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2010-05-26', 937220.00, 'A'), - (1320, 3, 'MOTTURA MASSIMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2008-11-10', 620640.00, 'A'), - (1321, 3, 'RUSSELL TIMOTHY JAMES', 191821112, 'CRA 25 CALLE 100', '502@hotmail.es', '2011-02-03', 145135, '2010-04-16', 291560.00, 'A'), - (1322, 3, 'JAIN TARSEM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 190393, '2011-05-31', 595890.00, 'A'), - (1323, 3, 'ORTEGA CEVALLOS JULIETA ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-30', 104760.00, 'A'), - (1324, 3, 'MULLER PICHAIDA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-05-17', 736130.00, 'A'), - (1325, 3, 'ALVEAR TELLEZ JULIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-01-23', 366390.00, 'A'), - (1327, 3, 'MOYA LATORRE MARCELA CAROLINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-05-17', 18520.00, 'A'), - (1328, 3, 'LAMA ZAROR RODRIGO IGNACIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2010-10-27', 221990.00, 'A'), - (1329, 3, 'HERNANDEZ CIFUENTES MAURICE JEANETTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 139844, '2011-06-22', 54410.00, 'A'), - (133, 1, 'CORDOBA HOYOS JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-20', 966820.00, 'A'), - (1330, 2, 'HOCHKOFLER NOEMI CONSUELO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-27', 606070.00, 'A'), - (1331, 4, 'RAMIREZ BARRERO DANIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 154563, '2011-04-18', 867120.00, 'A'), - (1332, 4, 'DE LEON DURANGO RICARDO JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131105, '2011-09-08', 517400.00, 'A'), - (1333, 4, 'RODRIGUEZ MACIAS IVAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129447, '2011-05-23', 985620.00, 'A'), - (1334, 4, 'GUTIERREZ DE PINERES YANET MARIA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-06-16', 375890.00, 'A'), - (1335, 4, 'GUTIERREZ DE PINERES YANET MARIA GABRIELA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-06-16', 922600.00, 'A'), - (1336, 4, 'CABRALES BECHARA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '708@hotmail.com', '2011-02-03', 131105, '2011-05-13', 485330.00, 'A'), - (1337, 4, 'MEJIA TOBON LUIS DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127662, '2011-08-05', 658860.00, 'A'), - (1338, 3, 'OROS NERCELLES CRISTIAN ANDRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 144215, '2011-04-26', 838310.00, 'A'), - (1339, 3, 'MORENO BRAVO CAROLINA ANDREA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 190393, '2010-12-08', 214950.00, 'A'), - (134, 1, 'GONZALEZ LOPEZ DANIEL ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-08', 178580.00, 'A'), - (1340, 3, 'FERNANDEZ GARRIDO MARCELO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-07-08', 559820.00, 'A'), - (1342, 3, 'SUMEGI IMRE ZOLTAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-16', 91750.00, 'A'), - (1343, 3, 'CALDERON FLANDEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '108@hotmail.com', '2011-02-03', 117002, '2010-12-12', 996030.00, 'A'), - (1345, 3, 'CARBONELL ATCHUGARRY GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116366, '2010-04-12', 536390.00, 'A'), - (1346, 3, 'MONTEALEGRE AGUILAR FEDERICO ', 191821112, 'CRA 25 CALLE 100', '448@yahoo.es', '2011-02-03', 132165, '2011-08-08', 567260.00, 'A'), - (1347, 1, 'HERNANDEZ MANCHEGO CARLOS JULIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-04-28', 227130.00, 'A'), - (1348, 1, 'ARENAS ZARATE FERNEY ARNULFO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127963, '2011-03-26', 433860.00, 'A'), - (1349, 3, 'DELFIM DINIZ PASSOS PINHEIRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 110784, '2010-04-17', 487930.00, 'A'), - (135, 1, 'GARCIA SIMBAQUEBA RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 992420.00, 'A'), - (1350, 3, 'BRAUN VALENZUELA FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-29', 138050.00, 'A'), - (1351, 3, 'LEVIN FIORELLI ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 116366, '2011-04-10', 226470.00, 'A'), - (1353, 3, 'BALTODANO ESQUIVEL LAURA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-08-01', 911660.00, 'A'), - (1354, 4, 'ESCOBAR YEPES ANDREA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-19', 403630.00, 'A'), - (1356, 1, 'GAGELI OSORIO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '228@yahoo.com.mx', '2011-02-03', 128662, '2011-07-14', 205070.00, 'A'), - (1357, 3, 'CABAL ALVAREZ RUBEN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-08-14', 175770.00, 'A'), - (1359, 4, 'HUERFANO JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-04', 790970.00, 'A'), - (136, 1, 'OSORIO RAMIREZ LEONARDO', 191821112, 'CRA 25 CALLE 100', '686@yahoo.es', '2011-02-03', 128662, '2010-05-14', 426380.00, 'A'), - (1360, 4, 'RAMON GARCIA MARIA PAULA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-01', 163890.00, 'A'), - (1362, 30, 'ALVAREZ CLAVIO CARLA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127203, '2011-04-18', 741020.00, 'A'), - (1363, 3, 'SERRA DURAN GERARDO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-03', 365490.00, 'A'), - (1364, 3, 'NORIEGA VALVERDE SILVIA MARCELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132775, '2011-02-27', 604370.00, 'A'), - (1366, 1, 'JARAMILLO LOPEZ ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '269@terra.com.co', '2011-02-03', 127559, '2010-11-08', 813800.00, 'A'), - (1367, 1, 'MAZO ROLDAN CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-04', 292880.00, 'A'), - (1368, 1, 'MURIEL ARCILA MAURICIO HERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-29', 22970.00, 'A'), - (1369, 1, 'RAMIREZ CARLOS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-14', 236230.00, 'A'), - (137, 1, 'LUNA PEREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126881, '2011-08-05', 154640.00, 'A'), - (1370, 1, 'GARCIA GRAJALES PEDRO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128166, '2011-10-09', 112230.00, 'A'), - (1372, 3, 'GARCIA ESCOBAR ANA MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-29', 925670.00, 'A'), - (1373, 3, 'ALVES DIAS CARLOS AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-07', 70940.00, 'A'), - (1374, 3, 'MATTOS CHRISTIANE GARCIA CID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 183024, '2010-08-25', 577700.00, 'A'), - (1376, 1, 'CARVAJAL ROJAS ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-10', 645240.00, 'A'), - (1377, 3, 'MADARIAGA CADIZ CLAUDIO CRISTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-10-04', 199200.00, 'A'), - (1379, 3, 'MARIN YANEZ ALICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-02-20', 703870.00, 'A'), - (138, 1, 'DIAZ AVENDANO MARCELO IVAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-22', 494080.00, 'A'), - (1381, 3, 'COSTA VILLEGAS LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-08-21', 580670.00, 'A'), - (1382, 3, 'DAZA PEREZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 122035, '2009-02-23', 888000.00, 'A'), - (1385, 4, 'RIVEROS ARIAS MARIA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127492, '2011-09-26', 35710.00, 'A'), - (1386, 30, 'TORO GIRALDO MATEO', 191821112, 'CRA 25 CALLE 100', '433@yahoo.com.mx', '2011-02-03', 127591, '2011-07-17', 700730.00, 'A'), - (1387, 4, 'ROJAS YARA LAURA DANIELA MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-31', 396530.00, 'A'), - (1388, 3, 'GALLEGO RODRIGO MARIA PILAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2009-04-19', 880450.00, 'A'), - (1389, 1, 'PANTOJA VELASQUEZ JOSE ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2011-08-05', 212660.00, 'A'), - (139, 1, 'RANCO GOMEZ HERNÁN EDUARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-01-19', 6450.00, 'A'), - (1390, 3, 'VAN DEN BORNE KEES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2010-01-28', 421930.00, 'A'), - (1391, 3, 'MONDRAGON FLORES JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-08-22', 471700.00, 'A'), - (1392, 3, 'BAGELLA MICHELE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-07-27', 92720.00, 'A'), - (1393, 3, 'BISTIANCIC MACHADO ANA INES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 116366, '2010-08-02', 48490.00, 'A'), - (1394, 3, 'BANADOS ORTIZ MARIA PILAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-08-25', 964280.00, 'A'), - (1395, 1, 'CHINDOY CHINDOY HERNANDO', 191821112, 'CRA 25 CALLE 100', '107@terra.com.co', '2011-02-03', 126892, '2011-08-25', 675920.00, 'A'), - (1396, 3, 'SOTO NUNEZ ANDRES ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-10-02', 486760.00, 'A'), - (1397, 1, 'DELGADO MARTINEZ LORGE ELIAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-23', 406040.00, 'A'), - (1398, 1, 'LEON GUEVARA JAVIER ANIBAL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126892, '2011-09-08', 569930.00, 'A'), - (1399, 1, 'ZARAMA BASTIDAS LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126892, '2011-08-05', 631540.00, 'A'), - (14, 1, 'MAGUIN HENNSSEY LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '714@gmail.com', '2011-02-03', 127591, '2011-07-11', 143540.00, 'A'), - (140, 1, 'CARRANZA CUY ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-25', 550010.00, 'A'), - (1401, 3, 'REYNA CASTORENA JOSE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 189815, '2011-08-29', 344970.00, 'A'), - (1402, 1, 'GFALLO BOTERO SERGIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-07-14', 381100.00, 'A'), - (1403, 1, 'ARANGO ARAQUE JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-05-04', 870590.00, 'A'), - (1404, 3, 'LASSNER NORBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118942, '2010-02-28', 209650.00, 'A'), - (1405, 1, 'DURANGO MARIN HECTOR LEON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '1970-02-02', 436480.00, 'A'), - (1407, 1, 'FRANCO CASTANO DIEGO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-06-28', 457770.00, 'A'), - (1408, 1, 'HERNANDEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-05-29', 628550.00, 'A'), - (1409, 1, 'CASTANO DUQUE CARLOS HUGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-03-23', 769410.00, 'A'), - (141, 1, 'CHAMORRO CHEDRAUI SERGIO ALBERTO', 191821112, 'CRA 25 CALLE 100', '922@yahoo.com.mx', '2011-02-03', 127591, '2011-05-07', 730720.00, 'A'), - (1411, 1, 'RAMIREZ MONTOYA ADAMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-04-13', 498880.00, 'A'), - (1412, 1, 'GONZALEZ BENJUMEA OSCAR HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-11-01', 610150.00, 'A'), - (1413, 1, 'ARANGO ACEVEDO WALTER ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-10-07', 554090.00, 'A'), - (1414, 1, 'ARANGO GALLO HUMBERTO LEON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-02-25', 940010.00, 'A'), - (1415, 1, 'VELASQUEZ LUIS GONZALO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-07-06', 37760.00, 'A'), - (1416, 1, 'MIRA AGUILAR FRANCISCO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-30', 368790.00, 'A'), - (1417, 1, 'RIVERA ARISTIZABAL CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-03-02', 730670.00, 'A'), - (1418, 1, 'ARISTIZABAL ROLDAN ANDRES RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-02', 546960.00, 'A'), - (142, 1, 'LOPEZ ZULETA MAURICIO ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-01', 3550.00, 'A'), - (1420, 1, 'ESCORCIA ARAMBURO JUAN MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', 73100.00, 'A'), - (1421, 1, 'CORREA PARRA RICARDO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-05', 737110.00, 'A'), - (1422, 1, 'RESTREPO NARANJO DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-09-15', 466240.00, 'A'), - (1423, 1, 'VELASQUEZ CARLOS JUAN', 191821112, 'CRA 25 CALLE 100', '123@yahoo.com', '2011-02-03', 128662, '2010-06-09', 119880.00, 'A'), - (1424, 1, 'MACIA GONZALEZ ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2010-11-12', 200690.00, 'A'), - (1425, 1, 'BERRIO MEJIA HELBER ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2010-06-04', 643800.00, 'A'), - (1427, 1, 'GOMEZ GUTIERREZ CARLOS ARIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-09-08', 153320.00, 'A'), - (1428, 1, 'RESTREPO LOPEZ JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-12', 915770.00, 'A'), - ('CELL4012', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (1429, 1, 'BARTH TOBAR LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-02-23', 118900.00, 'A'), - (143, 1, 'MUNERA BEDIYA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-09-21', 825600.00, 'A'), - (1430, 1, 'JIMENEZ VELEZ ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-02-26', 847160.00, 'A'), - (1431, 1, 'TAKAHASHI GAVIRIA NICOLAS KEIICHIRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-13', 879120.00, 'A'), - (1432, 1, 'ESCOBAR JARAMILLO ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-06-10', 854110.00, 'A'), - (1433, 1, 'PALACIO NAVARRO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-08-18', 633200.00, 'A'), - (1434, 1, 'LONDONO MUNOZ ADOLFO LEON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-09-14', 603670.00, 'A'), - (1435, 1, 'PULGARIN JAIME ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2009-11-01', 118730.00, 'A'), - (1436, 1, 'FERRERA ZULUAGA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-07-10', 782630.00, 'A'), - (1437, 1, 'VASQUEZ VELEZ HABACUC', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-27', 557000.00, 'A'), - (1438, 1, 'HENAO PALOMINO DIEGO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2009-05-06', 437080.00, 'A'), - (1439, 1, 'HURTADO URIBE JUAN GONZALO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-01-11', 514400.00, 'A'), - (144, 1, 'ALDANA RODOLFO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '838@yahoo.es', '2011-02-03', 127591, '2011-08-07', 117350.00, 'A'), - (1441, 1, 'URIBE DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2010-11-19', 760610.00, 'A'), - (1442, 1, 'PINEDA GALIANO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-07-29', 20770.00, 'A'), - (1443, 1, 'DUQUE BETANCOURT FABIO LEON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-26', 822030.00, 'A'), - (1444, 1, 'JARAMILLO TORO HERNAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-04-27', 47830.00, 'A'), - (145, 1, 'VASQUEZ ZAPATA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-09', 109940.00, 'A'), - (1450, 1, 'TOBON FRANCO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '545@facebook.com', '2011-02-03', 127591, '2011-05-03', 889540.00, 'A'), - (1454, 1, 'LOTERO PAVAS CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-28', 646750.00, 'A'), - (1455, 1, 'ESTRADA HENAO JAVIER ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128569, '2009-09-07', 215460.00, 'A'), - (1456, 1, 'VALDERRAMA MAXIMILIANO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-23', 137030.00, 'A'), - (1457, 3, 'ESTRADA ALVAREZ GONZALO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 154903, '2011-05-02', 38790.00, 'A'), - (1458, 1, 'PAUCAR VALLEJO JAIRO ALONSO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-10-15', 782860.00, 'A'), - (1459, 1, 'RESTREPO GIRALDO JHON DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-04-04', 797930.00, 'A'), - (146, 1, 'BAQUERO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-03-03', 197650.00, 'A'), - (1460, 1, 'RESTREPO DOMINGUEZ GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2009-05-18', 641050.00, 'A'), - (1461, 1, 'YANOVICH JACKY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-08-21', 811470.00, 'A'), - (1462, 1, 'HINCAPIE ROLDAN JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-27', 134200.00, 'A'), - (1463, 3, 'ZEA JORGE OLIVER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2011-03-12', 236610.00, 'A'), - (1464, 1, 'OSCAR MAURICIO ECHAVARRIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-11-24', 780440.00, 'A'), - (1465, 1, 'COSSIO GIL JOSE ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-10-01', 192380.00, 'A'), - (1466, 1, 'GOMEZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-03-01', 620580.00, 'A'), - (1467, 1, 'VILLALOBOS OCHOA ANDRES GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-18', 525740.00, 'A'), - (1470, 1, 'GARCIA GONZALEZ DAVID DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-09-17', 986990.00, 'A'), - (1471, 1, 'RAMIREZ RESTREPO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-03', 162250.00, 'A'), - (1472, 1, 'VASQUEZ GUTIERREZ JUAN ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-05', 850280.00, 'A'), - (1474, 1, 'ESCOBAR ARANGO DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-11-01', 272460.00, 'A'), - (1475, 1, 'MEJIA TORO JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-05-02', 68320.00, 'A'), - (1477, 1, 'ESCOBAR GOMEZ JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127848, '2011-05-15', 416150.00, 'A'), - (1478, 1, 'BETANCUR WILSON', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2008-02-09', 508060.00, 'A'), - (1479, 3, 'ROMERO ARRAU GONZALO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-10', 291880.00, 'A'), - (148, 1, 'REINA MORENO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-08', 699240.00, 'A'), - (1480, 1, 'CASTANO OSORIO JORGE ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127662, '2011-09-20', 935200.00, 'A'), - (1482, 1, 'LOPEZ LOPERA ROBINSON FREDY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-09-02', 196280.00, 'A'), - (1484, 1, 'HERNAN DARIO RENDON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-03-18', 312520.00, 'A'), - (1485, 1, 'MARTINEZ ARBOLEDA MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-11-03', 821760.00, 'A'), - (1486, 1, 'RODRIGUEZ MORA CARLOS MORA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-09-16', 171270.00, 'A'), - (1487, 1, 'PENAGOS VASQUEZ JOSE DOMINGO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-09-06', 391080.00, 'A'), - (1488, 1, 'UERRA MEJIA DIEGO LEON', 191821112, 'CRA 25 CALLE 100', '704@hotmail.com', '2011-02-03', 144086, '2011-08-06', 441570.00, 'A'), - (1491, 1, 'QUINTERO GUTIERREZ ABEL PASTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2009-11-16', 138100.00, 'A'), - (1492, 1, 'ALARCON YEPES IVAN DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2010-05-03', 145330.00, 'A'), - (1494, 1, 'HERNANDEZ VALLEJO ANDRES MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-09', 125770.00, 'A'), - (1495, 1, 'MONTOYA MORENO LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-09', 691770.00, 'A'), - (1497, 1, 'BARRERA CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '62@yahoo.es', '2011-02-03', 127591, '2010-08-24', 332550.00, 'A'), - (1498, 1, 'ARROYAVE FERNANDEZ PABLO EMILIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-05-12', 418030.00, 'A'), - (1499, 1, 'GOMEZ ANGEL FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-05-03', 92480.00, 'A'), - (15, 1, 'AMSILI COHEN JOSEPH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 877400.00, 'A'), - ('CELL411', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (150, 3, 'ARDILA GUTIERREZ DANIEL MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-12', 506760.00, 'A'), - (1500, 1, 'GONZALEZ DUQUE PABLO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-04-13', 208330.00, 'A'), - (1502, 1, 'MEJIA BUSTAMANTE JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-09', 196000.00, 'A'), - (1506, 1, 'SUAREZ MONTOYA JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128569, '2011-09-13', 368250.00, 'A'), - (1508, 1, 'ALVAREZ GONZALEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-02-15', 355190.00, 'A'), - (1509, 1, 'NIETO CORREA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-31', 899980.00, 'A'), - (1511, 1, 'HERNANDEZ GRANADOS JHONATHAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-08-30', 471720.00, 'A'), - (1512, 1, 'CARDONA ALVAREZ DEIBY', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2010-10-05', 55590.00, 'A'), - (1513, 1, 'TORRES MARULANDA JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-20', 862820.00, 'A'), - (1514, 1, 'RAMIREZ RAMIREZ JHON JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-11', 147310.00, 'A'), - (1515, 1, 'MONDRAGON TORO NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-01-19', 148100.00, 'A'), - (1517, 3, 'SUIDA DIETER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2008-07-21', 48580.00, 'A'), - (1518, 3, 'LEFTWICH ANDREW PAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 211610, '2011-06-07', 347170.00, 'A'), - (1519, 3, 'RENTON ANDREW GEORGE PATRICK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2010-12-11', 590120.00, 'A'), - (152, 1, 'BUSTOS MONZON CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-22', 335160.00, 'A'), - (1521, 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 119814, '2011-04-28', 775000.00, 'A'), - (1522, 3, 'GUARACI FRANCO DE PAIVA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 119167, '2011-04-28', 147770.00, 'A'), - (1525, 4, 'MORENO TENORIO MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-20', 888750.00, 'A'), - (1527, 1, 'VELASQUEZ HERNANDEZ JHON EDUARSON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-19', 161270.00, 'A'), - (1528, 4, 'VANEGAS ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '185@yahoo.com', '2011-02-03', 127591, '2011-06-20', 109830.00, 'A'), - (1529, 3, 'BARBABE CLAIRE LAURENCE ANNICK', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-04', 65330.00, 'A'), - (153, 1, 'GONZALEZ TORREZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-01', 762560.00, 'A'), - (1530, 3, 'COREA MARTINEZ GUILLERMO JOSE ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-09-25', 997190.00, 'A'), - (1531, 3, 'PACHECO RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2010-03-08', 789960.00, 'A'), - (1532, 3, 'WELCH RICHARD WILLIAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 190393, '2010-10-04', 958210.00, 'A'), - (1533, 3, 'FOREMAN CAROLYN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 107159, '2011-05-23', 421200.00, 'A'), - (1535, 3, 'ZAGAL SOTO CLAUDIA PAZ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2008-05-16', 893130.00, 'A'), - (1536, 3, 'ZAGAL SOTO CLAUDIA PAZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-10-08', 771600.00, 'A'), - (1538, 3, 'BLANCO RODRIGUEZ JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 197162, '2011-04-02', 578250.00, 'A'), - (154, 1, 'HENDEZ PUERTO JAVIER ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 807310.00, 'A'), - (1540, 3, 'CONTRERAS BRAIN JAVIER ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-02-22', 42420.00, 'A'), - (1541, 3, 'RONDON HERNANDEZ MARYLIN DEL CARMEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-09-29', 145780.00, 'A'), - (1542, 3, 'ELJURI RAMIREZ EMIRA ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2010-10-13', 601670.00, 'A'), - (1544, 3, 'REYES LE ROY TOMAS FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2009-06-24', 49990.00, 'A'), - (1545, 3, 'GHETEA GAMUZ JENNY', 191821112, 'CRA 25 CALLE 100', '675@gmail.com', '2011-02-03', 150699, '2010-05-29', 536940.00, 'A'), - (1546, 3, 'DUARTE GONZALEZ ROONEY ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-20', 534720.00, 'A'), - (1548, 3, 'BIZOT PHILIPPE PIERRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 263813, '2011-03-02', 709760.00, 'A'), - (1549, 3, 'PELUFFO RUBIO GUILLERMO JUAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 116366, '2011-05-09', 360470.00, 'A'), - (1550, 3, 'AGLIATI YERKOVIC CAROLINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-06-01', 673040.00, 'A'), - (1551, 3, 'SEPULVEDA LEDEZMA HENRY CORNELIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-08-15', 283810.00, 'A'), - (1552, 3, 'CABRERA CARMINE JAIME FRANCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2008-11-30', 399940.00, 'A'), - (1553, 3, 'ZINNO PENA ALVARO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116366, '2010-08-02', 148270.00, 'A'), - (1554, 3, 'ROMERO BUCCICARDI JUAN CRISTOBAL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-08-01', 541530.00, 'A'), - (1555, 3, 'FEFERKORN ABRAHAM', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 159312, '2011-06-12', 262840.00, 'A'), - (1556, 3, 'MASSE CATESSON CAROLINE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131272, '2011-06-12', 689600.00, 'A'), - (1557, 3, 'CATESSON ALEXANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 131272, '2011-06-12', 659470.00, 'A'), - (1558, 3, 'FUENTES HERNANDEZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-18', 228540.00, 'A'), - (1559, 3, 'GUEVARA MENJIVAR WILSON ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-18', 164310.00, 'A'), - (1560, 3, 'DANOWSKI NICOLAS JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-02', 135920.00, 'A'), - (1561, 3, 'CASTRO VELASQUEZ ISMAEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 121318, '2011-07-31', 186670.00, 'A'), - (1562, 3, 'RODRIGUEZ CORNEJO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 525590.00, 'A'), - (1563, 3, 'VANIA CAROLINA FLORES AVILA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-18', 67950.00, 'A'), - (1564, 3, 'ARMERO RAMOS OSCAR ALEXANDER', 191821112, 'CRA 25 CALLE 100', '414@hotmail.com', '2011-02-03', 127591, '2011-09-18', 762950.00, 'A'), - (1565, 3, 'ORELLANA MARTINEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-18', 610930.00, 'A'), - (1566, 3, 'BRATT BABONNEAU CARLOS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', 765800.00, 'A'), - (1567, 3, 'YANES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150728, '2011-04-12', 996200.00, 'A'), - (1568, 3, 'ANGULO TAMAYO SEBASTIAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126674, '2011-05-19', 683600.00, 'A'), - (1569, 3, 'HENRIQUEZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 138329, '2011-08-15', 429390.00, 'A'), - ('CELL4137', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (1570, 3, 'GARCIA VILLARROEL RAUL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126189, '2011-06-12', 96140.00, 'A'), - (1571, 3, 'SOLA HERNANDEZ JOSE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-09-25', 192530.00, 'A'), - (1572, 3, 'PEREZ PASTOR OSWALDO MAGARREY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126674, '2011-05-25', 674260.00, 'A'), - (1573, 3, 'MICHAN QUINONES FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-06-21', 793680.00, 'A'), - (1574, 3, 'GARCIA ARANDA OSCAR DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-08-15', 945620.00, 'A'), - (1575, 3, 'GARCIA RIBAS JORDI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-10', 347070.00, 'A'), - (1576, 3, 'GALVAN ROMERO MARIA INMACULADA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-09-14', 898480.00, 'A'), - (1577, 3, 'BOSH MOLINAS JUAN JOSE ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 198576, '2011-08-22', 451190.00, 'A'), - (1578, 3, 'MARTIN TENA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-04-24', 560520.00, 'A'), - (1579, 3, 'HAWKINS ROBERT JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-12', 449010.00, 'A'), - (1580, 3, 'GHERARDI ALEJANDRO EMILIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 180063, '2010-11-15', 563500.00, 'A'), - (1581, 3, 'TELLO JUAN EDUARDO', 191821112, 'CRA 25 CALLE 100', '192@hotmail.com', '2011-02-03', 138329, '2011-05-01', 470460.00, 'A'), - (1583, 3, 'GUZMAN VALDIVIA CINTIA TATIANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 199862, '2011-04-06', 897580.00, 'A'), - (1584, 3, 'STUBBS MERCEDES CARMEN JOSEFINA DEL MILAGRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 199862, '2011-04-06', 502510.00, 'A'), - (1585, 3, 'QUINTEIRO GORIS JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-17', 819840.00, 'A'), - (1587, 3, 'RIVAS LORIA PRISCILLA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 205636, '2011-05-01', 498720.00, 'A'), - (1588, 3, 'DE LA TORRE AUGUSTO PATRICIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 20404, '2011-08-31', 718670.00, 'A'), - (159, 1, 'ALDANA PATINO NORMAN ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2009-10-10', 201500.00, 'A'), - (1590, 3, 'TORRES VILLAR ROBERTO ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-08-10', 329950.00, 'A'), - (1591, 3, 'PETRULLI CARMELO MORENO', 191821112, 'CRA 25 CALLE 100', '883@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', 358180.00, 'A'), - (1592, 3, 'MUSCO ENZO FRANCESCO GIUSEPPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-04', 801050.00, 'A'), - (1593, 3, 'RONCUZZI CLAUDIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127134, '2011-10-02', 930700.00, 'A'), - (1594, 3, 'VELANI FRANCESCA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 199862, '2011-08-22', 250360.00, 'A'), - (1596, 3, 'BENARROCH ASSOR DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-10-06', 547310.00, 'A'), - (1597, 3, 'FLO VILLASECA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-05-27', 357520.00, 'A'), - (1598, 3, 'FONT RIBAS ANTONI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196117, '2011-09-21', 145660.00, 'A'), - (1599, 3, 'LOPEZ BARAHONA MONICA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-08-03', 655740.00, 'A'), - (16, 1, 'FLOREZ PEREZ GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132572, '2011-03-30', 956370.00, 'A'), - (160, 1, 'GIRALDO MENDIVELSO MARTIN EDISSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-14', 429010.00, 'A'), - (1600, 3, 'SCATTIATI ALDO ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 215245, '2011-07-10', 841730.00, 'A'), - (1601, 3, 'MARONE CARLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 101179, '2011-06-14', 241420.00, 'A'), - (1602, 3, 'CHUVASHEVA ELENA ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 190393, '2011-08-21', 681900.00, 'A'), - (1603, 3, 'GIGLIO FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 122035, '2011-09-19', 685250.00, 'A'), - (1604, 3, 'JUSTO AMATE AGUSTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 174598, '2011-05-16', 380560.00, 'A'), - (1605, 3, 'GUARDABASSI FABIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 281044, '2011-07-26', 847060.00, 'A'), - (1606, 3, 'CALABRETTA FRAMCESCO ANTONIO MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 199862, '2011-08-22', 93590.00, 'A'), - (1607, 3, 'TARTARINI MASSIMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196234, '2011-05-10', 926800.00, 'A'), - (1608, 3, 'BOTTI GIAIME', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 231989, '2011-04-04', 353210.00, 'A'), - (1610, 3, 'PILERI ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 205040, '2011-09-01', 868590.00, 'A'), - (1612, 3, 'MARTIN GRACIA LUIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-07-27', 324320.00, 'A'), - (1613, 3, 'GRACIA MARTIN LUIS', 191821112, 'CRA 25 CALLE 100', '579@facebook.com', '2011-02-03', 198248, '2011-08-24', 463560.00, 'A'), - (1614, 3, 'SERRAT SESE JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-05-16', 344840.00, 'A'), - (1615, 3, 'DEL LAGO AMPELIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-06-29', 333510.00, 'A'), - (1616, 3, 'PERUGORRIA RODRIGUEZ JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 148511, '2011-06-06', 633040.00, 'A'), - (1617, 3, 'GIRAL CALVO IGNACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-09-19', 164670.00, 'A'), - (1618, 3, 'ALONSO CEBRIAN JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '253@terra.com.co', '2011-02-03', 188640, '2011-03-23', 924240.00, 'A'), - (162, 1, 'ARIZA PINEDA JOHN ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-11-27', 415710.00, 'A'), - (1620, 3, 'OLMEDO CARDENETE DOMINGO MIGUEL', 191821112, 'CRA 25 CALLE 100', '608@terra.com.co', '2011-02-03', 135397, '2011-09-03', 863200.00, 'A'), - (1622, 3, 'GIMENEZ BALDRES ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 182860, '2011-05-12', 82660.00, 'A'), - (1623, 3, 'NUNEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-05-23', 609950.00, 'A'), - (1624, 3, 'PENATE CASTRO WENCESLAO LORENZO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 153607, '2011-09-13', 801750.00, 'A'), - (1626, 3, 'ESCODA MIGUEL JOAN JOSEP', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-07-18', 489310.00, 'A'), - (1628, 3, 'ESTRADA CAPILLA ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-26', 81180.00, 'A'), - (163, 1, 'PERDOMO LOPEZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-05', 456910.00, 'A'), - (1630, 3, 'SUBIRAIS MARIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-08', 138700.00, 'A'), - (1632, 3, 'ENSENAT VELASCO JAIME LUIS', 191821112, 'CRA 25 CALLE 100', '687@gmail.com', '2011-02-03', 188640, '2011-04-12', 904560.00, 'A'), - (1633, 3, 'DIEZ POLANCO CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-05-24', 530410.00, 'A'), - (1636, 3, 'CUADRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-09-04', 688400.00, 'A'), - (1637, 3, 'UBRIC MUNOZ RAUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 98790, '2011-05-30', 139830.00, 'A'), - ('CELL4159', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (1638, 3, 'NEDDERMANN GUJO RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-31', 633990.00, 'A'), - (1639, 3, 'RENEDO ZALBA JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-03-13', 750430.00, 'A'), - (164, 1, 'JIMENEZ PADILLA JOHAN MARCEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-05', 37430.00, 'A'), - (1640, 3, 'FERNANDEZ MORENO DAVID', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-05-28', 850180.00, 'A'), - (1641, 3, 'VERGARA SERRANO JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-06-30', 999620.00, 'A'), - (1642, 3, 'MARTINEZ HUESO LUCAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 182860, '2011-06-29', 447570.00, 'A'), - (1643, 3, 'FRANCO POBLET JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-10-03', 238990.00, 'A'), - (1644, 3, 'MORA HIDALGO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-06', 852250.00, 'A'), - (1645, 3, 'GARCIA COSO EMILIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-09-14', 544260.00, 'A'), - (1646, 3, 'GIMENO ESCRIG ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 180124, '2011-09-20', 164580.00, 'A'), - (1647, 3, 'MORCILLO LOPEZ RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127538, '2011-04-16', 190090.00, 'A'), - (1648, 3, 'RUBIO BONET MANUEL', 191821112, 'CRA 25 CALLE 100', '252@facebook.com', '2011-02-03', 196234, '2011-05-25', 456740.00, 'A'), - (1649, 3, 'PRADO ABUIN FERNANDO ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-07-16', 713400.00, 'A'), - (165, 1, 'RAMIREZ PALMA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-10', 816420.00, 'A'), - (1650, 3, 'DE VEGA PUJOL GEMA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-08-01', 196780.00, 'A'), - (1651, 3, 'IBARGUEN ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2010-12-03', 843720.00, 'A'), - (1652, 3, 'IBARGUEN ALFREDO', 191821112, 'CRA 25 CALLE 100', '856@hotmail.com', '2011-02-03', 188640, '2011-06-18', 628250.00, 'A'), - (1654, 3, 'MATELLANES RODRIGUEZ NURIA PILAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-10-05', 165770.00, 'A'), - (1656, 3, 'VIDAURRAZAGA GUISOLA JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-08-08', 495320.00, 'A'), - (1658, 3, 'GOMEZ ULLATE MARIA ELENA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-04-12', 919090.00, 'A'), - (1659, 3, 'ALCAIDE ALONSO JUAN MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-02', 152430.00, 'A'), - (166, 1, 'TUSTANOSKI RODOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-12-03', 969790.00, 'A'), - (1660, 3, 'LARROY GARCIA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-14', 4900.00, 'A'), - (1661, 3, 'FERNANDEZ POYATO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-10', 567180.00, 'A'), - (1662, 3, 'TREVEJO PARDO JULIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-25', 821200.00, 'A'), - (1663, 3, 'GORGA CASSINELLI VICTOR DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-30', 404490.00, 'A'), - (1664, 3, 'MORUECO GONZALEZ JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-10-09', 558820.00, 'A'), - (1665, 3, 'IRURETA FERNANDEZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 214283, '2011-09-14', 580650.00, 'A'), - (1667, 3, 'TREVEJO PARDO JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-25', 392020.00, 'A'), - (1668, 3, 'BOCOS NUNEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-10-08', 279710.00, 'A'), - (1669, 3, 'LUIS CASTILLO JOSE AGUSTIN', 191821112, 'CRA 25 CALLE 100', '557@hotmail.es', '2011-02-03', 168202, '2011-06-16', 222500.00, 'A'), - (167, 1, 'HURTADO BELALCAZAR JOHN JADY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-08-17', 399710.00, 'A'), - (1670, 3, 'REDONDO GUTIERREZ EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-09-14', 273350.00, 'A'), - (1671, 3, 'MADARIAGA ALONSO RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-07-26', 699240.00, 'A'), - (1673, 3, 'REY GONZALEZ LUIS JAVIER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-07-26', 283190.00, 'A'), - (1676, 3, 'PEREZ ESTER ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-10-03', 274900.00, 'A'), - (1677, 3, 'GOMEZ-GRACIA HUERTA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-22', 112260.00, 'A'), - (1678, 3, 'DAMASO PUENTE DIEGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-25', 736600.00, 'A'), - (168, 1, 'JUAN PABLO MARTINEZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-15', 89160.00, 'A'), - (1680, 3, 'DIEZ GONZALEZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-17', 521280.00, 'A'), - (1681, 3, 'LOPEZ LOPEZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '853@yahoo.com', '2011-02-03', 196234, '2010-12-13', 567760.00, 'A'), - (1682, 3, 'MIRO LINARES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133442, '2011-09-03', 274930.00, 'A'), - (1683, 3, 'ROCA PINTADO MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-05-16', 671410.00, 'A'), - (1684, 3, 'GARCIA BARTOLOME HORACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-09-29', 532220.00, 'A'), - (1686, 3, 'BALMASEDA DE AHUMADA DIEZ JUAN LUIS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 168202, '2011-04-13', 637860.00, 'A'), - (1687, 3, 'FERNANDEZ IMAZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-04-10', 248580.00, 'A'), - (1688, 3, 'ELIAS CASTELLS FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-19', 329300.00, 'A'), - (1689, 3, 'ANIDO DIAZ DANIEL', 191821112, 'CRA 25 CALLE 100', '491@gmail.com', '2011-02-03', 188640, '2011-04-04', 900780.00, 'A'), - (1691, 3, 'GATELL ARIMONT MARIA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-17', 877700.00, 'A'), - (1692, 3, 'RIVERA MUNOZ ADONI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 211705, '2011-04-05', 840470.00, 'A'), - (1693, 3, 'LUNA LOPEZ ALICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-10-01', 569270.00, 'A'), - (1695, 3, 'HAMMOND ANN ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118021, '2011-05-17', 916770.00, 'A'), - (1698, 3, 'RODRIGUEZ PARAJA MARIA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-15', 649080.00, 'A'), - (1699, 3, 'RUIZ DIAZ JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-06-24', 359540.00, 'A'), - (17, 1, 'SUAREZ CUEVAS FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2011-08-31', 149640.00, 'A'), - (170, 1, 'MARROQUIN AVILA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-04', 965840.00, 'A'), - (1700, 3, 'BACCHELLI ORTEGA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126180, '2011-06-07', 850450.00, 'A'), - (1701, 3, 'IGLESIAS JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2010-09-14', 173630.00, 'A'), - (1702, 3, 'GUTIEZ CUEVAS JULIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2010-09-07', 316800.00, 'A'), - ('CELL4183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (1704, 3, 'CALDEIRO ZAMORA JESUS CARMELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-09', 365230.00, 'A'), - (1705, 3, 'ARBONA ABASCAL MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-02-27', 636760.00, 'A'), - (1706, 3, 'COHEN AMAR MOISES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196766, '2011-05-20', 88120.00, 'A'), - (1708, 3, 'FERNANDEZ COBOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2010-11-09', 387220.00, 'A'), - (1709, 3, 'CANAL VIVES JOAQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 196234, '2011-09-27', 345150.00, 'A'), - (171, 1, 'LADINO MORENO JAVIER ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-25', 89230.00, 'A'), - (1710, 5, 'GARCIA BERTRAND HECTOR', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-04-07', 564100.00, 'A'), - (1711, 1, 'CONSTANZA MARIN ESCOBAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127799, '2011-03-24', 785060.00, 'A'), - (1712, 1, 'NUNEZ BATALLA FAUSTINO JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-26', 232970.00, 'A'), - (1713, 3, 'VILORA LAZARO ERICK MARTIN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-26', 809690.00, 'A'), - (1715, 3, 'ELLIOT EDWARD JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-26', 318660.00, 'A'), - (1716, 3, 'ALCALDE ORTENO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-07-23', 544650.00, 'A'), - (1717, 3, 'CIARAVELLA STEFANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 231989, '2011-06-13', 767260.00, 'A'), - (1718, 3, 'URRA GONZALEZ PEDRO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-05-02', 202370.00, 'A'), - (172, 1, 'GUERRERO ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-15', 548610.00, 'A'), - (1720, 3, 'JIMENEZ RODRIGUEZ ANNET', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-05-25', 943140.00, 'A'), - (1721, 3, 'LESCAY CASTELLANOS ARNALDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', 585570.00, 'A'), - (1722, 3, 'OCHOA AGUILAR ELIADES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-25', 98410.00, 'A'), - (1723, 3, 'RODRIGUEZ NUNES JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 735340.00, 'A'), - (1724, 3, 'OCHOA BUSTAMANTE ELIADES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-25', 381480.00, 'A'), - (1725, 3, 'MARTINEZ NIEVES JOSE ANGEL', 191821112, 'CRA 25 CALLE 100', '919@yahoo.es', '2011-02-03', 127591, '2011-05-25', 701360.00, 'A'), - (1727, 3, 'DRAGONI ALAIN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-25', 707850.00, 'A'), - (1728, 3, 'FERNANDEZ LOPEZ MARCOS ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-25', 452090.00, 'A'), - (1729, 3, 'MATURELL ROMERO JORGE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-25', 136880.00, 'A'), - (173, 1, 'RUIZ CEBALLOS ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-04', 475380.00, 'A'), - (1730, 3, 'LARA CASTELLANO LENNIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-25', 328150.00, 'A'), - (1731, 3, 'GRAHAM CRISTOPHER DRAKE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 203079, '2011-06-27', 230120.00, 'A'), - (1732, 3, 'TORRE LUCA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-05-11', 166120.00, 'A'), - (1733, 3, 'OCHOA HIDALGO EGLIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 140250.00, 'A'), - (1734, 3, 'LOURERIO DELACROIX FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116511, '2011-09-28', 202900.00, 'A'), - (1736, 3, 'LEVIN FIORELLI ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116366, '2011-08-07', 360110.00, 'A'), - (1739, 3, 'BERRY R ALBERT', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 216125, '2011-08-16', 22170.00, 'A'), - (174, 1, 'NIETO PARRA SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-05-11', 731040.00, 'A'), - (1740, 3, 'MARSHALL ROBERT SHEPARD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 150159, '2011-03-09', 62860.00, 'A'), - (1741, 3, 'HENANDEZ ROY CHRISTOPHER JOHN PATRICK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 179614, '2011-09-26', 247780.00, 'A'), - (1742, 3, 'LANDRY GUILLAUME', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 232263, '2011-04-27', 50330.00, 'A'), - (1743, 3, 'VUCETIC ZELJKO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 232263, '2011-07-25', 508320.00, 'A'), - (1744, 3, 'DE JUANA CELASCO MARIA DEL CARMEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-04-16', 390620.00, 'A'), - (1745, 3, 'LABONTE RONALD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 269033, '2011-09-28', 428120.00, 'A'), - (1746, 3, 'NEWMAN PHILIP MARK', 191821112, 'CRA 25 CALLE 100', '557@gmail.com', '2011-02-03', 231373, '2011-07-25', 968750.00, 'A'), - (1747, 3, 'GRENIER MARIE PIERRE ', 191821112, 'CRA 25 CALLE 100', '409@facebook.com', '2011-02-03', 244158, '2011-07-03', 559370.00, 'A'), - (1749, 3, 'SHINDER GARY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 244158, '2011-07-25', 775000.00, 'A'), - (175, 3, 'GALLEGOS BASTIDAS CARLOS EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133211, '2011-08-10', 229090.00, 'A'), - (1750, 3, 'LOPEZ DE GOICOCHEA ZABALA FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-13', 203120.00, 'A'), - (1751, 3, 'CORRAL BELLON MANUEL', 191821112, 'CRA 25 CALLE 100', '538@yahoo.com', '2011-02-03', 177443, '2011-05-02', 690610.00, 'A'), - (1752, 3, 'DE SOLA SOLVAS JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-10-02', 843700.00, 'A'), - (1753, 3, 'GARCIA ALCALA DIAZ REGANON EVA MARIA', 191821112, 'CRA 25 CALLE 100', '398@yahoo.com', '2011-02-03', 118777, '2010-03-15', 146680.00, 'A'), - (1754, 3, 'BIELA VILIAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2011-08-16', 202290.00, 'A'), - (1755, 3, 'GUIOT CANO JUAN PATRICK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 232263, '2011-05-23', 571390.00, 'A'), - (1756, 3, 'JIMENEZ DIAZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-03-27', 250100.00, 'A'), - (1757, 3, 'FOX ELEANORE MAE', 191821112, 'CRA 25 CALLE 100', '117@yahoo.com', '2011-02-03', 190393, '2011-05-04', 536340.00, 'A'), - (1758, 3, 'TANG VAN SON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-05-07', 931400.00, 'A'), - (1759, 3, 'SUTTON PETER RONALD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 281673, '2011-06-01', 47960.00, 'A'), - (176, 1, 'GOMEZ IVAN', 191821112, 'CRA 25 CALLE 100', '438@yahoo.com.mx', '2011-02-03', 127591, '2008-04-09', 952310.00, 'A'), - (1762, 3, 'STOODY MATTHEW FRANCIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-21', 84320.00, 'A'), - (1763, 3, 'SEIX MASO ARNAU', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150699, '2011-05-24', 168880.00, 'A'), - (1764, 3, 'FERNANDEZ REDEL RAQUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-09-14', 591440.00, 'A'), - (1765, 3, 'PORCAR DESCALS VICENNTE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 176745, '2011-04-24', 450580.00, 'A'), - (1766, 3, 'PEREZ DE VILLEGAS TRILLO FIGUEROA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-05-17', 478560.00, 'A'), - ('CELL4198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (1767, 3, 'CELDRAN DEGANO ANGEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 196234, '2011-05-17', 41040.00, 'A'), - (1768, 3, 'TERRAGO MARI FERRAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-09-30', 769550.00, 'A'), - (1769, 3, 'SZUCHOVSZKY GERGELY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 250256, '2011-05-23', 724630.00, 'A'), - (177, 1, 'SEBASTIAN TORO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127443, '2011-07-14', 74270.00, 'A'), - (1771, 3, 'TORIBIO JOSE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 226612, '2011-09-04', 398570.00, 'A'), - (1772, 3, 'JOSE LUIS BAQUERA PEIRONCELLY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2010-10-19', 49360.00, 'A'), - (1773, 3, 'MADARIAGA VILLANUEVA MIGUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-04-12', 51090.00, 'A'), - (1774, 3, 'VILLENA BORREGO ANTONIO', 191821112, 'CRA 25 CALLE 100', '830@terra.com.co', '2011-02-03', 188640, '2011-07-19', 107400.00, 'A'), - (1776, 3, 'VILAR VILLALBA JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 180124, '2011-09-20', 596330.00, 'A'), - (1777, 3, 'CAGIGAL ORTIZ MACARENA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 214283, '2011-09-14', 830530.00, 'A'), - (1778, 3, 'KORBA ATTILA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 250256, '2011-09-27', 363650.00, 'A'), - (1779, 3, 'KORBA-ELIAS BARBARA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 250256, '2011-09-27', 326670.00, 'A'), - (178, 1, 'AMSILI COHEN HANAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-08-29', 514450.00, 'A'), - (1780, 3, 'PINDADO GOMEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 189053, '2011-04-26', 542400.00, 'A'), - (1781, 3, 'IBARRONDO GOMEZ GRACIA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-09-21', 731990.00, 'A'), - (1782, 3, 'MUNGUIRA GONZALEZ JUAN JULIAN', 191821112, 'CRA 25 CALLE 100', '54@hotmail.es', '2011-02-03', 188640, '2011-09-06', 32730.00, 'A'), - (1784, 3, 'LANDMAN PIETER MARINUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 294861, '2011-09-22', 740260.00, 'A'), - (1789, 3, 'SUAREZ AINARA ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-05-17', 503470.00, 'A'), - (179, 1, 'CARO JUNCO GUIOVANNY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-03', 349420.00, 'A'), - (1790, 3, 'MARTINEZ CHACON JOSE JOAQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-20', 592220.00, 'A'), - (1792, 3, 'MENDEZ DEL RION LUCIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 120639, '2011-06-16', 476910.00, 'A'), - (1793, 3, 'VERHULST LAMBERTUS CORNELIA FRANCISCUS ALPHONSUS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 295420, '2011-07-04', 32410.00, 'A'), - (1794, 3, 'YANEZ YAGUE JESUS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-07-10', 731290.00, 'A'), - (1796, 3, 'GOMEZ ZORRILLA AMATE JOSE MARIOA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-07-12', 602380.00, 'A'), - (1797, 3, 'LAIZ MORENO ENEKO', 191821112, 'CRA 25 CALLE 100', '219@gmail.com', '2011-02-03', 127591, '2011-08-05', 334150.00, 'A'), - (1798, 3, 'MORODO RUIZ RUBEN DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-09-14', 863620.00, 'A'), - (18, 1, 'GARZON VARGAS GUILLERMO FEDERICO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-29', 879110.00, 'A'), - (1800, 3, 'ALFARO FAUS MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-09-14', 987410.00, 'A'), - (1801, 3, 'MORRALLA VALLVERDU ENRIC', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 194601, '2011-07-18', 990070.00, 'A'), - (1802, 3, 'BALBASTRE TEJEDOR JUAN VICENTE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 182860, '2011-08-24', 988120.00, 'A'), - (1803, 3, 'MINGO REIZ FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2010-03-24', 970400.00, 'A'), - (1804, 3, 'IRURETA FERNANDEZ JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 214283, '2011-09-10', 887630.00, 'A'), - (1807, 3, 'NEBRO MELLADO JOSE JUAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 168996, '2011-08-15', 278540.00, 'A'), - (1808, 3, 'ALBERQUILLA OJEDA JOSE DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-09-27', 477070.00, 'A'), - (1809, 3, 'BUENDIA NORTE MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 131401, '2011-07-08', 549720.00, 'A'), - (181, 1, 'CASTELLANOS FLORES RODRIGO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-18', 970470.00, 'A'), - (1811, 3, 'HILBERT ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-08', 937830.00, 'A'), - (1812, 3, 'GONZALES PINTO COTERILLO ADOLFO LORENZO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 214283, '2011-09-10', 736970.00, 'A'), - (1813, 3, 'ARQUES ALVAREZ JOSE RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-04-04', 871360.00, 'A'), - (1817, 3, 'CLAUSELL LOW ROBERTO EMILIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2011-09-28', 348770.00, 'A'), - (1818, 3, 'BELICHON MARTINEZ JESUS ALVARO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-04-12', 327010.00, 'A'), - (182, 1, 'GUZMAN NIETO JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-20', 241130.00, 'A'), - (1821, 3, 'LINATI DE PUIG JORGE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 196234, '2011-05-18', 47210.00, 'A'), - (1823, 3, 'SINBARRERA ROMA ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196234, '2011-09-08', 598380.00, 'A'), - (1826, 2, 'JUANES GARATE BRUNO ', 191821112, 'CRA 25 CALLE 100', '301@gmail.com', '2011-02-03', 118777, '2011-08-21', 877650.00, 'A'), - (1827, 3, 'BOLOS GIMENO ROGELIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 200247, '2010-11-28', 555470.00, 'A'), - (1828, 3, 'ZABALA ASTIGARRAGA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-09-20', 144410.00, 'A'), - (1831, 3, 'MAPELLI CAFFARENA BORJA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 172381, '2011-09-04', 58200.00, 'A'), - (1833, 3, 'LARMONIE LESLIE MARTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-30', 604840.00, 'A'), - (1834, 3, 'WILLEMS ROBERT-JAN MICHAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 288531, '2011-09-05', 756530.00, 'A'), - (1835, 3, 'ANJEMA LAURENS JAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-08-29', 968140.00, 'A'), - (1836, 3, 'VERHULST HENRICUS LAMBERTUS MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 295420, '2011-04-03', 571100.00, 'A'), - (1837, 3, 'PIERROT JOZEF MARIE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 288733, '2011-05-18', 951100.00, 'A'), - (1838, 3, 'EIKELBOOM HIDDE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 42210.00, 'A'), - (1839, 3, 'TAMBINI GOMEZ DE MUNG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 180063, '2011-04-24', 357740.00, 'A'), - (1840, 3, 'MAGANA PEREZ GERARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-09-28', 662060.00, 'A'), - (1841, 3, 'COURTOISIE BEYHAUT RAFAEL JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116366, '2011-09-05', 237070.00, 'A'), - (1842, 3, 'ROJAS BENJAMIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-13', 199170.00, 'A'), - (1843, 3, 'GARCIA VICENTE EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 150699, '2011-08-10', 284650.00, 'A'), - ('CELL4291', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (1844, 3, 'CESTTI LOPEZ RAFAEL GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 144215, '2011-09-27', 825750.00, 'A'), - (1845, 3, 'URTECHO LOPEZ ARMANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 139272, '2011-09-28', 274800.00, 'A'), - (1846, 3, 'SEGURA ESPINOZA ARMANDO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 135360, '2011-09-28', 896730.00, 'A'), - (1847, 3, 'GONZALEZ VEGA LUIS PASTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-05-18', 659240.00, 'A'), - (185, 1, 'AYALA CARDENAS NELSON MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 855960.00, 'A'), - (1850, 3, 'ROTZINGER ROA KLAUS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 116366, '2011-09-12', 444250.00, 'A'), - (1851, 3, 'FRANCO DE LEON SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116366, '2011-04-26', 63840.00, 'A'), - (1852, 3, 'RIVAS GAGNONI LUIS ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 135360, '2011-05-18', 986440.00, 'A'), - (1853, 3, 'BARRETO VELASQUEZ JOEL FERNANDO', 191821112, 'CRA 25 CALLE 100', '104@hotmail.es', '2011-02-03', 116511, '2011-04-27', 740670.00, 'A'), - (1854, 3, 'SEVILLA AMAYA ORLANDO', 191821112, 'CRA 25 CALLE 100', '264@yahoo.com', '2011-02-03', 136995, '2011-05-18', 744020.00, 'A'), - (1855, 3, 'VALFRE BRALICH ELEONORA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116366, '2011-06-06', 498080.00, 'A'), - (1857, 3, 'URDANETA DIAMANTES DIEGO ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-09-23', 797590.00, 'A'), - (1858, 3, 'RAMIREZ ALVARADO ROBERT JESUS', 191821112, 'CRA 25 CALLE 100', '290@yahoo.com.mx', '2011-02-03', 127591, '2011-09-18', 212850.00, 'A'), - (1859, 3, 'GUTTNER DENNIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-25', 671470.00, 'A'), - (186, 1, 'CARRASCO SUESCUN ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-15', 36620.00, 'A'), - (1861, 3, 'HEGEMANN JOACHIM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-25', 579710.00, 'A'), - (1862, 3, 'MALCHER INGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 292243, '2011-06-23', 742060.00, 'A'), - (1864, 3, 'HOFFMEISTER MALTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128206, '2011-09-06', 629770.00, 'A'), - (1865, 3, 'BOHME ALEXANDRA LUCE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-14', 235260.00, 'A'), - (1866, 3, 'HAMMAN FRANK THOMAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-13', 286980.00, 'A'), - (1867, 3, 'GOPPERT MARKUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-09-05', 729150.00, 'A'), - (1868, 3, 'BISCARO CAROLINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-16', 784790.00, 'A'), - (1869, 3, 'MASCHAT SEBASTIAN STEPHAN ANDREAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-02-03', 736520.00, 'A'), - (1870, 3, 'WALTHER DANIEL CLAUS PETER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-24', 328220.00, 'A'), - (1871, 3, 'NENTWIG DANIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 289697, '2011-02-03', 431550.00, 'A'), - (1872, 3, 'KARUTZ ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127662, '2011-03-17', 173090.00, 'A'), - (1875, 3, 'KAY KUNNE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 289697, '2011-03-18', 961400.00, 'A'), - (1876, 2, 'SCHLUMPF IVANA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 245206, '2011-03-28', 802690.00, 'A'), - (1877, 3, 'RODRIGUEZ BUSTILLO CONSUELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 139067, '2011-03-21', 129280.00, 'A'), - (1878, 1, 'REHWALDT RICHARD ULRICH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289697, '2009-10-25', 238320.00, 'A'), - (1880, 3, 'FONSECA BEHRENS MANUELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-18', 303810.00, 'A'), - (1881, 3, 'VOGEL MIRKO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-09', 107790.00, 'A'), - (1882, 3, 'WU WEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 289697, '2011-03-04', 627520.00, 'A'), - (1884, 3, 'KADOLSKY ANKE SIGRID', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 289697, '2010-10-07', 188560.00, 'A'), - (1885, 3, 'PFLUCKER PLENGE CARLOS HERNAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 239124, '2011-08-15', 500140.00, 'A'), - (1886, 3, 'PENA LAGOS MELENIA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 935020.00, 'A'), - (1887, 3, 'CALVANO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-05-02', 174690.00, 'A'), - (1888, 3, 'KUHLEN LOTHAR WILHELM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 289232, '2011-08-30', 68390.00, 'A'), - (1889, 3, 'QUIJANO RICO SOFIA VICTORIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 221939, '2011-06-13', 817890.00, 'A'), - (189, 1, 'GOMEZ TRUJILLO SERGIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-17', 985980.00, 'A'), - (1890, 3, 'SCHILBERZ KARIN', 191821112, 'CRA 25 CALLE 100', '405@facebook.com', '2011-02-03', 287570, '2011-06-23', 884260.00, 'A'), - (1891, 3, 'SCHILBERZ SOPHIE CAHRLOTTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 287570, '2011-06-23', 967640.00, 'A'), - (1892, 3, 'MOLINA MOLINA MILAGRO DE SUYAPA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 139844, '2011-07-26', 185410.00, 'A'), - (1893, 3, 'BARRIENTOS ESCALANTE RAFAEL ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 139067, '2011-05-18', 24110.00, 'A'), - (1895, 3, 'ENGELS FRANZBERNARD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 292243, '2011-07-01', 749430.00, 'A'), - (1896, 3, 'FRIEDHOFF SVEN WILHEM', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 289697, '2010-10-31', 54090.00, 'A'), - (1897, 3, 'BARTELS CHRISTIAN JOHAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-07-25', 22160.00, 'A'), - (1898, 3, 'NILS REMMEL', 191821112, 'CRA 25 CALLE 100', '214@gmail.com', '2011-02-03', 256231, '2011-08-05', 948530.00, 'A'), - (1899, 3, 'DR SCHEIBE MATTHIAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 252431, '2011-09-26', 676150.00, 'A'), - (19, 1, 'RIANO ROMERO ALBERTO ELIAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-12-14', 946630.00, 'A'), - (190, 1, 'LLOREDA ORTIZ FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-12-20', 30860.00, 'A'), - (1900, 3, 'CARRASCO CATERIANO PEDRO', 191821112, 'CRA 25 CALLE 100', '255@hotmail.com', '2011-02-03', 286578, '2011-05-02', 535180.00, 'A'), - (1901, 3, 'ROSENBER DIRK PETER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-29', 647450.00, 'A'), - (1902, 3, 'LAUBACH JOHANNES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289697, '2011-05-01', 631720.00, 'A'), - (1904, 3, 'GRUND STEFAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 256231, '2011-08-05', 185990.00, 'A'), - (1905, 3, 'GRUND BEATE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 256231, '2011-08-05', 281280.00, 'A'), - (1906, 3, 'CORZO PAULA MIRIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 180063, '2011-08-02', 848400.00, 'A'), - (1907, 3, 'OESTERHAUS CORNELIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 256231, '2011-03-16', 398170.00, 'A'), - (1908, 1, 'JUAN SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-05-12', 445660.00, 'A'), - (1909, 3, 'VAN ZIJL CHRISTIAN ANDREAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 286785, '2011-09-24', 33800.00, 'A'), - (191, 1, 'CASTANEDA CABALLERO JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-28', 196370.00, 'A'), - (1910, 3, 'LORZA RUIZ MYRIAM ESPERANZA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-29', 831990.00, 'A'), - (192, 1, 'ZEA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-09', 889270.00, 'A'), - (193, 1, 'VELEZ VICTOR MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-22', 857250.00, 'A'), - (194, 1, 'ARCINIEGAS GOMEZ ISMAEL', 191821112, 'CRA 25 CALLE 100', '937@hotmail.com', '2011-02-03', 127591, '2011-05-18', 618450.00, 'A'), - (195, 1, 'LINAREZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-12', 520470.00, 'A'), - (1952, 3, 'BERND ERNST HEINZ SCHUNEMANN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 255673, '2011-09-04', 796820.00, 'A'), - (1953, 3, 'BUCHNER RICHARD ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-17', 808430.00, 'A'), - (1954, 3, 'CHO YONG BEOM', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 173192, '2011-02-07', 651670.00, 'A'), - (1955, 3, 'BERNECKER WALTER LUDWIG', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 256231, '2011-04-03', 833080.00, 'A'), - (1956, 3, 'SCHIERENBECK THOMAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 256231, '2011-05-03', 210380.00, 'A'), - (1957, 3, 'STEGMANN WOLF DIETER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-08-27', 552650.00, 'A'), - (1958, 3, 'LEBAGE GONZALEZ VALENTINA CECILIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 131272, '2011-07-29', 132130.00, 'A'), - (1959, 3, 'CABRERA MACCHI JOSE ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 180063, '2011-08-02', 2700.00, 'A'), - (196, 1, 'OTERO BERNAL ALVARO ERNESTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-04-29', 747030.00, 'A'), - (1960, 3, 'KOO BONKI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-15', 617110.00, 'A'), - (1961, 3, 'JODJAHN DE CARVALHO BEIRAL FLAVIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-07-05', 77460.00, 'A'), - (1963, 3, 'VIEIRA ROCHA MARQUES ELIANE TEREZINHA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118402, '2011-09-13', 447430.00, 'A'), - (1965, 3, 'KELLEN CRISTINA GATTI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126180, '2011-07-01', 804020.00, 'A'), - (1966, 3, 'CHAVEZ MARLON TENORIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-25', 132310.00, 'A'), - (1967, 3, 'SERGIO COZZI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 125750, '2011-08-28', 249500.00, 'A'), - (1968, 3, 'REZENDE LIMA JOSE MARCIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-08-23', 850570.00, 'A'), - (1969, 3, 'RAMOS PEDRO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118942, '2011-08-03', 504330.00, 'A'), - (1972, 3, 'ADAMS THOMAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2011-08-11', 774000.00, 'A'), - (1973, 3, 'WALESKA NUCINI BOGO ANDREA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-23', 859690.00, 'A'), - (1974, 3, 'GERMANO PAULO BUNN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118439, '2011-08-30', 976440.00, 'A'), - (1975, 3, 'CALDEIRA FILHO RUBENS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118942, '2011-07-18', 303120.00, 'A'), - (1976, 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 119814, '2011-09-08', 586290.00, 'A'), - (1977, 3, 'GAMAS MARIA CRISTINA ALVES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-09-19', 22070.00, 'A'), - (1979, 3, 'PORTO WEBER FERREIRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-07', 691340.00, 'A'), - (1980, 3, 'FONSECA LAURO PINTO', 191821112, 'CRA 25 CALLE 100', '104@hotmail.es', '2011-02-03', 127591, '2011-08-16', 402140.00, 'A'), - (1981, 3, 'DUARTE ELENA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-06-15', 936710.00, 'A'), - (1983, 3, 'CECHINEL CRISTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118942, '2011-06-12', 575530.00, 'A'), - (1984, 3, 'BATISTA PINHERO JOAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-04-25', 446250.00, 'A'), - (1987, 1, 'ISRAEL JOSE MAXWELL', 191821112, 'CRA 25 CALLE 100', '936@gmail.com', '2011-02-03', 125894, '2011-07-04', 408350.00, 'A'), - (1988, 3, 'BATISTA CARVALHO RODRIGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118864, '2011-09-19', 488410.00, 'A'), - (1989, 3, 'RENO DA SILVEIRA EDNEIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118867, '2011-05-03', 216990.00, 'A'), - (199, 1, 'BASTO CORREA FERNANDO ANTONIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-21', 616860.00, 'A'), - (1990, 3, 'SEIDLER KOHNERT G TEIXEIRA CHRISTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 119814, '2011-08-23', 619730.00, 'A'), - (1992, 3, 'GUIMARAES COSTA LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-04-20', 379090.00, 'A'), - (1993, 3, 'BOTTA RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2011-09-16', 552510.00, 'A'), - (1994, 3, 'ARAUJO DA SILVA MARCELO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 125666, '2011-08-03', 625260.00, 'A'), - (1995, 3, 'DA SILVA FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118864, '2011-04-14', 468760.00, 'A'), - (1996, 3, 'MANFIO RODRIGUEZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '974@yahoo.com', '2011-02-03', 118777, '2011-03-23', 468040.00, 'A'), - (1997, 3, 'NEIVA MORENO DE SOUZA CRISTIANE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-24', 933900.00, 'A'), - (2, 3, 'CHEEVER MICHAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-04', 560090.00, 'I'), - (2000, 3, 'ROCHA GUSTAVO ADRIANO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118288, '2011-07-25', 830340.00, 'A'), - (2001, 3, 'DE ANDRADE CARVALHO VIRGINIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-08-11', 575760.00, 'A'), - (2002, 3, 'CAVALCANTI PIERECK GUILHERME', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 180063, '2011-08-01', 387770.00, 'A'), - (2004, 3, 'HOEGEMANN RAMOS CARLOS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-04', 894550.00, 'A'), - (201, 1, 'LUIS FERNANDO AREVALO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-17', 156730.00, 'A'), - (2010, 3, 'GOMES BUCHALA JORGE FERNANDO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-23', 314800.00, 'A'), - (2011, 3, 'MARTINS SIMAIKA CATIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-06-01', 155020.00, 'A'), - (2012, 3, 'MONICA CASECA BUENO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-05-16', 830710.00, 'A'), - (2013, 3, 'ALBERTAL MARCELO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118000, '2010-09-10', 688480.00, 'A'), - (2015, 3, 'GOMES CANTARELLI JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118761, '2011-01-11', 685940.00, 'A'), - (2016, 3, 'CADETTI GARBELLINI ENILICE CRISTINA ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-11', 578870.00, 'A'), - (2017, 3, 'SPIELKAMP KLAUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 150699, '2011-03-28', 836540.00, 'A'), - (2019, 3, 'GARES HENRI PHILIPPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 135190, '2011-04-05', 720730.00, 'A'), - ('CELL4308', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (202, 1, 'LUCIO CHAUSTRE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-19', 179240.00, 'A'), - (2023, 3, 'GRECO DE RESENDELUIZ ALFREDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 119814, '2011-04-25', 647940.00, 'A'), - (2024, 3, 'CORTINA EVANDRO JOAO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118922, '2011-05-12', 153970.00, 'A'), - (2026, 3, 'BASQUES MOURA GERALDO CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 119814, '2011-09-07', 668250.00, 'A'), - (2027, 3, 'DA SILVA VALDECIR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 863150.00, 'A'), - (2028, 3, 'CHI MOW YUNG IVAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-21', 311000.00, 'A'), - (2029, 3, 'YUNG MYRA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-21', 965570.00, 'A'), - (2030, 3, 'MARTINS RAMALHO PATRICIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-03-23', 894830.00, 'A'), - (2031, 3, 'DE LEMOS RIBEIRO GILBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118951, '2011-07-29', 577430.00, 'A'), - (2032, 3, 'AIROLDI CLAUDIO', 191821112, 'CRA 25 CALLE 100', '973@terra.com.co', '2011-02-03', 127591, '2011-09-28', 202650.00, 'A'), - (2033, 3, 'ARRUDA MENDES HEILMANN IONE TEREZA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 120773, '2011-09-07', 280990.00, 'A'), - (2034, 3, 'TAVARES DE CARVALHO EDUARDO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118942, '2011-08-03', 796980.00, 'A'), - (2036, 3, 'FERNANDES ALARCON RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-08-28', 318730.00, 'A'), - (2037, 3, 'SUCHODOLKI SERGIO GUSMAO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 190393, '2011-07-13', 167870.00, 'A'), - (2039, 3, 'ESTEVES MARCAL MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-02-24', 912100.00, 'A'), - (2040, 3, 'CORSI LUIZ ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-03-25', 911080.00, 'A'), - (2041, 3, 'LOPEZ MONICA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118795, '2011-05-03', 819090.00, 'A'), - (2042, 3, 'QUINTANILHA LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-16', 362230.00, 'A'), - (2043, 3, 'DE CARLI BRUNO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-05-03', 353890.00, 'A'), - (2045, 3, 'MARINO FRANCA MARILIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-07-04', 352060.00, 'A'), - (2048, 3, 'VOIGT ALPHONSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118439, '2010-11-22', 384150.00, 'A'), - (2049, 3, 'ALENCAR ARIMA TATIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-05-23', 408590.00, 'A'), - (2050, 3, 'LINIS DE ALMEIDA NEILSON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 125666, '2011-08-03', 890480.00, 'A'), - (2051, 3, 'PINHEIRO DE CASTRO BENETI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-08-09', 226640.00, 'A'), - (2052, 3, 'ALVES DO LAGO HELMANN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118942, '2011-08-01', 461770.00, 'A'), - (2053, 3, 'OLIVO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-22', 628900.00, 'A'), - (2054, 3, 'WILLIAM DOMINGUES SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118085, '2011-08-23', 759220.00, 'A'), - (2055, 3, 'DE SOUZA MENEZES KLEBER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-04-25', 909400.00, 'A'), - (2056, 3, 'CABRAL NEIDE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-16', 269340.00, 'A'), - (2057, 3, 'RODRIGUES RENATO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-06-15', 618500.00, 'A'), - (2058, 3, 'SPADALE PEDRO JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-08-03', 284490.00, 'A'), - (2059, 3, 'MARTINS DE ALMEIDA GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-09-28', 566920.00, 'A'), - (206, 1, 'TORRES HEBER MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-01-29', 643210.00, 'A'), - (2060, 3, 'IKUNO CELINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-06-08', 981170.00, 'A'), - (2061, 3, 'DAL BELLO FABIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129499, '2011-08-20', 205050.00, 'A'), - (2062, 3, 'BENATES ADRIANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-23', 81770.00, 'A'), - (2063, 3, 'CARDOSO ALEXANDRE ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 793690.00, 'A'), - (2064, 3, 'ZANIOLO DE SOUZA CARLOS HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-09-19', 723130.00, 'A'), - (2065, 3, 'DA SILVA LUIZ SIDNEI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-03-30', 234590.00, 'A'), - (2066, 3, 'RUFATO DE SOUZA LUIZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-08-29', 3560.00, 'A'), - (2067, 3, 'DE MEDEIROS LUCIANA', 191821112, 'CRA 25 CALLE 100', '994@yahoo.com.mx', '2011-02-03', 118777, '2011-09-10', 314020.00, 'A'), - (2068, 3, 'WOLFF PIAZERA DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118255, '2011-06-15', 559430.00, 'A'), - (2069, 3, 'DA SILVA FORTUNA MARINA CLAUDIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-09-23', 855100.00, 'A'), - (2070, 3, 'PEREIRA BORGES LUCILA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-26', 597210.00, 'A'), - (2072, 3, 'PORROZZI DE ALMEIDA RENATO', 191821112, 'CRA 25 CALLE 100', '812@hotmail.es', '2011-02-03', 127591, '2011-06-13', 312120.00, 'A'), - (2073, 3, 'KALICHSZTEINN RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-03-23', 298330.00, 'A'), - (2074, 3, 'OCCHIALINI GUIMARAES ANA PAULA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2011-08-03', 555310.00, 'A'), - (2075, 3, 'MAZZUCO FONTES LUIZ ROBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-05-23', 881570.00, 'A'), - (2078, 3, 'TRAN DINH VAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 98560.00, 'A'), - (2079, 3, 'NGUYEN THI LE YEN', 191821112, 'CRA 25 CALLE 100', '249@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 298200.00, 'A'), - (208, 1, 'GOMEZ GONZALEZ JORGE MARIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-12', 889010.00, 'A'), - (2080, 3, 'MILA DE LA ROCA JOHANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-01-26', 195350.00, 'A'), - (2081, 3, 'RODRIGUEZ DE FLORES LOURDES MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-16', 82120.00, 'A'), - (2082, 3, 'FLORES PEREZ FRANCISCO GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-23', 824550.00, 'A'), - (2083, 3, 'FRAGACHAN BETANCOUT FRANCISCO JO SE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-07-04', 876400.00, 'A'), - (2084, 3, 'GAFARO MOLINA CARLOS JULIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-22', 908370.00, 'A'), - (2085, 3, 'CACERES REYES JORGEANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-08-11', 912630.00, 'A'), - (2086, 3, 'ALVAREZ RODRIGUEZ VICTOR ROGELIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2011-05-23', 838040.00, 'A'), - (2087, 3, 'GARCES ALVARADO JHAGEIMA JOSEFINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-04-29', 452320.00, 'A'), - ('CELL4324', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (2089, 3, 'FAVREAU CHOLLET JEAN PIERRE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132554, '2011-05-27', 380470.00, 'A'), - (209, 1, 'CRUZ RODRIGEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '316@hotmail.es', '2011-02-03', 127591, '2011-06-28', 953870.00, 'A'), - (2090, 3, 'GARAY LLUCH URBI ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-03-13', 659870.00, 'A'), - (2091, 3, 'LETICIA LETICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-07', 157950.00, 'A'), - (2092, 3, 'VELASQUEZ RODULFO RAMON ARISTIDES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-23', 810140.00, 'A'), - (2093, 3, 'PEREZ EDGAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-06', 576850.00, 'A'), - (2094, 3, 'PEREZ MARIELA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-07', 453840.00, 'A'), - (2095, 3, 'PETRUZZI MANGIARANO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132958, '2011-03-27', 538650.00, 'A'), - (2096, 3, 'LINARES GORI RICARDO RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-12', 331730.00, 'A'), - (2097, 3, 'LAIRET OLIVEROS CAROLINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-25', 42680.00, 'A'), - (2099, 3, 'JIMENEZ GARCIA FERNANDO JOSE', 191821112, 'CRA 25 CALLE 100', '78@hotmail.es', '2011-02-03', 132958, '2011-07-21', 963110.00, 'A'), - (21, 1, 'RUBIO ESCOBAR RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-05-21', 639240.00, 'A'), - (2100, 3, 'ZABALA MILAGROS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-20', 160860.00, 'A'), - (2101, 3, 'VASQUEZ CRUZ NICOLEDANIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-07-31', 914990.00, 'A'), - (2102, 3, 'REYES FIGUERA RAMON ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126674, '2011-04-03', 92340.00, 'A'), - (2104, 3, 'RAMIREZ JIMENEZ MARYLIN CAROLINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2011-06-14', 306760.00, 'A'), - (2105, 3, 'TELLES GUILLEN INNA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-09-07', 383520.00, 'A'), - (2106, 3, 'ALVAREZ CARMEN MARINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-07-20', 997340.00, 'A'), - (2107, 3, 'MARTINEZ YRIGOYEN NABUCODONOSOR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-07-21', 836110.00, 'A'), - (2108, 5, 'FERNANDEZ RUIZ IGNACIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-01', 188530.00, 'A'), - (211, 1, 'RIVEROS GARCIA JORGE IVAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-01', 650050.00, 'A'), - (2110, 3, 'CACERES REYES JORGE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-08-08', 606030.00, 'A'), - (2111, 3, 'GELFI MARCOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 199862, '2011-05-17', 727190.00, 'A'), - (2112, 3, 'CERDA CASTILLO CARMEN GLORIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', 817870.00, 'A'), - (2113, 3, 'RANGEL FERNANDEZ LEONARDO JOSE', 191821112, 'CRA 25 CALLE 100', '856@hotmail.com', '2011-02-03', 133211, '2011-05-16', 907750.00, 'A'), - (2114, 3, 'ROTHSCHILD VARGAS MICHAEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-02-05', 85170.00, 'A'), - (2115, 3, 'RUIZ GRATEROL INGRID JOHANNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-05-16', 702600.00, 'A'), - (2116, 2, 'DEARMAS ALBERTO FERNANDO ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-07-19', 257500.00, 'A'), - (2117, 3, 'BOSCAN ARRIETA ERICK HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-07-12', 179680.00, 'A'), - (2118, 3, 'GUILLEN DE TELLES NENCY JOSEFINA', 191821112, 'CRA 25 CALLE 100', '56@facebook.com', '2011-02-03', 132958, '2011-09-07', 125900.00, 'A'), - (212, 1, 'BUSTAMANTE BUSTAMANTE CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-26', 943260.00, 'A'), - (2120, 2, 'MARK ANTHONY STUART', 191821112, 'CRA 25 CALLE 100', '661@terra.com.co', '2011-02-03', 127591, '2011-06-26', 74600.00, 'A'), - (2122, 3, 'SCOCOZZA GIOVANNA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 190526, '2011-09-23', 284220.00, 'A'), - (2125, 3, 'CHAVES MOLINA JULIO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132165, '2011-09-22', 295360.00, 'A'), - (2127, 3, 'BERNARDES DE SOUZA TONIATI VIRGINIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-30', 565090.00, 'A'), - (2129, 2, 'BRIAN DAVIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 78460.00, 'A'), - (213, 1, 'PAREJO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-11', 766120.00, 'A'), - (2131, 3, 'DE OLIVEIRA LOPES REGINALDO LAZARO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-05', 404910.00, 'A'), - (2132, 3, 'DE MELO MING AZEVEDO PAULO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-10-05', 440370.00, 'A'), - (2137, 3, 'SILVA JORGE ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-05', 230570.00, 'A'), - (214, 1, 'CADENA RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-08', 840.00, 'A'), - (2142, 3, 'VIEIRA VEIGA PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-30', 85330.00, 'A'), - (2144, 3, 'ESCRIBANO LEONARDA DEL VALLE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-03-24', 941440.00, 'A'), - (2145, 3, 'RODRIGUEZ MENENDEZ BERNARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 148511, '2011-08-02', 588740.00, 'A'), - (2146, 3, 'GONZALEZ COURET DANIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 148511, '2011-08-09', 119380.00, 'A'), - (2147, 3, 'GARCIA SOTO WILLIAM', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 135360, '2011-05-18', 830660.00, 'A'), - (2148, 3, 'MENESES ORELLANA RICARDO TOMAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-06-13', 795200.00, 'A'), - (2149, 3, 'GUEVARA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-27', 483990.00, 'A'), - (215, 1, 'BELTRAN PINZON JUAN CARLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-08', 705860.00, 'A'), - (2151, 2, 'LLANES GARRIDO JAVIER ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-30', 719750.00, 'A'), - (2152, 3, 'CHAVARRIA CHAVES RAFAEL ADRIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132165, '2011-09-20', 495720.00, 'A'), - (2153, 2, 'MILBERT ANDREASPETER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-10', 319370.00, 'A'), - (2154, 2, 'GOMEZ SILVA LOZANO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127300, '2011-05-30', 109670.00, 'A'), - (2156, 3, 'WINTON ROBERT DOUGLAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 115551, '2011-08-08', 622290.00, 'A'), - (2157, 2, 'ROMERO PINA MANUEL GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-05', 340650.00, 'A'), - (2158, 3, 'KARWALSKI MATTHEW REECE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117229, '2011-08-29', 836380.00, 'A'), - (2159, 2, 'KIM JUNG SIK ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-08', 159950.00, 'A'), - (216, 1, 'MARTINEZ VALBUENA JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 526750.00, 'A'), - (2160, 3, 'AGAR ROBERT ALEXANDER', 191821112, 'CRA 25 CALLE 100', '81@hotmail.es', '2011-02-03', 116862, '2011-06-11', 290620.00, 'A'), - (2161, 3, 'IGLESIAS EDGAR ALEXIS', 191821112, 'CRA 25 CALLE 100', '645@facebook.com', '2011-02-03', 131272, '2011-04-04', 973240.00, 'A'), - (2163, 2, 'NOAIN MORENO CECILIA KARIM ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-22', 51950.00, 'A'), - (2164, 2, 'FIGUEROA HEBEL ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-26', 276760.00, 'A'), - (2166, 5, 'FRANDBERG DAN RICHARD VERNER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 134022, '2011-04-06', 309480.00, 'A'), - (2168, 2, 'CONTRERAS LILLO EDUARDO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-27', 389320.00, 'A'), - (2169, 2, 'BLANCO VALLE RICARDO ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-07-13', 355950.00, 'A'), - (2171, 2, 'BELTRAN ZAVALA JIMI ALFONSO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126674, '2011-08-22', 991000.00, 'A'), - (2172, 2, 'RAMIRO OREGUI JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-04-27', 119700.00, 'A'), - (2175, 2, 'FENG PUYO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 302172, '2011-10-07', 965660.00, 'A'), - (2176, 3, 'CLERICI GUIDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 116366, '2011-08-30', 522970.00, 'A'), - (2177, 1, 'SEIJAS GUNTER LUIS MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-02', 717890.00, 'A'), - (2178, 2, 'SHOSHANI MOSHE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-13', 20520.00, 'A'), - (218, 3, 'HUCHICHALEO ARSENDIGA FRANCISCA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-05', 690.00, 'A'), - (2181, 2, 'DOMINGO BARTOLOME LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '173@terra.com.co', '2011-02-03', 127591, '2011-04-18', 569030.00, 'A'), - (2182, 3, 'GONZALEZ RIJO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-10-02', 795610.00, 'A'), - (2183, 2, 'ANDROVICH MORENO LIZETH LILIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127300, '2011-10-10', 270970.00, 'A'), - (2184, 2, 'ARREAZA LUGO JESUS ALFREDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', 968030.00, 'A'), - (2185, 2, 'NAVEDA CANELON KATHERINE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132775, '2011-09-14', 27250.00, 'A'), - (2189, 2, 'LUGO BEHRENS DENISE SOFIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-08', 253980.00, 'A'), - (2190, 2, 'ERICA ROSE MOLDENHAUVER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-25', 175480.00, 'A'), - (2192, 2, 'SOLORZANO GARCIA ANDREINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 50790.00, 'A'), - (2193, 3, 'DE LA COSTE MARIA CAROLINA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-26', 907640.00, 'A'), - (2194, 2, 'MARTINEZ DIAZ JUAN JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-08', 385810.00, 'A'), - (2195, 2, 'GALARRAGA ECHEVERRIA DAYEN ALI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-13', 206150.00, 'A'), - (2196, 2, 'GUTIERREZ RAMIREZ HECTOR JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133211, '2011-06-07', 873330.00, 'A'), - (2197, 2, 'LOPEZ GONZALEZ SILVIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127662, '2011-09-01', 748170.00, 'A'), - (2198, 2, 'SEGARES LUTZ JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-07', 120880.00, 'A'), - (2199, 2, 'NADER MARTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127538, '2011-08-12', 359880.00, 'A'), - (22, 1, 'CARDOZO AMAYA JORGE HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-25', 908720.00, 'A'), - (2200, 3, 'NATERA BERMUDEZ OSWALDO JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-18', 436740.00, 'A'), - (2201, 2, 'COSTA RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 150699, '2011-09-01', 104090.00, 'A'), - (2202, 5, 'GRUNDY VALENZUELA ALAN PATRICK', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-08', 210230.00, 'A'), - (2203, 2, 'MONTENEGRO DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-26', 738890.00, 'A'), - (2204, 2, 'TAMAI BUNGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-24', 63730.00, 'A'), - (2205, 5, 'VINHAS FORTUNA EDSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-09-23', 102010.00, 'A'), - (2206, 2, 'RUIZ ERBS MARIO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-07-19', 318860.00, 'A'), - (2207, 2, 'VENTURA TINEO MARCEL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', 288240.00, 'A'), - (2210, 2, 'RAMIREZ GUZMAN RICARDO JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-28', 338740.00, 'A'), - (2211, 2, 'STERNBERG GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2011-09-04', 18070.00, 'A'), - (2212, 2, 'MARTELLO ALEJOS ROGER ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127443, '2011-06-20', 74120.00, 'A'), - (2213, 2, 'CASTANEDA RAFAEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 316410.00, 'A'), - (2214, 2, 'LIMON MARTINEZ WILBERT DE JESUS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128904, '2011-09-19', 359690.00, 'A'), - (2215, 2, 'PEREZ HERNANDEZ MONICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133211, '2011-05-23', 849240.00, 'A'), - (2216, 2, 'AWAD LOBATO RICARDO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '853@hotmail.com', '2011-02-03', 127591, '2011-04-12', 167100.00, 'A'), - (2217, 2, 'CEPEDA VANEGAS ENDER ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-08-22', 287770.00, 'A'), - (2218, 2, 'PEREZ CHIQUIN HECTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132572, '2011-04-13', 937580.00, 'A'), - (2220, 5, 'FRANCO DELGADILLO RONALD FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132775, '2011-09-16', 310190.00, 'A'), - (2222, 2, 'ALCAIDE ALONSO JUAN MIGUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-02', 455360.00, 'A'), - (2223, 3, 'BROWNING BENJAMIN MARK', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-09', 45230.00, 'A'), - (2225, 3, 'HARWOO BENJAMIN JOEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 164620.00, 'A'), - (2226, 3, 'HOEY TIMOTHY ROSS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-09', 242910.00, 'A'), - (2227, 3, 'FERGUSON GARRY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-28', 720700.00, 'A'), - (2228, 3, 'NORMAN NEVILLE ROBERT', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 288493, '2011-06-29', 874750.00, 'A'), - (2229, 3, 'KUK HYUN CHAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-03-22', 211660.00, 'A'), - (223, 1, 'PINZON PLAZA MARCOS VINICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 856300.00, 'A'), - (2230, 3, 'SLIPAK NATALIA ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-07-27', 434070.00, 'A'), - (2231, 3, 'BONELLI MASSIMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 170601, '2011-07-11', 535340.00, 'A'), - (2233, 3, 'VUYLSTEKE ALEXANDER ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 284647, '2011-09-11', 266530.00, 'A'), - (2234, 3, 'DRESSE ALAIN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 284272, '2011-04-19', 209100.00, 'A'), - (2235, 3, 'PAIRON JEAN LOUIS MARIE RAIMOND', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 284272, '2011-03-03', 245940.00, 'A'), - (2236, 3, 'DEVIANE ACHIM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 284272, '2010-11-14', 602370.00, 'A'), - (2239, 3, 'DE CANNIERE LOUIS GEORFES HELE MARIE-JOZEF', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 285511, '2011-09-11', 993540.00, 'A'), - (2240, 1, 'ERGO ROBERT', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-28', 278270.00, 'A'), - (2241, 3, 'MYRTES RODRIGUEZ MORGANA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-18', 410740.00, 'A'), - (2242, 3, 'BRECHBUEHL HANSRUDOLF', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 249059, '2011-07-27', 218900.00, 'A'), - (2243, 3, 'IVANA SCHLUMPF', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 245206, '2011-04-08', 862270.00, 'A'), - (2244, 3, 'JESSICA JACCART', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 189512, '2011-08-28', 654640.00, 'A'), - (2246, 3, 'PAUSELLI MARIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 210050, '2011-09-26', 468090.00, 'A'), - (2247, 3, 'VOLONTEIRO RICCARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-04-13', 281230.00, 'A'), - (2248, 3, 'HOFFMANN ALVIR ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 120773, '2011-08-23', 1900.00, 'A'), - (2249, 3, 'MANTOVANI DANIEL FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-08-09', 165820.00, 'A'), - (225, 1, 'DUARTE RUEDA JAVIER ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-29', 293110.00, 'A'), - (2250, 3, 'LIMA DA COSTA BRENO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-03-23', 823370.00, 'A'), - (2251, 3, 'TAMBORIN MACIEL MAGALI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 619420.00, 'A'), - (2252, 3, 'BELLO DE MUORA BIANCA', 191821112, 'CRA 25 CALLE 100', '969@gmail.com', '2011-02-03', 118942, '2011-08-03', 626970.00, 'A'), - (2253, 3, 'VINHAS FORTUNA PIETRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2011-09-23', 276600.00, 'A'), - (2255, 3, 'BLUMENTHAL JAIRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117630, '2011-07-20', 680590.00, 'A'), - (2256, 3, 'DOS REIS FILHO ELPIDIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 120773, '2011-08-07', 896720.00, 'A'), - (2257, 3, 'COIMBRA CARDOSO MUNARI FERNANDA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-09', 441830.00, 'A'), - (2258, 3, 'LAZANHA FLAVIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118942, '2011-06-14', 519000.00, 'A'), - (2259, 3, 'LAZANHA FLAVIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-06-14', 269480.00, 'A'), - (226, 1, 'HUERFANO FLOREZ JOHN FAVER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-29', 148340.00, 'A'), - (2260, 3, 'JOVETTA EDILSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118941, '2011-09-19', 790430.00, 'A'), - (2261, 3, 'DE OLIVEIRA ANDRE RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-07-25', 143680.00, 'A'), - (2263, 3, 'MUNDO TEIXEIRA CARVALHO SILVIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118864, '2011-09-19', 304670.00, 'A'), - (2264, 3, 'FERREIRA CINTRA ADRIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-04-08', 481910.00, 'A'), - (2265, 3, 'AUGUSTO DE OLIVEIRA MARCOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118685, '2011-08-09', 495530.00, 'A'), - (2266, 3, 'CHEN ROBERTO LUIZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-03-15', 31920.00, 'A'), - (2268, 3, 'WROBLESKI DIENSTMANN RAQUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117630, '2011-05-15', 269320.00, 'A'), - (2269, 3, 'MALAGOLA GEDERSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118864, '2011-05-30', 327540.00, 'A'), - (227, 1, 'LOPEZ ESCOBAR CARLOS ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-06', 862360.00, 'A'), - (2271, 3, 'GOMES EVANDRO HENRIQUE', 191821112, 'CRA 25 CALLE 100', '199@hotmail.es', '2011-02-03', 118777, '2011-03-24', 166100.00, 'A'), - (2273, 3, 'LANDEIRA FERNANDEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-21', 207990.00, 'A'), - (2274, 3, 'ROSSI RENATO', 191821112, 'CRA 25 CALLE 100', '791@hotmail.es', '2011-02-03', 118777, '2011-09-19', 16170.00, 'A'), - (2275, 3, 'CALMON RANGEL PATRICIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 456890.00, 'A'), - (2277, 3, 'CIFU NETO ROQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-04-27', 808940.00, 'A'), - (2278, 3, 'GONCALVES PRETO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118942, '2011-07-25', 336930.00, 'A'), - (2279, 3, 'JORGE JUNIOR ROBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-05-09', 257840.00, 'A'), - (2281, 3, 'ELENCIUC DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-04-20', 618510.00, 'A'), - (2283, 3, 'CUNHA MENDEZ RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 119855, '2011-07-18', 431190.00, 'A'), - (2286, 3, 'DIAZ LENICE APARECIDA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-03', 977840.00, 'A'), - (2288, 3, 'DE CARVALHO SIGEL TATIANA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2011-07-04', 123920.00, 'A'), - (229, 1, 'GALARZA GIRALDO SERGIO ALDEMAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-09-17', 746930.00, 'A'), - (2290, 3, 'ACHOA MORANDI BORGUES SIBELE MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118777, '2011-09-12', 553890.00, 'A'), - (2291, 3, 'EPAMINONDAS DE ALMEIDA DELIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-22', 14080.00, 'A'), - (2293, 3, 'REIS CASTRO SHANA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-08-03', 1430.00, 'A'), - (2294, 3, 'BERNARDES JUNIOR ARMANDO', 191821112, 'CRA 25 CALLE 100', '678@gmail.com', '2011-02-03', 127591, '2011-08-30', 780930.00, 'A'), - (2295, 3, 'LEMOS DE SOUZA AGUIAR SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-10-03', 900370.00, 'A'), - (2296, 3, 'CARVALHO ADAMS KARIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2011-08-11', 159040.00, 'A'), - (2297, 3, 'GALLINA SILVANA BRASILEIRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 94110.00, 'A'), - (23, 1, 'COLMENARES PEDREROS EDUARDO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 625870.00, 'A'), - (2300, 3, 'TAVEIRA DE SIQUEIRA TANIA APARECIDA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-24', 443910.00, 'A'), - (2301, 3, 'DA SIVA LIMA ANDRE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-23', 165020.00, 'A'), - (2302, 3, 'GALVAO GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-09-12', 493370.00, 'A'), - (2303, 3, 'DA COSTA CRUZ GABRIELA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-07-27', 971800.00, 'A'), - (2304, 3, 'BERNHARD GOTTFRIED RABER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-04-30', 378870.00, 'A'), - (2306, 3, 'ALDANA URIBE PABLO AXEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-05-08', 758160.00, 'A'), - (2308, 3, 'FLORES ALONSO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-04-26', 995310.00, 'A'), - ('CELL4330', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (2309, 3, 'MADRIGAL MIER Y TERAN LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-02-23', 414650.00, 'A'), - (231, 1, 'ZAPATA CEBALLOS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-08-16', 430320.00, 'A'), - (2310, 3, 'GONZALEZ ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-05-19', 87330.00, 'A'), - (2313, 3, 'MONTES PORTO ANDREA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-09-01', 929180.00, 'A'), - (2314, 3, 'ROCHA SUSUNAGA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2010-10-18', 541540.00, 'A'), - (2315, 3, 'VASQUEZ CALERO FEDERICO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 920160.00, 'A'), - (2317, 3, 'GONZALEZ FERNANDEZ YUSSEN ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-26', 120530.00, 'A'), - (2319, 3, 'ATTIAS WENGROWSKY DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150581, '2011-09-07', 8580.00, 'A'), - (232, 1, 'OSPINA ABUCHAIBE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-14', 748960.00, 'A'), - (2320, 3, 'EFRON TOPOROVSKY INES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 116511, '2011-07-15', 20810.00, 'A'), - (2321, 3, 'LUNA PLA DARIO', 191821112, 'CRA 25 CALLE 100', '95@terra.com.co', '2011-02-03', 145135, '2011-09-07', 78320.00, 'A'), - (2322, 1, 'VAZQUEZ DANIELA', 191821112, 'CRA 25 CALLE 100', '190@gmail.com', '2011-02-03', 145135, '2011-05-19', 329170.00, 'A'), - (2323, 3, 'BALBI BALBI JUAN DE DIOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-23', 410880.00, 'A'), - (2324, 3, 'MARROQUIN FERNANDEZ GELACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-23', 66880.00, 'A'), - (2325, 3, 'VAZQUEZ ZAVALA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-04-11', 101770.00, 'A'), - (2326, 3, 'SOTO MARTINEZ MARIA ELENA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-23', 308200.00, 'A'), - (2328, 3, 'HERNANDEZ MURILLO RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-22', 253830.00, 'A'), - (233, 1, 'HADDAD LINERO YEBRAIL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 130608, '2010-06-17', 453830.00, 'A'), - (2330, 3, 'TERMINEL HERNANDEZ DANIELA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 190393, '2011-08-15', 48940.00, 'A'), - (2331, 3, 'MIJARES FERNANDEZ MAGDALENA GUADALUPE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-31', 558440.00, 'A'), - (2332, 3, 'GONZALEZ LUNA CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 146258, '2011-04-26', 645400.00, 'A'), - (2333, 3, 'DIAZ TORREJON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-03', 551690.00, 'A'), - (2335, 3, 'PADILLA GUTIERREZ JESUS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 456120.00, 'A'), - (2336, 3, 'TORRES CORONA JORGE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', 813900.00, 'A'), - (2337, 3, 'CASTRO RAMSES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150581, '2011-07-04', 701120.00, 'A'), - (2338, 3, 'APARICIO VALLEJO RUSSELL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-03-16', 63890.00, 'A'), - (2339, 3, 'ALBOR FERNANDEZ LUIS ARTURO', 191821112, 'CRA 25 CALLE 100', '574@gmail.com', '2011-02-03', 147467, '2011-05-09', 216110.00, 'A'), - (234, 1, 'DOMINGUEZ GOMEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '942@hotmail.com', '2011-02-03', 127591, '2010-08-22', 22260.00, 'A'), - (2342, 3, 'REY ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '110@facebook.com', '2011-02-03', 127591, '2011-03-04', 313330.00, 'A'), - (2343, 3, 'MENDOZA GONZALES ADRIANA', 191821112, 'CRA 25 CALLE 100', '295@yahoo.com', '2011-02-03', 127591, '2011-03-23', 178720.00, 'A'), - (2344, 3, 'RODRIGUEZ SEGOVIA JESUS ALONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-07-26', 953590.00, 'A'), - (2345, 3, 'GONZALEZ PELAEZ EDUARDO DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 231790.00, 'A'), - (2347, 3, 'VILLEDA GARCIA DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 144939, '2011-05-29', 795600.00, 'A'), - (2348, 3, 'FERRER BURGES EMILIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', 83430.00, 'A'), - (2349, 3, 'NARRO ROBLES LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-03-16', 30330.00, 'A'), - (2350, 3, 'ZALDIVAR UGALDE CARLOS IGNACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-06-19', 901380.00, 'A'), - (2351, 3, 'VARGAS RODRIGUEZ VALENTE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 146258, '2011-04-26', 415910.00, 'A'), - (2354, 3, 'DEL PIERO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-09', 19890.00, 'A'), - (2355, 3, 'VILLAREAL ANA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-23', 211810.00, 'A'), - (2356, 3, 'GARRIDO FERRAN JORGE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 999370.00, 'A'), - (2357, 3, 'PEREZ PRECIADO EDMUNDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-22', 361450.00, 'A'), - (2358, 3, 'AGUIRRE VIGNAU DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150581, '2011-08-21', 809110.00, 'A'), - (2359, 3, 'LOPEZ SESMA TOMAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 146258, '2011-09-14', 961200.00, 'A'), - (236, 1, 'VENTO BETANCOURT LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-19', 682230.00, 'A'), - (2360, 3, 'BERNAL MALDONADO GUILLERMO JAVIER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-19', 378670.00, 'A'), - (2361, 3, 'GUZMAN DELGADO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-22', 9770.00, 'A'), - (2362, 3, 'GUZMAN DELGADO MARTIN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 912850.00, 'A'), - (2363, 3, 'GUSMAND ELGADO JORGE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-22', 534910.00, 'A'), - (2364, 3, 'RENDON BUICK JORGE JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-26', 936010.00, 'A'), - (2365, 3, 'HERNANDEZ HERNANDEZ HERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 75340.00, 'A'), - (2366, 3, 'ALVAREZ PAZ PEDRO RAFAEL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-01-02', 568650.00, 'A'), - (2367, 3, 'MIJARES DE LA BARREDA FERNANDA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-07-31', 617240.00, 'A'), - (2368, 3, 'MARTINEZ LOPEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-08-24', 380250.00, 'A'), - (2369, 3, 'GAYTAN MILLAN YANERI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 49520.00, 'A'), - (237, 1, 'BARGUIL ASSIS DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117460, '2009-09-03', 161770.00, 'A'), - (2370, 3, 'DURAN HEREDIA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-04-15', 106850.00, 'A'), - (2371, 3, 'SEGURA MIJARES CRISTOBAL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-31', 385700.00, 'A'), - (2372, 3, 'TEPOS VALTIERRA ERIK ARTURO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116345, '2011-09-01', 607930.00, 'A'), - (2373, 3, 'RODRIGUEZ AGUILAR EDMUNDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-05-04', 882570.00, 'A'), - (2374, 3, 'MYSLABODSKI MICHAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-03-08', 589060.00, 'A'), - (2375, 3, 'HERNANDEZ MIRELES JATNIEL ELIOENAI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', 297600.00, 'A'), - (2376, 3, 'SNELL FERNANDEZ SYNTYHA ROCIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 720830.00, 'A'), - (2378, 3, 'HERNANDEZ EIVET AARON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 394200.00, 'A'), - (2379, 3, 'LOPEZ GARZA JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-22', 837000.00, 'A'), - (238, 1, 'GARCIA PINO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-10', 762140.00, 'A'), - (2381, 3, 'TOSCANO ESTRADA RUBEN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-22', 500940.00, 'A'), - (2382, 3, 'RAMIREZ HUDSON ROGER SILVESTER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-22', 497550.00, 'A'), - (2383, 3, 'RAMOS JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '362@yahoo.es', '2011-02-03', 127591, '2011-08-22', 984940.00, 'A'), - (2384, 3, 'CORTES CERVANTES ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-04-11', 432020.00, 'A'), - (2385, 3, 'POZOS ESQUIVEL DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-27', 205310.00, 'A'), - (2387, 3, 'ESTRADA AGUIRRE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 36470.00, 'A'), - (2388, 3, 'GARCIA RAMIREZ RAMON', 191821112, 'CRA 25 CALLE 100', '177@yahoo.es', '2011-02-03', 127591, '2011-08-22', 990910.00, 'A'), - (2389, 3, 'PRUD HOMME GARCIA CUBAS XAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-18', 845140.00, 'A'), - (239, 1, 'PINZON ARDILA GUSTAVO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-01', 325400.00, 'A'), - (2390, 3, 'ELIZABETH OCHOA ROJAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-05-21', 252950.00, 'A'), - (2391, 3, 'MEZA ALVAREZ JOSE ALBERTO', 191821112, 'CRA 25 CALLE 100', '646@terra.com.co', '2011-02-03', 144939, '2011-05-09', 729340.00, 'A'), - (2392, 3, 'HERRERA REYES RENATO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2010-02-28', 887860.00, 'A'), - (2393, 3, 'MURILLO GARIBAY GILBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-08-20', 251280.00, 'A'), - (2394, 3, 'GARCIA JIMENEZ CARLOS MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-09', 592830.00, 'A'), - (2395, 3, 'GUAGNELLI MARTINEZ BLANCA MONICA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145184, '2010-10-05', 210320.00, 'A'), - (2397, 3, 'GARCIA CISNEROS RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-07-04', 734530.00, 'A'), - (2398, 3, 'MIRANDA ROMO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 853340.00, 'A'), - (24, 1, 'ARREGOCES GARZON NELSON ORLANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127783, '2011-08-12', 403190.00, 'A'), - (240, 1, 'ARCINIEGAS GOMEZ ALBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-18', 340590.00, 'A'), - (2400, 3, 'HERRERA ABARCA EDUARDO VICENTE ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 755620.00, 'A'), - (2403, 3, 'CASTRO MONCAYO LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-07-29', 617260.00, 'A'), - (2404, 3, 'GUZMAN DELGADO OSBALDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 56250.00, 'A'), - (2405, 3, 'GARCIA LOPEZ DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-22', 429500.00, 'A'), - (2406, 3, 'JIMENEZ GAMEZ RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 245206, '2011-03-23', 978720.00, 'A'), - (2407, 3, 'BECERRA MARTINEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-08-23', 605130.00, 'A'), - (2408, 3, 'GARCIA MARTINEZ BERNARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 89480.00, 'A'), - (2409, 3, 'URRUTIA RAYAS BALTAZAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 632020.00, 'A'), - (241, 1, 'MEDINA AGUILA NESTOR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-09', 726730.00, 'A'), - (2411, 3, 'VERGARA MENDOZAVICTOR HUGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-06-15', 562230.00, 'A'), - (2412, 3, 'MENDOZA MEDINA JORGE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 136170.00, 'A'), - (2413, 3, 'CORONADO CASTILLO HUGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 147529, '2011-05-09', 994160.00, 'A'), - (2414, 3, 'GONZALEZ SOTO DELIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-03-23', 562280.00, 'A'), - (2415, 3, 'HERNANDEZ FLORES STEPHANIE REYNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 828940.00, 'A'), - (2416, 3, 'ABRAJAN GUERRERO MARIA DE LOS ANGELES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-23', 457860.00, 'A'), - (2417, 3, 'HERNANDEZ LOERA ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 802490.00, 'A'), - (2418, 3, 'TARIN LOPEZ JOSE CARMEN', 191821112, 'CRA 25 CALLE 100', '117@gmail.com', '2011-02-03', 127591, '2011-03-23', 638870.00, 'A'), - (242, 1, 'JULIO NARVAEZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-05', 611890.00, 'A'), - (2420, 3, 'BATTA MARQUEZ VICTOR ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-08-23', 17820.00, 'A'), - (2423, 3, 'GONZALEZ REYES JUAN JOSE', 191821112, 'CRA 25 CALLE 100', '55@yahoo.es', '2011-02-03', 127591, '2011-07-26', 758070.00, 'A'), - (2425, 3, 'ALVAREZ RODRIGUEZ HIRAM RAMSES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-23', 847420.00, 'A'), - (2426, 3, 'FEMATT HERNANDEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-03-23', 164130.00, 'A'), - (2427, 3, 'GUTIERRES ORTEGA FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 278410.00, 'A'), - (2428, 3, 'JIMENEZ DIAZ JUAN JORGE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-13', 899650.00, 'A'), - (2429, 3, 'VILLANUEVA PEREZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '656@yahoo.es', '2011-02-03', 150449, '2011-03-23', 663000.00, 'A'), - (243, 1, 'GOMEZ REYES ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126674, '2009-12-20', 879240.00, 'A'), - (2430, 3, 'CERON GOMEZ JOEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-03-21', 616070.00, 'A'), - (2431, 3, 'LOPEZ LINALDI DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-05-09', 91360.00, 'A'), - (2432, 3, 'JOSEPH NATHAN PEDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-02', 608580.00, 'A'), - (2433, 3, 'CARRENO PULIDO RUBEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 147242, '2011-06-19', 768810.00, 'A'), - (2434, 3, 'AREVALO MERCADO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-06-12', 18320.00, 'A'), - (2436, 3, 'RAMIREZ QUEZADA ERIKA BELEM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-03', 870930.00, 'A'), - (2438, 3, 'TATTO PRIETO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-19', 382740.00, 'A'), - (2439, 3, 'LOPEZ AYALA LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-10-08', 916370.00, 'A'), - (244, 1, 'DEVIS EDGAR JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-10-08', 560540.00, 'A'), - (2440, 3, 'HERNANDEZ TOVAR JORGE ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 144991, '2011-10-02', 433650.00, 'A'), - (2441, 3, 'COLLIARD LOPEZ PETER GEORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 419120.00, 'A'), - (2442, 3, 'FLORES CHALA GARY', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 794670.00, 'A'), - (2443, 3, 'FANDINO MUNOZ ZAMIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-19', 715970.00, 'A'), - (2444, 3, 'BARROSO VARGAS DIEGO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-26', 195840.00, 'A'), - (2446, 3, 'CRUZ RAMIREZ JUAN PEDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-07-14', 569050.00, 'A'), - (2447, 3, 'TIJERINA ACOSTA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 351280.00, 'A'), - (2449, 3, 'JASSO BARRERA CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-08-24', 192560.00, 'A'), - (245, 1, 'LENCHIG KALEDA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-02', 165000.00, 'A'), - (2450, 3, 'GARRIDO PATRON VICTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-09-27', 814970.00, 'A'), - (2451, 3, 'VELASQUEZ GUERRERO RUBEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', 497150.00, 'A'), - (2452, 3, 'CHOI SUNGKYU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 209494, '2011-08-16', 40860.00, 'A'), - (2453, 3, 'CONTRERAS LOPEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-08-05', 712830.00, 'A'), - (2454, 3, 'CHAVEZ BATAA OSCAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 150699, '2011-06-14', 441590.00, 'A'), - (2455, 3, 'LEE JONG HYUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131272, '2011-10-10', 69460.00, 'A'), - (2456, 3, 'MEDINA PADILLA CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 146589, '2011-04-20', 22530.00, 'A'), - (2457, 3, 'FLORES CUEVAS DOTNARA LUZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-05-17', 904260.00, 'A'), - (2458, 3, 'LIU YONGCHAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-10-09', 453710.00, 'A'), - (2459, 3, 'CASTRO FERNANDES PORTOCARRERO JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 195892, '2011-06-14', 555790.00, 'A'), - (246, 1, 'YAMHURE FONSECAN ERNESTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-10-03', 143350.00, 'A'), - (2460, 3, 'DUAN WEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-06-22', 417820.00, 'A'), - (2461, 3, 'ZHU XUTAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-18', 421740.00, 'A'), - (2462, 3, 'MEI SHUANNIU', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-09', 855240.00, 'A'), - (2464, 3, 'VEGA VACA LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-06-08', 489110.00, 'A'), - (2465, 3, 'TANG YUMING', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 147578, '2011-03-26', 412660.00, 'A'), - (2466, 3, 'VILLEDA GARCIA DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 144939, '2011-06-07', 595990.00, 'A'), - (2467, 3, 'GARCIA GARZA BLANCA ARMIDA', 191821112, 'CRA 25 CALLE 100', '927@hotmail.com', '2011-02-03', 145135, '2011-05-20', 741940.00, 'A'), - (2468, 3, 'HERNANDEZ MARTINEZ EMILIO JOAQUIN', 191821112, 'CRA 25 CALLE 100', '356@facebook.com', '2011-02-03', 145135, '2011-06-16', 921740.00, 'A'), - (2469, 3, 'WANG FAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 185363, '2011-08-20', 382860.00, 'A'), - (247, 1, 'ROJAS RODRIGUEZ ALVARO HERNAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-09', 221760.00, 'A'), - (2470, 3, 'WANG FEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-10-09', 149100.00, 'A'), - (2471, 3, 'BERNAL MALDONADO GUILLERMO JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118777, '2011-07-26', 596900.00, 'A'), - (2472, 3, 'GUTIERREZ GOMEZ ARTURO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145184, '2011-07-24', 537210.00, 'A'), - (2474, 3, 'LAN TYANYE ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-23', 865050.00, 'A'), - (2475, 3, 'LAN SHUZHEN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-23', 639240.00, 'A'), - (2476, 3, 'RODRIGUEZ GONZALEZ CARLOS ARTURO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 144616, '2011-08-09', 601050.00, 'A'), - (2477, 3, 'HAIBO NI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-20', 87540.00, 'A'), - (2479, 3, 'RUIZ RODRIGUEZ GRACIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-05-20', 910130.00, 'A'), - (248, 1, 'GONZALEZ RODRIGUEZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-03', 678750.00, 'A'), - (2480, 3, 'OROZCO MACIAS NORMA LETICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-20', 647010.00, 'A'), - (2481, 3, 'MEZA ALVAREZ JOSE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 144939, '2011-06-07', 504670.00, 'A'), - (2482, 3, 'RODRIGUEZ FIGUEROA RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 146308, '2011-04-27', 582290.00, 'A'), - (2483, 3, 'CARREON GUERRA ANA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 110709, '2011-05-27', 397440.00, 'A'), - (2484, 3, 'BOTELHO BARRETO CARLOS JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 195892, '2011-08-02', 240350.00, 'A'), - (2485, 3, 'CORONADO CASTILLO HUGO', 191821112, 'CRA 25 CALLE 100', '209@yahoo.com.mx', '2011-02-03', 147529, '2011-06-07', 9420.00, 'A'), - (2486, 3, 'DE FUENTES GARZA MARCELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-18', 326030.00, 'A'), - (2487, 3, 'GONZALEZ DUHART GUTIERREZ HORACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-17', 601920.00, 'A'), - (2488, 3, 'LOPEZ LINALDI DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-06-07', 31500.00, 'A'), - (2489, 3, 'CASTRO MONCAYO JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-06-15', 351720.00, 'A'), - (249, 1, 'CASTRO RIBEROS JULIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-23', 728470.00, 'A'), - (2490, 3, 'SERRALDE LOPEZ MARIA GUADALUPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-25', 664120.00, 'A'), - (2491, 3, 'GARRIDO PATRON VICTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-09-29', 265450.00, 'A'), - (2492, 3, 'BRAUN JUAN NICOLAS ANTONIE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-28', 334880.00, 'A'), - (2493, 3, 'BANKA RAHUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 141138, '2011-05-02', 878070.00, 'A'), - (2494, 1, 'GARCIA MARTINEZ MARIA VIRGINIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-17', 385690.00, 'A'), - (2495, 1, 'MARIA VIRGINIA', 191821112, 'CRA 25 CALLE 100', '298@yahoo.com.mx', '2011-02-03', 127591, '2011-04-16', 294220.00, 'A'), - (2496, 3, 'GOMEZ ZENDEJAS MARIA ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145184, '2011-06-06', 314060.00, 'A'), - (2498, 3, 'MENDEZ MARTINEZ RAUL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-10', 496040.00, 'A'), - (2623, 3, 'ZAFIROPOULO ANA I', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 98170.00, 'A'), - (2499, 3, 'CARREON GUERRA ANA CECILIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-29', 417240.00, 'A'), - (2501, 3, 'OLIVAR ARIAS ISMAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-06-06', 738850.00, 'A'), - (2502, 3, 'ABOUMRAD NASTA EMILE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-07-26', 899890.00, 'A'), - (2503, 3, 'RODRIGUEZ JIMENEZ ROBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-05-03', 282900.00, 'A'), - (2504, 3, 'ESTADOS UNIDOS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-27', 714840.00, 'A'), - (2505, 3, 'SOTO MUNOZ MARCO GREGORIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-26', 725480.00, 'A'), - (2506, 3, 'GARCIA MONTER ANA OTILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-10-05', 482880.00, 'A'), - (2507, 3, 'THIRUKONDA VIGNESH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126180, '2011-05-02', 237950.00, 'A'), - (2508, 3, 'RAMIREZ REATIAGA LYDA YOANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 150699, '2011-06-26', 741120.00, 'A'), - (2509, 3, 'SEPULVEDA RODRIGUEZ JESUS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', 991730.00, 'A'), - (251, 1, 'MEJIA PIZANO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-10', 845000.00, 'A'), - (2510, 3, 'FRANCISCO MARIA DIAS COSTA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 179111, '2011-07-12', 735330.00, 'A'), - (2511, 3, 'TEIXEIRA REGO DE OLIVEIRA TIAGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 179111, '2011-06-14', 701430.00, 'A'), - (2512, 3, 'PHILLIP JAMES', 191821112, 'CRA 25 CALLE 100', '766@terra.com.co', '2011-02-03', 127591, '2011-09-28', 301150.00, 'A'), - (2513, 3, 'ERXLEBEN ROBERT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 216125, '2011-04-13', 401460.00, 'A'), - (2514, 3, 'HUGHES CONNORRICHARD', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-06-22', 103880.00, 'A'), - (2515, 3, 'LEBLANC MICHAEL PAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 216125, '2011-08-09', 314990.00, 'A'), - (2517, 3, 'DEVINE CHRISTOPHER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-06-22', 371560.00, 'A'), - (2518, 3, 'WONG BRIAN TEK FUNG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126885, '2011-09-22', 67910.00, 'A'), - (2519, 3, 'BIDWALA IRFAN A', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 154811, '2011-03-28', 224840.00, 'A'), - (252, 1, 'JIMENEZ LARRARTE JUAN GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-01', 406770.00, 'A'), - (2520, 3, 'LEE HO YIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 147578, '2011-08-29', 920470.00, 'A'), - (2521, 3, 'DE MOURA MARTINS NUNO ALEXANDRE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196094, '2011-10-09', 927850.00, 'A'), - (2522, 3, 'DA COSTA GOMES CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 179111, '2011-08-10', 877850.00, 'A'), - (2523, 3, 'HOOGWAERTS PAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-02-11', 605690.00, 'A'), - (2524, 3, 'LOPES MARQUES LUIS JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2011-09-20', 394910.00, 'A'), - (2525, 3, 'CORREIA CAVACO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 178728, '2011-10-09', 157470.00, 'A'), - (2526, 3, 'HALL JOHN WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-09', 602620.00, 'A'), - (2527, 3, 'KNIGHT MARTIN GYLES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 113550, '2011-08-29', 540670.00, 'A'), - (2528, 3, 'HINDS THMAS TRISTAN PELLEW', 191821112, 'CRA 25 CALLE 100', '337@yahoo.es', '2011-02-03', 116862, '2011-08-23', 895500.00, 'A'), - (2529, 3, 'CARTON ALAN JOHN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-07-31', 855510.00, 'A'), - (253, 1, 'AZCUENAGA RAMIREZ NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 298472, '2011-05-10', 498840.00, 'A'), - (2530, 3, 'GHIM CHEOLL HO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-27', 591060.00, 'A'), - (2531, 3, 'PHILLIPS NADIA SULLIVAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-28', 388750.00, 'A'), - (2532, 3, 'CHANG KUKHYUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-22', 170560.00, 'A'), - (2533, 3, 'KANG SEOUNGHYUN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 173192, '2011-08-24', 686540.00, 'A'), - (2534, 3, 'CHUNG BYANG HOON', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 125744, '2011-03-14', 921030.00, 'A'), - (2535, 3, 'SHIN MIN CHUL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 173192, '2011-08-24', 545510.00, 'A'), - (2536, 3, 'CHOI JIN SUNG', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-15', 964490.00, 'A'), - (2537, 3, 'CHOI SUNGMIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-27', 185910.00, 'A'), - (2538, 3, 'PARK JAESER ', 191821112, 'CRA 25 CALLE 100', '525@terra.com.co', '2011-02-03', 127591, '2011-09-03', 36090.00, 'A'), - (2539, 3, 'KIM DAE HOON ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 173192, '2011-08-24', 622700.00, 'A'), - (254, 1, 'AVENDANO PABON ROLANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-05-12', 273900.00, 'A'), - (2540, 3, 'LYNN MARIA CRISTINA NORMA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116862, '2011-09-21', 5220.00, 'A'), - (2541, 3, 'KIM CHINIL JULIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 147578, '2011-08-27', 158030.00, 'A'), - (2543, 3, 'HALL JOHN WILLIAM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 398290.00, 'A'), - (2544, 3, 'YOSUKE PERDOMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 165600, '2011-07-26', 668040.00, 'A'), - (2546, 3, 'AKAGI KAZAHIKO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-26', 722510.00, 'A'), - (2547, 3, 'NELSON JONATHAN GARY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-09', 176570.00, 'A'), - (2548, 3, 'DUONG HOP BA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 116862, '2011-09-14', 715310.00, 'A'), - (2549, 3, 'CHAO-VILLEGAS NIKOLE TUK HING', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 180063, '2011-04-05', 46830.00, 'A'), - (255, 1, 'CORREA ALVARO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-27', 872990.00, 'A'), - (2551, 3, 'APPELS LAURENT BERNHARD', 191821112, 'CRA 25 CALLE 100', '891@hotmail.es', '2011-02-03', 135190, '2011-08-16', 300620.00, 'A'), - (2552, 3, 'PLAISIER ERIK JAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289294, '2011-05-23', 238440.00, 'A'), - (2553, 3, 'BLOK HENDRIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 288552, '2011-03-27', 290350.00, 'A'), - (2554, 3, 'NETTE ANNA STERRE', 191821112, 'CRA 25 CALLE 100', '621@yahoo.com.mx', '2011-02-03', 185363, '2011-07-30', 736400.00, 'A'), - (2555, 3, 'FRIELING HANS ERIC', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 107469, '2011-07-31', 810990.00, 'A'), - (2556, 3, 'RUTTE CORNELIA JANTINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 143579, '2011-03-30', 845710.00, 'A'), - (2557, 3, 'WALRAVEN PIETER PAUL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 289294, '2011-07-29', 795620.00, 'A'), - (2558, 3, 'TREBES LAURENS JOHANNES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-11-22', 440940.00, 'A'), - (2559, 3, 'KROESE ROLANDWILLEBRORDUSMARIA', 191821112, 'CRA 25 CALLE 100', '188@facebook.com', '2011-02-03', 110643, '2011-06-09', 817860.00, 'A'), - (256, 1, 'FARIAS GARCIA REINI', 191821112, 'CRA 25 CALLE 100', '615@hotmail.com', '2011-02-03', 127591, '2011-03-05', 543220.00, 'A'), - (2560, 3, 'VAN DER HEIDE HENDRIK', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 291042, '2011-09-04', 766460.00, 'A'), - (2561, 3, 'VAN DEN BERG DONAR ALEXANDER GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 190393, '2011-07-13', 378720.00, 'A'), - (2562, 3, 'GODEFRIDUS JOHANNES ROPS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127622, '2011-10-02', 594240.00, 'A'), - (2564, 3, 'WAT YOK YIENG', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 287095, '2011-03-22', 392370.00, 'A'), - (2565, 3, 'BUIS JACOBUS NICOLAAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-20', 456810.00, 'A'), - (2567, 3, 'CHIPPER FRANCIUSCUS NICOLAAS ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 291599, '2011-07-28', 164300.00, 'A'), - (2568, 3, 'ONNO ROUKENS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-11-28', 500670.00, 'A'), - (2569, 3, 'PETRUS MARCELLINUS STEPHANUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-06-25', 10430.00, 'A'), - (2571, 3, 'VAN VOLLENHOVEN IVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-08', 719370.00, 'A'), - (2572, 3, 'LAMBOOIJ BART', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-09-20', 946480.00, 'A'), - (2573, 3, 'LANSER MARIANA PAULINE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 289294, '2011-04-09', 574270.00, 'A'), - (2575, 3, 'KLERKEN JOHANNES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 286101, '2011-05-24', 436840.00, 'A'), - (2576, 3, 'KRAS JACOBUS NICOLAAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289294, '2011-09-26', 88410.00, 'A'), - (2577, 3, 'FUCHS MICHAEL JOSEPH', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 185363, '2011-07-30', 131530.00, 'A'), - (2578, 3, 'BIJVANK ERIK JAN WILLEM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-11', 392410.00, 'A'), - (2579, 3, 'SCHMIDT FRANC ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 106742, '2011-09-11', 567470.00, 'A'), - (258, 1, 'SOTO GONZALEZ FRANCISCO LAZARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 116511, '2011-05-07', 856050.00, 'A'), - (2580, 3, 'VAN DER KOOIJ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 291277, '2011-07-10', 660130.00, 'A'), - (2581, 2, 'KRIS ANDRE GEORGES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-07-26', 598240.00, 'A'), - (2582, 3, 'HARDING LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 263813, '2011-05-08', 10820.00, 'A'), - (2583, 3, 'ROLLI GUY JEAN ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-05-31', 259370.00, 'A'), - (2584, 3, 'NIETO PARRA SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 263813, '2011-07-04', 264400.00, 'A'), - (2585, 3, 'LASTRA CHAVEZ PABLO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126674, '2011-05-25', 543890.00, 'A'), - (2586, 1, 'ZAIDA MAYERLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-05', 926250.00, 'A'), - (2587, 1, 'OSWALDO SOLORZANO CONTRERAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-28', 999590.00, 'A'), - (2588, 3, 'ZHOU XUAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-18', 219200.00, 'A'), - (2589, 3, 'HUANG ZHENGQUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-18', 97230.00, 'A'), - (259, 1, 'GALARZA NARANJO JAIME RENE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 988830.00, 'A'), - (2590, 3, 'HUANG ZHENQUIN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-18', 828560.00, 'A'), - (2591, 3, 'WEIDEN MULLER AMURER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-29', 851110.00, 'A'), - (2593, 3, 'OESTERHAUS CORNELIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 256231, '2011-03-29', 295960.00, 'A'), - (2594, 3, 'RINTALAHTI JUHA HENRIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 170220.00, 'A'), - (2597, 3, 'VERWIJNEN JONAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 289697, '2011-02-03', 638040.00, 'A'), - (2598, 3, 'SHAW ROBERT', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 157414, '2011-07-10', 273550.00, 'A'), - (2599, 3, 'MAKINEN TIMO JUHANI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-09-13', 453600.00, 'A'), - (260, 1, 'RIVERA CANON JOSE EDWARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127538, '2011-09-19', 375990.00, 'A'), - (2600, 3, 'HONKANIEMI ARTO OLAVI', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 301387, '2011-09-06', 447380.00, 'A'), - (2601, 3, 'DAGG JAMIE MICHAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 216125, '2011-08-09', 876080.00, 'A'), - (2602, 3, 'BOLAND PATRICK CHARLES ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 216125, '2011-09-14', 38260.00, 'A'), - (2603, 2, 'ZULEYKA JERRYS RIVERA MENDOZA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 150347, '2011-03-27', 563050.00, 'A'), - (2604, 3, 'DELGADO SEQUIRA FERRAO JOSE PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188228, '2011-08-16', 700460.00, 'A'), - (2605, 3, 'YORRO LORA EDGAR MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127689, '2011-06-17', 813180.00, 'A'), - (2606, 3, 'CARRASCO RODRIGUEZQCARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127689, '2011-06-17', 964520.00, 'A'), - (2607, 30, 'ORJUELA VELASQUEZ JULIANA MARIA', 191821112, 'CRA 25 CALLE 100', '372@terra.com.co', '2011-02-03', 132775, '2011-09-01', 383070.00, 'A'), - (2608, 3, 'DUQUE DUTRA LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-07-12', 21780.00, 'A'), - (261, 1, 'MURCIA MARQUEZ NESTOR JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-19', 913480.00, 'A'), - (2610, 3, 'NGUYEN HUU KHUONG', 191821112, 'CRA 25 CALLE 100', '457@facebook.com', '2011-02-03', 132958, '2011-05-07', 733120.00, 'A'), - (2611, 3, 'NGUYEN VAN LAP', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 786510.00, 'A'), - (2612, 3, 'PHAM HUU THU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 733200.00, 'A'), - (2613, 3, 'DANG MING CUONG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-05-07', 306460.00, 'A'), - (2614, 3, 'VU THI HONG HANH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-05-07', 332710.00, 'A'), - (2615, 3, 'CHAU TANG LANG', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-05-07', 744190.00, 'A'), - (2616, 3, 'CHU BAN THING', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-05-07', 722800.00, 'A'), - (2617, 3, 'NGUYEN QUANG THU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-05-07', 381420.00, 'A'), - (2618, 3, 'TRAN THI KIM OANH', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-05-07', 738690.00, 'A'), - (2619, 3, 'NGUYEN VAN VINH', 191821112, 'CRA 25 CALLE 100', '422@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 549210.00, 'A'), - (262, 1, 'ABDULAZIS ELNESER KHALED', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-27', 439430.00, 'A'), - (2620, 3, 'NGUYEN XUAN VY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132958, '2011-05-07', 529950.00, 'A'), - (2621, 3, 'HA MANH HOA', 191821112, 'CRA 25 CALLE 100', '439@gmail.com', '2011-02-03', 132958, '2011-05-07', 2160.00, 'A'), - (2622, 3, 'ZAFIROPOULO STEVEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 420930.00, 'A'), - (2624, 3, 'TEMIGTERRA MASSIMILIANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 210050, '2011-09-26', 228070.00, 'A'), - (2625, 3, 'CASSES TRINDADE HELGIO HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118402, '2011-09-13', 845850.00, 'A'), - (2626, 3, 'ASCOLI MASTROENI MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 120773, '2011-09-07', 545010.00, 'A'), - (2627, 3, 'MONTEIRO SOARES MARCOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 120773, '2011-07-18', 187530.00, 'A'), - (2629, 3, 'HALL ALVARO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 120773, '2011-08-02', 950450.00, 'A'), - (2631, 3, 'ANDRADE CATUNDA RAFAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 120773, '2011-08-23', 370860.00, 'A'), - (2632, 3, 'MAGALHAES MAYRA ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118767, '2011-08-23', 320960.00, 'A'), - (2633, 3, 'SPREAFICO MIRIAM ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118587, '2011-08-23', 492220.00, 'A'), - (2634, 3, 'GOMES FERREIRA HELIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 125812, '2011-08-23', 498220.00, 'A'), - (2635, 3, 'FERNANDES SENNA PIRES SERGIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-05', 14460.00, 'A'), - (2636, 3, 'BALESTRO FLORIANO FABIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 120773, '2011-08-24', 577630.00, 'A'), - (2637, 3, 'CABANA DE QUEIROZ ANDRADE ALAXANDRE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-23', 844780.00, 'A'), - (2638, 3, 'DALBOSCO CARLA', 191821112, 'CRA 25 CALLE 100', '380@yahoo.com.mx', '2011-02-03', 127591, '2011-06-30', 491010.00, 'A'), - (264, 1, 'ROMERO MONTOYA NICOLAY ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-13', 965220.00, 'A'), - (2640, 3, 'BILLINI CRUZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 144215, '2011-03-27', 130530.00, 'A'), - (2641, 3, 'VASQUES ARIAS DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 144509, '2011-08-19', 890500.00, 'A'), - (2642, 3, 'ROJAS VOLQUEZ GLADYS MICHELLE', 191821112, 'CRA 25 CALLE 100', '852@gmail.com', '2011-02-03', 144215, '2011-07-25', 60930.00, 'A'), - (2643, 3, 'LLANEZA GIL JUAN RAFAELMO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 144215, '2011-07-08', 633120.00, 'A'), - (2646, 3, 'AVILA PEROZO IANKEL JACOB', 191821112, 'CRA 25 CALLE 100', '318@hotmail.com', '2011-02-03', 144215, '2011-09-03', 125600.00, 'A'), - (2647, 3, 'REGULAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-19', 583540.00, 'A'), - (2648, 3, 'CORONADO BATISTA JOSE ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-19', 540910.00, 'A'), - (2649, 3, 'OLIVIER JOSE VICTOR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 144509, '2011-08-19', 953910.00, 'A'), - (2650, 3, 'YOO HOE TAEK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-08-25', 146820.00, 'A'), - (266, 1, 'CUECA RODRIGUEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-22', 384280.00, 'A'), - (267, 1, 'NIETO ALVARADO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2008-04-28', 553450.00, 'A'), - (269, 1, 'LEAL HOLGUIN FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-25', 411700.00, 'A'), - (27, 1, 'MORENO MORENO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2009-09-15', 995620.00, 'A'), - (270, 1, 'CANO IBANES JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-03', 215260.00, 'A'), - (271, 1, 'RESTREPO HERRAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2011-04-18', 841220.00, 'A'), - (272, 3, 'RIOS FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 199862, '2011-03-24', 560300.00, 'A'), - (273, 1, 'MADERO LORENZANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-03', 277850.00, 'A'), - (274, 1, 'GOMEZ GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-09-24', 708350.00, 'A'), - (275, 1, 'CONSUEGRA ARENAS ANDRES MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-09', 708210.00, 'A'), - (276, 1, 'HURTADO ROJAS NICOLAS', 191821112, 'CRA 25 CALLE 100', '463@yahoo.com.mx', '2011-02-03', 127591, '2011-09-07', 416000.00, 'A'), - (277, 1, 'MURCIA BAQUERO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-02', 955370.00, 'A'), - (2773, 3, 'TAKUBO KAORI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 165753, '2011-05-12', 872390.00, 'A'), - (2774, 3, 'OKADA MAKOTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 165753, '2011-06-19', 921480.00, 'A'), - (2775, 3, 'TAKEDA AKIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 21062, '2011-06-19', 990250.00, 'A'), - (2776, 3, 'KOIKE WATARU ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 165753, '2011-06-19', 186800.00, 'A'), - (2777, 3, 'KUBO SHINEI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 165753, '2011-02-13', 963230.00, 'A'), - (2778, 3, 'KANNO YONEZO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 165600, '2011-07-26', 255770.00, 'A'), - (278, 3, 'PARENT ELOIDE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 267980, '2011-05-01', 528840.00, 'A'), - (2781, 3, 'SUNADA MINORU ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 165753, '2011-06-19', 724450.00, 'A'), - (2782, 3, 'INOUE KASUYA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-22', 87150.00, 'A'), - (2783, 3, 'OTAKE NOBUTOSHI', 191821112, 'CRA 25 CALLE 100', '208@facebook.com', '2011-02-03', 127591, '2011-06-11', 262380.00, 'A'), - (2784, 3, 'MOTOI KEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 165753, '2011-06-19', 50470.00, 'A'), - (2785, 3, 'TANAKA KIYOTAKA ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 165753, '2011-06-19', 465210.00, 'A'), - (2787, 3, 'YUMIKOPERDOMO', 191821112, 'CRA 25 CALLE 100', '600@yahoo.es', '2011-02-03', 165600, '2011-07-26', 477550.00, 'A'), - (2788, 3, 'FUKUSHIMA KENZO', 191821112, 'CRA 25 CALLE 100', '599@gmail.com', '2011-02-03', 156960, '2011-05-30', 863860.00, 'A'), - (2789, 3, 'GELGIN LEVENT NURI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-26', 886630.00, 'A'), - (279, 1, 'AVIATUR S. A.', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-02', 778110.00, 'A'), - (2791, 3, 'GELGIN ENIS ENRE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-26', 547940.00, 'A'), - (2792, 3, 'PAZ SOTO LUBRASCA MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 143954, '2011-06-27', 215000.00, 'A'), - (2794, 3, 'MOURAD TAOUFIKI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-13', 511000.00, 'A'), - (2796, 3, 'DASTUS ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 218656, '2011-05-29', 774010.00, 'A'), - (2797, 3, 'MCDONALD MICHAEL LORNE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 269033, '2011-07-19', 85820.00, 'A'), - (2799, 3, 'KLESO MICHAEL QUENTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-07-26', 277950.00, 'A'), - (28, 1, 'GONZALEZ ACUNA EDGAR MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-19', 531710.00, 'A'), - (280, 3, 'NEME KARIM CHAIBAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 135967, '2010-05-02', 304040.00, 'A'), - (2800, 3, 'CLERK CHARLES ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 244158, '2011-07-26', 68490.00, 'A'), - ('CELL3673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (2801, 3, 'BURRIS MAURICE STEWARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-27', 508600.00, 'A'), - (2802, 1, 'PINCHEN CLAIRE ELAINE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 216125, '2011-04-13', 337530.00, 'A'), - (2803, 3, 'LETTNER EVA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 231224, '2011-09-20', 161860.00, 'A'), - (2804, 3, 'CANUEL LUCIE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 146258, '2011-09-20', 796710.00, 'A'), - (2805, 3, 'IGLESIAS CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 216125, '2011-08-02', 497980.00, 'A'), - (2806, 3, 'PAQUIN JEAN FRANCOIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-03-27', 99760.00, 'A'), - (2807, 3, 'FOURNIER DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 228688, '2011-05-19', 4860.00, 'A'), - (2808, 3, 'BILODEAU MARTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-13', 725030.00, 'A'), - (2809, 3, 'KELLNER PETER WILLIAM', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 130757, '2011-07-24', 610570.00, 'A'), - (2810, 3, 'ZAZULAK INGRID ROSEMARIE', 191821112, 'CRA 25 CALLE 100', '683@facebook.com', '2011-02-03', 240550, '2011-09-11', 877770.00, 'A'), - (2811, 3, 'RUCCI JHON MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 285188, '2011-05-10', 557130.00, 'A'), - (2813, 3, 'JONCAS MARC', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 33265, '2011-03-21', 90360.00, 'A'), - (2814, 3, 'DUCHARME ERICK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-03-29', 994750.00, 'A'), - (2816, 3, 'BAILLOD THOMAS DAVID ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 239124, '2010-10-20', 529130.00, 'A'), - (2817, 3, 'MARTINEZ SORIA JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 289697, '2011-09-06', 537630.00, 'A'), - (2818, 3, 'TAMARA RABER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-30', 100750.00, 'A'), - (2819, 3, 'BURGI VINCENT EMANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 245206, '2011-04-20', 890860.00, 'A'), - (282, 1, 'HUESPED ASISTENTE A LA CONVENCION DE LA DIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2009-06-24', 17160.00, 'A'), - (2820, 3, 'ROBLES TORRALBA IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 238949, '2011-05-16', 152030.00, 'A'), - (2821, 3, 'CONSUEGRA MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-06', 87600.00, 'A'), - (2822, 3, 'CELMA ADROVER LAIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 190393, '2011-03-23', 981880.00, 'A'), - (2823, 3, 'ALVAREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-06-20', 646610.00, 'A'), - (2824, 3, 'VARGAS WOODROFFE FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 157414, '2011-06-22', 287410.00, 'A'), - (2825, 3, 'GARCIA GUILLEN VICENTE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 144215, '2011-08-19', 497230.00, 'A'), - (2826, 3, 'GOMEZ GARCIA DIAMANTES PATRICIA MARIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2011-09-22', 623930.00, 'A'), - (2827, 3, 'PEREZ IGLESIAS BIBIANA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-09-30', 627940.00, 'A'), - (2830, 3, 'VILLALONGA MORENES MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 169679, '2011-05-29', 474910.00, 'A'), - (2831, 3, 'REY LOPEZ DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2011-08-03', 7380.00, 'A'), - (2832, 3, 'HOYO APARICIO JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116511, '2011-09-19', 612180.00, 'A'), - (2836, 3, 'GOMEZ GARCIA LOPEZ CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150699, '2011-09-21', 277540.00, 'A'), - (2839, 3, 'GALIMERTI MARCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 235197, '2011-08-28', 156870.00, 'A'), - (2840, 3, 'BAROZZI GIUSEPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 231989, '2011-05-25', 609500.00, 'A'), - (2841, 3, 'MARIAN RENATO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-12', 576900.00, 'A'), - (2842, 3, 'FAENZA CARLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126180, '2011-05-19', 55990.00, 'A'), - (2843, 3, 'PESOLILLO CARMINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 203162, '2011-06-26', 549230.00, 'A'), - (2844, 3, 'CHIODI FRANCESCO MARIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 199862, '2011-09-10', 578210.00, 'A'), - (2845, 3, 'RUTA MARIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-06-19', 243350.00, 'A'), - (2846, 3, 'BAZZONI MARINO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 101518, '2011-05-03', 482140.00, 'A'), - (2848, 3, 'LAGASIO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 231989, '2011-05-04', 956670.00, 'A'), - (2849, 3, 'VIERA DA CUNHA PAULO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 190393, '2011-04-05', 741520.00, 'A'), - (2850, 3, 'DAL BEN DENIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 116511, '2011-05-26', 837590.00, 'A'), - (2851, 3, 'GIANELLI HERIBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 233927, '2011-05-01', 963400.00, 'A'), - (2852, 3, 'JUSTINO DA SILVA DJAMIR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-08', 304200.00, 'A'), - (2853, 3, 'DIPASQUUALE GAETANO', 191821112, 'CRA 25 CALLE 100', '574@terra.com.co', '2011-02-03', 172888, '2011-07-11', 630830.00, 'A'), - (2855, 3, 'CURI MAURO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 199862, '2011-06-19', 315160.00, 'A'), - (2856, 3, 'DI DIO MARCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-20', 851210.00, 'A'), - (2857, 3, 'ROBERTI MENDONCA CAIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-11', 310580.00, 'A'), - (2859, 3, 'RAMOS MORENO DE SOUZA ANDRE ', 191821112, 'CRA 25 CALLE 100', '133@facebook.com', '2011-02-03', 118777, '2011-09-24', 64540.00, 'A'), - (286, 8, 'INEXMODA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-06-21', 50150.00, 'A'), - (2860, 3, 'JODJAHN DE CARVALHO FLAVIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-06-27', 324950.00, 'A'), - (2862, 3, 'LAGASIO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 231989, '2011-07-04', 180760.00, 'A'), - (2863, 3, 'MOON SUNG RIUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-08', 610440.00, 'A'), - (2865, 3, 'VAIDYANATHAN VIKRAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-11', 718220.00, 'A'), - (2866, 3, 'NARAYANASWAMY RAMSUNDAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 73079, '2011-10-02', 61390.00, 'A'), - (2867, 3, 'VADADA VENKATA RAMESH KUMAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-10', 152300.00, 'A'), - (2868, 3, 'RAMA KRISHNAN ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-10', 577300.00, 'A'), - (2869, 3, 'JALAN PRASHANT', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 122035, '2011-05-02', 429600.00, 'A'), - (2871, 3, 'CHANDRASEKAR VENKAT', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 112862, '2011-06-27', 791800.00, 'A'), - (2872, 3, 'CUMBAKONAM SWAMINATHAN SUBRAMANIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-11', 710650.00, 'A'), - (288, 8, 'BCD TRAVEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-23', 645390.00, 'A'), - (289, 3, 'EMBAJADA ARGENTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '1970-02-02', 749440.00, 'A'), - ('CELL3789', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (290, 3, 'EMBAJADA DE BRASIL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-11-16', 811030.00, 'A'), - (293, 8, 'ONU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-19', 584810.00, 'A'), - (299, 1, 'BLANDON GUZMAN JHON JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-01-13', 201740.00, 'A'), - (304, 3, 'COHEN DANIEL DYLAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 286785, '2010-11-17', 184850.00, 'A'), - (306, 1, 'CINDU ANDINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2009-06-11', 899230.00, 'A'), - (31, 1, 'GARRIDO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127662, '2010-09-12', 801450.00, 'A'), - (310, 3, 'CORPORACION CLUB EL NOGAL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2010-08-27', 918760.00, 'A'), - (314, 3, 'CHAWLA AARON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-08', 295840.00, 'A'), - (317, 3, 'BAKER HUGHES', 191821112, 'CRA 25 CALLE 100', '694@hotmail.com', '2011-02-03', 127591, '2011-04-03', 211990.00, 'A'), - (32, 1, 'PAEZ SEGURA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '675@gmail.com', '2011-02-03', 129447, '2011-08-22', 717340.00, 'A'), - (320, 1, 'MORENO PAEZ FREDDY ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-31', 971670.00, 'A'), - (322, 1, 'CALDERON CARDOZO GASTON EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-05', 990640.00, 'A'), - (324, 1, 'ARCHILA MERA ALFREDOMANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-22', 77200.00, 'A'), - (326, 1, 'MUNOZ AVILA HERNEY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-11-10', 550920.00, 'A'), - (327, 1, 'CHAPARRO CUBILLOS FABIAN ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-15', 685080.00, 'A'), - (329, 1, 'GOMEZ LOPEZ JUAN SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '970@yahoo.com', '2011-02-03', 127591, '2011-03-20', 808070.00, 'A'), - (33, 1, 'MARTINEZ MARINO HENRY HERNAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-04-20', 182370.00, 'A'), - (330, 3, 'MAPSTONE NAOMI LEA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 122035, '2010-02-21', 722380.00, 'A'), - (332, 3, 'ROSSI BURRI NELLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132165, '2010-05-10', 771210.00, 'A'), - (333, 1, 'AVELLANEDA OVIEDO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-25', 293060.00, 'A'), - (334, 1, 'SUZA FLOREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-13', 151650.00, 'A'), - (335, 1, 'ESGUERRA ALVARO ANDRES', 191821112, 'CRA 25 CALLE 100', '11@facebook.com', '2011-02-03', 127591, '2011-09-10', 879080.00, 'A'), - (337, 3, 'DE LA HARPE MARTIN CARAPET WALTER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-27', 64960.00, 'A'), - (339, 1, 'HERNANDEZ ACOSTA SERGIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 129499, '2011-06-22', 322570.00, 'A'), - (340, 3, 'ZARAMA DE LA ESPRIELLA MIGUEL PATRICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-27', 102360.00, 'A'), - (342, 1, 'CABRERA VASQUEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-01', 413440.00, 'A'), - (343, 3, 'RICHARDSON BEN MARRIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2010-05-18', 434890.00, 'A'), - (344, 1, 'OLARTE PINZON MIGUEL FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-30', 934140.00, 'A'), - (345, 1, 'SOLER SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-04-20', 366020.00, 'A'), - (346, 1, 'PRIETO JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-07-12', 27690.00, 'A'), - (349, 1, 'BARRERO VELASCO DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-01', 472850.00, 'A'), - (35, 1, 'VELASQUEZ RAMOS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-13', 251940.00, 'A'), - (350, 1, 'RANGEL GARCIA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-03-20', 7880.00, 'A'), - (353, 1, 'ALVAREZ ACEVEDO JOHN FREDDY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-16', 540070.00, 'A'), - (354, 1, 'VILLAMARIN HOME WILMAR ALFREDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-19', 458810.00, 'A'), - (355, 3, 'SLUCHIN NAAMAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 263813, '2010-12-01', 673830.00, 'A'), - (357, 1, 'BULLA BERNAL LUIS ERNESTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-14', 942160.00, 'A'), - (358, 1, 'BRACCIA AVILA GIANCARLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-01', 732620.00, 'A'), - (359, 1, 'RODRIGUEZ PINTO RAUL DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-24', 836600.00, 'A'), - (36, 1, 'MALDONADO ALVAREZ JAIRO ASDRUBAL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-06-19', 980270.00, 'A'), - (362, 1, 'POMBO POLANCO JUAN BERNARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-18', 124130.00, 'A'), - (363, 1, 'CARDENAS SUAREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-01', 372920.00, 'A'), - (364, 1, 'RIVERA MAZO JOSE DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-06-10', 492220.00, 'A'), - (365, 1, 'LEDERMAN CORDIKI JONATHAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-12-03', 342340.00, 'A'), - (367, 1, 'BARRERA MARTINEZ LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '35@yahoo.com.mx', '2011-02-03', 127591, '2011-05-24', 148130.00, 'A'), - (368, 1, 'SEPULVEDA RAMIREZ DANIEL MARCELO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-31', 35560.00, 'A'), - (369, 1, 'QUINTERO DIAZ WILSON ASDRUBAL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', 733430.00, 'A'), - (37, 1, 'RESTREPO SUAREZ HENRY BERNARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-07-25', 145540.00, 'A'), - (370, 1, 'ROJAS YARA WILLMAR ARLEY', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-12-03', 560450.00, 'A'), - (371, 3, 'CARVER LOUISE EMILY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 286785, '2010-10-07', 601980.00, 'A'), - (372, 3, 'VINCENT DAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2011-03-06', 328540.00, 'A'), - (374, 1, 'GONZALEZ DELGADO MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-18', 198260.00, 'A'), - (375, 1, 'PAEZ SIMON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-25', 480970.00, 'A'), - (376, 1, 'CADOSCH DELMAR ELIE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-07', 810080.00, 'A'), - (377, 1, 'HERRERA VASQUEZ DANIEL EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-06-30', 607460.00, 'A'), - (378, 1, 'CORREAL ROJAS RONALD', 191821112, 'CRA 25 CALLE 100', '269@facebook.com', '2011-02-03', 127591, '2011-07-16', 607080.00, 'A'), - (379, 1, 'VOIDONNIKOLAS MUNOS PANAGIOTIS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-27', 213010.00, 'A'), - (38, 1, 'CANAL ROJAS MAURICIO HERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-05-29', 786900.00, 'A'), - (380, 1, 'DIAZ ECHEVERRI JUAN DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-20', 243800.00, 'A'), - (381, 1, 'CIFUENTES MARIN HERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-26', 579960.00, 'A'), - (382, 3, 'PAXTON LUCINDA HARRIET', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 107159, '2011-05-23', 168420.00, 'A'), - (384, 3, 'POYNTON BRIAN GEORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 286785, '2011-03-20', 5790.00, 'A'), - (385, 3, 'TERMIGNONI ADRIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-01-14', 722320.00, 'A'), - (386, 3, 'CARDWELL PAULA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-02-17', 594230.00, 'A'), - (389, 1, 'FONCECA MARTINEZ MIGUEL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-25', 778680.00, 'A'), - (39, 1, 'GARCIA SUAREZ WILLIAM ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-25', 497880.00, 'A'), - (390, 1, 'GUERRERO NELSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-12-03', 178650.00, 'A'), - (391, 1, 'VICTORIA PENA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-22', 557200.00, 'A'), - (392, 1, 'VAN HISSENHOVEN FERRERO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-13', 250060.00, 'A'), - (393, 1, 'CACERES ORDUZ JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-28', 578690.00, 'A'), - (394, 1, 'QUINTERO ALVARO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-17', 143270.00, 'A'), - (395, 1, 'ANZOLA PEREZ CARLOSDAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-04', 980300.00, 'A'), - (397, 1, 'LLOREDA ORTIZ CARLOS JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-27', 417470.00, 'A'), - (398, 1, 'GONZALES LONDONO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-19', 672310.00, 'A'), - (4, 1, 'LONDONO DOMINGUEZ ERNESTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-05', 324610.00, 'A'), - (40, 1, 'MORENO ANGULO ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-01', 128690.00, 'A'), - (400, 8, 'TRANSELCA .A', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-04-14', 528930.00, 'A'), - (403, 1, 'VERGARA MURILLO JUAN FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-04', 42900.00, 'A'), - (405, 1, 'CAPERA CAPERA HARRINSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127799, '2011-06-12', 961000.00, 'A'), - (407, 1, 'MORENO MORA WILLIAM EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-22', 872780.00, 'A'), - (408, 1, 'HIGUERA ROA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-28', 910430.00, 'A'), - (409, 1, 'FORERO CASTILLO OSCAR ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '988@terra.com.co', '2011-02-03', 127591, '2011-07-23', 933810.00, 'A'), - (410, 1, 'LOPEZ MURCIA JULIAN DANIEL', 191821112, 'CRA 25 CALLE 100', '399@facebook.com', '2011-02-03', 127591, '2011-08-08', 937790.00, 'A'), - (411, 1, 'ALZATE JOHN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-09-09', 887490.00, 'A'), - (412, 1, 'GONZALES GONZALES ORLANDO ANDREY', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-30', 624080.00, 'A'), - (413, 1, 'ESCOLANO VALENTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-05', 457930.00, 'A'), - (414, 1, 'JARAMILLO RODRIGUEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-12', 417420.00, 'A'), - (415, 1, 'GARCIA MUNOZ DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-02', 713300.00, 'A'), - (416, 1, 'PINEROS ARENAS JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-10-17', 314260.00, 'A'), - (417, 1, 'ORTIZ ARROYAVE ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-05-21', 431370.00, 'A'), - (418, 1, 'BAYONA BARRIENTOS JEAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-12', 214090.00, 'A'), - (419, 1, 'AGUDELO VASQUEZ JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-30', 776360.00, 'A'), - (420, 1, 'CALLE DANIEL CJ PRODUCCIONES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-04', 239500.00, 'A'), - (422, 1, 'CANO BETANCUR ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-08-20', 623620.00, 'A'), - (423, 1, 'CALDAS BARRETO LUZ MIREYA', 191821112, 'CRA 25 CALLE 100', '991@facebook.com', '2011-02-03', 127591, '2011-05-22', 512840.00, 'A'), - (424, 1, 'SIMBAQUEBA JOSE ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 693320.00, 'A'), - (425, 1, 'DE SILVESTRE CALERO LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-18', 928110.00, 'A'), - (426, 1, 'ZORRO PERALTA YEZID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-25', 560560.00, 'A'), - (428, 1, 'SUAREZ OIDOR DARWIN LEONARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131272, '2011-09-05', 410650.00, 'A'), - (429, 1, 'GIRAL CARRILLO LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-13', 997850.00, 'A'), - (43, 1, 'MARULANDA VALENCIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-17', 365550.00, 'A'), - (430, 1, 'CORDOBA GARCES JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-18', 757320.00, 'A'), - (431, 1, 'ARIAS TAMAYO DIEGO MAURICIO', 191821112, 'CRA 25 CALLE 100', '36@yahoo.com', '2011-02-03', 127591, '2011-09-05', 793050.00, 'A'), - (432, 1, 'EICHMANN PERRET MARC WILLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-22', 693270.00, 'A'), - (433, 1, 'DIAZ DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2008-09-18', 87200.00, 'A'), - (435, 1, 'FACCINI GONZALEZ HERMANN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2009-01-08', 519420.00, 'A'), - (436, 1, 'URIBE DUQUE FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-28', 528470.00, 'A'), - (437, 1, 'TAVERA GAONA GABREL LEAL', 191821112, 'CRA 25 CALLE 100', '280@terra.com.co', '2011-02-03', 127591, '2011-04-28', 84120.00, 'A'), - (438, 1, 'ORDONEZ PARIS FERNANDO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-09-26', 835170.00, 'A'), - (439, 1, 'VILLEGAS ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 923520.00, 'A'), - (44, 1, 'MARTINEZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-08-13', 738750.00, 'A'), - (440, 1, 'MARTINEZ RUEDA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '805@hotmail.es', '2011-02-03', 127591, '2011-04-07', 112050.00, 'A'), - (441, 1, 'ROLDAN JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-05-25', 789720.00, 'A'), - (442, 1, 'PEREZ BRANDWAYN ELIYAU MOISES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-10-20', 612450.00, 'A'), - (443, 1, 'VALLEJO TORO JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128579, '2011-08-16', 693080.00, 'A'), - (444, 1, 'TORRES CABRERA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-19', 628070.00, 'A'), - (445, 1, 'MERINO MEJIA GERMAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-28', 61100.00, 'A'), - (447, 1, 'GOMEZ GOMEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-08', 923070.00, 'A'), - (448, 1, 'RAUSCH CHEHEBAR STEVEN JOSEPH', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-09-27', 351540.00, 'A'), - (449, 1, 'RESTREPO TRUCCO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-28', 988500.00, 'A'), - (45, 1, 'GUTIERREZ JARAMILLO CARLOS MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-22', 597090.00, 'A'), - (450, 1, 'GOLDSTEIN VAIDA ELI JACK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-11', 887860.00, 'A'), - (451, 1, 'OLEA PINEDA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-10', 473800.00, 'A'), - (452, 1, 'JORGE OROZCO', 191821112, 'CRA 25 CALLE 100', '503@hotmail.es', '2011-02-03', 127591, '2011-06-02', 705410.00, 'A'), - (454, 1, 'DE LA TORRE GOMEZ GERMAN ERNESTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-03', 411990.00, 'A'), - (456, 1, 'MADERO ARIAS JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '452@hotmail.es', '2011-02-03', 127591, '2011-08-22', 479090.00, 'A'), - (457, 1, 'GOMEZ MACHUCA ALVARO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-12', 166430.00, 'A'), - (458, 1, 'MENDIETA TOBON DANIEL RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-08', 394880.00, 'A'), - (459, 1, 'VILLADIEGO CORTINA JAVIER TOMAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-26', 475110.00, 'A'), - (46, 1, 'FERRUCHO ARCINIEGAS JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', 769220.00, 'A'), - (460, 1, 'DERESER HARTUNG ERNESTO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-12-25', 190900.00, 'A'), - (461, 1, 'RAMIREZ PENA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-06-25', 529190.00, 'A'), - (463, 1, 'IREGUI REYES LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 778590.00, 'A'), - (464, 1, 'PINTO GOMEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2010-06-24', 673270.00, 'A'), - (465, 1, 'RAMIREZ RAMIREZ FERNANDO ALONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127799, '2011-10-01', 30570.00, 'A'), - (466, 1, 'BERRIDO TRUJILLO JORGE HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2011-10-06', 133040.00, 'A'), - (467, 1, 'RIVERA CARVAJAL RAFAEL HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-20', 573500.00, 'A'), - (468, 3, 'FLOREZ PUENTES IVAN ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-08', 468380.00, 'A'), - (469, 1, 'BALLESTEROS FLOREZ IVAN DARIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-02', 621410.00, 'A'), - (47, 1, 'MARIN FLOREZ OMAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-30', 54840.00, 'A'), - (470, 1, 'RODRIGO PENA HERRERA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 237734, '2011-10-04', 701890.00, 'A'), - (471, 1, 'RODRIGUEZ SILVA ROGELIO', 191821112, 'CRA 25 CALLE 100', '163@gmail.com', '2011-02-03', 127591, '2011-05-26', 645210.00, 'A'), - (473, 1, 'VASQUEZ VELANDIA JUAN GABRIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-05-04', 666330.00, 'A'), - (474, 1, 'ROBLEDO JAIME', 191821112, 'CRA 25 CALLE 100', '409@yahoo.com', '2011-02-03', 127591, '2011-05-31', 970480.00, 'A'), - (475, 1, 'GRIMBERG DIAZ PHILIP', 191821112, 'CRA 25 CALLE 100', '723@yahoo.com', '2011-02-03', 127591, '2011-03-30', 853430.00, 'A'), - (476, 1, 'CHAUSTRE GARCIA JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-26', 355670.00, 'A'), - (477, 1, 'GOMEZ FLOREZ IGNASIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-14', 218090.00, 'A'), - (478, 1, 'LUIS ALBERTO CABRERA PUENTES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-05-26', 23420.00, 'A'), - (479, 1, 'MARTINEZ ZAPATA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '234@gmail.com', '2011-02-03', 127122, '2011-07-01', 462840.00, 'A'), - (48, 1, 'PARRA IBANEZ FABIAN ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-02-01', 966520.00, 'A'), - (480, 3, 'WESTERBERG JAN RICKARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 300701, '2011-02-01', 243940.00, 'A'), - (484, 1, 'RODRIGUEZ VILLALOBOS EDGAR FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-19', 860320.00, 'A'), - (486, 1, 'NAVARRO REYES DIEGO FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-01', 530150.00, 'A'), - (487, 1, 'NOGUERA RICAURTE ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-01-21', 384100.00, 'A'), - (488, 1, 'RUIZ VEJARANO CARLOS DANIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-27', 330030.00, 'A'), - (489, 1, 'CORREA PEREZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-12-14', 497860.00, 'A'), - (49, 1, 'FLOREZ PEREZ RUBIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-23', 668090.00, 'A'), - (490, 1, 'REYES GOMEZ LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-26', 499210.00, 'A'), - (491, 3, 'BERNAL LEON ALBERTO JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2011-03-29', 2470.00, 'A'), - (492, 1, 'FELIPE JARAMILLO CARO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2009-10-31', 514700.00, 'A'), - (493, 1, 'GOMEZ PARRA GERMAN DARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-01-29', 566100.00, 'A'), - (494, 1, 'VALLEJO RAMIREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-13', 286390.00, 'A'), - (495, 1, 'DIAZ LONDONO HUGO MARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 733670.00, 'A'), - (496, 3, 'VAN BAKERGEM RONALD JAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2008-11-05', 809190.00, 'A'), - (497, 1, 'MENDEZ RAMIREZ JOSE LEONARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-10', 844920.00, 'A'), - (498, 3, 'QUI TANILLA HENRIQUEZ PAUL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-10', 797030.00, 'A'), - (499, 3, 'PELEATO FLOREAL', 191821112, 'CRA 25 CALLE 100', '531@hotmail.com', '2011-02-03', 188640, '2011-04-23', 450370.00, 'A'), - (50, 1, 'SILVA GUZMAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-24', 440890.00, 'A'), - (502, 3, 'LEO ULF GORAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 300701, '2010-07-26', 181840.00, 'A'), - (503, 3, 'KARLSSON DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 300701, '2011-07-22', 50680.00, 'A'), - (504, 1, 'JIMENEZ JANER ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '889@hotmail.es', '2011-02-03', 203272, '2011-08-29', 707880.00, 'A'), - (506, 1, 'PABON OCHOA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-14', 813050.00, 'A'), - (507, 1, 'ACHURY CADENA CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-26', 903240.00, 'A'), - (508, 1, 'ECHEVERRY GARZON SEBASTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-23', 77050.00, 'A'), - (509, 1, 'PINEROS PENA LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-29', 675550.00, 'A'), - (51, 1, 'CAICEDO URREA JAIME ORLANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-08-17', 200160.00, 'A'), - ('CELL3795', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (510, 1, 'MARTINEZ MARTINEZ LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', '586@facebook.com', '2011-02-03', 127591, '2010-08-28', 146600.00, 'A'), - (511, 1, 'MOLANO PENA JESUS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-02-05', 706320.00, 'A'), - (512, 3, 'RUDOLPHY FONTAINE ANDRES', 191821112, 'CRA 25 CALLE 100', '492@yahoo.com', '2011-02-03', 117002, '2011-04-12', 91820.00, 'A'), - (513, 1, 'NEIRA CHAVARRO JOHN JAIRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-12', 340120.00, 'A'), - (514, 3, 'MENDEZ VILLALOBOS ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-03-25', 425160.00, 'A'), - (515, 3, 'HERNANDEZ OLIVA JOSE DE LA CRUZ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-03-25', 105440.00, 'A'), - (518, 3, 'JANCO NICOLAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-15', 955830.00, 'A'), - (52, 1, 'TAPIA MUNOZ JAIRO RICARDO', 191821112, 'CRA 25 CALLE 100', '920@hotmail.es', '2011-02-03', 127591, '2011-10-05', 678130.00, 'A'), - (520, 1, 'ALVARADO JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-26', 895550.00, 'A'), - (521, 1, 'HUERFANO SOTO JONATHAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-30', 619910.00, 'A'), - (522, 1, 'HUERFANO SOTO JONATHAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-04', 412900.00, 'A'), - (523, 1, 'RODRIGEZ GOMEZ WILMAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-14', 204790.00, 'A'), - (525, 1, 'ARROYO BAPTISTE DIEGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-09', 311810.00, 'A'), - (526, 1, 'PULECIO BOEK DANIEL', 191821112, 'CRA 25 CALLE 100', '718@gmail.com', '2011-02-03', 127591, '2011-08-12', 203350.00, 'A'), - (527, 1, 'ESLAVA VELEZ SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-10-08', 81300.00, 'A'), - (528, 1, 'CASTRO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-05-06', 796470.00, 'A'), - (53, 1, 'HINCAPIE MARTINEZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127573, '2011-09-26', 790180.00, 'A'), - (530, 1, 'ZORRILLA PUJANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '312@yahoo.es', '2011-02-03', 127591, '2011-06-06', 302750.00, 'A'), - (531, 1, 'ZORRILLA PUJANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-06', 298440.00, 'A'), - (532, 1, 'PRETEL ARTEAGA MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-09', 583980.00, 'A'), - (533, 1, 'RAMOS VERGARA HUMBERTO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 131105, '2010-05-13', 24560.00, 'A'), - (534, 1, 'BONILLA PINEROS DIEGO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', 370880.00, 'A'), - (535, 1, 'BELTRAN TRIVINO JULIAN DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-11-06', 780710.00, 'A'), - (536, 3, 'BLOD ULF FREDERICK EDWARD', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-06', 790900.00, 'A'), - (537, 1, 'VANEGAS OROZCO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-10', 612400.00, 'A'), - (538, 3, 'ORUE VALLE MONICA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 97885, '2011-09-15', 689270.00, 'A'), - (539, 1, 'AGUDELO BEDOYA ANDRES JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-05-24', 609160.00, 'A'), - (54, 1, 'DE HOYOS TRESPALACIOS MAURICIO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-21', 916500.00, 'A'), - (540, 3, 'HEIJKENSKJOLD PER JESPER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-06', 977980.00, 'A'), - (541, 3, 'GONZALEZ ALVARADO LUIS RAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-08-27', 62430.00, 'A'), - (543, 1, 'GRUPO SURAMERICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-08-24', 703760.00, 'A'), - (545, 1, 'CORPORACION CONTEXTO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-08', 809570.00, 'A'), - (546, 3, 'LUNDIN JOHAN ERIK ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-29', 895330.00, 'A'), - (548, 3, 'VEGERANO JOSE ', 191821112, 'CRA 25 CALLE 100', '221@facebook.com', '2011-02-03', 190393, '2011-06-05', 553780.00, 'A'), - (549, 3, 'SERRANO MADRID CLAUDIA INES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-27', 625060.00, 'A'), - (55, 1, 'TAFUR GOMEZ ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2010-09-12', 211980.00, 'A'), - (550, 1, 'MARTINEZ ACEVEDO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-10-06', 463920.00, 'A'), - (551, 1, 'GONZALEZ MORENO PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-07-21', 444450.00, 'A'), - (552, 1, 'MEJIA ROJAS ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-08-02', 830470.00, 'A'), - (553, 3, 'RODRIGUEZ ANTHONY HANSEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-16', 819000.00, 'A'), - (554, 1, 'ABUCHAIBE ANNICCHRICO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-31', 603610.00, 'A'), - (555, 3, 'MOYES KIMBERLY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-08', 561020.00, 'A'), - (556, 3, 'MONTINI MARIO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118942, '2010-03-16', 994280.00, 'A'), - (557, 3, 'HOGBERG DANIEL TOBIAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-15', 288350.00, 'A'), - (559, 1, 'OROZCO PFEIZER MARTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-10-07', 429520.00, 'A'), - (56, 1, 'NARINO ROJAS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-27', 310390.00, 'A'), - (560, 1, 'GARCIA MONTOYA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-06-02', 770840.00, 'A'), - (562, 1, 'VELASQUEZ PALACIO MANUEL ORLANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-06-23', 515670.00, 'A'), - (563, 1, 'GALLEGO PEREZ DIEGO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-14', 881460.00, 'A'), - (564, 1, 'RUEDA URREGO JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-04', 860270.00, 'A'), - (565, 1, 'RESTREPO DEL TORO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-10', 656960.00, 'A'), - (567, 1, 'TORO VALENCIA FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-08-04', 549090.00, 'A'), - (568, 1, 'VILLEGAS LUIS ALFONSO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-02', 633490.00, 'A'), - (569, 3, 'RIDSTROM CHRISTER ANDERS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 300701, '2011-09-06', 520150.00, 'A'), - (57, 1, 'TOVAR ARANGO JOHN JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127662, '2010-07-03', 916010.00, 'A'), - (570, 3, 'SHEPHERD DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2008-05-11', 700280.00, 'A'), - (573, 3, 'BENGTSSON JOHAN ANDREAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 196830.00, 'A'), - (574, 3, 'PERSSON HANS JONAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-09', 172340.00, 'A'), - (575, 3, 'SYNNEBY BJORN ERIK', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-15', 271210.00, 'A'), - ('CELL381', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (577, 3, 'COHEN PAUL KIRTAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 381490.00, 'A'), - (578, 3, 'ROMERO BRAVO FERNANDO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', 390360.00, 'A'), - (579, 3, 'GUTHRIE ROBERT DEAN', 191821112, 'CRA 25 CALLE 100', '794@gmail.com', '2011-02-03', 161705, '2010-07-20', 807350.00, 'A'), - (58, 1, 'TORRES ESCOBAR JAIRO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-06-17', 648860.00, 'A'), - (580, 3, 'ROCASERMENO MONTENEGRO MARIO JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 139844, '2010-12-01', 865650.00, 'A'), - (581, 1, 'COCK JORGE EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-19', 906210.00, 'A'), - (582, 3, 'REISS ANDREAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-01-31', 934120.00, 'A'), - (584, 3, 'ECHEVERRIA CASTILLO GERMAN FRANCISCO', 191821112, 'CRA 25 CALLE 100', '982@yahoo.com', '2011-02-03', 139844, '2011-07-20', 957370.00, 'A'), - (585, 3, 'BRANDT CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-10', 931030.00, 'A'), - (586, 3, 'VEGA NUNEZ GILBERTO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-14', 783010.00, 'A'), - (587, 1, 'BEJAR MUNOZ JORDI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 196234, '2010-10-08', 121990.00, 'A'), - (588, 3, 'WADSO KERSTIN ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-17', 260890.00, 'A'), - (59, 1, 'RAMOS FORERO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-20', 496300.00, 'A'), - (590, 1, 'RODRIGUEZ BETANCOURT JAVIER AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2011-05-23', 909850.00, 'A'), - (592, 1, 'ARBOLEDA HALABY RODRIGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 150699, '2009-02-03', 939170.00, 'A'), - (593, 1, 'CURE CURE CARLOS ALFREDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-07-11', 494600.00, 'A'), - (594, 3, 'VIDELA PEREZ OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-07-13', 655510.00, 'A'), - (595, 1, 'GONZALEZ GAVIRIA NESTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2009-09-28', 793760.00, 'A'), - (596, 3, 'IZQUIERDO DELGADO DIONISIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2009-09-24', 2250.00, 'A'), - (597, 1, 'MORENO DAIRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-06-14', 629990.00, 'A'), - (598, 1, 'RESTREPO FERNNDEZ SOTO JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-08-31', 143210.00, 'A'), - (599, 3, 'YERYES VERGARA MARIA SOLEDAD', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-10-11', 826060.00, 'A'), - (6, 1, 'GUZMAN ESCOBAR JOSE VICENTE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-10', 26390.00, 'A'), - (60, 1, 'ELEJALDE ESCOBAR TOMAS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-11-09', 534910.00, 'A'), - (601, 1, 'ESCAF ESCAF WILLIAM MIGUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 150699, '2011-07-26', 25190.00, 'A'), - (602, 1, 'CEBALLOS ZULUAGA JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-03', 23920.00, 'A'), - (603, 1, 'OLIVELLA GUERRERO RAFAEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2010-06-23', 44040.00, 'A'), - (604, 1, 'ESCOBAR GALLO CARLOS HUGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-09', 148420.00, 'A'), - (605, 1, 'ESCORCIA RAMIREZ EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128569, '2011-04-01', 609990.00, 'A'), - (606, 1, 'MELGAREJO MORENO PAULA ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-05', 604700.00, 'A'), - (607, 1, 'TOBON CALLE CARLOS GUILLERMO', 191821112, 'CRA 25 CALLE 100', '689@hotmail.es', '2011-02-03', 128662, '2011-03-16', 193510.00, 'A'), - (608, 3, 'TREVINO NOPHAL SILVANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 110709, '2011-05-27', 153470.00, 'A'), - (609, 1, 'CARDER VELEZ EDWIN JOHN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-04', 186830.00, 'A'), - (61, 1, 'GASCA DAZA VICTOR HERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-09', 185660.00, 'A'), - (610, 3, 'DAVIS JOHN BRADLEY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-04-06', 473740.00, 'A'), - (611, 1, 'BAQUERO SLDARRIAGA ALVARO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-09-15', 808210.00, 'A'), - (612, 3, 'SERRACIN ARAUZ YANIRA YAMILET', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 131272, '2011-06-09', 619820.00, 'A'), - (613, 1, 'MORA SOTO ALVARO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-09-20', 674450.00, 'A'), - (614, 1, 'SUAREZ RODRIGUEZ HERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-03-29', 512820.00, 'A'), - (616, 1, 'BAQUERO GARCIA JORGE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-07-14', 165160.00, 'A'), - (617, 3, 'ABADI MADURO MOISES SIMON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 131272, '2009-03-31', 203640.00, 'A'), - (62, 3, 'FLOWER LYNDON BRUCE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 231373, '2011-05-16', 323560.00, 'A'), - (624, 8, 'OLARTE LEONARDO', 191821112, 'CRA 25 CALLE 100', '6@hotmail.com', '2011-02-03', 127591, '2011-06-03', 219790.00, 'A'), - (63, 1, 'RUBIO CORTES OSCAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-04-28', 60830.00, 'A'), - (630, 5, 'PROEXPORT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2010-08-12', 708320.00, 'A'), - (632, 8, 'SUPER COFFEE ', 191821112, 'CRA 25 CALLE 100', '792@hotmail.es', '2011-02-03', 127591, '2011-08-30', 306460.00, 'A'), - (636, 8, 'NOGAL ASESORIAS FINANCIERAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-04-07', 752150.00, 'A'), - (64, 1, 'GUERRA MARTINEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-24', 333480.00, 'A'), - (645, 8, 'GIZ - PROFIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-31', 566330.00, 'A'), - (652, 3, 'QBE DEL ISTMO COMPANIA DE REASEGUROS ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-14', 932190.00, 'A'), - (655, 3, 'CORP. CENTRO DE ESTUDIOS DE DERECHO JUSTICIA Y SOCIEDAD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-05-04', 440370.00, 'A'), - (659, 3, 'GOOD YEAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2010-09-24', 993830.00, 'A'), - (660, 3, 'ARCINIEGAS Y VILLAMIZAR', 191821112, 'CRA 25 CALLE 100', '258@yahoo.com', '2011-02-03', 127591, '2010-12-02', 787450.00, 'A'), - (67, 1, 'LOPEZ HOYOS JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127662, '2010-04-13', 665230.00, 'A'), - (670, 8, 'APPLUS NORCONTROL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-09-06', 83210.00, 'A'), - (672, 3, 'KERLL SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 287273, '2010-12-19', 501610.00, 'A'), - (673, 1, 'RESTREPO MOLINA RAMIRO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 144215, '2010-12-18', 457290.00, 'A'), - (674, 1, 'PEREZ GIL JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-08-18', 781610.00, 'A'), - ('CELL3840', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (676, 1, 'GARCIA LONDONO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-23', 336160.00, 'A'), - (677, 3, 'RIJLAARSDAM KARIN AN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-07-03', 72210.00, 'A'), - (679, 1, 'LIZCANO MONTEALEGRE ARNULFO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127203, '2011-02-01', 546170.00, 'A'), - (68, 1, 'MARTINEZ SILVA EDGAR', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-29', 54250.00, 'A'), - (680, 3, 'OLIVARI MAYER PATRICIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 122642, '2011-08-01', 673170.00, 'A'), - (682, 3, 'CHEVALIER FRANCK PIERRE CHARLES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 263813, '2010-12-01', 617280.00, 'A'), - (683, 3, 'NG WAI WING ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126909, '2011-06-14', 904310.00, 'A'), - (684, 3, 'MULLER DOMINGUEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-22', 669700.00, 'A'), - (685, 3, 'MOSQUEDA DOMNGUEZ ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-04-08', 635580.00, 'A'), - (686, 3, 'LARREGUI MARIN LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-08', 168800.00, 'A'), - (687, 3, 'VARGAS VERGARA ALEJANDRO BRAULIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 159245, '2011-09-14', 937260.00, 'A'), - (688, 3, 'SKINNER LYNN CHERYL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-12', 179890.00, 'A'), - (689, 1, 'URIBE CORREA LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2010-07-29', 87680.00, 'A'), - (690, 1, 'TAMAYO JARAMILLO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-11-10', 898730.00, 'A'), - (691, 3, 'MOTABAN DE BORGES PAULA ELENA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2010-09-24', 230610.00, 'A'), - (692, 5, 'FERNANDEZ NALDA JOSE MANUEL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-06-28', 456850.00, 'A'), - (693, 1, 'GOMEZ RESTREPO JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-06-28', 592420.00, 'A'), - (694, 1, 'CARDENAS TAMAYO JOSE JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-08-08', 591550.00, 'A'), - (696, 1, 'RESTREPO ARANGO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-03-31', 127820.00, 'A'), - (697, 1, 'ROCABADO PASTRANA ROBERT JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127443, '2011-08-13', 97600.00, 'A'), - (698, 3, 'JARVINEN JOONAS JORI KRISTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196234, '2011-05-29', 104560.00, 'A'), - (699, 1, 'MORENO PEREZ HERNAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-30', 230000.00, 'A'), - (7, 1, 'PUYANA RAMOS GUILLERMO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-27', 331830.00, 'A'), - (70, 1, 'GALINDO MANZANO JAVIER FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-31', 214890.00, 'A'), - (701, 1, 'ROMERO PEREZ ARCESIO JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132775, '2011-07-13', 491650.00, 'A'), - (703, 1, 'CHAPARRO AGUDELO LEONARDO VIRGILIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-05-04', 271320.00, 'A'), - (704, 5, 'VASQUEZ YANIS MARIA DEL PILAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-10-13', 508820.00, 'A'), - (705, 3, 'BARBERO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 116511, '2010-09-13', 730170.00, 'A'), - (706, 1, 'CARMONA HERNANDEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-11-08', 124380.00, 'A'), - (707, 1, 'PEREZ SUAREZ JORGE ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2011-09-14', 431370.00, 'A'), - (708, 1, 'ROJAS JORGE MARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 130135, '2011-04-01', 783740.00, 'A'), - (71, 1, 'DIAZ JUAN PABLO/JULES JAVIER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-10-01', 247860.00, 'A'), - (711, 3, 'CATALDO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116773, '2011-06-06', 984810.00, 'A'), - (716, 5, 'MACIAS PIZARRO PATRICIO ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-06-07', 376260.00, 'A'), - (717, 1, 'RENDON MAYA DAVID ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 130273, '2010-07-25', 332310.00, 'A'), - (718, 3, 'DE HILDEBRAND E GRISI FILHO CELSO CLAUDIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-11', 532740.00, 'A'), - (719, 3, 'ALLIEL FACUSSE JULIO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-20', 666800.00, 'A'), - (72, 1, 'LOPEZ ROJAS VICTOR DANIEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-11', 594640.00, 'A'), - (720, 3, 'CHEMELLO JIMENEZ GAETANO ALBERTO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2010-06-23', 735760.00, 'A'), - (721, 3, 'GARCIA BEZANILLA RODOLFO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-04-12', 678420.00, 'A'), - (722, 1, 'ARIAS EDWIN', 191821112, 'CRA 25 CALLE 100', '13@terra.com.co', '2011-02-03', 127492, '2008-04-24', 184800.00, 'A'), - (723, 3, 'SOHN JANG WON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-07', 888750.00, 'A'), - (724, 3, 'WILHELM GIOVINE JAIME ROBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 115263, '2011-09-20', 889340.00, 'A'), - (726, 3, 'CASTILLERO DANIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 131272, '2011-05-13', 234270.00, 'A'), - (727, 3, 'PORTUGAL LANGHORST MAX GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-13', 829960.00, 'A'), - (729, 3, 'ALFONSO HERRANZ AGUSTIN ALFONSO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-21', 745060.00, 'A'), - (73, 1, 'DAVILA MENDEZ OSCAR DIEGO', 191821112, 'CRA 25 CALLE 100', '991@yahoo.com.mx', '2011-02-03', 128569, '2011-08-31', 229630.00, 'A'), - (730, 3, 'ALFONSO HERRANZ AGUSTIN CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-03-31', 384360.00, 'A'), - (731, 1, 'NOGUERA RAMIREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-14', 686610.00, 'A'), - (732, 1, 'ACOSTA PERALTA FABIAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 134030, '2011-06-21', 279960.00, 'A'), - (733, 3, 'MAC LEAN PINA PEDRO SEGUNDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-05-23', 339980.00, 'A'), - (734, 1, 'LEON ARCOS ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-05-04', 860020.00, 'A'), - (736, 3, 'LAMARCA GARCIA GERMAN JULIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-04-29', 820700.00, 'A'), - (737, 1, 'PORTO VELASQUEZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '321@hotmail.es', '2011-02-03', 133535, '2011-08-17', 263060.00, 'A'), - (738, 1, 'BUENAVENTURA MEDINA ERICK WILSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-09-18', 853180.00, 'A'), - (739, 1, 'LEVY ARRAZOLA RALPH MARC', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2011-09-27', 476720.00, 'A'), - (74, 1, 'RAMIREZ SORA EDISON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-03', 364220.00, 'A'), - (740, 3, 'MOON HYUNSIK ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 173192, '2011-05-15', 824080.00, 'A'), - (741, 3, 'LHUILLIER TRONCOSO GASTON MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-09-07', 690230.00, 'A'), - (742, 3, 'UNDURRAGA PELLEGRINI GONZALO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2010-11-21', 978900.00, 'A'), - (743, 1, 'SOLANO TRIBIN NICOLAS SIMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 134022, '2011-03-16', 823800.00, 'A'), - (744, 1, 'NOGUERA BENAVIDES JACOBO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-06', 182300.00, 'A'), - (745, 1, 'GARCIA LEON MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2008-04-16', 440110.00, 'A'), - (746, 1, 'EMILIANI ROJAS ALEXANDER ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-09-12', 653640.00, 'A'), - (748, 1, 'CARRENO POULSEN HELGEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', 778370.00, 'A'), - (749, 1, 'ALVARADO FANDINO ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2008-11-05', 48280.00, 'A'), - (750, 1, 'DIAZ GRANADOS JUAN PABLO.', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-01-12', 906290.00, 'A'), - (751, 1, 'OVALLE BETANCOURT ALBERTO JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2011-08-14', 386620.00, 'A'), - (752, 3, 'GUTIERREZ VERGARA JOSE MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-08', 214250.00, 'A'), - (753, 3, 'CHAPARRO GUAIMARAL LIZ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 147467, '2011-03-16', 911350.00, 'A'), - (754, 3, 'CORTES DE SOLMINIHAC PABLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-01-20', 914020.00, 'A'), - (755, 3, 'CHETAIL VINCENT', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 239124, '2010-08-23', 836050.00, 'A'), - (756, 3, 'PERUGORRIA RODRIGUEZ JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2010-10-17', 438210.00, 'A'), - (757, 3, 'GOLLMANN ROBERTO JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 167269, '2011-03-28', 682870.00, 'A'), - (758, 3, 'VARELA SEPULVEDA MARIA PILAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2010-07-26', 99730.00, 'A'), - (759, 3, 'MEYER WELIKSON MICHELE JANIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-05-10', 450030.00, 'A'), - (76, 1, 'VANEGAS RODRIGUEZ OSCAR IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', 568310.00, 'A'), - (77, 3, 'GATICA SOTOMAYOR MAURICIO VICENTE', 191821112, 'CRA 25 CALLE 100', '409@terra.com.co', '2011-02-03', 117002, '2010-05-13', 444970.00, 'A'), - (79, 1, 'PENA VALENZUELA DANIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-19', 264790.00, 'A'), - (8, 1, 'NAVARRO PALENCIA HUGO RAFAEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126968, '2011-05-05', 579980.00, 'A'), - (80, 1, 'BARRIOS CUADRADO DAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-29', 764140.00, 'A'), - (802, 3, 'RECK GARRONE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2009-02-06', 767700.00, 'A'), - (81, 1, 'PARRA QUIROGA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 26330.00, 'A'), - (811, 8, 'FEDERACION NACIONAL DE AVICULTORES ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-04-18', 926010.00, 'A'), - (812, 1, 'ORJUELA VELEZ JAIME ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 257160.00, 'A'), - (813, 1, 'PENA CHACON GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-08-27', 507770.00, 'A'), - (814, 1, 'RONDEROS MOJICA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127443, '2011-05-04', 767370.00, 'A'), - (815, 1, 'RICO NINO MARIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127443, '2011-05-18', 313540.00, 'A'), - (817, 3, 'AVILA CHYTIL MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118471, '2011-07-14', 387300.00, 'A'), - (818, 3, 'JABLONSKI DUARTE SILVEIRA ESTER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2010-12-21', 139740.00, 'A'), - (819, 3, 'BUHLER MOSLER XIMENA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-06-20', 536830.00, 'A'), - (82, 1, 'CARRILLO GAMBOA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-06-01', 839240.00, 'A'), - (820, 3, 'FALQUETO DALMIRO ANGELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-06-21', 264910.00, 'A'), - (821, 1, 'RUGER GUSTAVO RODRIGUEZ TAMAYO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2010-04-12', 714080.00, 'A'), - (822, 3, 'JULIO RODRIGUEZ FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-08-16', 775650.00, 'A'), - (823, 3, 'CIBANIK RODOLFO MOISES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132554, '2011-09-19', 736020.00, 'A'), - (824, 3, 'JIMENEZ FRANCO EMMANUEL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-17', 353150.00, 'A'), - (825, 3, 'GNECCO TREMEDAD', 191821112, 'CRA 25 CALLE 100', '818@hotmail.com', '2011-02-03', 171072, '2011-03-19', 557700.00, 'A'), - (826, 3, 'VILAR MENDOZA JOSE RAFAEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-29', 729050.00, 'A'), - (827, 3, 'GONZALEZ MOLINA CRISTIAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-06-20', 972160.00, 'A'), - (828, 1, 'GONTOVNIK HOBRECKT CARLOS DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-08-02', 673620.00, 'A'), - (829, 3, 'DIBARRAT URZUA SEBASTIAN RAIMUNDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-28', 451650.00, 'A'), - (830, 3, 'STOCCHERO HATSCHBACH GUILHERME', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2010-11-22', 237370.00, 'A'), - (831, 1, 'NAVAS PASSOS NARCISO EVELIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-04-21', 831900.00, 'A'), - (832, 3, 'LUNA SOBENES FAVIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-10-11', 447400.00, 'A'), - (833, 3, 'NUNEZ NOGUEIRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-19', 741290.00, 'A'), - (834, 1, 'CASTRO BELTRAN ARIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128188, '2011-05-15', 364270.00, 'A'), - (835, 1, 'TURBAY YAMIN MAURICIO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-03-17', 597490.00, 'A'), - (836, 1, 'GOMEZ BARRAZA RODNEY LORENZO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 894610.00, 'A'), - (837, 1, 'CUELLO LASCANO ROBERTO', 191821112, 'CRA 25 CALLE 100', '221@hotmail.es', '2011-02-03', 133535, '2011-07-11', 680610.00, 'A'), - (838, 1, 'PATERNINA PEINADO JOSE VICENTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-08-23', 719190.00, 'A'), - (839, 1, 'YEPES RUBIANO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-05-16', 554130.00, 'A'), - (84, 1, 'ALVIS RAMIREZ ALFREDO', 191821112, 'CRA 25 CALLE 100', '292@yahoo.com', '2011-02-03', 127662, '2011-09-16', 68190.00, 'A'), - (840, 1, 'ROCA LLANOS GUILLERMO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-08-22', 613060.00, 'A'), - (841, 1, 'RENDON TORRALVO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2011-05-26', 402950.00, 'A'), - (842, 1, 'BLANCO STAND GERMAN ELIECER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-17', 175530.00, 'A'), - (843, 3, 'BERNAL MAYRA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131272, '2010-08-31', 668820.00, 'A'), - (844, 1, 'NAVARRO RUIZ LAZARO GREGORIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 126916, '2008-09-23', 817520.00, 'A'), - (846, 3, 'TUOMINEN OLLI PETTERI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-09-01', 953150.00, 'A'), - (847, 1, 'ESPARRAGOZA DE LA ESPRIELLA ENRIQUE ALBERTO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-08-09', 522340.00, 'A'), - (848, 3, 'ARAYA ARIAS JUAN VICENTE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132165, '2011-08-09', 752210.00, 'A'), - (85, 1, 'GARCIA JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-03-01', 989420.00, 'A'), - (850, 1, 'PARDO GOMEZ GERMAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2010-11-25', 713690.00, 'A'), - (851, 1, 'ATIQUE JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2008-03-03', 986250.00, 'A'), - (852, 1, 'HERNANDEZ MEYER EDGARDO DE JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-20', 790190.00, 'A'), - (853, 1, 'ZULUAGA DE LEON IVAN JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-07-03', 992210.00, 'A'), - (854, 1, 'VILLARREAL ANGULO ENRIQUE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-10-02', 590450.00, 'A'), - (855, 1, 'CELIA MARTINEZ APARICIO GIAN PIERO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-06-15', 975620.00, 'A'), - (857, 3, 'LIPARI RONALDO LUIS', 191821112, 'CRA 25 CALLE 100', '84@facebook.com', '2011-02-03', 118941, '2010-10-13', 606990.00, 'A'), - (858, 1, 'RAVACHI DAVILA ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2011-05-04', 714620.00, 'A'), - (859, 3, 'PINHEIRO OLIVEIRA LUCIANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 752130.00, 'A'), - (86, 1, 'GOMEZ LIS CARLOS EMILIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2009-12-22', 742520.00, 'A'), - (860, 1, 'PUGLIESE MERCADO LUIGGI ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-08-19', 616780.00, 'A'), - (862, 1, 'JANNA TELLO DANIEL JALIL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2010-08-07', 287220.00, 'A'), - (863, 3, 'MATTAR CARLOS HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2009-04-26', 953570.00, 'A'), - (864, 1, 'MOLINA OLIER OSVALDO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2011-04-18', 906200.00, 'A'), - (865, 1, 'BLANCO MCLIN DAVID ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-08-18', 670290.00, 'A'), - (866, 1, 'NARANJO ROMERO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2010-08-25', 632860.00, 'A'), - (867, 1, 'SIMANCAS TRUJILLO RICARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-04-07', 153400.00, 'A'), - (868, 1, 'ARENAS USME GERMAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126881, '2011-10-01', 868430.00, 'A'), - (869, 5, 'DIAZ CORDERO RODRIGO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-11-04', 881950.00, 'A'), - (87, 1, 'CELIS PEREZ HERNANDO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-05', 744330.00, 'A'), - (870, 3, 'BINDER ZBEDA JONATAHAN JANAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131083, '2010-04-11', 804460.00, 'A'), - (871, 1, 'HINCAPIE HELLMAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-09-15', 376440.00, 'A'), - (872, 3, 'MONTEIRO LANAMAR ALFONSO DE BUSTAMANTE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118942, '2009-03-23', 468820.00, 'A'), - (873, 3, 'AGUDO CARMINATTI REGINA CELIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-01-04', 214770.00, 'A'), - (874, 1, 'GONZALEZ VILLALOBOS CRISTIAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2011-09-26', 667400.00, 'A'), - (875, 3, 'GUELL VILLANUEVA ALVARO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2008-04-07', 692670.00, 'A'), - (876, 3, 'GRES ANAIS ROBERTO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-12-01', 461180.00, 'A'), - (877, 3, 'GAME MOCOCAIN JUAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-07', 227890.00, 'A'), - (878, 1, 'FERRER UCROS FERNANDO LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-06-22', 755900.00, 'A'), - (879, 3, 'HERRERA JAUREGUI CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', '599@facebook.com', '2011-02-03', 131272, '2010-07-22', 95840.00, 'A'), - (880, 3, 'BACALLAO HERNANDEZ ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126180, '2010-04-21', 211480.00, 'A'), - (881, 1, 'GIJON URBINA JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 144879, '2011-04-03', 769910.00, 'A'), - (882, 3, 'TRUSEN CHRISTOPH WOLFGANG', 191821112, 'CRA 25 CALLE 100', '338@yahoo.com.mx', '2011-02-03', 127591, '2010-10-24', 215100.00, 'A'), - (883, 3, 'ASHOURI ASKANDAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 157861, '2009-03-03', 765760.00, 'A'), - (885, 1, 'ALTAMAR WATTS JAIRO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-08-20', 620170.00, 'A'), - (887, 3, 'QUINTANA BALTIERRA ROBERTO ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-21', 891370.00, 'A'), - (889, 1, 'CARILLO PATINO VICTOR HILARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 130226, '2011-09-06', 354570.00, 'A'), - (89, 1, 'CONTRERAS PULIDO LINA MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-06', 237480.00, 'A'), - (890, 1, 'GELVES CANAS GENARO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-02', 355640.00, 'A'), - (891, 3, 'CAGNONI DE MELO PAULA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2010-12-14', 714490.00, 'A'), - (892, 3, 'MENA AMESTICA PATRICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-03-22', 505510.00, 'A'), - (893, 1, 'CAICEDO ROMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-07', 384110.00, 'A'), - (894, 1, 'ECHEVERRY TRUJILLO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-08', 404010.00, 'A'), - (895, 1, 'CAJIA PEDRAZA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 867700.00, 'A'), - (896, 2, 'PALACIOS OLIVA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-24', 126500.00, 'A'), - (897, 1, 'GUTIERREZ QUINTERO FABIAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2009-10-24', 29380.00, 'A'), - (899, 3, 'COBO GUEVARA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-12-09', 748860.00, 'A'), - (9, 1, 'OSORIO RODRIGUEZ FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-09-27', 904420.00, 'A'), - (90, 1, 'LEYTON GONZALEZ FREDY RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-24', 705130.00, 'A'), - (901, 1, 'HERNANDEZ JOSE ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 130266, '2011-05-23', 964010.00, 'A'), - (903, 3, 'GONZALEZ MALDONADO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2010-11-13', 576500.00, 'A'), - (904, 1, 'OCHOA BARRIGA JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 130266, '2011-05-05', 401380.00, 'A'), - ('CELL3886', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - (905, 1, 'OSORIO REDONDO JESUS DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2011-08-11', 277390.00, 'A'), - (906, 1, 'BAYONA BARRIENTOS JEAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-01-25', 182820.00, 'A'), - (907, 1, 'MARTINEZ GOMEZ CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2010-03-11', 81940.00, 'A'), - (908, 1, 'PUELLO LOPEZ GUILLERMO LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-08-12', 861240.00, 'A'), - (909, 1, 'MOGOLLON LONDONO PEDRO LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2011-06-22', 60380.00, 'A'), - (91, 1, 'ORTIZ RIOS JAVIER ADOLFO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-12', 813200.00, 'A'), - (911, 1, 'HERRERA HOYOS CARLOS FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2010-09-12', 409800.00, 'A'), - (912, 3, 'RIM MYUNG HWAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-15', 894450.00, 'A'), - (913, 3, 'BIANCO DORIEN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-29', 242820.00, 'A'), - (914, 3, 'FROIMZON WIEN DANIEL', 191821112, 'CRA 25 CALLE 100', '348@yahoo.com', '2011-02-03', 132165, '2010-11-06', 530780.00, 'A'), - (915, 3, 'ALVEZ AZEVEDO JOAO MIGUEL', 191821112, 'CRA 25 CALLE 100', '861@hotmail.es', '2011-02-03', 127591, '2009-06-25', 925420.00, 'A'), - (916, 3, 'CARRASCO DIAZ LUIS ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-02', 34780.00, 'A'), - (917, 3, 'VIVALLOS MEDINA LEONEL EDMUNDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-09-12', 397640.00, 'A'), - (919, 3, 'LASSE ANDRE BARKLIEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 286724, '2011-03-31', 226390.00, 'A'), - (92, 1, 'CUERVO CARDENAS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-08', 950630.00, 'A'), - (920, 3, 'BARCELOS PLOTEGHER LILIA MARA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-07', 480380.00, 'A'), - (921, 1, 'JARAMILLO ARANGO JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127559, '2011-06-28', 722700.00, 'A'), - (93, 3, 'RUIZ PRIETO WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 131272, '2011-01-19', 313540.00, 'A'), - (932, 7, 'COMFENALCO ANTIOQUIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-05', 515430.00, 'A'), - (94, 1, 'GALLEGO JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-25', 715830.00, 'A'), - (944, 3, 'KARMELIC PAVLOV VESNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 120066, '2010-08-07', 585580.00, 'A'), - (945, 3, 'RAMIREZ BORDON OSCAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-07-02', 526250.00, 'A'), - (946, 3, 'SORACCO CABEZA RODRIGO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-04', 874490.00, 'A'), - (949, 1, 'GALINDO JORGE ERNESTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127300, '2008-07-10', 344110.00, 'A'), - (950, 3, 'DR KNABLE THOMAS ERNST ALBERT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 256231, '2009-11-17', 685430.00, 'A'), - (953, 3, 'VELASQUEZ JANETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-20', 404650.00, 'A'), - (954, 3, 'SOZA REX JOSE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 150903, '2011-05-26', 269790.00, 'A'), - (955, 3, 'FONTANA GAETE JAIME PATRICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-01-11', 134970.00, 'A'), - (957, 3, 'PEREZ MARTINEZ GRECIA INDIRA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2010-08-27', 922610.00, 'A'), - (96, 1, 'FORERO CUBILLOS JORGEARTURO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-25', 45020.00, 'A'), - (97, 1, 'SILVA ACOSTA MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-19', 309580.00, 'A'), - (978, 3, 'BLUMENTHAL JAIRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117630, '2010-04-22', 653490.00, 'A'), - (984, 3, 'SUN XIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-01-17', 203630.00, 'A'), - (99, 1, 'CANO GUZMAN ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 135620.00, 'A'), - (999, 1, 'DRAGER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-12-22', 882070.00, 'A'), - ('CELL1020', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1083', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1153', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL126', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1326', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1329', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL133', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1413', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1426', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1529', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1651', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1760', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1857', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1879', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1902', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1921', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1962', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1992', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2006', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL215', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2307', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2322', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2497', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2641', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2736', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2805', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL281', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2905', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2963', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3029', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3090', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3161', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3302', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3309', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3325', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3372', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3422', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3514', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3562', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3652', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL3661', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4334', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4440', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4547', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4639', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4662', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4698', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL475', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4790', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4838', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4885', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL4939', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5064', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5066', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL51', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5102', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5116', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5192', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5226', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5250', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5282', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL536', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5503', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5506', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL554', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5544', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5595', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5648', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5801', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5821', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6201', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6277', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6288', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6358', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6369', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6408', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6425', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6439', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6509', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6533', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6556', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6731', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6766', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6775', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6802', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6834', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6890', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6953', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6957', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7024', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7216', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL728', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7314', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7431', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7432', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7513', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7522', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7617', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7623', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7708', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7777', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL787', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7907', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7951', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7956', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8004', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8058', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL811', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8136', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8162', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8286', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8300', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8339', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8366', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8389', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8446', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8487', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8546', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8578', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8643', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8774', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8829', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8846', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL8942', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9046', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9110', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL917', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9189', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9241', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9331', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9429', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9434', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9495', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9517', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9558', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9650', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9748', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9830', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9878', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9893', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9945', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('T-Cx200', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx201', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx202', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx203', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx204', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx205', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx206', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx207', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx208', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx209', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx210', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx211', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx212', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx213', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('T-Cx214', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), - ('CELL4021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5255', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5730', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2540', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7376', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL5471', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2588', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL570', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2854', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL6683', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL1382', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL2051', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL7086', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9220', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), - ('CELL9701', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'); - --- --- Data for Name: robots; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO robots (id, name, type, year, datetime, text) VALUES - (1, 'Robotina', 'mechanical', 1972, '1972-01-01 00:00:00', 'text'), - (2, 'Astro Boy', 'mechanical', 1952, '1952-01-01 00:00:00', 'text'), - (3, 'Terminator', 'cyborg', 2029, '2029-01-01 00:00:00', 'text'); - --- --- Data for Name: robots_parts; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO robots_parts (id, robots_id, parts_id) VALUES - (1, 1, 1), - (2, 1, 2), - (3, 1, 3); - --- --- Data for Name: subscriptores; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO subscriptores (id, email, created_at, status) VALUES - (43, 'fuego@hotmail.com', '2012-04-14 23:30:33', 'P'); - --- --- Data for Name: tipo_documento; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO tipo_documento (id, detalle) VALUES - (1, 'TIPO'), - (2, 'TIPO'), - (3, 'TIPO'), - (4, 'TIPO'), - (5, 'TIPO'), - (6, 'TIPO'), - (7, 'TIPO'), - (8, 'TIPO'), - (9, 'TIPO'), - (10, 'TIPO'), - (11, 'TIPO'), - (12, 'TIPO'), - (13, 'TIPO'), - (14, 'TIPO'), - (15, 'TIPO'), - (16, 'TIPO'), - (17, 'TIPO'), - (18, 'TIPO'), - (19, 'TIPO'), - (20, 'TIPO'), - (21, 'TIPO'), - (22, 'TIPO'), - (23, 'TIPO'), - (24, 'TIPO'), - (25, 'TIPO'), - (26, 'TIPO'), - (27, 'TIPO'), - (28, 'TIPO'), - (29, 'TIPO'), - (30, 'TIPO'), - (31, 'TIPO'), - (32, 'TIPO'), - (33, 'TIPO'), - (34, 'TIPO'), - (35, 'TIPO'), - (36, 'TIPO'), - (37, 'TIPO'), - (38, 'TIPO'), - (39, 'TIPO'), - (40, 'TIPO'), - (41, 'TIPO'), - (42, 'TIPO'), - (43, 'TIPO'), - (44, 'TIPO'), - (45, 'TIPO'), - (46, 'TIPO'), - (47, 'TIPO'), - (48, 'TIPO'), - (49, 'TIPO'), - (50, 'TIPO'), - (51, 'TIPO'), - (52, 'TIPO'), - (53, 'TIPO'), - (54, 'TIPO'), - (55, 'TIPO'), - (56, 'TIPO'), - (57, 'TIPO'), - (58, 'TIPO'), - (59, 'TIPO'), - (60, 'TIPO'), - (61, 'TIPO'), - (62, 'TIPO'), - (63, 'TIPO'), - (64, 'TIPO'), - (65, 'TIPO'), - (66, 'TIPO'), - (67, 'TIPO'), - (68, 'TIPO'), - (69, 'TIPO'), - (70, 'TIPO'), - (71, 'TIPO'), - (72, 'TIPO'), - (73, 'TIPO'), - (74, 'TIPO'), - (75, 'TIPO'), - (76, 'TIPO'), - (77, 'TIPO'), - (78, 'TIPO'), - (79, 'TIPO'), - (80, 'TIPO'), - (81, 'TIPO'), - (82, 'TIPO'), - (83, 'TIPO'), - (84, 'TIPO'), - (85, 'TIPO'), - (86, 'TIPO'), - (87, 'TIPO'), - (88, 'TIPO'), - (89, 'TIPO'), - (90, 'TIPO'), - (91, 'TIPO'), - (92, 'TIPO'), - (93, 'TIPO'), - (94, 'TIPO'), - (95, 'TIPO'), - (96, 'TIPO'), - (97, 'TIPO'), - (98, 'TIPO'), - (99, 'TIPO'), - (100, 'TIPO'), - (101, 'TIPO'), - (102, 'TIPO'), - (103, 'TIPO'), - (104, 'TIPO'), - (105, 'TIPO'), - (106, 'TIPO'), - (107, 'TIPO'), - (108, 'TIPO'), - (109, 'TIPO'), - (110, 'TIPO'), - (111, 'TIPO'), - (112, 'TIPO'), - (113, 'TIPO'), - (114, 'TIPO'), - (115, 'TIPO'), - (116, 'TIPO'), - (117, 'TIPO'), - (118, 'TIPO'), - (119, 'TIPO'), - (120, 'TIPO'), - (121, 'TIPO'), - (122, 'TIPO'), - (123, 'TIPO'), - (124, 'TIPO'), - (125, 'TIPO'), - (126, 'TIPO'), - (127, 'TIPO'), - (128, 'TIPO'), - (129, 'TIPO'), - (130, 'TIPO'), - (131, 'TIPO'), - (132, 'TIPO'), - (133, 'TIPO'), - (134, 'TIPO'), - (135, 'TIPO'), - (136, 'TIPO'), - (137, 'TIPO'), - (138, 'TIPO'), - (139, 'TIPO'), - (140, 'TIPO'), - (141, 'TIPO'), - (142, 'TIPO'), - (143, 'TIPO'), - (144, 'TIPO'), - (145, 'TIPO'), - (146, 'TIPO'), - (147, 'TIPO'), - (148, 'TIPO'), - (149, 'TIPO'), - (150, 'TIPO'), - (151, 'TIPO'), - (152, 'TIPO'), - (153, 'TIPO'), - (154, 'TIPO'), - (155, 'TIPO'), - (156, 'TIPO'), - (157, 'TIPO'), - (158, 'TIPO'), - (159, 'TIPO'), - (160, 'TIPO'), - (161, 'TIPO'), - (162, 'TIPO'), - (163, 'TIPO'), - (164, 'TIPO'), - (165, 'TIPO'), - (166, 'TIPO'), - (167, 'TIPO'), - (168, 'TIPO'), - (169, 'TIPO'), - (170, 'TIPO'), - (171, 'TIPO'), - (172, 'TIPO'), - (173, 'TIPO'), - (174, 'TIPO'), - (175, 'TIPO'), - (176, 'TIPO'), - (177, 'TIPO'), - (178, 'TIPO'), - (179, 'TIPO'), - (180, 'TIPO'), - (181, 'TIPO'), - (182, 'TIPO'), - (183, 'TIPO'), - (184, 'TIPO'), - (185, 'TIPO'), - (186, 'TIPO'), - (187, 'TIPO'), - (188, 'TIPO'), - (189, 'TIPO'), - (190, 'TIPO'), - (191, 'TIPO'), - (192, 'TIPO'), - (193, 'TIPO'), - (194, 'TIPO'), - (195, 'TIPO'), - (196, 'TIPO'), - (197, 'TIPO'), - (198, 'TIPO'), - (199, 'TIPO'), - (200, 'TIPO'), - (201, 'TIPO'), - (202, 'TIPO'), - (203, 'TIPO'), - (204, 'TIPO'), - (205, 'TIPO'), - (206, 'TIPO'), - (207, 'TIPO'), - (208, 'TIPO'), - (209, 'TIPO'), - (210, 'TIPO'), - (211, 'TIPO'), - (212, 'TIPO'), - (213, 'TIPO'), - (214, 'TIPO'), - (215, 'TIPO'), - (216, 'TIPO'), - (217, 'TIPO'), - (218, 'TIPO'), - (219, 'TIPO'), - (220, 'TIPO'), - (221, 'TIPO'), - (222, 'TIPO'), - (223, 'TIPO'), - (224, 'TIPO'), - (225, 'TIPO'), - (226, 'TIPO'), - (227, 'TIPO'), - (228, 'TIPO'), - (229, 'TIPO'), - (230, 'TIPO'), - (231, 'TIPO'), - (232, 'TIPO'), - (233, 'TIPO'), - (234, 'TIPO'), - (235, 'TIPO'), - (236, 'TIPO'), - (237, 'TIPO'), - (238, 'TIPO'), - (239, 'TIPO'), - (240, 'TIPO'), - (241, 'TIPO'), - (242, 'TIPO'), - (243, 'TIPO'), - (244, 'TIPO'), - (245, 'TIPO'), - (246, 'TIPO'), - (247, 'TIPO'), - (248, 'TIPO'), - (249, 'TIPO'), - (250, 'TIPO'), - (251, 'TIPO'), - (252, 'TIPO'), - (253, 'TIPO'), - (254, 'TIPO'), - (255, 'TIPO'), - (256, 'TIPO'), - (257, 'TIPO'), - (258, 'TIPO'), - (259, 'TIPO'), - (260, 'TIPO'), - (261, 'TIPO'), - (262, 'TIPO'), - (263, 'TIPO'), - (264, 'TIPO'), - (265, 'TIPO'), - (266, 'TIPO'), - (267, 'TIPO'), - (268, 'TIPO'), - (269, 'TIPO'), - (270, 'TIPO'), - (271, 'TIPO'), - (272, 'TIPO'), - (273, 'TIPO'), - (274, 'TIPO'), - (275, 'TIPO'), - (276, 'TIPO'), - (277, 'TIPO'), - (278, 'TIPO'), - (279, 'TIPO'), - (280, 'TIPO'), - (281, 'TIPO'), - (282, 'TIPO'), - (283, 'TIPO'), - (284, 'TIPO'), - (285, 'TIPO'), - (286, 'TIPO'), - (287, 'TIPO'), - (288, 'TIPO'), - (289, 'TIPO'), - (290, 'TIPO'), - (291, 'TIPO'), - (292, 'TIPO'), - (293, 'TIPO'), - (294, 'TIPO'), - (295, 'TIPO'), - (296, 'TIPO'), - (297, 'TIPO'), - (298, 'TIPO'), - (299, 'TIPO'), - (300, 'TIPO'), - (301, 'TIPO'), - (302, 'TIPO'), - (303, 'TIPO'), - (304, 'TIPO'), - (305, 'TIPO'), - (306, 'TIPO'), - (307, 'TIPO'), - (308, 'TIPO'), - (309, 'TIPO'), - (310, 'TIPO'), - (311, 'TIPO'), - (312, 'TIPO'), - (313, 'TIPO'), - (314, 'TIPO'), - (315, 'TIPO'), - (316, 'TIPO'), - (317, 'TIPO'), - (318, 'TIPO'), - (319, 'TIPO'), - (320, 'TIPO'), - (321, 'TIPO'), - (322, 'TIPO'), - (323, 'TIPO'), - (324, 'TIPO'), - (325, 'TIPO'), - (326, 'TIPO'), - (327, 'TIPO'), - (328, 'TIPO'), - (329, 'TIPO'), - (330, 'TIPO'), - (331, 'TIPO'), - (332, 'TIPO'), - (333, 'TIPO'), - (334, 'TIPO'), - (335, 'TIPO'), - (336, 'TIPO'), - (337, 'TIPO'), - (338, 'TIPO'), - (339, 'TIPO'), - (340, 'TIPO'), - (341, 'TIPO'), - (342, 'TIPO'), - (343, 'TIPO'), - (344, 'TIPO'), - (345, 'TIPO'), - (346, 'TIPO'), - (347, 'TIPO'), - (348, 'TIPO'), - (349, 'TIPO'), - (350, 'TIPO'), - (351, 'TIPO'), - (352, 'TIPO'), - (353, 'TIPO'), - (354, 'TIPO'), - (355, 'TIPO'), - (356, 'TIPO'), - (357, 'TIPO'), - (358, 'TIPO'), - (359, 'TIPO'), - (360, 'TIPO'), - (361, 'TIPO'), - (362, 'TIPO'), - (363, 'TIPO'), - (364, 'TIPO'), - (365, 'TIPO'), - (366, 'TIPO'), - (367, 'TIPO'), - (368, 'TIPO'), - (369, 'TIPO'), - (370, 'TIPO'), - (371, 'TIPO'), - (372, 'TIPO'), - (373, 'TIPO'), - (374, 'TIPO'), - (375, 'TIPO'), - (376, 'TIPO'), - (377, 'TIPO'), - (378, 'TIPO'), - (379, 'TIPO'), - (380, 'TIPO'), - (381, 'TIPO'), - (382, 'TIPO'), - (383, 'TIPO'), - (384, 'TIPO'), - (385, 'TIPO'), - (386, 'TIPO'), - (387, 'TIPO'), - (388, 'TIPO'), - (389, 'TIPO'), - (390, 'TIPO'), - (391, 'TIPO'), - (392, 'TIPO'), - (393, 'TIPO'), - (394, 'TIPO'), - (395, 'TIPO'), - (396, 'TIPO'), - (397, 'TIPO'), - (398, 'TIPO'), - (399, 'TIPO'), - (400, 'TIPO'), - (401, 'TIPO'), - (402, 'TIPO'), - (403, 'TIPO'), - (404, 'TIPO'), - (405, 'TIPO'), - (406, 'TIPO'), - (407, 'TIPO'), - (408, 'TIPO'), - (409, 'TIPO'), - (410, 'TIPO'), - (411, 'TIPO'), - (412, 'TIPO'), - (413, 'TIPO'), - (414, 'TIPO'), - (415, 'TIPO'), - (416, 'TIPO'), - (417, 'TIPO'), - (418, 'TIPO'), - (419, 'TIPO'), - (420, 'TIPO'), - (421, 'TIPO'), - (422, 'TIPO'), - (423, 'TIPO'), - (424, 'TIPO'), - (425, 'TIPO'), - (426, 'TIPO'), - (427, 'TIPO'), - (428, 'TIPO'), - (429, 'TIPO'), - (430, 'TIPO'), - (431, 'TIPO'), - (432, 'TIPO'), - (433, 'TIPO'), - (434, 'TIPO'), - (435, 'TIPO'), - (436, 'TIPO'), - (437, 'TIPO'), - (438, 'TIPO'), - (439, 'TIPO'), - (440, 'TIPO'), - (441, 'TIPO'), - (442, 'TIPO'), - (443, 'TIPO'), - (444, 'TIPO'), - (445, 'TIPO'), - (446, 'TIPO'), - (447, 'TIPO'), - (448, 'TIPO'), - (449, 'TIPO'), - (450, 'TIPO'), - (451, 'TIPO'), - (452, 'TIPO'), - (453, 'TIPO'), - (454, 'TIPO'), - (455, 'TIPO'), - (456, 'TIPO'), - (457, 'TIPO'), - (458, 'TIPO'), - (459, 'TIPO'), - (460, 'TIPO'), - (461, 'TIPO'), - (462, 'TIPO'), - (463, 'TIPO'), - (464, 'TIPO'), - (465, 'TIPO'), - (466, 'TIPO'), - (467, 'TIPO'), - (468, 'TIPO'), - (469, 'TIPO'), - (470, 'TIPO'), - (471, 'TIPO'), - (472, 'TIPO'), - (473, 'TIPO'), - (474, 'TIPO'), - (475, 'TIPO'), - (476, 'TIPO'), - (477, 'TIPO'), - (478, 'TIPO'), - (479, 'TIPO'), - (480, 'TIPO'), - (481, 'TIPO'), - (482, 'TIPO'), - (483, 'TIPO'), - (484, 'TIPO'), - (485, 'TIPO'), - (486, 'TIPO'), - (487, 'TIPO'), - (488, 'TIPO'), - (489, 'TIPO'), - (490, 'TIPO'), - (491, 'TIPO'), - (492, 'TIPO'), - (493, 'TIPO'), - (494, 'TIPO'), - (495, 'TIPO'), - (496, 'TIPO'), - (497, 'TIPO'), - (498, 'TIPO'), - (499, 'TIPO'), - (500, 'TIPO'), - (501, 'TIPO'), - (502, 'TIPO'), - (503, 'TIPO'), - (504, 'TIPO'), - (505, 'TIPO'), - (506, 'TIPO'), - (507, 'TIPO'), - (508, 'TIPO'), - (509, 'TIPO'), - (510, 'TIPO'), - (511, 'TIPO'), - (512, 'TIPO'), - (513, 'TIPO'), - (514, 'TIPO'), - (515, 'TIPO'), - (516, 'TIPO'), - (517, 'TIPO'), - (518, 'TIPO'), - (519, 'TIPO'), - (520, 'TIPO'), - (521, 'TIPO'), - (522, 'TIPO'), - (523, 'TIPO'), - (524, 'TIPO'), - (525, 'TIPO'), - (526, 'TIPO'), - (527, 'TIPO'), - (528, 'TIPO'), - (529, 'TIPO'), - (530, 'TIPO'), - (531, 'TIPO'), - (532, 'TIPO'), - (533, 'TIPO'), - (534, 'TIPO'), - (535, 'TIPO'), - (536, 'TIPO'), - (537, 'TIPO'), - (538, 'TIPO'), - (539, 'TIPO'), - (540, 'TIPO'), - (541, 'TIPO'), - (542, 'TIPO'), - (543, 'TIPO'), - (544, 'TIPO'), - (545, 'TIPO'), - (546, 'TIPO'), - (547, 'TIPO'), - (548, 'TIPO'), - (549, 'TIPO'), - (550, 'TIPO'), - (551, 'TIPO'), - (552, 'TIPO'), - (553, 'TIPO'), - (554, 'TIPO'), - (555, 'TIPO'), - (556, 'TIPO'), - (557, 'TIPO'), - (558, 'TIPO'), - (559, 'TIPO'), - (560, 'TIPO'), - (561, 'TIPO'), - (562, 'TIPO'), - (563, 'TIPO'), - (564, 'TIPO'), - (565, 'TIPO'), - (566, 'TIPO'), - (567, 'TIPO'), - (568, 'TIPO'), - (569, 'TIPO'), - (570, 'TIPO'), - (571, 'TIPO'), - (572, 'TIPO'), - (573, 'TIPO'), - (574, 'TIPO'), - (575, 'TIPO'), - (576, 'TIPO'), - (577, 'TIPO'), - (578, 'TIPO'), - (579, 'TIPO'), - (580, 'TIPO'), - (581, 'TIPO'), - (582, 'TIPO'), - (583, 'TIPO'), - (584, 'TIPO'), - (585, 'TIPO'), - (586, 'TIPO'), - (587, 'TIPO'), - (588, 'TIPO'), - (589, 'TIPO'), - (590, 'TIPO'), - (591, 'TIPO'), - (592, 'TIPO'), - (593, 'TIPO'), - (594, 'TIPO'), - (595, 'TIPO'), - (596, 'TIPO'), - (597, 'TIPO'), - (598, 'TIPO'), - (599, 'TIPO'), - (600, 'TIPO'), - (601, 'TIPO'), - (602, 'TIPO'), - (603, 'TIPO'), - (604, 'TIPO'), - (605, 'TIPO'), - (606, 'TIPO'), - (607, 'TIPO'), - (608, 'TIPO'), - (609, 'TIPO'), - (610, 'TIPO'), - (611, 'TIPO'), - (612, 'TIPO'), - (613, 'TIPO'), - (614, 'TIPO'), - (615, 'TIPO'), - (616, 'TIPO'), - (617, 'TIPO'), - (618, 'TIPO'), - (619, 'TIPO'), - (620, 'TIPO'), - (621, 'TIPO'), - (622, 'TIPO'), - (623, 'TIPO'), - (624, 'TIPO'), - (625, 'TIPO'), - (626, 'TIPO'), - (627, 'TIPO'), - (628, 'TIPO'), - (629, 'TIPO'), - (630, 'TIPO'), - (631, 'TIPO'), - (632, 'TIPO'), - (633, 'TIPO'), - (634, 'TIPO'), - (635, 'TIPO'), - (636, 'TIPO'), - (637, 'TIPO'), - (638, 'TIPO'), - (639, 'TIPO'), - (640, 'TIPO'), - (641, 'TIPO'), - (642, 'TIPO'), - (643, 'TIPO'), - (644, 'TIPO'), - (645, 'TIPO'), - (646, 'TIPO'), - (647, 'TIPO'), - (648, 'TIPO'), - (649, 'TIPO'), - (650, 'TIPO'), - (651, 'TIPO'), - (652, 'TIPO'), - (653, 'TIPO'), - (654, 'TIPO'), - (655, 'TIPO'), - (656, 'TIPO'), - (657, 'TIPO'), - (658, 'TIPO'), - (659, 'TIPO'), - (660, 'TIPO'), - (661, 'TIPO'), - (662, 'TIPO'), - (663, 'TIPO'), - (664, 'TIPO'), - (665, 'TIPO'), - (666, 'TIPO'), - (667, 'TIPO'), - (668, 'TIPO'), - (669, 'TIPO'), - (670, 'TIPO'), - (671, 'TIPO'), - (672, 'TIPO'), - (673, 'TIPO'), - (674, 'TIPO'), - (675, 'TIPO'), - (676, 'TIPO'), - (677, 'TIPO'), - (678, 'TIPO'), - (679, 'TIPO'), - (680, 'TIPO'), - (681, 'TIPO'), - (682, 'TIPO'), - (683, 'TIPO'), - (684, 'TIPO'), - (685, 'TIPO'), - (686, 'TIPO'), - (687, 'TIPO'), - (688, 'TIPO'), - (689, 'TIPO'), - (690, 'TIPO'), - (691, 'TIPO'), - (692, 'TIPO'), - (693, 'TIPO'), - (694, 'TIPO'), - (695, 'TIPO'), - (696, 'TIPO'), - (697, 'TIPO'), - (698, 'TIPO'), - (699, 'TIPO'), - (700, 'TIPO'), - (701, 'TIPO'), - (702, 'TIPO'), - (703, 'TIPO'), - (704, 'TIPO'), - (705, 'TIPO'), - (706, 'TIPO'), - (707, 'TIPO'), - (708, 'TIPO'), - (709, 'TIPO'), - (710, 'TIPO'), - (711, 'TIPO'), - (712, 'TIPO'), - (713, 'TIPO'), - (714, 'TIPO'), - (715, 'TIPO'), - (716, 'TIPO'), - (717, 'TIPO'), - (718, 'TIPO'), - (719, 'TIPO'), - (720, 'TIPO'), - (721, 'TIPO'), - (722, 'TIPO'), - (723, 'TIPO'), - (724, 'TIPO'), - (725, 'TIPO'), - (726, 'TIPO'), - (727, 'TIPO'), - (728, 'TIPO'), - (729, 'TIPO'), - (730, 'TIPO'), - (731, 'TIPO'), - (732, 'TIPO'), - (733, 'TIPO'), - (734, 'TIPO'), - (735, 'TIPO'), - (736, 'TIPO'), - (737, 'TIPO'), - (738, 'TIPO'), - (739, 'TIPO'), - (740, 'TIPO'), - (741, 'TIPO'), - (742, 'TIPO'), - (743, 'TIPO'), - (744, 'TIPO'), - (745, 'TIPO'), - (746, 'TIPO'), - (747, 'TIPO'), - (748, 'TIPO'), - (749, 'TIPO'), - (750, 'TIPO'), - (751, 'TIPO'), - (752, 'TIPO'), - (753, 'TIPO'), - (754, 'TIPO'), - (755, 'TIPO'), - (756, 'TIPO'), - (757, 'TIPO'), - (758, 'TIPO'), - (759, 'TIPO'), - (760, 'TIPO'), - (761, 'TIPO'), - (762, 'TIPO'), - (763, 'TIPO'), - (764, 'TIPO'), - (765, 'TIPO'), - (766, 'TIPO'), - (767, 'TIPO'), - (768, 'TIPO'), - (769, 'TIPO'), - (770, 'TIPO'), - (771, 'TIPO'), - (772, 'TIPO'), - (773, 'TIPO'), - (774, 'TIPO'), - (775, 'TIPO'), - (776, 'TIPO'), - (777, 'TIPO'), - (778, 'TIPO'), - (779, 'TIPO'), - (780, 'TIPO'), - (781, 'TIPO'), - (782, 'TIPO'), - (783, 'TIPO'), - (784, 'TIPO'), - (785, 'TIPO'), - (786, 'TIPO'), - (787, 'TIPO'), - (788, 'TIPO'), - (789, 'TIPO'), - (790, 'TIPO'), - (791, 'TIPO'), - (792, 'TIPO'), - (793, 'TIPO'), - (794, 'TIPO'), - (795, 'TIPO'), - (796, 'TIPO'), - (797, 'TIPO'), - (798, 'TIPO'), - (799, 'TIPO'), - (800, 'TIPO'), - (801, 'TIPO'), - (802, 'TIPO'), - (803, 'TIPO'), - (804, 'TIPO'), - (805, 'TIPO'), - (806, 'TIPO'), - (807, 'TIPO'), - (808, 'TIPO'), - (809, 'TIPO'), - (810, 'TIPO'), - (811, 'TIPO'), - (812, 'TIPO'), - (813, 'TIPO'), - (814, 'TIPO'), - (815, 'TIPO'), - (816, 'TIPO'), - (817, 'TIPO'), - (818, 'TIPO'), - (819, 'TIPO'), - (820, 'TIPO'), - (821, 'TIPO'), - (822, 'TIPO'), - (823, 'TIPO'), - (824, 'TIPO'), - (825, 'TIPO'), - (826, 'TIPO'), - (827, 'TIPO'), - (828, 'TIPO'), - (829, 'TIPO'), - (830, 'TIPO'), - (831, 'TIPO'), - (832, 'TIPO'), - (833, 'TIPO'), - (834, 'TIPO'), - (835, 'TIPO'), - (836, 'TIPO'), - (837, 'TIPO'), - (838, 'TIPO'), - (839, 'TIPO'), - (840, 'TIPO'), - (841, 'TIPO'), - (842, 'TIPO'), - (843, 'TIPO'), - (844, 'TIPO'), - (845, 'TIPO'), - (846, 'TIPO'), - (847, 'TIPO'), - (848, 'TIPO'), - (849, 'TIPO'), - (850, 'TIPO'), - (851, 'TIPO'), - (852, 'TIPO'), - (853, 'TIPO'), - (854, 'TIPO'), - (855, 'TIPO'), - (856, 'TIPO'), - (857, 'TIPO'), - (858, 'TIPO'), - (859, 'TIPO'), - (860, 'TIPO'), - (861, 'TIPO'), - (862, 'TIPO'), - (863, 'TIPO'), - (864, 'TIPO'), - (865, 'TIPO'), - (866, 'TIPO'), - (867, 'TIPO'), - (868, 'TIPO'), - (869, 'TIPO'), - (870, 'TIPO'), - (871, 'TIPO'), - (872, 'TIPO'), - (873, 'TIPO'), - (874, 'TIPO'), - (875, 'TIPO'), - (876, 'TIPO'), - (877, 'TIPO'), - (878, 'TIPO'), - (879, 'TIPO'), - (880, 'TIPO'), - (881, 'TIPO'), - (882, 'TIPO'), - (883, 'TIPO'), - (884, 'TIPO'), - (885, 'TIPO'), - (886, 'TIPO'), - (887, 'TIPO'), - (888, 'TIPO'), - (889, 'TIPO'), - (890, 'TIPO'), - (891, 'TIPO'), - (892, 'TIPO'), - (893, 'TIPO'), - (894, 'TIPO'), - (895, 'TIPO'), - (896, 'TIPO'), - (897, 'TIPO'), - (898, 'TIPO'), - (899, 'TIPO'), - (900, 'TIPO'), - (901, 'TIPO'), - (902, 'TIPO'), - (903, 'TIPO'), - (904, 'TIPO'), - (905, 'TIPO'), - (906, 'TIPO'), - (907, 'TIPO'), - (908, 'TIPO'), - (909, 'TIPO'), - (910, 'TIPO'), - (911, 'TIPO'), - (912, 'TIPO'), - (913, 'TIPO'), - (914, 'TIPO'), - (915, 'TIPO'), - (916, 'TIPO'), - (917, 'TIPO'), - (918, 'TIPO'), - (919, 'TIPO'), - (920, 'TIPO'), - (921, 'TIPO'), - (922, 'TIPO'), - (923, 'TIPO'), - (924, 'TIPO'), - (925, 'TIPO'), - (926, 'TIPO'), - (927, 'TIPO'), - (928, 'TIPO'), - (929, 'TIPO'), - (930, 'TIPO'), - (931, 'TIPO'), - (932, 'TIPO'), - (933, 'TIPO'), - (934, 'TIPO'), - (935, 'TIPO'), - (936, 'TIPO'), - (937, 'TIPO'), - (938, 'TIPO'), - (939, 'TIPO'), - (940, 'TIPO'), - (941, 'TIPO'), - (942, 'TIPO'), - (943, 'TIPO'), - (944, 'TIPO'), - (945, 'TIPO'), - (946, 'TIPO'), - (947, 'TIPO'), - (948, 'TIPO'), - (949, 'TIPO'), - (950, 'TIPO'), - (951, 'TIPO'), - (952, 'TIPO'), - (953, 'TIPO'), - (954, 'TIPO'), - (955, 'TIPO'), - (956, 'TIPO'), - (957, 'TIPO'), - (958, 'TIPO'), - (959, 'TIPO'), - (960, 'TIPO'), - (961, 'TIPO'), - (962, 'TIPO'), - (963, 'TIPO'), - (964, 'TIPO'), - (965, 'TIPO'), - (966, 'TIPO'), - (967, 'TIPO'), - (968, 'TIPO'), - (969, 'TIPO'), - (970, 'TIPO'), - (971, 'TIPO'), - (972, 'TIPO'), - (973, 'TIPO'), - (974, 'TIPO'), - (975, 'TIPO'), - (976, 'TIPO'), - (977, 'TIPO'), - (978, 'TIPO'), - (979, 'TIPO'), - (980, 'TIPO'), - (981, 'TIPO'), - (982, 'TIPO'), - (983, 'TIPO'), - (984, 'TIPO'), - (985, 'TIPO'), - (986, 'TIPO'), - (987, 'TIPO'), - (988, 'TIPO'), - (989, 'TIPO'), - (990, 'TIPO'), - (991, 'TIPO'), - (992, 'TIPO'), - (993, 'TIPO'), - (994, 'TIPO'), - (995, 'TIPO'), - (996, 'TIPO'), - (997, 'TIPO'), - (998, 'TIPO'), - (999, 'TIPO'), - (1000, 'TIPO'), - (1001, 'TIPO'), - (1002, 'TIPO'), - (1003, 'TIPO'), - (1004, 'TIPO'), - (1005, 'TIPO'), - (1006, 'TIPO'), - (1007, 'TIPO'), - (1008, 'TIPO'), - (1009, 'TIPO'), - (1010, 'TIPO'), - (1011, 'TIPO'), - (1012, 'TIPO'), - (1013, 'TIPO'), - (1014, 'TIPO'), - (1015, 'TIPO'), - (1016, 'TIPO'), - (1017, 'TIPO'), - (1018, 'TIPO'), - (1019, 'TIPO'), - (1020, 'TIPO'), - (1021, 'TIPO'), - (1022, 'TIPO'), - (1023, 'TIPO'), - (1024, 'TIPO'), - (1025, 'TIPO'), - (1026, 'TIPO'), - (1027, 'TIPO'), - (1028, 'TIPO'), - (1029, 'TIPO'), - (1030, 'TIPO'), - (1031, 'TIPO'), - (1032, 'TIPO'), - (1033, 'TIPO'), - (1034, 'TIPO'), - (1035, 'TIPO'), - (1036, 'TIPO'), - (1037, 'TIPO'), - (1038, 'TIPO'), - (1039, 'TIPO'), - (1040, 'TIPO'), - (1041, 'TIPO'), - (1042, 'TIPO'), - (1043, 'TIPO'), - (1044, 'TIPO'), - (1045, 'TIPO'), - (1046, 'TIPO'), - (1047, 'TIPO'), - (1048, 'TIPO'), - (1049, 'TIPO'), - (1050, 'TIPO'), - (1051, 'TIPO'), - (1052, 'TIPO'), - (1053, 'TIPO'), - (1054, 'TIPO'), - (1055, 'TIPO'), - (1056, 'TIPO'), - (1057, 'TIPO'), - (1058, 'TIPO'), - (1059, 'TIPO'), - (1060, 'TIPO'), - (1061, 'TIPO'), - (1062, 'TIPO'), - (1063, 'TIPO'), - (1064, 'TIPO'), - (1065, 'TIPO'), - (1066, 'TIPO'), - (1067, 'TIPO'), - (1068, 'TIPO'), - (1069, 'TIPO'), - (1070, 'TIPO'), - (1071, 'TIPO'), - (1072, 'TIPO'), - (1073, 'TIPO'), - (1074, 'TIPO'), - (1075, 'TIPO'), - (1076, 'TIPO'), - (1077, 'TIPO'), - (1078, 'TIPO'), - (1079, 'TIPO'), - (1080, 'TIPO'), - (1081, 'TIPO'), - (1082, 'TIPO'), - (1083, 'TIPO'), - (1084, 'TIPO'), - (1085, 'TIPO'), - (1086, 'TIPO'), - (1087, 'TIPO'), - (1088, 'TIPO'), - (1089, 'TIPO'), - (1090, 'TIPO'), - (1091, 'TIPO'), - (1092, 'TIPO'), - (1093, 'TIPO'), - (1094, 'TIPO'), - (1095, 'TIPO'), - (1096, 'TIPO'), - (1097, 'TIPO'), - (1098, 'TIPO'), - (1099, 'TIPO'), - (1100, 'TIPO'), - (1101, 'TIPO'), - (1102, 'TIPO'), - (1103, 'TIPO'), - (1104, 'TIPO'), - (1105, 'TIPO'), - (1106, 'TIPO'), - (1107, 'TIPO'), - (1108, 'TIPO'), - (1109, 'TIPO'), - (1110, 'TIPO'), - (1111, 'TIPO'), - (1112, 'TIPO'), - (1113, 'TIPO'), - (1114, 'TIPO'), - (1115, 'TIPO'), - (1116, 'TIPO'), - (1117, 'TIPO'), - (1118, 'TIPO'), - (1119, 'TIPO'), - (1120, 'TIPO'), - (1121, 'TIPO'), - (1122, 'TIPO'), - (1123, 'TIPO'), - (1124, 'TIPO'), - (1125, 'TIPO'), - (1126, 'TIPO'), - (1127, 'TIPO'), - (1128, 'TIPO'), - (1129, 'TIPO'), - (1130, 'TIPO'), - (1131, 'TIPO'), - (1132, 'TIPO'), - (1133, 'TIPO'), - (1134, 'TIPO'), - (1135, 'TIPO'), - (1136, 'TIPO'), - (1137, 'TIPO'), - (1138, 'TIPO'), - (1139, 'TIPO'), - (1140, 'TIPO'), - (1141, 'TIPO'), - (1142, 'TIPO'), - (1143, 'TIPO'), - (1144, 'TIPO'), - (1145, 'TIPO'), - (1146, 'TIPO'), - (1147, 'TIPO'), - (1148, 'TIPO'), - (1149, 'TIPO'), - (1150, 'TIPO'), - (1151, 'TIPO'), - (1152, 'TIPO'), - (1153, 'TIPO'), - (1154, 'TIPO'), - (1155, 'TIPO'), - (1156, 'TIPO'), - (1157, 'TIPO'), - (1158, 'TIPO'), - (1159, 'TIPO'), - (1160, 'TIPO'), - (1161, 'TIPO'), - (1162, 'TIPO'), - (1163, 'TIPO'), - (1164, 'TIPO'), - (1165, 'TIPO'), - (1166, 'TIPO'), - (1167, 'TIPO'), - (1168, 'TIPO'), - (1169, 'TIPO'), - (1170, 'TIPO'), - (1171, 'TIPO'), - (1172, 'TIPO'), - (1173, 'TIPO'), - (1174, 'TIPO'), - (1175, 'TIPO'), - (1176, 'TIPO'), - (1177, 'TIPO'), - (1178, 'TIPO'), - (1179, 'TIPO'), - (1180, 'TIPO'), - (1181, 'TIPO'), - (1182, 'TIPO'), - (1183, 'TIPO'), - (1184, 'TIPO'), - (1185, 'TIPO'), - (1186, 'TIPO'), - (1187, 'TIPO'), - (1188, 'TIPO'), - (1189, 'TIPO'), - (1190, 'TIPO'), - (1191, 'TIPO'), - (1192, 'TIPO'), - (1193, 'TIPO'), - (1194, 'TIPO'), - (1195, 'TIPO'), - (1196, 'TIPO'), - (1197, 'TIPO'), - (1198, 'TIPO'), - (1199, 'TIPO'), - (1200, 'TIPO'), - (1201, 'TIPO'), - (1202, 'TIPO'), - (1203, 'TIPO'), - (1204, 'TIPO'), - (1205, 'TIPO'), - (1206, 'TIPO'), - (1207, 'TIPO'), - (1208, 'TIPO'), - (1209, 'TIPO'), - (1210, 'TIPO'), - (1211, 'TIPO'), - (1212, 'TIPO'), - (1213, 'TIPO'), - (1214, 'TIPO'), - (1215, 'TIPO'), - (1216, 'TIPO'), - (1217, 'TIPO'), - (1218, 'TIPO'), - (1219, 'TIPO'), - (1220, 'TIPO'), - (1221, 'TIPO'), - (1222, 'TIPO'), - (1223, 'TIPO'), - (1224, 'TIPO'), - (1225, 'TIPO'), - (1226, 'TIPO'), - (1227, 'TIPO'), - (1228, 'TIPO'), - (1229, 'TIPO'), - (1230, 'TIPO'), - (1231, 'TIPO'), - (1232, 'TIPO'), - (1233, 'TIPO'), - (1234, 'TIPO'), - (1235, 'TIPO'), - (1236, 'TIPO'), - (1237, 'TIPO'), - (1238, 'TIPO'), - (1239, 'TIPO'), - (1240, 'TIPO'), - (1241, 'TIPO'), - (1242, 'TIPO'), - (1243, 'TIPO'), - (1244, 'TIPO'), - (1245, 'TIPO'), - (1246, 'TIPO'), - (1247, 'TIPO'), - (1248, 'TIPO'), - (1249, 'TIPO'), - (1250, 'TIPO'), - (1251, 'TIPO'), - (1252, 'TIPO'), - (1253, 'TIPO'), - (1254, 'TIPO'), - (1255, 'TIPO'), - (1256, 'TIPO'), - (1257, 'TIPO'), - (1258, 'TIPO'), - (1259, 'TIPO'), - (1260, 'TIPO'), - (1261, 'TIPO'), - (1262, 'TIPO'), - (1263, 'TIPO'), - (1264, 'TIPO'), - (1265, 'TIPO'), - (1266, 'TIPO'), - (1267, 'TIPO'), - (1268, 'TIPO'), - (1269, 'TIPO'), - (1270, 'TIPO'), - (1271, 'TIPO'), - (1272, 'TIPO'), - (1273, 'TIPO'), - (1274, 'TIPO'), - (1275, 'TIPO'), - (1276, 'TIPO'), - (1277, 'TIPO'), - (1278, 'TIPO'), - (1279, 'TIPO'), - (1280, 'TIPO'), - (1281, 'TIPO'), - (1282, 'TIPO'), - (1283, 'TIPO'), - (1284, 'TIPO'), - (1285, 'TIPO'), - (1286, 'TIPO'), - (1287, 'TIPO'), - (1288, 'TIPO'), - (1289, 'TIPO'), - (1290, 'TIPO'), - (1291, 'TIPO'), - (1292, 'TIPO'), - (1293, 'TIPO'), - (1294, 'TIPO'), - (1295, 'TIPO'), - (1296, 'TIPO'), - (1297, 'TIPO'), - (1298, 'TIPO'), - (1299, 'TIPO'), - (1300, 'TIPO'), - (1301, 'TIPO'), - (1302, 'TIPO'), - (1303, 'TIPO'), - (1304, 'TIPO'), - (1305, 'TIPO'), - (1306, 'TIPO'), - (1307, 'TIPO'), - (1308, 'TIPO'), - (1309, 'TIPO'), - (1310, 'TIPO'), - (1311, 'TIPO'), - (1312, 'TIPO'), - (1313, 'TIPO'), - (1314, 'TIPO'), - (1315, 'TIPO'), - (1316, 'TIPO'), - (1317, 'TIPO'), - (1318, 'TIPO'), - (1319, 'TIPO'), - (1320, 'TIPO'), - (1321, 'TIPO'), - (1322, 'TIPO'), - (1323, 'TIPO'), - (1324, 'TIPO'), - (1325, 'TIPO'), - (1326, 'TIPO'), - (1327, 'TIPO'), - (1328, 'TIPO'), - (1329, 'TIPO'), - (1330, 'TIPO'), - (1331, 'TIPO'), - (1332, 'TIPO'), - (1333, 'TIPO'), - (1334, 'TIPO'), - (1335, 'TIPO'), - (1336, 'TIPO'), - (1337, 'TIPO'), - (1338, 'TIPO'), - (1339, 'TIPO'), - (1340, 'TIPO'), - (1341, 'TIPO'), - (1342, 'TIPO'), - (1343, 'TIPO'), - (1344, 'TIPO'), - (1345, 'TIPO'), - (1346, 'TIPO'), - (1347, 'TIPO'), - (1348, 'TIPO'), - (1349, 'TIPO'), - (1350, 'TIPO'), - (1351, 'TIPO'), - (1352, 'TIPO'), - (1353, 'TIPO'), - (1354, 'TIPO'), - (1355, 'TIPO'), - (1356, 'TIPO'), - (1357, 'TIPO'), - (1358, 'TIPO'), - (1359, 'TIPO'), - (1360, 'TIPO'), - (1361, 'TIPO'), - (1362, 'TIPO'), - (1363, 'TIPO'), - (1364, 'TIPO'), - (1365, 'TIPO'), - (1366, 'TIPO'), - (1367, 'TIPO'), - (1368, 'TIPO'), - (1369, 'TIPO'), - (1370, 'TIPO'), - (1371, 'TIPO'), - (1372, 'TIPO'), - (1373, 'TIPO'), - (1374, 'TIPO'), - (1375, 'TIPO'), - (1376, 'TIPO'), - (1377, 'TIPO'), - (1378, 'TIPO'), - (1379, 'TIPO'), - (1380, 'TIPO'), - (1381, 'TIPO'), - (1382, 'TIPO'), - (1383, 'TIPO'), - (1384, 'TIPO'), - (1385, 'TIPO'), - (1386, 'TIPO'), - (1387, 'TIPO'), - (1388, 'TIPO'), - (1389, 'TIPO'), - (1390, 'TIPO'), - (1391, 'TIPO'), - (1392, 'TIPO'), - (1393, 'TIPO'), - (1394, 'TIPO'), - (1395, 'TIPO'), - (1396, 'TIPO'), - (1397, 'TIPO'), - (1398, 'TIPO'), - (1399, 'TIPO'), - (1400, 'TIPO'), - (1401, 'TIPO'), - (1402, 'TIPO'), - (1403, 'TIPO'), - (1404, 'TIPO'), - (1405, 'TIPO'), - (1406, 'TIPO'), - (1407, 'TIPO'), - (1408, 'TIPO'), - (1409, 'TIPO'), - (1410, 'TIPO'), - (1411, 'TIPO'), - (1412, 'TIPO'), - (1413, 'TIPO'), - (1414, 'TIPO'), - (1415, 'TIPO'), - (1416, 'TIPO'), - (1417, 'TIPO'), - (1418, 'TIPO'), - (1419, 'TIPO'), - (1420, 'TIPO'), - (1421, 'TIPO'), - (1422, 'TIPO'), - (1423, 'TIPO'), - (1424, 'TIPO'), - (1425, 'TIPO'), - (1426, 'TIPO'), - (1427, 'TIPO'), - (1428, 'TIPO'), - (1429, 'TIPO'), - (1430, 'TIPO'), - (1431, 'TIPO'), - (1432, 'TIPO'), - (1433, 'TIPO'), - (1434, 'TIPO'), - (1435, 'TIPO'), - (1436, 'TIPO'), - (1437, 'TIPO'), - (1438, 'TIPO'), - (1439, 'TIPO'), - (1440, 'TIPO'), - (1441, 'TIPO'), - (1442, 'TIPO'), - (1443, 'TIPO'), - (1444, 'TIPO'), - (1445, 'TIPO'), - (1446, 'TIPO'), - (1447, 'TIPO'), - (1448, 'TIPO'), - (1449, 'TIPO'), - (1450, 'TIPO'), - (1451, 'TIPO'), - (1452, 'TIPO'), - (1453, 'TIPO'), - (1454, 'TIPO'), - (1455, 'TIPO'), - (1456, 'TIPO'), - (1457, 'TIPO'), - (1458, 'TIPO'), - (1459, 'TIPO'), - (1460, 'TIPO'), - (1461, 'TIPO'), - (1462, 'TIPO'), - (1463, 'TIPO'), - (1464, 'TIPO'), - (1465, 'TIPO'), - (1466, 'TIPO'), - (1467, 'TIPO'), - (1468, 'TIPO'), - (1469, 'TIPO'), - (1470, 'TIPO'), - (1471, 'TIPO'), - (1472, 'TIPO'), - (1473, 'TIPO'), - (1474, 'TIPO'), - (1475, 'TIPO'), - (1476, 'TIPO'), - (1477, 'TIPO'), - (1478, 'TIPO'), - (1479, 'TIPO'), - (1480, 'TIPO'), - (1481, 'TIPO'), - (1482, 'TIPO'), - (1483, 'TIPO'), - (1484, 'TIPO'), - (1485, 'TIPO'), - (1486, 'TIPO'), - (1487, 'TIPO'), - (1488, 'TIPO'), - (1489, 'TIPO'), - (1490, 'TIPO'), - (1491, 'TIPO'), - (1492, 'TIPO'), - (1493, 'TIPO'), - (1494, 'TIPO'), - (1495, 'TIPO'), - (1496, 'TIPO'), - (1497, 'TIPO'), - (1498, 'TIPO'), - (1499, 'TIPO'), - (1500, 'TIPO'), - (1501, 'TIPO'), - (1502, 'TIPO'), - (1503, 'TIPO'), - (1504, 'TIPO'), - (1505, 'TIPO'), - (1506, 'TIPO'), - (1507, 'TIPO'), - (1508, 'TIPO'), - (1509, 'TIPO'), - (1510, 'TIPO'), - (1511, 'TIPO'), - (1512, 'TIPO'), - (1513, 'TIPO'), - (1514, 'TIPO'), - (1515, 'TIPO'), - (1516, 'TIPO'), - (1517, 'TIPO'), - (1518, 'TIPO'), - (1519, 'TIPO'), - (1520, 'TIPO'), - (1521, 'TIPO'), - (1522, 'TIPO'), - (1523, 'TIPO'), - (1524, 'TIPO'), - (1525, 'TIPO'), - (1526, 'TIPO'), - (1527, 'TIPO'), - (1528, 'TIPO'), - (1529, 'TIPO'), - (1530, 'TIPO'), - (1531, 'TIPO'), - (1532, 'TIPO'), - (1533, 'TIPO'), - (1534, 'TIPO'), - (1535, 'TIPO'), - (1536, 'TIPO'), - (1537, 'TIPO'), - (1538, 'TIPO'), - (1539, 'TIPO'), - (1540, 'TIPO'), - (1541, 'TIPO'), - (1542, 'TIPO'), - (1543, 'TIPO'), - (1544, 'TIPO'), - (1545, 'TIPO'), - (1546, 'TIPO'), - (1547, 'TIPO'), - (1548, 'TIPO'), - (1549, 'TIPO'), - (1550, 'TIPO'), - (1551, 'TIPO'), - (1552, 'TIPO'), - (1553, 'TIPO'), - (1554, 'TIPO'), - (1555, 'TIPO'), - (1556, 'TIPO'), - (1557, 'TIPO'), - (1558, 'TIPO'), - (1559, 'TIPO'), - (1560, 'TIPO'), - (1561, 'TIPO'), - (1562, 'TIPO'), - (1563, 'TIPO'), - (1564, 'TIPO'), - (1565, 'TIPO'), - (1566, 'TIPO'), - (1567, 'TIPO'), - (1568, 'TIPO'), - (1569, 'TIPO'), - (1570, 'TIPO'), - (1571, 'TIPO'), - (1572, 'TIPO'), - (1573, 'TIPO'), - (1574, 'TIPO'), - (1575, 'TIPO'), - (1576, 'TIPO'), - (1577, 'TIPO'), - (1578, 'TIPO'), - (1579, 'TIPO'), - (1580, 'TIPO'), - (1581, 'TIPO'), - (1582, 'TIPO'), - (1583, 'TIPO'), - (1584, 'TIPO'), - (1585, 'TIPO'), - (1586, 'TIPO'), - (1587, 'TIPO'), - (1588, 'TIPO'), - (1589, 'TIPO'), - (1590, 'TIPO'), - (1591, 'TIPO'), - (1592, 'TIPO'), - (1593, 'TIPO'), - (1594, 'TIPO'), - (1595, 'TIPO'), - (1596, 'TIPO'), - (1597, 'TIPO'), - (1598, 'TIPO'), - (1599, 'TIPO'), - (1600, 'TIPO'), - (1601, 'TIPO'), - (1602, 'TIPO'), - (1603, 'TIPO'), - (1604, 'TIPO'), - (1605, 'TIPO'), - (1606, 'TIPO'), - (1607, 'TIPO'), - (1608, 'TIPO'), - (1609, 'TIPO'), - (1610, 'TIPO'), - (1611, 'TIPO'), - (1612, 'TIPO'), - (1613, 'TIPO'), - (1614, 'TIPO'), - (1615, 'TIPO'), - (1616, 'TIPO'), - (1617, 'TIPO'), - (1618, 'TIPO'), - (1619, 'TIPO'), - (1620, 'TIPO'), - (1621, 'TIPO'), - (1622, 'TIPO'), - (1623, 'TIPO'), - (1624, 'TIPO'), - (1625, 'TIPO'), - (1626, 'TIPO'), - (1627, 'TIPO'), - (1628, 'TIPO'), - (1629, 'TIPO'), - (1630, 'TIPO'), - (1631, 'TIPO'), - (1632, 'TIPO'), - (1633, 'TIPO'), - (1634, 'TIPO'), - (1635, 'TIPO'), - (1636, 'TIPO'), - (1637, 'TIPO'), - (1638, 'TIPO'), - (1639, 'TIPO'), - (1640, 'TIPO'), - (1641, 'TIPO'), - (1642, 'TIPO'), - (1643, 'TIPO'), - (1644, 'TIPO'), - (1645, 'TIPO'), - (1646, 'TIPO'), - (1647, 'TIPO'), - (1648, 'TIPO'), - (1649, 'TIPO'), - (1650, 'TIPO'), - (1651, 'TIPO'), - (1652, 'TIPO'), - (1653, 'TIPO'), - (1654, 'TIPO'), - (1655, 'TIPO'), - (1656, 'TIPO'), - (1657, 'TIPO'), - (1658, 'TIPO'), - (1659, 'TIPO'), - (1660, 'TIPO'), - (1661, 'TIPO'), - (1662, 'TIPO'), - (1663, 'TIPO'), - (1664, 'TIPO'), - (1665, 'TIPO'), - (1666, 'TIPO'), - (1667, 'TIPO'), - (1668, 'TIPO'), - (1669, 'TIPO'), - (1670, 'TIPO'), - (1671, 'TIPO'), - (1672, 'TIPO'), - (1673, 'TIPO'), - (1674, 'TIPO'), - (1675, 'TIPO'), - (1676, 'TIPO'), - (1677, 'TIPO'), - (1678, 'TIPO'), - (1679, 'TIPO'), - (1680, 'TIPO'), - (1681, 'TIPO'), - (1682, 'TIPO'), - (1683, 'TIPO'), - (1684, 'TIPO'), - (1685, 'TIPO'), - (1686, 'TIPO'), - (1687, 'TIPO'), - (1688, 'TIPO'), - (1689, 'TIPO'), - (1690, 'TIPO'), - (1691, 'TIPO'), - (1692, 'TIPO'), - (1693, 'TIPO'), - (1694, 'TIPO'), - (1695, 'TIPO'), - (1696, 'TIPO'), - (1697, 'TIPO'), - (1698, 'TIPO'), - (1699, 'TIPO'), - (1700, 'TIPO'), - (1701, 'TIPO'), - (1702, 'TIPO'), - (1703, 'TIPO'), - (1704, 'TIPO'), - (1705, 'TIPO'), - (1706, 'TIPO'), - (1707, 'TIPO'), - (1708, 'TIPO'), - (1709, 'TIPO'), - (1710, 'TIPO'), - (1711, 'TIPO'), - (1712, 'TIPO'), - (1713, 'TIPO'), - (1714, 'TIPO'), - (1715, 'TIPO'), - (1716, 'TIPO'), - (1717, 'TIPO'), - (1718, 'TIPO'), - (1719, 'TIPO'), - (1720, 'TIPO'), - (1721, 'TIPO'), - (1722, 'TIPO'), - (1723, 'TIPO'), - (1724, 'TIPO'), - (1725, 'TIPO'), - (1726, 'TIPO'), - (1727, 'TIPO'), - (1728, 'TIPO'), - (1729, 'TIPO'), - (1730, 'TIPO'), - (1731, 'TIPO'), - (1732, 'TIPO'), - (1733, 'TIPO'), - (1734, 'TIPO'), - (1735, 'TIPO'), - (1736, 'TIPO'), - (1737, 'TIPO'), - (1738, 'TIPO'), - (1739, 'TIPO'), - (1740, 'TIPO'), - (1741, 'TIPO'), - (1742, 'TIPO'), - (1743, 'TIPO'), - (1744, 'TIPO'), - (1745, 'TIPO'), - (1746, 'TIPO'), - (1747, 'TIPO'), - (1748, 'TIPO'), - (1749, 'TIPO'), - (1750, 'TIPO'), - (1751, 'TIPO'), - (1752, 'TIPO'), - (1753, 'TIPO'), - (1754, 'TIPO'), - (1755, 'TIPO'), - (1756, 'TIPO'), - (1757, 'TIPO'), - (1758, 'TIPO'), - (1759, 'TIPO'), - (1760, 'TIPO'), - (1761, 'TIPO'), - (1762, 'TIPO'), - (1763, 'TIPO'), - (1764, 'TIPO'), - (1765, 'TIPO'), - (1766, 'TIPO'), - (1767, 'TIPO'), - (1768, 'TIPO'), - (1769, 'TIPO'), - (1770, 'TIPO'), - (1771, 'TIPO'), - (1772, 'TIPO'), - (1773, 'TIPO'), - (1774, 'TIPO'), - (1775, 'TIPO'), - (1776, 'TIPO'), - (1777, 'TIPO'), - (1778, 'TIPO'), - (1779, 'TIPO'), - (1780, 'TIPO'), - (1781, 'TIPO'), - (1782, 'TIPO'), - (1783, 'TIPO'), - (1784, 'TIPO'), - (1785, 'TIPO'), - (1786, 'TIPO'), - (1787, 'TIPO'), - (1788, 'TIPO'), - (1789, 'TIPO'), - (1790, 'TIPO'), - (1791, 'TIPO'), - (1792, 'TIPO'), - (1793, 'TIPO'), - (1794, 'TIPO'), - (1795, 'TIPO'), - (1796, 'TIPO'), - (1797, 'TIPO'), - (1798, 'TIPO'), - (1799, 'TIPO'), - (1800, 'TIPO'), - (1801, 'TIPO'), - (1802, 'TIPO'), - (1803, 'TIPO'), - (1804, 'TIPO'), - (1805, 'TIPO'), - (1806, 'TIPO'), - (1807, 'TIPO'), - (1808, 'TIPO'), - (1809, 'TIPO'), - (1810, 'TIPO'), - (1811, 'TIPO'), - (1812, 'TIPO'), - (1813, 'TIPO'), - (1814, 'TIPO'), - (1815, 'TIPO'), - (1816, 'TIPO'), - (1817, 'TIPO'), - (1818, 'TIPO'), - (1819, 'TIPO'), - (1820, 'TIPO'), - (1821, 'TIPO'), - (1822, 'TIPO'), - (1823, 'TIPO'), - (1824, 'TIPO'), - (1825, 'TIPO'), - (1826, 'TIPO'), - (1827, 'TIPO'), - (1828, 'TIPO'), - (1829, 'TIPO'), - (1830, 'TIPO'), - (1831, 'TIPO'), - (1832, 'TIPO'), - (1833, 'TIPO'), - (1834, 'TIPO'), - (1835, 'TIPO'), - (1836, 'TIPO'), - (1837, 'TIPO'), - (1838, 'TIPO'), - (1839, 'TIPO'), - (1840, 'TIPO'), - (1841, 'TIPO'), - (1842, 'TIPO'), - (1843, 'TIPO'), - (1844, 'TIPO'), - (1845, 'TIPO'), - (1846, 'TIPO'), - (1847, 'TIPO'), - (1848, 'TIPO'), - (1849, 'TIPO'), - (1850, 'TIPO'), - (1851, 'TIPO'), - (1852, 'TIPO'), - (1853, 'TIPO'), - (1854, 'TIPO'), - (1855, 'TIPO'), - (1856, 'TIPO'), - (1857, 'TIPO'), - (1858, 'TIPO'), - (1859, 'TIPO'), - (1860, 'TIPO'), - (1861, 'TIPO'), - (1862, 'TIPO'), - (1863, 'TIPO'), - (1864, 'TIPO'), - (1865, 'TIPO'), - (1866, 'TIPO'), - (1867, 'TIPO'), - (1868, 'TIPO'), - (1869, 'TIPO'), - (1870, 'TIPO'), - (1871, 'TIPO'), - (1872, 'TIPO'), - (1873, 'TIPO'), - (1874, 'TIPO'), - (1875, 'TIPO'), - (1876, 'TIPO'), - (1877, 'TIPO'), - (1878, 'TIPO'), - (1879, 'TIPO'), - (1880, 'TIPO'), - (1881, 'TIPO'), - (1882, 'TIPO'), - (1883, 'TIPO'), - (1884, 'TIPO'), - (1885, 'TIPO'), - (1886, 'TIPO'), - (1887, 'TIPO'), - (1888, 'TIPO'), - (1889, 'TIPO'), - (1890, 'TIPO'), - (1891, 'TIPO'), - (1892, 'TIPO'), - (1893, 'TIPO'), - (1894, 'TIPO'), - (1895, 'TIPO'), - (1896, 'TIPO'), - (1897, 'TIPO'), - (1898, 'TIPO'), - (1899, 'TIPO'), - (1900, 'TIPO'), - (1901, 'TIPO'), - (1902, 'TIPO'), - (1903, 'TIPO'), - (1904, 'TIPO'), - (1905, 'TIPO'), - (1906, 'TIPO'), - (1907, 'TIPO'), - (1908, 'TIPO'), - (1909, 'TIPO'), - (1910, 'TIPO'), - (1911, 'TIPO'), - (1912, 'TIPO'), - (1913, 'TIPO'), - (1914, 'TIPO'), - (1915, 'TIPO'), - (1916, 'TIPO'), - (1917, 'TIPO'), - (1918, 'TIPO'), - (1919, 'TIPO'), - (1920, 'TIPO'), - (1921, 'TIPO'), - (1922, 'TIPO'), - (1923, 'TIPO'), - (1924, 'TIPO'), - (1925, 'TIPO'), - (1926, 'TIPO'), - (1927, 'TIPO'), - (1928, 'TIPO'), - (1929, 'TIPO'), - (1930, 'TIPO'), - (1931, 'TIPO'), - (1932, 'TIPO'), - (1933, 'TIPO'), - (1934, 'TIPO'), - (1935, 'TIPO'), - (1936, 'TIPO'), - (1937, 'TIPO'), - (1938, 'TIPO'), - (1939, 'TIPO'), - (1940, 'TIPO'), - (1941, 'TIPO'), - (1942, 'TIPO'), - (1943, 'TIPO'), - (1944, 'TIPO'), - (1945, 'TIPO'), - (1946, 'TIPO'), - (1947, 'TIPO'), - (1948, 'TIPO'), - (1949, 'TIPO'), - (1950, 'TIPO'), - (1951, 'TIPO'), - (1952, 'TIPO'), - (1953, 'TIPO'), - (1954, 'TIPO'), - (1955, 'TIPO'), - (1956, 'TIPO'), - (1957, 'TIPO'), - (1958, 'TIPO'), - (1959, 'TIPO'), - (1960, 'TIPO'), - (1961, 'TIPO'), - (1962, 'TIPO'), - (1963, 'TIPO'), - (1964, 'TIPO'), - (1965, 'TIPO'), - (1966, 'TIPO'), - (1967, 'TIPO'), - (1968, 'TIPO'), - (1969, 'TIPO'), - (1970, 'TIPO'), - (1971, 'TIPO'), - (1972, 'TIPO'), - (1973, 'TIPO'), - (1974, 'TIPO'), - (1975, 'TIPO'), - (1976, 'TIPO'), - (1977, 'TIPO'), - (1978, 'TIPO'), - (1979, 'TIPO'), - (1980, 'TIPO'), - (1981, 'TIPO'), - (1982, 'TIPO'), - (1983, 'TIPO'), - (1984, 'TIPO'), - (1985, 'TIPO'), - (1986, 'TIPO'), - (1987, 'TIPO'), - (1988, 'TIPO'), - (1989, 'TIPO'), - (1990, 'TIPO'), - (1991, 'TIPO'), - (1992, 'TIPO'), - (1993, 'TIPO'), - (1994, 'TIPO'), - (1995, 'TIPO'), - (1996, 'TIPO'), - (1997, 'TIPO'), - (1998, 'TIPO'), - (1999, 'TIPO'), - (2000, 'TIPO'); - --- --- Name: parts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: --- - -ALTER TABLE ONLY parts ADD CONSTRAINT parts_pkey PRIMARY KEY (id); - --- --- Name: personas_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: --- - -ALTER TABLE ONLY personas ADD CONSTRAINT personas_pkey PRIMARY KEY (cedula); - --- --- Name: personnes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: --- - -ALTER TABLE ONLY personnes ADD CONSTRAINT personnes_pkey PRIMARY KEY (cedula); - --- --- Name: prueba_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: --- - -ALTER TABLE ONLY prueba ADD CONSTRAINT prueba_pkey PRIMARY KEY (id); - --- --- Name: robots_parts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: --- - -ALTER TABLE ONLY robots_parts ADD CONSTRAINT robots_parts_pkey PRIMARY KEY (id); - --- --- Name: robots_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: --- - -ALTER TABLE ONLY robots ADD CONSTRAINT robots_pkey PRIMARY KEY (id); - --- --- Name: subscriptores_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: --- - -ALTER TABLE ONLY subscriptores ADD CONSTRAINT subscriptores_pkey PRIMARY KEY (id); - --- --- Name: tipo_documento_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: --- - -ALTER TABLE ONLY tipo_documento ADD CONSTRAINT tipo_documento_pkey PRIMARY KEY (id); - --- --- Name: personas_estado_idx; Type: INDEX; Schema: public; Owner: postgres; Tablespace: --- - -CREATE INDEX personas_estado_idx ON personas USING btree (estado); - --- --- Name: robots_parts_parts_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace: --- - -CREATE INDEX robots_parts_parts_id ON robots_parts USING btree (parts_id); - --- --- Name: robots_parts_robots_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace: --- - -CREATE INDEX robots_parts_robots_id ON robots_parts USING btree (robots_id); - --- --- Name: robots_parts_ibfk_1; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY robots_parts ADD CONSTRAINT robots_parts_ibfk_1 FOREIGN KEY (robots_id) REFERENCES robots(id); - --- --- Name: robots_parts_ibfk_2; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY robots_parts ADD CONSTRAINT robots_parts_ibfk_2 FOREIGN KEY (parts_id) REFERENCES parts(id); - --- --- Name: table_with_string_field; Type: TABLE DATA; Schema: public; Owner: postgres --- - -DROP TABLE IF EXISTS table_with_string_field; -CREATE TABLE table_with_string_field ( - id integer NOT NULL, - field character varying(70) NOT NULL -); - --- --- Name: public; Type: ACL; Schema: -; Owner: postgres --- - -REVOKE ALL ON SCHEMA public FROM PUBLIC; -REVOKE ALL ON SCHEMA public FROM postgres; -GRANT ALL ON SCHEMA public TO postgres; -GRANT ALL ON SCHEMA public TO PUBLIC; - --- --- PostgreSQL database dump complete --- diff --git a/tests/_support/Helper/Db/Adapter/Pdo/MysqlTrait.php b/tests/_support/Helper/Db/Adapter/Pdo/MysqlTrait.php new file mode 100644 index 00000000000..628d588ecf3 --- /dev/null +++ b/tests/_support/Helper/Db/Adapter/Pdo/MysqlTrait.php @@ -0,0 +1,58 @@ +<?php + +/** + * This file is part of the Phalcon. + * + * (c) Phalcon Team <team@phalcon.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Helper\Db\Adapter\Pdo; + +use Phalcon\Db\Adapter\Pdo\Mysql; + +trait MysqlTrait +{ + /** + * @var Mysql + */ + protected $connection; + + public function _before(\UnitTester $I) + { + try { + $this->connection = new Mysql([ + 'host' => TEST_DB_MYSQL_HOST, + 'username' => TEST_DB_MYSQL_USER, + 'password' => TEST_DB_MYSQL_PASSWD, + 'dbname' => TEST_DB_MYSQL_NAME, + 'port' => TEST_DB_MYSQL_PORT, + 'charset' => TEST_DB_MYSQL_CHARSET, + ]); + } catch (\PDOException $e) { + throw new SkippedTestError("Unable to connect to the database: " . $e->getMessage()); + } + } + + /** + * Returns the database name + * + * @return string + */ + protected function getDatabaseName(): string + { + return TEST_DB_MYSQL_NAME; + } + + /** + * Returns the database schema; MySql does not have a schema + * + * @return string + */ + protected function getSchemaName(): string + { + return TEST_DB_MYSQL_NAME; + } +} diff --git a/tests/_support/Helper/Db/Adapter/Pdo/PostgresqlTrait.php b/tests/_support/Helper/Db/Adapter/Pdo/PostgresqlTrait.php new file mode 100644 index 00000000000..c91f192d20d --- /dev/null +++ b/tests/_support/Helper/Db/Adapter/Pdo/PostgresqlTrait.php @@ -0,0 +1,58 @@ +<?php + +/** + * This file is part of the Phalcon. + * + * (c) Phalcon Team <team@phalcon.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Helper\Db\Adapter\Pdo; + +use Phalcon\Db\Adapter\Pdo\Postgresql; + +trait PostgresqlTrait +{ + /** + * @var Postgresql + */ + protected $connection; + + public function _before(\UnitTester $I) + { + try { + $this->connection = new Postgresql([ + 'host' => TEST_DB_POSTGRESQL_HOST, + 'username' => TEST_DB_POSTGRESQL_USER, + 'password' => TEST_DB_POSTGRESQL_PASSWD, + 'dbname' => TEST_DB_POSTGRESQL_NAME, + 'port' => TEST_DB_POSTGRESQL_PORT, + 'schema' => TEST_DB_POSTGRESQL_SCHEMA + ]); + } catch (\PDOException $e) { + throw new SkippedTestError("Unable to connect to the database: " . $e->getMessage()); + } + } + + /** + * Returns the database name + * + * @return string + */ + protected function getDatabaseName(): string + { + return TEST_DB_POSTGRESQL_NAME; + } + + /** + * Returns the database schema; + * + * @return string + */ + protected function getSchemaName(): string + { + return TEST_DB_POSTGRESQL_SCHEMA; + } +} diff --git a/tests/unit.suite.yml b/tests/unit.suite.yml index 6beb3d07589..32927ed261a 100644 --- a/tests/unit.suite.yml +++ b/tests/unit.suite.yml @@ -31,7 +31,7 @@ modules: password: "%TEST_DB_MYSQL_PASSWD%" populate: true cleanup: false - dump: tests/_data/schemas/mysql/phalcon_test.sql + dump: tests/_data/schemas/phalcon-schema-mysql.sql Redis: database: "%TEST_RS_DB%" host: "%TEST_RS_HOST%" diff --git a/tests/unit/Db/Adapter/Pdo/ColumnsBase.php b/tests/unit/Db/Adapter/Pdo/ColumnsBase.php new file mode 100644 index 00000000000..ec07a251eb1 --- /dev/null +++ b/tests/unit/Db/Adapter/Pdo/ColumnsBase.php @@ -0,0 +1,103 @@ +<?php + +/** + * This file is part of the Phalcon. + * + * (c) Phalcon Team <team@phalcon.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Db\Adapter\Pdo; + +class ColumnsBase +{ + /** + * Test the `describeColumns` + * + * @param \UnitTester $I + * @since 2018-10-26 + */ + public function checkColumns(\UnitTester $I) + { + $table = 'dialect_table'; + $expected = $this->getExpectedColumns(); + $I->assertEquals($expected, $this->connection->describeColumns($table)); + $I->assertEquals($expected, $this->connection->describeColumns($table, $this->getSchemaName())); + } + + public function checkColumnsAsObject(\UnitTester $I) + { + $columns = $this->getColumns(); + $expectedColumns = $this->getExpectedColumns(); + foreach ($expectedColumns as $index => $column) { + $I->assertEquals($columns[$index]['_columnName'], $column->getName()); + $I->assertEquals($columns[$index]['_schemaName'], $column->getSchemaName()); + $I->assertEquals($columns[$index]['_type'], $column->getType()); + $I->assertEquals($columns[$index]['_isNumeric'], $column->isNumeric()); + $I->assertEquals($columns[$index]['_size'], $column->getSize()); + $I->assertEquals($columns[$index]['_scale'], $column->getScale()); + $I->assertEquals($columns[$index]['_default'], $column->getDefault()); + $I->assertEquals($columns[$index]['_unsigned'], $column->isUnsigned()); + $I->assertEquals($columns[$index]['_notNull'], $column->isNotNull()); + $I->assertEquals($columns[$index]['_autoIncrement'], $column->isAutoIncrement()); + $I->assertEquals($columns[$index]['_primary'], $column->isPrimary()); + $I->assertEquals($columns[$index]['_first'], $column->isFirst()); + $I->assertEquals($columns[$index]['_after'], $column->getAfterPosition()); + $I->assertEquals($columns[$index]['_bindType'], $column->getBindType()); + $I->assertTrue(null !== $column->hasDefault()); +// public function getTypeReference() -> int; +// public function getTypeValues() -> int; + } + } + + /** + * Test the `describeIndexes` + * + * @param \UnitTester $I + * @since 2018-10-26 + */ + public function checkColumnIndexes(\UnitTester $I) + { + $table = 'dialect_table'; + $expected = $this->getExpectedIndexes(); + $I->assertEquals($expected, $this->connection->describeIndexes($table)); + $I->assertEquals($expected, $this->connection->describeIndexes($table, $this->getSchemaName())); + } + + /** + * Test the `describeReferences` count + * + * @param \UnitTester $I + * @since 2018-10-26 + */ + public function checkReferencesCount(\UnitTester $I) + { + $table = 'dialect_table_intermediate'; + $directReferences = $this->connection->describeReferences($table); + $schemaReferences = $this->connection->describeReferences($table, $this->getSchemaName()); + $I->assertEquals($directReferences, $schemaReferences); + $I->assertEquals(2, count($directReferences)); + $I->assertEquals(2, count($schemaReferences)); + + /** @var Reference $reference */ + foreach ($directReferences as $reference) { + $I->assertEquals(1, count($reference->getColumns())); + } + } + + /** + * Test the `describeReferences` + * + * @param \UnitTester $I + * @since 2018-10-26 + */ + public function checkReferences(\UnitTester $I) + { + $table = 'dialect_table_intermediate'; + $expected = $this->getExpectedReferences(); + $I->assertEquals($expected, $this->connection->describeReferences($table)); + $I->assertEquals($expected, $this->connection->describeReferences($table, $this->getSchemaName())); + } +} diff --git a/tests/unit/Db/Adapter/Pdo/Mysql/ColumnsCest.php b/tests/unit/Db/Adapter/Pdo/Mysql/ColumnsCest.php new file mode 100644 index 00000000000..38ccd8f563d --- /dev/null +++ b/tests/unit/Db/Adapter/Pdo/Mysql/ColumnsCest.php @@ -0,0 +1,734 @@ +<?php + +/** + * This file is part of the Phalcon. + * + * (c) Phalcon Team <team@phalcon.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Db\Adapter\Pdo\Mysql; + +use Helper\Db\Adapter\Pdo\MysqlTrait; +use Phalcon\Db\Column; +use Phalcon\Db\Index; +use Phalcon\Db\Reference; +use Phalcon\Db\Adapter\Pdo\Mysql; +use Phalcon\Test\Unit\Db\Adapter\Pdo\ColumnsBase; + +class ColumnsCest extends ColumnsBase +{ + use MysqlTrait; + + /** + * Return the array of columns + * + * @return array + * @since 2018-10-26 + */ + protected function getColumns(): array + { + return [ + 0 => [ + '_columnName' => 'field_primary', + '_schemaName' => null, + '_type' => Column::TYPE_INTEGER, + '_isNumeric' => true, + '_size' => 11, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => true, + '_primary' => true, + '_first' => true, + '_after' => null, + '_bindType' => Column::BIND_PARAM_INT, + ], + 1 => [ + '_columnName' => 'field_blob', + '_schemaName' => null, + '_type' => Column::TYPE_BLOB, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_primary', + '_bindType' => Column::BIND_PARAM_STR, + ], + 2 => [ + '_columnName' => 'field_bit', + '_schemaName' => null, + '_type' => Column::TYPE_BIT, + '_isNumeric' => false, + '_size' => 1, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_blob', + '_bindType' => Column::BIND_PARAM_INT, + ], + 3 => [ + '_columnName' => 'field_bit_default', + '_schemaName' => null, + '_type' => Column::TYPE_BIT, + '_isNumeric' => false, + '_size' => 1, + '_scale' => 0, + '_default' => "b'1'", + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_bit', + '_bindType' => Column::BIND_PARAM_INT, + ], + 4 => [ + '_columnName' => 'field_bigint', + '_schemaName' => null, + '_type' => Column::TYPE_BIGINTEGER, + '_isNumeric' => true, + '_size' => 20, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_bit_default', + '_bindType' => Column::BIND_PARAM_INT, + ], + 5 => [ + '_columnName' => 'field_bigint_default', + '_schemaName' => null, + '_type' => Column::TYPE_BIGINTEGER, + '_isNumeric' => true, + '_size' => 20, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_bigint', + '_bindType' => Column::BIND_PARAM_INT, + ], + 6 => [ + '_columnName' => 'field_boolean', + '_schemaName' => null, + '_type' => Column::TYPE_BOOLEAN, + '_isNumeric' => true, + '_size' => 1, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_bigint_default', + '_bindType' => Column::BIND_PARAM_BOOL, + ], + 7 => [ + '_columnName' => 'field_boolean_default', + '_schemaName' => null, + '_type' => Column::TYPE_BOOLEAN, + '_isNumeric' => true, + '_size' => 1, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_boolean', + '_bindType' => Column::BIND_PARAM_BOOL, + ], + 8 => [ + '_columnName' => 'field_char', + '_schemaName' => null, + '_type' => Column::TYPE_CHAR, + '_isNumeric' => false, + '_size' => 10, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_boolean_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 9 => [ + '_columnName' => 'field_char_default', + '_schemaName' => null, + '_type' => Column::TYPE_CHAR, + '_isNumeric' => false, + '_size' => 10, + '_scale' => 0, + '_default' => 'ABC', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_char', + '_bindType' => Column::BIND_PARAM_STR, + ], + 10 => [ + '_columnName' => 'field_decimal', + '_schemaName' => null, + '_type' => Column::TYPE_DECIMAL, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 4, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_char_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 11 => [ + '_columnName' => 'field_decimal_default', + '_schemaName' => null, + '_type' => Column::TYPE_DECIMAL, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 4, + '_default' => '14.5678', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_decimal', + '_bindType' => Column::BIND_PARAM_STR, + ], + 12 => [ + '_columnName' => 'field_enum', + '_schemaName' => null, + '_type' => Column::TYPE_ENUM, + '_isNumeric' => false, + '_size' => "'xs','s','m','l','xl'", + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_decimal_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 13 => [ + '_columnName' => 'field_integer', + '_schemaName' => null, + '_type' => Column::TYPE_INTEGER, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_enum', + '_bindType' => Column::BIND_PARAM_INT, + ], + 14 => [ + '_columnName' => 'field_integer_default', + '_schemaName' => null, + '_type' => Column::TYPE_INTEGER, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_integer', + '_bindType' => Column::BIND_PARAM_INT, + ], + 15 => [ + '_columnName' => 'field_json', + '_schemaName' => false, + '_type' => Column::TYPE_JSON, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_integer_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 16 => [ + '_columnName' => 'field_float', + '_schemaName' => null, + '_type' => Column::TYPE_FLOAT, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 4, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_json', + '_bindType' => Column::BIND_PARAM_DECIMAL, + ], + 17 => [ + '_columnName' => 'field_float_default', + '_schemaName' => null, + '_type' => Column::TYPE_FLOAT, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 4, + '_default' => '14.5678', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_float', + '_bindType' => Column::BIND_PARAM_DECIMAL, + ], + 18 => [ + '_columnName' => 'field_date', + '_schemaName' => null, + '_type' => Column::TYPE_DATE, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_float_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 19 => [ + '_columnName' => 'field_date_default', + '_schemaName' => false, + '_type' => Column::TYPE_DATE, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => '2018-10-01', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_date', + '_bindType' => Column::BIND_PARAM_STR, + ], + 20 => [ + '_columnName' => 'field_datetime', + '_schemaName' => null, + '_type' => Column::TYPE_DATETIME, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_date_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 21 => [ + '_columnName' => 'field_datetime_default', + '_schemaName' => false, + '_type' => Column::TYPE_DATETIME, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => '2018-10-01 12:34:56', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_datetime', + '_bindType' => Column::BIND_PARAM_STR, + ], + 22 => [ + '_columnName' => 'field_time', + '_schemaName' => null, + '_type' => Column::TYPE_TIME, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_datetime_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 23 => [ + '_columnName' => 'field_time_default', + '_schemaName' => null, + '_type' => Column::TYPE_TIME, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => '12:34:56', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_time', + '_bindType' => Column::BIND_PARAM_STR, + ], + 24 => [ + '_columnName' => 'field_timestamp', + '_schemaName' => null, + '_type' => Column::TYPE_TIMESTAMP, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_time_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 25 => [ + '_columnName' => 'field_timestamp_default', + '_schemaName' => null, + '_type' => Column::TYPE_TIMESTAMP, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => '2018-10-01 12:34:56', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_timestamp', + '_bindType' => Column::BIND_PARAM_STR, + ], + 26 => [ + '_columnName' => 'field_mediumint', + '_schemaName' => null, + '_type' => Column::TYPE_MEDIUMINTEGER, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_timestamp_default', + '_bindType' => Column::BIND_PARAM_INT, + ], + 27 => [ + '_columnName' => 'field_mediumint_default', + '_schemaName' => null, + '_type' => Column::TYPE_MEDIUMINTEGER, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_mediumint', + '_bindType' => Column::BIND_PARAM_INT, + ], + 28 => [ + '_columnName' => 'field_smallint', + '_schemaName' => null, + '_type' => Column::TYPE_SMALLINTEGER, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_mediumint_default', + '_bindType' => Column::BIND_PARAM_INT, + ], + 29 => [ + '_columnName' => 'field_smallint_default', + '_schemaName' => null, + '_type' => Column::TYPE_SMALLINTEGER, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_smallint', + '_bindType' => Column::BIND_PARAM_INT, + ], + 30 => [ + '_columnName' => 'field_tinyint', + '_schemaName' => null, + '_type' => Column::TYPE_TINYINTEGER, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_smallint_default', + '_bindType' => Column::BIND_PARAM_INT, + ], + 31 => [ + '_columnName' => 'field_tinyint_default', + '_schemaName' => null, + '_type' => Column::TYPE_TINYINTEGER, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_tinyint', + '_bindType' => Column::BIND_PARAM_INT, + ], + 32 => [ + '_columnName' => 'field_longtext', + '_schemaName' => null, + '_type' => Column::TYPE_LONGTEXT, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_tinyint_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 33 => [ + '_columnName' => 'field_mediumtext', + '_schemaName' => null, + '_type' => Column::TYPE_MEDIUMTEXT, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_longtext', + '_bindType' => Column::BIND_PARAM_STR, + ], + 34 => [ + '_columnName' => 'field_tinytext', + '_schemaName' => null, + '_type' => Column::TYPE_TINYTEXT, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_mediumtext', + '_bindType' => Column::BIND_PARAM_STR, + ], + 35 => [ + '_columnName' => 'field_text', + '_schemaName' => null, + '_type' => Column::TYPE_TEXT, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_tinytext', + '_bindType' => Column::BIND_PARAM_STR, + ], + 36 => [ + '_columnName' => 'field_varchar', + '_schemaName' => null, + '_type' => Column::TYPE_VARCHAR, + '_isNumeric' => false, + '_size' => 10, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_text', + '_bindType' => Column::BIND_PARAM_STR, + ], + 37 => [ + '_columnName' => 'field_varchar_default', + '_schemaName' => null, + '_type' => Column::TYPE_VARCHAR, + '_isNumeric' => false, + '_size' => 10, + '_scale' => 0, + '_default' => 'D', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_varchar', + '_bindType' => Column::BIND_PARAM_STR, + ], + ]; + } + + /** + * Return the array of expected columns + * + * @return array + * @since 2018-10-26 + */ + protected function getExpectedColumns(): array + { + $result = []; + $columns = $this->getColumns(); + foreach ($columns as $index => $array) { + $result[$index] = Column::__set_state($array); + } + + return $result; + } + + /** + * Return the array of expected indexes + * + * @return array + * @since 2018-10-26 + */ + protected function getExpectedIndexes(): array + { + return [ + 'PRIMARY' => Index::__set_state( + [ + '_name' => 'PRIMARY', + '_columns' => ['field_primary'], + '_type' => 'PRIMARY', + ] + ), + 'dialect_table_unique' => Index::__set_state( + [ + '_name' => 'dialect_table_unique', + '_columns' => ['field_integer'], + '_type' => 'UNIQUE', + ] + ), + 'dialect_table_index' => Index::__set_state( + [ + '_name' => 'dialect_table_index', + '_columns' => ['field_bigint'], + '_type' => '', + ] + ), + 'dialect_table_two_fields' => Index::__set_state( + [ + '_name' => 'dialect_table_two_fields', + '_columns' => ['field_char', 'field_char_default'], + '_type' => '', + ] + ), + ]; + } + + /** + * Return the array of expected references + * + * @return array + */ + protected function getExpectedReferences(): array + { + return [ + 'dialect_table_intermediate_primary__fk' => Reference::__set_state( + [ + '_referenceName' => 'dialect_table_intermediate_primary__fk', + '_referencedTable' => 'dialect_table', + '_columns' => ['field_primary_id'], + '_referencedColumns' => ['field_primary'], + '_referencedSchema' => $this->getDatabaseName(), + '_onUpdate' => 'RESTRICT', + '_onDelete' => 'RESTRICT' + ] + ), + 'dialect_table_intermediate_remote__fk' => Reference::__set_state( + [ + '_referenceName' => 'dialect_table_intermediate_remote__fk', + '_referencedTable' => 'dialect_table_remote', + '_columns' => ['field_remote_id'], + '_referencedColumns' => ['field_primary'], + '_referencedSchema' => $this->getDatabaseName(), + '_onUpdate' => 'CASCADE', + '_onDelete' => 'SET NULL' + ] + ), + ]; + } +} diff --git a/tests/unit/Db/Adapter/Pdo/Mysql/TablesCest.php b/tests/unit/Db/Adapter/Pdo/Mysql/TablesCest.php new file mode 100644 index 00000000000..0b436ef9b9e --- /dev/null +++ b/tests/unit/Db/Adapter/Pdo/Mysql/TablesCest.php @@ -0,0 +1,86 @@ +<?php + +/** + * This file is part of the Phalcon. + * + * (c) Phalcon Team <team@phalcon.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Db\Adapter\Pdo\Mysql; + +use Helper\Db\Adapter\Pdo\MysqlTrait; +use Phalcon\Test\Unit\Db\Adapter\Pdo\TablesBase; + +class TablesCest extends TablesBase +{ + use MysqlTrait; + + + /** + * Test the `tableOptions` + * + * @param \UnitTester $I + * @since 2018-10-26 + */ + public function checkTableOptions(\UnitTester $I) + { + $table = 'dialect_table'; + $expected = [ + 'table_type' => 'BASE TABLE', + 'auto_increment' => '1', + 'engine' => 'InnoDB', + 'table_collation' => 'utf8_general_ci', + 'table_type' => 'BASE TABLE' + ]; + + $I->assertEquals($expected, $this->connection->tableOptions($table, $this->getDatabaseName())); + } + + /** + * Returns the list of the tables in the database + * + * @return array + */ + protected function getListTables(): array + { + return [ + 'albums', + 'artists', + 'childs', + 'customers', + 'dialect_table', + 'dialect_table_intermediate', + 'dialect_table_remote', + 'foreign_key_child', + 'foreign_key_parent', + 'identityless_requests', + 'issue12071_body', + 'issue12071_head', + 'issue_11036', + 'issue_1534', + 'issue_2019', + 'm2m_parts', + 'm2m_robots', + 'm2m_robots_parts', + 'package_details', + 'packages', + 'parts', + 'personas', + 'personnes', + 'ph_select', + 'prueba', + 'robots', + 'robots_parts', + 'songs', + 'stats', + 'stock', + 'subscriptores', + 'table_with_string_field', + 'tipo_documento', + 'users', + ]; + } +} diff --git a/tests/unit/Db/Adapter/Pdo/MysqlTest.php b/tests/unit/Db/Adapter/Pdo/MysqlTest.php index c98dbe7a9bf..791864e51e5 100644 --- a/tests/unit/Db/Adapter/Pdo/MysqlTest.php +++ b/tests/unit/Db/Adapter/Pdo/MysqlTest.php @@ -52,80 +52,6 @@ public function _before() } } - /** - * Tests Mysql::listTables - * - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @since 2016-08-03 - */ - public function testListTables() - { - $this->specify( - 'List all tables on a database does not return correct result', - function () { - $expected = [ - 'albums', - 'artists', - 'childs', - 'customers', - 'foreign_key_child', - 'foreign_key_parent', - 'identityless_requests', - 'issue12071_body', - 'issue12071_head', - 'issue_11036', - 'issue_1534', - 'issue_2019', - 'm2m_parts', - 'm2m_robots', - 'm2m_robots_parts', - 'package_details', - 'packages', - 'parts', - 'personas', - 'personnes', - 'ph_select', - 'prueba', - 'robots', - 'robots_parts', - 'songs', - 'stats', - 'stock', - 'subscriptores', - 'table_with_string_field', - 'tipo_documento', - 'users', - ]; - - expect($this->connection->listTables())->equals($expected); - expect($this->connection->listTables(env('TEST_DB_MYSQL_NAME', 'phalcon_test')))->equals($expected); - } - ); - } - - /** - * Tests Mysql::describeReferences - * - * @author Wojciechj Ślawski <jurigag@gmail.com> - * @since 2016-09-28 - */ - public function testDescribeReferencesColumnsCount() - { - $this->specify( - 'The table references list contains wrong number of columns', - function () { - $references = $this->connection->describeReferences('robots_parts', TEST_DB_MYSQL_NAME); - expect($references)->count(2); - expect($this->connection->describeReferences('robots_parts', null))->count(2); - - /** @var Reference $reference */ - foreach ($references as $reference) { - expect($reference->getColumns())->count(1); - } - } - ); - } - /** * Tests Mysql::escapeIdentifier * diff --git a/tests/unit/Db/Adapter/Pdo/Postgresql/ColumnsCest.php b/tests/unit/Db/Adapter/Pdo/Postgresql/ColumnsCest.php new file mode 100644 index 00000000000..01c27ae57c4 --- /dev/null +++ b/tests/unit/Db/Adapter/Pdo/Postgresql/ColumnsCest.php @@ -0,0 +1,755 @@ +<?php + +/** + * This file is part of the Phalcon. + * + * (c) Phalcon Team <team@phalcon.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Db\Adapter\Pdo\Postgresql; + +use Helper\Db\Adapter\Pdo\PostgresqlTrait; +use Phalcon\Db\Column; +use Phalcon\Db\Index; +use Phalcon\Db\Reference; +use Phalcon\Test\Unit\Db\Adapter\Pdo\ColumnsBase; + +class ColumnsCest extends ColumnsBase +{ + use PostgresqlTrait; + + /** + * Overriding to skip the test + * + * @param \UnitTester $I + * @since 2018-10-26 + */ + public function checkReferencesCount(\UnitTester $I) + { + $I->comment('TODO: Skipping for now'); + } + + /** + * Test the `describeReferences` + * + * @param \UnitTester $I + * @since 2018-10-26 + */ + public function checkReferences(\UnitTester $I) + { + $I->comment('TODO: Skipping for now'); + } + + /** + * Return the array of columns + * + * @return array + * @since 2018-10-26 + */ + protected function getColumns(): array + { + return [ + 0 => [ + '_columnName' => 'field_primary', + '_schemaName' => null, + '_type' => Column::TYPE_INTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => "nextval('dialect_table_field_primary_seq'::regclass)", + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => true, + '_primary' => true, + '_first' => true, + '_after' => null, + '_bindType' => Column::BIND_PARAM_INT, + ], + 1 => [ + '_columnName' => 'field_blob', + '_schemaName' => null, + '_type' => Column::TYPE_TEXT, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_primary', + '_bindType' => Column::BIND_PARAM_STR, + ], + 2 => [ + '_columnName' => 'field_bit', + '_schemaName' => null, + '_type' => Column::TYPE_BIT, + '_isNumeric' => false, + '_size' => null, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_blob', + '_bindType' => Column::BIND_PARAM_STR, + ], + 3 => [ + '_columnName' => 'field_bit_default', + '_schemaName' => null, + '_type' => Column::TYPE_BIT, + '_isNumeric' => false, + '_size' => null, + '_scale' => 0, + '_default' => "B'1'::\"bit\"", + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_bit', + '_bindType' => Column::BIND_PARAM_STR, + ], + 4 => [ + '_columnName' => 'field_bigint', + '_schemaName' => null, + '_type' => Column::TYPE_BIGINTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_bit_default', + '_bindType' => Column::BIND_PARAM_INT, + ], + 5 => [ + '_columnName' => 'field_bigint_default', + '_schemaName' => null, + '_type' => Column::TYPE_BIGINTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_bigint', + '_bindType' => Column::BIND_PARAM_INT, + ], + 6 => [ + '_columnName' => 'field_boolean', + '_schemaName' => null, + '_type' => Column::TYPE_BOOLEAN, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_bigint_default', + '_bindType' => Column::BIND_PARAM_BOOL, + ], + 7 => [ + '_columnName' => 'field_boolean_default', + '_schemaName' => null, + '_type' => Column::TYPE_BOOLEAN, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => 'true', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_boolean', + '_bindType' => Column::BIND_PARAM_BOOL, + ], + 8 => [ + '_columnName' => 'field_char', + '_schemaName' => null, + '_type' => Column::TYPE_CHAR, + '_isNumeric' => false, + '_size' => 10, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_boolean_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 9 => [ + '_columnName' => 'field_char_default', + '_schemaName' => null, + '_type' => Column::TYPE_CHAR, + '_isNumeric' => false, + '_size' => 10, + '_scale' => 0, + '_default' => 'ABC', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_char', + '_bindType' => Column::BIND_PARAM_STR, + ], + 10 => [ + '_columnName' => 'field_decimal', + '_schemaName' => null, + '_type' => Column::TYPE_DECIMAL, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_char_default', + '_bindType' => Column::BIND_PARAM_DECIMAL, + ], + 11 => [ + '_columnName' => 'field_decimal_default', + '_schemaName' => null, + '_type' => Column::TYPE_DECIMAL, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => '14.5678', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_decimal', + '_bindType' => Column::BIND_PARAM_DECIMAL, + ], + 12 => [ + '_columnName' => 'field_enum', + '_schemaName' => null, + '_type' => Column::TYPE_VARCHAR, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_decimal_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 13 => [ + '_columnName' => 'field_integer', + '_schemaName' => null, + '_type' => Column::TYPE_INTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_enum', + '_bindType' => Column::BIND_PARAM_INT, + ], + 14 => [ + '_columnName' => 'field_integer_default', + '_schemaName' => null, + '_type' => Column::TYPE_INTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_integer', + '_bindType' => Column::BIND_PARAM_INT, + ], + 15 => [ + '_columnName' => 'field_json', + '_schemaName' => false, + '_type' => Column::TYPE_JSON, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_integer_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 16 => [ + '_columnName' => 'field_float', + '_schemaName' => null, + '_type' => Column::TYPE_DECIMAL, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_json', + '_bindType' => Column::BIND_PARAM_DECIMAL, + ], + 17 => [ + '_columnName' => 'field_float_default', + '_schemaName' => null, + '_type' => Column::TYPE_DECIMAL, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => '14.5678', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_float', + '_bindType' => Column::BIND_PARAM_DECIMAL, + ], + 18 => [ + '_columnName' => 'field_date', + '_schemaName' => null, + '_type' => Column::TYPE_DATE, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_float_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 19 => [ + '_columnName' => 'field_date_default', + '_schemaName' => false, + '_type' => Column::TYPE_DATE, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => '2018-10-01', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_date', + '_bindType' => Column::BIND_PARAM_STR, + ], + 20 => [ + '_columnName' => 'field_datetime', + '_schemaName' => null, + '_type' => Column::TYPE_TIMESTAMP, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_date_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 21 => [ + '_columnName' => 'field_datetime_default', + '_schemaName' => false, + '_type' => Column::TYPE_TIMESTAMP, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => '2018-10-01 12:34:56', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_datetime', + '_bindType' => Column::BIND_PARAM_STR, + ], + 22 => [ + '_columnName' => 'field_time', + '_schemaName' => null, + '_type' => Column::TYPE_TIME, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_datetime_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 23 => [ + '_columnName' => 'field_time_default', + '_schemaName' => null, + '_type' => Column::TYPE_TIME, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => '12:34:56', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_time', + '_bindType' => Column::BIND_PARAM_STR, + ], + 24 => [ + '_columnName' => 'field_timestamp', + '_schemaName' => null, + '_type' => Column::TYPE_TIMESTAMP, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_time_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 25 => [ + '_columnName' => 'field_timestamp_default', + '_schemaName' => null, + '_type' => Column::TYPE_TIMESTAMP, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => '2018-10-01 12:34:56', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_timestamp', + '_bindType' => Column::BIND_PARAM_STR, + ], + 26 => [ + '_columnName' => 'field_mediumint', + '_schemaName' => null, + '_type' => Column::TYPE_INTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_timestamp_default', + '_bindType' => Column::BIND_PARAM_INT, + ], + 27 => [ + '_columnName' => 'field_mediumint_default', + '_schemaName' => null, + '_type' => Column::TYPE_INTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_mediumint', + '_bindType' => Column::BIND_PARAM_INT, + ], + 28 => [ + '_columnName' => 'field_smallint', + '_schemaName' => null, + '_type' => Column::TYPE_SMALLINTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_mediumint_default', + '_bindType' => Column::BIND_PARAM_INT, + ], + 29 => [ + '_columnName' => 'field_smallint_default', + '_schemaName' => null, + '_type' => Column::TYPE_SMALLINTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_smallint', + '_bindType' => Column::BIND_PARAM_INT, + ], + 30 => [ + '_columnName' => 'field_tinyint', + '_schemaName' => null, + '_type' => Column::TYPE_SMALLINTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_smallint_default', + '_bindType' => Column::BIND_PARAM_INT, + ], + 31 => [ + '_columnName' => 'field_tinyint_default', + '_schemaName' => null, + '_type' => Column::TYPE_SMALLINTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_tinyint', + '_bindType' => Column::BIND_PARAM_INT, + ], + 32 => [ + '_columnName' => 'field_longtext', + '_schemaName' => null, + '_type' => Column::TYPE_TEXT, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_tinyint_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 33 => [ + '_columnName' => 'field_mediumtext', + '_schemaName' => null, + '_type' => Column::TYPE_TEXT, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_longtext', + '_bindType' => Column::BIND_PARAM_STR, + ], + 34 => [ + '_columnName' => 'field_tinytext', + '_schemaName' => null, + '_type' => Column::TYPE_TEXT, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_mediumtext', + '_bindType' => Column::BIND_PARAM_STR, + ], + 35 => [ + '_columnName' => 'field_text', + '_schemaName' => null, + '_type' => Column::TYPE_TEXT, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_tinytext', + '_bindType' => Column::BIND_PARAM_STR, + ], + 36 => [ + '_columnName' => 'field_varchar', + '_schemaName' => null, + '_type' => Column::TYPE_VARCHAR, + '_isNumeric' => false, + '_size' => 10, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_text', + '_bindType' => Column::BIND_PARAM_STR, + ], + 37 => [ + '_columnName' => 'field_varchar_default', + '_schemaName' => null, + '_type' => Column::TYPE_VARCHAR, + '_isNumeric' => false, + '_size' => 10, + '_scale' => 0, + '_default' => 'D', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_varchar', + '_bindType' => Column::BIND_PARAM_STR, + ], + ]; + } + + /** + * Return the array of expected columns + * + * @return array + * @since 2018-10-26 + */ + protected function getExpectedColumns(): array + { + $result = []; + $columns = $this->getColumns(); + foreach ($columns as $index => $array) { + $result[$index] = Column::__set_state($array); + } + + return $result; + } + + /** + * Return the array of expected indexes + * + * @return array + * @since 2018-10-26 + */ + protected function getExpectedIndexes(): array + { + return [ + 'dialect_table_pk' => Index::__set_state( + [ + '_name' => 'dialect_table_pk', + '_columns' => ['field_primary'], + '_type' => '', + ] + ), + 'dialect_table_unique' => Index::__set_state( + [ + '_name' => 'dialect_table_unique', + '_columns' => ['field_integer'], + '_type' => '', + ] + ), + 'dialect_table_index' => Index::__set_state( + [ + '_name' => 'dialect_table_index', + '_columns' => ['field_bigint'], + '_type' => '', + ] + ), + 'dialect_table_two_fields' => Index::__set_state( + [ + '_name' => 'dialect_table_two_fields', + '_columns' => ['field_char', 'field_char_default'], + '_type' => '', + ] + ), + ]; + } + + /** + * Return the array of expected references + * + * @return array + */ + protected function getExpectedReferences(): array + { + return [ + 'dialect_table_intermediate_primary__fk' => Reference::__set_state( + [ + '_referenceName' => 'dialect_table_intermediate_primary__fk', + '_referencedTable' => 'dialect_table', + '_columns' => ['field_primary_id'], + '_referencedColumns' => ['field_primary'], + '_referencedSchema' => $this->getDatabaseName(), + '_onUpdate' => 'NO ACTION', + '_onDelete' => 'NO ACTION' + ] + ), + 'dialect_table_intermediate_remote__fk' => Reference::__set_state( + [ + '_referenceName' => 'dialect_table_intermediate_remote__fk', + '_referencedTable' => 'dialect_table_remote', + '_columns' => ['field_remote_id'], + '_referencedColumns' => ['field_primary'], + '_referencedSchema' => $this->getDatabaseName(), + '_onUpdate' => 'NO ACTION', + '_onDelete' => 'NO ACTION' + ] + ), + ]; + } +} diff --git a/tests/unit/Db/Adapter/Pdo/Postgresql/TablesCest.php b/tests/unit/Db/Adapter/Pdo/Postgresql/TablesCest.php new file mode 100644 index 00000000000..499d079199c --- /dev/null +++ b/tests/unit/Db/Adapter/Pdo/Postgresql/TablesCest.php @@ -0,0 +1,48 @@ +<?php + +/** + * This file is part of the Phalcon. + * + * (c) Phalcon Team <team@phalcon.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Db\Adapter\Pdo\Postgresql; + +use Helper\Db\Adapter\Pdo\PostgresqlTrait; +use Phalcon\Test\Unit\Db\Adapter\Pdo\TablesBase; + +class TablesCest extends TablesBase +{ + use PostgresqlTrait; + + /** + * Returns the list of the tables in the database + * + * @return array + */ + protected function getListTables(): array + { + return [ + 'customers', + 'dialect_table', + 'dialect_table_intermediate', + 'dialect_table_remote', + 'foreign_key_child', + 'foreign_key_parent', + 'images', + 'parts', + 'personas', + 'personnes', + 'ph_select', + 'prueba', + 'robots', + 'robots_parts', + 'subscriptores', + 'table_with_string_field', + 'tipo_documento', + ]; + } +} diff --git a/tests/unit/Db/Adapter/Pdo/PostgresqlTest.php b/tests/unit/Db/Adapter/Pdo/PostgresqlTest.php index 1727edba65a..c80182fb065 100644 --- a/tests/unit/Db/Adapter/Pdo/PostgresqlTest.php +++ b/tests/unit/Db/Adapter/Pdo/PostgresqlTest.php @@ -55,40 +55,6 @@ public function _before() } } - /** - * Tests Postgresql::listTables - * - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @since 2016-09-29 - */ - public function testListTables() - { - $this->specify( - 'List all tables on a database does not return correct result', - function () { - $expected = [ - 'customers', - 'foreign_key_child', - 'foreign_key_parent', - 'images', - 'parts', - 'personas', - 'personnes', - 'ph_select', - 'prueba', - 'robots', - 'robots_parts', - 'subscriptores', - 'table_with_string_field', - 'tipo_documento', - ]; - - expect($this->connection->listTables())->equals($expected); - expect($this->connection->listTables(env('TEST_DB_POSTGRESQL_SCHEMA', 'public')))->equals($expected); - } - ); - } - /** * Tests Postgresql::listTables * diff --git a/tests/unit/Db/Adapter/Pdo/TablesBase.php b/tests/unit/Db/Adapter/Pdo/TablesBase.php new file mode 100644 index 00000000000..b5d2772bb86 --- /dev/null +++ b/tests/unit/Db/Adapter/Pdo/TablesBase.php @@ -0,0 +1,43 @@ +<?php + +/** + * This file is part of the Phalcon. + * + * (c) Phalcon Team <team@phalcon.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Db\Adapter\Pdo; + +class TablesBase +{ + /** + * Test the `listTables` + * + * @param \UnitTester $I + * @since 2016-08-03 + */ + public function checkListTables(\UnitTester $I) + { + $expected = $this->getListTables(); + $I->assertEquals($expected, $this->connection->listTables()); + $I->assertEquals($expected, $this->connection->listTables($this->getSchemaName())); + } + + /** + * Test the `tableExists` + * + * @param \UnitTester $I + * @since 2018-10-26 + */ + public function checkTableExists(\UnitTester $I) + { + $table = 'dialect_table'; + $I->assertTrue($this->connection->tableExists($table)); + $I->assertFalse($this->connection->tableExists('unknown-table')); + $I->assertTrue($this->connection->tableExists($table, $this->getSchemaName())); + $I->assertFalse($this->connection->tableExists('unknown-table', 'unknown-db')); + } +} diff --git a/tests/unit/Db/ColumnCest.php b/tests/unit/Db/ColumnCest.php new file mode 100644 index 00000000000..09d39f193c2 --- /dev/null +++ b/tests/unit/Db/ColumnCest.php @@ -0,0 +1,61 @@ +<?php + +/** + * This file is part of the Phalcon. + * + * (c) Phalcon Team <team@phalcon.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Db; + +use Phalcon\Db\Column; + +class ColumnCest +{ + /** + * Check the constants of the class + * + * @since 2018-10-26 + */ + public function checkClassConstants(\UnitTester $I) + { + $I->assertEquals(3, Column::BIND_PARAM_BLOB); + $I->assertEquals(5, Column::BIND_PARAM_BOOL); + $I->assertEquals(32, Column::BIND_PARAM_DECIMAL); + $I->assertEquals(1, Column::BIND_PARAM_INT); + $I->assertEquals(0, Column::BIND_PARAM_NULL); + $I->assertEquals(2, Column::BIND_PARAM_STR); + $I->assertEquals(1024, Column::BIND_SKIP); + + $I->assertEquals(14, Column::TYPE_BIGINTEGER); + $I->assertEquals(19, Column::TYPE_BIT); + $I->assertEquals(11, Column::TYPE_BLOB); + $I->assertEquals(8, Column::TYPE_BOOLEAN); + $I->assertEquals(5, Column::TYPE_CHAR); + $I->assertEquals(1, Column::TYPE_DATE); + $I->assertEquals(4, Column::TYPE_DATETIME); + $I->assertEquals(3, Column::TYPE_DECIMAL); + $I->assertEquals(9, Column::TYPE_DOUBLE); + $I->assertEquals(18, Column::TYPE_ENUM); + $I->assertEquals(7, Column::TYPE_FLOAT); + $I->assertEquals(0, Column::TYPE_INTEGER); + $I->assertEquals(15, Column::TYPE_JSON); + $I->assertEquals(16, Column::TYPE_JSONB); + $I->assertEquals(13, Column::TYPE_LONGBLOB); + $I->assertEquals(24, Column::TYPE_LONGTEXT); + $I->assertEquals(12, Column::TYPE_MEDIUMBLOB); + $I->assertEquals(21, Column::TYPE_MEDIUMINTEGER); + $I->assertEquals(23, Column::TYPE_MEDIUMTEXT); + $I->assertEquals(22, Column::TYPE_SMALLINTEGER); + $I->assertEquals(6, Column::TYPE_TEXT); + $I->assertEquals(20, Column::TYPE_TIME); + $I->assertEquals(17, Column::TYPE_TIMESTAMP); + $I->assertEquals(10, Column::TYPE_TINYBLOB); + $I->assertEquals(26, Column::TYPE_TINYINTEGER); + $I->assertEquals(25, Column::TYPE_TINYTEXT); + $I->assertEquals(2, Column::TYPE_VARCHAR); + } +} diff --git a/tests/unit/Db/ColumnTest.php b/tests/unit/Db/ColumnTest.php deleted file mode 100644 index 87ae06055ce..00000000000 --- a/tests/unit/Db/ColumnTest.php +++ /dev/null @@ -1,208 +0,0 @@ -<?php - -namespace Phalcon\Test\Unit\Db; - -use Phalcon\Db\Column; -use Helper\DialectTrait; -use Phalcon\Test\Module\UnitTest; - -/** - * \Phalcon\Test\Unit\Db\ColumnTest - * Tests the \Phalcon\Db\Column component - * - * @copyright (c) 2011-2017 Phalcon Team - * @link https://phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @package Phalcon\Test\Unit\Db - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ColumnTest extends UnitTest -{ - use DialectTrait; - - /** @test */ - public function shouldWorkPerfectlyWithCoulmnAsObject() - { - $columns = $this->getColumns(); - - //Varchar column - $column1 = $columns['column1']; - - $this->assertEquals($column1->getName(), 'column1'); - $this->assertEquals($column1->getType(), Column::TYPE_VARCHAR); - $this->assertEquals($column1->getSize(), 10); - $this->assertEquals($column1->getScale(), 0); - $this->assertFalse($column1->isUnsigned()); - $this->assertFalse($column1->isNotNull()); - - //Integer column - $column2 = $columns['column2']; - - $this->assertEquals($column2->getName(), 'column2'); - $this->assertEquals($column2->getType(), Column::TYPE_INTEGER); - $this->assertEquals($column2->getSize(), 18); - $this->assertEquals($column2->getScale(), 0); - $this->assertTrue($column2->isUnsigned()); - $this->assertFalse($column2->isNotNull()); - - //Decimal column - $column3 = $columns['column3']; - - $this->assertEquals($column3->getName(), 'column3'); - $this->assertEquals($column3->getType(), Column::TYPE_DECIMAL); - $this->assertEquals($column3->getSize(), 10); - $this->assertEquals($column3->getScale(), 2); - $this->assertFalse($column3->isUnsigned()); - $this->assertTrue($column3->isNotNull()); - - //Char column - $column4 = $columns['column4']; - - $this->assertEquals($column4->getName(), 'column4'); - $this->assertEquals($column4->getType(), Column::TYPE_CHAR); - $this->assertEquals($column4->getSize(), 100); - $this->assertEquals($column4->getScale(), 0); - $this->assertFalse($column4->isUnsigned()); - $this->assertTrue($column4->isNotNull()); - - //Date column - $column5 = $columns['column5']; - - $this->assertEquals($column5->getName(), 'column5'); - $this->assertEquals($column5->getType(), Column::TYPE_DATE); - $this->assertEquals($column5->getSize(), 0); - $this->assertEquals($column5->getScale(), 0); - $this->assertFalse($column5->isUnsigned()); - $this->assertTrue($column5->isNotNull()); - - //Datetime column - $column6 = $columns['column6']; - - $this->assertEquals($column6->getName(), 'column6'); - $this->assertEquals($column6->getType(), Column::TYPE_DATETIME); - $this->assertEquals($column6->getSize(), 0); - $this->assertEquals($column6->getScale(), 0); - $this->assertFalse($column6->isUnsigned()); - $this->assertTrue($column6->isNotNull()); - - //Text column - $column7 = $columns['column7']; - - $this->assertEquals($column7->getName(), 'column7'); - $this->assertEquals($column7->getType(), Column::TYPE_TEXT); - $this->assertEquals($column7->getSize(), 0); - $this->assertEquals($column7->getScale(), 0); - $this->assertFalse($column7->isUnsigned()); - $this->assertTrue($column7->isNotNull()); - - //Float column - $column8 = $columns['column8']; - - $this->assertEquals($column8->getName(), 'column8'); - $this->assertEquals($column8->getType(), Column::TYPE_FLOAT); - $this->assertEquals($column8->getSize(), 10); - $this->assertEquals($column8->getScale(), 2); - $this->assertFalse($column8->isUnsigned()); - $this->assertTrue($column8->isNotNull()); - - //Varchar column + default value - $column9 = $columns['column9']; - - $this->assertEquals($column9->getName(), 'column9'); - $this->assertEquals($column9->getType(), Column::TYPE_VARCHAR); - $this->assertEquals($column9->getSize(), 10); - $this->assertEquals($column9->getScale(), 0); - $this->assertFalse($column9->isUnsigned()); - $this->assertFalse($column9->isNotNull()); - $this->assertEquals($column9->getDefault(), 'column9'); - - //Integer column + default value - $column10 = $columns['column10']; - - $this->assertEquals($column10->getName(), 'column10'); - $this->assertEquals($column10->getType(), Column::TYPE_INTEGER); - $this->assertEquals($column10->getSize(), 18); - $this->assertEquals($column10->getScale(), 0); - $this->assertTrue($column10->isUnsigned()); - $this->assertFalse($column10->isNotNull()); - $this->assertEquals($column10->getDefault(), '10'); - - //Bigint column - $column11 = $columns['column11']; - - $this->assertEquals($column11->getName(), 'column11'); - $this->assertEquals($column11->getType(), 'BIGINT'); - $this->assertEquals($column11->getTypeReference(), Column::TYPE_INTEGER); - $this->assertEquals($column11->getSize(), 20); - $this->assertEquals($column11->getScale(), 0); - $this->assertTrue($column11->isUnsigned()); - $this->assertFalse($column11->isNotNull()); - - //Enum column - $column12 = $columns['column12']; - - $this->assertEquals($column12->getName(), 'column12'); - $this->assertEquals($column12->getType(), 'ENUM'); - $this->assertEquals($column12->getTypeReference(), -1); - $this->assertEquals($column12->getTypeValues(), ['A', 'B', 'C']); - $this->assertEquals($column12->getSize(), 0); - $this->assertEquals($column12->getScale(), 0); - $this->assertFalse($column12->isUnsigned()); - $this->assertTrue($column12->isNotNull()); - - //Timestamp column - $column13 = $columns['column13']; - $this->assertEquals($column13->getName(), 'column13'); - $this->assertEquals($column13->getType(), Column::TYPE_TIMESTAMP); - $this->assertTrue($column13->isNotNull()); - $this->assertEquals($column13->getDefault(), 'CURRENT_TIMESTAMP'); - - //Tinyblob column - $column14 = $columns['column14']; - $this->assertEquals($column14->getName(), 'column14'); - $this->assertEquals($column14->getType(), Column::TYPE_TINYBLOB); - $this->assertTrue($column14->isNotNull()); - - //Mediumblob column - $column15 = $columns['column15']; - $this->assertEquals($column15->getName(), 'column15'); - $this->assertEquals($column15->getType(), Column::TYPE_MEDIUMBLOB); - $this->assertTrue($column15->isNotNull()); - - //Blob column - $column16 = $columns['column16']; - $this->assertEquals($column16->getName(), 'column16'); - $this->assertEquals($column16->getType(), Column::TYPE_BLOB); - $this->assertTrue($column16->isNotNull()); - - //Longblob column - $column17 = $columns['column17']; - $this->assertEquals($column17->getName(), 'column17'); - $this->assertEquals($column17->getType(), Column::TYPE_LONGBLOB); - $this->assertTrue($column17->isNotNull()); - - //Boolean column - $column18 = $columns['column18']; - $this->assertEquals($column18->getName(), 'column18'); - $this->assertEquals($column18->getType(), Column::TYPE_BOOLEAN); - - //Double column - $column19 = $columns['column19']; - $this->assertEquals($column19->getName(), 'column19'); - $this->assertEquals($column19->getType(), Column::TYPE_DOUBLE); - $this->assertFalse($column19->isUnsigned()); - - //Unsigned double column - $column20 = $columns['column20']; - $this->assertEquals($column20->getName(), 'column20'); - $this->assertEquals($column20->getType(), Column::TYPE_DOUBLE); - $this->assertTrue($column20->isUnsigned()); - } -} diff --git a/tests/unit/VersionTest.php b/tests/unit/VersionTest.php index da816a01c53..e4eccf81c4d 100644 --- a/tests/unit/VersionTest.php +++ b/tests/unit/VersionTest.php @@ -2,18 +2,18 @@ namespace Phalcon\Test\Unit; -use Phalcon\Version; use Phalcon\Test\Module\UnitTest; +use Phalcon\Version; /** * \Phalcon\Test\Unit\VersionTest * Tests the \Phalcon\Version component * * @copyright (c) 2011-2017 Phalcon Team - * @link https://phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Nikolaos Dimopoulos <nikos@phalconphp.com> - * @package Phalcon\Test\Unit + * @link https://phalconphp.com + * @author Andres Gutierrez <andres@phalconphp.com> + * @author Nikolaos Dimopoulos <nikos@phalconphp.com> + * @package Phalcon\Test\Unit * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file LICENSE.txt @@ -85,9 +85,9 @@ function () { // Now the version itself $verChunks = explode('.', $chunks[0]); - $major = intval($verChunks[0]); - $med = substr("00" . intval($verChunks[1]), -2); - $min = substr("00" . intval($verChunks[2]), -2); + $major = intval($verChunks[0]); + $med = substr("00" . intval($verChunks[1]), -2); + $min = substr("00" . intval($verChunks[2]), -2); $expected = "{$major}{$med}{$min}{$special}{$specialNo}"; $actual = Version::getId(); @@ -97,6 +97,36 @@ function () { ); } + /** + * Translates a special version (ALPHA, BETA, RC) to a version number + * + * @author Nikolaos Dimopoulos <nikos@phalconphp.com> + * @since 2014-09-04 + * + * @param $input + * + * @return string + */ + private function specialToNumber($input) + { + switch ($input) { + case 'ALPHA': + $special = '1'; + break; + case 'BETA': + $special = '2'; + break; + case 'RC': + $special = '3'; + break; + default: + $special = '4'; + break; + } + + return $special; + } + /** * Tests the getId() translation to get() * @@ -123,6 +153,35 @@ function () { ); } + /** + * Translates a number to a special version string (ALPHA, BETA, RC) + * + * @author Nikolaos Dimopoulos <nikos@phalconphp.com> + * @since 2014-09-04 + * + * @param $number + * + * @return string + */ + private function numberToSpecial($number) + { + $special = ''; + + switch ($number) { + case '1': + $special = 'ALPHA'; + break; + case '2': + $special = 'BETA'; + break; + case '3': + $special = 'RC'; + break; + } + + return $special; + } + /** * Tests the constants of the class * @@ -197,7 +256,7 @@ function () { "getPart(VERSION_MEDIUM) does not return the correct result", function () { $id = Version::getId(); - $expected = intval($id[1].$id[2]); //The medium version is the second and third digits + $expected = intval($id[1] . $id[2]); //The medium version is the second and third digits $actual = Version::getPart(Version::VERSION_MEDIUM); expect($actual)->equals($expected); @@ -208,7 +267,7 @@ function () { "getPart(VERSION_MINOR) does not return the correct result", function () { $id = Version::getId(); - $expected = intval($id[3].$id[4]); //The minor version is the fourth and fifth digits + $expected = intval($id[3] . $id[4]); //The minor version is the fourth and fifth digits $actual = Version::getPart(Version::VERSION_MINOR); expect($actual)->equals($expected); @@ -248,63 +307,4 @@ function () { } ); } - - /** - * Translates a special version (ALPHA, BETA, RC) to a version number - * - * @author Nikolaos Dimopoulos <nikos@phalconphp.com> - * @since 2014-09-04 - * - * @param $input - * - * @return string - */ - private function specialToNumber($input) - { - switch ($input) { - case 'ALPHA': - $special = '1'; - break; - case 'BETA': - $special = '2'; - break; - case 'RC': - $special = '3'; - break; - default: - $special = '4'; - break; - } - - return $special; - } - - /** - * Translates a number to a special version string (ALPHA, BETA, RC) - * - * @author Nikolaos Dimopoulos <nikos@phalconphp.com> - * @since 2014-09-04 - * - * @param $number - * - * @return string - */ - private function numberToSpecial($number) - { - $special = ''; - - switch ($number) { - case '1': - $special = 'ALPHA'; - break; - case '2': - $special = 'BETA'; - break; - case '3': - $special = 'RC'; - break; - } - - return $special; - } } diff --git a/unit-tests/DbDescribeTest.php b/unit-tests/DbDescribeTest.php index bc5cc9a36a8..9d7fc7b0ed8 100644 --- a/unit-tests/DbDescribeTest.php +++ b/unit-tests/DbDescribeTest.php @@ -23,179 +23,6 @@ class DbDescribeTest extends TestCase { - - public function getExpectedColumnsMysql() - { - return [ - 0 => Phalcon\Db\Column::__set_state([ - '_columnName' => 'cedula', - '_schemaName' => NULL, - '_type' => 5, - '_isNumeric' => false, - '_size' => 15, - '_scale' => 0, - '_default' => NULL, - '_unsigned' => false, - '_notNull' => true, - '_autoIncrement' => false, - '_primary' => true, - '_first' => true, - '_after' => NULL, - '_bindType' => 2, - ]), - 1 => Phalcon\Db\Column::__set_state([ - '_columnName' => 'tipo_documento_id', - '_schemaName' => NULL, - '_type' => 0, - '_isNumeric' => true, - '_size' => 3, - '_scale' => 0, - '_default' => NULL, - '_unsigned' => true, - '_notNull' => true, - '_autoIncrement' => false, - '_first' => false, - '_after' => 'cedula', - '_bindType' => 1, - ]), - 2 => Phalcon\Db\Column::__set_state([ - '_columnName' => 'nombres', - '_schemaName' => NULL, - '_type' => 2, - '_isNumeric' => false, - '_size' => 100, - '_scale' => 0, - '_default' => '', - '_unsigned' => false, - '_notNull' => true, - '_autoIncrement' => false, - '_first' => false, - '_after' => 'tipo_documento_id', - '_bindType' => 2, - ]), - 3 => Phalcon\Db\Column::__set_state([ - '_columnName' => 'telefono', - '_schemaName' => NULL, - '_type' => 2, - '_isNumeric' => false, - '_size' => 20, - '_scale' => 0, - '_default' => NULL, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_first' => false, - '_after' => 'nombres', - '_bindType' => 2, - ]), - 4 => Phalcon\Db\Column::__set_state([ - '_columnName' => 'direccion', - '_schemaName' => NULL, - '_type' => 2, - '_isNumeric' => false, - '_size' => 100, - '_scale' => 0, - '_default' => NULL, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_first' => false, - '_after' => 'telefono', - '_bindType' => 2, - ]), - 5 => Phalcon\Db\Column::__set_state([ - '_columnName' => 'email', - '_schemaName' => NULL, - '_type' => 2, - '_isNumeric' => false, - '_size' => 50, - '_scale' => 0, - '_default' => NULL, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_first' => false, - '_after' => 'direccion', - '_bindType' => 2, - ]), - 6 => Phalcon\Db\Column::__set_state([ - '_columnName' => 'fecha_nacimiento', - '_schemaName' => NULL, - '_type' => 1, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => '1970-01-01', - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_first' => false, - '_after' => 'email', - '_bindType' => 2, - ]), - 7 => Phalcon\Db\Column::__set_state([ - '_columnName' => 'ciudad_id', - '_schemaName' => NULL, - '_type' => 0, - '_isNumeric' => true, - '_size' => 10, - '_scale' => 0, - '_default' => '0', - '_unsigned' => true, - '_notNull' => false, - '_autoIncrement' => false, - '_first' => false, - '_after' => 'fecha_nacimiento', - '_bindType' => 1, - ]), - 8 => Phalcon\Db\Column::__set_state([ - '_columnName' => 'creado_at', - '_schemaName' => NULL, - '_type' => 1, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => NULL, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_first' => false, - '_after' => 'ciudad_id', - '_bindType' => 2, - ]), - 9 => Phalcon\Db\Column::__set_state([ - '_columnName' => 'cupo', - '_schemaName' => NULL, - '_type' => 3, - '_isNumeric' => true, - '_size' => 16, - '_scale' => 2, - '_default' => NULL, - '_unsigned' => false, - '_notNull' => true, - '_autoIncrement' => false, - '_first' => false, - '_after' => 'creado_at', - '_bindType' => 32, - ]), - 10 => Phalcon\Db\Column::__set_state([ - '_columnName' => 'estado', - '_schemaName' => NULL, - '_type' => 18, - '_isNumeric' => false, - '_size' => "'A','I','X'", - '_scale' => 0, - '_default' => NULL, - '_unsigned' => false, - '_notNull' => true, - '_autoIncrement' => false, - '_first' => false, - '_after' => 'cupo', - '_bindType' => 2, - ]) - ]; - } - public function getExpectedColumnsPostgresql() { return [ @@ -352,9 +179,9 @@ public function getExpectedColumnsPostgresql() 10 => Phalcon\Db\Column::__set_state([ '_columnName' => 'estado', '_schemaName' => NULL, - '_type' => 5, + '_type' => 18, '_isNumeric' => false, - '_size' => 1, + '_size' => "'A','I','X'", '_scale' => 0, '_default' => NULL, '_unsigned' => false, @@ -540,119 +367,6 @@ public function getExpectedColumnsSqlite() ]; } - public function testDbMysql() - { - - require 'unit-tests/config.db.php'; - if (empty($configMysql)) { - $this->markTestSkipped("Skipped"); - return; - } - - $connection = new Phalcon\Db\Adapter\Pdo\Mysql($configMysql); - - //Table exist - $this->assertEquals($connection->tableExists('personas'), 1); - $this->assertEquals($connection->tableExists('noexist'), 0); - $this->assertEquals($connection->tableExists('personas', 'phalcon_test'), 1); - $this->assertEquals($connection->tableExists('personas', 'test'), 0); - - $expectedDescribe = $this->getExpectedColumnsMysql(); - $describe = $connection->describeColumns('personas'); - - $this->assertEquals($describe, $expectedDescribe); - - $describe = $connection->describeColumns('personas', 'phalcon_test'); - $this->assertEquals($describe, $expectedDescribe); - - //Table Options - $expectedOptions = [ - 'table_type' => 'BASE TABLE', - 'auto_increment' => NULL, - 'engine' => 'InnoDB', - 'table_collation' => 'utf8_unicode_ci', - ]; - - $options = $connection->tableOptions('personas', 'phalcon_test'); - $this->assertEquals($options, $expectedOptions); - - //Indexes - $expectedIndexes = [ - 'PRIMARY' => Phalcon\Db\Index::__set_state([ - '_name' => 'PRIMARY', - '_columns' => ['id'], - '_type' => 'PRIMARY', - ]), - 'robots_id' => Phalcon\Db\Index::__set_state([ - '_name' => 'robots_id', - '_columns' => ['robots_id'] - ]), - 'parts_id' => Phalcon\Db\Index::__set_state([ - '_name' => 'parts_id', - '_columns' => ['parts_id'] - ]) - ]; - - $describeIndexes = $connection->describeIndexes('robots_parts'); - $this->assertEquals($describeIndexes, $expectedIndexes); - - $describeIndexes = $connection->describeIndexes('robots_parts', 'phalcon_test'); - $this->assertEquals($describeIndexes, $expectedIndexes); - - //Indexes - $expectedIndexes = [ - 'PRIMARY' => Phalcon\Db\Index::__set_state([ - '_name' => 'PRIMARY', - '_columns' => ['id'], - '_type' => 'PRIMARY', - ]), - 'issue_11036_token_UNIQUE' => Phalcon\Db\Index::__set_state([ - '_name' => 'issue_11036_token_UNIQUE', - '_columns' => ['token'], - '_type' => 'UNIQUE' - ]) - ]; - - $describeIndexes = $connection->describeIndexes('issue_11036'); - $this->assertEquals($describeIndexes, $expectedIndexes); - - $describeIndexes = $connection->describeIndexes('issue_11036', 'phalcon_test'); - $this->assertEquals($describeIndexes, $expectedIndexes); - - //References - $expectedReferences = [ - 'robots_parts_ibfk_1' => Phalcon\Db\Reference::__set_state( - [ - '_referenceName' => 'robots_parts_ibfk_1', - '_referencedTable' => 'robots', - '_columns' => ['robots_id'], - '_referencedColumns' => ['id'], - '_referencedSchema' => 'phalcon_test', - '_onUpdate' => 'RESTRICT', - '_onDelete' => 'RESTRICT' - ] - ), - 'robots_parts_ibfk_2' => Phalcon\Db\Reference::__set_state( - [ - '_referenceName' => 'robots_parts_ibfk_2', - '_referencedTable' => 'parts', - '_columns' => ['parts_id'], - '_referencedColumns' => ['id'], - '_referencedSchema' => 'phalcon_test', - '_onUpdate' => 'RESTRICT', - '_onDelete' => 'RESTRICT' - ] - ), - ]; - - $describeReferences = $connection->describeReferences('robots_parts'); - $this->assertEquals($describeReferences, $expectedReferences); - - $describeReferences = $connection->describeReferences('robots_parts', 'phalcon_test'); - $this->assertEquals($describeReferences, $expectedReferences); - - } - public function testDbPostgresql() { require 'unit-tests/config.db.php'; From cc36024216ede529eefb222d910abfdfe68004dd Mon Sep 17 00:00:00 2001 From: Nikolaos Dimopoulos <nikos@niden.net> Date: Tue, 4 Dec 2018 21:19:56 -0500 Subject: [PATCH 04/48] T13578 setup phalcon environment (#13628) * Moved tests to temp folder; Added initial boxfile with services * Codeception bootstrap * Escaper tests * WIP - Modifying tests * [#13578] - Updated docblocks, started work for Config * [#13578] - Adjusted docblocks * [#13578] - Added copyright notice; Refactored Config tests * [#13578] - Refactored Debug/Dump tests * [#13578] - Work on Messages * [#13578] - Refactored Filter tests * [#13578] - Moved back _ci folder * [#13578] - Refactored Security tests * [#13578] - PHPCS fixes * [#13578] - Refactored validation messages * [#13578] - PHPCS fixes * [#13578] - Refactored Text tests * [#13578] - WIP Tag test refactoring * [#13578] - Refactored Tag * [#13578] - Corrected tests; Added iconv in the boxfile * [#13578] - Minor refactor in assets; Added Asset Filter tests * [#13578] - Added necessary extensions in boxfile. Prepared some tests for refactoring; Work on image/assets * [#13578] - PHPCS fixes * [#13578] - Test corrections * [#13578] - Assets refactoring; DiTrait to setup services; Refactoring on old tests * [#13578] - Added fixtures in the autoloader * [#13578] - Refactored Acl tests * [#13578] - Test corrections * [#13578] - Refactored Forms * [#13578] - WIP - Http\Response Request * [#13578] - Refactored Response tests * [#13578] - Corrected Http tests; Refactored fixtures * [#13578] - Enabled acpu extension; Refactored annotation tests * [#13578] - PHPCS fixes * [#13578] - Refactored Logger tests * [#13578] - Refactored Flash tests * [#13578] - Refactoring Loader tests * [#13578] - Added zephir in composer for dev - will be reworked later on * [#13578] - Moved old changelogs to the resources folder * [#13578] - Changes to the boxfile to clean up folders * [#13578] - Work on the dialects and fixtures; Refactored Version tests * [#13578] - Refactored Text tests * [#13578] - Added test stubs for every method and component of Phalcon; WIP to add relevant tests * [#13578] - WIP: Message tests * [#13578] - Added zephir dev as a requirement * [#13578] - Minor correction to the test * [#13578] - Refactored Messages\Message tests * [#13578] - Refactored Messages tests * [#13578] - Moved wip folder outside the test structure for the tests * [#13578] - Work on the Tag tests; Refactored helpers for Tag * [#13578] - PHPCS fixes and removed Exception test stubs * [#13578] - Refactoring Tag tests * [#13578] - Refactoring on Translation tests * [#13578] - More tests added * [#13578] - Added Image/factory; Removed Exception test stubs * Removed unused variables * WIP - Assets * Refactoring asset inline js * Moved a lot of tests from the wip/toCheck folders in the main folder. More work needed to refactor all of them * Acl Role/Resource tests; Corrected names for constructor tests * Added Registry tests * Work on the dialect tests * WIP - Db Dialect tests * [#13578] - Work on skipped tests and extensionLoaded in the unit tester * [#13578] - Renamed underscored files for PHPCS * [#13578] - Rename of files with underscore in their names * [#13578] - Renaming files; Work on Loader/Factory; Work on Cache * [#13578] - Reformatting tests (cosmetic); Work on factory tests and backend cache * [#13578] - Moved test stubs in unit * [#13578] - Skipped a test (will check later) * [#13578] - Initial structure for integration tests; Work on Assets * [#13578] - Validation/Validator tests * [#13578] - Renamed tests to give better output on console * [#13578] - Test renaming for clarity; Work on validator tests * [#13578] - Added descriptions for tests for better printout and information * [#13578] - Added descriptions for Version tests * [#13578] - Adding descriptions for tests * [#13578] - Minor refactor of the validation tests * [#13578] - Added comments and output for Text and Tag * [#13578] - Added CLI suite and stubs * [#13578] - Enabled unit helper in integration; Moved Db stubs in integration suite * [#13578] - Work on Version * [#13578] - Comments for all tests; Renamed tests according to namespaces; Added MemorySession for Codeception/Phalcon * [#13578] - Corrected method names * [#13578] - Corrected docblocks and messages * [#13578] - Added more tests for __toString * [#13578] - Added crypt trait to check for openssl * [#13578] - Restored file I deleted by mistake * [#13578] - Refactored Escaper tests * [#13578] - Copyright notices * [#13578] - Added db client libraries in the container * [#13578] - Work on db tests; Added more packages to the boxfile * [#13578] - Added more integration tests; moved fixtures around * [#13578] - Events tests * [#13578] - Added cache and di tests * [#13578] - Added more tests from the toCheck * [#13578] - Removed tests from deprecated projects * [#13578] - Removed not needed files; Added pgsql import for nanobox; Added forms test * [#13578] - More DB tests from "unit-tests" * [#13578] - phpcs fixes and optimizations * [#13578] - Added xcache in nanobox; Moved cache tests from unit-tests * [#13578] - More tests moved (db from unit-tests) * [#13578] - Moved dbdescribe tests from unit-tests * [#13578] - Refactored Micro and Router tests; Reorganized assets * [#13578] - Mvc Url and router tests * [#13578] - Changed "boolean" to "bool" to ensure consistency * [#13578] - Reorganized fixtures for views * [#13578] - Work on the tests; skipped some to check later * [#13578] - Added gitkeep to keep the cache folder there in the tests * [#13578] - Fixed imports for the dbs for travis * [#13578] - PHPCS fixes * [#13578] - DbProfiler unit-test tests * [#13578] - Work on models * [#13578] - Added some debugging code * [#13578] - Force disable travis cache for composer * [#13578] - Removed zephir from composer; Started using the phar file in travis and nanobox * [#13578] - Zephir version 11.6 in travis and boxfile * [#13578] - Test correction * [#13578] - Fixed test path * [#13578] - More corrections to the test * [#13578] - Added namespaces to models * [#13578] - Work on the CI and db import scripts * [#13578] - Corrections to the tests * [#13578] - Added skips for this test * [#13578] - Corrected models namespace * [#13578] - Corrected some interfaces and implementations * [#13578] - Removed php 7.0/7.1 * [#13578] - Beanstalk tests * [#13578] - Fixing interfaces * [#13578] - Removed APC, Memcache and XCache adapters (deprecated) * [#13578] - Updated changelog * [#13578] - Added di setup for view simple * [#13578] - Fixing array access * [#13578] - Simple view tests * [#13578] - Fixed compilation errors * [#13578] - Interface changes * [#13578] - Trying compiling without the return type * [#13578] - Interface corrections * [#13578] - Fixing more interfaces * [#13578] - Trying to use the NTS version * [#13578] - Removed the lines I added before * [#13578] - Fixed interfaces and compilation errors * [#13578] - Changes to travis to reinstall php * [#13578] - Triggering another build to install php again * [#13578] - More interface changes * [#13578] - Added dots.... * [#13578] - Interface corrections * [#13578] - Removed unecessary tests * [#13578] - More interface corrections * [#13578] - One more correction to the interfaces * [#13578] - More interface corrections * [#13578] - Restored the folder I deleted by mistake (duh) * [#13578] - Fixed interfaces for messages * [#13578] - Corrected interface error * [#13578] - Added missing class * [#13578] - More interface corrections * [#13578] - Corrected interface for the session test class * [#13578] - Work on the environment variables and codeception * [#13578] - Moved in the new suite the volt syntax tests; Adjustments to the travis for variables * [#13578] - Fixing the environment for Travis * [#13578] - Removed unecessary copy line * [#13578] - Converted more Router tests * [#13578] - Adjustment to Travis; Added more fixtures * [#13578] - Work in volt compiler tests; reorganized delete strategy * [#13578] - Skipping some tests to check travis * [#13578] - Work on namespaces and env variables (again) * [#13578] - Added boxfiles for 7.2/3, refacored the env and added env in integration tests * [#13578] - Removed unwanted files; Refactoring of constants and env variables * [#13578] - Added dispatcher tests * [#13578] - Minor corrections * [#13578] - Removing db from the bootstap * [#13578] - Setup for CLI tasks * [#13578] - Fixed environment file * [#13578] - Work in models * [#13578] - Db\Column tests; work on fixtures/models * [#13578] - Fixing travis sqlite db * [#13578] - Corrected setup db file * [#13578] - Merge from 4.0; Zephir 11.8; Adjusted tests * [#13578] - Added cache folder back * [#13578] - Corrected tests * [#13578] - Correcting interface * [#13578] - Changed the cache backend "get" lifetime to only accept numbers * [#13578] - Updated the changelog for the cache backend "get" lifetime * [#13578] - Moved Micro test stubs in integration; Added micro collection test * [#13578] - Corrected the interface * [#13578] - Aligned cache interfaces * [#13578] - Corrected controllers in micro collection * [#13578] - Reverting changes to cache "get" interfaces * [#13578] - Trying xenial for travis * [#13578] - More interface corrections * [#13578] - Added mysql service in travis * [#13578] - Mysql 5.7 in travis * [#13578] - Corrections to tests and php settings * [#13578] - Corrected Volt test; Disabled run for integration for now * [#13578] - Minor adjustment to the annotations tests * [#13578] - Change to the reader cest for annotations * [#13578] - More debug output * [#13578] - Changes to the environment variables * [#13578] - Marking some tests skipped to check them later * [#13578] - Moved Forms tests in integration; Refactored all the old "unit-test" tests * [#13578] - Moved pagination tests to the integration suite * [#13578] - Code quality cleanup * [#13578] - Moved Validation to integration suite; Added paginator tests * [#13578] - Refactored a lot of MVC tests * [#13578] - Refactored Session tests * [#13578] - Corrections to Tag tests; Reenabled CLI tasks * [#13578] - Final refactoring (I hope) and removing unused files * [#13578] - Updates to the readme and changelog * [#13578] - Corrections based on review * [#13578] - Updated nanobox setup files * [#13578] - Changes based on review * [#13578] - Added boxfile to the .gitignore * [#13578] - Added more instructions in the tests/README * [#13578] - Updated README; Adjusted tests after the merge * [#13578] - Corrected schema file for Postgresql * [#13578] - Minor correction; Zephir 0.11.8 * [#13578] - Triggering the build * [#13578] - Correction to the case statement * [#13578] - Corrected something in the file - cannot see what character was throwing the scanner off * [#13578] - Check env variables * [#13578] - Work on the db environment for travis * [#13578] - Refactored tests to use dataProviders * [#13578] - Added again the travis environment variables --- .gitignore | 2 + .travis.yml | 20 +- CHANGELOG-4.0.md | 10 + CHANGELOG.md | 14 +- codeception.yml | 5 +- composer.json | 6 +- phalcon/acl/adapter.zep | 9 +- phalcon/acl/adapter/memory.zep | 16 +- phalcon/acl/adapterinterface.zep | 12 +- phalcon/annotations/adapter/apc.zep | 78 - phalcon/annotations/adapter/apcu.zep | 2 +- phalcon/annotations/adapter/files.zep | 2 +- phalcon/annotations/adapter/memory.zep | 2 +- phalcon/annotations/adapter/xcache.zep | 61 - phalcon/annotations/annotation.zep | 2 +- phalcon/annotations/collection.zep | 6 +- phalcon/annotations/factory.zep | 2 +- phalcon/annotations/reflection.zep | 6 +- phalcon/application.zep | 2 +- phalcon/assets/collection.zep | 20 +- phalcon/assets/inline.zep | 17 +- phalcon/assets/inline/css.zep | 2 +- phalcon/assets/inline/js.zep | 2 +- phalcon/assets/manager.zep | 2 +- phalcon/assets/resource.zep | 22 +- phalcon/assets/resource/css.zep | 2 +- phalcon/assets/resource/js.zep | 2 +- phalcon/assets/resourceinterface.zep | 4 +- phalcon/cache/backend.zep | 33 +- phalcon/cache/backend/apc.zep | 296 - phalcon/cache/backend/apcu.zep | 20 +- phalcon/cache/backend/factory.zep | 2 +- phalcon/cache/backend/file.zep | 12 +- phalcon/cache/backend/libmemcached.zep | 16 +- phalcon/cache/backend/memcache.zep | 488 - phalcon/cache/backend/memory.zep | 10 +- phalcon/cache/backend/mongo.zep | 10 +- phalcon/cache/backend/redis.zep | 16 +- phalcon/cache/backend/xcache.zep | 382 - phalcon/cache/backendinterface.zep | 16 +- phalcon/cache/frontend/base64.zep | 2 +- phalcon/cache/frontend/data.zep | 2 +- phalcon/cache/frontend/factory.zep | 2 +- phalcon/cache/frontend/igbinary.zep | 2 +- phalcon/cache/frontend/json.zep | 2 +- phalcon/cache/frontend/msgpack.zep | 2 +- phalcon/cache/frontend/none.zep | 2 +- phalcon/cache/frontend/output.zep | 2 +- phalcon/cache/frontendinterface.zep | 2 +- phalcon/cache/multiple.zep | 8 +- phalcon/cli/console.zep | 2 +- phalcon/cli/dispatcher.zep | 2 +- phalcon/cli/router.zep | 8 +- phalcon/cli/router/route.zep | 4 +- phalcon/cli/routerinterface.zep | 2 +- phalcon/config.zep | 8 +- phalcon/config/factory.zep | 2 +- phalcon/crypt.zep | 14 +- phalcon/cryptinterface.zep | 2 +- phalcon/db/adapter.zep | 64 +- phalcon/db/adapter/pdo.zep | 20 +- phalcon/db/adapter/pdo/factory.zep | 2 +- phalcon/db/adapter/pdo/mysql.zep | 7 +- phalcon/db/adapter/pdo/postgresql.zep | 13 +- phalcon/db/adapter/pdo/sqlite.zep | 7 +- phalcon/db/adapterinterface.zep | 66 +- phalcon/db/column.zep | 26 +- phalcon/db/columninterface.zep | 20 +- phalcon/db/dialect.zep | 4 +- phalcon/db/dialect/mysql.zep | 8 +- phalcon/db/dialect/postgresql.zep | 6 +- phalcon/db/dialect/sqlite.zep | 4 +- phalcon/db/dialectinterface.zep | 6 +- phalcon/db/index.zep | 2 +- phalcon/db/reference.zep | 17 +- phalcon/db/result/pdo.zep | 4 +- phalcon/db/resultinterface.zep | 8 +- phalcon/debug.zep | 10 +- phalcon/debug/dump.zep | 4 +- phalcon/di.zep | 21 +- .../exception/serviceresolutionexception.zep | 20 +- phalcon/di/service.zep | 16 +- phalcon/di/serviceinterface.zep | 4 +- phalcon/diinterface.zep | 8 +- phalcon/dispatcher.zep | 8 +- phalcon/dispatcherinterface.zep | 4 +- phalcon/escaper.zep | 2 +- phalcon/events/event.zep | 10 +- phalcon/events/eventinterface.zep | 4 +- phalcon/events/manager.zep | 18 +- phalcon/filter.zep | 4 +- phalcon/flash.zep | 16 +- phalcon/flash/direct.zep | 2 +- phalcon/flash/session.zep | 8 +- phalcon/flashinterface.zep | 10 +- phalcon/forms/element.zep | 8 +- phalcon/forms/elementinterface.zep | 6 +- phalcon/forms/form.zep | 16 +- phalcon/forms/manager.zep | 2 +- phalcon/http/cookie.zep | 16 +- phalcon/http/cookieinterface.zep | 12 +- phalcon/http/request.zep | 73 +- phalcon/http/request/file.zep | 4 +- phalcon/http/request/fileinterface.zep | 2 +- phalcon/http/requestinterface.zep | 47 +- phalcon/http/response.zep | 48 +- phalcon/http/response/cookies.zep | 18 +- phalcon/http/response/cookiesinterface.zep | 16 +- phalcon/http/response/headers.zep | 8 +- phalcon/http/response/headersinterface.zep | 6 +- phalcon/http/responseinterface.zep | 5 +- phalcon/image/adapter.zep | 2 +- phalcon/image/adapter/gd.zep | 4 +- phalcon/image/adapter/imagick.zep | 10 +- phalcon/image/adapterinterface.zep | 2 +- phalcon/image/factory.zep | 2 +- phalcon/loader.zep | 12 +- phalcon/logger/adapter.zep | 6 +- phalcon/logger/adapter/blackhole.zep | 2 +- phalcon/logger/adapter/file.zep | 2 +- phalcon/logger/adapter/firephp.zep | 2 +- phalcon/logger/adapter/stream.zep | 2 +- phalcon/logger/adapter/syslog.zep | 5 +- phalcon/logger/adapterinterface.zep | 2 +- phalcon/logger/factory.zep | 2 +- phalcon/logger/formatter/firephp.zep | 8 +- phalcon/logger/formatterinterface.zep | 2 +- phalcon/messages/message.zep | 10 +- phalcon/messages/messageinterface.zep | 8 +- phalcon/messages/messages.zep | 18 +- phalcon/mvc/application.zep | 8 +- phalcon/mvc/collection.zep | 38 +- phalcon/mvc/collection/behavior.zep | 2 +- phalcon/mvc/collection/document.zep | 8 +- phalcon/mvc/collection/manager.zep | 8 +- phalcon/mvc/collection/managerinterface.zep | 6 +- phalcon/mvc/collectioninterface.zep | 16 +- phalcon/mvc/micro.zep | 22 +- phalcon/mvc/micro/collection.zep | 26 +- phalcon/mvc/micro/collectioninterface.zep | 6 +- phalcon/mvc/model.zep | 108 +- phalcon/mvc/model/behavior.zep | 2 +- phalcon/mvc/model/binder.zep | 4 +- phalcon/mvc/model/criteria.zep | 58 +- phalcon/mvc/model/criteriainterface.zep | 4 +- phalcon/mvc/model/manager.zep | 48 +- phalcon/mvc/model/managerinterface.zep | 29 +- phalcon/mvc/model/metadata.zep | 10 +- phalcon/mvc/model/metadata/apc.zep | 94 - phalcon/mvc/model/metadata/memcache.zep | 135 - phalcon/mvc/model/metadata/xcache.zep | 89 - phalcon/mvc/model/metadatainterface.zep | 6 +- phalcon/mvc/model/query.zep | 34 +- phalcon/mvc/model/query/builder.zep | 68 +- phalcon/mvc/model/query/builderinterface.zep | 2 + phalcon/mvc/model/query/status.zep | 4 +- phalcon/mvc/model/query/statusinterface.zep | 2 +- phalcon/mvc/model/queryinterface.zep | 4 +- phalcon/mvc/model/relation.zep | 6 +- phalcon/mvc/model/relationinterface.zep | 6 +- phalcon/mvc/model/resultinterface.zep | 4 +- phalcon/mvc/model/resultset.zep | 28 +- phalcon/mvc/model/resultset/complex.zep | 4 +- phalcon/mvc/model/resultset/simple.zep | 8 +- phalcon/mvc/model/resultsetinterface.zep | 10 +- phalcon/mvc/model/row.zep | 10 +- phalcon/mvc/model/transaction.zep | 16 +- phalcon/mvc/model/transaction/manager.zep | 12 +- .../model/transaction/managerinterface.zep | 6 +- phalcon/mvc/model/transactioninterface.zep | 14 +- phalcon/mvc/modelinterface.zep | 22 +- phalcon/mvc/router.zep | 12 +- phalcon/mvc/router/route.zep | 20 +- phalcon/mvc/routerinterface.zep | 6 +- phalcon/mvc/url.zep | 2 +- phalcon/mvc/urlinterface.zep | 2 +- phalcon/mvc/view.zep | 22 +- phalcon/mvc/view/engine/php.zep | 2 +- phalcon/mvc/view/engine/volt.zep | 4 +- phalcon/mvc/view/engine/volt/compiler.zep | 30 +- phalcon/mvc/view/engineinterface.zep | 4 +- phalcon/mvc/view/simple.zep | 2 +- phalcon/mvc/viewbaseinterface.zep | 8 +- phalcon/mvc/viewinterface.zep | 8 +- phalcon/paginator/factory.zep | 2 +- phalcon/queue/beanstalk.zep | 40 +- phalcon/queue/beanstalk/job.zep | 12 +- phalcon/registry.zep | 12 +- phalcon/security.zep | 8 +- phalcon/security/random.zep | 2 +- phalcon/session/adapter.zep | 22 +- phalcon/session/adapter/libmemcached.zep | 10 +- phalcon/session/adapter/memcache.zep | 143 - phalcon/session/adapter/redis.zep | 10 +- phalcon/session/adapterinterface.zep | 6 +- phalcon/session/bag.zep | 16 +- phalcon/session/baginterface.zep | 4 +- phalcon/session/factory.zep | 2 +- phalcon/tag.zep | 36 +- phalcon/text.zep | 4 +- phalcon/translate/adapter.zep | 8 +- phalcon/translate/adapter/csv.zep | 2 +- phalcon/translate/adapter/gettext.zep | 4 +- phalcon/translate/adapter/nativearray.zep | 2 +- phalcon/translate/adapterinterface.zep | 2 +- phalcon/translate/factory.zep | 2 +- phalcon/validation.zep | 14 +- phalcon/validation/validator.zep | 4 +- phalcon/validation/validator/alnum.zep | 2 +- phalcon/validation/validator/alpha.zep | 2 +- phalcon/validation/validator/between.zep | 2 +- phalcon/validation/validator/callback.zep | 4 +- phalcon/validation/validator/confirmation.zep | 4 +- phalcon/validation/validator/creditcard.zep | 4 +- phalcon/validation/validator/date.zep | 4 +- phalcon/validation/validator/digit.zep | 2 +- phalcon/validation/validator/email.zep | 2 +- phalcon/validation/validator/exclusionin.zep | 4 +- phalcon/validation/validator/file.zep | 4 +- phalcon/validation/validator/identical.zep | 2 +- phalcon/validation/validator/inclusionin.zep | 4 +- phalcon/validation/validator/numericality.zep | 2 +- phalcon/validation/validator/presenceof.zep | 2 +- phalcon/validation/validator/regex.zep | 2 +- phalcon/validation/validator/stringlength.zep | 2 +- phalcon/validation/validator/uniqueness.zep | 4 +- phalcon/validation/validator/url.zep | 2 +- phalcon/validation/validatorinterface.zep | 4 +- phpcs.xml | 2 + .../CHANGELOG-1.x.md | 0 .../CHANGELOG-2.0.md | 0 .../CHANGELOG-3.0.md | 0 .../CHANGELOG-3.1.md | 0 .../CHANGELOG-3.2.md | 0 .../CHANGELOG-3.3.md | 0 .../CHANGELOG-3.4.md | 0 tests/README.md | 246 +- tests/_bootstrap.php | 80 +- tests/_cache/.gitignore | 2 - tests/_ci/.env.default | 48 + tests/_ci/999-default.ini | 21 +- tests/_ci/after-failure.sh | 3 +- tests/_ci/after-success.sh | 9 +- tests/_ci/appveyor.psm1 | 4 +- tests/_ci/build.sh | 9 +- tests/_ci/environment | 39 +- tests/_ci/install-prereqs.sh | 3 +- tests/_ci/install-re2c.sh | 3 +- tests/_ci/nanobox/.env.example | 37 + tests/_ci/nanobox/boxfile.7.2.yml | 101 + tests/_ci/nanobox/boxfile.7.3.yml | 101 + tests/_ci/nanobox/setup-dbs-nanobox.sh | 34 + tests/_ci/pear-setup.sh | 3 +- tests/_ci/phalcon.ini | 11 +- tests/_ci/precompile-headers.sh | 3 +- tests/_ci/setup-dbs.sh | 11 +- tests/_ci/volt-tests.sh | 3 +- tests/_config/bootstrap.php | 137 +- tests/_config/global.php | 29 - tests/_data/{logs/dummy => .gitkeep} | 0 tests/_data/acl/TestResourceAware.php | 59 - tests/_data/acl/TestRoleAware.php | 59 - tests/_data/acl/TestRoleResourceAware.php | 74 - tests/_data/annotations/TestClass.php | 117 - tests/_data/annotations/TestClassNs.php | 35 - tests/_data/annotations/TestInvalid.php | 21 - tests/_data/assets/assets-multiple-01.js | 3 - tests/_data/assets/assets-multiple-02.js | 3 - tests/_data/assets/{ => assets}/1198.css | 0 .../assets/{ => assets}/cssmin-01-result.css | 0 tests/_data/assets/{ => assets}/cssmin-01.css | 0 tests/_data/assets/{ => assets}/jquery.js | 0 tests/_data/assets/{ => assets}/signup.js | 0 tests/_data/assets/config/callbacks.yml | 4 + .../config/config-with-constants.ini | 0 tests/_data/{ => assets}/config/config.ini | 2 +- tests/_data/{ => assets}/config/config.json | 2 +- tests/_data/assets/config/config.php | 40 + tests/_data/{ => assets}/config/config.yml | 0 tests/_data/{ => assets}/config/directive.ini | 0 tests/_data/assets/config/factory.ini | 57 + .../_data/assets/db/schemas/mysql_schema.sql | 12789 ++++++++++++++++ .../assets/db/schemas/postgresql_schema.sql | 7047 +++++++++ .../db/schemas/postgresql_schema_nanobox.sql | 7048 +++++++++ .../db/schemas/sqlite_schema.sql} | 0 .../schemas/sqlite_translations_schema.sql} | 0 tests/_data/assets/gs.js | 1 - tests/_data/assets/{ => images}/logo.png | Bin .../_data/assets/{ => images}/phalconphp.jpg | Bin .../{ => assets}/translation/csv/ru_RU.csv | 0 .../en_US.utf8/LC_MESSAGES/messages.mo | Bin .../en_US.utf8/LC_MESSAGES/messages.po | 0 tests/_data/collections/Bookshelf/Books.php | 17 - .../_data/collections/Bookshelf/Magazines.php | 16 - .../collections/Bookshelf/NotACollection.php | 7 - tests/_data/collections/People.php | 70 - tests/_data/collections/Robots.php | 31 - tests/_data/collections/Songs.php | 21 - tests/_data/collections/Store/Songs.php | 70 - tests/_data/collections/Subs.php | 43 - tests/_data/collections/Users.php | 33 - tests/_data/config/callbacks.yml | 4 - tests/_data/config/config.php | 40 - tests/_data/config/factory.ini | 57 - tests/_data/controllers/AboutController.php | 18 - tests/_data/controllers/ControllerBase.php | 9 - tests/_data/controllers/FailureController.php | 9 - tests/_data/controllers/MainController.php | 11 - .../NamespacedAnnotationController.php | 13 - .../_data/controllers/ProductsController.php | 26 - tests/_data/controllers/RobotsController.php | 29 - tests/_data/controllers/Test10Controller.php | 18 - tests/_data/controllers/Test11Controller.php | 26 - tests/_data/controllers/Test12Controller.php | 14 - tests/_data/controllers/Test1Controller.php | 5 - tests/_data/controllers/Test2Controller.php | 44 - tests/_data/controllers/Test3Controller.php | 28 - tests/_data/controllers/Test4Controller.php | 14 - tests/_data/controllers/Test5Controller.php | 9 - tests/_data/controllers/Test6Controller.php | 5 - tests/_data/controllers/Test7Controller.php | 5 - tests/_data/controllers/Test8Controller.php | 9 - tests/_data/controllers/Test9Controller.php | 18 - tests/_data/db/DateTime.php | 11 - tests/_data/debug/ClassProperties.php | 10 - tests/_data/di/SomeService.php | 19 - .../_data/fixtures/Acl/TestResourceAware.php | 53 + tests/_data/fixtures/Acl/TestRoleAware.php | 53 + .../fixtures/Acl/TestRoleResourceAware.php | 69 + .../_data/fixtures/Annotations/TestClass.php | 116 + .../fixtures/Annotations/TestClassNs.php | 31 + .../fixtures/Annotations/TestInvalid.php | 17 + tests/_data/fixtures/Assets/TrimFilter.php | 32 + .../_data/fixtures/Assets/UppercaseFilter.php | 32 + tests/_data/fixtures/Db/Profiler.php | 35 + tests/_data/fixtures/Db/ProfilerListener.php | 43 + .../fixtures/Db}/mysql/example1.sql | 0 .../fixtures/Db}/mysql/example2.sql | 0 .../fixtures/Db}/mysql/example3.sql | 0 .../fixtures/Db}/mysql/example4.sql | 0 .../fixtures/Db}/mysql/example5.sql | 0 .../fixtures/Db}/postgresql/example1.sql | 0 .../fixtures/Db}/postgresql/example2.sql | 0 .../fixtures/Db}/postgresql/example3.sql | 0 .../fixtures/Db}/postgresql/example4.sql | 0 .../fixtures/Db}/postgresql/example5.sql | 0 .../fixtures/Db}/postgresql/example6.sql | 0 .../fixtures/Db}/postgresql/example7.sql | 0 .../fixtures/Db}/postgresql/example8.sql | 0 .../fixtures/Db}/postgresql/example9.sql | 0 .../fixtures/Db}/sqlite/example1.sql | 0 .../fixtures/Db}/sqlite/example2.sql | 0 .../fixtures/Db}/sqlite/example3.sql | 0 .../fixtures/Db}/sqlite/example4.sql | 0 .../fixtures/Db}/sqlite/example5.sql | 0 .../fixtures/Db}/sqlite/example6.sql | 0 .../fixtures/Db}/sqlite/example7.sql | 0 .../fixtures/Db}/sqlite/example8.sql | 0 .../Di}/InjectableComponent.php | 2 +- .../{di => fixtures/Di}/SimpleComponent.php | 2 +- .../{di => fixtures/Di}/SomeComponent.php | 2 +- .../Di}/SomeServiceProvider.php | 0 tests/_data/{di => fixtures/Di}/services.php | 0 tests/_data/{di => fixtures/Di}/services.yml | 0 .../_data/fixtures/Dump/class_properties.txt | 7 + .../Events}/ComponentX.php | 2 +- .../Events}/ComponentY.php | 2 +- .../Forms/ContactFormPublicProperties.php | 18 + .../Forms/ContactFormSettersGetters.php | 39 + tests/_data/fixtures/Helpers/TagHelper.php | 190 + tests/_data/fixtures/Helpers/TagSetup.php | 242 + .../fixtures/Helpers/TranslateQueryHelper.php | 263 + .../fixtures}/Http/PhpStream.php | 39 +- .../Listener/CustomAuthorizationListener.php | 32 + .../_data/fixtures/Listener/FirstListener.php | 16 + .../NegotiateAuthorizationListener.php | 35 + .../fixtures/Listener/SecondListener.php | 16 + .../_data/fixtures/Listener/ThirdListener.php | 72 + .../fixtures/Loader/Example/Classes/One.php | 5 + .../fixtures/Loader/Example/Classes/Two.php | 5 + .../Loader/Example/Events/LoaderEvent.php | 5 + .../Example/Folders/Dialects/Sqlite.php | 5 + .../Loader/Example/Folders/Types/Integer.php | 5 + .../Example/Functions/FunctionsNoClass.php} | 0 .../Functions/FunctionsNoClassOne.php} | 0 .../Functions/FunctionsNoClassThree.php} | 0 .../Functions/FunctionsNoClassTwo.php} | 0 .../Example/Namespaces/Adapter/Blackhole.php | 7 + .../Example/Namespaces/Adapter/File.inc | 7 + .../Example/Namespaces/Adapter/Memcached.php | 7 + .../Example/Namespaces/Adapter/Mongo.php | 7 + .../Example/Namespaces/Adapter/Redis.php | 7 + .../Loader/Example/Namespaces}/Base/Any.php | 0 .../Example/Namespaces/Engines/Alcohol.inc | 11 + .../Example/Namespaces/Engines/Diesel.php | 7 + .../Example/Namespaces/Engines/Gasoline.php | 7 + .../Example/Namespaces/Example/Example.php | 7 + .../Example/Namespaces/Plugin/Another.php | 7 + tests/_data/fixtures/MemorySession.php | 452 + tests/_data/fixtures/Micro/MyMiddleware.php | 29 + .../_data/fixtures/Micro/MyMiddlewareStop.php | 30 + tests/_data/fixtures/Micro/RestHandler.php | 49 + .../Mvc}/View/AfterRenderListener.php | 13 +- .../fixtures/Mvc/View/Engine/Mustache.php | 67 + tests/_data/fixtures/Mvc/View/Engine/Twig.php | 64 + .../fixtures/Mvc/View/IteratorObject.php | 60 + tests/_data/fixtures/Traits/AssetsTrait.php | 43 + .../_data/fixtures/Traits/BeanstalkTrait.php | 64 + .../_data/fixtures/Traits/Cache/FileTrait.php | 35 + .../_data/fixtures/Traits/CollectionTrait.php | 56 + tests/_data/fixtures/Traits/ConfigTrait.php | 384 + tests/_data/fixtures/Traits/CookieTrait.php | 58 + tests/_data/fixtures/Traits/CryptTrait.php | 25 + tests/_data/fixtures/Traits/Db/MysqlTrait.php | 790 + .../fixtures/Traits/Db/PostgresqlTrait.php | 786 + tests/_data/fixtures/Traits/DiTrait.php | 321 + tests/_data/fixtures/Traits/DialectTrait.php | 307 + tests/_data/fixtures/Traits/FactoryTrait.php | 32 + tests/_data/fixtures/Traits/RedisTrait.php | 30 + .../fixtures/Traits}/RouterTrait.php | 19 +- .../_data/fixtures/Traits/TranslateTrait.php | 88 + .../_data/fixtures/Traits/ValidationTrait.php | 105 + tests/_data/fixtures/Traits/VersionTrait.php | 74 + tests/_data/fixtures/Traits/ViewTrait.php | 92 + .../fixtures/controllers/AboutController.php | 29 + .../controllers/ExceptionController.php | 0 .../fixtures/controllers/MainController.php | 22 + .../Micro/Collections/PersonasController.php | 32 + .../Collections/PersonasLazyController.php | 32 + .../fixtures/controllers/MicroController.php | 57 + .../NamespacedAnnotationController.php | 22 + .../controllers/ProductsController.php | 37 + .../fixtures/controllers/RobotsController.php | 40 + .../controllers/ViewRequestController.php | 27 + .../fixtures}/metadata/robots.php | 0 tests/_data/fixtures/models/Abonnes.php | 103 + .../fixtures/models/AlbumORama/Albums.php | 38 + .../fixtures/models/AlbumORama/Artists.php | 29 + .../fixtures/models/AlbumORama/Songs.php | 29 + .../models/Annotations/Robot.php | 11 +- .../_data/fixtures/models/BodyParts/Body.php | 52 + .../_data/fixtures/models/BodyParts/Head.php | 24 + .../_data/fixtures/models/Boutique/Robots.php | 71 + .../fixtures/models/Boutique/Robotters.php | 44 + .../_data/fixtures/models/Cacheable/Model.php | 53 + .../_data/fixtures/models/Cacheable/Parts.php | 29 + .../fixtures/models/Cacheable/Robots.php | 29 + .../fixtures/models/Cacheable/RobotsParts.php | 38 + tests/_data/fixtures/models/Childs.php | 29 + tests/_data/fixtures/models/Customers.php | 43 + tests/_data/fixtures/models/Deles.php | 41 + .../fixtures/models/Dynamic/Personas.php | 37 + .../fixtures/models/Dynamic/Personers.php | 64 + .../_data/fixtures/models/Dynamic/Robots.php | 39 + tests/_data/fixtures/models/GossipRobots.php | 99 + tests/_data/fixtures/models/I1534.php | 18 + tests/_data/fixtures/models/Language.php | 40 + tests/_data/fixtures/models/LanguageI18n.php | 47 + .../fixtures/models/ModelWithStringField.php | 46 + .../fixtures/models/News/Subscribers.php | 41 + .../_data/fixtures/models/PackageDetails.php | 25 + tests/_data/fixtures/models/Packages.php | 40 + tests/_data/fixtures/models/Parts.php | 28 + tests/_data/fixtures/models/Parts2.php | 29 + tests/_data/fixtures/models/People.php | 22 + tests/_data/fixtures/models/Personas.php | 19 + tests/_data/fixtures/models/Personers.php | 41 + tests/_data/fixtures/models/Personnes.php | 19 + tests/_data/fixtures/models/Pessoas.php | 41 + tests/_data/fixtures/models/Products.php | 19 + tests/_data/fixtures/models/Prueba.php | 19 + .../_data/fixtures/models/Relations/Deles.php | 40 + .../fixtures/models/Relations/M2MParts.php | 22 + .../fixtures/models/Relations/M2MRobots.php | 27 + .../models/Relations/M2MRobotsParts.php | 22 + .../models/Relations/RelationsParts.php | 31 + .../models/Relations/RelationsRobots.php | 37 + .../models/Relations/RelationsRobotsParts.php | 34 + .../fixtures/models/Relations/Robots.php | 18 + .../fixtures/models/Relations/RobotsParts.php | 41 + .../fixtures/models/Relations/Robotters.php | 42 + .../models/Relations/RobottersDeles.php | 46 + .../fixtures/models/Relations/Some/Deles.php | 40 + .../fixtures/models/Relations/Some/Parts.php | 33 + .../models/Relations/Some/Products.php | 61 + .../fixtures/models/Relations/Some/Robots.php | 35 + .../models/Relations/Some/RobotsParts.php | 34 + .../models/Relations/Some/Robotters.php | 48 + .../models/Relations/Some/RobottersDeles.php | 46 + tests/_data/fixtures/models/Robos.php | 30 + tests/_data/fixtures/models/Robots.php | 29 + tests/_data/fixtures/models/Robots2.php | 42 + tests/_data/fixtures/models/RobotsParts.php | 31 + tests/_data/fixtures/models/Robotters.php | 44 + .../_data/fixtures/models/RobottersDeles.php | 46 + tests/_data/fixtures/models/Robotto.php | 62 + tests/_data/fixtures/models/Select.php | 56 + .../_data/fixtures/models/Snapshot/Parts.php | 23 + .../fixtures/models/Snapshot/Personas.php | 38 + .../fixtures/models/Snapshot/Requests.php | 39 + .../_data/fixtures/models/Snapshot/Robots.php | 23 + .../fixtures/models/Snapshot/RobotsParts.php | 24 + .../fixtures/models/Snapshot/Robotters.php | 41 + .../fixtures/models/Snapshot/Subscribers.php | 47 + tests/_data/fixtures/models/Some/Deles.php | 41 + tests/_data/fixtures/models/Some/Parts.php | 33 + tests/_data/fixtures/models/Some/Products.php | 63 + tests/_data/fixtures/models/Some/Robots.php | 40 + .../fixtures/models/Some/RobotsParts.php | 35 + .../_data/fixtures/models/Some/Robotters.php | 48 + .../fixtures/models/Some/RobottersDeles.php | 46 + .../fixtures/models/Statistics/AgeStats.php | 28 + .../fixtures/models/Statistics/CityStats.php | 22 + .../models/Statistics/CountryStats.php | 27 + .../models/Statistics/GenderStats.php | 27 + tests/_data/fixtures/models/Stock.php | 19 + tests/_data/fixtures/models/Store/Parts.php | 26 + tests/_data/fixtures/models/Store/Robots.php | 27 + .../fixtures/models/Store/RobotsParts.php | 29 + tests/_data/fixtures/models/Subscribers.php | 24 + tests/_data/fixtures/models/Subscriptores.php | 75 + tests/_data/fixtures/models/Users.php | 20 + .../fixtures/models/Validation/Robots.php | 57 + .../models/Validation/Subscriptores.php | 70 + .../_data/fixtures/modules/backend/Module.php | 42 + .../backend/controllers/LoginController.php | 0 .../modules/backend/views/index.phtml | 0 .../fixtures/modules/frontend/Module.php | 42 + .../frontend/controllers/IndexController.php | 0 .../modules/frontend/views/index/index.phtml | 0 tests/_data/fixtures/resultsets/Stats.php | 18 + tests/_data/{ => fixtures}/tasks/EchoTask.php | 0 .../{ => fixtures}/tasks/Issue787Task.php | 4 +- tests/_data/{ => fixtures}/tasks/MainTask.php | 0 .../_data/{ => fixtures}/tasks/ParamsTask.php | 0 .../views/activerender}/index.phtml | 0 .../fixtures/views/builtinfunction/index.volt | 16 + .../views/compiler}/.gitignore | 0 .../views/compiler/children.extends.volt | 7 + .../fixtures/views/compiler/children.volt | 7 + .../fixtures/views/compiler/children2.volt | 9 + .../views/compiler}/import.volt | 0 .../views/compiler}/import2.volt | 0 .../views/compiler}/index.volt | 0 .../views/compiler}/other.volt | 0 .../views/compiler}/parent.volt | 0 .../views/compiler}/partial.volt | 0 .../views/currentrender}/another.phtml | 0 .../views/currentrender}/coolVar.phtml | 0 .../views/currentrender}/other.phtml | 0 .../views/currentrender}/query.phtml | 0 .../views/currentrender}/yup.phtml | 0 tests/_data/fixtures/views/extends/.gitignore | 2 + .../views/extends/children.extends.volt | 7 + .../fixtures/views/extends/children.volt | 7 + .../fixtures/views/extends/children2.volt | 9 + .../_data/fixtures/views/extends}/import.volt | 0 .../fixtures/views/extends}/import2.volt | 0 .../_data/fixtures/views/extends}/index.volt | 0 .../_data/fixtures/views/extends}/other.volt | 0 .../_data/fixtures/views/extends}/parent.volt | 0 .../fixtures/views/extends}/partial.volt | 0 .../{ => fixtures}/views/filters/.gitignore | 0 .../{ => fixtures}/views/filters/default.volt | 0 .../views/filters/default_json_encode.volt | 0 .../views/layouts/compiler.volt} | 0 .../views/layouts/currentrender.phtml} | 0 .../fixtures/views/layouts/mustache.mhtml | 3 + .../views/layouts/twig.twig} | 0 .../views/layouts/twigphp.phtml} | 0 .../views/macro/conditionaldate.volt | 0 .../views/macro/error_messages.volt | 0 .../{ => fixtures}/views/macro/form_row.volt | 0 .../{ => fixtures}/views/macro/hello.volt | 0 .../{ => fixtures}/views/macro/list.volt | 0 .../{ => fixtures}/views/macro/my_input.volt | 0 .../views/macro/related_links.volt | 0 .../{ => fixtures}/views/macro/strtotime.volt | 0 .../views/mustache}/index.mhtml | 0 .../{ => fixtures}/views/partials/footer.volt | 0 .../fixtures}/views/partials/footer.volt.php | 0 .../{ => fixtures}/views/partials/header.volt | 0 .../fixtures}/views/partials/header.volt.php | 0 .../views/partials/header2.volt | 0 .../fixtures}/views/partials/header2.volt.php | 0 .../views/partials/header3.volt | 0 .../fixtures}/views/partials/header3.volt.php | 0 .../views/phpmustache}/index.mhtml | 0 .../views/phpmustache}/info.phtml | 0 .../views/simple}/index.phtml | 0 .../views/simple}/params.phtml | 0 .../views/switch-case}/.gitignore | 0 .../views/switch-case/simple-usage.volt | 0 .../{ => fixtures}/views/templates/a.volt | 0 tests/_data/fixtures/views/templates/b.volt | 1 + tests/_data/fixtures/views/templates/c.volt | 1 + .../test7 => fixtures/views/twig}/index.twig | 0 .../views/twigphp}/index.twig | 0 .../views/twigphp}/info.phtml | 0 .../listener/CustomAuthorizationListener.php | 39 - tests/_data/listener/FirstListener.php | 23 - .../NegotiateAuthorizationListener.php | 42 - tests/_data/listener/SecondListener.php | 23 - tests/_data/listener/ThirdListener.php | 73 - tests/_data/micro/MyMiddleware.php | 16 - tests/_data/micro/MyMiddlewareStop.php | 17 - tests/_data/micro/RestHandler.php | 38 - tests/_data/models/AlbumORama/Albums.php | 40 - tests/_data/models/AlbumORama/Artists.php | 36 - tests/_data/models/BodyParts/Body.php | 59 - tests/_data/models/BodyParts/Head.php | 30 - tests/_data/models/Boutique/Robots.php | 64 - tests/_data/models/Boutique/Robotters.php | 40 - tests/_data/models/Customers.php | 49 - tests/_data/models/Deles.php | 40 - tests/_data/models/Dynamic/Personas.php | 39 - tests/_data/models/Dynamic/Personers.php | 66 - tests/_data/models/Dynamic/Robots.php | 45 - tests/_data/models/Language.php | 34 - tests/_data/models/LanguageI18n.php | 40 - tests/_data/models/ModelWithStringField.php | 54 - tests/_data/models/News/Subscribers.php | 51 - tests/_data/models/PackageDetails.php | 32 - tests/_data/models/Packages.php | 46 - tests/_data/models/Parts.php | 39 - tests/_data/models/People.php | 41 - tests/_data/models/Personas.php | 28 - tests/_data/models/Personers.php | 59 - tests/_data/models/Products.php | 7 - .../_data/models/Relations/RelationsParts.php | 28 - .../models/Relations/RelationsRobots.php | 37 - .../models/Relations/RelationsRobotsParts.php | 35 - tests/_data/models/Relations/Robots.php | 9 - tests/_data/models/Relations/RobotsParts.php | 32 - tests/_data/models/Robos.php | 27 - tests/_data/models/Robots.php | 63 - tests/_data/models/RobotsParts.php | 33 - tests/_data/models/Robotters.php | 50 - tests/_data/models/RobottersDeles.php | 50 - tests/_data/models/Robotto.php | 54 - tests/_data/models/Select.php | 63 - tests/_data/models/Snapshot/Parts.php | 36 - tests/_data/models/Snapshot/Personas.php | 40 - tests/_data/models/Snapshot/Requests.php | 41 - tests/_data/models/Snapshot/Robots.php | 42 - tests/_data/models/Snapshot/RobotsParts.php | 36 - tests/_data/models/Snapshot/Robotters.php | 61 - tests/_data/models/Snapshot/Subscribers.php | 53 - tests/_data/models/Some/Deles.php | 33 - tests/_data/models/Some/Parts.php | 20 - tests/_data/models/Some/Products.php | 51 - tests/_data/models/Some/Robots.php | 23 - tests/_data/models/Some/RobotsParts.php | 23 - tests/_data/models/Some/Robotters.php | 41 - tests/_data/models/Some/RobottersDeles.php | 38 - tests/_data/models/Statistics/AgeStats.php | 33 - tests/_data/models/Statistics/CityStats.php | 28 - .../_data/models/Statistics/CountryStats.php | 33 - tests/_data/models/Statistics/GenderStats.php | 33 - tests/_data/models/Stock.php | 27 - tests/_data/models/Users.php | 27 - tests/_data/models/Validation/Robots.php | 63 - .../_data/models/Validation/Subscriptores.php | 77 - tests/_data/modules/backend/Module.php | 41 - tests/_data/modules/frontend/Module.php | 41 - .../objectsets/Mvc/View/IteratorObject.php | 65 - tests/_data/resultsets/Stats.php | 22 - tests/_data/schemas/phalcon-schema-mysql.sql | 433 - .../schemas/phalcon-schema-postgresql.sql | 11082 ------------- .../vendor/Example/Adapter/LeAnotherSome.inc | 7 - .../vendor/Example/Adapter/LeCoolSome.php | 7 - tests/_data/vendor/Example/Adapter/LeSome.php | 7 - tests/_data/vendor/Example/Adapter/Some.php | 7 - .../_data/vendor/Example/Adapter/SomeCool.php | 7 - .../_data/vendor/Example/Adapter2/Another.php | 7 - .../vendor/Example/Dialects/LeDialect.php | 5 - .../_data/vendor/Example/Engines/LeEngine.php | 7 - .../vendor/Example/Engines/LeEngine2.php | 7 - .../vendor/Example/Engines/LeOtherEngine.inc | 11 - .../_data/vendor/Example/Example/Example.php | 7 - tests/_data/vendor/Example/Other/VousTest.php | 5 - tests/_data/vendor/Example/Test/LeTest.php | 5 - tests/_data/vendor/Example/Test/MoiTest.php | 5 - tests/_data/vendor/Example/Types/SomeType.php | 5 - tests/_data/views/exception/index.phtml | 3 - tests/_data/views/exception/second.phtml | 3 - tests/_data/views/html5.phtml | 1 - tests/_data/views/index.phtml | 1 - tests/_data/views/layouts/after.phtml | 1 - tests/_data/views/layouts/before.phtml | 1 - tests/_data/views/layouts/test.phtml | 1 - tests/_data/views/layouts/test13.phtml | 1 - tests/_data/views/layouts/test4.mhtml | 3 - tests/_data/views/layouts/test6.phtml | 1 - tests/_data/views/partials/.gitignore | 1 - tests/_data/views/partials/_partial1.phtml | 1 - tests/_data/views/partials/_partial2.phtml | 1 - tests/_data/views/partials/_partial3.phtml | 1 - tests/_data/views/partials/header.mhtml | 1 - tests/_data/views/partials/header.twig | 1 - tests/_data/views/switch-case/.gitignore | 1 - tests/_data/views/templates/b.volt | 1 - tests/_data/views/templates/c.volt | 1 - .../_data/views/test10/children.extends.volt | 7 - tests/_data/views/test10/children.volt | 7 - tests/_data/views/test10/children2.volt | 9 - tests/_data/views/test11/.gitignore | 1 - tests/_data/views/test11/index.volt | 16 - tests/_data/views/test13/index.phtml | 1 - tests/_data/views/test14/loop1.volt | 6 - tests/_data/views/test16/index.phtml | 1 - tests/_data/views/test5/index.phtml | 3 - tests/_data/views/test5/missing.phtml | 3 - tests/_data/views/test5/subpartial.phtml | 3 - tests/_data/views/test8/index.phtml | 1 - tests/_data/views/test8/leother.phtml | 1 - tests/_data/views/test8/other.phtml | 1 - tests/_data/views/test9/index.phtml | 4 - tests/_fixtures/dump/class_properties.txt | 7 - .../metadata/test_describereference.php | 29 - .../criteria_test/limit_offset_provider.php | 28 - .../query_test/data_to_delete_parsing.php | 141 - .../query_test/data_to_insert_parsing.php | 283 - .../query_test/data_to_update_parsing.php | 519 - .../data_to_regex_router_host_port.php | 56 - .../mvc/router_test/data_to_router.php | 113 - .../router_test/data_to_router_host_name.php | 46 - .../mvc/router_test/data_to_router_http.php | 100 - .../mvc/router_test/data_to_router_param.php | 32 - .../data_to_router_with_hostname.php | 55 - .../router_test/matching_with_converted.php | 36 - .../matching_with_extra_slashes.php | 41 - .../router_test/matching_with_got_router.php | 44 - .../router_test/matching_with_host_name.php | 48 - .../matching_with_hostname_regex.php | 26 - .../matching_with_path_provider.php | 79 - .../matching_with_regex_router_host_port.php | 76 - .../mvc/router_test/matching_with_router.php | 156 - .../router_test/matching_with_router_http.php | 109 - .../_fixtures/mvc/url_test/data_to_set_di.php | 64 - .../mvc/url_test/url_to_set_base_uri.php | 79 - .../mvc/url_test/url_to_set_server.php | 36 - .../mvc/url_test/url_to_set_without_di.php | 70 - .../url_to_set_without_di_two_param.php | 28 - tests/_fixtures/mvc/view/engine/mustache.php | 25 - tests/_fixtures/mvc/view/engine/twig.php | 25 - .../volt_compile_file_extends_multiple.php | 31 - .../volt_compiler_extends_block.php | 27 - .../volt_compiler_file.php | 35 - .../view_built_in_function.php | 38 - .../view_register_engines.php | 29 - .../view_set_php_mustache.php | 39 - .../view_set_php_mustache_partial.php | 39 - .../view_engines_test/view_set_php_twig.php | 39 - .../view_set_php_twig_partial.php | 39 - tests/_fixtures/query/select_parsing.php | 6915 --------- .../volt_compile_string.php | 23 - .../volt_extends_error.php | 35 - .../volt_syntax_error.php | 71 - .../volt/compilerTest/test_volt_parser.php | 154 - .../volt/compilerTest/volt_closure_filter.php | 21 - .../volt_compile_string_autoescape.php | 32 - .../volt_compile_string_equals.php | 214 - .../volt/compilerTest/volt_single_filter.php | 21 - .../volt_users_function_with_closure.php | 21 - .../volt_users_single_string_function.php | 22 - tests/_output/.gitignore | 4 +- tests/_output/tests/annotations/.gitignore | 2 - tests/_output/tests/assets/.gitignore | 2 - tests/_output/tests/cache/.gitignore | 2 - tests/_output/tests/image/gd/.gitignore | 2 - tests/_output/tests/image/imagick/.gitignore | 2 - tests/_output/tests/logs/.gitignore | 2 - tests/_output/tests/session/.gitignore | 2 - tests/_output/tests/stream/.gitignore | 2 - tests/_support/AcceptanceTester.php | 26 + tests/_support/CliTester.php | 26 + tests/_support/FunctionalTester.php | 26 + tests/_support/Helper/Acceptance.php | 11 + tests/_support/Helper/Cli.php | 11 + tests/_support/Helper/CollectionTrait.php | 47 - .../Helper/ConnectionCheckerTrait.php | 31 - tests/_support/Helper/CookieAwareTrait.php | 52 - .../Helper/Db/Adapter/Pdo/MysqlTrait.php | 58 - .../Helper/Db/Adapter/Pdo/PostgresqlTrait.php | 58 - .../Helper/Db/Connection/AbstractFactory.php | 18 - .../Helper/Db/Connection/MysqlFactory.php | 30 - .../Db/Connection/PostgresqlFactory.php | 30 - .../Helper/Db/Connection/SqliteFactory.php | 23 - .../Connection/SqliteTranslationsFactory.php | 25 - tests/_support/Helper/Dialect/MysqlTrait.php | 698 - .../Helper/Dialect/PostgresqlTrait.php | 781 - tests/_support/Helper/Dialect/SqliteTrait.php | 507 - tests/_support/Helper/DialectTrait.php | 197 - tests/_support/Helper/Functional.php | 11 + tests/_support/Helper/Integration.php | 14 +- tests/_support/Helper/ModelTrait.php | 80 - tests/_support/Helper/PhalconCacheFile.php | 317 + tests/_support/Helper/PhalconLibmemcached.php | 234 + .../_support/Helper/ResultsetHelperTrait.php | 121 - tests/_support/Helper/Unit.php | 152 +- tests/_support/Helper/Unit5x.php | 16 - tests/_support/Helper/ViewTrait.php | 100 - tests/_support/IntegrationTester.php | 22 +- tests/_support/Module/Cache/Backend/File.php | 317 - tests/_support/Module/Libmemcached.php | 232 - tests/_support/Module/UnitTest.php | 66 - .../_support/Module/View/Engine/Mustache.php | 77 - tests/_support/Module/View/Engine/Twig.php | 74 - tests/_support/Unit5xTester.php | 26 - tests/_support/UnitTester.php | 10 +- tests/_support/_generated/.gitignore | 2 +- tests/acceptance.suite.yml.bak | 12 + tests/cli.suite.yml | 7 + tests/cli/Cli/Console/ConstructCest.php | 31 + tests/cli/Cli/Console/GetDICest.php | 43 + .../cli/Cli/Console/GetDefaultModuleCest.php | 31 + .../cli/Cli/Console/GetEventsManagerCest.php | 31 + tests/cli/Cli/Console/GetModuleCest.php | 31 + tests/cli/Cli/Console/GetModulesCest.php | 31 + tests/cli/Cli/Console/HandleCest.php | 117 + tests/cli/Cli/Console/RegisterModulesCest.php | 31 + tests/cli/Cli/Console/SetArgumentCest.php | 31 + tests/cli/Cli/Console/SetDICest.php | 42 + .../cli/Cli/Console/SetDefaultModuleCest.php | 31 + .../cli/Cli/Console/SetEventsManagerCest.php | 31 + tests/cli/Cli/Console/UnderscoreGetCest.php | 31 + tests/cli/Cli/ConsoleCest.php | 454 + .../Cli/Dispatcher/CallActionMethodCest.php | 31 + tests/cli/Cli/Dispatcher/DispatchCest.php | 31 + tests/cli/Cli/Dispatcher/ForwardCest.php | 31 + .../cli/Cli/Dispatcher/GetActionNameCest.php | 31 + .../Cli/Dispatcher/GetActionSuffixCest.php | 31 + .../Cli/Dispatcher/GetActiveMethodCest.php | 31 + .../cli/Cli/Dispatcher/GetActiveTaskCest.php | 31 + .../cli/Cli/Dispatcher/GetBoundModelsCest.php | 31 + tests/cli/Cli/Dispatcher/GetDICest.php | 31 + .../Dispatcher/GetDefaultNamespaceCest.php | 31 + .../Cli/Dispatcher/GetEventsManagerCest.php | 31 + .../Cli/Dispatcher/GetHandlerClassCest.php | 31 + .../Cli/Dispatcher/GetHandlerSuffixCest.php | 31 + tests/cli/Cli/Dispatcher/GetLastTaskCest.php | 31 + .../cli/Cli/Dispatcher/GetModelBinderCest.php | 31 + .../cli/Cli/Dispatcher/GetModuleNameCest.php | 31 + .../Cli/Dispatcher/GetNamespaceNameCest.php | 31 + tests/cli/Cli/Dispatcher/GetOptionCest.php | 31 + tests/cli/Cli/Dispatcher/GetOptionsCest.php | 31 + tests/cli/Cli/Dispatcher/GetParamCest.php | 31 + tests/cli/Cli/Dispatcher/GetParamsCest.php | 31 + .../Cli/Dispatcher/GetReturnedValueCest.php | 31 + tests/cli/Cli/Dispatcher/GetTaskNameCest.php | 31 + .../cli/Cli/Dispatcher/GetTaskSuffixCest.php | 31 + tests/cli/Cli/Dispatcher/HasOptionCest.php | 31 + tests/cli/Cli/Dispatcher/HasParamCest.php | 31 + tests/cli/Cli/Dispatcher/IsFinishedCest.php | 31 + .../cli/Cli/Dispatcher/SetActionNameCest.php | 31 + .../Cli/Dispatcher/SetActionSuffixCest.php | 31 + tests/cli/Cli/Dispatcher/SetDICest.php | 31 + .../Cli/Dispatcher/SetDefaultActionCest.php | 31 + .../Dispatcher/SetDefaultNamespaceCest.php | 31 + .../cli/Cli/Dispatcher/SetDefaultTaskCest.php | 31 + .../Cli/Dispatcher/SetEventsManagerCest.php | 31 + .../Cli/Dispatcher/SetHandlerSuffixCest.php | 31 + .../cli/Cli/Dispatcher/SetModelBinderCest.php | 31 + .../cli/Cli/Dispatcher/SetModuleNameCest.php | 31 + .../Cli/Dispatcher/SetNamespaceNameCest.php | 31 + tests/cli/Cli/Dispatcher/SetOptionsCest.php | 31 + tests/cli/Cli/Dispatcher/SetParamCest.php | 31 + tests/cli/Cli/Dispatcher/SetParamsCest.php | 31 + .../Cli/Dispatcher/SetReturnedValueCest.php | 31 + tests/cli/Cli/Dispatcher/SetTaskNameCest.php | 31 + .../cli/Cli/Dispatcher/SetTaskSuffixCest.php | 31 + tests/cli/Cli/Dispatcher/WasForwardedCest.php | 31 + tests/cli/Cli/DispatcherCest.php | 133 + tests/cli/Cli/Router/AddCest.php | 31 + tests/cli/Cli/Router/ConstructCest.php | 31 + tests/cli/Cli/Router/GetActionNameCest.php | 31 + tests/cli/Cli/Router/GetDICest.php | 31 + tests/cli/Cli/Router/GetMatchedRouteCest.php | 31 + tests/cli/Cli/Router/GetMatchesCest.php | 31 + tests/cli/Cli/Router/GetModuleNameCest.php | 31 + tests/cli/Cli/Router/GetParamsCest.php | 31 + tests/cli/Cli/Router/GetRouteByIdCest.php | 31 + tests/cli/Cli/Router/GetRouteByNameCest.php | 31 + tests/cli/Cli/Router/GetRoutesCest.php | 31 + tests/cli/Cli/Router/GetTaskNameCest.php | 31 + tests/cli/Cli/Router/HandleCest.php | 31 + .../cli/Cli/Router/Route/BeforeMatchCest.php | 31 + .../Cli/Router/Route/CompilePatternCest.php | 31 + tests/cli/Cli/Router/Route/ConstructCest.php | 31 + tests/cli/Cli/Router/Route/ConvertCest.php | 31 + tests/cli/Cli/Router/Route/DelimiterCest.php | 31 + .../Router/Route/ExtractNamedParamsCest.php | 31 + .../Cli/Router/Route/GetBeforeMatchCest.php | 31 + .../Router/Route/GetCompiledPatternCest.php | 31 + .../Cli/Router/Route/GetConvertersCest.php | 31 + .../cli/Cli/Router/Route/GetDelimiterCest.php | 31 + tests/cli/Cli/Router/Route/GetNameCest.php | 31 + tests/cli/Cli/Router/Route/GetPathsCest.php | 31 + tests/cli/Cli/Router/Route/GetPatternCest.php | 31 + .../Cli/Router/Route/GetReversedPathsCest.php | 31 + tests/cli/Cli/Router/Route/GetRouteIdCest.php | 31 + .../cli/Cli/Router/Route/ReConfigureCest.php | 31 + tests/cli/Cli/Router/Route/ResetCest.php | 31 + tests/cli/Cli/Router/Route/SetNameCest.php | 31 + tests/cli/Cli/Router/SetDICest.php | 31 + tests/cli/Cli/Router/SetDefaultActionCest.php | 31 + tests/cli/Cli/Router/SetDefaultModuleCest.php | 31 + tests/cli/Cli/Router/SetDefaultTaskCest.php | 31 + tests/cli/Cli/Router/SetDefaultsCest.php | 31 + tests/cli/Cli/Router/WasMatchedCest.php | 31 + tests/cli/Cli/RouterCest.php | 758 + tests/cli/Cli/Task/ConstructCest.php | 31 + tests/cli/Cli/Task/GetDICest.php | 31 + tests/cli/Cli/Task/GetEventsManagerCest.php | 31 + tests/cli/Cli/Task/SetDICest.php | 31 + tests/cli/Cli/Task/SetEventsManagerCest.php | 31 + tests/cli/Cli/Task/UnderscoreGetCest.php | 31 + tests/cli/Cli/TaskCest.php | 53 + .../cli/Di/FactoryDefault/Cli/AttemptCest.php | 31 + .../Di/FactoryDefault/Cli/ConstructCest.php | 31 + tests/cli/Di/FactoryDefault/Cli/GetCest.php | 31 + .../Di/FactoryDefault/Cli/GetDefaultCest.php | 31 + .../Cli/GetInternalEventsManagerCest.php | 31 + .../cli/Di/FactoryDefault/Cli/GetRawCest.php | 31 + .../Di/FactoryDefault/Cli/GetServiceCest.php | 31 + .../Di/FactoryDefault/Cli/GetServicesCest.php | 31 + .../Di/FactoryDefault/Cli/GetSharedCest.php | 31 + tests/cli/Di/FactoryDefault/Cli/HasCest.php | 31 + .../Di/FactoryDefault/Cli/LoadFromPhpCest.php | 31 + .../FactoryDefault/Cli/LoadFromYamlCest.php | 31 + .../FactoryDefault/Cli/OffsetExistsCest.php | 31 + .../Di/FactoryDefault/Cli/OffsetGetCest.php | 31 + .../Di/FactoryDefault/Cli/OffsetSetCest.php | 31 + .../Di/FactoryDefault/Cli/OffsetUnsetCest.php | 31 + .../Di/FactoryDefault/Cli/RegisterCest.php | 31 + .../cli/Di/FactoryDefault/Cli/RemoveCest.php | 31 + tests/cli/Di/FactoryDefault/Cli/ResetCest.php | 31 + tests/cli/Di/FactoryDefault/Cli/SetCest.php | 31 + .../Di/FactoryDefault/Cli/SetDefaultCest.php | 31 + .../Cli/SetInternalEventsManagerCest.php | 31 + .../cli/Di/FactoryDefault/Cli/SetRawCest.php | 31 + .../Di/FactoryDefault/Cli/SetSharedCest.php | 31 + .../FactoryDefault/Cli/UnderscoreCallCest.php | 31 + .../Cli/WasFreshInstanceCest.php | 31 + .../_bootstrap.php} | 0 tests/functional.suite.yml.bak | 12 + tests/integration.suite.yml | 23 +- tests/integration/Assets/ManagerCest.php | 29 - .../integration/Db/Adapter/AddColumnCest.php | 31 + .../Db/Adapter/AddForeignKeyCest.php | 31 + tests/integration/Db/Adapter/AddIndexCest.php | 31 + .../Db/Adapter/AddPrimaryKeyCest.php | 31 + .../Db/Adapter/AffectedRowsCest.php | 31 + tests/integration/Db/Adapter/BeginCest.php | 31 + tests/integration/Db/Adapter/CloseCest.php | 31 + tests/integration/Db/Adapter/CommitCest.php | 31 + tests/integration/Db/Adapter/ConnectCest.php | 31 + .../integration/Db/Adapter/ConstructCest.php | 31 + .../Db/Adapter/CreateSavepointCest.php | 31 + .../Db/Adapter/CreateTableCest.php | 31 + .../integration/Db/Adapter/CreateViewCest.php | 31 + tests/integration/Db/Adapter/DeleteCest.php | 31 + .../Db/Adapter/DescribeColumnsCest.php | 31 + .../Db/Adapter/DescribeIndexesCest.php | 31 + .../Db/Adapter/DescribeReferencesCest.php | 31 + .../integration/Db/Adapter/DropColumnCest.php | 31 + .../Db/Adapter/DropForeignKeyCest.php | 31 + .../integration/Db/Adapter/DropIndexCest.php | 31 + .../Db/Adapter/DropPrimaryKeyCest.php | 31 + .../integration/Db/Adapter/DropTableCest.php | 31 + tests/integration/Db/Adapter/DropViewCest.php | 31 + .../Db/Adapter/EscapeIdentifierCest.php | 31 + .../Db/Adapter/EscapeStringCest.php | 31 + tests/integration/Db/Adapter/ExecuteCest.php | 31 + tests/integration/Db/Adapter/FetchAllCest.php | 31 + .../Db/Adapter/FetchColumnCest.php | 31 + tests/integration/Db/Adapter/FetchOneCest.php | 31 + .../integration/Db/Adapter/ForUpdateCest.php | 31 + .../Db/Adapter/GetColumnDefinitionCest.php | 31 + .../Db/Adapter/GetColumnListCest.php | 31 + .../Db/Adapter/GetConnectionIdCest.php | 31 + .../Db/Adapter/GetDefaultIdValueCest.php | 31 + .../Db/Adapter/GetDefaultValueCest.php | 31 + .../Db/Adapter/GetDescriptorCest.php | 31 + .../integration/Db/Adapter/GetDialectCest.php | 31 + .../Db/Adapter/GetDialectTypeCest.php | 31 + .../Db/Adapter/GetEventsManagerCest.php | 31 + .../Db/Adapter/GetInternalHandlerCest.php | 31 + .../GetNestedTransactionSavepointNameCest.php | 31 + .../Db/Adapter/GetRealSQLStatementCest.php | 31 + .../Db/Adapter/GetSQLBindTypesCest.php | 31 + .../Db/Adapter/GetSQLStatementCest.php | 31 + .../Db/Adapter/GetSqlVariablesCest.php | 31 + tests/integration/Db/Adapter/GetTypeCest.php | 31 + .../Db/Adapter/InsertAsDictCest.php | 31 + tests/integration/Db/Adapter/InsertCest.php | 31 + ...IsNestedTransactionsWithSavepointsCest.php | 31 + .../Db/Adapter/IsUnderTransactionCest.php | 31 + .../Db/Adapter/LastInsertIdCest.php | 31 + tests/integration/Db/Adapter/LimitCest.php | 31 + .../integration/Db/Adapter/ListTablesCest.php | 31 + .../integration/Db/Adapter/ListViewsCest.php | 31 + .../Db/Adapter/ModifyColumnCest.php | 31 + .../Db/Adapter/Pdo/Factory/LoadCest.php | 83 + .../Db/Adapter/Pdo/Mysql/AddColumnCest.php | 31 + .../Adapter/Pdo/Mysql/AddForeignKeyCest.php | 31 + .../Db/Adapter/Pdo/Mysql/AddIndexCest.php | 31 + .../Adapter/Pdo/Mysql/AddPrimaryKeyCest.php | 31 + .../Db/Adapter/Pdo/Mysql/AffectedRowsCest.php | 31 + .../Db/Adapter/Pdo/Mysql/BeginCest.php | 31 + .../Db/Adapter/Pdo/Mysql/CloseCest.php | 31 + .../Db/Adapter/Pdo/Mysql/CommitCest.php | 31 + .../Db/Adapter/Pdo/Mysql/ConnectCest.php | 31 + .../Db/Adapter/Pdo/Mysql/ConstructCest.php | 31 + .../Pdo/Mysql/ConvertBoundParamsCest.php | 31 + .../Adapter/Pdo/Mysql/CreateSavepointCest.php | 31 + .../Db/Adapter/Pdo/Mysql/CreateTableCest.php | 31 + .../Db/Adapter/Pdo/Mysql/CreateViewCest.php | 31 + .../Db/Adapter/Pdo/Mysql/DeleteCest.php | 31 + .../Adapter/Pdo/Mysql/DescribeColumnsCest.php | 38 + .../Adapter/Pdo/Mysql/DescribeIndexesCest.php | 38 + .../Pdo/Mysql/DescribeReferencesCest.php | 63 + .../Db/Adapter/Pdo/Mysql/DropColumnCest.php | 31 + .../Adapter/Pdo/Mysql/DropForeignKeyCest.php | 31 + .../Db/Adapter/Pdo/Mysql/DropIndexCest.php | 31 + .../Adapter/Pdo/Mysql/DropPrimaryKeyCest.php | 31 + .../Db/Adapter/Pdo/Mysql/DropTableCest.php | 31 + .../Db/Adapter/Pdo/Mysql/DropViewCest.php | 31 + .../Pdo/Mysql/EscapeIdentifierCest.php | 31 + .../Db/Adapter/Pdo/Mysql/EscapeStringCest.php | 31 + .../Db/Adapter/Pdo/Mysql/ExecuteCest.php | 31 + .../Adapter/Pdo/Mysql/ExecutePreparedCest.php | 31 + .../Db/Adapter/Pdo/Mysql/FetchAllCest.php | 31 + .../Db/Adapter/Pdo/Mysql/FetchColumnCest.php | 31 + .../Db/Adapter/Pdo/Mysql/FetchOneCest.php | 31 + .../Db/Adapter/Pdo/Mysql/ForUpdateCest.php | 31 + .../Pdo/Mysql/GetColumnDefinitionCest.php | 31 + .../Adapter/Pdo/Mysql/GetColumnListCest.php | 31 + .../Adapter/Pdo/Mysql/GetConnectionIdCest.php | 31 + .../Pdo/Mysql/GetDefaultIdValueCest.php | 31 + .../Adapter/Pdo/Mysql/GetDefaultValueCest.php | 31 + .../Adapter/Pdo/Mysql/GetDescriptorCest.php | 31 + .../Db/Adapter/Pdo/Mysql/GetDialectCest.php | 31 + .../Adapter/Pdo/Mysql/GetDialectTypeCest.php | 31 + .../Db/Adapter/Pdo/Mysql/GetErrorInfoCest.php | 31 + .../Pdo/Mysql/GetEventsManagerCest.php | 31 + .../Pdo/Mysql/GetInternalHandlerCest.php | 31 + .../GetNestedTransactionSavepointNameCest.php | 31 + .../Pdo/Mysql/GetRealSQLStatementCest.php | 31 + .../Adapter/Pdo/Mysql/GetSQLBindTypesCest.php | 31 + .../Adapter/Pdo/Mysql/GetSQLStatementCest.php | 31 + .../Adapter/Pdo/Mysql/GetSqlVariablesCest.php | 31 + .../Pdo/Mysql/GetTransactionLevelCest.php | 31 + .../Db/Adapter/Pdo/Mysql/GetTypeCest.php | 31 + .../Db/Adapter/Pdo/Mysql/InsertAsDictCest.php | 31 + .../Db/Adapter/Pdo/Mysql/InsertCest.php | 31 + ...IsNestedTransactionsWithSavepointsCest.php | 32 + .../Pdo/Mysql/IsUnderTransactionCest.php | 31 + .../Db/Adapter/Pdo/Mysql/LastInsertIdCest.php | 31 + .../Db/Adapter/Pdo/Mysql/LimitCest.php | 31 + .../Db/Adapter/Pdo/Mysql/ListTablesCest.php | 84 + .../Db/Adapter/Pdo/Mysql/ListViewsCest.php | 31 + .../Db/Adapter/Pdo/Mysql/ModifyColumnCest.php | 31 + .../Db/Adapter/Pdo/Mysql/PrepareCest.php | 31 + .../Db/Adapter/Pdo/Mysql/QueryCest.php | 31 + .../Pdo/Mysql/ReleaseSavepointCest.php | 31 + .../Db/Adapter/Pdo/Mysql/RollbackCest.php | 31 + .../Pdo/Mysql/RollbackSavepointCest.php | 31 + .../Db/Adapter/Pdo/Mysql/SetDialectCest.php | 31 + .../Pdo/Mysql/SetEventsManagerCest.php | 31 + ...etNestedTransactionsWithSavepointsCest.php | 32 + .../Db/Adapter/Pdo/Mysql/SharedLockCest.php | 31 + .../Pdo/Mysql/SupportSequencesCest.php | 31 + .../Db/Adapter/Pdo/Mysql/TableExistsCest.php | 40 + .../Db/Adapter/Pdo/Mysql/TableOptionsCest.php | 45 + .../Db/Adapter/Pdo/Mysql/UpdateAsDictCest.php | 31 + .../Db/Adapter/Pdo/Mysql/UpdateCest.php | 31 + .../Pdo/Mysql/UseExplicitIdValueCest.php | 31 + .../Db/Adapter/Pdo/Mysql/ViewExistsCest.php | 31 + .../integration/Db/Adapter/Pdo/MysqlCest.php | 230 + .../Adapter/Pdo/Postgresql/AddColumnCest.php | 31 + .../Pdo/Postgresql/AddForeignKeyCest.php | 31 + .../Adapter/Pdo/Postgresql/AddIndexCest.php | 31 + .../Pdo/Postgresql/AddPrimaryKeyCest.php | 31 + .../Pdo/Postgresql/AffectedRowsCest.php | 31 + .../Db/Adapter/Pdo/Postgresql/BeginCest.php | 31 + .../Db/Adapter/Pdo/Postgresql/CloseCest.php | 31 + .../Db/Adapter/Pdo/Postgresql/CommitCest.php | 31 + .../Db/Adapter/Pdo/Postgresql/ConnectCest.php | 31 + .../Adapter/Pdo/Postgresql/ConstructCest.php | 31 + .../Pdo/Postgresql/ConvertBoundParamsCest.php | 31 + .../Pdo/Postgresql/CreateSavepointCest.php | 31 + .../Pdo/Postgresql/CreateTableCest.php | 31 + .../Adapter/Pdo/Postgresql/CreateViewCest.php | 31 + .../Db/Adapter/Pdo/Postgresql/DeleteCest.php | 31 + .../Pdo/Postgresql/DescribeColumnsCest.php | 86 + .../Pdo/Postgresql/DescribeIndexesCest.php | 31 + .../Pdo/Postgresql/DescribeReferencesCest.php | 46 + .../Adapter/Pdo/Postgresql/DropColumnCest.php | 31 + .../Pdo/Postgresql/DropForeignKeyCest.php | 31 + .../Adapter/Pdo/Postgresql/DropIndexCest.php | 31 + .../Pdo/Postgresql/DropPrimaryKeyCest.php | 31 + .../Adapter/Pdo/Postgresql/DropTableCest.php | 31 + .../Adapter/Pdo/Postgresql/DropViewCest.php | 31 + .../Pdo/Postgresql/EscapeIdentifierCest.php | 31 + .../Pdo/Postgresql/EscapeStringCest.php | 31 + .../Db/Adapter/Pdo/Postgresql/ExecuteCest.php | 31 + .../Pdo/Postgresql/ExecutePreparedCest.php | 31 + .../Adapter/Pdo/Postgresql/FetchAllCest.php | 31 + .../Pdo/Postgresql/FetchColumnCest.php | 31 + .../Adapter/Pdo/Postgresql/FetchOneCest.php | 31 + .../Adapter/Pdo/Postgresql/ForUpdateCest.php | 31 + .../Postgresql/GetColumnDefinitionCest.php | 31 + .../Pdo/Postgresql/GetColumnListCest.php | 31 + .../Pdo/Postgresql/GetConnectionIdCest.php | 31 + .../Pdo/Postgresql/GetDefaultIdValueCest.php | 31 + .../Pdo/Postgresql/GetDefaultValueCest.php | 31 + .../Pdo/Postgresql/GetDescriptorCest.php | 31 + .../Adapter/Pdo/Postgresql/GetDialectCest.php | 31 + .../Pdo/Postgresql/GetDialectTypeCest.php | 31 + .../Pdo/Postgresql/GetErrorInfoCest.php | 31 + .../Pdo/Postgresql/GetEventsManagerCest.php | 31 + .../Pdo/Postgresql/GetInternalHandlerCest.php | 31 + .../GetNestedTransactionSavepointNameCest.php | 32 + .../Postgresql/GetRealSQLStatementCest.php | 31 + .../Pdo/Postgresql/GetSQLBindTypesCest.php | 31 + .../Pdo/Postgresql/GetSQLStatementCest.php | 31 + .../Pdo/Postgresql/GetSqlVariablesCest.php | 31 + .../Postgresql/GetTransactionLevelCest.php | 31 + .../Db/Adapter/Pdo/Postgresql/GetTypeCest.php | 31 + .../Pdo/Postgresql/InsertAsDictCest.php | 31 + .../Db/Adapter/Pdo/Postgresql/InsertCest.php | 31 + ...IsNestedTransactionsWithSavepointsCest.php | 32 + .../Pdo/Postgresql/IsUnderTransactionCest.php | 31 + .../Pdo/Postgresql/LastInsertIdCest.php | 31 + .../Db/Adapter/Pdo/Postgresql/LimitCest.php | 31 + .../Adapter/Pdo/Postgresql/ListTablesCest.php | 67 + .../Adapter/Pdo/Postgresql/ListViewsCest.php | 31 + .../Pdo/Postgresql/ModifyColumnCest.php | 31 + .../Db/Adapter/Pdo/Postgresql/PrepareCest.php | 31 + .../Db/Adapter/Pdo/Postgresql/QueryCest.php | 31 + .../Pdo/Postgresql/ReleaseSavepointCest.php | 31 + .../Adapter/Pdo/Postgresql/RollbackCest.php | 31 + .../Pdo/Postgresql/RollbackSavepointCest.php | 31 + .../Adapter/Pdo/Postgresql/SetDialectCest.php | 31 + .../Pdo/Postgresql/SetEventsManagerCest.php | 31 + ...etNestedTransactionsWithSavepointsCest.php | 32 + .../Adapter/Pdo/Postgresql/SharedLockCest.php | 31 + .../Pdo/Postgresql/SupportSequencesCest.php | 31 + .../Pdo/Postgresql/TableExistsCest.php | 41 + .../Pdo/Postgresql/TableOptionsCest.php | 31 + .../Pdo/Postgresql/UpdateAsDictCest.php | 31 + .../Db/Adapter/Pdo/Postgresql/UpdateCest.php | 31 + .../Pdo/Postgresql/UseExplicitIdValueCest.php | 31 + .../Adapter/Pdo/Postgresql/ViewExistsCest.php | 31 + .../Db/Adapter/Pdo/PostgresqlCest.php | 165 + .../Db/Adapter/Pdo/Sqlite/AddColumnCest.php | 31 + .../Adapter/Pdo/Sqlite/AddForeignKeyCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/AddIndexCest.php | 31 + .../Adapter/Pdo/Sqlite/AddPrimaryKeyCest.php | 31 + .../Adapter/Pdo/Sqlite/AffectedRowsCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/BeginCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/CloseCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/CommitCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/ConnectCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/ConstructCest.php | 31 + .../Pdo/Sqlite/ConvertBoundParamsCest.php | 31 + .../Pdo/Sqlite/CreateSavepointCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/CreateTableCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/CreateViewCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/DeleteCest.php | 31 + .../Pdo/Sqlite/DescribeColumnsCest.php | 31 + .../Pdo/Sqlite/DescribeIndexesCest.php | 31 + .../Pdo/Sqlite/DescribeReferencesCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/DropColumnCest.php | 31 + .../Adapter/Pdo/Sqlite/DropForeignKeyCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/DropIndexCest.php | 31 + .../Adapter/Pdo/Sqlite/DropPrimaryKeyCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/DropTableCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/DropViewCest.php | 31 + .../Pdo/Sqlite/EscapeIdentifierCest.php | 31 + .../Adapter/Pdo/Sqlite/EscapeStringCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/ExecuteCest.php | 31 + .../Pdo/Sqlite/ExecutePreparedCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/FetchAllCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/FetchColumnCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/FetchOneCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/ForUpdateCest.php | 31 + .../Pdo/Sqlite/GetColumnDefinitionCest.php | 31 + .../Adapter/Pdo/Sqlite/GetColumnListCest.php | 31 + .../Pdo/Sqlite/GetConnectionIdCest.php | 31 + .../Pdo/Sqlite/GetDefaultIdValueCest.php | 31 + .../Pdo/Sqlite/GetDefaultValueCest.php | 31 + .../Adapter/Pdo/Sqlite/GetDescriptorCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/GetDialectCest.php | 31 + .../Adapter/Pdo/Sqlite/GetDialectTypeCest.php | 31 + .../Adapter/Pdo/Sqlite/GetErrorInfoCest.php | 31 + .../Pdo/Sqlite/GetEventsManagerCest.php | 31 + .../Pdo/Sqlite/GetInternalHandlerCest.php | 31 + .../GetNestedTransactionSavepointNameCest.php | 32 + .../Pdo/Sqlite/GetRealSQLStatementCest.php | 31 + .../Pdo/Sqlite/GetSQLBindTypesCest.php | 31 + .../Pdo/Sqlite/GetSQLStatementCest.php | 31 + .../Pdo/Sqlite/GetSqlVariablesCest.php | 31 + .../Pdo/Sqlite/GetTransactionLevelCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/GetTypeCest.php | 31 + .../Adapter/Pdo/Sqlite/InsertAsDictCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/InsertCest.php | 31 + ...IsNestedTransactionsWithSavepointsCest.php | 32 + .../Pdo/Sqlite/IsUnderTransactionCest.php | 31 + .../Adapter/Pdo/Sqlite/LastInsertIdCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/LimitCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/ListTablesCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/ListViewsCest.php | 31 + .../Adapter/Pdo/Sqlite/ModifyColumnCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/PrepareCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/QueryCest.php | 31 + .../Pdo/Sqlite/ReleaseSavepointCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/RollbackCest.php | 31 + .../Pdo/Sqlite/RollbackSavepointCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/SetDialectCest.php | 31 + .../Pdo/Sqlite/SetEventsManagerCest.php | 31 + ...etNestedTransactionsWithSavepointsCest.php | 32 + .../Db/Adapter/Pdo/Sqlite/SharedLockCest.php | 31 + .../Pdo/Sqlite/SupportSequencesCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/TableExistsCest.php | 31 + .../Adapter/Pdo/Sqlite/TableOptionsCest.php | 31 + .../Adapter/Pdo/Sqlite/UpdateAsDictCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/UpdateCest.php | 31 + .../Pdo/Sqlite/UseExplicitIdValueCest.php | 31 + .../Db/Adapter/Pdo/Sqlite/ViewExistsCest.php | 31 + tests/integration/Db/Adapter/QueryCest.php | 31 + .../Db/Adapter/ReleaseSavepointCest.php | 31 + tests/integration/Db/Adapter/RollbackCest.php | 31 + .../Db/Adapter/RollbackSavepointCest.php | 31 + .../integration/Db/Adapter/SetDialectCest.php | 31 + .../Db/Adapter/SetEventsManagerCest.php | 31 + ...etNestedTransactionsWithSavepointsCest.php | 31 + .../integration/Db/Adapter/SharedLockCest.php | 31 + .../Db/Adapter/SupportSequencesCest.php | 31 + .../Db/Adapter/TableExistsCest.php | 31 + .../Db/Adapter/TableOptionsCest.php | 31 + .../Db/Adapter/UpdateAsDictCest.php | 31 + tests/integration/Db/Adapter/UpdateCest.php | 31 + .../Db/Adapter/UseExplicitIdValueCest.php | 31 + .../integration/Db/Adapter/ViewExistsCest.php | 31 + tests/integration/Db/Column/ConstantsCest.php | 66 + tests/integration/Db/Column/ConstructCest.php | 31 + .../Db/Column/GetAfterPositionCest.php | 40 + .../integration/Db/Column/GetBindTypeCest.php | 40 + .../integration/Db/Column/GetDefaultCest.php | 40 + tests/integration/Db/Column/GetNameCest.php | 40 + tests/integration/Db/Column/GetScaleCest.php | 40 + .../Db/Column/GetSchemaNameCest.php | 40 + tests/integration/Db/Column/GetSizeCest.php | 40 + tests/integration/Db/Column/GetTypeCest.php | 40 + .../Db/Column/GetTypeReferenceCest.php | 31 + .../Db/Column/GetTypeValuesCest.php | 31 + .../integration/Db/Column/HasDefaultCest.php | 144 + .../Db/Column/IsAutoIncrementCest.php | 144 + tests/integration/Db/Column/IsFirstCest.php | 40 + tests/integration/Db/Column/IsNotNullCest.php | 40 + tests/integration/Db/Column/IsNumericCest.php | 40 + tests/integration/Db/Column/IsPrimaryCest.php | 40 + .../integration/Db/Column/IsUnsignedCest.php | 40 + tests/integration/Db/Column/SetStateCest.php | 31 + tests/integration/Db/ColumnCest.php | 199 + tests/integration/Db/DbBindCest.php | 450 + tests/integration/Db/DbCest.php | 397 + tests/integration/Db/DbDescribeCest.php | 850 + tests/integration/Db/DbProfilerCest.php | 98 + .../integration/Db/Dialect/AddColumnCest.php | 31 + .../Db/Dialect/AddForeignKeyCest.php | 31 + tests/integration/Db/Dialect/AddIndexCest.php | 31 + .../Db/Dialect/AddPrimaryKeyCest.php | 31 + .../Db/Dialect/CreateSavepointCest.php | 31 + .../Db/Dialect/CreateTableCest.php | 31 + .../integration/Db/Dialect/CreateViewCest.php | 31 + .../Db/Dialect/DescribeColumnsCest.php | 31 + .../Db/Dialect/DescribeIndexesCest.php | 31 + .../Db/Dialect/DescribeReferencesCest.php | 31 + .../integration/Db/Dialect/DropColumnCest.php | 31 + .../Db/Dialect/DropForeignKeyCest.php | 31 + .../integration/Db/Dialect/DropIndexCest.php | 31 + .../Db/Dialect/DropPrimaryKeyCest.php | 31 + .../integration/Db/Dialect/DropTableCest.php | 31 + tests/integration/Db/Dialect/DropViewCest.php | 31 + tests/integration/Db/Dialect/EscapeCest.php | 31 + .../Db/Dialect/EscapeSchemaCest.php | 31 + .../integration/Db/Dialect/ForUpdateCest.php | 31 + .../Db/Dialect/GetColumnDefinitionCest.php | 31 + .../Db/Dialect/GetColumnListCest.php | 31 + .../Db/Dialect/GetCustomFunctionsCest.php | 31 + .../Db/Dialect/GetSqlColumnCest.php | 31 + .../Db/Dialect/GetSqlExpressionCest.php | 31 + .../Db/Dialect/GetSqlTableCest.php | 31 + .../Db/Dialect/Helper/DialectBase.php | 520 + .../Db/Dialect/Helper/MysqlHelper.php | 525 + .../Db/Dialect/Helper/PostgresqlHelper.php | 591 + .../Db/Dialect/Helper/SqliteHelper.php | 278 + tests/integration/Db/Dialect/LimitCest.php | 31 + .../integration/Db/Dialect/ListTablesCest.php | 31 + .../Db/Dialect/ModifyColumnCest.php | 31 + .../Db/Dialect/Mysql/AddColumnCest.php | 182 + .../Db/Dialect/Mysql/AddForeignKeyCest.php | 119 + .../Db/Dialect/Mysql/AddIndexCest.php | 61 + .../Db/Dialect/Mysql/AddPrimaryKeyCest.php | 55 + .../Db/Dialect/Mysql/CreateSavepointCest.php | 46 + .../Db/Dialect/Mysql/CreateTableCest.php | 223 + .../Db/Dialect/Mysql/CreateViewCest.php | 31 + .../Db/Dialect/Mysql/DescribeColumnsCest.php | 31 + .../Db/Dialect/Mysql/DescribeIndexesCest.php | 31 + .../Dialect/Mysql/DescribeReferencesCest.php | 31 + .../Db/Dialect/Mysql/DropColumnCest.php | 31 + .../Db/Dialect/Mysql/DropForeignKeyCest.php | 31 + .../Db/Dialect/Mysql/DropIndexCest.php | 31 + .../Db/Dialect/Mysql/DropPrimaryKeyCest.php | 31 + .../Db/Dialect/Mysql/DropTableCest.php | 31 + .../Db/Dialect/Mysql/DropViewCest.php | 31 + .../Db/Dialect/Mysql/EscapeCest.php | 31 + .../Db/Dialect/Mysql/EscapeSchemaCest.php | 31 + .../Db/Dialect/Mysql/ForUpdateCest.php | 31 + .../Dialect/Mysql/GetColumnDefinitionCest.php | 31 + .../Db/Dialect/Mysql/GetColumnListCest.php | 31 + .../Dialect/Mysql/GetCustomFunctionsCest.php | 31 + .../Dialect/Mysql/GetForeignKeyChecksCest.php | 31 + .../Db/Dialect/Mysql/GetSqlColumnCest.php | 31 + .../Db/Dialect/Mysql/GetSqlExpressionCest.php | 31 + .../Db/Dialect/Mysql/GetSqlTableCest.php | 31 + .../Db/Dialect/Mysql/LimitCest.php | 31 + .../Db/Dialect/Mysql/ListTablesCest.php | 31 + .../Db/Dialect/Mysql/ListViewsCest.php | 31 + .../Db/Dialect/Mysql/ModifyColumnCest.php | 31 + .../Mysql/RegisterCustomFunctionCest.php | 31 + .../Db/Dialect/Mysql/ReleaseSavepointCest.php | 31 + .../Dialect/Mysql/RollbackSavepointCest.php | 31 + .../Db/Dialect/Mysql/SelectCest.php | 31 + .../Db/Dialect/Mysql/SharedLockCest.php | 31 + .../Mysql/SupportsReleaseSavepointsCest.php | 31 + .../Dialect/Mysql/SupportsSavepointsCest.php | 31 + .../Db/Dialect/Mysql/TableExistsCest.php | 31 + .../Db/Dialect/Mysql/TableOptionsCest.php | 31 + .../Db/Dialect/Mysql/TruncateTableCest.php | 31 + .../Db/Dialect/Mysql/ViewExistsCest.php | 31 + .../Db/Dialect/Postgresql/AddColumnCest.php | 183 + .../Dialect/Postgresql/AddForeignKeyCest.php | 113 + .../Db/Dialect/Postgresql/AddIndexCest.php | 61 + .../Dialect/Postgresql/AddPrimaryKeyCest.php | 55 + .../Postgresql/CreateSavepointCest.php | 46 + .../Db/Dialect/Postgresql/CreateTableCest.php | 221 + .../Db/Dialect/Postgresql/CreateViewCest.php | 31 + .../Postgresql/DescribeColumnsCest.php | 31 + .../Postgresql/DescribeIndexesCest.php | 31 + .../Postgresql/DescribeReferencesCest.php | 31 + .../Db/Dialect/Postgresql/DropColumnCest.php | 31 + .../Dialect/Postgresql/DropForeignKeyCest.php | 31 + .../Db/Dialect/Postgresql/DropIndexCest.php | 31 + .../Dialect/Postgresql/DropPrimaryKeyCest.php | 31 + .../Db/Dialect/Postgresql/DropTableCest.php | 31 + .../Db/Dialect/Postgresql/DropViewCest.php | 31 + .../Db/Dialect/Postgresql/EscapeCest.php | 31 + .../Dialect/Postgresql/EscapeSchemaCest.php | 31 + .../Db/Dialect/Postgresql/ForUpdateCest.php | 31 + .../Postgresql/GetColumnDefinitionCest.php | 31 + .../Dialect/Postgresql/GetColumnListCest.php | 31 + .../Postgresql/GetCustomFunctionsCest.php | 31 + .../Dialect/Postgresql/GetSqlColumnCest.php | 31 + .../Postgresql/GetSqlExpressionCest.php | 31 + .../Db/Dialect/Postgresql/GetSqlTableCest.php | 31 + .../Db/Dialect/Postgresql/LimitCest.php | 31 + .../Db/Dialect/Postgresql/ListTablesCest.php | 31 + .../Db/Dialect/Postgresql/ListViewsCest.php | 31 + .../Dialect/Postgresql/ModifyColumnCest.php | 31 + .../Postgresql/RegisterCustomFunctionCest.php | 31 + .../Postgresql/ReleaseSavepointCest.php | 31 + .../Postgresql/RollbackSavepointCest.php | 31 + .../Db/Dialect/Postgresql/SelectCest.php | 31 + .../Db/Dialect/Postgresql/SharedLockCest.php | 31 + .../SupportsReleaseSavepointsCest.php | 31 + .../Postgresql/SupportsSavepointsCest.php | 31 + .../Db/Dialect/Postgresql/TableExistsCest.php | 31 + .../Dialect/Postgresql/TableOptionsCest.php | 31 + .../Dialect/Postgresql/TruncateTableCest.php | 31 + .../Db/Dialect/Postgresql/ViewExistsCest.php | 31 + .../integration/Db/Dialect/PostgresqlCest.php | 1012 ++ .../Db/Dialect/RegisterCustomFunctionCest.php | 31 + .../Db/Dialect/ReleaseSavepointCest.php | 31 + .../Db/Dialect/RollbackSavepointCest.php | 31 + tests/integration/Db/Dialect/SelectCest.php | 31 + .../integration/Db/Dialect/SharedLockCest.php | 31 + .../Db/Dialect/Sqlite/AddColumnCest.php | 233 + .../Db/Dialect/Sqlite/AddForeignKeyCest.php | 52 + .../Db/Dialect/Sqlite/AddIndexCest.php | 57 + .../Db/Dialect/Sqlite/AddPrimaryKeyCest.php | 52 + .../Db/Dialect/Sqlite/CreateSavepointCest.php | 46 + .../Db/Dialect/Sqlite/CreateTableCest.php | 219 + .../Db/Dialect/Sqlite/CreateViewCest.php | 31 + .../Db/Dialect/Sqlite/DescribeColumnsCest.php | 31 + .../Db/Dialect/Sqlite/DescribeIndexCest.php | 31 + .../Db/Dialect/Sqlite/DescribeIndexesCest.php | 31 + .../Dialect/Sqlite/DescribeReferencesCest.php | 31 + .../Db/Dialect/Sqlite/DropColumnCest.php | 31 + .../Db/Dialect/Sqlite/DropForeignKeyCest.php | 31 + .../Db/Dialect/Sqlite/DropIndexCest.php | 31 + .../Db/Dialect/Sqlite/DropPrimaryKeyCest.php | 31 + .../Db/Dialect/Sqlite/DropTableCest.php | 31 + .../Db/Dialect/Sqlite/DropViewCest.php | 31 + .../Db/Dialect/Sqlite/EscapeCest.php | 31 + .../Db/Dialect/Sqlite/EscapeSchemaCest.php | 31 + .../Db/Dialect/Sqlite/ForUpdateCest.php | 31 + .../Sqlite/GetColumnDefinitionCest.php | 31 + .../Db/Dialect/Sqlite/GetColumnListCest.php | 31 + .../Dialect/Sqlite/GetCustomFunctionsCest.php | 31 + .../Db/Dialect/Sqlite/GetSqlColumnCest.php | 31 + .../Dialect/Sqlite/GetSqlExpressionCest.php | 31 + .../Db/Dialect/Sqlite/GetSqlTableCest.php | 31 + .../Db/Dialect/Sqlite/LimitCest.php | 31 + .../Db/Dialect/Sqlite/ListIndexesSqlCest.php | 31 + .../Db/Dialect/Sqlite/ListTablesCest.php | 31 + .../Db/Dialect/Sqlite/ListViewsCest.php | 31 + .../Db/Dialect/Sqlite/ModifyColumnCest.php | 31 + .../Sqlite/RegisterCustomFunctionCest.php | 31 + .../Dialect/Sqlite/ReleaseSavepointCest.php | 31 + .../Dialect/Sqlite/RollbackSavepointCest.php | 31 + .../Db/Dialect/Sqlite/SelectCest.php | 31 + .../Db/Dialect/Sqlite/SharedLockCest.php | 31 + .../Sqlite/SupportsReleaseSavepointsCest.php | 31 + .../Dialect/Sqlite/SupportsSavepointsCest.php | 31 + .../Db/Dialect/Sqlite/TableExistsCest.php | 31 + .../Db/Dialect/Sqlite/TableOptionsCest.php | 31 + .../Db/Dialect/Sqlite/TruncateTableCest.php | 31 + .../Db/Dialect/Sqlite/ViewExistsCest.php | 31 + tests/integration/Db/Dialect/SqliteCest.php | 681 + .../Dialect/SupportsReleaseSavepointsCest.php | 31 + .../Db/Dialect/SupportsSavepointsCest.php | 31 + .../Db/Dialect/TableExistsCest.php | 31 + .../Db/Dialect/TableOptionsCest.php | 31 + .../integration/Db/Dialect/ViewExistsCest.php | 31 + tests/integration/Db/Index/ConstructCest.php | 31 + tests/integration/Db/Index/GetColumnsCest.php | 31 + tests/integration/Db/Index/GetNameCest.php | 31 + tests/integration/Db/Index/GetTypeCest.php | 31 + tests/integration/Db/Index/SetStateCest.php | 31 + tests/integration/Db/IndexCest.php | 39 + .../Db/Profiler/GetLastProfileCest.php | 31 + .../Profiler/GetNumberTotalStatementsCest.php | 31 + .../Db/Profiler/GetProfilesCest.php | 31 + .../Profiler/GetTotalElapsedSecondsCest.php | 31 + .../Db/Profiler/Item/GetFinalTimeCest.php | 31 + .../Db/Profiler/Item/GetInitialTimeCest.php | 31 + .../Db/Profiler/Item/GetSqlBindTypesCest.php | 31 + .../Db/Profiler/Item/GetSqlStatementCest.php | 31 + .../Db/Profiler/Item/GetSqlVariablesCest.php | 31 + .../Item/GetTotalElapsedSecondsCest.php | 31 + .../Db/Profiler/Item/SetFinalTimeCest.php | 31 + .../Db/Profiler/Item/SetInitialTimeCest.php | 31 + .../Db/Profiler/Item/SetSqlBindTypesCest.php | 31 + .../Db/Profiler/Item/SetSqlStatementCest.php | 31 + .../Db/Profiler/Item/SetSqlVariablesCest.php | 31 + tests/integration/Db/Profiler/ResetCest.php | 31 + .../Db/Profiler/StartProfileCest.php | 31 + .../Db/Profiler/StopProfileCest.php | 31 + .../integration/Db/RawValue/ConstructCest.php | 31 + .../integration/Db/RawValue/GetValueCest.php | 31 + .../integration/Db/RawValue/ToStringCest.php | 31 + .../Db/Reference/ConstructCest.php | 31 + .../Db/Reference/GetColumnsCest.php | 31 + .../integration/Db/Reference/GetNameCest.php | 31 + .../Db/Reference/GetOnDeleteCest.php | 31 + .../Db/Reference/GetOnUpdateCest.php | 31 + .../Db/Reference/GetReferencedColumnsCest.php | 31 + .../Db/Reference/GetReferencedSchemaCest.php | 31 + .../Db/Reference/GetReferencedTableCest.php | 31 + .../Db/Reference/GetSchemaNameCest.php | 31 + .../integration/Db/Reference/SetStateCest.php | 31 + tests/integration/Db/ReferenceCest.php | 66 + .../Db/Result/Pdo/ConstructCest.php | 31 + .../Db/Result/Pdo/DataSeekCest.php | 31 + .../integration/Db/Result/Pdo/ExecuteCest.php | 31 + .../Db/Result/Pdo/FetchAllCest.php | 31 + .../Db/Result/Pdo/FetchArrayCest.php | 31 + tests/integration/Db/Result/Pdo/FetchCest.php | 31 + .../Db/Result/Pdo/GetInternalResultCest.php | 31 + .../integration/Db/Result/Pdo/NumRowsCest.php | 31 + .../Db/Result/Pdo/SetFetchModeCest.php | 31 + tests/integration/Db/SetupCest.php | 31 + .../Forms/Element/AddFilterCest.php | 31 + .../Forms/Element/AddValidatorCest.php | 31 + .../Forms/Element/AddValidatorsCest.php | 31 + .../Forms/Element/AppendMessageCest.php | 31 + .../Forms/Element/Check/AddFilterCest.php | 31 + .../Forms/Element/Check/AddValidatorCest.php | 31 + .../Forms/Element/Check/AddValidatorsCest.php | 31 + .../Forms/Element/Check/AppendMessageCest.php | 31 + .../Forms/Element/Check/ClearCest.php | 31 + .../Forms/Element/Check/ConstructCest.php | 31 + .../Forms/Element/Check/GetAttributeCest.php | 31 + .../Forms/Element/Check/GetAttributesCest.php | 31 + .../Forms/Element/Check/GetDefaultCest.php | 31 + .../Forms/Element/Check/GetFiltersCest.php | 31 + .../Forms/Element/Check/GetFormCest.php | 31 + .../Forms/Element/Check/GetLabelCest.php | 31 + .../Forms/Element/Check/GetMessagesCest.php | 31 + .../Forms/Element/Check/GetNameCest.php | 31 + .../Forms/Element/Check/GetUserOptionCest.php | 31 + .../Element/Check/GetUserOptionsCest.php | 31 + .../Forms/Element/Check/GetValidatorsCest.php | 31 + .../Forms/Element/Check/GetValueCest.php | 31 + .../Forms/Element/Check/HasMessagesCest.php | 31 + .../Forms/Element/Check/LabelCest.php | 31 + .../Element/Check/PrepareAttributesCest.php | 31 + .../Forms/Element/Check/RenderCest.php | 31 + .../Forms/Element/Check/SetAttributeCest.php | 31 + .../Forms/Element/Check/SetAttributesCest.php | 31 + .../Forms/Element/Check/SetDefaultCest.php | 31 + .../Forms/Element/Check/SetFiltersCest.php | 31 + .../Forms/Element/Check/SetFormCest.php | 31 + .../Forms/Element/Check/SetLabelCest.php | 31 + .../Forms/Element/Check/SetMessagesCest.php | 31 + .../Forms/Element/Check/SetNameCest.php | 31 + .../Forms/Element/Check/SetUserOptionCest.php | 31 + .../Element/Check/SetUserOptionsCest.php | 31 + .../Forms/Element/Check/ToStringCest.php | 31 + tests/integration/Forms/Element/ClearCest.php | 31 + .../Forms/Element/ConstructCest.php | 31 + .../Forms/Element/Date/AddFilterCest.php | 31 + .../Forms/Element/Date/AddValidatorCest.php | 31 + .../Forms/Element/Date/AddValidatorsCest.php | 31 + .../Forms/Element/Date/AppendMessageCest.php | 31 + .../Forms/Element/Date/ClearCest.php | 31 + .../Forms/Element/Date/ConstructCest.php | 31 + .../Forms/Element/Date/GetAttributeCest.php | 31 + .../Forms/Element/Date/GetAttributesCest.php | 31 + .../Forms/Element/Date/GetDefaultCest.php | 31 + .../Forms/Element/Date/GetFiltersCest.php | 31 + .../Forms/Element/Date/GetFormCest.php | 31 + .../Forms/Element/Date/GetLabelCest.php | 31 + .../Forms/Element/Date/GetMessagesCest.php | 31 + .../Forms/Element/Date/GetNameCest.php | 31 + .../Forms/Element/Date/GetUserOptionCest.php | 31 + .../Forms/Element/Date/GetUserOptionsCest.php | 31 + .../Forms/Element/Date/GetValidatorsCest.php | 31 + .../Forms/Element/Date/GetValueCest.php | 31 + .../Forms/Element/Date/HasMessagesCest.php | 31 + .../Forms/Element/Date/LabelCest.php | 31 + .../Element/Date/PrepareAttributesCest.php | 31 + .../Forms/Element/Date/RenderCest.php | 31 + .../Forms/Element/Date/SetAttributeCest.php | 31 + .../Forms/Element/Date/SetAttributesCest.php | 31 + .../Forms/Element/Date/SetDefaultCest.php | 31 + .../Forms/Element/Date/SetFiltersCest.php | 31 + .../Forms/Element/Date/SetFormCest.php | 31 + .../Forms/Element/Date/SetLabelCest.php | 31 + .../Forms/Element/Date/SetMessagesCest.php | 31 + .../Forms/Element/Date/SetNameCest.php | 31 + .../Forms/Element/Date/SetUserOptionCest.php | 31 + .../Forms/Element/Date/SetUserOptionsCest.php | 31 + .../Forms/Element/Date/ToStringCest.php | 31 + .../Forms/Element/Email/AddFilterCest.php | 31 + .../Forms/Element/Email/AddValidatorCest.php | 31 + .../Forms/Element/Email/AddValidatorsCest.php | 31 + .../Forms/Element/Email/AppendMessageCest.php | 31 + .../Forms/Element/Email/ClearCest.php | 31 + .../Forms/Element/Email/ConstructCest.php | 31 + .../Forms/Element/Email/GetAttributeCest.php | 31 + .../Forms/Element/Email/GetAttributesCest.php | 31 + .../Forms/Element/Email/GetDefaultCest.php | 31 + .../Forms/Element/Email/GetFiltersCest.php | 31 + .../Forms/Element/Email/GetFormCest.php | 31 + .../Forms/Element/Email/GetLabelCest.php | 31 + .../Forms/Element/Email/GetMessagesCest.php | 31 + .../Forms/Element/Email/GetNameCest.php | 31 + .../Forms/Element/Email/GetUserOptionCest.php | 31 + .../Element/Email/GetUserOptionsCest.php | 31 + .../Forms/Element/Email/GetValidatorsCest.php | 31 + .../Forms/Element/Email/GetValueCest.php | 31 + .../Forms/Element/Email/HasMessagesCest.php | 31 + .../Forms/Element/Email/LabelCest.php | 31 + .../Element/Email/PrepareAttributesCest.php | 31 + .../Forms/Element/Email/RenderCest.php | 31 + .../Forms/Element/Email/SetAttributeCest.php | 31 + .../Forms/Element/Email/SetAttributesCest.php | 31 + .../Forms/Element/Email/SetDefaultCest.php | 31 + .../Forms/Element/Email/SetFiltersCest.php | 31 + .../Forms/Element/Email/SetFormCest.php | 31 + .../Forms/Element/Email/SetLabelCest.php | 31 + .../Forms/Element/Email/SetMessagesCest.php | 31 + .../Forms/Element/Email/SetNameCest.php | 31 + .../Forms/Element/Email/SetUserOptionCest.php | 31 + .../Element/Email/SetUserOptionsCest.php | 31 + .../Forms/Element/Email/ToStringCest.php | 31 + .../Forms/Element/File/AddFilterCest.php | 31 + .../Forms/Element/File/AddValidatorCest.php | 31 + .../Forms/Element/File/AddValidatorsCest.php | 31 + .../Forms/Element/File/AppendMessageCest.php | 31 + .../Forms/Element/File/ClearCest.php | 31 + .../Forms/Element/File/ConstructCest.php | 31 + .../Forms/Element/File/GetAttributeCest.php | 31 + .../Forms/Element/File/GetAttributesCest.php | 31 + .../Forms/Element/File/GetDefaultCest.php | 31 + .../Forms/Element/File/GetFiltersCest.php | 31 + .../Forms/Element/File/GetFormCest.php | 31 + .../Forms/Element/File/GetLabelCest.php | 31 + .../Forms/Element/File/GetMessagesCest.php | 31 + .../Forms/Element/File/GetNameCest.php | 31 + .../Forms/Element/File/GetUserOptionCest.php | 31 + .../Forms/Element/File/GetUserOptionsCest.php | 31 + .../Forms/Element/File/GetValidatorsCest.php | 31 + .../Forms/Element/File/GetValueCest.php | 31 + .../Forms/Element/File/HasMessagesCest.php | 31 + .../Forms/Element/File/LabelCest.php | 31 + .../Element/File/PrepareAttributesCest.php | 31 + .../Forms/Element/File/RenderCest.php | 31 + .../Forms/Element/File/SetAttributeCest.php | 31 + .../Forms/Element/File/SetAttributesCest.php | 31 + .../Forms/Element/File/SetDefaultCest.php | 31 + .../Forms/Element/File/SetFiltersCest.php | 31 + .../Forms/Element/File/SetFormCest.php | 31 + .../Forms/Element/File/SetLabelCest.php | 31 + .../Forms/Element/File/SetMessagesCest.php | 31 + .../Forms/Element/File/SetNameCest.php | 31 + .../Forms/Element/File/SetUserOptionCest.php | 31 + .../Forms/Element/File/SetUserOptionsCest.php | 31 + .../Forms/Element/File/ToStringCest.php | 31 + .../Forms/Element/GetAttributeCest.php | 31 + .../Forms/Element/GetAttributesCest.php | 31 + .../Forms/Element/GetDefaultCest.php | 31 + .../Forms/Element/GetFiltersCest.php | 31 + .../integration/Forms/Element/GetFormCest.php | 31 + .../Forms/Element/GetLabelCest.php | 31 + .../Forms/Element/GetMessagesCest.php | 31 + .../integration/Forms/Element/GetNameCest.php | 31 + .../Forms/Element/GetUserOptionCest.php | 31 + .../Forms/Element/GetUserOptionsCest.php | 31 + .../Forms/Element/GetValidatorsCest.php | 31 + .../Forms/Element/GetValueCest.php | 31 + .../Forms/Element/HasMessagesCest.php | 31 + .../Forms/Element/Hidden/AddFilterCest.php | 31 + .../Forms/Element/Hidden/AddValidatorCest.php | 31 + .../Element/Hidden/AddValidatorsCest.php | 31 + .../Element/Hidden/AppendMessageCest.php | 31 + .../Forms/Element/Hidden/ClearCest.php | 31 + .../Forms/Element/Hidden/ConstructCest.php | 31 + .../Forms/Element/Hidden/GetAttributeCest.php | 31 + .../Element/Hidden/GetAttributesCest.php | 31 + .../Forms/Element/Hidden/GetDefaultCest.php | 31 + .../Forms/Element/Hidden/GetFiltersCest.php | 31 + .../Forms/Element/Hidden/GetFormCest.php | 31 + .../Forms/Element/Hidden/GetLabelCest.php | 31 + .../Forms/Element/Hidden/GetMessagesCest.php | 31 + .../Forms/Element/Hidden/GetNameCest.php | 31 + .../Element/Hidden/GetUserOptionCest.php | 31 + .../Element/Hidden/GetUserOptionsCest.php | 31 + .../Element/Hidden/GetValidatorsCest.php | 31 + .../Forms/Element/Hidden/GetValueCest.php | 31 + .../Forms/Element/Hidden/HasMessagesCest.php | 31 + .../Forms/Element/Hidden/LabelCest.php | 31 + .../Element/Hidden/PrepareAttributesCest.php | 31 + .../Forms/Element/Hidden/RenderCest.php | 31 + .../Forms/Element/Hidden/SetAttributeCest.php | 31 + .../Element/Hidden/SetAttributesCest.php | 31 + .../Forms/Element/Hidden/SetDefaultCest.php | 31 + .../Forms/Element/Hidden/SetFiltersCest.php | 31 + .../Forms/Element/Hidden/SetFormCest.php | 31 + .../Forms/Element/Hidden/SetLabelCest.php | 31 + .../Forms/Element/Hidden/SetMessagesCest.php | 31 + .../Forms/Element/Hidden/SetNameCest.php | 31 + .../Element/Hidden/SetUserOptionCest.php | 31 + .../Element/Hidden/SetUserOptionsCest.php | 31 + .../Forms/Element/Hidden/ToStringCest.php | 31 + tests/integration/Forms/Element/LabelCest.php | 31 + .../Forms/Element/Numeric/AddFilterCest.php | 31 + .../Element/Numeric/AddValidatorCest.php | 31 + .../Element/Numeric/AddValidatorsCest.php | 31 + .../Element/Numeric/AppendMessageCest.php | 31 + .../Forms/Element/Numeric/ClearCest.php | 31 + .../Forms/Element/Numeric/ConstructCest.php | 31 + .../Element/Numeric/GetAttributeCest.php | 31 + .../Element/Numeric/GetAttributesCest.php | 31 + .../Forms/Element/Numeric/GetDefaultCest.php | 31 + .../Forms/Element/Numeric/GetFiltersCest.php | 31 + .../Forms/Element/Numeric/GetFormCest.php | 31 + .../Forms/Element/Numeric/GetLabelCest.php | 31 + .../Forms/Element/Numeric/GetMessagesCest.php | 31 + .../Forms/Element/Numeric/GetNameCest.php | 31 + .../Element/Numeric/GetUserOptionCest.php | 31 + .../Element/Numeric/GetUserOptionsCest.php | 31 + .../Element/Numeric/GetValidatorsCest.php | 31 + .../Forms/Element/Numeric/GetValueCest.php | 31 + .../Forms/Element/Numeric/HasMessagesCest.php | 31 + .../Forms/Element/Numeric/LabelCest.php | 31 + .../Element/Numeric/PrepareAttributesCest.php | 31 + .../Forms/Element/Numeric/RenderCest.php | 31 + .../Element/Numeric/SetAttributeCest.php | 31 + .../Element/Numeric/SetAttributesCest.php | 31 + .../Forms/Element/Numeric/SetDefaultCest.php | 31 + .../Forms/Element/Numeric/SetFiltersCest.php | 31 + .../Forms/Element/Numeric/SetFormCest.php | 31 + .../Forms/Element/Numeric/SetLabelCest.php | 31 + .../Forms/Element/Numeric/SetMessagesCest.php | 31 + .../Forms/Element/Numeric/SetNameCest.php | 31 + .../Element/Numeric/SetUserOptionCest.php | 31 + .../Element/Numeric/SetUserOptionsCest.php | 31 + .../Forms/Element/Numeric/ToStringCest.php | 31 + .../Forms/Element/Password/AddFilterCest.php | 31 + .../Element/Password/AddValidatorCest.php | 31 + .../Element/Password/AddValidatorsCest.php | 31 + .../Element/Password/AppendMessageCest.php | 31 + .../Forms/Element/Password/ClearCest.php | 31 + .../Forms/Element/Password/ConstructCest.php | 31 + .../Element/Password/GetAttributeCest.php | 31 + .../Element/Password/GetAttributesCest.php | 31 + .../Forms/Element/Password/GetDefaultCest.php | 31 + .../Forms/Element/Password/GetFiltersCest.php | 31 + .../Forms/Element/Password/GetFormCest.php | 31 + .../Forms/Element/Password/GetLabelCest.php | 31 + .../Element/Password/GetMessagesCest.php | 31 + .../Forms/Element/Password/GetNameCest.php | 31 + .../Element/Password/GetUserOptionCest.php | 31 + .../Element/Password/GetUserOptionsCest.php | 31 + .../Element/Password/GetValidatorsCest.php | 31 + .../Forms/Element/Password/GetValueCest.php | 31 + .../Element/Password/HasMessagesCest.php | 31 + .../Forms/Element/Password/LabelCest.php | 31 + .../Password/PrepareAttributesCest.php | 31 + .../Forms/Element/Password/RenderCest.php | 31 + .../Element/Password/SetAttributeCest.php | 31 + .../Element/Password/SetAttributesCest.php | 31 + .../Forms/Element/Password/SetDefaultCest.php | 31 + .../Forms/Element/Password/SetFiltersCest.php | 31 + .../Forms/Element/Password/SetFormCest.php | 31 + .../Forms/Element/Password/SetLabelCest.php | 31 + .../Element/Password/SetMessagesCest.php | 31 + .../Forms/Element/Password/SetNameCest.php | 31 + .../Element/Password/SetUserOptionCest.php | 31 + .../Element/Password/SetUserOptionsCest.php | 31 + .../Forms/Element/Password/ToStringCest.php | 31 + .../Forms/Element/PrepareAttributesCest.php | 31 + .../Forms/Element/Radio/AddFilterCest.php | 31 + .../Forms/Element/Radio/AddValidatorCest.php | 31 + .../Forms/Element/Radio/AddValidatorsCest.php | 31 + .../Forms/Element/Radio/AppendMessageCest.php | 31 + .../Forms/Element/Radio/ClearCest.php | 31 + .../Forms/Element/Radio/ConstructCest.php | 31 + .../Forms/Element/Radio/GetAttributeCest.php | 31 + .../Forms/Element/Radio/GetAttributesCest.php | 31 + .../Forms/Element/Radio/GetDefaultCest.php | 31 + .../Forms/Element/Radio/GetFiltersCest.php | 31 + .../Forms/Element/Radio/GetFormCest.php | 31 + .../Forms/Element/Radio/GetLabelCest.php | 31 + .../Forms/Element/Radio/GetMessagesCest.php | 31 + .../Forms/Element/Radio/GetNameCest.php | 31 + .../Forms/Element/Radio/GetUserOptionCest.php | 31 + .../Element/Radio/GetUserOptionsCest.php | 31 + .../Forms/Element/Radio/GetValidatorsCest.php | 31 + .../Forms/Element/Radio/GetValueCest.php | 31 + .../Forms/Element/Radio/HasMessagesCest.php | 31 + .../Forms/Element/Radio/LabelCest.php | 31 + .../Element/Radio/PrepareAttributesCest.php | 31 + .../Forms/Element/Radio/RenderCest.php | 31 + .../Forms/Element/Radio/SetAttributeCest.php | 31 + .../Forms/Element/Radio/SetAttributesCest.php | 31 + .../Forms/Element/Radio/SetDefaultCest.php | 31 + .../Forms/Element/Radio/SetFiltersCest.php | 31 + .../Forms/Element/Radio/SetFormCest.php | 31 + .../Forms/Element/Radio/SetLabelCest.php | 31 + .../Forms/Element/Radio/SetMessagesCest.php | 31 + .../Forms/Element/Radio/SetNameCest.php | 31 + .../Forms/Element/Radio/SetUserOptionCest.php | 31 + .../Element/Radio/SetUserOptionsCest.php | 31 + .../Forms/Element/Radio/ToStringCest.php | 31 + .../integration/Forms/Element/RenderCest.php | 31 + .../Forms/Element/Select/AddFilterCest.php | 31 + .../Forms/Element/Select/AddOptionCest.php | 31 + .../Forms/Element/Select/AddValidatorCest.php | 31 + .../Element/Select/AddValidatorsCest.php | 31 + .../Element/Select/AppendMessageCest.php | 31 + .../Forms/Element/Select/ClearCest.php | 31 + .../Forms/Element/Select/ConstructCest.php | 31 + .../Forms/Element/Select/GetAttributeCest.php | 31 + .../Element/Select/GetAttributesCest.php | 31 + .../Forms/Element/Select/GetDefaultCest.php | 31 + .../Forms/Element/Select/GetFiltersCest.php | 31 + .../Forms/Element/Select/GetFormCest.php | 31 + .../Forms/Element/Select/GetLabelCest.php | 31 + .../Forms/Element/Select/GetMessagesCest.php | 31 + .../Forms/Element/Select/GetNameCest.php | 31 + .../Forms/Element/Select/GetOptionsCest.php | 31 + .../Element/Select/GetUserOptionCest.php | 31 + .../Element/Select/GetUserOptionsCest.php | 31 + .../Element/Select/GetValidatorsCest.php | 31 + .../Forms/Element/Select/GetValueCest.php | 31 + .../Forms/Element/Select/HasMessagesCest.php | 31 + .../Forms/Element/Select/LabelCest.php | 31 + .../Element/Select/PrepareAttributesCest.php | 31 + .../Forms/Element/Select/RenderCest.php | 31 + .../Forms/Element/Select/SetAttributeCest.php | 31 + .../Element/Select/SetAttributesCest.php | 31 + .../Forms/Element/Select/SetDefaultCest.php | 31 + .../Forms/Element/Select/SetFiltersCest.php | 31 + .../Forms/Element/Select/SetFormCest.php | 31 + .../Forms/Element/Select/SetLabelCest.php | 31 + .../Forms/Element/Select/SetMessagesCest.php | 31 + .../Forms/Element/Select/SetNameCest.php | 31 + .../Forms/Element/Select/SetOptionsCest.php | 31 + .../Element/Select/SetUserOptionCest.php | 31 + .../Element/Select/SetUserOptionsCest.php | 31 + .../Forms/Element/Select/ToStringCest.php | 31 + .../Forms/Element/SetAttributeCest.php | 31 + .../Forms/Element/SetAttributesCest.php | 31 + .../Forms/Element/SetDefaultCest.php | 31 + .../Forms/Element/SetFiltersCest.php | 31 + .../integration/Forms/Element/SetFormCest.php | 31 + .../Forms/Element/SetLabelCest.php | 31 + .../Forms/Element/SetMessagesCest.php | 31 + .../integration/Forms/Element/SetNameCest.php | 31 + .../Forms/Element/SetUserOptionCest.php | 31 + .../Forms/Element/SetUserOptionsCest.php | 31 + .../Forms/Element/Submit/AddFilterCest.php | 31 + .../Forms/Element/Submit/AddValidatorCest.php | 31 + .../Element/Submit/AddValidatorsCest.php | 31 + .../Element/Submit/AppendMessageCest.php | 31 + .../Forms/Element/Submit/ClearCest.php | 31 + .../Forms/Element/Submit/ConstructCest.php | 31 + .../Forms/Element/Submit/GetAttributeCest.php | 31 + .../Element/Submit/GetAttributesCest.php | 31 + .../Forms/Element/Submit/GetDefaultCest.php | 31 + .../Forms/Element/Submit/GetFiltersCest.php | 31 + .../Forms/Element/Submit/GetFormCest.php | 31 + .../Forms/Element/Submit/GetLabelCest.php | 31 + .../Forms/Element/Submit/GetMessagesCest.php | 31 + .../Forms/Element/Submit/GetNameCest.php | 31 + .../Element/Submit/GetUserOptionCest.php | 31 + .../Element/Submit/GetUserOptionsCest.php | 31 + .../Element/Submit/GetValidatorsCest.php | 31 + .../Forms/Element/Submit/GetValueCest.php | 31 + .../Forms/Element/Submit/HasMessagesCest.php | 31 + .../Forms/Element/Submit/LabelCest.php | 31 + .../Element/Submit/PrepareAttributesCest.php | 31 + .../Forms/Element/Submit/RenderCest.php | 31 + .../Forms/Element/Submit/SetAttributeCest.php | 31 + .../Element/Submit/SetAttributesCest.php | 31 + .../Forms/Element/Submit/SetDefaultCest.php | 31 + .../Forms/Element/Submit/SetFiltersCest.php | 31 + .../Forms/Element/Submit/SetFormCest.php | 31 + .../Forms/Element/Submit/SetLabelCest.php | 31 + .../Forms/Element/Submit/SetMessagesCest.php | 31 + .../Forms/Element/Submit/SetNameCest.php | 31 + .../Element/Submit/SetUserOptionCest.php | 31 + .../Element/Submit/SetUserOptionsCest.php | 31 + .../Forms/Element/Submit/ToStringCest.php | 31 + .../Forms/Element/Text/AddFilterCest.php | 31 + .../Forms/Element/Text/AddValidatorCest.php | 31 + .../Forms/Element/Text/AddValidatorsCest.php | 31 + .../Forms/Element/Text/AppendMessageCest.php | 31 + .../Forms/Element/Text/ClearCest.php | 31 + .../Forms/Element/Text/ConstructCest.php | 31 + .../Forms/Element/Text/GetAttributeCest.php | 31 + .../Forms/Element/Text/GetAttributesCest.php | 31 + .../Forms/Element/Text/GetDefaultCest.php | 31 + .../Forms/Element/Text/GetFiltersCest.php | 31 + .../Forms/Element/Text/GetFormCest.php | 31 + .../Forms/Element/Text/GetLabelCest.php | 31 + .../Forms/Element/Text/GetMessagesCest.php | 31 + .../Forms/Element/Text/GetNameCest.php | 31 + .../Forms/Element/Text/GetUserOptionCest.php | 31 + .../Forms/Element/Text/GetUserOptionsCest.php | 31 + .../Forms/Element/Text/GetValidatorsCest.php | 31 + .../Forms/Element/Text/GetValueCest.php | 31 + .../Forms/Element/Text/HasMessagesCest.php | 31 + .../Forms/Element/Text/LabelCest.php | 31 + .../Element/Text/PrepareAttributesCest.php | 31 + .../Forms/Element/Text/RenderCest.php | 31 + .../Forms/Element/Text/SetAttributeCest.php | 31 + .../Forms/Element/Text/SetAttributesCest.php | 31 + .../Forms/Element/Text/SetDefaultCest.php | 31 + .../Forms/Element/Text/SetFiltersCest.php | 31 + .../Forms/Element/Text/SetFormCest.php | 31 + .../Forms/Element/Text/SetLabelCest.php | 31 + .../Forms/Element/Text/SetMessagesCest.php | 31 + .../Forms/Element/Text/SetNameCest.php | 31 + .../Forms/Element/Text/SetUserOptionCest.php | 31 + .../Forms/Element/Text/SetUserOptionsCest.php | 31 + .../Forms/Element/Text/ToStringCest.php | 31 + .../Forms/Element/TextArea/AddFilterCest.php | 31 + .../Element/TextArea/AddValidatorCest.php | 31 + .../Element/TextArea/AddValidatorsCest.php | 31 + .../Element/TextArea/AppendMessageCest.php | 31 + .../Forms/Element/TextArea/ClearCest.php | 31 + .../Forms/Element/TextArea/ConstructCest.php | 31 + .../Element/TextArea/GetAttributeCest.php | 31 + .../Element/TextArea/GetAttributesCest.php | 31 + .../Forms/Element/TextArea/GetDefaultCest.php | 31 + .../Forms/Element/TextArea/GetFiltersCest.php | 31 + .../Forms/Element/TextArea/GetFormCest.php | 31 + .../Forms/Element/TextArea/GetLabelCest.php | 31 + .../Element/TextArea/GetMessagesCest.php | 31 + .../Forms/Element/TextArea/GetNameCest.php | 31 + .../Element/TextArea/GetUserOptionCest.php | 31 + .../Element/TextArea/GetUserOptionsCest.php | 31 + .../Element/TextArea/GetValidatorsCest.php | 31 + .../Forms/Element/TextArea/GetValueCest.php | 31 + .../Element/TextArea/HasMessagesCest.php | 31 + .../Forms/Element/TextArea/LabelCest.php | 31 + .../TextArea/PrepareAttributesCest.php | 31 + .../Forms/Element/TextArea/RenderCest.php | 31 + .../Element/TextArea/SetAttributeCest.php | 31 + .../Element/TextArea/SetAttributesCest.php | 31 + .../Forms/Element/TextArea/SetDefaultCest.php | 31 + .../Forms/Element/TextArea/SetFiltersCest.php | 31 + .../Forms/Element/TextArea/SetFormCest.php | 31 + .../Forms/Element/TextArea/SetLabelCest.php | 31 + .../Element/TextArea/SetMessagesCest.php | 31 + .../Forms/Element/TextArea/SetNameCest.php | 31 + .../Element/TextArea/SetUserOptionCest.php | 31 + .../Element/TextArea/SetUserOptionsCest.php | 31 + .../Forms/Element/TextArea/ToStringCest.php | 31 + tests/integration/Forms/Element/TextCest.php | 216 + .../Forms/Element/ToStringCest.php | 31 + tests/integration/Forms/Form/AddCest.php | 31 + tests/integration/Forms/Form/BindCest.php | 31 + tests/integration/Forms/Form/ClearCest.php | 31 + .../integration/Forms/Form/ConstructCest.php | 31 + tests/integration/Forms/Form/CountCest.php | 31 + tests/integration/Forms/Form/CurrentCest.php | 31 + .../integration/Forms/Form/GetActionCest.php | 31 + tests/integration/Forms/Form/GetCest.php | 31 + tests/integration/Forms/Form/GetDICest.php | 31 + .../Forms/Form/GetElementsCest.php | 31 + .../integration/Forms/Form/GetEntityCest.php | 31 + .../Forms/Form/GetEventsManagerCest.php | 31 + tests/integration/Forms/Form/GetLabelCest.php | 31 + .../Forms/Form/GetMessagesCest.php | 31 + .../Forms/Form/GetMessagesForCest.php | 31 + .../Forms/Form/GetUserOptionCest.php | 31 + .../Forms/Form/GetUserOptionsCest.php | 31 + .../Forms/Form/GetValidationCest.php | 31 + tests/integration/Forms/Form/GetValueCest.php | 31 + tests/integration/Forms/Form/HasCest.php | 31 + .../Forms/Form/HasMessagesForCest.php | 31 + tests/integration/Forms/Form/IsValidCest.php | 31 + tests/integration/Forms/Form/KeyCest.php | 31 + tests/integration/Forms/Form/LabelCest.php | 31 + tests/integration/Forms/Form/NextCest.php | 31 + tests/integration/Forms/Form/RemoveCest.php | 31 + tests/integration/Forms/Form/RenderCest.php | 31 + tests/integration/Forms/Form/RewindCest.php | 31 + .../integration/Forms/Form/SetActionCest.php | 31 + tests/integration/Forms/Form/SetDICest.php | 31 + .../integration/Forms/Form/SetEntityCest.php | 31 + .../Forms/Form/SetEventsManagerCest.php | 31 + .../Forms/Form/SetUserOptionCest.php | 31 + .../Forms/Form/SetUserOptionsCest.php | 31 + .../Forms/Form/SetValidationCest.php | 31 + .../Forms/Form/UnderscoreGetCest.php | 31 + tests/integration/Forms/Form/ValidCest.php | 31 + tests/integration/Forms/FormCest.php | 858 +- tests/integration/Forms/FormElementsCest.php | 357 + tests/integration/Forms/FormsCest.php | 241 + .../integration/Forms/Manager/CreateCest.php | 31 + tests/integration/Forms/Manager/GetCest.php | 31 + tests/integration/Forms/Manager/HasCest.php | 31 + tests/integration/Forms/Manager/SetCest.php | 31 + tests/integration/Mvc/ApplicationCest.php | 41 +- .../Mvc/Collection/BehaviorCest.php | 16 +- tests/integration/Mvc/ControllersCest.php | 17 +- .../DispatcherAfterDispatchCest.php | 270 + .../DispatcherAfterDispatchLoopCest.php | 271 + .../DispatcherAfterExecuteRouteCest.php | 254 + .../DispatcherAfterExecuteRouteMethodCest.php | 231 + .../DispatcherAfterInitializeCest.php | 247 + .../DispatcherBeforeDispatchCest.php | 228 + .../DispatcherBeforeDispatchLoopCest.php | 301 + .../DispatcherBeforeExecuteRouteCest.php | 236 + ...DispatcherBeforeExecuteRouteMethodCest.php | 209 + .../Mvc/Dispatcher/DispatcherCest.php | 867 ++ .../DispatcherInitializeMethodCest.php | 219 + .../Mvc/Dispatcher/ForwardCest.php | 17 +- .../Mvc/Dispatcher/Helper/BaseDispatcher.php | 103 + .../Dispatcher/Helper/DispatcherListener.php | 22 +- ...stAfterExecuteRouteExceptionController.php | 22 +- ...TestAfterExecuteRouteForwardController.php | 59 + ...AfterExecuteRouteReturnFalseController.php | 22 +- ...tBeforeExecuteRouteExceptionController.php | 51 + ...estBeforeExecuteRouteForwardController.php | 54 + ...eforeExecuteRouteReturnFalseController.php | 50 + .../DispatcherTestDefaultController.php | 34 +- ...atcherTestDefaultNoNamespaceController.php | 33 +- .../DispatcherTestDefaultSimpleController.php | 38 + .../DispatcherTestDefaultTwoController.php | 32 +- ...tcherTestInitializeExceptionController.php | 22 +- ...patcherTestInitializeForwardController.php | 59 + ...herTestInitializeReturnFalseController.php | 22 +- .../Mvc/Micro/AfterBindingCest.php | 31 + tests/integration/Mvc/Micro/AfterCest.php | 31 + tests/integration/Mvc/Micro/BeforeCest.php | 31 + .../Mvc/Micro/Collection/DeleteCest.php | 31 + .../Mvc/Micro/Collection/GetCest.php | 31 + .../Mvc/Micro/Collection/GetHandlerCest.php | 31 + .../Mvc/Micro/Collection/GetHandlersCest.php | 31 + .../Mvc/Micro/Collection/GetPrefixCest.php | 31 + .../Mvc/Micro/Collection/HeadCest.php | 31 + .../Mvc/Micro/Collection/IsLazyCest.php | 31 + .../Mvc/Micro/Collection/MapCest.php | 31 + .../Mvc/Micro/Collection/MapViaCest.php | 31 + .../Mvc/Micro/Collection/OptionsCest.php | 31 + .../Mvc/Micro/Collection/PatchCest.php | 31 + .../Mvc/Micro/Collection/PostCest.php | 31 + .../Mvc/Micro/Collection/PutCest.php | 31 + .../Mvc/Micro/Collection/SetHandlerCest.php | 31 + .../Mvc/Micro/Collection/SetLazyCest.php | 31 + .../Mvc/Micro/Collection/SetPrefixCest.php | 31 + tests/integration/Mvc/Micro/ConstructCest.php | 31 + tests/integration/Mvc/Micro/DeleteCest.php | 31 + tests/integration/Mvc/Micro/ErrorCest.php | 31 + tests/integration/Mvc/Micro/FinishCest.php | 31 + .../Mvc/Micro/GetActiveHandlerCest.php | 31 + .../Mvc/Micro/GetBoundModelsCest.php | 31 + tests/integration/Mvc/Micro/GetCest.php | 31 + tests/integration/Mvc/Micro/GetDICest.php | 31 + .../Mvc/Micro/GetEventsManagerCest.php | 31 + .../integration/Mvc/Micro/GetHandlersCest.php | 31 + .../Mvc/Micro/GetModelBinderCest.php | 31 + .../Mvc/Micro/GetReturnedValueCest.php | 31 + tests/integration/Mvc/Micro/GetRouterCest.php | 31 + .../integration/Mvc/Micro/GetServiceCest.php | 31 + .../Mvc/Micro/GetSharedServiceCest.php | 31 + tests/integration/Mvc/Micro/HandleCest.php | 31 + .../integration/Mvc/Micro/HasServiceCest.php | 31 + tests/integration/Mvc/Micro/HeadCest.php | 31 + .../Mvc/Micro/LazyLoader/CallMethodCest.php | 31 + .../Mvc/Micro/LazyLoader/ConstructCest.php | 31 + .../Micro/LazyLoader/GetDefinitionCest.php | 31 + .../Micro/LazyLoader/UnderscoreCallCest.php | 31 + tests/integration/Mvc/Micro/MapCest.php | 31 + .../Mvc/Micro/MicroMvcCollectionsCest.php | 80 + tests/integration/Mvc/Micro/MountCest.php | 31 + tests/integration/Mvc/Micro/NotFoundCest.php | 31 + .../Mvc/Micro/OffsetExistsCest.php | 31 + tests/integration/Mvc/Micro/OffsetGetCest.php | 31 + tests/integration/Mvc/Micro/OffsetSetCest.php | 31 + .../integration/Mvc/Micro/OffsetUnsetCest.php | 31 + tests/integration/Mvc/Micro/OptionsCest.php | 31 + tests/integration/Mvc/Micro/PatchCest.php | 31 + tests/integration/Mvc/Micro/PostCest.php | 31 + tests/integration/Mvc/Micro/PutCest.php | 31 + .../Mvc/Micro/SetActiveHandlerCest.php | 31 + tests/integration/Mvc/Micro/SetDICest.php | 31 + .../Mvc/Micro/SetEventsManagerCest.php | 31 + .../Mvc/Micro/SetModelBinderCest.php | 31 + .../integration/Mvc/Micro/SetServiceCest.php | 31 + tests/integration/Mvc/Micro/StopCest.php | 31 + .../Mvc/Micro/UnderscoreGetCest.php | 31 + tests/integration/Mvc/MicroCest.php | 610 + .../integration/Mvc/Model/AddBehaviorCest.php | 31 + .../Mvc/Model/AppendMessageCest.php | 31 + tests/integration/Mvc/Model/AssignCest.php | 31 + tests/integration/Mvc/Model/AverageCest.php | 31 + .../Mvc/Model/Behavior/ConstructCest.php | 31 + .../Mvc/Model/Behavior/MissingMethodCest.php | 31 + .../Mvc/Model/Behavior/NotifyCest.php | 31 + .../Behavior/SoftDelete/ConstructCest.php | 31 + .../Behavior/SoftDelete/MissingMethodCest.php | 31 + .../Model/Behavior/SoftDelete/NotifyCest.php | 31 + .../Behavior/Timestampable/ConstructCest.php | 31 + .../Timestampable/MissingMethodCest.php | 31 + .../Behavior/Timestampable/NotifyCest.php | 31 + .../Mvc/Model/Binder/BindToHandlerCest.php | 31 + .../Mvc/Model/Binder/ConstructCest.php | 31 + .../Mvc/Model/Binder/GetBoundModelsCest.php | 31 + .../Mvc/Model/Binder/GetCacheCest.php | 31 + .../Model/Binder/GetOriginalValuesCest.php | 31 + .../Mvc/Model/Binder/SetCacheCest.php | 31 + tests/integration/Mvc/Model/BinderCest.php | 219 +- .../integration/Mvc/Model/CloneResultCest.php | 31 + .../Mvc/Model/CloneResultMapCest.php | 31 + .../Mvc/Model/CloneResultMapHydrateCest.php | 31 + tests/integration/Mvc/Model/ConstructCest.php | 31 + tests/integration/Mvc/Model/CountCest.php | 31 + tests/integration/Mvc/Model/CreateCest.php | 31 + .../Mvc/Model/Criteria/AndWhereCest.php | 31 + .../Mvc/Model/Criteria/BetweenWhereCest.php | 31 + .../Mvc/Model/Criteria/BindCest.php | 31 + .../Mvc/Model/Criteria/BindTypesCest.php | 31 + .../Mvc/Model/Criteria/CacheCest.php | 31 + .../Mvc/Model/Criteria/ColumnsCest.php | 31 + .../Mvc/Model/Criteria/ConditionsCest.php | 31 + .../Mvc/Model/Criteria/CreateBuilderCest.php | 31 + .../Mvc/Model/Criteria/DistinctCest.php | 31 + .../Mvc/Model/Criteria/ExecuteCest.php | 31 + .../Mvc/Model/Criteria/ForUpdateCest.php | 31 + .../Mvc/Model/Criteria/FromInputCest.php | 166 +- .../Mvc/Model/Criteria/GetColumnsCest.php | 31 + .../Mvc/Model/Criteria/GetConditionsCest.php | 31 + .../Mvc/Model/Criteria/GetDICest.php | 31 + .../Mvc/Model/Criteria/GetGroupByCest.php | 31 + .../Mvc/Model/Criteria/GetHavingCest.php | 31 + .../Mvc/Model/Criteria/GetLimitCest.php | 31 + .../Mvc/Model/Criteria/GetModelNameCest.php | 31 + .../Mvc/Model/Criteria/GetOrderByCest.php | 31 + .../Mvc/Model/Criteria/GetParamsCest.php | 31 + .../Mvc/Model/Criteria/GetWhereCest.php | 31 + .../Mvc/Model/Criteria/GroupByCest.php | 31 + .../Mvc/Model/Criteria/HavingCest.php | 31 + .../Mvc/Model/Criteria/InWhereCest.php | 31 + .../Mvc/Model/Criteria/InnerJoinCest.php | 31 + .../Mvc/Model/Criteria/JoinCest.php | 31 + .../Mvc/Model/Criteria/LeftJoinCest.php | 31 + .../Mvc/Model/Criteria/LimitCest.php | 31 + .../Model/Criteria/NotBetweenWhereCest.php | 31 + .../Mvc/Model/Criteria/NotInWhereCest.php | 31 + .../Mvc/Model/Criteria/OrWhereCest.php | 31 + .../Mvc/Model/Criteria/OrderByCest.php | 31 + .../Mvc/Model/Criteria/RightJoinCest.php | 31 + .../Mvc/Model/Criteria/SetDICest.php | 31 + .../Mvc/Model/Criteria/SetModelNameCest.php | 31 + .../Mvc/Model/Criteria/SharedLockCest.php | 31 + .../Mvc/Model/Criteria/WhereCest.php | 31 + tests/integration/Mvc/Model/CriteriaCest.php | 262 +- tests/integration/Mvc/Model/DeleteCest.php | 31 + tests/integration/Mvc/Model/DumpCest.php | 31 + .../Mvc/Model/DynamicOperationsCest.php | 198 + tests/integration/Mvc/Model/FindCest.php | 31 + tests/integration/Mvc/Model/FindFirstCest.php | 31 + .../Mvc/Model/FireEventCancelCest.php | 31 + tests/integration/Mvc/Model/FireEventCest.php | 31 + .../Mvc/Model/GetChangedFieldsCest.php | 31 + tests/integration/Mvc/Model/GetDICest.php | 31 + .../Mvc/Model/GetDirtyStateCest.php | 31 + .../Mvc/Model/GetEventsManagerCest.php | 31 + .../integration/Mvc/Model/GetMessagesCest.php | 31 + .../Mvc/Model/GetModelsManagerCest.php | 31 + .../Mvc/Model/GetModelsMetaDataCest.php | 31 + .../Mvc/Model/GetOldSnapshotDataCest.php | 31 + .../Mvc/Model/GetOperationMadeCest.php | 31 + .../Mvc/Model/GetReadConnectionCest.php | 31 + .../Model/GetReadConnectionServiceCest.php | 31 + .../integration/Mvc/Model/GetRelatedCest.php | 31 + tests/integration/Mvc/Model/GetSchemaCest.php | 31 + .../Mvc/Model/GetSnapshotDataCest.php | 31 + tests/integration/Mvc/Model/GetSourceCest.php | 31 + .../Mvc/Model/GetTransactionCest.php | 31 + .../Mvc/Model/GetUpdatedFieldsCest.php | 31 + .../Mvc/Model/GetWriteConnectionCest.php | 31 + .../Model/GetWriteConnectionServiceCest.php | 31 + .../integration/Mvc/Model/HasChangedCest.php | 31 + .../Mvc/Model/HasSnapshotDataCest.php | 31 + .../integration/Mvc/Model/HasUpdatedCest.php | 31 + .../Mvc/Model/IsRelationshipLoadedCest.php | 31 + .../Mvc/Model/JsonSerializeCest.php | 31 + .../Mvc/Model/Manager/AddBehaviorCest.php | 31 + .../Mvc/Model/Manager/AddBelongsToCest.php | 31 + .../Mvc/Model/Manager/AddHasManyCest.php | 31 + .../Model/Manager/AddHasManyToManyCest.php | 31 + .../Mvc/Model/Manager/AddHasOneCest.php | 31 + .../Manager/ClearReusableObjectsCest.php | 31 + .../Mvc/Model/Manager/CreateBuilderCest.php | 31 + .../Mvc/Model/Manager/CreateQueryCest.php | 31 + .../Mvc/Model/Manager/DestructCest.php | 31 + .../Mvc/Model/Manager/ExecuteQueryCest.php | 31 + .../Mvc/Model/Manager/ExistsBelongsToCest.php | 31 + .../Mvc/Model/Manager/ExistsHasManyCest.php | 31 + .../Model/Manager/ExistsHasManyToManyCest.php | 31 + .../Mvc/Model/Manager/ExistsHasOneCest.php | 31 + .../Mvc/Model/Manager/GetBelongsToCest.php | 31 + .../Model/Manager/GetBelongsToRecordsCest.php | 31 + .../Manager/GetCustomEventsManagerCest.php | 31 + .../Mvc/Model/Manager/GetDICest.php | 31 + .../Model/Manager/GetEventsManagerCest.php | 31 + .../Mvc/Model/Manager/GetHasManyCest.php | 31 + .../Model/Manager/GetHasManyRecordsCest.php | 31 + .../Model/Manager/GetHasManyToManyCest.php | 31 + .../Model/Manager/GetHasOneAndHasManyCest.php | 31 + .../Mvc/Model/Manager/GetHasOneCest.php | 31 + .../Model/Manager/GetHasOneRecordsCest.php | 31 + .../Model/Manager/GetLastInitializedCest.php | 31 + .../Mvc/Model/Manager/GetLastQueryCest.php | 31 + .../Mvc/Model/Manager/GetModelPrefixCest.php | 31 + .../Mvc/Model/Manager/GetModelSchemaCest.php | 31 + .../Mvc/Model/Manager/GetModelSourceCest.php | 31 + .../Model/Manager/GetNamespaceAliasCest.php | 31 + .../Model/Manager/GetNamespaceAliasesCest.php | 31 + .../Model/Manager/GetReadConnectionCest.php | 31 + .../Manager/GetReadConnectionServiceCest.php | 31 + .../Model/Manager/GetRelationByAliasCest.php | 31 + .../Model/Manager/GetRelationRecordsCest.php | 31 + .../Model/Manager/GetRelationsBetweenCest.php | 31 + .../Mvc/Model/Manager/GetRelationsCest.php | 31 + .../Model/Manager/GetReusableRecordsCest.php | 31 + .../Model/Manager/GetWriteConnectionCest.php | 31 + .../Manager/GetWriteConnectionServiceCest.php | 31 + .../Mvc/Model/Manager/InitializeCest.php | 31 + .../Mvc/Model/Manager/IsInitializedCest.php | 31 + .../Model/Manager/IsKeepingSnapshotsCest.php | 31 + .../Manager/IsUsingDynamicUpdateCest.php | 31 + .../Manager/IsVisibleModelPropertyCest.php | 31 + .../Mvc/Model/Manager/KeepSnapshotsCest.php | 31 + .../Mvc/Model/Manager/LoadCest.php | 31 + .../Mvc/Model/Manager/MissingMethodCest.php | 31 + .../Mvc/Model/Manager/NotifyEventCest.php | 31 + .../Manager/RegisterNamespaceAliasCest.php | 31 + .../Mvc/Model/Manager/RelationsCest.php | 82 + .../Manager/SetConnectionServiceCest.php | 31 + .../Manager/SetCustomEventsManagerCest.php | 31 + .../Mvc/Model/Manager/SetDICest.php | 31 + .../Model/Manager/SetEventsManagerCest.php | 31 + .../Mvc/Model/Manager/SetModelPrefixCest.php | 31 + .../Mvc/Model/Manager/SetModelSchemaCest.php | 31 + .../Mvc/Model/Manager/SetModelSourceCest.php | 31 + .../Manager/SetReadConnectionServiceCest.php | 31 + .../Model/Manager/SetReusableRecordsCest.php | 31 + .../Manager/SetWriteConnectionServiceCest.php | 31 + .../UnderscoreGetConnectionServiceCest.php | 31 + .../Model/Manager/UseDynamicUpdateCest.php | 31 + tests/integration/Mvc/Model/ManagerCest.php | 133 + tests/integration/Mvc/Model/MaximumCest.php | 31 + .../Mvc/Model/MetaData/Apcu/ConstructCest.php | 31 + .../Model/MetaData/Apcu/GetAttributesCest.php | 31 + .../Apcu/GetAutomaticCreateAttributesCest.php | 31 + .../Apcu/GetAutomaticUpdateAttributesCest.php | 31 + .../Model/MetaData/Apcu/GetBindTypesCest.php | 31 + .../Model/MetaData/Apcu/GetColumnMapCest.php | 31 + .../Mvc/Model/MetaData/Apcu/GetDICest.php | 31 + .../Model/MetaData/Apcu/GetDataTypesCest.php | 31 + .../MetaData/Apcu/GetDataTypesNumericCest.php | 31 + .../MetaData/Apcu/GetDefaultValuesCest.php | 31 + .../Apcu/GetEmptyStringAttributesCest.php | 31 + .../MetaData/Apcu/GetIdentityFieldCest.php | 31 + .../Apcu/GetNonPrimaryKeyAttributesCest.php | 31 + .../Apcu/GetNotNullAttributesCest.php | 31 + .../Apcu/GetPrimaryKeyAttributesCest.php | 31 + .../MetaData/Apcu/GetReverseColumnMapCest.php | 31 + .../Model/MetaData/Apcu/GetStrategyCest.php | 31 + .../Model/MetaData/Apcu/HasAttributeCest.php | 31 + .../Mvc/Model/MetaData/Apcu/IsEmptyCest.php | 31 + .../Mvc/Model/MetaData/Apcu/ReadCest.php | 31 + .../Model/MetaData/Apcu/ReadColumnMapCest.php | 31 + .../MetaData/Apcu/ReadColumnMapIndexCest.php | 31 + .../Model/MetaData/Apcu/ReadMetaDataCest.php | 31 + .../MetaData/Apcu/ReadMetaDataIndexCest.php | 31 + .../Mvc/Model/MetaData/Apcu/ResetCest.php | 31 + .../Apcu/SetAutomaticCreateAttributesCest.php | 31 + .../Apcu/SetAutomaticUpdateAttributesCest.php | 31 + .../Mvc/Model/MetaData/Apcu/SetDICest.php | 31 + .../Apcu/SetEmptyStringAttributesCest.php | 31 + .../Model/MetaData/Apcu/SetStrategyCest.php | 31 + .../Mvc/Model/MetaData/Apcu/WriteCest.php | 31 + .../MetaData/Apcu/WriteMetaDataIndexCest.php | 31 + .../Mvc/Model/MetaData/ApcuCest.php | 74 + .../Model/MetaData/Files/ConstructCest.php | 31 + .../MetaData/Files/GetAttributesCest.php | 31 + .../GetAutomaticCreateAttributesCest.php | 31 + .../GetAutomaticUpdateAttributesCest.php | 31 + .../Model/MetaData/Files/GetBindTypesCest.php | 31 + .../Model/MetaData/Files/GetColumnMapCest.php | 31 + .../Mvc/Model/MetaData/Files/GetDICest.php | 31 + .../Model/MetaData/Files/GetDataTypesCest.php | 31 + .../Files/GetDataTypesNumericCest.php | 31 + .../MetaData/Files/GetDefaultValuesCest.php | 31 + .../Files/GetEmptyStringAttributesCest.php | 31 + .../MetaData/Files/GetIdentityFieldCest.php | 31 + .../Files/GetNonPrimaryKeyAttributesCest.php | 31 + .../Files/GetNotNullAttributesCest.php | 31 + .../Files/GetPrimaryKeyAttributesCest.php | 31 + .../Files/GetReverseColumnMapCest.php | 31 + .../Model/MetaData/Files/GetStrategyCest.php | 31 + .../Model/MetaData/Files/HasAttributeCest.php | 31 + .../Mvc/Model/MetaData/Files/IsEmptyCest.php | 31 + .../Mvc/Model/MetaData/Files/ReadCest.php | 31 + .../MetaData/Files/ReadColumnMapCest.php | 31 + .../MetaData/Files/ReadColumnMapIndexCest.php | 31 + .../Model/MetaData/Files/ReadMetaDataCest.php | 31 + .../MetaData/Files/ReadMetaDataIndexCest.php | 31 + .../Mvc/Model/MetaData/Files/ResetCest.php | 31 + .../SetAutomaticCreateAttributesCest.php | 31 + .../SetAutomaticUpdateAttributesCest.php | 31 + .../Mvc/Model/MetaData/Files/SetDICest.php | 31 + .../Files/SetEmptyStringAttributesCest.php | 31 + .../Model/MetaData/Files/SetStrategyCest.php | 31 + .../Mvc/Model/MetaData/Files/WriteCest.php | 31 + .../MetaData/Files/WriteMetaDataIndexCest.php | 31 + .../Mvc/Model/MetaData/FilesCest.php | 79 + .../Mvc/Model/MetaData/GetAttributesCest.php | 31 + .../GetAutomaticCreateAttributesCest.php | 31 + .../GetAutomaticUpdateAttributesCest.php | 31 + .../Mvc/Model/MetaData/GetBindTypesCest.php | 31 + .../Mvc/Model/MetaData/GetColumnMapCest.php | 31 + .../Mvc/Model/MetaData/GetDICest.php | 31 + .../Mvc/Model/MetaData/GetDataTypesCest.php | 31 + .../MetaData/GetDataTypesNumericCest.php | 31 + .../Model/MetaData/GetDefaultValuesCest.php | 31 + .../MetaData/GetEmptyStringAttributesCest.php | 31 + .../Model/MetaData/GetIdentityFieldCest.php | 31 + .../GetNonPrimaryKeyAttributesCest.php | 31 + .../MetaData/GetNotNullAttributesCest.php | 31 + .../MetaData/GetPrimaryKeyAttributesCest.php | 31 + .../MetaData/GetReverseColumnMapCest.php | 31 + .../Mvc/Model/MetaData/GetStrategyCest.php | 31 + .../Mvc/Model/MetaData/HasAttributeCest.php | 31 + .../Mvc/Model/MetaData/IsEmptyCest.php | 31 + .../MetaData/Libmemcached/ConstructCest.php | 31 + .../Libmemcached/GetAttributesCest.php | 31 + .../GetAutomaticCreateAttributesCest.php | 32 + .../GetAutomaticUpdateAttributesCest.php | 32 + .../Libmemcached/GetBindTypesCest.php | 31 + .../Libmemcached/GetColumnMapCest.php | 31 + .../Model/MetaData/Libmemcached/GetDICest.php | 31 + .../Libmemcached/GetDataTypesCest.php | 31 + .../Libmemcached/GetDataTypesNumericCest.php | 31 + .../Libmemcached/GetDefaultValuesCest.php | 31 + .../GetEmptyStringAttributesCest.php | 32 + .../Libmemcached/GetIdentityFieldCest.php | 31 + .../GetNonPrimaryKeyAttributesCest.php | 32 + .../Libmemcached/GetNotNullAttributesCest.php | 31 + .../GetPrimaryKeyAttributesCest.php | 32 + .../Libmemcached/GetReverseColumnMapCest.php | 31 + .../MetaData/Libmemcached/GetStrategyCest.php | 31 + .../Libmemcached/HasAttributeCest.php | 31 + .../MetaData/Libmemcached/IsEmptyCest.php | 31 + .../Model/MetaData/Libmemcached/ReadCest.php | 31 + .../Libmemcached/ReadColumnMapCest.php | 31 + .../Libmemcached/ReadColumnMapIndexCest.php | 31 + .../Libmemcached/ReadMetaDataCest.php | 31 + .../Libmemcached/ReadMetaDataIndexCest.php | 31 + .../Model/MetaData/Libmemcached/ResetCest.php | 31 + .../SetAutomaticCreateAttributesCest.php | 32 + .../SetAutomaticUpdateAttributesCest.php | 32 + .../Model/MetaData/Libmemcached/SetDICest.php | 31 + .../SetEmptyStringAttributesCest.php | 32 + .../MetaData/Libmemcached/SetStrategyCest.php | 31 + .../Model/MetaData/Libmemcached/WriteCest.php | 31 + .../Libmemcached/WriteMetaDataIndexCest.php | 31 + .../Mvc/Model/MetaData/LibmemcachedCest.php | 77 + .../Model/MetaData/Memory/ConstructCest.php | 31 + .../MetaData/Memory/GetAttributesCest.php | 31 + .../GetAutomaticCreateAttributesCest.php | 31 + .../GetAutomaticUpdateAttributesCest.php | 31 + .../MetaData/Memory/GetBindTypesCest.php | 31 + .../MetaData/Memory/GetColumnMapCest.php | 31 + .../Mvc/Model/MetaData/Memory/GetDICest.php | 31 + .../MetaData/Memory/GetDataTypesCest.php | 31 + .../Memory/GetDataTypesNumericCest.php | 31 + .../MetaData/Memory/GetDefaultValuesCest.php | 31 + .../Memory/GetEmptyStringAttributesCest.php | 31 + .../MetaData/Memory/GetIdentityFieldCest.php | 31 + .../Memory/GetNonPrimaryKeyAttributesCest.php | 31 + .../Memory/GetNotNullAttributesCest.php | 31 + .../Memory/GetPrimaryKeyAttributesCest.php | 31 + .../Memory/GetReverseColumnMapCest.php | 31 + .../Model/MetaData/Memory/GetStrategyCest.php | 31 + .../MetaData/Memory/HasAttributeCest.php | 31 + .../Mvc/Model/MetaData/Memory/IsEmptyCest.php | 31 + .../Mvc/Model/MetaData/Memory/ReadCest.php | 31 + .../MetaData/Memory/ReadColumnMapCest.php | 31 + .../Memory/ReadColumnMapIndexCest.php | 31 + .../MetaData/Memory/ReadMetaDataCest.php | 31 + .../MetaData/Memory/ReadMetaDataIndexCest.php | 31 + .../Mvc/Model/MetaData/Memory/ResetCest.php | 31 + .../SetAutomaticCreateAttributesCest.php | 31 + .../SetAutomaticUpdateAttributesCest.php | 31 + .../Mvc/Model/MetaData/Memory/SetDICest.php | 31 + .../Memory/SetEmptyStringAttributesCest.php | 31 + .../Model/MetaData/Memory/SetStrategyCest.php | 31 + .../Mvc/Model/MetaData/Memory/WriteCest.php | 31 + .../Memory/WriteMetaDataIndexCest.php | 31 + .../Mvc/Model/MetaData/MemoryCest.php | 97 + .../Mvc/Model/MetaData/ReadCest.php | 31 + .../Mvc/Model/MetaData/ReadColumnMapCest.php | 31 + .../Model/MetaData/ReadColumnMapIndexCest.php | 31 + .../Mvc/Model/MetaData/ReadMetaDataCest.php | 31 + .../Model/MetaData/ReadMetaDataIndexCest.php | 31 + .../Model/MetaData/Redis/ConstructCest.php | 31 + .../MetaData/Redis/GetAttributesCest.php | 31 + .../GetAutomaticCreateAttributesCest.php | 31 + .../GetAutomaticUpdateAttributesCest.php | 31 + .../Model/MetaData/Redis/GetBindTypesCest.php | 31 + .../Model/MetaData/Redis/GetColumnMapCest.php | 31 + .../Mvc/Model/MetaData/Redis/GetDICest.php | 31 + .../Model/MetaData/Redis/GetDataTypesCest.php | 31 + .../Redis/GetDataTypesNumericCest.php | 31 + .../MetaData/Redis/GetDefaultValuesCest.php | 31 + .../Redis/GetEmptyStringAttributesCest.php | 31 + .../MetaData/Redis/GetIdentityFieldCest.php | 31 + .../Redis/GetNonPrimaryKeyAttributesCest.php | 31 + .../Redis/GetNotNullAttributesCest.php | 31 + .../Redis/GetPrimaryKeyAttributesCest.php | 31 + .../Redis/GetReverseColumnMapCest.php | 31 + .../Model/MetaData/Redis/GetStrategyCest.php | 31 + .../Model/MetaData/Redis/HasAttributeCest.php | 31 + .../Mvc/Model/MetaData/Redis/IsEmptyCest.php | 31 + .../Mvc/Model/MetaData/Redis/ReadCest.php | 31 + .../MetaData/Redis/ReadColumnMapCest.php | 31 + .../MetaData/Redis/ReadColumnMapIndexCest.php | 31 + .../Model/MetaData/Redis/ReadMetaDataCest.php | 31 + .../MetaData/Redis/ReadMetaDataIndexCest.php | 31 + .../Mvc/Model/MetaData/Redis/ResetCest.php | 31 + .../SetAutomaticCreateAttributesCest.php | 31 + .../SetAutomaticUpdateAttributesCest.php | 31 + .../Mvc/Model/MetaData/Redis/SetDICest.php | 31 + .../Redis/SetEmptyStringAttributesCest.php | 31 + .../Model/MetaData/Redis/SetStrategyCest.php | 31 + .../Mvc/Model/MetaData/Redis/WriteCest.php | 31 + .../MetaData/Redis/WriteMetaDataIndexCest.php | 31 + .../Mvc/Model/MetaData/RedisCest.php | 73 + .../Mvc/Model/MetaData/ResetCest.php | 31 + .../Model/MetaData/Session/ConstructCest.php | 31 + .../MetaData/Session/GetAttributesCest.php | 31 + .../GetAutomaticCreateAttributesCest.php | 32 + .../GetAutomaticUpdateAttributesCest.php | 32 + .../MetaData/Session/GetBindTypesCest.php | 31 + .../MetaData/Session/GetColumnMapCest.php | 31 + .../Mvc/Model/MetaData/Session/GetDICest.php | 31 + .../MetaData/Session/GetDataTypesCest.php | 31 + .../Session/GetDataTypesNumericCest.php | 31 + .../MetaData/Session/GetDefaultValuesCest.php | 31 + .../Session/GetEmptyStringAttributesCest.php | 31 + .../MetaData/Session/GetIdentityFieldCest.php | 31 + .../GetNonPrimaryKeyAttributesCest.php | 31 + .../Session/GetNotNullAttributesCest.php | 31 + .../Session/GetPrimaryKeyAttributesCest.php | 31 + .../Session/GetReverseColumnMapCest.php | 31 + .../MetaData/Session/GetStrategyCest.php | 31 + .../MetaData/Session/HasAttributeCest.php | 31 + .../Model/MetaData/Session/IsEmptyCest.php | 31 + .../Mvc/Model/MetaData/Session/ReadCest.php | 31 + .../MetaData/Session/ReadColumnMapCest.php | 31 + .../Session/ReadColumnMapIndexCest.php | 31 + .../MetaData/Session/ReadMetaDataCest.php | 31 + .../Session/ReadMetaDataIndexCest.php | 31 + .../Mvc/Model/MetaData/Session/ResetCest.php | 31 + .../SetAutomaticCreateAttributesCest.php | 32 + .../SetAutomaticUpdateAttributesCest.php | 32 + .../Mvc/Model/MetaData/Session/SetDICest.php | 31 + .../Session/SetEmptyStringAttributesCest.php | 31 + .../MetaData/Session/SetStrategyCest.php | 31 + .../Mvc/Model/MetaData/Session/WriteCest.php | 31 + .../Session/WriteMetaDataIndexCest.php | 31 + .../SetAutomaticCreateAttributesCest.php | 31 + .../SetAutomaticUpdateAttributesCest.php | 31 + .../Mvc/Model/MetaData/SetDICest.php | 31 + .../MetaData/SetEmptyStringAttributesCest.php | 31 + .../Mvc/Model/MetaData/SetStrategyCest.php | 31 + .../Annotations/GetColumnMapsCest.php | 31 + .../Strategy/Annotations/GetMetaDataCest.php | 31 + .../MetaData/Strategy/AnnotationsCest.php | 201 + .../Introspection/GetColumnMapsCest.php | 32 + .../Introspection/GetMetaDataCest.php | 31 + .../Mvc/Model/MetaData/WriteCest.php | 31 + .../Model/MetaData/WriteMetaDataIndexCest.php | 31 + tests/integration/Mvc/Model/MinimumCest.php | 31 + .../Mvc/Model/ModelsCalculationsCest.php | 296 + .../Mvc/Model/ModelsEventsCest.php | 180 + .../Mvc/Model/ModelsForeignKeysCest.php | 183 + .../Mvc/Model/ModelsMetadataCest.php | 261 + .../Mvc/Model/ModelsMetadataStrategyCest.php | 122 + .../Mvc/Model/ModelsQueryExecuteCest.php | 946 ++ .../Mvc/Model/ModelsRelationsCest.php | 320 + .../Mvc/Model/ModelsRelationsMagicCest.php | 138 + .../Mvc/Model/ModelsResultsetCacheCest.php | 236 + .../Model/ModelsResultsetCacheStaticCest.php | 76 + .../Mvc/Model/ModelsResultsetCest.php | 507 + .../Mvc/Model/ModelsValidatorsCest.php | 174 + .../Mvc/Model/Query/Builder/AddFromCest.php | 31 + .../Mvc/Model/Query/Builder/AndHavingCest.php | 31 + .../Mvc/Model/Query/Builder/AndWhereCest.php | 31 + .../Model/Query/Builder/AutoescapeCest.php | 31 + .../Model/Query/Builder/BetweenHavingCest.php | 31 + .../Model/Query/Builder/BetweenWhereCest.php | 31 + .../Mvc/Model/Query/Builder/ColumnsCest.php | 31 + .../Mvc/Model/Query/Builder/ConstructCest.php | 31 + .../Mvc/Model/Query/Builder/DistinctCest.php | 31 + .../Mvc/Model/Query/Builder/ForUpdateCest.php | 31 + .../Mvc/Model/Query/Builder/FromCest.php | 31 + .../Model/Query/Builder/GetColumnsCest.php | 31 + .../Mvc/Model/Query/Builder/GetDICest.php | 31 + .../Model/Query/Builder/GetDistinctCest.php | 31 + .../Mvc/Model/Query/Builder/GetFromCest.php | 31 + .../Model/Query/Builder/GetGroupByCest.php | 31 + .../Mvc/Model/Query/Builder/GetHavingCest.php | 31 + .../Mvc/Model/Query/Builder/GetJoinsCest.php | 31 + .../Mvc/Model/Query/Builder/GetLimitCest.php | 31 + .../Mvc/Model/Query/Builder/GetOffsetCest.php | 31 + .../Model/Query/Builder/GetOrderByCest.php | 31 + .../Mvc/Model/Query/Builder/GetPhqlCest.php | 31 + .../Mvc/Model/Query/Builder/GetQueryCest.php | 31 + .../Mvc/Model/Query/Builder/GetWhereCest.php | 31 + .../Mvc/Model/Query/Builder/GroupByCest.php | 31 + .../Mvc/Model/Query/Builder/HavingCest.php | 31 + .../Mvc/Model/Query/Builder/InHavingCest.php | 31 + .../Mvc/Model/Query/Builder/InWhereCest.php | 31 + .../Mvc/Model/Query/Builder/InnerJoinCest.php | 31 + .../Mvc/Model/Query/Builder/JoinCest.php | 31 + .../Mvc/Model/Query/Builder/LeftJoinCest.php | 31 + .../Mvc/Model/Query/Builder/LimitCest.php | 31 + .../Query/Builder/NotBetweenHavingCest.php | 31 + .../Query/Builder/NotBetweenWhereCest.php | 31 + .../Model/Query/Builder/NotInHavingCest.php | 31 + .../Model/Query/Builder/NotInWhereCest.php | 31 + .../Mvc/Model/Query/Builder/OffsetCest.php | 31 + .../Mvc/Model/Query/Builder/OrHavingCest.php | 31 + .../Mvc/Model/Query/Builder/OrWhereCest.php | 31 + .../Mvc/Model/Query/Builder/OrderByCest.php | 31 + .../Mvc/Model/Query/Builder/RightJoinCest.php | 31 + .../Mvc/Model/Query/Builder/SetDICest.php | 31 + .../Mvc/Model/Query/Builder/WhereCest.php | 31 + .../Mvc/Model/Query/BuilderCest.php | 758 +- .../Mvc/Model/Query/BuilderOrderCest.php | 97 + .../integration/Mvc/Model/Query/CacheCest.php | 31 + .../integration/Mvc/Model/Query/CleanCest.php | 31 + .../Mvc/Model/Query/ConstructCest.php | 31 + .../Mvc/Model/Query/ExecuteCest.php | 31 + .../Mvc/Model/Query/GetBindParamsCest.php | 31 + .../Mvc/Model/Query/GetBindTypesCest.php | 31 + .../Mvc/Model/Query/GetCacheCest.php | 31 + .../Mvc/Model/Query/GetCacheOptionsCest.php | 31 + .../integration/Mvc/Model/Query/GetDICest.php | 31 + .../Mvc/Model/Query/GetIntermediateCest.php | 31 + .../Mvc/Model/Query/GetSingleResultCest.php | 31 + .../Mvc/Model/Query/GetSqlCest.php | 31 + .../Mvc/Model/Query/GetTransactionCest.php | 31 + .../Mvc/Model/Query/GetTypeCest.php | 31 + .../Mvc/Model/Query/GetUniqueRowCest.php | 31 + .../Mvc/Model/Query/Lang/ParsePHQLCest.php | 31 + .../integration/Mvc/Model/Query/ParseCest.php | 31 + .../Mvc/Model/Query/SetBindParamsCest.php | 31 + .../Mvc/Model/Query/SetBindTypesCest.php | 31 + .../integration/Mvc/Model/Query/SetDICest.php | 31 + .../Mvc/Model/Query/SetIntermediateCest.php | 31 + .../Mvc/Model/Query/SetSharedLockCest.php | 31 + .../Mvc/Model/Query/SetTransactionCest.php | 31 + .../Mvc/Model/Query/SetTypeCest.php | 31 + .../Mvc/Model/Query/SetUniqueRowCest.php | 31 + .../Mvc/Model/Query/Status/ConstructCest.php | 31 + .../Model/Query/Status/GetMessagesCest.php | 31 + .../Mvc/Model/Query/Status/GetModelCest.php | 31 + .../Mvc/Model/Query/Status/SuccessCest.php | 31 + tests/integration/Mvc/Model/QueryCest.php | 31 + tests/integration/Mvc/Model/QueryOldCest.php | 7923 ++++++++++ .../Mvc/Model/ReadAttributeCest.php | 31 + tests/integration/Mvc/Model/RefreshCest.php | 31 + .../Mvc/Model/Relation/ConstructCest.php | 31 + .../Mvc/Model/Relation/GetFieldsCest.php | 31 + .../Mvc/Model/Relation/GetForeignKeyCest.php | 31 + .../Relation/GetIntermediateFieldsCest.php | 31 + .../Relation/GetIntermediateModelCest.php | 31 + .../GetIntermediateReferencedFieldsCest.php | 31 + .../Mvc/Model/Relation/GetOptionCest.php | 31 + .../Mvc/Model/Relation/GetOptionsCest.php | 31 + .../Mvc/Model/Relation/GetParamsCest.php | 31 + .../Relation/GetReferencedFieldsCest.php | 31 + .../Model/Relation/GetReferencedModelCest.php | 31 + .../Mvc/Model/Relation/GetTypeCest.php | 31 + .../Mvc/Model/Relation/IsForeignKeyCest.php | 31 + .../Mvc/Model/Relation/IsReusableCest.php | 31 + .../Mvc/Model/Relation/IsThroughCest.php | 31 + .../Relation/SetIntermediateRelationCest.php | 31 + tests/integration/Mvc/Model/RelationsCest.php | 69 + .../Model/Resultset/Complex/ConstructCest.php | 31 + .../Mvc/Model/Resultset/Complex/CountCest.php | 31 + .../Model/Resultset/Complex/CurrentCest.php | 31 + .../Model/Resultset/Complex/DeleteCest.php | 31 + .../Model/Resultset/Complex/FilterCest.php | 31 + .../Model/Resultset/Complex/GetCacheCest.php | 31 + .../Model/Resultset/Complex/GetFirstCest.php | 31 + .../Resultset/Complex/GetHydrateModeCest.php | 31 + .../Model/Resultset/Complex/GetLastCest.php | 31 + .../Resultset/Complex/GetMessagesCest.php | 31 + .../Model/Resultset/Complex/GetTypeCest.php | 31 + .../Model/Resultset/Complex/IsFreshCest.php | 31 + .../Resultset/Complex/JsonSerializeCest.php | 31 + .../Mvc/Model/Resultset/Complex/KeyCest.php | 31 + .../Mvc/Model/Resultset/Complex/NextCest.php | 31 + .../Resultset/Complex/OffsetExistsCest.php | 31 + .../Model/Resultset/Complex/OffsetGetCest.php | 31 + .../Model/Resultset/Complex/OffsetSetCest.php | 31 + .../Resultset/Complex/OffsetUnsetCest.php | 31 + .../Model/Resultset/Complex/RewindCest.php | 31 + .../Mvc/Model/Resultset/Complex/SeekCest.php | 31 + .../Model/Resultset/Complex/SerializeCest.php | 31 + .../Resultset/Complex/SetHydrateModeCest.php | 31 + .../Resultset/Complex/SetIsFreshCest.php | 31 + .../Model/Resultset/Complex/ToArrayCest.php | 31 + .../Resultset/Complex/UnserializeCest.php | 31 + .../Model/Resultset/Complex/UpdateCest.php | 31 + .../Mvc/Model/Resultset/Complex/ValidCest.php | 31 + .../Mvc/Model/Resultset/ComplexCest.php | 88 + .../Mvc/Model/Resultset/ConstructCest.php | 31 + .../Mvc/Model/Resultset/CountCest.php | 31 + .../Mvc/Model/Resultset/CurrentCest.php | 31 + .../Mvc/Model/Resultset/DeleteCest.php | 31 + .../Mvc/Model/Resultset/FilterCest.php | 31 + .../Mvc/Model/Resultset/GetCacheCest.php | 31 + .../Mvc/Model/Resultset/GetFirstCest.php | 31 + .../Model/Resultset/GetHydrateModeCest.php | 31 + .../Mvc/Model/Resultset/GetLastCest.php | 31 + .../Mvc/Model/Resultset/GetMessagesCest.php | 31 + .../Mvc/Model/Resultset/GetTypeCest.php | 31 + .../Mvc/Model/Resultset/IsFreshCest.php | 31 + .../Mvc/Model/Resultset/JsonSerializeCest.php | 31 + .../Mvc/Model/Resultset/KeyCest.php | 31 + .../Mvc/Model/Resultset/NextCest.php | 31 + .../Mvc/Model/Resultset/OffsetExistsCest.php | 31 + .../Mvc/Model/Resultset/OffsetGetCest.php | 31 + .../Mvc/Model/Resultset/OffsetSetCest.php | 31 + .../Mvc/Model/Resultset/OffsetUnsetCest.php | 31 + .../Mvc/Model/Resultset/RewindCest.php | 31 + .../Mvc/Model/Resultset/SeekCest.php | 31 + .../Mvc/Model/Resultset/SerializeCest.php | 31 + .../Model/Resultset/SetHydrateModeCest.php | 579 + .../Mvc/Model/Resultset/SetIsFreshCest.php | 31 + .../Model/Resultset/Simple/ConstructCest.php | 31 + .../Mvc/Model/Resultset/Simple/CountCest.php | 31 + .../Model/Resultset/Simple/CurrentCest.php | 31 + .../Mvc/Model/Resultset/Simple/DeleteCest.php | 31 + .../Mvc/Model/Resultset/Simple/FilterCest.php | 31 + .../Model/Resultset/Simple/GetCacheCest.php | 31 + .../Model/Resultset/Simple/GetFirstCest.php | 31 + .../Resultset/Simple/GetHydrateModeCest.php | 31 + .../Model/Resultset/Simple/GetLastCest.php | 31 + .../Resultset/Simple/GetMessagesCest.php | 31 + .../Model/Resultset/Simple/GetTypeCest.php | 31 + .../Model/Resultset/Simple/IsFreshCest.php | 31 + .../Resultset/Simple/JsonSerializeCest.php | 31 + .../Mvc/Model/Resultset/Simple/KeyCest.php | 31 + .../Mvc/Model/Resultset/Simple/NextCest.php | 31 + .../Resultset/Simple/OffsetExistsCest.php | 31 + .../Model/Resultset/Simple/OffsetGetCest.php | 31 + .../Model/Resultset/Simple/OffsetSetCest.php | 31 + .../Resultset/Simple/OffsetUnsetCest.php | 31 + .../Mvc/Model/Resultset/Simple/RewindCest.php | 31 + .../Mvc/Model/Resultset/Simple/SeekCest.php | 31 + .../Model/Resultset/Simple/SerializeCest.php | 31 + .../Resultset/Simple/SetHydrateModeCest.php | 31 + .../Model/Resultset/Simple/SetIsFreshCest.php | 31 + .../Model/Resultset/Simple/ToArrayCest.php | 31 + .../Resultset/Simple/UnserializeCest.php | 31 + .../Mvc/Model/Resultset/Simple/UpdateCest.php | 31 + .../Mvc/Model/Resultset/Simple/ValidCest.php | 31 + .../Mvc/Model/Resultset/SimpleCest.php | 259 + .../Mvc/Model/Resultset/ToArrayCest.php | 31 + .../Mvc/Model/Resultset/UnserializeCest.php | 31 + .../Mvc/Model/Resultset/UpdateCest.php | 31 + .../Mvc/Model/Resultset/ValidCest.php | 31 + .../Mvc/Model/ResultsetClassCest.php | 86 + .../Mvc/Model/Row/JsonSerializeCest.php | 31 + .../Mvc/Model/Row/OffsetExistsCest.php | 31 + .../Mvc/Model/Row/OffsetGetCest.php | 31 + .../Mvc/Model/Row/OffsetSetCest.php | 31 + .../Mvc/Model/Row/OffsetUnsetCest.php | 31 + .../Mvc/Model/Row/ReadAttributeCest.php | 31 + .../Mvc/Model/Row/SetDirtyStateCest.php | 31 + .../integration/Mvc/Model/Row/ToArrayCest.php | 31 + .../Mvc/Model/Row/WriteAttributeCest.php | 31 + tests/integration/Mvc/Model/SaveCest.php | 31 + tests/integration/Mvc/Model/SerializeCest.php | 31 + .../Mvc/Model/SetConnectionServiceCest.php | 31 + tests/integration/Mvc/Model/SetDICest.php | 31 + .../Mvc/Model/SetDirtyStateCest.php | 31 + .../Mvc/Model/SetEventsManagerCest.php | 31 + .../Mvc/Model/SetOldSnapshotDataCest.php | 31 + .../Model/SetReadConnectionServiceCest.php | 31 + .../Mvc/Model/SetSnapshotDataCest.php | 31 + .../Mvc/Model/SetTransactionCest.php | 31 + .../Model/SetWriteConnectionServiceCest.php | 31 + tests/integration/Mvc/Model/SetupCest.php | 31 + .../Mvc/Model/SkipOperationCest.php | 31 + tests/integration/Mvc/Model/SnapshotCest.php | 484 + tests/integration/Mvc/Model/SumCest.php | 31 + tests/integration/Mvc/Model/ToArrayCest.php | 31 + .../Mvc/Model/Transaction/BeginCest.php | 31 + .../Mvc/Model/Transaction/CommitCest.php | 31 + .../Mvc/Model/Transaction/ConstructCest.php | 31 + .../Transaction/Failed/ConstructCest.php | 31 + .../Model/Transaction/Failed/GetCodeCest.php | 31 + .../Model/Transaction/Failed/GetFileCest.php | 31 + .../Model/Transaction/Failed/GetLineCest.php | 31 + .../Transaction/Failed/GetMessageCest.php | 31 + .../Transaction/Failed/GetPreviousCest.php | 31 + .../Transaction/Failed/GetRecordCest.php | 31 + .../Failed/GetRecordMessagesCest.php | 31 + .../Failed/GetTraceAsStringCest.php | 31 + .../Model/Transaction/Failed/GetTraceCest.php | 31 + .../Model/Transaction/Failed/ToStringCest.php | 31 + .../Model/Transaction/Failed/WakeupCest.php | 31 + .../Model/Transaction/GetConnectionCest.php | 31 + .../Mvc/Model/Transaction/GetMessagesCest.php | 31 + .../Mvc/Model/Transaction/IsManagedCest.php | 31 + .../Mvc/Model/Transaction/IsValidCest.php | 31 + .../Manager/CollectTransactionsCest.php | 31 + .../Model/Transaction/Manager/CommitCest.php | 31 + .../Transaction/Manager/ConstructCest.php | 31 + .../Mvc/Model/Transaction/Manager/GetCest.php | 31 + .../Model/Transaction/Manager/GetDICest.php | 31 + .../Transaction/Manager/GetDbServiceCest.php | 31 + .../Manager/GetOrCreateTransactionCest.php | 31 + .../Manager/GetRollbackPendentCest.php | 31 + .../Mvc/Model/Transaction/Manager/HasCest.php | 31 + .../Transaction/Manager/NotifyCommitCest.php | 31 + .../Manager/NotifyRollbackCest.php | 31 + .../Transaction/Manager/RollbackCest.php | 31 + .../Manager/RollbackPendentCest.php | 31 + .../Model/Transaction/Manager/SetDICest.php | 31 + .../Transaction/Manager/SetDbServiceCest.php | 31 + .../Manager/SetRollbackPendentCest.php | 31 + .../Mvc/Model/Transaction/ManagerCest.php | 203 + .../Mvc/Model/Transaction/RollbackCest.php | 31 + .../Transaction/SetIsNewTransactionCest.php | 31 + .../Transaction/SetRollbackOnAbortCest.php | 31 + .../Transaction/SetRollbackedRecordCest.php | 31 + .../Transaction/SetTransactionManagerCest.php | 31 + .../Mvc/Model/UnderscoreCallCest.php | 31 + .../Mvc/Model/UnderscoreCallStaticCest.php | 31 + .../Mvc/Model/UnderscoreGetCest.php | 31 + .../Mvc/Model/UnderscoreIssetCest.php | 31 + .../Mvc/Model/UnderscoreSetCest.php | 31 + .../integration/Mvc/Model/UnserializeCest.php | 31 + tests/integration/Mvc/Model/UpdateCest.php | 31 + .../Model/ValidationFailed/ConstructCest.php | 31 + .../Model/ValidationFailed/GetCodeCest.php | 31 + .../Model/ValidationFailed/GetFileCest.php | 31 + .../Model/ValidationFailed/GetLineCest.php | 31 + .../Model/ValidationFailed/GetMessageCest.php | 31 + .../ValidationFailed/GetMessagesCest.php | 31 + .../Model/ValidationFailed/GetModelCest.php | 31 + .../ValidationFailed/GetPreviousCest.php | 31 + .../ValidationFailed/GetTraceAsStringCest.php | 31 + .../Model/ValidationFailed/GetTraceCest.php | 31 + .../Model/ValidationFailed/ToStringCest.php | 31 + .../Mvc/Model/ValidationFailed/WakeupCest.php | 31 + .../Mvc/Model/ValidationHasFailedCest.php | 31 + .../Mvc/Model/WriteAttributeCest.php | 31 + tests/integration/Mvc/ModelCest.php | 910 ++ tests/integration/Mvc/ModelsCest.php | 763 + .../Mvc/Router/AnnotationsCest.php | 206 + .../Mvc/View/Engine/Volt/CompilerCest.php | 184 +- .../View/Engine/Volt/CompilerFilesCest.php | 72 +- .../integration/Mvc/View/Engine/VoltCest.php | 39 +- tests/integration/Mvc/View/SimpleCest.php | 29 +- tests/integration/Mvc/ViewCest.php | 44 +- .../Paginator/Adapter/GetPaginateCest.php | 31 + .../Paginator/Adapter/Model/ConstructCest.php | 31 + .../Paginator/Adapter/Model/GetLimitCest.php | 31 + .../Adapter/Model/GetPaginateCest.php | 31 + .../Paginator/Adapter/Model/PaginateCest.php | 31 + .../Adapter/Model/SetCurrentPageCest.php | 31 + .../Paginator/Adapter/Model/SetLimitCest.php | 31 + .../Adapter/NativeArray/ConstructCest.php | 38 + .../Adapter/NativeArray/GetLimitCest.php | 42 + .../Adapter/NativeArray/GetPaginateCest.php | 31 + .../Adapter/NativeArray/PaginateCest.php | 52 + .../NativeArray/SetCurrentPageCest.php | 53 + .../Adapter/NativeArray/SetLimitCest.php | 48 + .../Paginator/Adapter/PaginateCest.php | 31 + .../Adapter/QueryBuilder/ConstructCest.php | 31 + .../QueryBuilder/GetCurrentPageCest.php | 31 + .../Adapter/QueryBuilder/GetLimitCest.php | 31 + .../Adapter/QueryBuilder/GetPaginateCest.php | 31 + .../QueryBuilder/GetQueryBuilderCest.php | 31 + .../Adapter/QueryBuilder/PaginateCest.php | 31 + .../QueryBuilder/SetCurrentPageCest.php | 31 + .../Adapter/QueryBuilder/SetLimitCest.php | 31 + .../QueryBuilder/SetQueryBuilderCest.php | 31 + .../Paginator/Adapter/QueryBuilderCest.php | 168 + .../Paginator/Adapter/SetCurrentPageCest.php | 31 + .../Paginator/Adapter/SetLimitCest.php | 31 + .../Paginator/Factory/LoadCest.php | 82 + tests/integration/PaginatorCest.php | 360 + .../Session/Adapter/ConstructCest.php | 31 + .../Session/Adapter/DestroyCest.php | 31 + .../Session/Adapter/DestructCest.php | 31 + .../Session/Adapter/Files/ConstructCest.php | 31 + .../Session/Adapter/Files/DestroyCest.php | 31 + .../Session/Adapter/Files/DestructCest.php | 31 + .../Session/Adapter/Files/GetCest.php | 31 + .../Session/Adapter/Files/GetIdCest.php | 31 + .../Session/Adapter/Files/GetNameCest.php | 31 + .../Session/Adapter/Files/GetOptionsCest.php | 31 + .../Session/Adapter/Files/HasCest.php | 31 + .../Session/Adapter/Files/IsStartedCest.php | 31 + .../Adapter/Files/RegenerateIdCest.php | 31 + .../Session/Adapter/Files/RemoveCest.php | 31 + .../Session/Adapter/Files/SetCest.php | 31 + .../Session/Adapter/Files/SetIdCest.php | 31 + .../Session/Adapter/Files/SetNameCest.php | 31 + .../Session/Adapter/Files/SetOptionsCest.php | 31 + .../Session/Adapter/Files/StartCest.php | 31 + .../Session/Adapter/Files/StatusCest.php | 31 + .../Adapter/Files/UnderscoreGetCest.php | 31 + .../Adapter/Files/UnderscoreIssetCest.php | 31 + .../Adapter/Files/UnderscoreSetCest.php | 31 + .../Adapter/Files/UnderscoreUnsetCest.php | 31 + .../integration/Session/Adapter/FilesCest.php | 254 + tests/integration/Session/Adapter/GetCest.php | 31 + .../integration/Session/Adapter/GetIdCest.php | 31 + .../Session/Adapter/GetNameCest.php | 31 + .../Session/Adapter/GetOptionsCest.php | 31 + tests/integration/Session/Adapter/HasCest.php | 31 + .../Session/Adapter/IsStartedCest.php | 31 + .../Adapter/Libmemcached/CloseCest.php | 31 + .../Adapter/Libmemcached/ConstructCest.php | 31 + .../Adapter/Libmemcached/DestroyCest.php | 31 + .../Adapter/Libmemcached/DestructCest.php | 31 + .../Session/Adapter/Libmemcached/GcCest.php | 31 + .../Session/Adapter/Libmemcached/GetCest.php | 31 + .../Adapter/Libmemcached/GetIdCest.php | 31 + .../Libmemcached/GetLibmemcachedCest.php | 31 + .../Adapter/Libmemcached/GetLifetimeCest.php | 31 + .../Adapter/Libmemcached/GetNameCest.php | 31 + .../Adapter/Libmemcached/GetOptionsCest.php | 31 + .../Session/Adapter/Libmemcached/HasCest.php | 31 + .../Adapter/Libmemcached/IsStartedCest.php | 31 + .../Session/Adapter/Libmemcached/OpenCest.php | 31 + .../Session/Adapter/Libmemcached/ReadCest.php | 31 + .../Adapter/Libmemcached/RegenerateIdCest.php | 31 + .../Adapter/Libmemcached/RemoveCest.php | 31 + .../Session/Adapter/Libmemcached/SetCest.php | 31 + .../Adapter/Libmemcached/SetIdCest.php | 31 + .../Adapter/Libmemcached/SetNameCest.php | 31 + .../Adapter/Libmemcached/SetOptionsCest.php | 31 + .../Adapter/Libmemcached/StartCest.php | 31 + .../Adapter/Libmemcached/StatusCest.php | 31 + .../Libmemcached/UnderscoreGetCest.php | 31 + .../Libmemcached/UnderscoreIssetCest.php | 31 + .../Libmemcached/UnderscoreSetCest.php | 31 + .../Libmemcached/UnderscoreUnsetCest.php | 31 + .../Adapter/Libmemcached/WriteCest.php | 31 + .../Session/Adapter/LibmemcachedCest.php | 136 + .../Session/Adapter/Redis/CloseCest.php | 31 + .../Session/Adapter/Redis/ConstructCest.php | 31 + .../Session/Adapter/Redis/DestroyCest.php | 31 + .../Session/Adapter/Redis/DestructCest.php | 31 + .../Session/Adapter/Redis/GcCest.php | 31 + .../Session/Adapter/Redis/GetCest.php | 31 + .../Session/Adapter/Redis/GetIdCest.php | 31 + .../Session/Adapter/Redis/GetLifetimeCest.php | 31 + .../Session/Adapter/Redis/GetNameCest.php | 31 + .../Session/Adapter/Redis/GetOptionsCest.php | 31 + .../Session/Adapter/Redis/GetRedisCest.php | 31 + .../Session/Adapter/Redis/HasCest.php | 31 + .../Session/Adapter/Redis/IsStartedCest.php | 31 + .../Session/Adapter/Redis/OpenCest.php | 31 + .../Session/Adapter/Redis/ReadCest.php | 31 + .../Adapter/Redis/RegenerateIdCest.php | 31 + .../Session/Adapter/Redis/RemoveCest.php | 31 + .../Session/Adapter/Redis/SetCest.php | 31 + .../Session/Adapter/Redis/SetIdCest.php | 31 + .../Session/Adapter/Redis/SetNameCest.php | 31 + .../Session/Adapter/Redis/SetOptionsCest.php | 31 + .../Session/Adapter/Redis/StartCest.php | 31 + .../Session/Adapter/Redis/StatusCest.php | 31 + .../Adapter/Redis/UnderscoreGetCest.php | 31 + .../Adapter/Redis/UnderscoreIssetCest.php | 31 + .../Adapter/Redis/UnderscoreSetCest.php | 31 + .../Adapter/Redis/UnderscoreUnsetCest.php | 31 + .../Session/Adapter/Redis/WriteCest.php | 31 + .../integration/Session/Adapter/RedisCest.php | 131 + .../Session/Adapter/RegenerateIdCest.php | 31 + .../Session/Adapter/RemoveCest.php | 31 + tests/integration/Session/Adapter/SetCest.php | 31 + .../integration/Session/Adapter/SetIdCest.php | 31 + .../Session/Adapter/SetNameCest.php | 31 + .../Session/Adapter/SetOptionsCest.php | 31 + .../integration/Session/Adapter/StartCest.php | 31 + .../Session/Adapter/StatusCest.php | 31 + .../Session/Adapter/UnderscoreGetCest.php | 31 + .../Session/Adapter/UnderscoreIssetCest.php | 31 + .../Session/Adapter/UnderscoreSetCest.php | 31 + .../Session/Adapter/UnderscoreUnsetCest.php | 31 + .../integration/Session/Bag/ConstructCest.php | 31 + tests/integration/Session/Bag/CountCest.php | 31 + tests/integration/Session/Bag/DestroyCest.php | 31 + tests/integration/Session/Bag/GetCest.php | 31 + tests/integration/Session/Bag/GetDICest.php | 31 + .../Session/Bag/GetIteratorCest.php | 31 + tests/integration/Session/Bag/HasCest.php | 31 + .../Session/Bag/InitializeCest.php | 31 + .../Session/Bag/OffsetExistsCest.php | 31 + .../integration/Session/Bag/OffsetGetCest.php | 31 + .../integration/Session/Bag/OffsetSetCest.php | 31 + .../Session/Bag/OffsetUnsetCest.php | 31 + tests/integration/Session/Bag/RemoveCest.php | 31 + tests/integration/Session/Bag/SetCest.php | 31 + tests/integration/Session/Bag/SetDICest.php | 31 + .../Session/Bag/UnderscoreGetCest.php | 31 + .../Session/Bag/UnderscoreIssetCest.php | 31 + .../Session/Bag/UnderscoreSetCest.php | 31 + .../Session/Bag/UnderscoreUnsetCest.php | 31 + tests/integration/Session/BagCest.php | 116 + .../integration/Session/Factory/LoadCest.php | 72 + tests/integration/Validation/AddCest.php | 31 + .../Validation/AppendMessageCest.php | 31 + tests/integration/Validation/BindCest.php | 31 + .../CombinedFieldsValidator/ConstructCest.php | 31 + .../CombinedFieldsValidator/GetOptionCest.php | 31 + .../CombinedFieldsValidator/HasOptionCest.php | 31 + .../CombinedFieldsValidator/SetOptionCest.php | 31 + .../CombinedFieldsValidator/ValidateCest.php | 31 + .../integration/Validation/ConstructCest.php | 31 + tests/integration/Validation/GetDICest.php | 31 + tests/integration/Validation/GetDataCest.php | 31 + .../Validation/GetDefaultMessageCest.php | 31 + .../integration/Validation/GetEntityCest.php | 31 + .../Validation/GetEventsManagerCest.php | 31 + .../integration/Validation/GetFiltersCest.php | 31 + tests/integration/Validation/GetLabelCest.php | 31 + .../Validation/GetMessagesCest.php | 31 + .../Validation/GetValidatorsCest.php | 31 + tests/integration/Validation/GetValueCest.php | 31 + tests/integration/Validation/RuleCest.php | 31 + tests/integration/Validation/RulesCest.php | 31 + tests/integration/Validation/SetDICest.php | 31 + .../Validation/SetDefaultMessagesCest.php | 31 + .../integration/Validation/SetEntityCest.php | 31 + .../Validation/SetEventsManagerCest.php | 31 + .../integration/Validation/SetFiltersCest.php | 31 + .../integration/Validation/SetLabelsCest.php | 31 + .../Validation/SetValidatorsCest.php | 31 + .../Validation/UnderscoreGetCest.php | 31 + tests/integration/Validation/ValidateCest.php | 31 + .../integration/Validation/ValidationCest.php | 315 + .../Validator/Alnum/ConstructCest.php | 37 + .../Validator/Alnum/GetOptionCest.php | 36 + .../Validator/Alnum/HasOptionCest.php | 36 + .../Validator/Alnum/SetOptionCest.php | 36 + .../Validator/Alnum/ValidateCest.php | 103 + .../Validator/Alpha/ConstructCest.php | 37 + .../Validator/Alpha/GetOptionCest.php | 36 + .../Validator/Alpha/HasOptionCest.php | 36 + .../Validator/Alpha/SetOptionCest.php | 36 + .../Validator/Alpha/ValidateCest.php | 227 + .../Validator/Between/ConstructCest.php | 37 + .../Validator/Between/GetOptionCest.php | 36 + .../Validator/Between/HasOptionCest.php | 36 + .../Validator/Between/SetOptionCest.php | 36 + .../Validator/Between/ValidateCest.php | 194 + .../Validator/Callback/ConstructCest.php | 37 + .../Validator/Callback/GetOptionCest.php | 36 + .../Validator/Callback/HasOptionCest.php | 36 + .../Validator/Callback/SetOptionCest.php | 36 + .../Validator/Callback/ValidateCest.php | 364 + .../Validator/Confirmation/ConstructCest.php | 37 + .../Validator/Confirmation/GetOptionCest.php | 36 + .../Validator/Confirmation/HasOptionCest.php | 36 + .../Validator/Confirmation/SetOptionCest.php | 36 + .../Validator/Confirmation/ValidateCest.php | 272 + .../Validation/Validator/ConstructCest.php | 31 + .../Validator/CreditCard/ConstructCest.php | 37 + .../Validator/CreditCard/GetOptionCest.php | 36 + .../Validator/CreditCard/HasOptionCest.php | 36 + .../Validator/CreditCard/SetOptionCest.php | 36 + .../Validator/CreditCard/ValidateCest.php | 204 + .../Validator/Date/ConstructCest.php | 37 + .../Validator/Date/GetOptionCest.php | 36 + .../Validator/Date/HasOptionCest.php | 36 + .../Validator/Date/SetOptionCest.php | 36 + .../Validator/Date/ValidateCest.php | 31 + .../Validation/Validator/DateCest.php | 171 + .../Validator/Digit/ConstructCest.php | 37 + .../Validator/Digit/GetOptionCest.php | 36 + .../Validator/Digit/HasOptionCest.php | 36 + .../Validator/Digit/SetOptionCest.php | 36 + .../Validator/Digit/ValidateCest.php | 31 + .../Validation/Validator/DigitCest.php | 118 + .../Validator/Email/ConstructCest.php | 37 + .../Validator/Email/GetOptionCest.php | 36 + .../Validator/Email/HasOptionCest.php | 36 + .../Validator/Email/SetOptionCest.php | 36 + .../Validator/Email/ValidateCest.php | 31 + .../Validation/Validator/EmailCest.php | 152 + .../Validator/ExclusionIn/ConstructCest.php | 37 + .../Validator/ExclusionIn/GetOptionCest.php | 36 + .../Validator/ExclusionIn/HasOptionCest.php | 36 + .../Validator/ExclusionIn/SetOptionCest.php | 36 + .../Validator/ExclusionIn/ValidateCest.php | 31 + .../Validation/Validator/ExclusionInCest.php | 228 + .../Validator/File/ConstructCest.php | 37 + .../Validator/File/GetOptionCest.php | 36 + .../Validator/File/HasOptionCest.php | 36 + .../Validator/File/IsAllowEmptyCest.php | 28 + .../Validator/File/SetOptionCest.php | 36 + .../Validator/File/ValidateCest.php | 31 + .../Validation/Validator/GetOptionCest.php | 31 + .../Validation/Validator/HasOptionCest.php | 31 + .../Validator/Identical/ConstructCest.php | 37 + .../Validator/Identical/GetOptionCest.php | 36 + .../Validator/Identical/HasOptionCest.php | 36 + .../Validator/Identical/SetOptionCest.php | 36 + .../Validator/Identical/ValidateCest.php | 31 + .../Validation/Validator/IdenticalCest.php | 225 + .../Validator/InclusionIn/ConstructCest.php | 37 + .../Validator/InclusionIn/GetOptionCest.php | 36 + .../Validator/InclusionIn/HasOptionCest.php | 36 + .../Validator/InclusionIn/SetOptionCest.php | 36 + .../Validator/InclusionIn/ValidateCest.php | 31 + .../Validation/Validator/InclusionInCest.php | 229 + .../Validator/Numericality/ConstructCest.php | 37 + .../Validator/Numericality/GetOptionCest.php | 36 + .../Validator/Numericality/HasOptionCest.php | 36 + .../Validator/Numericality/SetOptionCest.php | 36 + .../Validator/Numericality/ValidateCest.php | 31 + .../Validation/Validator/NumericalityCest.php | 166 + .../Validator/PresenceOf/ConstructCest.php | 37 + .../Validator/PresenceOf/GetOptionCest.php | 36 + .../Validator/PresenceOf/HasOptionCest.php | 36 + .../Validator/PresenceOf/SetOptionCest.php | 36 + .../Validator/PresenceOf/ValidateCest.php | 31 + .../Validation/Validator/PresenceOfCest.php | 233 + .../Validator/Regex/ConstructCest.php | 37 + .../Validator/Regex/GetOptionCest.php | 36 + .../Validator/Regex/HasOptionCest.php | 36 + .../Validator/Regex/SetOptionCest.php | 36 + .../Validator/Regex/ValidateCest.php | 31 + .../Validation/Validator/RegexCest.php | 220 + .../Validation/Validator/SetOptionCest.php | 31 + .../Validator/StringLength/ConstructCest.php | 37 + .../Validator/StringLength/GetOptionCest.php | 36 + .../Validator/StringLength/HasOptionCest.php | 36 + .../Validator/StringLength/SetOptionCest.php | 36 + .../Validator/StringLength/ValidateCest.php | 363 + .../Validator/Uniqueness/ConstructCest.php | 37 + .../Validator/Uniqueness/GetOptionCest.php | 36 + .../Validator/Uniqueness/HasOptionCest.php | 36 + .../Validator/Uniqueness/SetOptionCest.php | 31 + .../Validator/Uniqueness/ValidateCest.php | 31 + .../Validation/Validator/UniquenessCest.php | 398 + .../Validator/Url/ConstructCest.php | 37 + .../Validator/Url/GetOptionCest.php | 36 + .../Validator/Url/HasOptionCest.php | 36 + .../Validator/Url/SetOptionCest.php | 36 + .../Validation/Validator/Url/ValidateCest.php | 185 + .../Validation/Validator/ValidateCest.php | 31 + tests/integration/ValidationCest.php | 41 +- tests/integration/_bootstrap.php | 1 - tests/shim.php | 119 +- .../tests/volt/statements/switchcase/001.diff | 23 + .../tests/volt/statements/switchcase/001.exp | 22 + .../tests/volt/statements/switchcase/001.php | 4 + .../tests/volt/statements/switchcase/001.sh | 3 + .../tests/volt/statements/switchcase/002.diff | 68 + .../tests/volt/statements/switchcase/002.exp | 67 + .../tests/volt/statements/switchcase/002.php | 4 + .../tests/volt/statements/switchcase/002.sh | 3 + .../tests/volt/statements/switchcase/003.diff | 57 + .../tests/volt/statements/switchcase/003.exp | 56 + .../tests/volt/statements/switchcase/003.php | 4 + .../tests/volt/statements/switchcase/003.sh | 3 + .../tests/volt/statements/switchcase/004.diff | 88 + .../tests/volt/statements/switchcase/004.exp | 87 + .../tests/volt/statements/switchcase/004.php | 4 + .../tests/volt/statements/switchcase/004.sh | 3 + .../tests/volt/statements/switchcase/005.diff | 7 + .../tests/volt/statements/switchcase/005.exp | 6 + .../tests/volt/statements/switchcase/005.php | 3 + .../tests/volt/statements/switchcase/005.sh | 3 + .../tests/volt/statements/switchcase/006.diff | 7 + .../tests/volt/statements/switchcase/006.exp | 6 + .../tests/volt/statements/switchcase/006.php | 3 + .../tests/volt/statements/switchcase/006.sh | 3 + .../tests/volt/statements/switchcase/007.diff | 7 + .../tests/volt/statements/switchcase/007.exp | 6 + .../tests/volt/statements/switchcase/007.php | 3 + .../tests/volt/statements/switchcase/007.sh | 3 + .../tests/volt/statements/switchcase/008.diff | 178 + .../tests/volt/statements/switchcase/008.exp | 177 + .../tests/volt/statements/switchcase/008.php | 15 + .../tests/volt/statements/switchcase/008.sh | 3 + .../tests/volt/statements/switchcase/009.diff | 7 + .../tests/volt/statements/switchcase/009.exp | 6 + .../tests/volt/statements/switchcase/009.php | 9 + .../tests/volt/statements/switchcase/009.sh | 3 + .../tests/volt/statements/switchcase/010.diff | 7 + .../tests/volt/statements/switchcase/010.exp | 6 + .../tests/volt/statements/switchcase/010.php | 10 + .../tests/volt/statements/switchcase/010.sh | 3 + tests/unit.suite.yml | 65 +- .../Acl/Adapter/Memory/AddInheritCest.php | 31 + .../Adapter/Memory/AddResourceAccessCest.php | 31 + .../Acl/Adapter/Memory/AddResourceCest.php | 31 + tests/unit/Acl/Adapter/Memory/AddRoleCest.php | 31 + tests/unit/Acl/Adapter/Memory/AllowCest.php | 31 + .../unit/Acl/Adapter/Memory/ConstructCest.php | 28 + tests/unit/Acl/Adapter/Memory/DenyCest.php | 31 + .../Adapter/Memory/DropResourceAccessCest.php | 31 + .../Adapter/Memory/GetActiveAccessCest.php | 31 + .../Adapter/Memory/GetActiveResourceCest.php | 31 + .../Acl/Adapter/Memory/GetActiveRoleCest.php | 31 + .../Adapter/Memory/GetDefaultActionCest.php | 39 + .../Adapter/Memory/GetEventsManagerCest.php | 31 + .../GetNoArgumentsDefaultActionCest.php | 31 + .../Acl/Adapter/Memory/GetResourcesCest.php | 31 + .../unit/Acl/Adapter/Memory/GetRolesCest.php | 31 + .../unit/Acl/Adapter/Memory/IsAllowedCest.php | 31 + .../Acl/Adapter/Memory/IsResourceCest.php | 39 + tests/unit/Acl/Adapter/Memory/IsRoleCest.php | 40 + .../Adapter/Memory/SetDefaultActionCest.php | 39 + .../Adapter/Memory/SetEventsManagerCest.php | 31 + .../SetNoArgumentsDefaultActionCest.php | 31 + tests/unit/Acl/Adapter/MemoryCest.php | 664 + tests/unit/Acl/Adapter/MemoryTest.php | 868 -- tests/unit/Acl/ConstantsCest.php | 30 + tests/unit/Acl/Resource/ConstructCest.php | 75 + .../unit/Acl/Resource/GetDescriptionCest.php | 53 + tests/unit/Acl/Resource/GetNameCest.php | 36 + tests/unit/Acl/Resource/ToStringCest.php | 40 + tests/unit/Acl/ResourceTest.php | 70 - tests/unit/Acl/Role/ConstructCest.php | 75 + tests/unit/Acl/Role/GetDescriptionCest.php | 53 + tests/unit/Acl/Role/GetNameCest.php | 36 + tests/unit/Acl/Role/ToStringCest.php | 40 + tests/unit/Acl/RoleTest.php | 71 - tests/unit/Annotations/Adapter/ApcTest.php | 71 - .../Adapter/Apcu/ConstructCest.php | 31 + .../unit/Annotations/Adapter/Apcu/GetCest.php | 31 + .../Adapter/Apcu/GetMethodCest.php | 31 + .../Adapter/Apcu/GetMethodsCest.php | 31 + .../Adapter/Apcu/GetPropertiesCest.php | 31 + .../Adapter/Apcu/GetPropertyCest.php | 31 + .../Adapter/Apcu/GetReaderCest.php | 31 + .../Annotations/Adapter/Apcu/ReadCest.php | 31 + .../Adapter/Apcu/SetReaderCest.php | 31 + .../Annotations/Adapter/Apcu/WriteCest.php | 31 + tests/unit/Annotations/Adapter/ApcuCest.php | 59 + tests/unit/Annotations/Adapter/ApcuTest.php | 71 - .../Adapter/Files/ConstructCest.php | 31 + .../Annotations/Adapter/Files/GetCest.php | 31 + .../Adapter/Files/GetMethodCest.php | 31 + .../Adapter/Files/GetMethodsCest.php | 31 + .../Adapter/Files/GetPropertiesCest.php | 31 + .../Adapter/Files/GetPropertyCest.php | 31 + .../Adapter/Files/GetReaderCest.php | 31 + .../Annotations/Adapter/Files/ReadCest.php | 31 + .../Adapter/Files/SetReaderCest.php | 31 + .../Annotations/Adapter/Files/WriteCest.php | 31 + tests/unit/Annotations/Adapter/FilesCest.php | 54 + tests/unit/Annotations/Adapter/FilesTest.php | 61 - .../Annotations/Adapter/Memory/GetCest.php | 31 + .../Adapter/Memory/GetMethodCest.php | 31 + .../Adapter/Memory/GetMethodsCest.php | 31 + .../Adapter/Memory/GetPropertiesCest.php | 31 + .../Adapter/Memory/GetPropertyCest.php | 31 + .../Adapter/Memory/GetReaderCest.php | 31 + .../Annotations/Adapter/Memory/ReadCest.php | 31 + .../Adapter/Memory/SetReaderCest.php | 31 + .../Annotations/Adapter/Memory/WriteCest.php | 31 + tests/unit/Annotations/Adapter/MemoryCest.php | 56 + tests/unit/Annotations/Adapter/MemoryTest.php | 59 - .../Annotations/Annotation/ConstructCest.php | 31 + .../Annotation/GetArgumentCest.php | 31 + .../Annotation/GetArgumentsCest.php | 31 + .../Annotation/GetExprArgumentsCest.php | 31 + .../Annotation/GetExpressionCest.php | 31 + .../Annotations/Annotation/GetNameCest.php | 31 + .../Annotation/GetNamedArgumentCest.php | 31 + .../Annotation/GetNamedParameterCest.php | 31 + .../Annotation/HasArgumentCest.php | 31 + .../Annotation/NumberArgumentsCest.php | 31 + .../Annotations/Collection/ConstructCest.php | 31 + .../unit/Annotations/Collection/CountCest.php | 31 + .../Annotations/Collection/CurrentCest.php | 31 + .../Annotations/Collection/GetAllCest.php | 31 + .../Collection/GetAnnotationsCest.php | 31 + tests/unit/Annotations/Collection/GetCest.php | 31 + tests/unit/Annotations/Collection/HasCest.php | 31 + tests/unit/Annotations/Collection/KeyCest.php | 31 + .../unit/Annotations/Collection/NextCest.php | 31 + .../Annotations/Collection/RewindCest.php | 31 + .../unit/Annotations/Collection/ValidCest.php | 31 + tests/unit/Annotations/Factory/LoadCest.php | 79 + tests/unit/Annotations/FactoryTest.php | 66 - tests/unit/Annotations/Reader/ParseCest.php | 31 + .../Annotations/Reader/ParseDocBlockCest.php | 31 + tests/unit/Annotations/ReaderCest.php | 237 + tests/unit/Annotations/ReaderTest.php | 248 - .../Annotations/Reflection/ConstructCest.php | 31 + .../Reflection/GetClassAnnotationsCest.php | 31 + .../Reflection/GetMethodsAnnotationsCest.php | 31 + .../GetPropertiesAnnotationsCest.php | 31 + .../Reflection/GetReflectionDataCest.php | 31 + .../Annotations/Reflection/SetStateCest.php | 31 + tests/unit/Annotations/ReflectionCest.php | 138 + tests/unit/Annotations/ReflectionTest.php | 162 - tests/unit/Application/ConstructCest.php | 31 + tests/unit/Application/GetDICest.php | 31 + .../unit/Application/GetDefaultModuleCest.php | 31 + .../unit/Application/GetEventsManagerCest.php | 31 + tests/unit/Application/GetModuleCest.php | 31 + tests/unit/Application/GetModulesCest.php | 31 + tests/unit/Application/HandleCest.php | 31 + .../unit/Application/RegisterModulesCest.php | 31 + tests/unit/Application/SetDICest.php | 31 + .../unit/Application/SetDefaultModuleCest.php | 31 + .../unit/Application/SetEventsManagerCest.php | 31 + tests/unit/Application/UnderscoreGetCest.php | 31 + tests/unit/Assets/Collection/AddCest.php | 31 + tests/unit/Assets/Collection/AddCssCest.php | 31 + .../unit/Assets/Collection/AddFilterCest.php | 31 + .../unit/Assets/Collection/AddInlineCest.php | 31 + .../Assets/Collection/AddInlineCssCest.php | 31 + .../Assets/Collection/AddInlineJsCest.php | 31 + tests/unit/Assets/Collection/AddJsCest.php | 31 + .../unit/Assets/Collection/ConstructCest.php | 31 + tests/unit/Assets/Collection/CountCest.php | 31 + tests/unit/Assets/Collection/CurrentCest.php | 31 + .../Assets/Collection/GetAttributesCest.php | 31 + tests/unit/Assets/Collection/GetCodesCest.php | 31 + .../unit/Assets/Collection/GetFiltersCest.php | 31 + tests/unit/Assets/Collection/GetJoinCest.php | 31 + tests/unit/Assets/Collection/GetLocalCest.php | 31 + .../Assets/Collection/GetPositionCest.php | 31 + .../unit/Assets/Collection/GetPrefixCest.php | 31 + .../Collection/GetRealTargetPathCest.php | 31 + .../Assets/Collection/GetResourcesCest.php | 31 + .../Assets/Collection/GetSourcePathCest.php | 31 + .../Assets/Collection/GetTargetLocalCest.php | 31 + .../Assets/Collection/GetTargetPathCest.php | 31 + .../Assets/Collection/GetTargetUriCest.php | 31 + tests/unit/Assets/Collection/HasCest.php | 31 + tests/unit/Assets/Collection/JoinCest.php | 31 + tests/unit/Assets/Collection/KeyCest.php | 31 + tests/unit/Assets/Collection/NextCest.php | 31 + tests/unit/Assets/Collection/RewindCest.php | 31 + .../Assets/Collection/SetAttributesCest.php | 31 + .../unit/Assets/Collection/SetFiltersCest.php | 31 + tests/unit/Assets/Collection/SetLocalCest.php | 31 + .../unit/Assets/Collection/SetPrefixCest.php | 31 + .../Assets/Collection/SetSourcePathCest.php | 31 + .../Assets/Collection/SetTargetLocalCest.php | 31 + .../Assets/Collection/SetTargetPathCest.php | 31 + .../Assets/Collection/SetTargetUriCest.php | 31 + tests/unit/Assets/Collection/ValidCest.php | 31 + tests/unit/Assets/CollectionCest.php | 87 + tests/unit/Assets/CollectionTest.php | 104 - tests/unit/Assets/Filters/CssMinCest.php | 117 + tests/unit/Assets/Filters/CssMinTest.php | 174 - .../unit/Assets/Filters/Cssmin/FilterCest.php | 31 + .../unit/Assets/Filters/Jsmin/FilterCest.php | 31 + tests/unit/Assets/Filters/JsminCest.php | 149 + tests/unit/Assets/Filters/JsminTest.php | 164 - tests/unit/Assets/Filters/None/FilterCest.php | 46 + tests/unit/Assets/Filters/NoneCest.php | 62 + tests/unit/Assets/Filters/NoneTest.php | 84 - tests/unit/Assets/Helper/TrimFilter.php | 41 - tests/unit/Assets/Helper/UppercaseFilter.php | 41 - tests/unit/Assets/Inline/ConstructCest.php | 31 + .../unit/Assets/Inline/Css/ConstructCest.php | 31 + .../Assets/Inline/Css/GetAttributesCest.php | 31 + .../unit/Assets/Inline/Css/GetContentCest.php | 31 + .../unit/Assets/Inline/Css/GetFilterCest.php | 31 + .../Assets/Inline/Css/GetResourceKeyCest.php | 31 + tests/unit/Assets/Inline/Css/GetTypeCest.php | 31 + .../Assets/Inline/Css/SetAttributesCest.php | 31 + .../unit/Assets/Inline/Css/SetFilterCest.php | 31 + tests/unit/Assets/Inline/Css/SetTypeCest.php | 31 + .../unit/Assets/Inline/GetAttributesCest.php | 31 + tests/unit/Assets/Inline/GetContentCest.php | 36 + tests/unit/Assets/Inline/GetFilterCest.php | 31 + .../unit/Assets/Inline/GetResourceKeyCest.php | 31 + tests/unit/Assets/Inline/GetTypeCest.php | 31 + tests/unit/Assets/Inline/Js/ConstructCest.php | 31 + .../Assets/Inline/Js/GetAttributesCest.php | 31 + .../unit/Assets/Inline/Js/GetContentCest.php | 31 + tests/unit/Assets/Inline/Js/GetFilterCest.php | 28 + .../Assets/Inline/Js/GetResourceKeyCest.php | 33 + tests/unit/Assets/Inline/Js/GetTypeCest.php | 33 + .../Assets/Inline/Js/SetAttributesCest.php | 28 + tests/unit/Assets/Inline/Js/SetFilterCest.php | 28 + tests/unit/Assets/Inline/Js/SetTypeCest.php | 28 + .../unit/Assets/Inline/SetAttributesCest.php | 31 + tests/unit/Assets/Inline/SetFilterCest.php | 31 + tests/unit/Assets/Inline/SetTypeCest.php | 31 + tests/unit/Assets/InlineTest.php | 45 - tests/unit/Assets/Manager/AddCssCest.php | 31 + .../Manager/AddInlineCodeByTypeCest.php | 31 + .../unit/Assets/Manager/AddInlineCodeCest.php | 31 + .../unit/Assets/Manager/AddInlineCssCest.php | 31 + tests/unit/Assets/Manager/AddInlineJsCest.php | 31 + tests/unit/Assets/Manager/AddJsCest.php | 31 + .../Assets/Manager/AddResourceByTypeCest.php | 31 + tests/unit/Assets/Manager/AddResourceCest.php | 31 + tests/unit/Assets/Manager/CollectionCest.php | 31 + .../Manager/CollectionResourcesByTypeCest.php | 31 + tests/unit/Assets/Manager/ConstructCest.php | 31 + tests/unit/Assets/Manager/ExistsCest.php | 31 + tests/unit/Assets/Manager/GetCest.php | 31 + .../Assets/Manager/GetCollectionsCest.php | 31 + tests/unit/Assets/Manager/GetCssCest.php | 31 + tests/unit/Assets/Manager/GetJsCest.php | 31 + tests/unit/Assets/Manager/GetOptionsCest.php | 31 + tests/unit/Assets/Manager/OutputCest.php | 31 + tests/unit/Assets/Manager/OutputCssCest.php | 31 + .../unit/Assets/Manager/OutputInlineCest.php | 31 + .../Assets/Manager/OutputInlineCssCest.php | 31 + .../Assets/Manager/OutputInlineJsCest.php | 31 + tests/unit/Assets/Manager/OutputJsCest.php | 31 + tests/unit/Assets/Manager/SetCest.php | 31 + tests/unit/Assets/Manager/SetOptionsCest.php | 31 + .../Assets/Manager/UseImplicitOutputCest.php | 31 + tests/unit/Assets/ManagerCest.php | 615 + tests/unit/Assets/ManagerTest.php | 648 - tests/unit/Assets/Resource/ConstructCest.php | 31 + .../Assets/Resource/Css/ConstructCest.php | 31 + .../Assets/Resource/Css/GetAttributesCest.php | 31 + .../Assets/Resource/Css/GetContentCest.php | 31 + .../Assets/Resource/Css/GetFilterCest.php | 31 + .../unit/Assets/Resource/Css/GetLocalCest.php | 31 + .../unit/Assets/Resource/Css/GetPathCest.php | 31 + .../Resource/Css/GetRealSourcePathCest.php | 31 + .../Resource/Css/GetRealTargetPathCest.php | 31 + .../Resource/Css/GetRealTargetUriCest.php | 31 + .../Resource/Css/GetResourceKeyCest.php | 38 + .../Assets/Resource/Css/GetSourcePathCest.php | 31 + .../Assets/Resource/Css/GetTargetPathCest.php | 31 + .../Assets/Resource/Css/GetTargetUriCest.php | 31 + .../unit/Assets/Resource/Css/GetTypeCest.php | 36 + .../Assets/Resource/Css/SetAttributesCest.php | 31 + .../Assets/Resource/Css/SetFilterCest.php | 31 + .../unit/Assets/Resource/Css/SetLocalCest.php | 31 + .../unit/Assets/Resource/Css/SetPathCest.php | 31 + .../Assets/Resource/Css/SetSourcePathCest.php | 31 + .../Assets/Resource/Css/SetTargetPathCest.php | 31 + .../Assets/Resource/Css/SetTargetUriCest.php | 31 + .../unit/Assets/Resource/Css/SetTypeCest.php | 31 + tests/unit/Assets/Resource/CssCest.php | 59 + tests/unit/Assets/Resource/CssTest.php | 85 - .../Assets/Resource/GetAttributesCest.php | 31 + tests/unit/Assets/Resource/GetContentCest.php | 31 + tests/unit/Assets/Resource/GetFilterCest.php | 31 + tests/unit/Assets/Resource/GetLocalCest.php | 31 + tests/unit/Assets/Resource/GetPathCest.php | 31 + .../Assets/Resource/GetRealSourcePathCest.php | 31 + .../Assets/Resource/GetRealTargetPathCest.php | 31 + .../Assets/Resource/GetRealTargetUriCest.php | 31 + .../Assets/Resource/GetResourceKeyCest.php | 42 + .../Assets/Resource/GetSourcePathCest.php | 31 + .../Assets/Resource/GetTargetPathCest.php | 31 + .../unit/Assets/Resource/GetTargetUriCest.php | 31 + tests/unit/Assets/Resource/GetTypeCest.php | 39 + .../unit/Assets/Resource/Js/ConstructCest.php | 31 + .../Assets/Resource/Js/GetAttributesCest.php | 31 + .../Assets/Resource/Js/GetContentCest.php | 31 + .../unit/Assets/Resource/Js/GetFilterCest.php | 31 + .../unit/Assets/Resource/Js/GetLocalCest.php | 31 + tests/unit/Assets/Resource/Js/GetPathCest.php | 31 + .../Resource/Js/GetRealSourcePathCest.php | 31 + .../Resource/Js/GetRealTargetPathCest.php | 31 + .../Resource/Js/GetRealTargetUriCest.php | 31 + .../Assets/Resource/Js/GetResourceKeyCest.php | 38 + .../Assets/Resource/Js/GetSourcePathCest.php | 31 + .../Assets/Resource/Js/GetTargetPathCest.php | 31 + .../Assets/Resource/Js/GetTargetUriCest.php | 31 + tests/unit/Assets/Resource/Js/GetTypeCest.php | 35 + .../Assets/Resource/Js/SetAttributesCest.php | 31 + .../unit/Assets/Resource/Js/SetFilterCest.php | 31 + .../unit/Assets/Resource/Js/SetLocalCest.php | 31 + tests/unit/Assets/Resource/Js/SetPathCest.php | 31 + .../Assets/Resource/Js/SetSourcePathCest.php | 31 + .../Assets/Resource/Js/SetTargetPathCest.php | 31 + .../Assets/Resource/Js/SetTargetUriCest.php | 31 + tests/unit/Assets/Resource/Js/SetTypeCest.php | 31 + tests/unit/Assets/Resource/JsCest.php | 59 + tests/unit/Assets/Resource/JsTest.php | 85 - .../Assets/Resource/SetAttributesCest.php | 31 + tests/unit/Assets/Resource/SetFilterCest.php | 31 + tests/unit/Assets/Resource/SetLocalCest.php | 31 + tests/unit/Assets/Resource/SetPathCest.php | 31 + .../Assets/Resource/SetSourcePathCest.php | 31 + .../Assets/Resource/SetTargetPathCest.php | 31 + .../unit/Assets/Resource/SetTargetUriCest.php | 31 + tests/unit/Assets/Resource/SetTypeCest.php | 31 + tests/unit/Assets/ResourceCest.php | 45 + tests/unit/Assets/ResourceTest.php | 104 - tests/unit/Cache/Backend/ApcCest.php | 260 - .../unit/Cache/Backend/Apcu/ConstructCest.php | 31 + .../unit/Cache/Backend/Apcu/DecrementCest.php | 31 + tests/unit/Cache/Backend/Apcu/DeleteCest.php | 31 + tests/unit/Cache/Backend/Apcu/ExistsCest.php | 31 + tests/unit/Cache/Backend/Apcu/FlushCest.php | 31 + tests/unit/Cache/Backend/Apcu/GetCest.php | 31 + .../Cache/Backend/Apcu/GetFrontendCest.php | 31 + .../Cache/Backend/Apcu/GetLastKeyCest.php | 31 + .../Cache/Backend/Apcu/GetLifetimeCest.php | 31 + .../Cache/Backend/Apcu/GetOptionsCest.php | 31 + .../unit/Cache/Backend/Apcu/IncrementCest.php | 31 + tests/unit/Cache/Backend/Apcu/IsFreshCest.php | 31 + .../unit/Cache/Backend/Apcu/IsStartedCest.php | 31 + .../unit/Cache/Backend/Apcu/QueryKeysCest.php | 31 + tests/unit/Cache/Backend/Apcu/SaveCest.php | 31 + .../Cache/Backend/Apcu/SetFrontendCest.php | 31 + .../Cache/Backend/Apcu/SetLastKeyCest.php | 31 + .../Cache/Backend/Apcu/SetOptionsCest.php | 31 + tests/unit/Cache/Backend/Apcu/StartCest.php | 31 + tests/unit/Cache/Backend/Apcu/StopCest.php | 31 + tests/unit/Cache/Backend/ApcuCest.php | 28 +- tests/unit/Cache/Backend/CacheCest.php | 312 + tests/unit/Cache/Backend/Factory/LoadCest.php | 83 + tests/unit/Cache/Backend/FactoryTest.php | 71 - .../unit/Cache/Backend/File/ConstructCest.php | 31 + .../unit/Cache/Backend/File/DecrementCest.php | 55 + tests/unit/Cache/Backend/File/DeleteCest.php | 31 + tests/unit/Cache/Backend/File/ExistsCest.php | 31 + tests/unit/Cache/Backend/File/FlushCest.php | 31 + tests/unit/Cache/Backend/File/GetCest.php | 77 + .../Cache/Backend/File/GetFrontendCest.php | 31 + tests/unit/Cache/Backend/File/GetKeyCest.php | 31 + .../Cache/Backend/File/GetLastKeyCest.php | 31 + .../Cache/Backend/File/GetLifetimeCest.php | 31 + .../Cache/Backend/File/GetOptionsCest.php | 31 + .../unit/Cache/Backend/File/IncrementCest.php | 56 + tests/unit/Cache/Backend/File/IsFreshCest.php | 31 + .../unit/Cache/Backend/File/IsStartedCest.php | 31 + .../unit/Cache/Backend/File/QueryKeysCest.php | 31 + tests/unit/Cache/Backend/File/SaveCest.php | 54 + .../Cache/Backend/File/SetFrontendCest.php | 31 + .../Cache/Backend/File/SetLastKeyCest.php | 31 + .../Cache/Backend/File/SetOptionsCest.php | 31 + tests/unit/Cache/Backend/File/StartCest.php | 31 + tests/unit/Cache/Backend/File/StopCest.php | 31 + .../Cache/Backend/File/UseSafeKeyCest.php | 31 + tests/unit/Cache/Backend/FileCest.php | 35 +- .../Backend/Libmemcached/ConnectCest.php | 31 + .../Backend/Libmemcached/ConstructCest.php | 31 + .../Backend/Libmemcached/DecrementCest.php | 31 + .../Cache/Backend/Libmemcached/DeleteCest.php | 31 + .../Cache/Backend/Libmemcached/ExistsCest.php | 31 + .../Cache/Backend/Libmemcached/FlushCest.php | 31 + .../Cache/Backend/Libmemcached/GetCest.php | 31 + .../Backend/Libmemcached/GetFrontendCest.php | 31 + .../Backend/Libmemcached/GetLastKeyCest.php | 31 + .../Backend/Libmemcached/GetLifetimeCest.php | 31 + .../Backend/Libmemcached/GetOptionsCest.php | 31 + .../Backend/Libmemcached/IncrementCest.php | 31 + .../Backend/Libmemcached/IsFreshCest.php | 31 + .../Backend/Libmemcached/IsStartedCest.php | 31 + .../Backend/Libmemcached/QueryKeysCest.php | 31 + .../Cache/Backend/Libmemcached/SaveCest.php | 31 + .../Backend/Libmemcached/SetFrontendCest.php | 31 + .../Backend/Libmemcached/SetLastKeyCest.php | 31 + .../Backend/Libmemcached/SetOptionsCest.php | 31 + .../Cache/Backend/Libmemcached/StartCest.php | 31 + .../Cache/Backend/Libmemcached/StopCest.php | 31 + tests/unit/Cache/Backend/LibmemcachedCest.php | 89 +- .../Cache/Backend/Memory/ConstructCest.php | 31 + .../Cache/Backend/Memory/DecrementCest.php | 31 + .../unit/Cache/Backend/Memory/DeleteCest.php | 31 + .../unit/Cache/Backend/Memory/ExistsCest.php | 31 + tests/unit/Cache/Backend/Memory/FlushCest.php | 31 + tests/unit/Cache/Backend/Memory/GetCest.php | 31 + .../Cache/Backend/Memory/GetFrontendCest.php | 31 + .../Cache/Backend/Memory/GetLastKeyCest.php | 31 + .../Cache/Backend/Memory/GetLifetimeCest.php | 31 + .../Cache/Backend/Memory/GetOptionsCest.php | 31 + .../Cache/Backend/Memory/IncrementCest.php | 31 + .../unit/Cache/Backend/Memory/IsFreshCest.php | 31 + .../Cache/Backend/Memory/IsStartedCest.php | 31 + .../Cache/Backend/Memory/QueryKeysCest.php | 31 + tests/unit/Cache/Backend/Memory/SaveCest.php | 31 + .../Cache/Backend/Memory/SerializeCest.php | 31 + .../Cache/Backend/Memory/SetFrontendCest.php | 31 + .../Cache/Backend/Memory/SetLastKeyCest.php | 31 + .../Cache/Backend/Memory/SetOptionsCest.php | 31 + tests/unit/Cache/Backend/Memory/StartCest.php | 31 + tests/unit/Cache/Backend/Memory/StopCest.php | 31 + .../Cache/Backend/Memory/UnserializeCest.php | 31 + tests/unit/Cache/Backend/MemoryCest.php | 20 +- .../Cache/Backend/Mongo/ConstructCest.php | 31 + .../Cache/Backend/Mongo/DecrementCest.php | 31 + tests/unit/Cache/Backend/Mongo/DeleteCest.php | 31 + tests/unit/Cache/Backend/Mongo/ExistsCest.php | 31 + tests/unit/Cache/Backend/Mongo/FlushCest.php | 31 + tests/unit/Cache/Backend/Mongo/GcCest.php | 31 + tests/unit/Cache/Backend/Mongo/GetCest.php | 31 + .../Cache/Backend/Mongo/GetFrontendCest.php | 31 + .../Cache/Backend/Mongo/GetLastKeyCest.php | 31 + .../Cache/Backend/Mongo/GetLifetimeCest.php | 31 + .../Cache/Backend/Mongo/GetOptionsCest.php | 31 + .../Cache/Backend/Mongo/IncrementCest.php | 31 + .../unit/Cache/Backend/Mongo/IsFreshCest.php | 31 + .../Cache/Backend/Mongo/IsStartedCest.php | 31 + .../Cache/Backend/Mongo/QueryKeysCest.php | 31 + tests/unit/Cache/Backend/Mongo/SaveCest.php | 31 + .../Cache/Backend/Mongo/SetFrontendCest.php | 31 + .../Cache/Backend/Mongo/SetLastKeyCest.php | 31 + .../Cache/Backend/Mongo/SetOptionsCest.php | 31 + tests/unit/Cache/Backend/Mongo/StartCest.php | 31 + tests/unit/Cache/Backend/Mongo/StopCest.php | 31 + .../unit/Cache/Backend/Redis/ConnectCest.php | 31 + .../Cache/Backend/Redis/ConstructCest.php | 40 + .../Cache/Backend/Redis/DecrementCest.php | 51 + tests/unit/Cache/Backend/Redis/DeleteCest.php | 31 + tests/unit/Cache/Backend/Redis/ExistsCest.php | 31 + tests/unit/Cache/Backend/Redis/FlushCest.php | 31 + tests/unit/Cache/Backend/Redis/GetCest.php | 31 + .../Cache/Backend/Redis/GetFrontendCest.php | 41 + .../Cache/Backend/Redis/GetLastKeyCest.php | 31 + .../Cache/Backend/Redis/GetLifetimeCest.php | 31 + .../Cache/Backend/Redis/GetOptionsCest.php | 31 + .../Cache/Backend/Redis/IncrementCest.php | 51 + .../unit/Cache/Backend/Redis/IsFreshCest.php | 31 + .../Cache/Backend/Redis/IsStartedCest.php | 31 + .../Cache/Backend/Redis/QueryKeysCest.php | 31 + tests/unit/Cache/Backend/Redis/SaveCest.php | 31 + .../Cache/Backend/Redis/SetFrontendCest.php | 31 + .../Cache/Backend/Redis/SetLastKeyCest.php | 31 + .../Cache/Backend/Redis/SetOptionsCest.php | 31 + tests/unit/Cache/Backend/Redis/StartCest.php | 31 + tests/unit/Cache/Backend/Redis/StopCest.php | 31 + tests/unit/Cache/Backend/RedisCest.php | 297 +- .../Frontend/Base64/AfterRetrieveCest.php | 31 + .../Cache/Frontend/Base64/BeforeStoreCest.php | 31 + .../Cache/Frontend/Base64/ConstructCest.php | 31 + .../Cache/Frontend/Base64/GetContentCest.php | 31 + .../Cache/Frontend/Base64/GetLifetimeCest.php | 31 + .../Cache/Frontend/Base64/IsBufferingCest.php | 31 + .../unit/Cache/Frontend/Base64/StartCest.php | 31 + tests/unit/Cache/Frontend/Base64/StopCest.php | 31 + .../Cache/Frontend/Data/AfterRetrieveCest.php | 31 + .../Cache/Frontend/Data/BeforeStoreCest.php | 31 + .../Cache/Frontend/Data/ConstructCest.php | 31 + .../Cache/Frontend/Data/GetContentCest.php | 31 + .../Cache/Frontend/Data/GetLifetimeCest.php | 31 + .../Cache/Frontend/Data/IsBufferingCest.php | 31 + tests/unit/Cache/Frontend/Data/StartCest.php | 31 + tests/unit/Cache/Frontend/Data/StopCest.php | 31 + .../unit/Cache/Frontend/Factory/LoadCest.php | 80 + tests/unit/Cache/Frontend/FactoryTest.php | 68 - .../Frontend/Igbinary/AfterRetrieveCest.php | 31 + .../Frontend/Igbinary/BeforeStoreCest.php | 31 + .../Cache/Frontend/Igbinary/ConstructCest.php | 31 + .../Frontend/Igbinary/GetContentCest.php | 31 + .../Frontend/Igbinary/GetLifetimeCest.php | 31 + .../Frontend/Igbinary/IsBufferingCest.php | 31 + .../Cache/Frontend/Igbinary/StartCest.php | 31 + .../unit/Cache/Frontend/Igbinary/StopCest.php | 31 + .../Cache/Frontend/Json/AfterRetrieveCest.php | 31 + .../Cache/Frontend/Json/BeforeStoreCest.php | 31 + .../Cache/Frontend/Json/ConstructCest.php | 31 + .../Cache/Frontend/Json/GetContentCest.php | 31 + .../Cache/Frontend/Json/GetLifetimeCest.php | 31 + .../Cache/Frontend/Json/IsBufferingCest.php | 31 + tests/unit/Cache/Frontend/Json/StartCest.php | 31 + tests/unit/Cache/Frontend/Json/StopCest.php | 31 + .../Frontend/Msgpack/AfterRetrieveCest.php | 31 + .../Frontend/Msgpack/BeforeStoreCest.php | 31 + .../Cache/Frontend/Msgpack/ConstructCest.php | 31 + .../Cache/Frontend/Msgpack/GetContentCest.php | 31 + .../Frontend/Msgpack/GetLifetimeCest.php | 31 + .../Frontend/Msgpack/IsBufferingCest.php | 31 + .../unit/Cache/Frontend/Msgpack/StartCest.php | 31 + .../unit/Cache/Frontend/Msgpack/StopCest.php | 31 + .../Cache/Frontend/None/AfterRetrieveCest.php | 31 + .../Cache/Frontend/None/BeforeStoreCest.php | 31 + .../Cache/Frontend/None/GetContentCest.php | 31 + .../Cache/Frontend/None/GetLifetimeCest.php | 31 + .../Cache/Frontend/None/IsBufferingCest.php | 31 + tests/unit/Cache/Frontend/None/StartCest.php | 31 + tests/unit/Cache/Frontend/None/StopCest.php | 31 + .../Frontend/Output/AfterRetrieveCest.php | 31 + .../Cache/Frontend/Output/BeforeStoreCest.php | 31 + .../Cache/Frontend/Output/ConstructCest.php | 31 + .../Cache/Frontend/Output/GetContentCest.php | 31 + .../Cache/Frontend/Output/GetLifetimeCest.php | 31 + .../Cache/Frontend/Output/IsBufferingCest.php | 31 + .../unit/Cache/Frontend/Output/StartCest.php | 31 + tests/unit/Cache/Frontend/Output/StopCest.php | 31 + tests/unit/Cache/Multiple/ConstructCest.php | 31 + tests/unit/Cache/Multiple/DeleteCest.php | 31 + tests/unit/Cache/Multiple/ExistsCest.php | 31 + tests/unit/Cache/Multiple/FlushCest.php | 31 + tests/unit/Cache/Multiple/GetCest.php | 31 + tests/unit/Cache/Multiple/PushCest.php | 31 + tests/unit/Cache/Multiple/SaveCest.php | 31 + tests/unit/Cache/Multiple/StartCest.php | 31 + tests/unit/Cli/ConsoleTest.php | 585 - tests/unit/Cli/DispatcherTest.php | 150 - tests/unit/Cli/RouterTest.php | 814 - tests/unit/Cli/TaskTest.php | 56 - .../Config/Adapter/Grouped/ConstructCest.php | 81 + .../unit/Config/Adapter/Grouped/CountCest.php | 31 + tests/unit/Config/Adapter/Grouped/GetCest.php | 31 + .../Adapter/Grouped/GetPathDelimiterCest.php | 31 + .../unit/Config/Adapter/Grouped/MergeCest.php | 31 + .../Adapter/Grouped/OffsetExistsCest.php | 31 + .../Config/Adapter/Grouped/OffsetGetCest.php | 31 + .../Config/Adapter/Grouped/OffsetSetCest.php | 31 + .../Adapter/Grouped/OffsetUnsetCest.php | 31 + .../unit/Config/Adapter/Grouped/PathCest.php | 31 + .../Adapter/Grouped/SetPathDelimiterCest.php | 31 + .../Config/Adapter/Grouped/ToArrayCest.php | 31 + tests/unit/Config/Adapter/GroupedTest.php | 88 - .../unit/Config/Adapter/Ini/ConstructCest.php | 68 + tests/unit/Config/Adapter/Ini/CountCest.php | 34 + tests/unit/Config/Adapter/Ini/GetCest.php | 34 + .../Adapter/Ini/GetPathDelimiterCest.php | 34 + tests/unit/Config/Adapter/Ini/MergeCest.php | 31 + .../Config/Adapter/Ini/OffsetExistsCest.php | 34 + .../unit/Config/Adapter/Ini/OffsetGetCest.php | 34 + .../unit/Config/Adapter/Ini/OffsetSetCest.php | 34 + .../Config/Adapter/Ini/OffsetUnsetCest.php | 34 + tests/unit/Config/Adapter/Ini/PathCest.php | 48 + .../Adapter/Ini/SetPathDelimiterCest.php | 34 + tests/unit/Config/Adapter/Ini/ToArrayCest.php | 34 + tests/unit/Config/Adapter/IniTest.php | 118 - .../Config/Adapter/Json/ConstructCest.php | 39 + tests/unit/Config/Adapter/Json/CountCest.php | 42 + tests/unit/Config/Adapter/Json/GetCest.php | 42 + .../Adapter/Json/GetPathDelimiterCest.php | 34 + tests/unit/Config/Adapter/Json/MergeCest.php | 31 + .../Config/Adapter/Json/OffsetExistsCest.php | 42 + .../Config/Adapter/Json/OffsetGetCest.php | 42 + .../Config/Adapter/Json/OffsetSetCest.php | 42 + .../Config/Adapter/Json/OffsetUnsetCest.php | 42 + tests/unit/Config/Adapter/Json/PathCest.php | 56 + .../Adapter/Json/SetPathDelimiterCest.php | 42 + .../unit/Config/Adapter/Json/ToArrayCest.php | 42 + tests/unit/Config/Adapter/JsonTest.php | 43 - .../unit/Config/Adapter/Php/ConstructCest.php | 34 + tests/unit/Config/Adapter/Php/CountCest.php | 34 + tests/unit/Config/Adapter/Php/GetCest.php | 34 + .../Adapter/Php/GetPathDelimiterCest.php | 34 + tests/unit/Config/Adapter/Php/MergeCest.php | 31 + .../Config/Adapter/Php/OffsetExistsCest.php | 34 + .../unit/Config/Adapter/Php/OffsetGetCest.php | 34 + .../unit/Config/Adapter/Php/OffsetSetCest.php | 34 + .../Config/Adapter/Php/OffsetUnsetCest.php | 34 + tests/unit/Config/Adapter/Php/PathCest.php | 48 + .../Adapter/Php/SetPathDelimiterCest.php | 34 + tests/unit/Config/Adapter/Php/ToArrayCest.php | 34 + tests/unit/Config/Adapter/PhpTest.php | 43 - .../Config/Adapter/Yaml/ConstructCest.php | 77 + tests/unit/Config/Adapter/Yaml/CountCest.php | 42 + tests/unit/Config/Adapter/Yaml/GetCest.php | 42 + .../Adapter/Yaml/GetPathDelimiterCest.php | 42 + tests/unit/Config/Adapter/Yaml/MergeCest.php | 31 + .../Config/Adapter/Yaml/OffsetExistsCest.php | 42 + .../Config/Adapter/Yaml/OffsetGetCest.php | 42 + .../Config/Adapter/Yaml/OffsetSetCest.php | 42 + .../Config/Adapter/Yaml/OffsetUnsetCest.php | 42 + tests/unit/Config/Adapter/Yaml/PathCest.php | 56 + .../Adapter/Yaml/SetPathDelimiterCest.php | 42 + .../unit/Config/Adapter/Yaml/ToArrayCest.php | 42 + tests/unit/Config/Adapter/YamlTest.php | 82 - tests/unit/Config/ConfigCest.php | 338 + tests/unit/Config/ConstructCest.php | 34 + tests/unit/Config/CountCest.php | 34 + tests/unit/Config/Factory/LoadCest.php | 90 + tests/unit/Config/FactoryTest.php | 85 - tests/unit/Config/GetCest.php | 34 + tests/unit/Config/GetPathDelimiterCest.php | 34 + tests/unit/Config/Helper/ConfigBase.php | 77 - tests/unit/Config/MergeCest.php | 31 + tests/unit/Config/OffsetExistsCest.php | 34 + tests/unit/Config/OffsetGetCest.php | 34 + tests/unit/Config/OffsetSetCest.php | 34 + tests/unit/Config/OffsetUnsetCest.php | 34 + tests/unit/Config/PathCest.php | 46 + tests/unit/Config/SetPathDelimiterCest.php | 34 + tests/unit/Config/SetStateCest.php | 108 + tests/unit/Config/ToArrayCest.php | 34 + tests/unit/ConfigTest.php | 411 - tests/unit/Crypt/ConstructCest.php | 31 + tests/unit/Crypt/CryptCest.php | 236 + tests/unit/Crypt/DecryptBase64Cest.php | 31 + tests/unit/Crypt/DecryptCest.php | 31 + tests/unit/Crypt/EncryptBase64Cest.php | 31 + tests/unit/Crypt/EncryptCest.php | 31 + tests/unit/Crypt/GetAvailableCiphersCest.php | 31 + .../unit/Crypt/GetAvailableHashAlgosCest.php | 31 + tests/unit/Crypt/GetCipherCest.php | 31 + tests/unit/Crypt/GetHashAlgoCest.php | 31 + tests/unit/Crypt/GetKeyCest.php | 31 + tests/unit/Crypt/Mismatch/ConstructCest.php | 31 + tests/unit/Crypt/Mismatch/GetCodeCest.php | 31 + tests/unit/Crypt/Mismatch/GetFileCest.php | 31 + tests/unit/Crypt/Mismatch/GetLineCest.php | 31 + tests/unit/Crypt/Mismatch/GetMessageCest.php | 31 + tests/unit/Crypt/Mismatch/GetPreviousCest.php | 31 + .../Crypt/Mismatch/GetTraceAsStringCest.php | 31 + tests/unit/Crypt/Mismatch/GetTraceCest.php | 31 + tests/unit/Crypt/Mismatch/ToStringCest.php | 31 + tests/unit/Crypt/Mismatch/WakeupCest.php | 31 + tests/unit/Crypt/SetCipherCest.php | 31 + tests/unit/Crypt/SetHashAlgoCest.php | 31 + tests/unit/Crypt/SetKeyCest.php | 31 + tests/unit/Crypt/SetPaddingCest.php | 31 + tests/unit/Crypt/UseSigningCest.php | 31 + tests/unit/CryptTest.php | 290 - tests/unit/Db/Adapter/Pdo/ColumnsBase.php | 103 - tests/unit/Db/Adapter/Pdo/FactoryTest.php | 72 - .../unit/Db/Adapter/Pdo/Mysql/ColumnsCest.php | 734 - .../unit/Db/Adapter/Pdo/Mysql/TablesCest.php | 86 - tests/unit/Db/Adapter/Pdo/MysqlTest.php | 164 - .../Db/Adapter/Pdo/Postgresql/ColumnsCest.php | 755 - .../Db/Adapter/Pdo/Postgresql/TablesCest.php | 48 - tests/unit/Db/Adapter/Pdo/PostgresqlTest.php | 268 - tests/unit/Db/Adapter/Pdo/TablesBase.php | 43 - tests/unit/Db/Column/PostgresqlTest.php | 63 - tests/unit/Db/ColumnCest.php | 61 - tests/unit/Db/Dialect/MysqlTest.php | 594 - tests/unit/Db/Dialect/PostgresqlTest.php | 544 - tests/unit/Db/Dialect/SqliteTest.php | 569 - tests/unit/Db/IndexTest.php | 56 - tests/unit/Db/ReferenceTest.php | 74 - tests/unit/Debug/ClearVarsCest.php | 31 + tests/unit/Debug/DebugCest.php | 58 + tests/unit/Debug/DebugVarCest.php | 31 + tests/unit/Debug/Dump/AllCest.php | 31 + tests/unit/Debug/Dump/ConstructCest.php | 31 + tests/unit/Debug/Dump/GetDetailedCest.php | 31 + tests/unit/Debug/Dump/OneCest.php | 31 + tests/unit/Debug/Dump/SetDetailedCest.php | 31 + tests/unit/Debug/Dump/SetStylesCest.php | 31 + tests/unit/Debug/Dump/ToJsonCest.php | 31 + tests/unit/Debug/Dump/VariableCest.php | 31 + tests/unit/Debug/Dump/VariablesCest.php | 31 + tests/unit/Debug/DumpCest.php | 43 + tests/unit/Debug/DumpTest.php | 57 - tests/unit/Debug/GetCssSourcesCest.php | 31 + tests/unit/Debug/GetJsSourcesCest.php | 31 + tests/unit/Debug/GetVersionCest.php | 31 + tests/unit/Debug/HaltCest.php | 31 + tests/unit/Debug/Helper/ClassProperties.php | 12 + tests/unit/Debug/ListenCest.php | 31 + tests/unit/Debug/ListenExceptionsCest.php | 31 + tests/unit/Debug/ListenLowSeverityCest.php | 31 + tests/unit/Debug/OnUncaughtExceptionCest.php | 31 + .../unit/Debug/OnUncaughtLowSeverityCest.php | 31 + tests/unit/Debug/SetShowBackTraceCest.php | 31 + tests/unit/Debug/SetShowFileFragmentCest.php | 31 + tests/unit/Debug/SetShowFilesCest.php | 31 + tests/unit/Debug/SetUriCest.php | 31 + tests/unit/DebugTest.php | 52 - tests/unit/Di/AttemptCest.php | 31 + tests/unit/Di/ConstructCest.php | 28 + tests/unit/Di/DiCest.php | 483 + tests/unit/Di/FactoryDefault/AttemptCest.php | 31 + .../unit/Di/FactoryDefault/ConstructCest.php | 89 + tests/unit/Di/FactoryDefault/GetCest.php | 31 + .../unit/Di/FactoryDefault/GetDefaultCest.php | 31 + .../GetInternalEventsManagerCest.php | 31 + tests/unit/Di/FactoryDefault/GetRawCest.php | 31 + .../unit/Di/FactoryDefault/GetServiceCest.php | 31 + .../Di/FactoryDefault/GetServicesCest.php | 31 + .../unit/Di/FactoryDefault/GetSharedCest.php | 31 + tests/unit/Di/FactoryDefault/HasCest.php | 31 + .../Di/FactoryDefault/LoadFromPhpCest.php | 31 + .../Di/FactoryDefault/LoadFromYamlCest.php | 31 + .../Di/FactoryDefault/OffsetExistsCest.php | 31 + .../unit/Di/FactoryDefault/OffsetGetCest.php | 31 + .../unit/Di/FactoryDefault/OffsetSetCest.php | 31 + .../Di/FactoryDefault/OffsetUnsetCest.php | 31 + tests/unit/Di/FactoryDefault/RegisterCest.php | 31 + tests/unit/Di/FactoryDefault/RemoveCest.php | 31 + tests/unit/Di/FactoryDefault/ResetCest.php | 31 + tests/unit/Di/FactoryDefault/SetCest.php | 31 + .../unit/Di/FactoryDefault/SetDefaultCest.php | 31 + .../SetInternalEventsManagerCest.php | 31 + tests/unit/Di/FactoryDefault/SetRawCest.php | 31 + .../unit/Di/FactoryDefault/SetSharedCest.php | 31 + .../Di/FactoryDefault/UnderscoreCallCest.php | 31 + .../FactoryDefault/WasFreshInstanceCest.php | 31 + tests/unit/Di/FactoryDefaultTest.php | 72 - tests/unit/Di/GetCest.php | 31 + tests/unit/Di/GetDefaultCest.php | 31 + .../unit/Di/GetInternalEventsManagerCest.php | 31 + tests/unit/Di/GetRawCest.php | 31 + tests/unit/Di/GetServiceCest.php | 31 + tests/unit/Di/GetServicesCest.php | 31 + tests/unit/Di/GetSharedCest.php | 31 + tests/unit/Di/HasCest.php | 31 + tests/unit/Di/Injectable/GetDICest.php | 31 + .../Di/Injectable/GetEventsManagerCest.php | 31 + tests/unit/Di/Injectable/SetDICest.php | 31 + .../Di/Injectable/SetEventsManagerCest.php | 31 + .../unit/Di/Injectable/UnderscoreGetCest.php | 28 + tests/unit/Di/LoadFromPhpCest.php | 31 + tests/unit/Di/LoadFromYamlCest.php | 31 + tests/unit/Di/OffsetExistsCest.php | 31 + tests/unit/Di/OffsetGetCest.php | 31 + tests/unit/Di/OffsetSetCest.php | 31 + tests/unit/Di/OffsetUnsetCest.php | 31 + tests/unit/Di/RegisterCest.php | 31 + tests/unit/Di/RemoveCest.php | 31 + tests/unit/Di/ResetCest.php | 31 + tests/unit/Di/Service/Builder/BuildCest.php | 31 + tests/unit/Di/Service/ConstructCest.php | 28 + tests/unit/Di/Service/GetDefinitionCest.php | 31 + tests/unit/Di/Service/GetNameCest.php | 28 + tests/unit/Di/Service/GetParameterCest.php | 31 + tests/unit/Di/Service/IsResolvedCest.php | 31 + tests/unit/Di/Service/IsSharedCest.php | 31 + tests/unit/Di/Service/ResolveCest.php | 31 + tests/unit/Di/Service/SetDefinitionCest.php | 31 + tests/unit/Di/Service/SetParameterCest.php | 31 + tests/unit/Di/Service/SetSharedCest.php | 31 + .../unit/Di/Service/SetSharedInstanceCest.php | 31 + tests/unit/Di/Service/SetStateCest.php | 28 + tests/unit/Di/ServiceCest.php | 48 + tests/unit/Di/ServiceTest.php | 66 - tests/unit/Di/SetCest.php | 31 + tests/unit/Di/SetDefaultCest.php | 31 + .../unit/Di/SetInternalEventsManagerCest.php | 31 + tests/unit/Di/SetRawCest.php | 31 + tests/unit/Di/SetSharedCest.php | 31 + tests/unit/Di/UnderscoreCallCest.php | 28 + tests/unit/Di/WasFreshInstanceCest.php | 31 + tests/unit/DiTest.php | 578 - .../unit/Dispatcher/CallActionMethodCest.php | 31 + tests/unit/Dispatcher/DispatchCest.php | 31 + tests/unit/Dispatcher/ForwardCest.php | 31 + tests/unit/Dispatcher/GetActionNameCest.php | 31 + tests/unit/Dispatcher/GetActionSuffixCest.php | 31 + tests/unit/Dispatcher/GetActiveMethodCest.php | 31 + tests/unit/Dispatcher/GetBoundModelsCest.php | 31 + tests/unit/Dispatcher/GetDICest.php | 31 + .../Dispatcher/GetDefaultNamespaceCest.php | 31 + .../unit/Dispatcher/GetEventsManagerCest.php | 31 + tests/unit/Dispatcher/GetHandlerClassCest.php | 31 + .../unit/Dispatcher/GetHandlerSuffixCest.php | 31 + tests/unit/Dispatcher/GetModelBinderCest.php | 31 + tests/unit/Dispatcher/GetModuleNameCest.php | 31 + .../unit/Dispatcher/GetNamespaceNameCest.php | 31 + tests/unit/Dispatcher/GetParamCest.php | 31 + tests/unit/Dispatcher/GetParamsCest.php | 31 + .../unit/Dispatcher/GetReturnedValueCest.php | 31 + tests/unit/Dispatcher/HasParamCest.php | 31 + tests/unit/Dispatcher/IsFinishedCest.php | 31 + tests/unit/Dispatcher/SetActionNameCest.php | 31 + tests/unit/Dispatcher/SetActionSuffixCest.php | 31 + tests/unit/Dispatcher/SetDICest.php | 31 + .../unit/Dispatcher/SetDefaultActionCest.php | 31 + .../Dispatcher/SetDefaultNamespaceCest.php | 31 + .../unit/Dispatcher/SetEventsManagerCest.php | 31 + .../unit/Dispatcher/SetHandlerSuffixCest.php | 31 + tests/unit/Dispatcher/SetModelBinderCest.php | 31 + tests/unit/Dispatcher/SetModuleNameCest.php | 31 + .../unit/Dispatcher/SetNamespaceNameCest.php | 31 + tests/unit/Dispatcher/SetParamCest.php | 31 + tests/unit/Dispatcher/SetParamsCest.php | 31 + .../unit/Dispatcher/SetReturnedValueCest.php | 31 + tests/unit/Dispatcher/WasForwardedCest.php | 31 + tests/unit/Escaper/DetectEncodingCest.php | 48 + tests/unit/Escaper/EscapeCssCest.php | 40 + tests/unit/Escaper/EscapeHtmlAttrCest.php | 56 + tests/unit/Escaper/EscapeHtmlCest.php | 36 + tests/unit/Escaper/EscapeJsCest.php | 51 + tests/unit/Escaper/EscapeUrlCest.php | 36 + tests/unit/Escaper/GetEncodingCest.php | 37 + tests/unit/Escaper/NormalizeEncodingCest.php | 39 + tests/unit/Escaper/SetDoubleEncodeCest.php | 43 + tests/unit/Escaper/SetEncodingCest.php | 37 + tests/unit/Escaper/SetHtmlQuoteTypeCest.php | 38 + tests/unit/EscaperTest.php | 241 - tests/unit/Events/Event/ConstructCest.php | 31 + tests/unit/Events/Event/GetDataCest.php | 31 + tests/unit/Events/Event/GetSourceCest.php | 31 + tests/unit/Events/Event/GetTypeCest.php | 31 + tests/unit/Events/Event/IsCancelableCest.php | 31 + tests/unit/Events/Event/IsStoppedCest.php | 31 + tests/unit/Events/Event/SetDataCest.php | 31 + tests/unit/Events/Event/SetTypeCest.php | 31 + tests/unit/Events/Event/StopCest.php | 31 + .../Manager/ArePrioritiesEnabledCest.php | 31 + tests/unit/Events/Manager/AttachCest.php | 31 + .../Events/Manager/CollectResponsesCest.php | 31 + tests/unit/Events/Manager/DetachAllCest.php | 31 + tests/unit/Events/Manager/DetachCest.php | 31 + .../Events/Manager/EnablePrioritiesCest.php | 31 + tests/unit/Events/Manager/FireCest.php | 31 + tests/unit/Events/Manager/FireQueueCest.php | 31 + .../unit/Events/Manager/GetListenersCest.php | 31 + .../unit/Events/Manager/GetResponsesCest.php | 31 + .../unit/Events/Manager/HasListenersCest.php | 31 + .../unit/Events/Manager/IsCollectingCest.php | 31 + tests/unit/Events/ManagerCest.php | 308 + tests/unit/Events/ManagerTest.php | 356 - tests/unit/Factory/Helper/FactoryBase.php | 30 - tests/unit/Factory/LoadCest.php | 31 + tests/unit/Filter/AddCest.php | 31 + tests/unit/Filter/FilterAlphanumCest.php | 71 + tests/unit/Filter/FilterAlphanumTest.php | 97 - tests/unit/Filter/FilterCustomCest.php | 118 + tests/unit/Filter/FilterCustomTest.php | 151 - tests/unit/Filter/FilterEmailCest.php | 37 + tests/unit/Filter/FilterEmailTest.php | 46 - tests/unit/Filter/FilterFloatCest.php | 74 + tests/unit/Filter/FilterFloatTest.php | 103 - tests/unit/Filter/FilterIntegerCest.php | 107 + tests/unit/Filter/FilterIntegerTest.php | 153 - tests/unit/Filter/FilterMultipleCest.php | 58 + tests/unit/Filter/FilterMultipleTest.php | 77 - tests/unit/Filter/FilterSpecialCharsCest.php | 32 + tests/unit/Filter/FilterSpecialCharsTest.php | 42 - tests/unit/Filter/FilterStringCest.php | 141 + tests/unit/Filter/FilterStringTest.php | 190 - tests/unit/Filter/FilterStriptagsCest.php | 58 + tests/unit/Filter/FilterStriptagsTest.php | 77 - tests/unit/Filter/FilterTrimCest.php | 58 + tests/unit/Filter/FilterTrimTest.php | 77 - tests/unit/Filter/FilterUpperLowerCest.php | 71 + tests/unit/Filter/FilterUpperLowerTest.php | 95 - tests/unit/Filter/FilterUrlCest.php | 32 + tests/unit/Filter/FilterUrlTest.php | 42 - tests/unit/Filter/GetFiltersCest.php | 31 + tests/unit/Filter/Helper/FilterBase.php | 36 +- tests/unit/Filter/Helper/IPv4.php | 23 +- tests/unit/Filter/SanitizeCest.php | 31 + tests/unit/Flash/ClearCest.php | 31 + tests/unit/Flash/ConstructCest.php | 31 + tests/unit/Flash/Direct/ClearCest.php | 31 + tests/unit/Flash/Direct/ConstructCest.php | 31 + tests/unit/Flash/Direct/ErrorCest.php | 31 + .../Flash/Direct/FlashDirectCustomCSSCest.php | 32 + .../Flash/Direct/FlashDirectCustomCSSTest.php | 39 - .../Flash/Direct/FlashDirectEmptyCSSCest.php | 25 + .../Flash/Direct/FlashDirectEmptyCSSTest.php | 34 - tests/unit/Flash/Direct/GetAutoescapeCest.php | 31 + .../Flash/Direct/GetCustomTemplateCest.php | 31 + tests/unit/Flash/Direct/GetDICest.php | 31 + .../Flash/Direct/GetEscaperServiceCest.php | 31 + tests/unit/Flash/Direct/Helper/FlashBase.php | 402 +- tests/unit/Flash/Direct/MessageCest.php | 31 + tests/unit/Flash/Direct/NoticeCest.php | 31 + tests/unit/Flash/Direct/OutputCest.php | 31 + tests/unit/Flash/Direct/OutputMessageCest.php | 31 + tests/unit/Flash/Direct/SetAutoescapeCest.php | 31 + .../Flash/Direct/SetAutomaticHtmlCest.php | 31 + tests/unit/Flash/Direct/SetCssClassesCest.php | 31 + .../Flash/Direct/SetCustomTemplateCest.php | 31 + tests/unit/Flash/Direct/SetDICest.php | 31 + .../Flash/Direct/SetEscaperServiceCest.php | 31 + .../Flash/Direct/SetImplicitFlushCest.php | 31 + tests/unit/Flash/Direct/SuccessCest.php | 31 + tests/unit/Flash/Direct/WarningCest.php | 31 + tests/unit/Flash/ErrorCest.php | 31 + tests/unit/Flash/GetAutoescapeCest.php | 31 + tests/unit/Flash/GetCustomTemplateCest.php | 31 + tests/unit/Flash/GetDICest.php | 31 + tests/unit/Flash/GetEscaperServiceCest.php | 31 + tests/unit/Flash/MessageCest.php | 31 + tests/unit/Flash/NoticeCest.php | 31 + tests/unit/Flash/OutputMessageCest.php | 31 + tests/unit/Flash/Session/ClearCest.php | 31 + tests/unit/Flash/Session/ConstructCest.php | 31 + tests/unit/Flash/Session/ErrorCest.php | 31 + .../unit/Flash/Session/GetAutoescapeCest.php | 31 + .../Flash/Session/GetCustomTemplateCest.php | 31 + tests/unit/Flash/Session/GetDICest.php | 31 + .../Flash/Session/GetEscaperServiceCest.php | 31 + tests/unit/Flash/Session/GetMessagesCest.php | 31 + tests/unit/Flash/Session/HasCest.php | 31 + tests/unit/Flash/Session/MessageCest.php | 31 + tests/unit/Flash/Session/NoticeCest.php | 31 + tests/unit/Flash/Session/OutputCest.php | 31 + .../unit/Flash/Session/OutputMessageCest.php | 31 + .../unit/Flash/Session/SetAutoescapeCest.php | 31 + .../Flash/Session/SetAutomaticHtmlCest.php | 31 + .../unit/Flash/Session/SetCssClassesCest.php | 31 + .../Flash/Session/SetCustomTemplateCest.php | 31 + tests/unit/Flash/Session/SetDICest.php | 31 + .../Flash/Session/SetEscaperServiceCest.php | 31 + .../Flash/Session/SetImplicitFlushCest.php | 31 + tests/unit/Flash/Session/SuccessCest.php | 31 + tests/unit/Flash/Session/WarningCest.php | 31 + tests/unit/Flash/SessionCest.php | 273 + tests/unit/Flash/SessionTest.php | 275 - tests/unit/Flash/SetAutoescapeCest.php | 31 + tests/unit/Flash/SetAutomaticHtmlCest.php | 31 + tests/unit/Flash/SetCssClassesCest.php | 31 + tests/unit/Flash/SetCustomTemplateCest.php | 31 + tests/unit/Flash/SetDICest.php | 31 + tests/unit/Flash/SetEscaperServiceCest.php | 31 + tests/unit/Flash/SetImplicitFlushCest.php | 31 + tests/unit/Flash/SuccessCest.php | 31 + tests/unit/Flash/WarningCest.php | 31 + tests/unit/Forms/Element/TextTest.php | 226 - tests/unit/Forms/FormTest.php | 601 - tests/unit/Http/Cookie/ConstructCest.php | 31 + tests/unit/Http/Cookie/CookieCest.php | 173 + tests/unit/Http/Cookie/DeleteCest.php | 31 + tests/unit/Http/Cookie/GetDICest.php | 31 + tests/unit/Http/Cookie/GetDomainCest.php | 31 + tests/unit/Http/Cookie/GetExpirationCest.php | 31 + tests/unit/Http/Cookie/GetHttpOnlyCest.php | 31 + tests/unit/Http/Cookie/GetNameCest.php | 31 + tests/unit/Http/Cookie/GetPathCest.php | 31 + tests/unit/Http/Cookie/GetSecureCest.php | 31 + tests/unit/Http/Cookie/GetValueCest.php | 31 + .../Http/Cookie/IsUsingEncryptionCest.php | 31 + tests/unit/Http/Cookie/RestoreCest.php | 31 + tests/unit/Http/Cookie/SendCest.php | 31 + tests/unit/Http/Cookie/SetDICest.php | 31 + tests/unit/Http/Cookie/SetDomainCest.php | 31 + tests/unit/Http/Cookie/SetExpirationCest.php | 31 + tests/unit/Http/Cookie/SetHttpOnlyCest.php | 31 + tests/unit/Http/Cookie/SetPathCest.php | 31 + tests/unit/Http/Cookie/SetSecureCest.php | 31 + tests/unit/Http/Cookie/SetSignKeyCest.php | 31 + tests/unit/Http/Cookie/SetValueCest.php | 31 + tests/unit/Http/Cookie/ToStringCest.php | 31 + tests/unit/Http/Cookie/UseEncryptionCest.php | 31 + tests/unit/Http/CookieTest.php | 183 - tests/unit/Http/Helper/HttpBase.php | 211 +- tests/unit/Http/Request/AuthHeaderCest.php | 320 + tests/unit/Http/Request/AuthHeaderTest.php | 332 - .../unit/Http/Request/File/ConstructCest.php | 31 + tests/unit/Http/Request/File/GetErrorCest.php | 31 + .../Http/Request/File/GetExtensionCest.php | 31 + tests/unit/Http/Request/File/GetKeyCest.php | 31 + tests/unit/Http/Request/File/GetNameCest.php | 31 + .../Http/Request/File/GetRealTypeCest.php | 31 + tests/unit/Http/Request/File/GetSizeCest.php | 31 + .../Http/Request/File/GetTempNameCest.php | 31 + tests/unit/Http/Request/File/GetTypeCest.php | 31 + .../Http/Request/File/IsUploadedFileCest.php | 31 + tests/unit/Http/Request/File/MoveToCest.php | 31 + tests/unit/Http/Request/FileCest.php | 53 + tests/unit/Http/Request/FileTest.php | 57 - .../Http/Request/GetAcceptableContentCest.php | 31 + tests/unit/Http/Request/GetBasicAuthCest.php | 31 + tests/unit/Http/Request/GetBestAcceptCest.php | 31 + .../unit/Http/Request/GetBestCharsetCest.php | 31 + .../unit/Http/Request/GetBestLanguageCest.php | 31 + tests/unit/Http/Request/GetCest.php | 31 + .../Http/Request/GetClientAddressCest.php | 31 + .../Http/Request/GetClientCharsetsCest.php | 31 + .../unit/Http/Request/GetContentTypeCest.php | 31 + tests/unit/Http/Request/GetDICest.php | 31 + tests/unit/Http/Request/GetDigestAuthCest.php | 31 + .../unit/Http/Request/GetHTTPRefererCest.php | 31 + tests/unit/Http/Request/GetHeaderCest.php | 31 + tests/unit/Http/Request/GetHeadersCest.php | 31 + tests/unit/Http/Request/GetHttpHostCest.php | 31 + .../GetHttpMethodParameterOverrideCest.php | 31 + .../unit/Http/Request/GetJsonRawBodyCest.php | 31 + tests/unit/Http/Request/GetLanguagesCest.php | 31 + tests/unit/Http/Request/GetMethodCest.php | 31 + tests/unit/Http/Request/GetPortCest.php | 31 + tests/unit/Http/Request/GetPostCest.php | 31 + tests/unit/Http/Request/GetPutCest.php | 31 + tests/unit/Http/Request/GetQueryCest.php | 31 + tests/unit/Http/Request/GetRawBodyCest.php | 31 + tests/unit/Http/Request/GetSchemeCest.php | 31 + .../Http/Request/GetServerAddressCest.php | 31 + tests/unit/Http/Request/GetServerCest.php | 31 + tests/unit/Http/Request/GetServerNameCest.php | 31 + tests/unit/Http/Request/GetURICest.php | 31 + .../Http/Request/GetUploadedFilesCest.php | 31 + tests/unit/Http/Request/GetUserAgentCest.php | 31 + tests/unit/Http/Request/HasCest.php | 31 + tests/unit/Http/Request/HasFilesCest.php | 31 + tests/unit/Http/Request/HasHeaderCest.php | 31 + tests/unit/Http/Request/HasPostCest.php | 31 + tests/unit/Http/Request/HasPutCest.php | 31 + tests/unit/Http/Request/HasQueryCest.php | 31 + tests/unit/Http/Request/HasServerCest.php | 31 + tests/unit/Http/Request/IsAjaxCest.php | 31 + tests/unit/Http/Request/IsConnectCest.php | 31 + tests/unit/Http/Request/IsDeleteCest.php | 31 + tests/unit/Http/Request/IsGetCest.php | 31 + tests/unit/Http/Request/IsHeadCest.php | 31 + tests/unit/Http/Request/IsMethodCest.php | 31 + tests/unit/Http/Request/IsOptionsCest.php | 31 + tests/unit/Http/Request/IsPatchCest.php | 31 + tests/unit/Http/Request/IsPostCest.php | 31 + tests/unit/Http/Request/IsPurgeCest.php | 31 + tests/unit/Http/Request/IsPutCest.php | 31 + tests/unit/Http/Request/IsSecureCest.php | 31 + tests/unit/Http/Request/IsSoapCest.php | 31 + .../Http/Request/IsStrictHostCheckCest.php | 31 + tests/unit/Http/Request/IsTraceCest.php | 31 + .../Http/Request/IsValidHttpMethodCest.php | 31 + tests/unit/Http/Request/RequestCest.php | 1031 ++ tests/unit/Http/Request/SetDICest.php | 31 + .../SetHttpMethodParameterOverrideCest.php | 31 + .../Http/Request/SetStrictHostCheckCest.php | 31 + tests/unit/Http/RequestTest.php | 1232 -- .../unit/Http/Response/AppendContentCest.php | 31 + tests/unit/Http/Response/ConstructCest.php | 31 + .../Http/Response/Cookies/ConstructCest.php | 31 + .../unit/Http/Response/Cookies/DeleteCest.php | 31 + tests/unit/Http/Response/Cookies/GetCest.php | 31 + .../Http/Response/Cookies/GetCookiesCest.php | 31 + .../unit/Http/Response/Cookies/GetDICest.php | 31 + tests/unit/Http/Response/Cookies/HasCest.php | 31 + .../Cookies/IsUsingEncryptionCest.php | 31 + .../unit/Http/Response/Cookies/ResetCest.php | 31 + tests/unit/Http/Response/Cookies/SendCest.php | 31 + tests/unit/Http/Response/Cookies/SetCest.php | 31 + .../unit/Http/Response/Cookies/SetDICest.php | 31 + .../Http/Response/Cookies/SetSignKeyCest.php | 31 + .../Response/Cookies/UseEncryptionCest.php | 31 + tests/unit/Http/Response/CookiesCest.php | 80 + tests/unit/Http/Response/CookiesTest.php | 98 - tests/unit/Http/Response/GetContentCest.php | 31 + tests/unit/Http/Response/GetCookiesCest.php | 31 + tests/unit/Http/Response/GetDICest.php | 31 + tests/unit/Http/Response/GetHeadersCest.php | 31 + .../Http/Response/GetReasonPhraseCest.php | 31 + .../unit/Http/Response/GetStatusCodeCest.php | 31 + tests/unit/Http/Response/HasHeaderCest.php | 31 + tests/unit/Http/Response/Headers/GetCest.php | 31 + tests/unit/Http/Response/Headers/HasCest.php | 31 + .../unit/Http/Response/Headers/RemoveCest.php | 31 + .../unit/Http/Response/Headers/ResetCest.php | 31 + tests/unit/Http/Response/Headers/SendCest.php | 31 + tests/unit/Http/Response/Headers/SetCest.php | 31 + .../unit/Http/Response/Headers/SetRawCest.php | 31 + .../Http/Response/Headers/SetStateCest.php | 31 + .../Http/Response/Headers/ToArrayCest.php | 31 + tests/unit/Http/Response/HeadersCest.php | 198 + tests/unit/Http/Response/HeadersTest.php | 245 - tests/unit/Http/Response/IsSentCest.php | 31 + tests/unit/Http/Response/RedirectCest.php | 31 + tests/unit/Http/Response/RemoveHeaderCest.php | 31 + tests/unit/Http/Response/ResetHeadersCest.php | 31 + tests/unit/Http/Response/ResponseCest.php | 536 + tests/unit/Http/Response/SendCest.php | 31 + tests/unit/Http/Response/SendCookiesCest.php | 31 + tests/unit/Http/Response/SendHeadersCest.php | 31 + tests/unit/Http/Response/SetCacheCest.php | 31 + tests/unit/Http/Response/SetContentCest.php | 31 + .../Http/Response/SetContentLengthCest.php | 31 + .../unit/Http/Response/SetContentTypeCest.php | 31 + tests/unit/Http/Response/SetCookiesCest.php | 31 + tests/unit/Http/Response/SetDICest.php | 31 + tests/unit/Http/Response/SetEtagCest.php | 31 + tests/unit/Http/Response/SetExpiresCest.php | 31 + .../unit/Http/Response/SetFileToSendCest.php | 31 + tests/unit/Http/Response/SetHeaderCest.php | 31 + tests/unit/Http/Response/SetHeadersCest.php | 31 + .../unit/Http/Response/SetJsonContentCest.php | 31 + .../Http/Response/SetLastModifiedCest.php | 31 + .../unit/Http/Response/SetNotModifiedCest.php | 31 + tests/unit/Http/Response/SetRawHeaderCest.php | 31 + .../unit/Http/Response/SetStatusCodeCest.php | 31 + tests/unit/Http/ResponseTest.php | 617 - tests/unit/Image/Adapter/BackgroundCest.php | 31 + tests/unit/Image/Adapter/BlurCest.php | 31 + tests/unit/Image/Adapter/CropCest.php | 31 + tests/unit/Image/Adapter/FlipCest.php | 31 + .../unit/Image/Adapter/Gd/BackgroundCest.php | 31 + tests/unit/Image/Adapter/Gd/BlurCest.php | 31 + tests/unit/Image/Adapter/Gd/CheckCest.php | 31 + tests/unit/Image/Adapter/Gd/ConstructCest.php | 31 + tests/unit/Image/Adapter/Gd/CropCest.php | 31 + tests/unit/Image/Adapter/Gd/DestructCest.php | 31 + tests/unit/Image/Adapter/Gd/FlipCest.php | 31 + tests/unit/Image/Adapter/Gd/GetHeightCest.php | 31 + tests/unit/Image/Adapter/Gd/GetImageCest.php | 31 + tests/unit/Image/Adapter/Gd/GetMimeCest.php | 31 + .../unit/Image/Adapter/Gd/GetRealpathCest.php | 31 + tests/unit/Image/Adapter/Gd/GetTypeCest.php | 31 + tests/unit/Image/Adapter/Gd/GetWidthCest.php | 31 + .../Image/Adapter/Gd/LiquidRescaleCest.php | 31 + tests/unit/Image/Adapter/Gd/MaskCest.php | 31 + tests/unit/Image/Adapter/Gd/PixelateCest.php | 31 + .../unit/Image/Adapter/Gd/ReflectionCest.php | 31 + tests/unit/Image/Adapter/Gd/RenderCest.php | 31 + tests/unit/Image/Adapter/Gd/ResizeCest.php | 31 + tests/unit/Image/Adapter/Gd/RotateCest.php | 31 + tests/unit/Image/Adapter/Gd/SaveCest.php | 31 + tests/unit/Image/Adapter/Gd/SharpenCest.php | 31 + tests/unit/Image/Adapter/Gd/TextCest.php | 31 + tests/unit/Image/Adapter/Gd/WatermarkCest.php | 31 + tests/unit/Image/Adapter/GdTest.php | 388 - tests/unit/Image/Adapter/GetHeightCest.php | 31 + tests/unit/Image/Adapter/GetImageCest.php | 31 + tests/unit/Image/Adapter/GetMimeCest.php | 31 + tests/unit/Image/Adapter/GetRealpathCest.php | 31 + tests/unit/Image/Adapter/GetTypeCest.php | 31 + tests/unit/Image/Adapter/GetWidthCest.php | 31 + .../Image/Adapter/Imagick/BackgroundCest.php | 31 + tests/unit/Image/Adapter/Imagick/BlurCest.php | 31 + .../unit/Image/Adapter/Imagick/CheckCest.php | 31 + .../Image/Adapter/Imagick/ConstructCest.php | 31 + tests/unit/Image/Adapter/Imagick/CropCest.php | 31 + .../Image/Adapter/Imagick/DestructCest.php | 31 + tests/unit/Image/Adapter/Imagick/FlipCest.php | 31 + .../Image/Adapter/Imagick/GetHeightCest.php | 31 + .../Image/Adapter/Imagick/GetImageCest.php | 31 + .../Imagick/GetInternalImInstanceCest.php | 31 + .../Image/Adapter/Imagick/GetMimeCest.php | 31 + .../Image/Adapter/Imagick/GetRealpathCest.php | 31 + .../Image/Adapter/Imagick/GetTypeCest.php | 31 + .../Image/Adapter/Imagick/GetWidthCest.php | 31 + .../Adapter/Imagick/LiquidRescaleCest.php | 31 + tests/unit/Image/Adapter/Imagick/MaskCest.php | 31 + .../Image/Adapter/Imagick/PixelateCest.php | 31 + .../Image/Adapter/Imagick/ReflectionCest.php | 31 + .../unit/Image/Adapter/Imagick/RenderCest.php | 31 + .../unit/Image/Adapter/Imagick/ResizeCest.php | 31 + .../unit/Image/Adapter/Imagick/RotateCest.php | 31 + tests/unit/Image/Adapter/Imagick/SaveCest.php | 31 + .../Adapter/Imagick/SetResourceLimitCest.php | 31 + .../Image/Adapter/Imagick/SharpenCest.php | 31 + tests/unit/Image/Adapter/Imagick/TextCest.php | 31 + .../Image/Adapter/Imagick/WatermarkCest.php | 31 + tests/unit/Image/Adapter/ImagickCest.php | 299 + tests/unit/Image/Adapter/ImagickTest.php | 365 - .../unit/Image/Adapter/LiquidRescaleCest.php | 31 + tests/unit/Image/Adapter/MaskCest.php | 31 + tests/unit/Image/Adapter/PixelateCest.php | 31 + tests/unit/Image/Adapter/ReflectionCest.php | 31 + tests/unit/Image/Adapter/RenderCest.php | 31 + tests/unit/Image/Adapter/ResizeCest.php | 31 + tests/unit/Image/Adapter/RotateCest.php | 31 + tests/unit/Image/Adapter/SaveCest.php | 31 + tests/unit/Image/Adapter/SharpenCest.php | 31 + tests/unit/Image/Adapter/TextCest.php | 31 + tests/unit/Image/Adapter/WatermarkCest.php | 31 + tests/unit/Image/Factory/LoadCest.php | 76 + tests/unit/Image/FactoryTest.php | 80 - tests/unit/Kernel/PreComputeHashKeyCest.php | 31 + tests/unit/Loader/AutoLoadCest.php | 31 + tests/unit/Loader/GetCheckedPathCest.php | 31 + tests/unit/Loader/GetClassesCest.php | 31 + tests/unit/Loader/GetDirsCest.php | 31 + tests/unit/Loader/GetEventsManagerCest.php | 31 + tests/unit/Loader/GetExtensionsCest.php | 31 + tests/unit/Loader/GetFilesCest.php | 31 + tests/unit/Loader/GetFoundPathCest.php | 31 + tests/unit/Loader/GetNamespacesCest.php | 31 + tests/unit/Loader/LoadFilesCest.php | 31 + tests/unit/Loader/LoaderCest.php | 401 + tests/unit/Loader/RegisterCest.php | 31 + tests/unit/Loader/RegisterClassesCest.php | 31 + tests/unit/Loader/RegisterDirsCest.php | 31 + tests/unit/Loader/RegisterFilesCest.php | 31 + tests/unit/Loader/RegisterNamespacesCest.php | 31 + tests/unit/Loader/SetEventsManagerCest.php | 31 + tests/unit/Loader/SetExtensionsCest.php | 31 + .../Loader/SetFileCheckingCallbackCest.php | 31 + tests/unit/Loader/UnregisterCest.php | 31 + tests/unit/LoaderTest.php | 390 - tests/unit/Logger/Adapter/AlertCest.php | 31 + tests/unit/Logger/Adapter/BeginCest.php | 31 + .../Logger/Adapter/Blackhole/AlertCest.php | 31 + .../Logger/Adapter/Blackhole/BeginCest.php | 31 + .../Logger/Adapter/Blackhole/CloseCest.php | 31 + .../Logger/Adapter/Blackhole/CommitCest.php | 31 + .../Logger/Adapter/Blackhole/CriticalCest.php | 31 + .../Logger/Adapter/Blackhole/DebugCest.php | 31 + .../Adapter/Blackhole/EmergencyCest.php | 31 + .../Logger/Adapter/Blackhole/ErrorCest.php | 31 + .../Adapter/Blackhole/GetFormatterCest.php | 31 + .../Adapter/Blackhole/GetLogLevelCest.php | 31 + .../Logger/Adapter/Blackhole/InfoCest.php | 31 + .../Adapter/Blackhole/IsTransactionCest.php | 31 + .../unit/Logger/Adapter/Blackhole/LogCest.php | 31 + .../Adapter/Blackhole/LogInternalCest.php | 31 + .../Logger/Adapter/Blackhole/NoticeCest.php | 31 + .../Logger/Adapter/Blackhole/RollbackCest.php | 31 + .../Adapter/Blackhole/SetFormatterCest.php | 31 + .../Adapter/Blackhole/SetLogLevelCest.php | 31 + .../Logger/Adapter/Blackhole/WarningCest.php | 31 + tests/unit/Logger/Adapter/CloseCest.php | 31 + tests/unit/Logger/Adapter/CommitCest.php | 31 + tests/unit/Logger/Adapter/CriticalCest.php | 31 + tests/unit/Logger/Adapter/DebugCest.php | 31 + tests/unit/Logger/Adapter/EmergencyCest.php | 31 + tests/unit/Logger/Adapter/ErrorCest.php | 31 + tests/unit/Logger/Adapter/File/AlertCest.php | 31 + tests/unit/Logger/Adapter/File/BeginCest.php | 31 + tests/unit/Logger/Adapter/File/CloseCest.php | 31 + tests/unit/Logger/Adapter/File/CommitCest.php | 31 + .../Logger/Adapter/File/ConstructCest.php | 31 + .../unit/Logger/Adapter/File/CriticalCest.php | 31 + tests/unit/Logger/Adapter/File/DebugCest.php | 31 + .../Logger/Adapter/File/EmergencyCest.php | 31 + tests/unit/Logger/Adapter/File/ErrorCest.php | 31 + .../Logger/Adapter/File/GetFormatterCest.php | 31 + .../Logger/Adapter/File/GetLogLevelCest.php | 31 + .../unit/Logger/Adapter/File/GetPathCest.php | 31 + tests/unit/Logger/Adapter/File/InfoCest.php | 31 + .../Logger/Adapter/File/IsTransactionCest.php | 31 + tests/unit/Logger/Adapter/File/LogCest.php | 31 + .../Logger/Adapter/File/LogInternalCest.php | 31 + tests/unit/Logger/Adapter/File/NoticeCest.php | 31 + .../unit/Logger/Adapter/File/RollbackCest.php | 31 + .../Logger/Adapter/File/SetFormatterCest.php | 31 + .../Logger/Adapter/File/SetLogLevelCest.php | 31 + tests/unit/Logger/Adapter/File/WakeupCest.php | 31 + .../unit/Logger/Adapter/File/WarningCest.php | 31 + tests/unit/Logger/Adapter/FileCest.php | 624 + tests/unit/Logger/Adapter/FileTest.php | 1002 -- .../unit/Logger/Adapter/Firephp/AlertCest.php | 31 + .../unit/Logger/Adapter/Firephp/BeginCest.php | 31 + .../unit/Logger/Adapter/Firephp/CloseCest.php | 31 + .../Logger/Adapter/Firephp/CommitCest.php | 31 + .../Logger/Adapter/Firephp/CriticalCest.php | 31 + .../unit/Logger/Adapter/Firephp/DebugCest.php | 31 + .../Logger/Adapter/Firephp/EmergencyCest.php | 31 + .../unit/Logger/Adapter/Firephp/ErrorCest.php | 31 + .../Adapter/Firephp/GetFormatterCest.php | 31 + .../Adapter/Firephp/GetLogLevelCest.php | 31 + .../unit/Logger/Adapter/Firephp/InfoCest.php | 31 + .../Adapter/Firephp/IsTransactionCest.php | 31 + tests/unit/Logger/Adapter/Firephp/LogCest.php | 31 + .../Adapter/Firephp/LogInternalCest.php | 31 + .../Logger/Adapter/Firephp/NoticeCest.php | 31 + .../Logger/Adapter/Firephp/RollbackCest.php | 31 + .../Adapter/Firephp/SetFormatterCest.php | 31 + .../Adapter/Firephp/SetLogLevelCest.php | 31 + .../Logger/Adapter/Firephp/WarningCest.php | 31 + tests/unit/Logger/Adapter/FirephpCest.php | 54 + tests/unit/Logger/Adapter/FirephpTest.php | 63 - .../unit/Logger/Adapter/GetFormatterCest.php | 31 + tests/unit/Logger/Adapter/GetLogLevelCest.php | 31 + tests/unit/Logger/Adapter/InfoCest.php | 31 + .../unit/Logger/Adapter/IsTransactionCest.php | 31 + tests/unit/Logger/Adapter/LogCest.php | 31 + tests/unit/Logger/Adapter/NoticeCest.php | 31 + tests/unit/Logger/Adapter/RollbackCest.php | 31 + .../unit/Logger/Adapter/SetFormatterCest.php | 31 + tests/unit/Logger/Adapter/SetLogLevelCest.php | 31 + .../unit/Logger/Adapter/Stream/AlertCest.php | 31 + .../unit/Logger/Adapter/Stream/BeginCest.php | 31 + .../unit/Logger/Adapter/Stream/CloseCest.php | 31 + .../unit/Logger/Adapter/Stream/CommitCest.php | 31 + .../Logger/Adapter/Stream/ConstructCest.php | 31 + .../Logger/Adapter/Stream/CriticalCest.php | 31 + .../unit/Logger/Adapter/Stream/DebugCest.php | 31 + .../Logger/Adapter/Stream/EmergencyCest.php | 31 + .../unit/Logger/Adapter/Stream/ErrorCest.php | 31 + .../Adapter/Stream/GetFormatterCest.php | 31 + .../Logger/Adapter/Stream/GetLogLevelCest.php | 31 + tests/unit/Logger/Adapter/Stream/InfoCest.php | 31 + .../Adapter/Stream/IsTransactionCest.php | 31 + tests/unit/Logger/Adapter/Stream/LogCest.php | 31 + .../Logger/Adapter/Stream/LogInternalCest.php | 31 + .../unit/Logger/Adapter/Stream/NoticeCest.php | 31 + .../Logger/Adapter/Stream/RollbackCest.php | 31 + .../Adapter/Stream/SetFormatterCest.php | 31 + .../Logger/Adapter/Stream/SetLogLevelCest.php | 31 + .../Logger/Adapter/Stream/WarningCest.php | 31 + .../unit/Logger/Adapter/Syslog/AlertCest.php | 31 + .../unit/Logger/Adapter/Syslog/BeginCest.php | 31 + .../unit/Logger/Adapter/Syslog/CloseCest.php | 31 + .../unit/Logger/Adapter/Syslog/CommitCest.php | 31 + .../Logger/Adapter/Syslog/ConstructCest.php | 31 + .../Logger/Adapter/Syslog/CriticalCest.php | 31 + .../unit/Logger/Adapter/Syslog/DebugCest.php | 31 + .../Logger/Adapter/Syslog/EmergencyCest.php | 31 + .../unit/Logger/Adapter/Syslog/ErrorCest.php | 31 + .../Adapter/Syslog/GetFormatterCest.php | 31 + .../Logger/Adapter/Syslog/GetLogLevelCest.php | 31 + tests/unit/Logger/Adapter/Syslog/InfoCest.php | 31 + .../Adapter/Syslog/IsTransactionCest.php | 31 + tests/unit/Logger/Adapter/Syslog/LogCest.php | 31 + .../Logger/Adapter/Syslog/LogInternalCest.php | 31 + .../unit/Logger/Adapter/Syslog/NoticeCest.php | 31 + .../Logger/Adapter/Syslog/RollbackCest.php | 31 + .../Adapter/Syslog/SetFormatterCest.php | 31 + .../Logger/Adapter/Syslog/SetLogLevelCest.php | 31 + .../Logger/Adapter/Syslog/WarningCest.php | 31 + tests/unit/Logger/Adapter/WarningCest.php | 31 + tests/unit/Logger/Factory/LoadCest.php | 77 + tests/unit/Logger/FactoryTest.php | 68 - .../Formatter/Firephp/EnableLabelsCest.php | 31 + .../Logger/Formatter/Firephp/FormatCest.php | 31 + .../Firephp/GetShowBacktraceCest.php | 31 + .../Formatter/Firephp/GetTypeStringCest.php | 31 + .../Formatter/Firephp/InterpolateCest.php | 31 + .../Formatter/Firephp/LabelsEnabledCest.php | 31 + .../Firephp/SetShowBacktraceCest.php | 31 + tests/unit/Logger/Formatter/FormatCest.php | 31 + .../Logger/Formatter/GetTypeStringCest.php | 31 + .../unit/Logger/Formatter/InterpolateCest.php | 31 + .../unit/Logger/Formatter/Json/FormatCest.php | 31 + .../Formatter/Json/GetTypeStringCest.php | 31 + .../Logger/Formatter/Json/InterpolateCest.php | 31 + .../Logger/Formatter/Line/ConstructCest.php | 31 + .../unit/Logger/Formatter/Line/FormatCest.php | 31 + .../Formatter/Line/GetDateFormatCest.php | 31 + .../Logger/Formatter/Line/GetFormatCest.php | 31 + .../Formatter/Line/GetTypeStringCest.php | 31 + .../Logger/Formatter/Line/InterpolateCest.php | 31 + .../Formatter/Line/SetDateFormatCest.php | 31 + .../Logger/Formatter/Line/SetFormatCest.php | 31 + tests/unit/Logger/Formatter/LineCest.php | 69 + tests/unit/Logger/Formatter/LineTest.php | 88 - .../Logger/Formatter/Syslog/FormatCest.php | 31 + .../Formatter/Syslog/GetTypeStringCest.php | 31 + .../Formatter/Syslog/InterpolateCest.php | 31 + tests/unit/Logger/Item/ConstructCest.php | 31 + tests/unit/Logger/Item/GetContextCest.php | 31 + tests/unit/Logger/Item/GetMessageCest.php | 31 + tests/unit/Logger/Item/GetTimeCest.php | 31 + tests/unit/Logger/Item/GetTypeCest.php | 31 + tests/unit/Logger/Multiple/AlertCest.php | 31 + tests/unit/Logger/Multiple/CriticalCest.php | 31 + tests/unit/Logger/Multiple/DebugCest.php | 31 + tests/unit/Logger/Multiple/EmergencyCest.php | 31 + tests/unit/Logger/Multiple/ErrorCest.php | 31 + .../unit/Logger/Multiple/GetFormatterCest.php | 31 + .../unit/Logger/Multiple/GetLogLevelCest.php | 31 + tests/unit/Logger/Multiple/GetLoggersCest.php | 31 + tests/unit/Logger/Multiple/InfoCest.php | 31 + tests/unit/Logger/Multiple/LogCest.php | 31 + tests/unit/Logger/Multiple/NoticeCest.php | 31 + tests/unit/Logger/Multiple/PushCest.php | 31 + .../unit/Logger/Multiple/SetFormatterCest.php | 31 + .../unit/Logger/Multiple/SetLogLevelCest.php | 31 + tests/unit/Logger/Multiple/WarningCest.php | 31 + tests/unit/Messages/Message/ConstructCest.php | 48 + tests/unit/Messages/Message/GetCodeCest.php | 36 + tests/unit/Messages/Message/GetFieldCest.php | 36 + .../unit/Messages/Message/GetMessageCest.php | 36 + tests/unit/Messages/Message/GetTypeCest.php | 36 + .../Messages/Message/JsonSerializeCest.php | 45 + tests/unit/Messages/Message/SetCodeCest.php | 37 + tests/unit/Messages/Message/SetFieldCest.php | 37 + .../unit/Messages/Message/SetMessageCest.php | 37 + tests/unit/Messages/Message/SetStateCest.php | 55 + tests/unit/Messages/Message/SetTypeCest.php | 37 + tests/unit/Messages/Message/ToStringCest.php | 36 + .../Messages/Messages/AppendMessageCest.php | 38 + .../Messages/Messages/AppendMessagesCest.php | 43 + .../unit/Messages/Messages/ConstructCest.php | 40 + tests/unit/Messages/Messages/CountCest.php | 42 + tests/unit/Messages/Messages/CurrentCest.php | 52 + tests/unit/Messages/Messages/FilterCest.php | 66 + .../Messages/Messages/JsonSerializeCest.php | 49 + tests/unit/Messages/Messages/KeyCest.php | 44 + tests/unit/Messages/Messages/NextCest.php | 54 + .../Messages/Messages/OffsetExistsCest.php | 47 + .../unit/Messages/Messages/OffsetGetCest.php | 54 + .../unit/Messages/Messages/OffsetSetCest.php | 62 + .../Messages/Messages/OffsetUnsetCest.php | 64 + tests/unit/Messages/Messages/RewindCest.php | 64 + tests/unit/Messages/Messages/SetStateCest.php | 91 + tests/unit/Messages/Messages/ValidCest.php | 51 + tests/unit/Messages/MessagesTest.php | 221 - tests/unit/Mvc/Application/ConstructCest.php | 31 + tests/unit/Mvc/Application/GetDICest.php | 31 + .../Mvc/Application/GetDefaultModuleCest.php | 31 + .../Mvc/Application/GetEventsManagerCest.php | 31 + tests/unit/Mvc/Application/GetModuleCest.php | 31 + tests/unit/Mvc/Application/GetModulesCest.php | 31 + tests/unit/Mvc/Application/HandleCest.php | 31 + .../Mvc/Application/RegisterModulesCest.php | 31 + .../SendCookiesOnHandleRequestCest.php | 31 + .../SendHeadersOnHandleRequestCest.php | 31 + tests/unit/Mvc/Application/SetDICest.php | 31 + .../Mvc/Application/SetDefaultModuleCest.php | 31 + .../Mvc/Application/SetEventsManagerCest.php | 31 + .../Mvc/Application/UnderscoreGetCest.php | 31 + .../Mvc/Application/UseImplicitViewCest.php | 31 + tests/unit/Mvc/Collection/AggregateCest.php | 31 + .../unit/Mvc/Collection/AppendMessageCest.php | 31 + .../Mvc/Collection/Behavior/ConstructCest.php | 31 + .../Collection/Behavior/MissingMethodCest.php | 31 + .../Mvc/Collection/Behavior/NotifyCest.php | 31 + .../Behavior/SoftDelete/ConstructCest.php | 31 + .../Behavior/SoftDelete/MissingMethodCest.php | 31 + .../Behavior/SoftDelete/NotifyCest.php | 31 + .../Behavior/Timestampable/ConstructCest.php | 31 + .../Timestampable/MissingMethodCest.php | 31 + .../Behavior/Timestampable/NotifyCest.php | 31 + tests/unit/Mvc/Collection/CloneResultCest.php | 31 + tests/unit/Mvc/Collection/ConstructCest.php | 31 + tests/unit/Mvc/Collection/CountCest.php | 31 + tests/unit/Mvc/Collection/CreateCest.php | 31 + .../Mvc/Collection/CreateIfNotExistCest.php | 31 + tests/unit/Mvc/Collection/DeleteCest.php | 31 + .../Collection/Document/OffsetExistsCest.php | 31 + .../Mvc/Collection/Document/OffsetGetCest.php | 31 + .../Mvc/Collection/Document/OffsetSetCest.php | 31 + .../Collection/Document/OffsetUnsetCest.php | 31 + .../Collection/Document/ReadAttributeCest.php | 31 + .../Mvc/Collection/Document/ToArrayCest.php | 31 + .../Document/WriteAttributeCest.php | 31 + tests/unit/Mvc/Collection/FindByIdCest.php | 31 + tests/unit/Mvc/Collection/FindCest.php | 31 + tests/unit/Mvc/Collection/FindFirstCest.php | 31 + .../Mvc/Collection/FireEventCancelCest.php | 31 + tests/unit/Mvc/Collection/FireEventCest.php | 31 + .../Collection/GetCollectionManagerCest.php | 31 + .../unit/Mvc/Collection/GetConnectionCest.php | 31 + .../Collection/GetConnectionServiceCest.php | 31 + tests/unit/Mvc/Collection/GetDICest.php | 31 + .../unit/Mvc/Collection/GetDirtyStateCest.php | 31 + tests/unit/Mvc/Collection/GetIdCest.php | 31 + tests/unit/Mvc/Collection/GetMessagesCest.php | 31 + .../Collection/GetReservedAttributesCest.php | 31 + tests/unit/Mvc/Collection/GetSourceCest.php | 31 + .../Collection/Manager/AddBehaviorCest.php | 31 + .../Collection/Manager/GetConnectionCest.php | 31 + .../Manager/GetConnectionServiceCest.php | 31 + .../Manager/GetCustomEventsManagerCest.php | 31 + .../unit/Mvc/Collection/Manager/GetDICest.php | 31 + .../Manager/GetEventsManagerCest.php | 31 + .../Manager/GetLastInitializedCest.php | 31 + .../Collection/Manager/GetServiceNameCest.php | 31 + .../Mvc/Collection/Manager/InitializeCest.php | 31 + .../Collection/Manager/IsInitializedCest.php | 31 + .../Manager/IsUsingImplicitObjectIdsCest.php | 31 + .../Collection/Manager/MissingMethodCest.php | 31 + .../Collection/Manager/NotifyEventCest.php | 31 + .../Manager/SetConnectionServiceCest.php | 31 + .../Manager/SetCustomEventsManagerCest.php | 31 + .../unit/Mvc/Collection/Manager/SetDICest.php | 31 + .../Manager/SetEventsManagerCest.php | 31 + .../Collection/Manager/SetServiceNameCest.php | 31 + .../Manager/UseImplicitObjectIdsCest.php | 31 + .../unit/Mvc/Collection/ReadAttributeCest.php | 31 + tests/unit/Mvc/Collection/SaveCest.php | 31 + tests/unit/Mvc/Collection/SerializeCest.php | 31 + .../Collection/SetConnectionServiceCest.php | 31 + tests/unit/Mvc/Collection/SetDICest.php | 31 + .../unit/Mvc/Collection/SetDirtyStateCest.php | 31 + tests/unit/Mvc/Collection/SetIdCest.php | 31 + .../unit/Mvc/Collection/SkipOperationCest.php | 31 + tests/unit/Mvc/Collection/SummatoryCest.php | 31 + tests/unit/Mvc/Collection/ToArrayCest.php | 31 + tests/unit/Mvc/Collection/UnserializeCest.php | 31 + tests/unit/Mvc/Collection/UpdateCest.php | 31 + .../Collection/ValidationHasFailedCest.php | 31 + .../Mvc/Collection/WriteAttributeCest.php | 31 + tests/unit/Mvc/Controller/ConstructCest.php | 31 + tests/unit/Mvc/Controller/GetDICest.php | 31 + .../Mvc/Controller/GetEventsManagerCest.php | 31 + tests/unit/Mvc/Controller/SetDICest.php | 31 + .../Mvc/Controller/SetEventsManagerCest.php | 31 + .../unit/Mvc/Controller/UnderscoreGetCest.php | 31 + .../Mvc/Dispatcher/CallActionMethodCest.php | 31 + tests/unit/Mvc/Dispatcher/DispatchCest.php | 31 + .../DispatcherAfterDispatchLoopTest.php | 251 - .../DispatcherAfterDispatchTest.php | 258 - .../DispatcherAfterExecuteRouteMethodTest.php | 236 - .../DispatcherAfterExecuteRouteTest.php | 248 - .../DispatcherAfterInitializeTest.php | 238 - .../DispatcherBeforeDispatchLoopTest.php | 293 - .../DispatcherBeforeDispatchTest.php | 222 - ...DispatcherBeforeExecuteRouteMethodTest.php | 211 - .../DispatcherBeforeExecuteRouteTest.php | 227 - .../DispatcherInitalizeMethodTest.php | 221 - tests/unit/Mvc/Dispatcher/DispatcherTest.php | 729 - tests/unit/Mvc/Dispatcher/ForwardCest.php | 31 + .../unit/Mvc/Dispatcher/GetActionNameCest.php | 31 + .../Mvc/Dispatcher/GetActionSuffixCest.php | 31 + .../Dispatcher/GetActiveControllerCest.php | 31 + .../Mvc/Dispatcher/GetActiveMethodCest.php | 31 + .../Mvc/Dispatcher/GetBoundModelsCest.php | 31 + .../Mvc/Dispatcher/GetControllerClassCest.php | 31 + .../Mvc/Dispatcher/GetControllerNameCest.php | 31 + tests/unit/Mvc/Dispatcher/GetDICest.php | 31 + .../Dispatcher/GetDefaultNamespaceCest.php | 31 + .../Mvc/Dispatcher/GetEventsManagerCest.php | 31 + .../Mvc/Dispatcher/GetHandlerClassCest.php | 31 + .../Mvc/Dispatcher/GetHandlerSuffixCest.php | 31 + .../Mvc/Dispatcher/GetLastControllerCest.php | 31 + .../Mvc/Dispatcher/GetModelBinderCest.php | 31 + .../unit/Mvc/Dispatcher/GetModuleNameCest.php | 31 + .../Mvc/Dispatcher/GetNamespaceNameCest.php | 31 + tests/unit/Mvc/Dispatcher/GetParamCest.php | 31 + tests/unit/Mvc/Dispatcher/GetParamsCest.php | 31 + .../Dispatcher/GetPreviousActionNameCest.php | 31 + .../GetPreviousControllerNameCest.php | 31 + .../GetPreviousNamespaceNameCest.php | 31 + .../Mvc/Dispatcher/GetReturnedValueCest.php | 31 + tests/unit/Mvc/Dispatcher/HasParamCest.php | 31 + .../Mvc/Dispatcher/Helper/BaseDispatcher.php | 101 - ...TestAfterExecuteRouteForwardController.php | 58 - ...tBeforeExecuteRouteExceptionController.php | 51 - ...estBeforeExecuteRouteForwardController.php | 53 - ...eforeExecuteRouteReturnFalseController.php | 50 - .../DispatcherTestDefaultSimpleController.php | 38 - ...patcherTestInitializeForwardController.php | 58 - tests/unit/Mvc/Dispatcher/IsFinishedCest.php | 31 + .../unit/Mvc/Dispatcher/SetActionNameCest.php | 31 + .../Mvc/Dispatcher/SetActionSuffixCest.php | 31 + .../Mvc/Dispatcher/SetControllerNameCest.php | 31 + .../Dispatcher/SetControllerSuffixCest.php | 31 + tests/unit/Mvc/Dispatcher/SetDICest.php | 31 + .../Mvc/Dispatcher/SetDefaultActionCest.php | 31 + .../Dispatcher/SetDefaultControllerCest.php | 31 + .../Dispatcher/SetDefaultNamespaceCest.php | 31 + .../Mvc/Dispatcher/SetEventsManagerCest.php | 31 + .../Mvc/Dispatcher/SetHandlerSuffixCest.php | 31 + .../Mvc/Dispatcher/SetModelBinderCest.php | 31 + .../unit/Mvc/Dispatcher/SetModuleNameCest.php | 31 + .../Mvc/Dispatcher/SetNamespaceNameCest.php | 31 + tests/unit/Mvc/Dispatcher/SetParamCest.php | 31 + tests/unit/Mvc/Dispatcher/SetParamsCest.php | 31 + .../Mvc/Dispatcher/SetReturnedValueCest.php | 31 + .../unit/Mvc/Dispatcher/WasForwardedCest.php | 31 + tests/unit/Mvc/MicroTest.php | 679 - tests/unit/Mvc/Model/CriteriaTest.php | 102 - .../unit/Mvc/Model/DynamicOperationsTest.php | 302 - tests/unit/Mvc/Model/Helpers/Validation.php | 277 - .../unit/Mvc/Model/Manager/RelationsTest.php | 92 - tests/unit/Mvc/Model/ManagerTest.php | 173 - tests/unit/Mvc/Model/MetaData/ApcCest.php | 77 - tests/unit/Mvc/Model/MetaData/ApcuCest.php | 78 - tests/unit/Mvc/Model/MetaData/FilesCest.php | 77 - .../Mvc/Model/MetaData/LibmemcachedCest.php | 81 - tests/unit/Mvc/Model/MetaData/MemoryCest.php | 96 - tests/unit/Mvc/Model/MetaData/RedisCest.php | 77 - tests/unit/Mvc/Model/MetaData/ResetCest.php | 52 - tests/unit/Mvc/Model/MetaData/SessionCest.php | 75 - .../MetaData/Strategy/AnnotationsTest.php | 175 - .../unit/Mvc/Model/Query/BuilderOrderTest.php | 114 - tests/unit/Mvc/Model/Query/BuilderTest.php | 737 - tests/unit/Mvc/Model/QueryTest.php | 152 - tests/unit/Mvc/Model/RelationsTest.php | 88 - .../unit/Mvc/Model/Resultset/ComplexTest.php | 83 - tests/unit/Mvc/Model/Resultset/SimpleTest.php | 293 - tests/unit/Mvc/Model/ResultsetClassTest.php | 95 - tests/unit/Mvc/Model/SnapshotTest.php | 556 - .../Mvc/Model/Transaction/ManagerTest.php | 266 - tests/unit/Mvc/Model/ValidationCest.php | 100 - tests/unit/Mvc/ModelCest.php | 65 - tests/unit/Mvc/ModelCest.php_check | 65 + tests/unit/Mvc/ModelTest.php | 922 -- tests/unit/Mvc/Router/AddCest.php | 31 + tests/unit/Mvc/Router/AddConnectCest.php | 31 + tests/unit/Mvc/Router/AddDeleteCest.php | 31 + tests/unit/Mvc/Router/AddGetCest.php | 31 + tests/unit/Mvc/Router/AddHeadCest.php | 31 + tests/unit/Mvc/Router/AddOptionsCest.php | 31 + tests/unit/Mvc/Router/AddPatchCest.php | 31 + tests/unit/Mvc/Router/AddPostCest.php | 31 + tests/unit/Mvc/Router/AddPurgeCest.php | 31 + tests/unit/Mvc/Router/AddPutCest.php | 31 + tests/unit/Mvc/Router/AddTraceCest.php | 31 + tests/unit/Mvc/Router/Annotations/AddCest.php | 31 + .../Mvc/Router/Annotations/AddConnectCest.php | 31 + .../Mvc/Router/Annotations/AddDeleteCest.php | 31 + .../Mvc/Router/Annotations/AddGetCest.php | 31 + .../Mvc/Router/Annotations/AddHeadCest.php | 31 + .../Annotations/AddModuleResourceCest.php | 31 + .../Mvc/Router/Annotations/AddOptionsCest.php | 31 + .../Mvc/Router/Annotations/AddPatchCest.php | 31 + .../Mvc/Router/Annotations/AddPostCest.php | 31 + .../Mvc/Router/Annotations/AddPurgeCest.php | 31 + .../Mvc/Router/Annotations/AddPutCest.php | 31 + .../Router/Annotations/AddResourceCest.php | 31 + .../Mvc/Router/Annotations/AddTraceCest.php | 31 + .../Mvc/Router/Annotations/AttachCest.php | 31 + .../unit/Mvc/Router/Annotations/ClearCest.php | 31 + .../Mvc/Router/Annotations/ConstructCest.php | 31 + .../Router/Annotations/GetActionNameCest.php | 31 + .../Annotations/GetControllerNameCest.php | 31 + .../unit/Mvc/Router/Annotations/GetDICest.php | 31 + .../Router/Annotations/GetDefaultsCest.php | 31 + .../Annotations/GetEventsManagerCest.php | 31 + .../Router/Annotations/GetKeyRouteIdsCest.php | 31 + .../Annotations/GetKeyRouteNamesCest.php | 31 + .../Annotations/GetMatchedRouteCest.php | 31 + .../Mvc/Router/Annotations/GetMatchesCest.php | 31 + .../Router/Annotations/GetModuleNameCest.php | 31 + .../Annotations/GetNamespaceNameCest.php | 31 + .../Mvc/Router/Annotations/GetParamsCest.php | 31 + .../Router/Annotations/GetResourcesCest.php | 31 + .../Router/Annotations/GetRouteByIdCest.php | 31 + .../Router/Annotations/GetRouteByNameCest.php | 31 + .../Mvc/Router/Annotations/GetRoutesCest.php | 31 + .../Mvc/Router/Annotations/HandleCest.php | 31 + .../Annotations/IsExactControllerNameCest.php | 31 + .../unit/Mvc/Router/Annotations/MountCest.php | 31 + .../Mvc/Router/Annotations/NotFoundCest.php | 31 + .../ProcessActionAnnotationCest.php | 31 + .../ProcessControllerAnnotationCest.php | 31 + .../Annotations/RemoveExtraSlashesCest.php | 31 + .../Annotations/SetActionSuffixCest.php | 31 + .../Annotations/SetControllerSuffixCest.php | 31 + .../unit/Mvc/Router/Annotations/SetDICest.php | 31 + .../Annotations/SetDefaultActionCest.php | 31 + .../Annotations/SetDefaultControllerCest.php | 31 + .../Annotations/SetDefaultModuleCest.php | 31 + .../Annotations/SetDefaultNamespaceCest.php | 31 + .../Router/Annotations/SetDefaultsCest.php | 31 + .../Annotations/SetEventsManagerCest.php | 31 + .../Router/Annotations/SetKeyRouteIdsCest.php | 31 + .../Annotations/SetKeyRouteNamesCest.php | 31 + .../Mvc/Router/Annotations/WasMatchedCest.php | 31 + tests/unit/Mvc/Router/AnnotationsTest.php | 197 - tests/unit/Mvc/Router/AttachCest.php | 31 + tests/unit/Mvc/Router/ClearCest.php | 31 + tests/unit/Mvc/Router/ConstructCest.php | 31 + tests/unit/Mvc/Router/GetActionNameCest.php | 31 + .../unit/Mvc/Router/GetControllerNameCest.php | 31 + tests/unit/Mvc/Router/GetDICest.php | 31 + tests/unit/Mvc/Router/GetDefaultsCest.php | 31 + .../unit/Mvc/Router/GetEventsManagerCest.php | 31 + tests/unit/Mvc/Router/GetKeyRouteIdsCest.php | 31 + .../unit/Mvc/Router/GetKeyRouteNamesCest.php | 31 + tests/unit/Mvc/Router/GetMatchedRouteCest.php | 31 + tests/unit/Mvc/Router/GetMatchesCest.php | 31 + tests/unit/Mvc/Router/GetModuleNameCest.php | 31 + .../unit/Mvc/Router/GetNamespaceNameCest.php | 31 + tests/unit/Mvc/Router/GetParamsCest.php | 31 + tests/unit/Mvc/Router/GetRouteByIdCest.php | 31 + tests/unit/Mvc/Router/GetRouteByNameCest.php | 31 + tests/unit/Mvc/Router/GetRoutesCest.php | 31 + tests/unit/Mvc/Router/Group/AddCest.php | 31 + tests/unit/Mvc/Router/Group/AddDeleteCest.php | 31 + tests/unit/Mvc/Router/Group/AddGetCest.php | 31 + tests/unit/Mvc/Router/Group/AddHeadCest.php | 31 + .../unit/Mvc/Router/Group/AddOptionsCest.php | 31 + tests/unit/Mvc/Router/Group/AddPatchCest.php | 31 + tests/unit/Mvc/Router/Group/AddPostCest.php | 31 + tests/unit/Mvc/Router/Group/AddPutCest.php | 31 + .../unit/Mvc/Router/Group/BeforeMatchCest.php | 31 + tests/unit/Mvc/Router/Group/ClearCest.php | 31 + tests/unit/Mvc/Router/Group/ConstructCest.php | 31 + .../Mvc/Router/Group/GetBeforeMatchCest.php | 31 + .../unit/Mvc/Router/Group/GetHostnameCest.php | 31 + tests/unit/Mvc/Router/Group/GetPathsCest.php | 31 + tests/unit/Mvc/Router/Group/GetPrefixCest.php | 31 + tests/unit/Mvc/Router/Group/GetRoutesCest.php | 31 + .../unit/Mvc/Router/Group/SetHostnameCest.php | 31 + tests/unit/Mvc/Router/Group/SetPathsCest.php | 31 + tests/unit/Mvc/Router/Group/SetPrefixCest.php | 31 + tests/unit/Mvc/Router/GroupCest.php | 210 + tests/unit/Mvc/Router/GroupTest.php | 228 - tests/unit/Mvc/Router/HandleCest.php | 31 + .../Mvc/Router/IsExactControllerNameCest.php | 31 + tests/unit/Mvc/Router/MountCest.php | 31 + tests/unit/Mvc/Router/NotFoundCest.php | 31 + .../Mvc/Router/RemoveExtraSlashesCest.php | 31 + .../unit/Mvc/Router/Route/BeforeMatchCest.php | 31 + .../Mvc/Router/Route/CompilePatternCest.php | 31 + tests/unit/Mvc/Router/Route/ConstructCest.php | 31 + tests/unit/Mvc/Router/Route/ConvertCest.php | 31 + .../Router/Route/ExtractNamedParamsCest.php | 31 + .../Mvc/Router/Route/GetBeforeMatchCest.php | 31 + .../Router/Route/GetCompiledPatternCest.php | 31 + .../Mvc/Router/Route/GetConvertersCest.php | 31 + tests/unit/Mvc/Router/Route/GetGroupCest.php | 31 + .../unit/Mvc/Router/Route/GetHostnameCest.php | 31 + .../Mvc/Router/Route/GetHttpMethodsCest.php | 31 + tests/unit/Mvc/Router/Route/GetIdCest.php | 31 + tests/unit/Mvc/Router/Route/GetMatchCest.php | 31 + tests/unit/Mvc/Router/Route/GetNameCest.php | 31 + tests/unit/Mvc/Router/Route/GetPathsCest.php | 31 + .../unit/Mvc/Router/Route/GetPatternCest.php | 31 + .../Mvc/Router/Route/GetReversedPathsCest.php | 31 + .../unit/Mvc/Router/Route/GetRouteIdCest.php | 31 + .../Mvc/Router/Route/GetRoutePathsCest.php | 31 + tests/unit/Mvc/Router/Route/MatchCest.php | 31 + .../unit/Mvc/Router/Route/ReConfigureCest.php | 31 + tests/unit/Mvc/Router/Route/ResetCest.php | 31 + tests/unit/Mvc/Router/Route/SetGroupCest.php | 31 + .../unit/Mvc/Router/Route/SetHostnameCest.php | 31 + .../Mvc/Router/Route/SetHttpMethodsCest.php | 31 + tests/unit/Mvc/Router/Route/SetNameCest.php | 31 + tests/unit/Mvc/Router/Route/ViaCest.php | 31 + tests/unit/Mvc/Router/SetDICest.php | 31 + .../unit/Mvc/Router/SetDefaultActionCest.php | 31 + .../Mvc/Router/SetDefaultControllerCest.php | 31 + .../unit/Mvc/Router/SetDefaultModuleCest.php | 31 + .../Mvc/Router/SetDefaultNamespaceCest.php | 31 + tests/unit/Mvc/Router/SetDefaultsCest.php | 31 + .../unit/Mvc/Router/SetEventsManagerCest.php | 31 + tests/unit/Mvc/Router/SetKeyRouteIdsCest.php | 31 + .../unit/Mvc/Router/SetKeyRouteNamesCest.php | 31 + tests/unit/Mvc/Router/WasMatchedCest.php | 31 + tests/unit/Mvc/RouterCest.php | 1186 ++ tests/unit/Mvc/RouterTest.php | 447 - tests/unit/Mvc/Url/GetBasePathCest.php | 31 + tests/unit/Mvc/Url/GetBaseUriCest.php | 31 + tests/unit/Mvc/Url/GetCest.php | 31 + tests/unit/Mvc/Url/GetDICest.php | 31 + tests/unit/Mvc/Url/GetStaticBaseUriCest.php | 31 + tests/unit/Mvc/Url/GetStaticCest.php | 31 + tests/unit/Mvc/Url/PathCest.php | 31 + tests/unit/Mvc/Url/SetBasePathCest.php | 31 + tests/unit/Mvc/Url/SetBaseUriCest.php | 31 + tests/unit/Mvc/Url/SetDICest.php | 31 + tests/unit/Mvc/Url/SetStaticBaseUriCest.php | 31 + tests/unit/Mvc/UrlCest.php | 344 + tests/unit/Mvc/UrlTest.php | 173 - tests/unit/Mvc/User/Component/GetDICest.php | 31 + .../User/Component/GetEventsManagerCest.php | 31 + tests/unit/Mvc/User/Component/SetDICest.php | 31 + .../User/Component/SetEventsManagerCest.php | 31 + .../Mvc/User/Component/UnderscoreGetCest.php | 31 + tests/unit/Mvc/User/Module/GetDICest.php | 31 + .../Mvc/User/Module/GetEventsManagerCest.php | 31 + tests/unit/Mvc/User/Module/SetDICest.php | 31 + .../Mvc/User/Module/SetEventsManagerCest.php | 31 + .../Mvc/User/Module/UnderscoreGetCest.php | 31 + tests/unit/Mvc/User/Plugin/GetDICest.php | 31 + .../Mvc/User/Plugin/GetEventsManagerCest.php | 31 + tests/unit/Mvc/User/Plugin/SetDICest.php | 31 + .../Mvc/User/Plugin/SetEventsManagerCest.php | 31 + .../Mvc/User/Plugin/UnderscoreGetCest.php | 31 + tests/unit/Mvc/View/CacheCest.php | 31 + .../unit/Mvc/View/CleanTemplateAfterCest.php | 31 + .../unit/Mvc/View/CleanTemplateBeforeCest.php | 31 + tests/unit/Mvc/View/ConstructCest.php | 31 + tests/unit/Mvc/View/DisableCest.php | 31 + tests/unit/Mvc/View/DisableLevelCest.php | 31 + tests/unit/Mvc/View/EnableCest.php | 31 + tests/unit/Mvc/View/Engine/ConstructCest.php | 31 + tests/unit/Mvc/View/Engine/GetContentCest.php | 31 + tests/unit/Mvc/View/Engine/GetDICest.php | 31 + .../Mvc/View/Engine/GetEventsManagerCest.php | 31 + tests/unit/Mvc/View/Engine/GetViewCest.php | 31 + tests/unit/Mvc/View/Engine/PartialCest.php | 31 + .../Mvc/View/Engine/Php/ConstructCest.php | 31 + .../Mvc/View/Engine/Php/GetContentCest.php | 31 + tests/unit/Mvc/View/Engine/Php/GetDICest.php | 31 + .../View/Engine/Php/GetEventsManagerCest.php | 31 + .../unit/Mvc/View/Engine/Php/GetViewCest.php | 31 + .../unit/Mvc/View/Engine/Php/PartialCest.php | 31 + tests/unit/Mvc/View/Engine/Php/RenderCest.php | 31 + tests/unit/Mvc/View/Engine/Php/SetDICest.php | 31 + .../View/Engine/Php/SetEventsManagerCest.php | 31 + .../Mvc/View/Engine/Php/UnderscoreGetCest.php | 31 + tests/unit/Mvc/View/Engine/RenderCest.php | 31 + tests/unit/Mvc/View/Engine/SetDICest.php | 31 + .../Mvc/View/Engine/SetEventsManagerCest.php | 31 + .../Mvc/View/Engine/UnderscoreGetCest.php | 31 + .../Mvc/View/Engine/Volt/CallMacroCest.php | 31 + .../Engine/Volt/Compiler/AddExtensionCest.php | 31 + .../Engine/Volt/Compiler/AddFilterCest.php | 94 + .../Engine/Volt/Compiler/AddFunctionCest.php | 96 + .../Volt/Compiler/AttributeReaderCest.php | 31 + .../Volt/Compiler/CompileAutoEscapeCest.php | 31 + .../Engine/Volt/Compiler/CompileCacheCest.php | 31 + .../Engine/Volt/Compiler/CompileCallCest.php | 31 + .../Engine/Volt/Compiler/CompileCaseCest.php | 31 + .../View/Engine/Volt/Compiler/CompileCest.php | 107 + .../Engine/Volt/Compiler/CompileDoCest.php | 31 + .../Engine/Volt/Compiler/CompileEchoCest.php | 31 + .../Volt/Compiler/CompileElseIfCest.php | 31 + .../Engine/Volt/Compiler/CompileFileCest.php | 73 + .../Volt/Compiler/CompileForElseCest.php | 31 + .../Volt/Compiler/CompileForeachCest.php | 31 + .../Engine/Volt/Compiler/CompileIfCest.php | 31 + .../Volt/Compiler/CompileIncludeCest.php | 31 + .../Engine/Volt/Compiler/CompileMacroCest.php | 31 + .../Volt/Compiler/CompileReturnCest.php | 31 + .../Engine/Volt/Compiler/CompileSetCest.php | 31 + .../Volt/Compiler/CompileStringCest.php | 282 + .../Volt/Compiler/CompileSwitchCest.php | 50 + .../Engine/Volt/Compiler/ConstructCest.php | 31 + .../Engine/Volt/Compiler/ExpressionCest.php | 31 + .../Volt/Compiler/Filters/DefaultTest.php | 66 - .../Volt/Compiler/FireExtensionEventCest.php | 31 + .../Engine/Volt/Compiler/FunctionCallCest.php | 31 + .../Compiler/GetCompiledTemplatePathCest.php | 31 + .../View/Engine/Volt/Compiler/GetDICest.php | 31 + .../Volt/Compiler/GetExtensionsCest.php | 31 + .../Engine/Volt/Compiler/GetFiltersCest.php | 31 + .../Engine/Volt/Compiler/GetFunctionsCest.php | 31 + .../Engine/Volt/Compiler/GetOptionCest.php | 31 + .../Engine/Volt/Compiler/GetOptionsCest.php | 31 + .../Volt/Compiler/GetTemplatePathCest.php | 31 + .../Volt/Compiler/GetUniquePrefixCest.php | 31 + .../View/Engine/Volt/Compiler/ParseCest.php | 318 + .../Engine/Volt/Compiler/ResolveTestCest.php | 31 + .../View/Engine/Volt/Compiler/SetDICest.php | 31 + .../Engine/Volt/Compiler/SetOptionCest.php | 54 + .../Engine/Volt/Compiler/SetOptionsCest.php | 31 + .../Volt/Compiler/SetUniquePrefixCest.php | 31 + .../Compiler/Statements/SwitchCaseTest.php | 43 - .../Engine/Volt/CompilerExceptionsTest.php | 119 - .../View/Engine/Volt/CompilerFilesTest.php | 144 - .../Mvc/View/Engine/Volt/CompilerTest.php | 219 - .../Mvc/View/Engine/Volt/CompilerTrait.php | 18 - .../Mvc/View/Engine/Volt/ConstructCest.php | 31 + .../View/Engine/Volt/ConvertEncodingCest.php | 31 + .../Mvc/View/Engine/Volt/GetCompilerCest.php | 31 + .../Mvc/View/Engine/Volt/GetContentCest.php | 31 + tests/unit/Mvc/View/Engine/Volt/GetDICest.php | 31 + .../View/Engine/Volt/GetEventsManagerCest.php | 31 + .../Mvc/View/Engine/Volt/GetOptionsCest.php | 31 + .../unit/Mvc/View/Engine/Volt/GetViewCest.php | 31 + .../Mvc/View/Engine/Volt/IsIncludedCest.php | 31 + .../unit/Mvc/View/Engine/Volt/LengthCest.php | 31 + .../unit/Mvc/View/Engine/Volt/PartialCest.php | 31 + .../unit/Mvc/View/Engine/Volt/RenderCest.php | 31 + tests/unit/Mvc/View/Engine/Volt/SetDICest.php | 31 + .../View/Engine/Volt/SetEventsManagerCest.php | 31 + .../Mvc/View/Engine/Volt/SetOptionsCest.php | 31 + tests/unit/Mvc/View/Engine/Volt/SliceCest.php | 31 + tests/unit/Mvc/View/Engine/Volt/SortCest.php | 31 + .../View/Engine/Volt/UnderscoreGetCest.php | 31 + tests/unit/Mvc/View/ExistsCest.php | 31 + tests/unit/Mvc/View/FinishCest.php | 31 + tests/unit/Mvc/View/GetActionNameCest.php | 31 + .../unit/Mvc/View/GetActiveRenderPathCest.php | 31 + tests/unit/Mvc/View/GetBasePathCest.php | 31 + tests/unit/Mvc/View/GetCacheCest.php | 31 + tests/unit/Mvc/View/GetContentCest.php | 31 + tests/unit/Mvc/View/GetControllerNameCest.php | 31 + .../Mvc/View/GetCurrentRenderLevelCest.php | 31 + tests/unit/Mvc/View/GetDICest.php | 31 + tests/unit/Mvc/View/GetEventsManagerCest.php | 31 + tests/unit/Mvc/View/GetLayoutCest.php | 31 + tests/unit/Mvc/View/GetLayoutsDirCest.php | 31 + tests/unit/Mvc/View/GetMainViewCest.php | 31 + tests/unit/Mvc/View/GetParamsCest.php | 31 + tests/unit/Mvc/View/GetParamsToViewCest.php | 31 + tests/unit/Mvc/View/GetPartialCest.php | 31 + tests/unit/Mvc/View/GetPartialsDirCest.php | 31 + .../Mvc/View/GetRegisteredEnginesCest.php | 31 + tests/unit/Mvc/View/GetRenderCest.php | 31 + tests/unit/Mvc/View/GetRenderLevelCest.php | 31 + tests/unit/Mvc/View/GetVarCest.php | 31 + tests/unit/Mvc/View/GetViewsDirCest.php | 31 + tests/unit/Mvc/View/IsCachingCest.php | 31 + tests/unit/Mvc/View/IsDisabledCest.php | 31 + tests/unit/Mvc/View/PartialCest.php | 31 + tests/unit/Mvc/View/PickCest.php | 31 + tests/unit/Mvc/View/RegisterEnginesCest.php | 31 + tests/unit/Mvc/View/RenderCest.php | 31 + tests/unit/Mvc/View/ResetCest.php | 31 + tests/unit/Mvc/View/SetBasePathCest.php | 31 + tests/unit/Mvc/View/SetContentCest.php | 31 + tests/unit/Mvc/View/SetDICest.php | 31 + tests/unit/Mvc/View/SetEventsManagerCest.php | 31 + tests/unit/Mvc/View/SetLayoutCest.php | 31 + tests/unit/Mvc/View/SetLayoutsDirCest.php | 31 + tests/unit/Mvc/View/SetMainViewCest.php | 31 + tests/unit/Mvc/View/SetParamToViewCest.php | 31 + tests/unit/Mvc/View/SetPartialsDirCest.php | 31 + tests/unit/Mvc/View/SetRenderLevelCest.php | 31 + tests/unit/Mvc/View/SetTemplateAfterCest.php | 31 + tests/unit/Mvc/View/SetTemplateBeforeCest.php | 31 + tests/unit/Mvc/View/SetVarCest.php | 31 + tests/unit/Mvc/View/SetVarsCest.php | 31 + tests/unit/Mvc/View/SetViewsDirCest.php | 31 + tests/unit/Mvc/View/Simple/CacheCest.php | 31 + tests/unit/Mvc/View/Simple/ConstructCest.php | 31 + .../View/Simple/GetActiveRenderPathCest.php | 31 + tests/unit/Mvc/View/Simple/GetCacheCest.php | 31 + .../Mvc/View/Simple/GetCacheOptionsCest.php | 31 + tests/unit/Mvc/View/Simple/GetContentCest.php | 31 + tests/unit/Mvc/View/Simple/GetDICest.php | 31 + .../Mvc/View/Simple/GetEventsManagerCest.php | 31 + .../Mvc/View/Simple/GetParamsToViewCest.php | 31 + .../View/Simple/GetRegisteredEnginesCest.php | 31 + tests/unit/Mvc/View/Simple/GetVarCest.php | 31 + .../unit/Mvc/View/Simple/GetViewsDirCest.php | 31 + tests/unit/Mvc/View/Simple/PartialCest.php | 31 + .../Mvc/View/Simple/RegisterEnginesCest.php | 31 + tests/unit/Mvc/View/Simple/RenderCest.php | 31 + .../Mvc/View/Simple/SetCacheOptionsCest.php | 31 + tests/unit/Mvc/View/Simple/SetContentCest.php | 31 + tests/unit/Mvc/View/Simple/SetDICest.php | 31 + .../Mvc/View/Simple/SetEventsManagerCest.php | 31 + .../Mvc/View/Simple/SetParamToViewCest.php | 31 + tests/unit/Mvc/View/Simple/SetVarCest.php | 31 + tests/unit/Mvc/View/Simple/SetVarsCest.php | 31 + .../unit/Mvc/View/Simple/SetViewsDirCest.php | 31 + .../Mvc/View/Simple/UnderscoreGetCest.php | 31 + .../Mvc/View/Simple/UnderscoreSetCest.php | 31 + tests/unit/Mvc/View/SimpleCest.php | 225 + tests/unit/Mvc/View/SimpleTest.php | 277 - tests/unit/Mvc/View/StartCest.php | 31 + tests/unit/Mvc/View/UnderscoreGetCest.php | 31 + tests/unit/Mvc/View/UnderscoreIssetCest.php | 31 + tests/unit/Mvc/View/UnderscoreSetCest.php | 31 + tests/unit/Mvc/ViewEnginesCest.php | 372 + tests/unit/Mvc/ViewEnginesTest.php | 239 - tests/unit/Mvc/ViewTest.php | 700 - tests/unit/Mvc/ViewTest.php_check | 700 + .../Paginator/Adapter/NativeArrayTest.php | 116 - .../Paginator/Adapter/QueryBuilderTest.php | 173 - tests/unit/Paginator/FactoryTest.php | 81 - tests/unit/Queue/Beanstalk/ChooseCest.php | 31 + tests/unit/Queue/Beanstalk/ConnectCest.php | 31 + tests/unit/Queue/Beanstalk/ConstructCest.php | 31 + tests/unit/Queue/Beanstalk/DisconnectCest.php | 31 + tests/unit/Queue/Beanstalk/IgnoreCest.php | 31 + tests/unit/Queue/Beanstalk/Job/BuryCest.php | 31 + .../Queue/Beanstalk/Job/ConstructCest.php | 31 + tests/unit/Queue/Beanstalk/Job/DeleteCest.php | 31 + .../unit/Queue/Beanstalk/Job/GetBodyCest.php | 31 + tests/unit/Queue/Beanstalk/Job/GetIdCest.php | 31 + tests/unit/Queue/Beanstalk/Job/KickCest.php | 31 + .../unit/Queue/Beanstalk/Job/ReleaseCest.php | 31 + tests/unit/Queue/Beanstalk/Job/StatsCest.php | 31 + tests/unit/Queue/Beanstalk/Job/TouchCest.php | 31 + tests/unit/Queue/Beanstalk/Job/WakeupCest.php | 31 + tests/unit/Queue/Beanstalk/JobCest.php | 40 + tests/unit/Queue/Beanstalk/JobPeekCest.php | 31 + tests/unit/Queue/Beanstalk/JobTest.php | 50 - tests/unit/Queue/Beanstalk/KickCest.php | 31 + .../unit/Queue/Beanstalk/ListTubeUsedCest.php | 31 + tests/unit/Queue/Beanstalk/ListTubesCest.php | 31 + .../Queue/Beanstalk/ListTubesWatchedCest.php | 31 + tests/unit/Queue/Beanstalk/PauseTubeCest.php | 31 + tests/unit/Queue/Beanstalk/PeekBuriedCest.php | 31 + .../unit/Queue/Beanstalk/PeekDelayedCest.php | 31 + tests/unit/Queue/Beanstalk/PeekReadyCest.php | 31 + tests/unit/Queue/Beanstalk/PutCest.php | 31 + tests/unit/Queue/Beanstalk/QuitCest.php | 31 + tests/unit/Queue/Beanstalk/ReadCest.php | 31 + tests/unit/Queue/Beanstalk/ReadStatusCest.php | 31 + tests/unit/Queue/Beanstalk/ReadYamlCest.php | 31 + tests/unit/Queue/Beanstalk/ReserveCest.php | 31 + tests/unit/Queue/Beanstalk/StatsCest.php | 31 + tests/unit/Queue/Beanstalk/StatsTubeCest.php | 31 + tests/unit/Queue/Beanstalk/WatchCest.php | 31 + tests/unit/Queue/Beanstalk/WriteCest.php | 31 + tests/unit/Queue/BeanstalkCest.php | 511 + tests/unit/Queue/BeanstalkTest.php | 532 - tests/unit/Queue/Helper/BeanstalkBase.php | 58 - tests/unit/Registry/ConstructCest.php | 36 + tests/unit/Registry/CountCest.php | 40 + tests/unit/Registry/CurrentCest.php | 44 + tests/unit/Registry/KeyCest.php | 44 + tests/unit/Registry/NextCest.php | 40 + tests/unit/Registry/OffsetExistsCest.php | 39 + tests/unit/Registry/OffsetGetCest.php | 39 + tests/unit/Registry/OffsetSetCest.php | 37 + tests/unit/Registry/OffsetUnsetCest.php | 41 + tests/unit/Registry/RewindCest.php | 48 + tests/unit/Registry/UnderscoreGetCest.php | 43 + tests/unit/Registry/UnderscoreIssetCest.php | 39 + tests/unit/Registry/UnderscoreSetCest.php | 37 + tests/unit/Registry/UnderscoreUnsetCest.php | 45 + tests/unit/Registry/ValidCest.php | 42 + tests/unit/Security/CheckHashCest.php | 31 + tests/unit/Security/CheckTokenCest.php | 31 + tests/unit/Security/ComputeHmacCest.php | 31 + tests/unit/Security/ConstructCest.php | 31 + tests/unit/Security/DestroyTokenCest.php | 31 + tests/unit/Security/GetDICest.php | 31 + tests/unit/Security/GetDefaultHashCest.php | 31 + tests/unit/Security/GetRandomBytesCest.php | 31 + tests/unit/Security/GetRandomCest.php | 31 + tests/unit/Security/GetSaltBytesCest.php | 31 + tests/unit/Security/GetSessionTokenCest.php | 31 + tests/unit/Security/GetTokenCest.php | 31 + tests/unit/Security/GetTokenKeyCest.php | 31 + tests/unit/Security/GetWorkFactorCest.php | 31 + tests/unit/Security/HashCest.php | 31 + tests/unit/Security/IsLegacyHashCest.php | 31 + tests/unit/Security/Random/Base58Cest.php | 31 + tests/unit/Security/Random/Base62Cest.php | 31 + tests/unit/Security/Random/Base64Cest.php | 31 + tests/unit/Security/Random/Base64SafeCest.php | 31 + tests/unit/Security/Random/BytesCest.php | 31 + tests/unit/Security/Random/HexCest.php | 31 + tests/unit/Security/Random/NumberCest.php | 31 + tests/unit/Security/Random/UuidCest.php | 31 + tests/unit/Security/RandomCest.php | 329 + tests/unit/Security/RandomTest.php | 376 - tests/unit/Security/SecurityCest.php | 252 + tests/unit/Security/SetDICest.php | 31 + tests/unit/Security/SetDefaultHashCest.php | 31 + tests/unit/Security/SetRandomBytesCest.php | 31 + tests/unit/Security/SetWorkFactorCest.php | 31 + tests/unit/SecurityTest.php | 288 - tests/unit/Session/Adapter/FilesTest.php | 308 - .../unit/Session/Adapter/LibmemcachedTest.php | 169 - tests/unit/Session/Adapter/RedisTest.php | 164 - tests/unit/Session/BagTest.php | 145 - tests/unit/Session/FactoryTest.php | 68 - tests/unit/Tag/AppendTitleCest.php | 165 + tests/unit/Tag/CheckFieldCest.php | 31 + tests/unit/Tag/ColorFieldCest.php | 21 + tests/unit/Tag/DateFieldCest.php | 21 + tests/unit/Tag/DateTimeFieldCest.php | 21 + tests/unit/Tag/DateTimeLocalFieldCest.php | 21 + tests/unit/Tag/DisplayToCest.php | 31 + tests/unit/Tag/EmailFieldCest.php | 21 + tests/unit/Tag/EndFormCest.php | 35 + tests/unit/Tag/FileFieldCest.php | 21 + tests/unit/Tag/FormCest.php | 31 + tests/unit/Tag/FriendlyTitleCest.php | 212 + tests/unit/Tag/GetDICest.php | 31 + tests/unit/Tag/GetDocTypeCest.php | 163 + tests/unit/Tag/GetEscaperCest.php | 31 + tests/unit/Tag/GetEscaperServiceCest.php | 31 + tests/unit/Tag/GetTitleCest.php | 41 + tests/unit/Tag/GetTitleSeparatorCest.php | 31 + tests/unit/Tag/GetUrlServiceCest.php | 31 + tests/unit/Tag/GetValueCest.php | 31 + tests/unit/Tag/HasValueCest.php | 31 + tests/unit/Tag/HiddenFieldCest.php | 21 + tests/unit/Tag/ImageCest.php | 311 + tests/unit/Tag/ImageInputCest.php | 386 + tests/unit/Tag/JavascriptIncludeCest.php | 111 + tests/unit/Tag/LinkToCest.php | 227 + tests/unit/Tag/MonthFieldCest.php | 21 + tests/unit/Tag/NumericFieldCest.php | 21 + tests/unit/Tag/PasswordFieldCest.php | 21 + tests/unit/Tag/PrependTitleCest.php | 164 + tests/unit/Tag/RadioFieldCest.php | 29 + tests/unit/Tag/RangeFieldCest.php | 21 + tests/unit/Tag/RenderAttributesCest.php | 28 + tests/unit/Tag/RenderTitleCest.php | 39 + tests/unit/Tag/ResetInputCest.php | 130 + tests/unit/Tag/SearchFieldCest.php | 21 + tests/unit/Tag/Select/SelectFieldCest.php | 31 + tests/unit/Tag/SelectCest.php | 28 + tests/unit/Tag/SelectStaticCest.php | 618 + tests/unit/Tag/SetAutoescapeCest.php | 28 + tests/unit/Tag/SetDICest.php | 28 + tests/unit/Tag/SetDefaultCest.php | 45 + tests/unit/Tag/SetDefaultsCest.php | 48 + tests/unit/Tag/SetDocTypeCest.php | 33 + tests/unit/Tag/SetTitleCest.php | 40 + tests/unit/Tag/SetTitleSeparatorCest.php | 36 + tests/unit/Tag/StylesheetLinkCest.php | 202 + tests/unit/Tag/SubmitButtonCest.php | 194 + tests/unit/Tag/TagCheckFieldTest.php | 436 - tests/unit/Tag/TagColorFieldTest.php | 433 - tests/unit/Tag/TagDateFieldTest.php | 433 - tests/unit/Tag/TagDateTimeFieldTest.php | 433 - tests/unit/Tag/TagDateTimeLocalFieldTest.php | 435 - tests/unit/Tag/TagDoctypeTest.php | 306 - tests/unit/Tag/TagEmailFieldTest.php | 433 - tests/unit/Tag/TagFileFieldTest.php | 433 - tests/unit/Tag/TagFriendlyTitleTest.php | 251 - tests/unit/Tag/TagHiddenFieldTest.php | 433 - tests/unit/Tag/TagHtmlCest.php | 180 + tests/unit/Tag/TagHtmlCloseCest.php | 79 + tests/unit/Tag/TagImageInputTest.php | 425 - tests/unit/Tag/TagImageTest.php | 544 - tests/unit/Tag/TagJavascriptIncludeTest.php | 131 - tests/unit/Tag/TagLinkToTest.php | 272 - tests/unit/Tag/TagMonthFieldTest.php | 433 - tests/unit/Tag/TagNumericFieldTest.php | 433 - tests/unit/Tag/TagPasswordFieldTest.php | 433 - tests/unit/Tag/TagRadioFieldTest.php | 433 - tests/unit/Tag/TagRangeFieldTest.php | 433 - tests/unit/Tag/TagResetInputTest.php | 150 - tests/unit/Tag/TagSearchFieldTest.php | 433 - tests/unit/Tag/TagSelectStaticTest.php | 658 - tests/unit/Tag/TagSetDefaultTest.php | 54 - tests/unit/Tag/TagStylesheetlinkTest.php | 243 - tests/unit/Tag/TagSubmitButtonTest.php | 425 - tests/unit/Tag/TagTagHtmlTest.php | 296 - tests/unit/Tag/TagTelFieldTest.php | 433 - tests/unit/Tag/TagTextAreaTest.php | 289 - tests/unit/Tag/TagTextFieldTest.php | 433 - tests/unit/Tag/TagTimeFieldTest.php | 433 - tests/unit/Tag/TagTitleTest.php | 292 - tests/unit/Tag/TagUrlFieldTest.php | 433 - tests/unit/Tag/TagWeekFieldTest.php | 433 - tests/unit/Tag/TelFieldCest.php | 21 + tests/unit/Tag/TextAreaCest.php | 217 + tests/unit/Tag/TextFieldCest.php | 21 + tests/unit/Tag/TimeFieldCest.php | 21 + tests/unit/Tag/UrlFieldCest.php | 21 + tests/unit/Tag/WeekFieldCest.php | 21 + tests/unit/Text/CamelizeCest.php | 61 + tests/unit/Text/ConcatCest.php | 40 + tests/unit/Text/DynamicCest.php | 98 + tests/unit/Text/EndsWithCest.php | 112 + tests/unit/Text/HumanizeCest.php | 46 + tests/unit/Text/IncrementCest.php | 120 + tests/unit/Text/LowerCest.php | 79 + tests/unit/Text/RandomCest.php | 203 + tests/unit/Text/ReduceSlashesCest.php | 46 + tests/unit/Text/StartsWithCest.php | 112 + tests/unit/Text/TextCamelizeTest.php | 66 - tests/unit/Text/TextConcatTest.php | 51 - tests/unit/Text/TextDynamicTest.php | 100 - tests/unit/Text/TextEndsWithTest.php | 129 - tests/unit/Text/TextHumanizeTest.php | 45 - tests/unit/Text/TextIncrementTest.php | 140 - tests/unit/Text/TextRandomTest.php | 191 - tests/unit/Text/TextReduceSlashesTest.php | 45 - tests/unit/Text/TextStartsWithTest.php | 129 - tests/unit/Text/TextUncamelizeTest.php | 64 - tests/unit/Text/TextUnderscoreTest.php | 45 - tests/unit/Text/TextUpperLowerTest.php | 106 - tests/unit/Text/UncamelizeCest.php | 59 + tests/unit/Text/UnderscoreCest.php | 46 + tests/unit/Text/UpperCest.php | 78 + .../unit/Translate/Adapter/ConstructCest.php | 31 + .../Translate/Adapter/Csv/ConstructCest.php | 62 + .../unit/Translate/Adapter/Csv/ExistsCest.php | 42 + .../Adapter/Csv/OffsetExistsCest.php | 31 + .../Translate/Adapter/Csv/OffsetGetCest.php | 31 + .../Translate/Adapter/Csv/OffsetSetCest.php | 31 + .../Translate/Adapter/Csv/OffsetUnsetCest.php | 31 + .../unit/Translate/Adapter/Csv/QueryCest.php | 31 + .../Adapter/Csv/SetInterpolatorCest.php | 31 + tests/unit/Translate/Adapter/Csv/TCest.php | 31 + .../Translate/Adapter/Csv/UnderscoreCest.php | 31 + tests/unit/Translate/Adapter/CsvCest.php | 54 + tests/unit/Translate/Adapter/CsvTest.php | 117 - tests/unit/Translate/Adapter/ExistsCest.php | 31 + .../Adapter/Gettext/ConstructCest.php | 64 + .../Translate/Adapter/Gettext/ExistsCest.php | 40 + .../Adapter/Gettext/GetCategoryCest.php | 31 + .../Adapter/Gettext/GetDefaultDomainCest.php | 31 + .../Adapter/Gettext/GetDirectoryCest.php | 31 + .../Adapter/Gettext/GetLocaleCest.php | 31 + .../Translate/Adapter/Gettext/NqueryCest.php | 31 + .../Adapter/Gettext/OffsetExistsCest.php | 31 + .../Adapter/Gettext/OffsetGetCest.php | 31 + .../Adapter/Gettext/OffsetSetCest.php | 31 + .../Adapter/Gettext/OffsetUnsetCest.php | 31 + .../Translate/Adapter/Gettext/QueryCest.php | 31 + .../Adapter/Gettext/ResetDomainCest.php | 31 + .../Adapter/Gettext/SetDefaultDomainCest.php | 31 + .../Adapter/Gettext/SetDirectoryCest.php | 31 + .../Adapter/Gettext/SetDomainCest.php | 31 + .../Adapter/Gettext/SetInterpolatorCest.php | 31 + .../Adapter/Gettext/SetLocaleCest.php | 31 + .../unit/Translate/Adapter/Gettext/TCest.php | 31 + .../Adapter/Gettext/UnderscoreCest.php | 31 + tests/unit/Translate/Adapter/GettextCest.php | 79 +- .../Adapter/NativeArray/ArrayAccessCest.php | 46 + .../Adapter/NativeArray/ConstructCest.php | 64 + .../Adapter/NativeArray/ExistsCest.php | 39 + .../Adapter/NativeArray/OffsetExistsCest.php | 39 + .../Adapter/NativeArray/OffsetGetCest.php | 40 + .../Adapter/NativeArray/OffsetSetCest.php | 43 + .../Adapter/NativeArray/OffsetUnsetCest.php | 43 + .../Adapter/NativeArray/QueryCest.php | 19 + .../NativeArray/SetInterpolatorCest.php | 31 + .../Translate/Adapter/NativeArray/TCest.php | 19 + .../Adapter/NativeArray/UnderscoreCest.php | 19 + .../Translate/Adapter/NativeArrayTest.php | 438 - .../Translate/Adapter/OffsetExistsCest.php | 31 + .../unit/Translate/Adapter/OffsetGetCest.php | 31 + .../unit/Translate/Adapter/OffsetSetCest.php | 31 + .../Translate/Adapter/OffsetUnsetCest.php | 31 + tests/unit/Translate/Adapter/QueryCest.php | 31 + .../Translate/Adapter/SetInterpolatorCest.php | 31 + tests/unit/Translate/Adapter/TCest.php | 31 + .../unit/Translate/Adapter/UnderscoreCest.php | 31 + tests/unit/Translate/Factory/LoadCest.php | 104 + tests/unit/Translate/FactoryTest.php | 82 - .../ReplacePlaceholdersCest.php | 47 + .../Interpolator/AssociativeArrayTest.php | 50 - .../IndexedArray/InterpolatorCest.php | 48 + .../IndexedArray/ReplacePlaceholdersCest.php | 41 + .../Interpolator/IndexedArrayTest.php | 84 - tests/unit/Validation/Validator/AlnumTest.php | 75 - tests/unit/Validation/Validator/AlphaTest.php | 187 - .../unit/Validation/Validator/BetweenTest.php | 161 - .../Validation/Validator/CallbackTest.php | 299 - .../Validation/Validator/ConfirmationTest.php | 211 - .../Validation/Validator/CreditCardTest.php | 180 - tests/unit/Validation/Validator/DateTest.php | 163 - tests/unit/Validation/Validator/DigitTest.php | 114 - tests/unit/Validation/Validator/EmailTest.php | 144 - .../Validation/Validator/ExclusionInTest.php | 191 - .../Validation/Validator/IdenticalTest.php | 186 - .../Validation/Validator/InclusionInTest.php | 191 - .../Validation/Validator/NumericalityTest.php | 134 - .../Validation/Validator/PresenceOfTest.php | 207 - tests/unit/Validation/Validator/RegexTest.php | 184 - .../Validation/Validator/StringLengthTest.php | 271 - .../Validation/Validator/UniquenessTest.php | 369 - tests/unit/Validation/Validator/UrlTest.php | 142 - tests/unit/ValidationTest.php | 294 - tests/unit/Version/ConstantsCest.php | 36 + tests/unit/Version/GetCest.php | 57 + tests/unit/Version/GetIdCest.php | 68 + tests/unit/Version/GetPartCest.php | 66 + tests/unit/VersionTest.php | 310 - tests/unit/_bootstrap.php | 10 +- unit-tests/.gitignore | 1 - unit-tests/CacheTest.php | 633 - unit-tests/DbBindTest.php | 450 - unit-tests/DbDescribeTest.php | 547 - unit-tests/DbProfilerTest.php | 171 - unit-tests/DbTest.php | 425 - unit-tests/FormsTest.php | 269 - unit-tests/MicroMvcCollectionsTest.php | 142 - unit-tests/ModelsCalculationsTest.php | 382 - unit-tests/ModelsEventsTest.php | 240 - unit-tests/ModelsForeignKeysTest.php | 260 - unit-tests/ModelsHydrationTest.php | 568 - unit-tests/ModelsMetadataStrategyTest.php | 182 - unit-tests/ModelsMetadataTest.php | 273 - unit-tests/ModelsQueryExecuteTest.php | 989 -- unit-tests/ModelsRelationsMagicTest.php | 179 - unit-tests/ModelsRelationsTest.php | 380 - unit-tests/ModelsResultsetCacheStaticTest.php | 128 - unit-tests/ModelsResultsetCacheTest.php | 337 - unit-tests/ModelsResultsetTest.php | 665 - unit-tests/ModelsTest.php | 820 - unit-tests/ModelsValidatorsTest.php | 261 - unit-tests/PaginatorTest.php | 430 - unit-tests/cache/.gitignore | 2 - unit-tests/config.db.php | 26 - unit-tests/controllers/ControllerBase.php | 11 - unit-tests/controllers/FailureController.php | 9 - unit-tests/controllers/Test0Controller.php | 2 - unit-tests/controllers/Test1Controller.php | 6 - unit-tests/controllers/Test2Controller.php | 46 - unit-tests/controllers/Test3Controller.php | 32 - unit-tests/controllers/Test5Controller.php | 11 - unit-tests/controllers/Test6Controller.php | 7 - unit-tests/controllers/Test7Controller.php | 6 - unit-tests/controllers/Test8Controller.php | 11 - unit-tests/helpers/xcache.php | 29 - unit-tests/models/Abonnes.php | 97 - unit-tests/models/AlbumORama/Albums.php | 18 - unit-tests/models/AlbumORama/Artists.php | 15 - unit-tests/models/AlbumORama/Songs.php | 15 - unit-tests/models/Boutique/Robots.php | 59 - unit-tests/models/Boutique/Robotters.php | 40 - unit-tests/models/Cacheable/Model.php | 45 - unit-tests/models/Cacheable/Parts.php | 15 - unit-tests/models/Cacheable/Robots.php | 15 - unit-tests/models/Cacheable/RobotsParts.php | 16 - unit-tests/models/Childs.php | 16 - unit-tests/models/Deles.php | 33 - unit-tests/models/GossipRobots.php | 86 - unit-tests/models/News/Subscribers.php | 31 - unit-tests/models/Parts.php | 15 - unit-tests/models/Parts2.php | 13 - unit-tests/models/People.php | 11 - unit-tests/models/Personas.php | 11 - unit-tests/models/Personers.php | 33 - unit-tests/models/Personnes.php | 11 - unit-tests/models/Pessoas.php | 33 - unit-tests/models/Products.php | 6 - unit-tests/models/Prueba.php | 6 - unit-tests/models/Relations/Deles.php | 33 - unit-tests/models/Relations/M2MParts.php | 9 - unit-tests/models/Relations/M2MRobots.php | 14 - .../models/Relations/M2MRobotsParts.php | 9 - .../models/Relations/RelationsParts.php | 20 - .../models/Relations/RelationsRobots.php | 19 - .../models/Relations/RelationsRobotsParts.php | 23 - unit-tests/models/Relations/Robotters.php | 37 - .../models/Relations/RobottersDeles.php | 39 - unit-tests/models/Relations/Some/Deles.php | 35 - unit-tests/models/Relations/Some/Parts.php | 22 - unit-tests/models/Relations/Some/Products.php | 52 - unit-tests/models/Relations/Some/Robots.php | 25 - .../models/Relations/Some/RobotsParts.php | 25 - .../models/Relations/Some/Robotters.php | 43 - .../models/Relations/Some/RobottersDeles.php | 41 - unit-tests/models/Robots.php | 13 - unit-tests/models/Robots2.php | 26 - unit-tests/models/RobotsParts.php | 18 - unit-tests/models/Robotters.php | 36 - unit-tests/models/RobottersDeles.php | 39 - unit-tests/models/Robotto.php | 54 - unit-tests/models/Snapshot/Parts.php | 14 - unit-tests/models/Snapshot/Robots.php | 14 - unit-tests/models/Snapshot/RobotsParts.php | 14 - unit-tests/models/Snapshot/Robotters.php | 31 - unit-tests/models/Some/Deles.php | 35 - unit-tests/models/Some/Parts.php | 22 - unit-tests/models/Some/Products.php | 52 - unit-tests/models/Some/Robots.php | 25 - unit-tests/models/Some/RobotsParts.php | 25 - unit-tests/models/Some/Robotters.php | 43 - unit-tests/models/Some/RobottersDeles.php | 41 - unit-tests/models/Store/Parts.php | 17 - unit-tests/models/Store/Robots.php | 18 - unit-tests/models/Store/RobotsParts.php | 20 - unit-tests/models/Subscribers.php | 11 - unit-tests/models/Subscriptores.php | 65 - unit-tests/views/index.phtml | 1 - unit-tests/views/layouts/after.phtml | 1 - unit-tests/views/layouts/before.phtml | 1 - unit-tests/views/layouts/test10.volt | 3 - unit-tests/views/layouts/test10.volt.php | 3 - unit-tests/views/layouts/test13.phtml | 1 - unit-tests/views/macro/conditionaldate.volt | 9 - unit-tests/views/macro/error_messages.volt | 5 - unit-tests/views/macro/form_row.volt | 19 - unit-tests/views/macro/hello.volt | 5 - unit-tests/views/macro/list.volt | 5 - unit-tests/views/macro/my_input.volt | 5 - unit-tests/views/macro/related_links.volt | 9 - unit-tests/views/macro/strtotime.volt | 1 - unit-tests/views/partials/footer.volt | 1 - unit-tests/views/partials/header.volt | 1 - unit-tests/views/partials/header2.volt | 1 - unit-tests/views/partials/header3.volt | 1 - unit-tests/views/templates/a.volt | 1 - unit-tests/views/templates/b.volt | 1 - unit-tests/views/templates/c.volt | 1 - unit-tests/views/test10/.gitignore | 1 - unit-tests/views/test10/children.extends.volt | 7 - unit-tests/views/test10/children.volt | 7 - unit-tests/views/test10/children2.volt | 9 - unit-tests/views/test11/index.volt | 16 - unit-tests/views/test11/index.volt.php | 16 - unit-tests/views/test13/index.phtml | 1 - unit-tests/views/test14/loop1.volt | 6 - unit-tests/views/test16/index.phtml | 1 - unit-tests/views/test3/query.phtml | 1 - unit-tests/views/test3/yup.phtml | 1 - unit-tests/views/test8/index.phtml | 1 - unit-tests/views/test8/leother.phtml | 1 - unit-tests/views/test8/other.phtml | 1 - 5390 files changed, 223096 insertions(+), 98706 deletions(-) delete mode 100644 phalcon/annotations/adapter/apc.zep delete mode 100644 phalcon/annotations/adapter/xcache.zep delete mode 100644 phalcon/cache/backend/apc.zep delete mode 100644 phalcon/cache/backend/memcache.zep delete mode 100644 phalcon/cache/backend/xcache.zep delete mode 100644 phalcon/mvc/model/metadata/apc.zep delete mode 100644 phalcon/mvc/model/metadata/memcache.zep delete mode 100644 phalcon/mvc/model/metadata/xcache.zep delete mode 100644 phalcon/session/adapter/memcache.zep rename CHANGELOG-1.x.md => resources/CHANGELOG-1.x.md (100%) rename CHANGELOG-2.0.md => resources/CHANGELOG-2.0.md (100%) rename CHANGELOG-3.0.md => resources/CHANGELOG-3.0.md (100%) rename CHANGELOG-3.1.md => resources/CHANGELOG-3.1.md (100%) rename CHANGELOG-3.2.md => resources/CHANGELOG-3.2.md (100%) rename CHANGELOG-3.3.md => resources/CHANGELOG-3.3.md (100%) rename CHANGELOG-3.4.md => resources/CHANGELOG-3.4.md (100%) delete mode 100644 tests/_cache/.gitignore create mode 100644 tests/_ci/.env.default create mode 100644 tests/_ci/nanobox/.env.example create mode 100644 tests/_ci/nanobox/boxfile.7.2.yml create mode 100644 tests/_ci/nanobox/boxfile.7.3.yml create mode 100755 tests/_ci/nanobox/setup-dbs-nanobox.sh delete mode 100644 tests/_config/global.php rename tests/_data/{logs/dummy => .gitkeep} (100%) delete mode 100644 tests/_data/acl/TestResourceAware.php delete mode 100644 tests/_data/acl/TestRoleAware.php delete mode 100644 tests/_data/acl/TestRoleResourceAware.php delete mode 100644 tests/_data/annotations/TestClass.php delete mode 100644 tests/_data/annotations/TestClassNs.php delete mode 100644 tests/_data/annotations/TestInvalid.php delete mode 100644 tests/_data/assets/assets-multiple-01.js delete mode 100644 tests/_data/assets/assets-multiple-02.js rename tests/_data/assets/{ => assets}/1198.css (100%) rename tests/_data/assets/{ => assets}/cssmin-01-result.css (100%) rename tests/_data/assets/{ => assets}/cssmin-01.css (100%) rename tests/_data/assets/{ => assets}/jquery.js (100%) rename tests/_data/assets/{ => assets}/signup.js (100%) create mode 100644 tests/_data/assets/config/callbacks.yml rename tests/_data/{ => assets}/config/config-with-constants.ini (100%) rename tests/_data/{ => assets}/config/config.ini (91%) rename tests/_data/{ => assets}/config/config.json (99%) create mode 100644 tests/_data/assets/config/config.php rename tests/_data/{ => assets}/config/config.yml (100%) rename tests/_data/{ => assets}/config/directive.ini (100%) create mode 100644 tests/_data/assets/config/factory.ini create mode 100644 tests/_data/assets/db/schemas/mysql_schema.sql create mode 100644 tests/_data/assets/db/schemas/postgresql_schema.sql create mode 100644 tests/_data/assets/db/schemas/postgresql_schema_nanobox.sql rename tests/_data/{schemas/phalcon-schema-sqlite.sql => assets/db/schemas/sqlite_schema.sql} (100%) rename tests/_data/{schemas/phalcon-schema-sqlite-translations.sql => assets/db/schemas/sqlite_translations_schema.sql} (100%) delete mode 100644 tests/_data/assets/gs.js rename tests/_data/assets/{ => images}/logo.png (100%) rename tests/_data/assets/{ => images}/phalconphp.jpg (100%) rename tests/_data/{ => assets}/translation/csv/ru_RU.csv (100%) rename tests/_data/{ => assets}/translation/gettext/en_US.utf8/LC_MESSAGES/messages.mo (100%) rename tests/_data/{ => assets}/translation/gettext/en_US.utf8/LC_MESSAGES/messages.po (100%) delete mode 100644 tests/_data/collections/Bookshelf/Books.php delete mode 100644 tests/_data/collections/Bookshelf/Magazines.php delete mode 100644 tests/_data/collections/Bookshelf/NotACollection.php delete mode 100644 tests/_data/collections/People.php delete mode 100644 tests/_data/collections/Robots.php delete mode 100644 tests/_data/collections/Songs.php delete mode 100644 tests/_data/collections/Store/Songs.php delete mode 100644 tests/_data/collections/Subs.php delete mode 100644 tests/_data/collections/Users.php delete mode 100644 tests/_data/config/callbacks.yml delete mode 100644 tests/_data/config/config.php delete mode 100644 tests/_data/config/factory.ini delete mode 100644 tests/_data/controllers/AboutController.php delete mode 100644 tests/_data/controllers/ControllerBase.php delete mode 100644 tests/_data/controllers/FailureController.php delete mode 100644 tests/_data/controllers/MainController.php delete mode 100644 tests/_data/controllers/NamespacedAnnotationController.php delete mode 100644 tests/_data/controllers/ProductsController.php delete mode 100644 tests/_data/controllers/RobotsController.php delete mode 100644 tests/_data/controllers/Test10Controller.php delete mode 100644 tests/_data/controllers/Test11Controller.php delete mode 100644 tests/_data/controllers/Test12Controller.php delete mode 100644 tests/_data/controllers/Test1Controller.php delete mode 100644 tests/_data/controllers/Test2Controller.php delete mode 100644 tests/_data/controllers/Test3Controller.php delete mode 100644 tests/_data/controllers/Test4Controller.php delete mode 100644 tests/_data/controllers/Test5Controller.php delete mode 100644 tests/_data/controllers/Test6Controller.php delete mode 100644 tests/_data/controllers/Test7Controller.php delete mode 100644 tests/_data/controllers/Test8Controller.php delete mode 100644 tests/_data/controllers/Test9Controller.php delete mode 100644 tests/_data/db/DateTime.php delete mode 100644 tests/_data/debug/ClassProperties.php delete mode 100644 tests/_data/di/SomeService.php create mode 100644 tests/_data/fixtures/Acl/TestResourceAware.php create mode 100644 tests/_data/fixtures/Acl/TestRoleAware.php create mode 100644 tests/_data/fixtures/Acl/TestRoleResourceAware.php create mode 100644 tests/_data/fixtures/Annotations/TestClass.php create mode 100644 tests/_data/fixtures/Annotations/TestClassNs.php create mode 100644 tests/_data/fixtures/Annotations/TestInvalid.php create mode 100644 tests/_data/fixtures/Assets/TrimFilter.php create mode 100644 tests/_data/fixtures/Assets/UppercaseFilter.php create mode 100644 tests/_data/fixtures/Db/Profiler.php create mode 100644 tests/_data/fixtures/Db/ProfilerListener.php rename tests/{_fixtures => _data/fixtures/Db}/mysql/example1.sql (100%) rename tests/{_fixtures => _data/fixtures/Db}/mysql/example2.sql (100%) rename tests/{_fixtures => _data/fixtures/Db}/mysql/example3.sql (100%) rename tests/{_fixtures => _data/fixtures/Db}/mysql/example4.sql (100%) rename tests/{_fixtures => _data/fixtures/Db}/mysql/example5.sql (100%) rename tests/{_fixtures => _data/fixtures/Db}/postgresql/example1.sql (100%) rename tests/{_fixtures => _data/fixtures/Db}/postgresql/example2.sql (100%) rename tests/{_fixtures => _data/fixtures/Db}/postgresql/example3.sql (100%) rename tests/{_fixtures => _data/fixtures/Db}/postgresql/example4.sql (100%) rename tests/{_fixtures => _data/fixtures/Db}/postgresql/example5.sql (100%) rename tests/{_fixtures => _data/fixtures/Db}/postgresql/example6.sql (100%) rename tests/{_fixtures => _data/fixtures/Db}/postgresql/example7.sql (100%) rename tests/{_fixtures => _data/fixtures/Db}/postgresql/example8.sql (100%) rename tests/{_fixtures => _data/fixtures/Db}/postgresql/example9.sql (100%) rename tests/{_fixtures => _data/fixtures/Db}/sqlite/example1.sql (100%) rename tests/{_fixtures => _data/fixtures/Db}/sqlite/example2.sql (100%) rename tests/{_fixtures => _data/fixtures/Db}/sqlite/example3.sql (100%) rename tests/{_fixtures => _data/fixtures/Db}/sqlite/example4.sql (100%) rename tests/{_fixtures => _data/fixtures/Db}/sqlite/example5.sql (100%) rename tests/{_fixtures => _data/fixtures/Db}/sqlite/example6.sql (100%) rename tests/{_fixtures => _data/fixtures/Db}/sqlite/example7.sql (100%) rename tests/{_fixtures => _data/fixtures/Db}/sqlite/example8.sql (100%) rename tests/_data/{di => fixtures/Di}/InjectableComponent.php (93%) rename tests/_data/{di => fixtures/Di}/SimpleComponent.php (90%) rename tests/_data/{di => fixtures/Di}/SomeComponent.php (92%) rename tests/_data/{di => fixtures/Di}/SomeServiceProvider.php (100%) rename tests/_data/{di => fixtures/Di}/services.php (100%) rename tests/_data/{di => fixtures/Di}/services.yml (100%) create mode 100644 tests/_data/fixtures/Dump/class_properties.txt rename tests/_data/{events => fixtures/Events}/ComponentX.php (95%) rename tests/_data/{events => fixtures/Events}/ComponentY.php (94%) create mode 100644 tests/_data/fixtures/Forms/ContactFormPublicProperties.php create mode 100644 tests/_data/fixtures/Forms/ContactFormSettersGetters.php create mode 100644 tests/_data/fixtures/Helpers/TagHelper.php create mode 100644 tests/_data/fixtures/Helpers/TagSetup.php create mode 100644 tests/_data/fixtures/Helpers/TranslateQueryHelper.php rename tests/{_support/Helper => _data/fixtures}/Http/PhpStream.php (78%) create mode 100644 tests/_data/fixtures/Listener/CustomAuthorizationListener.php create mode 100644 tests/_data/fixtures/Listener/FirstListener.php create mode 100644 tests/_data/fixtures/Listener/NegotiateAuthorizationListener.php create mode 100644 tests/_data/fixtures/Listener/SecondListener.php create mode 100644 tests/_data/fixtures/Listener/ThirdListener.php create mode 100644 tests/_data/fixtures/Loader/Example/Classes/One.php create mode 100644 tests/_data/fixtures/Loader/Example/Classes/Two.php create mode 100644 tests/_data/fixtures/Loader/Example/Events/LoaderEvent.php create mode 100644 tests/_data/fixtures/Loader/Example/Folders/Dialects/Sqlite.php create mode 100644 tests/_data/fixtures/Loader/Example/Folders/Types/Integer.php rename tests/_data/{vendor/Example/Other/NoClass.php => fixtures/Loader/Example/Functions/FunctionsNoClass.php} (100%) rename tests/_data/{vendor/Example/Other/NoClass1.php => fixtures/Loader/Example/Functions/FunctionsNoClassOne.php} (100%) rename tests/_data/{vendor/Example/Other/NoClass3.php => fixtures/Loader/Example/Functions/FunctionsNoClassThree.php} (100%) rename tests/_data/{vendor/Example/Other/NoClass2.php => fixtures/Loader/Example/Functions/FunctionsNoClassTwo.php} (100%) create mode 100644 tests/_data/fixtures/Loader/Example/Namespaces/Adapter/Blackhole.php create mode 100644 tests/_data/fixtures/Loader/Example/Namespaces/Adapter/File.inc create mode 100644 tests/_data/fixtures/Loader/Example/Namespaces/Adapter/Memcached.php create mode 100644 tests/_data/fixtures/Loader/Example/Namespaces/Adapter/Mongo.php create mode 100644 tests/_data/fixtures/Loader/Example/Namespaces/Adapter/Redis.php rename tests/_data/{vendor/Example => fixtures/Loader/Example/Namespaces}/Base/Any.php (100%) create mode 100644 tests/_data/fixtures/Loader/Example/Namespaces/Engines/Alcohol.inc create mode 100644 tests/_data/fixtures/Loader/Example/Namespaces/Engines/Diesel.php create mode 100644 tests/_data/fixtures/Loader/Example/Namespaces/Engines/Gasoline.php create mode 100644 tests/_data/fixtures/Loader/Example/Namespaces/Example/Example.php create mode 100644 tests/_data/fixtures/Loader/Example/Namespaces/Plugin/Another.php create mode 100644 tests/_data/fixtures/MemorySession.php create mode 100644 tests/_data/fixtures/Micro/MyMiddleware.php create mode 100644 tests/_data/fixtures/Micro/MyMiddlewareStop.php create mode 100644 tests/_data/fixtures/Micro/RestHandler.php rename tests/{_support/Module => _data/fixtures/Mvc}/View/AfterRenderListener.php (77%) create mode 100644 tests/_data/fixtures/Mvc/View/Engine/Mustache.php create mode 100644 tests/_data/fixtures/Mvc/View/Engine/Twig.php create mode 100644 tests/_data/fixtures/Mvc/View/IteratorObject.php create mode 100644 tests/_data/fixtures/Traits/AssetsTrait.php create mode 100644 tests/_data/fixtures/Traits/BeanstalkTrait.php create mode 100644 tests/_data/fixtures/Traits/Cache/FileTrait.php create mode 100644 tests/_data/fixtures/Traits/CollectionTrait.php create mode 100644 tests/_data/fixtures/Traits/ConfigTrait.php create mode 100644 tests/_data/fixtures/Traits/CookieTrait.php create mode 100644 tests/_data/fixtures/Traits/CryptTrait.php create mode 100644 tests/_data/fixtures/Traits/Db/MysqlTrait.php create mode 100644 tests/_data/fixtures/Traits/Db/PostgresqlTrait.php create mode 100644 tests/_data/fixtures/Traits/DiTrait.php create mode 100644 tests/_data/fixtures/Traits/DialectTrait.php create mode 100644 tests/_data/fixtures/Traits/FactoryTrait.php create mode 100644 tests/_data/fixtures/Traits/RedisTrait.php rename tests/{_support/Helper/Mvc => _data/fixtures/Traits}/RouterTrait.php (84%) create mode 100644 tests/_data/fixtures/Traits/TranslateTrait.php create mode 100644 tests/_data/fixtures/Traits/ValidationTrait.php create mode 100644 tests/_data/fixtures/Traits/VersionTrait.php create mode 100644 tests/_data/fixtures/Traits/ViewTrait.php create mode 100644 tests/_data/fixtures/controllers/AboutController.php rename tests/_data/{ => fixtures}/controllers/ExceptionController.php (100%) create mode 100644 tests/_data/fixtures/controllers/MainController.php create mode 100644 tests/_data/fixtures/controllers/Micro/Collections/PersonasController.php create mode 100644 tests/_data/fixtures/controllers/Micro/Collections/PersonasLazyController.php create mode 100644 tests/_data/fixtures/controllers/MicroController.php create mode 100644 tests/_data/fixtures/controllers/NamespacedAnnotationController.php create mode 100644 tests/_data/fixtures/controllers/ProductsController.php create mode 100644 tests/_data/fixtures/controllers/RobotsController.php create mode 100644 tests/_data/fixtures/controllers/ViewRequestController.php rename tests/{_fixtures => _data/fixtures}/metadata/robots.php (100%) create mode 100644 tests/_data/fixtures/models/Abonnes.php create mode 100644 tests/_data/fixtures/models/AlbumORama/Albums.php create mode 100644 tests/_data/fixtures/models/AlbumORama/Artists.php create mode 100644 tests/_data/fixtures/models/AlbumORama/Songs.php rename tests/_data/{ => fixtures}/models/Annotations/Robot.php (87%) create mode 100644 tests/_data/fixtures/models/BodyParts/Body.php create mode 100644 tests/_data/fixtures/models/BodyParts/Head.php create mode 100644 tests/_data/fixtures/models/Boutique/Robots.php create mode 100644 tests/_data/fixtures/models/Boutique/Robotters.php create mode 100644 tests/_data/fixtures/models/Cacheable/Model.php create mode 100644 tests/_data/fixtures/models/Cacheable/Parts.php create mode 100644 tests/_data/fixtures/models/Cacheable/Robots.php create mode 100644 tests/_data/fixtures/models/Cacheable/RobotsParts.php create mode 100644 tests/_data/fixtures/models/Childs.php create mode 100644 tests/_data/fixtures/models/Customers.php create mode 100644 tests/_data/fixtures/models/Deles.php create mode 100644 tests/_data/fixtures/models/Dynamic/Personas.php create mode 100644 tests/_data/fixtures/models/Dynamic/Personers.php create mode 100644 tests/_data/fixtures/models/Dynamic/Robots.php create mode 100644 tests/_data/fixtures/models/GossipRobots.php create mode 100644 tests/_data/fixtures/models/I1534.php create mode 100644 tests/_data/fixtures/models/Language.php create mode 100644 tests/_data/fixtures/models/LanguageI18n.php create mode 100644 tests/_data/fixtures/models/ModelWithStringField.php create mode 100644 tests/_data/fixtures/models/News/Subscribers.php create mode 100644 tests/_data/fixtures/models/PackageDetails.php create mode 100644 tests/_data/fixtures/models/Packages.php create mode 100644 tests/_data/fixtures/models/Parts.php create mode 100644 tests/_data/fixtures/models/Parts2.php create mode 100644 tests/_data/fixtures/models/People.php create mode 100644 tests/_data/fixtures/models/Personas.php create mode 100644 tests/_data/fixtures/models/Personers.php create mode 100644 tests/_data/fixtures/models/Personnes.php create mode 100644 tests/_data/fixtures/models/Pessoas.php create mode 100644 tests/_data/fixtures/models/Products.php create mode 100644 tests/_data/fixtures/models/Prueba.php create mode 100644 tests/_data/fixtures/models/Relations/Deles.php create mode 100644 tests/_data/fixtures/models/Relations/M2MParts.php create mode 100644 tests/_data/fixtures/models/Relations/M2MRobots.php create mode 100644 tests/_data/fixtures/models/Relations/M2MRobotsParts.php create mode 100644 tests/_data/fixtures/models/Relations/RelationsParts.php create mode 100644 tests/_data/fixtures/models/Relations/RelationsRobots.php create mode 100644 tests/_data/fixtures/models/Relations/RelationsRobotsParts.php create mode 100644 tests/_data/fixtures/models/Relations/Robots.php create mode 100644 tests/_data/fixtures/models/Relations/RobotsParts.php create mode 100644 tests/_data/fixtures/models/Relations/Robotters.php create mode 100644 tests/_data/fixtures/models/Relations/RobottersDeles.php create mode 100644 tests/_data/fixtures/models/Relations/Some/Deles.php create mode 100644 tests/_data/fixtures/models/Relations/Some/Parts.php create mode 100644 tests/_data/fixtures/models/Relations/Some/Products.php create mode 100644 tests/_data/fixtures/models/Relations/Some/Robots.php create mode 100644 tests/_data/fixtures/models/Relations/Some/RobotsParts.php create mode 100644 tests/_data/fixtures/models/Relations/Some/Robotters.php create mode 100644 tests/_data/fixtures/models/Relations/Some/RobottersDeles.php create mode 100644 tests/_data/fixtures/models/Robos.php create mode 100644 tests/_data/fixtures/models/Robots.php create mode 100644 tests/_data/fixtures/models/Robots2.php create mode 100644 tests/_data/fixtures/models/RobotsParts.php create mode 100644 tests/_data/fixtures/models/Robotters.php create mode 100644 tests/_data/fixtures/models/RobottersDeles.php create mode 100644 tests/_data/fixtures/models/Robotto.php create mode 100644 tests/_data/fixtures/models/Select.php create mode 100644 tests/_data/fixtures/models/Snapshot/Parts.php create mode 100644 tests/_data/fixtures/models/Snapshot/Personas.php create mode 100644 tests/_data/fixtures/models/Snapshot/Requests.php create mode 100644 tests/_data/fixtures/models/Snapshot/Robots.php create mode 100644 tests/_data/fixtures/models/Snapshot/RobotsParts.php create mode 100644 tests/_data/fixtures/models/Snapshot/Robotters.php create mode 100644 tests/_data/fixtures/models/Snapshot/Subscribers.php create mode 100644 tests/_data/fixtures/models/Some/Deles.php create mode 100644 tests/_data/fixtures/models/Some/Parts.php create mode 100644 tests/_data/fixtures/models/Some/Products.php create mode 100644 tests/_data/fixtures/models/Some/Robots.php create mode 100644 tests/_data/fixtures/models/Some/RobotsParts.php create mode 100644 tests/_data/fixtures/models/Some/Robotters.php create mode 100644 tests/_data/fixtures/models/Some/RobottersDeles.php create mode 100644 tests/_data/fixtures/models/Statistics/AgeStats.php create mode 100644 tests/_data/fixtures/models/Statistics/CityStats.php create mode 100644 tests/_data/fixtures/models/Statistics/CountryStats.php create mode 100644 tests/_data/fixtures/models/Statistics/GenderStats.php create mode 100644 tests/_data/fixtures/models/Stock.php create mode 100644 tests/_data/fixtures/models/Store/Parts.php create mode 100644 tests/_data/fixtures/models/Store/Robots.php create mode 100644 tests/_data/fixtures/models/Store/RobotsParts.php create mode 100644 tests/_data/fixtures/models/Subscribers.php create mode 100644 tests/_data/fixtures/models/Subscriptores.php create mode 100644 tests/_data/fixtures/models/Users.php create mode 100644 tests/_data/fixtures/models/Validation/Robots.php create mode 100644 tests/_data/fixtures/models/Validation/Subscriptores.php create mode 100644 tests/_data/fixtures/modules/backend/Module.php rename tests/_data/{ => fixtures}/modules/backend/controllers/LoginController.php (100%) rename tests/_data/{ => fixtures}/modules/backend/views/index.phtml (100%) create mode 100644 tests/_data/fixtures/modules/frontend/Module.php rename tests/_data/{ => fixtures}/modules/frontend/controllers/IndexController.php (100%) rename tests/_data/{ => fixtures}/modules/frontend/views/index/index.phtml (100%) create mode 100644 tests/_data/fixtures/resultsets/Stats.php rename tests/_data/{ => fixtures}/tasks/EchoTask.php (100%) rename tests/_data/{ => fixtures}/tasks/Issue787Task.php (87%) rename tests/_data/{ => fixtures}/tasks/MainTask.php (100%) rename tests/_data/{ => fixtures}/tasks/ParamsTask.php (100%) rename tests/_data/{views/test15 => fixtures/views/activerender}/index.phtml (100%) create mode 100644 tests/_data/fixtures/views/builtinfunction/index.volt rename tests/_data/{views/test10 => fixtures/views/compiler}/.gitignore (100%) create mode 100644 tests/_data/fixtures/views/compiler/children.extends.volt create mode 100644 tests/_data/fixtures/views/compiler/children.volt create mode 100644 tests/_data/fixtures/views/compiler/children2.volt rename tests/_data/{views/test10 => fixtures/views/compiler}/import.volt (100%) rename tests/_data/{views/test10 => fixtures/views/compiler}/import2.volt (100%) rename tests/_data/{views/test10 => fixtures/views/compiler}/index.volt (100%) rename tests/_data/{views/test10 => fixtures/views/compiler}/other.volt (100%) rename tests/_data/{views/test10 => fixtures/views/compiler}/parent.volt (100%) rename tests/_data/{views/test10 => fixtures/views/compiler}/partial.volt (100%) rename tests/_data/{views/test3 => fixtures/views/currentrender}/another.phtml (100%) rename tests/_data/{views/test3 => fixtures/views/currentrender}/coolVar.phtml (100%) rename tests/_data/{views/test3 => fixtures/views/currentrender}/other.phtml (100%) rename tests/_data/{views/test3 => fixtures/views/currentrender}/query.phtml (100%) rename tests/_data/{views/test3 => fixtures/views/currentrender}/yup.phtml (100%) create mode 100644 tests/_data/fixtures/views/extends/.gitignore create mode 100644 tests/_data/fixtures/views/extends/children.extends.volt create mode 100644 tests/_data/fixtures/views/extends/children.volt create mode 100644 tests/_data/fixtures/views/extends/children2.volt rename {unit-tests/views/test10 => tests/_data/fixtures/views/extends}/import.volt (100%) rename {unit-tests/views/test10 => tests/_data/fixtures/views/extends}/import2.volt (100%) rename {unit-tests/views/test10 => tests/_data/fixtures/views/extends}/index.volt (100%) rename {unit-tests/views/test10 => tests/_data/fixtures/views/extends}/other.volt (100%) rename {unit-tests/views/test10 => tests/_data/fixtures/views/extends}/parent.volt (100%) rename {unit-tests/views/test10 => tests/_data/fixtures/views/extends}/partial.volt (100%) rename tests/_data/{ => fixtures}/views/filters/.gitignore (100%) rename tests/_data/{ => fixtures}/views/filters/default.volt (100%) rename tests/_data/{ => fixtures}/views/filters/default_json_encode.volt (100%) rename tests/_data/{views/layouts/test10.volt => fixtures/views/layouts/compiler.volt} (100%) rename tests/_data/{views/layouts/test3.phtml => fixtures/views/layouts/currentrender.phtml} (100%) create mode 100644 tests/_data/fixtures/views/layouts/mustache.mhtml rename tests/_data/{views/layouts/test7.twig => fixtures/views/layouts/twig.twig} (100%) rename tests/_data/{views/layouts/test12.phtml => fixtures/views/layouts/twigphp.phtml} (100%) rename tests/_data/{ => fixtures}/views/macro/conditionaldate.volt (100%) rename tests/_data/{ => fixtures}/views/macro/error_messages.volt (100%) rename tests/_data/{ => fixtures}/views/macro/form_row.volt (100%) rename tests/_data/{ => fixtures}/views/macro/hello.volt (100%) rename tests/_data/{ => fixtures}/views/macro/list.volt (100%) rename tests/_data/{ => fixtures}/views/macro/my_input.volt (100%) rename tests/_data/{ => fixtures}/views/macro/related_links.volt (100%) rename tests/_data/{ => fixtures}/views/macro/strtotime.volt (100%) rename tests/_data/{views/test4 => fixtures/views/mustache}/index.mhtml (100%) rename tests/_data/{ => fixtures}/views/partials/footer.volt (100%) rename {unit-tests => tests/_data/fixtures}/views/partials/footer.volt.php (100%) rename tests/_data/{ => fixtures}/views/partials/header.volt (100%) rename {unit-tests => tests/_data/fixtures}/views/partials/header.volt.php (100%) rename tests/_data/{ => fixtures}/views/partials/header2.volt (100%) rename {unit-tests => tests/_data/fixtures}/views/partials/header2.volt.php (100%) rename tests/_data/{ => fixtures}/views/partials/header3.volt (100%) rename {unit-tests => tests/_data/fixtures}/views/partials/header3.volt.php (100%) rename tests/_data/{views/test6 => fixtures/views/phpmustache}/index.mhtml (100%) rename tests/_data/{views/test12 => fixtures/views/phpmustache}/info.phtml (100%) rename tests/_data/{views/test2 => fixtures/views/simple}/index.phtml (100%) rename tests/_data/{views/test2 => fixtures/views/simple}/params.phtml (100%) rename tests/_data/{views/layouts => fixtures/views/switch-case}/.gitignore (100%) rename tests/_data/{ => fixtures}/views/switch-case/simple-usage.volt (100%) rename tests/_data/{ => fixtures}/views/templates/a.volt (100%) create mode 100644 tests/_data/fixtures/views/templates/b.volt create mode 100644 tests/_data/fixtures/views/templates/c.volt rename tests/_data/{views/test7 => fixtures/views/twig}/index.twig (100%) rename tests/_data/{views/test12 => fixtures/views/twigphp}/index.twig (100%) rename tests/_data/{views/test6 => fixtures/views/twigphp}/info.phtml (100%) delete mode 100644 tests/_data/listener/CustomAuthorizationListener.php delete mode 100644 tests/_data/listener/FirstListener.php delete mode 100644 tests/_data/listener/NegotiateAuthorizationListener.php delete mode 100644 tests/_data/listener/SecondListener.php delete mode 100644 tests/_data/listener/ThirdListener.php delete mode 100644 tests/_data/micro/MyMiddleware.php delete mode 100644 tests/_data/micro/MyMiddlewareStop.php delete mode 100644 tests/_data/micro/RestHandler.php delete mode 100644 tests/_data/models/AlbumORama/Albums.php delete mode 100644 tests/_data/models/AlbumORama/Artists.php delete mode 100644 tests/_data/models/BodyParts/Body.php delete mode 100644 tests/_data/models/BodyParts/Head.php delete mode 100644 tests/_data/models/Boutique/Robots.php delete mode 100644 tests/_data/models/Boutique/Robotters.php delete mode 100644 tests/_data/models/Customers.php delete mode 100644 tests/_data/models/Deles.php delete mode 100644 tests/_data/models/Dynamic/Personas.php delete mode 100644 tests/_data/models/Dynamic/Personers.php delete mode 100644 tests/_data/models/Dynamic/Robots.php delete mode 100644 tests/_data/models/Language.php delete mode 100644 tests/_data/models/LanguageI18n.php delete mode 100644 tests/_data/models/ModelWithStringField.php delete mode 100644 tests/_data/models/News/Subscribers.php delete mode 100644 tests/_data/models/PackageDetails.php delete mode 100644 tests/_data/models/Packages.php delete mode 100644 tests/_data/models/Parts.php delete mode 100644 tests/_data/models/People.php delete mode 100644 tests/_data/models/Personas.php delete mode 100644 tests/_data/models/Personers.php delete mode 100644 tests/_data/models/Products.php delete mode 100644 tests/_data/models/Relations/RelationsParts.php delete mode 100644 tests/_data/models/Relations/RelationsRobots.php delete mode 100644 tests/_data/models/Relations/RelationsRobotsParts.php delete mode 100644 tests/_data/models/Relations/Robots.php delete mode 100644 tests/_data/models/Relations/RobotsParts.php delete mode 100644 tests/_data/models/Robos.php delete mode 100644 tests/_data/models/Robots.php delete mode 100644 tests/_data/models/RobotsParts.php delete mode 100644 tests/_data/models/Robotters.php delete mode 100644 tests/_data/models/RobottersDeles.php delete mode 100644 tests/_data/models/Robotto.php delete mode 100644 tests/_data/models/Select.php delete mode 100644 tests/_data/models/Snapshot/Parts.php delete mode 100644 tests/_data/models/Snapshot/Personas.php delete mode 100644 tests/_data/models/Snapshot/Requests.php delete mode 100644 tests/_data/models/Snapshot/Robots.php delete mode 100644 tests/_data/models/Snapshot/RobotsParts.php delete mode 100644 tests/_data/models/Snapshot/Robotters.php delete mode 100644 tests/_data/models/Snapshot/Subscribers.php delete mode 100644 tests/_data/models/Some/Deles.php delete mode 100644 tests/_data/models/Some/Parts.php delete mode 100644 tests/_data/models/Some/Products.php delete mode 100644 tests/_data/models/Some/Robots.php delete mode 100644 tests/_data/models/Some/RobotsParts.php delete mode 100644 tests/_data/models/Some/Robotters.php delete mode 100644 tests/_data/models/Some/RobottersDeles.php delete mode 100644 tests/_data/models/Statistics/AgeStats.php delete mode 100644 tests/_data/models/Statistics/CityStats.php delete mode 100644 tests/_data/models/Statistics/CountryStats.php delete mode 100644 tests/_data/models/Statistics/GenderStats.php delete mode 100644 tests/_data/models/Stock.php delete mode 100644 tests/_data/models/Users.php delete mode 100644 tests/_data/models/Validation/Robots.php delete mode 100644 tests/_data/models/Validation/Subscriptores.php delete mode 100644 tests/_data/modules/backend/Module.php delete mode 100644 tests/_data/modules/frontend/Module.php delete mode 100644 tests/_data/objectsets/Mvc/View/IteratorObject.php delete mode 100644 tests/_data/resultsets/Stats.php delete mode 100644 tests/_data/schemas/phalcon-schema-mysql.sql delete mode 100644 tests/_data/schemas/phalcon-schema-postgresql.sql delete mode 100644 tests/_data/vendor/Example/Adapter/LeAnotherSome.inc delete mode 100644 tests/_data/vendor/Example/Adapter/LeCoolSome.php delete mode 100644 tests/_data/vendor/Example/Adapter/LeSome.php delete mode 100644 tests/_data/vendor/Example/Adapter/Some.php delete mode 100644 tests/_data/vendor/Example/Adapter/SomeCool.php delete mode 100644 tests/_data/vendor/Example/Adapter2/Another.php delete mode 100644 tests/_data/vendor/Example/Dialects/LeDialect.php delete mode 100644 tests/_data/vendor/Example/Engines/LeEngine.php delete mode 100644 tests/_data/vendor/Example/Engines/LeEngine2.php delete mode 100644 tests/_data/vendor/Example/Engines/LeOtherEngine.inc delete mode 100644 tests/_data/vendor/Example/Example/Example.php delete mode 100644 tests/_data/vendor/Example/Other/VousTest.php delete mode 100644 tests/_data/vendor/Example/Test/LeTest.php delete mode 100644 tests/_data/vendor/Example/Test/MoiTest.php delete mode 100644 tests/_data/vendor/Example/Types/SomeType.php delete mode 100644 tests/_data/views/exception/index.phtml delete mode 100644 tests/_data/views/exception/second.phtml delete mode 100644 tests/_data/views/html5.phtml delete mode 100644 tests/_data/views/index.phtml delete mode 100644 tests/_data/views/layouts/after.phtml delete mode 100644 tests/_data/views/layouts/before.phtml delete mode 100644 tests/_data/views/layouts/test.phtml delete mode 100644 tests/_data/views/layouts/test13.phtml delete mode 100644 tests/_data/views/layouts/test4.mhtml delete mode 100644 tests/_data/views/layouts/test6.phtml delete mode 100644 tests/_data/views/partials/.gitignore delete mode 100644 tests/_data/views/partials/_partial1.phtml delete mode 100644 tests/_data/views/partials/_partial2.phtml delete mode 100644 tests/_data/views/partials/_partial3.phtml delete mode 100644 tests/_data/views/partials/header.mhtml delete mode 100644 tests/_data/views/partials/header.twig delete mode 100644 tests/_data/views/switch-case/.gitignore delete mode 100644 tests/_data/views/templates/b.volt delete mode 100644 tests/_data/views/templates/c.volt delete mode 100644 tests/_data/views/test10/children.extends.volt delete mode 100644 tests/_data/views/test10/children.volt delete mode 100644 tests/_data/views/test10/children2.volt delete mode 100644 tests/_data/views/test11/.gitignore delete mode 100644 tests/_data/views/test11/index.volt delete mode 100644 tests/_data/views/test13/index.phtml delete mode 100644 tests/_data/views/test14/loop1.volt delete mode 100644 tests/_data/views/test16/index.phtml delete mode 100644 tests/_data/views/test5/index.phtml delete mode 100644 tests/_data/views/test5/missing.phtml delete mode 100644 tests/_data/views/test5/subpartial.phtml delete mode 100644 tests/_data/views/test8/index.phtml delete mode 100644 tests/_data/views/test8/leother.phtml delete mode 100644 tests/_data/views/test8/other.phtml delete mode 100644 tests/_data/views/test9/index.phtml delete mode 100644 tests/_fixtures/dump/class_properties.txt delete mode 100644 tests/_fixtures/metadata/test_describereference.php delete mode 100644 tests/_fixtures/mvc/model/criteria_test/limit_offset_provider.php delete mode 100644 tests/_fixtures/mvc/model/query_test/data_to_delete_parsing.php delete mode 100644 tests/_fixtures/mvc/model/query_test/data_to_insert_parsing.php delete mode 100644 tests/_fixtures/mvc/model/query_test/data_to_update_parsing.php delete mode 100644 tests/_fixtures/mvc/router_test/data_to_regex_router_host_port.php delete mode 100644 tests/_fixtures/mvc/router_test/data_to_router.php delete mode 100644 tests/_fixtures/mvc/router_test/data_to_router_host_name.php delete mode 100644 tests/_fixtures/mvc/router_test/data_to_router_http.php delete mode 100644 tests/_fixtures/mvc/router_test/data_to_router_param.php delete mode 100644 tests/_fixtures/mvc/router_test/data_to_router_with_hostname.php delete mode 100644 tests/_fixtures/mvc/router_test/matching_with_converted.php delete mode 100644 tests/_fixtures/mvc/router_test/matching_with_extra_slashes.php delete mode 100644 tests/_fixtures/mvc/router_test/matching_with_got_router.php delete mode 100644 tests/_fixtures/mvc/router_test/matching_with_host_name.php delete mode 100644 tests/_fixtures/mvc/router_test/matching_with_hostname_regex.php delete mode 100644 tests/_fixtures/mvc/router_test/matching_with_path_provider.php delete mode 100644 tests/_fixtures/mvc/router_test/matching_with_regex_router_host_port.php delete mode 100644 tests/_fixtures/mvc/router_test/matching_with_router.php delete mode 100644 tests/_fixtures/mvc/router_test/matching_with_router_http.php delete mode 100644 tests/_fixtures/mvc/url_test/data_to_set_di.php delete mode 100644 tests/_fixtures/mvc/url_test/url_to_set_base_uri.php delete mode 100644 tests/_fixtures/mvc/url_test/url_to_set_server.php delete mode 100644 tests/_fixtures/mvc/url_test/url_to_set_without_di.php delete mode 100644 tests/_fixtures/mvc/url_test/url_to_set_without_di_two_param.php delete mode 100644 tests/_fixtures/mvc/view/engine/mustache.php delete mode 100644 tests/_fixtures/mvc/view/engine/twig.php delete mode 100644 tests/_fixtures/mvc/view/engine/volt/compiler_files_test/volt_compile_file_extends_multiple.php delete mode 100644 tests/_fixtures/mvc/view/engine/volt/compiler_files_test/volt_compiler_extends_block.php delete mode 100644 tests/_fixtures/mvc/view/engine/volt/compiler_files_test/volt_compiler_file.php delete mode 100644 tests/_fixtures/mvc/view_engines_test/view_built_in_function.php delete mode 100644 tests/_fixtures/mvc/view_engines_test/view_register_engines.php delete mode 100644 tests/_fixtures/mvc/view_engines_test/view_set_php_mustache.php delete mode 100644 tests/_fixtures/mvc/view_engines_test/view_set_php_mustache_partial.php delete mode 100644 tests/_fixtures/mvc/view_engines_test/view_set_php_twig.php delete mode 100644 tests/_fixtures/mvc/view_engines_test/view_set_php_twig_partial.php delete mode 100644 tests/_fixtures/query/select_parsing.php delete mode 100644 tests/_fixtures/volt/compilerExceptionsTest/volt_compile_string.php delete mode 100644 tests/_fixtures/volt/compilerExceptionsTest/volt_extends_error.php delete mode 100644 tests/_fixtures/volt/compilerExceptionsTest/volt_syntax_error.php delete mode 100644 tests/_fixtures/volt/compilerTest/test_volt_parser.php delete mode 100644 tests/_fixtures/volt/compilerTest/volt_closure_filter.php delete mode 100644 tests/_fixtures/volt/compilerTest/volt_compile_string_autoescape.php delete mode 100644 tests/_fixtures/volt/compilerTest/volt_compile_string_equals.php delete mode 100644 tests/_fixtures/volt/compilerTest/volt_single_filter.php delete mode 100644 tests/_fixtures/volt/compilerTest/volt_users_function_with_closure.php delete mode 100644 tests/_fixtures/volt/compilerTest/volt_users_single_string_function.php delete mode 100644 tests/_output/tests/annotations/.gitignore delete mode 100644 tests/_output/tests/assets/.gitignore delete mode 100644 tests/_output/tests/cache/.gitignore delete mode 100644 tests/_output/tests/image/gd/.gitignore delete mode 100644 tests/_output/tests/image/imagick/.gitignore delete mode 100644 tests/_output/tests/logs/.gitignore delete mode 100644 tests/_output/tests/session/.gitignore delete mode 100644 tests/_output/tests/stream/.gitignore create mode 100644 tests/_support/AcceptanceTester.php create mode 100644 tests/_support/CliTester.php create mode 100644 tests/_support/FunctionalTester.php create mode 100644 tests/_support/Helper/Acceptance.php create mode 100644 tests/_support/Helper/Cli.php delete mode 100644 tests/_support/Helper/CollectionTrait.php delete mode 100644 tests/_support/Helper/ConnectionCheckerTrait.php delete mode 100644 tests/_support/Helper/CookieAwareTrait.php delete mode 100644 tests/_support/Helper/Db/Adapter/Pdo/MysqlTrait.php delete mode 100644 tests/_support/Helper/Db/Adapter/Pdo/PostgresqlTrait.php delete mode 100644 tests/_support/Helper/Db/Connection/AbstractFactory.php delete mode 100644 tests/_support/Helper/Db/Connection/MysqlFactory.php delete mode 100644 tests/_support/Helper/Db/Connection/PostgresqlFactory.php delete mode 100644 tests/_support/Helper/Db/Connection/SqliteFactory.php delete mode 100644 tests/_support/Helper/Db/Connection/SqliteTranslationsFactory.php delete mode 100644 tests/_support/Helper/Dialect/MysqlTrait.php delete mode 100644 tests/_support/Helper/Dialect/PostgresqlTrait.php delete mode 100644 tests/_support/Helper/Dialect/SqliteTrait.php delete mode 100644 tests/_support/Helper/DialectTrait.php create mode 100644 tests/_support/Helper/Functional.php delete mode 100644 tests/_support/Helper/ModelTrait.php create mode 100644 tests/_support/Helper/PhalconCacheFile.php create mode 100644 tests/_support/Helper/PhalconLibmemcached.php delete mode 100644 tests/_support/Helper/ResultsetHelperTrait.php delete mode 100644 tests/_support/Helper/Unit5x.php delete mode 100644 tests/_support/Helper/ViewTrait.php delete mode 100644 tests/_support/Module/Cache/Backend/File.php delete mode 100644 tests/_support/Module/Libmemcached.php delete mode 100644 tests/_support/Module/UnitTest.php delete mode 100644 tests/_support/Module/View/Engine/Mustache.php delete mode 100644 tests/_support/Module/View/Engine/Twig.php delete mode 100644 tests/_support/Unit5xTester.php create mode 100644 tests/acceptance.suite.yml.bak create mode 100644 tests/cli.suite.yml create mode 100644 tests/cli/Cli/Console/ConstructCest.php create mode 100644 tests/cli/Cli/Console/GetDICest.php create mode 100644 tests/cli/Cli/Console/GetDefaultModuleCest.php create mode 100644 tests/cli/Cli/Console/GetEventsManagerCest.php create mode 100644 tests/cli/Cli/Console/GetModuleCest.php create mode 100644 tests/cli/Cli/Console/GetModulesCest.php create mode 100644 tests/cli/Cli/Console/HandleCest.php create mode 100644 tests/cli/Cli/Console/RegisterModulesCest.php create mode 100644 tests/cli/Cli/Console/SetArgumentCest.php create mode 100644 tests/cli/Cli/Console/SetDICest.php create mode 100644 tests/cli/Cli/Console/SetDefaultModuleCest.php create mode 100644 tests/cli/Cli/Console/SetEventsManagerCest.php create mode 100644 tests/cli/Cli/Console/UnderscoreGetCest.php create mode 100644 tests/cli/Cli/ConsoleCest.php create mode 100644 tests/cli/Cli/Dispatcher/CallActionMethodCest.php create mode 100644 tests/cli/Cli/Dispatcher/DispatchCest.php create mode 100644 tests/cli/Cli/Dispatcher/ForwardCest.php create mode 100644 tests/cli/Cli/Dispatcher/GetActionNameCest.php create mode 100644 tests/cli/Cli/Dispatcher/GetActionSuffixCest.php create mode 100644 tests/cli/Cli/Dispatcher/GetActiveMethodCest.php create mode 100644 tests/cli/Cli/Dispatcher/GetActiveTaskCest.php create mode 100644 tests/cli/Cli/Dispatcher/GetBoundModelsCest.php create mode 100644 tests/cli/Cli/Dispatcher/GetDICest.php create mode 100644 tests/cli/Cli/Dispatcher/GetDefaultNamespaceCest.php create mode 100644 tests/cli/Cli/Dispatcher/GetEventsManagerCest.php create mode 100644 tests/cli/Cli/Dispatcher/GetHandlerClassCest.php create mode 100644 tests/cli/Cli/Dispatcher/GetHandlerSuffixCest.php create mode 100644 tests/cli/Cli/Dispatcher/GetLastTaskCest.php create mode 100644 tests/cli/Cli/Dispatcher/GetModelBinderCest.php create mode 100644 tests/cli/Cli/Dispatcher/GetModuleNameCest.php create mode 100644 tests/cli/Cli/Dispatcher/GetNamespaceNameCest.php create mode 100644 tests/cli/Cli/Dispatcher/GetOptionCest.php create mode 100644 tests/cli/Cli/Dispatcher/GetOptionsCest.php create mode 100644 tests/cli/Cli/Dispatcher/GetParamCest.php create mode 100644 tests/cli/Cli/Dispatcher/GetParamsCest.php create mode 100644 tests/cli/Cli/Dispatcher/GetReturnedValueCest.php create mode 100644 tests/cli/Cli/Dispatcher/GetTaskNameCest.php create mode 100644 tests/cli/Cli/Dispatcher/GetTaskSuffixCest.php create mode 100644 tests/cli/Cli/Dispatcher/HasOptionCest.php create mode 100644 tests/cli/Cli/Dispatcher/HasParamCest.php create mode 100644 tests/cli/Cli/Dispatcher/IsFinishedCest.php create mode 100644 tests/cli/Cli/Dispatcher/SetActionNameCest.php create mode 100644 tests/cli/Cli/Dispatcher/SetActionSuffixCest.php create mode 100644 tests/cli/Cli/Dispatcher/SetDICest.php create mode 100644 tests/cli/Cli/Dispatcher/SetDefaultActionCest.php create mode 100644 tests/cli/Cli/Dispatcher/SetDefaultNamespaceCest.php create mode 100644 tests/cli/Cli/Dispatcher/SetDefaultTaskCest.php create mode 100644 tests/cli/Cli/Dispatcher/SetEventsManagerCest.php create mode 100644 tests/cli/Cli/Dispatcher/SetHandlerSuffixCest.php create mode 100644 tests/cli/Cli/Dispatcher/SetModelBinderCest.php create mode 100644 tests/cli/Cli/Dispatcher/SetModuleNameCest.php create mode 100644 tests/cli/Cli/Dispatcher/SetNamespaceNameCest.php create mode 100644 tests/cli/Cli/Dispatcher/SetOptionsCest.php create mode 100644 tests/cli/Cli/Dispatcher/SetParamCest.php create mode 100644 tests/cli/Cli/Dispatcher/SetParamsCest.php create mode 100644 tests/cli/Cli/Dispatcher/SetReturnedValueCest.php create mode 100644 tests/cli/Cli/Dispatcher/SetTaskNameCest.php create mode 100644 tests/cli/Cli/Dispatcher/SetTaskSuffixCest.php create mode 100644 tests/cli/Cli/Dispatcher/WasForwardedCest.php create mode 100644 tests/cli/Cli/DispatcherCest.php create mode 100644 tests/cli/Cli/Router/AddCest.php create mode 100644 tests/cli/Cli/Router/ConstructCest.php create mode 100644 tests/cli/Cli/Router/GetActionNameCest.php create mode 100644 tests/cli/Cli/Router/GetDICest.php create mode 100644 tests/cli/Cli/Router/GetMatchedRouteCest.php create mode 100644 tests/cli/Cli/Router/GetMatchesCest.php create mode 100644 tests/cli/Cli/Router/GetModuleNameCest.php create mode 100644 tests/cli/Cli/Router/GetParamsCest.php create mode 100644 tests/cli/Cli/Router/GetRouteByIdCest.php create mode 100644 tests/cli/Cli/Router/GetRouteByNameCest.php create mode 100644 tests/cli/Cli/Router/GetRoutesCest.php create mode 100644 tests/cli/Cli/Router/GetTaskNameCest.php create mode 100644 tests/cli/Cli/Router/HandleCest.php create mode 100644 tests/cli/Cli/Router/Route/BeforeMatchCest.php create mode 100644 tests/cli/Cli/Router/Route/CompilePatternCest.php create mode 100644 tests/cli/Cli/Router/Route/ConstructCest.php create mode 100644 tests/cli/Cli/Router/Route/ConvertCest.php create mode 100644 tests/cli/Cli/Router/Route/DelimiterCest.php create mode 100644 tests/cli/Cli/Router/Route/ExtractNamedParamsCest.php create mode 100644 tests/cli/Cli/Router/Route/GetBeforeMatchCest.php create mode 100644 tests/cli/Cli/Router/Route/GetCompiledPatternCest.php create mode 100644 tests/cli/Cli/Router/Route/GetConvertersCest.php create mode 100644 tests/cli/Cli/Router/Route/GetDelimiterCest.php create mode 100644 tests/cli/Cli/Router/Route/GetNameCest.php create mode 100644 tests/cli/Cli/Router/Route/GetPathsCest.php create mode 100644 tests/cli/Cli/Router/Route/GetPatternCest.php create mode 100644 tests/cli/Cli/Router/Route/GetReversedPathsCest.php create mode 100644 tests/cli/Cli/Router/Route/GetRouteIdCest.php create mode 100644 tests/cli/Cli/Router/Route/ReConfigureCest.php create mode 100644 tests/cli/Cli/Router/Route/ResetCest.php create mode 100644 tests/cli/Cli/Router/Route/SetNameCest.php create mode 100644 tests/cli/Cli/Router/SetDICest.php create mode 100644 tests/cli/Cli/Router/SetDefaultActionCest.php create mode 100644 tests/cli/Cli/Router/SetDefaultModuleCest.php create mode 100644 tests/cli/Cli/Router/SetDefaultTaskCest.php create mode 100644 tests/cli/Cli/Router/SetDefaultsCest.php create mode 100644 tests/cli/Cli/Router/WasMatchedCest.php create mode 100644 tests/cli/Cli/RouterCest.php create mode 100644 tests/cli/Cli/Task/ConstructCest.php create mode 100644 tests/cli/Cli/Task/GetDICest.php create mode 100644 tests/cli/Cli/Task/GetEventsManagerCest.php create mode 100644 tests/cli/Cli/Task/SetDICest.php create mode 100644 tests/cli/Cli/Task/SetEventsManagerCest.php create mode 100644 tests/cli/Cli/Task/UnderscoreGetCest.php create mode 100644 tests/cli/Cli/TaskCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/AttemptCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/ConstructCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/GetCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/GetDefaultCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/GetInternalEventsManagerCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/GetRawCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/GetServiceCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/GetServicesCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/GetSharedCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/HasCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/LoadFromPhpCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/LoadFromYamlCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/OffsetExistsCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/OffsetGetCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/OffsetSetCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/OffsetUnsetCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/RegisterCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/RemoveCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/ResetCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/SetCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/SetDefaultCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/SetInternalEventsManagerCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/SetRawCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/SetSharedCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/UnderscoreCallCest.php create mode 100644 tests/cli/Di/FactoryDefault/Cli/WasFreshInstanceCest.php rename tests/{_data/controllers/Test0Controller.php => cli/_bootstrap.php} (100%) create mode 100644 tests/functional.suite.yml.bak delete mode 100644 tests/integration/Assets/ManagerCest.php create mode 100644 tests/integration/Db/Adapter/AddColumnCest.php create mode 100644 tests/integration/Db/Adapter/AddForeignKeyCest.php create mode 100644 tests/integration/Db/Adapter/AddIndexCest.php create mode 100644 tests/integration/Db/Adapter/AddPrimaryKeyCest.php create mode 100644 tests/integration/Db/Adapter/AffectedRowsCest.php create mode 100644 tests/integration/Db/Adapter/BeginCest.php create mode 100644 tests/integration/Db/Adapter/CloseCest.php create mode 100644 tests/integration/Db/Adapter/CommitCest.php create mode 100644 tests/integration/Db/Adapter/ConnectCest.php create mode 100644 tests/integration/Db/Adapter/ConstructCest.php create mode 100644 tests/integration/Db/Adapter/CreateSavepointCest.php create mode 100644 tests/integration/Db/Adapter/CreateTableCest.php create mode 100644 tests/integration/Db/Adapter/CreateViewCest.php create mode 100644 tests/integration/Db/Adapter/DeleteCest.php create mode 100644 tests/integration/Db/Adapter/DescribeColumnsCest.php create mode 100644 tests/integration/Db/Adapter/DescribeIndexesCest.php create mode 100644 tests/integration/Db/Adapter/DescribeReferencesCest.php create mode 100644 tests/integration/Db/Adapter/DropColumnCest.php create mode 100644 tests/integration/Db/Adapter/DropForeignKeyCest.php create mode 100644 tests/integration/Db/Adapter/DropIndexCest.php create mode 100644 tests/integration/Db/Adapter/DropPrimaryKeyCest.php create mode 100644 tests/integration/Db/Adapter/DropTableCest.php create mode 100644 tests/integration/Db/Adapter/DropViewCest.php create mode 100644 tests/integration/Db/Adapter/EscapeIdentifierCest.php create mode 100644 tests/integration/Db/Adapter/EscapeStringCest.php create mode 100644 tests/integration/Db/Adapter/ExecuteCest.php create mode 100644 tests/integration/Db/Adapter/FetchAllCest.php create mode 100644 tests/integration/Db/Adapter/FetchColumnCest.php create mode 100644 tests/integration/Db/Adapter/FetchOneCest.php create mode 100644 tests/integration/Db/Adapter/ForUpdateCest.php create mode 100644 tests/integration/Db/Adapter/GetColumnDefinitionCest.php create mode 100644 tests/integration/Db/Adapter/GetColumnListCest.php create mode 100644 tests/integration/Db/Adapter/GetConnectionIdCest.php create mode 100644 tests/integration/Db/Adapter/GetDefaultIdValueCest.php create mode 100644 tests/integration/Db/Adapter/GetDefaultValueCest.php create mode 100644 tests/integration/Db/Adapter/GetDescriptorCest.php create mode 100644 tests/integration/Db/Adapter/GetDialectCest.php create mode 100644 tests/integration/Db/Adapter/GetDialectTypeCest.php create mode 100644 tests/integration/Db/Adapter/GetEventsManagerCest.php create mode 100644 tests/integration/Db/Adapter/GetInternalHandlerCest.php create mode 100644 tests/integration/Db/Adapter/GetNestedTransactionSavepointNameCest.php create mode 100644 tests/integration/Db/Adapter/GetRealSQLStatementCest.php create mode 100644 tests/integration/Db/Adapter/GetSQLBindTypesCest.php create mode 100644 tests/integration/Db/Adapter/GetSQLStatementCest.php create mode 100644 tests/integration/Db/Adapter/GetSqlVariablesCest.php create mode 100644 tests/integration/Db/Adapter/GetTypeCest.php create mode 100644 tests/integration/Db/Adapter/InsertAsDictCest.php create mode 100644 tests/integration/Db/Adapter/InsertCest.php create mode 100644 tests/integration/Db/Adapter/IsNestedTransactionsWithSavepointsCest.php create mode 100644 tests/integration/Db/Adapter/IsUnderTransactionCest.php create mode 100644 tests/integration/Db/Adapter/LastInsertIdCest.php create mode 100644 tests/integration/Db/Adapter/LimitCest.php create mode 100644 tests/integration/Db/Adapter/ListTablesCest.php create mode 100644 tests/integration/Db/Adapter/ListViewsCest.php create mode 100644 tests/integration/Db/Adapter/ModifyColumnCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Factory/LoadCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/AddColumnCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/AddForeignKeyCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/AddIndexCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/AddPrimaryKeyCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/AffectedRowsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/BeginCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/CloseCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/CommitCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/ConnectCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/ConstructCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/ConvertBoundParamsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/CreateSavepointCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/CreateTableCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/CreateViewCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/DeleteCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/DescribeColumnsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/DescribeIndexesCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/DescribeReferencesCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/DropColumnCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/DropForeignKeyCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/DropIndexCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/DropPrimaryKeyCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/DropTableCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/DropViewCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/EscapeIdentifierCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/EscapeStringCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/ExecuteCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/ExecutePreparedCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/FetchAllCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/FetchColumnCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/FetchOneCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/ForUpdateCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/GetColumnDefinitionCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/GetColumnListCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/GetConnectionIdCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/GetDefaultIdValueCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/GetDefaultValueCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/GetDescriptorCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/GetDialectCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/GetDialectTypeCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/GetErrorInfoCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/GetEventsManagerCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/GetInternalHandlerCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/GetNestedTransactionSavepointNameCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/GetRealSQLStatementCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/GetSQLBindTypesCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/GetSQLStatementCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/GetSqlVariablesCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/GetTransactionLevelCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/GetTypeCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/InsertAsDictCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/InsertCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/IsNestedTransactionsWithSavepointsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/IsUnderTransactionCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/LastInsertIdCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/LimitCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/ListTablesCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/ListViewsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/ModifyColumnCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/PrepareCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/QueryCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/ReleaseSavepointCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/RollbackCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/RollbackSavepointCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/SetDialectCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/SetEventsManagerCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/SetNestedTransactionsWithSavepointsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/SharedLockCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/SupportSequencesCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/TableExistsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/TableOptionsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/UpdateAsDictCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/UpdateCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/UseExplicitIdValueCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Mysql/ViewExistsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/MysqlCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/AddColumnCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/AddForeignKeyCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/AddIndexCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/AddPrimaryKeyCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/AffectedRowsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/BeginCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/CloseCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/CommitCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/ConnectCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/ConstructCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/ConvertBoundParamsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/CreateSavepointCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/CreateTableCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/CreateViewCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/DeleteCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/DescribeColumnsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/DescribeIndexesCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/DescribeReferencesCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/DropColumnCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/DropForeignKeyCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/DropIndexCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/DropPrimaryKeyCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/DropTableCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/DropViewCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/EscapeIdentifierCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/EscapeStringCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/ExecuteCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/ExecutePreparedCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/FetchAllCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/FetchColumnCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/FetchOneCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/ForUpdateCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/GetColumnDefinitionCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/GetColumnListCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/GetConnectionIdCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/GetDefaultIdValueCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/GetDefaultValueCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/GetDescriptorCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/GetDialectCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/GetDialectTypeCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/GetErrorInfoCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/GetEventsManagerCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/GetInternalHandlerCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/GetNestedTransactionSavepointNameCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/GetRealSQLStatementCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/GetSQLBindTypesCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/GetSQLStatementCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/GetSqlVariablesCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/GetTransactionLevelCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/GetTypeCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/InsertAsDictCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/InsertCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/IsNestedTransactionsWithSavepointsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/IsUnderTransactionCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/LastInsertIdCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/LimitCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/ListTablesCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/ListViewsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/ModifyColumnCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/PrepareCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/QueryCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/ReleaseSavepointCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/RollbackCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/RollbackSavepointCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/SetDialectCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/SetEventsManagerCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/SetNestedTransactionsWithSavepointsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/SharedLockCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/SupportSequencesCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/TableExistsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/TableOptionsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/UpdateAsDictCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/UpdateCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/UseExplicitIdValueCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Postgresql/ViewExistsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/PostgresqlCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/AddColumnCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/AddForeignKeyCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/AddIndexCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/AddPrimaryKeyCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/AffectedRowsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/BeginCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/CloseCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/CommitCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/ConnectCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/ConstructCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/ConvertBoundParamsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/CreateSavepointCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/CreateTableCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/CreateViewCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/DeleteCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/DescribeColumnsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/DescribeIndexesCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/DescribeReferencesCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/DropColumnCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/DropForeignKeyCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/DropIndexCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/DropPrimaryKeyCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/DropTableCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/DropViewCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/EscapeIdentifierCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/EscapeStringCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/ExecuteCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/ExecutePreparedCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/FetchAllCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/FetchColumnCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/FetchOneCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/ForUpdateCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/GetColumnDefinitionCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/GetColumnListCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/GetConnectionIdCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/GetDefaultIdValueCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/GetDefaultValueCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/GetDescriptorCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/GetDialectCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/GetDialectTypeCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/GetErrorInfoCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/GetEventsManagerCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/GetInternalHandlerCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/GetNestedTransactionSavepointNameCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/GetRealSQLStatementCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/GetSQLBindTypesCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/GetSQLStatementCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/GetSqlVariablesCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/GetTransactionLevelCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/GetTypeCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/InsertAsDictCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/InsertCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/IsNestedTransactionsWithSavepointsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/IsUnderTransactionCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/LastInsertIdCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/LimitCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/ListTablesCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/ListViewsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/ModifyColumnCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/PrepareCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/QueryCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/ReleaseSavepointCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/RollbackCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/RollbackSavepointCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/SetDialectCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/SetEventsManagerCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/SetNestedTransactionsWithSavepointsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/SharedLockCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/SupportSequencesCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/TableExistsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/TableOptionsCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/UpdateAsDictCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/UpdateCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/UseExplicitIdValueCest.php create mode 100644 tests/integration/Db/Adapter/Pdo/Sqlite/ViewExistsCest.php create mode 100644 tests/integration/Db/Adapter/QueryCest.php create mode 100644 tests/integration/Db/Adapter/ReleaseSavepointCest.php create mode 100644 tests/integration/Db/Adapter/RollbackCest.php create mode 100644 tests/integration/Db/Adapter/RollbackSavepointCest.php create mode 100644 tests/integration/Db/Adapter/SetDialectCest.php create mode 100644 tests/integration/Db/Adapter/SetEventsManagerCest.php create mode 100644 tests/integration/Db/Adapter/SetNestedTransactionsWithSavepointsCest.php create mode 100644 tests/integration/Db/Adapter/SharedLockCest.php create mode 100644 tests/integration/Db/Adapter/SupportSequencesCest.php create mode 100644 tests/integration/Db/Adapter/TableExistsCest.php create mode 100644 tests/integration/Db/Adapter/TableOptionsCest.php create mode 100644 tests/integration/Db/Adapter/UpdateAsDictCest.php create mode 100644 tests/integration/Db/Adapter/UpdateCest.php create mode 100644 tests/integration/Db/Adapter/UseExplicitIdValueCest.php create mode 100644 tests/integration/Db/Adapter/ViewExistsCest.php create mode 100644 tests/integration/Db/Column/ConstantsCest.php create mode 100644 tests/integration/Db/Column/ConstructCest.php create mode 100644 tests/integration/Db/Column/GetAfterPositionCest.php create mode 100644 tests/integration/Db/Column/GetBindTypeCest.php create mode 100644 tests/integration/Db/Column/GetDefaultCest.php create mode 100644 tests/integration/Db/Column/GetNameCest.php create mode 100644 tests/integration/Db/Column/GetScaleCest.php create mode 100644 tests/integration/Db/Column/GetSchemaNameCest.php create mode 100644 tests/integration/Db/Column/GetSizeCest.php create mode 100644 tests/integration/Db/Column/GetTypeCest.php create mode 100644 tests/integration/Db/Column/GetTypeReferenceCest.php create mode 100644 tests/integration/Db/Column/GetTypeValuesCest.php create mode 100644 tests/integration/Db/Column/HasDefaultCest.php create mode 100644 tests/integration/Db/Column/IsAutoIncrementCest.php create mode 100644 tests/integration/Db/Column/IsFirstCest.php create mode 100644 tests/integration/Db/Column/IsNotNullCest.php create mode 100644 tests/integration/Db/Column/IsNumericCest.php create mode 100644 tests/integration/Db/Column/IsPrimaryCest.php create mode 100644 tests/integration/Db/Column/IsUnsignedCest.php create mode 100644 tests/integration/Db/Column/SetStateCest.php create mode 100644 tests/integration/Db/ColumnCest.php create mode 100644 tests/integration/Db/DbBindCest.php create mode 100644 tests/integration/Db/DbCest.php create mode 100644 tests/integration/Db/DbDescribeCest.php create mode 100644 tests/integration/Db/DbProfilerCest.php create mode 100644 tests/integration/Db/Dialect/AddColumnCest.php create mode 100644 tests/integration/Db/Dialect/AddForeignKeyCest.php create mode 100644 tests/integration/Db/Dialect/AddIndexCest.php create mode 100644 tests/integration/Db/Dialect/AddPrimaryKeyCest.php create mode 100644 tests/integration/Db/Dialect/CreateSavepointCest.php create mode 100644 tests/integration/Db/Dialect/CreateTableCest.php create mode 100644 tests/integration/Db/Dialect/CreateViewCest.php create mode 100644 tests/integration/Db/Dialect/DescribeColumnsCest.php create mode 100644 tests/integration/Db/Dialect/DescribeIndexesCest.php create mode 100644 tests/integration/Db/Dialect/DescribeReferencesCest.php create mode 100644 tests/integration/Db/Dialect/DropColumnCest.php create mode 100644 tests/integration/Db/Dialect/DropForeignKeyCest.php create mode 100644 tests/integration/Db/Dialect/DropIndexCest.php create mode 100644 tests/integration/Db/Dialect/DropPrimaryKeyCest.php create mode 100644 tests/integration/Db/Dialect/DropTableCest.php create mode 100644 tests/integration/Db/Dialect/DropViewCest.php create mode 100644 tests/integration/Db/Dialect/EscapeCest.php create mode 100644 tests/integration/Db/Dialect/EscapeSchemaCest.php create mode 100644 tests/integration/Db/Dialect/ForUpdateCest.php create mode 100644 tests/integration/Db/Dialect/GetColumnDefinitionCest.php create mode 100644 tests/integration/Db/Dialect/GetColumnListCest.php create mode 100644 tests/integration/Db/Dialect/GetCustomFunctionsCest.php create mode 100644 tests/integration/Db/Dialect/GetSqlColumnCest.php create mode 100644 tests/integration/Db/Dialect/GetSqlExpressionCest.php create mode 100644 tests/integration/Db/Dialect/GetSqlTableCest.php create mode 100644 tests/integration/Db/Dialect/Helper/DialectBase.php create mode 100644 tests/integration/Db/Dialect/Helper/MysqlHelper.php create mode 100644 tests/integration/Db/Dialect/Helper/PostgresqlHelper.php create mode 100644 tests/integration/Db/Dialect/Helper/SqliteHelper.php create mode 100644 tests/integration/Db/Dialect/LimitCest.php create mode 100644 tests/integration/Db/Dialect/ListTablesCest.php create mode 100644 tests/integration/Db/Dialect/ModifyColumnCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/AddColumnCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/AddForeignKeyCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/AddIndexCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/AddPrimaryKeyCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/CreateSavepointCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/CreateTableCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/CreateViewCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/DescribeColumnsCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/DescribeIndexesCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/DescribeReferencesCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/DropColumnCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/DropForeignKeyCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/DropIndexCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/DropPrimaryKeyCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/DropTableCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/DropViewCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/EscapeCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/EscapeSchemaCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/ForUpdateCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/GetColumnDefinitionCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/GetColumnListCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/GetCustomFunctionsCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/GetForeignKeyChecksCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/GetSqlColumnCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/GetSqlExpressionCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/GetSqlTableCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/LimitCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/ListTablesCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/ListViewsCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/ModifyColumnCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/RegisterCustomFunctionCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/ReleaseSavepointCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/RollbackSavepointCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/SelectCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/SharedLockCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/SupportsReleaseSavepointsCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/SupportsSavepointsCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/TableExistsCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/TableOptionsCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/TruncateTableCest.php create mode 100644 tests/integration/Db/Dialect/Mysql/ViewExistsCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/AddColumnCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/AddForeignKeyCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/AddIndexCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/AddPrimaryKeyCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/CreateSavepointCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/CreateTableCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/CreateViewCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/DescribeColumnsCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/DescribeIndexesCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/DescribeReferencesCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/DropColumnCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/DropForeignKeyCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/DropIndexCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/DropPrimaryKeyCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/DropTableCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/DropViewCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/EscapeCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/EscapeSchemaCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/ForUpdateCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/GetColumnDefinitionCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/GetColumnListCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/GetCustomFunctionsCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/GetSqlColumnCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/GetSqlExpressionCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/GetSqlTableCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/LimitCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/ListTablesCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/ListViewsCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/ModifyColumnCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/RegisterCustomFunctionCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/ReleaseSavepointCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/RollbackSavepointCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/SelectCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/SharedLockCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/SupportsReleaseSavepointsCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/SupportsSavepointsCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/TableExistsCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/TableOptionsCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/TruncateTableCest.php create mode 100644 tests/integration/Db/Dialect/Postgresql/ViewExistsCest.php create mode 100644 tests/integration/Db/Dialect/PostgresqlCest.php create mode 100644 tests/integration/Db/Dialect/RegisterCustomFunctionCest.php create mode 100644 tests/integration/Db/Dialect/ReleaseSavepointCest.php create mode 100644 tests/integration/Db/Dialect/RollbackSavepointCest.php create mode 100644 tests/integration/Db/Dialect/SelectCest.php create mode 100644 tests/integration/Db/Dialect/SharedLockCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/AddColumnCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/AddForeignKeyCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/AddIndexCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/AddPrimaryKeyCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/CreateSavepointCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/CreateTableCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/CreateViewCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/DescribeColumnsCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/DescribeIndexCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/DescribeIndexesCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/DescribeReferencesCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/DropColumnCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/DropForeignKeyCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/DropIndexCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/DropPrimaryKeyCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/DropTableCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/DropViewCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/EscapeCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/EscapeSchemaCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/ForUpdateCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/GetColumnDefinitionCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/GetColumnListCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/GetCustomFunctionsCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/GetSqlColumnCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/GetSqlExpressionCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/GetSqlTableCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/LimitCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/ListIndexesSqlCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/ListTablesCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/ListViewsCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/ModifyColumnCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/RegisterCustomFunctionCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/ReleaseSavepointCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/RollbackSavepointCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/SelectCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/SharedLockCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/SupportsReleaseSavepointsCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/SupportsSavepointsCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/TableExistsCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/TableOptionsCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/TruncateTableCest.php create mode 100644 tests/integration/Db/Dialect/Sqlite/ViewExistsCest.php create mode 100644 tests/integration/Db/Dialect/SqliteCest.php create mode 100644 tests/integration/Db/Dialect/SupportsReleaseSavepointsCest.php create mode 100644 tests/integration/Db/Dialect/SupportsSavepointsCest.php create mode 100644 tests/integration/Db/Dialect/TableExistsCest.php create mode 100644 tests/integration/Db/Dialect/TableOptionsCest.php create mode 100644 tests/integration/Db/Dialect/ViewExistsCest.php create mode 100644 tests/integration/Db/Index/ConstructCest.php create mode 100644 tests/integration/Db/Index/GetColumnsCest.php create mode 100644 tests/integration/Db/Index/GetNameCest.php create mode 100644 tests/integration/Db/Index/GetTypeCest.php create mode 100644 tests/integration/Db/Index/SetStateCest.php create mode 100644 tests/integration/Db/IndexCest.php create mode 100644 tests/integration/Db/Profiler/GetLastProfileCest.php create mode 100644 tests/integration/Db/Profiler/GetNumberTotalStatementsCest.php create mode 100644 tests/integration/Db/Profiler/GetProfilesCest.php create mode 100644 tests/integration/Db/Profiler/GetTotalElapsedSecondsCest.php create mode 100644 tests/integration/Db/Profiler/Item/GetFinalTimeCest.php create mode 100644 tests/integration/Db/Profiler/Item/GetInitialTimeCest.php create mode 100644 tests/integration/Db/Profiler/Item/GetSqlBindTypesCest.php create mode 100644 tests/integration/Db/Profiler/Item/GetSqlStatementCest.php create mode 100644 tests/integration/Db/Profiler/Item/GetSqlVariablesCest.php create mode 100644 tests/integration/Db/Profiler/Item/GetTotalElapsedSecondsCest.php create mode 100644 tests/integration/Db/Profiler/Item/SetFinalTimeCest.php create mode 100644 tests/integration/Db/Profiler/Item/SetInitialTimeCest.php create mode 100644 tests/integration/Db/Profiler/Item/SetSqlBindTypesCest.php create mode 100644 tests/integration/Db/Profiler/Item/SetSqlStatementCest.php create mode 100644 tests/integration/Db/Profiler/Item/SetSqlVariablesCest.php create mode 100644 tests/integration/Db/Profiler/ResetCest.php create mode 100644 tests/integration/Db/Profiler/StartProfileCest.php create mode 100644 tests/integration/Db/Profiler/StopProfileCest.php create mode 100644 tests/integration/Db/RawValue/ConstructCest.php create mode 100644 tests/integration/Db/RawValue/GetValueCest.php create mode 100644 tests/integration/Db/RawValue/ToStringCest.php create mode 100644 tests/integration/Db/Reference/ConstructCest.php create mode 100644 tests/integration/Db/Reference/GetColumnsCest.php create mode 100644 tests/integration/Db/Reference/GetNameCest.php create mode 100644 tests/integration/Db/Reference/GetOnDeleteCest.php create mode 100644 tests/integration/Db/Reference/GetOnUpdateCest.php create mode 100644 tests/integration/Db/Reference/GetReferencedColumnsCest.php create mode 100644 tests/integration/Db/Reference/GetReferencedSchemaCest.php create mode 100644 tests/integration/Db/Reference/GetReferencedTableCest.php create mode 100644 tests/integration/Db/Reference/GetSchemaNameCest.php create mode 100644 tests/integration/Db/Reference/SetStateCest.php create mode 100644 tests/integration/Db/ReferenceCest.php create mode 100644 tests/integration/Db/Result/Pdo/ConstructCest.php create mode 100644 tests/integration/Db/Result/Pdo/DataSeekCest.php create mode 100644 tests/integration/Db/Result/Pdo/ExecuteCest.php create mode 100644 tests/integration/Db/Result/Pdo/FetchAllCest.php create mode 100644 tests/integration/Db/Result/Pdo/FetchArrayCest.php create mode 100644 tests/integration/Db/Result/Pdo/FetchCest.php create mode 100644 tests/integration/Db/Result/Pdo/GetInternalResultCest.php create mode 100644 tests/integration/Db/Result/Pdo/NumRowsCest.php create mode 100644 tests/integration/Db/Result/Pdo/SetFetchModeCest.php create mode 100644 tests/integration/Db/SetupCest.php create mode 100644 tests/integration/Forms/Element/AddFilterCest.php create mode 100644 tests/integration/Forms/Element/AddValidatorCest.php create mode 100644 tests/integration/Forms/Element/AddValidatorsCest.php create mode 100644 tests/integration/Forms/Element/AppendMessageCest.php create mode 100644 tests/integration/Forms/Element/Check/AddFilterCest.php create mode 100644 tests/integration/Forms/Element/Check/AddValidatorCest.php create mode 100644 tests/integration/Forms/Element/Check/AddValidatorsCest.php create mode 100644 tests/integration/Forms/Element/Check/AppendMessageCest.php create mode 100644 tests/integration/Forms/Element/Check/ClearCest.php create mode 100644 tests/integration/Forms/Element/Check/ConstructCest.php create mode 100644 tests/integration/Forms/Element/Check/GetAttributeCest.php create mode 100644 tests/integration/Forms/Element/Check/GetAttributesCest.php create mode 100644 tests/integration/Forms/Element/Check/GetDefaultCest.php create mode 100644 tests/integration/Forms/Element/Check/GetFiltersCest.php create mode 100644 tests/integration/Forms/Element/Check/GetFormCest.php create mode 100644 tests/integration/Forms/Element/Check/GetLabelCest.php create mode 100644 tests/integration/Forms/Element/Check/GetMessagesCest.php create mode 100644 tests/integration/Forms/Element/Check/GetNameCest.php create mode 100644 tests/integration/Forms/Element/Check/GetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/Check/GetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/Check/GetValidatorsCest.php create mode 100644 tests/integration/Forms/Element/Check/GetValueCest.php create mode 100644 tests/integration/Forms/Element/Check/HasMessagesCest.php create mode 100644 tests/integration/Forms/Element/Check/LabelCest.php create mode 100644 tests/integration/Forms/Element/Check/PrepareAttributesCest.php create mode 100644 tests/integration/Forms/Element/Check/RenderCest.php create mode 100644 tests/integration/Forms/Element/Check/SetAttributeCest.php create mode 100644 tests/integration/Forms/Element/Check/SetAttributesCest.php create mode 100644 tests/integration/Forms/Element/Check/SetDefaultCest.php create mode 100644 tests/integration/Forms/Element/Check/SetFiltersCest.php create mode 100644 tests/integration/Forms/Element/Check/SetFormCest.php create mode 100644 tests/integration/Forms/Element/Check/SetLabelCest.php create mode 100644 tests/integration/Forms/Element/Check/SetMessagesCest.php create mode 100644 tests/integration/Forms/Element/Check/SetNameCest.php create mode 100644 tests/integration/Forms/Element/Check/SetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/Check/SetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/Check/ToStringCest.php create mode 100644 tests/integration/Forms/Element/ClearCest.php create mode 100644 tests/integration/Forms/Element/ConstructCest.php create mode 100644 tests/integration/Forms/Element/Date/AddFilterCest.php create mode 100644 tests/integration/Forms/Element/Date/AddValidatorCest.php create mode 100644 tests/integration/Forms/Element/Date/AddValidatorsCest.php create mode 100644 tests/integration/Forms/Element/Date/AppendMessageCest.php create mode 100644 tests/integration/Forms/Element/Date/ClearCest.php create mode 100644 tests/integration/Forms/Element/Date/ConstructCest.php create mode 100644 tests/integration/Forms/Element/Date/GetAttributeCest.php create mode 100644 tests/integration/Forms/Element/Date/GetAttributesCest.php create mode 100644 tests/integration/Forms/Element/Date/GetDefaultCest.php create mode 100644 tests/integration/Forms/Element/Date/GetFiltersCest.php create mode 100644 tests/integration/Forms/Element/Date/GetFormCest.php create mode 100644 tests/integration/Forms/Element/Date/GetLabelCest.php create mode 100644 tests/integration/Forms/Element/Date/GetMessagesCest.php create mode 100644 tests/integration/Forms/Element/Date/GetNameCest.php create mode 100644 tests/integration/Forms/Element/Date/GetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/Date/GetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/Date/GetValidatorsCest.php create mode 100644 tests/integration/Forms/Element/Date/GetValueCest.php create mode 100644 tests/integration/Forms/Element/Date/HasMessagesCest.php create mode 100644 tests/integration/Forms/Element/Date/LabelCest.php create mode 100644 tests/integration/Forms/Element/Date/PrepareAttributesCest.php create mode 100644 tests/integration/Forms/Element/Date/RenderCest.php create mode 100644 tests/integration/Forms/Element/Date/SetAttributeCest.php create mode 100644 tests/integration/Forms/Element/Date/SetAttributesCest.php create mode 100644 tests/integration/Forms/Element/Date/SetDefaultCest.php create mode 100644 tests/integration/Forms/Element/Date/SetFiltersCest.php create mode 100644 tests/integration/Forms/Element/Date/SetFormCest.php create mode 100644 tests/integration/Forms/Element/Date/SetLabelCest.php create mode 100644 tests/integration/Forms/Element/Date/SetMessagesCest.php create mode 100644 tests/integration/Forms/Element/Date/SetNameCest.php create mode 100644 tests/integration/Forms/Element/Date/SetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/Date/SetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/Date/ToStringCest.php create mode 100644 tests/integration/Forms/Element/Email/AddFilterCest.php create mode 100644 tests/integration/Forms/Element/Email/AddValidatorCest.php create mode 100644 tests/integration/Forms/Element/Email/AddValidatorsCest.php create mode 100644 tests/integration/Forms/Element/Email/AppendMessageCest.php create mode 100644 tests/integration/Forms/Element/Email/ClearCest.php create mode 100644 tests/integration/Forms/Element/Email/ConstructCest.php create mode 100644 tests/integration/Forms/Element/Email/GetAttributeCest.php create mode 100644 tests/integration/Forms/Element/Email/GetAttributesCest.php create mode 100644 tests/integration/Forms/Element/Email/GetDefaultCest.php create mode 100644 tests/integration/Forms/Element/Email/GetFiltersCest.php create mode 100644 tests/integration/Forms/Element/Email/GetFormCest.php create mode 100644 tests/integration/Forms/Element/Email/GetLabelCest.php create mode 100644 tests/integration/Forms/Element/Email/GetMessagesCest.php create mode 100644 tests/integration/Forms/Element/Email/GetNameCest.php create mode 100644 tests/integration/Forms/Element/Email/GetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/Email/GetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/Email/GetValidatorsCest.php create mode 100644 tests/integration/Forms/Element/Email/GetValueCest.php create mode 100644 tests/integration/Forms/Element/Email/HasMessagesCest.php create mode 100644 tests/integration/Forms/Element/Email/LabelCest.php create mode 100644 tests/integration/Forms/Element/Email/PrepareAttributesCest.php create mode 100644 tests/integration/Forms/Element/Email/RenderCest.php create mode 100644 tests/integration/Forms/Element/Email/SetAttributeCest.php create mode 100644 tests/integration/Forms/Element/Email/SetAttributesCest.php create mode 100644 tests/integration/Forms/Element/Email/SetDefaultCest.php create mode 100644 tests/integration/Forms/Element/Email/SetFiltersCest.php create mode 100644 tests/integration/Forms/Element/Email/SetFormCest.php create mode 100644 tests/integration/Forms/Element/Email/SetLabelCest.php create mode 100644 tests/integration/Forms/Element/Email/SetMessagesCest.php create mode 100644 tests/integration/Forms/Element/Email/SetNameCest.php create mode 100644 tests/integration/Forms/Element/Email/SetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/Email/SetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/Email/ToStringCest.php create mode 100644 tests/integration/Forms/Element/File/AddFilterCest.php create mode 100644 tests/integration/Forms/Element/File/AddValidatorCest.php create mode 100644 tests/integration/Forms/Element/File/AddValidatorsCest.php create mode 100644 tests/integration/Forms/Element/File/AppendMessageCest.php create mode 100644 tests/integration/Forms/Element/File/ClearCest.php create mode 100644 tests/integration/Forms/Element/File/ConstructCest.php create mode 100644 tests/integration/Forms/Element/File/GetAttributeCest.php create mode 100644 tests/integration/Forms/Element/File/GetAttributesCest.php create mode 100644 tests/integration/Forms/Element/File/GetDefaultCest.php create mode 100644 tests/integration/Forms/Element/File/GetFiltersCest.php create mode 100644 tests/integration/Forms/Element/File/GetFormCest.php create mode 100644 tests/integration/Forms/Element/File/GetLabelCest.php create mode 100644 tests/integration/Forms/Element/File/GetMessagesCest.php create mode 100644 tests/integration/Forms/Element/File/GetNameCest.php create mode 100644 tests/integration/Forms/Element/File/GetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/File/GetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/File/GetValidatorsCest.php create mode 100644 tests/integration/Forms/Element/File/GetValueCest.php create mode 100644 tests/integration/Forms/Element/File/HasMessagesCest.php create mode 100644 tests/integration/Forms/Element/File/LabelCest.php create mode 100644 tests/integration/Forms/Element/File/PrepareAttributesCest.php create mode 100644 tests/integration/Forms/Element/File/RenderCest.php create mode 100644 tests/integration/Forms/Element/File/SetAttributeCest.php create mode 100644 tests/integration/Forms/Element/File/SetAttributesCest.php create mode 100644 tests/integration/Forms/Element/File/SetDefaultCest.php create mode 100644 tests/integration/Forms/Element/File/SetFiltersCest.php create mode 100644 tests/integration/Forms/Element/File/SetFormCest.php create mode 100644 tests/integration/Forms/Element/File/SetLabelCest.php create mode 100644 tests/integration/Forms/Element/File/SetMessagesCest.php create mode 100644 tests/integration/Forms/Element/File/SetNameCest.php create mode 100644 tests/integration/Forms/Element/File/SetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/File/SetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/File/ToStringCest.php create mode 100644 tests/integration/Forms/Element/GetAttributeCest.php create mode 100644 tests/integration/Forms/Element/GetAttributesCest.php create mode 100644 tests/integration/Forms/Element/GetDefaultCest.php create mode 100644 tests/integration/Forms/Element/GetFiltersCest.php create mode 100644 tests/integration/Forms/Element/GetFormCest.php create mode 100644 tests/integration/Forms/Element/GetLabelCest.php create mode 100644 tests/integration/Forms/Element/GetMessagesCest.php create mode 100644 tests/integration/Forms/Element/GetNameCest.php create mode 100644 tests/integration/Forms/Element/GetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/GetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/GetValidatorsCest.php create mode 100644 tests/integration/Forms/Element/GetValueCest.php create mode 100644 tests/integration/Forms/Element/HasMessagesCest.php create mode 100644 tests/integration/Forms/Element/Hidden/AddFilterCest.php create mode 100644 tests/integration/Forms/Element/Hidden/AddValidatorCest.php create mode 100644 tests/integration/Forms/Element/Hidden/AddValidatorsCest.php create mode 100644 tests/integration/Forms/Element/Hidden/AppendMessageCest.php create mode 100644 tests/integration/Forms/Element/Hidden/ClearCest.php create mode 100644 tests/integration/Forms/Element/Hidden/ConstructCest.php create mode 100644 tests/integration/Forms/Element/Hidden/GetAttributeCest.php create mode 100644 tests/integration/Forms/Element/Hidden/GetAttributesCest.php create mode 100644 tests/integration/Forms/Element/Hidden/GetDefaultCest.php create mode 100644 tests/integration/Forms/Element/Hidden/GetFiltersCest.php create mode 100644 tests/integration/Forms/Element/Hidden/GetFormCest.php create mode 100644 tests/integration/Forms/Element/Hidden/GetLabelCest.php create mode 100644 tests/integration/Forms/Element/Hidden/GetMessagesCest.php create mode 100644 tests/integration/Forms/Element/Hidden/GetNameCest.php create mode 100644 tests/integration/Forms/Element/Hidden/GetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/Hidden/GetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/Hidden/GetValidatorsCest.php create mode 100644 tests/integration/Forms/Element/Hidden/GetValueCest.php create mode 100644 tests/integration/Forms/Element/Hidden/HasMessagesCest.php create mode 100644 tests/integration/Forms/Element/Hidden/LabelCest.php create mode 100644 tests/integration/Forms/Element/Hidden/PrepareAttributesCest.php create mode 100644 tests/integration/Forms/Element/Hidden/RenderCest.php create mode 100644 tests/integration/Forms/Element/Hidden/SetAttributeCest.php create mode 100644 tests/integration/Forms/Element/Hidden/SetAttributesCest.php create mode 100644 tests/integration/Forms/Element/Hidden/SetDefaultCest.php create mode 100644 tests/integration/Forms/Element/Hidden/SetFiltersCest.php create mode 100644 tests/integration/Forms/Element/Hidden/SetFormCest.php create mode 100644 tests/integration/Forms/Element/Hidden/SetLabelCest.php create mode 100644 tests/integration/Forms/Element/Hidden/SetMessagesCest.php create mode 100644 tests/integration/Forms/Element/Hidden/SetNameCest.php create mode 100644 tests/integration/Forms/Element/Hidden/SetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/Hidden/SetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/Hidden/ToStringCest.php create mode 100644 tests/integration/Forms/Element/LabelCest.php create mode 100644 tests/integration/Forms/Element/Numeric/AddFilterCest.php create mode 100644 tests/integration/Forms/Element/Numeric/AddValidatorCest.php create mode 100644 tests/integration/Forms/Element/Numeric/AddValidatorsCest.php create mode 100644 tests/integration/Forms/Element/Numeric/AppendMessageCest.php create mode 100644 tests/integration/Forms/Element/Numeric/ClearCest.php create mode 100644 tests/integration/Forms/Element/Numeric/ConstructCest.php create mode 100644 tests/integration/Forms/Element/Numeric/GetAttributeCest.php create mode 100644 tests/integration/Forms/Element/Numeric/GetAttributesCest.php create mode 100644 tests/integration/Forms/Element/Numeric/GetDefaultCest.php create mode 100644 tests/integration/Forms/Element/Numeric/GetFiltersCest.php create mode 100644 tests/integration/Forms/Element/Numeric/GetFormCest.php create mode 100644 tests/integration/Forms/Element/Numeric/GetLabelCest.php create mode 100644 tests/integration/Forms/Element/Numeric/GetMessagesCest.php create mode 100644 tests/integration/Forms/Element/Numeric/GetNameCest.php create mode 100644 tests/integration/Forms/Element/Numeric/GetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/Numeric/GetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/Numeric/GetValidatorsCest.php create mode 100644 tests/integration/Forms/Element/Numeric/GetValueCest.php create mode 100644 tests/integration/Forms/Element/Numeric/HasMessagesCest.php create mode 100644 tests/integration/Forms/Element/Numeric/LabelCest.php create mode 100644 tests/integration/Forms/Element/Numeric/PrepareAttributesCest.php create mode 100644 tests/integration/Forms/Element/Numeric/RenderCest.php create mode 100644 tests/integration/Forms/Element/Numeric/SetAttributeCest.php create mode 100644 tests/integration/Forms/Element/Numeric/SetAttributesCest.php create mode 100644 tests/integration/Forms/Element/Numeric/SetDefaultCest.php create mode 100644 tests/integration/Forms/Element/Numeric/SetFiltersCest.php create mode 100644 tests/integration/Forms/Element/Numeric/SetFormCest.php create mode 100644 tests/integration/Forms/Element/Numeric/SetLabelCest.php create mode 100644 tests/integration/Forms/Element/Numeric/SetMessagesCest.php create mode 100644 tests/integration/Forms/Element/Numeric/SetNameCest.php create mode 100644 tests/integration/Forms/Element/Numeric/SetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/Numeric/SetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/Numeric/ToStringCest.php create mode 100644 tests/integration/Forms/Element/Password/AddFilterCest.php create mode 100644 tests/integration/Forms/Element/Password/AddValidatorCest.php create mode 100644 tests/integration/Forms/Element/Password/AddValidatorsCest.php create mode 100644 tests/integration/Forms/Element/Password/AppendMessageCest.php create mode 100644 tests/integration/Forms/Element/Password/ClearCest.php create mode 100644 tests/integration/Forms/Element/Password/ConstructCest.php create mode 100644 tests/integration/Forms/Element/Password/GetAttributeCest.php create mode 100644 tests/integration/Forms/Element/Password/GetAttributesCest.php create mode 100644 tests/integration/Forms/Element/Password/GetDefaultCest.php create mode 100644 tests/integration/Forms/Element/Password/GetFiltersCest.php create mode 100644 tests/integration/Forms/Element/Password/GetFormCest.php create mode 100644 tests/integration/Forms/Element/Password/GetLabelCest.php create mode 100644 tests/integration/Forms/Element/Password/GetMessagesCest.php create mode 100644 tests/integration/Forms/Element/Password/GetNameCest.php create mode 100644 tests/integration/Forms/Element/Password/GetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/Password/GetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/Password/GetValidatorsCest.php create mode 100644 tests/integration/Forms/Element/Password/GetValueCest.php create mode 100644 tests/integration/Forms/Element/Password/HasMessagesCest.php create mode 100644 tests/integration/Forms/Element/Password/LabelCest.php create mode 100644 tests/integration/Forms/Element/Password/PrepareAttributesCest.php create mode 100644 tests/integration/Forms/Element/Password/RenderCest.php create mode 100644 tests/integration/Forms/Element/Password/SetAttributeCest.php create mode 100644 tests/integration/Forms/Element/Password/SetAttributesCest.php create mode 100644 tests/integration/Forms/Element/Password/SetDefaultCest.php create mode 100644 tests/integration/Forms/Element/Password/SetFiltersCest.php create mode 100644 tests/integration/Forms/Element/Password/SetFormCest.php create mode 100644 tests/integration/Forms/Element/Password/SetLabelCest.php create mode 100644 tests/integration/Forms/Element/Password/SetMessagesCest.php create mode 100644 tests/integration/Forms/Element/Password/SetNameCest.php create mode 100644 tests/integration/Forms/Element/Password/SetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/Password/SetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/Password/ToStringCest.php create mode 100644 tests/integration/Forms/Element/PrepareAttributesCest.php create mode 100644 tests/integration/Forms/Element/Radio/AddFilterCest.php create mode 100644 tests/integration/Forms/Element/Radio/AddValidatorCest.php create mode 100644 tests/integration/Forms/Element/Radio/AddValidatorsCest.php create mode 100644 tests/integration/Forms/Element/Radio/AppendMessageCest.php create mode 100644 tests/integration/Forms/Element/Radio/ClearCest.php create mode 100644 tests/integration/Forms/Element/Radio/ConstructCest.php create mode 100644 tests/integration/Forms/Element/Radio/GetAttributeCest.php create mode 100644 tests/integration/Forms/Element/Radio/GetAttributesCest.php create mode 100644 tests/integration/Forms/Element/Radio/GetDefaultCest.php create mode 100644 tests/integration/Forms/Element/Radio/GetFiltersCest.php create mode 100644 tests/integration/Forms/Element/Radio/GetFormCest.php create mode 100644 tests/integration/Forms/Element/Radio/GetLabelCest.php create mode 100644 tests/integration/Forms/Element/Radio/GetMessagesCest.php create mode 100644 tests/integration/Forms/Element/Radio/GetNameCest.php create mode 100644 tests/integration/Forms/Element/Radio/GetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/Radio/GetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/Radio/GetValidatorsCest.php create mode 100644 tests/integration/Forms/Element/Radio/GetValueCest.php create mode 100644 tests/integration/Forms/Element/Radio/HasMessagesCest.php create mode 100644 tests/integration/Forms/Element/Radio/LabelCest.php create mode 100644 tests/integration/Forms/Element/Radio/PrepareAttributesCest.php create mode 100644 tests/integration/Forms/Element/Radio/RenderCest.php create mode 100644 tests/integration/Forms/Element/Radio/SetAttributeCest.php create mode 100644 tests/integration/Forms/Element/Radio/SetAttributesCest.php create mode 100644 tests/integration/Forms/Element/Radio/SetDefaultCest.php create mode 100644 tests/integration/Forms/Element/Radio/SetFiltersCest.php create mode 100644 tests/integration/Forms/Element/Radio/SetFormCest.php create mode 100644 tests/integration/Forms/Element/Radio/SetLabelCest.php create mode 100644 tests/integration/Forms/Element/Radio/SetMessagesCest.php create mode 100644 tests/integration/Forms/Element/Radio/SetNameCest.php create mode 100644 tests/integration/Forms/Element/Radio/SetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/Radio/SetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/Radio/ToStringCest.php create mode 100644 tests/integration/Forms/Element/RenderCest.php create mode 100644 tests/integration/Forms/Element/Select/AddFilterCest.php create mode 100644 tests/integration/Forms/Element/Select/AddOptionCest.php create mode 100644 tests/integration/Forms/Element/Select/AddValidatorCest.php create mode 100644 tests/integration/Forms/Element/Select/AddValidatorsCest.php create mode 100644 tests/integration/Forms/Element/Select/AppendMessageCest.php create mode 100644 tests/integration/Forms/Element/Select/ClearCest.php create mode 100644 tests/integration/Forms/Element/Select/ConstructCest.php create mode 100644 tests/integration/Forms/Element/Select/GetAttributeCest.php create mode 100644 tests/integration/Forms/Element/Select/GetAttributesCest.php create mode 100644 tests/integration/Forms/Element/Select/GetDefaultCest.php create mode 100644 tests/integration/Forms/Element/Select/GetFiltersCest.php create mode 100644 tests/integration/Forms/Element/Select/GetFormCest.php create mode 100644 tests/integration/Forms/Element/Select/GetLabelCest.php create mode 100644 tests/integration/Forms/Element/Select/GetMessagesCest.php create mode 100644 tests/integration/Forms/Element/Select/GetNameCest.php create mode 100644 tests/integration/Forms/Element/Select/GetOptionsCest.php create mode 100644 tests/integration/Forms/Element/Select/GetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/Select/GetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/Select/GetValidatorsCest.php create mode 100644 tests/integration/Forms/Element/Select/GetValueCest.php create mode 100644 tests/integration/Forms/Element/Select/HasMessagesCest.php create mode 100644 tests/integration/Forms/Element/Select/LabelCest.php create mode 100644 tests/integration/Forms/Element/Select/PrepareAttributesCest.php create mode 100644 tests/integration/Forms/Element/Select/RenderCest.php create mode 100644 tests/integration/Forms/Element/Select/SetAttributeCest.php create mode 100644 tests/integration/Forms/Element/Select/SetAttributesCest.php create mode 100644 tests/integration/Forms/Element/Select/SetDefaultCest.php create mode 100644 tests/integration/Forms/Element/Select/SetFiltersCest.php create mode 100644 tests/integration/Forms/Element/Select/SetFormCest.php create mode 100644 tests/integration/Forms/Element/Select/SetLabelCest.php create mode 100644 tests/integration/Forms/Element/Select/SetMessagesCest.php create mode 100644 tests/integration/Forms/Element/Select/SetNameCest.php create mode 100644 tests/integration/Forms/Element/Select/SetOptionsCest.php create mode 100644 tests/integration/Forms/Element/Select/SetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/Select/SetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/Select/ToStringCest.php create mode 100644 tests/integration/Forms/Element/SetAttributeCest.php create mode 100644 tests/integration/Forms/Element/SetAttributesCest.php create mode 100644 tests/integration/Forms/Element/SetDefaultCest.php create mode 100644 tests/integration/Forms/Element/SetFiltersCest.php create mode 100644 tests/integration/Forms/Element/SetFormCest.php create mode 100644 tests/integration/Forms/Element/SetLabelCest.php create mode 100644 tests/integration/Forms/Element/SetMessagesCest.php create mode 100644 tests/integration/Forms/Element/SetNameCest.php create mode 100644 tests/integration/Forms/Element/SetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/SetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/Submit/AddFilterCest.php create mode 100644 tests/integration/Forms/Element/Submit/AddValidatorCest.php create mode 100644 tests/integration/Forms/Element/Submit/AddValidatorsCest.php create mode 100644 tests/integration/Forms/Element/Submit/AppendMessageCest.php create mode 100644 tests/integration/Forms/Element/Submit/ClearCest.php create mode 100644 tests/integration/Forms/Element/Submit/ConstructCest.php create mode 100644 tests/integration/Forms/Element/Submit/GetAttributeCest.php create mode 100644 tests/integration/Forms/Element/Submit/GetAttributesCest.php create mode 100644 tests/integration/Forms/Element/Submit/GetDefaultCest.php create mode 100644 tests/integration/Forms/Element/Submit/GetFiltersCest.php create mode 100644 tests/integration/Forms/Element/Submit/GetFormCest.php create mode 100644 tests/integration/Forms/Element/Submit/GetLabelCest.php create mode 100644 tests/integration/Forms/Element/Submit/GetMessagesCest.php create mode 100644 tests/integration/Forms/Element/Submit/GetNameCest.php create mode 100644 tests/integration/Forms/Element/Submit/GetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/Submit/GetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/Submit/GetValidatorsCest.php create mode 100644 tests/integration/Forms/Element/Submit/GetValueCest.php create mode 100644 tests/integration/Forms/Element/Submit/HasMessagesCest.php create mode 100644 tests/integration/Forms/Element/Submit/LabelCest.php create mode 100644 tests/integration/Forms/Element/Submit/PrepareAttributesCest.php create mode 100644 tests/integration/Forms/Element/Submit/RenderCest.php create mode 100644 tests/integration/Forms/Element/Submit/SetAttributeCest.php create mode 100644 tests/integration/Forms/Element/Submit/SetAttributesCest.php create mode 100644 tests/integration/Forms/Element/Submit/SetDefaultCest.php create mode 100644 tests/integration/Forms/Element/Submit/SetFiltersCest.php create mode 100644 tests/integration/Forms/Element/Submit/SetFormCest.php create mode 100644 tests/integration/Forms/Element/Submit/SetLabelCest.php create mode 100644 tests/integration/Forms/Element/Submit/SetMessagesCest.php create mode 100644 tests/integration/Forms/Element/Submit/SetNameCest.php create mode 100644 tests/integration/Forms/Element/Submit/SetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/Submit/SetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/Submit/ToStringCest.php create mode 100644 tests/integration/Forms/Element/Text/AddFilterCest.php create mode 100644 tests/integration/Forms/Element/Text/AddValidatorCest.php create mode 100644 tests/integration/Forms/Element/Text/AddValidatorsCest.php create mode 100644 tests/integration/Forms/Element/Text/AppendMessageCest.php create mode 100644 tests/integration/Forms/Element/Text/ClearCest.php create mode 100644 tests/integration/Forms/Element/Text/ConstructCest.php create mode 100644 tests/integration/Forms/Element/Text/GetAttributeCest.php create mode 100644 tests/integration/Forms/Element/Text/GetAttributesCest.php create mode 100644 tests/integration/Forms/Element/Text/GetDefaultCest.php create mode 100644 tests/integration/Forms/Element/Text/GetFiltersCest.php create mode 100644 tests/integration/Forms/Element/Text/GetFormCest.php create mode 100644 tests/integration/Forms/Element/Text/GetLabelCest.php create mode 100644 tests/integration/Forms/Element/Text/GetMessagesCest.php create mode 100644 tests/integration/Forms/Element/Text/GetNameCest.php create mode 100644 tests/integration/Forms/Element/Text/GetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/Text/GetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/Text/GetValidatorsCest.php create mode 100644 tests/integration/Forms/Element/Text/GetValueCest.php create mode 100644 tests/integration/Forms/Element/Text/HasMessagesCest.php create mode 100644 tests/integration/Forms/Element/Text/LabelCest.php create mode 100644 tests/integration/Forms/Element/Text/PrepareAttributesCest.php create mode 100644 tests/integration/Forms/Element/Text/RenderCest.php create mode 100644 tests/integration/Forms/Element/Text/SetAttributeCest.php create mode 100644 tests/integration/Forms/Element/Text/SetAttributesCest.php create mode 100644 tests/integration/Forms/Element/Text/SetDefaultCest.php create mode 100644 tests/integration/Forms/Element/Text/SetFiltersCest.php create mode 100644 tests/integration/Forms/Element/Text/SetFormCest.php create mode 100644 tests/integration/Forms/Element/Text/SetLabelCest.php create mode 100644 tests/integration/Forms/Element/Text/SetMessagesCest.php create mode 100644 tests/integration/Forms/Element/Text/SetNameCest.php create mode 100644 tests/integration/Forms/Element/Text/SetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/Text/SetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/Text/ToStringCest.php create mode 100644 tests/integration/Forms/Element/TextArea/AddFilterCest.php create mode 100644 tests/integration/Forms/Element/TextArea/AddValidatorCest.php create mode 100644 tests/integration/Forms/Element/TextArea/AddValidatorsCest.php create mode 100644 tests/integration/Forms/Element/TextArea/AppendMessageCest.php create mode 100644 tests/integration/Forms/Element/TextArea/ClearCest.php create mode 100644 tests/integration/Forms/Element/TextArea/ConstructCest.php create mode 100644 tests/integration/Forms/Element/TextArea/GetAttributeCest.php create mode 100644 tests/integration/Forms/Element/TextArea/GetAttributesCest.php create mode 100644 tests/integration/Forms/Element/TextArea/GetDefaultCest.php create mode 100644 tests/integration/Forms/Element/TextArea/GetFiltersCest.php create mode 100644 tests/integration/Forms/Element/TextArea/GetFormCest.php create mode 100644 tests/integration/Forms/Element/TextArea/GetLabelCest.php create mode 100644 tests/integration/Forms/Element/TextArea/GetMessagesCest.php create mode 100644 tests/integration/Forms/Element/TextArea/GetNameCest.php create mode 100644 tests/integration/Forms/Element/TextArea/GetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/TextArea/GetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/TextArea/GetValidatorsCest.php create mode 100644 tests/integration/Forms/Element/TextArea/GetValueCest.php create mode 100644 tests/integration/Forms/Element/TextArea/HasMessagesCest.php create mode 100644 tests/integration/Forms/Element/TextArea/LabelCest.php create mode 100644 tests/integration/Forms/Element/TextArea/PrepareAttributesCest.php create mode 100644 tests/integration/Forms/Element/TextArea/RenderCest.php create mode 100644 tests/integration/Forms/Element/TextArea/SetAttributeCest.php create mode 100644 tests/integration/Forms/Element/TextArea/SetAttributesCest.php create mode 100644 tests/integration/Forms/Element/TextArea/SetDefaultCest.php create mode 100644 tests/integration/Forms/Element/TextArea/SetFiltersCest.php create mode 100644 tests/integration/Forms/Element/TextArea/SetFormCest.php create mode 100644 tests/integration/Forms/Element/TextArea/SetLabelCest.php create mode 100644 tests/integration/Forms/Element/TextArea/SetMessagesCest.php create mode 100644 tests/integration/Forms/Element/TextArea/SetNameCest.php create mode 100644 tests/integration/Forms/Element/TextArea/SetUserOptionCest.php create mode 100644 tests/integration/Forms/Element/TextArea/SetUserOptionsCest.php create mode 100644 tests/integration/Forms/Element/TextArea/ToStringCest.php create mode 100644 tests/integration/Forms/Element/TextCest.php create mode 100644 tests/integration/Forms/Element/ToStringCest.php create mode 100644 tests/integration/Forms/Form/AddCest.php create mode 100644 tests/integration/Forms/Form/BindCest.php create mode 100644 tests/integration/Forms/Form/ClearCest.php create mode 100644 tests/integration/Forms/Form/ConstructCest.php create mode 100644 tests/integration/Forms/Form/CountCest.php create mode 100644 tests/integration/Forms/Form/CurrentCest.php create mode 100644 tests/integration/Forms/Form/GetActionCest.php create mode 100644 tests/integration/Forms/Form/GetCest.php create mode 100644 tests/integration/Forms/Form/GetDICest.php create mode 100644 tests/integration/Forms/Form/GetElementsCest.php create mode 100644 tests/integration/Forms/Form/GetEntityCest.php create mode 100644 tests/integration/Forms/Form/GetEventsManagerCest.php create mode 100644 tests/integration/Forms/Form/GetLabelCest.php create mode 100644 tests/integration/Forms/Form/GetMessagesCest.php create mode 100644 tests/integration/Forms/Form/GetMessagesForCest.php create mode 100644 tests/integration/Forms/Form/GetUserOptionCest.php create mode 100644 tests/integration/Forms/Form/GetUserOptionsCest.php create mode 100644 tests/integration/Forms/Form/GetValidationCest.php create mode 100644 tests/integration/Forms/Form/GetValueCest.php create mode 100644 tests/integration/Forms/Form/HasCest.php create mode 100644 tests/integration/Forms/Form/HasMessagesForCest.php create mode 100644 tests/integration/Forms/Form/IsValidCest.php create mode 100644 tests/integration/Forms/Form/KeyCest.php create mode 100644 tests/integration/Forms/Form/LabelCest.php create mode 100644 tests/integration/Forms/Form/NextCest.php create mode 100644 tests/integration/Forms/Form/RemoveCest.php create mode 100644 tests/integration/Forms/Form/RenderCest.php create mode 100644 tests/integration/Forms/Form/RewindCest.php create mode 100644 tests/integration/Forms/Form/SetActionCest.php create mode 100644 tests/integration/Forms/Form/SetDICest.php create mode 100644 tests/integration/Forms/Form/SetEntityCest.php create mode 100644 tests/integration/Forms/Form/SetEventsManagerCest.php create mode 100644 tests/integration/Forms/Form/SetUserOptionCest.php create mode 100644 tests/integration/Forms/Form/SetUserOptionsCest.php create mode 100644 tests/integration/Forms/Form/SetValidationCest.php create mode 100644 tests/integration/Forms/Form/UnderscoreGetCest.php create mode 100644 tests/integration/Forms/Form/ValidCest.php create mode 100644 tests/integration/Forms/FormElementsCest.php create mode 100644 tests/integration/Forms/FormsCest.php create mode 100644 tests/integration/Forms/Manager/CreateCest.php create mode 100644 tests/integration/Forms/Manager/GetCest.php create mode 100644 tests/integration/Forms/Manager/HasCest.php create mode 100644 tests/integration/Forms/Manager/SetCest.php create mode 100644 tests/integration/Mvc/Dispatcher/DispatcherAfterDispatchCest.php create mode 100644 tests/integration/Mvc/Dispatcher/DispatcherAfterDispatchLoopCest.php create mode 100644 tests/integration/Mvc/Dispatcher/DispatcherAfterExecuteRouteCest.php create mode 100644 tests/integration/Mvc/Dispatcher/DispatcherAfterExecuteRouteMethodCest.php create mode 100644 tests/integration/Mvc/Dispatcher/DispatcherAfterInitializeCest.php create mode 100644 tests/integration/Mvc/Dispatcher/DispatcherBeforeDispatchCest.php create mode 100644 tests/integration/Mvc/Dispatcher/DispatcherBeforeDispatchLoopCest.php create mode 100644 tests/integration/Mvc/Dispatcher/DispatcherBeforeExecuteRouteCest.php create mode 100644 tests/integration/Mvc/Dispatcher/DispatcherBeforeExecuteRouteMethodCest.php create mode 100644 tests/integration/Mvc/Dispatcher/DispatcherCest.php create mode 100644 tests/integration/Mvc/Dispatcher/DispatcherInitializeMethodCest.php create mode 100644 tests/integration/Mvc/Dispatcher/Helper/BaseDispatcher.php rename tests/{unit => integration}/Mvc/Dispatcher/Helper/DispatcherListener.php (86%) rename tests/{unit => integration}/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteExceptionController.php (76%) create mode 100644 tests/integration/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteForwardController.php rename tests/{unit => integration}/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteReturnFalseController.php (75%) create mode 100644 tests/integration/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteExceptionController.php create mode 100644 tests/integration/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteForwardController.php create mode 100644 tests/integration/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteReturnFalseController.php rename tests/{unit => integration}/Mvc/Dispatcher/Helper/DispatcherTestDefaultController.php (81%) rename tests/{unit => integration}/Mvc/Dispatcher/Helper/DispatcherTestDefaultNoNamespaceController.php (80%) create mode 100644 tests/integration/Mvc/Dispatcher/Helper/DispatcherTestDefaultSimpleController.php rename tests/{unit => integration}/Mvc/Dispatcher/Helper/DispatcherTestDefaultTwoController.php (78%) rename tests/{unit => integration}/Mvc/Dispatcher/Helper/DispatcherTestInitializeExceptionController.php (76%) create mode 100644 tests/integration/Mvc/Dispatcher/Helper/DispatcherTestInitializeForwardController.php rename tests/{unit => integration}/Mvc/Dispatcher/Helper/DispatcherTestInitializeReturnFalseController.php (75%) create mode 100644 tests/integration/Mvc/Micro/AfterBindingCest.php create mode 100644 tests/integration/Mvc/Micro/AfterCest.php create mode 100644 tests/integration/Mvc/Micro/BeforeCest.php create mode 100644 tests/integration/Mvc/Micro/Collection/DeleteCest.php create mode 100644 tests/integration/Mvc/Micro/Collection/GetCest.php create mode 100644 tests/integration/Mvc/Micro/Collection/GetHandlerCest.php create mode 100644 tests/integration/Mvc/Micro/Collection/GetHandlersCest.php create mode 100644 tests/integration/Mvc/Micro/Collection/GetPrefixCest.php create mode 100644 tests/integration/Mvc/Micro/Collection/HeadCest.php create mode 100644 tests/integration/Mvc/Micro/Collection/IsLazyCest.php create mode 100644 tests/integration/Mvc/Micro/Collection/MapCest.php create mode 100644 tests/integration/Mvc/Micro/Collection/MapViaCest.php create mode 100644 tests/integration/Mvc/Micro/Collection/OptionsCest.php create mode 100644 tests/integration/Mvc/Micro/Collection/PatchCest.php create mode 100644 tests/integration/Mvc/Micro/Collection/PostCest.php create mode 100644 tests/integration/Mvc/Micro/Collection/PutCest.php create mode 100644 tests/integration/Mvc/Micro/Collection/SetHandlerCest.php create mode 100644 tests/integration/Mvc/Micro/Collection/SetLazyCest.php create mode 100644 tests/integration/Mvc/Micro/Collection/SetPrefixCest.php create mode 100644 tests/integration/Mvc/Micro/ConstructCest.php create mode 100644 tests/integration/Mvc/Micro/DeleteCest.php create mode 100644 tests/integration/Mvc/Micro/ErrorCest.php create mode 100644 tests/integration/Mvc/Micro/FinishCest.php create mode 100644 tests/integration/Mvc/Micro/GetActiveHandlerCest.php create mode 100644 tests/integration/Mvc/Micro/GetBoundModelsCest.php create mode 100644 tests/integration/Mvc/Micro/GetCest.php create mode 100644 tests/integration/Mvc/Micro/GetDICest.php create mode 100644 tests/integration/Mvc/Micro/GetEventsManagerCest.php create mode 100644 tests/integration/Mvc/Micro/GetHandlersCest.php create mode 100644 tests/integration/Mvc/Micro/GetModelBinderCest.php create mode 100644 tests/integration/Mvc/Micro/GetReturnedValueCest.php create mode 100644 tests/integration/Mvc/Micro/GetRouterCest.php create mode 100644 tests/integration/Mvc/Micro/GetServiceCest.php create mode 100644 tests/integration/Mvc/Micro/GetSharedServiceCest.php create mode 100644 tests/integration/Mvc/Micro/HandleCest.php create mode 100644 tests/integration/Mvc/Micro/HasServiceCest.php create mode 100644 tests/integration/Mvc/Micro/HeadCest.php create mode 100644 tests/integration/Mvc/Micro/LazyLoader/CallMethodCest.php create mode 100644 tests/integration/Mvc/Micro/LazyLoader/ConstructCest.php create mode 100644 tests/integration/Mvc/Micro/LazyLoader/GetDefinitionCest.php create mode 100644 tests/integration/Mvc/Micro/LazyLoader/UnderscoreCallCest.php create mode 100644 tests/integration/Mvc/Micro/MapCest.php create mode 100644 tests/integration/Mvc/Micro/MicroMvcCollectionsCest.php create mode 100644 tests/integration/Mvc/Micro/MountCest.php create mode 100644 tests/integration/Mvc/Micro/NotFoundCest.php create mode 100644 tests/integration/Mvc/Micro/OffsetExistsCest.php create mode 100644 tests/integration/Mvc/Micro/OffsetGetCest.php create mode 100644 tests/integration/Mvc/Micro/OffsetSetCest.php create mode 100644 tests/integration/Mvc/Micro/OffsetUnsetCest.php create mode 100644 tests/integration/Mvc/Micro/OptionsCest.php create mode 100644 tests/integration/Mvc/Micro/PatchCest.php create mode 100644 tests/integration/Mvc/Micro/PostCest.php create mode 100644 tests/integration/Mvc/Micro/PutCest.php create mode 100644 tests/integration/Mvc/Micro/SetActiveHandlerCest.php create mode 100644 tests/integration/Mvc/Micro/SetDICest.php create mode 100644 tests/integration/Mvc/Micro/SetEventsManagerCest.php create mode 100644 tests/integration/Mvc/Micro/SetModelBinderCest.php create mode 100644 tests/integration/Mvc/Micro/SetServiceCest.php create mode 100644 tests/integration/Mvc/Micro/StopCest.php create mode 100644 tests/integration/Mvc/Micro/UnderscoreGetCest.php create mode 100644 tests/integration/Mvc/MicroCest.php create mode 100644 tests/integration/Mvc/Model/AddBehaviorCest.php create mode 100644 tests/integration/Mvc/Model/AppendMessageCest.php create mode 100644 tests/integration/Mvc/Model/AssignCest.php create mode 100644 tests/integration/Mvc/Model/AverageCest.php create mode 100644 tests/integration/Mvc/Model/Behavior/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/Behavior/MissingMethodCest.php create mode 100644 tests/integration/Mvc/Model/Behavior/NotifyCest.php create mode 100644 tests/integration/Mvc/Model/Behavior/SoftDelete/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/Behavior/SoftDelete/MissingMethodCest.php create mode 100644 tests/integration/Mvc/Model/Behavior/SoftDelete/NotifyCest.php create mode 100644 tests/integration/Mvc/Model/Behavior/Timestampable/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/Behavior/Timestampable/MissingMethodCest.php create mode 100644 tests/integration/Mvc/Model/Behavior/Timestampable/NotifyCest.php create mode 100644 tests/integration/Mvc/Model/Binder/BindToHandlerCest.php create mode 100644 tests/integration/Mvc/Model/Binder/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/Binder/GetBoundModelsCest.php create mode 100644 tests/integration/Mvc/Model/Binder/GetCacheCest.php create mode 100644 tests/integration/Mvc/Model/Binder/GetOriginalValuesCest.php create mode 100644 tests/integration/Mvc/Model/Binder/SetCacheCest.php create mode 100644 tests/integration/Mvc/Model/CloneResultCest.php create mode 100644 tests/integration/Mvc/Model/CloneResultMapCest.php create mode 100644 tests/integration/Mvc/Model/CloneResultMapHydrateCest.php create mode 100644 tests/integration/Mvc/Model/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/CountCest.php create mode 100644 tests/integration/Mvc/Model/CreateCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/AndWhereCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/BetweenWhereCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/BindCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/BindTypesCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/CacheCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/ColumnsCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/ConditionsCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/CreateBuilderCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/DistinctCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/ExecuteCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/ForUpdateCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/GetColumnsCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/GetConditionsCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/GetDICest.php create mode 100644 tests/integration/Mvc/Model/Criteria/GetGroupByCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/GetHavingCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/GetLimitCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/GetModelNameCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/GetOrderByCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/GetParamsCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/GetWhereCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/GroupByCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/HavingCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/InWhereCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/InnerJoinCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/JoinCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/LeftJoinCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/LimitCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/NotBetweenWhereCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/NotInWhereCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/OrWhereCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/OrderByCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/RightJoinCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/SetDICest.php create mode 100644 tests/integration/Mvc/Model/Criteria/SetModelNameCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/SharedLockCest.php create mode 100644 tests/integration/Mvc/Model/Criteria/WhereCest.php create mode 100644 tests/integration/Mvc/Model/DeleteCest.php create mode 100644 tests/integration/Mvc/Model/DumpCest.php create mode 100644 tests/integration/Mvc/Model/DynamicOperationsCest.php create mode 100644 tests/integration/Mvc/Model/FindCest.php create mode 100644 tests/integration/Mvc/Model/FindFirstCest.php create mode 100644 tests/integration/Mvc/Model/FireEventCancelCest.php create mode 100644 tests/integration/Mvc/Model/FireEventCest.php create mode 100644 tests/integration/Mvc/Model/GetChangedFieldsCest.php create mode 100644 tests/integration/Mvc/Model/GetDICest.php create mode 100644 tests/integration/Mvc/Model/GetDirtyStateCest.php create mode 100644 tests/integration/Mvc/Model/GetEventsManagerCest.php create mode 100644 tests/integration/Mvc/Model/GetMessagesCest.php create mode 100644 tests/integration/Mvc/Model/GetModelsManagerCest.php create mode 100644 tests/integration/Mvc/Model/GetModelsMetaDataCest.php create mode 100644 tests/integration/Mvc/Model/GetOldSnapshotDataCest.php create mode 100644 tests/integration/Mvc/Model/GetOperationMadeCest.php create mode 100644 tests/integration/Mvc/Model/GetReadConnectionCest.php create mode 100644 tests/integration/Mvc/Model/GetReadConnectionServiceCest.php create mode 100644 tests/integration/Mvc/Model/GetRelatedCest.php create mode 100644 tests/integration/Mvc/Model/GetSchemaCest.php create mode 100644 tests/integration/Mvc/Model/GetSnapshotDataCest.php create mode 100644 tests/integration/Mvc/Model/GetSourceCest.php create mode 100644 tests/integration/Mvc/Model/GetTransactionCest.php create mode 100644 tests/integration/Mvc/Model/GetUpdatedFieldsCest.php create mode 100644 tests/integration/Mvc/Model/GetWriteConnectionCest.php create mode 100644 tests/integration/Mvc/Model/GetWriteConnectionServiceCest.php create mode 100644 tests/integration/Mvc/Model/HasChangedCest.php create mode 100644 tests/integration/Mvc/Model/HasSnapshotDataCest.php create mode 100644 tests/integration/Mvc/Model/HasUpdatedCest.php create mode 100644 tests/integration/Mvc/Model/IsRelationshipLoadedCest.php create mode 100644 tests/integration/Mvc/Model/JsonSerializeCest.php create mode 100644 tests/integration/Mvc/Model/Manager/AddBehaviorCest.php create mode 100644 tests/integration/Mvc/Model/Manager/AddBelongsToCest.php create mode 100644 tests/integration/Mvc/Model/Manager/AddHasManyCest.php create mode 100644 tests/integration/Mvc/Model/Manager/AddHasManyToManyCest.php create mode 100644 tests/integration/Mvc/Model/Manager/AddHasOneCest.php create mode 100644 tests/integration/Mvc/Model/Manager/ClearReusableObjectsCest.php create mode 100644 tests/integration/Mvc/Model/Manager/CreateBuilderCest.php create mode 100644 tests/integration/Mvc/Model/Manager/CreateQueryCest.php create mode 100644 tests/integration/Mvc/Model/Manager/DestructCest.php create mode 100644 tests/integration/Mvc/Model/Manager/ExecuteQueryCest.php create mode 100644 tests/integration/Mvc/Model/Manager/ExistsBelongsToCest.php create mode 100644 tests/integration/Mvc/Model/Manager/ExistsHasManyCest.php create mode 100644 tests/integration/Mvc/Model/Manager/ExistsHasManyToManyCest.php create mode 100644 tests/integration/Mvc/Model/Manager/ExistsHasOneCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetBelongsToCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetBelongsToRecordsCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetCustomEventsManagerCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetDICest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetEventsManagerCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetHasManyCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetHasManyRecordsCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetHasManyToManyCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetHasOneAndHasManyCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetHasOneCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetHasOneRecordsCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetLastInitializedCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetLastQueryCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetModelPrefixCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetModelSchemaCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetModelSourceCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetNamespaceAliasCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetNamespaceAliasesCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetReadConnectionCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetReadConnectionServiceCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetRelationByAliasCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetRelationRecordsCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetRelationsBetweenCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetRelationsCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetReusableRecordsCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetWriteConnectionCest.php create mode 100644 tests/integration/Mvc/Model/Manager/GetWriteConnectionServiceCest.php create mode 100644 tests/integration/Mvc/Model/Manager/InitializeCest.php create mode 100644 tests/integration/Mvc/Model/Manager/IsInitializedCest.php create mode 100644 tests/integration/Mvc/Model/Manager/IsKeepingSnapshotsCest.php create mode 100644 tests/integration/Mvc/Model/Manager/IsUsingDynamicUpdateCest.php create mode 100644 tests/integration/Mvc/Model/Manager/IsVisibleModelPropertyCest.php create mode 100644 tests/integration/Mvc/Model/Manager/KeepSnapshotsCest.php create mode 100644 tests/integration/Mvc/Model/Manager/LoadCest.php create mode 100644 tests/integration/Mvc/Model/Manager/MissingMethodCest.php create mode 100644 tests/integration/Mvc/Model/Manager/NotifyEventCest.php create mode 100644 tests/integration/Mvc/Model/Manager/RegisterNamespaceAliasCest.php create mode 100644 tests/integration/Mvc/Model/Manager/RelationsCest.php create mode 100644 tests/integration/Mvc/Model/Manager/SetConnectionServiceCest.php create mode 100644 tests/integration/Mvc/Model/Manager/SetCustomEventsManagerCest.php create mode 100644 tests/integration/Mvc/Model/Manager/SetDICest.php create mode 100644 tests/integration/Mvc/Model/Manager/SetEventsManagerCest.php create mode 100644 tests/integration/Mvc/Model/Manager/SetModelPrefixCest.php create mode 100644 tests/integration/Mvc/Model/Manager/SetModelSchemaCest.php create mode 100644 tests/integration/Mvc/Model/Manager/SetModelSourceCest.php create mode 100644 tests/integration/Mvc/Model/Manager/SetReadConnectionServiceCest.php create mode 100644 tests/integration/Mvc/Model/Manager/SetReusableRecordsCest.php create mode 100644 tests/integration/Mvc/Model/Manager/SetWriteConnectionServiceCest.php create mode 100644 tests/integration/Mvc/Model/Manager/UnderscoreGetConnectionServiceCest.php create mode 100644 tests/integration/Mvc/Model/Manager/UseDynamicUpdateCest.php create mode 100644 tests/integration/Mvc/Model/ManagerCest.php create mode 100644 tests/integration/Mvc/Model/MaximumCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/GetAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/GetAutomaticCreateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/GetAutomaticUpdateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/GetBindTypesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/GetColumnMapCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/GetDICest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/GetDataTypesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/GetDataTypesNumericCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/GetDefaultValuesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/GetEmptyStringAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/GetIdentityFieldCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/GetNonPrimaryKeyAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/GetNotNullAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/GetPrimaryKeyAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/GetReverseColumnMapCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/GetStrategyCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/HasAttributeCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/IsEmptyCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/ReadCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/ReadColumnMapCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/ReadColumnMapIndexCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/ReadMetaDataCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/ReadMetaDataIndexCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/ResetCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/SetAutomaticCreateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/SetAutomaticUpdateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/SetDICest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/SetEmptyStringAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/SetStrategyCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/WriteCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Apcu/WriteMetaDataIndexCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/ApcuCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/GetAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/GetAutomaticCreateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/GetAutomaticUpdateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/GetBindTypesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/GetColumnMapCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/GetDICest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/GetDataTypesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/GetDataTypesNumericCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/GetDefaultValuesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/GetEmptyStringAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/GetIdentityFieldCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/GetNonPrimaryKeyAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/GetNotNullAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/GetPrimaryKeyAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/GetReverseColumnMapCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/GetStrategyCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/HasAttributeCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/IsEmptyCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/ReadCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/ReadColumnMapCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/ReadColumnMapIndexCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/ReadMetaDataCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/ReadMetaDataIndexCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/ResetCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/SetAutomaticCreateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/SetAutomaticUpdateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/SetDICest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/SetEmptyStringAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/SetStrategyCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/WriteCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Files/WriteMetaDataIndexCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/FilesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/GetAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/GetAutomaticCreateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/GetAutomaticUpdateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/GetBindTypesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/GetColumnMapCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/GetDICest.php create mode 100644 tests/integration/Mvc/Model/MetaData/GetDataTypesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/GetDataTypesNumericCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/GetDefaultValuesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/GetEmptyStringAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/GetIdentityFieldCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/GetNonPrimaryKeyAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/GetNotNullAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/GetPrimaryKeyAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/GetReverseColumnMapCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/GetStrategyCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/HasAttributeCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/IsEmptyCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/GetAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/GetAutomaticCreateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/GetAutomaticUpdateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/GetBindTypesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/GetColumnMapCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/GetDICest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/GetDataTypesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/GetDataTypesNumericCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/GetDefaultValuesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/GetEmptyStringAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/GetIdentityFieldCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/GetNonPrimaryKeyAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/GetNotNullAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/GetPrimaryKeyAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/GetReverseColumnMapCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/GetStrategyCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/HasAttributeCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/IsEmptyCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/ReadCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/ReadColumnMapCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/ReadColumnMapIndexCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/ReadMetaDataCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/ReadMetaDataIndexCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/ResetCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/SetAutomaticCreateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/SetAutomaticUpdateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/SetDICest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/SetEmptyStringAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/SetStrategyCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/WriteCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Libmemcached/WriteMetaDataIndexCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/LibmemcachedCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/GetAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/GetAutomaticCreateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/GetAutomaticUpdateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/GetBindTypesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/GetColumnMapCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/GetDICest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/GetDataTypesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/GetDataTypesNumericCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/GetDefaultValuesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/GetEmptyStringAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/GetIdentityFieldCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/GetNonPrimaryKeyAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/GetNotNullAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/GetPrimaryKeyAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/GetReverseColumnMapCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/GetStrategyCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/HasAttributeCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/IsEmptyCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/ReadCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/ReadColumnMapCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/ReadColumnMapIndexCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/ReadMetaDataCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/ReadMetaDataIndexCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/ResetCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/SetAutomaticCreateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/SetAutomaticUpdateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/SetDICest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/SetEmptyStringAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/SetStrategyCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/WriteCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Memory/WriteMetaDataIndexCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/MemoryCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/ReadCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/ReadColumnMapCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/ReadColumnMapIndexCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/ReadMetaDataCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/ReadMetaDataIndexCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/GetAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/GetAutomaticCreateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/GetAutomaticUpdateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/GetBindTypesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/GetColumnMapCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/GetDICest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/GetDataTypesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/GetDataTypesNumericCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/GetDefaultValuesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/GetEmptyStringAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/GetIdentityFieldCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/GetNonPrimaryKeyAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/GetNotNullAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/GetPrimaryKeyAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/GetReverseColumnMapCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/GetStrategyCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/HasAttributeCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/IsEmptyCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/ReadCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/ReadColumnMapCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/ReadColumnMapIndexCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/ReadMetaDataCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/ReadMetaDataIndexCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/ResetCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/SetAutomaticCreateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/SetAutomaticUpdateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/SetDICest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/SetEmptyStringAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/SetStrategyCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/WriteCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Redis/WriteMetaDataIndexCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/RedisCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/ResetCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/GetAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/GetAutomaticCreateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/GetAutomaticUpdateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/GetBindTypesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/GetColumnMapCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/GetDICest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/GetDataTypesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/GetDataTypesNumericCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/GetDefaultValuesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/GetEmptyStringAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/GetIdentityFieldCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/GetNonPrimaryKeyAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/GetNotNullAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/GetPrimaryKeyAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/GetReverseColumnMapCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/GetStrategyCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/HasAttributeCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/IsEmptyCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/ReadCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/ReadColumnMapCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/ReadColumnMapIndexCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/ReadMetaDataCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/ReadMetaDataIndexCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/ResetCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/SetAutomaticCreateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/SetAutomaticUpdateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/SetDICest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/SetEmptyStringAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/SetStrategyCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/WriteCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Session/WriteMetaDataIndexCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/SetAutomaticCreateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/SetAutomaticUpdateAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/SetDICest.php create mode 100644 tests/integration/Mvc/Model/MetaData/SetEmptyStringAttributesCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/SetStrategyCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Strategy/Annotations/GetColumnMapsCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Strategy/Annotations/GetMetaDataCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Strategy/AnnotationsCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Strategy/Introspection/GetColumnMapsCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/Strategy/Introspection/GetMetaDataCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/WriteCest.php create mode 100644 tests/integration/Mvc/Model/MetaData/WriteMetaDataIndexCest.php create mode 100644 tests/integration/Mvc/Model/MinimumCest.php create mode 100644 tests/integration/Mvc/Model/ModelsCalculationsCest.php create mode 100644 tests/integration/Mvc/Model/ModelsEventsCest.php create mode 100644 tests/integration/Mvc/Model/ModelsForeignKeysCest.php create mode 100644 tests/integration/Mvc/Model/ModelsMetadataCest.php create mode 100644 tests/integration/Mvc/Model/ModelsMetadataStrategyCest.php create mode 100644 tests/integration/Mvc/Model/ModelsQueryExecuteCest.php create mode 100644 tests/integration/Mvc/Model/ModelsRelationsCest.php create mode 100644 tests/integration/Mvc/Model/ModelsRelationsMagicCest.php create mode 100644 tests/integration/Mvc/Model/ModelsResultsetCacheCest.php create mode 100644 tests/integration/Mvc/Model/ModelsResultsetCacheStaticCest.php create mode 100644 tests/integration/Mvc/Model/ModelsResultsetCest.php create mode 100644 tests/integration/Mvc/Model/ModelsValidatorsCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/AddFromCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/AndHavingCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/AndWhereCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/AutoescapeCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/BetweenHavingCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/BetweenWhereCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/ColumnsCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/DistinctCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/ForUpdateCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/FromCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/GetColumnsCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/GetDICest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/GetDistinctCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/GetFromCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/GetGroupByCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/GetHavingCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/GetJoinsCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/GetLimitCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/GetOffsetCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/GetOrderByCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/GetPhqlCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/GetQueryCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/GetWhereCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/GroupByCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/HavingCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/InHavingCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/InWhereCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/InnerJoinCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/JoinCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/LeftJoinCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/LimitCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/NotBetweenHavingCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/NotBetweenWhereCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/NotInHavingCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/NotInWhereCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/OffsetCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/OrHavingCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/OrWhereCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/OrderByCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/RightJoinCest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/SetDICest.php create mode 100644 tests/integration/Mvc/Model/Query/Builder/WhereCest.php create mode 100644 tests/integration/Mvc/Model/Query/BuilderOrderCest.php create mode 100644 tests/integration/Mvc/Model/Query/CacheCest.php create mode 100644 tests/integration/Mvc/Model/Query/CleanCest.php create mode 100644 tests/integration/Mvc/Model/Query/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/Query/ExecuteCest.php create mode 100644 tests/integration/Mvc/Model/Query/GetBindParamsCest.php create mode 100644 tests/integration/Mvc/Model/Query/GetBindTypesCest.php create mode 100644 tests/integration/Mvc/Model/Query/GetCacheCest.php create mode 100644 tests/integration/Mvc/Model/Query/GetCacheOptionsCest.php create mode 100644 tests/integration/Mvc/Model/Query/GetDICest.php create mode 100644 tests/integration/Mvc/Model/Query/GetIntermediateCest.php create mode 100644 tests/integration/Mvc/Model/Query/GetSingleResultCest.php create mode 100644 tests/integration/Mvc/Model/Query/GetSqlCest.php create mode 100644 tests/integration/Mvc/Model/Query/GetTransactionCest.php create mode 100644 tests/integration/Mvc/Model/Query/GetTypeCest.php create mode 100644 tests/integration/Mvc/Model/Query/GetUniqueRowCest.php create mode 100644 tests/integration/Mvc/Model/Query/Lang/ParsePHQLCest.php create mode 100644 tests/integration/Mvc/Model/Query/ParseCest.php create mode 100644 tests/integration/Mvc/Model/Query/SetBindParamsCest.php create mode 100644 tests/integration/Mvc/Model/Query/SetBindTypesCest.php create mode 100644 tests/integration/Mvc/Model/Query/SetDICest.php create mode 100644 tests/integration/Mvc/Model/Query/SetIntermediateCest.php create mode 100644 tests/integration/Mvc/Model/Query/SetSharedLockCest.php create mode 100644 tests/integration/Mvc/Model/Query/SetTransactionCest.php create mode 100644 tests/integration/Mvc/Model/Query/SetTypeCest.php create mode 100644 tests/integration/Mvc/Model/Query/SetUniqueRowCest.php create mode 100644 tests/integration/Mvc/Model/Query/Status/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/Query/Status/GetMessagesCest.php create mode 100644 tests/integration/Mvc/Model/Query/Status/GetModelCest.php create mode 100644 tests/integration/Mvc/Model/Query/Status/SuccessCest.php create mode 100644 tests/integration/Mvc/Model/QueryCest.php create mode 100644 tests/integration/Mvc/Model/QueryOldCest.php create mode 100644 tests/integration/Mvc/Model/ReadAttributeCest.php create mode 100644 tests/integration/Mvc/Model/RefreshCest.php create mode 100644 tests/integration/Mvc/Model/Relation/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/Relation/GetFieldsCest.php create mode 100644 tests/integration/Mvc/Model/Relation/GetForeignKeyCest.php create mode 100644 tests/integration/Mvc/Model/Relation/GetIntermediateFieldsCest.php create mode 100644 tests/integration/Mvc/Model/Relation/GetIntermediateModelCest.php create mode 100644 tests/integration/Mvc/Model/Relation/GetIntermediateReferencedFieldsCest.php create mode 100644 tests/integration/Mvc/Model/Relation/GetOptionCest.php create mode 100644 tests/integration/Mvc/Model/Relation/GetOptionsCest.php create mode 100644 tests/integration/Mvc/Model/Relation/GetParamsCest.php create mode 100644 tests/integration/Mvc/Model/Relation/GetReferencedFieldsCest.php create mode 100644 tests/integration/Mvc/Model/Relation/GetReferencedModelCest.php create mode 100644 tests/integration/Mvc/Model/Relation/GetTypeCest.php create mode 100644 tests/integration/Mvc/Model/Relation/IsForeignKeyCest.php create mode 100644 tests/integration/Mvc/Model/Relation/IsReusableCest.php create mode 100644 tests/integration/Mvc/Model/Relation/IsThroughCest.php create mode 100644 tests/integration/Mvc/Model/Relation/SetIntermediateRelationCest.php create mode 100644 tests/integration/Mvc/Model/RelationsCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/CountCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/CurrentCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/DeleteCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/FilterCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/GetCacheCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/GetFirstCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/GetHydrateModeCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/GetLastCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/GetMessagesCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/GetTypeCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/IsFreshCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/JsonSerializeCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/KeyCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/NextCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/OffsetExistsCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/OffsetGetCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/OffsetSetCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/OffsetUnsetCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/RewindCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/SeekCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/SerializeCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/SetHydrateModeCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/SetIsFreshCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/ToArrayCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/UnserializeCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/UpdateCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Complex/ValidCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/ComplexCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/CountCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/CurrentCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/DeleteCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/FilterCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/GetCacheCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/GetFirstCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/GetHydrateModeCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/GetLastCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/GetMessagesCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/GetTypeCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/IsFreshCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/JsonSerializeCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/KeyCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/NextCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/OffsetExistsCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/OffsetGetCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/OffsetSetCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/OffsetUnsetCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/RewindCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/SeekCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/SerializeCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/SetHydrateModeCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/SetIsFreshCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/CountCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/CurrentCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/DeleteCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/FilterCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/GetCacheCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/GetFirstCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/GetHydrateModeCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/GetLastCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/GetMessagesCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/GetTypeCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/IsFreshCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/JsonSerializeCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/KeyCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/NextCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/OffsetExistsCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/OffsetGetCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/OffsetSetCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/OffsetUnsetCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/RewindCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/SeekCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/SerializeCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/SetHydrateModeCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/SetIsFreshCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/ToArrayCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/UnserializeCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/UpdateCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/Simple/ValidCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/SimpleCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/ToArrayCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/UnserializeCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/UpdateCest.php create mode 100644 tests/integration/Mvc/Model/Resultset/ValidCest.php create mode 100644 tests/integration/Mvc/Model/ResultsetClassCest.php create mode 100644 tests/integration/Mvc/Model/Row/JsonSerializeCest.php create mode 100644 tests/integration/Mvc/Model/Row/OffsetExistsCest.php create mode 100644 tests/integration/Mvc/Model/Row/OffsetGetCest.php create mode 100644 tests/integration/Mvc/Model/Row/OffsetSetCest.php create mode 100644 tests/integration/Mvc/Model/Row/OffsetUnsetCest.php create mode 100644 tests/integration/Mvc/Model/Row/ReadAttributeCest.php create mode 100644 tests/integration/Mvc/Model/Row/SetDirtyStateCest.php create mode 100644 tests/integration/Mvc/Model/Row/ToArrayCest.php create mode 100644 tests/integration/Mvc/Model/Row/WriteAttributeCest.php create mode 100644 tests/integration/Mvc/Model/SaveCest.php create mode 100644 tests/integration/Mvc/Model/SerializeCest.php create mode 100644 tests/integration/Mvc/Model/SetConnectionServiceCest.php create mode 100644 tests/integration/Mvc/Model/SetDICest.php create mode 100644 tests/integration/Mvc/Model/SetDirtyStateCest.php create mode 100644 tests/integration/Mvc/Model/SetEventsManagerCest.php create mode 100644 tests/integration/Mvc/Model/SetOldSnapshotDataCest.php create mode 100644 tests/integration/Mvc/Model/SetReadConnectionServiceCest.php create mode 100644 tests/integration/Mvc/Model/SetSnapshotDataCest.php create mode 100644 tests/integration/Mvc/Model/SetTransactionCest.php create mode 100644 tests/integration/Mvc/Model/SetWriteConnectionServiceCest.php create mode 100644 tests/integration/Mvc/Model/SetupCest.php create mode 100644 tests/integration/Mvc/Model/SkipOperationCest.php create mode 100644 tests/integration/Mvc/Model/SnapshotCest.php create mode 100644 tests/integration/Mvc/Model/SumCest.php create mode 100644 tests/integration/Mvc/Model/ToArrayCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/BeginCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/CommitCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Failed/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Failed/GetCodeCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Failed/GetFileCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Failed/GetLineCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Failed/GetMessageCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Failed/GetPreviousCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Failed/GetRecordCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Failed/GetRecordMessagesCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Failed/GetTraceAsStringCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Failed/GetTraceCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Failed/ToStringCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Failed/WakeupCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/GetConnectionCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/GetMessagesCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/IsManagedCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/IsValidCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Manager/CollectTransactionsCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Manager/CommitCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Manager/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Manager/GetCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Manager/GetDICest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Manager/GetDbServiceCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Manager/GetOrCreateTransactionCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Manager/GetRollbackPendentCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Manager/HasCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Manager/NotifyCommitCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Manager/NotifyRollbackCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Manager/RollbackCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Manager/RollbackPendentCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Manager/SetDICest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Manager/SetDbServiceCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/Manager/SetRollbackPendentCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/ManagerCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/RollbackCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/SetIsNewTransactionCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/SetRollbackOnAbortCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/SetRollbackedRecordCest.php create mode 100644 tests/integration/Mvc/Model/Transaction/SetTransactionManagerCest.php create mode 100644 tests/integration/Mvc/Model/UnderscoreCallCest.php create mode 100644 tests/integration/Mvc/Model/UnderscoreCallStaticCest.php create mode 100644 tests/integration/Mvc/Model/UnderscoreGetCest.php create mode 100644 tests/integration/Mvc/Model/UnderscoreIssetCest.php create mode 100644 tests/integration/Mvc/Model/UnderscoreSetCest.php create mode 100644 tests/integration/Mvc/Model/UnserializeCest.php create mode 100644 tests/integration/Mvc/Model/UpdateCest.php create mode 100644 tests/integration/Mvc/Model/ValidationFailed/ConstructCest.php create mode 100644 tests/integration/Mvc/Model/ValidationFailed/GetCodeCest.php create mode 100644 tests/integration/Mvc/Model/ValidationFailed/GetFileCest.php create mode 100644 tests/integration/Mvc/Model/ValidationFailed/GetLineCest.php create mode 100644 tests/integration/Mvc/Model/ValidationFailed/GetMessageCest.php create mode 100644 tests/integration/Mvc/Model/ValidationFailed/GetMessagesCest.php create mode 100644 tests/integration/Mvc/Model/ValidationFailed/GetModelCest.php create mode 100644 tests/integration/Mvc/Model/ValidationFailed/GetPreviousCest.php create mode 100644 tests/integration/Mvc/Model/ValidationFailed/GetTraceAsStringCest.php create mode 100644 tests/integration/Mvc/Model/ValidationFailed/GetTraceCest.php create mode 100644 tests/integration/Mvc/Model/ValidationFailed/ToStringCest.php create mode 100644 tests/integration/Mvc/Model/ValidationFailed/WakeupCest.php create mode 100644 tests/integration/Mvc/Model/ValidationHasFailedCest.php create mode 100644 tests/integration/Mvc/Model/WriteAttributeCest.php create mode 100644 tests/integration/Mvc/ModelCest.php create mode 100644 tests/integration/Mvc/ModelsCest.php create mode 100644 tests/integration/Mvc/Router/AnnotationsCest.php create mode 100644 tests/integration/Paginator/Adapter/GetPaginateCest.php create mode 100644 tests/integration/Paginator/Adapter/Model/ConstructCest.php create mode 100644 tests/integration/Paginator/Adapter/Model/GetLimitCest.php create mode 100644 tests/integration/Paginator/Adapter/Model/GetPaginateCest.php create mode 100644 tests/integration/Paginator/Adapter/Model/PaginateCest.php create mode 100644 tests/integration/Paginator/Adapter/Model/SetCurrentPageCest.php create mode 100644 tests/integration/Paginator/Adapter/Model/SetLimitCest.php create mode 100644 tests/integration/Paginator/Adapter/NativeArray/ConstructCest.php create mode 100644 tests/integration/Paginator/Adapter/NativeArray/GetLimitCest.php create mode 100644 tests/integration/Paginator/Adapter/NativeArray/GetPaginateCest.php create mode 100644 tests/integration/Paginator/Adapter/NativeArray/PaginateCest.php create mode 100644 tests/integration/Paginator/Adapter/NativeArray/SetCurrentPageCest.php create mode 100644 tests/integration/Paginator/Adapter/NativeArray/SetLimitCest.php create mode 100644 tests/integration/Paginator/Adapter/PaginateCest.php create mode 100644 tests/integration/Paginator/Adapter/QueryBuilder/ConstructCest.php create mode 100644 tests/integration/Paginator/Adapter/QueryBuilder/GetCurrentPageCest.php create mode 100644 tests/integration/Paginator/Adapter/QueryBuilder/GetLimitCest.php create mode 100644 tests/integration/Paginator/Adapter/QueryBuilder/GetPaginateCest.php create mode 100644 tests/integration/Paginator/Adapter/QueryBuilder/GetQueryBuilderCest.php create mode 100644 tests/integration/Paginator/Adapter/QueryBuilder/PaginateCest.php create mode 100644 tests/integration/Paginator/Adapter/QueryBuilder/SetCurrentPageCest.php create mode 100644 tests/integration/Paginator/Adapter/QueryBuilder/SetLimitCest.php create mode 100644 tests/integration/Paginator/Adapter/QueryBuilder/SetQueryBuilderCest.php create mode 100644 tests/integration/Paginator/Adapter/QueryBuilderCest.php create mode 100644 tests/integration/Paginator/Adapter/SetCurrentPageCest.php create mode 100644 tests/integration/Paginator/Adapter/SetLimitCest.php create mode 100644 tests/integration/Paginator/Factory/LoadCest.php create mode 100644 tests/integration/PaginatorCest.php create mode 100644 tests/integration/Session/Adapter/ConstructCest.php create mode 100644 tests/integration/Session/Adapter/DestroyCest.php create mode 100644 tests/integration/Session/Adapter/DestructCest.php create mode 100644 tests/integration/Session/Adapter/Files/ConstructCest.php create mode 100644 tests/integration/Session/Adapter/Files/DestroyCest.php create mode 100644 tests/integration/Session/Adapter/Files/DestructCest.php create mode 100644 tests/integration/Session/Adapter/Files/GetCest.php create mode 100644 tests/integration/Session/Adapter/Files/GetIdCest.php create mode 100644 tests/integration/Session/Adapter/Files/GetNameCest.php create mode 100644 tests/integration/Session/Adapter/Files/GetOptionsCest.php create mode 100644 tests/integration/Session/Adapter/Files/HasCest.php create mode 100644 tests/integration/Session/Adapter/Files/IsStartedCest.php create mode 100644 tests/integration/Session/Adapter/Files/RegenerateIdCest.php create mode 100644 tests/integration/Session/Adapter/Files/RemoveCest.php create mode 100644 tests/integration/Session/Adapter/Files/SetCest.php create mode 100644 tests/integration/Session/Adapter/Files/SetIdCest.php create mode 100644 tests/integration/Session/Adapter/Files/SetNameCest.php create mode 100644 tests/integration/Session/Adapter/Files/SetOptionsCest.php create mode 100644 tests/integration/Session/Adapter/Files/StartCest.php create mode 100644 tests/integration/Session/Adapter/Files/StatusCest.php create mode 100644 tests/integration/Session/Adapter/Files/UnderscoreGetCest.php create mode 100644 tests/integration/Session/Adapter/Files/UnderscoreIssetCest.php create mode 100644 tests/integration/Session/Adapter/Files/UnderscoreSetCest.php create mode 100644 tests/integration/Session/Adapter/Files/UnderscoreUnsetCest.php create mode 100644 tests/integration/Session/Adapter/FilesCest.php create mode 100644 tests/integration/Session/Adapter/GetCest.php create mode 100644 tests/integration/Session/Adapter/GetIdCest.php create mode 100644 tests/integration/Session/Adapter/GetNameCest.php create mode 100644 tests/integration/Session/Adapter/GetOptionsCest.php create mode 100644 tests/integration/Session/Adapter/HasCest.php create mode 100644 tests/integration/Session/Adapter/IsStartedCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/CloseCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/ConstructCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/DestroyCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/DestructCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/GcCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/GetCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/GetIdCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/GetLibmemcachedCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/GetLifetimeCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/GetNameCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/GetOptionsCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/HasCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/IsStartedCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/OpenCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/ReadCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/RegenerateIdCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/RemoveCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/SetCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/SetIdCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/SetNameCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/SetOptionsCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/StartCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/StatusCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/UnderscoreGetCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/UnderscoreIssetCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/UnderscoreSetCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/UnderscoreUnsetCest.php create mode 100644 tests/integration/Session/Adapter/Libmemcached/WriteCest.php create mode 100644 tests/integration/Session/Adapter/LibmemcachedCest.php create mode 100644 tests/integration/Session/Adapter/Redis/CloseCest.php create mode 100644 tests/integration/Session/Adapter/Redis/ConstructCest.php create mode 100644 tests/integration/Session/Adapter/Redis/DestroyCest.php create mode 100644 tests/integration/Session/Adapter/Redis/DestructCest.php create mode 100644 tests/integration/Session/Adapter/Redis/GcCest.php create mode 100644 tests/integration/Session/Adapter/Redis/GetCest.php create mode 100644 tests/integration/Session/Adapter/Redis/GetIdCest.php create mode 100644 tests/integration/Session/Adapter/Redis/GetLifetimeCest.php create mode 100644 tests/integration/Session/Adapter/Redis/GetNameCest.php create mode 100644 tests/integration/Session/Adapter/Redis/GetOptionsCest.php create mode 100644 tests/integration/Session/Adapter/Redis/GetRedisCest.php create mode 100644 tests/integration/Session/Adapter/Redis/HasCest.php create mode 100644 tests/integration/Session/Adapter/Redis/IsStartedCest.php create mode 100644 tests/integration/Session/Adapter/Redis/OpenCest.php create mode 100644 tests/integration/Session/Adapter/Redis/ReadCest.php create mode 100644 tests/integration/Session/Adapter/Redis/RegenerateIdCest.php create mode 100644 tests/integration/Session/Adapter/Redis/RemoveCest.php create mode 100644 tests/integration/Session/Adapter/Redis/SetCest.php create mode 100644 tests/integration/Session/Adapter/Redis/SetIdCest.php create mode 100644 tests/integration/Session/Adapter/Redis/SetNameCest.php create mode 100644 tests/integration/Session/Adapter/Redis/SetOptionsCest.php create mode 100644 tests/integration/Session/Adapter/Redis/StartCest.php create mode 100644 tests/integration/Session/Adapter/Redis/StatusCest.php create mode 100644 tests/integration/Session/Adapter/Redis/UnderscoreGetCest.php create mode 100644 tests/integration/Session/Adapter/Redis/UnderscoreIssetCest.php create mode 100644 tests/integration/Session/Adapter/Redis/UnderscoreSetCest.php create mode 100644 tests/integration/Session/Adapter/Redis/UnderscoreUnsetCest.php create mode 100644 tests/integration/Session/Adapter/Redis/WriteCest.php create mode 100644 tests/integration/Session/Adapter/RedisCest.php create mode 100644 tests/integration/Session/Adapter/RegenerateIdCest.php create mode 100644 tests/integration/Session/Adapter/RemoveCest.php create mode 100644 tests/integration/Session/Adapter/SetCest.php create mode 100644 tests/integration/Session/Adapter/SetIdCest.php create mode 100644 tests/integration/Session/Adapter/SetNameCest.php create mode 100644 tests/integration/Session/Adapter/SetOptionsCest.php create mode 100644 tests/integration/Session/Adapter/StartCest.php create mode 100644 tests/integration/Session/Adapter/StatusCest.php create mode 100644 tests/integration/Session/Adapter/UnderscoreGetCest.php create mode 100644 tests/integration/Session/Adapter/UnderscoreIssetCest.php create mode 100644 tests/integration/Session/Adapter/UnderscoreSetCest.php create mode 100644 tests/integration/Session/Adapter/UnderscoreUnsetCest.php create mode 100644 tests/integration/Session/Bag/ConstructCest.php create mode 100644 tests/integration/Session/Bag/CountCest.php create mode 100644 tests/integration/Session/Bag/DestroyCest.php create mode 100644 tests/integration/Session/Bag/GetCest.php create mode 100644 tests/integration/Session/Bag/GetDICest.php create mode 100644 tests/integration/Session/Bag/GetIteratorCest.php create mode 100644 tests/integration/Session/Bag/HasCest.php create mode 100644 tests/integration/Session/Bag/InitializeCest.php create mode 100644 tests/integration/Session/Bag/OffsetExistsCest.php create mode 100644 tests/integration/Session/Bag/OffsetGetCest.php create mode 100644 tests/integration/Session/Bag/OffsetSetCest.php create mode 100644 tests/integration/Session/Bag/OffsetUnsetCest.php create mode 100644 tests/integration/Session/Bag/RemoveCest.php create mode 100644 tests/integration/Session/Bag/SetCest.php create mode 100644 tests/integration/Session/Bag/SetDICest.php create mode 100644 tests/integration/Session/Bag/UnderscoreGetCest.php create mode 100644 tests/integration/Session/Bag/UnderscoreIssetCest.php create mode 100644 tests/integration/Session/Bag/UnderscoreSetCest.php create mode 100644 tests/integration/Session/Bag/UnderscoreUnsetCest.php create mode 100644 tests/integration/Session/BagCest.php create mode 100644 tests/integration/Session/Factory/LoadCest.php create mode 100644 tests/integration/Validation/AddCest.php create mode 100644 tests/integration/Validation/AppendMessageCest.php create mode 100644 tests/integration/Validation/BindCest.php create mode 100644 tests/integration/Validation/CombinedFieldsValidator/ConstructCest.php create mode 100644 tests/integration/Validation/CombinedFieldsValidator/GetOptionCest.php create mode 100644 tests/integration/Validation/CombinedFieldsValidator/HasOptionCest.php create mode 100644 tests/integration/Validation/CombinedFieldsValidator/SetOptionCest.php create mode 100644 tests/integration/Validation/CombinedFieldsValidator/ValidateCest.php create mode 100644 tests/integration/Validation/ConstructCest.php create mode 100644 tests/integration/Validation/GetDICest.php create mode 100644 tests/integration/Validation/GetDataCest.php create mode 100644 tests/integration/Validation/GetDefaultMessageCest.php create mode 100644 tests/integration/Validation/GetEntityCest.php create mode 100644 tests/integration/Validation/GetEventsManagerCest.php create mode 100644 tests/integration/Validation/GetFiltersCest.php create mode 100644 tests/integration/Validation/GetLabelCest.php create mode 100644 tests/integration/Validation/GetMessagesCest.php create mode 100644 tests/integration/Validation/GetValidatorsCest.php create mode 100644 tests/integration/Validation/GetValueCest.php create mode 100644 tests/integration/Validation/RuleCest.php create mode 100644 tests/integration/Validation/RulesCest.php create mode 100644 tests/integration/Validation/SetDICest.php create mode 100644 tests/integration/Validation/SetDefaultMessagesCest.php create mode 100644 tests/integration/Validation/SetEntityCest.php create mode 100644 tests/integration/Validation/SetEventsManagerCest.php create mode 100644 tests/integration/Validation/SetFiltersCest.php create mode 100644 tests/integration/Validation/SetLabelsCest.php create mode 100644 tests/integration/Validation/SetValidatorsCest.php create mode 100644 tests/integration/Validation/UnderscoreGetCest.php create mode 100644 tests/integration/Validation/ValidateCest.php create mode 100644 tests/integration/Validation/ValidationCest.php create mode 100644 tests/integration/Validation/Validator/Alnum/ConstructCest.php create mode 100644 tests/integration/Validation/Validator/Alnum/GetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Alnum/HasOptionCest.php create mode 100644 tests/integration/Validation/Validator/Alnum/SetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Alnum/ValidateCest.php create mode 100644 tests/integration/Validation/Validator/Alpha/ConstructCest.php create mode 100644 tests/integration/Validation/Validator/Alpha/GetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Alpha/HasOptionCest.php create mode 100644 tests/integration/Validation/Validator/Alpha/SetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Alpha/ValidateCest.php create mode 100644 tests/integration/Validation/Validator/Between/ConstructCest.php create mode 100644 tests/integration/Validation/Validator/Between/GetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Between/HasOptionCest.php create mode 100644 tests/integration/Validation/Validator/Between/SetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Between/ValidateCest.php create mode 100644 tests/integration/Validation/Validator/Callback/ConstructCest.php create mode 100644 tests/integration/Validation/Validator/Callback/GetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Callback/HasOptionCest.php create mode 100644 tests/integration/Validation/Validator/Callback/SetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Callback/ValidateCest.php create mode 100644 tests/integration/Validation/Validator/Confirmation/ConstructCest.php create mode 100644 tests/integration/Validation/Validator/Confirmation/GetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Confirmation/HasOptionCest.php create mode 100644 tests/integration/Validation/Validator/Confirmation/SetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Confirmation/ValidateCest.php create mode 100644 tests/integration/Validation/Validator/ConstructCest.php create mode 100644 tests/integration/Validation/Validator/CreditCard/ConstructCest.php create mode 100644 tests/integration/Validation/Validator/CreditCard/GetOptionCest.php create mode 100644 tests/integration/Validation/Validator/CreditCard/HasOptionCest.php create mode 100644 tests/integration/Validation/Validator/CreditCard/SetOptionCest.php create mode 100644 tests/integration/Validation/Validator/CreditCard/ValidateCest.php create mode 100644 tests/integration/Validation/Validator/Date/ConstructCest.php create mode 100644 tests/integration/Validation/Validator/Date/GetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Date/HasOptionCest.php create mode 100644 tests/integration/Validation/Validator/Date/SetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Date/ValidateCest.php create mode 100644 tests/integration/Validation/Validator/DateCest.php create mode 100644 tests/integration/Validation/Validator/Digit/ConstructCest.php create mode 100644 tests/integration/Validation/Validator/Digit/GetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Digit/HasOptionCest.php create mode 100644 tests/integration/Validation/Validator/Digit/SetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Digit/ValidateCest.php create mode 100644 tests/integration/Validation/Validator/DigitCest.php create mode 100644 tests/integration/Validation/Validator/Email/ConstructCest.php create mode 100644 tests/integration/Validation/Validator/Email/GetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Email/HasOptionCest.php create mode 100644 tests/integration/Validation/Validator/Email/SetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Email/ValidateCest.php create mode 100644 tests/integration/Validation/Validator/EmailCest.php create mode 100644 tests/integration/Validation/Validator/ExclusionIn/ConstructCest.php create mode 100644 tests/integration/Validation/Validator/ExclusionIn/GetOptionCest.php create mode 100644 tests/integration/Validation/Validator/ExclusionIn/HasOptionCest.php create mode 100644 tests/integration/Validation/Validator/ExclusionIn/SetOptionCest.php create mode 100644 tests/integration/Validation/Validator/ExclusionIn/ValidateCest.php create mode 100644 tests/integration/Validation/Validator/ExclusionInCest.php create mode 100644 tests/integration/Validation/Validator/File/ConstructCest.php create mode 100644 tests/integration/Validation/Validator/File/GetOptionCest.php create mode 100644 tests/integration/Validation/Validator/File/HasOptionCest.php create mode 100644 tests/integration/Validation/Validator/File/IsAllowEmptyCest.php create mode 100644 tests/integration/Validation/Validator/File/SetOptionCest.php create mode 100644 tests/integration/Validation/Validator/File/ValidateCest.php create mode 100644 tests/integration/Validation/Validator/GetOptionCest.php create mode 100644 tests/integration/Validation/Validator/HasOptionCest.php create mode 100644 tests/integration/Validation/Validator/Identical/ConstructCest.php create mode 100644 tests/integration/Validation/Validator/Identical/GetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Identical/HasOptionCest.php create mode 100644 tests/integration/Validation/Validator/Identical/SetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Identical/ValidateCest.php create mode 100644 tests/integration/Validation/Validator/IdenticalCest.php create mode 100644 tests/integration/Validation/Validator/InclusionIn/ConstructCest.php create mode 100644 tests/integration/Validation/Validator/InclusionIn/GetOptionCest.php create mode 100644 tests/integration/Validation/Validator/InclusionIn/HasOptionCest.php create mode 100644 tests/integration/Validation/Validator/InclusionIn/SetOptionCest.php create mode 100644 tests/integration/Validation/Validator/InclusionIn/ValidateCest.php create mode 100644 tests/integration/Validation/Validator/InclusionInCest.php create mode 100644 tests/integration/Validation/Validator/Numericality/ConstructCest.php create mode 100644 tests/integration/Validation/Validator/Numericality/GetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Numericality/HasOptionCest.php create mode 100644 tests/integration/Validation/Validator/Numericality/SetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Numericality/ValidateCest.php create mode 100644 tests/integration/Validation/Validator/NumericalityCest.php create mode 100644 tests/integration/Validation/Validator/PresenceOf/ConstructCest.php create mode 100644 tests/integration/Validation/Validator/PresenceOf/GetOptionCest.php create mode 100644 tests/integration/Validation/Validator/PresenceOf/HasOptionCest.php create mode 100644 tests/integration/Validation/Validator/PresenceOf/SetOptionCest.php create mode 100644 tests/integration/Validation/Validator/PresenceOf/ValidateCest.php create mode 100644 tests/integration/Validation/Validator/PresenceOfCest.php create mode 100644 tests/integration/Validation/Validator/Regex/ConstructCest.php create mode 100644 tests/integration/Validation/Validator/Regex/GetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Regex/HasOptionCest.php create mode 100644 tests/integration/Validation/Validator/Regex/SetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Regex/ValidateCest.php create mode 100644 tests/integration/Validation/Validator/RegexCest.php create mode 100644 tests/integration/Validation/Validator/SetOptionCest.php create mode 100644 tests/integration/Validation/Validator/StringLength/ConstructCest.php create mode 100644 tests/integration/Validation/Validator/StringLength/GetOptionCest.php create mode 100644 tests/integration/Validation/Validator/StringLength/HasOptionCest.php create mode 100644 tests/integration/Validation/Validator/StringLength/SetOptionCest.php create mode 100644 tests/integration/Validation/Validator/StringLength/ValidateCest.php create mode 100644 tests/integration/Validation/Validator/Uniqueness/ConstructCest.php create mode 100644 tests/integration/Validation/Validator/Uniqueness/GetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Uniqueness/HasOptionCest.php create mode 100644 tests/integration/Validation/Validator/Uniqueness/SetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Uniqueness/ValidateCest.php create mode 100644 tests/integration/Validation/Validator/UniquenessCest.php create mode 100644 tests/integration/Validation/Validator/Url/ConstructCest.php create mode 100644 tests/integration/Validation/Validator/Url/GetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Url/HasOptionCest.php create mode 100644 tests/integration/Validation/Validator/Url/SetOptionCest.php create mode 100644 tests/integration/Validation/Validator/Url/ValidateCest.php create mode 100644 tests/integration/Validation/Validator/ValidateCest.php create mode 100644 tests/syntax/tests/volt/statements/switchcase/001.diff create mode 100644 tests/syntax/tests/volt/statements/switchcase/001.exp create mode 100644 tests/syntax/tests/volt/statements/switchcase/001.php create mode 100755 tests/syntax/tests/volt/statements/switchcase/001.sh create mode 100644 tests/syntax/tests/volt/statements/switchcase/002.diff create mode 100644 tests/syntax/tests/volt/statements/switchcase/002.exp create mode 100644 tests/syntax/tests/volt/statements/switchcase/002.php create mode 100755 tests/syntax/tests/volt/statements/switchcase/002.sh create mode 100644 tests/syntax/tests/volt/statements/switchcase/003.diff create mode 100644 tests/syntax/tests/volt/statements/switchcase/003.exp create mode 100644 tests/syntax/tests/volt/statements/switchcase/003.php create mode 100755 tests/syntax/tests/volt/statements/switchcase/003.sh create mode 100644 tests/syntax/tests/volt/statements/switchcase/004.diff create mode 100644 tests/syntax/tests/volt/statements/switchcase/004.exp create mode 100644 tests/syntax/tests/volt/statements/switchcase/004.php create mode 100755 tests/syntax/tests/volt/statements/switchcase/004.sh create mode 100644 tests/syntax/tests/volt/statements/switchcase/005.diff create mode 100644 tests/syntax/tests/volt/statements/switchcase/005.exp create mode 100644 tests/syntax/tests/volt/statements/switchcase/005.php create mode 100755 tests/syntax/tests/volt/statements/switchcase/005.sh create mode 100644 tests/syntax/tests/volt/statements/switchcase/006.diff create mode 100644 tests/syntax/tests/volt/statements/switchcase/006.exp create mode 100644 tests/syntax/tests/volt/statements/switchcase/006.php create mode 100755 tests/syntax/tests/volt/statements/switchcase/006.sh create mode 100644 tests/syntax/tests/volt/statements/switchcase/007.diff create mode 100644 tests/syntax/tests/volt/statements/switchcase/007.exp create mode 100644 tests/syntax/tests/volt/statements/switchcase/007.php create mode 100755 tests/syntax/tests/volt/statements/switchcase/007.sh create mode 100644 tests/syntax/tests/volt/statements/switchcase/008.diff create mode 100644 tests/syntax/tests/volt/statements/switchcase/008.exp create mode 100644 tests/syntax/tests/volt/statements/switchcase/008.php create mode 100755 tests/syntax/tests/volt/statements/switchcase/008.sh create mode 100644 tests/syntax/tests/volt/statements/switchcase/009.diff create mode 100644 tests/syntax/tests/volt/statements/switchcase/009.exp create mode 100644 tests/syntax/tests/volt/statements/switchcase/009.php create mode 100755 tests/syntax/tests/volt/statements/switchcase/009.sh create mode 100644 tests/syntax/tests/volt/statements/switchcase/010.diff create mode 100644 tests/syntax/tests/volt/statements/switchcase/010.exp create mode 100644 tests/syntax/tests/volt/statements/switchcase/010.php create mode 100755 tests/syntax/tests/volt/statements/switchcase/010.sh create mode 100644 tests/unit/Acl/Adapter/Memory/AddInheritCest.php create mode 100644 tests/unit/Acl/Adapter/Memory/AddResourceAccessCest.php create mode 100644 tests/unit/Acl/Adapter/Memory/AddResourceCest.php create mode 100644 tests/unit/Acl/Adapter/Memory/AddRoleCest.php create mode 100644 tests/unit/Acl/Adapter/Memory/AllowCest.php create mode 100644 tests/unit/Acl/Adapter/Memory/ConstructCest.php create mode 100644 tests/unit/Acl/Adapter/Memory/DenyCest.php create mode 100644 tests/unit/Acl/Adapter/Memory/DropResourceAccessCest.php create mode 100644 tests/unit/Acl/Adapter/Memory/GetActiveAccessCest.php create mode 100644 tests/unit/Acl/Adapter/Memory/GetActiveResourceCest.php create mode 100644 tests/unit/Acl/Adapter/Memory/GetActiveRoleCest.php create mode 100644 tests/unit/Acl/Adapter/Memory/GetDefaultActionCest.php create mode 100644 tests/unit/Acl/Adapter/Memory/GetEventsManagerCest.php create mode 100644 tests/unit/Acl/Adapter/Memory/GetNoArgumentsDefaultActionCest.php create mode 100644 tests/unit/Acl/Adapter/Memory/GetResourcesCest.php create mode 100644 tests/unit/Acl/Adapter/Memory/GetRolesCest.php create mode 100644 tests/unit/Acl/Adapter/Memory/IsAllowedCest.php create mode 100644 tests/unit/Acl/Adapter/Memory/IsResourceCest.php create mode 100644 tests/unit/Acl/Adapter/Memory/IsRoleCest.php create mode 100644 tests/unit/Acl/Adapter/Memory/SetDefaultActionCest.php create mode 100644 tests/unit/Acl/Adapter/Memory/SetEventsManagerCest.php create mode 100644 tests/unit/Acl/Adapter/Memory/SetNoArgumentsDefaultActionCest.php create mode 100644 tests/unit/Acl/Adapter/MemoryCest.php delete mode 100644 tests/unit/Acl/Adapter/MemoryTest.php create mode 100644 tests/unit/Acl/ConstantsCest.php create mode 100644 tests/unit/Acl/Resource/ConstructCest.php create mode 100644 tests/unit/Acl/Resource/GetDescriptionCest.php create mode 100644 tests/unit/Acl/Resource/GetNameCest.php create mode 100644 tests/unit/Acl/Resource/ToStringCest.php delete mode 100644 tests/unit/Acl/ResourceTest.php create mode 100644 tests/unit/Acl/Role/ConstructCest.php create mode 100644 tests/unit/Acl/Role/GetDescriptionCest.php create mode 100644 tests/unit/Acl/Role/GetNameCest.php create mode 100644 tests/unit/Acl/Role/ToStringCest.php delete mode 100644 tests/unit/Acl/RoleTest.php delete mode 100644 tests/unit/Annotations/Adapter/ApcTest.php create mode 100644 tests/unit/Annotations/Adapter/Apcu/ConstructCest.php create mode 100644 tests/unit/Annotations/Adapter/Apcu/GetCest.php create mode 100644 tests/unit/Annotations/Adapter/Apcu/GetMethodCest.php create mode 100644 tests/unit/Annotations/Adapter/Apcu/GetMethodsCest.php create mode 100644 tests/unit/Annotations/Adapter/Apcu/GetPropertiesCest.php create mode 100644 tests/unit/Annotations/Adapter/Apcu/GetPropertyCest.php create mode 100644 tests/unit/Annotations/Adapter/Apcu/GetReaderCest.php create mode 100644 tests/unit/Annotations/Adapter/Apcu/ReadCest.php create mode 100644 tests/unit/Annotations/Adapter/Apcu/SetReaderCest.php create mode 100644 tests/unit/Annotations/Adapter/Apcu/WriteCest.php create mode 100644 tests/unit/Annotations/Adapter/ApcuCest.php delete mode 100644 tests/unit/Annotations/Adapter/ApcuTest.php create mode 100644 tests/unit/Annotations/Adapter/Files/ConstructCest.php create mode 100644 tests/unit/Annotations/Adapter/Files/GetCest.php create mode 100644 tests/unit/Annotations/Adapter/Files/GetMethodCest.php create mode 100644 tests/unit/Annotations/Adapter/Files/GetMethodsCest.php create mode 100644 tests/unit/Annotations/Adapter/Files/GetPropertiesCest.php create mode 100644 tests/unit/Annotations/Adapter/Files/GetPropertyCest.php create mode 100644 tests/unit/Annotations/Adapter/Files/GetReaderCest.php create mode 100644 tests/unit/Annotations/Adapter/Files/ReadCest.php create mode 100644 tests/unit/Annotations/Adapter/Files/SetReaderCest.php create mode 100644 tests/unit/Annotations/Adapter/Files/WriteCest.php create mode 100644 tests/unit/Annotations/Adapter/FilesCest.php delete mode 100644 tests/unit/Annotations/Adapter/FilesTest.php create mode 100644 tests/unit/Annotations/Adapter/Memory/GetCest.php create mode 100644 tests/unit/Annotations/Adapter/Memory/GetMethodCest.php create mode 100644 tests/unit/Annotations/Adapter/Memory/GetMethodsCest.php create mode 100644 tests/unit/Annotations/Adapter/Memory/GetPropertiesCest.php create mode 100644 tests/unit/Annotations/Adapter/Memory/GetPropertyCest.php create mode 100644 tests/unit/Annotations/Adapter/Memory/GetReaderCest.php create mode 100644 tests/unit/Annotations/Adapter/Memory/ReadCest.php create mode 100644 tests/unit/Annotations/Adapter/Memory/SetReaderCest.php create mode 100644 tests/unit/Annotations/Adapter/Memory/WriteCest.php create mode 100644 tests/unit/Annotations/Adapter/MemoryCest.php delete mode 100644 tests/unit/Annotations/Adapter/MemoryTest.php create mode 100644 tests/unit/Annotations/Annotation/ConstructCest.php create mode 100644 tests/unit/Annotations/Annotation/GetArgumentCest.php create mode 100644 tests/unit/Annotations/Annotation/GetArgumentsCest.php create mode 100644 tests/unit/Annotations/Annotation/GetExprArgumentsCest.php create mode 100644 tests/unit/Annotations/Annotation/GetExpressionCest.php create mode 100644 tests/unit/Annotations/Annotation/GetNameCest.php create mode 100644 tests/unit/Annotations/Annotation/GetNamedArgumentCest.php create mode 100644 tests/unit/Annotations/Annotation/GetNamedParameterCest.php create mode 100644 tests/unit/Annotations/Annotation/HasArgumentCest.php create mode 100644 tests/unit/Annotations/Annotation/NumberArgumentsCest.php create mode 100644 tests/unit/Annotations/Collection/ConstructCest.php create mode 100644 tests/unit/Annotations/Collection/CountCest.php create mode 100644 tests/unit/Annotations/Collection/CurrentCest.php create mode 100644 tests/unit/Annotations/Collection/GetAllCest.php create mode 100644 tests/unit/Annotations/Collection/GetAnnotationsCest.php create mode 100644 tests/unit/Annotations/Collection/GetCest.php create mode 100644 tests/unit/Annotations/Collection/HasCest.php create mode 100644 tests/unit/Annotations/Collection/KeyCest.php create mode 100644 tests/unit/Annotations/Collection/NextCest.php create mode 100644 tests/unit/Annotations/Collection/RewindCest.php create mode 100644 tests/unit/Annotations/Collection/ValidCest.php create mode 100644 tests/unit/Annotations/Factory/LoadCest.php delete mode 100644 tests/unit/Annotations/FactoryTest.php create mode 100644 tests/unit/Annotations/Reader/ParseCest.php create mode 100644 tests/unit/Annotations/Reader/ParseDocBlockCest.php create mode 100644 tests/unit/Annotations/ReaderCest.php delete mode 100644 tests/unit/Annotations/ReaderTest.php create mode 100644 tests/unit/Annotations/Reflection/ConstructCest.php create mode 100644 tests/unit/Annotations/Reflection/GetClassAnnotationsCest.php create mode 100644 tests/unit/Annotations/Reflection/GetMethodsAnnotationsCest.php create mode 100644 tests/unit/Annotations/Reflection/GetPropertiesAnnotationsCest.php create mode 100644 tests/unit/Annotations/Reflection/GetReflectionDataCest.php create mode 100644 tests/unit/Annotations/Reflection/SetStateCest.php create mode 100644 tests/unit/Annotations/ReflectionCest.php delete mode 100644 tests/unit/Annotations/ReflectionTest.php create mode 100644 tests/unit/Application/ConstructCest.php create mode 100644 tests/unit/Application/GetDICest.php create mode 100644 tests/unit/Application/GetDefaultModuleCest.php create mode 100644 tests/unit/Application/GetEventsManagerCest.php create mode 100644 tests/unit/Application/GetModuleCest.php create mode 100644 tests/unit/Application/GetModulesCest.php create mode 100644 tests/unit/Application/HandleCest.php create mode 100644 tests/unit/Application/RegisterModulesCest.php create mode 100644 tests/unit/Application/SetDICest.php create mode 100644 tests/unit/Application/SetDefaultModuleCest.php create mode 100644 tests/unit/Application/SetEventsManagerCest.php create mode 100644 tests/unit/Application/UnderscoreGetCest.php create mode 100644 tests/unit/Assets/Collection/AddCest.php create mode 100644 tests/unit/Assets/Collection/AddCssCest.php create mode 100644 tests/unit/Assets/Collection/AddFilterCest.php create mode 100644 tests/unit/Assets/Collection/AddInlineCest.php create mode 100644 tests/unit/Assets/Collection/AddInlineCssCest.php create mode 100644 tests/unit/Assets/Collection/AddInlineJsCest.php create mode 100644 tests/unit/Assets/Collection/AddJsCest.php create mode 100644 tests/unit/Assets/Collection/ConstructCest.php create mode 100644 tests/unit/Assets/Collection/CountCest.php create mode 100644 tests/unit/Assets/Collection/CurrentCest.php create mode 100644 tests/unit/Assets/Collection/GetAttributesCest.php create mode 100644 tests/unit/Assets/Collection/GetCodesCest.php create mode 100644 tests/unit/Assets/Collection/GetFiltersCest.php create mode 100644 tests/unit/Assets/Collection/GetJoinCest.php create mode 100644 tests/unit/Assets/Collection/GetLocalCest.php create mode 100644 tests/unit/Assets/Collection/GetPositionCest.php create mode 100644 tests/unit/Assets/Collection/GetPrefixCest.php create mode 100644 tests/unit/Assets/Collection/GetRealTargetPathCest.php create mode 100644 tests/unit/Assets/Collection/GetResourcesCest.php create mode 100644 tests/unit/Assets/Collection/GetSourcePathCest.php create mode 100644 tests/unit/Assets/Collection/GetTargetLocalCest.php create mode 100644 tests/unit/Assets/Collection/GetTargetPathCest.php create mode 100644 tests/unit/Assets/Collection/GetTargetUriCest.php create mode 100644 tests/unit/Assets/Collection/HasCest.php create mode 100644 tests/unit/Assets/Collection/JoinCest.php create mode 100644 tests/unit/Assets/Collection/KeyCest.php create mode 100644 tests/unit/Assets/Collection/NextCest.php create mode 100644 tests/unit/Assets/Collection/RewindCest.php create mode 100644 tests/unit/Assets/Collection/SetAttributesCest.php create mode 100644 tests/unit/Assets/Collection/SetFiltersCest.php create mode 100644 tests/unit/Assets/Collection/SetLocalCest.php create mode 100644 tests/unit/Assets/Collection/SetPrefixCest.php create mode 100644 tests/unit/Assets/Collection/SetSourcePathCest.php create mode 100644 tests/unit/Assets/Collection/SetTargetLocalCest.php create mode 100644 tests/unit/Assets/Collection/SetTargetPathCest.php create mode 100644 tests/unit/Assets/Collection/SetTargetUriCest.php create mode 100644 tests/unit/Assets/Collection/ValidCest.php create mode 100644 tests/unit/Assets/CollectionCest.php delete mode 100644 tests/unit/Assets/CollectionTest.php create mode 100644 tests/unit/Assets/Filters/CssMinCest.php delete mode 100644 tests/unit/Assets/Filters/CssMinTest.php create mode 100644 tests/unit/Assets/Filters/Cssmin/FilterCest.php create mode 100644 tests/unit/Assets/Filters/Jsmin/FilterCest.php create mode 100644 tests/unit/Assets/Filters/JsminCest.php delete mode 100644 tests/unit/Assets/Filters/JsminTest.php create mode 100644 tests/unit/Assets/Filters/None/FilterCest.php create mode 100644 tests/unit/Assets/Filters/NoneCest.php delete mode 100644 tests/unit/Assets/Filters/NoneTest.php delete mode 100644 tests/unit/Assets/Helper/TrimFilter.php delete mode 100644 tests/unit/Assets/Helper/UppercaseFilter.php create mode 100644 tests/unit/Assets/Inline/ConstructCest.php create mode 100644 tests/unit/Assets/Inline/Css/ConstructCest.php create mode 100644 tests/unit/Assets/Inline/Css/GetAttributesCest.php create mode 100644 tests/unit/Assets/Inline/Css/GetContentCest.php create mode 100644 tests/unit/Assets/Inline/Css/GetFilterCest.php create mode 100644 tests/unit/Assets/Inline/Css/GetResourceKeyCest.php create mode 100644 tests/unit/Assets/Inline/Css/GetTypeCest.php create mode 100644 tests/unit/Assets/Inline/Css/SetAttributesCest.php create mode 100644 tests/unit/Assets/Inline/Css/SetFilterCest.php create mode 100644 tests/unit/Assets/Inline/Css/SetTypeCest.php create mode 100644 tests/unit/Assets/Inline/GetAttributesCest.php create mode 100644 tests/unit/Assets/Inline/GetContentCest.php create mode 100644 tests/unit/Assets/Inline/GetFilterCest.php create mode 100644 tests/unit/Assets/Inline/GetResourceKeyCest.php create mode 100644 tests/unit/Assets/Inline/GetTypeCest.php create mode 100644 tests/unit/Assets/Inline/Js/ConstructCest.php create mode 100644 tests/unit/Assets/Inline/Js/GetAttributesCest.php create mode 100644 tests/unit/Assets/Inline/Js/GetContentCest.php create mode 100644 tests/unit/Assets/Inline/Js/GetFilterCest.php create mode 100644 tests/unit/Assets/Inline/Js/GetResourceKeyCest.php create mode 100644 tests/unit/Assets/Inline/Js/GetTypeCest.php create mode 100644 tests/unit/Assets/Inline/Js/SetAttributesCest.php create mode 100644 tests/unit/Assets/Inline/Js/SetFilterCest.php create mode 100644 tests/unit/Assets/Inline/Js/SetTypeCest.php create mode 100644 tests/unit/Assets/Inline/SetAttributesCest.php create mode 100644 tests/unit/Assets/Inline/SetFilterCest.php create mode 100644 tests/unit/Assets/Inline/SetTypeCest.php delete mode 100644 tests/unit/Assets/InlineTest.php create mode 100644 tests/unit/Assets/Manager/AddCssCest.php create mode 100644 tests/unit/Assets/Manager/AddInlineCodeByTypeCest.php create mode 100644 tests/unit/Assets/Manager/AddInlineCodeCest.php create mode 100644 tests/unit/Assets/Manager/AddInlineCssCest.php create mode 100644 tests/unit/Assets/Manager/AddInlineJsCest.php create mode 100644 tests/unit/Assets/Manager/AddJsCest.php create mode 100644 tests/unit/Assets/Manager/AddResourceByTypeCest.php create mode 100644 tests/unit/Assets/Manager/AddResourceCest.php create mode 100644 tests/unit/Assets/Manager/CollectionCest.php create mode 100644 tests/unit/Assets/Manager/CollectionResourcesByTypeCest.php create mode 100644 tests/unit/Assets/Manager/ConstructCest.php create mode 100644 tests/unit/Assets/Manager/ExistsCest.php create mode 100644 tests/unit/Assets/Manager/GetCest.php create mode 100644 tests/unit/Assets/Manager/GetCollectionsCest.php create mode 100644 tests/unit/Assets/Manager/GetCssCest.php create mode 100644 tests/unit/Assets/Manager/GetJsCest.php create mode 100644 tests/unit/Assets/Manager/GetOptionsCest.php create mode 100644 tests/unit/Assets/Manager/OutputCest.php create mode 100644 tests/unit/Assets/Manager/OutputCssCest.php create mode 100644 tests/unit/Assets/Manager/OutputInlineCest.php create mode 100644 tests/unit/Assets/Manager/OutputInlineCssCest.php create mode 100644 tests/unit/Assets/Manager/OutputInlineJsCest.php create mode 100644 tests/unit/Assets/Manager/OutputJsCest.php create mode 100644 tests/unit/Assets/Manager/SetCest.php create mode 100644 tests/unit/Assets/Manager/SetOptionsCest.php create mode 100644 tests/unit/Assets/Manager/UseImplicitOutputCest.php create mode 100644 tests/unit/Assets/ManagerCest.php delete mode 100644 tests/unit/Assets/ManagerTest.php create mode 100644 tests/unit/Assets/Resource/ConstructCest.php create mode 100644 tests/unit/Assets/Resource/Css/ConstructCest.php create mode 100644 tests/unit/Assets/Resource/Css/GetAttributesCest.php create mode 100644 tests/unit/Assets/Resource/Css/GetContentCest.php create mode 100644 tests/unit/Assets/Resource/Css/GetFilterCest.php create mode 100644 tests/unit/Assets/Resource/Css/GetLocalCest.php create mode 100644 tests/unit/Assets/Resource/Css/GetPathCest.php create mode 100644 tests/unit/Assets/Resource/Css/GetRealSourcePathCest.php create mode 100644 tests/unit/Assets/Resource/Css/GetRealTargetPathCest.php create mode 100644 tests/unit/Assets/Resource/Css/GetRealTargetUriCest.php create mode 100644 tests/unit/Assets/Resource/Css/GetResourceKeyCest.php create mode 100644 tests/unit/Assets/Resource/Css/GetSourcePathCest.php create mode 100644 tests/unit/Assets/Resource/Css/GetTargetPathCest.php create mode 100644 tests/unit/Assets/Resource/Css/GetTargetUriCest.php create mode 100644 tests/unit/Assets/Resource/Css/GetTypeCest.php create mode 100644 tests/unit/Assets/Resource/Css/SetAttributesCest.php create mode 100644 tests/unit/Assets/Resource/Css/SetFilterCest.php create mode 100644 tests/unit/Assets/Resource/Css/SetLocalCest.php create mode 100644 tests/unit/Assets/Resource/Css/SetPathCest.php create mode 100644 tests/unit/Assets/Resource/Css/SetSourcePathCest.php create mode 100644 tests/unit/Assets/Resource/Css/SetTargetPathCest.php create mode 100644 tests/unit/Assets/Resource/Css/SetTargetUriCest.php create mode 100644 tests/unit/Assets/Resource/Css/SetTypeCest.php create mode 100644 tests/unit/Assets/Resource/CssCest.php delete mode 100644 tests/unit/Assets/Resource/CssTest.php create mode 100644 tests/unit/Assets/Resource/GetAttributesCest.php create mode 100644 tests/unit/Assets/Resource/GetContentCest.php create mode 100644 tests/unit/Assets/Resource/GetFilterCest.php create mode 100644 tests/unit/Assets/Resource/GetLocalCest.php create mode 100644 tests/unit/Assets/Resource/GetPathCest.php create mode 100644 tests/unit/Assets/Resource/GetRealSourcePathCest.php create mode 100644 tests/unit/Assets/Resource/GetRealTargetPathCest.php create mode 100644 tests/unit/Assets/Resource/GetRealTargetUriCest.php create mode 100644 tests/unit/Assets/Resource/GetResourceKeyCest.php create mode 100644 tests/unit/Assets/Resource/GetSourcePathCest.php create mode 100644 tests/unit/Assets/Resource/GetTargetPathCest.php create mode 100644 tests/unit/Assets/Resource/GetTargetUriCest.php create mode 100644 tests/unit/Assets/Resource/GetTypeCest.php create mode 100644 tests/unit/Assets/Resource/Js/ConstructCest.php create mode 100644 tests/unit/Assets/Resource/Js/GetAttributesCest.php create mode 100644 tests/unit/Assets/Resource/Js/GetContentCest.php create mode 100644 tests/unit/Assets/Resource/Js/GetFilterCest.php create mode 100644 tests/unit/Assets/Resource/Js/GetLocalCest.php create mode 100644 tests/unit/Assets/Resource/Js/GetPathCest.php create mode 100644 tests/unit/Assets/Resource/Js/GetRealSourcePathCest.php create mode 100644 tests/unit/Assets/Resource/Js/GetRealTargetPathCest.php create mode 100644 tests/unit/Assets/Resource/Js/GetRealTargetUriCest.php create mode 100644 tests/unit/Assets/Resource/Js/GetResourceKeyCest.php create mode 100644 tests/unit/Assets/Resource/Js/GetSourcePathCest.php create mode 100644 tests/unit/Assets/Resource/Js/GetTargetPathCest.php create mode 100644 tests/unit/Assets/Resource/Js/GetTargetUriCest.php create mode 100644 tests/unit/Assets/Resource/Js/GetTypeCest.php create mode 100644 tests/unit/Assets/Resource/Js/SetAttributesCest.php create mode 100644 tests/unit/Assets/Resource/Js/SetFilterCest.php create mode 100644 tests/unit/Assets/Resource/Js/SetLocalCest.php create mode 100644 tests/unit/Assets/Resource/Js/SetPathCest.php create mode 100644 tests/unit/Assets/Resource/Js/SetSourcePathCest.php create mode 100644 tests/unit/Assets/Resource/Js/SetTargetPathCest.php create mode 100644 tests/unit/Assets/Resource/Js/SetTargetUriCest.php create mode 100644 tests/unit/Assets/Resource/Js/SetTypeCest.php create mode 100644 tests/unit/Assets/Resource/JsCest.php delete mode 100644 tests/unit/Assets/Resource/JsTest.php create mode 100644 tests/unit/Assets/Resource/SetAttributesCest.php create mode 100644 tests/unit/Assets/Resource/SetFilterCest.php create mode 100644 tests/unit/Assets/Resource/SetLocalCest.php create mode 100644 tests/unit/Assets/Resource/SetPathCest.php create mode 100644 tests/unit/Assets/Resource/SetSourcePathCest.php create mode 100644 tests/unit/Assets/Resource/SetTargetPathCest.php create mode 100644 tests/unit/Assets/Resource/SetTargetUriCest.php create mode 100644 tests/unit/Assets/Resource/SetTypeCest.php create mode 100644 tests/unit/Assets/ResourceCest.php delete mode 100644 tests/unit/Assets/ResourceTest.php delete mode 100644 tests/unit/Cache/Backend/ApcCest.php create mode 100644 tests/unit/Cache/Backend/Apcu/ConstructCest.php create mode 100644 tests/unit/Cache/Backend/Apcu/DecrementCest.php create mode 100644 tests/unit/Cache/Backend/Apcu/DeleteCest.php create mode 100644 tests/unit/Cache/Backend/Apcu/ExistsCest.php create mode 100644 tests/unit/Cache/Backend/Apcu/FlushCest.php create mode 100644 tests/unit/Cache/Backend/Apcu/GetCest.php create mode 100644 tests/unit/Cache/Backend/Apcu/GetFrontendCest.php create mode 100644 tests/unit/Cache/Backend/Apcu/GetLastKeyCest.php create mode 100644 tests/unit/Cache/Backend/Apcu/GetLifetimeCest.php create mode 100644 tests/unit/Cache/Backend/Apcu/GetOptionsCest.php create mode 100644 tests/unit/Cache/Backend/Apcu/IncrementCest.php create mode 100644 tests/unit/Cache/Backend/Apcu/IsFreshCest.php create mode 100644 tests/unit/Cache/Backend/Apcu/IsStartedCest.php create mode 100644 tests/unit/Cache/Backend/Apcu/QueryKeysCest.php create mode 100644 tests/unit/Cache/Backend/Apcu/SaveCest.php create mode 100644 tests/unit/Cache/Backend/Apcu/SetFrontendCest.php create mode 100644 tests/unit/Cache/Backend/Apcu/SetLastKeyCest.php create mode 100644 tests/unit/Cache/Backend/Apcu/SetOptionsCest.php create mode 100644 tests/unit/Cache/Backend/Apcu/StartCest.php create mode 100644 tests/unit/Cache/Backend/Apcu/StopCest.php create mode 100644 tests/unit/Cache/Backend/CacheCest.php create mode 100644 tests/unit/Cache/Backend/Factory/LoadCest.php delete mode 100644 tests/unit/Cache/Backend/FactoryTest.php create mode 100644 tests/unit/Cache/Backend/File/ConstructCest.php create mode 100644 tests/unit/Cache/Backend/File/DecrementCest.php create mode 100644 tests/unit/Cache/Backend/File/DeleteCest.php create mode 100644 tests/unit/Cache/Backend/File/ExistsCest.php create mode 100644 tests/unit/Cache/Backend/File/FlushCest.php create mode 100644 tests/unit/Cache/Backend/File/GetCest.php create mode 100644 tests/unit/Cache/Backend/File/GetFrontendCest.php create mode 100644 tests/unit/Cache/Backend/File/GetKeyCest.php create mode 100644 tests/unit/Cache/Backend/File/GetLastKeyCest.php create mode 100644 tests/unit/Cache/Backend/File/GetLifetimeCest.php create mode 100644 tests/unit/Cache/Backend/File/GetOptionsCest.php create mode 100644 tests/unit/Cache/Backend/File/IncrementCest.php create mode 100644 tests/unit/Cache/Backend/File/IsFreshCest.php create mode 100644 tests/unit/Cache/Backend/File/IsStartedCest.php create mode 100644 tests/unit/Cache/Backend/File/QueryKeysCest.php create mode 100644 tests/unit/Cache/Backend/File/SaveCest.php create mode 100644 tests/unit/Cache/Backend/File/SetFrontendCest.php create mode 100644 tests/unit/Cache/Backend/File/SetLastKeyCest.php create mode 100644 tests/unit/Cache/Backend/File/SetOptionsCest.php create mode 100644 tests/unit/Cache/Backend/File/StartCest.php create mode 100644 tests/unit/Cache/Backend/File/StopCest.php create mode 100644 tests/unit/Cache/Backend/File/UseSafeKeyCest.php create mode 100644 tests/unit/Cache/Backend/Libmemcached/ConnectCest.php create mode 100644 tests/unit/Cache/Backend/Libmemcached/ConstructCest.php create mode 100644 tests/unit/Cache/Backend/Libmemcached/DecrementCest.php create mode 100644 tests/unit/Cache/Backend/Libmemcached/DeleteCest.php create mode 100644 tests/unit/Cache/Backend/Libmemcached/ExistsCest.php create mode 100644 tests/unit/Cache/Backend/Libmemcached/FlushCest.php create mode 100644 tests/unit/Cache/Backend/Libmemcached/GetCest.php create mode 100644 tests/unit/Cache/Backend/Libmemcached/GetFrontendCest.php create mode 100644 tests/unit/Cache/Backend/Libmemcached/GetLastKeyCest.php create mode 100644 tests/unit/Cache/Backend/Libmemcached/GetLifetimeCest.php create mode 100644 tests/unit/Cache/Backend/Libmemcached/GetOptionsCest.php create mode 100644 tests/unit/Cache/Backend/Libmemcached/IncrementCest.php create mode 100644 tests/unit/Cache/Backend/Libmemcached/IsFreshCest.php create mode 100644 tests/unit/Cache/Backend/Libmemcached/IsStartedCest.php create mode 100644 tests/unit/Cache/Backend/Libmemcached/QueryKeysCest.php create mode 100644 tests/unit/Cache/Backend/Libmemcached/SaveCest.php create mode 100644 tests/unit/Cache/Backend/Libmemcached/SetFrontendCest.php create mode 100644 tests/unit/Cache/Backend/Libmemcached/SetLastKeyCest.php create mode 100644 tests/unit/Cache/Backend/Libmemcached/SetOptionsCest.php create mode 100644 tests/unit/Cache/Backend/Libmemcached/StartCest.php create mode 100644 tests/unit/Cache/Backend/Libmemcached/StopCest.php create mode 100644 tests/unit/Cache/Backend/Memory/ConstructCest.php create mode 100644 tests/unit/Cache/Backend/Memory/DecrementCest.php create mode 100644 tests/unit/Cache/Backend/Memory/DeleteCest.php create mode 100644 tests/unit/Cache/Backend/Memory/ExistsCest.php create mode 100644 tests/unit/Cache/Backend/Memory/FlushCest.php create mode 100644 tests/unit/Cache/Backend/Memory/GetCest.php create mode 100644 tests/unit/Cache/Backend/Memory/GetFrontendCest.php create mode 100644 tests/unit/Cache/Backend/Memory/GetLastKeyCest.php create mode 100644 tests/unit/Cache/Backend/Memory/GetLifetimeCest.php create mode 100644 tests/unit/Cache/Backend/Memory/GetOptionsCest.php create mode 100644 tests/unit/Cache/Backend/Memory/IncrementCest.php create mode 100644 tests/unit/Cache/Backend/Memory/IsFreshCest.php create mode 100644 tests/unit/Cache/Backend/Memory/IsStartedCest.php create mode 100644 tests/unit/Cache/Backend/Memory/QueryKeysCest.php create mode 100644 tests/unit/Cache/Backend/Memory/SaveCest.php create mode 100644 tests/unit/Cache/Backend/Memory/SerializeCest.php create mode 100644 tests/unit/Cache/Backend/Memory/SetFrontendCest.php create mode 100644 tests/unit/Cache/Backend/Memory/SetLastKeyCest.php create mode 100644 tests/unit/Cache/Backend/Memory/SetOptionsCest.php create mode 100644 tests/unit/Cache/Backend/Memory/StartCest.php create mode 100644 tests/unit/Cache/Backend/Memory/StopCest.php create mode 100644 tests/unit/Cache/Backend/Memory/UnserializeCest.php create mode 100644 tests/unit/Cache/Backend/Mongo/ConstructCest.php create mode 100644 tests/unit/Cache/Backend/Mongo/DecrementCest.php create mode 100644 tests/unit/Cache/Backend/Mongo/DeleteCest.php create mode 100644 tests/unit/Cache/Backend/Mongo/ExistsCest.php create mode 100644 tests/unit/Cache/Backend/Mongo/FlushCest.php create mode 100644 tests/unit/Cache/Backend/Mongo/GcCest.php create mode 100644 tests/unit/Cache/Backend/Mongo/GetCest.php create mode 100644 tests/unit/Cache/Backend/Mongo/GetFrontendCest.php create mode 100644 tests/unit/Cache/Backend/Mongo/GetLastKeyCest.php create mode 100644 tests/unit/Cache/Backend/Mongo/GetLifetimeCest.php create mode 100644 tests/unit/Cache/Backend/Mongo/GetOptionsCest.php create mode 100644 tests/unit/Cache/Backend/Mongo/IncrementCest.php create mode 100644 tests/unit/Cache/Backend/Mongo/IsFreshCest.php create mode 100644 tests/unit/Cache/Backend/Mongo/IsStartedCest.php create mode 100644 tests/unit/Cache/Backend/Mongo/QueryKeysCest.php create mode 100644 tests/unit/Cache/Backend/Mongo/SaveCest.php create mode 100644 tests/unit/Cache/Backend/Mongo/SetFrontendCest.php create mode 100644 tests/unit/Cache/Backend/Mongo/SetLastKeyCest.php create mode 100644 tests/unit/Cache/Backend/Mongo/SetOptionsCest.php create mode 100644 tests/unit/Cache/Backend/Mongo/StartCest.php create mode 100644 tests/unit/Cache/Backend/Mongo/StopCest.php create mode 100644 tests/unit/Cache/Backend/Redis/ConnectCest.php create mode 100644 tests/unit/Cache/Backend/Redis/ConstructCest.php create mode 100644 tests/unit/Cache/Backend/Redis/DecrementCest.php create mode 100644 tests/unit/Cache/Backend/Redis/DeleteCest.php create mode 100644 tests/unit/Cache/Backend/Redis/ExistsCest.php create mode 100644 tests/unit/Cache/Backend/Redis/FlushCest.php create mode 100644 tests/unit/Cache/Backend/Redis/GetCest.php create mode 100644 tests/unit/Cache/Backend/Redis/GetFrontendCest.php create mode 100644 tests/unit/Cache/Backend/Redis/GetLastKeyCest.php create mode 100644 tests/unit/Cache/Backend/Redis/GetLifetimeCest.php create mode 100644 tests/unit/Cache/Backend/Redis/GetOptionsCest.php create mode 100644 tests/unit/Cache/Backend/Redis/IncrementCest.php create mode 100644 tests/unit/Cache/Backend/Redis/IsFreshCest.php create mode 100644 tests/unit/Cache/Backend/Redis/IsStartedCest.php create mode 100644 tests/unit/Cache/Backend/Redis/QueryKeysCest.php create mode 100644 tests/unit/Cache/Backend/Redis/SaveCest.php create mode 100644 tests/unit/Cache/Backend/Redis/SetFrontendCest.php create mode 100644 tests/unit/Cache/Backend/Redis/SetLastKeyCest.php create mode 100644 tests/unit/Cache/Backend/Redis/SetOptionsCest.php create mode 100644 tests/unit/Cache/Backend/Redis/StartCest.php create mode 100644 tests/unit/Cache/Backend/Redis/StopCest.php create mode 100644 tests/unit/Cache/Frontend/Base64/AfterRetrieveCest.php create mode 100644 tests/unit/Cache/Frontend/Base64/BeforeStoreCest.php create mode 100644 tests/unit/Cache/Frontend/Base64/ConstructCest.php create mode 100644 tests/unit/Cache/Frontend/Base64/GetContentCest.php create mode 100644 tests/unit/Cache/Frontend/Base64/GetLifetimeCest.php create mode 100644 tests/unit/Cache/Frontend/Base64/IsBufferingCest.php create mode 100644 tests/unit/Cache/Frontend/Base64/StartCest.php create mode 100644 tests/unit/Cache/Frontend/Base64/StopCest.php create mode 100644 tests/unit/Cache/Frontend/Data/AfterRetrieveCest.php create mode 100644 tests/unit/Cache/Frontend/Data/BeforeStoreCest.php create mode 100644 tests/unit/Cache/Frontend/Data/ConstructCest.php create mode 100644 tests/unit/Cache/Frontend/Data/GetContentCest.php create mode 100644 tests/unit/Cache/Frontend/Data/GetLifetimeCest.php create mode 100644 tests/unit/Cache/Frontend/Data/IsBufferingCest.php create mode 100644 tests/unit/Cache/Frontend/Data/StartCest.php create mode 100644 tests/unit/Cache/Frontend/Data/StopCest.php create mode 100644 tests/unit/Cache/Frontend/Factory/LoadCest.php delete mode 100644 tests/unit/Cache/Frontend/FactoryTest.php create mode 100644 tests/unit/Cache/Frontend/Igbinary/AfterRetrieveCest.php create mode 100644 tests/unit/Cache/Frontend/Igbinary/BeforeStoreCest.php create mode 100644 tests/unit/Cache/Frontend/Igbinary/ConstructCest.php create mode 100644 tests/unit/Cache/Frontend/Igbinary/GetContentCest.php create mode 100644 tests/unit/Cache/Frontend/Igbinary/GetLifetimeCest.php create mode 100644 tests/unit/Cache/Frontend/Igbinary/IsBufferingCest.php create mode 100644 tests/unit/Cache/Frontend/Igbinary/StartCest.php create mode 100644 tests/unit/Cache/Frontend/Igbinary/StopCest.php create mode 100644 tests/unit/Cache/Frontend/Json/AfterRetrieveCest.php create mode 100644 tests/unit/Cache/Frontend/Json/BeforeStoreCest.php create mode 100644 tests/unit/Cache/Frontend/Json/ConstructCest.php create mode 100644 tests/unit/Cache/Frontend/Json/GetContentCest.php create mode 100644 tests/unit/Cache/Frontend/Json/GetLifetimeCest.php create mode 100644 tests/unit/Cache/Frontend/Json/IsBufferingCest.php create mode 100644 tests/unit/Cache/Frontend/Json/StartCest.php create mode 100644 tests/unit/Cache/Frontend/Json/StopCest.php create mode 100644 tests/unit/Cache/Frontend/Msgpack/AfterRetrieveCest.php create mode 100644 tests/unit/Cache/Frontend/Msgpack/BeforeStoreCest.php create mode 100644 tests/unit/Cache/Frontend/Msgpack/ConstructCest.php create mode 100644 tests/unit/Cache/Frontend/Msgpack/GetContentCest.php create mode 100644 tests/unit/Cache/Frontend/Msgpack/GetLifetimeCest.php create mode 100644 tests/unit/Cache/Frontend/Msgpack/IsBufferingCest.php create mode 100644 tests/unit/Cache/Frontend/Msgpack/StartCest.php create mode 100644 tests/unit/Cache/Frontend/Msgpack/StopCest.php create mode 100644 tests/unit/Cache/Frontend/None/AfterRetrieveCest.php create mode 100644 tests/unit/Cache/Frontend/None/BeforeStoreCest.php create mode 100644 tests/unit/Cache/Frontend/None/GetContentCest.php create mode 100644 tests/unit/Cache/Frontend/None/GetLifetimeCest.php create mode 100644 tests/unit/Cache/Frontend/None/IsBufferingCest.php create mode 100644 tests/unit/Cache/Frontend/None/StartCest.php create mode 100644 tests/unit/Cache/Frontend/None/StopCest.php create mode 100644 tests/unit/Cache/Frontend/Output/AfterRetrieveCest.php create mode 100644 tests/unit/Cache/Frontend/Output/BeforeStoreCest.php create mode 100644 tests/unit/Cache/Frontend/Output/ConstructCest.php create mode 100644 tests/unit/Cache/Frontend/Output/GetContentCest.php create mode 100644 tests/unit/Cache/Frontend/Output/GetLifetimeCest.php create mode 100644 tests/unit/Cache/Frontend/Output/IsBufferingCest.php create mode 100644 tests/unit/Cache/Frontend/Output/StartCest.php create mode 100644 tests/unit/Cache/Frontend/Output/StopCest.php create mode 100644 tests/unit/Cache/Multiple/ConstructCest.php create mode 100644 tests/unit/Cache/Multiple/DeleteCest.php create mode 100644 tests/unit/Cache/Multiple/ExistsCest.php create mode 100644 tests/unit/Cache/Multiple/FlushCest.php create mode 100644 tests/unit/Cache/Multiple/GetCest.php create mode 100644 tests/unit/Cache/Multiple/PushCest.php create mode 100644 tests/unit/Cache/Multiple/SaveCest.php create mode 100644 tests/unit/Cache/Multiple/StartCest.php delete mode 100644 tests/unit/Cli/ConsoleTest.php delete mode 100644 tests/unit/Cli/DispatcherTest.php delete mode 100644 tests/unit/Cli/RouterTest.php delete mode 100644 tests/unit/Cli/TaskTest.php create mode 100644 tests/unit/Config/Adapter/Grouped/ConstructCest.php create mode 100644 tests/unit/Config/Adapter/Grouped/CountCest.php create mode 100644 tests/unit/Config/Adapter/Grouped/GetCest.php create mode 100644 tests/unit/Config/Adapter/Grouped/GetPathDelimiterCest.php create mode 100644 tests/unit/Config/Adapter/Grouped/MergeCest.php create mode 100644 tests/unit/Config/Adapter/Grouped/OffsetExistsCest.php create mode 100644 tests/unit/Config/Adapter/Grouped/OffsetGetCest.php create mode 100644 tests/unit/Config/Adapter/Grouped/OffsetSetCest.php create mode 100644 tests/unit/Config/Adapter/Grouped/OffsetUnsetCest.php create mode 100644 tests/unit/Config/Adapter/Grouped/PathCest.php create mode 100644 tests/unit/Config/Adapter/Grouped/SetPathDelimiterCest.php create mode 100644 tests/unit/Config/Adapter/Grouped/ToArrayCest.php delete mode 100644 tests/unit/Config/Adapter/GroupedTest.php create mode 100644 tests/unit/Config/Adapter/Ini/ConstructCest.php create mode 100644 tests/unit/Config/Adapter/Ini/CountCest.php create mode 100644 tests/unit/Config/Adapter/Ini/GetCest.php create mode 100644 tests/unit/Config/Adapter/Ini/GetPathDelimiterCest.php create mode 100644 tests/unit/Config/Adapter/Ini/MergeCest.php create mode 100644 tests/unit/Config/Adapter/Ini/OffsetExistsCest.php create mode 100644 tests/unit/Config/Adapter/Ini/OffsetGetCest.php create mode 100644 tests/unit/Config/Adapter/Ini/OffsetSetCest.php create mode 100644 tests/unit/Config/Adapter/Ini/OffsetUnsetCest.php create mode 100644 tests/unit/Config/Adapter/Ini/PathCest.php create mode 100644 tests/unit/Config/Adapter/Ini/SetPathDelimiterCest.php create mode 100644 tests/unit/Config/Adapter/Ini/ToArrayCest.php delete mode 100644 tests/unit/Config/Adapter/IniTest.php create mode 100644 tests/unit/Config/Adapter/Json/ConstructCest.php create mode 100644 tests/unit/Config/Adapter/Json/CountCest.php create mode 100644 tests/unit/Config/Adapter/Json/GetCest.php create mode 100644 tests/unit/Config/Adapter/Json/GetPathDelimiterCest.php create mode 100644 tests/unit/Config/Adapter/Json/MergeCest.php create mode 100644 tests/unit/Config/Adapter/Json/OffsetExistsCest.php create mode 100644 tests/unit/Config/Adapter/Json/OffsetGetCest.php create mode 100644 tests/unit/Config/Adapter/Json/OffsetSetCest.php create mode 100644 tests/unit/Config/Adapter/Json/OffsetUnsetCest.php create mode 100644 tests/unit/Config/Adapter/Json/PathCest.php create mode 100644 tests/unit/Config/Adapter/Json/SetPathDelimiterCest.php create mode 100644 tests/unit/Config/Adapter/Json/ToArrayCest.php delete mode 100644 tests/unit/Config/Adapter/JsonTest.php create mode 100644 tests/unit/Config/Adapter/Php/ConstructCest.php create mode 100644 tests/unit/Config/Adapter/Php/CountCest.php create mode 100644 tests/unit/Config/Adapter/Php/GetCest.php create mode 100644 tests/unit/Config/Adapter/Php/GetPathDelimiterCest.php create mode 100644 tests/unit/Config/Adapter/Php/MergeCest.php create mode 100644 tests/unit/Config/Adapter/Php/OffsetExistsCest.php create mode 100644 tests/unit/Config/Adapter/Php/OffsetGetCest.php create mode 100644 tests/unit/Config/Adapter/Php/OffsetSetCest.php create mode 100644 tests/unit/Config/Adapter/Php/OffsetUnsetCest.php create mode 100644 tests/unit/Config/Adapter/Php/PathCest.php create mode 100644 tests/unit/Config/Adapter/Php/SetPathDelimiterCest.php create mode 100644 tests/unit/Config/Adapter/Php/ToArrayCest.php delete mode 100644 tests/unit/Config/Adapter/PhpTest.php create mode 100644 tests/unit/Config/Adapter/Yaml/ConstructCest.php create mode 100644 tests/unit/Config/Adapter/Yaml/CountCest.php create mode 100644 tests/unit/Config/Adapter/Yaml/GetCest.php create mode 100644 tests/unit/Config/Adapter/Yaml/GetPathDelimiterCest.php create mode 100644 tests/unit/Config/Adapter/Yaml/MergeCest.php create mode 100644 tests/unit/Config/Adapter/Yaml/OffsetExistsCest.php create mode 100644 tests/unit/Config/Adapter/Yaml/OffsetGetCest.php create mode 100644 tests/unit/Config/Adapter/Yaml/OffsetSetCest.php create mode 100644 tests/unit/Config/Adapter/Yaml/OffsetUnsetCest.php create mode 100644 tests/unit/Config/Adapter/Yaml/PathCest.php create mode 100644 tests/unit/Config/Adapter/Yaml/SetPathDelimiterCest.php create mode 100644 tests/unit/Config/Adapter/Yaml/ToArrayCest.php delete mode 100644 tests/unit/Config/Adapter/YamlTest.php create mode 100644 tests/unit/Config/ConfigCest.php create mode 100644 tests/unit/Config/ConstructCest.php create mode 100644 tests/unit/Config/CountCest.php create mode 100644 tests/unit/Config/Factory/LoadCest.php delete mode 100644 tests/unit/Config/FactoryTest.php create mode 100644 tests/unit/Config/GetCest.php create mode 100644 tests/unit/Config/GetPathDelimiterCest.php delete mode 100644 tests/unit/Config/Helper/ConfigBase.php create mode 100644 tests/unit/Config/MergeCest.php create mode 100644 tests/unit/Config/OffsetExistsCest.php create mode 100644 tests/unit/Config/OffsetGetCest.php create mode 100644 tests/unit/Config/OffsetSetCest.php create mode 100644 tests/unit/Config/OffsetUnsetCest.php create mode 100644 tests/unit/Config/PathCest.php create mode 100644 tests/unit/Config/SetPathDelimiterCest.php create mode 100644 tests/unit/Config/SetStateCest.php create mode 100644 tests/unit/Config/ToArrayCest.php delete mode 100644 tests/unit/ConfigTest.php create mode 100644 tests/unit/Crypt/ConstructCest.php create mode 100644 tests/unit/Crypt/CryptCest.php create mode 100644 tests/unit/Crypt/DecryptBase64Cest.php create mode 100644 tests/unit/Crypt/DecryptCest.php create mode 100644 tests/unit/Crypt/EncryptBase64Cest.php create mode 100644 tests/unit/Crypt/EncryptCest.php create mode 100644 tests/unit/Crypt/GetAvailableCiphersCest.php create mode 100644 tests/unit/Crypt/GetAvailableHashAlgosCest.php create mode 100644 tests/unit/Crypt/GetCipherCest.php create mode 100644 tests/unit/Crypt/GetHashAlgoCest.php create mode 100644 tests/unit/Crypt/GetKeyCest.php create mode 100644 tests/unit/Crypt/Mismatch/ConstructCest.php create mode 100644 tests/unit/Crypt/Mismatch/GetCodeCest.php create mode 100644 tests/unit/Crypt/Mismatch/GetFileCest.php create mode 100644 tests/unit/Crypt/Mismatch/GetLineCest.php create mode 100644 tests/unit/Crypt/Mismatch/GetMessageCest.php create mode 100644 tests/unit/Crypt/Mismatch/GetPreviousCest.php create mode 100644 tests/unit/Crypt/Mismatch/GetTraceAsStringCest.php create mode 100644 tests/unit/Crypt/Mismatch/GetTraceCest.php create mode 100644 tests/unit/Crypt/Mismatch/ToStringCest.php create mode 100644 tests/unit/Crypt/Mismatch/WakeupCest.php create mode 100644 tests/unit/Crypt/SetCipherCest.php create mode 100644 tests/unit/Crypt/SetHashAlgoCest.php create mode 100644 tests/unit/Crypt/SetKeyCest.php create mode 100644 tests/unit/Crypt/SetPaddingCest.php create mode 100644 tests/unit/Crypt/UseSigningCest.php delete mode 100644 tests/unit/CryptTest.php delete mode 100644 tests/unit/Db/Adapter/Pdo/ColumnsBase.php delete mode 100644 tests/unit/Db/Adapter/Pdo/FactoryTest.php delete mode 100644 tests/unit/Db/Adapter/Pdo/Mysql/ColumnsCest.php delete mode 100644 tests/unit/Db/Adapter/Pdo/Mysql/TablesCest.php delete mode 100644 tests/unit/Db/Adapter/Pdo/MysqlTest.php delete mode 100644 tests/unit/Db/Adapter/Pdo/Postgresql/ColumnsCest.php delete mode 100644 tests/unit/Db/Adapter/Pdo/Postgresql/TablesCest.php delete mode 100644 tests/unit/Db/Adapter/Pdo/PostgresqlTest.php delete mode 100644 tests/unit/Db/Adapter/Pdo/TablesBase.php delete mode 100644 tests/unit/Db/Column/PostgresqlTest.php delete mode 100644 tests/unit/Db/ColumnCest.php delete mode 100644 tests/unit/Db/Dialect/MysqlTest.php delete mode 100644 tests/unit/Db/Dialect/PostgresqlTest.php delete mode 100644 tests/unit/Db/Dialect/SqliteTest.php delete mode 100644 tests/unit/Db/IndexTest.php delete mode 100644 tests/unit/Db/ReferenceTest.php create mode 100644 tests/unit/Debug/ClearVarsCest.php create mode 100644 tests/unit/Debug/DebugCest.php create mode 100644 tests/unit/Debug/DebugVarCest.php create mode 100644 tests/unit/Debug/Dump/AllCest.php create mode 100644 tests/unit/Debug/Dump/ConstructCest.php create mode 100644 tests/unit/Debug/Dump/GetDetailedCest.php create mode 100644 tests/unit/Debug/Dump/OneCest.php create mode 100644 tests/unit/Debug/Dump/SetDetailedCest.php create mode 100644 tests/unit/Debug/Dump/SetStylesCest.php create mode 100644 tests/unit/Debug/Dump/ToJsonCest.php create mode 100644 tests/unit/Debug/Dump/VariableCest.php create mode 100644 tests/unit/Debug/Dump/VariablesCest.php create mode 100644 tests/unit/Debug/DumpCest.php delete mode 100644 tests/unit/Debug/DumpTest.php create mode 100644 tests/unit/Debug/GetCssSourcesCest.php create mode 100644 tests/unit/Debug/GetJsSourcesCest.php create mode 100644 tests/unit/Debug/GetVersionCest.php create mode 100644 tests/unit/Debug/HaltCest.php create mode 100644 tests/unit/Debug/Helper/ClassProperties.php create mode 100644 tests/unit/Debug/ListenCest.php create mode 100644 tests/unit/Debug/ListenExceptionsCest.php create mode 100644 tests/unit/Debug/ListenLowSeverityCest.php create mode 100644 tests/unit/Debug/OnUncaughtExceptionCest.php create mode 100644 tests/unit/Debug/OnUncaughtLowSeverityCest.php create mode 100644 tests/unit/Debug/SetShowBackTraceCest.php create mode 100644 tests/unit/Debug/SetShowFileFragmentCest.php create mode 100644 tests/unit/Debug/SetShowFilesCest.php create mode 100644 tests/unit/Debug/SetUriCest.php delete mode 100644 tests/unit/DebugTest.php create mode 100644 tests/unit/Di/AttemptCest.php create mode 100644 tests/unit/Di/ConstructCest.php create mode 100644 tests/unit/Di/DiCest.php create mode 100644 tests/unit/Di/FactoryDefault/AttemptCest.php create mode 100644 tests/unit/Di/FactoryDefault/ConstructCest.php create mode 100644 tests/unit/Di/FactoryDefault/GetCest.php create mode 100644 tests/unit/Di/FactoryDefault/GetDefaultCest.php create mode 100644 tests/unit/Di/FactoryDefault/GetInternalEventsManagerCest.php create mode 100644 tests/unit/Di/FactoryDefault/GetRawCest.php create mode 100644 tests/unit/Di/FactoryDefault/GetServiceCest.php create mode 100644 tests/unit/Di/FactoryDefault/GetServicesCest.php create mode 100644 tests/unit/Di/FactoryDefault/GetSharedCest.php create mode 100644 tests/unit/Di/FactoryDefault/HasCest.php create mode 100644 tests/unit/Di/FactoryDefault/LoadFromPhpCest.php create mode 100644 tests/unit/Di/FactoryDefault/LoadFromYamlCest.php create mode 100644 tests/unit/Di/FactoryDefault/OffsetExistsCest.php create mode 100644 tests/unit/Di/FactoryDefault/OffsetGetCest.php create mode 100644 tests/unit/Di/FactoryDefault/OffsetSetCest.php create mode 100644 tests/unit/Di/FactoryDefault/OffsetUnsetCest.php create mode 100644 tests/unit/Di/FactoryDefault/RegisterCest.php create mode 100644 tests/unit/Di/FactoryDefault/RemoveCest.php create mode 100644 tests/unit/Di/FactoryDefault/ResetCest.php create mode 100644 tests/unit/Di/FactoryDefault/SetCest.php create mode 100644 tests/unit/Di/FactoryDefault/SetDefaultCest.php create mode 100644 tests/unit/Di/FactoryDefault/SetInternalEventsManagerCest.php create mode 100644 tests/unit/Di/FactoryDefault/SetRawCest.php create mode 100644 tests/unit/Di/FactoryDefault/SetSharedCest.php create mode 100644 tests/unit/Di/FactoryDefault/UnderscoreCallCest.php create mode 100644 tests/unit/Di/FactoryDefault/WasFreshInstanceCest.php delete mode 100644 tests/unit/Di/FactoryDefaultTest.php create mode 100644 tests/unit/Di/GetCest.php create mode 100644 tests/unit/Di/GetDefaultCest.php create mode 100644 tests/unit/Di/GetInternalEventsManagerCest.php create mode 100644 tests/unit/Di/GetRawCest.php create mode 100644 tests/unit/Di/GetServiceCest.php create mode 100644 tests/unit/Di/GetServicesCest.php create mode 100644 tests/unit/Di/GetSharedCest.php create mode 100644 tests/unit/Di/HasCest.php create mode 100644 tests/unit/Di/Injectable/GetDICest.php create mode 100644 tests/unit/Di/Injectable/GetEventsManagerCest.php create mode 100644 tests/unit/Di/Injectable/SetDICest.php create mode 100644 tests/unit/Di/Injectable/SetEventsManagerCest.php create mode 100644 tests/unit/Di/Injectable/UnderscoreGetCest.php create mode 100644 tests/unit/Di/LoadFromPhpCest.php create mode 100644 tests/unit/Di/LoadFromYamlCest.php create mode 100644 tests/unit/Di/OffsetExistsCest.php create mode 100644 tests/unit/Di/OffsetGetCest.php create mode 100644 tests/unit/Di/OffsetSetCest.php create mode 100644 tests/unit/Di/OffsetUnsetCest.php create mode 100644 tests/unit/Di/RegisterCest.php create mode 100644 tests/unit/Di/RemoveCest.php create mode 100644 tests/unit/Di/ResetCest.php create mode 100644 tests/unit/Di/Service/Builder/BuildCest.php create mode 100644 tests/unit/Di/Service/ConstructCest.php create mode 100644 tests/unit/Di/Service/GetDefinitionCest.php create mode 100644 tests/unit/Di/Service/GetNameCest.php create mode 100644 tests/unit/Di/Service/GetParameterCest.php create mode 100644 tests/unit/Di/Service/IsResolvedCest.php create mode 100644 tests/unit/Di/Service/IsSharedCest.php create mode 100644 tests/unit/Di/Service/ResolveCest.php create mode 100644 tests/unit/Di/Service/SetDefinitionCest.php create mode 100644 tests/unit/Di/Service/SetParameterCest.php create mode 100644 tests/unit/Di/Service/SetSharedCest.php create mode 100644 tests/unit/Di/Service/SetSharedInstanceCest.php create mode 100644 tests/unit/Di/Service/SetStateCest.php create mode 100644 tests/unit/Di/ServiceCest.php delete mode 100644 tests/unit/Di/ServiceTest.php create mode 100644 tests/unit/Di/SetCest.php create mode 100644 tests/unit/Di/SetDefaultCest.php create mode 100644 tests/unit/Di/SetInternalEventsManagerCest.php create mode 100644 tests/unit/Di/SetRawCest.php create mode 100644 tests/unit/Di/SetSharedCest.php create mode 100644 tests/unit/Di/UnderscoreCallCest.php create mode 100644 tests/unit/Di/WasFreshInstanceCest.php delete mode 100644 tests/unit/DiTest.php create mode 100644 tests/unit/Dispatcher/CallActionMethodCest.php create mode 100644 tests/unit/Dispatcher/DispatchCest.php create mode 100644 tests/unit/Dispatcher/ForwardCest.php create mode 100644 tests/unit/Dispatcher/GetActionNameCest.php create mode 100644 tests/unit/Dispatcher/GetActionSuffixCest.php create mode 100644 tests/unit/Dispatcher/GetActiveMethodCest.php create mode 100644 tests/unit/Dispatcher/GetBoundModelsCest.php create mode 100644 tests/unit/Dispatcher/GetDICest.php create mode 100644 tests/unit/Dispatcher/GetDefaultNamespaceCest.php create mode 100644 tests/unit/Dispatcher/GetEventsManagerCest.php create mode 100644 tests/unit/Dispatcher/GetHandlerClassCest.php create mode 100644 tests/unit/Dispatcher/GetHandlerSuffixCest.php create mode 100644 tests/unit/Dispatcher/GetModelBinderCest.php create mode 100644 tests/unit/Dispatcher/GetModuleNameCest.php create mode 100644 tests/unit/Dispatcher/GetNamespaceNameCest.php create mode 100644 tests/unit/Dispatcher/GetParamCest.php create mode 100644 tests/unit/Dispatcher/GetParamsCest.php create mode 100644 tests/unit/Dispatcher/GetReturnedValueCest.php create mode 100644 tests/unit/Dispatcher/HasParamCest.php create mode 100644 tests/unit/Dispatcher/IsFinishedCest.php create mode 100644 tests/unit/Dispatcher/SetActionNameCest.php create mode 100644 tests/unit/Dispatcher/SetActionSuffixCest.php create mode 100644 tests/unit/Dispatcher/SetDICest.php create mode 100644 tests/unit/Dispatcher/SetDefaultActionCest.php create mode 100644 tests/unit/Dispatcher/SetDefaultNamespaceCest.php create mode 100644 tests/unit/Dispatcher/SetEventsManagerCest.php create mode 100644 tests/unit/Dispatcher/SetHandlerSuffixCest.php create mode 100644 tests/unit/Dispatcher/SetModelBinderCest.php create mode 100644 tests/unit/Dispatcher/SetModuleNameCest.php create mode 100644 tests/unit/Dispatcher/SetNamespaceNameCest.php create mode 100644 tests/unit/Dispatcher/SetParamCest.php create mode 100644 tests/unit/Dispatcher/SetParamsCest.php create mode 100644 tests/unit/Dispatcher/SetReturnedValueCest.php create mode 100644 tests/unit/Dispatcher/WasForwardedCest.php create mode 100644 tests/unit/Escaper/DetectEncodingCest.php create mode 100644 tests/unit/Escaper/EscapeCssCest.php create mode 100644 tests/unit/Escaper/EscapeHtmlAttrCest.php create mode 100644 tests/unit/Escaper/EscapeHtmlCest.php create mode 100644 tests/unit/Escaper/EscapeJsCest.php create mode 100644 tests/unit/Escaper/EscapeUrlCest.php create mode 100644 tests/unit/Escaper/GetEncodingCest.php create mode 100644 tests/unit/Escaper/NormalizeEncodingCest.php create mode 100644 tests/unit/Escaper/SetDoubleEncodeCest.php create mode 100644 tests/unit/Escaper/SetEncodingCest.php create mode 100644 tests/unit/Escaper/SetHtmlQuoteTypeCest.php delete mode 100644 tests/unit/EscaperTest.php create mode 100644 tests/unit/Events/Event/ConstructCest.php create mode 100644 tests/unit/Events/Event/GetDataCest.php create mode 100644 tests/unit/Events/Event/GetSourceCest.php create mode 100644 tests/unit/Events/Event/GetTypeCest.php create mode 100644 tests/unit/Events/Event/IsCancelableCest.php create mode 100644 tests/unit/Events/Event/IsStoppedCest.php create mode 100644 tests/unit/Events/Event/SetDataCest.php create mode 100644 tests/unit/Events/Event/SetTypeCest.php create mode 100644 tests/unit/Events/Event/StopCest.php create mode 100644 tests/unit/Events/Manager/ArePrioritiesEnabledCest.php create mode 100644 tests/unit/Events/Manager/AttachCest.php create mode 100644 tests/unit/Events/Manager/CollectResponsesCest.php create mode 100644 tests/unit/Events/Manager/DetachAllCest.php create mode 100644 tests/unit/Events/Manager/DetachCest.php create mode 100644 tests/unit/Events/Manager/EnablePrioritiesCest.php create mode 100644 tests/unit/Events/Manager/FireCest.php create mode 100644 tests/unit/Events/Manager/FireQueueCest.php create mode 100644 tests/unit/Events/Manager/GetListenersCest.php create mode 100644 tests/unit/Events/Manager/GetResponsesCest.php create mode 100644 tests/unit/Events/Manager/HasListenersCest.php create mode 100644 tests/unit/Events/Manager/IsCollectingCest.php create mode 100644 tests/unit/Events/ManagerCest.php delete mode 100644 tests/unit/Events/ManagerTest.php delete mode 100644 tests/unit/Factory/Helper/FactoryBase.php create mode 100644 tests/unit/Factory/LoadCest.php create mode 100644 tests/unit/Filter/AddCest.php create mode 100644 tests/unit/Filter/FilterAlphanumCest.php delete mode 100644 tests/unit/Filter/FilterAlphanumTest.php create mode 100644 tests/unit/Filter/FilterCustomCest.php delete mode 100644 tests/unit/Filter/FilterCustomTest.php create mode 100644 tests/unit/Filter/FilterEmailCest.php delete mode 100644 tests/unit/Filter/FilterEmailTest.php create mode 100644 tests/unit/Filter/FilterFloatCest.php delete mode 100644 tests/unit/Filter/FilterFloatTest.php create mode 100644 tests/unit/Filter/FilterIntegerCest.php delete mode 100644 tests/unit/Filter/FilterIntegerTest.php create mode 100644 tests/unit/Filter/FilterMultipleCest.php delete mode 100644 tests/unit/Filter/FilterMultipleTest.php create mode 100644 tests/unit/Filter/FilterSpecialCharsCest.php delete mode 100644 tests/unit/Filter/FilterSpecialCharsTest.php create mode 100644 tests/unit/Filter/FilterStringCest.php delete mode 100644 tests/unit/Filter/FilterStringTest.php create mode 100644 tests/unit/Filter/FilterStriptagsCest.php delete mode 100644 tests/unit/Filter/FilterStriptagsTest.php create mode 100644 tests/unit/Filter/FilterTrimCest.php delete mode 100644 tests/unit/Filter/FilterTrimTest.php create mode 100644 tests/unit/Filter/FilterUpperLowerCest.php delete mode 100644 tests/unit/Filter/FilterUpperLowerTest.php create mode 100644 tests/unit/Filter/FilterUrlCest.php delete mode 100644 tests/unit/Filter/FilterUrlTest.php create mode 100644 tests/unit/Filter/GetFiltersCest.php create mode 100644 tests/unit/Filter/SanitizeCest.php create mode 100644 tests/unit/Flash/ClearCest.php create mode 100644 tests/unit/Flash/ConstructCest.php create mode 100644 tests/unit/Flash/Direct/ClearCest.php create mode 100644 tests/unit/Flash/Direct/ConstructCest.php create mode 100644 tests/unit/Flash/Direct/ErrorCest.php create mode 100644 tests/unit/Flash/Direct/FlashDirectCustomCSSCest.php delete mode 100644 tests/unit/Flash/Direct/FlashDirectCustomCSSTest.php create mode 100644 tests/unit/Flash/Direct/FlashDirectEmptyCSSCest.php delete mode 100644 tests/unit/Flash/Direct/FlashDirectEmptyCSSTest.php create mode 100644 tests/unit/Flash/Direct/GetAutoescapeCest.php create mode 100644 tests/unit/Flash/Direct/GetCustomTemplateCest.php create mode 100644 tests/unit/Flash/Direct/GetDICest.php create mode 100644 tests/unit/Flash/Direct/GetEscaperServiceCest.php create mode 100644 tests/unit/Flash/Direct/MessageCest.php create mode 100644 tests/unit/Flash/Direct/NoticeCest.php create mode 100644 tests/unit/Flash/Direct/OutputCest.php create mode 100644 tests/unit/Flash/Direct/OutputMessageCest.php create mode 100644 tests/unit/Flash/Direct/SetAutoescapeCest.php create mode 100644 tests/unit/Flash/Direct/SetAutomaticHtmlCest.php create mode 100644 tests/unit/Flash/Direct/SetCssClassesCest.php create mode 100644 tests/unit/Flash/Direct/SetCustomTemplateCest.php create mode 100644 tests/unit/Flash/Direct/SetDICest.php create mode 100644 tests/unit/Flash/Direct/SetEscaperServiceCest.php create mode 100644 tests/unit/Flash/Direct/SetImplicitFlushCest.php create mode 100644 tests/unit/Flash/Direct/SuccessCest.php create mode 100644 tests/unit/Flash/Direct/WarningCest.php create mode 100644 tests/unit/Flash/ErrorCest.php create mode 100644 tests/unit/Flash/GetAutoescapeCest.php create mode 100644 tests/unit/Flash/GetCustomTemplateCest.php create mode 100644 tests/unit/Flash/GetDICest.php create mode 100644 tests/unit/Flash/GetEscaperServiceCest.php create mode 100644 tests/unit/Flash/MessageCest.php create mode 100644 tests/unit/Flash/NoticeCest.php create mode 100644 tests/unit/Flash/OutputMessageCest.php create mode 100644 tests/unit/Flash/Session/ClearCest.php create mode 100644 tests/unit/Flash/Session/ConstructCest.php create mode 100644 tests/unit/Flash/Session/ErrorCest.php create mode 100644 tests/unit/Flash/Session/GetAutoescapeCest.php create mode 100644 tests/unit/Flash/Session/GetCustomTemplateCest.php create mode 100644 tests/unit/Flash/Session/GetDICest.php create mode 100644 tests/unit/Flash/Session/GetEscaperServiceCest.php create mode 100644 tests/unit/Flash/Session/GetMessagesCest.php create mode 100644 tests/unit/Flash/Session/HasCest.php create mode 100644 tests/unit/Flash/Session/MessageCest.php create mode 100644 tests/unit/Flash/Session/NoticeCest.php create mode 100644 tests/unit/Flash/Session/OutputCest.php create mode 100644 tests/unit/Flash/Session/OutputMessageCest.php create mode 100644 tests/unit/Flash/Session/SetAutoescapeCest.php create mode 100644 tests/unit/Flash/Session/SetAutomaticHtmlCest.php create mode 100644 tests/unit/Flash/Session/SetCssClassesCest.php create mode 100644 tests/unit/Flash/Session/SetCustomTemplateCest.php create mode 100644 tests/unit/Flash/Session/SetDICest.php create mode 100644 tests/unit/Flash/Session/SetEscaperServiceCest.php create mode 100644 tests/unit/Flash/Session/SetImplicitFlushCest.php create mode 100644 tests/unit/Flash/Session/SuccessCest.php create mode 100644 tests/unit/Flash/Session/WarningCest.php create mode 100644 tests/unit/Flash/SessionCest.php delete mode 100644 tests/unit/Flash/SessionTest.php create mode 100644 tests/unit/Flash/SetAutoescapeCest.php create mode 100644 tests/unit/Flash/SetAutomaticHtmlCest.php create mode 100644 tests/unit/Flash/SetCssClassesCest.php create mode 100644 tests/unit/Flash/SetCustomTemplateCest.php create mode 100644 tests/unit/Flash/SetDICest.php create mode 100644 tests/unit/Flash/SetEscaperServiceCest.php create mode 100644 tests/unit/Flash/SetImplicitFlushCest.php create mode 100644 tests/unit/Flash/SuccessCest.php create mode 100644 tests/unit/Flash/WarningCest.php delete mode 100644 tests/unit/Forms/Element/TextTest.php delete mode 100644 tests/unit/Forms/FormTest.php create mode 100644 tests/unit/Http/Cookie/ConstructCest.php create mode 100644 tests/unit/Http/Cookie/CookieCest.php create mode 100644 tests/unit/Http/Cookie/DeleteCest.php create mode 100644 tests/unit/Http/Cookie/GetDICest.php create mode 100644 tests/unit/Http/Cookie/GetDomainCest.php create mode 100644 tests/unit/Http/Cookie/GetExpirationCest.php create mode 100644 tests/unit/Http/Cookie/GetHttpOnlyCest.php create mode 100644 tests/unit/Http/Cookie/GetNameCest.php create mode 100644 tests/unit/Http/Cookie/GetPathCest.php create mode 100644 tests/unit/Http/Cookie/GetSecureCest.php create mode 100644 tests/unit/Http/Cookie/GetValueCest.php create mode 100644 tests/unit/Http/Cookie/IsUsingEncryptionCest.php create mode 100644 tests/unit/Http/Cookie/RestoreCest.php create mode 100644 tests/unit/Http/Cookie/SendCest.php create mode 100644 tests/unit/Http/Cookie/SetDICest.php create mode 100644 tests/unit/Http/Cookie/SetDomainCest.php create mode 100644 tests/unit/Http/Cookie/SetExpirationCest.php create mode 100644 tests/unit/Http/Cookie/SetHttpOnlyCest.php create mode 100644 tests/unit/Http/Cookie/SetPathCest.php create mode 100644 tests/unit/Http/Cookie/SetSecureCest.php create mode 100644 tests/unit/Http/Cookie/SetSignKeyCest.php create mode 100644 tests/unit/Http/Cookie/SetValueCest.php create mode 100644 tests/unit/Http/Cookie/ToStringCest.php create mode 100644 tests/unit/Http/Cookie/UseEncryptionCest.php delete mode 100644 tests/unit/Http/CookieTest.php create mode 100644 tests/unit/Http/Request/AuthHeaderCest.php delete mode 100644 tests/unit/Http/Request/AuthHeaderTest.php create mode 100644 tests/unit/Http/Request/File/ConstructCest.php create mode 100644 tests/unit/Http/Request/File/GetErrorCest.php create mode 100644 tests/unit/Http/Request/File/GetExtensionCest.php create mode 100644 tests/unit/Http/Request/File/GetKeyCest.php create mode 100644 tests/unit/Http/Request/File/GetNameCest.php create mode 100644 tests/unit/Http/Request/File/GetRealTypeCest.php create mode 100644 tests/unit/Http/Request/File/GetSizeCest.php create mode 100644 tests/unit/Http/Request/File/GetTempNameCest.php create mode 100644 tests/unit/Http/Request/File/GetTypeCest.php create mode 100644 tests/unit/Http/Request/File/IsUploadedFileCest.php create mode 100644 tests/unit/Http/Request/File/MoveToCest.php create mode 100644 tests/unit/Http/Request/FileCest.php delete mode 100644 tests/unit/Http/Request/FileTest.php create mode 100644 tests/unit/Http/Request/GetAcceptableContentCest.php create mode 100644 tests/unit/Http/Request/GetBasicAuthCest.php create mode 100644 tests/unit/Http/Request/GetBestAcceptCest.php create mode 100644 tests/unit/Http/Request/GetBestCharsetCest.php create mode 100644 tests/unit/Http/Request/GetBestLanguageCest.php create mode 100644 tests/unit/Http/Request/GetCest.php create mode 100644 tests/unit/Http/Request/GetClientAddressCest.php create mode 100644 tests/unit/Http/Request/GetClientCharsetsCest.php create mode 100644 tests/unit/Http/Request/GetContentTypeCest.php create mode 100644 tests/unit/Http/Request/GetDICest.php create mode 100644 tests/unit/Http/Request/GetDigestAuthCest.php create mode 100644 tests/unit/Http/Request/GetHTTPRefererCest.php create mode 100644 tests/unit/Http/Request/GetHeaderCest.php create mode 100644 tests/unit/Http/Request/GetHeadersCest.php create mode 100644 tests/unit/Http/Request/GetHttpHostCest.php create mode 100644 tests/unit/Http/Request/GetHttpMethodParameterOverrideCest.php create mode 100644 tests/unit/Http/Request/GetJsonRawBodyCest.php create mode 100644 tests/unit/Http/Request/GetLanguagesCest.php create mode 100644 tests/unit/Http/Request/GetMethodCest.php create mode 100644 tests/unit/Http/Request/GetPortCest.php create mode 100644 tests/unit/Http/Request/GetPostCest.php create mode 100644 tests/unit/Http/Request/GetPutCest.php create mode 100644 tests/unit/Http/Request/GetQueryCest.php create mode 100644 tests/unit/Http/Request/GetRawBodyCest.php create mode 100644 tests/unit/Http/Request/GetSchemeCest.php create mode 100644 tests/unit/Http/Request/GetServerAddressCest.php create mode 100644 tests/unit/Http/Request/GetServerCest.php create mode 100644 tests/unit/Http/Request/GetServerNameCest.php create mode 100644 tests/unit/Http/Request/GetURICest.php create mode 100644 tests/unit/Http/Request/GetUploadedFilesCest.php create mode 100644 tests/unit/Http/Request/GetUserAgentCest.php create mode 100644 tests/unit/Http/Request/HasCest.php create mode 100644 tests/unit/Http/Request/HasFilesCest.php create mode 100644 tests/unit/Http/Request/HasHeaderCest.php create mode 100644 tests/unit/Http/Request/HasPostCest.php create mode 100644 tests/unit/Http/Request/HasPutCest.php create mode 100644 tests/unit/Http/Request/HasQueryCest.php create mode 100644 tests/unit/Http/Request/HasServerCest.php create mode 100644 tests/unit/Http/Request/IsAjaxCest.php create mode 100644 tests/unit/Http/Request/IsConnectCest.php create mode 100644 tests/unit/Http/Request/IsDeleteCest.php create mode 100644 tests/unit/Http/Request/IsGetCest.php create mode 100644 tests/unit/Http/Request/IsHeadCest.php create mode 100644 tests/unit/Http/Request/IsMethodCest.php create mode 100644 tests/unit/Http/Request/IsOptionsCest.php create mode 100644 tests/unit/Http/Request/IsPatchCest.php create mode 100644 tests/unit/Http/Request/IsPostCest.php create mode 100644 tests/unit/Http/Request/IsPurgeCest.php create mode 100644 tests/unit/Http/Request/IsPutCest.php create mode 100644 tests/unit/Http/Request/IsSecureCest.php create mode 100644 tests/unit/Http/Request/IsSoapCest.php create mode 100644 tests/unit/Http/Request/IsStrictHostCheckCest.php create mode 100644 tests/unit/Http/Request/IsTraceCest.php create mode 100644 tests/unit/Http/Request/IsValidHttpMethodCest.php create mode 100644 tests/unit/Http/Request/RequestCest.php create mode 100644 tests/unit/Http/Request/SetDICest.php create mode 100644 tests/unit/Http/Request/SetHttpMethodParameterOverrideCest.php create mode 100644 tests/unit/Http/Request/SetStrictHostCheckCest.php delete mode 100644 tests/unit/Http/RequestTest.php create mode 100644 tests/unit/Http/Response/AppendContentCest.php create mode 100644 tests/unit/Http/Response/ConstructCest.php create mode 100644 tests/unit/Http/Response/Cookies/ConstructCest.php create mode 100644 tests/unit/Http/Response/Cookies/DeleteCest.php create mode 100644 tests/unit/Http/Response/Cookies/GetCest.php create mode 100644 tests/unit/Http/Response/Cookies/GetCookiesCest.php create mode 100644 tests/unit/Http/Response/Cookies/GetDICest.php create mode 100644 tests/unit/Http/Response/Cookies/HasCest.php create mode 100644 tests/unit/Http/Response/Cookies/IsUsingEncryptionCest.php create mode 100644 tests/unit/Http/Response/Cookies/ResetCest.php create mode 100644 tests/unit/Http/Response/Cookies/SendCest.php create mode 100644 tests/unit/Http/Response/Cookies/SetCest.php create mode 100644 tests/unit/Http/Response/Cookies/SetDICest.php create mode 100644 tests/unit/Http/Response/Cookies/SetSignKeyCest.php create mode 100644 tests/unit/Http/Response/Cookies/UseEncryptionCest.php create mode 100644 tests/unit/Http/Response/CookiesCest.php delete mode 100644 tests/unit/Http/Response/CookiesTest.php create mode 100644 tests/unit/Http/Response/GetContentCest.php create mode 100644 tests/unit/Http/Response/GetCookiesCest.php create mode 100644 tests/unit/Http/Response/GetDICest.php create mode 100644 tests/unit/Http/Response/GetHeadersCest.php create mode 100644 tests/unit/Http/Response/GetReasonPhraseCest.php create mode 100644 tests/unit/Http/Response/GetStatusCodeCest.php create mode 100644 tests/unit/Http/Response/HasHeaderCest.php create mode 100644 tests/unit/Http/Response/Headers/GetCest.php create mode 100644 tests/unit/Http/Response/Headers/HasCest.php create mode 100644 tests/unit/Http/Response/Headers/RemoveCest.php create mode 100644 tests/unit/Http/Response/Headers/ResetCest.php create mode 100644 tests/unit/Http/Response/Headers/SendCest.php create mode 100644 tests/unit/Http/Response/Headers/SetCest.php create mode 100644 tests/unit/Http/Response/Headers/SetRawCest.php create mode 100644 tests/unit/Http/Response/Headers/SetStateCest.php create mode 100644 tests/unit/Http/Response/Headers/ToArrayCest.php create mode 100644 tests/unit/Http/Response/HeadersCest.php delete mode 100644 tests/unit/Http/Response/HeadersTest.php create mode 100644 tests/unit/Http/Response/IsSentCest.php create mode 100644 tests/unit/Http/Response/RedirectCest.php create mode 100644 tests/unit/Http/Response/RemoveHeaderCest.php create mode 100644 tests/unit/Http/Response/ResetHeadersCest.php create mode 100644 tests/unit/Http/Response/ResponseCest.php create mode 100644 tests/unit/Http/Response/SendCest.php create mode 100644 tests/unit/Http/Response/SendCookiesCest.php create mode 100644 tests/unit/Http/Response/SendHeadersCest.php create mode 100644 tests/unit/Http/Response/SetCacheCest.php create mode 100644 tests/unit/Http/Response/SetContentCest.php create mode 100644 tests/unit/Http/Response/SetContentLengthCest.php create mode 100644 tests/unit/Http/Response/SetContentTypeCest.php create mode 100644 tests/unit/Http/Response/SetCookiesCest.php create mode 100644 tests/unit/Http/Response/SetDICest.php create mode 100644 tests/unit/Http/Response/SetEtagCest.php create mode 100644 tests/unit/Http/Response/SetExpiresCest.php create mode 100644 tests/unit/Http/Response/SetFileToSendCest.php create mode 100644 tests/unit/Http/Response/SetHeaderCest.php create mode 100644 tests/unit/Http/Response/SetHeadersCest.php create mode 100644 tests/unit/Http/Response/SetJsonContentCest.php create mode 100644 tests/unit/Http/Response/SetLastModifiedCest.php create mode 100644 tests/unit/Http/Response/SetNotModifiedCest.php create mode 100644 tests/unit/Http/Response/SetRawHeaderCest.php create mode 100644 tests/unit/Http/Response/SetStatusCodeCest.php delete mode 100644 tests/unit/Http/ResponseTest.php create mode 100644 tests/unit/Image/Adapter/BackgroundCest.php create mode 100644 tests/unit/Image/Adapter/BlurCest.php create mode 100644 tests/unit/Image/Adapter/CropCest.php create mode 100644 tests/unit/Image/Adapter/FlipCest.php create mode 100644 tests/unit/Image/Adapter/Gd/BackgroundCest.php create mode 100644 tests/unit/Image/Adapter/Gd/BlurCest.php create mode 100644 tests/unit/Image/Adapter/Gd/CheckCest.php create mode 100644 tests/unit/Image/Adapter/Gd/ConstructCest.php create mode 100644 tests/unit/Image/Adapter/Gd/CropCest.php create mode 100644 tests/unit/Image/Adapter/Gd/DestructCest.php create mode 100644 tests/unit/Image/Adapter/Gd/FlipCest.php create mode 100644 tests/unit/Image/Adapter/Gd/GetHeightCest.php create mode 100644 tests/unit/Image/Adapter/Gd/GetImageCest.php create mode 100644 tests/unit/Image/Adapter/Gd/GetMimeCest.php create mode 100644 tests/unit/Image/Adapter/Gd/GetRealpathCest.php create mode 100644 tests/unit/Image/Adapter/Gd/GetTypeCest.php create mode 100644 tests/unit/Image/Adapter/Gd/GetWidthCest.php create mode 100644 tests/unit/Image/Adapter/Gd/LiquidRescaleCest.php create mode 100644 tests/unit/Image/Adapter/Gd/MaskCest.php create mode 100644 tests/unit/Image/Adapter/Gd/PixelateCest.php create mode 100644 tests/unit/Image/Adapter/Gd/ReflectionCest.php create mode 100644 tests/unit/Image/Adapter/Gd/RenderCest.php create mode 100644 tests/unit/Image/Adapter/Gd/ResizeCest.php create mode 100644 tests/unit/Image/Adapter/Gd/RotateCest.php create mode 100644 tests/unit/Image/Adapter/Gd/SaveCest.php create mode 100644 tests/unit/Image/Adapter/Gd/SharpenCest.php create mode 100644 tests/unit/Image/Adapter/Gd/TextCest.php create mode 100644 tests/unit/Image/Adapter/Gd/WatermarkCest.php delete mode 100644 tests/unit/Image/Adapter/GdTest.php create mode 100644 tests/unit/Image/Adapter/GetHeightCest.php create mode 100644 tests/unit/Image/Adapter/GetImageCest.php create mode 100644 tests/unit/Image/Adapter/GetMimeCest.php create mode 100644 tests/unit/Image/Adapter/GetRealpathCest.php create mode 100644 tests/unit/Image/Adapter/GetTypeCest.php create mode 100644 tests/unit/Image/Adapter/GetWidthCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/BackgroundCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/BlurCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/CheckCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/ConstructCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/CropCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/DestructCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/FlipCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/GetHeightCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/GetImageCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/GetInternalImInstanceCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/GetMimeCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/GetRealpathCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/GetTypeCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/GetWidthCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/LiquidRescaleCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/MaskCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/PixelateCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/ReflectionCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/RenderCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/ResizeCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/RotateCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/SaveCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/SetResourceLimitCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/SharpenCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/TextCest.php create mode 100644 tests/unit/Image/Adapter/Imagick/WatermarkCest.php create mode 100644 tests/unit/Image/Adapter/ImagickCest.php delete mode 100644 tests/unit/Image/Adapter/ImagickTest.php create mode 100644 tests/unit/Image/Adapter/LiquidRescaleCest.php create mode 100644 tests/unit/Image/Adapter/MaskCest.php create mode 100644 tests/unit/Image/Adapter/PixelateCest.php create mode 100644 tests/unit/Image/Adapter/ReflectionCest.php create mode 100644 tests/unit/Image/Adapter/RenderCest.php create mode 100644 tests/unit/Image/Adapter/ResizeCest.php create mode 100644 tests/unit/Image/Adapter/RotateCest.php create mode 100644 tests/unit/Image/Adapter/SaveCest.php create mode 100644 tests/unit/Image/Adapter/SharpenCest.php create mode 100644 tests/unit/Image/Adapter/TextCest.php create mode 100644 tests/unit/Image/Adapter/WatermarkCest.php create mode 100644 tests/unit/Image/Factory/LoadCest.php delete mode 100644 tests/unit/Image/FactoryTest.php create mode 100644 tests/unit/Kernel/PreComputeHashKeyCest.php create mode 100644 tests/unit/Loader/AutoLoadCest.php create mode 100644 tests/unit/Loader/GetCheckedPathCest.php create mode 100644 tests/unit/Loader/GetClassesCest.php create mode 100644 tests/unit/Loader/GetDirsCest.php create mode 100644 tests/unit/Loader/GetEventsManagerCest.php create mode 100644 tests/unit/Loader/GetExtensionsCest.php create mode 100644 tests/unit/Loader/GetFilesCest.php create mode 100644 tests/unit/Loader/GetFoundPathCest.php create mode 100644 tests/unit/Loader/GetNamespacesCest.php create mode 100644 tests/unit/Loader/LoadFilesCest.php create mode 100644 tests/unit/Loader/LoaderCest.php create mode 100644 tests/unit/Loader/RegisterCest.php create mode 100644 tests/unit/Loader/RegisterClassesCest.php create mode 100644 tests/unit/Loader/RegisterDirsCest.php create mode 100644 tests/unit/Loader/RegisterFilesCest.php create mode 100644 tests/unit/Loader/RegisterNamespacesCest.php create mode 100644 tests/unit/Loader/SetEventsManagerCest.php create mode 100644 tests/unit/Loader/SetExtensionsCest.php create mode 100644 tests/unit/Loader/SetFileCheckingCallbackCest.php create mode 100644 tests/unit/Loader/UnregisterCest.php delete mode 100644 tests/unit/LoaderTest.php create mode 100644 tests/unit/Logger/Adapter/AlertCest.php create mode 100644 tests/unit/Logger/Adapter/BeginCest.php create mode 100644 tests/unit/Logger/Adapter/Blackhole/AlertCest.php create mode 100644 tests/unit/Logger/Adapter/Blackhole/BeginCest.php create mode 100644 tests/unit/Logger/Adapter/Blackhole/CloseCest.php create mode 100644 tests/unit/Logger/Adapter/Blackhole/CommitCest.php create mode 100644 tests/unit/Logger/Adapter/Blackhole/CriticalCest.php create mode 100644 tests/unit/Logger/Adapter/Blackhole/DebugCest.php create mode 100644 tests/unit/Logger/Adapter/Blackhole/EmergencyCest.php create mode 100644 tests/unit/Logger/Adapter/Blackhole/ErrorCest.php create mode 100644 tests/unit/Logger/Adapter/Blackhole/GetFormatterCest.php create mode 100644 tests/unit/Logger/Adapter/Blackhole/GetLogLevelCest.php create mode 100644 tests/unit/Logger/Adapter/Blackhole/InfoCest.php create mode 100644 tests/unit/Logger/Adapter/Blackhole/IsTransactionCest.php create mode 100644 tests/unit/Logger/Adapter/Blackhole/LogCest.php create mode 100644 tests/unit/Logger/Adapter/Blackhole/LogInternalCest.php create mode 100644 tests/unit/Logger/Adapter/Blackhole/NoticeCest.php create mode 100644 tests/unit/Logger/Adapter/Blackhole/RollbackCest.php create mode 100644 tests/unit/Logger/Adapter/Blackhole/SetFormatterCest.php create mode 100644 tests/unit/Logger/Adapter/Blackhole/SetLogLevelCest.php create mode 100644 tests/unit/Logger/Adapter/Blackhole/WarningCest.php create mode 100644 tests/unit/Logger/Adapter/CloseCest.php create mode 100644 tests/unit/Logger/Adapter/CommitCest.php create mode 100644 tests/unit/Logger/Adapter/CriticalCest.php create mode 100644 tests/unit/Logger/Adapter/DebugCest.php create mode 100644 tests/unit/Logger/Adapter/EmergencyCest.php create mode 100644 tests/unit/Logger/Adapter/ErrorCest.php create mode 100644 tests/unit/Logger/Adapter/File/AlertCest.php create mode 100644 tests/unit/Logger/Adapter/File/BeginCest.php create mode 100644 tests/unit/Logger/Adapter/File/CloseCest.php create mode 100644 tests/unit/Logger/Adapter/File/CommitCest.php create mode 100644 tests/unit/Logger/Adapter/File/ConstructCest.php create mode 100644 tests/unit/Logger/Adapter/File/CriticalCest.php create mode 100644 tests/unit/Logger/Adapter/File/DebugCest.php create mode 100644 tests/unit/Logger/Adapter/File/EmergencyCest.php create mode 100644 tests/unit/Logger/Adapter/File/ErrorCest.php create mode 100644 tests/unit/Logger/Adapter/File/GetFormatterCest.php create mode 100644 tests/unit/Logger/Adapter/File/GetLogLevelCest.php create mode 100644 tests/unit/Logger/Adapter/File/GetPathCest.php create mode 100644 tests/unit/Logger/Adapter/File/InfoCest.php create mode 100644 tests/unit/Logger/Adapter/File/IsTransactionCest.php create mode 100644 tests/unit/Logger/Adapter/File/LogCest.php create mode 100644 tests/unit/Logger/Adapter/File/LogInternalCest.php create mode 100644 tests/unit/Logger/Adapter/File/NoticeCest.php create mode 100644 tests/unit/Logger/Adapter/File/RollbackCest.php create mode 100644 tests/unit/Logger/Adapter/File/SetFormatterCest.php create mode 100644 tests/unit/Logger/Adapter/File/SetLogLevelCest.php create mode 100644 tests/unit/Logger/Adapter/File/WakeupCest.php create mode 100644 tests/unit/Logger/Adapter/File/WarningCest.php create mode 100644 tests/unit/Logger/Adapter/FileCest.php delete mode 100644 tests/unit/Logger/Adapter/FileTest.php create mode 100644 tests/unit/Logger/Adapter/Firephp/AlertCest.php create mode 100644 tests/unit/Logger/Adapter/Firephp/BeginCest.php create mode 100644 tests/unit/Logger/Adapter/Firephp/CloseCest.php create mode 100644 tests/unit/Logger/Adapter/Firephp/CommitCest.php create mode 100644 tests/unit/Logger/Adapter/Firephp/CriticalCest.php create mode 100644 tests/unit/Logger/Adapter/Firephp/DebugCest.php create mode 100644 tests/unit/Logger/Adapter/Firephp/EmergencyCest.php create mode 100644 tests/unit/Logger/Adapter/Firephp/ErrorCest.php create mode 100644 tests/unit/Logger/Adapter/Firephp/GetFormatterCest.php create mode 100644 tests/unit/Logger/Adapter/Firephp/GetLogLevelCest.php create mode 100644 tests/unit/Logger/Adapter/Firephp/InfoCest.php create mode 100644 tests/unit/Logger/Adapter/Firephp/IsTransactionCest.php create mode 100644 tests/unit/Logger/Adapter/Firephp/LogCest.php create mode 100644 tests/unit/Logger/Adapter/Firephp/LogInternalCest.php create mode 100644 tests/unit/Logger/Adapter/Firephp/NoticeCest.php create mode 100644 tests/unit/Logger/Adapter/Firephp/RollbackCest.php create mode 100644 tests/unit/Logger/Adapter/Firephp/SetFormatterCest.php create mode 100644 tests/unit/Logger/Adapter/Firephp/SetLogLevelCest.php create mode 100644 tests/unit/Logger/Adapter/Firephp/WarningCest.php create mode 100644 tests/unit/Logger/Adapter/FirephpCest.php delete mode 100644 tests/unit/Logger/Adapter/FirephpTest.php create mode 100644 tests/unit/Logger/Adapter/GetFormatterCest.php create mode 100644 tests/unit/Logger/Adapter/GetLogLevelCest.php create mode 100644 tests/unit/Logger/Adapter/InfoCest.php create mode 100644 tests/unit/Logger/Adapter/IsTransactionCest.php create mode 100644 tests/unit/Logger/Adapter/LogCest.php create mode 100644 tests/unit/Logger/Adapter/NoticeCest.php create mode 100644 tests/unit/Logger/Adapter/RollbackCest.php create mode 100644 tests/unit/Logger/Adapter/SetFormatterCest.php create mode 100644 tests/unit/Logger/Adapter/SetLogLevelCest.php create mode 100644 tests/unit/Logger/Adapter/Stream/AlertCest.php create mode 100644 tests/unit/Logger/Adapter/Stream/BeginCest.php create mode 100644 tests/unit/Logger/Adapter/Stream/CloseCest.php create mode 100644 tests/unit/Logger/Adapter/Stream/CommitCest.php create mode 100644 tests/unit/Logger/Adapter/Stream/ConstructCest.php create mode 100644 tests/unit/Logger/Adapter/Stream/CriticalCest.php create mode 100644 tests/unit/Logger/Adapter/Stream/DebugCest.php create mode 100644 tests/unit/Logger/Adapter/Stream/EmergencyCest.php create mode 100644 tests/unit/Logger/Adapter/Stream/ErrorCest.php create mode 100644 tests/unit/Logger/Adapter/Stream/GetFormatterCest.php create mode 100644 tests/unit/Logger/Adapter/Stream/GetLogLevelCest.php create mode 100644 tests/unit/Logger/Adapter/Stream/InfoCest.php create mode 100644 tests/unit/Logger/Adapter/Stream/IsTransactionCest.php create mode 100644 tests/unit/Logger/Adapter/Stream/LogCest.php create mode 100644 tests/unit/Logger/Adapter/Stream/LogInternalCest.php create mode 100644 tests/unit/Logger/Adapter/Stream/NoticeCest.php create mode 100644 tests/unit/Logger/Adapter/Stream/RollbackCest.php create mode 100644 tests/unit/Logger/Adapter/Stream/SetFormatterCest.php create mode 100644 tests/unit/Logger/Adapter/Stream/SetLogLevelCest.php create mode 100644 tests/unit/Logger/Adapter/Stream/WarningCest.php create mode 100644 tests/unit/Logger/Adapter/Syslog/AlertCest.php create mode 100644 tests/unit/Logger/Adapter/Syslog/BeginCest.php create mode 100644 tests/unit/Logger/Adapter/Syslog/CloseCest.php create mode 100644 tests/unit/Logger/Adapter/Syslog/CommitCest.php create mode 100644 tests/unit/Logger/Adapter/Syslog/ConstructCest.php create mode 100644 tests/unit/Logger/Adapter/Syslog/CriticalCest.php create mode 100644 tests/unit/Logger/Adapter/Syslog/DebugCest.php create mode 100644 tests/unit/Logger/Adapter/Syslog/EmergencyCest.php create mode 100644 tests/unit/Logger/Adapter/Syslog/ErrorCest.php create mode 100644 tests/unit/Logger/Adapter/Syslog/GetFormatterCest.php create mode 100644 tests/unit/Logger/Adapter/Syslog/GetLogLevelCest.php create mode 100644 tests/unit/Logger/Adapter/Syslog/InfoCest.php create mode 100644 tests/unit/Logger/Adapter/Syslog/IsTransactionCest.php create mode 100644 tests/unit/Logger/Adapter/Syslog/LogCest.php create mode 100644 tests/unit/Logger/Adapter/Syslog/LogInternalCest.php create mode 100644 tests/unit/Logger/Adapter/Syslog/NoticeCest.php create mode 100644 tests/unit/Logger/Adapter/Syslog/RollbackCest.php create mode 100644 tests/unit/Logger/Adapter/Syslog/SetFormatterCest.php create mode 100644 tests/unit/Logger/Adapter/Syslog/SetLogLevelCest.php create mode 100644 tests/unit/Logger/Adapter/Syslog/WarningCest.php create mode 100644 tests/unit/Logger/Adapter/WarningCest.php create mode 100644 tests/unit/Logger/Factory/LoadCest.php delete mode 100644 tests/unit/Logger/FactoryTest.php create mode 100644 tests/unit/Logger/Formatter/Firephp/EnableLabelsCest.php create mode 100644 tests/unit/Logger/Formatter/Firephp/FormatCest.php create mode 100644 tests/unit/Logger/Formatter/Firephp/GetShowBacktraceCest.php create mode 100644 tests/unit/Logger/Formatter/Firephp/GetTypeStringCest.php create mode 100644 tests/unit/Logger/Formatter/Firephp/InterpolateCest.php create mode 100644 tests/unit/Logger/Formatter/Firephp/LabelsEnabledCest.php create mode 100644 tests/unit/Logger/Formatter/Firephp/SetShowBacktraceCest.php create mode 100644 tests/unit/Logger/Formatter/FormatCest.php create mode 100644 tests/unit/Logger/Formatter/GetTypeStringCest.php create mode 100644 tests/unit/Logger/Formatter/InterpolateCest.php create mode 100644 tests/unit/Logger/Formatter/Json/FormatCest.php create mode 100644 tests/unit/Logger/Formatter/Json/GetTypeStringCest.php create mode 100644 tests/unit/Logger/Formatter/Json/InterpolateCest.php create mode 100644 tests/unit/Logger/Formatter/Line/ConstructCest.php create mode 100644 tests/unit/Logger/Formatter/Line/FormatCest.php create mode 100644 tests/unit/Logger/Formatter/Line/GetDateFormatCest.php create mode 100644 tests/unit/Logger/Formatter/Line/GetFormatCest.php create mode 100644 tests/unit/Logger/Formatter/Line/GetTypeStringCest.php create mode 100644 tests/unit/Logger/Formatter/Line/InterpolateCest.php create mode 100644 tests/unit/Logger/Formatter/Line/SetDateFormatCest.php create mode 100644 tests/unit/Logger/Formatter/Line/SetFormatCest.php create mode 100644 tests/unit/Logger/Formatter/LineCest.php delete mode 100644 tests/unit/Logger/Formatter/LineTest.php create mode 100644 tests/unit/Logger/Formatter/Syslog/FormatCest.php create mode 100644 tests/unit/Logger/Formatter/Syslog/GetTypeStringCest.php create mode 100644 tests/unit/Logger/Formatter/Syslog/InterpolateCest.php create mode 100644 tests/unit/Logger/Item/ConstructCest.php create mode 100644 tests/unit/Logger/Item/GetContextCest.php create mode 100644 tests/unit/Logger/Item/GetMessageCest.php create mode 100644 tests/unit/Logger/Item/GetTimeCest.php create mode 100644 tests/unit/Logger/Item/GetTypeCest.php create mode 100644 tests/unit/Logger/Multiple/AlertCest.php create mode 100644 tests/unit/Logger/Multiple/CriticalCest.php create mode 100644 tests/unit/Logger/Multiple/DebugCest.php create mode 100644 tests/unit/Logger/Multiple/EmergencyCest.php create mode 100644 tests/unit/Logger/Multiple/ErrorCest.php create mode 100644 tests/unit/Logger/Multiple/GetFormatterCest.php create mode 100644 tests/unit/Logger/Multiple/GetLogLevelCest.php create mode 100644 tests/unit/Logger/Multiple/GetLoggersCest.php create mode 100644 tests/unit/Logger/Multiple/InfoCest.php create mode 100644 tests/unit/Logger/Multiple/LogCest.php create mode 100644 tests/unit/Logger/Multiple/NoticeCest.php create mode 100644 tests/unit/Logger/Multiple/PushCest.php create mode 100644 tests/unit/Logger/Multiple/SetFormatterCest.php create mode 100644 tests/unit/Logger/Multiple/SetLogLevelCest.php create mode 100644 tests/unit/Logger/Multiple/WarningCest.php create mode 100644 tests/unit/Messages/Message/ConstructCest.php create mode 100644 tests/unit/Messages/Message/GetCodeCest.php create mode 100644 tests/unit/Messages/Message/GetFieldCest.php create mode 100644 tests/unit/Messages/Message/GetMessageCest.php create mode 100644 tests/unit/Messages/Message/GetTypeCest.php create mode 100644 tests/unit/Messages/Message/JsonSerializeCest.php create mode 100644 tests/unit/Messages/Message/SetCodeCest.php create mode 100644 tests/unit/Messages/Message/SetFieldCest.php create mode 100644 tests/unit/Messages/Message/SetMessageCest.php create mode 100644 tests/unit/Messages/Message/SetStateCest.php create mode 100644 tests/unit/Messages/Message/SetTypeCest.php create mode 100644 tests/unit/Messages/Message/ToStringCest.php create mode 100644 tests/unit/Messages/Messages/AppendMessageCest.php create mode 100644 tests/unit/Messages/Messages/AppendMessagesCest.php create mode 100644 tests/unit/Messages/Messages/ConstructCest.php create mode 100644 tests/unit/Messages/Messages/CountCest.php create mode 100644 tests/unit/Messages/Messages/CurrentCest.php create mode 100644 tests/unit/Messages/Messages/FilterCest.php create mode 100644 tests/unit/Messages/Messages/JsonSerializeCest.php create mode 100644 tests/unit/Messages/Messages/KeyCest.php create mode 100644 tests/unit/Messages/Messages/NextCest.php create mode 100644 tests/unit/Messages/Messages/OffsetExistsCest.php create mode 100644 tests/unit/Messages/Messages/OffsetGetCest.php create mode 100644 tests/unit/Messages/Messages/OffsetSetCest.php create mode 100644 tests/unit/Messages/Messages/OffsetUnsetCest.php create mode 100644 tests/unit/Messages/Messages/RewindCest.php create mode 100644 tests/unit/Messages/Messages/SetStateCest.php create mode 100644 tests/unit/Messages/Messages/ValidCest.php delete mode 100644 tests/unit/Messages/MessagesTest.php create mode 100644 tests/unit/Mvc/Application/ConstructCest.php create mode 100644 tests/unit/Mvc/Application/GetDICest.php create mode 100644 tests/unit/Mvc/Application/GetDefaultModuleCest.php create mode 100644 tests/unit/Mvc/Application/GetEventsManagerCest.php create mode 100644 tests/unit/Mvc/Application/GetModuleCest.php create mode 100644 tests/unit/Mvc/Application/GetModulesCest.php create mode 100644 tests/unit/Mvc/Application/HandleCest.php create mode 100644 tests/unit/Mvc/Application/RegisterModulesCest.php create mode 100644 tests/unit/Mvc/Application/SendCookiesOnHandleRequestCest.php create mode 100644 tests/unit/Mvc/Application/SendHeadersOnHandleRequestCest.php create mode 100644 tests/unit/Mvc/Application/SetDICest.php create mode 100644 tests/unit/Mvc/Application/SetDefaultModuleCest.php create mode 100644 tests/unit/Mvc/Application/SetEventsManagerCest.php create mode 100644 tests/unit/Mvc/Application/UnderscoreGetCest.php create mode 100644 tests/unit/Mvc/Application/UseImplicitViewCest.php create mode 100644 tests/unit/Mvc/Collection/AggregateCest.php create mode 100644 tests/unit/Mvc/Collection/AppendMessageCest.php create mode 100644 tests/unit/Mvc/Collection/Behavior/ConstructCest.php create mode 100644 tests/unit/Mvc/Collection/Behavior/MissingMethodCest.php create mode 100644 tests/unit/Mvc/Collection/Behavior/NotifyCest.php create mode 100644 tests/unit/Mvc/Collection/Behavior/SoftDelete/ConstructCest.php create mode 100644 tests/unit/Mvc/Collection/Behavior/SoftDelete/MissingMethodCest.php create mode 100644 tests/unit/Mvc/Collection/Behavior/SoftDelete/NotifyCest.php create mode 100644 tests/unit/Mvc/Collection/Behavior/Timestampable/ConstructCest.php create mode 100644 tests/unit/Mvc/Collection/Behavior/Timestampable/MissingMethodCest.php create mode 100644 tests/unit/Mvc/Collection/Behavior/Timestampable/NotifyCest.php create mode 100644 tests/unit/Mvc/Collection/CloneResultCest.php create mode 100644 tests/unit/Mvc/Collection/ConstructCest.php create mode 100644 tests/unit/Mvc/Collection/CountCest.php create mode 100644 tests/unit/Mvc/Collection/CreateCest.php create mode 100644 tests/unit/Mvc/Collection/CreateIfNotExistCest.php create mode 100644 tests/unit/Mvc/Collection/DeleteCest.php create mode 100644 tests/unit/Mvc/Collection/Document/OffsetExistsCest.php create mode 100644 tests/unit/Mvc/Collection/Document/OffsetGetCest.php create mode 100644 tests/unit/Mvc/Collection/Document/OffsetSetCest.php create mode 100644 tests/unit/Mvc/Collection/Document/OffsetUnsetCest.php create mode 100644 tests/unit/Mvc/Collection/Document/ReadAttributeCest.php create mode 100644 tests/unit/Mvc/Collection/Document/ToArrayCest.php create mode 100644 tests/unit/Mvc/Collection/Document/WriteAttributeCest.php create mode 100644 tests/unit/Mvc/Collection/FindByIdCest.php create mode 100644 tests/unit/Mvc/Collection/FindCest.php create mode 100644 tests/unit/Mvc/Collection/FindFirstCest.php create mode 100644 tests/unit/Mvc/Collection/FireEventCancelCest.php create mode 100644 tests/unit/Mvc/Collection/FireEventCest.php create mode 100644 tests/unit/Mvc/Collection/GetCollectionManagerCest.php create mode 100644 tests/unit/Mvc/Collection/GetConnectionCest.php create mode 100644 tests/unit/Mvc/Collection/GetConnectionServiceCest.php create mode 100644 tests/unit/Mvc/Collection/GetDICest.php create mode 100644 tests/unit/Mvc/Collection/GetDirtyStateCest.php create mode 100644 tests/unit/Mvc/Collection/GetIdCest.php create mode 100644 tests/unit/Mvc/Collection/GetMessagesCest.php create mode 100644 tests/unit/Mvc/Collection/GetReservedAttributesCest.php create mode 100644 tests/unit/Mvc/Collection/GetSourceCest.php create mode 100644 tests/unit/Mvc/Collection/Manager/AddBehaviorCest.php create mode 100644 tests/unit/Mvc/Collection/Manager/GetConnectionCest.php create mode 100644 tests/unit/Mvc/Collection/Manager/GetConnectionServiceCest.php create mode 100644 tests/unit/Mvc/Collection/Manager/GetCustomEventsManagerCest.php create mode 100644 tests/unit/Mvc/Collection/Manager/GetDICest.php create mode 100644 tests/unit/Mvc/Collection/Manager/GetEventsManagerCest.php create mode 100644 tests/unit/Mvc/Collection/Manager/GetLastInitializedCest.php create mode 100644 tests/unit/Mvc/Collection/Manager/GetServiceNameCest.php create mode 100644 tests/unit/Mvc/Collection/Manager/InitializeCest.php create mode 100644 tests/unit/Mvc/Collection/Manager/IsInitializedCest.php create mode 100644 tests/unit/Mvc/Collection/Manager/IsUsingImplicitObjectIdsCest.php create mode 100644 tests/unit/Mvc/Collection/Manager/MissingMethodCest.php create mode 100644 tests/unit/Mvc/Collection/Manager/NotifyEventCest.php create mode 100644 tests/unit/Mvc/Collection/Manager/SetConnectionServiceCest.php create mode 100644 tests/unit/Mvc/Collection/Manager/SetCustomEventsManagerCest.php create mode 100644 tests/unit/Mvc/Collection/Manager/SetDICest.php create mode 100644 tests/unit/Mvc/Collection/Manager/SetEventsManagerCest.php create mode 100644 tests/unit/Mvc/Collection/Manager/SetServiceNameCest.php create mode 100644 tests/unit/Mvc/Collection/Manager/UseImplicitObjectIdsCest.php create mode 100644 tests/unit/Mvc/Collection/ReadAttributeCest.php create mode 100644 tests/unit/Mvc/Collection/SaveCest.php create mode 100644 tests/unit/Mvc/Collection/SerializeCest.php create mode 100644 tests/unit/Mvc/Collection/SetConnectionServiceCest.php create mode 100644 tests/unit/Mvc/Collection/SetDICest.php create mode 100644 tests/unit/Mvc/Collection/SetDirtyStateCest.php create mode 100644 tests/unit/Mvc/Collection/SetIdCest.php create mode 100644 tests/unit/Mvc/Collection/SkipOperationCest.php create mode 100644 tests/unit/Mvc/Collection/SummatoryCest.php create mode 100644 tests/unit/Mvc/Collection/ToArrayCest.php create mode 100644 tests/unit/Mvc/Collection/UnserializeCest.php create mode 100644 tests/unit/Mvc/Collection/UpdateCest.php create mode 100644 tests/unit/Mvc/Collection/ValidationHasFailedCest.php create mode 100644 tests/unit/Mvc/Collection/WriteAttributeCest.php create mode 100644 tests/unit/Mvc/Controller/ConstructCest.php create mode 100644 tests/unit/Mvc/Controller/GetDICest.php create mode 100644 tests/unit/Mvc/Controller/GetEventsManagerCest.php create mode 100644 tests/unit/Mvc/Controller/SetDICest.php create mode 100644 tests/unit/Mvc/Controller/SetEventsManagerCest.php create mode 100644 tests/unit/Mvc/Controller/UnderscoreGetCest.php create mode 100644 tests/unit/Mvc/Dispatcher/CallActionMethodCest.php create mode 100644 tests/unit/Mvc/Dispatcher/DispatchCest.php delete mode 100644 tests/unit/Mvc/Dispatcher/DispatcherAfterDispatchLoopTest.php delete mode 100644 tests/unit/Mvc/Dispatcher/DispatcherAfterDispatchTest.php delete mode 100644 tests/unit/Mvc/Dispatcher/DispatcherAfterExecuteRouteMethodTest.php delete mode 100644 tests/unit/Mvc/Dispatcher/DispatcherAfterExecuteRouteTest.php delete mode 100644 tests/unit/Mvc/Dispatcher/DispatcherAfterInitializeTest.php delete mode 100644 tests/unit/Mvc/Dispatcher/DispatcherBeforeDispatchLoopTest.php delete mode 100644 tests/unit/Mvc/Dispatcher/DispatcherBeforeDispatchTest.php delete mode 100644 tests/unit/Mvc/Dispatcher/DispatcherBeforeExecuteRouteMethodTest.php delete mode 100644 tests/unit/Mvc/Dispatcher/DispatcherBeforeExecuteRouteTest.php delete mode 100644 tests/unit/Mvc/Dispatcher/DispatcherInitalizeMethodTest.php delete mode 100644 tests/unit/Mvc/Dispatcher/DispatcherTest.php create mode 100644 tests/unit/Mvc/Dispatcher/ForwardCest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetActionNameCest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetActionSuffixCest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetActiveControllerCest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetActiveMethodCest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetBoundModelsCest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetControllerClassCest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetControllerNameCest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetDICest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetDefaultNamespaceCest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetEventsManagerCest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetHandlerClassCest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetHandlerSuffixCest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetLastControllerCest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetModelBinderCest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetModuleNameCest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetNamespaceNameCest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetParamCest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetParamsCest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetPreviousActionNameCest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetPreviousControllerNameCest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetPreviousNamespaceNameCest.php create mode 100644 tests/unit/Mvc/Dispatcher/GetReturnedValueCest.php create mode 100644 tests/unit/Mvc/Dispatcher/HasParamCest.php delete mode 100644 tests/unit/Mvc/Dispatcher/Helper/BaseDispatcher.php delete mode 100644 tests/unit/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteForwardController.php delete mode 100644 tests/unit/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteExceptionController.php delete mode 100644 tests/unit/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteForwardController.php delete mode 100644 tests/unit/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteReturnFalseController.php delete mode 100644 tests/unit/Mvc/Dispatcher/Helper/DispatcherTestDefaultSimpleController.php delete mode 100644 tests/unit/Mvc/Dispatcher/Helper/DispatcherTestInitializeForwardController.php create mode 100644 tests/unit/Mvc/Dispatcher/IsFinishedCest.php create mode 100644 tests/unit/Mvc/Dispatcher/SetActionNameCest.php create mode 100644 tests/unit/Mvc/Dispatcher/SetActionSuffixCest.php create mode 100644 tests/unit/Mvc/Dispatcher/SetControllerNameCest.php create mode 100644 tests/unit/Mvc/Dispatcher/SetControllerSuffixCest.php create mode 100644 tests/unit/Mvc/Dispatcher/SetDICest.php create mode 100644 tests/unit/Mvc/Dispatcher/SetDefaultActionCest.php create mode 100644 tests/unit/Mvc/Dispatcher/SetDefaultControllerCest.php create mode 100644 tests/unit/Mvc/Dispatcher/SetDefaultNamespaceCest.php create mode 100644 tests/unit/Mvc/Dispatcher/SetEventsManagerCest.php create mode 100644 tests/unit/Mvc/Dispatcher/SetHandlerSuffixCest.php create mode 100644 tests/unit/Mvc/Dispatcher/SetModelBinderCest.php create mode 100644 tests/unit/Mvc/Dispatcher/SetModuleNameCest.php create mode 100644 tests/unit/Mvc/Dispatcher/SetNamespaceNameCest.php create mode 100644 tests/unit/Mvc/Dispatcher/SetParamCest.php create mode 100644 tests/unit/Mvc/Dispatcher/SetParamsCest.php create mode 100644 tests/unit/Mvc/Dispatcher/SetReturnedValueCest.php create mode 100644 tests/unit/Mvc/Dispatcher/WasForwardedCest.php delete mode 100644 tests/unit/Mvc/MicroTest.php delete mode 100644 tests/unit/Mvc/Model/CriteriaTest.php delete mode 100644 tests/unit/Mvc/Model/DynamicOperationsTest.php delete mode 100644 tests/unit/Mvc/Model/Helpers/Validation.php delete mode 100644 tests/unit/Mvc/Model/Manager/RelationsTest.php delete mode 100644 tests/unit/Mvc/Model/ManagerTest.php delete mode 100644 tests/unit/Mvc/Model/MetaData/ApcCest.php delete mode 100644 tests/unit/Mvc/Model/MetaData/ApcuCest.php delete mode 100644 tests/unit/Mvc/Model/MetaData/FilesCest.php delete mode 100644 tests/unit/Mvc/Model/MetaData/LibmemcachedCest.php delete mode 100644 tests/unit/Mvc/Model/MetaData/MemoryCest.php delete mode 100644 tests/unit/Mvc/Model/MetaData/RedisCest.php delete mode 100644 tests/unit/Mvc/Model/MetaData/ResetCest.php delete mode 100644 tests/unit/Mvc/Model/MetaData/SessionCest.php delete mode 100644 tests/unit/Mvc/Model/MetaData/Strategy/AnnotationsTest.php delete mode 100644 tests/unit/Mvc/Model/Query/BuilderOrderTest.php delete mode 100644 tests/unit/Mvc/Model/Query/BuilderTest.php delete mode 100644 tests/unit/Mvc/Model/QueryTest.php delete mode 100644 tests/unit/Mvc/Model/RelationsTest.php delete mode 100644 tests/unit/Mvc/Model/Resultset/ComplexTest.php delete mode 100644 tests/unit/Mvc/Model/Resultset/SimpleTest.php delete mode 100644 tests/unit/Mvc/Model/ResultsetClassTest.php delete mode 100644 tests/unit/Mvc/Model/SnapshotTest.php delete mode 100644 tests/unit/Mvc/Model/Transaction/ManagerTest.php delete mode 100644 tests/unit/Mvc/Model/ValidationCest.php delete mode 100644 tests/unit/Mvc/ModelCest.php create mode 100644 tests/unit/Mvc/ModelCest.php_check delete mode 100644 tests/unit/Mvc/ModelTest.php create mode 100644 tests/unit/Mvc/Router/AddCest.php create mode 100644 tests/unit/Mvc/Router/AddConnectCest.php create mode 100644 tests/unit/Mvc/Router/AddDeleteCest.php create mode 100644 tests/unit/Mvc/Router/AddGetCest.php create mode 100644 tests/unit/Mvc/Router/AddHeadCest.php create mode 100644 tests/unit/Mvc/Router/AddOptionsCest.php create mode 100644 tests/unit/Mvc/Router/AddPatchCest.php create mode 100644 tests/unit/Mvc/Router/AddPostCest.php create mode 100644 tests/unit/Mvc/Router/AddPurgeCest.php create mode 100644 tests/unit/Mvc/Router/AddPutCest.php create mode 100644 tests/unit/Mvc/Router/AddTraceCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/AddCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/AddConnectCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/AddDeleteCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/AddGetCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/AddHeadCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/AddModuleResourceCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/AddOptionsCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/AddPatchCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/AddPostCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/AddPurgeCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/AddPutCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/AddResourceCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/AddTraceCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/AttachCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/ClearCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/ConstructCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/GetActionNameCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/GetControllerNameCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/GetDICest.php create mode 100644 tests/unit/Mvc/Router/Annotations/GetDefaultsCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/GetEventsManagerCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/GetKeyRouteIdsCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/GetKeyRouteNamesCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/GetMatchedRouteCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/GetMatchesCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/GetModuleNameCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/GetNamespaceNameCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/GetParamsCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/GetResourcesCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/GetRouteByIdCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/GetRouteByNameCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/GetRoutesCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/HandleCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/IsExactControllerNameCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/MountCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/NotFoundCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/ProcessActionAnnotationCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/ProcessControllerAnnotationCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/RemoveExtraSlashesCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/SetActionSuffixCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/SetControllerSuffixCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/SetDICest.php create mode 100644 tests/unit/Mvc/Router/Annotations/SetDefaultActionCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/SetDefaultControllerCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/SetDefaultModuleCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/SetDefaultNamespaceCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/SetDefaultsCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/SetEventsManagerCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/SetKeyRouteIdsCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/SetKeyRouteNamesCest.php create mode 100644 tests/unit/Mvc/Router/Annotations/WasMatchedCest.php delete mode 100644 tests/unit/Mvc/Router/AnnotationsTest.php create mode 100644 tests/unit/Mvc/Router/AttachCest.php create mode 100644 tests/unit/Mvc/Router/ClearCest.php create mode 100644 tests/unit/Mvc/Router/ConstructCest.php create mode 100644 tests/unit/Mvc/Router/GetActionNameCest.php create mode 100644 tests/unit/Mvc/Router/GetControllerNameCest.php create mode 100644 tests/unit/Mvc/Router/GetDICest.php create mode 100644 tests/unit/Mvc/Router/GetDefaultsCest.php create mode 100644 tests/unit/Mvc/Router/GetEventsManagerCest.php create mode 100644 tests/unit/Mvc/Router/GetKeyRouteIdsCest.php create mode 100644 tests/unit/Mvc/Router/GetKeyRouteNamesCest.php create mode 100644 tests/unit/Mvc/Router/GetMatchedRouteCest.php create mode 100644 tests/unit/Mvc/Router/GetMatchesCest.php create mode 100644 tests/unit/Mvc/Router/GetModuleNameCest.php create mode 100644 tests/unit/Mvc/Router/GetNamespaceNameCest.php create mode 100644 tests/unit/Mvc/Router/GetParamsCest.php create mode 100644 tests/unit/Mvc/Router/GetRouteByIdCest.php create mode 100644 tests/unit/Mvc/Router/GetRouteByNameCest.php create mode 100644 tests/unit/Mvc/Router/GetRoutesCest.php create mode 100644 tests/unit/Mvc/Router/Group/AddCest.php create mode 100644 tests/unit/Mvc/Router/Group/AddDeleteCest.php create mode 100644 tests/unit/Mvc/Router/Group/AddGetCest.php create mode 100644 tests/unit/Mvc/Router/Group/AddHeadCest.php create mode 100644 tests/unit/Mvc/Router/Group/AddOptionsCest.php create mode 100644 tests/unit/Mvc/Router/Group/AddPatchCest.php create mode 100644 tests/unit/Mvc/Router/Group/AddPostCest.php create mode 100644 tests/unit/Mvc/Router/Group/AddPutCest.php create mode 100644 tests/unit/Mvc/Router/Group/BeforeMatchCest.php create mode 100644 tests/unit/Mvc/Router/Group/ClearCest.php create mode 100644 tests/unit/Mvc/Router/Group/ConstructCest.php create mode 100644 tests/unit/Mvc/Router/Group/GetBeforeMatchCest.php create mode 100644 tests/unit/Mvc/Router/Group/GetHostnameCest.php create mode 100644 tests/unit/Mvc/Router/Group/GetPathsCest.php create mode 100644 tests/unit/Mvc/Router/Group/GetPrefixCest.php create mode 100644 tests/unit/Mvc/Router/Group/GetRoutesCest.php create mode 100644 tests/unit/Mvc/Router/Group/SetHostnameCest.php create mode 100644 tests/unit/Mvc/Router/Group/SetPathsCest.php create mode 100644 tests/unit/Mvc/Router/Group/SetPrefixCest.php create mode 100644 tests/unit/Mvc/Router/GroupCest.php delete mode 100644 tests/unit/Mvc/Router/GroupTest.php create mode 100644 tests/unit/Mvc/Router/HandleCest.php create mode 100644 tests/unit/Mvc/Router/IsExactControllerNameCest.php create mode 100644 tests/unit/Mvc/Router/MountCest.php create mode 100644 tests/unit/Mvc/Router/NotFoundCest.php create mode 100644 tests/unit/Mvc/Router/RemoveExtraSlashesCest.php create mode 100644 tests/unit/Mvc/Router/Route/BeforeMatchCest.php create mode 100644 tests/unit/Mvc/Router/Route/CompilePatternCest.php create mode 100644 tests/unit/Mvc/Router/Route/ConstructCest.php create mode 100644 tests/unit/Mvc/Router/Route/ConvertCest.php create mode 100644 tests/unit/Mvc/Router/Route/ExtractNamedParamsCest.php create mode 100644 tests/unit/Mvc/Router/Route/GetBeforeMatchCest.php create mode 100644 tests/unit/Mvc/Router/Route/GetCompiledPatternCest.php create mode 100644 tests/unit/Mvc/Router/Route/GetConvertersCest.php create mode 100644 tests/unit/Mvc/Router/Route/GetGroupCest.php create mode 100644 tests/unit/Mvc/Router/Route/GetHostnameCest.php create mode 100644 tests/unit/Mvc/Router/Route/GetHttpMethodsCest.php create mode 100644 tests/unit/Mvc/Router/Route/GetIdCest.php create mode 100644 tests/unit/Mvc/Router/Route/GetMatchCest.php create mode 100644 tests/unit/Mvc/Router/Route/GetNameCest.php create mode 100644 tests/unit/Mvc/Router/Route/GetPathsCest.php create mode 100644 tests/unit/Mvc/Router/Route/GetPatternCest.php create mode 100644 tests/unit/Mvc/Router/Route/GetReversedPathsCest.php create mode 100644 tests/unit/Mvc/Router/Route/GetRouteIdCest.php create mode 100644 tests/unit/Mvc/Router/Route/GetRoutePathsCest.php create mode 100644 tests/unit/Mvc/Router/Route/MatchCest.php create mode 100644 tests/unit/Mvc/Router/Route/ReConfigureCest.php create mode 100644 tests/unit/Mvc/Router/Route/ResetCest.php create mode 100644 tests/unit/Mvc/Router/Route/SetGroupCest.php create mode 100644 tests/unit/Mvc/Router/Route/SetHostnameCest.php create mode 100644 tests/unit/Mvc/Router/Route/SetHttpMethodsCest.php create mode 100644 tests/unit/Mvc/Router/Route/SetNameCest.php create mode 100644 tests/unit/Mvc/Router/Route/ViaCest.php create mode 100644 tests/unit/Mvc/Router/SetDICest.php create mode 100644 tests/unit/Mvc/Router/SetDefaultActionCest.php create mode 100644 tests/unit/Mvc/Router/SetDefaultControllerCest.php create mode 100644 tests/unit/Mvc/Router/SetDefaultModuleCest.php create mode 100644 tests/unit/Mvc/Router/SetDefaultNamespaceCest.php create mode 100644 tests/unit/Mvc/Router/SetDefaultsCest.php create mode 100644 tests/unit/Mvc/Router/SetEventsManagerCest.php create mode 100644 tests/unit/Mvc/Router/SetKeyRouteIdsCest.php create mode 100644 tests/unit/Mvc/Router/SetKeyRouteNamesCest.php create mode 100644 tests/unit/Mvc/Router/WasMatchedCest.php create mode 100644 tests/unit/Mvc/RouterCest.php delete mode 100644 tests/unit/Mvc/RouterTest.php create mode 100644 tests/unit/Mvc/Url/GetBasePathCest.php create mode 100644 tests/unit/Mvc/Url/GetBaseUriCest.php create mode 100644 tests/unit/Mvc/Url/GetCest.php create mode 100644 tests/unit/Mvc/Url/GetDICest.php create mode 100644 tests/unit/Mvc/Url/GetStaticBaseUriCest.php create mode 100644 tests/unit/Mvc/Url/GetStaticCest.php create mode 100644 tests/unit/Mvc/Url/PathCest.php create mode 100644 tests/unit/Mvc/Url/SetBasePathCest.php create mode 100644 tests/unit/Mvc/Url/SetBaseUriCest.php create mode 100644 tests/unit/Mvc/Url/SetDICest.php create mode 100644 tests/unit/Mvc/Url/SetStaticBaseUriCest.php create mode 100644 tests/unit/Mvc/UrlCest.php delete mode 100644 tests/unit/Mvc/UrlTest.php create mode 100644 tests/unit/Mvc/User/Component/GetDICest.php create mode 100644 tests/unit/Mvc/User/Component/GetEventsManagerCest.php create mode 100644 tests/unit/Mvc/User/Component/SetDICest.php create mode 100644 tests/unit/Mvc/User/Component/SetEventsManagerCest.php create mode 100644 tests/unit/Mvc/User/Component/UnderscoreGetCest.php create mode 100644 tests/unit/Mvc/User/Module/GetDICest.php create mode 100644 tests/unit/Mvc/User/Module/GetEventsManagerCest.php create mode 100644 tests/unit/Mvc/User/Module/SetDICest.php create mode 100644 tests/unit/Mvc/User/Module/SetEventsManagerCest.php create mode 100644 tests/unit/Mvc/User/Module/UnderscoreGetCest.php create mode 100644 tests/unit/Mvc/User/Plugin/GetDICest.php create mode 100644 tests/unit/Mvc/User/Plugin/GetEventsManagerCest.php create mode 100644 tests/unit/Mvc/User/Plugin/SetDICest.php create mode 100644 tests/unit/Mvc/User/Plugin/SetEventsManagerCest.php create mode 100644 tests/unit/Mvc/User/Plugin/UnderscoreGetCest.php create mode 100644 tests/unit/Mvc/View/CacheCest.php create mode 100644 tests/unit/Mvc/View/CleanTemplateAfterCest.php create mode 100644 tests/unit/Mvc/View/CleanTemplateBeforeCest.php create mode 100644 tests/unit/Mvc/View/ConstructCest.php create mode 100644 tests/unit/Mvc/View/DisableCest.php create mode 100644 tests/unit/Mvc/View/DisableLevelCest.php create mode 100644 tests/unit/Mvc/View/EnableCest.php create mode 100644 tests/unit/Mvc/View/Engine/ConstructCest.php create mode 100644 tests/unit/Mvc/View/Engine/GetContentCest.php create mode 100644 tests/unit/Mvc/View/Engine/GetDICest.php create mode 100644 tests/unit/Mvc/View/Engine/GetEventsManagerCest.php create mode 100644 tests/unit/Mvc/View/Engine/GetViewCest.php create mode 100644 tests/unit/Mvc/View/Engine/PartialCest.php create mode 100644 tests/unit/Mvc/View/Engine/Php/ConstructCest.php create mode 100644 tests/unit/Mvc/View/Engine/Php/GetContentCest.php create mode 100644 tests/unit/Mvc/View/Engine/Php/GetDICest.php create mode 100644 tests/unit/Mvc/View/Engine/Php/GetEventsManagerCest.php create mode 100644 tests/unit/Mvc/View/Engine/Php/GetViewCest.php create mode 100644 tests/unit/Mvc/View/Engine/Php/PartialCest.php create mode 100644 tests/unit/Mvc/View/Engine/Php/RenderCest.php create mode 100644 tests/unit/Mvc/View/Engine/Php/SetDICest.php create mode 100644 tests/unit/Mvc/View/Engine/Php/SetEventsManagerCest.php create mode 100644 tests/unit/Mvc/View/Engine/Php/UnderscoreGetCest.php create mode 100644 tests/unit/Mvc/View/Engine/RenderCest.php create mode 100644 tests/unit/Mvc/View/Engine/SetDICest.php create mode 100644 tests/unit/Mvc/View/Engine/SetEventsManagerCest.php create mode 100644 tests/unit/Mvc/View/Engine/UnderscoreGetCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/CallMacroCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/AddExtensionCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/AddFilterCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/AddFunctionCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/AttributeReaderCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/CompileAutoEscapeCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/CompileCacheCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/CompileCallCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/CompileCaseCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/CompileCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/CompileDoCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/CompileEchoCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/CompileElseIfCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/CompileFileCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/CompileForElseCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/CompileForeachCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/CompileIfCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/CompileIncludeCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/CompileMacroCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/CompileReturnCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/CompileSetCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/CompileStringCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/CompileSwitchCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/ConstructCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/ExpressionCest.php delete mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/Filters/DefaultTest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/FireExtensionEventCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/FunctionCallCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/GetCompiledTemplatePathCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/GetDICest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/GetExtensionsCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/GetFiltersCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/GetFunctionsCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/GetOptionCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/GetOptionsCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/GetTemplatePathCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/GetUniquePrefixCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/ParseCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/ResolveTestCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/SetDICest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/SetOptionCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/SetOptionsCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/SetUniquePrefixCest.php delete mode 100644 tests/unit/Mvc/View/Engine/Volt/Compiler/Statements/SwitchCaseTest.php delete mode 100644 tests/unit/Mvc/View/Engine/Volt/CompilerExceptionsTest.php delete mode 100644 tests/unit/Mvc/View/Engine/Volt/CompilerFilesTest.php delete mode 100644 tests/unit/Mvc/View/Engine/Volt/CompilerTest.php delete mode 100644 tests/unit/Mvc/View/Engine/Volt/CompilerTrait.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/ConstructCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/ConvertEncodingCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/GetCompilerCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/GetContentCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/GetDICest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/GetEventsManagerCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/GetOptionsCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/GetViewCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/IsIncludedCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/LengthCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/PartialCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/RenderCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/SetDICest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/SetEventsManagerCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/SetOptionsCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/SliceCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/SortCest.php create mode 100644 tests/unit/Mvc/View/Engine/Volt/UnderscoreGetCest.php create mode 100644 tests/unit/Mvc/View/ExistsCest.php create mode 100644 tests/unit/Mvc/View/FinishCest.php create mode 100644 tests/unit/Mvc/View/GetActionNameCest.php create mode 100644 tests/unit/Mvc/View/GetActiveRenderPathCest.php create mode 100644 tests/unit/Mvc/View/GetBasePathCest.php create mode 100644 tests/unit/Mvc/View/GetCacheCest.php create mode 100644 tests/unit/Mvc/View/GetContentCest.php create mode 100644 tests/unit/Mvc/View/GetControllerNameCest.php create mode 100644 tests/unit/Mvc/View/GetCurrentRenderLevelCest.php create mode 100644 tests/unit/Mvc/View/GetDICest.php create mode 100644 tests/unit/Mvc/View/GetEventsManagerCest.php create mode 100644 tests/unit/Mvc/View/GetLayoutCest.php create mode 100644 tests/unit/Mvc/View/GetLayoutsDirCest.php create mode 100644 tests/unit/Mvc/View/GetMainViewCest.php create mode 100644 tests/unit/Mvc/View/GetParamsCest.php create mode 100644 tests/unit/Mvc/View/GetParamsToViewCest.php create mode 100644 tests/unit/Mvc/View/GetPartialCest.php create mode 100644 tests/unit/Mvc/View/GetPartialsDirCest.php create mode 100644 tests/unit/Mvc/View/GetRegisteredEnginesCest.php create mode 100644 tests/unit/Mvc/View/GetRenderCest.php create mode 100644 tests/unit/Mvc/View/GetRenderLevelCest.php create mode 100644 tests/unit/Mvc/View/GetVarCest.php create mode 100644 tests/unit/Mvc/View/GetViewsDirCest.php create mode 100644 tests/unit/Mvc/View/IsCachingCest.php create mode 100644 tests/unit/Mvc/View/IsDisabledCest.php create mode 100644 tests/unit/Mvc/View/PartialCest.php create mode 100644 tests/unit/Mvc/View/PickCest.php create mode 100644 tests/unit/Mvc/View/RegisterEnginesCest.php create mode 100644 tests/unit/Mvc/View/RenderCest.php create mode 100644 tests/unit/Mvc/View/ResetCest.php create mode 100644 tests/unit/Mvc/View/SetBasePathCest.php create mode 100644 tests/unit/Mvc/View/SetContentCest.php create mode 100644 tests/unit/Mvc/View/SetDICest.php create mode 100644 tests/unit/Mvc/View/SetEventsManagerCest.php create mode 100644 tests/unit/Mvc/View/SetLayoutCest.php create mode 100644 tests/unit/Mvc/View/SetLayoutsDirCest.php create mode 100644 tests/unit/Mvc/View/SetMainViewCest.php create mode 100644 tests/unit/Mvc/View/SetParamToViewCest.php create mode 100644 tests/unit/Mvc/View/SetPartialsDirCest.php create mode 100644 tests/unit/Mvc/View/SetRenderLevelCest.php create mode 100644 tests/unit/Mvc/View/SetTemplateAfterCest.php create mode 100644 tests/unit/Mvc/View/SetTemplateBeforeCest.php create mode 100644 tests/unit/Mvc/View/SetVarCest.php create mode 100644 tests/unit/Mvc/View/SetVarsCest.php create mode 100644 tests/unit/Mvc/View/SetViewsDirCest.php create mode 100644 tests/unit/Mvc/View/Simple/CacheCest.php create mode 100644 tests/unit/Mvc/View/Simple/ConstructCest.php create mode 100644 tests/unit/Mvc/View/Simple/GetActiveRenderPathCest.php create mode 100644 tests/unit/Mvc/View/Simple/GetCacheCest.php create mode 100644 tests/unit/Mvc/View/Simple/GetCacheOptionsCest.php create mode 100644 tests/unit/Mvc/View/Simple/GetContentCest.php create mode 100644 tests/unit/Mvc/View/Simple/GetDICest.php create mode 100644 tests/unit/Mvc/View/Simple/GetEventsManagerCest.php create mode 100644 tests/unit/Mvc/View/Simple/GetParamsToViewCest.php create mode 100644 tests/unit/Mvc/View/Simple/GetRegisteredEnginesCest.php create mode 100644 tests/unit/Mvc/View/Simple/GetVarCest.php create mode 100644 tests/unit/Mvc/View/Simple/GetViewsDirCest.php create mode 100644 tests/unit/Mvc/View/Simple/PartialCest.php create mode 100644 tests/unit/Mvc/View/Simple/RegisterEnginesCest.php create mode 100644 tests/unit/Mvc/View/Simple/RenderCest.php create mode 100644 tests/unit/Mvc/View/Simple/SetCacheOptionsCest.php create mode 100644 tests/unit/Mvc/View/Simple/SetContentCest.php create mode 100644 tests/unit/Mvc/View/Simple/SetDICest.php create mode 100644 tests/unit/Mvc/View/Simple/SetEventsManagerCest.php create mode 100644 tests/unit/Mvc/View/Simple/SetParamToViewCest.php create mode 100644 tests/unit/Mvc/View/Simple/SetVarCest.php create mode 100644 tests/unit/Mvc/View/Simple/SetVarsCest.php create mode 100644 tests/unit/Mvc/View/Simple/SetViewsDirCest.php create mode 100644 tests/unit/Mvc/View/Simple/UnderscoreGetCest.php create mode 100644 tests/unit/Mvc/View/Simple/UnderscoreSetCest.php create mode 100644 tests/unit/Mvc/View/SimpleCest.php delete mode 100644 tests/unit/Mvc/View/SimpleTest.php create mode 100644 tests/unit/Mvc/View/StartCest.php create mode 100644 tests/unit/Mvc/View/UnderscoreGetCest.php create mode 100644 tests/unit/Mvc/View/UnderscoreIssetCest.php create mode 100644 tests/unit/Mvc/View/UnderscoreSetCest.php create mode 100644 tests/unit/Mvc/ViewEnginesCest.php delete mode 100644 tests/unit/Mvc/ViewEnginesTest.php delete mode 100644 tests/unit/Mvc/ViewTest.php create mode 100644 tests/unit/Mvc/ViewTest.php_check delete mode 100644 tests/unit/Paginator/Adapter/NativeArrayTest.php delete mode 100644 tests/unit/Paginator/Adapter/QueryBuilderTest.php delete mode 100644 tests/unit/Paginator/FactoryTest.php create mode 100644 tests/unit/Queue/Beanstalk/ChooseCest.php create mode 100644 tests/unit/Queue/Beanstalk/ConnectCest.php create mode 100644 tests/unit/Queue/Beanstalk/ConstructCest.php create mode 100644 tests/unit/Queue/Beanstalk/DisconnectCest.php create mode 100644 tests/unit/Queue/Beanstalk/IgnoreCest.php create mode 100644 tests/unit/Queue/Beanstalk/Job/BuryCest.php create mode 100644 tests/unit/Queue/Beanstalk/Job/ConstructCest.php create mode 100644 tests/unit/Queue/Beanstalk/Job/DeleteCest.php create mode 100644 tests/unit/Queue/Beanstalk/Job/GetBodyCest.php create mode 100644 tests/unit/Queue/Beanstalk/Job/GetIdCest.php create mode 100644 tests/unit/Queue/Beanstalk/Job/KickCest.php create mode 100644 tests/unit/Queue/Beanstalk/Job/ReleaseCest.php create mode 100644 tests/unit/Queue/Beanstalk/Job/StatsCest.php create mode 100644 tests/unit/Queue/Beanstalk/Job/TouchCest.php create mode 100644 tests/unit/Queue/Beanstalk/Job/WakeupCest.php create mode 100644 tests/unit/Queue/Beanstalk/JobCest.php create mode 100644 tests/unit/Queue/Beanstalk/JobPeekCest.php delete mode 100644 tests/unit/Queue/Beanstalk/JobTest.php create mode 100644 tests/unit/Queue/Beanstalk/KickCest.php create mode 100644 tests/unit/Queue/Beanstalk/ListTubeUsedCest.php create mode 100644 tests/unit/Queue/Beanstalk/ListTubesCest.php create mode 100644 tests/unit/Queue/Beanstalk/ListTubesWatchedCest.php create mode 100644 tests/unit/Queue/Beanstalk/PauseTubeCest.php create mode 100644 tests/unit/Queue/Beanstalk/PeekBuriedCest.php create mode 100644 tests/unit/Queue/Beanstalk/PeekDelayedCest.php create mode 100644 tests/unit/Queue/Beanstalk/PeekReadyCest.php create mode 100644 tests/unit/Queue/Beanstalk/PutCest.php create mode 100644 tests/unit/Queue/Beanstalk/QuitCest.php create mode 100644 tests/unit/Queue/Beanstalk/ReadCest.php create mode 100644 tests/unit/Queue/Beanstalk/ReadStatusCest.php create mode 100644 tests/unit/Queue/Beanstalk/ReadYamlCest.php create mode 100644 tests/unit/Queue/Beanstalk/ReserveCest.php create mode 100644 tests/unit/Queue/Beanstalk/StatsCest.php create mode 100644 tests/unit/Queue/Beanstalk/StatsTubeCest.php create mode 100644 tests/unit/Queue/Beanstalk/WatchCest.php create mode 100644 tests/unit/Queue/Beanstalk/WriteCest.php create mode 100644 tests/unit/Queue/BeanstalkCest.php delete mode 100644 tests/unit/Queue/BeanstalkTest.php delete mode 100644 tests/unit/Queue/Helper/BeanstalkBase.php create mode 100644 tests/unit/Registry/ConstructCest.php create mode 100644 tests/unit/Registry/CountCest.php create mode 100644 tests/unit/Registry/CurrentCest.php create mode 100644 tests/unit/Registry/KeyCest.php create mode 100644 tests/unit/Registry/NextCest.php create mode 100644 tests/unit/Registry/OffsetExistsCest.php create mode 100644 tests/unit/Registry/OffsetGetCest.php create mode 100644 tests/unit/Registry/OffsetSetCest.php create mode 100644 tests/unit/Registry/OffsetUnsetCest.php create mode 100644 tests/unit/Registry/RewindCest.php create mode 100644 tests/unit/Registry/UnderscoreGetCest.php create mode 100644 tests/unit/Registry/UnderscoreIssetCest.php create mode 100644 tests/unit/Registry/UnderscoreSetCest.php create mode 100644 tests/unit/Registry/UnderscoreUnsetCest.php create mode 100644 tests/unit/Registry/ValidCest.php create mode 100644 tests/unit/Security/CheckHashCest.php create mode 100644 tests/unit/Security/CheckTokenCest.php create mode 100644 tests/unit/Security/ComputeHmacCest.php create mode 100644 tests/unit/Security/ConstructCest.php create mode 100644 tests/unit/Security/DestroyTokenCest.php create mode 100644 tests/unit/Security/GetDICest.php create mode 100644 tests/unit/Security/GetDefaultHashCest.php create mode 100644 tests/unit/Security/GetRandomBytesCest.php create mode 100644 tests/unit/Security/GetRandomCest.php create mode 100644 tests/unit/Security/GetSaltBytesCest.php create mode 100644 tests/unit/Security/GetSessionTokenCest.php create mode 100644 tests/unit/Security/GetTokenCest.php create mode 100644 tests/unit/Security/GetTokenKeyCest.php create mode 100644 tests/unit/Security/GetWorkFactorCest.php create mode 100644 tests/unit/Security/HashCest.php create mode 100644 tests/unit/Security/IsLegacyHashCest.php create mode 100644 tests/unit/Security/Random/Base58Cest.php create mode 100644 tests/unit/Security/Random/Base62Cest.php create mode 100644 tests/unit/Security/Random/Base64Cest.php create mode 100644 tests/unit/Security/Random/Base64SafeCest.php create mode 100644 tests/unit/Security/Random/BytesCest.php create mode 100644 tests/unit/Security/Random/HexCest.php create mode 100644 tests/unit/Security/Random/NumberCest.php create mode 100644 tests/unit/Security/Random/UuidCest.php create mode 100644 tests/unit/Security/RandomCest.php delete mode 100644 tests/unit/Security/RandomTest.php create mode 100644 tests/unit/Security/SecurityCest.php create mode 100644 tests/unit/Security/SetDICest.php create mode 100644 tests/unit/Security/SetDefaultHashCest.php create mode 100644 tests/unit/Security/SetRandomBytesCest.php create mode 100644 tests/unit/Security/SetWorkFactorCest.php delete mode 100644 tests/unit/SecurityTest.php delete mode 100644 tests/unit/Session/Adapter/FilesTest.php delete mode 100644 tests/unit/Session/Adapter/LibmemcachedTest.php delete mode 100644 tests/unit/Session/Adapter/RedisTest.php delete mode 100644 tests/unit/Session/BagTest.php delete mode 100644 tests/unit/Session/FactoryTest.php create mode 100644 tests/unit/Tag/AppendTitleCest.php create mode 100644 tests/unit/Tag/CheckFieldCest.php create mode 100644 tests/unit/Tag/ColorFieldCest.php create mode 100644 tests/unit/Tag/DateFieldCest.php create mode 100644 tests/unit/Tag/DateTimeFieldCest.php create mode 100644 tests/unit/Tag/DateTimeLocalFieldCest.php create mode 100644 tests/unit/Tag/DisplayToCest.php create mode 100644 tests/unit/Tag/EmailFieldCest.php create mode 100644 tests/unit/Tag/EndFormCest.php create mode 100644 tests/unit/Tag/FileFieldCest.php create mode 100644 tests/unit/Tag/FormCest.php create mode 100644 tests/unit/Tag/FriendlyTitleCest.php create mode 100644 tests/unit/Tag/GetDICest.php create mode 100644 tests/unit/Tag/GetDocTypeCest.php create mode 100644 tests/unit/Tag/GetEscaperCest.php create mode 100644 tests/unit/Tag/GetEscaperServiceCest.php create mode 100644 tests/unit/Tag/GetTitleCest.php create mode 100644 tests/unit/Tag/GetTitleSeparatorCest.php create mode 100644 tests/unit/Tag/GetUrlServiceCest.php create mode 100644 tests/unit/Tag/GetValueCest.php create mode 100644 tests/unit/Tag/HasValueCest.php create mode 100644 tests/unit/Tag/HiddenFieldCest.php create mode 100644 tests/unit/Tag/ImageCest.php create mode 100644 tests/unit/Tag/ImageInputCest.php create mode 100644 tests/unit/Tag/JavascriptIncludeCest.php create mode 100644 tests/unit/Tag/LinkToCest.php create mode 100644 tests/unit/Tag/MonthFieldCest.php create mode 100644 tests/unit/Tag/NumericFieldCest.php create mode 100644 tests/unit/Tag/PasswordFieldCest.php create mode 100644 tests/unit/Tag/PrependTitleCest.php create mode 100644 tests/unit/Tag/RadioFieldCest.php create mode 100644 tests/unit/Tag/RangeFieldCest.php create mode 100644 tests/unit/Tag/RenderAttributesCest.php create mode 100644 tests/unit/Tag/RenderTitleCest.php create mode 100644 tests/unit/Tag/ResetInputCest.php create mode 100644 tests/unit/Tag/SearchFieldCest.php create mode 100644 tests/unit/Tag/Select/SelectFieldCest.php create mode 100644 tests/unit/Tag/SelectCest.php create mode 100644 tests/unit/Tag/SelectStaticCest.php create mode 100644 tests/unit/Tag/SetAutoescapeCest.php create mode 100644 tests/unit/Tag/SetDICest.php create mode 100644 tests/unit/Tag/SetDefaultCest.php create mode 100644 tests/unit/Tag/SetDefaultsCest.php create mode 100644 tests/unit/Tag/SetDocTypeCest.php create mode 100644 tests/unit/Tag/SetTitleCest.php create mode 100644 tests/unit/Tag/SetTitleSeparatorCest.php create mode 100644 tests/unit/Tag/StylesheetLinkCest.php create mode 100644 tests/unit/Tag/SubmitButtonCest.php delete mode 100644 tests/unit/Tag/TagCheckFieldTest.php delete mode 100644 tests/unit/Tag/TagColorFieldTest.php delete mode 100644 tests/unit/Tag/TagDateFieldTest.php delete mode 100644 tests/unit/Tag/TagDateTimeFieldTest.php delete mode 100644 tests/unit/Tag/TagDateTimeLocalFieldTest.php delete mode 100644 tests/unit/Tag/TagDoctypeTest.php delete mode 100644 tests/unit/Tag/TagEmailFieldTest.php delete mode 100644 tests/unit/Tag/TagFileFieldTest.php delete mode 100644 tests/unit/Tag/TagFriendlyTitleTest.php delete mode 100644 tests/unit/Tag/TagHiddenFieldTest.php create mode 100644 tests/unit/Tag/TagHtmlCest.php create mode 100644 tests/unit/Tag/TagHtmlCloseCest.php delete mode 100644 tests/unit/Tag/TagImageInputTest.php delete mode 100644 tests/unit/Tag/TagImageTest.php delete mode 100644 tests/unit/Tag/TagJavascriptIncludeTest.php delete mode 100644 tests/unit/Tag/TagLinkToTest.php delete mode 100644 tests/unit/Tag/TagMonthFieldTest.php delete mode 100644 tests/unit/Tag/TagNumericFieldTest.php delete mode 100644 tests/unit/Tag/TagPasswordFieldTest.php delete mode 100644 tests/unit/Tag/TagRadioFieldTest.php delete mode 100644 tests/unit/Tag/TagRangeFieldTest.php delete mode 100644 tests/unit/Tag/TagResetInputTest.php delete mode 100644 tests/unit/Tag/TagSearchFieldTest.php delete mode 100644 tests/unit/Tag/TagSelectStaticTest.php delete mode 100644 tests/unit/Tag/TagSetDefaultTest.php delete mode 100644 tests/unit/Tag/TagStylesheetlinkTest.php delete mode 100644 tests/unit/Tag/TagSubmitButtonTest.php delete mode 100644 tests/unit/Tag/TagTagHtmlTest.php delete mode 100644 tests/unit/Tag/TagTelFieldTest.php delete mode 100644 tests/unit/Tag/TagTextAreaTest.php delete mode 100644 tests/unit/Tag/TagTextFieldTest.php delete mode 100644 tests/unit/Tag/TagTimeFieldTest.php delete mode 100644 tests/unit/Tag/TagTitleTest.php delete mode 100644 tests/unit/Tag/TagUrlFieldTest.php delete mode 100644 tests/unit/Tag/TagWeekFieldTest.php create mode 100644 tests/unit/Tag/TelFieldCest.php create mode 100644 tests/unit/Tag/TextAreaCest.php create mode 100644 tests/unit/Tag/TextFieldCest.php create mode 100644 tests/unit/Tag/TimeFieldCest.php create mode 100644 tests/unit/Tag/UrlFieldCest.php create mode 100644 tests/unit/Tag/WeekFieldCest.php create mode 100644 tests/unit/Text/CamelizeCest.php create mode 100644 tests/unit/Text/ConcatCest.php create mode 100644 tests/unit/Text/DynamicCest.php create mode 100644 tests/unit/Text/EndsWithCest.php create mode 100644 tests/unit/Text/HumanizeCest.php create mode 100644 tests/unit/Text/IncrementCest.php create mode 100644 tests/unit/Text/LowerCest.php create mode 100644 tests/unit/Text/RandomCest.php create mode 100644 tests/unit/Text/ReduceSlashesCest.php create mode 100644 tests/unit/Text/StartsWithCest.php delete mode 100644 tests/unit/Text/TextCamelizeTest.php delete mode 100644 tests/unit/Text/TextConcatTest.php delete mode 100644 tests/unit/Text/TextDynamicTest.php delete mode 100644 tests/unit/Text/TextEndsWithTest.php delete mode 100644 tests/unit/Text/TextHumanizeTest.php delete mode 100644 tests/unit/Text/TextIncrementTest.php delete mode 100644 tests/unit/Text/TextRandomTest.php delete mode 100644 tests/unit/Text/TextReduceSlashesTest.php delete mode 100644 tests/unit/Text/TextStartsWithTest.php delete mode 100644 tests/unit/Text/TextUncamelizeTest.php delete mode 100644 tests/unit/Text/TextUnderscoreTest.php delete mode 100644 tests/unit/Text/TextUpperLowerTest.php create mode 100644 tests/unit/Text/UncamelizeCest.php create mode 100644 tests/unit/Text/UnderscoreCest.php create mode 100644 tests/unit/Text/UpperCest.php create mode 100644 tests/unit/Translate/Adapter/ConstructCest.php create mode 100644 tests/unit/Translate/Adapter/Csv/ConstructCest.php create mode 100644 tests/unit/Translate/Adapter/Csv/ExistsCest.php create mode 100644 tests/unit/Translate/Adapter/Csv/OffsetExistsCest.php create mode 100644 tests/unit/Translate/Adapter/Csv/OffsetGetCest.php create mode 100644 tests/unit/Translate/Adapter/Csv/OffsetSetCest.php create mode 100644 tests/unit/Translate/Adapter/Csv/OffsetUnsetCest.php create mode 100644 tests/unit/Translate/Adapter/Csv/QueryCest.php create mode 100644 tests/unit/Translate/Adapter/Csv/SetInterpolatorCest.php create mode 100644 tests/unit/Translate/Adapter/Csv/TCest.php create mode 100644 tests/unit/Translate/Adapter/Csv/UnderscoreCest.php create mode 100644 tests/unit/Translate/Adapter/CsvCest.php delete mode 100644 tests/unit/Translate/Adapter/CsvTest.php create mode 100644 tests/unit/Translate/Adapter/ExistsCest.php create mode 100644 tests/unit/Translate/Adapter/Gettext/ConstructCest.php create mode 100644 tests/unit/Translate/Adapter/Gettext/ExistsCest.php create mode 100644 tests/unit/Translate/Adapter/Gettext/GetCategoryCest.php create mode 100644 tests/unit/Translate/Adapter/Gettext/GetDefaultDomainCest.php create mode 100644 tests/unit/Translate/Adapter/Gettext/GetDirectoryCest.php create mode 100644 tests/unit/Translate/Adapter/Gettext/GetLocaleCest.php create mode 100644 tests/unit/Translate/Adapter/Gettext/NqueryCest.php create mode 100644 tests/unit/Translate/Adapter/Gettext/OffsetExistsCest.php create mode 100644 tests/unit/Translate/Adapter/Gettext/OffsetGetCest.php create mode 100644 tests/unit/Translate/Adapter/Gettext/OffsetSetCest.php create mode 100644 tests/unit/Translate/Adapter/Gettext/OffsetUnsetCest.php create mode 100644 tests/unit/Translate/Adapter/Gettext/QueryCest.php create mode 100644 tests/unit/Translate/Adapter/Gettext/ResetDomainCest.php create mode 100644 tests/unit/Translate/Adapter/Gettext/SetDefaultDomainCest.php create mode 100644 tests/unit/Translate/Adapter/Gettext/SetDirectoryCest.php create mode 100644 tests/unit/Translate/Adapter/Gettext/SetDomainCest.php create mode 100644 tests/unit/Translate/Adapter/Gettext/SetInterpolatorCest.php create mode 100644 tests/unit/Translate/Adapter/Gettext/SetLocaleCest.php create mode 100644 tests/unit/Translate/Adapter/Gettext/TCest.php create mode 100644 tests/unit/Translate/Adapter/Gettext/UnderscoreCest.php create mode 100644 tests/unit/Translate/Adapter/NativeArray/ArrayAccessCest.php create mode 100644 tests/unit/Translate/Adapter/NativeArray/ConstructCest.php create mode 100644 tests/unit/Translate/Adapter/NativeArray/ExistsCest.php create mode 100644 tests/unit/Translate/Adapter/NativeArray/OffsetExistsCest.php create mode 100644 tests/unit/Translate/Adapter/NativeArray/OffsetGetCest.php create mode 100644 tests/unit/Translate/Adapter/NativeArray/OffsetSetCest.php create mode 100644 tests/unit/Translate/Adapter/NativeArray/OffsetUnsetCest.php create mode 100644 tests/unit/Translate/Adapter/NativeArray/QueryCest.php create mode 100644 tests/unit/Translate/Adapter/NativeArray/SetInterpolatorCest.php create mode 100644 tests/unit/Translate/Adapter/NativeArray/TCest.php create mode 100644 tests/unit/Translate/Adapter/NativeArray/UnderscoreCest.php delete mode 100644 tests/unit/Translate/Adapter/NativeArrayTest.php create mode 100644 tests/unit/Translate/Adapter/OffsetExistsCest.php create mode 100644 tests/unit/Translate/Adapter/OffsetGetCest.php create mode 100644 tests/unit/Translate/Adapter/OffsetSetCest.php create mode 100644 tests/unit/Translate/Adapter/OffsetUnsetCest.php create mode 100644 tests/unit/Translate/Adapter/QueryCest.php create mode 100644 tests/unit/Translate/Adapter/SetInterpolatorCest.php create mode 100644 tests/unit/Translate/Adapter/TCest.php create mode 100644 tests/unit/Translate/Adapter/UnderscoreCest.php create mode 100644 tests/unit/Translate/Factory/LoadCest.php delete mode 100644 tests/unit/Translate/FactoryTest.php create mode 100644 tests/unit/Translate/Interpolator/AssociativeArray/ReplacePlaceholdersCest.php delete mode 100644 tests/unit/Translate/Interpolator/AssociativeArrayTest.php create mode 100644 tests/unit/Translate/Interpolator/IndexedArray/InterpolatorCest.php create mode 100644 tests/unit/Translate/Interpolator/IndexedArray/ReplacePlaceholdersCest.php delete mode 100644 tests/unit/Translate/Interpolator/IndexedArrayTest.php delete mode 100644 tests/unit/Validation/Validator/AlnumTest.php delete mode 100644 tests/unit/Validation/Validator/AlphaTest.php delete mode 100644 tests/unit/Validation/Validator/BetweenTest.php delete mode 100644 tests/unit/Validation/Validator/CallbackTest.php delete mode 100644 tests/unit/Validation/Validator/ConfirmationTest.php delete mode 100644 tests/unit/Validation/Validator/CreditCardTest.php delete mode 100644 tests/unit/Validation/Validator/DateTest.php delete mode 100644 tests/unit/Validation/Validator/DigitTest.php delete mode 100644 tests/unit/Validation/Validator/EmailTest.php delete mode 100644 tests/unit/Validation/Validator/ExclusionInTest.php delete mode 100644 tests/unit/Validation/Validator/IdenticalTest.php delete mode 100644 tests/unit/Validation/Validator/InclusionInTest.php delete mode 100644 tests/unit/Validation/Validator/NumericalityTest.php delete mode 100644 tests/unit/Validation/Validator/PresenceOfTest.php delete mode 100644 tests/unit/Validation/Validator/RegexTest.php delete mode 100644 tests/unit/Validation/Validator/StringLengthTest.php delete mode 100644 tests/unit/Validation/Validator/UniquenessTest.php delete mode 100644 tests/unit/Validation/Validator/UrlTest.php delete mode 100644 tests/unit/ValidationTest.php create mode 100644 tests/unit/Version/ConstantsCest.php create mode 100644 tests/unit/Version/GetCest.php create mode 100644 tests/unit/Version/GetIdCest.php create mode 100644 tests/unit/Version/GetPartCest.php delete mode 100644 tests/unit/VersionTest.php delete mode 100644 unit-tests/.gitignore delete mode 100644 unit-tests/CacheTest.php delete mode 100644 unit-tests/DbBindTest.php delete mode 100644 unit-tests/DbDescribeTest.php delete mode 100644 unit-tests/DbProfilerTest.php delete mode 100644 unit-tests/DbTest.php delete mode 100644 unit-tests/FormsTest.php delete mode 100644 unit-tests/MicroMvcCollectionsTest.php delete mode 100644 unit-tests/ModelsCalculationsTest.php delete mode 100644 unit-tests/ModelsEventsTest.php delete mode 100644 unit-tests/ModelsForeignKeysTest.php delete mode 100644 unit-tests/ModelsHydrationTest.php delete mode 100644 unit-tests/ModelsMetadataStrategyTest.php delete mode 100644 unit-tests/ModelsMetadataTest.php delete mode 100644 unit-tests/ModelsQueryExecuteTest.php delete mode 100644 unit-tests/ModelsRelationsMagicTest.php delete mode 100644 unit-tests/ModelsRelationsTest.php delete mode 100644 unit-tests/ModelsResultsetCacheStaticTest.php delete mode 100644 unit-tests/ModelsResultsetCacheTest.php delete mode 100644 unit-tests/ModelsResultsetTest.php delete mode 100644 unit-tests/ModelsTest.php delete mode 100644 unit-tests/ModelsValidatorsTest.php delete mode 100644 unit-tests/PaginatorTest.php delete mode 100644 unit-tests/cache/.gitignore delete mode 100644 unit-tests/config.db.php delete mode 100644 unit-tests/controllers/ControllerBase.php delete mode 100644 unit-tests/controllers/FailureController.php delete mode 100644 unit-tests/controllers/Test0Controller.php delete mode 100644 unit-tests/controllers/Test1Controller.php delete mode 100644 unit-tests/controllers/Test2Controller.php delete mode 100644 unit-tests/controllers/Test3Controller.php delete mode 100644 unit-tests/controllers/Test5Controller.php delete mode 100644 unit-tests/controllers/Test6Controller.php delete mode 100644 unit-tests/controllers/Test7Controller.php delete mode 100644 unit-tests/controllers/Test8Controller.php delete mode 100644 unit-tests/helpers/xcache.php delete mode 100644 unit-tests/models/Abonnes.php delete mode 100644 unit-tests/models/AlbumORama/Albums.php delete mode 100644 unit-tests/models/AlbumORama/Artists.php delete mode 100644 unit-tests/models/AlbumORama/Songs.php delete mode 100644 unit-tests/models/Boutique/Robots.php delete mode 100644 unit-tests/models/Boutique/Robotters.php delete mode 100644 unit-tests/models/Cacheable/Model.php delete mode 100644 unit-tests/models/Cacheable/Parts.php delete mode 100644 unit-tests/models/Cacheable/Robots.php delete mode 100644 unit-tests/models/Cacheable/RobotsParts.php delete mode 100644 unit-tests/models/Childs.php delete mode 100644 unit-tests/models/Deles.php delete mode 100644 unit-tests/models/GossipRobots.php delete mode 100644 unit-tests/models/News/Subscribers.php delete mode 100644 unit-tests/models/Parts.php delete mode 100644 unit-tests/models/Parts2.php delete mode 100644 unit-tests/models/People.php delete mode 100644 unit-tests/models/Personas.php delete mode 100644 unit-tests/models/Personers.php delete mode 100644 unit-tests/models/Personnes.php delete mode 100644 unit-tests/models/Pessoas.php delete mode 100644 unit-tests/models/Products.php delete mode 100644 unit-tests/models/Prueba.php delete mode 100644 unit-tests/models/Relations/Deles.php delete mode 100644 unit-tests/models/Relations/M2MParts.php delete mode 100644 unit-tests/models/Relations/M2MRobots.php delete mode 100644 unit-tests/models/Relations/M2MRobotsParts.php delete mode 100644 unit-tests/models/Relations/RelationsParts.php delete mode 100644 unit-tests/models/Relations/RelationsRobots.php delete mode 100644 unit-tests/models/Relations/RelationsRobotsParts.php delete mode 100644 unit-tests/models/Relations/Robotters.php delete mode 100644 unit-tests/models/Relations/RobottersDeles.php delete mode 100644 unit-tests/models/Relations/Some/Deles.php delete mode 100644 unit-tests/models/Relations/Some/Parts.php delete mode 100644 unit-tests/models/Relations/Some/Products.php delete mode 100644 unit-tests/models/Relations/Some/Robots.php delete mode 100644 unit-tests/models/Relations/Some/RobotsParts.php delete mode 100644 unit-tests/models/Relations/Some/Robotters.php delete mode 100644 unit-tests/models/Relations/Some/RobottersDeles.php delete mode 100644 unit-tests/models/Robots.php delete mode 100644 unit-tests/models/Robots2.php delete mode 100644 unit-tests/models/RobotsParts.php delete mode 100644 unit-tests/models/Robotters.php delete mode 100644 unit-tests/models/RobottersDeles.php delete mode 100644 unit-tests/models/Robotto.php delete mode 100644 unit-tests/models/Snapshot/Parts.php delete mode 100644 unit-tests/models/Snapshot/Robots.php delete mode 100644 unit-tests/models/Snapshot/RobotsParts.php delete mode 100644 unit-tests/models/Snapshot/Robotters.php delete mode 100644 unit-tests/models/Some/Deles.php delete mode 100644 unit-tests/models/Some/Parts.php delete mode 100644 unit-tests/models/Some/Products.php delete mode 100644 unit-tests/models/Some/Robots.php delete mode 100644 unit-tests/models/Some/RobotsParts.php delete mode 100644 unit-tests/models/Some/Robotters.php delete mode 100644 unit-tests/models/Some/RobottersDeles.php delete mode 100644 unit-tests/models/Store/Parts.php delete mode 100644 unit-tests/models/Store/Robots.php delete mode 100644 unit-tests/models/Store/RobotsParts.php delete mode 100644 unit-tests/models/Subscribers.php delete mode 100644 unit-tests/models/Subscriptores.php delete mode 100644 unit-tests/views/index.phtml delete mode 100644 unit-tests/views/layouts/after.phtml delete mode 100644 unit-tests/views/layouts/before.phtml delete mode 100644 unit-tests/views/layouts/test10.volt delete mode 100644 unit-tests/views/layouts/test10.volt.php delete mode 100644 unit-tests/views/layouts/test13.phtml delete mode 100644 unit-tests/views/macro/conditionaldate.volt delete mode 100644 unit-tests/views/macro/error_messages.volt delete mode 100644 unit-tests/views/macro/form_row.volt delete mode 100644 unit-tests/views/macro/hello.volt delete mode 100644 unit-tests/views/macro/list.volt delete mode 100644 unit-tests/views/macro/my_input.volt delete mode 100644 unit-tests/views/macro/related_links.volt delete mode 100644 unit-tests/views/macro/strtotime.volt delete mode 100644 unit-tests/views/partials/footer.volt delete mode 100644 unit-tests/views/partials/header.volt delete mode 100644 unit-tests/views/partials/header2.volt delete mode 100644 unit-tests/views/partials/header3.volt delete mode 100644 unit-tests/views/templates/a.volt delete mode 100644 unit-tests/views/templates/b.volt delete mode 100644 unit-tests/views/templates/c.volt delete mode 100644 unit-tests/views/test10/.gitignore delete mode 100644 unit-tests/views/test10/children.extends.volt delete mode 100644 unit-tests/views/test10/children.volt delete mode 100644 unit-tests/views/test10/children2.volt delete mode 100644 unit-tests/views/test11/index.volt delete mode 100644 unit-tests/views/test11/index.volt.php delete mode 100644 unit-tests/views/test13/index.phtml delete mode 100644 unit-tests/views/test14/loop1.volt delete mode 100644 unit-tests/views/test16/index.phtml delete mode 100644 unit-tests/views/test3/query.phtml delete mode 100644 unit-tests/views/test3/yup.phtml delete mode 100644 unit-tests/views/test8/index.phtml delete mode 100644 unit-tests/views/test8/leother.phtml delete mode 100644 unit-tests/views/test8/other.phtml diff --git a/.gitignore b/.gitignore index 5458fec72d1..ed9e4e552e6 100644 --- a/.gitignore +++ b/.gitignore @@ -48,7 +48,9 @@ autom4te.cache/ /vendor /ide/ +boxfile.yml composer.lock php_test_results_*.txt docker-compose.yml build/gccarch +tests/_cache diff --git a/.travis.yml b/.travis.yml index c7f94846aa7..8a2868e2166 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,16 +5,15 @@ php: - 'master' - '7.3' - '7.2' - - '7.1' - - '7.0' git: depth: 1 -branches: - only: - - master - - /^(4|5)\.\d+\.(\d+|x)$/ +# TODO - Remove this when we go deploy this +#branches: +# only: +# - master +# - /^(4|5)\.\d+\.(\d+|x)$/ addons: apt: @@ -26,6 +25,7 @@ addons: - lcov - mysql-server - mysql-client + postgresql: "9.4" matrix: fast_finish: true @@ -42,6 +42,7 @@ cache: - ${HOME}/.local/opt services: + - mysql - beanstalkd - mongodb - redis-server @@ -50,7 +51,7 @@ services: env: global: - CC="gcc" - - ZEPHIR_VERSION="0.10.14" + - ZEPHIR_VERSION="0.11.8" - RE2C_VERSION="1.1.1" - REPORT_EXIT_STATUS=1 - REPORT_COVERAGE=1 @@ -68,6 +69,8 @@ before_install: - tests/_ci/setup-dbs.sh - source tests/_ci/environment - export $(cut -d= -f1 tests/_ci/environment) + - wget --no-clobber -O $HOME/bin/zephir https://github.com/phalcon/zephir/releases/download/${ZEPHIR_VERSION}/zephir.phar + - chmod +x $HOME/bin/zephir install: - tests/_ci/install-prereqs.sh @@ -84,9 +87,10 @@ script: - vendor/bin/phpcs - vendor/bin/codecept build # TODO: Add `cli' suite and refactor current cli-tests +# - vendor/bin/codecept run -v + - vendor/bin/codecept run -v -n tests/cli/ - vendor/bin/codecept run -v -n tests/integration/ - vendor/bin/codecept run -v -n tests/unit/ - # TODO: Refactor legacy unit tests from the "unit-tests" directory - phpenv config-rm xdebug.ini || true - tests/_ci/volt-tests.sh diff --git a/CHANGELOG-4.0.md b/CHANGELOG-4.0.md index 91915c7c01c..a6ebed35707 100644 --- a/CHANGELOG-4.0.md +++ b/CHANGELOG-4.0.md @@ -19,6 +19,7 @@ - Added `Phalcon\Mvc\Model\Query\BuilderInterface::offset` [#13599](https://github.com/phalcon/cphalcon/pull/13599) - Added `Phalcon\Http\Response\Cookies::getCookies` [#13591](https://github.com/phalcon/cphalcon/pull/13591) - Added `Phalcon\Mvc\Model::isRelationshipLoaded` to check if relationship is loaded +- Added an easy way to work with Phalcon and run the tests locally, using [nanobox.io](https://nanobox.io) [#13578](https://github.com/phalcon/cphalcon/issues/13578) ## Changed - By configuring `prefix` and `statsKey` the `Phalcon\Cache\Backend\Redis::queryKeys` no longer returns prefixed keys, now it returns original keys without prefix. [PR-13456](https://github.com/phalcon/cphalcon/pull/13456) @@ -41,6 +42,7 @@ - Changed `Phalcon\Tag::getTitle()`. It returns only the text. It accepts `prepend`, `append` booleans to prepend or append the relevant text to the title. [#13547](https://github.com/phalcon/cphalcon/issues/13547) - Changed `Phalcon\Di\Service` constructor to no longer takes the name of the service. - Changed `Phalon\Tag::textArea` to use `htmlspecialchars` to prevent XSS injection. [#12428](https://github.com/phalcon/cphalcon/issues/12428) +- Changed `Phalon\Cache\Backend\*::get` to use only positive numbers for `lifetime` ## Removed - PHP < 7.0 no longer supported @@ -57,4 +59,12 @@ - Removed `Phalcon\Validation\MessageInterface` and `Phalcon\Mvc\Model\MessageInterface` in favor of `Phalcon\Messages\MessageInterface` - Removed `Phalcon\Validation\Message` and `Phalcon\Mvc\Model\Message` in favor of `Phalcon\Messages\Message` - Removed `Phalcon\Validation\Message\Group` in favor of `Phalcon\Messages\Messages` +- Removed deprecated `Phalcon\Annotations\Adapter\Apc` +- Removed deprecated `Phalcon\Annotations\Adapter\Xcache` +- Removed deprecated `Phalcon\Cache\Backend\Apc` +- Removed deprecated `Phalcon\Cache\Backend\Memcache` +- Removed deprecated `Phalcon\Cache\Backend\Xcache` +- Removed deprecated `Phalcon\Mvc\Model\Metadata\Apc` +- Removed deprecated `Phalcon\Mvc\Model\Metadata\Memcache` +- Removed deprecated `Phalcon\Mvc\Model\Metadata\Xcache` diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c75b6cc3b3..a500c263f87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,10 @@ To see what we changed in particular framework branch refer to the relevant chan ## Index - [**`4.0.x`**](CHANGELOG-4.0.md) -- [**`3.4.x`**](CHANGELOG-3.4.md) -- [**`3.3.x`**](CHANGELOG-3.3.md) -- [**`3.2.x`**](CHANGELOG-3.2.md) -- [**`3.1.x`**](CHANGELOG-3.1.md) -- [**`3.0.x`**](CHANGELOG-3.0.md) -- [**`2.0.x`**](CHANGELOG-2.0.md) -- [**`1.x.x`**](CHANGELOG-1.x.md) +- [**`3.4.x`**](resources/CHANGELOG-3.4.md) +- [**`3.3.x`**](resources/CHANGELOG-3.3.md) +- [**`3.2.x`**](resources/CHANGELOG-3.2.md) +- [**`3.1.x`**](resources/CHANGELOG-3.1.md) +- [**`3.0.x`**](resources/CHANGELOG-3.0.md) +- [**`2.0.x`**](resources/CHANGELOG-2.0.md) +- [**`1.x.x`**](resources/CHANGELOG-1.x.md) diff --git a/codeception.yml b/codeception.yml index 8d9c97da6d5..46cf9e64292 100644 --- a/codeception.yml +++ b/codeception.yml @@ -1,5 +1,4 @@ -# can be changed while bootstrapping project -actor: Tester +actor_suffix: Tester paths: # where the modules stored @@ -23,7 +22,7 @@ settings: coverage: # Disable Code Coverage by default to speed up Travis tests - enabled: false + enabled: false extensions: enabled: diff --git a/composer.json b/composer.json index dca976c756b..7db3b0fcc29 100644 --- a/composer.json +++ b/composer.json @@ -41,13 +41,12 @@ "ext-psr": "*", "ext-xml": "*", "codeception/codeception": "^2.4", - "codeception/specify": "1.0.*", - "codeception/verify": "1.0.*", "mustache/mustache": "^2.11", "phpunit/phpunit": "^6.4", "predis/predis": "^1.1", "squizlabs/php_codesniffer": "^3.2", - "twig/twig": "~1.35" + "twig/twig": "~1.35", + "vlucas/phpdotenv": "^2.5" }, "config": { "optimize-autoloader": true, @@ -59,6 +58,7 @@ "Zephir\\Optimizers\\": "optimizers/", "Phalcon\\Test\\Unit\\": "tests/unit/", "Phalcon\\Test\\Integration\\": "tests/integration/", + "Phalcon\\Test\\Fixtures\\": "tests/_data/fixtures/", "Phalcon\\Test\\Module\\": "tests/_support/Module/", "Phalcon\\Test\\Listener\\": "tests/_data/listener/", "Phalcon\\Test\\Db\\": "tests/_data/db/" diff --git a/phalcon/acl/adapter.zep b/phalcon/acl/adapter.zep index c06e611877b..a3b22cfd304 100644 --- a/phalcon/acl/adapter.zep +++ b/phalcon/acl/adapter.zep @@ -49,19 +49,22 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Role which the list is checking if it's allowed to certain resource/access - * @var mixed + * + * @var string */ protected _activeRole { get }; /** * Resource which the list is checking if some role can access it - * @var mixed + * + * @var string */ protected _activeResource { get }; /** * Active access which the list is checking if some role can access it - * @var mixed + * + * @var string */ protected _activeAccess { get }; diff --git a/phalcon/acl/adapter/memory.zep b/phalcon/acl/adapter/memory.zep index 6d8475dc83d..a7f1d766e81 100644 --- a/phalcon/acl/adapter/memory.zep +++ b/phalcon/acl/adapter/memory.zep @@ -188,7 +188,7 @@ class Memory extends Adapter * @param array|string accessInherits * @param RoleInterface|string|array role */ - public function addRole(role, accessInherits = null) -> boolean + public function addRole(role, accessInherits = null) -> bool { var roleName, roleObject; @@ -229,7 +229,7 @@ class Memory extends Adapter * @param array|string accessInherits * @param RoleInterface|string|array role */ - public function addInherit(string roleName, var roleToInherits) -> boolean + public function addInherit(string roleName, var roleToInherits) -> bool { var roleInheritName, rolesNames, roleToInherit, checkRoleToInherit, checkRoleToInherits, usedRoleToInherits, roleToInheritList, usedRoleToInherit; @@ -313,7 +313,7 @@ class Memory extends Adapter /** * Check whether role exist in the roles list */ - public function isRole(string roleName) -> boolean + public function isRole(string roleName) -> bool { return isset this->_rolesNames[roleName]; } @@ -321,7 +321,7 @@ class Memory extends Adapter /** * Check whether resource exist in the resources list */ - public function isResource(string resourceName) -> boolean + public function isResource(string resourceName) -> bool { return isset this->_resourcesNames[resourceName]; } @@ -363,7 +363,7 @@ class Memory extends Adapter * @param Phalcon\Acl\Resource|string resourceValue * @param array|string accessList */ - public function addResource(var resourceValue, var accessList) -> boolean + public function addResource(var resourceValue, var accessList) -> bool { var resourceName, resourceObject; @@ -388,7 +388,7 @@ class Memory extends Adapter * * @param array|string accessList */ - public function addResourceAccess(string resourceName, var accessList) -> boolean + public function addResourceAccess(string resourceName, var accessList) -> bool { var accessName, accessKey, exists; @@ -581,7 +581,7 @@ class Memory extends Adapter * @param RoleInterface|RoleAware|string roleName * @param ResourceInterface|ResourceAware|string resourceName */ - public function isAllowed(var roleName, var resourceName, string access, array parameters = null) -> boolean + public function isAllowed(var roleName, var resourceName, string access, array parameters = null) -> bool { var eventsManager, accessList, accessKey, haveAccess = null, rolesNames, @@ -750,7 +750,7 @@ class Memory extends Adapter /** * Check whether a role is allowed to access an action from a resource */ - protected function _isAllowed(string roleName, string resourceName, string access) -> string | boolean + protected function _isAllowed(string roleName, string resourceName, string access) -> string | bool { var accessList, accessKey,checkRoleToInherit, checkRoleToInherits, usedRoleToInherits, usedRoleToInherit; diff --git a/phalcon/acl/adapterinterface.zep b/phalcon/acl/adapterinterface.zep index 295314a5ba0..450d3584e48 100644 --- a/phalcon/acl/adapterinterface.zep +++ b/phalcon/acl/adapterinterface.zep @@ -52,22 +52,22 @@ interface AdapterInterface /** * Adds a role to the ACL list. Second parameter lets to inherit access data from other existing role */ - public function addRole(role, accessInherits = null) -> boolean; + public function addRole(role, accessInherits = null) -> bool; /** * Do a role inherit from another existing role */ - public function addInherit(string roleName, roleToInherit) -> boolean; + public function addInherit(string roleName, roleToInherit) -> bool; /** * Check whether role exist in the roles list */ - public function isRole(string roleName) -> boolean; + public function isRole(string roleName) -> bool; /** * Check whether resource exist in the resources list */ - public function isResource(string resourceName) -> boolean; + public function isResource(string resourceName) -> bool; /** * Adds a resource to the ACL list @@ -75,7 +75,7 @@ interface AdapterInterface * Access names can be a particular action, by example * search, update, delete, etc or a list of them */ - public function addResource(resourceObject, accessList) -> boolean; + public function addResource(resourceObject, accessList) -> bool; /** * Adds access to resources @@ -100,7 +100,7 @@ interface AdapterInterface /** * Check whether a role is allowed to access an action from a resource */ - public function isAllowed(roleName, resourceName, access, array parameters = null) -> boolean; + public function isAllowed(roleName, resourceName, string access, array parameters = null) -> bool; /** * Returns the role which the list is checking if it's allowed to certain resource/access diff --git a/phalcon/annotations/adapter/apc.zep b/phalcon/annotations/adapter/apc.zep deleted file mode 100644 index 255e0dddc58..00000000000 --- a/phalcon/annotations/adapter/apc.zep +++ /dev/null @@ -1,78 +0,0 @@ - -/* - +------------------------------------------------------------------------+ - | Phalcon Framework | - +------------------------------------------------------------------------+ - | Copyright (c) 2011-2017 Phalcon Team (https://phalconphp.com) | - +------------------------------------------------------------------------+ - | This source file is subject to the New BSD License that is bundled | - | with this package in the file LICENSE.txt. | - | | - | If you did not receive a copy of the license and are unable to | - | obtain it through the world-wide-web, please send an email | - | to license@phalconphp.com so we can send you a copy immediately. | - +------------------------------------------------------------------------+ - | Authors: Andres Gutierrez <andres@phalconphp.com> | - | Eduar Carvajal <eduar@phalconphp.com> | - +------------------------------------------------------------------------+ - */ - -namespace Phalcon\Annotations\Adapter; - -use Phalcon\Annotations\Adapter; -use Phalcon\Annotations\Reflection; - -/** - * Phalcon\Annotations\Adapter\Apc - * - * Stores the parsed annotations in APC. This adapter is suitable for production - * - * <code> - * use Phalcon\Annotations\Adapter\Apc; - * - * $annotations = new Apc(); - * </code> - * - * @see \Phalcon\Annotations\Adapter\Apcu - * @deprecated - */ -class Apc extends Adapter -{ - - protected _prefix = ""; - - protected _ttl = 172800; - - /** - * Phalcon\Annotations\Adapter\Apc constructor - */ - public function __construct(array options = []) - { - var prefix, ttl; - - if typeof options == "array" { - if fetch prefix, options["prefix"] { - let this->_prefix = prefix; - } - if fetch ttl, options["lifetime"] { - let this->_ttl = ttl; - } - } - } - - /** - * Reads parsed annotations from APC - */ - public function read(string! key) -> <Reflection> | boolean - { - return apc_fetch(strtolower("_PHAN" . this->_prefix . key)); - } - - /** - * Writes parsed annotations to APC - */ - public function write(string! key, <Reflection> data) - { - return apc_store(strtolower("_PHAN" . this->_prefix . key), data, this->_ttl); - } -} diff --git a/phalcon/annotations/adapter/apcu.zep b/phalcon/annotations/adapter/apcu.zep index bf7cf7889e6..2e49e9f1cf5 100644 --- a/phalcon/annotations/adapter/apcu.zep +++ b/phalcon/annotations/adapter/apcu.zep @@ -62,7 +62,7 @@ class Apcu extends Adapter /** * Reads parsed annotations from APCu */ - public function read(string! key) -> <Reflection> | boolean + public function read(string! key) -> <Reflection> | bool { return apcu_fetch(strtolower("_PHAN" . this->_prefix . key)); } diff --git a/phalcon/annotations/adapter/files.zep b/phalcon/annotations/adapter/files.zep index 1419355faba..f400d7ba4fb 100644 --- a/phalcon/annotations/adapter/files.zep +++ b/phalcon/annotations/adapter/files.zep @@ -57,7 +57,7 @@ class Files extends Adapter /** * Reads parsed annotations from files */ - public function read(string key) -> <Reflection> | boolean | int + public function read(string key) -> <Reflection> | bool | int { var path; diff --git a/phalcon/annotations/adapter/memory.zep b/phalcon/annotations/adapter/memory.zep index 43b9218a4ef..57ab85dcb18 100644 --- a/phalcon/annotations/adapter/memory.zep +++ b/phalcon/annotations/adapter/memory.zep @@ -38,7 +38,7 @@ class Memory extends Adapter /** * Reads parsed annotations from memory */ - public function read(string! key) -> <Reflection> | boolean + public function read(string! key) -> <Reflection> | bool { var data; diff --git a/phalcon/annotations/adapter/xcache.zep b/phalcon/annotations/adapter/xcache.zep deleted file mode 100644 index 680cf6b4971..00000000000 --- a/phalcon/annotations/adapter/xcache.zep +++ /dev/null @@ -1,61 +0,0 @@ - -/* - +------------------------------------------------------------------------+ - | Phalcon Framework | - +------------------------------------------------------------------------+ - | Copyright (c) 2011-2017 Phalcon Team (https://phalconphp.com) | - +------------------------------------------------------------------------+ - | This source file is subject to the New BSD License that is bundled | - | with this package in the file LICENSE.txt. | - | | - | If you did not receive a copy of the license and are unable to | - | obtain it through the world-wide-web, please send an email | - | to license@phalconphp.com so we can send you a copy immediately. | - +------------------------------------------------------------------------+ - | Authors: Andres Gutierrez <andres@phalconphp.com> | - | Eduar Carvajal <eduar@phalconphp.com> | - | Vladimir Kolesnikov <vladimir@extrememember.com> | - +------------------------------------------------------------------------+ - */ - -namespace Phalcon\Annotations\Adapter; - -use Phalcon\Annotations\Adapter; -use Phalcon\Annotations\Reflection; - -/** - * Phalcon\Annotations\Adapter\Xcache - * - * Stores the parsed annotations to XCache. This adapter is suitable for production - * - *<code> - * $annotations = new \Phalcon\Annotations\Adapter\Xcache(); - *</code> - */ -class Xcache extends Adapter -{ - /** - * Reads parsed annotations from XCache - */ - public function read(string! key) -> <Reflection> | boolean - { - var serialized, data; - let serialized = xcache_get(strtolower("_PHAN" . key)); - if typeof serialized == "string" { - let data = unserialize(serialized); - if typeof data == "object" { - return data; - } - } - return false; - } - - /** - * Writes parsed annotations to XCache - */ - public function write(string! key, <Reflection> data) - { - xcache_set(strtolower("_PHAN" . key), serialize(data)); - } - -} diff --git a/phalcon/annotations/annotation.zep b/phalcon/annotations/annotation.zep index 6ad1ae924af..bd038555296 100644 --- a/phalcon/annotations/annotation.zep +++ b/phalcon/annotations/annotation.zep @@ -183,7 +183,7 @@ class Annotation * * @param int|string position */ - public function hasArgument(var position) -> boolean + public function hasArgument(var position) -> bool { return isset this->_arguments[position]; } diff --git a/phalcon/annotations/collection.zep b/phalcon/annotations/collection.zep index 54caed91500..d794676f96d 100644 --- a/phalcon/annotations/collection.zep +++ b/phalcon/annotations/collection.zep @@ -84,7 +84,7 @@ class Collection implements \Iterator, \Countable /** * Returns the current annotation in the iterator */ - public function current() -> <Annotation> | boolean + public function current() -> <Annotation> | bool { var annotation; if fetch annotation, this->_annotations[this->_position] { @@ -112,7 +112,7 @@ class Collection implements \Iterator, \Countable /** * Check if the current annotation in the iterator is valid */ - public function valid() -> boolean + public function valid() -> bool { return isset this->_annotations[this->_position]; } @@ -166,7 +166,7 @@ class Collection implements \Iterator, \Countable /** * Check if an annotation exists in a collection */ - public function has(string name) -> boolean + public function has(string name) -> bool { var annotations, annotation; diff --git a/phalcon/annotations/factory.zep b/phalcon/annotations/factory.zep index 71f6c07b06b..80af116957d 100644 --- a/phalcon/annotations/factory.zep +++ b/phalcon/annotations/factory.zep @@ -41,7 +41,7 @@ class Factory extends BaseFactory /** * @param \Phalcon\Config|array config */ - public static function load(var config) -> <AdapterInterface> + public static function load(var config) -> object { return self::loadClass("Phalcon\\Annotations\\Adapter", config); } diff --git a/phalcon/annotations/reflection.zep b/phalcon/annotations/reflection.zep index a0fa3053e0c..9bc9b33dd77 100644 --- a/phalcon/annotations/reflection.zep +++ b/phalcon/annotations/reflection.zep @@ -63,7 +63,7 @@ class Reflection /** * Returns the annotations found in the class docblock */ - public function getClassAnnotations() -> <Collection> | boolean + public function getClassAnnotations() -> <Collection> | bool { var annotations, reflectionClass, collection; @@ -83,7 +83,7 @@ class Reflection /** * Returns the annotations found in the methods' docblocks */ - public function getMethodsAnnotations() -> <Collection[]> | boolean + public function getMethodsAnnotations() -> <Collection[]> | bool { var annotations, reflectionMethods, collections, methodName, reflectionMethod; @@ -111,7 +111,7 @@ class Reflection /** * Returns the annotations found in the properties' docblocks */ - public function getPropertiesAnnotations() -> <Collection[]> | boolean + public function getPropertiesAnnotations() -> <Collection[]> | bool { var annotations, reflectionProperties, collections, property, reflectionProperty; diff --git a/phalcon/application.zep b/phalcon/application.zep index 23c51f74f9e..b224397ab44 100644 --- a/phalcon/application.zep +++ b/phalcon/application.zep @@ -93,7 +93,7 @@ abstract class Application extends Injectable implements EventsAwareInterface * ); * </code> */ - public function registerModules(array modules, boolean merge = false) -> <Application> + public function registerModules(array modules, bool merge = false) -> <Application> { if merge { let this->_modules = array_merge(this->_modules, modules); diff --git a/phalcon/assets/collection.zep b/phalcon/assets/collection.zep index 4d91075bf66..5a477b9cf3f 100644 --- a/phalcon/assets/collection.zep +++ b/phalcon/assets/collection.zep @@ -102,7 +102,7 @@ class Collection implements \Countable, \Iterator * $collection->has($resource); // true * </code> */ - public function has(<ResourceInterface> $resource) -> boolean + public function has(<ResourceInterface> $resource) -> bool { var key, resources; @@ -115,7 +115,7 @@ class Collection implements \Countable, \Iterator /** * Adds a CSS resource to the collection */ - public function addCss(string! path, var local = null, boolean filter = true, attributes = null) -> <Collection> + public function addCss(string! path, var local = null, bool filter = true, attributes = null) -> <Collection> { var collectionLocal, collectionAttributes; @@ -139,7 +139,7 @@ class Collection implements \Countable, \Iterator /** * Adds an inline CSS to the collection */ - public function addInlineCss(string content, boolean filter = true, attributes = null) -> <Collection> + public function addInlineCss(string content, bool filter = true, attributes = null) -> <Collection> { var collectionAttributes; @@ -158,7 +158,7 @@ class Collection implements \Countable, \Iterator * * @param array attributes */ - public function addJs(string! path, boolean local = null, boolean filter = true, attributes = null) -> <Collection> + public function addJs(string! path, bool local = null, bool filter = true, attributes = null) -> <Collection> { var collectionLocal, collectionAttributes; @@ -182,7 +182,7 @@ class Collection implements \Countable, \Iterator /** * Adds an inline javascript to the collection */ - public function addInlineJs(string content, boolean filter = true, attributes = null) -> <Collection> + public function addInlineJs(string content, bool filter = true, attributes = null) -> <Collection> { var collectionAttributes; @@ -240,7 +240,7 @@ class Collection implements \Countable, \Iterator /** * Check if the current element in the iterator is valid */ - public function valid() -> boolean + public function valid() -> bool { return isset this->_resources[this->_position]; } @@ -284,7 +284,7 @@ class Collection implements \Countable, \Iterator /** * Sets if the collection uses local resources by default */ - public function setLocal(boolean! local) -> <Collection> + public function setLocal(bool! local) -> <Collection> { let this->_local = local; return this; @@ -311,7 +311,7 @@ class Collection implements \Countable, \Iterator /** * Sets the target local */ - public function setTargetLocal(boolean! targetLocal) -> <Collection> + public function setTargetLocal(bool! targetLocal) -> <Collection> { let this->_targetLocal = targetLocal; return this; @@ -320,7 +320,7 @@ class Collection implements \Countable, \Iterator /** * Sets if all filtered resources in the collection must be joined in a single result file */ - public function join(boolean join) -> <Collection> + public function join(bool join) -> <Collection> { let this->_join = join; return this; @@ -362,7 +362,7 @@ class Collection implements \Countable, \Iterator /** * Adds a resource or inline-code to the collection */ - protected final function addResource(<ResourceInterface> $resource) -> boolean + protected final function addResource(<ResourceInterface> $resource) -> bool { if !this->has($resource) { if $resource instanceof $Resource { diff --git a/phalcon/assets/inline.zep b/phalcon/assets/inline.zep index c3a62d922da..5ba6ef37533 100644 --- a/phalcon/assets/inline.zep +++ b/phalcon/assets/inline.zep @@ -31,18 +31,27 @@ namespace Phalcon\Assets; class $Inline implements ResourceInterface { + /** + * @var string + */ protected _type { get }; protected _content { get }; + /** + * @var bool + */ protected _filter { get }; + /** + * @var array | null + */ protected _attributes { get }; /** * Phalcon\Assets\Inline constructor */ - public function __construct(string type, string content, boolean filter = true, array attributes = []) + public function __construct(string type, string content, bool filter = true, array attributes = []) { let this->_type = type, this->_content = content, @@ -53,7 +62,7 @@ class $Inline implements ResourceInterface /** * Sets the inline's type */ - public function setType(string type) -> <$Inline> + public function setType(string type) -> <ResourceInterface> { let this->_type = type; return this; @@ -62,7 +71,7 @@ class $Inline implements ResourceInterface /** * Sets if the resource must be filtered or not */ - public function setFilter(boolean filter) -> <$Inline> + public function setFilter(bool filter) -> <ResourceInterface> { let this->_filter = filter; return this; @@ -71,7 +80,7 @@ class $Inline implements ResourceInterface /** * Sets extra HTML attributes */ - public function setAttributes(array attributes) -> <$Inline> + public function setAttributes(array attributes) -> <ResourceInterface> { let this->_attributes = attributes; return this; diff --git a/phalcon/assets/inline/css.zep b/phalcon/assets/inline/css.zep index da997a3d969..7c43dc6b07c 100644 --- a/phalcon/assets/inline/css.zep +++ b/phalcon/assets/inline/css.zep @@ -34,7 +34,7 @@ class Css extends InlineBase * * @param array attributes */ - public function __construct(string content, boolean filter = true, attributes = null) + public function __construct(string content, bool filter = true, attributes = null) { if attributes == null { let attributes = ["type": "text/css"]; diff --git a/phalcon/assets/inline/js.zep b/phalcon/assets/inline/js.zep index f6cf4fc8c07..0824e985c89 100644 --- a/phalcon/assets/inline/js.zep +++ b/phalcon/assets/inline/js.zep @@ -34,7 +34,7 @@ class Js extends InlineBase * * @param array attributes */ - public function __construct(string content, boolean filter = true, var attributes = null) + public function __construct(string content, bool filter = true, var attributes = null) { if attributes == null { let attributes = ["type": "text/javascript"]; diff --git a/phalcon/assets/manager.zep b/phalcon/assets/manager.zep index e239c6ef095..f0dc96c204e 100644 --- a/phalcon/assets/manager.zep +++ b/phalcon/assets/manager.zep @@ -74,7 +74,7 @@ class Manager /** * Sets if the HTML generated must be directly printed or returned */ - public function useImplicitOutput(boolean implicitOutput) -> <Manager> + public function useImplicitOutput(bool implicitOutput) -> <Manager> { let this->_implicitOutput = implicitOutput; return this; diff --git a/phalcon/assets/resource.zep b/phalcon/assets/resource.zep index 8a17cec56ef..d6c77daa918 100644 --- a/phalcon/assets/resource.zep +++ b/phalcon/assets/resource.zep @@ -41,12 +41,12 @@ class $Resource implements ResourceInterface protected _path { get }; /** - * @var boolean + * @var bool */ protected _local { get }; /** - * @var boolean + * @var bool */ protected _filter { get }; @@ -64,7 +64,7 @@ class $Resource implements ResourceInterface /** * Phalcon\Assets\Resource constructor */ - public function __construct(string type, string path, boolean local = true, boolean filter = true, array attributes = []) + public function __construct(string type, string path, bool local = true, bool filter = true, array attributes = []) { let this->_type = type, this->_path = path, @@ -76,7 +76,7 @@ class $Resource implements ResourceInterface /** * Sets the resource's type */ - public function setType(string type) -> <$Resource> + public function setType(string type) -> <ResourceInterface> { let this->_type = type; return this; @@ -85,7 +85,7 @@ class $Resource implements ResourceInterface /** * Sets the resource's path */ - public function setPath(string path) -> <$Resource> + public function setPath(string path) -> <ResourceInterface> { let this->_path = path; return this; @@ -94,7 +94,7 @@ class $Resource implements ResourceInterface /** * Sets if the resource is local or external */ - public function setLocal(boolean local) -> <$Resource> + public function setLocal(bool local) -> <ResourceInterface> { let this->_local = local; return this; @@ -103,7 +103,7 @@ class $Resource implements ResourceInterface /** * Sets if the resource must be filtered or not */ - public function setFilter(boolean filter) -> <$Resource> + public function setFilter(bool filter) -> <ResourceInterface> { let this->_filter = filter; return this; @@ -112,7 +112,7 @@ class $Resource implements ResourceInterface /** * Sets extra HTML attributes */ - public function setAttributes(array attributes) -> <$Resource> + public function setAttributes(array attributes) -> <ResourceInterface> { let this->_attributes = attributes; return this; @@ -121,7 +121,7 @@ class $Resource implements ResourceInterface /** * Sets a target uri for the generated HTML */ - public function setTargetUri(string targetUri) -> <$Resource> + public function setTargetUri(string targetUri) -> <ResourceInterface> { let this->_targetUri = targetUri; return this; @@ -130,7 +130,7 @@ class $Resource implements ResourceInterface /** * Sets the resource's source path */ - public function setSourcePath(string sourcePath) -> <$Resource> + public function setSourcePath(string sourcePath) -> <ResourceInterface> { let this->_sourcePath = sourcePath; return this; @@ -139,7 +139,7 @@ class $Resource implements ResourceInterface /** * Sets the resource's target path */ - public function setTargetPath(string targetPath) -> <$Resource> + public function setTargetPath(string targetPath) -> <ResourceInterface> { let this->_targetPath = targetPath; return this; diff --git a/phalcon/assets/resource/css.zep b/phalcon/assets/resource/css.zep index 99a551d4a60..b6abd588b21 100644 --- a/phalcon/assets/resource/css.zep +++ b/phalcon/assets/resource/css.zep @@ -32,7 +32,7 @@ class Css extends ResourceBase /** * Phalcon\Assets\Resource\Css */ - public function __construct(string! path, boolean local = true, boolean filter = true, array attributes = []) + public function __construct(string! path, bool local = true, bool filter = true, array attributes = []) { parent::__construct("css", path, local, filter, attributes); } diff --git a/phalcon/assets/resource/js.zep b/phalcon/assets/resource/js.zep index 476bd1a172b..c92e099f109 100644 --- a/phalcon/assets/resource/js.zep +++ b/phalcon/assets/resource/js.zep @@ -32,7 +32,7 @@ class Js extends ResourceBase /** * Phalcon\Assets\Resource\Js */ - public function __construct(string! path, boolean local = true, boolean filter = true, array attributes = []) + public function __construct(string! path, bool local = true, bool filter = true, array attributes = []) { parent::__construct("js", path, local, filter, attributes); } diff --git a/phalcon/assets/resourceinterface.zep b/phalcon/assets/resourceinterface.zep index 8b8b3ecf5a3..34ed16798da 100644 --- a/phalcon/assets/resourceinterface.zep +++ b/phalcon/assets/resourceinterface.zep @@ -39,12 +39,12 @@ interface ResourceInterface /** * Sets if the resource must be filtered or not. */ - public function setFilter(boolean filter) -> <ResourceInterface>; + public function setFilter(bool filter) -> <ResourceInterface>; /** * Gets if the resource must be filtered or not. */ - public function getFilter() -> boolean; + public function getFilter() -> bool; /** * Sets extra HTML attributes. diff --git a/phalcon/cache/backend.zep b/phalcon/cache/backend.zep index 82982a1c9f3..162d5fb372c 100644 --- a/phalcon/cache/backend.zep +++ b/phalcon/cache/backend.zep @@ -29,12 +29,24 @@ use Phalcon\Cache\FrontendInterface; abstract class Backend implements BackendInterface { - protected _frontend { get, set }; + /** + * @var Phalcon\Cache\FrontendInterface + */ + protected _frontend; + /** + * @var array + */ protected _options { get, set }; + /** + * @var string + */ protected _prefix = ""; + /** + * @var string + */ protected _lastKey = "" { get, set }; protected _lastLifetime = null; @@ -61,6 +73,19 @@ abstract class Backend implements BackendInterface this->_options = options; } + /** + * @var Phalcon\Cache\FrontendInterface + */ + public function getFrontend() -> <FrontendInterface> + { + return this->_frontend; + } + + public function setFrontend(<FrontendInterface> frontend) -> void + { + let this->_frontend = frontend; + } + /** * Starts a cache. The keyname allows to identify the created fragment * @@ -100,7 +125,7 @@ abstract class Backend implements BackendInterface /** * Stops the frontend without store any cached content */ - public function stop(boolean stopBuffer = true) -> void + public function stop(bool stopBuffer = true) -> void { if stopBuffer === true { this->_frontend->stop(); @@ -111,7 +136,7 @@ abstract class Backend implements BackendInterface /** * Checks whether the last cache is fresh or cached */ - public function isFresh() -> boolean + public function isFresh() -> bool { return this->_fresh; } @@ -119,7 +144,7 @@ abstract class Backend implements BackendInterface /** * Checks whether the cache has starting buffering or not */ - public function isStarted() -> boolean + public function isStarted() -> bool { return this->_started; } diff --git a/phalcon/cache/backend/apc.zep b/phalcon/cache/backend/apc.zep deleted file mode 100644 index ff7e5abcfe8..00000000000 --- a/phalcon/cache/backend/apc.zep +++ /dev/null @@ -1,296 +0,0 @@ - -/* - +------------------------------------------------------------------------+ - | Phalcon Framework | - +------------------------------------------------------------------------+ - | Copyright (c) 2011-2017 Phalcon Team (https://phalconphp.com) | - +------------------------------------------------------------------------+ - | This source file is subject to the New BSD License that is bundled | - | with this package in the file LICENSE.txt. | - | | - | If you did not receive a copy of the license and are unable to | - | obtain it through the world-wide-web, please send an email | - | to license@phalconphp.com so we can send you a copy immediately. | - +------------------------------------------------------------------------+ - | Authors: Andres Gutierrez <andres@phalconphp.com> | - | Eduar Carvajal <eduar@phalconphp.com> | - +------------------------------------------------------------------------+ - */ - -namespace Phalcon\Cache\Backend; - -use Phalcon\Cache\Exception; -use Phalcon\Cache\Backend; - -/** - * Phalcon\Cache\Backend\Apc - * - * Allows to cache output fragments, PHP data and raw data using an APC backend - * - *<code> - * use Phalcon\Cache\Backend\Apc; - * use Phalcon\Cache\Frontend\Data as FrontData; - * - * // Cache data for 2 days - * $frontCache = new FrontData( - * [ - * "lifetime" => 172800, - * ] - * ); - * - * $cache = new Apc( - * $frontCache, - * [ - * "prefix" => "app-data", - * ] - * ); - * - * // Cache arbitrary data - * $cache->save("my-data", [1, 2, 3, 4, 5]); - * - * // Get data - * $data = $cache->get("my-data"); - *</code> - * - * @see \Phalcon\Cache\Backend\Apcu - * @deprecated - */ -class Apc extends Backend -{ - - /** - * Returns a cached content - */ - public function get(string keyName, int lifetime = null) -> var | null - { - var prefixedKey, cachedContent; - - let prefixedKey = "_PHCA" . this->_prefix . keyName, - this->_lastKey = prefixedKey; - - let cachedContent = apc_fetch(prefixedKey); - if cachedContent === false { - return null; - } - - return this->_frontend->afterRetrieve(cachedContent); - } - - /** - * Stores cached content into the APC backend and stops the frontend - * - * @param string|int keyName - * @param string content - * @param int lifetime - */ - public function save(var keyName = null, var content = null, var lifetime = null, boolean stopBuffer = true) -> boolean - { - var lastKey, frontend, cachedContent, preparedContent, ttl, isBuffering, success; - - if keyName === null { - let lastKey = this->_lastKey; - } else { - let lastKey = "_PHCA" . this->_prefix . keyName; - } - - if !lastKey { - throw new Exception("Cache must be started first"); - } - - let frontend = this->_frontend; - if content === null { - let cachedContent = frontend->getContent(); - } else { - let cachedContent = content; - } - - if !is_numeric(cachedContent) { - let preparedContent = frontend->beforeStore(cachedContent); - } else { - let preparedContent = cachedContent; - } - - /** - * Take the lifetime from the frontend or read it from the set in start() - */ - if lifetime === null { - let lifetime = this->_lastLifetime; - if lifetime === null { - let ttl = frontend->getLifetime(); - } else { - let ttl = lifetime, - this->_lastKey = lastKey; - } - } else { - let ttl = lifetime; - } - - /** - * Call apc_store in the PHP userland since most of the time it isn't available at compile time - */ - let success = apc_store(lastKey, preparedContent, ttl); - - if !success { - throw new Exception("Failed storing data in apc"); - } - - let isBuffering = frontend->isBuffering(); - - if stopBuffer === true { - frontend->stop(); - } - - if isBuffering === true { - echo cachedContent; - } - - let this->_started = false; - - return success; - } - - /** - * Increment of a given key, by number $value - * - * @param string keyName - */ - public function increment(keyName = null, int value = 1) -> int | boolean - { - var prefixedKey, cachedContent, result; - - let prefixedKey = "_PHCA" . this->_prefix . keyName; - let this->_lastKey = prefixedKey; - - if function_exists("apc_inc") { - let result = apc_inc(prefixedKey, value); - return result; - } else { - let cachedContent = apc_fetch(prefixedKey); - - if is_numeric(cachedContent) { - let result = cachedContent + value; - this->save(keyName, result); - return result; - } - } - - return false; - } - - /** - * Decrement of a given key, by number $value - * - * @param string keyName - */ - public function decrement(keyName = null, int value = 1) -> int | boolean - { - var lastKey, cachedContent, result; - - let lastKey = "_PHCA" . this->_prefix . keyName, - this->_lastKey = lastKey; - - if function_exists("apc_dec") { - return apc_dec(lastKey, value); - } else { - let cachedContent = apc_fetch(lastKey); - - if is_numeric(cachedContent) { - let result = cachedContent - value; - this->save(keyName, result); - return result; - } - } - - return false; - } - - /** - * Deletes a value from the cache by its key - */ - public function delete(string! keyName) -> boolean - { - return apc_delete("_PHCA" . this->_prefix . keyName); - } - - /** - * Query the existing cached keys. - * - * <code> - * $cache->save("users-ids", [1, 2, 3]); - * $cache->save("projects-ids", [4, 5, 6]); - * - * var_dump($cache->queryKeys("users")); // ["users-ids"] - * </code> - */ - public function queryKeys(string prefix = null) -> array - { - var prefixPattern, apc, keys, key; - - if empty prefix { - let prefixPattern = "/^_PHCA/"; - } else { - let prefixPattern = "/^_PHCA" . prefix . "/"; - } - - let keys = [], - apc = new \APCIterator("user", prefixPattern); - - for key, _ in iterator(apc) { - let keys[] = substr(key, 5); - } - - return keys; - } - - /** - * Checks if cache exists and it hasn't expired - * - * @param string|int keyName - * @param int lifetime - */ - public function exists(keyName = null, lifetime = null) -> boolean - { - var lastKey; - - if keyName === null { - let lastKey = this->_lastKey; - } else { - let lastKey = "_PHCA" . this->_prefix . keyName; - } - - if lastKey { - if apc_exists(lastKey) !== false { - return true; - } - } - - return false; - } - - /** - * Immediately invalidates all existing items. - * - * <code> - * use Phalcon\Cache\Backend\Apc; - * - * $cache = new Apc($frontCache, ["prefix" => "app-data"]); - * - * $cache->save("my-data", [1, 2, 3, 4, 5]); - * - * // 'my-data' and all other used keys are deleted - * $cache->flush(); - * </code> - */ - public function flush() -> boolean - { - var item, prefixPattern; - - let prefixPattern = "/^_PHCA" . this->_prefix . "/"; - - for item in iterator(new \APCIterator("user", prefixPattern)) { - apc_delete(item["key"]); - } - - return true; - } -} diff --git a/phalcon/cache/backend/apcu.zep b/phalcon/cache/backend/apcu.zep index 4c2f7969c8a..c8371917fba 100644 --- a/phalcon/cache/backend/apcu.zep +++ b/phalcon/cache/backend/apcu.zep @@ -58,10 +58,14 @@ class Apcu extends Backend /** * Returns a cached content */ - public function get(string keyName, int lifetime = null) -> var | null + public function get(string keyName, var lifetime = null) -> var | null { var prefixedKey, cachedContent; + if lifetime < 1 { + throw new Exception("The lifetime must be at least 1 second"); + } + let prefixedKey = "_PHCA" . this->_prefix . keyName, this->_lastKey = prefixedKey; @@ -79,9 +83,9 @@ class Apcu extends Backend * @param string|int keyName * @param string content * @param int lifetime - * @param boolean stopBuffer + * @param bool stopBuffer */ - public function save(var keyName = null, var content = null, var lifetime = null, boolean stopBuffer = true) -> boolean + public function save(var keyName = null, var content = null, var lifetime = null, bool stopBuffer = true) -> bool { var lastKey, frontend, cachedContent, preparedContent, ttl, isBuffering, success; @@ -152,7 +156,7 @@ class Apcu extends Backend * * @param string keyName */ - public function increment(keyName = null, int value = 1) -> int | boolean + public function increment(keyName = null, int value = 1) -> int | bool { var prefixedKey; @@ -167,7 +171,7 @@ class Apcu extends Backend * * @param string keyName */ - public function decrement(keyName = null, int value = 1) -> int | boolean + public function decrement(keyName = null, int value = 1) -> int | bool { var lastKey; @@ -180,7 +184,7 @@ class Apcu extends Backend /** * Deletes a value from the cache by its key */ - public function delete(string! keyName) -> boolean + public function delete(var keyName) -> bool { return apcu_delete("_PHCA" . this->_prefix . keyName); } @@ -231,7 +235,7 @@ class Apcu extends Backend * @param string|int keyName * @param int lifetime */ - public function exists(keyName = null, lifetime = null) -> boolean + public function exists(var keyName = null, int lifetime = null) -> bool { var lastKey; @@ -262,7 +266,7 @@ class Apcu extends Backend * $cache->flush(); * </code> */ - public function flush() -> boolean + public function flush() -> bool { var item, prefixPattern, apc = null; diff --git a/phalcon/cache/backend/factory.zep b/phalcon/cache/backend/factory.zep index ad1ba16d023..bbfc5d2a895 100644 --- a/phalcon/cache/backend/factory.zep +++ b/phalcon/cache/backend/factory.zep @@ -45,7 +45,7 @@ class Factory extends BaseFactory /** * @param \Phalcon\Config|array config */ - public static function load(var config) -> <BackendInterface> + public static function load(var config) -> object { return self::loadClass("Phalcon\\Cache\\Backend", config); } diff --git a/phalcon/cache/backend/file.zep b/phalcon/cache/backend/file.zep index fd2bc3b1869..b8877c97547 100644 --- a/phalcon/cache/backend/file.zep +++ b/phalcon/cache/backend/file.zep @@ -64,7 +64,7 @@ class File extends Backend /** * Default to false for backwards compatibility * - * @var boolean + * @var bool */ private _useSafeKey = false; @@ -81,7 +81,7 @@ class File extends Backend if fetch safekey, options["safekey"] { if typeof safekey !== "boolean" { - throw new Exception("safekey option should be a boolean."); + throw new Exception("safekey option should be a bool."); } let this->_useSafeKey = safekey; @@ -199,7 +199,7 @@ class File extends Backend * @param string content * @param int lifetime */ - public function save(var keyName = null, var content = null, var lifetime = null, boolean stopBuffer = true) -> boolean + public function save(var keyName = null, var content = null, var lifetime = null, bool stopBuffer = true) -> bool { var lastKey, frontend, cacheDir, isBuffering, cacheFile, cachedContent, preparedContent, status, finalContent, lastLifetime; @@ -287,7 +287,7 @@ class File extends Backend * * @param int|string keyName */ - public function delete(var keyName) -> boolean + public function delete(var keyName) -> bool { var cacheFile, cacheDir; @@ -351,7 +351,7 @@ class File extends Backend * @param string|int keyName * @param int lifetime */ - public function exists(var keyName = null, int lifetime = null) -> boolean + public function exists(var keyName = null, int lifetime = null) -> bool { var lastKey, prefix, cacheFile, cachedContent; int ttl; @@ -605,7 +605,7 @@ class File extends Backend /** * Immediately invalidates all existing items. */ - public function flush() -> boolean + public function flush() -> bool { var prefix, cacheDir, item, key, cacheFile; diff --git a/phalcon/cache/backend/libmemcached.zep b/phalcon/cache/backend/libmemcached.zep index f273ae4bbd2..51688a19eba 100644 --- a/phalcon/cache/backend/libmemcached.zep +++ b/phalcon/cache/backend/libmemcached.zep @@ -146,7 +146,7 @@ class Libmemcached extends Backend /** * Returns a cached content */ - public function get(string keyName, int lifetime = null) -> var | null + public function get(string keyName, var lifetime = null) -> var | null { var memcache, prefixedKey, cachedContent; @@ -178,7 +178,7 @@ class Libmemcached extends Backend * @param string content * @param int lifetime */ - public function save(keyName = null, content = null, lifetime = null, boolean stopBuffer = true) -> boolean + public function save(keyName = null, content = null, lifetime = null, bool stopBuffer = true) -> bool { var lastKey, frontend, memcache, cachedContent, preparedContent, tmp, tt1, success, options, specialKey, keys, isBuffering; @@ -278,9 +278,9 @@ class Libmemcached extends Backend * Deletes a value from the cache by its key * * @param int|string keyName - * @return boolean + * @return bool */ - public function delete(keyName) + public function delete(var keyName) -> bool { var memcache, prefixedKey, options, keys, specialKey, ret; @@ -367,7 +367,7 @@ class Libmemcached extends Backend * @param string keyName * @param int lifetime */ - public function exists(keyName = null, lifetime = null) -> boolean + public function exists(var keyName = null, int lifetime = null) -> bool { var lastKey, memcache, value; @@ -398,7 +398,7 @@ class Libmemcached extends Backend * * @param string keyName */ - public function increment(keyName = null, int value = 1) -> int | boolean + public function increment(keyName = null, int value = 1) -> int | bool { var memcache, prefix, lastKey; @@ -425,7 +425,7 @@ class Libmemcached extends Backend * * @param string keyName */ - public function decrement(keyName = null, int value = 1) -> int | boolean + public function decrement(keyName = null, int value = 1) -> int | bool { var memcache, prefix, lastKey; @@ -467,7 +467,7 @@ class Libmemcached extends Backend * $cache->flush(); *</code> */ - public function flush() -> boolean + public function flush() -> bool { var memcache, options, keys, specialKey, key; diff --git a/phalcon/cache/backend/memcache.zep b/phalcon/cache/backend/memcache.zep deleted file mode 100644 index 258f41dc630..00000000000 --- a/phalcon/cache/backend/memcache.zep +++ /dev/null @@ -1,488 +0,0 @@ - -/* - +------------------------------------------------------------------------+ - | Phalcon Framework | - +------------------------------------------------------------------------+ - | Copyright (c) 2011-2017 Phalcon Team (https://phalconphp.com) | - +------------------------------------------------------------------------+ - | This source file is subject to the New BSD License that is bundled | - | with this package in the file LICENSE.txt. | - | | - | If you did not receive a copy of the license and are unable to | - | obtain it through the world-wide-web, please send an email | - | to license@phalconphp.com so we can send you a copy immediately. | - +------------------------------------------------------------------------+ - | Authors: Andres Gutierrez <andres@phalconphp.com> | - | Eduar Carvajal <eduar@phalconphp.com> | - +------------------------------------------------------------------------+ - */ - -namespace Phalcon\Cache\Backend; - -use Phalcon\Cache\Backend; -use Phalcon\Cache\Exception; -use Phalcon\Cache\FrontendInterface; - -/** - * Phalcon\Cache\Backend\Memcache - * - * Allows to cache output fragments, PHP data or raw data to a memcache backend - * - * This adapter uses the special memcached key "_PHCM" to store all the keys internally used by the adapter - * - *<code> - * use Phalcon\Cache\Backend\Memcache; - * use Phalcon\Cache\Frontend\Data as FrontData; - * - * // Cache data for 2 days - * $frontCache = new FrontData( - * [ - * "lifetime" => 172800, - * ] - * ); - * - * // Create the Cache setting memcached connection options - * $cache = new Memcache( - * $frontCache, - * [ - * "host" => "localhost", - * "port" => 11211, - * "persistent" => false, - * ] - * ); - * - * // Cache arbitrary data - * $cache->save("my-data", [1, 2, 3, 4, 5]); - * - * // Get data - * $data = $cache->get("my-data"); - *</code> - */ -class Memcache extends Backend -{ - - protected _memcache = null; - - /** - * Phalcon\Cache\Backend\Memcache constructor - */ - public function __construct(<FrontendInterface> frontend, array options = []) - { - if !isset options["host"] { - let options["host"] = "127.0.0.1"; - } - - if !isset options["port"] { - let options["port"] = 11211; - } - - if !isset options["persistent"] { - let options["persistent"] = false; - } - - if !isset options["statsKey"] { - // Disable tracking of cached keys per default - let options["statsKey"] = ""; - } - - parent::__construct(frontend, options); - } - - /** - * Create internal connection to memcached - */ - public function _connect() - { - var options, memcache, persistent, success, host, port; - - let options = this->_options; - let memcache = new \Memcache(); - - if !fetch host, options["host"] || !fetch port, options["port"] || !fetch persistent, options["persistent"] { - throw new Exception("Unexpected inconsistency in options"); - } - - if persistent { - let success = memcache->pconnect(host, port); - } else { - let success = memcache->connect(host, port); - } - - if !success { - throw new Exception("Cannot connect to Memcached server"); - } - - let this->_memcache = memcache; - } - - /** - * Add servers to memcache pool - */ - public function addServers(string! host, int port, boolean persistent = false) -> boolean - { - var memcache, success; - /** - * Check if a connection is created or make a new one - */ - let memcache = this->_memcache; - if typeof memcache != "object" { - this->_connect(); - let memcache = this->_memcache; - } - let success = memcache->addServer(host, port, persistent); - let this->_memcache = memcache; - return success; - } - - /** - * Returns a cached content - */ - public function get(string keyName, int lifetime = null) -> var | null - { - var memcache, prefixedKey, cachedContent, retrieve; - - let memcache = this->_memcache; - if typeof memcache != "object" { - this->_connect(); - let memcache = this->_memcache; - } - - let prefixedKey = this->_prefix . keyName; - let this->_lastKey = prefixedKey; - let cachedContent = memcache->get(prefixedKey); - - if cachedContent === false { - return null; - } - - if is_numeric(cachedContent) { - return cachedContent; - } - - let retrieve = this->_frontend->afterRetrieve(cachedContent); - return retrieve; - } - - /** - * Stores cached content into the file backend and stops the frontend - * - * @param int|string keyName - * @param string content - * @param int lifetime - */ - public function save(var keyName = null, var content = null, var lifetime = null, boolean stopBuffer = true) -> boolean - { - var lastKey, frontend, memcache, cachedContent, preparedContent, tmp, ttl, success, options, - specialKey, keys, isBuffering; - - if keyName === null { - let lastKey = this->_lastKey; - } else { - let lastKey = this->_prefix . keyName, - this->_lastKey = lastKey; - } - - if !lastKey { - throw new Exception("Cache must be started first"); - } - - let frontend = this->_frontend; - - /** - * Check if a connection is created or make a new one - */ - let memcache = this->_memcache; - if typeof memcache != "object" { - this->_connect(); - let memcache = this->_memcache; - } - - if content === null { - let cachedContent = frontend->getContent(); - } else { - let cachedContent = content; - } - - /** - * Prepare the content in the frontend - */ - if !is_numeric(cachedContent) { - let preparedContent = frontend->beforeStore(cachedContent); - } else { - let preparedContent = cachedContent; - } - - if lifetime === null { - let tmp = this->_lastLifetime; - - if !tmp { - let ttl = frontend->getLifetime(); - } else { - let ttl = tmp; - } - } else { - let ttl = lifetime; - } - - /** - * We store without flags - */ - let success = memcache->set(lastKey, preparedContent, 0, ttl); - - if !success { - throw new Exception("Failed storing data in memcached"); - } - - let options = this->_options; - - if !fetch specialKey, options["statsKey"] { - throw new Exception("Unexpected inconsistency in options"); - } - - if specialKey != "" { - /** - * Update the stats key - */ - let keys = memcache->get(specialKey); - if typeof keys != "array" { - let keys = []; - } - - if !isset keys[lastKey] { - let keys[lastKey] = ttl; - memcache->set(specialKey, keys); - } - } - - let isBuffering = frontend->isBuffering(); - - if stopBuffer === true { - frontend->stop(); - } - - if isBuffering === true { - echo cachedContent; - } - - let this->_started = false; - - return success; - } - - /** - * Deletes a value from the cache by its key - * - * @param int|string keyName - */ - public function delete(var keyName) -> boolean - { - var memcache, prefixedKey, options, keys, specialKey, ret; - - let memcache = this->_memcache; - if typeof memcache != "object" { - this->_connect(); - let memcache = this->_memcache; - } - - let prefixedKey = this->_prefix . keyName; - let options = this->_options; - - if !fetch specialKey, options["statsKey"] { - throw new Exception("Unexpected inconsistency in options"); - } - - if specialKey != "" { - let keys = memcache->get(specialKey); - - if typeof keys == "array" { - unset keys[prefixedKey]; - memcache->set(specialKey, keys); - } - } - - /** - * Delete the key from memcached - */ - let ret = memcache->delete(prefixedKey); - return ret; - } - - /** - * Query the existing cached keys. - * - * <code> - * $cache->save("users-ids", [1, 2, 3]); - * $cache->save("projects-ids", [4, 5, 6]); - * - * var_dump($cache->queryKeys("users")); // ["users-ids"] - * </code> - */ - public function queryKeys(string prefix = null) -> array - { - var memcache, options, keys, specialKey, key, idx; - - let memcache = this->_memcache; - - if typeof memcache != "object" { - this->_connect(); - let memcache = this->_memcache; - } - - let options = this->_options; - - if !fetch specialKey, options["statsKey"] { - throw new Exception("Unexpected inconsistency in options"); - } - - if specialKey == "" { - throw new Exception("Cached keys need to be enabled to use this function (options['statsKey'] == '_PHCM')!"); - } - - /** - * Get the key from memcached - */ - let keys = memcache->get(specialKey); - if unlikely typeof keys != "array" { - return []; - } - - let keys = array_keys(keys); - for idx, key in keys { - if !empty prefix && !starts_with(key, prefix) { - unset keys[idx]; - } - } - - return keys; - } - - /** - * Checks if cache exists and it isn't expired - * - * @param string keyName - * @param int lifetime - */ - public function exists(keyName = null, lifetime = null) -> boolean - { - var lastKey, memcache, prefix; - - if !keyName { - let lastKey = this->_lastKey; - } else { - let prefix = this->_prefix; - let lastKey = prefix . keyName; - } - - if lastKey { - - let memcache = this->_memcache; - if typeof memcache != "object" { - this->_connect(); - let memcache = this->_memcache; - } - - if !memcache->get(lastKey) { - return false; - } - return true; - } - - return false; - } - - /** - * Increment of given $keyName by $value - * - * @param string keyName - */ - public function increment(keyName = null, int value = 1) -> int | boolean - { - var memcache, prefix, lastKey; - - let memcache = this->_memcache; - - if typeof memcache != "object" { - this->_connect(); - let memcache = this->_memcache; - } - - if !keyName { - let lastKey = this->_lastKey; - } else { - let prefix = this->_prefix; - let lastKey = prefix . keyName; - let this->_lastKey = lastKey; - } - - return memcache->increment(lastKey, value); - } - - /** - * Decrement of $keyName by given $value - * - * @param string keyName - */ - public function decrement(keyName = null, int value = 1) -> int | boolean - { - var memcache, prefix, lastKey; - - let memcache = this->_memcache; - - if typeof memcache != "object" { - this->_connect(); - let memcache = this->_memcache; - } - - if !keyName { - let lastKey = this->_lastKey; - } else { - let prefix = this->_prefix; - let lastKey = prefix . keyName; - let this->_lastKey = lastKey; - } - - return memcache->decrement(lastKey, value); - } - - /** - * Immediately invalidates all existing items. - */ - public function flush() -> boolean - { - var memcache, options, keys, specialKey, key; - - let memcache = this->_memcache; - - if typeof memcache != "object" { - this->_connect(); - let memcache = this->_memcache; - } - - let options = this->_options; - - if !fetch specialKey, options["statsKey"] { - throw new Exception("Unexpected inconsistency in options"); - } - - if specialKey == "" { - throw new Exception("Cached keys need to be enabled to use this function (options['statsKey'] == '_PHCM')!"); - } - - /** - * Get the key from memcached - */ - let keys = memcache->get(specialKey); - if unlikely typeof keys != "array" { - return true; - } - - for key, _ in keys { - memcache->delete(key); - } - - memcache->delete(specialKey); - - return true; - } - -} diff --git a/phalcon/cache/backend/memory.zep b/phalcon/cache/backend/memory.zep index 6a5b3887401..e86a6eb3047 100644 --- a/phalcon/cache/backend/memory.zep +++ b/phalcon/cache/backend/memory.zep @@ -51,7 +51,7 @@ class Memory extends Backend implements \Serializable /** * Returns a cached content */ - public function get(string keyName, int lifetime = null) -> var | null + public function get(string keyName, var lifetime = null) -> var | null { var lastKey, cachedContent; @@ -79,7 +79,7 @@ class Memory extends Backend implements \Serializable * @param string content * @param int lifetime */ - public function save(var keyName = null, var content = null, lifetime = null, boolean stopBuffer = true) -> boolean + public function save(var keyName = null, var content = null, lifetime = null, bool stopBuffer = true) -> bool { var lastKey, frontend, cachedContent, preparedContent, isBuffering; @@ -129,7 +129,7 @@ class Memory extends Backend implements \Serializable * * @param string keyName */ - public function delete(var keyName) -> boolean + public function delete(var keyName) -> bool { var key, data; @@ -181,7 +181,7 @@ class Memory extends Backend implements \Serializable * @param string|int keyName * @param int lifetime */ - public function exists(var keyName = null, lifetime = null) -> boolean + public function exists(var keyName = null, int lifetime = null) -> bool { var lastKey; @@ -265,7 +265,7 @@ class Memory extends Backend implements \Serializable /** * Immediately invalidates all existing items. */ - public function flush() -> boolean + public function flush() -> bool { let this->_data = null; return true; diff --git a/phalcon/cache/backend/mongo.zep b/phalcon/cache/backend/mongo.zep index 574f5dfb3a1..617d2746810 100644 --- a/phalcon/cache/backend/mongo.zep +++ b/phalcon/cache/backend/mongo.zep @@ -150,7 +150,7 @@ class Mongo extends Backend /** * Returns a cached content */ - public function get(string keyName, int lifetime = null) -> var | null + public function get(string keyName, var lifetime = null) -> var | null { var frontend, prefixedKey, conditions, document, cachedContent; @@ -184,7 +184,7 @@ class Mongo extends Backend * @param string content * @param int lifetime */ - public function save(keyName = null, content = null, lifetime = null, boolean stopBuffer = true) -> boolean + public function save(keyName = null, content = null, lifetime = null, bool stopBuffer = true) -> bool { var lastkey, frontend, cachedContent, tmp, ttl, collection, timestamp, conditions, document, preparedContent, @@ -268,7 +268,7 @@ class Mongo extends Backend * * @param int|string keyName */ - public function delete(keyName) -> boolean + public function delete(var keyName) -> bool { this->_getCollection()->remove(["key": this->_prefix . keyName]); @@ -320,7 +320,7 @@ class Mongo extends Backend * @param string keyName * @param int lifetime */ - public function exists(keyName = null, lifetime = null) -> boolean + public function exists(var keyName = null, int lifetime = null) -> bool { var lastKey; @@ -424,7 +424,7 @@ class Mongo extends Backend /** * Immediately invalidates all existing items. */ - public function flush() -> boolean + public function flush() -> bool { this->_getCollection()->remove(); diff --git a/phalcon/cache/backend/redis.zep b/phalcon/cache/backend/redis.zep index 18c702b2c26..49280d4b37c 100644 --- a/phalcon/cache/backend/redis.zep +++ b/phalcon/cache/backend/redis.zep @@ -168,7 +168,7 @@ class Redis extends Backend /** * Returns a cached content */ - public function get(string keyName, int lifetime = null) -> var | null + public function get(string keyName, var lifetime = null) -> var | null { var redis, frontend, cachedContent; @@ -206,9 +206,9 @@ class Redis extends Backend * @param int|string keyName * @param string content * @param int lifetime - * @param boolean stopBuffer + * @param bool stopBuffer */ - public function save(keyName = null, content = null, lifetime = null, boolean stopBuffer = true) -> boolean + public function save(keyName = null, content = null, lifetime = null, bool stopBuffer = true) -> bool { var prefixedKey, frontend, redis, cachedContent, preparedContent, tmp, ttl, success, isBuffering; @@ -296,7 +296,7 @@ class Redis extends Backend * * @param int|string keyName */ - public function delete(keyName) -> boolean + public function delete(var keyName) -> bool { var redis, prefixedKey; @@ -331,7 +331,7 @@ class Redis extends Backend */ public function queryKeys(string prefix = null) -> array { - var redis, options, keys, key, idx; + var redis, keys, key, idx; let redis = this->redis; if typeof redis != "object" { @@ -366,7 +366,7 @@ class Redis extends Backend * @param string keyName * @param int lifetime */ - public function exists(keyName = null, lifetime = null) -> boolean + public function exists(var keyName = null, int lifetime = null) -> bool { var redis; @@ -434,7 +434,7 @@ class Redis extends Backend /** * Immediately invalidates all existing items. */ - public function flush() -> boolean + public function flush() -> bool { var redis, keys, key, lastKey; @@ -475,4 +475,4 @@ class Redis extends Backend { return this->statsKey . this->getPrefixedKey(keyName); } -} \ No newline at end of file +} diff --git a/phalcon/cache/backend/xcache.zep b/phalcon/cache/backend/xcache.zep deleted file mode 100644 index 138a033c961..00000000000 --- a/phalcon/cache/backend/xcache.zep +++ /dev/null @@ -1,382 +0,0 @@ - -/* - +------------------------------------------------------------------------+ - | Phalcon Framework | - +------------------------------------------------------------------------+ - | Copyright (c) 2011-2017 Phalcon Team (https://phalconphp.com) | - +------------------------------------------------------------------------+ - | This source file is subject to the New BSD License that is bundled | - | with this package in the file LICENSE.txt. | - | | - | If you did not receive a copy of the license and are unable to | - | obtain it through the world-wide-web, please send an email | - | to license@phalconphp.com so we can send you a copy immediately. | - +------------------------------------------------------------------------+ - | Authors: Andres Gutierrez <andres@phalconphp.com> | - | Eduar Carvajal <eduar@phalconphp.com> | - +------------------------------------------------------------------------+ - */ - -namespace Phalcon\Cache\Backend; - -use Phalcon\Cache\Backend; -use Phalcon\Cache\Exception; -use Phalcon\Cache\FrontendInterface; - -/** - * Phalcon\Cache\Backend\Xcache - * - * Allows to cache output fragments, PHP data and raw data using an XCache backend - * - *<code> - * use Phalcon\Cache\Backend\Xcache; - * use Phalcon\Cache\Frontend\Data as FrontData; - * - * // Cache data for 2 days - * $frontCache = new FrontData( - * [ - * "lifetime" => 172800, - * ] - * ); - * - * $cache = new Xcache( - * $frontCache, - * [ - * "prefix" => "app-data", - * ] - * ); - * - * // Cache arbitrary data - * $cache->save("my-data", [1, 2, 3, 4, 5]); - * - * // Get data - * $data = $cache->get("my-data"); - *</code> - */ -class Xcache extends Backend -{ - - /** - * Phalcon\Cache\Backend\Xcache constructor - */ - public function __construct(<FrontendInterface> frontend, array options = []) - { - if typeof options != "array" { - let options = []; - } - - if !isset options["statsKey"] { - // Disable tracking of cached keys per default - let options["statsKey"] = ""; - } - - parent::__construct(frontend, options); - } - - /** - * Returns a cached content - */ - public function get(string keyName, int lifetime = null) -> var | null - { - var frontend, prefixedKey, cachedContent; - - let frontend = this->_frontend; - let prefixedKey = "_PHCX" . this->_prefix . keyName; - let this->_lastKey = prefixedKey; - let cachedContent = xcache_get(prefixedKey); - - if !cachedContent { - return null; - } - - if is_numeric(cachedContent) { - return cachedContent; - } else { - return frontend->afterRetrieve(cachedContent); - } - } - - /** - * Stores cached content into the file backend and stops the frontend - * - * @param int|string keyName - * @param string content - * @param int lifetime - */ - public function save(keyName = null, content = null, lifetime = null, boolean stopBuffer = true) -> boolean - { - var lastKey, frontend, cachedContent, preparedContent, tmp, tt1, success, isBuffering, - options, keys, specialKey; - - if keyName === null { - let lastKey = this->_lastKey; - } else { - let lastKey = "_PHCX" . this->_prefix . keyName, - this->_lastKey = lastKey; - } - - if !lastKey { - throw new Exception("Cache must be started first"); - } - - let frontend = this->_frontend; - if content === null { - let cachedContent = frontend->getContent(); - } else { - let cachedContent = content; - } - - if !is_numeric(cachedContent) { - let preparedContent = frontend->beforeStore(cachedContent); - } else { - let preparedContent = cachedContent; - } - - /** - * Take the lifetime from the frontend or read it from the set in start() - */ - if lifetime === null { - let tmp = this->_lastLifetime; - if !tmp { - let tt1 = frontend->getLifetime(); - } else { - let tt1 = tmp; - } - } else { - let tt1 = lifetime; - } - - let success = xcache_set(lastKey, preparedContent, tt1); - - if !success { - throw new Exception("Failed storing the data in xcache"); - } - - let isBuffering = frontend->isBuffering(); - - if stopBuffer === true { - frontend->stop(); - } - - if isBuffering === true { - echo cachedContent; - } - - let this->_started = false; - - if success { - let options = this->_options; - - if !fetch specialKey, this->_options["statsKey"] { - throw new Exception("Unexpected inconsistency in options"); - } - - if specialKey != "" { - /** - * xcache_list() is available only to the administrator (unless XCache was - * patched). We have to update the list of the stored keys. - */ - let keys = xcache_get(specialKey); - if typeof keys != "array" { - let keys = []; - } - - let keys[lastKey] = tt1; - xcache_set(specialKey, keys); - } - } - - return success; - } - - /** - * Deletes a value from the cache by its key - * - * @param int|string keyName - * @return boolean - */ - public function delete(var keyName) - { - var prefixedKey, specialKey, keys; - - let prefixedKey = "_PHCX" . this->_prefix . keyName; - - if !fetch specialKey, this->_options["statsKey"] { - throw new Exception("Unexpected inconsistency in options"); - } - - if specialKey != "" { - let keys = xcache_get(specialKey); - if typeof keys != "array" { - let keys = []; - } - - unset keys[prefixedKey]; - - xcache_set(specialKey, keys); - } - } - - /** - * Query the existing cached keys. - * - * <code> - * $cache->save("users-ids", [1, 2, 3]); - * $cache->save("projects-ids", [4, 5, 6]); - * - * var_dump($cache->queryKeys("users")); // ["users-ids"] - * </code> - */ - public function queryKeys(string prefix = null) -> array - { - var options, prefixed, specialKey, keys, retval, key, realKey; - - if !prefix { - let prefixed = "_PHCX"; - } else { - let prefixed = "_PHCX" . prefix; - } - - let options = this->_options; - - if !fetch specialKey, this->_options["statsKey"] { - throw new Exception("Unexpected inconsistency in options"); - } - - if specialKey == "" { - throw new Exception("Cached keys need to be enabled to use this function (options['statsKey'] == '_PHCX')!"); - } - - /** - * Get the key from XCache (we cannot use xcache_list() as it is available only to - * the administrator) - */ - let keys = xcache_get(specialKey); - if typeof keys != "array" { - return []; - } - - let retval = []; - - for key, _ in keys { - if starts_with(key, prefixed) { - let realKey = substr(key, 5); - let retval[] = realKey; - } - } - - return retval; - } - - /** - * Checks if cache exists and it isn't expired - * - * @param string keyName - * @param int lifetime - */ - public function exists(var keyName = null, lifetime = null) -> boolean - { - var lastKey; - - if !keyName { - let lastKey = this->_lastKey; - } else { - let lastKey = "_PHCX" . this->_prefix . keyName; - } - - if lastKey { - return xcache_isset(lastKey); - } - return false; - } - - /** - * Atomic increment of a given key, by number $value - * - * @param string keyName - */ - public function increment(var keyName, int value = 1) -> int - { - var lastKey, newVal, origVal; - - if !keyName { - let lastKey = this->_lastKey; - } else { - let lastKey = "_PHCX" . this->_prefix . keyName; - } - - if !lastKey { - throw new Exception("Cache must be started first"); - } - - if function_exists("xcache_inc") { - let newVal = xcache_inc(lastKey, value); - } else { - let origVal = xcache_get(lastKey); - let newVal = origVal - value; - xcache_set(lastKey, newVal); - } - - return newVal; - } - - /** - * Atomic decrement of a given key, by number $value - * - * @param string keyName - */ - public function decrement(keyName, int value = 1) -> int - { - var lastKey, newVal, origVal, success; - - if !keyName { - let lastKey = this->_lastKey; - } else { - let lastKey = "_PHCX" . this->_prefix . keyName; - } - - if !lastKey { - throw new Exception("Cache must be started first"); - } - - if function_exists("xcache_dec") { - let newVal = xcache_dec(lastKey, value); - } else { - let origVal = xcache_get(lastKey); - let newVal = origVal - value; - let success = xcache_set(lastKey, newVal); - } - - return newVal; - } - - /** - * Immediately invalidates all existing items. - */ - public function flush() -> boolean - { - var options, specialKey, keys, key; - - let options = this->_options; - - if !fetch specialKey, this->_options["statsKey"] { - throw new Exception("Unexpected inconsistency in options"); - } - - if specialKey == "" { - throw new Exception("Cached keys need to be enabled to use this function (options['statsKey'] == '_PHCM')!"); - } - - let keys = xcache_get(specialKey); - - if typeof keys == "array" { - for key, _ in keys { - unset keys[key]; - xcache_unset(key); - } - xcache_set(specialKey, keys); - } - - return true; - } -} diff --git a/phalcon/cache/backendinterface.zep b/phalcon/cache/backendinterface.zep index b5a9de5ed77..51b7c400a57 100644 --- a/phalcon/cache/backendinterface.zep +++ b/phalcon/cache/backendinterface.zep @@ -38,7 +38,7 @@ interface BackendInterface /** * Stops the frontend without store any cached content */ - public function stop(boolean stopBuffer = true); + public function stop(bool stopBuffer = true); /** * Returns front-end instance adapter related to the back-end @@ -53,12 +53,12 @@ interface BackendInterface /** * Checks whether the last cache is fresh or cached */ - public function isFresh() -> boolean; + public function isFresh() -> bool; /** * Checks whether the cache has starting buffering or not */ - public function isStarted() -> boolean; + public function isStarted() -> bool; /** * Sets the last key used in the cache @@ -73,7 +73,7 @@ interface BackendInterface /** * Returns a cached content */ - public function get(string keyName, int lifetime = null) -> var | null; + public function get(string keyName, var lifetime = null) -> var | null; /** * Stores cached content into the file backend and stops the frontend @@ -81,16 +81,16 @@ interface BackendInterface * @param int|string keyName * @param string content * @param int lifetime - * @return boolean true on success/false otherwise + * @return bool true on success/false otherwise */ - public function save(keyName = null, content = null, lifetime = null, boolean stopBuffer = true) -> boolean; + public function save(keyName = null, content = null, lifetime = null, bool stopBuffer = true) -> bool; /** * Deletes a value from the cache by its key * * @param int|string keyName */ - public function delete(keyName) -> boolean; + public function delete(keyName) -> bool; /** * Query the existing cached keys @@ -103,5 +103,5 @@ interface BackendInterface * @param string keyName * @param int lifetime */ - public function exists(keyName = null, int lifetime = null) -> boolean; + public function exists(var keyName = null, int lifetime = null) -> bool; } diff --git a/phalcon/cache/frontend/base64.zep b/phalcon/cache/frontend/base64.zep index 29e5fc2c1fe..e951d01875c 100644 --- a/phalcon/cache/frontend/base64.zep +++ b/phalcon/cache/frontend/base64.zep @@ -97,7 +97,7 @@ class Base64 implements FrontendInterface /** * Check whether if frontend is buffering output */ - public function isBuffering() -> boolean + public function isBuffering() -> bool { return false; } diff --git a/phalcon/cache/frontend/data.zep b/phalcon/cache/frontend/data.zep index 8f2facf5525..53a338ab37c 100644 --- a/phalcon/cache/frontend/data.zep +++ b/phalcon/cache/frontend/data.zep @@ -102,7 +102,7 @@ class Data implements FrontendInterface /** * Check whether if frontend is buffering output */ - public function isBuffering() -> boolean + public function isBuffering() -> bool { return false; } diff --git a/phalcon/cache/frontend/factory.zep b/phalcon/cache/frontend/factory.zep index 86dbe0dfc6c..6d33109202c 100644 --- a/phalcon/cache/frontend/factory.zep +++ b/phalcon/cache/frontend/factory.zep @@ -42,7 +42,7 @@ class Factory extends BaseFactory /** * @param \Phalcon\Config|array config */ - public static function load(var config) -> <FrontendInterface> + public static function load(var config) -> object { return self::loadClass("Phalcon\\Cache\\Frontend", config); } diff --git a/phalcon/cache/frontend/igbinary.zep b/phalcon/cache/frontend/igbinary.zep index 8baaf267a48..5c4bdcf66d3 100644 --- a/phalcon/cache/frontend/igbinary.zep +++ b/phalcon/cache/frontend/igbinary.zep @@ -99,7 +99,7 @@ class Igbinary extends Data implements FrontendInterface /** * Check whether if frontend is buffering output */ - public function isBuffering() -> boolean + public function isBuffering() -> bool { return false; } diff --git a/phalcon/cache/frontend/json.zep b/phalcon/cache/frontend/json.zep index 145370390cd..f074a215f17 100644 --- a/phalcon/cache/frontend/json.zep +++ b/phalcon/cache/frontend/json.zep @@ -89,7 +89,7 @@ class Json implements FrontendInterface /** * Check whether if frontend is buffering output */ - public function isBuffering() -> boolean + public function isBuffering() -> bool { return false; } diff --git a/phalcon/cache/frontend/msgpack.zep b/phalcon/cache/frontend/msgpack.zep index 167d0a4c893..88146604188 100644 --- a/phalcon/cache/frontend/msgpack.zep +++ b/phalcon/cache/frontend/msgpack.zep @@ -110,7 +110,7 @@ class Msgpack extends Data implements FrontendInterface /** * Check whether if frontend is buffering output */ - public function isBuffering() -> boolean + public function isBuffering() -> bool { return false; } diff --git a/phalcon/cache/frontend/none.zep b/phalcon/cache/frontend/none.zep index afe63eebad8..c851acd68f4 100644 --- a/phalcon/cache/frontend/none.zep +++ b/phalcon/cache/frontend/none.zep @@ -79,7 +79,7 @@ class None implements FrontendInterface /** * Check whether if frontend is buffering output, always false */ - public function isBuffering() -> boolean + public function isBuffering() -> bool { return false; } diff --git a/phalcon/cache/frontend/output.zep b/phalcon/cache/frontend/output.zep index 2fe57f44127..453d41902d7 100644 --- a/phalcon/cache/frontend/output.zep +++ b/phalcon/cache/frontend/output.zep @@ -106,7 +106,7 @@ class Output implements FrontendInterface /** * Check whether if frontend is buffering output */ - public function isBuffering() -> boolean + public function isBuffering() -> bool { return this->_buffering; } diff --git a/phalcon/cache/frontendinterface.zep b/phalcon/cache/frontendinterface.zep index 8a484f1e4a2..e7c8414ca5a 100644 --- a/phalcon/cache/frontendinterface.zep +++ b/phalcon/cache/frontendinterface.zep @@ -35,7 +35,7 @@ interface FrontendInterface /** * Check whether if frontend is buffering output */ - public function isBuffering() -> boolean; + public function isBuffering() -> bool; /** * Starts the frontend diff --git a/phalcon/cache/multiple.zep b/phalcon/cache/multiple.zep index 4567db18c49..c5f8218f31a 100644 --- a/phalcon/cache/multiple.zep +++ b/phalcon/cache/multiple.zep @@ -154,7 +154,7 @@ class Multiple * @param string keyName * @param string content * @param int lifetime - * @param boolean stopBuffer + * @param bool stopBuffer */ public function save(var keyName = null, content = null, lifetime = null, stopBuffer = null) -> void { @@ -170,7 +170,7 @@ class Multiple * * @param string|int keyName */ - public function delete(var keyName) -> boolean + public function delete(var keyName) -> bool { var backend; @@ -187,7 +187,7 @@ class Multiple * @param string|int keyName * @param int lifetime */ - public function exists(var keyName = null, lifetime = null) -> boolean + public function exists(var keyName = null, lifetime = null) -> bool { var backend; @@ -203,7 +203,7 @@ class Multiple /** * Flush all backend(s) */ - public function flush() -> boolean + public function flush() -> bool { var backend; diff --git a/phalcon/cli/console.zep b/phalcon/cli/console.zep index b3d9b736591..56385a80372 100644 --- a/phalcon/cli/console.zep +++ b/phalcon/cli/console.zep @@ -146,7 +146,7 @@ class Console extends BaseApplication /** * Set an specific argument */ - public function setArgument(array! arguments = null, boolean! str = true, boolean! shift = true) -> <Console> + public function setArgument(array! arguments = null, bool! str = true, bool! shift = true) -> <Console> { var arg, pos, args, opts, handleArgs; diff --git a/phalcon/cli/dispatcher.zep b/phalcon/cli/dispatcher.zep index e56f3ab3fde..b68a60fb4ad 100644 --- a/phalcon/cli/dispatcher.zep +++ b/phalcon/cli/dispatcher.zep @@ -195,7 +195,7 @@ class Dispatcher extends CliDispatcher implements DispatcherInterface /** * Check if an option exists */ - public function hasOption(var option) -> boolean + public function hasOption(var option) -> bool { return isset this->_options[option]; } diff --git a/phalcon/cli/router.zep b/phalcon/cli/router.zep index 01cb0034753..217cfe9c585 100644 --- a/phalcon/cli/router.zep +++ b/phalcon/cli/router.zep @@ -78,7 +78,7 @@ class Router implements \Phalcon\Di\InjectionAwareInterface /** * Phalcon\Cli\Router constructor */ - public function __construct(boolean defaultRoutes = true) + public function __construct(bool defaultRoutes = true) { var routes; @@ -448,7 +448,7 @@ class Router implements \Phalcon\Di\InjectionAwareInterface /** * Checks if the router matches any of the defined routes */ - public function wasMatched() -> boolean + public function wasMatched() -> bool { return this->_wasMatched; } @@ -466,7 +466,7 @@ class Router implements \Phalcon\Di\InjectionAwareInterface * * @param int id */ - public function getRouteById(var id) -> <RouteInterface> | boolean + public function getRouteById(var id) -> <RouteInterface> | bool { var route; @@ -481,7 +481,7 @@ class Router implements \Phalcon\Di\InjectionAwareInterface /** * Returns a route object by its name */ - public function getRouteByName(string! name) -> <RouteInterface> | boolean + public function getRouteByName(string! name) -> <RouteInterface> | bool { var route; diff --git a/phalcon/cli/router/route.zep b/phalcon/cli/router/route.zep index 560875a42f9..05e0657fbdb 100644 --- a/phalcon/cli/router/route.zep +++ b/phalcon/cli/router/route.zep @@ -152,13 +152,13 @@ class Route /** * Extracts parameters from a string * - * @return array|boolean + * @return array|bool */ public function extractNamedParams(string! pattern) { char ch; var tmp, matches; - boolean notValid; + bool notValid; int cursor, cursorVar, marker, bracketCount = 0, parenthesesCount = 0, foundPattern = 0; int intermediate = 0, numberMatches = 0; string route, item, variable, regexp; diff --git a/phalcon/cli/routerinterface.zep b/phalcon/cli/routerinterface.zep index a905e93f924..74b01e38d08 100644 --- a/phalcon/cli/routerinterface.zep +++ b/phalcon/cli/routerinterface.zep @@ -94,7 +94,7 @@ interface RouterInterface /** * Check if the router matches any of the defined routes */ - public function wasMatched() -> boolean; + public function wasMatched() -> bool; /** * Return all the routes defined in the router diff --git a/phalcon/config.zep b/phalcon/config.zep index 664cb326245..6b374d610a1 100644 --- a/phalcon/config.zep +++ b/phalcon/config.zep @@ -75,7 +75,7 @@ class Config implements \ArrayAccess, \Countable * ); *</code> */ - public function offsetExists(var index) -> boolean + public function offsetExists(var index) -> bool { let index = strval(index); @@ -153,7 +153,7 @@ class Config implements \ArrayAccess, \Countable * ); *</code> */ - public function offsetGet(var index) -> string + public function offsetGet(var index) -> var { let index = strval(index); @@ -169,7 +169,7 @@ class Config implements \ArrayAccess, \Countable * ]; *</code> */ - public function offsetSet(var index, var value) + public function offsetSet(var index, var value) -> void { let index = strval(index); @@ -187,7 +187,7 @@ class Config implements \ArrayAccess, \Countable * unset($config["database"]); *</code> */ - public function offsetUnset(var index) + public function offsetUnset(var index) -> void { let index = strval(index); diff --git a/phalcon/config/factory.zep b/phalcon/config/factory.zep index d7abc1e0812..ca783942304 100644 --- a/phalcon/config/factory.zep +++ b/phalcon/config/factory.zep @@ -42,7 +42,7 @@ class Factory extends BaseFactory /** * @param \Phalcon\Config|array config */ - public static function load(var config) -> <Config> + public static function load(var config) -> object { return self::loadClass("Phalcon\\Config\\Adapter", config); } diff --git a/phalcon/crypt.zep b/phalcon/crypt.zep index 8472208d16e..b7b0feff0e6 100644 --- a/phalcon/crypt.zep +++ b/phalcon/crypt.zep @@ -93,7 +93,7 @@ class Crypt implements CryptInterface /** * Phalcon\Crypt constructor. */ - public function __construct(string! cipher = "aes-256-cfb", boolean useSigning = false) + public function __construct(string! cipher = "aes-256-cfb", bool useSigning = false) { this->initializeAvailableCiphers(); @@ -119,7 +119,7 @@ class Crypt implements CryptInterface * The `aes-256-ctr' is arguably the best choice for cipher * algorithm for current openssl library version. */ - public function setCipher(string! cipher) -> <Crypt> + public function setCipher(string! cipher) -> <CryptInterface> { this->assertCipherIsAvailable(cipher); @@ -153,7 +153,7 @@ class Crypt implements CryptInterface * * @see \Phalcon\Security\Random */ - public function setKey(string! key) -> <Crypt> + public function setKey(string! key) -> <CryptInterface> { let this->_key = key; return this; @@ -172,7 +172,7 @@ class Crypt implements CryptInterface * * @throws \Phalcon\Crypt\Exception */ - public function setHashAlgo(string! hashAlgo) -> <Crypt> + public function setHashAlgo(string! hashAlgo) -> <CryptInterface> { this->assertHashAlgorithmAvailable(hashAlgo); @@ -194,7 +194,7 @@ class Crypt implements CryptInterface * * NOTE: This feature will be enabled by default in Phalcon 4.0.0 */ - public function useSigning(boolean useSigning) -> <Crypt> + public function useSigning(bool useSigning) -> <CryptInterface> { let this->useSigning = useSigning; @@ -497,7 +497,7 @@ class Crypt implements CryptInterface /** * Encrypts a text returning the result as a base64 string. */ - public function encryptBase64(string! text, key = null, boolean! safe = false) -> string + public function encryptBase64(string! text, key = null, bool! safe = false) -> string { if safe == true { return rtrim(strtr(base64_encode(this->encrypt(text, key)), "+/", "-_"), "="); @@ -510,7 +510,7 @@ class Crypt implements CryptInterface * * @throws \Phalcon\Crypt\Mismatch */ - public function decryptBase64(string! text, key = null, boolean! safe = false) -> string + public function decryptBase64(string! text, key = null, bool! safe = false) -> string { if safe == true { return this->decrypt(base64_decode(strtr(text, "-_", "+/") . substr("===", (strlen(text) + 3) % 4)), key); diff --git a/phalcon/cryptinterface.zep b/phalcon/cryptinterface.zep index a9c7bc4662f..fad88343dff 100644 --- a/phalcon/cryptinterface.zep +++ b/phalcon/cryptinterface.zep @@ -50,7 +50,7 @@ interface CryptInterface /** * Encrypts a text */ - public function encrypt(string! text, key = null) -> string; + public function encrypt(string! text, string! key = null) -> string; /** * Decrypts a text diff --git a/phalcon/db/adapter.zep b/phalcon/db/adapter.zep index 40624566b72..a67e9f8c28d 100644 --- a/phalcon/db/adapter.zep +++ b/phalcon/db/adapter.zep @@ -46,6 +46,8 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Name of the dialect used + * + * @var string */ protected _dialectType { get }; @@ -89,6 +91,8 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Type of database system the adapter is used for + * + * @var string */ protected _type { get }; @@ -127,7 +131,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Adds a column to a table */ - public function addColumn(string! tableName, string! schemaName, <ColumnInterface> column) -> boolean + public function addColumn(string! tableName, string! schemaName, <ColumnInterface> column) -> bool { return this->{"execute"}(this->_dialect->addColumn(tableName, schemaName, column)); } @@ -135,7 +139,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Adds a foreign key to a table */ - public function addForeignKey(string! tableName, string! schemaName, <ReferenceInterface> reference) -> boolean + public function addForeignKey(string! tableName, string! schemaName, <ReferenceInterface> reference) -> bool { return this->{"execute"}(this->_dialect->addForeignKey(tableName, schemaName, reference)); } @@ -143,7 +147,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Adds an index to a table */ - public function addIndex(string! tableName, string! schemaName, <IndexInterface> index) -> boolean + public function addIndex(string! tableName, string! schemaName, <IndexInterface> index) -> bool { return this->{"execute"}(this->_dialect->addIndex(tableName, schemaName, index)); } @@ -151,7 +155,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Adds a primary key to a table */ - public function addPrimaryKey(string! tableName, string! schemaName, <IndexInterface> index) -> boolean + public function addPrimaryKey(string! tableName, string! schemaName, <IndexInterface> index) -> bool { return this->{"execute"}(this->_dialect->addPrimaryKey(tableName, schemaName, index)); } @@ -159,7 +163,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Creates a new savepoint */ - public function createSavepoint(string! name) -> boolean + public function createSavepoint(string! name) -> bool { var dialect; @@ -175,7 +179,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Creates a table */ - public function createTable(string! tableName, string! schemaName, array! definition) -> boolean + public function createTable(string! tableName, string! schemaName, array! definition) -> bool { var columns; @@ -193,7 +197,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Creates a view */ - public function createView(string! viewName, array! definition, var schemaName = null) -> boolean + public function createView(string! viewName, array! definition, string schemaName = null) -> bool { if !isset definition["sql"] { throw new Exception("The table must contain at least one column"); @@ -220,7 +224,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface * @param array placeholders * @param array dataTypes */ - public function delete(string table, var whereCondition = null, var placeholders = null, var dataTypes = null) -> boolean + public function delete(string table, var whereCondition = null, var placeholders = null, var dataTypes = null) -> bool { var sql, escapedTable; @@ -249,7 +253,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface * * @param string schema */ - public function describeIndexes(string! table, schema = null) -> <Index[]> + public function describeIndexes(string! table, string schema = null) -> <IndexInterface[]> { var indexes, index, keyName, indexObjects, name, indexColumns, columns; @@ -288,7 +292,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface * ); *</code> */ - public function describeReferences(string! table, string! schema = null) -> <Reference[]> + public function describeReferences(string! table, string! schema = null) -> <ReferenceInterface[]> { var references, reference, arrayReference, constraintName, referenceObjects, name, @@ -338,7 +342,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Drops a column from a table */ - public function dropColumn(string! tableName, string! schemaName, string columnName) -> boolean + public function dropColumn(string! tableName, string! schemaName, string columnName) -> bool { return this->{"execute"}(this->_dialect->dropColumn(tableName, schemaName, columnName)); } @@ -346,7 +350,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Drops a foreign key from a table */ - public function dropForeignKey(string! tableName, string! schemaName, string! referenceName) -> boolean + public function dropForeignKey(string! tableName, string! schemaName, string! referenceName) -> bool { return this->{"execute"}(this->_dialect->dropForeignKey(tableName, schemaName, referenceName)); } @@ -354,7 +358,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Drop an index from a table */ - public function dropIndex(string! tableName, string! schemaName, indexName) -> boolean + public function dropIndex(string! tableName, string! schemaName, indexName) -> bool { return this->{"execute"}(this->_dialect->dropIndex(tableName, schemaName, indexName)); } @@ -362,7 +366,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Drops a table's primary key */ - public function dropPrimaryKey(string! tableName, string! schemaName) -> boolean + public function dropPrimaryKey(string! tableName, string! schemaName) -> bool { return this->{"execute"}(this->_dialect->dropPrimaryKey(tableName, schemaName)); } @@ -370,7 +374,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Drops a table from a schema/database */ - public function dropTable(string! tableName, string! schemaName = null, boolean ifExists = true) -> boolean + public function dropTable(string! tableName, string! schemaName = null, bool ifExists = true) -> bool { return this->{"execute"}(this->_dialect->dropTable(tableName, schemaName, ifExists)); } @@ -378,7 +382,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Drops a view */ - public function dropView(string! viewName, string! schemaName = null, boolean ifExists = true) -> boolean + public function dropView(string! viewName, string! schemaName = null, bool ifExists = true) -> bool { return this->{"execute"}(this->_dialect->dropView(viewName, schemaName, ifExists)); } @@ -474,7 +478,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface * * @param int|string column */ - public function fetchColumn(string sqlQuery, array placeholders = [], var column = 0) -> string | boolean + public function fetchColumn(string sqlQuery, array placeholders = [], var column = 0) -> string | bool { var row, columnValue; @@ -670,7 +674,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface * @param array fields * @param array dataTypes */ - public function insert(string table, array! values, var fields = null, var dataTypes = null) -> boolean + public function insert(string table, array! values, var fields = null, var dataTypes = null) -> bool { var placeholders, insertValues, bindDataTypes, bindType, position, value, escapedTable, joinedValues, escapedFields, @@ -761,7 +765,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface * @param array data * @param array dataTypes */ - public function insertAsDict(string table, data, var dataTypes = null) -> boolean + public function insertAsDict(string table, data, var dataTypes = null) -> bool { var values = [], fields = []; var field, value; @@ -781,7 +785,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Returns if nested transactions should use savepoints */ - public function isNestedTransactionsWithSavepoints() -> boolean + public function isNestedTransactionsWithSavepoints() -> bool { return this->_transactionsWithSavepoints; } @@ -841,7 +845,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Modifies a table column based on a definition */ - public function modifyColumn(string! tableName, string! schemaName, <ColumnInterface> column, <ColumnInterface> currentColumn = null) -> boolean + public function modifyColumn(string! tableName, string! schemaName, <ColumnInterface> column, <ColumnInterface> currentColumn = null) -> bool { return this->{"execute"}(this->_dialect->modifyColumn(tableName, schemaName, column, currentColumn)); } @@ -849,7 +853,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Releases given savepoint */ - public function releaseSavepoint(string! name) -> boolean + public function releaseSavepoint(string! name) -> bool { var dialect; @@ -869,7 +873,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Rollbacks given savepoint */ - public function rollbackSavepoint(string! name) -> boolean + public function rollbackSavepoint(string! name) -> bool { var dialect; @@ -901,7 +905,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Set if nested transactions should use savepoints */ - public function setNestedTransactionsWithSavepoints(boolean nestedTransactionsWithSavepoints) -> <AdapterInterface> + public function setNestedTransactionsWithSavepoints(bool nestedTransactionsWithSavepoints) -> <AdapterInterface> { if this->_transactionLevel > 0 { @@ -927,7 +931,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Check whether the database system requires a sequence to produce auto-numeric values */ - public function supportSequences() -> boolean + public function supportSequences() -> bool { return false; } @@ -941,7 +945,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface * ); *</code> */ - public function tableExists(string! tableName, string! schemaName = null) -> boolean + public function tableExists(string! tableName, string! schemaName = null) -> bool { return this->fetchOne(this->_dialect->tableExists(tableName, schemaName), Db::FETCH_NUM)[0] > 0; } @@ -1005,7 +1009,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface * @param string|array whereCondition * @param array dataTypes */ - public function update(string table, var fields, var values, var whereCondition = null, var dataTypes = null) -> boolean + public function update(string table, var fields, var values, var whereCondition = null, var dataTypes = null) -> bool { var placeholders, updateValues, position, value, field, bindDataTypes, escapedField, bindType, escapedTable, @@ -1127,7 +1131,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface * @param string whereCondition * @param array dataTypes */ - public function updateAsDict(string table, var data, var whereCondition = null, var dataTypes = null) -> boolean + public function updateAsDict(string table, var data, var whereCondition = null, var dataTypes = null) -> bool { var values = [], fields = []; var field, value; @@ -1147,7 +1151,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface /** * Check whether the database system requires an explicit value for identity columns */ - public function useExplicitIdValue() -> boolean + public function useExplicitIdValue() -> bool { return false; } @@ -1161,7 +1165,7 @@ abstract class Adapter implements AdapterInterface, EventsAwareInterface * ); *</code> */ - public function viewExists(string! viewName, string! schemaName = null) -> boolean + public function viewExists(string! viewName, string! schemaName = null) -> bool { return this->fetchOne(this->_dialect->viewExists(viewName, schemaName), Db::FETCH_NUM)[0] > 0; } diff --git a/phalcon/db/adapter/pdo.zep b/phalcon/db/adapter/pdo.zep index 14012a2c76e..0c320e42d0b 100644 --- a/phalcon/db/adapter/pdo.zep +++ b/phalcon/db/adapter/pdo.zep @@ -80,7 +80,7 @@ abstract class Pdo extends Adapter /** * Starts a transaction in the connection */ - public function begin(boolean nesting = true) -> boolean + public function begin(bool nesting = true) -> bool { var pdo, transactionLevel, eventsManager, savepointName; @@ -138,7 +138,7 @@ abstract class Pdo extends Adapter /** * Commits the active transaction in the connection */ - public function commit(boolean nesting = true) -> boolean + public function commit(bool nesting = true) -> bool { var pdo, transactionLevel, eventsManager, savepointName; @@ -211,7 +211,7 @@ abstract class Pdo extends Adapter * Closes the active connection returning success. Phalcon automatically closes and destroys * active connections when the request ends */ - public function close() -> boolean + public function close() -> bool { var pdo; let pdo = this->_pdo; @@ -244,7 +244,7 @@ abstract class Pdo extends Adapter * $connection->connect(); * </code> */ - public function connect(array descriptor = null) -> boolean + public function connect(array descriptor = null) -> bool { var username, password, dsnParts, dsnAttributes, persistent, options, key, value; @@ -409,7 +409,7 @@ abstract class Pdo extends Adapter * ); *</code> */ - public function execute(string! sqlStatement, var bindParams = null, var bindTypes = null) -> boolean + public function execute(string! sqlStatement, var bindParams = null, var bindTypes = null) -> bool { var eventsManager, affectedRows, pdo, newStatement, statement; @@ -520,7 +520,7 @@ abstract class Pdo extends Adapter break; case Column::BIND_PARAM_BOOL: - let castValue = (boolean) value; + let castValue = (bool) value; break; default: @@ -606,7 +606,7 @@ abstract class Pdo extends Adapter * ); *</code> */ - public function isUnderTransaction() -> boolean + public function isUnderTransaction() -> bool { var pdo; let pdo = this->_pdo; @@ -639,7 +639,7 @@ abstract class Pdo extends Adapter * * @param string sequenceName */ - public function lastInsertId(sequenceName = null) -> int | boolean + public function lastInsertId(sequenceName = null) -> int | bool { var pdo; let pdo = this->_pdo; @@ -693,7 +693,7 @@ abstract class Pdo extends Adapter * ); *</code> */ - public function query(string! sqlStatement, var bindParams = null, var bindTypes = null) -> <ResultInterface> | boolean + public function query(string! sqlStatement, var bindParams = null, var bindTypes = null) -> <ResultInterface> | bool { var eventsManager, pdo, statement, params, types; @@ -743,7 +743,7 @@ abstract class Pdo extends Adapter /** * Rollbacks the active transaction in the connection */ - public function rollback(boolean nesting = true) -> boolean + public function rollback(bool nesting = true) -> bool { var pdo, transactionLevel, eventsManager, savepointName; diff --git a/phalcon/db/adapter/pdo/factory.zep b/phalcon/db/adapter/pdo/factory.zep index 52cd17eeedb..e43e83617cf 100644 --- a/phalcon/db/adapter/pdo/factory.zep +++ b/phalcon/db/adapter/pdo/factory.zep @@ -35,7 +35,7 @@ class Factory extends BaseFactory /** * @param \Phalcon\Config|array config */ - public static function load(var config) -> <AdapterInterface> + public static function load(var config) -> object { return self::loadClass("Phalcon\\Db\\Adapter\\Pdo", config); } diff --git a/phalcon/db/adapter/pdo/mysql.zep b/phalcon/db/adapter/pdo/mysql.zep index a1b6199e9aa..5f42201e064 100644 --- a/phalcon/db/adapter/pdo/mysql.zep +++ b/phalcon/db/adapter/pdo/mysql.zep @@ -13,6 +13,7 @@ namespace Phalcon\Db\Adapter\Pdo; use Phalcon\Db; use Phalcon\Db\Adapter\Pdo as PdoAdapter; use Phalcon\Db\Column; +use Phalcon\Db\ColumnInterface; use Phalcon\Db\Exception; use Phalcon\Db\Index; use Phalcon\Db\IndexInterface; @@ -48,7 +49,7 @@ class Mysql extends PdoAdapter /** * Adds a foreign key to a table */ - public function addForeignKey(string! tableName, string! schemaName, <ReferenceInterface> reference) -> boolean + public function addForeignKey(string! tableName, string! schemaName, <ReferenceInterface> reference) -> bool { var foreignKeyCheck; @@ -69,7 +70,7 @@ class Mysql extends PdoAdapter * ); * </code> */ - public function describeColumns(string table, string schema = null) -> <Column[]> + public function describeColumns(string table, string schema = null) -> <ColumnInterface[]> { var columns, columnType, field, definition, oldColumn, sizePattern, matches, matchOne, matchTwo, columnName; @@ -457,7 +458,7 @@ class Mysql extends PdoAdapter * ); *</code> */ - public function describeReferences(string! table, string! schema = null) -> <Reference[]> + public function describeReferences(string! table, string! schema = null) -> <ReferenceInterface[]> { var references, reference, arrayReference, constraintName, referenceObjects, name, diff --git a/phalcon/db/adapter/pdo/postgresql.zep b/phalcon/db/adapter/pdo/postgresql.zep index e59c3452731..bacbb5396aa 100644 --- a/phalcon/db/adapter/pdo/postgresql.zep +++ b/phalcon/db/adapter/pdo/postgresql.zep @@ -14,6 +14,7 @@ namespace Phalcon\Db\Adapter\Pdo; use Phalcon\Db; use Phalcon\Db\Adapter\Pdo as PdoAdapter; use Phalcon\Db\Column; +use Phalcon\Db\ColumnInterface; use Phalcon\Db\Exception; use Phalcon\Db\RawValue; use Phalcon\Db\Reference; @@ -49,7 +50,7 @@ class Postgresql extends PdoAdapter * This method is automatically called in Phalcon\Db\Adapter\Pdo constructor. * Call it when you need to restore a database connection. */ - public function connect(array descriptor = null) -> boolean + public function connect(array descriptor = null) -> bool { var schema, sql, status; @@ -82,7 +83,7 @@ class Postgresql extends PdoAdapter /** * Creates a table */ - public function createTable(string! tableName, string! schemaName, array! definition) -> boolean + public function createTable(string! tableName, string! schemaName, array! definition) -> bool { var sql,queries,query,exception,columns; @@ -128,7 +129,7 @@ class Postgresql extends PdoAdapter * ); * </code> */ - public function describeColumns(string table, string schema = null) -> <Column[]> + public function describeColumns(string table, string schema = null) -> <ColumnInterface[]> { var columns, columnType, field, definition, oldColumn, columnName, charSize, numericSize, numericScale; @@ -554,7 +555,7 @@ class Postgresql extends PdoAdapter /** * Modifies a table column based on a definition */ - public function modifyColumn(string! tableName, string! schemaName, <\Phalcon\Db\ColumnInterface> column, <\Phalcon\Db\ColumnInterface> currentColumn = null) -> boolean + public function modifyColumn(string! tableName, string! schemaName, <ColumnInterface> column, <ColumnInterface> currentColumn = null) -> bool { var sql,queries,query,exception; @@ -588,7 +589,7 @@ class Postgresql extends PdoAdapter /** * Check whether the database system requires a sequence to produce auto-numeric values */ - public function supportSequences() -> boolean + public function supportSequences() -> bool { return true; } @@ -596,7 +597,7 @@ class Postgresql extends PdoAdapter /** * Check whether the database system requires an explicit value for identity columns */ - public function useExplicitIdValue() -> boolean + public function useExplicitIdValue() -> bool { return true; } diff --git a/phalcon/db/adapter/pdo/sqlite.zep b/phalcon/db/adapter/pdo/sqlite.zep index 5ea7bb0ee27..50607c46530 100644 --- a/phalcon/db/adapter/pdo/sqlite.zep +++ b/phalcon/db/adapter/pdo/sqlite.zep @@ -13,6 +13,7 @@ namespace Phalcon\Db\Adapter\Pdo; use Phalcon\Db; use Phalcon\Db\Adapter\Pdo as PdoAdapter; use Phalcon\Db\Column; +use Phalcon\Db\ColumnInterface; use Phalcon\Db\Exception; use Phalcon\Db\Index; use Phalcon\Db\IndexInterface; @@ -46,7 +47,7 @@ class Sqlite extends PdoAdapter * This method is automatically called in Phalcon\Db\Adapter\Pdo constructor. * Call it when you need to restore a database connection. */ - public function connect(array descriptor = null) -> boolean + public function connect(array descriptor = null) -> bool { var dbname; @@ -72,7 +73,7 @@ class Sqlite extends PdoAdapter * ); * </code> */ - public function describeColumns(string! table, string! schema = null) -> <Column[]> + public function describeColumns(string! table, string! schema = null) -> <ColumnInterface[]> { var columns, columnType, field, definition, oldColumn, sizePattern, matches, matchOne, matchTwo, columnName; @@ -405,7 +406,7 @@ class Sqlite extends PdoAdapter /** * Check whether the database system requires an explicit value for identity columns */ - public function useExplicitIdValue() -> boolean + public function useExplicitIdValue() -> bool { return true; } diff --git a/phalcon/db/adapterinterface.zep b/phalcon/db/adapterinterface.zep index 9e3827c4215..dd500eddbe1 100644 --- a/phalcon/db/adapterinterface.zep +++ b/phalcon/db/adapterinterface.zep @@ -20,22 +20,22 @@ interface AdapterInterface /** * Adds a column to a table */ - public function addColumn(string! tableName, string! schemaName, <ColumnInterface> column) -> boolean; + public function addColumn(string! tableName, string! schemaName, <ColumnInterface> column) -> bool; /** * Adds an index to a table */ - public function addIndex(string! tableName, string! schemaName, <IndexInterface> index) -> boolean; + public function addIndex(string! tableName, string! schemaName, <IndexInterface> index) -> bool; /** * Adds a foreign key to a table */ - public function addForeignKey(string! tableName, string! schemaName, <ReferenceInterface> reference) -> boolean; + public function addForeignKey(string! tableName, string! schemaName, <ReferenceInterface> reference) -> bool; /** * Adds a primary key to a table */ - public function addPrimaryKey(string! tableName, string! schemaName, <IndexInterface> index) -> boolean; + public function addPrimaryKey(string! tableName, string! schemaName, <IndexInterface> index) -> bool; /** * Returns the number of affected rows by the last INSERT/UPDATE/DELETE reported by the database system @@ -45,39 +45,39 @@ interface AdapterInterface /** * Starts a transaction in the connection */ - public function begin(boolean nesting = true) -> boolean; + public function begin(bool nesting = true) -> bool; /** * Closes active connection returning success. Phalcon automatically closes * and destroys active connections within Phalcon\Db\Pool */ - public function close() -> boolean; + public function close() -> bool; /** * Commits the active transaction in the connection */ - public function commit(boolean nesting = true) -> boolean; + public function commit(bool nesting = true) -> bool; /** * This method is automatically called in \Phalcon\Db\Adapter\Pdo constructor. * Call it when you need to restore a database connection */ - public function connect(array descriptor = null) -> boolean; + public function connect(array descriptor = null) -> bool; /** * Creates a new savepoint */ - public function createSavepoint(string! name) -> boolean; + public function createSavepoint(string! name) -> bool; /** * Creates a table */ - public function createTable(string! tableName, string! schemaName, array! definition) -> boolean; + public function createTable(string! tableName, string! schemaName, array! definition) -> bool; /** * Creates a view */ - public function createView(string! viewName, array! definition, string schemaName = null) -> boolean; + public function createView(string! viewName, array! definition, string schemaName = null) -> bool; /** * Deletes data from a table using custom RDBMS SQL syntax @@ -86,7 +86,7 @@ interface AdapterInterface * @param array placeholders * @param array dataTypes */ - public function delete(string table, whereCondition = null, placeholders = null, dataTypes = null) -> boolean; + public function delete(string table, whereCondition = null, placeholders = null, dataTypes = null) -> bool; /** * Returns an array of Phalcon\Db\Column objects describing a table @@ -106,32 +106,32 @@ interface AdapterInterface /** * Drops a column from a table */ - public function dropColumn(string! tableName, string! schemaName, string columnName) -> boolean; + public function dropColumn(string! tableName, string! schemaName, string columnName) -> bool; /** * Drops a foreign key from a table */ - public function dropForeignKey(string! tableName, string! schemaName, string referenceName) -> boolean; + public function dropForeignKey(string! tableName, string! schemaName, string referenceName) -> bool; /** * Drop an index from a table */ - public function dropIndex(string! tableName, string! schemaName, string indexName) -> boolean; + public function dropIndex(string! tableName, string! schemaName, string indexName) -> bool; /** * Drops primary key from a table */ - public function dropPrimaryKey(string! tableName, string! schemaName) -> boolean; + public function dropPrimaryKey(string! tableName, string! schemaName) -> bool; /** * Drops a table from a schema/database */ - public function dropTable(string! tableName, string! schemaName = null, boolean ifExists = true) -> boolean; + public function dropTable(string! tableName, string! schemaName = null, bool ifExists = true) -> bool; /** * Drops a view */ - public function dropView(string! viewName, string! schemaName = null, boolean ifExists = true) -> boolean; + public function dropView(string! viewName, string! schemaName = null, bool ifExists = true) -> bool; /** * Escapes a column/table/schema name @@ -149,7 +149,7 @@ interface AdapterInterface * Sends SQL statements to the database server returning the success state. * Use this method only when the SQL statement sent to the server doesn't return any rows */ - public function execute(string! sqlStatement, var placeholders = null, var dataTypes = null) -> boolean; + public function execute(string! sqlStatement, var placeholders = null, var dataTypes = null) -> bool; /** * Dumps the complete result of a query into an array @@ -248,17 +248,17 @@ interface AdapterInterface * @param array fields * @param array dataTypes */ - public function insert(string table, array! values, fields = null, dataTypes = null) -> boolean; + public function insert(string table, array! values, fields = null, dataTypes = null) -> bool; /** * Returns if nested transactions should use savepoints */ - public function isNestedTransactionsWithSavepoints() -> boolean; + public function isNestedTransactionsWithSavepoints() -> bool; /** * Checks whether connection is under database transaction */ - public function isUnderTransaction() -> boolean; + public function isUnderTransaction() -> bool; /** * Returns insert id for the auto_increment column inserted in the last SQL statement @@ -286,28 +286,28 @@ interface AdapterInterface /** * Modifies a table column based on a definition */ - public function modifyColumn(string! tableName, string! schemaName, <ColumnInterface> column, <ColumnInterface> currentColumn = null) -> boolean; + public function modifyColumn(string! tableName, string! schemaName, <ColumnInterface> column, <ColumnInterface> currentColumn = null) -> bool; /** * Sends SQL statements to the database server returning the success state. * Use this method only when the SQL statement sent to the server return rows */ - public function query(string! sqlStatement, var placeholders = null, var dataTypes = null) -> <ResultInterface> | boolean; + public function query(string! sqlStatement, var placeholders = null, var dataTypes = null) -> <ResultInterface> | bool; /** * Releases given savepoint */ - public function releaseSavepoint(string! name) -> boolean; + public function releaseSavepoint(string! name) -> bool; /** * Rollbacks the active transaction in the connection */ - public function rollback(boolean nesting = true) -> boolean; + public function rollback(bool nesting = true) -> bool; /** * Rollbacks given savepoint */ - public function rollbackSavepoint(string! name) -> boolean; + public function rollbackSavepoint(string! name) -> bool; /** * Returns a SQL modified with a LOCK IN SHARE MODE clause @@ -317,17 +317,17 @@ interface AdapterInterface /** * Set if nested transactions should use savepoints */ - public function setNestedTransactionsWithSavepoints(boolean nestedTransactionsWithSavepoints) -> <AdapterInterface>; + public function setNestedTransactionsWithSavepoints(bool nestedTransactionsWithSavepoints) -> <AdapterInterface>; /** * Check whether the database system requires a sequence to produce auto-numeric values */ - public function supportSequences() -> boolean; + public function supportSequences() -> bool; /** * Generates SQL checking for the existence of a schema.table */ - public function tableExists(string! tableName, string! schemaName = null) -> boolean; + public function tableExists(string! tableName, string! schemaName = null) -> bool; /** * Gets creation options from a table @@ -342,16 +342,16 @@ interface AdapterInterface * @param string whereCondition * @param array dataTypes */ - public function update(string table, fields, values, whereCondition = null, dataTypes = null) -> boolean; + public function update(string table, fields, values, whereCondition = null, dataTypes = null) -> bool; /** * Check whether the database system requires an explicit value for identity columns */ - public function useExplicitIdValue() -> boolean; + public function useExplicitIdValue() -> bool; /** * Generates SQL checking for the existence of a schema.view */ - public function viewExists(string! viewName, string! schemaName = null) -> boolean; + public function viewExists(string! viewName, string! schemaName = null) -> bool; } diff --git a/phalcon/db/column.zep b/phalcon/db/column.zep index a310eadf0eb..3753b846a37 100644 --- a/phalcon/db/column.zep +++ b/phalcon/db/column.zep @@ -221,7 +221,7 @@ class Column implements ColumnInterface /** * Column is autoIncrement? * - * @var boolean + * @var bool */ protected _autoIncrement = false; @@ -238,7 +238,7 @@ class Column implements ColumnInterface /** * Position is first * - * @var boolean + * @var bool */ protected _first = false; @@ -257,7 +257,7 @@ class Column implements ColumnInterface /** * Column not nullable? * - * @var boolean + * @var bool */ protected _notNull = false; @@ -290,7 +290,7 @@ class Column implements ColumnInterface /** * Column data type * - * @var int|string + * @var int */ protected _type { get }; @@ -311,7 +311,7 @@ class Column implements ColumnInterface /** * Integer column unsigned? * - * @var boolean + * @var bool */ protected _unsigned = false; @@ -447,7 +447,7 @@ class Column implements ColumnInterface /** * Restores the internal state of a Phalcon\Db\Column object */ - public static function __set_state(array! data) -> <Column> + public static function __set_state(array! data) -> <ColumnInterface> { var definition, columnType, notNull, size, dunsigned, after, isNumeric, first, bindType, primary, columnName, scale, @@ -554,7 +554,7 @@ class Column implements ColumnInterface /** * Check whether column has default value */ - public function hasDefault() -> boolean + public function hasDefault() -> bool { if this->isAutoIncrement() { return false; @@ -566,7 +566,7 @@ class Column implements ColumnInterface /** * Auto-Increment */ - public function isAutoIncrement() -> boolean + public function isAutoIncrement() -> bool { return this->_autoIncrement; } @@ -574,7 +574,7 @@ class Column implements ColumnInterface /** * Check whether column have first position in table */ - public function isFirst() -> boolean + public function isFirst() -> bool { return this->_first; } @@ -582,7 +582,7 @@ class Column implements ColumnInterface /** * Not null */ - public function isNotNull() -> boolean + public function isNotNull() -> bool { return this->_notNull; } @@ -590,7 +590,7 @@ class Column implements ColumnInterface /** * Check whether column have an numeric type */ - public function isNumeric() -> boolean + public function isNumeric() -> bool { return this->_isNumeric; } @@ -598,7 +598,7 @@ class Column implements ColumnInterface /** * Column is part of the primary key? */ - public function isPrimary() -> boolean + public function isPrimary() -> bool { return this->_primary; } @@ -606,7 +606,7 @@ class Column implements ColumnInterface /** * Returns true if number column is unsigned */ - public function isUnsigned() -> boolean + public function isUnsigned() -> bool { return this->_unsigned; } diff --git a/phalcon/db/columninterface.zep b/phalcon/db/columninterface.zep index 3e2c6df6bbc..692443f23d5 100644 --- a/phalcon/db/columninterface.zep +++ b/phalcon/db/columninterface.zep @@ -72,7 +72,7 @@ interface ColumnInterface /** * Returns column type * - * @return int + * @return int|string */ public function getType() -> int; @@ -86,42 +86,42 @@ interface ColumnInterface /** * Returns column type values * - * @return int + * @return array|string */ - public function getTypeValues() -> int; + public function getTypeValues() -> array | string; /** * Check whether column has default value */ - public function hasDefault() -> boolean; + public function hasDefault() -> bool; /** * Auto-Increment */ - public function isAutoIncrement() -> boolean; + public function isAutoIncrement() -> bool; /** * Check whether column have first position in table */ - public function isFirst() -> boolean; + public function isFirst() -> bool; /** * Not null */ - public function isNotNull() -> boolean; + public function isNotNull() -> bool; /** * Check whether column have an numeric type */ - public function isNumeric() -> boolean; + public function isNumeric() -> bool; /** * Column is part of the primary key? */ - public function isPrimary() -> boolean; + public function isPrimary() -> bool; /** * Returns true if number column is unsigned */ - public function isUnsigned() -> boolean; + public function isUnsigned() -> bool; } diff --git a/phalcon/db/dialect.zep b/phalcon/db/dialect.zep index 6217cfc3a93..e4ecb405a94 100644 --- a/phalcon/db/dialect.zep +++ b/phalcon/db/dialect.zep @@ -485,7 +485,7 @@ abstract class Dialect implements DialectInterface /** * Checks whether the platform supports savepoints */ - public function supportsSavepoints() -> boolean + public function supportsSavepoints() -> bool { return true; } @@ -493,7 +493,7 @@ abstract class Dialect implements DialectInterface /** * Checks whether the platform supports releasing savepoints. */ - public function supportsReleaseSavepoints() -> boolean + public function supportsReleaseSavepoints() -> bool { return this->supportsSavePoints(); } diff --git a/phalcon/db/dialect/mysql.zep b/phalcon/db/dialect/mysql.zep index c001b3e6942..9d76dc237fe 100644 --- a/phalcon/db/dialect/mysql.zep +++ b/phalcon/db/dialect/mysql.zep @@ -56,9 +56,9 @@ class Mysql extends Dialect let columnSql .= this->getColumnSize(column) . this->checkColumnUnsigned(column); break; - case Column::TYPE_BLOB: + case Column::TYPE_BIT: if empty columnSql { - let columnSql .= "ΒΙΤ"; + let columnSql .= "BIT"; } let columnSql .= this->getColumnSize(column); break; @@ -560,7 +560,7 @@ class Mysql extends Dialect /** * Generates SQL to drop a table */ - public function dropTable(string! tableName, string schemaName = null, boolean! ifExists = true) -> string + public function dropTable(string! tableName, string schemaName = null, bool! ifExists = true) -> string { var sql, table; @@ -592,7 +592,7 @@ class Mysql extends Dialect /** * Generates SQL to drop a view */ - public function dropView(string! viewName, string schemaName = null, boolean! ifExists = true) -> string + public function dropView(string! viewName, string schemaName = null, bool! ifExists = true) -> string { var sql, view; diff --git a/phalcon/db/dialect/postgresql.zep b/phalcon/db/dialect/postgresql.zep index e991932ff3d..103e6ba86fb 100644 --- a/phalcon/db/dialect/postgresql.zep +++ b/phalcon/db/dialect/postgresql.zep @@ -331,7 +331,7 @@ class Postgresql extends Dialect /** * Generates SQL to create a table */ - public function createTable(string! tableName, string! schemaName, array! definition) -> string | array + public function createTable(string! tableName, string! schemaName, array! definition) -> string { var temporary, options, table, createLines, columns, column, indexes, index, reference, references, indexName, @@ -481,7 +481,7 @@ class Postgresql extends Dialect /** * Generates SQL to drop a table */ - public function dropTable(string! tableName, string schemaName = null, boolean! ifExists = true) -> string + public function dropTable(string! tableName, string schemaName = null, bool! ifExists = true) -> string { var table, sql; @@ -513,7 +513,7 @@ class Postgresql extends Dialect /** * Generates SQL to drop a view */ - public function dropView(string! viewName, string schemaName = null, boolean! ifExists = true) -> string + public function dropView(string! viewName, string schemaName = null, bool! ifExists = true) -> string { var view, sql; diff --git a/phalcon/db/dialect/sqlite.zep b/phalcon/db/dialect/sqlite.zep index a5d99f0efe3..8ddca226121 100644 --- a/phalcon/db/dialect/sqlite.zep +++ b/phalcon/db/dialect/sqlite.zep @@ -438,7 +438,7 @@ class Sqlite extends Dialect /** * Generates SQL to drop a table */ - public function dropTable(string! tableName, string schemaName = null, boolean! ifExists = true) -> string + public function dropTable(string! tableName, string schemaName = null, bool! ifExists = true) -> string { var sql, table; @@ -470,7 +470,7 @@ class Sqlite extends Dialect /** * Generates SQL to drop a view */ - public function dropView(string! viewName, string schemaName = null, boolean! ifExists = true) -> string + public function dropView(string! viewName, string schemaName = null, bool! ifExists = true) -> string { var view; diff --git a/phalcon/db/dialectinterface.zep b/phalcon/db/dialectinterface.zep index 84ed7174f52..ea2748213b5 100644 --- a/phalcon/db/dialectinterface.zep +++ b/phalcon/db/dialectinterface.zep @@ -126,7 +126,7 @@ interface DialectInterface /** * Generates SQL to drop a view */ - public function dropView(string! viewName, string schemaName = null, boolean! ifExists = true) -> string; + public function dropView(string! viewName, string schemaName = null, bool! ifExists = true) -> string; /** * Generates SQL checking for the existence of a schema.table @@ -166,12 +166,12 @@ interface DialectInterface /** * Checks whether the platform supports savepoints */ - public function supportsSavepoints() -> boolean; + public function supportsSavepoints() -> bool; /** * Checks whether the platform supports releasing savepoints. */ - public function supportsReleaseSavepoints() -> boolean; + public function supportsReleaseSavepoints() -> bool; /** * Generate SQL to create a new savepoint diff --git a/phalcon/db/index.zep b/phalcon/db/index.zep index 54c8ed5dda0..0a64baa1589 100644 --- a/phalcon/db/index.zep +++ b/phalcon/db/index.zep @@ -87,7 +87,7 @@ class Index implements IndexInterface /** * Restore a Phalcon\Db\Index object from export */ - public static function __set_state(array! data) -> <Index> + public static function __set_state(array! data) -> <IndexInterface> { var indexName, columns, type; diff --git a/phalcon/db/reference.zep b/phalcon/db/reference.zep index 9e60bb5ced5..bfd2c551954 100644 --- a/phalcon/db/reference.zep +++ b/phalcon/db/reference.zep @@ -44,7 +44,6 @@ namespace Phalcon\Db; */ class Reference implements ReferenceInterface { - /** * Constraint name * @@ -52,8 +51,18 @@ class Reference implements ReferenceInterface */ protected _name { get }; + /** + * Schema name + * + * @var string + */ protected _schemaName { get }; + /** + * Referenced Schema + * + * @var string + */ protected _referencedSchema { get }; /** @@ -80,14 +89,14 @@ class Reference implements ReferenceInterface /** * ON DELETE * - * @var array + * @var string */ protected _onDelete { get }; /** * ON UPDATE * - * @var array + * @var string */ protected _onUpdate { get }; @@ -144,7 +153,7 @@ class Reference implements ReferenceInterface /** * Restore a Phalcon\Db\Reference object from export */ - public static function __set_state(array! data) -> <Reference> + public static function __set_state(array! data) -> <ReferenceInterface> { var referencedSchema, referencedTable, columns, referencedColumns, constraintName, diff --git a/phalcon/db/result/pdo.zep b/phalcon/db/result/pdo.zep index 282f64e27fd..2ff4f30d64e 100644 --- a/phalcon/db/result/pdo.zep +++ b/phalcon/db/result/pdo.zep @@ -101,7 +101,7 @@ class Pdo implements ResultInterface * Allows to execute the statement again. Some database systems don't support scrollable cursors, * So, as cursors are forward only, we need to execute the cursor again to fetch rows from the begining */ - public function execute() -> boolean + public function execute() -> bool { return this->_pdoStatement->execute(); } @@ -328,7 +328,7 @@ class Pdo implements ResultInterface * ); *</code> */ - public function setFetchMode(int fetchMode, var colNoOrClassNameOrObject = null, var ctorargs = null) -> boolean + public function setFetchMode(int fetchMode, var colNoOrClassNameOrObject = null, var ctorargs = null) -> bool { var pdoStatement; diff --git a/phalcon/db/resultinterface.zep b/phalcon/db/resultinterface.zep index ccb0644c901..4665ad22199 100644 --- a/phalcon/db/resultinterface.zep +++ b/phalcon/db/resultinterface.zep @@ -30,7 +30,7 @@ interface ResultInterface * Allows to executes the statement again. Some database systems don't support scrollable cursors, * So, as cursors are forward only, we need to execute the cursor again to fetch rows from the begining */ - public function execute() -> boolean; + public function execute() -> bool; /** * Fetches an array/object of strings that corresponds to the fetched row, or FALSE if there are no more rows. @@ -62,14 +62,14 @@ interface ResultInterface /** * Moves internal resultset cursor to another position letting us to fetch a certain row * - * @param int number + * @param long number */ - public function dataSeek(number); + public function dataSeek(long number); /** * Changes the fetching mode affecting Phalcon\Db\Result\Pdo::fetch() */ - public function setFetchMode(int fetchMode) -> boolean; + public function setFetchMode(int fetchMode) -> bool; /** * Gets the internal PDO result object diff --git a/phalcon/debug.zep b/phalcon/debug.zep index ae8d9fe0e8a..aad635ff570 100644 --- a/phalcon/debug.zep +++ b/phalcon/debug.zep @@ -54,7 +54,7 @@ class Debug /** * Sets if files the exception's backtrace must be showed */ - public function setShowBackTrace(boolean showBackTrace) -> <Debug> + public function setShowBackTrace(bool showBackTrace) -> <Debug> { let this->_showBackTrace = showBackTrace; return this; @@ -63,7 +63,7 @@ class Debug /** * Set if files part of the backtrace must be shown in the output */ - public function setShowFiles(boolean showFiles) -> <Debug> + public function setShowFiles(bool showFiles) -> <Debug> { let this->_showFiles = showFiles; return this; @@ -73,7 +73,7 @@ class Debug * Sets if files must be completely opened and showed in the output * or just the fragment related to the exception */ - public function setShowFileFragment(boolean showFileFragment) -> <Debug> + public function setShowFileFragment(bool showFileFragment) -> <Debug> { let this->_showFileFragment = showFileFragment; return this; @@ -82,7 +82,7 @@ class Debug /** * Listen for uncaught exceptions and unsilent notices or warnings */ - public function listen(boolean exceptions = true, boolean lowSeverity = false) -> <Debug> + public function listen(bool exceptions = true, bool lowSeverity = false) -> <Debug> { if exceptions { this->listenExceptions(); @@ -556,7 +556,7 @@ class Debug /** * Handles uncaught exceptions */ - public function onUncaughtException(<\Exception> exception) -> boolean + public function onUncaughtException(<\Exception> exception) -> bool { var obLevel, className, escapedMessage, html, showBackTrace, dataVars, n, traceItem, keyRequest, value, keyServer, keyFile, keyVar, dataVar; diff --git a/phalcon/debug/dump.zep b/phalcon/debug/dump.zep index 25611f9d779..6920523d4bd 100644 --- a/phalcon/debug/dump.zep +++ b/phalcon/debug/dump.zep @@ -52,9 +52,9 @@ class Dump /** * Phalcon\Debug\Dump constructor * - * @param boolean detailed debug object's private and protected properties + * @param bool detailed debug object's private and protected properties */ - public function __construct(array styles = [], boolean detailed = false) + public function __construct(array styles = [], bool detailed = false) { this->setStyles(styles); diff --git a/phalcon/di.zep b/phalcon/di.zep index 1ba72916018..b48cb8a145f 100644 --- a/phalcon/di.zep +++ b/phalcon/di.zep @@ -125,7 +125,7 @@ class Di implements DiInterface /** * Registers a service in the services container */ - public function set(string! name, var definition, boolean shared = false) -> <ServiceInterface> + public function set(string! name, var definition, bool shared = false) -> <ServiceInterface> { var service; let service = new Service(definition, shared), @@ -156,7 +156,7 @@ class Di implements DiInterface * Only is successful if a service hasn't been registered previously * with the same name */ - public function attempt(string! name, definition, boolean shared = false) -> <ServiceInterface> | boolean + public function attempt(string! name, definition, bool shared = false) -> <ServiceInterface> | bool { var service; @@ -309,7 +309,7 @@ class Di implements DiInterface /** * Check whether the DI contains a service by a name */ - public function has(string! name) -> boolean + public function has(string! name) -> bool { return isset this->_services[name]; } @@ -317,7 +317,7 @@ class Di implements DiInterface /** * Check whether the last service obtained via getShared produced a fresh instance or an existing one */ - public function wasFreshInstance() -> boolean + public function wasFreshInstance() -> bool { return this->_freshInstance; } @@ -325,7 +325,7 @@ class Di implements DiInterface /** * Return the services registered in the DI */ - public function getServices() -> <Service[]> + public function getServices() -> <ServiceInterface[]> { return this->_services; } @@ -333,7 +333,7 @@ class Di implements DiInterface /** * Check if a service is registered using the array syntax */ - public function offsetExists(string! name) -> boolean + public function offsetExists(var name) -> bool { return this->has(name); } @@ -345,10 +345,9 @@ class Di implements DiInterface * $di["request"] = new \Phalcon\Http\Request(); *</code> */ - public function offsetSet(string! name, var definition) -> boolean + public function offsetSet(var name, var definition) -> void { this->setShared(name, definition); - return true; } /** @@ -358,7 +357,7 @@ class Di implements DiInterface * var_dump($di["request"]); *</code> */ - public function offsetGet(string! name) -> var + public function offsetGet(var name) -> var { return this->getShared(name); } @@ -366,9 +365,9 @@ class Di implements DiInterface /** * Removes a service from the services container using the array syntax */ - public function offsetUnset(string! name) -> boolean + public function offsetUnset(var name) -> void { - return false; + this->remove(name); } /** diff --git a/phalcon/di/exception/serviceresolutionexception.zep b/phalcon/di/exception/serviceresolutionexception.zep index a325331a9ab..903a46225fe 100644 --- a/phalcon/di/exception/serviceresolutionexception.zep +++ b/phalcon/di/exception/serviceresolutionexception.zep @@ -13,14 +13,14 @@ +------------------------------------------------------------------------+ */ -namespace Phalcon\Di\Exception; + namespace Phalcon\Di\Exception; -use Phalcon\Di\Exception\ServiceResolutionException; - -/** - * Phalcon\Di\Exception\ServiceResolutionException - * - */ -class ServiceResolutionException extends \Phalcon\Di\Exception -{ -} \ No newline at end of file + use Phalcon\Di\Exception\ServiceResolutionException; + + /** + * Phalcon\Di\Exception\ServiceResolutionException + * + */ + class ServiceResolutionException extends \Phalcon\Di\Exception + { + } \ No newline at end of file diff --git a/phalcon/di/service.zep b/phalcon/di/service.zep index 66e3fecc2b8..ff0e1d6ac7d 100644 --- a/phalcon/di/service.zep +++ b/phalcon/di/service.zep @@ -55,7 +55,7 @@ class Service implements ServiceInterface * * @param mixed definition */ - public final function __construct(definition, boolean shared = false) + public final function __construct(definition, bool shared = false) { let this->_definition = definition, this->_shared = shared; @@ -64,7 +64,7 @@ class Service implements ServiceInterface /** * Sets if the service is shared or not */ - public function setShared(boolean shared) -> void + public function setShared(bool shared) -> void { let this->_shared = shared; } @@ -72,7 +72,7 @@ class Service implements ServiceInterface /** * Check whether the service is shared or not */ - public function isShared() -> boolean + public function isShared() -> bool { return this->_shared; } @@ -115,7 +115,7 @@ class Service implements ServiceInterface */ public function resolve(parameters = null, <DiInterface> dependencyInjector = null) { - boolean found; + bool found; var shared, definition, sharedInstance, instance, builder; let shared = this->_shared; @@ -210,7 +210,7 @@ class Service implements ServiceInterface /** * Changes a parameter in the definition without resolve the service */ - public function setParameter(int position, array! parameter) -> <Service> + public function setParameter(int position, array! parameter) -> <ServiceInterface> { var definition, arguments; @@ -270,7 +270,7 @@ class Service implements ServiceInterface /** * Returns true if the service was resolved */ - public function isResolved() -> boolean + public function isResolved() -> bool { return this->_resolved; } @@ -278,9 +278,9 @@ class Service implements ServiceInterface /** * Restore the internal state of a service */ - public static function __set_state(array! attributes) -> <Service> + public static function __set_state(array! attributes) -> <ServiceInterface> { - var name, definition, shared; + var definition, shared; if !fetch definition, attributes["_definition"] { throw new Exception("The attribute '_definition' is required"); diff --git a/phalcon/di/serviceinterface.zep b/phalcon/di/serviceinterface.zep index 74083be2ef6..605037d29e1 100644 --- a/phalcon/di/serviceinterface.zep +++ b/phalcon/di/serviceinterface.zep @@ -31,12 +31,12 @@ interface ServiceInterface /** * Sets if the service is shared or not */ - public function setShared(boolean shared); + public function setShared(bool shared); /** * Check whether the service is shared or not */ - public function isShared() -> boolean; + public function isShared() -> bool; /** * Set the service definition diff --git a/phalcon/diinterface.zep b/phalcon/diinterface.zep index 7723b62de6a..37320c16ac6 100644 --- a/phalcon/diinterface.zep +++ b/phalcon/diinterface.zep @@ -35,7 +35,7 @@ interface DiInterface extends \ArrayAccess * * @param mixed definition */ - public function set(string! name, definition, boolean shared = false) -> <ServiceInterface>; + public function set(string! name, definition, bool shared = false) -> <ServiceInterface>; /** * Registers an "always shared" service in the services container @@ -56,7 +56,7 @@ interface DiInterface extends \ArrayAccess * * @param mixed definition */ - public function attempt(string! name, definition, boolean shared = false) -> <ServiceInterface>; + public function attempt(string! name, definition, bool shared = false) -> <ServiceInterface> | bool; /** * Resolves the service based on its configuration @@ -90,12 +90,12 @@ interface DiInterface extends \ArrayAccess /** * Check whether the DI contains a service by a name */ - public function has(string! name) -> boolean; + public function has(string! name) -> bool; /** * Check whether the last service obtained via getShared produced a fresh instance or an existing one */ - public function wasFreshInstance() -> boolean; + public function wasFreshInstance() -> bool; /** * Return the services registered in the DI diff --git a/phalcon/dispatcher.zep b/phalcon/dispatcher.zep index fab276d5328..708a7038be8 100644 --- a/phalcon/dispatcher.zep +++ b/phalcon/dispatcher.zep @@ -283,7 +283,7 @@ abstract class Dispatcher implements DispatcherInterface, InjectionAwareInterfac /** * Check if a param exists */ - public function hasParam(var param) -> boolean + public function hasParam(var param) -> bool { return isset this->_params[param]; } @@ -299,7 +299,7 @@ abstract class Dispatcher implements DispatcherInterface, InjectionAwareInterfac /** * Checks if the dispatch loop is finished or has more pendent controllers/tasks to dispatch */ - public function isFinished() -> boolean + public function isFinished() -> bool { return this->_finished; } @@ -387,7 +387,7 @@ abstract class Dispatcher implements DispatcherInterface, InjectionAwareInterfac */ public function dispatch() { - boolean hasService, hasEventsManager; + bool hasService, hasEventsManager; int numberDispatches; var value, handler, dependencyInjector, namespaceName, handlerName, actionName, params, eventsManager, @@ -815,7 +815,7 @@ abstract class Dispatcher implements DispatcherInterface, InjectionAwareInterfac /** * Check if the current executed action was forwarded by another one */ - public function wasForwarded() -> boolean + public function wasForwarded() -> bool { return this->_forwarded; } diff --git a/phalcon/dispatcherinterface.zep b/phalcon/dispatcherinterface.zep index 67ab599caf6..7fa946cc7e8 100644 --- a/phalcon/dispatcherinterface.zep +++ b/phalcon/dispatcherinterface.zep @@ -107,12 +107,12 @@ interface DispatcherInterface /** * Check if a param exists */ - public function hasParam(var param) -> boolean; + public function hasParam(var param) -> bool; /** * Checks if the dispatch loop is finished or has more pendent controllers/tasks to dispatch */ - public function isFinished() -> boolean; + public function isFinished() -> bool; /** * Returns value returned by the latest dispatched action diff --git a/phalcon/escaper.zep b/phalcon/escaper.zep index 6a6b1388d68..40423c768f9 100644 --- a/phalcon/escaper.zep +++ b/phalcon/escaper.zep @@ -88,7 +88,7 @@ class Escaper implements EscaperInterface * $escaper->setDoubleEncode(false); *</code> */ - public function setDoubleEncode(boolean doubleEncode) -> void + public function setDoubleEncode(bool doubleEncode) -> void { let this->_doubleEncode = doubleEncode; } diff --git a/phalcon/events/event.zep b/phalcon/events/event.zep index 9ec4cc194cb..62501e0ec0d 100644 --- a/phalcon/events/event.zep +++ b/phalcon/events/event.zep @@ -50,14 +50,14 @@ class Event implements EventInterface /** * Is event propagation stopped? * - * @var boolean + * @var bool */ protected _stopped = false; /** * Is event cancelable? * - * @var boolean + * @var bool */ protected _cancelable = true; @@ -66,7 +66,7 @@ class Event implements EventInterface * * @param object source */ - public function __construct(string! type, source, var data = null, boolean cancelable = true) + public function __construct(string! type, source, var data = null, bool cancelable = true) { let this->_type = type, this->_source = source; @@ -123,7 +123,7 @@ class Event implements EventInterface /** * Check whether the event is currently stopped. */ - public function isStopped() -> boolean + public function isStopped() -> bool { return this->_stopped; } @@ -137,7 +137,7 @@ class Event implements EventInterface * } * </code> */ - public function isCancelable() -> boolean + public function isCancelable() -> bool { return this->_cancelable; } diff --git a/phalcon/events/eventinterface.zep b/phalcon/events/eventinterface.zep index f6daca28933..31aba52afd4 100644 --- a/phalcon/events/eventinterface.zep +++ b/phalcon/events/eventinterface.zep @@ -54,10 +54,10 @@ interface EventInterface /** * Check whether the event is currently stopped */ - public function isStopped() -> boolean; + public function isStopped() -> bool; /** * Check whether the event is cancelable */ - public function isCancelable() -> boolean; + public function isCancelable() -> bool; } diff --git a/phalcon/events/manager.zep b/phalcon/events/manager.zep index baaeec44711..197eacc4e17 100644 --- a/phalcon/events/manager.zep +++ b/phalcon/events/manager.zep @@ -129,7 +129,7 @@ class Manager implements ManagerInterface /** * Set if priorities are enabled in the EventsManager */ - public function enablePriorities(boolean enablePriorities) + public function enablePriorities(bool enablePriorities) { let this->_enablePriorities = enablePriorities; } @@ -137,7 +137,7 @@ class Manager implements ManagerInterface /** * Returns if priorities are enabled */ - public function arePrioritiesEnabled() -> boolean + public function arePrioritiesEnabled() -> bool { return this->_enablePriorities; } @@ -146,7 +146,7 @@ class Manager implements ManagerInterface * Tells the event manager if it needs to collect all the responses returned by every * registered listener in a single fire */ - public function collectResponses(boolean collect) + public function collectResponses(bool collect) { let this->_collect = collect; } @@ -155,7 +155,7 @@ class Manager implements ManagerInterface * Check if the events manager is collecting all all the responses returned by every * registered listener in a single fire */ - public function isCollecting() -> boolean + public function isCollecting() -> bool { return this->_collect; } @@ -191,7 +191,7 @@ class Manager implements ManagerInterface public final function fireQueue(var queue, <EventInterface> event) { var status, arguments, eventName, data, iterator, source, handler; - boolean collect, cancelable; + bool collect, cancelable; if typeof queue != "array" { if typeof queue == "object" { @@ -223,10 +223,10 @@ class Manager implements ManagerInterface let data = event->getData(); // Tell if the event is cancelable - let cancelable = (boolean) event->isCancelable(); + let cancelable = (bool) event->isCancelable(); // Responses need to be traced? - let collect = (boolean) this->_collect; + let collect = (bool) this->_collect; if typeof queue == "object" { @@ -365,7 +365,7 @@ class Manager implements ManagerInterface * @param mixed data * @return mixed */ - public function fire(string! eventType, source, data = null, boolean cancelable = true) + public function fire(string! eventType, source, data = null, bool cancelable = true) { var events, eventParts, type, eventName, event, status, fireEvents; @@ -426,7 +426,7 @@ class Manager implements ManagerInterface /** * Check whether certain type of event has listeners */ - public function hasListeners(string! type) -> boolean + public function hasListeners(string! type) -> bool { return isset this->_events[type]; } diff --git a/phalcon/filter.zep b/phalcon/filter.zep index e36530a7141..f5731b2a15c 100644 --- a/phalcon/filter.zep +++ b/phalcon/filter.zep @@ -73,7 +73,7 @@ class Filter implements FilterInterface /** * Adds a user-defined filter */ - public function add(string! name, handler) -> <Filter> + public function add(string! name, handler) -> <FilterInterface> { if typeof handler != "object" && !is_callable(handler) { throw new Exception("Filter must be an object or callable"); @@ -86,7 +86,7 @@ class Filter implements FilterInterface /** * Sanitizes a value with a specified single or set of filters */ - public function sanitize(var value, var filters, boolean noRecursive = false) -> var + public function sanitize(var value, var filters, bool noRecursive = false) -> var { var filter, arrayValue, itemKey, itemValue, sanitizedValue; diff --git a/phalcon/flash.zep b/phalcon/flash.zep index 08281dc04c3..3048476ac0d 100644 --- a/phalcon/flash.zep +++ b/phalcon/flash.zep @@ -82,7 +82,7 @@ abstract class Flash implements FlashInterface, InjectionAwareInterface * $flash->error("This is an error"); *</code> */ - public function error(var message) -> string + public function error(string message) -> string { return this->{"message"}("error", message); } @@ -142,7 +142,7 @@ abstract class Flash implements FlashInterface, InjectionAwareInterface * $flash->notice("This is an information"); *</code> */ - public function notice(var message) -> string + public function notice(string message) -> string { return this->{"message"}("notice", message); } @@ -150,7 +150,7 @@ abstract class Flash implements FlashInterface, InjectionAwareInterface /** * Set the autoescape mode in generated html */ - public function setAutoescape(boolean autoescape) -> <Flash> + public function setAutoescape(bool autoescape) -> <Flash> { let this->_autoescape = autoescape; return this; @@ -159,7 +159,7 @@ abstract class Flash implements FlashInterface, InjectionAwareInterface /** * Set if the output must be implicitly formatted with HTML */ - public function setAutomaticHtml(boolean automaticHtml) -> <FlashInterface> + public function setAutomaticHtml(bool automaticHtml) -> <FlashInterface> { let this->_automaticHtml = automaticHtml; return this; @@ -204,7 +204,7 @@ abstract class Flash implements FlashInterface, InjectionAwareInterface /** * Set whether the output must be implicitly flushed to the output or returned as string */ - public function setImplicitFlush(boolean implicitFlush) -> <FlashInterface> + public function setImplicitFlush(bool implicitFlush) -> <FlashInterface> { let this->_implicitFlush = implicitFlush; return this; @@ -217,7 +217,7 @@ abstract class Flash implements FlashInterface, InjectionAwareInterface * $flash->success("The process was finished successfully"); *</code> */ - public function success(var message) -> string + public function success(string message) -> string { return this->{"message"}("success", message); } @@ -234,7 +234,7 @@ abstract class Flash implements FlashInterface, InjectionAwareInterface */ public function outputMessage(string type, var message) { - boolean implicitFlush; + bool implicitFlush; var content, msg, htmlMessage, preparedMsg; @@ -307,7 +307,7 @@ abstract class Flash implements FlashInterface, InjectionAwareInterface * $flash->warning("Hey, this is important"); *</code> */ - public function warning(var message) -> string + public function warning(string message) -> string { return this->{"message"}("warning", message); } diff --git a/phalcon/flash/direct.zep b/phalcon/flash/direct.zep index d4302f6ae62..db46de4edec 100644 --- a/phalcon/flash/direct.zep +++ b/phalcon/flash/direct.zep @@ -40,7 +40,7 @@ class Direct extends FlashBase /** * Prints the messages accumulated in the flasher */ - public function output(boolean remove = true) -> void + public function output(bool remove = true) -> void { var message, messages; diff --git a/phalcon/flash/session.zep b/phalcon/flash/session.zep index 667e5b73390..67a739dfe2c 100644 --- a/phalcon/flash/session.zep +++ b/phalcon/flash/session.zep @@ -34,7 +34,7 @@ class Session extends FlashBase /** * Returns the messages stored in session */ - protected function _getSessionMessages(boolean remove, type = null) -> array + protected function _getSessionMessages(bool remove, type = null) -> array { var dependencyInjector, session, messages, returnMessages; @@ -99,7 +99,7 @@ class Session extends FlashBase /** * Checks whether there are messages */ - public function has(type = null) -> boolean + public function has(type = null) -> bool { var messages; @@ -116,7 +116,7 @@ class Session extends FlashBase /** * Returns the messages in the session flasher */ - public function getMessages(type = null, boolean remove = true) -> array + public function getMessages(type = null, bool remove = true) -> array { return this->_getSessionMessages(remove, type); } @@ -124,7 +124,7 @@ class Session extends FlashBase /** * Prints the messages in the session flasher */ - public function output(boolean remove = true) -> void + public function output(bool remove = true) -> void { var type, message, messages; diff --git a/phalcon/flashinterface.zep b/phalcon/flashinterface.zep index 20ce5b474c8..e9903583587 100644 --- a/phalcon/flashinterface.zep +++ b/phalcon/flashinterface.zep @@ -30,25 +30,25 @@ interface FlashInterface /** * Shows a HTML error message */ - public function error(message); + public function error(string message); /** * Outputs a message */ - public function message(string type, var message); + public function message(string type, string message); /** * Shows a HTML notice/information message */ - public function notice(message); + public function notice(string message); /** * Shows a HTML success message */ - public function success(message); + public function success(string message); /** * Shows a HTML warning message */ - public function warning(message); + public function warning(string message); } diff --git a/phalcon/forms/element.zep b/phalcon/forms/element.zep index f639ad362fc..a40e503ca42 100644 --- a/phalcon/forms/element.zep +++ b/phalcon/forms/element.zep @@ -149,7 +149,7 @@ abstract class Element implements ElementInterface * * @param \Phalcon\Validation\ValidatorInterface[] validators */ - public function addValidators(array! validators, boolean merge = true) -> <ElementInterface> + public function addValidators(array! validators, bool merge = true) -> <ElementInterface> { var currentValidators, mergedValidators; if merge { @@ -186,7 +186,7 @@ abstract class Element implements ElementInterface * Returns an array of prepared attributes for Phalcon\Tag helpers * according to the element parameters */ - public function prepareAttributes(array attributes = null, boolean useChecked = false) -> array + public function prepareAttributes(array attributes = null, bool useChecked = false) -> array { var value, name, widgetAttributes, mergedAttributes, defaultAttributes, currentValue; @@ -451,7 +451,7 @@ abstract class Element implements ElementInterface /** * Checks whether there are messages attached to the element */ - public function hasMessages() -> boolean + public function hasMessages() -> bool { return count(this->_messages) > 0; } @@ -477,7 +477,7 @@ abstract class Element implements ElementInterface /** * Clears element to its default value */ - public function clear() -> <Element> + public function clear() -> <ElementInterface> { var form = this->_form, name = this->_name, diff --git a/phalcon/forms/elementinterface.zep b/phalcon/forms/elementinterface.zep index 79331b21fea..519ecaf2a3f 100644 --- a/phalcon/forms/elementinterface.zep +++ b/phalcon/forms/elementinterface.zep @@ -76,7 +76,7 @@ interface ElementInterface * * @param \Phalcon\Validation\ValidatorInterface[] */ - public function addValidators(array! validators, boolean merge = true) -> <ElementInterface>; + public function addValidators(array! validators, bool merge = true) -> <ElementInterface>; /** * Adds a validator to the element @@ -92,7 +92,7 @@ interface ElementInterface * Returns an array of prepared attributes for Phalcon\Tag helpers * according to the element's parameters */ - public function prepareAttributes(array attributes = null, boolean useChecked = false) -> array; + public function prepareAttributes(array attributes = null, bool useChecked = false) -> array; /** * Sets a default attribute for the element @@ -174,7 +174,7 @@ interface ElementInterface /** * Checks whether there are messages attached to the element */ - public function hasMessages() -> boolean; + public function hasMessages() -> bool; /** * Sets the validation messages related to the element diff --git a/phalcon/forms/form.zep b/phalcon/forms/form.zep index 76f51fdd533..b8a5f61614a 100644 --- a/phalcon/forms/form.zep +++ b/phalcon/forms/form.zep @@ -245,7 +245,7 @@ class Form extends Injectable implements \Countable, \Iterator * @param array data * @param object entity */ - public function isValid(var data = null, var entity = null) -> boolean + public function isValid(var data = null, var entity = null) -> bool { var validationStatus, messages, element, validators, name, filters, @@ -379,7 +379,7 @@ class Form extends Injectable implements \Countable, \Iterator * } * </code> */ - public function getMessages(boolean byItemName = false) -> <Messages> | array + public function getMessages(bool byItemName = false) -> <Messages> | array { var messages, messagesByItem, elementMessage, fieldName; @@ -426,7 +426,7 @@ class Form extends Injectable implements \Countable, \Iterator /** * Check if messages were generated for a specific element */ - public function hasMessagesFor(string! name) -> boolean + public function hasMessagesFor(string! name) -> bool { return this->getMessagesFor(name)->count() > 0; } @@ -434,7 +434,7 @@ class Form extends Injectable implements \Countable, \Iterator /** * Adds an element to the form */ - public function add(<ElementInterface> element, string position = null, boolean type = null) -> <Form> + public function add(<ElementInterface> element, string position = null, bool type = null) -> <Form> { var name, key, value, elements; @@ -644,7 +644,7 @@ class Form extends Injectable implements \Countable, \Iterator /** * Check if the form contains an element */ - public function has(string! name) -> boolean + public function has(string! name) -> bool { /** * Checks if the element is in the form @@ -655,7 +655,7 @@ class Form extends Injectable implements \Countable, \Iterator /** * Removes an element from the form */ - public function remove(string! name) -> boolean + public function remove(string! name) -> bool { /** * Checks if the element is in the form @@ -753,7 +753,7 @@ class Form extends Injectable implements \Countable, \Iterator /** * Returns the current element in the iterator */ - public function current() -> <ElementInterface> | boolean + public function current() -> <ElementInterface> | bool { var element; @@ -783,7 +783,7 @@ class Form extends Injectable implements \Countable, \Iterator /** * Check if the current element in the iterator is valid */ - public function valid() -> boolean + public function valid() -> bool { return isset this->_elementsIndexed[this->_position]; } diff --git a/phalcon/forms/manager.zep b/phalcon/forms/manager.zep index 933e54ef900..caea04d452b 100644 --- a/phalcon/forms/manager.zep +++ b/phalcon/forms/manager.zep @@ -56,7 +56,7 @@ class Manager /** * Checks if a form is registered in the forms manager */ - public function has(string name) -> boolean + public function has(string name) -> bool { return isset this->_forms[name]; } diff --git a/phalcon/http/cookie.zep b/phalcon/http/cookie.zep index 6e5660ef3f7..8f7c1056568 100644 --- a/phalcon/http/cookie.zep +++ b/phalcon/http/cookie.zep @@ -73,9 +73,9 @@ class Cookie implements CookieInterface, InjectionAwareInterface var value = null, int expire = 0, string path = "/", - boolean secure = null, + bool secure = null, string domain = null, - boolean httpOnly = null + bool httpOnly = null ) { let this->_name = name; @@ -418,7 +418,7 @@ class Cookie implements CookieInterface, InjectionAwareInterface /** * Sets if the cookie must be encrypted/decrypted automatically */ - public function useEncryption(boolean useEncryption) -> <CookieInterface> + public function useEncryption(bool useEncryption) -> <CookieInterface> { let this->_useEncryption = useEncryption; return this; @@ -427,7 +427,7 @@ class Cookie implements CookieInterface, InjectionAwareInterface /** * Check if the cookie is using implicit encryption */ - public function isUsingEncryption() -> boolean + public function isUsingEncryption() -> bool { return this->_useEncryption; } @@ -512,7 +512,7 @@ class Cookie implements CookieInterface, InjectionAwareInterface /** * Sets if the cookie must only be sent when the connection is secure (HTTPS) */ - public function setSecure(boolean secure) -> <CookieInterface> + public function setSecure(bool secure) -> <CookieInterface> { if !this->_restored { this->restore(); @@ -524,7 +524,7 @@ class Cookie implements CookieInterface, InjectionAwareInterface /** * Returns whether the cookie must only be sent when the connection is secure (HTTPS) */ - public function getSecure() -> boolean + public function getSecure() -> bool { if !this->_restored { this->restore(); @@ -535,7 +535,7 @@ class Cookie implements CookieInterface, InjectionAwareInterface /** * Sets if the cookie is accessible only through the HTTP protocol */ - public function setHttpOnly(boolean httpOnly) -> <CookieInterface> + public function setHttpOnly(bool httpOnly) -> <CookieInterface> { if !this->_restored { this->restore(); @@ -547,7 +547,7 @@ class Cookie implements CookieInterface, InjectionAwareInterface /** * Returns if the cookie is accessible only through the HTTP protocol */ - public function getHttpOnly() -> boolean + public function getHttpOnly() -> bool { if !this->_restored { this->restore(); diff --git a/phalcon/http/cookieinterface.zep b/phalcon/http/cookieinterface.zep index 7974beb3278..9a83aa998ad 100644 --- a/phalcon/http/cookieinterface.zep +++ b/phalcon/http/cookieinterface.zep @@ -50,12 +50,12 @@ interface CookieInterface /** * Sets if the cookie must be encrypted/decrypted automatically */ - public function useEncryption(boolean useEncryption) -> <CookieInterface>; + public function useEncryption(bool useEncryption) -> <CookieInterface>; /** * Check if the cookie is using implicit encryption */ - public function isUsingEncryption() -> boolean; + public function isUsingEncryption() -> bool; /** * Sets the cookie's expiration time @@ -95,20 +95,20 @@ interface CookieInterface /** * Sets if the cookie must only be sent when the connection is secure (HTTPS) */ - public function setSecure(boolean secure) -> <CookieInterface>; + public function setSecure(bool secure) -> <CookieInterface>; /** * Returns whether the cookie must only be sent when the connection is secure (HTTPS) */ - public function getSecure() -> boolean; + public function getSecure() -> bool; /** * Sets if the cookie is accessible only through the HTTP protocol */ - public function setHttpOnly(boolean httpOnly) -> <CookieInterface>; + public function setHttpOnly(bool httpOnly) -> <CookieInterface>; /** * Returns if the cookie is accessible only through the HTTP protocol */ - public function getHttpOnly() -> boolean; + public function getHttpOnly() -> bool; } diff --git a/phalcon/http/request.zep b/phalcon/http/request.zep index 1e95e504739..084cb579853 100644 --- a/phalcon/http/request.zep +++ b/phalcon/http/request.zep @@ -22,6 +22,7 @@ namespace Phalcon\Http; use Phalcon\DiInterface; use Phalcon\FilterInterface; use Phalcon\Http\Request\File; +use Phalcon\Http\Request\FileInterface; use Phalcon\Http\Request\Exception; use Phalcon\Events\ManagerInterface; use Phalcon\Di\InjectionAwareInterface; @@ -91,7 +92,7 @@ class Request implements RequestInterface, InjectionAwareInterface * $userEmail = $request->get("user_email", "email"); *</code> */ - public function get(string! name = null, var filters = null, var defaultValue = null, boolean notAllowEmpty = false, boolean noRecursive = false) -> var + public function get(string! name = null, var filters = null, var defaultValue = null, bool notAllowEmpty = false, bool noRecursive = false) -> var { return this->getHelper(_REQUEST, name, filters, defaultValue, notAllowEmpty, noRecursive); } @@ -108,7 +109,7 @@ class Request implements RequestInterface, InjectionAwareInterface * $userEmail = $request->getPost("user_email", "email"); *</code> */ - public function getPost(string! name = null, var filters = null, var defaultValue = null, boolean notAllowEmpty = false, boolean noRecursive = false) -> var + public function getPost(string! name = null, var filters = null, var defaultValue = null, bool notAllowEmpty = false, bool noRecursive = false) -> var { return this->getHelper(_POST, name, filters, defaultValue, notAllowEmpty, noRecursive); } @@ -124,7 +125,7 @@ class Request implements RequestInterface, InjectionAwareInterface * $userEmail = $request->getPut("user_email", "email"); *</code> */ - public function getPut(string! name = null, var filters = null, var defaultValue = null, boolean notAllowEmpty = false, boolean noRecursive = false) -> var + public function getPut(string! name = null, var filters = null, var defaultValue = null, bool notAllowEmpty = false, bool noRecursive = false) -> var { var put, contentType; @@ -163,7 +164,7 @@ class Request implements RequestInterface, InjectionAwareInterface * $id = $request->getQuery("id", null, 150); *</code> */ - public function getQuery(string! name = null, var filters = null, var defaultValue = null, boolean notAllowEmpty = false, boolean noRecursive = false) -> var + public function getQuery(string! name = null, var filters = null, var defaultValue = null, bool notAllowEmpty = false, bool noRecursive = false) -> var { return this->getHelper(_GET, name, filters, defaultValue, notAllowEmpty, noRecursive); } @@ -172,7 +173,7 @@ class Request implements RequestInterface, InjectionAwareInterface * Helper to get data from superglobals, applying filters if needed. * If no parameters are given the superglobal is returned. */ - protected final function getHelper(array source, string! name = null, var filters = null, var defaultValue = null, boolean notAllowEmpty = false, boolean noRecursive = false) -> var + protected final function getHelper(array source, string! name = null, var filters = null, var defaultValue = null, bool notAllowEmpty = false, bool noRecursive = false) -> var { var value, filter, dependencyInjector; @@ -221,7 +222,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Checks whether $_REQUEST superglobal has certain index */ - public function has(string! name) -> boolean + public function has(string! name) -> bool { return isset _REQUEST[name]; } @@ -229,7 +230,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Checks whether $_POST superglobal has certain index */ - public function hasPost(string! name) -> boolean + public function hasPost(string! name) -> bool { return isset _POST[name]; } @@ -237,7 +238,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Checks whether the PUT data has certain index */ - public function hasPut(string! name) -> boolean + public function hasPut(string! name) -> bool { var put; @@ -249,7 +250,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Checks whether $_GET superglobal has certain index */ - public function hasQuery(string! name) -> boolean + public function hasQuery(string! name) -> bool { return isset _GET[name]; } @@ -257,7 +258,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Checks whether $_SERVER superglobal has certain index */ - public final function hasServer(string! name) -> boolean + public final function hasServer(string! name) -> bool { return isset _SERVER[name]; } @@ -265,7 +266,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Checks whether headers has certain index */ - public final function hasHeader(string! header) -> boolean + public final function hasHeader(string! header) -> bool { var name; @@ -325,7 +326,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Checks whether request has been made using ajax */ - public function isAjax() -> boolean + public function isAjax() -> bool { return isset _SERVER["HTTP_X_REQUESTED_WITH"] && _SERVER["HTTP_X_REQUESTED_WITH"] === "XMLHttpRequest"; } @@ -333,7 +334,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Checks whether request has been made using SOAP */ - public function isSoap() -> boolean + public function isSoap() -> bool { var contentType; @@ -351,7 +352,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Checks whether request has been made using any secure layer */ - public function isSecure() -> boolean + public function isSecure() -> bool { return this->getScheme() === "https"; } @@ -380,7 +381,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Gets decoded JSON HTTP raw request body */ - public function getJsonRawBody(boolean associative = false) -> <\stdClass> | array | boolean + public function getJsonRawBody(bool associative = false) -> <\stdClass> | array | bool { var rawBody; @@ -501,7 +502,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Sets if the `Request::getHttpHost` method must be use strict validation of host name or not */ - public function setStrictHostCheck(bool flag = true) -> <Request> + public function setStrictHostCheck(bool flag = true) -> <RequestInterface> { let this->_strictHostCheck = flag; @@ -511,7 +512,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Checks if the `Request::getHttpHost` method will be use strict validation of host name or not */ - public function isStrictHostCheck() -> boolean + public function isStrictHostCheck() -> bool { return this->_strictHostCheck; } @@ -560,7 +561,7 @@ class Request implements RequestInterface, InjectionAwareInterface * Gets most possible client IPv4 Address. This method searches in * $_SERVER["REMOTE_ADDR"] and optionally in $_SERVER["HTTP_X_FORWARDED_FOR"] */ - public function getClientAddress(boolean trustForwardedHeader = false) -> string | boolean + public function getClientAddress(bool trustForwardedHeader = false) -> string | bool { var address = null; @@ -647,7 +648,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Checks if a method is a valid HTTP method */ - public function isValidHttpMethod(string method) -> boolean + public function isValidHttpMethod(string method) -> bool { switch strtoupper(method) { case "GET": @@ -670,7 +671,7 @@ class Request implements RequestInterface, InjectionAwareInterface * Check if HTTP method match any of the passed methods * When strict is true it checks if validated methods are real HTTP methods */ - public function isMethod(var methods, boolean strict = false) -> boolean + public function isMethod(var methods, bool strict = false) -> bool { var httpMethod, method; @@ -703,7 +704,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Checks whether HTTP method is POST. if _SERVER["REQUEST_METHOD"]==="POST" */ - public function isPost() -> boolean + public function isPost() -> bool { return this->getMethod() === "POST"; } @@ -711,7 +712,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Checks whether HTTP method is GET. if _SERVER["REQUEST_METHOD"]==="GET" */ - public function isGet() -> boolean + public function isGet() -> bool { return this->getMethod() === "GET"; } @@ -719,7 +720,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Checks whether HTTP method is PUT. if _SERVER["REQUEST_METHOD"]==="PUT" */ - public function isPut() -> boolean + public function isPut() -> bool { return this->getMethod() === "PUT"; } @@ -727,7 +728,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Checks whether HTTP method is PATCH. if _SERVER["REQUEST_METHOD"]==="PATCH" */ - public function isPatch() -> boolean + public function isPatch() -> bool { return this->getMethod() === "PATCH"; } @@ -735,7 +736,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Checks whether HTTP method is HEAD. if _SERVER["REQUEST_METHOD"]==="HEAD" */ - public function isHead() -> boolean + public function isHead() -> bool { return this->getMethod() === "HEAD"; } @@ -743,7 +744,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Checks whether HTTP method is DELETE. if _SERVER["REQUEST_METHOD"]==="DELETE" */ - public function isDelete() -> boolean + public function isDelete() -> bool { return this->getMethod() === "DELETE"; } @@ -751,7 +752,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Checks whether HTTP method is OPTIONS. if _SERVER["REQUEST_METHOD"]==="OPTIONS" */ - public function isOptions() -> boolean + public function isOptions() -> bool { return this->getMethod() === "OPTIONS"; } @@ -759,7 +760,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Checks whether HTTP method is PURGE (Squid and Varnish support). if _SERVER["REQUEST_METHOD"]==="PURGE" */ - public function isPurge() -> boolean + public function isPurge() -> bool { return this->getMethod() === "PURGE"; } @@ -767,7 +768,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Checks whether HTTP method is TRACE. if _SERVER["REQUEST_METHOD"]==="TRACE" */ - public function isTrace() -> boolean + public function isTrace() -> bool { return this->getMethod() === "TRACE"; } @@ -775,15 +776,17 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Checks whether HTTP method is CONNECT. if _SERVER["REQUEST_METHOD"]==="CONNECT" */ - public function isConnect() -> boolean + public function isConnect() -> bool { return this->getMethod() === "CONNECT"; } /** - * Checks whether request include attached files + * Returns the number of files available + * + * TODO: Check this */ - public function hasFiles(boolean onlySuccessful = false) -> long + public function hasFiles(bool onlySuccessful = false) -> long { var files, file, error; int numberFiles = 0; @@ -815,7 +818,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Recursively counts file in an array of files */ - protected final function hasFileHelper(var data, boolean onlySuccessful) -> long + protected final function hasFileHelper(var data, bool onlySuccessful) -> long { var value; int numberFiles = 0; @@ -842,7 +845,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Gets attached files as Phalcon\Http\Request\File instances */ - public function getUploadedFiles(boolean onlySuccessful = false) -> <File[]> + public function getUploadedFiles(bool onlySuccessful = false) -> <FileInterface[]> { var superFiles, prefix, input, smoothInput, file, dataFile; array files = []; @@ -1139,7 +1142,7 @@ class Request implements RequestInterface, InjectionAwareInterface /** * Gets a charsets array and their quality accepted by the browser/client from _SERVER["HTTP_ACCEPT_CHARSET"] */ - public function getClientCharsets() -> var + public function getClientCharsets() -> array { return this->_getQualityHeader("HTTP_ACCEPT_CHARSET", "charset"); } diff --git a/phalcon/http/request/file.zep b/phalcon/http/request/file.zep index 5fd56e36f4f..75199021b62 100644 --- a/phalcon/http/request/file.zep +++ b/phalcon/http/request/file.zep @@ -162,7 +162,7 @@ class File implements FileInterface /** * Checks whether the file has been uploaded via Post. */ - public function isUploadedFile() -> boolean + public function isUploadedFile() -> bool { var tmp; @@ -173,7 +173,7 @@ class File implements FileInterface /** * Moves the temporary file to a destination within the application */ - public function moveTo(string! destination) -> boolean + public function moveTo(string! destination) -> bool { return move_uploaded_file(this->_tmp, destination); } diff --git a/phalcon/http/request/fileinterface.zep b/phalcon/http/request/fileinterface.zep index 82d79934344..844e280c407 100644 --- a/phalcon/http/request/fileinterface.zep +++ b/phalcon/http/request/fileinterface.zep @@ -56,6 +56,6 @@ interface FileInterface /** * Move the temporary file to a destination */ - public function moveTo(string! destination) -> boolean; + public function moveTo(string! destination) -> bool; } diff --git a/phalcon/http/requestinterface.zep b/phalcon/http/requestinterface.zep index c0e43a5f33e..60758e01f94 100644 --- a/phalcon/http/requestinterface.zep +++ b/phalcon/http/requestinterface.zep @@ -19,6 +19,8 @@ namespace Phalcon\Http; +use Phalcon\Http\Request\FileInterface; + /** * Phalcon\Http\RequestInterface * @@ -61,27 +63,27 @@ interface RequestInterface /** * Checks whether $_REQUEST superglobal has certain index */ - public function has(string! name) -> boolean; + public function has(string! name) -> bool; /** * Checks whether $_POST superglobal has certain index */ - public function hasPost(string! name) -> boolean; + public function hasPost(string! name) -> bool; /** * Checks whether the PUT data has certain index */ - public function hasPut(string! name) -> boolean; + public function hasPut(string! name) -> bool; /** * Checks whether $_GET superglobal has certain index */ - public function hasQuery(string! name) -> boolean; + public function hasQuery(string! name) -> bool; /** * Checks whether $_SERVER superglobal has certain index */ - public function hasServer(string! name) -> boolean; + public function hasServer(string! name) -> bool; /** * Gets HTTP header from request data @@ -96,17 +98,17 @@ interface RequestInterface /** * Checks whether request has been made using ajax. Checks if $_SERVER["HTTP_X_REQUESTED_WITH"] === "XMLHttpRequest" */ - public function isAjax() -> boolean; + public function isAjax() -> bool; /** * Checks whether request has been made using SOAP */ - public function isSoap() -> boolean; + public function isSoap() -> bool; /** * Checks whether request has been made using any secure layer */ - public function isSecure() -> boolean; + public function isSecure() -> bool; /** * Gets HTTP raw request body @@ -137,7 +139,7 @@ interface RequestInterface * Gets most possibly client IPv4 Address. This methods searches in * $_SERVER["REMOTE_ADDR"] and optionally in $_SERVER["HTTP_X_FORWARDED_FOR"] */ - public function getClientAddress(boolean trustForwardedHeader = false) -> string; + public function getClientAddress(bool trustForwardedHeader = false) -> string | bool; /** * Gets HTTP method which request has been made @@ -154,64 +156,63 @@ interface RequestInterface * * @param string|array methods */ - public function isMethod(methods, boolean strict = false) -> boolean; + public function isMethod(methods, bool strict = false) -> bool; /** * Checks whether HTTP method is POST. if $_SERVER["REQUEST_METHOD"] === "POST" */ - public function isPost() -> boolean; + public function isPost() -> bool; /** * Checks whether HTTP method is GET. if $_SERVER["REQUEST_METHOD"] === "GET" */ - public function isGet() -> boolean; + public function isGet() -> bool; /** * Checks whether HTTP method is PUT. if $_SERVER["REQUEST_METHOD"] === "PUT" */ - public function isPut() -> boolean; + public function isPut() -> bool; /** * Checks whether HTTP method is HEAD. if $_SERVER["REQUEST_METHOD"] === "HEAD" */ - public function isHead() -> boolean; + public function isHead() -> bool; /** * Checks whether HTTP method is DELETE. if $_SERVER["REQUEST_METHOD"] === "DELETE" */ - public function isDelete() -> boolean; + public function isDelete() -> bool; /** * Checks whether HTTP method is OPTIONS. if $_SERVER["REQUEST_METHOD"] === "OPTIONS" */ - public function isOptions() -> boolean; + public function isOptions() -> bool; /** * Checks whether HTTP method is PURGE (Squid and Varnish support). if $_SERVER["REQUEST_METHOD"] === "PURGE" */ - public function isPurge() -> boolean; + public function isPurge() -> bool; /** * Checks whether HTTP method is TRACE. if $_SERVER["REQUEST_METHOD"] === "TRACE" */ - public function isTrace() -> boolean; + public function isTrace() -> bool; /** * Checks whether HTTP method is CONNECT. if $_SERVER["REQUEST_METHOD"] === "CONNECT" */ - public function isConnect() -> boolean; + public function isConnect() -> bool; /** * Checks whether request include attached files - * - * @return boolean + * TODO: We need to check the name. Not very intuitive */ - public function hasFiles(onlySuccessful = false); + public function hasFiles(bool onlySuccessful = false) -> long; /** * Gets attached files as Phalcon\Http\Request\FileInterface compatible instances */ - public function getUploadedFiles(boolean onlySuccessful = false) -> <\Phalcon\Http\Request\FileInterface[]>; + public function getUploadedFiles(bool onlySuccessful = false) -> <FileInterface[]>; /** * Gets web page that refers active request. ie: http://www.google.com diff --git a/phalcon/http/response.zep b/phalcon/http/response.zep index 98a70870fa8..92360e73648 100644 --- a/phalcon/http/response.zep +++ b/phalcon/http/response.zep @@ -111,7 +111,7 @@ class Response implements ResponseInterface, InjectionAwareInterface * $response->setStatusCode(404, "Not Found"); *</code> */ - public function setStatusCode(int code, string message = null) -> <Response> + public function setStatusCode(int code, string message = null) -> <ResponseInterface> { var headers, currentHeadersRaw, key, statusCodes, defaultMessage; @@ -256,7 +256,7 @@ class Response implements ResponseInterface, InjectionAwareInterface /** * Sets a headers bag for the response externally */ - public function setHeaders(<HeadersInterface> headers) -> <Response> + public function setHeaders(<HeadersInterface> headers) -> <ResponseInterface> { let this->_headers = headers; return this; @@ -273,7 +273,7 @@ class Response implements ResponseInterface, InjectionAwareInterface /** * Sets a cookies bag for the response externally */ - public function setCookies(<CookiesInterface> cookies) -> <Response> + public function setCookies(<CookiesInterface> cookies) -> <ResponseInterface> { let this->_cookies = cookies; return this; @@ -294,7 +294,7 @@ class Response implements ResponseInterface, InjectionAwareInterface * $response->hasHeader("Content-Type"); *</code> */ - public function hasHeader(string name) -> boolean + public function hasHeader(string name) -> bool { var headers; let headers = this->getHeaders(); @@ -309,7 +309,7 @@ class Response implements ResponseInterface, InjectionAwareInterface * $response->setHeader("Content-Type", "text/plain"); *</code> */ - public function setHeader(string name, value) -> <Response> + public function setHeader(string name, value) -> <ResponseInterface> { var headers; let headers = this->getHeaders(); @@ -324,7 +324,7 @@ class Response implements ResponseInterface, InjectionAwareInterface * $response->setRawHeader("HTTP/1.1 404 Not Found"); *</code> */ - public function setRawHeader(string header) -> <Response> + public function setRawHeader(string header) -> <ResponseInterface> { var headers; let headers = this->getHeaders(); @@ -335,7 +335,7 @@ class Response implements ResponseInterface, InjectionAwareInterface /** * Resets all the established headers */ - public function resetHeaders() -> <Response> + public function resetHeaders() -> <ResponseInterface> { var headers; let headers = this->getHeaders(); @@ -352,7 +352,7 @@ class Response implements ResponseInterface, InjectionAwareInterface * ); *</code> */ - public function setExpires(<\DateTime> datetime) -> <Response> + public function setExpires(<\DateTime> datetime) -> <ResponseInterface> { var date; @@ -380,7 +380,7 @@ class Response implements ResponseInterface, InjectionAwareInterface * ); *</code> */ - public function setLastModified(<\DateTime> datetime) -> <Response> + public function setLastModified(<\DateTime> datetime) -> <ResponseInterface> { var date; @@ -406,7 +406,7 @@ class Response implements ResponseInterface, InjectionAwareInterface * $this->response->setCache(60); *</code> */ - public function setCache(int! minutes) -> <Response> + public function setCache(int! minutes) -> <ResponseInterface> { var date; @@ -422,7 +422,7 @@ class Response implements ResponseInterface, InjectionAwareInterface /** * Sends a Not-Modified response */ - public function setNotModified() -> <Response> + public function setNotModified() -> <ResponseInterface> { this->setStatusCode(304, "Not modified"); return this; @@ -436,7 +436,7 @@ class Response implements ResponseInterface, InjectionAwareInterface * $response->setContentType("text/plain", "UTF-8"); *</code> */ - public function setContentType(string contentType, charset = null) -> <Response> + public function setContentType(string contentType, charset = null) -> <ResponseInterface> { if charset === null { this->setHeader("Content-Type", contentType); @@ -454,7 +454,7 @@ class Response implements ResponseInterface, InjectionAwareInterface * $response->setContentLength(2048); *</code> */ - public function setContentLength(int contentLength) -> <Response> + public function setContentLength(int contentLength) -> <ResponseInterface> { this->setHeader("Content-Length", contentLength); @@ -468,7 +468,7 @@ class Response implements ResponseInterface, InjectionAwareInterface * $response->setEtag(md5(time())); *</code> */ - public function setEtag(string etag) -> <Response> + public function setEtag(string etag) -> <ResponseInterface> { this->setHeader("Etag", etag); @@ -494,7 +494,7 @@ class Response implements ResponseInterface, InjectionAwareInterface * ); *</code> */ - public function redirect(location = null, boolean externalRedirect = false, int statusCode = 302) -> <Response> + public function redirect(location = null, bool externalRedirect = false, int statusCode = 302) -> <ResponseInterface> { var header, url, dependencyInjector, matched, view; @@ -555,7 +555,7 @@ class Response implements ResponseInterface, InjectionAwareInterface * $response->setContent("<h1>Hello!</h1>"); *</code> */ - public function setContent(string content) -> <Response> + public function setContent(string content) -> <ResponseInterface> { let this->_content = content; return this; @@ -573,7 +573,7 @@ class Response implements ResponseInterface, InjectionAwareInterface * ); *</code> */ - public function setJsonContent(var content, int jsonOptions = 0, int depth = 512) -> <Response> + public function setJsonContent(var content, int jsonOptions = 0, int depth = 512) -> <ResponseInterface> { this->setContentType("application/json", "UTF-8"); this->setContent(json_encode(content, jsonOptions, depth)); @@ -583,7 +583,7 @@ class Response implements ResponseInterface, InjectionAwareInterface /** * Appends a string to the HTTP response body */ - public function appendContent(content) -> <Response> + public function appendContent(content) -> <ResponseInterface> { let this->_content = this->getContent() . content; return this; @@ -600,7 +600,7 @@ class Response implements ResponseInterface, InjectionAwareInterface /** * Check if the response is already sent */ - public function isSent() -> boolean + public function isSent() -> bool { return this->_sent; } @@ -608,7 +608,7 @@ class Response implements ResponseInterface, InjectionAwareInterface /** * Sends headers to the client */ - public function sendHeaders() -> <Response> + public function sendHeaders() -> <ResponseInterface> { this->_headers->send(); @@ -618,7 +618,7 @@ class Response implements ResponseInterface, InjectionAwareInterface /** * Sends cookies to the client */ - public function sendCookies() -> <Response> + public function sendCookies() -> <ResponseInterface> { var cookies; let cookies = this->_cookies; @@ -631,7 +631,7 @@ class Response implements ResponseInterface, InjectionAwareInterface /** * Prints out HTTP response to the client */ - public function send() -> <Response> + public function send() -> <ResponseInterface> { var content, file; @@ -664,7 +664,7 @@ class Response implements ResponseInterface, InjectionAwareInterface /** * Sets an attached file to be sent at the end of the request */ - public function setFileToSend(string filePath, attachmentName = null, attachment = true) -> <Response> + public function setFileToSend(string filePath, attachmentName = null, attachment = true) -> <ResponseInterface> { var basePath; @@ -693,7 +693,7 @@ class Response implements ResponseInterface, InjectionAwareInterface * $response->removeHeader("Expires"); *</code> */ - public function removeHeader(string name) -> <Response> + public function removeHeader(string name) -> <ResponseInterface> { var headers; let headers = this->getHeaders(); diff --git a/phalcon/http/response/cookies.zep b/phalcon/http/response/cookies.zep index 016a29cbcd5..38479f734d2 100644 --- a/phalcon/http/response/cookies.zep +++ b/phalcon/http/response/cookies.zep @@ -133,7 +133,7 @@ class Cookies implements CookiesInterface, InjectionAwareInterface /** * Set if cookies in the bag must be automatically encrypted/decrypted */ - public function useEncryption(boolean useEncryption) -> <Cookies> + public function useEncryption(bool useEncryption) -> <CookiesInterface> { let this->_useEncryption = useEncryption; return this; @@ -142,7 +142,7 @@ class Cookies implements CookiesInterface, InjectionAwareInterface /** * Returns if the bag is automatically encrypting/decrypting cookies */ - public function isUsingEncryption() -> boolean + public function isUsingEncryption() -> bool { return this->_useEncryption; } @@ -171,10 +171,10 @@ class Cookies implements CookiesInterface, InjectionAwareInterface value = null, int expire = 0, string path = "/", - boolean secure = null, + bool secure = null, string! domain = null, - boolean httpOnly = null - ) -> <Cookies> { + bool httpOnly = null + ) -> <CookiesInterface> { var cookie, encryption, dependencyInjector, response; let encryption = this->_useEncryption; @@ -294,7 +294,7 @@ class Cookies implements CookiesInterface, InjectionAwareInterface /** * Check if a cookie is defined in the bag or exists in the _COOKIE superglobal */ - public function has(string! name) -> boolean + public function has(string! name) -> bool { /** * Check the internal bag @@ -317,7 +317,7 @@ class Cookies implements CookiesInterface, InjectionAwareInterface * Deletes a cookie by its name * This method does not removes cookies from the _COOKIE superglobal */ - public function delete(string! name) -> boolean + public function delete(string! name) -> bool { var cookie; @@ -336,7 +336,7 @@ class Cookies implements CookiesInterface, InjectionAwareInterface * Sends the cookies to the client * Cookies aren't sent if headers are sent in the current request */ - public function send() -> boolean + public function send() -> bool { var cookie; @@ -354,7 +354,7 @@ class Cookies implements CookiesInterface, InjectionAwareInterface /** * Reset set cookies */ - public function reset() -> <Cookies> + public function reset() -> <CookiesInterface> { let this->_cookies = []; return this; diff --git a/phalcon/http/response/cookiesinterface.zep b/phalcon/http/response/cookiesinterface.zep index 439f2c3a7ef..4f39bfa47f1 100644 --- a/phalcon/http/response/cookiesinterface.zep +++ b/phalcon/http/response/cookiesinterface.zep @@ -19,6 +19,8 @@ namespace Phalcon\Http\Response; +use Phalcon\Http\CookieInterface; + /** * Phalcon\Http\Response\CookiesInterface * @@ -30,38 +32,38 @@ interface CookiesInterface /** * Set if cookies in the bag must be automatically encrypted/decrypted */ - public function useEncryption(boolean useEncryption) -> <CookiesInterface>; + public function useEncryption(bool useEncryption) -> <CookiesInterface>; /** * Returns if the bag is automatically encrypting/decrypting cookies */ - public function isUsingEncryption() -> boolean; + public function isUsingEncryption() -> bool; /** * Sets a cookie to be sent at the end of the request */ - public function set(string! name, value = null, int expire = 0, string path = "/", boolean secure = null, string! domain = null, boolean httpOnly = null) -> <CookiesInterface>; + public function set(string! name, value = null, int expire = 0, string path = "/", bool secure = null, string! domain = null, bool httpOnly = null) -> <CookiesInterface>; /** * Gets a cookie from the bag */ - public function get(string! name) -> <\Phalcon\Http\Cookie>; + public function get(string! name) -> <CookieInterface>; /** * Check if a cookie is defined in the bag or exists in the _COOKIE superglobal */ - public function has(string! name) -> boolean; + public function has(string! name) -> bool; /** * Deletes a cookie by its name * This method does not removes cookies from the _COOKIE superglobal */ - public function delete(string! name) -> boolean; + public function delete(string! name) -> bool; /** * Sends the cookies to the client */ - public function send() -> boolean; + public function send() -> bool; /** * Reset set cookies diff --git a/phalcon/http/response/headers.zep b/phalcon/http/response/headers.zep index 8594bfd9ffc..7948613e052 100644 --- a/phalcon/http/response/headers.zep +++ b/phalcon/http/response/headers.zep @@ -33,7 +33,7 @@ class Headers implements HeadersInterface /** * Sets a header to be sent at the end of the request */ - public function has(string name) -> boolean + public function has(string name) -> bool { return isset(this->_headers[name]); } @@ -49,7 +49,7 @@ class Headers implements HeadersInterface /** * Gets a header value from the internal bag */ - public function get(string name) -> string | boolean + public function get(string name) -> string | bool { var headers, headerValue; let headers = this->_headers; @@ -84,7 +84,7 @@ class Headers implements HeadersInterface /** * Sends the headers to the client */ - public function send() -> boolean + public function send() -> bool { var header, value; if !headers_sent() { @@ -123,7 +123,7 @@ class Headers implements HeadersInterface /** * Restore a \Phalcon\Http\Response\Headers object */ - public static function __set_state(array! data) -> <Headers> + public static function __set_state(array! data) -> <HeadersInterface> { var headers, key, value, dataHeaders; let headers = new self(); diff --git a/phalcon/http/response/headersinterface.zep b/phalcon/http/response/headersinterface.zep index b93e6de7382..bcd6d78e3f3 100644 --- a/phalcon/http/response/headersinterface.zep +++ b/phalcon/http/response/headersinterface.zep @@ -30,7 +30,7 @@ interface HeadersInterface /** * Returns true if the header is set, false otherwise */ - public function has(string name) -> boolean; + public function has(string name) -> bool; /** * Sets a header to be sent at the end of the request @@ -40,7 +40,7 @@ interface HeadersInterface /** * Gets a header value from the internal bag */ - public function get(string name) -> string | boolean; + public function get(string name) -> string | bool; /** * Sets a raw header to be sent at the end of the request @@ -50,7 +50,7 @@ interface HeadersInterface /** * Sends the headers to the client */ - public function send() -> boolean; + public function send() -> bool; /** * Reset set headers diff --git a/phalcon/http/responseinterface.zep b/phalcon/http/responseinterface.zep index 23e0f463f26..3b6f2cbcc21 100644 --- a/phalcon/http/responseinterface.zep +++ b/phalcon/http/responseinterface.zep @@ -43,7 +43,7 @@ interface ResponseInterface /** * Checks if a header exists */ - public function hasHeader(string name) -> boolean; + public function hasHeader(string name) -> bool; /** * Overwrites a header in the response @@ -85,7 +85,7 @@ interface ResponseInterface /** * Redirect by HTTP to another action or URL */ - public function redirect(location = null, boolean externalRedirect = false, int statusCode = 302) -> <ResponseInterface>; + public function redirect(location = null, bool externalRedirect = false, int statusCode = 302) -> <ResponseInterface>; /** * Sets HTTP response body @@ -134,5 +134,4 @@ interface ResponseInterface * Sets an attached file to be sent at the end of the request */ public function setFileToSend(string filePath, attachmentName = null) -> <ResponseInterface>; - } diff --git a/phalcon/image/adapter.zep b/phalcon/image/adapter.zep index 3d0f73cdef6..a1f87bc1148 100644 --- a/phalcon/image/adapter.zep +++ b/phalcon/image/adapter.zep @@ -257,7 +257,7 @@ abstract class Adapter implements AdapterInterface /** * Add a reflection to an image */ - public function reflection(int height, int opacity = 100, boolean fadeIn = false) -> <Adapter> + public function reflection(int height, int opacity = 100, bool fadeIn = false) -> <Adapter> { if height <= 0 || height > this->_height { let height = (int) this->_height; diff --git a/phalcon/image/adapter/gd.zep b/phalcon/image/adapter/gd.zep index c8866e91804..7dd0a72d404 100644 --- a/phalcon/image/adapter/gd.zep +++ b/phalcon/image/adapter/gd.zep @@ -26,7 +26,7 @@ class Gd extends Adapter { protected static _checked = false; - public static function check() -> boolean + public static function check() -> bool { var version, info, matches; @@ -264,7 +264,7 @@ class Gd extends Adapter } } - protected function _reflection(int height, int opacity, boolean fadeIn) + protected function _reflection(int height, int opacity, bool fadeIn) { var reflection, line; int stepping, offset, src_y, dst_y, dst_opacity; diff --git a/phalcon/image/adapter/imagick.zep b/phalcon/image/adapter/imagick.zep index b0a52f59c1e..939824dc8e7 100644 --- a/phalcon/image/adapter/imagick.zep +++ b/phalcon/image/adapter/imagick.zep @@ -45,7 +45,7 @@ class Imagick extends Adapter /** * Checks if Imagick is enabled */ - public static function check() -> boolean + public static function check() -> bool { if self::_checked { return true; @@ -256,7 +256,7 @@ class Imagick extends Adapter /** * Execute a reflection. */ - protected function _reflection(int height, int opacity, boolean fadeIn) + protected function _reflection(int height, int opacity, bool fadeIn) { var reflection, fade, pseudo, image, pixel, ret; @@ -415,8 +415,8 @@ class Imagick extends Adapter let gravity = null; - if typeof offsetX == "bool" { - if typeof offsetY == "bool" { + if typeof offsetX == "boolean" { + if typeof offsetY == "boolean" { let offsetX = 0, offsetY = 0; if offsetX && offsetY { @@ -460,7 +460,7 @@ class Imagick extends Adapter if typeof offsetX == "int" { let x = (int) offsetX; if offsetX { - if typeof offsetY == "bool" { + if typeof offsetY == "boolean" { if offsetY { if x < 0 { let offsetX = x * -1, diff --git a/phalcon/image/adapterinterface.zep b/phalcon/image/adapterinterface.zep index d73744b394d..1701cb122ec 100644 --- a/phalcon/image/adapterinterface.zep +++ b/phalcon/image/adapterinterface.zep @@ -27,7 +27,7 @@ interface AdapterInterface public function rotate(int degrees); public function flip(int direction); public function sharpen(int amount); - public function reflection(int height, int opacity = 100, boolean fadeIn = false); + public function reflection(int height, int opacity = 100, bool fadeIn = false); public function watermark(<Adapter> watermark, int offsetX = 0, int offsetY = 0, int opacity = 100); public function text(string text, int offsetX = 0, int offsetY = 0, int opacity = 100, string color = "000000", int size = 12, string fontfile = null); public function mask(<Adapter> watermark); diff --git a/phalcon/image/factory.zep b/phalcon/image/factory.zep index 56f40770072..883b6959f57 100644 --- a/phalcon/image/factory.zep +++ b/phalcon/image/factory.zep @@ -44,7 +44,7 @@ class Factory extends BaseFactory /** * @param \Phalcon\Config|array config */ - public static function load(var config) -> <AdapterInterface> + public static function load(var config) -> object { return self::loadClass("Phalcon\\Image\\Adapter", config); } diff --git a/phalcon/loader.zep b/phalcon/loader.zep index e447e524c91..77e01af210e 100644 --- a/phalcon/loader.zep +++ b/phalcon/loader.zep @@ -139,7 +139,7 @@ class Loader implements EventsAwareInterface /** * Register namespaces and their related directories */ - public function registerNamespaces(array! namespaces, boolean merge = false) -> <Loader> + public function registerNamespaces(array! namespaces, bool merge = false) -> <Loader> { var preparedNamespaces, name, paths; @@ -189,7 +189,7 @@ class Loader implements EventsAwareInterface /** * Register directories in which "not found" classes could be found */ - public function registerDirs(array! directories, boolean merge = false) -> <Loader> + public function registerDirs(array! directories, bool merge = false) -> <Loader> { if merge { let this->_directories = array_merge(this->_directories, directories); @@ -212,7 +212,7 @@ class Loader implements EventsAwareInterface * Registers files that are "non-classes" hence need a "require". This is very useful for including files that only * have functions */ - public function registerFiles(array! files, boolean merge = false) -> <Loader> + public function registerFiles(array! files, bool merge = false) -> <Loader> { if merge { let this->_files = array_merge(this->_files, files); @@ -234,7 +234,7 @@ class Loader implements EventsAwareInterface /** * Register classes and their locations */ - public function registerClasses(array! classes, boolean merge = false) -> <Loader> + public function registerClasses(array! classes, bool merge = false) -> <Loader> { if merge { let this->_classes = array_merge(this->_classes, classes); @@ -256,7 +256,7 @@ class Loader implements EventsAwareInterface /** * Register the autoload method */ - public function register(boolean prepend = false) -> <Loader> + public function register(bool prepend = false) -> <Loader> { if this->_registered === false { /** @@ -325,7 +325,7 @@ class Loader implements EventsAwareInterface /** * Autoloads the registered classes */ - public function autoLoad(string! className) -> boolean + public function autoLoad(string! className) -> bool { var eventsManager, classes, extensions, filePath, ds, fixedDirectory, directories, ns, namespaces, nsPrefix, diff --git a/phalcon/logger/adapter.zep b/phalcon/logger/adapter.zep index 96e71fb8608..0933ce7e5bb 100644 --- a/phalcon/logger/adapter.zep +++ b/phalcon/logger/adapter.zep @@ -36,7 +36,7 @@ abstract class Adapter implements AdapterInterface /** * Tells if there is an active transaction or not * - * @var boolean + * @var bool */ protected _transaction = false; @@ -50,7 +50,7 @@ abstract class Adapter implements AdapterInterface /** * Formatter * - * @var object + * @var \Phalcon\Logger\FormatterInterface */ protected _formatter; @@ -148,7 +148,7 @@ abstract class Adapter implements AdapterInterface /** * Returns the whether the logger is currently in an active transaction or not */ - public function isTransaction() -> boolean + public function isTransaction() -> bool { return this->_transaction; } diff --git a/phalcon/logger/adapter/blackhole.zep b/phalcon/logger/adapter/blackhole.zep index 3f7f6c78e01..a0355913ccd 100644 --- a/phalcon/logger/adapter/blackhole.zep +++ b/phalcon/logger/adapter/blackhole.zep @@ -52,7 +52,7 @@ class Blackhole extends Adapter /** * Closes the logger */ - public function close() -> boolean + public function close() -> bool { } } diff --git a/phalcon/logger/adapter/file.zep b/phalcon/logger/adapter/file.zep index 13582300333..39802f07d60 100644 --- a/phalcon/logger/adapter/file.zep +++ b/phalcon/logger/adapter/file.zep @@ -121,7 +121,7 @@ class File extends Adapter /** * Closes the logger */ - public function close() -> boolean + public function close() -> bool { return fclose(this->_fileHandler); } diff --git a/phalcon/logger/adapter/firephp.zep b/phalcon/logger/adapter/firephp.zep index 47b19fa4984..3da88a09b81 100644 --- a/phalcon/logger/adapter/firephp.zep +++ b/phalcon/logger/adapter/firephp.zep @@ -97,7 +97,7 @@ class Firephp extends Adapter /** * Closes the logger */ - public function close() -> boolean + public function close() -> bool { return true; } diff --git a/phalcon/logger/adapter/stream.zep b/phalcon/logger/adapter/stream.zep index 6ac0e44d603..1c915265834 100644 --- a/phalcon/logger/adapter/stream.zep +++ b/phalcon/logger/adapter/stream.zep @@ -106,7 +106,7 @@ class Stream extends Adapter /** * Closes the logger */ - public function close() -> boolean + public function close() -> bool { return fclose(this->_stream); } diff --git a/phalcon/logger/adapter/syslog.zep b/phalcon/logger/adapter/syslog.zep index 1b290b2646e..e672d7874ad 100644 --- a/phalcon/logger/adapter/syslog.zep +++ b/phalcon/logger/adapter/syslog.zep @@ -21,6 +21,7 @@ namespace Phalcon\Logger\Adapter; use Phalcon\Logger\Exception; use Phalcon\Logger\Adapter; +use Phalcon\Logger\FormatterInterface; use Phalcon\Logger\Formatter\Syslog as SyslogFormatter; /** @@ -77,7 +78,7 @@ class Syslog extends Adapter /** * Returns the internal formatter */ - public function getFormatter() -> <SyslogFormatter> + public function getFormatter() -> <FormatterInterface> { if typeof this->_formatter !== "object" { let this->_formatter = new SyslogFormatter(); @@ -104,7 +105,7 @@ class Syslog extends Adapter /** * Closes the logger */ - public function close() -> boolean + public function close() -> bool { if !this->_opened { return true; diff --git a/phalcon/logger/adapterinterface.zep b/phalcon/logger/adapterinterface.zep index 5e5e40e21c3..7541d6847f5 100644 --- a/phalcon/logger/adapterinterface.zep +++ b/phalcon/logger/adapterinterface.zep @@ -70,7 +70,7 @@ interface AdapterInterface /** * Closes the logger */ - public function close() -> boolean; + public function close() -> bool; /** * Sends/Writes a debug message to the log diff --git a/phalcon/logger/factory.zep b/phalcon/logger/factory.zep index 0dda4a87545..cd1d577ed95 100644 --- a/phalcon/logger/factory.zep +++ b/phalcon/logger/factory.zep @@ -42,7 +42,7 @@ class Factory extends BaseFactory /** * @param \Phalcon\Config|array config */ - public static function load(var config) -> <AdapterInterface> + public static function load(var config) -> object { return self::loadClass("Phalcon\\Logger\\Adapter", config); } diff --git a/phalcon/logger/formatter/firephp.zep b/phalcon/logger/formatter/firephp.zep index f883939c3ad..1a21c022a78 100644 --- a/phalcon/logger/formatter/firephp.zep +++ b/phalcon/logger/formatter/firephp.zep @@ -68,7 +68,7 @@ class Firephp extends Formatter /** * Returns the string meaning of a logger constant */ - public function setShowBacktrace(boolean isShow = null) -> <Firephp> + public function setShowBacktrace(bool isShow = null) -> <Firephp> { let this->_showBacktrace = isShow; return this; @@ -77,7 +77,7 @@ class Firephp extends Formatter /** * Returns the string meaning of a logger constant */ - public function getShowBacktrace() -> boolean + public function getShowBacktrace() -> bool { return this->_showBacktrace; } @@ -85,7 +85,7 @@ class Firephp extends Formatter /** * Returns the string meaning of a logger constant */ - public function enableLabels(boolean isEnable = null) -> <Firephp> + public function enableLabels(bool isEnable = null) -> <Firephp> { let this->_enableLabels = isEnable; return this; @@ -94,7 +94,7 @@ class Firephp extends Formatter /** * Returns the labels enabled */ - public function labelsEnabled() -> boolean + public function labelsEnabled() -> bool { return this->_enableLabels; } diff --git a/phalcon/logger/formatterinterface.zep b/phalcon/logger/formatterinterface.zep index 0d14a348cf3..1a3ff8d0d4a 100644 --- a/phalcon/logger/formatterinterface.zep +++ b/phalcon/logger/formatterinterface.zep @@ -35,5 +35,5 @@ interface FormatterInterface * @param int timestamp * @param array $context */ - public function format(string message, int type, int timestamp, var context = null) -> string|array; + public function format(string message, int type, int timestamp, var context = null) -> string | array; } diff --git a/phalcon/messages/message.zep b/phalcon/messages/message.zep index e7eaa708440..a98ec9a4f99 100644 --- a/phalcon/messages/message.zep +++ b/phalcon/messages/message.zep @@ -97,7 +97,7 @@ class Message implements MessageInterface, \JsonSerializable /** * Sets code for the message */ - public function setCode(int code) -> <Message> + public function setCode(int code) -> <MessageInterface> { let this->_code = code; return this; @@ -106,7 +106,7 @@ class Message implements MessageInterface, \JsonSerializable /** * Sets field name related to message */ - public function setField(var field) -> <Message> + public function setField(var field) -> <MessageInterface> { let this->_field = field; return this; @@ -115,7 +115,7 @@ class Message implements MessageInterface, \JsonSerializable /** * Sets verbose message */ - public function setMessage(string! message) -> <Message> + public function setMessage(string! message) -> <MessageInterface> { let this->_message = message; return this; @@ -124,7 +124,7 @@ class Message implements MessageInterface, \JsonSerializable /** * Sets message type */ - public function setType(string! type) -> <Message> + public function setType(string! type) -> <MessageInterface> { let this->_type = type; return this; @@ -141,7 +141,7 @@ class Message implements MessageInterface, \JsonSerializable /** * Magic __set_state helps to re-build messages variable exporting */ - public static function __set_state(array! message) -> <Message> + public static function __set_state(array! message) -> <MessageInterface> { return new self(message["_message"], message["_field"], message["_type"], message["_code"]); } diff --git a/phalcon/messages/messageinterface.zep b/phalcon/messages/messageinterface.zep index e41710c7192..666e56aeb40 100644 --- a/phalcon/messages/messageinterface.zep +++ b/phalcon/messages/messageinterface.zep @@ -54,22 +54,22 @@ interface MessageInterface /** * Sets code for the message */ - public function setCode(int code) -> <Message>; + public function setCode(int code) -> <MessageInterface>; /** * Sets field name related to message */ - public function setField(string! field) -> <Message>; + public function setField(string! field) -> <MessageInterface>; /** * Sets verbose message */ - public function setMessage(string! message) -> <Message>; + public function setMessage(string! message) -> <MessageInterface>; /** * Sets message type */ - public function setType(string! type) -> <Message>; + public function setType(string! type) -> <MessageInterface>; /** * Magic __toString method returns verbose message diff --git a/phalcon/messages/messages.zep b/phalcon/messages/messages.zep index 2bdf88e4f49..84b622962e1 100644 --- a/phalcon/messages/messages.zep +++ b/phalcon/messages/messages.zep @@ -114,7 +114,7 @@ class Messages implements \Countable, \ArrayAccess, \Iterator, \JsonSerializable /** * Returns the current message in the iterator */ - public function current() -> <Message> + public function current() -> <MessageInterface> { return this->_messages[this->_position]; } @@ -201,7 +201,7 @@ class Messages implements \Countable, \ArrayAccess, \Iterator, \JsonSerializable * * @param int index */ - public function offsetExists(string index) -> boolean + public function offsetExists(var index) -> boolean { return isset this->_messages[index]; } @@ -215,13 +215,15 @@ class Messages implements \Countable, \ArrayAccess, \Iterator, \JsonSerializable * ); *</code> */ - public function offsetGet(int! index) -> <Message> | boolean + public function offsetGet(var index) -> var { - var message; + var message, returnValue = null; + if fetch message, this->_messages[index] { - return message; + let returnValue = message; } - return false; + + return returnValue; } /** @@ -233,7 +235,7 @@ class Messages implements \Countable, \ArrayAccess, \Iterator, \JsonSerializable * * @param \Phalcon\Messages\Message message */ - public function offsetSet(int! index, var message) + public function offsetSet(var index, var message) -> void { if typeof message != "object" { throw new Exception("The message must be an object"); @@ -248,7 +250,7 @@ class Messages implements \Countable, \ArrayAccess, \Iterator, \JsonSerializable * unset($message["database"]); *</code> */ - public function offsetUnset(index) + public function offsetUnset(var index) -> void { if isset this->_messages[index] { array_splice(this->_messages, index, 1); diff --git a/phalcon/mvc/application.zep b/phalcon/mvc/application.zep index f3cbd76e5a0..d43d3f17e99 100644 --- a/phalcon/mvc/application.zep +++ b/phalcon/mvc/application.zep @@ -87,7 +87,7 @@ class Application extends BaseApplication /** * Enables or disables sending headers by each request handling */ - public function sendHeadersOnHandleRequest(boolean sendHeaders) -> <Application> + public function sendHeadersOnHandleRequest(bool sendHeaders) -> <Application> { let this->_sendHeaders = sendHeaders; return this; @@ -96,7 +96,7 @@ class Application extends BaseApplication /** * Enables or disables sending cookies by each request handling */ - public function sendCookiesOnHandleRequest(boolean sendCookies) -> <Application> + public function sendCookiesOnHandleRequest(bool sendCookies) -> <Application> { let this->_sendCookies = sendCookies; return this; @@ -106,7 +106,7 @@ class Application extends BaseApplication * By default. The view is implicitly buffering all the output * You can full disable the view component using this method */ - public function useImplicitView(boolean implicitView) -> <Application> + public function useImplicitView(bool implicitView) -> <Application> { let this->_implicitView = implicitView; return this; @@ -115,7 +115,7 @@ class Application extends BaseApplication /** * Handles a MVC request */ - public function handle(string! uri) -> <ResponseInterface> | boolean + public function handle(string! uri) -> <ResponseInterface> | bool { var dependencyInjector, eventsManager, router, dispatcher, response, view, module, moduleObject, moduleName, className, path, diff --git a/phalcon/mvc/collection.zep b/phalcon/mvc/collection.zep index f397909d5cc..8b490181a16 100644 --- a/phalcon/mvc/collection.zep +++ b/phalcon/mvc/collection.zep @@ -227,7 +227,7 @@ abstract class Collection implements EntityInterface, CollectionInterface, Injec /** * Sets if a model must use implicit objects ids */ - protected function useImplicitObjectIds(boolean useImplicitObjectIds) + protected function useImplicitObjectIds(bool useImplicitObjectIds) { this->_modelsManager->useImplicitObjectIds(this, useImplicitObjectIds); } @@ -341,7 +341,7 @@ abstract class Collection implements EntityInterface, CollectionInterface, Injec * @param \MongoDb connection * @return array */ - protected static function _getResultset(var params, <CollectionInterface> collection, connection, boolean unique) + protected static function _getResultset(var params, <CollectionInterface> collection, connection, bool unique) { var source, mongoCollection, conditions, base, documentsCursor, fields, skip, limit, sort, document, collections, className; @@ -519,7 +519,7 @@ abstract class Collection implements EntityInterface, CollectionInterface, Injec /** * Executes internal hooks before save a document */ - protected final function _preSave(<DiInterface> dependencyInjector, boolean disableEvents, boolean exists) -> boolean + protected final function _preSave(<DiInterface> dependencyInjector, bool disableEvents, bool exists) -> bool { var eventName; @@ -598,7 +598,7 @@ abstract class Collection implements EntityInterface, CollectionInterface, Injec /** * Executes internal events after save a document */ - protected final function _postSave(boolean disableEvents, boolean success, boolean exists) -> boolean + protected final function _postSave(bool disableEvents, bool success, bool exists) -> bool { var eventName; @@ -657,13 +657,13 @@ abstract class Collection implements EntityInterface, CollectionInterface, Injec * } *</code> */ - protected function validate(<ValidationInterface> validator) -> boolean + protected function validate(<ValidationInterface> validator) -> bool { var messages, message; let messages = validator->validate(null, this); - // Call the validation, if it returns not the boolean + // Call the validation, if it returns not the bool // we append the messages to the current object if typeof messages == "boolean" { return messages; @@ -716,7 +716,7 @@ abstract class Collection implements EntityInterface, CollectionInterface, Injec * } *</code> */ - public function validationHasFailed() -> boolean + public function validationHasFailed() -> bool { return (count(this->_errorMessages) > 0); } @@ -724,7 +724,7 @@ abstract class Collection implements EntityInterface, CollectionInterface, Injec /** * Fires an internal event */ - public function fireEvent(string! eventName) -> boolean + public function fireEvent(string! eventName) -> bool { /** * Check if there is a method with the same name of the event @@ -742,7 +742,7 @@ abstract class Collection implements EntityInterface, CollectionInterface, Injec /** * Fires an internal event that cancels the operation */ - public function fireEventCancel(string! eventName) -> boolean + public function fireEventCancel(string! eventName) -> bool { /** * Check if there is a method with the same name of the event @@ -766,7 +766,7 @@ abstract class Collection implements EntityInterface, CollectionInterface, Injec /** * Cancel the current operation */ - protected function _cancelOperation(boolean disableEvents) -> boolean + protected function _cancelOperation(bool disableEvents) -> bool { var eventName; @@ -786,7 +786,7 @@ abstract class Collection implements EntityInterface, CollectionInterface, Injec * * @param \MongoCollection collection */ - protected function _exists(collection) -> boolean + protected function _exists(collection) -> bool { var id, mongoId, exists; @@ -915,7 +915,7 @@ abstract class Collection implements EntityInterface, CollectionInterface, Injec /** * Creates/Updates a collection based on the values in the attributes */ - public function save() -> boolean + public function save() -> bool { var exists, data, success, status, id, ok, collection; @@ -976,7 +976,7 @@ abstract class Collection implements EntityInterface, CollectionInterface, Injec /** * Creates a collection based on the values in the attributes */ - public function create() -> boolean + public function create() -> bool { var exists, data, success, status, id, ok, collection; @@ -1048,7 +1048,7 @@ abstract class Collection implements EntityInterface, CollectionInterface, Injec * ); * </code> */ - public function createIfNotExist(array! criteria) -> boolean + public function createIfNotExist(array! criteria) -> bool { var exists, data, keys, query, success, status, doc, collection; @@ -1124,7 +1124,7 @@ abstract class Collection implements EntityInterface, CollectionInterface, Injec /** * Creates/Updates a collection based on the values in the attributes */ - public function update() -> boolean + public function update() -> bool { var exists, data, success, status, ok, collection; @@ -1196,7 +1196,7 @@ abstract class Collection implements EntityInterface, CollectionInterface, Injec * } * </code> */ - public static function findById(var id) -> <Collection> | null + public static function findById(var id) -> <CollectionInterface> | null { var className, collection, mongoId; @@ -1449,7 +1449,7 @@ abstract class Collection implements EntityInterface, CollectionInterface, Injec * } * </code> */ - public function delete() -> boolean + public function delete() -> bool { var disableEvents, status, id, connection, source, collection, mongoId, success, ok; @@ -1551,7 +1551,7 @@ abstract class Collection implements EntityInterface, CollectionInterface, Injec /** * Skips the current operation forcing a success state */ - public function skipOperation(boolean skip) + public function skipOperation(bool skip) { let this->_skipped = skip; } @@ -1620,7 +1620,7 @@ abstract class Collection implements EntityInterface, CollectionInterface, Injec /** * Unserializes the object from a serialized string */ - public function unserialize(string! data) + public function unserialize(var data) { var attributes, dependencyInjector, manager, key, value, serializer; diff --git a/phalcon/mvc/collection/behavior.zep b/phalcon/mvc/collection/behavior.zep index a1286364d52..da378812d3f 100644 --- a/phalcon/mvc/collection/behavior.zep +++ b/phalcon/mvc/collection/behavior.zep @@ -41,7 +41,7 @@ abstract class Behavior implements BehaviorInterface /** * Checks whether the behavior must take action on certain event */ - protected function mustTakeAction(string! eventName) -> boolean + protected function mustTakeAction(string! eventName) -> bool { return isset this->_options[eventName]; } diff --git a/phalcon/mvc/collection/document.zep b/phalcon/mvc/collection/document.zep index 9a893203d71..eb2fa74d981 100644 --- a/phalcon/mvc/collection/document.zep +++ b/phalcon/mvc/collection/document.zep @@ -33,7 +33,7 @@ class Document implements EntityInterface, \ArrayAccess /** * Checks whether an offset exists in the document */ - public function offsetExists(string! index) -> boolean + public function offsetExists(var index) -> bool { return isset this->{index}; } @@ -41,7 +41,7 @@ class Document implements EntityInterface, \ArrayAccess /** * Returns the value of a field using the ArrayAccess interfase */ - public function offsetGet(string! index) + public function offsetGet(var index) -> var { var value; if fetch value, this->{index} { @@ -53,7 +53,7 @@ class Document implements EntityInterface, \ArrayAccess /** * Change a value using the ArrayAccess interface */ - public function offsetSet(string! index, value) -> void + public function offsetSet(var index, value) -> void { let this->{index} = value; } @@ -61,7 +61,7 @@ class Document implements EntityInterface, \ArrayAccess /** * Rows cannot be changed. It has only been implemented to meet the definition of the ArrayAccess interface */ - public function offsetUnset(string! index) + public function offsetUnset(var index) -> void { throw new Exception("The index does not exist in the row"); } diff --git a/phalcon/mvc/collection/manager.zep b/phalcon/mvc/collection/manager.zep index df72f75c13c..36890fa8942 100644 --- a/phalcon/mvc/collection/manager.zep +++ b/phalcon/mvc/collection/manager.zep @@ -164,7 +164,7 @@ class Manager implements InjectionAwareInterface, EventsAwareInterface /** * Check whether a model is already initialized */ - public function isInitialized(string! modelName) -> boolean + public function isInitialized(string! modelName) -> bool { return isset this->_initialized[strtolower(modelName)]; } @@ -204,7 +204,7 @@ class Manager implements InjectionAwareInterface, EventsAwareInterface /** * Sets whether a model must use implicit objects ids */ - public function useImplicitObjectIds(<CollectionInterface> model, boolean useImplicitObjectIds) -> void + public function useImplicitObjectIds(<CollectionInterface> model, bool useImplicitObjectIds) -> void { let this->_implicitObjectsIds[get_class(model)] = useImplicitObjectIds; } @@ -212,7 +212,7 @@ class Manager implements InjectionAwareInterface, EventsAwareInterface /** * Checks if a model is using implicit object ids */ - public function isUsingImplicitObjectIds(<CollectionInterface> model) -> boolean + public function isUsingImplicitObjectIds(<CollectionInterface> model) -> bool { var implicit; @@ -320,7 +320,7 @@ class Manager implements InjectionAwareInterface, EventsAwareInterface * This method expects that the endpoint listeners/behaviors returns true * meaning that at least one was implemented */ - public function missingMethod(<CollectionInterface> model, string! eventName, var data) -> boolean + public function missingMethod(<CollectionInterface> model, string! eventName, var data) -> bool { var behaviors, modelsBehaviors, result, eventsManager, behavior; diff --git a/phalcon/mvc/collection/managerinterface.zep b/phalcon/mvc/collection/managerinterface.zep index a00d0d591f5..b7eed6a75a2 100644 --- a/phalcon/mvc/collection/managerinterface.zep +++ b/phalcon/mvc/collection/managerinterface.zep @@ -66,7 +66,7 @@ interface ManagerInterface /** * Check whether a model is already initialized */ - public function isInitialized(string! modelName) -> boolean; + public function isInitialized(string! modelName) -> bool; /** * Get the latest initialized model @@ -81,12 +81,12 @@ interface ManagerInterface /** * Sets if a model must use implicit objects ids */ - public function useImplicitObjectIds(<CollectionInterface> model, boolean useImplicitObjectIds); + public function useImplicitObjectIds(<CollectionInterface> model, bool useImplicitObjectIds); /** * Checks if a model is using implicit object ids */ - public function isUsingImplicitObjectIds(<CollectionInterface> model) -> boolean; + public function isUsingImplicitObjectIds(<CollectionInterface> model) -> bool; /** * Returns the connection related to a model diff --git a/phalcon/mvc/collectioninterface.zep b/phalcon/mvc/collectioninterface.zep index d57549ad6d3..fc672fc4972 100644 --- a/phalcon/mvc/collectioninterface.zep +++ b/phalcon/mvc/collectioninterface.zep @@ -85,18 +85,18 @@ interface CollectionInterface /** * Fires an event, implicitly calls behaviors and listeners in the events manager are notified */ - public function fireEvent(string! eventName) -> boolean; + public function fireEvent(string! eventName) -> bool; /** * Fires an event, implicitly listeners in the events manager are notified - * This method stops if one of the callbacks/listeners returns boolean false + * This method stops if one of the callbacks/listeners returns bool false */ - public function fireEventCancel(string! eventName) -> boolean; + public function fireEventCancel(string! eventName) -> bool; /** * Check whether validation process has generated any messages */ - public function validationHasFailed() -> boolean; + public function validationHasFailed() -> bool; /** * Returns all the validation messages @@ -111,14 +111,14 @@ interface CollectionInterface /** * Creates/Updates a collection based on the values in the attributes */ - public function save() -> boolean; + public function save() -> bool; /** * Find a document by its id * * @param string id */ - public static function findById(id) -> <CollectionInterface>; + public static function findById(var id) -> <CollectionInterface> | null; /** * Allows to query the first record that match the specified conditions @@ -133,10 +133,10 @@ interface CollectionInterface /** * Perform a count over a collection */ - public static function count(array parameters = null) -> array; + public static function count(array parameters = null) -> int; /** * Deletes a model instance. Returning true on success or false otherwise */ - public function delete() -> boolean; + public function delete() -> bool; } diff --git a/phalcon/mvc/micro.zep b/phalcon/mvc/micro.zep index 7890dab357b..8b133b6aaa6 100644 --- a/phalcon/mvc/micro.zep +++ b/phalcon/mvc/micro.zep @@ -483,7 +483,7 @@ class Micro extends Injectable implements \ArrayAccess /** * Sets a service from the DI */ - public function setService(string! serviceName, var definition, boolean shared = false) -> <ServiceInterface> + public function setService(string! serviceName, var definition, bool shared = false) -> <ServiceInterface> { var dependencyInjector; @@ -499,7 +499,7 @@ class Micro extends Injectable implements \ArrayAccess /** * Checks if a service is registered in the DI */ - public function hasService(string! serviceName) -> boolean + public function hasService(string! serviceName) -> bool { var dependencyInjector; @@ -1036,7 +1036,7 @@ class Micro extends Injectable implements \ArrayAccess /** * Check if a service is registered in the internal services container using the array syntax */ - public function offsetExists(string! alias) -> boolean + public function offsetExists(var alias) -> bool { return this->hasService(alias); } @@ -1048,7 +1048,7 @@ class Micro extends Injectable implements \ArrayAccess * $app["request"] = new \Phalcon\Http\Request(); *</code> */ - public function offsetSet(string! alias, var definition) + public function offsetSet(var alias, var definition) -> void { this->setService(alias, definition); } @@ -1064,7 +1064,7 @@ class Micro extends Injectable implements \ArrayAccess * * @return mixed */ - public function offsetGet(string! alias) + public function offsetGet(var alias) -> var { return this->getService(alias); } @@ -1072,9 +1072,17 @@ class Micro extends Injectable implements \ArrayAccess /** * Removes a service from the internal services container using the array syntax */ - public function offsetUnset(string! alias) + public function offsetUnset(var alias) -> void { - return alias; + var dependencyInjector; + + let dependencyInjector = this->_dependencyInjector; + if typeof dependencyInjector != "object" { + let dependencyInjector = new FactoryDefault(); + let this->_dependencyInjector = dependencyInjector; + } + + dependencyInjector->remove(alias); } /** diff --git a/phalcon/mvc/micro/collection.zep b/phalcon/mvc/micro/collection.zep index 36f2390a576..0a4597bcbc3 100644 --- a/phalcon/mvc/micro/collection.zep +++ b/phalcon/mvc/micro/collection.zep @@ -63,7 +63,7 @@ class Collection implements CollectionInterface /** * Sets a prefix for all routes added to the collection */ - public function setPrefix(string! prefix) -> <Collection> + public function setPrefix(string! prefix) -> <CollectionInterface> { let this->_prefix = prefix; return this; @@ -90,7 +90,7 @@ class Collection implements CollectionInterface * * @param callable|string handler */ - public function setHandler(var handler, boolean lazy = false) -> <Collection> + public function setHandler(var handler, bool lazy = false) -> <CollectionInterface> { let this->_handler = handler, this->_lazy = lazy; return this; @@ -99,7 +99,7 @@ class Collection implements CollectionInterface /** * Sets if the main handler must be lazy loaded */ - public function setLazy(boolean! lazy) -> <Collection> + public function setLazy(bool! lazy) -> <CollectionInterface> { let this->_lazy = lazy; return this; @@ -108,7 +108,7 @@ class Collection implements CollectionInterface /** * Returns if the main handler must be lazy loaded */ - public function isLazy() -> boolean + public function isLazy() -> bool { return this->_lazy; } @@ -126,7 +126,7 @@ class Collection implements CollectionInterface * * @param callable|string handler */ - public function map(string! routePattern, var handler, string name = null) -> <Collection> + public function map(string! routePattern, var handler, string name = null) -> <CollectionInterface> { this->_addMap(null, routePattern, handler, name); return this; @@ -142,7 +142,7 @@ class Collection implements CollectionInterface * @param callable handler * @param string|array method */ - public function mapVia(string! routePattern, var handler, var method, string name = null) -> <Collection> + public function mapVia(string! routePattern, var handler, var method, string name = null) -> <CollectionInterface> { this->_addMap(method, routePattern, handler, name); @@ -154,7 +154,7 @@ class Collection implements CollectionInterface * * @param callable|string handler */ - public function get(string! routePattern, var handler, string name = null) -> <Collection> + public function get(string! routePattern, var handler, string name = null) -> <CollectionInterface> { this->_addMap("GET", routePattern, handler, name); return this; @@ -165,7 +165,7 @@ class Collection implements CollectionInterface * * @param callable|string handler */ - public function post(string! routePattern, var handler, string name = null) -> <Collection> + public function post(string! routePattern, var handler, string name = null) -> <CollectionInterface> { this->_addMap("POST", routePattern, handler, name); return this; @@ -176,7 +176,7 @@ class Collection implements CollectionInterface * * @param callable|string handler */ - public function put(string! routePattern, var handler, string name = null) -> <Collection> + public function put(string! routePattern, var handler, string name = null) -> <CollectionInterface> { this->_addMap("PUT", routePattern, handler, name); return this; @@ -187,7 +187,7 @@ class Collection implements CollectionInterface * * @param callable|string handler */ - public function patch(string! routePattern, var handler, string name = null) -> <Collection> + public function patch(string! routePattern, var handler, string name = null) -> <CollectionInterface> { this->_addMap("PATCH", routePattern, handler, name); return this; @@ -198,7 +198,7 @@ class Collection implements CollectionInterface * * @param callable|string handler */ - public function head(string! routePattern, var handler, string name = null) -> <Collection> + public function head(string! routePattern, var handler, string name = null) -> <CollectionInterface> { this->_addMap("HEAD", routePattern, handler, name); return this; @@ -209,7 +209,7 @@ class Collection implements CollectionInterface * * @param callable|string handler */ - public function delete(string! routePattern, var handler, string name = null) -> <Collection> + public function delete(string! routePattern, var handler, string name = null) -> <CollectionInterface> { this->_addMap("DELETE", routePattern, handler, name); return this; @@ -220,7 +220,7 @@ class Collection implements CollectionInterface * * @param callable|string handler */ - public function options(string! routePattern, var handler, string name = null) -> <Collection> + public function options(string! routePattern, var handler, string name = null) -> <CollectionInterface> { this->_addMap("OPTIONS", routePattern, handler, name); return this; diff --git a/phalcon/mvc/micro/collectioninterface.zep b/phalcon/mvc/micro/collectioninterface.zep index 4d0d622df71..062297eac3f 100644 --- a/phalcon/mvc/micro/collectioninterface.zep +++ b/phalcon/mvc/micro/collectioninterface.zep @@ -45,17 +45,17 @@ interface CollectionInterface /** * Sets the main handler */ - public function setHandler(var handler, boolean lazy = false) -> <CollectionInterface>; + public function setHandler(var handler, bool lazy = false) -> <CollectionInterface>; /** * Sets if the main handler must be lazy loaded */ - public function setLazy(boolean! lazy) -> <CollectionInterface>; + public function setLazy(bool! lazy) -> <CollectionInterface>; /** * Returns if the main handler must be lazy loaded */ - public function isLazy() -> boolean; + public function isLazy() -> bool; /** * Returns the main handler diff --git a/phalcon/mvc/model.zep b/phalcon/mvc/model.zep index 306d46c88ef..05f0c1f69c9 100644 --- a/phalcon/mvc/model.zep +++ b/phalcon/mvc/model.zep @@ -296,7 +296,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface /** * Magic method to check if a property is a valid relation */ - public function __isset(string! property) -> boolean + public function __isset(string! property) -> bool { var modelName, manager, relation; @@ -497,7 +497,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface * @param array dataColumnMap array to transform keys of data to another * @param array whiteList */ - public function assign(array! data, var dataColumnMap = null, var whiteList = null) -> <Model> + public function assign(array! data, var dataColumnMap = null, var whiteList = null) -> <ModelInterface> { var key, keyMapped, value, attribute, attributeField, metaData, columnMap, dataMapped, disableAssignSetters; @@ -660,7 +660,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface * @param \Phalcon\Mvc\ModelInterface|\Phalcon\Mvc\Model\Row base * @param array columnMap */ - public static function cloneResultMap(var base, array! data, var columnMap, int dirtyState = 0, boolean keepSnapshots = null) -> <ModelInterface> + public static function cloneResultMap(var base, array! data, var columnMap, int dirtyState = 0, bool keepSnapshots = null) -> <ModelInterface> { var instance, attribute, key, value, castValue, attributeName; @@ -707,7 +707,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface break; case Column::TYPE_BOOLEAN: - let castValue = (boolean) value; + let castValue = (bool) value; break; default: @@ -892,7 +892,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface * $robot->create(); *</code> */ - public function create() -> boolean + public function create() -> bool { var metaData; @@ -930,7 +930,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface * } * </code> */ - public function delete() -> boolean + public function delete() -> bool { var metaData, writeConnection, values, bindTypes, primaryKeys, bindDataTypes, columnMap, attributeField, conditions, primaryKey, @@ -1288,7 +1288,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface /** * Fires an event, implicitly calls behaviors and listeners in the events manager are notified */ - public function fireEvent(string! eventName) -> boolean + public function fireEvent(string! eventName) -> bool { /** * Check if there is a method with the same name of the event @@ -1305,9 +1305,9 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface /** * Fires an event, implicitly calls behaviors and listeners in the events manager are notified - * This method stops if one of the callbacks/listeners returns boolean false + * This method stops if one of the callbacks/listeners returns bool false */ - public function fireEventCancel(string! eventName) -> boolean + public function fireEventCancel(string! eventName) -> bool { /** * Check if there is a method with the same name of the event @@ -1569,7 +1569,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface return manager->getRelationRecords(relation, null, this, arguments); } - public function isRelationshipLoaded(string relationshipAlias) -> boolean + public function isRelationshipLoaded(string relationshipAlias) -> bool { return isset this->_related[relationshipAlias]; } @@ -1701,7 +1701,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface * * @param string|array fieldName */ - public function hasChanged(var fieldName = null, boolean allFields = false) -> boolean + public function hasChanged(var fieldName = null, bool allFields = false) -> bool { var changedFields; @@ -1726,7 +1726,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface /** * Checks if the object has internal snapshot data */ - public function hasSnapshotData() -> boolean + public function hasSnapshotData() -> bool { var snapshot; let snapshot = this->_snapshot; @@ -1740,7 +1740,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface * * @param string|array fieldName */ - public function hasUpdated(var fieldName = null, boolean allFields = false) -> boolean + public function hasUpdated(var fieldName = null, bool allFields = false) -> bool { var updatedFields; @@ -1841,7 +1841,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface /** * Create a criteria for a specific model */ - public static function query(<DiInterface> dependencyInjector = null) -> <Criteria> + public static function query(<DiInterface> dependencyInjector = null) -> <CriteriaInterface> { var criteria; @@ -1984,7 +1984,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface * $robot->save(); *</code> */ - public function save() -> boolean + public function save() -> bool { var metaData, related, schema, writeConnection, readConnection, source, table, identityField, exists, success; @@ -2148,7 +2148,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface /** * Unserializes the object from a serialized string */ - public function unserialize(string! data) + public function unserialize(var data) { var attributes, dependencyInjector, manager, key, value, snapshot; @@ -2207,7 +2207,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface /** * Sets the DependencyInjection connection service name */ - public function setConnectionService(string! connectionService) -> <Model> + public function setConnectionService(string! connectionService) -> <ModelInterface> { (<ManagerInterface> this->_modelsManager)->setConnectionService(this, connectionService); return this; @@ -2216,7 +2216,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface /** * Sets the dirty state of the object using one of the DIRTY_STATE_* constants */ - public function setDirtyState(int dirtyState) -> <ModelInterface> + public function setDirtyState(int dirtyState) -> <ModelInterface> | bool { let this->_dirtyState = dirtyState; return this; @@ -2241,7 +2241,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface /** * Sets the DependencyInjection connection service name used to read data */ - public function setReadConnectionService(string! connectionService) -> <Model> + public function setReadConnectionService(string! connectionService) -> <ModelInterface> { (<ManagerInterface> this->_modelsManager)->setReadConnectionService(this, connectionService); return this; @@ -2397,7 +2397,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface * } *</code> */ - public function setTransaction(<TransactionInterface> transaction) -> <Model> + public function setTransaction(<TransactionInterface> transaction) -> <ModelInterface> { let this->_transaction = transaction; return this; @@ -2492,7 +2492,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface /** * Sets the DependencyInjection connection service name used to write data */ - public function setWriteConnectionService(string! connectionService) -> <Model> + public function setWriteConnectionService(string! connectionService) -> <ModelInterface> { return (<ManagerInterface> this->_modelsManager)->setWriteConnectionService(this, connectionService); } @@ -2501,7 +2501,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface /** * Skips the current operation forcing a success state */ - public function skipOperation(boolean skip) -> void + public function skipOperation(bool skip) -> void { let this->_skipped = skip; } @@ -2609,7 +2609,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface * $robot->update(); *</code> */ - public function update() -> boolean + public function update() -> bool { var metaData; @@ -2655,13 +2655,13 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface * Reads "belongs to" relations and check the virtual foreign keys when inserting or updating records * to verify that inserted/updated values are present in the related entity */ - protected final function _checkForeignKeysRestrict() -> boolean + protected final function _checkForeignKeysRestrict() -> bool { var manager, belongsTo, foreignKey, relation, conditions, position, bindParams, extraConditions, message, fields, referencedFields, field, referencedModel, value, allowNulls; int action, numberNull; - boolean error, validateWithNulls; + bool error, validateWithNulls; /** * Get the models manager @@ -2755,7 +2755,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface */ if validateWithNulls { if fetch allowNulls, foreignKey["allowNulls"] { - let validateWithNulls = (boolean) allowNulls; + let validateWithNulls = (bool) allowNulls; } else { let validateWithNulls = false; } @@ -2804,7 +2804,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface /** * Reads both "hasMany" and "hasOne" relations and checks the virtual foreign keys (cascade) when deleting records */ - protected final function _checkForeignKeysReverseCascade() -> boolean + protected final function _checkForeignKeysReverseCascade() -> bool { var manager, relations, relation, foreignKey, resultset, conditions, bindParams, referencedModel, @@ -2909,9 +2909,9 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface /** * Reads both "hasMany" and "hasOne" relations and checks the virtual foreign keys (restrict) when deleting records */ - protected final function _checkForeignKeysReverseRestrict() -> boolean + protected final function _checkForeignKeysReverseRestrict() -> bool { - boolean error; + bool error; var manager, relations, foreignKey, relation, relationClass, referencedModel, fields, referencedFields, conditions, bindParams,position, field, @@ -3036,15 +3036,15 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface * Sends a pre-build INSERT SQL statement to the relational database system * * @param string|array table - * @param boolean|string identityField + * @param bool|string identityField */ protected function _doLowInsert(<MetaDataInterface> metaData, <AdapterInterface> connection, - table, identityField) -> boolean + table, identityField) -> bool { var bindSkip, fields, values, bindTypes, attributes, bindDataTypes, automaticAttributes, field, columnMap, value, attributeField, success, bindType, defaultValue, sequenceName, defaultValues, source, schema, snapshot, lastInsertedId, manager; - boolean useExplicitIdentity; + bool useExplicitIdentity; let bindSkip = Column::BIND_SKIP; let manager = <ManagerInterface> this->_modelsManager; @@ -3137,7 +3137,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface /** * Not all the database systems require an explicit value for identity columns */ - let useExplicitIdentity = (boolean) connection->useExplicitIdValue(); + let useExplicitIdentity = (bool) connection->useExplicitIdValue(); if useExplicitIdentity { let fields[] = identityField; } @@ -3241,12 +3241,12 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface * * @param string|array table */ - protected function _doLowUpdate(<MetaDataInterface> metaData, <AdapterInterface> connection, var table) -> boolean + protected function _doLowUpdate(<MetaDataInterface> metaData, <AdapterInterface> connection, var table) -> bool { var bindSkip, fields, values, dataType, dataTypes, bindTypes, manager, bindDataTypes, field, automaticAttributes, snapshotValue, uniqueKey, uniqueParams, uniqueTypes, snapshot, nonPrimary, columnMap, attributeField, value, primaryKeys, bindType, newSnapshot, success; - boolean useDynamicUpdate, changed; + bool useDynamicUpdate, changed; let bindSkip = Column::BIND_SKIP, fields = [], @@ -3258,7 +3258,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface /** * Check if the model must use dynamic update */ - let useDynamicUpdate = (boolean) manager->isUsingDynamicUpdate(this); + let useDynamicUpdate = (bool) manager->isUsingDynamicUpdate(this); let snapshot = this->_snapshot; @@ -3346,7 +3346,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface switch dataType { case Column::TYPE_BOOLEAN: - let changed = (boolean) snapshotValue !== (boolean) value; + let changed = (bool) snapshotValue !== (bool) value; break; case Column::TYPE_DECIMAL: @@ -3472,7 +3472,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface * * @param string|array table */ - protected function _exists(<MetaDataInterface> metaData, <AdapterInterface> connection, var table = null) -> boolean + protected function _exists(<MetaDataInterface> metaData, <AdapterInterface> connection, var table = null) -> bool { int numberEmpty, numberPrimary; var uniqueParams, uniqueTypes, uniqueKey, columnMap, primaryKeys, @@ -3746,7 +3746,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface /** * Try to check if the query must invoke a finder * - * @return \Phalcon\Mvc\ModelInterface[]|\Phalcon\Mvc\ModelInterface|boolean + * @return \Phalcon\Mvc\ModelInterface[]|\Phalcon\Mvc\ModelInterface|bool */ protected final static function _invokeFinder(string method, array arguments) { @@ -3840,7 +3840,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface /** * Check for, and attempt to use, possible setter. */ - protected final function _possibleSetter(string property, var value) -> boolean + protected final function _possibleSetter(string property, var value) -> bool { var possibleSetter; @@ -3855,11 +3855,11 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface /** * Executes internal hooks before save a record */ - protected function _preSave(<MetaDataInterface> metaData, boolean exists, var identityField) -> boolean + protected function _preSave(<MetaDataInterface> metaData, bool exists, var identityField) -> bool { var notNull, columnMap, dataTypeNumeric, automaticAttributes, defaultValues, field, attributeField, value, emptyStringValues; - boolean error, isNull; + bool error, isNull; /** * Run Validation Callbacks Before @@ -4089,7 +4089,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface * * @param \Phalcon\Mvc\ModelInterface[] related */ - protected function _preSaveRelatedRecords(<AdapterInterface> connection, related) -> boolean + protected function _preSaveRelatedRecords(<AdapterInterface> connection, related) -> bool { var className, manager, type, relation, columns, referencedFields, referencedModel, message, nesting, name, record; @@ -4181,7 +4181,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface /** * Executes internal events after save a record */ - protected function _postSave(boolean success, boolean exists) -> boolean + protected function _postSave(bool success, bool exists) -> bool { if success === true { if exists { @@ -4199,13 +4199,13 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface * * @param Phalcon\Mvc\ModelInterface[] related */ - protected function _postSaveRelatedRecords(<AdapterInterface> connection, related) -> boolean + protected function _postSaveRelatedRecords(<AdapterInterface> connection, related) -> bool { var nesting, className, manager, relation, name, record, message, columns, referencedModel, referencedFields, relatedRecords, value, recordAfter, intermediateModel, intermediateFields, intermediateValue, intermediateModelName, intermediateReferencedFields; - boolean isThrough; + bool isThrough; let nesting = false, className = get_class(this), @@ -4258,7 +4258,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface * Get the value of the field from the current model * Check if the relation is a has-many-to-many */ - let isThrough = (boolean) relation->isThrough(); + let isThrough = (bool) relation->isThrough(); /** * Get the rest of intermediate model info @@ -4608,7 +4608,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface * } *</code> */ - protected function keepSnapshots(boolean keepSnapshot) -> void + protected function keepSnapshots(bool keepSnapshot) -> void { (<ManagerInterface> this->_modelsManager)->keepSnapshots(this, keepSnapshot); } @@ -4616,7 +4616,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface /** * Sets schema name where the mapped table is located */ - protected function setSchema(string! schema) -> <Model> + protected function setSchema(string! schema) -> <ModelInterface> { return (<ManagerInterface> this->_modelsManager)->setModelSchema(this, schema); } @@ -4624,7 +4624,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface /** * Sets the table name to which model should be mapped */ - protected function setSource(string! source) -> <Model> + protected function setSource(string! source) -> <ModelInterface> { (<ManagerInterface> this->_modelsManager)->setModelSource(this, source); return this; @@ -4733,7 +4733,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface * } *</code> */ - protected function useDynamicUpdate(boolean dynamicUpdate) -> void + protected function useDynamicUpdate(bool dynamicUpdate) -> void { (<ManagerInterface> this->_modelsManager)->useDynamicUpdate(this, dynamicUpdate); } @@ -4769,13 +4769,13 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface * } *</code> */ - protected function validate(<ValidationInterface> validator) -> boolean + protected function validate(<ValidationInterface> validator) -> bool { var messages, message; let messages = validator->validate(null, this); - // Call the validation, if it returns not the boolean + // Call the validation, if it returns not the bool // we append the messages to the current object if typeof messages == "boolean" { return messages; @@ -4827,7 +4827,7 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface * } *</code> */ - public function validationHasFailed() -> boolean + public function validationHasFailed() -> bool { return count(this->_errorMessages) > 0; } diff --git a/phalcon/mvc/model/behavior.zep b/phalcon/mvc/model/behavior.zep index 462a00897cf..43df0bc8ca7 100644 --- a/phalcon/mvc/model/behavior.zep +++ b/phalcon/mvc/model/behavior.zep @@ -42,7 +42,7 @@ abstract class Behavior implements BehaviorInterface /** * Checks whether the behavior must take action on certain event */ - protected function mustTakeAction(string! eventName) -> boolean + protected function mustTakeAction(string! eventName) -> bool { return isset this->_options[eventName]; } diff --git a/phalcon/mvc/model/binder.zep b/phalcon/mvc/model/binder.zep index bae6b8afa55..62d9d58008f 100644 --- a/phalcon/mvc/model/binder.zep +++ b/phalcon/mvc/model/binder.zep @@ -34,6 +34,8 @@ class Binder implements BinderInterface { /** * Array for storing active bound models + * + * @var array */ protected boundModels = [] { get }; @@ -112,7 +114,7 @@ class Binder implements BinderInterface /** * Find the model by param value. */ - protected function findBoundModel(var paramValue, string className) -> object | boolean + protected function findBoundModel(var paramValue, string className) -> object | bool { return {className}::findFirst(paramValue); } diff --git a/phalcon/mvc/model/criteria.zep b/phalcon/mvc/model/criteria.zep index 1eca9cc87dd..6eef1d1abd7 100644 --- a/phalcon/mvc/model/criteria.zep +++ b/phalcon/mvc/model/criteria.zep @@ -69,19 +69,15 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface /** * Returns the DependencyInjector container */ - public function getDI() -> <DiInterface> | null + public function getDI() -> <DiInterface> { - var dependencyInjector; - if fetch dependencyInjector, this->_params["di"] { - return dependencyInjector; - } - return null; + return this->_params["di"]; } /** * Set a model on which the query will be executed */ - public function setModelName(string! modelName) -> <Criteria> + public function setModelName(string! modelName) -> <CriteriaInterface> { let this->_model = modelName; return this; @@ -99,7 +95,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface * Sets the bound parameters in the criteria * This method replaces all previously set bound parameters */ - public function bind(array! bindParams, boolean merge = false) -> <Criteria> + public function bind(array! bindParams, bool merge = false) -> <CriteriaInterface> { var bind; @@ -125,7 +121,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface * Sets the bind types in the criteria * This method replaces all previously set bound parameters */ - public function bindTypes(array! bindTypes) -> <Criteria> + public function bindTypes(array! bindTypes) -> <CriteriaInterface> { let this->_params["bindTypes"] = bindTypes; return this; @@ -134,7 +130,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface /** * Sets SELECT DISTINCT / SELECT ALL flag */ - public function distinct(var distinct) -> <Criteria> + public function distinct(var distinct) -> <CriteriaInterface> { let this->_params["distinct"] = distinct; return this; @@ -154,7 +150,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface * * @param string|array columns */ - public function columns(var columns) -> <Criteria> + public function columns(var columns) -> <CriteriaInterface> { let this->_params["columns"] = columns; return this; @@ -170,7 +166,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface * $criteria->join("Robots", "r.id = RobotsParts.robots_id", "r", "LEFT"); *</code> */ - public function join(string! model, var conditions = null, var alias = null, var type = null) -> <Criteria> + public function join(string! model, var conditions = null, var alias = null, var type = null) -> <CriteriaInterface> { var join, mergedJoins, currentJoins; @@ -199,7 +195,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface * $criteria->innerJoin("Robots", "r.id = RobotsParts.robots_id", "r"); *</code> */ - public function innerJoin(string! model, var conditions = null, var alias = null) -> <Criteria> + public function innerJoin(string! model, var conditions = null, var alias = null) -> <CriteriaInterface> { return this->join(model, conditions, alias, "INNER"); } @@ -211,7 +207,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface * $criteria->leftJoin("Robots", "r.id = RobotsParts.robots_id", "r"); *</code> */ - public function leftJoin(string! model, var conditions = null, var alias = null) -> <Criteria> + public function leftJoin(string! model, var conditions = null, var alias = null) -> <CriteriaInterface> { return this->join(model, conditions, alias, "LEFT"); } @@ -223,7 +219,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface * $criteria->rightJoin("Robots", "r.id = RobotsParts.robots_id", "r"); *</code> */ - public function rightJoin(string! model, conditions = null, alias = null) -> <Criteria> + public function rightJoin(string! model, conditions = null, alias = null) -> <CriteriaInterface> { return this->join(model, conditions, alias, "RIGHT"); } @@ -231,7 +227,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface /** * Sets the conditions parameter in the criteria */ - public function where(string! conditions, var bindParams = null, var bindTypes = null) -> <Criteria> + public function where(string! conditions, var bindParams = null, var bindTypes = null) -> <CriteriaInterface> { var currentBindParams, currentBindTypes; @@ -265,7 +261,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface /** * Appends a condition to the current conditions using an AND operator */ - public function andWhere(string! conditions, var bindParams = null, var bindTypes = null) -> <Criteria> + public function andWhere(string! conditions, var bindParams = null, var bindTypes = null) -> <CriteriaInterface> { var currentConditions; @@ -279,7 +275,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface /** * Appends a condition to the current conditions using an OR operator */ - public function orWhere(string! conditions, var bindParams = null, var bindTypes = null) -> <Criteria> + public function orWhere(string! conditions, var bindParams = null, var bindTypes = null) -> <CriteriaInterface> { var currentConditions; @@ -297,7 +293,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface * $criteria->betweenWhere("price", 100.25, 200.50); *</code> */ - public function betweenWhere(string! expr, var minimum, var maximum) -> <Criteria> + public function betweenWhere(string! expr, var minimum, var maximum) -> <CriteriaInterface> { var hiddenParam, minimumKey, nextHiddenParam, maximumKey; @@ -334,7 +330,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface * $criteria->notBetweenWhere("price", 100.25, 200.50); *</code> */ - public function notBetweenWhere(string! expr, var minimum, var maximum) -> <Criteria> + public function notBetweenWhere(string! expr, var minimum, var maximum) -> <CriteriaInterface> { var hiddenParam, nextHiddenParam, minimumKey, maximumKey; @@ -375,7 +371,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface * $criteria->inWhere("id", [1, 2, 3]); * </code> */ - public function inWhere(string! expr, array! values) -> <Criteria> + public function inWhere(string! expr, array! values) -> <CriteriaInterface> { var hiddenParam, bindParams, bindKeys, value, key, queryKey; @@ -419,7 +415,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface * $criteria->notInWhere("id", [1, 2, 3]); *</code> */ - public function notInWhere(string! expr, array! values) -> <Criteria> + public function notInWhere(string! expr, array! values) -> <CriteriaInterface> { var hiddenParam, bindParams, bindKeys, value, key; @@ -451,7 +447,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface /** * Adds the conditions parameter to the criteria */ - public function conditions(string! conditions) -> <Criteria> + public function conditions(string! conditions) -> <CriteriaInterface> { let this->_params["conditions"] = conditions; return this; @@ -460,7 +456,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface /** * Adds the order-by clause to the criteria */ - public function orderBy(string! orderColumns) -> <Criteria> + public function orderBy(string! orderColumns) -> <CriteriaInterface> { let this->_params["order"] = orderColumns; return this; @@ -469,7 +465,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface /** * Adds the group-by clause to the criteria */ - public function groupBy(var group) -> <Criteria> + public function groupBy(var group) -> <CriteriaInterface> { let this->_params["group"] = group; return this; @@ -478,7 +474,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface /** * Adds the having clause to the criteria */ - public function having(var having) -> <Criteria> + public function having(var having) -> <CriteriaInterface> { let this->_params["having"] = having; return this; @@ -493,7 +489,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface * $criteria->limit("100", "200"); * </code> */ - public function limit(int limit, var offset = null) -> <Criteria> + public function limit(int limit, var offset = null) -> <CriteriaInterface> { let limit = abs(limit); @@ -514,7 +510,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface /** * Adds the "for_update" parameter to the criteria */ - public function forUpdate(boolean forUpdate = true) -> <Criteria> + public function forUpdate(bool forUpdate = true) -> <CriteriaInterface> { let this->_params["for_update"] = forUpdate; return this; @@ -523,7 +519,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface /** * Adds the "shared_lock" parameter to the criteria */ - public function sharedLock(boolean sharedLock = true) -> <Criteria> + public function sharedLock(bool sharedLock = true) -> <CriteriaInterface> { let this->_params["shared_lock"] = sharedLock; return this; @@ -533,7 +529,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface * Sets the cache options in the criteria * This method replaces all previously set cache options */ - public function cache(array! cache) -> <Criteria> + public function cache(array! cache) -> <CriteriaInterface> { let this->_params["cache"] = cache; return this; @@ -641,7 +637,7 @@ class Criteria implements CriteriaInterface, InjectionAwareInterface /** * Builds a Phalcon\Mvc\Model\Criteria based on an input array like $_POST */ - public static function fromInput(<DiInterface> dependencyInjector, string! modelName, array! data, string! operator = "AND") -> <Criteria> + public static function fromInput(<DiInterface> dependencyInjector, string! modelName, array! data, string! operator = "AND") -> <CriteriaInterface> { var attribute, conditions, field, value, type, metaData, model, dataTypes, bind, criteria, columnMap; diff --git a/phalcon/mvc/model/criteriainterface.zep b/phalcon/mvc/model/criteriainterface.zep index 6d0710e8481..58fc6ff3ffe 100644 --- a/phalcon/mvc/model/criteriainterface.zep +++ b/phalcon/mvc/model/criteriainterface.zep @@ -76,12 +76,12 @@ interface CriteriaInterface /** * Sets the "for_update" parameter to the criteria */ - public function forUpdate(boolean forUpdate = true) -> <CriteriaInterface>; + public function forUpdate(bool forUpdate = true) -> <CriteriaInterface>; /** * Sets the "shared_lock" parameter to the criteria */ - public function sharedLock(boolean sharedLock = true) -> <CriteriaInterface>; + public function sharedLock(bool sharedLock = true) -> <CriteriaInterface>; /** * Appends a condition to the current conditions using an AND operator diff --git a/phalcon/mvc/model/manager.zep b/phalcon/mvc/model/manager.zep index 894e1af9ca7..5c29e2297bf 100644 --- a/phalcon/mvc/model/manager.zep +++ b/phalcon/mvc/model/manager.zep @@ -176,7 +176,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI /** * Sets a global events manager */ - public function setEventsManager(<EventsManagerInterface> eventsManager) -> <Manager> + public function setEventsManager(<EventsManagerInterface> eventsManager) -> <ManagerInterface> { let this->_eventsManager = eventsManager; return this; @@ -201,7 +201,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI /** * Returns a custom events manager related to a model */ - public function getCustomEventsManager(<ModelInterface> model) -> <EventsManagerInterface> | boolean + public function getCustomEventsManager(<ModelInterface> model) -> <EventsManagerInterface> | bool { var eventsManager; @@ -215,7 +215,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI /** * Initializes a model in the model manager */ - public function initialize(<ModelInterface> model) -> boolean + public function initialize(<ModelInterface> model) -> bool { var className, eventsManager; @@ -259,7 +259,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI /** * Check whether a model is already initialized */ - public function isInitialized(string! modelName) -> boolean + public function isInitialized(string! modelName) -> bool { return isset this->_initialized[strtolower(modelName)]; } @@ -368,7 +368,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI * ); * </code> */ - public final function isVisibleModelProperty(<ModelInterface> model, string property) -> boolean + public final function isVisibleModelProperty(<ModelInterface> model, string property) -> bool { var properties, className; @@ -635,7 +635,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI /** * Sets if a model must keep snapshots */ - public function keepSnapshots(<ModelInterface> model, boolean keepSnapshots) -> void + public function keepSnapshots(<ModelInterface> model, bool keepSnapshots) -> void { let this->_keepSnapshots[get_class_lower(model)] = keepSnapshots; } @@ -643,7 +643,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI /** * Checks if a model is keeping snapshots for the queried records */ - public function isKeepingSnapshots(<ModelInterface> model) -> boolean + public function isKeepingSnapshots(<ModelInterface> model) -> bool { var isKeeping; @@ -657,7 +657,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI /** * Sets if a model must use dynamic update instead of the all-field update */ - public function useDynamicUpdate(<ModelInterface> model, boolean dynamicUpdate) + public function useDynamicUpdate(<ModelInterface> model, bool dynamicUpdate) { var entityName; let entityName = get_class_lower(model), @@ -668,7 +668,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI /** * Checks if a model is using dynamic update instead of all-field update */ - public function isUsingDynamicUpdate(<ModelInterface> model) -> boolean + public function isUsingDynamicUpdate(<ModelInterface> model) -> bool { var isUsing; @@ -685,7 +685,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI * @param array options */ public function addHasOne(<ModelInterface> model, var fields, string! referencedModel, - var referencedFields, var options = null) -> <Relation> + var referencedFields, var options = null) -> <RelationInterface> { var entityName, referencedEntity, relation, keyRelation, relations, alias, lowerAlias, singleRelations; @@ -766,7 +766,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI * @param array options */ public function addBelongsTo(<ModelInterface> model, var fields, string! referencedModel, - var referencedFields, var options = null) -> <Relation> + var referencedFields, var options = null) -> <RelationInterface> { var entityName, referencedEntity, relation, keyRelation, relations, alias, lowerAlias, singleRelations; @@ -847,7 +847,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI * @param array options */ public function addHasMany(<ModelInterface> model, var fields, string! referencedModel, - var referencedFields, var options = null) -> <Relation> + var referencedFields, var options = null) -> <RelationInterface> { var entityName, referencedEntity, hasMany, relation, keyRelation, relations, alias, lowerAlias, singleRelations; @@ -932,7 +932,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI * @param array options */ public function addHasManyToMany(<ModelInterface> model, var fields, string! intermediateModel, - var intermediateFields, var intermediateReferencedFields, string! referencedModel, var referencedFields, var options = null) -> <Relation> + var intermediateFields, var intermediateReferencedFields, string! referencedModel, var referencedFields, var options = null) -> <RelationInterface> { var entityName, referencedEntity, hasManyToMany, relation, keyRelation, relations, alias, lowerAlias, singleRelations, intermediateEntity; @@ -1031,7 +1031,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI /** * Checks whether a model has a belongsTo relation with another model */ - public function existsBelongsTo(string! modelName, string! modelRelation) -> boolean + public function existsBelongsTo(string! modelName, string! modelRelation) -> bool { var entityName, keyRelation; @@ -1055,7 +1055,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI /** * Checks whether a model has a hasMany relation with another model */ - public function existsHasMany(string! modelName, string! modelRelation) -> boolean + public function existsHasMany(string! modelName, string! modelRelation) -> bool { var entityName, keyRelation; @@ -1079,7 +1079,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI /** * Checks whether a model has a hasOne relation with another model */ - public function existsHasOne(string! modelName, string! modelRelation) -> boolean + public function existsHasOne(string! modelName, string! modelRelation) -> bool { var entityName, keyRelation; @@ -1103,7 +1103,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI /** * Checks whether a model has a hasManyToMany relation with another model */ - public function existsHasManyToMany(string! modelName, string! modelRelation) -> boolean + public function existsHasManyToMany(string! modelName, string! modelRelation) -> bool { var entityName, keyRelation; @@ -1127,7 +1127,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI /** * Returns a relation by its alias */ - public function getRelationByAlias(string! modelName, string! alias) -> <Relation> | boolean + public function getRelationByAlias(string! modelName, string! alias) -> <RelationInterface> | bool { var relation; @@ -1223,7 +1223,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI intermediateFields, joinConditions, fields, builder, extraParameters, conditions, refPosition, field, referencedFields, findParams, findArguments, retrieveMethod, uniqueKey, records, arguments, rows, firstRow; - boolean reusable; + bool reusable; /** * Re-use bound parameters @@ -1366,7 +1366,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI /** * Find first results could be reusable */ - let reusable = (boolean) relation->isReusable(); + let reusable = (bool) relation->isReusable(); if reusable { let uniqueKey = unique_key(referencedModel, arguments), records = this->getReusableRecords(referencedModel, uniqueKey); @@ -1423,7 +1423,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI * Gets belongsTo related records from a model */ public function getBelongsToRecords(string! method, string! modelName, var modelRelation, <ModelInterface> record, parameters = null) - -> <ResultsetInterface> | boolean + -> <ResultsetInterface> | bool { var keyRelation, relations; @@ -1446,7 +1446,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI * Gets hasMany related records from a model */ public function getHasManyRecords(string! method, string! modelName, var modelRelation, <ModelInterface> record, parameters = null) - -> <ResultsetInterface> | boolean + -> <ResultsetInterface> | bool { var keyRelation, relations; @@ -1469,7 +1469,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI * Gets belongsTo related records from a model */ public function getHasOneRecords(string! method, string! modelName, var modelRelation, <ModelInterface> record, parameters = null) - -> <ModelInterface> | boolean + -> <ModelInterface> | bool { var keyRelation, relations; @@ -1601,7 +1601,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface, EventsAwareI /** * Query the first relationship defined between two models */ - public function getRelationsBetween(string! first, string! second) -> <RelationInterface[]> | boolean + public function getRelationsBetween(string! first, string! second) -> <RelationInterface[]> | bool { var keyRelation, relations; diff --git a/phalcon/mvc/model/managerinterface.zep b/phalcon/mvc/model/managerinterface.zep index d16cd71f903..75ade6ad614 100644 --- a/phalcon/mvc/model/managerinterface.zep +++ b/phalcon/mvc/model/managerinterface.zep @@ -21,6 +21,7 @@ namespace Phalcon\Mvc\Model; use Phalcon\Db\AdapterInterface; use Phalcon\Mvc\ModelInterface; +use Phalcon\Mvc\Model\RelationInterface; use Phalcon\Mvc\Model\Query\BuilderInterface; use Phalcon\Mvc\Model\QueryInterface; @@ -95,7 +96,7 @@ interface ManagerInterface /** * Check of a model is already initialized */ - public function isInitialized(string! modelName) -> boolean; + public function isInitialized(string! modelName) -> bool; /** * Get last initialized model @@ -137,17 +138,17 @@ interface ManagerInterface /** * Checks whether a model has a belongsTo relation with another model */ - public function existsBelongsTo(string! modelName, string! modelRelation) -> boolean; + public function existsBelongsTo(string! modelName, string! modelRelation) -> bool; /** * Checks whether a model has a hasMany relation with another model */ - public function existsHasMany(string! modelName, string! modelRelation) -> boolean; + public function existsHasMany(string! modelName, string! modelRelation) -> bool; /** * Checks whether a model has a hasOne relation with another model */ - public function existsHasOne(string! modelName, string! modelRelation) -> boolean; + public function existsHasOne(string! modelName, string! modelRelation) -> bool; /** * Gets belongsTo related records from a model @@ -155,7 +156,7 @@ interface ManagerInterface * @param string modelRelation * @param array parameters */ - public function getBelongsToRecords(string! method, string! modelName, var modelRelation, <ModelInterface> record, parameters = null) -> <ResultsetInterface> | boolean; + public function getBelongsToRecords(string! method, string! modelName, var modelRelation, <ModelInterface> record, parameters = null) -> <ResultsetInterface> | bool; /** * Gets hasMany related records from a model @@ -163,7 +164,7 @@ interface ManagerInterface * @param string modelRelation * @param array parameters */ - public function getHasManyRecords(string! method, string! modelName, var modelRelation, <ModelInterface> record, parameters = null) -> <ResultsetInterface> | boolean; + public function getHasManyRecords(string! method, string! modelName, var modelRelation, <ModelInterface> record, parameters = null) -> <ResultsetInterface> | bool; /** * Gets belongsTo related records from a model @@ -171,22 +172,22 @@ interface ManagerInterface * @param string modelRelation * @param array parameters */ - public function getHasOneRecords(string! method, string! modelName, var modelRelation, <ModelInterface> record, parameters = null) -> <ModelInterface> | boolean; + public function getHasOneRecords(string! method, string! modelName, var modelRelation, <ModelInterface> record, parameters = null) -> <ModelInterface> | bool; /** * Gets belongsTo relations defined on a model */ - public function getBelongsTo(<ModelInterface> model) -> <RelationInterface[]>; + public function getBelongsTo(<ModelInterface> model) -> <RelationInterface[]> | array; /** * Gets hasMany relations defined on a model */ - public function getHasMany(<ModelInterface> model) -> <RelationInterface[]>; + public function getHasMany(<ModelInterface> model) -> <RelationInterface[]> | array; /** * Gets hasOne relations defined on a model */ - public function getHasOne(<ModelInterface> model) -> <RelationInterface[]>; + public function getHasOne(<ModelInterface> model) -> <RelationInterface[]> | array; /** * Gets hasOne relations defined on a model @@ -201,7 +202,7 @@ interface ManagerInterface /** * Query the relations between two models */ - public function getRelationsBetween(string! first, string! second) -> <RelationInterface[]> | boolean; + public function getRelationsBetween(string! first, string! second) -> <RelationInterface[]> | bool; /** * Creates a Phalcon\Mvc\Model\Query without execute it @@ -233,7 +234,7 @@ interface ManagerInterface * * @param string $eventName */ - public function notifyEvent(eventName, <ModelInterface> model); + public function notifyEvent(string! eventName, <ModelInterface> model); /** * Dispatch an event to the listeners and behaviors @@ -241,7 +242,7 @@ interface ManagerInterface * meaning that a least one is implemented * * @param array data - * @return boolean + * @return bool */ public function missingMethod(<ModelInterface> model, string! eventName, data); @@ -253,6 +254,6 @@ interface ManagerInterface /** * Returns a relation by its alias */ - public function getRelationByAlias(string! modelName, string! alias) -> <Relation> | boolean; + public function getRelationByAlias(string! modelName, string! alias) -> <Relation> | bool; } diff --git a/phalcon/mvc/model/metadata.zep b/phalcon/mvc/model/metadata.zep index dd09bf9cb79..fa4ede470c0 100644 --- a/phalcon/mvc/model/metadata.zep +++ b/phalcon/mvc/model/metadata.zep @@ -236,7 +236,7 @@ abstract class MetaData implements InjectionAwareInterface, MetaDataInterface * ); *</code> */ - public final function readMetaData(<ModelInterface> model) + public final function readMetaData(<ModelInterface> model) -> array { var source, schema, key; @@ -334,7 +334,7 @@ abstract class MetaData implements InjectionAwareInterface, MetaDataInterface * ); *</code> */ - public final function readColumnMap(<ModelInterface> model) + public final function readColumnMap(<ModelInterface> model) -> array | null { var keyName, data; @@ -523,7 +523,7 @@ abstract class MetaData implements InjectionAwareInterface, MetaDataInterface * @param Phalcon\Mvc\ModelInterface model * @return string */ - public function getIdentityField(<ModelInterface> model) + public function getIdentityField(<ModelInterface> model) -> string { return this->readMetaDataIndex(model, self::MODELS_IDENTITY_COLUMN); } @@ -740,7 +740,7 @@ abstract class MetaData implements InjectionAwareInterface, MetaDataInterface * ); *</code> */ - public function hasAttribute(<ModelInterface> model, string attribute) -> boolean + public function hasAttribute(<ModelInterface> model, string attribute) -> bool { var columnMap; @@ -761,7 +761,7 @@ abstract class MetaData implements InjectionAwareInterface, MetaDataInterface * ); *</code> */ - public function isEmpty() -> boolean + public function isEmpty() -> bool { return count(this->_metaData) == 0; } diff --git a/phalcon/mvc/model/metadata/apc.zep b/phalcon/mvc/model/metadata/apc.zep deleted file mode 100644 index 705b0c9edf1..00000000000 --- a/phalcon/mvc/model/metadata/apc.zep +++ /dev/null @@ -1,94 +0,0 @@ - -/* - +------------------------------------------------------------------------+ - | Phalcon Framework | - +------------------------------------------------------------------------+ - | Copyright (c) 2011-2017 Phalcon Team (https://phalconphp.com) | - +------------------------------------------------------------------------+ - | This source file is subject to the New BSD License that is bundled | - | with this package in the file LICENSE.txt. | - | | - | If you did not receive a copy of the license and are unable to | - | obtain it through the world-wide-web, please send an email | - | to license@phalconphp.com so we can send you a copy immediately. | - +------------------------------------------------------------------------+ - | Authors: Andres Gutierrez <andres@phalconphp.com> | - | Eduar Carvajal <eduar@phalconphp.com> | - +------------------------------------------------------------------------+ - */ - -namespace Phalcon\Mvc\Model\MetaData; - -use Phalcon\Mvc\Model\MetaData; -use Phalcon\Mvc\Model\Exception; - -/** - * Phalcon\Mvc\Model\MetaData\Apc - * - * Stores model meta-data in the APC cache. Data will erased if the web server is restarted - * - * By default meta-data is stored for 48 hours (172800 seconds) - * - * You can query the meta-data by printing apc_fetch('$PMM$') or apc_fetch('$PMM$my-app-id') - * - *<code> - * $metaData = new \Phalcon\Mvc\Model\Metadata\Apc( - * [ - * "prefix" => "my-app-id", - * "lifetime" => 86400, - * ] - * ); - *</code> - * - * @deprecated Deprecated since 3.3.0, will be removed in 4.0.0 - * @see Phalcon\Mvc\Model\Metadata\Apcu - */ -class Apc extends MetaData -{ - - protected _prefix = ""; - - protected _ttl = 172800; - - protected _metaData = []; - - /** - * Phalcon\Mvc\Model\MetaData\Apc constructor - * - * @param array options - */ - public function __construct(options = null) - { - var prefix, ttl; - - if fetch prefix, options["prefix"] { - let this->_prefix = prefix; - } - - if fetch ttl, options["lifetime"] { - let this->_ttl = ttl; - } - } - - /** - * Reads meta-data from APC - */ - public function read(string! key) -> array | null - { - var data; - - let data = apc_fetch("$PMM$" . this->_prefix . key); - if typeof data == "array" { - return data; - } - return null; - } - - /** - * Writes the meta-data to APC - */ - public function write(string! key, array data) -> void - { - apc_store("$PMM$" . this->_prefix . key, data, this->_ttl); - } -} diff --git a/phalcon/mvc/model/metadata/memcache.zep b/phalcon/mvc/model/metadata/memcache.zep deleted file mode 100644 index 1f2eba7cb4c..00000000000 --- a/phalcon/mvc/model/metadata/memcache.zep +++ /dev/null @@ -1,135 +0,0 @@ - -/* - +------------------------------------------------------------------------+ - | Phalcon Framework | - +------------------------------------------------------------------------+ - | Copyright (c) 2011-2017 Phalcon Team (https://phalconphp.com) | - +------------------------------------------------------------------------+ - | This source file is subject to the New BSD License that is bundled | - | with this package in the file LICENSE.txt. | - | | - | If you did not receive a copy of the license and are unable to | - | obtain it through the world-wide-web, please send an email | - | to license@phalconphp.com so we can send you a copy immediately. | - +------------------------------------------------------------------------+ - | Authors: Andres Gutierrez <andres@phalconphp.com> | - | Eduar Carvajal <eduar@phalconphp.com> | - +------------------------------------------------------------------------+ - */ - -namespace Phalcon\Mvc\Model\MetaData; - -use Phalcon\Mvc\Model\MetaData; -use Phalcon\Cache\Backend\Memcache; -use Phalcon\Cache\Frontend\Data as FrontendData; - -/** - * Phalcon\Mvc\Model\MetaData\Memcache - * - * Stores model meta-data in the Memcache. - * - * By default meta-data is stored for 48 hours (172800 seconds) - * - *<code> - * $metaData = new Phalcon\Mvc\Model\Metadata\Memcache( - * [ - * "prefix" => "my-app-id", - * "lifetime" => 86400, - * "host" => "localhost", - * "port" => 11211, - * "persistent" => false, - * ] - * ); - *</code> - */ -class Memcache extends MetaData -{ - - protected _ttl = 172800; - - protected _memcache = null; - - protected _metaData = []; - - /** - * Phalcon\Mvc\Model\MetaData\Memcache constructor - * - * @param array options - */ - public function __construct(options = null) - { - var ttl; - - if typeof options != "array" { - let options = []; - } - - if !isset options["host"] { - let options["host"] = "127.0.0.1"; - } - - if !isset options["port"] { - let options["port"] = 11211; - } - - if !isset options["persistent"] { - let options["persistent"] = 0; - } - - if !isset options["statsKey"] { - let options["statsKey"] = "_PHCM_MM"; - } - - if fetch ttl, options["lifetime"] { - let this->_ttl = ttl; - } - - let this->_memcache = new Memcache( - new FrontendData(["lifetime": this->_ttl]), - options - ); - } - - /** - * Reads metadata from Memcache - */ - public function read(string! key) -> array | null - { - var data; - - let data = this->_memcache->get(key); - if typeof data == "array" { - return data; - } - return null; - } - - /** - * Writes the metadata to Memcache - */ - public function write(string! key, array data) -> void - { - this->_memcache->save(key, data); - } - - /** - * Flush Memcache data and resets internal meta-data in order to regenerate it - */ - public function reset() -> void - { - var meta, key, realKey; - - let meta = this->_metaData; - - if typeof meta == "array" { - - for key, _ in meta { - let realKey = "meta-" . key; - - this->_memcache->delete(realKey); - } - } - - parent::reset(); - } -} diff --git a/phalcon/mvc/model/metadata/xcache.zep b/phalcon/mvc/model/metadata/xcache.zep deleted file mode 100644 index 889e930e699..00000000000 --- a/phalcon/mvc/model/metadata/xcache.zep +++ /dev/null @@ -1,89 +0,0 @@ - -/* - +------------------------------------------------------------------------+ - | Phalcon Framework | - +------------------------------------------------------------------------+ - | Copyright (c) 2011-2017 Phalcon Team (https://phalconphp.com) | - +------------------------------------------------------------------------+ - | This source file is subject to the New BSD License that is bundled | - | with this package in the file LICENSE.txt. | - | | - | If you did not receive a copy of the license and are unable to | - | obtain it through the world-wide-web, please send an email | - | to license@phalconphp.com so we can send you a copy immediately. | - +------------------------------------------------------------------------+ - | Authors: Andres Gutierrez <andres@phalconphp.com> | - | Eduar Carvajal <eduar@phalconphp.com> | - +------------------------------------------------------------------------+ - */ - -namespace Phalcon\Mvc\Model\MetaData; - -use Phalcon\Mvc\Model\MetaData; - -/** - * Phalcon\Mvc\Model\MetaData\Xcache - * - * Stores model meta-data in the XCache cache. Data will erased if the web server is restarted - * - * By default meta-data is stored for 48 hours (172800 seconds) - * - * You can query the meta-data by printing xcache_get('$PMM$') or xcache_get('$PMM$my-app-id') - * - *<code> - * $metaData = new Phalcon\Mvc\Model\Metadata\Xcache( - * [ - * "prefix" => "my-app-id", - * "lifetime" => 86400, - * ] - * ); - *</code> - */ -class Xcache extends MetaData -{ - - protected _prefix = ""; - - protected _ttl = 172800; - - protected _metaData = []; - - /** - * Phalcon\Mvc\Model\MetaData\Xcache constructor - * - * @param array options - */ - public function __construct(options = null) - { - var prefix, ttl; - - if fetch prefix, options["prefix"] { - let this->_prefix = prefix; - } - - if fetch ttl, options["lifetime"] { - let this->_ttl = ttl; - } - } - - /** - * Reads metadata from XCache - */ - public function read(string! key) -> array | null - { - var data; - let data = xcache_get("$PMM$" . this->_prefix . key); - if typeof data == "array" { - return data; - } - return null; - } - - /** - * Writes the metadata to XCache - */ - public function write(string! key, array data) -> void - { - xcache_set("$PMM$" . this->_prefix . key, data, this->_ttl); - } -} diff --git a/phalcon/mvc/model/metadatainterface.zep b/phalcon/mvc/model/metadatainterface.zep index 445a4e012bd..f8d2c99279d 100644 --- a/phalcon/mvc/model/metadatainterface.zep +++ b/phalcon/mvc/model/metadatainterface.zep @@ -58,7 +58,7 @@ interface MetaDataInterface /** * Reads the ordered/reversed column map for certain model */ - public function readColumnMap(<ModelInterface> model) -> array; + public function readColumnMap(<ModelInterface> model) -> array | null; /** * Reads column-map information for certain model using a MODEL_* constant @@ -153,12 +153,12 @@ interface MetaDataInterface /** * Check if a model has certain attribute */ - public function hasAttribute(<ModelInterface> model, string attribute) -> boolean; + public function hasAttribute(<ModelInterface> model, string attribute) -> bool; /** * Checks if the internal meta-data container is empty */ - public function isEmpty() -> boolean; + public function isEmpty() -> bool; /** * Resets internal meta-data in order to regenerate it diff --git a/phalcon/mvc/model/query.zep b/phalcon/mvc/model/query.zep index 2ae747a0c98..d702204e137 100644 --- a/phalcon/mvc/model/query.zep +++ b/phalcon/mvc/model/query.zep @@ -211,7 +211,7 @@ class Query implements QueryInterface, InjectionAwareInterface /** * Tells to the query if only the first row in the resultset must be returned */ - public function setUniqueRow(boolean uniqueRow) -> <Query> + public function setUniqueRow(bool uniqueRow) -> <QueryInterface> { let this->_uniqueRow = uniqueRow; return this; @@ -220,7 +220,7 @@ class Query implements QueryInterface, InjectionAwareInterface /** * Check if the query is programmed to get only the first row in the resultset */ - public function getUniqueRow() -> boolean + public function getUniqueRow() -> bool { return this->_uniqueRow; } @@ -472,7 +472,7 @@ class Query implements QueryInterface, InjectionAwareInterface /** * Resolves an expression from its intermediate code into a string */ - protected final function _getExpression(array expr, boolean quoting = true) -> string + protected final function _getExpression(array expr, bool quoting = true) -> string { var exprType, exprLeft, exprRight, left = null, right = null, listItems, exprListItem, exprReturn, tempNotQuoting, value, escapedValue, exprValue, @@ -2103,7 +2103,7 @@ class Query implements QueryInterface, InjectionAwareInterface var ast, qualifiedName, nsAlias, manager, modelName, model, source, schema, exprValues, exprValue, sqlInsert, metaData, fields, sqlFields, field, name, realModelName; - boolean notQuoting; + bool notQuoting; let ast = this->_ast; @@ -2196,7 +2196,7 @@ class Query implements QueryInterface, InjectionAwareInterface table, qualifiedName, modelName, model, source, schema, alias, sqlFields, sqlValues, updateValues, updateValue, exprColumn, sqlUpdate, where, limit; - boolean notQuoting; + bool notQuoting; let ast = this->_ast; @@ -2529,7 +2529,7 @@ class Query implements QueryInterface, InjectionAwareInterface /** * Executes the SELECT intermediate representation producing a Phalcon\Mvc\Model\Resultset */ - protected final function _executeSelect(array intermediate, var bindParams, var bindTypes, boolean simulate = false) -> <ResultsetInterface> | array + protected final function _executeSelect(array intermediate, var bindParams, var bindTypes, bool simulate = false) -> <ResultsetInterface> | array { var manager, modelName, models, model, connection, connectionTypes, @@ -2538,7 +2538,7 @@ class Query implements QueryInterface, InjectionAwareInterface columnAlias, sqlAlias, dialect, sqlSelect, bindCounts, processed, wildcard, value, processedTypes, typeWildcard, result, resultData, cache, resultObject, columns1, typesColumnMap, wildcardValue, resultsetClassName; - boolean haveObjects, haveScalars, isComplex, isSimpleStd, isKeepingSnapshots; + bool haveObjects, haveScalars, isComplex, isSimpleStd, isKeepingSnapshots; int numberObjects; let manager = this->_manager; @@ -2655,7 +2655,7 @@ class Query implements QueryInterface, InjectionAwareInterface columns1[aliasCopy]["columnMap"] = columnMap; // Check if the model keeps snapshots - let isKeepingSnapshots = (boolean) manager->isKeepingSnapshots(instance); + let isKeepingSnapshots = (bool) manager->isKeepingSnapshots(instance); if isKeepingSnapshots { let columns1[aliasCopy]["keepSnapshots"] = isKeepingSnapshots; } @@ -2828,7 +2828,7 @@ class Query implements QueryInterface, InjectionAwareInterface /** * Check if the model keeps snapshots */ - let isKeepingSnapshots = (boolean) manager->isKeepingSnapshots(resultObject); + let isKeepingSnapshots = (bool) manager->isKeepingSnapshots(resultObject); } if resultObject instanceof ModelInterface && method_exists(resultObject, "getResultsetClass") { @@ -2871,7 +2871,7 @@ class Query implements QueryInterface, InjectionAwareInterface fields, columnMap, dialect, insertValues, number, value, model, values, exprValue, insertValue, wildcard, fieldName, attributeName, insertModel; - boolean automaticFields; + bool automaticFields; let modelName = intermediate["model"]; @@ -3444,7 +3444,7 @@ class Query implements QueryInterface, InjectionAwareInterface /** * Sets the type of PHQL statement to be executed */ - public function setType(int type) -> <Query> + public function setType(int type) -> <QueryInterface> { let this->_type = type; return this; @@ -3461,7 +3461,7 @@ class Query implements QueryInterface, InjectionAwareInterface /** * Set default bind parameters */ - public function setBindParams(array! bindParams, boolean merge = false) -> <Query> + public function setBindParams(array! bindParams, bool merge = false) -> <QueryInterface> { var currentBindParams; @@ -3490,7 +3490,7 @@ class Query implements QueryInterface, InjectionAwareInterface /** * Set default bind parameters */ - public function setBindTypes(array! bindTypes, boolean merge = false) -> <Query> + public function setBindTypes(array! bindTypes, bool merge = false) -> <QueryInterface> { var currentBindTypes; @@ -3511,7 +3511,7 @@ class Query implements QueryInterface, InjectionAwareInterface /** * Set SHARED LOCK clause */ - public function setSharedLock(boolean sharedLock = false) -> <Query> + public function setSharedLock(bool sharedLock = false) -> <QueryInterface> { let this->_sharedLock = sharedLock; @@ -3529,7 +3529,7 @@ class Query implements QueryInterface, InjectionAwareInterface /** * Allows to set the IR to be executed */ - public function setIntermediate(array! intermediate) -> <Query> + public function setIntermediate(array! intermediate) -> <QueryInterface> { let this->_intermediate = intermediate; return this; @@ -3546,7 +3546,7 @@ class Query implements QueryInterface, InjectionAwareInterface /** * Sets the cache parameters of the query */ - public function cache(array cacheOptions) -> <Query> + public function cache(array cacheOptions) -> <QueryInterface> { let this->_cacheOptions = cacheOptions; return this; @@ -3636,7 +3636,7 @@ class Query implements QueryInterface, InjectionAwareInterface /** * allows to wrap a transaction around all queries */ - public function setTransaction(<TransactionInterface> transaction) -> <Query> + public function setTransaction(<TransactionInterface> transaction) -> <QueryInterface> { let this->_transaction = transaction; return this; diff --git a/phalcon/mvc/model/query/builder.zep b/phalcon/mvc/model/query/builder.zep index 056794ba839..be38a15acee 100644 --- a/phalcon/mvc/model/query/builder.zep +++ b/phalcon/mvc/model/query/builder.zep @@ -277,7 +277,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface /** * Sets the DependencyInjector container */ - public function setDI(<DiInterface> dependencyInjector) -> <Builder> + public function setDI(<DiInterface> dependencyInjector) -> <BuilderInterface> { let this->_dependencyInjector = dependencyInjector; return this; @@ -299,7 +299,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * $builder->distinct(null); *</code> */ - public function distinct(var distinct) -> <Builder> + public function distinct(var distinct) -> <BuilderInterface> { let this->_distinct = distinct; return this; @@ -308,7 +308,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface /** * Returns SELECT DISTINCT / SELECT ALL flag */ - public function getDistinct() -> boolean + public function getDistinct() -> bool { return this->_distinct; } @@ -334,7 +334,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * ); *</code> */ - public function columns(var columns) -> <Builder> + public function columns(var columns) -> <BuilderInterface> { let this->_columns = columns; return this; @@ -371,7 +371,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * ); *</code> */ - public function from(var models) -> <Builder> + public function from(var models) -> <BuilderInterface> { let this->_models = models; return this; @@ -388,7 +388,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * $builder->addFrom("Robots", "r"); *</code> */ - public function addFrom(string model, string alias = null) -> <Builder> + public function addFrom(string model, string alias = null) -> <BuilderInterface> { var models, currentModel; @@ -439,7 +439,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * $builder->join("Robots", "r.id = RobotsParts.robots_id", "r", "LEFT"); *</code> */ - public function join(string! model, string conditions = null, string alias = null, string type = null) -> <Builder> + public function join(string! model, string conditions = null, string alias = null, string type = null) -> <BuilderInterface> { let this->_joins[] = [model, conditions, alias, type]; return this; @@ -459,7 +459,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * $builder->innerJoin("Robots", "r.id = RobotsParts.robots_id", "r"); *</code> */ - public function innerJoin(string! model, string conditions = null, string alias = null) -> <Builder> + public function innerJoin(string! model, string conditions = null, string alias = null) -> <BuilderInterface> { let this->_joins[] = [model, conditions, alias, "INNER"]; return this; @@ -472,7 +472,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * $builder->leftJoin("Robots", "r.id = RobotsParts.robots_id", "r"); *</code> */ - public function leftJoin(string! model, string conditions = null, string alias = null) -> <Builder> + public function leftJoin(string! model, string conditions = null, string alias = null) -> <BuilderInterface> { let this->_joins[] = [model, conditions, alias, "LEFT"]; return this; @@ -485,7 +485,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * $builder->rightJoin("Robots", "r.id = RobotsParts.robots_id", "r"); *</code> */ - public function rightJoin(string! model, string conditions = null, string alias = null) -> <Builder> + public function rightJoin(string! model, string conditions = null, string alias = null) -> <BuilderInterface> { let this->_joins[] = [model, conditions, alias, "RIGHT"]; return this; @@ -516,7 +516,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * ); *</code> */ - public function where(string conditions, array bindParams = [], array bindTypes = []) -> <Builder> + public function where(string conditions, array bindParams = [], array bindTypes = []) -> <BuilderInterface> { var currentBindParams, currentBindTypes; @@ -564,7 +564,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * ); *</code> */ - public function andWhere(string! conditions, array bindParams = [], array bindTypes = []) -> <Builder> + public function andWhere(string! conditions, array bindParams = [], array bindTypes = []) -> <BuilderInterface> { var currentConditions; @@ -595,7 +595,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * ); *</code> */ - public function orWhere(string! conditions, array bindParams = [], array bindTypes = []) -> <Builder> + public function orWhere(string! conditions, array bindParams = [], array bindTypes = []) -> <BuilderInterface> { var currentConditions; @@ -618,7 +618,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * $builder->betweenWhere("price", 100.25, 200.50); *</code> */ - public function betweenWhere(string! expr, var minimum, var maximum, string! operator = BuilderInterface::OPERATOR_AND) -> <Builder> + public function betweenWhere(string! expr, var minimum, var maximum, string! operator = BuilderInterface::OPERATOR_AND) -> <BuilderInterface> { return this->_conditionBetween("Where", operator, expr, minimum, maximum); } @@ -630,7 +630,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * $builder->notBetweenWhere("price", 100.25, 200.50); *</code> */ - public function notBetweenWhere(string! expr, var minimum, var maximum, string! operator = BuilderInterface::OPERATOR_AND) -> <Builder> + public function notBetweenWhere(string! expr, var minimum, var maximum, string! operator = BuilderInterface::OPERATOR_AND) -> <BuilderInterface> { return this->_conditionNotBetween("Where", operator, expr, minimum, maximum); } @@ -642,7 +642,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * $builder->inWhere("id", [1, 2, 3]); *</code> */ - public function inWhere(string! expr, array! values, string! operator = BuilderInterface::OPERATOR_AND) -> <Builder> + public function inWhere(string! expr, array! values, string! operator = BuilderInterface::OPERATOR_AND) -> <BuilderInterface> { return this->_conditionIn("Where", operator, expr, values); } @@ -654,7 +654,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * $builder->notInWhere("id", [1, 2, 3]); *</code> */ - public function notInWhere(string! expr, array! values, string! operator = BuilderInterface::OPERATOR_AND) -> <Builder> + public function notInWhere(string! expr, array! values, string! operator = BuilderInterface::OPERATOR_AND) -> <BuilderInterface> { return this->_conditionNotIn("Where", operator, expr, values); } @@ -680,7 +680,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * * @param string|array orderBy */ - public function orderBy(var orderBy) -> <Builder> + public function orderBy(var orderBy) -> <BuilderInterface> { let this->_order = orderBy; return this; @@ -715,7 +715,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * @param array bindTypes * @return \Phalcon\Mvc\Model\Query\Builder */ - public function having(var conditions, var bindParams = null, var bindTypes = null) -> <Builder> + public function having(var conditions, var bindParams = null, var bindTypes = null) -> <BuilderInterface> { var currentBindParams, currentBindTypes; @@ -767,7 +767,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * @param array bindTypes * @return \Phalcon\Mvc\Model\Query\Builder */ - public function andHaving(string! conditions, var bindParams = null, var bindTypes = null) -> <Builder> + public function andHaving(string! conditions, var bindParams = null, var bindTypes = null) -> <BuilderInterface> { var currentConditions; @@ -802,7 +802,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * @param array bindTypes * @return \Phalcon\Mvc\Model\Query\Builder */ - public function orHaving(string! conditions, var bindParams = null, var bindTypes = null) -> <Builder> + public function orHaving(string! conditions, var bindParams = null, var bindTypes = null) -> <BuilderInterface> { var currentConditions; @@ -825,7 +825,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * $builder->betweenHaving("SUM(Robots.price)", 100.25, 200.50); *</code> */ - public function betweenHaving(string! expr, var minimum, var maximum, string! operator = BuilderInterface::OPERATOR_AND) -> <Builder> + public function betweenHaving(string! expr, var minimum, var maximum, string! operator = BuilderInterface::OPERATOR_AND) -> <BuilderInterface> { return this->_conditionBetween("Having", operator, expr, minimum, maximum); } @@ -837,7 +837,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * $builder->notBetweenHaving("SUM(Robots.price)", 100.25, 200.50); *</code> */ - public function notBetweenHaving(string! expr, var minimum, var maximum, string! operator = BuilderInterface::OPERATOR_AND) -> <Builder> + public function notBetweenHaving(string! expr, var minimum, var maximum, string! operator = BuilderInterface::OPERATOR_AND) -> <BuilderInterface> { return this->_conditionNotBetween("Having", operator, expr, minimum, maximum); } @@ -849,7 +849,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * $builder->inHaving("SUM(Robots.price)", [100, 200]); *</code> */ - public function inHaving(string! expr, array! values, string! operator = BuilderInterface::OPERATOR_AND) -> <Builder> + public function inHaving(string! expr, array! values, string! operator = BuilderInterface::OPERATOR_AND) -> <BuilderInterface> { return this->_conditionIn("Having", operator, expr, values); } @@ -861,7 +861,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * $builder->notInHaving("SUM(Robots.price)", [100, 200]); *</code> */ - public function notInHaving(string! expr, array! values, string! operator = BuilderInterface::OPERATOR_AND) -> <Builder> + public function notInHaving(string! expr, array! values, string! operator = BuilderInterface::OPERATOR_AND) -> <BuilderInterface> { return this->_conditionNotIn("Having", operator, expr, values); } @@ -881,7 +881,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * $builder->forUpdate(true); *</code> */ - public function forUpdate(boolean forUpdate) -> <Builder> + public function forUpdate(bool forUpdate) -> <BuilderInterface> { let this->_forUpdate = forUpdate; return this; @@ -896,7 +896,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * $builder->limit("100", "20"); * </code> */ - public function limit(int limit, var offset = null) -> <Builder> + public function limit(int limit, var offset = null) -> <BuilderInterface> { let limit = abs(limit); @@ -957,7 +957,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface * * @param string|array group */ - public function groupBy(var group) -> <Builder> + public function groupBy(var group) -> <BuilderInterface> { let this->_group = group; return this; @@ -983,7 +983,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface joins, join, joinModel, joinConditions, joinAlias, joinType, group, groupItems, groupItem, having, order, orderItems, orderItem, limit, number, offset, forUpdate, distinct; - boolean noPrimary; + bool noPrimary; let dependencyInjector = this->_dependencyInjector; if typeof dependencyInjector != "object" { @@ -1061,7 +1061,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface } let distinct = this->_distinct; - if typeof distinct != "null" && typeof distinct == "bool" { + if typeof distinct != "null" && typeof distinct == "boolean" { if distinct { let phql = "SELECT DISTINCT "; } else { @@ -1373,7 +1373,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface /** * Appends a BETWEEN condition */ - protected function _conditionBetween(string! clause, string! operator, string! expr, var minimum, var maximum) -> <Builder> + protected function _conditionBetween(string! clause, string! operator, string! expr, var minimum, var maximum) -> <BuilderInterface> { var hiddenParam, nextHiddenParam, minimumKey, maximumKey, operatorMethod; @@ -1412,7 +1412,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface /** * Appends a NOT BETWEEN condition */ - protected function _conditionNotBetween(string! clause, string! operator, string! expr, var minimum, var maximum) -> <Builder> + protected function _conditionNotBetween(string! clause, string! operator, string! expr, var minimum, var maximum) -> <BuilderInterface> { var hiddenParam, nextHiddenParam, minimumKey, maximumKey, operatorMethod; @@ -1450,7 +1450,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface /** * Appends an IN condition */ - protected function _conditionIn(string! clause, string! operator, string! expr, array! values) -> <Builder> + protected function _conditionIn(string! clause, string! operator, string! expr, array! values) -> <BuilderInterface> { var key, queryKey, value, bindKeys, bindParams, operatorMethod; int hiddenParam; @@ -1495,7 +1495,7 @@ class Builder implements BuilderInterface, InjectionAwareInterface /** * Appends a NOT IN condition */ - protected function _conditionNotIn(string! clause, string! operator, string! expr, array! values) -> <Builder> + protected function _conditionNotIn(string! clause, string! operator, string! expr, array! values) -> <BuilderInterface> { var key, queryKey, value, bindKeys, bindParams, operatorMethod; int hiddenParam; diff --git a/phalcon/mvc/model/query/builderinterface.zep b/phalcon/mvc/model/query/builderinterface.zep index 6c694f305c2..ee0edb19731 100644 --- a/phalcon/mvc/model/query/builderinterface.zep +++ b/phalcon/mvc/model/query/builderinterface.zep @@ -18,6 +18,8 @@ namespace Phalcon\Mvc\Model\Query; +use Phalcon\Mvc\Model\QueryInterface; + /** * Phalcon\Mvc\Model\Query\BuilderInterface * diff --git a/phalcon/mvc/model/query/status.zep b/phalcon/mvc/model/query/status.zep index ceeea5264c0..9a22b92ed50 100644 --- a/phalcon/mvc/model/query/status.zep +++ b/phalcon/mvc/model/query/status.zep @@ -60,7 +60,7 @@ class Status implements StatusInterface /** * Phalcon\Mvc\Model\Query\Status */ - public function __construct(boolean success, <ModelInterface> model = null) + public function __construct(bool success, <ModelInterface> model = null) { let this->_success = success, this->_model = model; @@ -90,7 +90,7 @@ class Status implements StatusInterface /** * Allows to check if the executed operation was successful */ - public function success() -> boolean + public function success() -> bool { return this->_success; } diff --git a/phalcon/mvc/model/query/statusinterface.zep b/phalcon/mvc/model/query/statusinterface.zep index 8b7b4a731e3..3ab0d60a107 100644 --- a/phalcon/mvc/model/query/statusinterface.zep +++ b/phalcon/mvc/model/query/statusinterface.zep @@ -42,5 +42,5 @@ interface StatusInterface /** * Allows to check if the executed operation was successful */ - public function success() -> boolean; + public function success() -> bool; } diff --git a/phalcon/mvc/model/queryinterface.zep b/phalcon/mvc/model/queryinterface.zep index 306ea9dd864..82950d734d2 100644 --- a/phalcon/mvc/model/queryinterface.zep +++ b/phalcon/mvc/model/queryinterface.zep @@ -46,12 +46,12 @@ interface QueryInterface /** * Tells to the query if only the first row in the resultset must be returned */ - public function setUniqueRow(boolean uniqueRow) -> <QueryInterface>; + public function setUniqueRow(bool uniqueRow) -> <QueryInterface>; /** * Check if the query is programmed to get only the first row in the resultset */ - public function getUniqueRow() -> boolean; + public function getUniqueRow() -> bool; /** * Executes a parsed PHQL statement diff --git a/phalcon/mvc/model/relation.zep b/phalcon/mvc/model/relation.zep index b92e27f80ce..30e44460ad8 100644 --- a/phalcon/mvc/model/relation.zep +++ b/phalcon/mvc/model/relation.zep @@ -153,7 +153,7 @@ class Relation implements RelationInterface /** * Check whether the relation act as a foreign key */ - public function isForeignKey() -> boolean + public function isForeignKey() -> bool { return isset this->_options["foreignKey"]; } @@ -199,7 +199,7 @@ class Relation implements RelationInterface /** * Check whether the relation is a 'many-to-many' relation or not */ - public function isThrough() -> boolean + public function isThrough() -> bool { var type; let type = this->_type; @@ -209,7 +209,7 @@ class Relation implements RelationInterface /** * Check if records returned by getting belongs-to/has-many are implicitly cached during the current request */ - public function isReusable() -> boolean + public function isReusable() -> bool { var options, reusable; let options = this->_options; diff --git a/phalcon/mvc/model/relationinterface.zep b/phalcon/mvc/model/relationinterface.zep index 1efc6d4b1fa..f469457ab93 100644 --- a/phalcon/mvc/model/relationinterface.zep +++ b/phalcon/mvc/model/relationinterface.zep @@ -37,7 +37,7 @@ interface RelationInterface /** * Check if records returned by getting belongs-to/has-many are implicitly cached during the current request */ - public function isReusable() -> boolean; + public function isReusable() -> bool; /** * Returns the relations type @@ -79,7 +79,7 @@ interface RelationInterface /** * Check whether the relation act as a foreign key */ - public function isForeignKey() -> boolean; + public function isForeignKey() -> bool; /** * Returns the foreign key configuration @@ -91,7 +91,7 @@ interface RelationInterface /** * Check whether the relation is a 'many-to-many' relation or not */ - public function isThrough() -> boolean; + public function isThrough() -> bool; /** * Gets the intermediate fields for has-*-through relations diff --git a/phalcon/mvc/model/resultinterface.zep b/phalcon/mvc/model/resultinterface.zep index b4e130b5659..aea9d3c405d 100644 --- a/phalcon/mvc/model/resultinterface.zep +++ b/phalcon/mvc/model/resultinterface.zep @@ -19,6 +19,8 @@ namespace Phalcon\Mvc\Model; +use Phalcon\Mvc\ModelInterface; + /** * Phalcon\Mvc\Model\ResultInterface * @@ -30,5 +32,5 @@ interface ResultInterface /** * Sets the object's state */ - public function setDirtyState(boolean dirtyState); + public function setDirtyState(int dirtyState) -> <ModelInterface> | bool; } diff --git a/phalcon/mvc/model/resultset.zep b/phalcon/mvc/model/resultset.zep index 15989909bdf..b2d96a76a5b 100644 --- a/phalcon/mvc/model/resultset.zep +++ b/phalcon/mvc/model/resultset.zep @@ -182,7 +182,7 @@ abstract class Resultset /** * Check whether internal resource has rows to fetch */ - public function valid() -> boolean + public function valid() -> bool { return this->_pointer < this->_count; } @@ -211,7 +211,7 @@ abstract class Resultset * Changes the internal pointer to a specific position in the resultset. * Set the new position if required, and then set this->_row */ - public final function seek(int position) -> void + public final function seek(var position) -> void { var result, row; @@ -277,7 +277,7 @@ abstract class Resultset /** * Checks whether offset exists in the resultset */ - public function offsetExists(int index) -> boolean + public function offsetExists(var index) -> bool { return index < this->_count; } @@ -285,7 +285,7 @@ abstract class Resultset /** * Gets row in a specific position of the resultset */ - public function offsetGet(int! index) -> <ModelInterface> | boolean + public function offsetGet(var index) -> <ModelInterface> | bool { if index < this->_count { /** @@ -305,7 +305,7 @@ abstract class Resultset * @param int index * @param \Phalcon\Mvc\ModelInterface value */ - public function offsetSet(var index, var value) + public function offsetSet(var index, var value) -> void { throw new Exception("Cursor is an immutable ArrayAccess object"); } @@ -313,7 +313,7 @@ abstract class Resultset /** * Resultsets cannot be changed. It has only been implemented to meet the definition of the ArrayAccess interface */ - public function offsetUnset(int offset) + public function offsetUnset(var offset) -> void { throw new Exception("Cursor is an immutable ArrayAccess object"); } @@ -329,7 +329,7 @@ abstract class Resultset /** * Get first row in the resultset */ - public function getFirst() -> <ModelInterface> | boolean + public function getFirst() -> <ModelInterface> | bool { if this->_count == 0 { return false; @@ -342,7 +342,7 @@ abstract class Resultset /** * Get last row in the resultset */ - public function getLast() -> <ModelInterface> | boolean + public function getLast() -> <ModelInterface> | bool { var count; let count = this->_count; @@ -357,7 +357,7 @@ abstract class Resultset /** * Set if the resultset is fresh or an old one cached */ - public function setIsFresh(boolean isFresh) -> <Resultset> + public function setIsFresh(bool isFresh) -> <Resultset> { let this->_isFresh = isFresh; return this; @@ -366,7 +366,7 @@ abstract class Resultset /** * Tell if the resultset if fresh or an old one cached */ - public function isFresh() -> boolean + public function isFresh() -> bool { return this->_isFresh; } @@ -409,9 +409,9 @@ abstract class Resultset * * @param array data */ - public function update(var data, <\Closure> conditionCallback = null) -> boolean + public function update(var data, <\Closure> conditionCallback = null) -> bool { - boolean transaction; + bool transaction; var record, connection = null; let transaction = false; @@ -481,9 +481,9 @@ abstract class Resultset /** * Deletes every record in the resultset */ - public function delete(<\Closure> conditionCallback = null) -> boolean + public function delete(<\Closure> conditionCallback = null) -> bool { - boolean result, transaction; + bool result, transaction; var record, connection = null; let result = true; diff --git a/phalcon/mvc/model/resultset/complex.zep b/phalcon/mvc/model/resultset/complex.zep index 88b53599d2d..279e748b1a3 100644 --- a/phalcon/mvc/model/resultset/complex.zep +++ b/phalcon/mvc/model/resultset/complex.zep @@ -63,7 +63,7 @@ class Complex extends Resultset implements ResultsetInterface /** * Returns current row in the resultset */ - public final function current() -> <ModelInterface> | boolean + public final function current() -> <ModelInterface> | bool { var row, hydrateMode, eager, dirtyState, alias, activeRow, type, column, columnValue, @@ -307,7 +307,7 @@ class Complex extends Resultset implements ResultsetInterface /** * Unserializing a resultset will allow to only works on the rows present in the saved state */ - public function unserialize(string! data) -> void + public function unserialize(var data) -> void { var resultset, dependencyInjector, serializer; /** diff --git a/phalcon/mvc/model/resultset/simple.zep b/phalcon/mvc/model/resultset/simple.zep index cc1ed6d0de2..9fdc35e8ec9 100644 --- a/phalcon/mvc/model/resultset/simple.zep +++ b/phalcon/mvc/model/resultset/simple.zep @@ -49,7 +49,7 @@ class Simple extends Resultset * @param array columnMap * @param \Phalcon\Mvc\ModelInterface|Phalcon\Mvc\Model\Row model */ - public function __construct(var columnMap, var model, result, <BackendInterface> cache = null, boolean keepSnapshots = null) + public function __construct(var columnMap, var model, result, <BackendInterface> cache = null, bool keepSnapshots = null) { let this->_model = model, this->_columnMap = columnMap; @@ -65,7 +65,7 @@ class Simple extends Resultset /** * Returns current row in the resultset */ - public final function current() -> <ModelInterface> | boolean + public final function current() -> <ModelInterface> | bool { var row, hydrateMode, columnMap, activeRow, modelName; @@ -151,7 +151,7 @@ class Simple extends Resultset * it could consume more memory than currently it does. Export the resultset to an array * couldn't be faster with a large number of records */ - public function toArray(boolean renameColumns = true) -> array + public function toArray(bool renameColumns = true) -> array { var result, records, record, renamed, renamedKey, key, value, renamedRecords, columnMap; @@ -260,7 +260,7 @@ class Simple extends Resultset /** * Unserializing a resultset will allow to only works on the rows present in the saved state */ - public function unserialize(string! data) -> void + public function unserialize(var data) -> void { var resultset, keepSnapshots, dependencyInjector, serializer; let dependencyInjector = Di::getDefault(); diff --git a/phalcon/mvc/model/resultsetinterface.zep b/phalcon/mvc/model/resultsetinterface.zep index e4548f88698..0930c3c2663 100644 --- a/phalcon/mvc/model/resultsetinterface.zep +++ b/phalcon/mvc/model/resultsetinterface.zep @@ -19,6 +19,8 @@ namespace Phalcon\Mvc\Model; +use Phalcon\Cache\BackendInterface; + /** * Phalcon\Mvc\Model\ResultsetInterface * @@ -35,22 +37,22 @@ interface ResultsetInterface /** * Get first row in the resultset */ - public function getFirst() -> <ModelInterface> | boolean; + public function getFirst() -> <ModelInterface> | bool; /** * Get last row in the resultset */ - public function getLast() -> <ModelInterface> | boolean; + public function getLast() -> <ModelInterface> | bool; /** * Set if the resultset is fresh or an old one cached */ - public function setIsFresh(boolean isFresh); + public function setIsFresh(bool isFresh); /** * Tell if the resultset if fresh or an old one cached */ - public function isFresh() -> boolean; + public function isFresh() -> bool; /** * Returns the associated cache for the resultset diff --git a/phalcon/mvc/model/row.zep b/phalcon/mvc/model/row.zep index c3bd955cb05..cf8e38cd95e 100644 --- a/phalcon/mvc/model/row.zep +++ b/phalcon/mvc/model/row.zep @@ -36,7 +36,7 @@ class Row implements EntityInterface, ResultInterface, \ArrayAccess, \JsonSerial /** * Set the current object's state */ - public function setDirtyState(int dirtyState) -> boolean + public function setDirtyState(int dirtyState) -> <ModelInterface> | bool { return false; } @@ -46,7 +46,7 @@ class Row implements EntityInterface, ResultInterface, \ArrayAccess, \JsonSerial * * @param string|int $index */ - public function offsetExists(var index) -> boolean + public function offsetExists(var index) -> bool { return isset this->{index}; } @@ -57,7 +57,7 @@ class Row implements EntityInterface, ResultInterface, \ArrayAccess, \JsonSerial * @param string|int index * @return string|Phalcon\Mvc\ModelInterface */ - public function offsetGet(var index) + public function offsetGet(var index) -> var { var value; if fetch value, this->{index} { @@ -72,7 +72,7 @@ class Row implements EntityInterface, ResultInterface, \ArrayAccess, \JsonSerial * @param string|int index * @param \Phalcon\Mvc\ModelInterface value */ - public function offsetSet(var index, var value) + public function offsetSet(var index, var value) -> void { throw new Exception("Row is an immutable ArrayAccess object"); } @@ -82,7 +82,7 @@ class Row implements EntityInterface, ResultInterface, \ArrayAccess, \JsonSerial * * @param string|int offset */ - public function offsetUnset(int offset) + public function offsetUnset(var offset) -> void { throw new Exception("Row is an immutable ArrayAccess object"); } diff --git a/phalcon/mvc/model/transaction.zep b/phalcon/mvc/model/transaction.zep index db549aee44c..39e8e002105 100644 --- a/phalcon/mvc/model/transaction.zep +++ b/phalcon/mvc/model/transaction.zep @@ -87,7 +87,7 @@ class Transaction implements TransactionInterface /** * Phalcon\Mvc\Model\Transaction constructor */ - public function __construct(<DiInterface> dependencyInjector, boolean autoBegin = false, string service = null) + public function __construct(<DiInterface> dependencyInjector, bool autoBegin = false, string service = null) { var connection; @@ -116,7 +116,7 @@ class Transaction implements TransactionInterface /** * Starts the transaction */ - public function begin() -> boolean + public function begin() -> bool { return this->_connection->begin(); } @@ -124,7 +124,7 @@ class Transaction implements TransactionInterface /** * Commits the transaction */ - public function commit() -> boolean + public function commit() -> bool { var manager; @@ -139,7 +139,7 @@ class Transaction implements TransactionInterface /** * Rollbacks the transaction */ - public function rollback(string rollbackMessage = null, <ModelInterface> rollbackRecord = null) -> boolean + public function rollback(string rollbackMessage = null, <ModelInterface> rollbackRecord = null) -> bool { var manager, connection; @@ -178,7 +178,7 @@ class Transaction implements TransactionInterface /** * Sets if is a reused transaction or new once */ - public function setIsNewTransaction(boolean isNew) + public function setIsNewTransaction(bool isNew) { let this->_isNewTransaction = isNew; } @@ -186,7 +186,7 @@ class Transaction implements TransactionInterface /** * Sets flag to rollback on abort the HTTP connection */ - public function setRollbackOnAbort(boolean rollbackOnAbort) + public function setRollbackOnAbort(bool rollbackOnAbort) { let this->_rollbackOnAbort = rollbackOnAbort; } @@ -194,7 +194,7 @@ class Transaction implements TransactionInterface /** * Checks whether transaction is managed by a transaction manager */ - public function isManaged() -> boolean + public function isManaged() -> bool { return typeof this->_manager == "object"; } @@ -210,7 +210,7 @@ class Transaction implements TransactionInterface /** * Checks whether internal connection is under an active transaction */ - public function isValid() -> boolean + public function isValid() -> bool { return this->_connection->isUnderTransaction(); } diff --git a/phalcon/mvc/model/transaction/manager.zep b/phalcon/mvc/model/transaction/manager.zep index eebfcaddd71..32eb2acd91a 100644 --- a/phalcon/mvc/model/transaction/manager.zep +++ b/phalcon/mvc/model/transaction/manager.zep @@ -139,7 +139,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface /** * Set if the transaction manager must register a shutdown function to clean up pendent transactions */ - public function setRollbackPendent(boolean rollbackPendent) -> <Manager> + public function setRollbackPendent(bool rollbackPendent) -> <Manager> { let this->_rollbackPendent = rollbackPendent; return this; @@ -148,7 +148,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface /** * Check if the transaction manager is registering a shutdown function to clean up pendent transactions */ - public function getRollbackPendent() -> boolean + public function getRollbackPendent() -> bool { return this->_rollbackPendent; } @@ -156,7 +156,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface /** * Checks whether the manager has an active transaction */ - public function has() -> boolean + public function has() -> bool { return this->_number > 0; } @@ -165,7 +165,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface * Returns a new \Phalcon\Mvc\Model\Transaction or an already created once * This method registers a shutdown function to rollback active connections */ - public function get(boolean autoBegin = true) -> <TransactionInterface> + public function get(bool autoBegin = true) -> <TransactionInterface> { if !this->_initialized { if this->_rollbackPendent { @@ -179,7 +179,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface /** * Create/Returns a new transaction or an existing one */ - public function getOrCreateTransaction(boolean autoBegin = true) -> <TransactionInterface> + public function getOrCreateTransaction(bool autoBegin = true) -> <TransactionInterface> { var dependencyInjector, transaction, transactions; @@ -237,7 +237,7 @@ class Manager implements ManagerInterface, InjectionAwareInterface * Rollbacks active transactions within the manager * Collect will remove the transaction from the manager */ - public function rollback(boolean collect = true) + public function rollback(bool collect = true) { var transactions, transaction, connection; diff --git a/phalcon/mvc/model/transaction/managerinterface.zep b/phalcon/mvc/model/transaction/managerinterface.zep index d2b8260f101..e32d52afb1e 100644 --- a/phalcon/mvc/model/transaction/managerinterface.zep +++ b/phalcon/mvc/model/transaction/managerinterface.zep @@ -31,12 +31,12 @@ interface ManagerInterface /** * Checks whether manager has an active transaction */ - public function has() -> boolean; + public function has() -> bool; /** * Returns a new \Phalcon\Mvc\Model\Transaction or an already created once */ - public function get(boolean autoBegin = true) -> <\Phalcon\Mvc\Model\TransactionInterface>; + public function get(bool autoBegin = true) -> <\Phalcon\Mvc\Model\TransactionInterface>; /** * Rollbacks active transactions within the manager @@ -52,7 +52,7 @@ interface ManagerInterface * Rollbacks active transactions within the manager * Collect will remove transaction from the manager */ - public function rollback(boolean collect = false); + public function rollback(bool collect = false); /** * Notifies the manager about a rollbacked transaction diff --git a/phalcon/mvc/model/transactioninterface.zep b/phalcon/mvc/model/transactioninterface.zep index 475874126ae..c9fbb41ed24 100644 --- a/phalcon/mvc/model/transactioninterface.zep +++ b/phalcon/mvc/model/transactioninterface.zep @@ -37,17 +37,17 @@ interface TransactionInterface /** * Starts the transaction */ - public function begin() -> boolean; + public function begin() -> bool; /** * Commits the transaction */ - public function commit() -> boolean; + public function commit() -> bool; /** * Rollbacks the transaction */ - public function rollback(string rollbackMessage = null, <ModelInterface> rollbackRecord = null) -> boolean; + public function rollback(string rollbackMessage = null, <ModelInterface> rollbackRecord = null) -> bool; /** * Returns connection related to transaction @@ -57,17 +57,17 @@ interface TransactionInterface /** * Sets if is a reused transaction or new once */ - public function setIsNewTransaction(boolean isNew); + public function setIsNewTransaction(bool isNew); /** * Sets flag to rollback on abort the HTTP connection */ - public function setRollbackOnAbort(boolean rollbackOnAbort); + public function setRollbackOnAbort(bool rollbackOnAbort); /** * Checks whether transaction is managed by a transaction manager */ - public function isManaged() -> boolean; + public function isManaged() -> bool; /** * Returns validations messages from last save try @@ -77,7 +77,7 @@ interface TransactionInterface /** * Checks whether internal connection is under an active transaction */ - public function isValid() -> boolean; + public function isValid() -> bool; /** * Sets object which generates rollback action diff --git a/phalcon/mvc/modelinterface.zep b/phalcon/mvc/modelinterface.zep index 78f0cd5e14c..334a5299ede 100644 --- a/phalcon/mvc/modelinterface.zep +++ b/phalcon/mvc/modelinterface.zep @@ -58,7 +58,7 @@ interface ModelInterface * @param array columnMap * @return \Phalcon\Mvc\Model result */ - public static function cloneResultMap(base, array! data, var columnMap, int dirtyState = 0, boolean keepSnapshots = null) -> <ModelInterface>; + public static function cloneResultMap(base, array! data, var columnMap, int dirtyState = 0, bool keepSnapshots = null) -> <ModelInterface>; /** * Returns an hydrated result based on the data and the column map @@ -79,12 +79,12 @@ interface ModelInterface * Inserts a model instance. If the instance already exists in the persistence it will throw an exception * Returning true on success or false otherwise. */ - public function create() -> boolean; + public function create() -> bool; /** * Deletes a model instance. Returning true on success or false otherwise. */ - public function delete() -> boolean; + public function delete() -> bool; /** * Allows to query a set of records that match the specified conditions @@ -101,13 +101,13 @@ interface ModelInterface /** * Fires an event, implicitly calls behaviors and listeners in the events manager are notified */ - public function fireEvent(string! eventName) -> boolean; + public function fireEvent(string! eventName) -> bool; /** * Fires an event, implicitly calls behaviors and listeners in the events manager are notified - * This method stops if one of the callbacks/listeners returns boolean false + * This method stops if one of the callbacks/listeners returns bool false */ - public function fireEventCancel(string! eventName) -> boolean; + public function fireEventCancel(string! eventName) -> bool; /** * Returns one of the DIRTY_STATE_* constants telling if the record exists in the database or not @@ -196,7 +196,7 @@ interface ModelInterface /** * Inserts or updates a model instance. Returning true on success or false otherwise. */ - public function save() -> boolean; + public function save() -> bool; /** * Sets both read/write connection services @@ -206,7 +206,7 @@ interface ModelInterface /** * Sets the dirty state of the object using one of the DIRTY_STATE_* constants */ - public function setDirtyState(int dirtyState) -> <ModelInterface>; + public function setDirtyState(int dirtyState) -> <ModelInterface> | bool; /** * Sets the DependencyInjection connection service used to read data @@ -234,7 +234,7 @@ interface ModelInterface /** * Skips the current operation forcing a success state */ - public function skipOperation(boolean skip) -> void; + public function skipOperation(bool skip) -> void; /** * Allows to calculate a sum on a column that match the specified conditions @@ -247,11 +247,11 @@ interface ModelInterface /** * Check whether validation process has generated any messages */ - public function validationHasFailed() -> boolean; + public function validationHasFailed() -> bool; /** * Updates a model instance. If the instance doesn't exist in the persistence it will throw an exception * Returning true on success or false otherwise. */ - public function update() -> boolean; + public function update() -> bool; } diff --git a/phalcon/mvc/router.zep b/phalcon/mvc/router.zep index 41fa68a7071..e511da1da6f 100644 --- a/phalcon/mvc/router.zep +++ b/phalcon/mvc/router.zep @@ -108,7 +108,7 @@ class Router implements InjectionAwareInterface, RouterInterface, EventsAwareInt /** * Phalcon\Mvc\Router constructor */ - public function __construct(boolean! defaultRoutes = true) + public function __construct(bool! defaultRoutes = true) { array routes = []; @@ -166,7 +166,7 @@ class Router implements InjectionAwareInterface, RouterInterface, EventsAwareInt /** * Set whether router must remove the extra slashes in the handled routes */ - public function removeExtraSlashes(boolean! remove) -> <RouterInterface> + public function removeExtraSlashes(bool! remove) -> <RouterInterface> { let this->_removeExtraSlashes = remove; return this; @@ -887,7 +887,7 @@ class Router implements InjectionAwareInterface, RouterInterface, EventsAwareInt /** * Checks if the router matches any of the defined routes */ - public function wasMatched() -> boolean + public function wasMatched() -> bool { return this->_wasMatched; } @@ -903,7 +903,7 @@ class Router implements InjectionAwareInterface, RouterInterface, EventsAwareInt /** * Returns a route object by its id */ - public function getRouteById(var id) -> <RouteInterface> | boolean + public function getRouteById(var id) -> <RouteInterface> | bool { var route, routeId, key; @@ -925,7 +925,7 @@ class Router implements InjectionAwareInterface, RouterInterface, EventsAwareInt /** * Returns a route object by its name */ - public function getRouteByName(string! name) -> <RouteInterface> | boolean + public function getRouteByName(string! name) -> <RouteInterface> | bool { var route, routeName, key; @@ -949,7 +949,7 @@ class Router implements InjectionAwareInterface, RouterInterface, EventsAwareInt /** * Returns whether controller name should not be mangled */ - public function isExactControllerName() -> boolean + public function isExactControllerName() -> bool { return true; } diff --git a/phalcon/mvc/router/route.zep b/phalcon/mvc/router/route.zep index 531d3317915..1d16e8094f4 100644 --- a/phalcon/mvc/router/route.zep +++ b/phalcon/mvc/router/route.zep @@ -149,7 +149,7 @@ class Route implements RouteInterface * ); *</code> */ - public function via(var httpMethods) -> <Route> + public function via(var httpMethods) -> <RouteInterface> { let this->_methods = httpMethods; return this; @@ -158,11 +158,11 @@ class Route implements RouteInterface /** * Extracts parameters from a string */ - public function extractNamedParams(string! pattern) -> array | boolean + public function extractNamedParams(string! pattern) -> array | bool { char ch, prevCh = '\0'; var tmp, matches; - boolean notValid; + bool notValid; int cursor, cursorVar, marker, bracketCount = 0, parenthesesCount = 0, foundPattern = 0; int intermediate = 0, numberMatches = 0; string route, item, variable, regexp; @@ -448,7 +448,7 @@ class Route implements RouteInterface * )->setName("about"); *</code> */ - public function setName(string name) -> <Route> + public function setName(string name) -> <RouteInterface> { let this->_name = name; return this; @@ -478,7 +478,7 @@ class Route implements RouteInterface * ); *</code> */ - public function beforeMatch(var callback) -> <Route> + public function beforeMatch(var callback) -> <RouteInterface> { let this->_beforeMatch = callback; return this; @@ -506,7 +506,7 @@ class Route implements RouteInterface * ); *</code> */ - public function match(var callback) -> <Route> + public function match(var callback) -> <RouteInterface> { let this->_match = callback; return this; @@ -574,7 +574,7 @@ class Route implements RouteInterface * $route->setHttpMethods(["GET", "POST"]); *</code> */ - public function setHttpMethods(var httpMethods) -> <Route> + public function setHttpMethods(var httpMethods) -> <RouteInterface> { let this->_methods = httpMethods; return this; @@ -595,7 +595,7 @@ class Route implements RouteInterface * $route->setHostname("localhost"); *</code> */ - public function setHostname(string! hostname) -> <Route> + public function setHostname(string! hostname) -> <RouteInterface> { let this->_hostname = hostname; return this; @@ -612,7 +612,7 @@ class Route implements RouteInterface /** * Sets the group associated with the route */ - public function setGroup(<GroupInterface> group) -> <Route> + public function setGroup(<GroupInterface> group) -> <RouteInterface> { let this->_group = group; return this; @@ -629,7 +629,7 @@ class Route implements RouteInterface /** * {@inheritdoc} */ - public function convert(string! name, var converter) -> <Route> + public function convert(string! name, var converter) -> <RouteInterface> { let this->_converters[name] = converter; diff --git a/phalcon/mvc/routerinterface.zep b/phalcon/mvc/routerinterface.zep index 75ad47207fb..eb828a2c6a6 100644 --- a/phalcon/mvc/routerinterface.zep +++ b/phalcon/mvc/routerinterface.zep @@ -158,7 +158,7 @@ interface RouterInterface /** * Check if the router matches any of the defined routes */ - public function wasMatched() -> boolean; + public function wasMatched() -> bool; /** * Return all the routes defined in the router @@ -168,10 +168,10 @@ interface RouterInterface /** * Returns a route object by its id */ - public function getRouteById(var id) -> <RouteInterface>; + public function getRouteById(var id) -> <RouteInterface> | bool; /** * Returns a route object by its name */ - public function getRouteByName(string! name) -> <RouteInterface>; + public function getRouteByName(string! name) -> <RouteInterface> | bool; } diff --git a/phalcon/mvc/url.zep b/phalcon/mvc/url.zep index 3a7b78ee35e..46d21c71064 100644 --- a/phalcon/mvc/url.zep +++ b/phalcon/mvc/url.zep @@ -199,7 +199,7 @@ class Url implements UrlInterface, InjectionAwareInterface * ); *</code> */ - public function get(var uri = null, var args = null, boolean local = null, var baseUri = null) -> string + public function get(var uri = null, var args = null, bool local = null, var baseUri = null) -> string { string strUri; var router, dependencyInjector, routeName, route, queryString; diff --git a/phalcon/mvc/urlinterface.zep b/phalcon/mvc/urlinterface.zep index 8528c7280df..6c9bf86e27e 100644 --- a/phalcon/mvc/urlinterface.zep +++ b/phalcon/mvc/urlinterface.zep @@ -53,7 +53,7 @@ interface UrlInterface * @param string|array uri * @param array|object args Optional arguments to be appended to the query string */ - public function get(uri = null, args = null, boolean local = null) -> string; + public function get(uri = null, args = null, bool local = null) -> string; /** * Generates a local path diff --git a/phalcon/mvc/view.zep b/phalcon/mvc/view.zep index 4fb7c98612e..274b627c0b6 100644 --- a/phalcon/mvc/view.zep +++ b/phalcon/mvc/view.zep @@ -289,7 +289,7 @@ class View extends Injectable implements ViewInterface * ); * </code> */ - public function setRenderLevel(int level) -> <View> + public function setRenderLevel(int level) -> <ViewInterface> { let this->_renderLevel = level; return this; @@ -305,7 +305,7 @@ class View extends Injectable implements ViewInterface * ); *</code> */ - public function disableLevel(var level) -> <View> + public function disableLevel(var level) -> <ViewInterface> { if typeof level == "array" { let this->_disabledLevels = level; @@ -426,7 +426,7 @@ class View extends Injectable implements ViewInterface * ); *</code> */ - public function setVars(array! params, boolean merge = true) -> <View> + public function setVars(array! params, bool merge = true) -> <View> { if merge { let this->_viewParams = array_merge(this->_viewParams, params); @@ -576,9 +576,9 @@ class View extends Injectable implements ViewInterface /** * Checks whether view exists on registered extensions and render it */ - protected function _engineRender(array engines, string viewPath, boolean silence, boolean mustClean, <BackendInterface> cache = null) + protected function _engineRender(array engines, string viewPath, bool silence, bool mustClean, <BackendInterface> cache = null) { - boolean notExists; + bool notExists; int renderLevel, cacheLevel; var key, lifetime, viewsDir, basePath, viewsDirPath, viewOptions, cacheOptions, cachedView, viewParams, eventsManager, @@ -723,7 +723,7 @@ class View extends Injectable implements ViewInterface /** * Checks whether view exists */ - public function exists(string! view) -> boolean + public function exists(string! view) -> bool { var basePath, viewsDir, engines, extension; @@ -755,9 +755,9 @@ class View extends Injectable implements ViewInterface * $view->start()->render("posts", "recent")->finish(); *</code> */ - public function render(string! controllerName, string! actionName, array params = []) -> <View> | boolean + public function render(string! controllerName, string! actionName, array params = []) -> <View> | bool { - boolean silence, mustClean; + bool silence, mustClean; int renderLevel; var layoutsDir, layout, pickView, layoutName, engines, renderView, pickViewAction, eventsManager, @@ -1192,7 +1192,7 @@ class View extends Injectable implements ViewInterface /** * Check if the component is currently caching the output content */ - public function isCaching() -> boolean + public function isCaching() -> bool { return this->_cacheLevel > 0; } @@ -1381,7 +1381,7 @@ class View extends Injectable implements ViewInterface /** * Whether automatic rendering is enabled */ - public function isDisabled() -> boolean + public function isDisabled() -> bool { return this->_disabled; } @@ -1393,7 +1393,7 @@ class View extends Injectable implements ViewInterface * echo isset($this->view->products); *</code> */ - public function __isset(string! key) -> boolean + public function __isset(string! key) -> bool { return isset this->_viewParams[key]; } diff --git a/phalcon/mvc/view/engine/php.zep b/phalcon/mvc/view/engine/php.zep index 39f428071ec..8b0afc7097c 100644 --- a/phalcon/mvc/view/engine/php.zep +++ b/phalcon/mvc/view/engine/php.zep @@ -32,7 +32,7 @@ class Php extends Engine /** * Renders a view using the template engine */ - public function render(string! path, var params, boolean mustClean = false) + public function render(string! path, var params, bool mustClean = false) { var key, value; diff --git a/phalcon/mvc/view/engine/volt.zep b/phalcon/mvc/view/engine/volt.zep index 4d4d106d516..ffdc9a25d8e 100644 --- a/phalcon/mvc/view/engine/volt.zep +++ b/phalcon/mvc/view/engine/volt.zep @@ -89,7 +89,7 @@ class Volt extends Engine /** * Renders a view using the template engine */ - public function render(string! templatePath, var params, boolean mustClean = false) + public function render(string! templatePath, var params, bool mustClean = false) { var compiler, compiledTemplatePath, key, value; @@ -141,7 +141,7 @@ class Volt extends Engine /** * Checks if the needle is included in the haystack */ - public function isIncluded(var needle, var haystack) -> boolean + public function isIncluded(var needle, var haystack) -> bool { if typeof haystack == "array" { return in_array(needle, haystack); diff --git a/phalcon/mvc/view/engine/volt/compiler.zep b/phalcon/mvc/view/engine/volt/compiler.zep index e628355ddb2..1820dec38e0 100644 --- a/phalcon/mvc/view/engine/volt/compiler.zep +++ b/phalcon/mvc/view/engine/volt/compiler.zep @@ -1284,7 +1284,7 @@ class Compiler implements InjectionAwareInterface final protected function _statementListOrExtends(var statements) { var statement; - boolean isStatementList; + bool isStatementList; /** * Resolve the statement list as normal @@ -1322,7 +1322,7 @@ class Compiler implements InjectionAwareInterface /** * Compiles a "foreach" intermediate code representation into plain PHP code */ - public function compileForeach(array! statement, boolean extendsMode = false) -> string + public function compileForeach(array! statement, bool extendsMode = false) -> string { var compilation, prefix, level, prefixLevel, expr, exprCode, bstatement, type, blockStatements, forElse, code, @@ -1495,7 +1495,7 @@ class Compiler implements InjectionAwareInterface /** * Compiles a 'if' statement returning PHP code */ - public function compileIf(array! statement, boolean extendsMode = false) -> string + public function compileIf(array! statement, bool extendsMode = false) -> string { var compilation, blockStatements, expr; @@ -1530,7 +1530,7 @@ class Compiler implements InjectionAwareInterface /** * Compiles a 'switch' statement returning PHP code */ - public function compileSwitch(array! statement, boolean extendsMode = false) -> string + public function compileSwitch(array! statement, bool extendsMode = false) -> string { var compilation, caseClauses, expr, lines; @@ -1630,7 +1630,7 @@ class Compiler implements InjectionAwareInterface /** * Compiles a "cache" statement returning PHP code */ - public function compileCache(array! statement, boolean extendsMode = false) -> string + public function compileCache(array! statement, bool extendsMode = false) -> string { var compilation, expr, exprCode, lifetime; @@ -1784,7 +1784,7 @@ class Compiler implements InjectionAwareInterface /** * Compiles a "autoescape" statement returning PHP code */ - public function compileAutoEscape(array! statement, boolean extendsMode) -> string + public function compileAutoEscape(array! statement, bool extendsMode) -> string { var autoescape, oldAutoescape, compilation; @@ -1922,7 +1922,7 @@ class Compiler implements InjectionAwareInterface /** * Compiles macros */ - public function compileMacro(array! statement, boolean extendsMode) -> string + public function compileMacro(array! statement, bool extendsMode) -> string { var code, name, defaultValue, macroName, parameters, position, parameter, variableName, blockStatements; @@ -2002,7 +2002,7 @@ class Compiler implements InjectionAwareInterface /** * Compiles calls to macros */ - public function compileCall(array! statement, boolean extendsMode) + public function compileCall(array! statement, bool extendsMode) { } @@ -2010,7 +2010,7 @@ class Compiler implements InjectionAwareInterface /** * Traverses a statement list compiling each of its nodes */ - final protected function _statementList(array! statements, boolean extendsMode = false) -> string + final protected function _statementList(array! statements, bool extendsMode = false) -> string { var extended, blockMode, compilation, extensions, statement, tempCompilation, type, blockName, blockStatements, @@ -2268,7 +2268,7 @@ class Compiler implements InjectionAwareInterface /** * Compiles a Volt source code returning a PHP plain version */ - protected function _compileSource(string! viewCode, boolean extendsMode = false) -> string + protected function _compileSource(string! viewCode, bool extendsMode = false) -> string { var currentPath, intermediate, extended, finalCompilation, blocks, extendedBlocks, name, block, @@ -2286,8 +2286,8 @@ class Compiler implements InjectionAwareInterface * Enable autoescape globally */ if fetch autoescape, options["autoescape"] { - if typeof autoescape != "bool" { - throw new Exception("'autoescape' must be boolean"); + if typeof autoescape != "boolean" { + throw new Exception("'autoescape' must be bool"); } let this->_autoescape = autoescape; } @@ -2384,7 +2384,7 @@ class Compiler implements InjectionAwareInterface * echo $compiler->compileString('{{ "hello world" }}'); *</code> */ - public function compileString(string! viewCode, boolean extendsMode = false) -> string + public function compileString(string! viewCode, bool extendsMode = false) -> string { let this->_currentPath = "eval code"; return this->_compileSource(viewCode, extendsMode); @@ -2399,7 +2399,7 @@ class Compiler implements InjectionAwareInterface * * @return string|array */ - public function compileFile(string! path, string! compiledPath, boolean extendsMode = false) + public function compileFile(string! path, string! compiledPath, bool extendsMode = false) { var viewCode, compilation, finalCompilation; @@ -2455,7 +2455,7 @@ class Compiler implements InjectionAwareInterface * require $compiler->getCompiledTemplatePath(); *</code> */ - public function compile(string! templatePath, boolean extendsMode = false) + public function compile(string! templatePath, bool extendsMode = false) { var stat, compileAlways, prefix, compiledPath, compiledSeparator, blocksCode, compiledExtension, compilation, options, realCompiledPath, diff --git a/phalcon/mvc/view/engineinterface.zep b/phalcon/mvc/view/engineinterface.zep index ce378676a89..5924300364b 100644 --- a/phalcon/mvc/view/engineinterface.zep +++ b/phalcon/mvc/view/engineinterface.zep @@ -32,7 +32,7 @@ interface EngineInterface /** * Returns cached output on another view stage */ - public function getContent() -> array; + public function getContent() -> string; /** * Renders a partial inside another view @@ -42,5 +42,5 @@ interface EngineInterface /** * Renders a view using the template engine */ - public function render(string path, var params, boolean mustClean = false); + public function render(string path, var params, bool mustClean = false); } diff --git a/phalcon/mvc/view/simple.zep b/phalcon/mvc/view/simple.zep index 69530335cf3..55b582fc19d 100644 --- a/phalcon/mvc/view/simple.zep +++ b/phalcon/mvc/view/simple.zep @@ -570,7 +570,7 @@ class Simple extends Injectable implements ViewBaseInterface * ); *</code> */ - public function setVars(array! params, boolean merge = true) -> <Simple> + public function setVars(array! params, bool merge = true) -> <Simple> { if merge && typeof this->_viewParams == "array" { let this->_viewParams = array_merge(this->_viewParams, params); diff --git a/phalcon/mvc/viewbaseinterface.zep b/phalcon/mvc/viewbaseinterface.zep index 7869c560acb..9416eed9a0f 100644 --- a/phalcon/mvc/viewbaseinterface.zep +++ b/phalcon/mvc/viewbaseinterface.zep @@ -19,6 +19,8 @@ namespace Phalcon\Mvc; +use Phalcon\Cache\BackendInterface; + /** * Phalcon\Mvc\ViewInterface * @@ -35,7 +37,7 @@ interface ViewBaseInterface /** * Gets views directory */ - public function getViewsDir() -> string; + public function getViewsDir() -> string | array; /** * Adds parameters to views (alias of setVar) @@ -55,7 +57,7 @@ interface ViewBaseInterface /** * Returns the cache instance used to cache */ - public function getCache() -> <\Phalcon\Cache\BackendInterface>; + public function getCache() -> <BackendInterface>; /** * Cache the actual view render to certain level @@ -75,5 +77,5 @@ interface ViewBaseInterface /** * Renders a partial view */ - public function partial(string! partialPath, var params = null) -> string; + public function partial(string! partialPath, var params = null); } diff --git a/phalcon/mvc/viewinterface.zep b/phalcon/mvc/viewinterface.zep index f5c0b066705..50f8b7006b9 100644 --- a/phalcon/mvc/viewinterface.zep +++ b/phalcon/mvc/viewinterface.zep @@ -61,7 +61,7 @@ interface ViewInterface extends ViewBaseInterface /** * Sets the render level for the view */ - public function setRenderLevel(string! level); + public function setRenderLevel(int level) -> <ViewInterface>; /** * Sets default view name. Must be a file without extension in the views directory @@ -137,7 +137,7 @@ interface ViewInterface extends ViewBaseInterface /** * Executes render process from dispatching data */ - public function render(string! controllerName, string! actionName, array params = []) -> <ViewInterface> | boolean; + public function render(string! controllerName, string! actionName, array params = []) -> <ViewInterface> | bool; /** * Choose a view different to render than last-controller/last-action @@ -152,7 +152,7 @@ interface ViewInterface extends ViewBaseInterface /** * Returns the path of the view that is currently rendered */ - public function getActiveRenderPath() -> string; + public function getActiveRenderPath() -> string | array; /** * Disables the auto-rendering process @@ -172,5 +172,5 @@ interface ViewInterface extends ViewBaseInterface /** * Whether the automatic rendering is disabled */ - public function isDisabled() -> boolean; + public function isDisabled() -> bool; } diff --git a/phalcon/paginator/factory.zep b/phalcon/paginator/factory.zep index ed6ceeefb23..a78cb7e4ea2 100644 --- a/phalcon/paginator/factory.zep +++ b/phalcon/paginator/factory.zep @@ -46,7 +46,7 @@ class Factory extends BaseFactory /** * @param \Phalcon\Config|array config */ - public static function load(var config) -> <AdapterInterface> + public static function load(var config) -> object { return self::loadClass("Phalcon\\Paginator\\Adapter", config); } diff --git a/phalcon/queue/beanstalk.zep b/phalcon/queue/beanstalk.zep index 533a688f733..d9af6dc8133 100644 --- a/phalcon/queue/beanstalk.zep +++ b/phalcon/queue/beanstalk.zep @@ -156,7 +156,7 @@ class Beanstalk /** * Puts a job on the queue using specified tube. */ - public function put(var data, array options = null) -> int|boolean + public function put(var data, array options = null) -> int|bool { var priority, delay, ttr, serialized, response, status, length; @@ -199,7 +199,7 @@ class Beanstalk /** * Reserves/locks a ready job from the specified tube. */ - public function reserve(var timeout = null) -> boolean|<Job> + public function reserve(var timeout = null) -> bool|<Job> { var command, response; @@ -228,7 +228,7 @@ class Beanstalk /** * Change the active tube. By default the tube is "default". */ - public function choose(string! tube) -> boolean|string + public function choose(string! tube) -> bool|string { var response; @@ -245,7 +245,7 @@ class Beanstalk /** * The watch command adds the named tube to the watch list for the current connection. */ - public function watch(string! tube) -> boolean|int + public function watch(string! tube) -> bool|int { var response; @@ -262,7 +262,7 @@ class Beanstalk /** * It removes the named tube from the watch list for the current connection. */ - public function ignore(string! tube) -> boolean|int + public function ignore(string! tube) -> bool|int { var response; @@ -279,7 +279,7 @@ class Beanstalk /** * Can delay any new job being reserved for a given time. */ - public function pauseTube(string! tube, int delay) -> boolean + public function pauseTube(string! tube, int delay) -> bool { var response; @@ -296,7 +296,7 @@ class Beanstalk /** * The kick command applies only to the currently used tube. */ - public function kick(int bound) -> boolean|int + public function kick(int bound) -> bool|int { var response; @@ -313,7 +313,7 @@ class Beanstalk /** * Gives statistical information about the system as a whole. */ - public function stats() -> boolean|array + public function stats() -> bool|array { var response; @@ -330,7 +330,7 @@ class Beanstalk /** * Gives statistical information about the specified tube if it exists. */ - public function statsTube(string! tube) -> boolean|array + public function statsTube(string! tube) -> bool|array { var response; @@ -347,7 +347,7 @@ class Beanstalk /** * Returns a list of all existing tubes. */ - public function listTubes() -> boolean|array + public function listTubes() -> bool|array { var response; @@ -364,7 +364,7 @@ class Beanstalk /** * Returns the tube currently being used by the client. */ - public function listTubeUsed() -> boolean|string + public function listTubeUsed() -> bool|string { var response; @@ -381,7 +381,7 @@ class Beanstalk /** * Returns a list tubes currently being watched by the client. */ - public function listTubesWatched() -> boolean|array + public function listTubesWatched() -> bool|array { var response; @@ -398,7 +398,7 @@ class Beanstalk /** * Inspect the next ready job. */ - public function peekReady() -> boolean|<Job> + public function peekReady() -> bool|<Job> { var response; @@ -415,7 +415,7 @@ class Beanstalk /** * Return the next job in the list of buried jobs. */ - public function peekBuried() -> boolean|<Job> + public function peekBuried() -> bool|<Job> { var response; @@ -432,7 +432,7 @@ class Beanstalk /** * Return the next job in the list of buried jobs. */ - public function peekDelayed() -> boolean|<Job> + public function peekDelayed() -> bool|<Job> { var response; @@ -451,7 +451,7 @@ class Beanstalk /** * The peek commands let the client inspect a job in the system. */ - public function jobPeek(int id) -> boolean|<Job> + public function jobPeek(int id) -> bool|<Job> { var response; @@ -513,7 +513,7 @@ class Beanstalk * Reads a packet from the socket. Prior to reading from the socket will * check for availability of the connection. */ - public function read(int length = 0) -> boolean|string + public function read(int length = 0) -> bool|string { var connection, data; @@ -562,7 +562,7 @@ class Beanstalk /** * Writes data to the socket. Performs a connection if none is available */ - public function write(string data) -> boolean|int + public function write(string data) -> bool|int { var connection, packet; @@ -581,7 +581,7 @@ class Beanstalk /** * Closes the connection to the beanstalk server. */ - public function disconnect() -> boolean + public function disconnect() -> bool { var connection; @@ -599,7 +599,7 @@ class Beanstalk /** * Simply closes the connection. */ - public function quit() -> boolean + public function quit() -> bool { this->write("quit"); this->disconnect(); diff --git a/phalcon/queue/beanstalk/job.zep b/phalcon/queue/beanstalk/job.zep index d2ae7a96cda..56a56d056fd 100644 --- a/phalcon/queue/beanstalk/job.zep +++ b/phalcon/queue/beanstalk/job.zep @@ -54,7 +54,7 @@ class Job /** * Removes a job from the server entirely */ - public function delete() -> boolean + public function delete() -> bool { var queue; @@ -69,7 +69,7 @@ class Job * its state as "ready") to be run by any client. It is normally used when the job * fails because of a transitory error. */ - public function release(int priority = 100, int delay = 0) -> boolean + public function release(int priority = 100, int delay = 0) -> bool { var queue; @@ -83,7 +83,7 @@ class Job * a FIFO linked list and will not be touched by the server again until a client * kicks them with the "kick" command. */ - public function bury(int priority = 100) -> boolean + public function bury(int priority = 100) -> bool { var queue; @@ -100,7 +100,7 @@ class Job * a job (e.g. it may do this on `DEADLINE_SOON`). The command postpones the auto * release of a reserved job until TTR seconds from when the command is issued. */ - public function touch() -> boolean + public function touch() -> bool { var queue; @@ -112,7 +112,7 @@ class Job /** * Move the job to the ready queue if it is delayed or buried. */ - public function kick() -> boolean + public function kick() -> bool { var queue; @@ -124,7 +124,7 @@ class Job /** * Gives statistical information about the specified job if it exists. */ - public function stats() -> boolean|array + public function stats() -> bool|array { var queue, response; diff --git a/phalcon/registry.zep b/phalcon/registry.zep index c9c84649c1b..74dce6a1802 100644 --- a/phalcon/registry.zep +++ b/phalcon/registry.zep @@ -85,7 +85,7 @@ final class Registry implements \ArrayAccess, \Countable, \Iterator /** * Checks if the element is present in the registry */ - public final function offsetExists(string! offset) -> boolean + public final function offsetExists(var offset) -> bool { return isset this->_data[offset]; } @@ -93,7 +93,7 @@ final class Registry implements \ArrayAccess, \Countable, \Iterator /** * Returns an index in the registry */ - public final function offsetGet(string! offset) -> var + public final function offsetGet(var offset) -> var { return this->_data[offset]; } @@ -101,7 +101,7 @@ final class Registry implements \ArrayAccess, \Countable, \Iterator /** * Sets an element in the registry */ - public final function offsetSet(string! offset, var value) -> void + public final function offsetSet(var offset, var value) -> void { let this->_data[offset] = value; } @@ -109,7 +109,7 @@ final class Registry implements \ArrayAccess, \Countable, \Iterator /** * Unsets an element in the registry */ - public final function offsetUnset(string! offset) -> void + public final function offsetUnset(var offset) -> void { unset this->_data[offset]; } @@ -149,7 +149,7 @@ final class Registry implements \ArrayAccess, \Countable, \Iterator /** * Checks if the iterator is valid */ - public function valid() -> boolean + public function valid() -> bool { return key(this->_data) !== null; } @@ -178,7 +178,7 @@ final class Registry implements \ArrayAccess, \Countable, \Iterator return this->offsetGet(key); } - public final function __isset(string! key) -> boolean + public final function __isset(string! key) -> bool { return this->offsetExists(key); } diff --git a/phalcon/security.zep b/phalcon/security.zep index b93222dd3bc..2f3387a5be9 100644 --- a/phalcon/security.zep +++ b/phalcon/security.zep @@ -279,7 +279,7 @@ class Security implements InjectionAwareInterface /** * Checks a plain text password and its hash version to check if the password matches */ - public function checkHash(string password, string passwordHash, int maxPassLength = 0) -> boolean + public function checkHash(string password, string passwordHash, int maxPassLength = 0) -> bool { char ch; string cryptedHash; @@ -309,7 +309,7 @@ class Security implements InjectionAwareInterface /** * Checks if a password hash is a valid bcrypt's hash */ - public function isLegacyHash(string passwordHash) -> boolean + public function isLegacyHash(string passwordHash) -> bool { return starts_with(passwordHash, "$2a$"); } @@ -361,7 +361,7 @@ class Security implements InjectionAwareInterface /** * Check if the CSRF token sent in the request is the same that the current in session */ - public function checkToken(var tokenKey = null, var tokenValue = null, boolean destroyIfValid = true) -> boolean + public function checkToken(var tokenKey = null, var tokenValue = null, bool destroyIfValid = true) -> bool { var dependencyInjector, session, request, equals, userToken, knownToken; @@ -456,7 +456,7 @@ class Security implements InjectionAwareInterface /** * Computes a HMAC */ - public function computeHmac(string data, string key, string algo, boolean raw = false) -> string + public function computeHmac(string data, string key, string algo, bool raw = false) -> string { var hmac; diff --git a/phalcon/security/random.zep b/phalcon/security/random.zep index 8bbc6ed1781..968ff5d9aa9 100644 --- a/phalcon/security/random.zep +++ b/phalcon/security/random.zep @@ -254,7 +254,7 @@ class Random * @link https://www.ietf.org/rfc/rfc3548.txt * @throws Exception If secure random number generator is not available or unexpected partial read */ - public function base64Safe(int len = null, boolean padding = false) -> string + public function base64Safe(int len = null, bool padding = false) -> string { var s; diff --git a/phalcon/session/adapter.zep b/phalcon/session/adapter.zep index d5b045f71a4..d6dd17e26f5 100644 --- a/phalcon/session/adapter.zep +++ b/phalcon/session/adapter.zep @@ -55,7 +55,7 @@ abstract class Adapter implements AdapterInterface /** * Alias: Check whether a session variable is set in an application context */ - public function __isset(string index) -> boolean + public function __isset(string index) -> bool { return this->has(index); } @@ -89,15 +89,13 @@ abstract class Adapter implements AdapterInterface * ); * * var_dump( - * $session->destroy(true) + * $session->destroy('some-id') * ); *</code> */ - public function destroy(boolean removeData = false) -> boolean - { - if removeData { - this->removeSessionData(); - } + public function destroy(string sessionId = null) -> bool + { + this->removeSessionData(); let this->_started = false; return session_destroy(); @@ -110,7 +108,7 @@ abstract class Adapter implements AdapterInterface * $session->get("auth", "yes"); * </code> */ - public function get(string index, var defaultValue = null, boolean remove = false) -> var + public function get(string index, var defaultValue = null, bool remove = false) -> var { var value, key, uniqueId; @@ -168,7 +166,7 @@ abstract class Adapter implements AdapterInterface * ); *</code> */ - public function has(string index) -> boolean + public function has(string index) -> bool { var uniqueId; @@ -189,7 +187,7 @@ abstract class Adapter implements AdapterInterface * ); *</code> */ - public function isStarted() -> boolean + public function isStarted() -> bool { return this->_started; } @@ -197,7 +195,7 @@ abstract class Adapter implements AdapterInterface /** * {@inheritdoc} */ - public function regenerateId(bool deleteOldSession = true) -> <Adapter> + public function regenerateId(bool deleteOldSession = true) -> <AdapterInterface> { session_regenerate_id(deleteOldSession); return this; @@ -288,7 +286,7 @@ abstract class Adapter implements AdapterInterface /** * Starts the session (if headers are already sent the session will not be started) */ - public function start() -> boolean + public function start() -> bool { if !headers_sent() { if !this->_started && this->status() !== self::SESSION_ACTIVE { diff --git a/phalcon/session/adapter/libmemcached.zep b/phalcon/session/adapter/libmemcached.zep index 1635d283157..84f1cfb0d10 100644 --- a/phalcon/session/adapter/libmemcached.zep +++ b/phalcon/session/adapter/libmemcached.zep @@ -112,7 +112,7 @@ class Libmemcached extends Adapter parent::__construct(options); } - public function close() -> boolean + public function close() -> bool { return true; } @@ -120,7 +120,7 @@ class Libmemcached extends Adapter /** * {@inheritdoc} */ - public function destroy(string sessionId = null) -> boolean + public function destroy(string sessionId = null) -> bool { var id; @@ -142,12 +142,12 @@ class Libmemcached extends Adapter /** * {@inheritdoc} */ - public function gc() -> boolean + public function gc() -> bool { return true; } - public function open() -> boolean + public function open() -> bool { return true; } @@ -163,7 +163,7 @@ class Libmemcached extends Adapter /** * {@inheritdoc} */ - public function write(string sessionId, string data) -> boolean + public function write(string sessionId, string data) -> bool { return this->_libmemcached->save(sessionId, data, this->_lifetime); } diff --git a/phalcon/session/adapter/memcache.zep b/phalcon/session/adapter/memcache.zep deleted file mode 100644 index 274a843c296..00000000000 --- a/phalcon/session/adapter/memcache.zep +++ /dev/null @@ -1,143 +0,0 @@ -/** - * This file is part of the Phalcon. - * - * (c) Phalcon Team <team@phalcon.com> - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Phalcon\Session\Adapter; - -use Phalcon\Session\Adapter; -use Phalcon\Cache\Backend\Memcache; -use Phalcon\Cache\Frontend\Data as FrontendData; - -/** - * Phalcon\Session\Adapter\Memcache - * - * This adapter store sessions in memcache - * - * <code> - * use Phalcon\Session\Adapter\Memcache; - * - * $session = new Memcache( - * [ - * "uniqueId" => "my-private-app", - * "host" => "127.0.0.1", - * "port" => 11211, - * "persistent" => true, - * "lifetime" => 3600, - * "prefix" => "my_", - * ] - * ); - * - * $session->start(); - * - * $session->set("var", "some-value"); - * - * echo $session->get("var"); - * </code> - */ -class Memcache extends Adapter -{ - protected _lifetime = 8600 { get }; - - protected _memcache = null { get }; - - /** - * Phalcon\Session\Adapter\Memcache constructor - */ - public function __construct(array options = []) - { - var lifetime; - - if !isset options["host"] { - let options["host"] = "127.0.0.1"; - } - - if !isset options["port"] { - let options["port"] = 11211; - } - - if !isset options["persistent"] { - let options["persistent"] = 0; - } - - if fetch lifetime, options["lifetime"] { - let this->_lifetime = lifetime; - } - - let this->_memcache = new Memcache( - new FrontendData(["lifetime": this->_lifetime]), - options - ); - - session_set_save_handler( - [this, "open"], - [this, "close"], - [this, "read"], - [this, "write"], - [this, "destroy"], - [this, "gc"] - ); - - parent::__construct(options); - } - - public function close() -> boolean - { - return true; - } - - /** - * {@inheritdoc} - */ - public function destroy(string sessionId = null) -> boolean - { - var id; - - if sessionId === null { - let id = this->getId(); - } else { - let id = sessionId; - } - - this->removeSessionData(); - - if !empty id && this->_memcache->exists(id) { - return (bool) this->_memcache->delete(id); - } - - return true; - } - - /** - * {@inheritdoc} - */ - public function gc() -> boolean - { - return true; - } - - public function open() -> boolean - { - return true; - } - - /** - * {@inheritdoc} - */ - public function read(string sessionId) -> string - { - return (string) this->_memcache->get(sessionId, this->_lifetime); - } - - /** - * {@inheritdoc} - */ - public function write(string sessionId, string data) -> boolean - { - return this->_memcache->save(sessionId, data, this->_lifetime); - } -} diff --git a/phalcon/session/adapter/redis.zep b/phalcon/session/adapter/redis.zep index 217876f0892..d5b3d9c87cf 100644 --- a/phalcon/session/adapter/redis.zep +++ b/phalcon/session/adapter/redis.zep @@ -90,7 +90,7 @@ class Redis extends Adapter /** * {@inheritdoc} */ - public function close() -> boolean + public function close() -> bool { return true; } @@ -98,7 +98,7 @@ class Redis extends Adapter /** * {@inheritdoc} */ - public function destroy(string sessionId = null) -> boolean + public function destroy(string sessionId = null) -> bool { var id; @@ -116,7 +116,7 @@ class Redis extends Adapter /** * {@inheritdoc} */ - public function gc() -> boolean + public function gc() -> bool { return true; } @@ -124,7 +124,7 @@ class Redis extends Adapter /** * {@inheritdoc} */ - public function open() -> boolean + public function open() -> bool { return true; } @@ -140,7 +140,7 @@ class Redis extends Adapter /** * {@inheritdoc} */ - public function write(string sessionId, string data) -> boolean + public function write(string sessionId, string data) -> bool { return this->_redis->save(sessionId, data, this->_lifetime); } diff --git a/phalcon/session/adapterinterface.zep b/phalcon/session/adapterinterface.zep index ba20a355756..4c6f8026137 100644 --- a/phalcon/session/adapterinterface.zep +++ b/phalcon/session/adapterinterface.zep @@ -19,7 +19,7 @@ interface AdapterInterface /** * Destroys the active session */ - public function destroy(boolean removeData = false) -> boolean; + public function destroy(string sessionId = null) -> bool; /** * Gets a session variable from an application context @@ -44,12 +44,12 @@ interface AdapterInterface /** * Check whether a session variable is set in an application context */ - public function has(string index) -> boolean; + public function has(string index) -> bool; /** * Check whether the session has been started */ - public function isStarted() -> boolean; + public function isStarted() -> bool; /** * Regenerate session's id diff --git a/phalcon/session/bag.zep b/phalcon/session/bag.zep index 4dce2869748..77307b323e1 100644 --- a/phalcon/session/bag.zep +++ b/phalcon/session/bag.zep @@ -68,7 +68,7 @@ class Bag implements InjectionAwareInterface, BagInterface, \IteratorAggregate, * ); *</code> */ - public function __isset(string! property) -> boolean + public function __isset(string! property) -> bool { return this->has(property); } @@ -92,7 +92,7 @@ class Bag implements InjectionAwareInterface, BagInterface, \IteratorAggregate, * unset($user["name"]); *</code> */ - public function __unset(string! property) -> boolean + public function __unset(string! property) -> bool { return this->remove(property); } @@ -185,7 +185,7 @@ class Bag implements InjectionAwareInterface, BagInterface, \IteratorAggregate, * ); *</code> */ - public function has(string! property) -> boolean + public function has(string! property) -> bool { if this->_initialized === false { this->initialize(); @@ -226,22 +226,22 @@ class Bag implements InjectionAwareInterface, BagInterface, \IteratorAggregate, let this->_initialized = true; } - public final function offsetExists(string! property) -> boolean + public final function offsetExists(var property) -> bool { return this->has(property); } - public final function offsetGet(string! property) -> var + public final function offsetGet(var property) -> var { return this->get(property); } - public final function offsetSet(string! property, var value) + public final function offsetSet(var property, var value) { return this->set(property, value); } - public final function offsetUnset(string! property) + public final function offsetUnset(var property) { return this->remove(property); } @@ -253,7 +253,7 @@ class Bag implements InjectionAwareInterface, BagInterface, \IteratorAggregate, * $user->remove("name"); *</code> */ - public function remove(string! property) -> boolean + public function remove(string! property) -> bool { if this->_initialized === false { this->initialize(); diff --git a/phalcon/session/baginterface.zep b/phalcon/session/baginterface.zep index 7af80a17ec4..58d7c5f656a 100644 --- a/phalcon/session/baginterface.zep +++ b/phalcon/session/baginterface.zep @@ -24,7 +24,7 @@ interface BagInterface /** * Isset property */ - public function __isset(string! property) -> boolean; + public function __isset(string! property) -> bool; /** * Setter of values @@ -44,7 +44,7 @@ interface BagInterface /** * Isset property */ - public function has(string! property) -> boolean; + public function has(string! property) -> bool; /** * Initializes the session bag. This method must not be called directly, the diff --git a/phalcon/session/factory.zep b/phalcon/session/factory.zep index 9f94ad26b81..b975d192f84 100644 --- a/phalcon/session/factory.zep +++ b/phalcon/session/factory.zep @@ -35,7 +35,7 @@ class Factory extends BaseFactory /** * @param \Phalcon\Config|array config */ - public static function load(var config) -> <AdapterInterface> + public static function load(var config) -> object { return self::loadClass("Phalcon\\Session\\Adapter", config); } diff --git a/phalcon/tag.zep b/phalcon/tag.zep index 44122593bf0..54b8de799cf 100644 --- a/phalcon/tag.zep +++ b/phalcon/tag.zep @@ -227,7 +227,7 @@ class Tag /** * Set autoescape mode in generated html */ - public static function setAutoescape(boolean autoescape) -> void + public static function setAutoescape(bool autoescape) -> void { let self::_autoEscape = autoescape; } @@ -270,7 +270,7 @@ class Tag * echo Phalcon\Tag::textField("name"); // Will have the value "peter" by default * </code> */ - public static function setDefaults(array! values, boolean merge = false) -> void + public static function setDefaults(array! values, bool merge = false) -> void { if merge && typeof self::_displayValues == "array" { let self::_displayValues = array_merge(self::_displayValues, values); @@ -294,7 +294,7 @@ class Tag * * @param string name */ - public static function hasValue(var name) -> boolean + public static function hasValue(var name) -> bool { /** * Check if there is a predefined or a POST value for it @@ -395,7 +395,7 @@ class Tag * * @param array|string parameters * @param string text - * @param boolean local + * @param bool local */ public static function linkTo(parameters, text = null, local = true) -> string { @@ -450,7 +450,7 @@ class Tag * * @param array parameters */ - static protected final function _inputField(string type, parameters, boolean asValue = false) -> string + static protected final function _inputField(string type, parameters, bool asValue = false) -> string { var params, id, value, code, name; @@ -1168,7 +1168,7 @@ class Tag * {{ get_title() }} * </code> */ - public static function getTitle(boolean prepend = true, boolean append = true) -> string + public static function getTitle(bool prepend = true, bool append = true) -> string { var items, output, title, documentTitle, documentAppendTitle, documentPrependTitle, documentTitleSeparator, escaper; @@ -1274,7 +1274,7 @@ class Tag * * @param array parameters */ - public static function stylesheetLink(var parameters = null, boolean local = true) -> string + public static function stylesheetLink(var parameters = null, bool local = true) -> string { var params, code; @@ -1285,10 +1285,10 @@ class Tag } if isset params[1] { - let local = (boolean) params[1]; + let local = (bool) params[1]; } else { if isset params["local"] { - let local = (boolean) params["local"]; + let local = (bool) params["local"]; unset params["local"]; } } @@ -1346,7 +1346,7 @@ class Tag * * @param array parameters */ - public static function javascriptInclude(var parameters = null, boolean local = true) -> string + public static function javascriptInclude(var parameters = null, bool local = true) -> string { var params, code; @@ -1357,10 +1357,10 @@ class Tag } if isset params[1] { - let local = (boolean) params[1]; + let local = (bool) params[1]; } else { if isset params["local"] { - let local = (boolean) params["local"]; + let local = (bool) params["local"]; unset params["local"]; } } @@ -1413,7 +1413,7 @@ class Tag * * @param array parameters */ - public static function image(var parameters = null, boolean local = true) -> string + public static function image(var parameters = null, bool local = true) -> string { var params, code, src; @@ -1422,7 +1422,7 @@ class Tag } else { let params = parameters; if isset params[1] { - let local = (boolean) params[1]; + let local = (bool) params[1]; } } @@ -1462,7 +1462,7 @@ class Tag * echo Phalcon\Tag::friendlyTitle("These are big important news", "-") *</code> */ - public static function friendlyTitle(string text, string separator = "-", boolean lowercase = true, var replace = null) -> string + public static function friendlyTitle(string text, string separator = "-", bool lowercase = true, var replace = null) -> string { var friendly, locale, search; @@ -1562,8 +1562,8 @@ class Tag /** * Builds a HTML tag */ - public static function tagHtml(string tagName, var parameters = null, boolean selfClose = false, - boolean onlyStart = false, boolean useEol = false) -> string + public static function tagHtml(string tagName, var parameters = null, bool selfClose = false, + bool onlyStart = false, bool useEol = false) -> string { var params, localCode; @@ -1606,7 +1606,7 @@ class Tag * echo Phalcon\Tag::tagHtmlClose("script", true); *</code> */ - public static function tagHtmlClose(string tagName, boolean useEol = false) -> string + public static function tagHtmlClose(string tagName, bool useEol = false) -> string { if useEol { return "</" . tagName . ">" . PHP_EOL; diff --git a/phalcon/text.zep b/phalcon/text.zep index cdc4a04b4a1..08246afad86 100644 --- a/phalcon/text.zep +++ b/phalcon/text.zep @@ -150,7 +150,7 @@ abstract class Text * echo Phalcon\Text::startsWith("Hello", "he"); // true * </code> */ - public static function startsWith(string str, string start, boolean ignoreCase = true) -> boolean + public static function startsWith(string str, string start, bool ignoreCase = true) -> bool { return starts_with(str, start, ignoreCase); } @@ -164,7 +164,7 @@ abstract class Text * echo Phalcon\Text::endsWith("Hello", "LLO"); // true * </code> */ - public static function endsWith(string str, string end, boolean ignoreCase = true) -> boolean + public static function endsWith(string str, string end, bool ignoreCase = true) -> bool { return ends_with(str, end, ignoreCase); } diff --git a/phalcon/translate/adapter.zep b/phalcon/translate/adapter.zep index 54b1a037674..2c180c3440f 100644 --- a/phalcon/translate/adapter.zep +++ b/phalcon/translate/adapter.zep @@ -76,7 +76,7 @@ abstract class Adapter implements AdapterInterface * * @param string value */ - public function offsetSet(string! offset, var value) + public function offsetSet(var offset, var value) -> void { throw new Exception("Translate is an immutable ArrayAccess object"); } @@ -84,7 +84,7 @@ abstract class Adapter implements AdapterInterface /** * Check whether a translation key exists */ - public function offsetExists(string! translateKey) -> boolean + public function offsetExists(var translateKey) -> bool { return this->{"exists"}(translateKey); } @@ -92,7 +92,7 @@ abstract class Adapter implements AdapterInterface /** * Unsets a translation from the dictionary */ - public function offsetUnset(string! offset) + public function offsetUnset(var offset) -> void { throw new Exception("Translate is an immutable ArrayAccess object"); } @@ -100,7 +100,7 @@ abstract class Adapter implements AdapterInterface /** * Returns the translation related to the given key */ - public function offsetGet(string! translateKey) -> string + public function offsetGet(var translateKey) -> var { return this->{"query"}(translateKey, null); } diff --git a/phalcon/translate/adapter/csv.zep b/phalcon/translate/adapter/csv.zep index 684841c3b40..0088ee6c767 100644 --- a/phalcon/translate/adapter/csv.zep +++ b/phalcon/translate/adapter/csv.zep @@ -92,7 +92,7 @@ class Csv extends Adapter implements \ArrayAccess /** * Check whether is defined a translation key in the internal array */ - public function exists(string! index) -> boolean + public function exists(string! index) -> bool { return isset this->_translate[index]; } diff --git a/phalcon/translate/adapter/gettext.zep b/phalcon/translate/adapter/gettext.zep index 9a3f9504e7a..c82ee175b52 100644 --- a/phalcon/translate/adapter/gettext.zep +++ b/phalcon/translate/adapter/gettext.zep @@ -97,7 +97,7 @@ class Gettext extends Adapter implements \ArrayAccess /** * Check whether is defined a translation key in the internal array */ - public function exists(string! index) -> boolean + public function exists(string! index) -> bool { var result; @@ -195,7 +195,7 @@ class Gettext extends Adapter implements \ArrayAccess * $gettext->setLocale(LC_ALL, "de_DE@euro", "de_DE", "de", "ge"); * </code> */ - public function setLocale(int! category, string! locale) -> string | boolean + public function setLocale(int! category, string! locale) -> string | bool { let this->_locale = call_user_func_array("setlocale", func_get_args()); let this->_category = category; diff --git a/phalcon/translate/adapter/nativearray.zep b/phalcon/translate/adapter/nativearray.zep index 098ac1d9952..f1094bff9f3 100644 --- a/phalcon/translate/adapter/nativearray.zep +++ b/phalcon/translate/adapter/nativearray.zep @@ -69,7 +69,7 @@ class NativeArray extends Adapter implements \ArrayAccess /** * Check whether is defined a translation key in the internal array */ - public function exists(string! index) -> boolean + public function exists(string! index) -> bool { return isset this->_translate[index]; } diff --git a/phalcon/translate/adapterinterface.zep b/phalcon/translate/adapterinterface.zep index 3c7c74efecd..fbe946232d2 100644 --- a/phalcon/translate/adapterinterface.zep +++ b/phalcon/translate/adapterinterface.zep @@ -44,6 +44,6 @@ interface AdapterInterface /** * Check whether is defined a translation key in the internal array */ - public function exists(string! index) -> boolean; + public function exists(string! index) -> bool; } diff --git a/phalcon/translate/factory.zep b/phalcon/translate/factory.zep index c6a64e63798..27542c18376 100644 --- a/phalcon/translate/factory.zep +++ b/phalcon/translate/factory.zep @@ -43,7 +43,7 @@ class Factory extends BaseFactory /** * @param \Phalcon\Config|array config */ - public static function load(var config) -> <AdapterInterface> + public static function load(var config) -> object { return self::loadClass("Phalcon\\Translate\\Adapter", config); } diff --git a/phalcon/validation.zep b/phalcon/validation.zep index 2103b42ef0f..75af47deaf0 100644 --- a/phalcon/validation.zep +++ b/phalcon/validation.zep @@ -199,7 +199,7 @@ class Validation extends Injectable implements ValidationInterface /** * Adds a validator to a field */ - public function add(var field, <ValidatorInterface> validator) -> <Validation> + public function add(var field, <ValidatorInterface> validator) -> <ValidationInterface> { var singleField; if typeof field == "array" { @@ -225,7 +225,7 @@ class Validation extends Injectable implements ValidationInterface /** * Alias of `add` method */ - public function rule(var field, <ValidatorInterface> validator) -> <Validation> + public function rule(var field, <ValidatorInterface> validator) -> <ValidationInterface> { return this->add(field, validator); } @@ -233,7 +233,7 @@ class Validation extends Injectable implements ValidationInterface /** * Adds the validators to a field */ - public function rules(var field, array! validators) -> <Validation> + public function rules(var field, array! validators) -> <ValidationInterface> { var validator; @@ -252,7 +252,7 @@ class Validation extends Injectable implements ValidationInterface * @param string field * @param array|string filters */ - public function setFilters(var field, filters) -> <Validation> + public function setFilters(var field, filters) -> <ValidationInterface> { var singleField; if typeof field == "array" { @@ -416,7 +416,7 @@ class Validation extends Injectable implements ValidationInterface /** * Appends a message to the messages list */ - public function appendMessage(<MessageInterface> message) -> <Validation> + public function appendMessage(<MessageInterface> message) -> <ValidationInterface> { var messages; @@ -439,7 +439,7 @@ class Validation extends Injectable implements ValidationInterface * @param object entity * @param array|object data */ - public function bind(entity, data) -> <Validation> + public function bind(entity, data) -> <ValidationInterface> { if typeof entity != "object" { throw new Exception("Entity must be an object"); @@ -569,7 +569,7 @@ class Validation extends Injectable implements ValidationInterface /** * Internal validations, if it returns true, then skip the current validator */ - protected function preChecking(var field, <ValidatorInterface> validator) -> boolean + protected function preChecking(var field, <ValidatorInterface> validator) -> bool { var singleField, allowEmpty, emptyValue, value, result; if typeof field == "array" { diff --git a/phalcon/validation/validator.zep b/phalcon/validation/validator.zep index e5052c02d11..bde6beb3bbd 100644 --- a/phalcon/validation/validator.zep +++ b/phalcon/validation/validator.zep @@ -42,7 +42,7 @@ abstract class Validator implements ValidatorInterface /** * Checks if an option is defined */ - public function hasOption(string! key) -> boolean + public function hasOption(string! key) -> bool { return isset this->_options[key]; } @@ -85,7 +85,7 @@ abstract class Validator implements ValidatorInterface /** * Executes the validation */ - abstract public function validate(<Validation> validation, string! attribute) -> boolean; + abstract public function validate(<Validation> validation, string! attribute) -> bool; /** * Prepares a label for the field. diff --git a/phalcon/validation/validator/alnum.zep b/phalcon/validation/validator/alnum.zep index c8477512df4..95c426eaa5c 100644 --- a/phalcon/validation/validator/alnum.zep +++ b/phalcon/validation/validator/alnum.zep @@ -65,7 +65,7 @@ class Alnum extends Validator /** * Executes the validation */ - public function validate(<Validation> validation, string! field) -> boolean + public function validate(<Validation> validation, string! field) -> bool { var value, message, label, replacePairs, code; diff --git a/phalcon/validation/validator/alpha.zep b/phalcon/validation/validator/alpha.zep index 34ca27c9e2c..6936a0cb329 100644 --- a/phalcon/validation/validator/alpha.zep +++ b/phalcon/validation/validator/alpha.zep @@ -64,7 +64,7 @@ class Alpha extends Validator /** * Executes the validation */ - public function validate(<Validation> validation, string! field) -> boolean + public function validate(<Validation> validation, string! field) -> bool { var value, message, label, replacePairs, code; diff --git a/phalcon/validation/validator/between.zep b/phalcon/validation/validator/between.zep index 54848df1f7f..bedb941ce67 100644 --- a/phalcon/validation/validator/between.zep +++ b/phalcon/validation/validator/between.zep @@ -76,7 +76,7 @@ class Between extends Validator /** * Executes the validation */ - public function validate(<Validation> validation, string! field) -> boolean + public function validate(<Validation> validation, string! field) -> bool { var value, minimum, maximum, message, label, replacePairs, code; diff --git a/phalcon/validation/validator/callback.zep b/phalcon/validation/validator/callback.zep index 5c2a68bc59e..85745d74953 100644 --- a/phalcon/validation/validator/callback.zep +++ b/phalcon/validation/validator/callback.zep @@ -74,7 +74,7 @@ class Callback extends Validator /** * Executes the validation */ - public function validate(<Validation> validation, string! field) -> boolean + public function validate(<Validation> validation, string! field) -> bool { var message, label, replacePairs, code, callback, returnedValue, data; @@ -111,7 +111,7 @@ class Callback extends Validator elseif typeof returnedValue == "object" && returnedValue instanceof Validator { return returnedValue->validate(validation, field); } - throw new Exception("Callback must return boolean or Phalcon\\Validation\\Validator object"); + throw new Exception("Callback must return bool or Phalcon\\Validation\\Validator object"); } return true; diff --git a/phalcon/validation/validator/confirmation.zep b/phalcon/validation/validator/confirmation.zep index d64b1745bfe..ff55d872167 100644 --- a/phalcon/validation/validator/confirmation.zep +++ b/phalcon/validation/validator/confirmation.zep @@ -71,7 +71,7 @@ class Confirmation extends Validator /** * Executes the validation */ - public function validate(<Validation> validation, string! field) -> boolean + public function validate(<Validation> validation, string! field) -> bool { var fieldWith, value, valueWith, message, label, labelWith, replacePairs, code; @@ -117,7 +117,7 @@ class Confirmation extends Validator /** * Compare strings */ - protected final function compare(string a, string b) -> boolean + protected final function compare(string a, string b) -> bool { if this->getOption("ignoreCase", false) { diff --git a/phalcon/validation/validator/creditcard.zep b/phalcon/validation/validator/creditcard.zep index 8ae3731f0c3..2aecbaf43ff 100644 --- a/phalcon/validation/validator/creditcard.zep +++ b/phalcon/validation/validator/creditcard.zep @@ -64,7 +64,7 @@ class CreditCard extends Validator /** * Executes the validation */ - public function validate(<Validation> validation, string! field) -> boolean + public function validate(<Validation> validation, string! field) -> bool { var message, label, replacePairs, value, valid, code; @@ -97,7 +97,7 @@ class CreditCard extends Validator /** * is a simple checksum formula used to validate a variety of identification numbers */ - private function verifyByLuhnAlgorithm(string number) -> boolean + private function verifyByLuhnAlgorithm(string number) -> bool { array digits; let digits = (array) str_split(number); diff --git a/phalcon/validation/validator/date.zep b/phalcon/validation/validator/date.zep index d8dacc78d1d..8dec4a2c960 100644 --- a/phalcon/validation/validator/date.zep +++ b/phalcon/validation/validator/date.zep @@ -69,7 +69,7 @@ class Date extends Validator /** * Executes the validation */ - public function validate(<Validation> validation, string! field) -> boolean + public function validate(<Validation> validation, string! field) -> bool { var value, format, label, message, replacePairs, code; @@ -106,7 +106,7 @@ class Date extends Validator return true; } - private function checkDate(value, format) -> boolean + private function checkDate(value, format) -> bool { var date, errors; diff --git a/phalcon/validation/validator/digit.zep b/phalcon/validation/validator/digit.zep index 06646dfbe8d..28f28547cf6 100644 --- a/phalcon/validation/validator/digit.zep +++ b/phalcon/validation/validator/digit.zep @@ -65,7 +65,7 @@ class Digit extends Validator /** * Executes the validation */ - public function validate(<Validation> validation, string! field) -> boolean + public function validate(<Validation> validation, string! field) -> bool { var value, message, label, replacePairs, code; diff --git a/phalcon/validation/validator/email.zep b/phalcon/validation/validator/email.zep index 44c6e1446c0..e94342be18b 100644 --- a/phalcon/validation/validator/email.zep +++ b/phalcon/validation/validator/email.zep @@ -65,7 +65,7 @@ class Email extends Validator /** * Executes the validation */ - public function validate(<Validation> validation, string! field) -> boolean + public function validate(<Validation> validation, string! field) -> bool { var value, message, label, replacePairs, code; diff --git a/phalcon/validation/validator/exclusionin.zep b/phalcon/validation/validator/exclusionin.zep index ab8b947007c..e9f4b7fb162 100644 --- a/phalcon/validation/validator/exclusionin.zep +++ b/phalcon/validation/validator/exclusionin.zep @@ -77,7 +77,7 @@ class ExclusionIn extends Validator /** * Executes the validation */ - public function validate(<Validation> validation, string! field) -> boolean + public function validate(<Validation> validation, string! field) -> bool { var value, domain, message, label, replacePairs, strict, fieldDomain, code; @@ -106,7 +106,7 @@ class ExclusionIn extends Validator } if typeof strict != "boolean" { - throw new Exception("Option 'strict' must be a boolean"); + throw new Exception("Option 'strict' must be a bool"); } } diff --git a/phalcon/validation/validator/file.zep b/phalcon/validation/validator/file.zep index 9ae91c34f2f..b46554b6213 100644 --- a/phalcon/validation/validator/file.zep +++ b/phalcon/validation/validator/file.zep @@ -98,7 +98,7 @@ class File extends Validator /** * Executes the validation */ - public function validate(<Validation> validation, string! field) -> boolean + public function validate(<Validation> validation, string! field) -> bool { var value, message, label, replacePairs, types, byteUnits, unit, maxSize, matches, bytes, mime, tmp, width, height, minResolution, maxResolution, minWidth, maxWidth, minHeight, maxHeight, fieldTypes, code, @@ -300,7 +300,7 @@ class File extends Validator /** * Check on empty */ - public function isAllowEmpty(<Validation> validation, string! field) -> boolean + public function isAllowEmpty(<Validation> validation, string! field) -> bool { var value; let value = validation->getValue(field); diff --git a/phalcon/validation/validator/identical.zep b/phalcon/validation/validator/identical.zep index 113dd242ae2..15ada6fe91d 100644 --- a/phalcon/validation/validator/identical.zep +++ b/phalcon/validation/validator/identical.zep @@ -70,7 +70,7 @@ class Identical extends Validator /** * Executes the validation */ - public function validate(<Validation> validation, string! field) -> boolean + public function validate(<Validation> validation, string! field) -> bool { var message, label, replacePairs, value, valid, accepted, valueOption, code; diff --git a/phalcon/validation/validator/inclusionin.zep b/phalcon/validation/validator/inclusionin.zep index b7923eea1cc..be058061662 100644 --- a/phalcon/validation/validator/inclusionin.zep +++ b/phalcon/validation/validator/inclusionin.zep @@ -71,7 +71,7 @@ class InclusionIn extends Validator /** * Executes the validation */ - public function validate(<Validation> validation, string! field) -> boolean + public function validate(<Validation> validation, string! field) -> bool { var value, domain, message, label, replacePairs, strict, fieldDomain, code; @@ -99,7 +99,7 @@ class InclusionIn extends Validator } if typeof strict != "boolean" { - throw new Exception("Option 'strict' must be a boolean"); + throw new Exception("Option 'strict' must be a bool"); } } diff --git a/phalcon/validation/validator/numericality.zep b/phalcon/validation/validator/numericality.zep index a069fc82474..01e5b7603de 100644 --- a/phalcon/validation/validator/numericality.zep +++ b/phalcon/validation/validator/numericality.zep @@ -65,7 +65,7 @@ class Numericality extends Validator /** * Executes the validation */ - public function validate(<Validation> validation, string! field) -> boolean + public function validate(<Validation> validation, string! field) -> bool { var value, message, label, replacePairs, code; diff --git a/phalcon/validation/validator/presenceof.zep b/phalcon/validation/validator/presenceof.zep index 6ca4d908055..80c5000ac00 100644 --- a/phalcon/validation/validator/presenceof.zep +++ b/phalcon/validation/validator/presenceof.zep @@ -65,7 +65,7 @@ class PresenceOf extends Validator /** * Executes the validation */ - public function validate(<Validation> validation, string! field) -> boolean + public function validate(<Validation> validation, string! field) -> bool { var value, message, label, replacePairs, code; diff --git a/phalcon/validation/validator/regex.zep b/phalcon/validation/validator/regex.zep index a73c4e88a23..e6a03bd95ad 100644 --- a/phalcon/validation/validator/regex.zep +++ b/phalcon/validation/validator/regex.zep @@ -70,7 +70,7 @@ class Regex extends Validator /** * Executes the validation */ - public function validate(<Validation> validation, string! field) -> boolean + public function validate(<Validation> validation, string! field) -> bool { var matches, failed, message, value, label, replacePairs, code, pattern; diff --git a/phalcon/validation/validator/stringlength.zep b/phalcon/validation/validator/stringlength.zep index 6acdd471e1a..9fe02c295e3 100644 --- a/phalcon/validation/validator/stringlength.zep +++ b/phalcon/validation/validator/stringlength.zep @@ -83,7 +83,7 @@ class StringLength extends Validator /** * Executes the validation */ - public function validate(<Validation> validation, string! field) -> boolean + public function validate(<Validation> validation, string! field) -> bool { var isSetMin, isSetMax, value, length, message, minimum, maximum, label, replacePairs, code; diff --git a/phalcon/validation/validator/uniqueness.zep b/phalcon/validation/validator/uniqueness.zep index f3cd7861e46..207850c09aa 100644 --- a/phalcon/validation/validator/uniqueness.zep +++ b/phalcon/validation/validator/uniqueness.zep @@ -107,7 +107,7 @@ class Uniqueness extends CombinedFieldsValidator /** * Executes the validation */ - public function validate(<Validation> validation, var field) -> boolean + public function validate(<Validation> validation, var field) -> bool { var message, label; @@ -133,7 +133,7 @@ class Uniqueness extends CombinedFieldsValidator return true; } - protected function isUniqueness(<Validation> validation, var field) -> boolean + protected function isUniqueness(<Validation> validation, var field) -> bool { var values, convert, record, params, className, isModel, isDocument, singleField; diff --git a/phalcon/validation/validator/url.zep b/phalcon/validation/validator/url.zep index 54f490affda..3079791ff0b 100644 --- a/phalcon/validation/validator/url.zep +++ b/phalcon/validation/validator/url.zep @@ -65,7 +65,7 @@ class Url extends Validator /** * Executes the validation */ - public function validate(<Validation> validation, string! field) -> boolean + public function validate(<Validation> validation, string! field) -> bool { var value, message, label, replacePairs, code; diff --git a/phalcon/validation/validatorinterface.zep b/phalcon/validation/validatorinterface.zep index a639ea764f8..4c3d5516ed8 100644 --- a/phalcon/validation/validatorinterface.zep +++ b/phalcon/validation/validatorinterface.zep @@ -30,7 +30,7 @@ interface ValidatorInterface /** * Checks if an option is defined */ - public function hasOption(string! key) -> boolean; + public function hasOption(string! key) -> bool; /** * Returns an option in the validator's options @@ -41,6 +41,6 @@ interface ValidatorInterface /** * Executes the validation */ - public function validate(<\Phalcon\Validation> validation, string! attribute) -> boolean; + public function validate(<\Phalcon\Validation> validation, string! attribute) -> bool; } diff --git a/phpcs.xml b/phpcs.xml index cb4875f3572..24ec41d8b33 100644 --- a/phpcs.xml +++ b/phpcs.xml @@ -8,7 +8,9 @@ <exclude name="Generic.Files.LineLength.TooLong"/> <exclude name="PSR1.Files.SideEffects.FoundWithSymbols"/> </rule> + <file>tests/cli</file> <file>tests/integration</file> <file>tests/unit</file> + <file>tests/_data/fixtures/Traits</file> <file>tests/_support/Helper</file> </ruleset> diff --git a/CHANGELOG-1.x.md b/resources/CHANGELOG-1.x.md similarity index 100% rename from CHANGELOG-1.x.md rename to resources/CHANGELOG-1.x.md diff --git a/CHANGELOG-2.0.md b/resources/CHANGELOG-2.0.md similarity index 100% rename from CHANGELOG-2.0.md rename to resources/CHANGELOG-2.0.md diff --git a/CHANGELOG-3.0.md b/resources/CHANGELOG-3.0.md similarity index 100% rename from CHANGELOG-3.0.md rename to resources/CHANGELOG-3.0.md diff --git a/CHANGELOG-3.1.md b/resources/CHANGELOG-3.1.md similarity index 100% rename from CHANGELOG-3.1.md rename to resources/CHANGELOG-3.1.md diff --git a/CHANGELOG-3.2.md b/resources/CHANGELOG-3.2.md similarity index 100% rename from CHANGELOG-3.2.md rename to resources/CHANGELOG-3.2.md diff --git a/CHANGELOG-3.3.md b/resources/CHANGELOG-3.3.md similarity index 100% rename from CHANGELOG-3.3.md rename to resources/CHANGELOG-3.3.md diff --git a/CHANGELOG-3.4.md b/resources/CHANGELOG-3.4.md similarity index 100% rename from CHANGELOG-3.4.md rename to resources/CHANGELOG-3.4.md diff --git a/tests/README.md b/tests/README.md index f97e9165bce..cee95c2ca4b 100644 --- a/tests/README.md +++ b/tests/README.md @@ -2,14 +2,13 @@ Welcome to the Phalcon Testing Suite. -This folder includes all the unit tests that test Phalcon components, ensuring that you enjoy a bug free framework. +This folder contains all the tests for the Phalcon Framework. ## Getting Started -This testing suite uses [Travis CI][0] for each run. Every commit pushed to this repository will queue a build into the continuous integration service and will run all -tests to ensure that everything is going well and the project is stable. +This testing suite uses [Travis CI][0] for each run. Every commit pushed to this repository will queue a build into the continuous integration service and will run all tests to ensure that everything is going well and the project is stable. -The testing suite can be run on your own machine. The main dependency is [Codeception][1] which can be installed using [Composer][6]: +The testing suite can be run on your own machine. The only dependencies for running the testing suite or even developing on Phalcon is [nanobox][9]`. Installation instructions for nanobox can be found [here][10]. Also, the main dependency is [Codeception][1] which can be installed using [Composer][6]: ```sh # run this command from project root @@ -21,116 +20,135 @@ You can read more about installing and configuring Codeception from the followin - [Codeception Introduction][2] - [Codeception Console Commands][3] -A MySQL/PostgreSQL databases is also bundled in this suite. You can create a databases as follows: - -*MySQL* -```sh -echo 'create database phalcon_test charset=utf8mb4 collate=utf8mb4_unicode_ci;' | mysql -u root -mysql -uroot phalcon_test < tests/_data/schemas/phalcon-schema-mysql.sql +The container based environment contains all the services you need to write and run your tests. These services are: +- Beanstalkd +- Memcached +- Mongodb +- Mysql +- Postgresql +- Redis + +The PHP extensions enabled are: +- apcu +- ctype +- curl +- dom +- fileinfo +- gd +- gmp +- gettext +- imagick +- iconv +- igbinary +- json +- memcached +- mbstring +- mongodb +- opcache +- phar +- pdo +- pdo_mysql +- pdo_pgsql +- pdo_sqlite +- redis +- session +- simplexml +- tokenizer +- yaml +- zephir_parser +- xdebug +- xml +- xmlwriter +- zip +- zlib + +## Start the environment +We will need a terminal window, so open one if you don't have one already and navigate to the folder where you have cloned the repository (or a fork of it) + +Nanobox reads its configuration, so as to start the environment, from a file called `boxfile.yml` located at the root of your folder. By default the file is not there to allow for more flexibility. We have two setup files, one for PHP 7.2 and one for PHP 7.3. If you wish to set up an environment for Phalcon using PHP 7.2, you can copy the relevant file at the root of your folder: + +```bash +cp -v ./tests/_ci/nanobox/boxfile.7.2.yml ./boxfile.yml ``` -*PostgreSQL* -```sh -psql -c 'create database phalcon_test;' -U postgres -psql -U postgres phalcon_test -q -f tests/_data/schemas/phalcon-schema-postgresql.sql -``` - -**Note:** For these MySQL-related we use the user `root` without a password. -You may need to change this in `codeception.yml` file. - -Obviously, Beanstalk-tests use Beanstalk, Memcached-tests use Memcached, etc. - -We use the following settings of these services: +You cal also create a 7.3 environment by copying the relevant file. -**Beanstalk** - -* Host: `127.0.0.1` -* Port: `11300` - -**Memcached** - -* Host: `127.0.0.1` -* Port: `11211` - -**SQLite** +Run +```bash +nanobox run +``` -* DB Name: `tests/_output/tests/phalcon_test.sqlite` +The process will take a while (for the first time) and once it is done you will be inside the environment. The prompt of your terminal will be: + +```bash +Preparing environment : + +.... + + ** + ******** + *************** + ********************* + ***************** + :: ********* :: + :: *** :: + ++ ::: ::: ++ + ++ ::: ++ + ++ ++ + + + _ _ ____ _ _ ____ ___ ____ _ _ + |\ | |__| |\ | | | |__) | | \/ + | \| | | | \| |__| |__) |__| _/\_ + +-------------------------------------------------------------------------------- ++ You are in a Linux container ++ Your local source code has been mounted into the container ++ Changes to your code in either the container or desktop will be mirrored ++ If you run a server, access it at >> 172.18.0.2 +-------------------------------------------------------------------------------- + +/app $ +``` -**MySQL** +First update composer: +```sh +# run this command from project root +/app $ composer install --dev --prefer-source +``` -* Host: `127.0.0.1` -* Port: `3306` -* Username: `root` -* Password: `''` (empty string) -* DB Name: `phalcon_test` -* Charset: `utf8` +Download the `zephir` phar file and make it executable +```bash +/app $ wget --no-clobber -O /opt/gonano/bin/zephir https://github.com/phalcon/zephir/releases/download/0.11.7/zephir.phar +/app $ chmod +x /opt/gonano/bin/zephir +``` -**PostgreSQL** +Now that zephir is in your environment, you can check it by typing: +```bash +/app $ zephir +``` -* Host: `127.0.0.1` -* Port: `5432` -* Username: `postgres` -* Password: `''` (empty string) -* DB Name: `phalcon_test` +This should show you the help screen. You can now compile the extension: +```bash +/app $ zephir fullclean +/app $ zephir build -**Mongo** +``` -* Host: `127.0.0.1` -* Port: `27017` -* Username: `admin` -* Password: `''` (empty string) -* DB Name `phalcon_test` +After the compilation is completed, you can check if the extension is loaded: +```bash +/app $ php -m | grep phalcon +``` -**Redis** +## Setup databases +The SQL dump files are located under `tests/_data/assets/db/schemas`. When importing your Postgresql database, please make sure you use the file suffixed with `*nanobox`. You can run the following commands from your nanobox environment -* Host: `127.0.0.1` -* Port: `6379` -* DB Index `0` +```sh +/app $ cat ./tests/_data/assets/db/schemas/mysql_schema.sql" | mysql -u root gonano -You can change the connection settings of these services **before** running tests by using [environment variables][8]: +/app $ psql -U nanobox gonanophalcon_test -q -f ./tests/_data/assets/db/schemas/postgresql_schema.sql -```sh -# Beanstalk -export TEST_BT_HOST="127.0.0.1" -export TEST_BT_PORT="11300" - -# Memcached -export TEST_MC_HOST="127.0.0.1" -export TEST_MC_PORT="11211" -export TEST_MC_WEIGHT="1" - -# SQLite -export TEST_DB_SQLITE_NAME="/tmp/phalcon_test.sqlite" - -# MySQL -export TEST_DB_MYSQL_DSN="mysql:host=localhost;dbname=phalcon_test" -export TEST_DB_MYSQL_HOST="127.0.0.1" -export TEST_DB_MYSQL_PORT="3306" -export TEST_DB_MYSQL_USER="root" -export TEST_DB_MYSQL_PASSWD="" -export TEST_DB_MYSQL_NAME="phalcon_test" -export TEST_DB_MYSQL_CHARSET="utf8" - -# Postgresql -export TEST_DB_POSTGRESQL_HOST="127.0.0.1" -export TEST_DB_POSTGRESQL_PORT="5432" -export TEST_DB_POSTGRESQL_USER="postgres" -export TEST_DB_POSTGRESQL_PASSWD="" -export TEST_DB_POSTGRESQL_NAME="phalcon_test" - -# Mongo -export TEST_DB_MONGO_HOST="127.0.0.1" -export TEST_DB_MONGO_PORT="27017" -export TEST_DB_MONGO_USER="admin" -export TEST_DB_MONGO_PASSWD="" -export TEST_DB_MONGO_NAME="phalcon_test" - -# Redis -export TEST_RS_HOST="127.0.0.1" -export TEST_RS_PORT="6379" -export TEST_RS_DB="0" - -export TEST_CACHE_DIR="/tmp" +/app $ sqlite3 ./tests/_output/phalcon_test.sqlite < ./tests/_data/assets/db/schemas/sqlite_schema.sql +/app $ sqlite3 ./tests/_output/translations.sqlite < ./tests/_data/assets/db/schemas/sqlite_translations_schema.sql ``` ## Run tests @@ -138,37 +156,38 @@ export TEST_CACHE_DIR="/tmp" First you need to re-generate base classes for all suites: ```sh -vendor/bin/codecept build +/app $ codecept build ``` Once the database is created, run the tests on a terminal: ```sh -vendor/bin/codecept run +/app $ codecept run # OR -vendor/bin/codecept run --debug # Detailed output +/app $ codecept run --debug # Detailed output ``` Execute `unit` test with `run unit` command: ```sh -vendor/bin/codecept run unit +/app $ codecept run unit ``` Execute all tests from a folder: ```sh -vendor/bin/codecept run tests/unit/some/folder/ +/app $ codecept run tests/unit/some/folder/ ``` Execute single test: ```sh -vendor/bin/codecept run tests/unit/some/folder/some/test/file.php +/app $ codecept run tests/unit/some/folder/some/test/file.php ``` ## Todo - +- [ ] Add more information in this readme +- [ ] Write tests for the skipped ones in the suite - [ ] Tests for foreign keys cascade in the ORM - [ ] Tests for many-to-many relations - [ ] Tests for `+=`, `-=`, `*=`, `/=`, `++`, `--` in Volt @@ -180,14 +199,13 @@ vendor/bin/codecept run tests/unit/some/folder/some/test/file.php **Note:** Cache-related tests are slower than others tests because they use wait states (sleep command) to expire generated caches. -The file `.travis.yml` contains full instructions to test Phalcon Framework on Ubuntu 12+ -If you cannot run the tests, please check the file `.travis.yml` for an in depth view on how test Phalcon. -Additional information regarding our testing environment can be found by looking at the `tests/_bootstrap.php` file. - <hr> -Please report any issue if you find out bugs or memory leaks.<br>Thanks! +Please report any issue if you find out bugs or memory leaks. + + +Thanks! -Phalcon Framework Team<br>2017 +<3 Phalcon Framework Team [0]: https://travis-ci.org/ [1]: http://codeception.com/ @@ -196,3 +214,5 @@ Phalcon Framework Team<br>2017 [6]: http://getcomposer.org [7]: https://github.com/phalcon/cphalcon/tree/master/tests/_proxies [8]: https://wiki.archlinux.org/index.php/Environment_variables +[8]: https://nanobox.io/ +[10]: https://docs.nanobox.io/install/ diff --git a/tests/_bootstrap.php b/tests/_bootstrap.php index 3d8cd19b732..755c47a50c1 100644 --- a/tests/_bootstrap.php +++ b/tests/_bootstrap.php @@ -17,19 +17,17 @@ clearstatcache(); -$root = realpath(dirname(__FILE__)) . DIRECTORY_SEPARATOR; +$root = dirname(realpath(dirname(__FILE__)) . DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR; +/** + * Setting this in the $_ENV so that DotLoad sets everything up properly + */ +$_ENV['PROJECT_PATH'] = $root; -defined('TESTS_PATH') || define('TESTS_PATH', $root); -defined('PROJECT_PATH') || define('PROJECT_PATH', dirname(TESTS_PATH) . DIRECTORY_SEPARATOR); -defined('PATH_DATA') || define('PATH_DATA', $root . '_data' . DIRECTORY_SEPARATOR); -defined('PATH_CACHE') || define('PATH_CACHE', $root . '_cache' . DIRECTORY_SEPARATOR); -defined('PATH_OUTPUT') || define('PATH_OUTPUT', $root . '_output' . DIRECTORY_SEPARATOR); -defined('PATH_FIXTURES')|| define('PATH_FIXTURES', $root . '_fixtures' . DIRECTORY_SEPARATOR); +require_once $root . 'vendor/autoload.php'; +require_once $root . 'tests/shim.php'; -unset($root); - -require_once PROJECT_PATH . 'vendor/autoload.php'; -require_once TESTS_PATH . 'shim.php'; +loadEnvironment($root); +loadFolders(); if (extension_loaded('xdebug')) { ini_set('xdebug.cli_color', 1); @@ -40,62 +38,4 @@ ini_set('xdebug.var_display_max_depth', 4); } -$defaults = [ - // General - "TEST_CACHE_DIR" => TESTS_PATH . '_cache' . DIRECTORY_SEPARATOR, - - // Beanstalk - "TEST_BT_HOST" => '127.0.0.1', - "TEST_BT_PORT" => 11300, - - // Memcached - "TEST_MC_HOST" => defined('DATA_MEMCACHED_HOST') ? getenv('DATA_MEMCACHED_HOST') : '127.0.0.1', - "TEST_MC_PORT" => 11211, - "TEST_MC_WEIGHT" => 1, - - // SQLite - "TEST_DB_SQLITE_NAME" => PATH_OUTPUT . 'phalcon_test.sqlite', - "TEST_DB_I18N_SQLITE_NAME" => PATH_OUTPUT . 'translations.sqlite', - - // MySQL - "TEST_DB_MYSQL_HOST" => defined('DATA_MYSQL_HOST') ? getenv('DATA_MYSQL_HOST') : '127.0.0.1', - "TEST_DB_MYSQL_PORT" => 3306, - "TEST_DB_MYSQL_USER" => 'root', - "TEST_DB_MYSQL_PASSWD" => defined('DATA_MYSQL_ROOT_PASS') ? getenv('DATA_MYSQL_ROOT_PASS') : '', - "TEST_DB_MYSQL_NAME" => defined('DATA_MYSQL_HOST') ? 'gonano' : 'phalcon_test', - "TEST_DB_MYSQL_CHARSET" => 'utf8', - - // Postgresql - "TEST_DB_POSTGRESQL_HOST" => defined('DATA_POSTGRES_HOST') ? getenv('DATA_POSTGRES_HOST') : '127.0.0.1', - "TEST_DB_POSTGRESQL_PORT" => 5432, - "TEST_DB_POSTGRESQL_USER" => defined('DATA_POSTGRES_NANOBOX_USER') ? getenv('DATA_POSTGRES_NANOBOX_USER') : 'postgres', - "TEST_DB_POSTGRESQL_PASSWD" => defined('DATA_POSTGRES_NANOBOX_PASS') ? getenv('DATA_POSTGRES_NANOBOX_PASS') : '', - "TEST_DB_POSTGRESQL_NAME" => defined('DATA_POSTGRES_HOST') ? 'gonano' : 'phalcon_test', - "TEST_DB_POSTGRESQL_SCHEMA" => 'public', - - // Mongo - "TEST_DB_MONGO_HOST" => defined('DATA_MONGODB_HOST') ? getenv('DATA_MONGODB_HOST') : '127.0.0.1', - "TEST_DB_MONGO_PORT" => 27017, - "TEST_DB_MONGO_USER" => 'admin', - "TEST_DB_MONGO_PASSWD" => '', - "TEST_DB_MONGO_NAME" => 'phalcon_test', - - // Redis - "TEST_RS_HOST" => defined('DATA_REDIS_HOST') ? getenv('DATA_REDIS_HOST') : '127.0.0.1', - "TEST_RS_PORT" => 6379, - "TEST_RS_DB" => 0, -]; - -/** - * Check if this is running in nanobox and adjust the above - */ - -foreach ($defaults as $key => $defaultValue) { - if (defined($key)) { - continue; - } - - $value = getenv($key) ?: $defaultValue; - - define($key, $value); -} +unset($root); diff --git a/tests/_cache/.gitignore b/tests/_cache/.gitignore deleted file mode 100644 index c96a04f008e..00000000000 --- a/tests/_cache/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore \ No newline at end of file diff --git a/tests/_ci/.env.default b/tests/_ci/.env.default new file mode 100644 index 00000000000..52760e639eb --- /dev/null +++ b/tests/_ci/.env.default @@ -0,0 +1,48 @@ +# General +PATH_DATA="${PROJECT_PATH}tests/_data/" +PATH_CACHE="${PROJECT_PATH}tests/_cache/" +PATH_OUTPUT="${PROJECT_PATH}tests/_output/" +PATH_FIXTURES="${PROJECT_PATH}tests/_data/fixtures/" + +# Memcached +DATA_MEMCACHED_HOST="127.0.0.1" +DATA_MEMCACHED_PORT="11211" +DATA_MEMCACHED_WEIGHT="1" + +# MySQL +DATA_MYSQL_HOST="127.0.0.1", +DATA_MYSQL_PORT="3306" +DATA_MYSQL_USER="root", +DATA_MYSQL_PASS="" +DATA_MYSQL_NAME="gonano" +DATA_MYSQL_CHARSET= "utf8" +DATA_MYSQL_DSN="mysql:host=${DATA_MYSQL_HOST};dbname=${DATA_MYSQL_NAME}" + +# Postgresql +DATA_POSTGRES_HOST="127.0.0.1" +DATA_POSTGRES_PORT="5432", +DATA_POSTGRES_USER="postgres" +DATA_POSTGRES_PASS="" +DATA_POSTGRES_NAME="gonano" +DATA_POSTGRES_SCHEMA="public" + +# Mongo +DATA_MONGODB_HOST="127.0.0.1" +DATA_MONGODB_PORT="27017" +DATA_MONGODB_USER="admin" +DATA_MONGODB_PASS="" +DATA_MONGODB_NAME="phalcon_test" + +# Redis +DATA_REDIS_HOST="127.0.0.1" +DATA_REDIS_PORT="6379" +DATA_REDIS_NAME="0" + +# Beanstalk +DATA_BEANSTALKD_HOST="127.0.0.1" +DATA_BEANSTALKD_PORT="11300" + +# SQLite +DATA_SQLITE_NAME="${PROJECT_PATH}tests/_output/phalcon_test.sqlite" +DATA_SQLITE_I18N_NAME="${PROJECT_PATH}tests/_output/translations.sqlite" + diff --git a/tests/_ci/999-default.ini b/tests/_ci/999-default.ini index 59a3dc988dc..a2db83eaa86 100644 --- a/tests/_ci/999-default.ini +++ b/tests/_ci/999-default.ini @@ -1,19 +1,20 @@ -; This file is part of the Phalcon. +; +; This file is part of the Phalcon Framework. ; ; (c) Phalcon Team <team@phalconphp.com> ; -; For the full copyright and license information, please view the -; https://github.com/phalcon/cphalcon/blob/master/LICENSE.txt -; file. +; For the full copyright and license information, please view the LICENSE.txt +; file that was distributed with this source code. +; -variables_order=EGPCS +variables_order = EGPCS [opcache] -opcache.enable_cli=1 +opcache.enable_cli = 1 -[apc] -apc.enabled=1 -apc.enable_cli=1 +[apcu] +apcu.enabled = 1 +apcu.enable_cli = 1 [redis] -extension=redis.so +extension = redis.so diff --git a/tests/_ci/after-failure.sh b/tests/_ci/after-failure.sh index 738032dd891..9dfd61a582d 100755 --- a/tests/_ci/after-failure.sh +++ b/tests/_ci/after-failure.sh @@ -1,11 +1,12 @@ #!/usr/bin/env bash # -# This file is part of the Phalcon. +# This file is part of the Phalcon Framework. # # (c) Phalcon Team <team@phalconphp.com> # # For the full copyright and license information, please view the LICENSE.txt # file that was distributed with this source code. +# shopt -s nullglob diff --git a/tests/_ci/after-success.sh b/tests/_ci/after-success.sh index 3b54d32eb63..3a87e9540f6 100755 --- a/tests/_ci/after-success.sh +++ b/tests/_ci/after-success.sh @@ -1,11 +1,12 @@ #!/usr/bin/env bash # -# This file is part of the Zephir. +# This file is part of the Phalcon Framework. # -# (c) Zephir Team <team@zephir-lang.com> +# (c) Phalcon Team <team@phalconphp.com> +# +# For the full copyright and license information, please view the LICENSE.txt +# file that was distributed with this source code. # -# For the full copyright and license information, please view the -# https://docs.zephir-lang.com/en/latest/license license. set -e +o pipefail diff --git a/tests/_ci/appveyor.psm1 b/tests/_ci/appveyor.psm1 index 296b98b1f5a..85c522dc1e6 100644 --- a/tests/_ci/appveyor.psm1 +++ b/tests/_ci/appveyor.psm1 @@ -1,9 +1,11 @@ -# This file is part of the Phalcon. +# +# This file is part of the Phalcon Framework. # # (c) Phalcon Team <team@phalconphp.com> # # For the full copyright and license information, please view the LICENSE.txt # file that was distributed with this source code. +# Function PrepareReleaseNote { $ReleaseFile = "${Env:APPVEYOR_BUILD_FOLDER}\package\RELEASE.txt" diff --git a/tests/_ci/build.sh b/tests/_ci/build.sh index 5587b212229..19355e42d72 100755 --- a/tests/_ci/build.sh +++ b/tests/_ci/build.sh @@ -1,11 +1,12 @@ #!/usr/bin/env bash # -# This file is part of the Zephir. +# This file is part of the Phalcon Framework. # -# (c) Zephir Team <team@zephir-lang.com> +# (c) Phalcon Team <team@phalconphp.com> +# +# For the full copyright and license information, please view the LICENSE.txt +# file that was distributed with this source code. # -# For the full copyright and license information, please view the -# https://docs.zephir-lang.com/en/latest/license license. PROJECT_ROOT=$(readlink -enq "$(dirname $0)/../../") LCOV_REPORT=${PROJECT_ROOT}/tests/_output/lcov.info diff --git a/tests/_ci/environment b/tests/_ci/environment index 8ab73f907ce..20d9eaf2738 100644 --- a/tests/_ci/environment +++ b/tests/_ci/environment @@ -1,28 +1,11 @@ -TEST_BT_HOST="127.0.0.1" -TEST_BT_PORT="11300" -TEST_MC_HOST="127.0.0.1" -TEST_MC_PORT="11211" -TEST_MC_WEIGHT="1" -TEST_DB_SQLITE_NAME="/tmp/phalcon_test.sqlite" -TEST_DB_I18N_SQLITE_NAME="/tmp/translations.sqlite" -TEST_DB_MYSQL_HOST="127.0.0.1" -TEST_DB_MYSQL_PORT="3306" -TEST_DB_MYSQL_USER="root" -TEST_DB_MYSQL_PASSWD="" -TEST_DB_MYSQL_NAME="phalcon_test" -TEST_DB_MYSQL_CHARSET="utf8" -TEST_DB_POSTGRESQL_HOST="127.0.0.1" -TEST_DB_POSTGRESQL_PORT="5432" -TEST_DB_POSTGRESQL_USER="postgres" -TEST_DB_POSTGRESQL_PASSWD="" -TEST_DB_POSTGRESQL_NAME="phalcon_test" -TEST_DB_MYSQL_DSN="mysql:host=127.0.0.1;dbname=phalcon_test" -TEST_DB_MONGO_HOST="127.0.0.1" -TEST_DB_MONGO_PORT="27017" -TEST_DB_MONGO_USER="admin" -TEST_DB_MONGO_PASSWD="" -TEST_DB_MONGO_NAME="phalcon_test" -TEST_RS_HOST="127.0.0.1" -TEST_RS_PORT="6379" -TEST_RS_DB="0" -TEST_CACHE_DIR="tests/_cache/" +DATA_BEANSTALKD_HOST="127.0.0.1" +DATA_MYSQL_HOST="127.0.0.1" +DATA_MYSQL_USER="root" +DATA_MYSQL_PASS="" +DATA_MYSQL_NAME="phalcon_test" +DATA_MONGODB_HOST="127.0.0.1" +DATA_POSTGRES_HOST="127.0.0.1" +DATA_POSTGRES_USER="postgres" +DATA_POSTGRES_PASS="" +DATA_POSTGRES_NAME="phalcon_test" +DATA_REDIS_HOST="127.0.0.1" diff --git a/tests/_ci/install-prereqs.sh b/tests/_ci/install-prereqs.sh index 37019c082bb..8214f37a579 100755 --- a/tests/_ci/install-prereqs.sh +++ b/tests/_ci/install-prereqs.sh @@ -1,11 +1,12 @@ #!/usr/bin/env bash # -# This file is part of the Phalcon. +# This file is part of the Phalcon Framework. # # (c) Phalcon Team <team@phalconphp.com> # # For the full copyright and license information, please view the LICENSE.txt # file that was distributed with this source code. +# PHP_VERNUM="$(`phpenv which php-config` --vernum)" diff --git a/tests/_ci/install-re2c.sh b/tests/_ci/install-re2c.sh index fd07ce2c5f2..5d8101cff9b 100755 --- a/tests/_ci/install-re2c.sh +++ b/tests/_ci/install-re2c.sh @@ -1,11 +1,12 @@ #!/usr/bin/env bash # -# This file is part of the Phalcon. +# This file is part of the Phalcon Framework. # # (c) Phalcon Team <team@phalconphp.com> # # For the full copyright and license information, please view the LICENSE.txt # file that was distributed with this source code. +# if [ -z ${RE2C_VERSION+x} ]; then echo "The RE2C_VERSION is unset. Stop." diff --git a/tests/_ci/nanobox/.env.example b/tests/_ci/nanobox/.env.example new file mode 100644 index 00000000000..095d80190da --- /dev/null +++ b/tests/_ci/nanobox/.env.example @@ -0,0 +1,37 @@ +# General +PATH_DATA="/app/tests/_data/" +PATH_CACHE="/app/tests/_cache/" +PATH_OUTPUT="/app/tests/_output/" +PATH_FIXTURES="/app/tests/_data/fixtures/" + +# Memcached +DATA_MEMCACHED_PORT="11211" +DATA_MEMCACHED_WEIGHT="1" + +# MySQL +DATA_MYSQL_NAME="gonano" +DATA_MYSQL_PORT="3306" +DATA_MYSQL_CHARSET= "utf8" +DATA_MYSQL_DSN="mysql:host=${DATA_MYSQL_HOST};dbname=${DATA_MYSQL_NAME}" + +# Postgresql +DATA_POSTGRES_PORT="5432", +DATA_POSTGRES_NAME="gonano" +DATA_POSTGRES_SCHEMA="public" + +# Mongo +DATA_MONGODB_PORT="27017" +DATA_MONGODB_USER="admin" +DATA_MONGODB_PASS="" +DATA_MONGODB_NAME="phalcon_test" + +# Redis +DATA_REDIS_PORT="6379" +DATA_REDIS_NAME="0" + +# Beanstalk +DATA_BEANSTALKD_PORT="11300" + +# SQLite +DATA_SQLITE_NAME="/app/tests/_output/phalcon_test.sqlite" +DATA_SQLITE_I18N_NAME="/app/tests/_output/translations.sqlite" diff --git a/tests/_ci/nanobox/boxfile.7.2.yml b/tests/_ci/nanobox/boxfile.7.2.yml new file mode 100644 index 00000000000..ad3f56ccfa2 --- /dev/null +++ b/tests/_ci/nanobox/boxfile.7.2.yml @@ -0,0 +1,101 @@ +run.config: + engine: php + engine.config: + runtime: php-7.2 + extensions: + - apcu + - ctype + - curl + - dom + - fileinfo + - gd + - gmp + - gettext + - imagick + - iconv + - igbinary + - json + - mbstring + - memcached + - phar + - pdo + - pdo_mysql + - pdo_pgsql + - pdo_sqlite + - session + - simplexml + - tokenizer + - yaml + - zephir_parser + - xml + - xmlwriter + - zip + - zlib + - mongodb + - redis + zend_extensions: + - opcache + dev_zend_extensions: + add: + - xdebug + rm: + - opcache + extra_packages: + - autoconf + - freefonts + - freetype2 + - fontconfig + - mysql-client + # - postgresql94-client + - re2c + - sqlite3 + extra_steps: + #=========================================================================== + # PSR extension compilation + - | + ( + CURRENT_FOLDER=$(pwd) + rm -fR $CURRENT_FOLDER/build/php-psr + cd $CURRENT_FOLDER/build + git clone --depth=1 https://github.com/jbboehr/php-psr.git + cd php-psr + set -e + phpize + ./configure --with-php-config=$(which php-config) + make -j"$(getconf _NPROCESSORS_ONLN)" + make install + cd $CURRENT_FOLDER + rm -fR $CURRENT_FOLDER/build/php-psr + unset CURRENT_FOLDER + ) + - echo -e 'extension=psr.so' >> "/data/etc/php/dev_php.ini" + #=========================================================================== + # Get the Zephir phar + - wget --no-clobber -O /opt/gonano/bin/zephir https://github.com/phalcon/zephir/releases/download/0.11.8/zephir.phar + - chmod +x /opt/gonano/bin/zephir + #=========================================================================== + # This is here so that Phalcon can be used right after compilation + - echo -e 'extension=phalcon.so' >> "/data/etc/php/dev_php.ini" + #=========================================================================== + # Options for opcache and apcu + - echo -e 'opcache.enable_cli=1' >> "/data/etc/php/dev_php.ini" + - echo -e 'apcu.enabled=1' >> "/data/etc/php/dev_php.ini" + - echo -e 'apcu.enable_cli=1' >> "/data/etc/php/dev_php.ini" + +data.beanstalkd: + image: schickling/beanstalkd + +data.memcached: + image: nanobox/memcached:1.4 + +data.mongodb: + image: nanobox/mongodb:3.0 + +data.mysql: + image: nanobox/mysql:5.7 + +data.postgres: + image: nanobox/postgresql:9.5 + +data.redis : + image : nanobox/redis:3.2 diff --git a/tests/_ci/nanobox/boxfile.7.3.yml b/tests/_ci/nanobox/boxfile.7.3.yml new file mode 100644 index 00000000000..578a055307e --- /dev/null +++ b/tests/_ci/nanobox/boxfile.7.3.yml @@ -0,0 +1,101 @@ +run.config: + engine: php + engine.config: + runtime: php-7.3 + extensions: + - apcu + - ctype + - curl + - dom + - fileinfo + - gd + - gmp + - gettext + - imagick + - iconv + - igbinary + - json + - mbstring + - memcached + - phar + - pdo + - pdo_mysql + - pdo_pgsql + - pdo_sqlite + - session + - simplexml + - tokenizer + - yaml + - zephir_parser + - xml + - xmlwriter + - zip + - zlib + - mongodb + - redis + zend_extensions: + - opcache + dev_zend_extensions: + add: + - xdebug + rm: + - opcache + extra_packages: + - autoconf + - freefonts + - freetype2 + - fontconfig + - mysql-client + # - postgresql94-client + - re2c + - sqlite3 + extra_steps: + #=========================================================================== + # PSR extension compilation + - | + ( + CURRENT_FOLDER=$(pwd) + rm -fR $CURRENT_FOLDER/build/php-psr + cd $CURRENT_FOLDER/build + git clone --depth=1 https://github.com/jbboehr/php-psr.git + cd php-psr + set -e + phpize + ./configure --with-php-config=$(which php-config) + make -j"$(getconf _NPROCESSORS_ONLN)" + make install + cd $CURRENT_FOLDER + rm -fR $CURRENT_FOLDER/build/php-psr + unset CURRENT_FOLDER + ) + - echo -e 'extension=psr.so' >> "/data/etc/php/dev_php.ini" + #=========================================================================== + # Get the Zephir phar + - wget --no-clobber -O /opt/gonano/bin/zephir https://github.com/phalcon/zephir/releases/download/0.11.8/zephir.phar + - chmod +x /opt/gonano/bin/zephir + #=========================================================================== + # This is here so that Phalcon can be used right after compilation + - echo -e 'extension=phalcon.so' >> "/data/etc/php/dev_php.ini" + #=========================================================================== + # Options for opcache and apcu + - echo -e 'opcache.enable_cli=1' >> "/data/etc/php/dev_php.ini" + - echo -e 'apcu.enabled=1' >> "/data/etc/php/dev_php.ini" + - echo -e 'apcu.enable_cli=1' >> "/data/etc/php/dev_php.ini" + +data.beanstalkd: + image: schickling/beanstalkd + +data.memcached: + image: nanobox/memcached:1.4 + +data.mongodb: + image: nanobox/mongodb:3.0 + +data.mysql: + image: nanobox/mysql:5.7 + +data.postgres: + image: nanobox/postgresql:9.5 + +data.redis : + image : nanobox/redis:3.2 diff --git a/tests/_ci/nanobox/setup-dbs-nanobox.sh b/tests/_ci/nanobox/setup-dbs-nanobox.sh new file mode 100755 index 00000000000..6cb90230d07 --- /dev/null +++ b/tests/_ci/nanobox/setup-dbs-nanobox.sh @@ -0,0 +1,34 @@ +#!/usr/bin/env bash +# +# This file is part of the Phalcon Framework. +# +# (c) Phalcon Team <team@phalconphp.com> +# +# For the full copyright and license information, please view the LICENSE.txt +# file that was distributed with this source code. +# + +PROJECT_ROOT=$(readlink -enq "$(dirname $0)/../../") + +echo -e "Populate MySQL database..." +cat "${PROJECT_ROOT}/tests/_data/assets/db/schemas/mysql_schema.sql" | \ + mysql --username="${DATA_MYSQL_USER}" --host="${DATA_MYSQL_HOST}" --password="${DATA_MYSQL_PASS}" gonano +echo -e "Done\n" + +echo -e "Create PostgreSQL database..." +PGPASSWORD="${DATA_POSTGRES_PASS}" \ +psql --username="${DATA_POSTGRES_USER}" --host="${DATA_POSTGRES_HOST}" gonano \ + -q -f "${PROJECT_ROOT}/tests/_data/assets/db/schemas/postgresql_schema_nanobox.sql" +echo -e "Done\n" + +echo -e "Create SQLite database..." +sqlite3 "${PROJECT_ROOT}/tests/_output/phalcon_test.sqlite" < \ + "${PROJECT_ROOT}/tests/_data/assets/db/schemas/sqlite_schema.sql" +echo -e "Done\n" + +echo -e "Create translations SQLite database..." +sqlite3 "${PROJECT_ROOT}/tests/_output/translations.sqlite" < \ + "${PROJECT_ROOT}/tests/_data/assets/db/schemas/sqlite_translations_schema.sql" +echo -e "Done\n" + +wait diff --git a/tests/_ci/pear-setup.sh b/tests/_ci/pear-setup.sh index 56e1ca9f21a..222a9606c03 100755 --- a/tests/_ci/pear-setup.sh +++ b/tests/_ci/pear-setup.sh @@ -1,11 +1,12 @@ #!/usr/bin/env bash # -# This file is part of the Phalcon. +# This file is part of the Phalcon Framework. # # (c) Phalcon Team <team@phalconphp.com> # # For the full copyright and license information, please view the LICENSE.txt # file that was distributed with this source code. +# # trace ERR through pipes set -o pipefail diff --git a/tests/_ci/phalcon.ini b/tests/_ci/phalcon.ini index cff6be0c055..ff4a7e794fd 100644 --- a/tests/_ci/phalcon.ini +++ b/tests/_ci/phalcon.ini @@ -1,13 +1,14 @@ -; This file is part of the Phalcon. +; +; This file is part of the Phalcon Framework. ; ; (c) Phalcon Team <team@phalconphp.com> ; -; For the full copyright and license information, please view the -; https://github.com/phalcon/cphalcon/blob/master/LICENSE.txt -; file. +; For the full copyright and license information, please view the LICENSE.txt +; file that was distributed with this source code. +; [phalcon] -extension=phalcon.so +extension = phalcon.so ; ----- Options to use the Phalcon Framework diff --git a/tests/_ci/precompile-headers.sh b/tests/_ci/precompile-headers.sh index 23fc5bc26ca..79a99cf3251 100755 --- a/tests/_ci/precompile-headers.sh +++ b/tests/_ci/precompile-headers.sh @@ -1,11 +1,12 @@ #!/usr/bin/env bash # -# This file is part of the Phalcon. +# This file is part of the Phalcon Framework. # # (c) Phalcon Team <team@phalconphp.com> # # For the full copyright and license information, please view the LICENSE.txt # file that was distributed with this source code. +# if [[ -z "${CC}" ]]; then echo "The CC variable is unset or set to the empty string. Skip" diff --git a/tests/_ci/setup-dbs.sh b/tests/_ci/setup-dbs.sh index 0f01030f5ff..a9d19e590b5 100755 --- a/tests/_ci/setup-dbs.sh +++ b/tests/_ci/setup-dbs.sh @@ -1,30 +1,31 @@ #!/usr/bin/env bash # -# This file is part of the Phalcon. +# This file is part of the Phalcon Framework. # # (c) Phalcon Team <team@phalconphp.com> # # For the full copyright and license information, please view the LICENSE.txt # file that was distributed with this source code. +# PROJECT_ROOT=$(readlink -enq "$(dirname $0)/../../") echo -e "Create MySQL database..." mysql -u root -e "CREATE DATABASE IF NOT EXISTS phalcon_test charset=utf8mb4 collate=utf8mb4_unicode_ci;" -cat "${PROJECT_ROOT}/tests/_data/schemas/phalcon-schema-mysql.sql" | mysql -u root phalcon_test +cat "${PROJECT_ROOT}/tests/_data/assets/db/schemas/mysql_schema.sql" | mysql -u root phalcon_test echo -e "Done\n" echo -e "Create PostgreSQL database..." psql -c 'create database phalcon_test;' -U postgres -psql -U postgres phalcon_test -q -f "${PROJECT_ROOT}/tests/_data/schemas/phalcon-schema-postgresql.sql" +psql -U postgres phalcon_test -q -f "${PROJECT_ROOT}/tests/_data/assets/db/schemas/postgresql_schema.sql" echo -e "Done\n" echo -e "Create SQLite database..." -sqlite3 /tmp/phalcon_test.sqlite < "${PROJECT_ROOT}/tests/_data/schemas/phalcon-schema-sqlite.sql" +sqlite3 "${PROJECT_ROOT}/tests/_output/phalcon_test.sqlite" < "${PROJECT_ROOT}/tests/_data/assets/db/schemas/sqlite_schema.sql" echo -e "Done\n" echo -e "Create translations SQLite database..." -sqlite3 /tmp/translations.sqlite < "${PROJECT_ROOT}/tests/_data/schemas/phalcon-schema-sqlite-translations.sql" +sqlite3 "${PROJECT_ROOT}/tests/_output/translations.sqlite" < "${PROJECT_ROOT}/tests/_data/assets/db/schemas/sqlite_translations_schema.sql" echo -e "Done\n" wait diff --git a/tests/_ci/volt-tests.sh b/tests/_ci/volt-tests.sh index 0705d734913..0e21b490bc1 100755 --- a/tests/_ci/volt-tests.sh +++ b/tests/_ci/volt-tests.sh @@ -1,11 +1,12 @@ #!/usr/bin/env bash # -# This file is part of the Phalcon. +# This file is part of the Phalcon Framework. # # (c) Phalcon Team <team@phalconphp.com> # # For the full copyright and license information, please view the LICENSE.txt # file that was distributed with this source code. +# php ext/run-tests.php \ --offline \ diff --git a/tests/_config/bootstrap.php b/tests/_config/bootstrap.php index b9ef9fd0243..b35136f076b 100644 --- a/tests/_config/bootstrap.php +++ b/tests/_config/bootstrap.php @@ -1,37 +1,66 @@ <?php +use Codeception\Lib\Connector\Phalcon\MemorySession as CodeceptionMemorySession; use Phalcon\Config; +use Phalcon\Di\FactoryDefault; use Phalcon\Loader; +use Phalcon\Mvc\Application; +use Phalcon\Mvc\Dispatcher; +use Phalcon\Mvc\Router; use Phalcon\Mvc\Url; use Phalcon\Mvc\View; -use Phalcon\Mvc\Router; -use Phalcon\Mvc\Dispatcher; -use Phalcon\Mvc\Application; -use Phalcon\Di\FactoryDefault; +use Phalcon\Test\Fixtures\MemorySession as PhalconMemorySession; -$di = new FactoryDefault(); +$container = new FactoryDefault(); /** - * Config + * Load environment */ -$di->setShared( - 'config', - function () { - $configFile = require(TESTS_PATH . '_config/global.php'); - return new Config($configFile); - } -); +$root = dirname(dirname(dirname(__FILE__))) . DIRECTORY_SEPARATOR; +loadEnvironment($root); -$config = $di['config']; +/** + * Config + */ +$configFile = [ + 'application' => [ + 'baseUri' => '/', + 'staticUri' => '/', + 'timezone' => 'UTC', + 'controllersDir' => $root . 'tests/_data/fixtures/controllers/', + 'modelsDir' => $root . 'tests/_data/fixtures/models/', + 'modulesDir' => $root . 'tests/_data/fixtures/modules/', + 'viewsDir' => $root . 'tests/_data/fixtures/views/', + 'resultsetsDir' => $root . 'tests/_data/fixtures/resultsets/', + 'tasksDir' => $root . 'tests/_data/fixtures/tasks/', +// 'microDir' => $root . 'tests/_data/micro/', +// 'objectsetsDir' => $root . 'tests/_data/objectsets/', +// 'debugDir' => $root . 'tests/_data/debug/', +// 'collectionsDir' => $root . 'tests/_data/collections/', +// 'aclDir' => $root . 'tests/_data/acl/', + ], + 'database' => [ + 'adapter' => 'Mysql', + 'host' => env('DATA_MYSQL_HOST'), + 'username' => env('DATA_MYSQL_USER'), + 'password' => env('DATA_MYSQL_PASS'), + 'dbname' => env('DATA_MYSQL_NAME'), + 'port' => env('DATA_MYSQL_PORT'), + 'charset' => env('DATA_MYSQL_CHARSET'), + ], +]; + +$config = new Config($configFile); +$container->setShared('config', $config); /** * View */ -$di->setShared( +$container->setShared( 'view', - function () use ($config) { + function () use ($configFile) { $view = new View(); - $view->setViewsDir($config->get('application')->viewsDir); + $view->setViewsDir($configFile['application']['viewsDir']); return $view; } @@ -44,43 +73,43 @@ function () use ($config) { // Register the Library namespace as well as the common module // since it needs to always be available -$loader->registerNamespaces( +$namespaces = [ + 'Phalcon\Test\Controllers' => $configFile['application']['controllersDir'], + 'Phalcon\Test\Models' => $configFile['application']['modelsDir'], + 'Phalcon\Test\Resultsets' => $configFile['application']['resultsetsDir'], + 'Phalcon\Test\Modules\Frontend\Controllers' => $configFile['application']['modulesDir'] . 'frontend/controllers/', + 'Phalcon\Test\Modules\Backend\Controllers' => $configFile['application']['modulesDir'] . 'backend/controllers/', + 'Phalcon\Test\Tasks' => $configFile['application']['tasksDir'], +// 'Phalcon\Test\Acl' => $configFile['application']['aclDir'], +// 'Phalcon\Test\Collections' => $configFile['application']['collectionsDir'], +// 'Phalcon\Test\Debug' => $configFile['application']['debugDir'], +// 'Phalcon\Test\Objectsets' => $configFile['application']['objectsetsDir'], +]; + +$loader->registerNamespaces($namespaces); +$loader->registerDirs( [ - 'Phalcon\Test\Models' => $config->get('application')->modelsDir, - 'Phalcon\Test\Resultsets' => $config->get('application')->resultsetsDir, - 'Phalcon\Test\Objectsets' => $config->get('application')->objectsetsDir, - 'Phalcon\Test\Collections' => $config->get('application')->collectionsDir, - 'Phalcon\Test\Modules\Frontend\Controllers' => $config->get('application')->modulesDir . 'frontend/controllers/', - 'Phalcon\Test\Modules\Backend\Controllers' => $config->get('application')->modulesDir . 'backend/controllers/', - 'Phalcon\Test\Acl' => $config->get('application')->aclDir, - 'Phalcon\Test\Debug' => $config->get('application')->debugDir, + $configFile['application']['tasksDir'], + $configFile['application']['controllersDir'], +// $configFile['application']['microDir'], ] ); -$loader->registerDirs([ - $config->get('application')->controllersDir, - $config->get('application')->tasksDir, - $config->get('application')->microDir, -]); - $loader->register(); -$di->setShared('loader', $loader); +$container->setShared('loader', $loader); /** * The URL component is used to generate all kind of urls in the * application */ -$di->setShared( +$container->setShared( 'url', - function () use ($di) { - $config = $di['config']; - $config = $config->get('application'); - + function () use ($configFile) { $url = new Url(); - $url->setStaticBaseUri($config->staticUri); - $url->setBaseUri($config->baseUri); + $url->setStaticBaseUri($configFile['application']['staticUri']); + $url->setBaseUri($configFile['application']['baseUri']); return $url; } @@ -89,7 +118,7 @@ function () use ($di) { /** * Router */ -$di->setShared( +$container->setShared( 'router', function () { return new Router(false); @@ -99,30 +128,16 @@ function () { /** * Dispatcher */ -$di->set('dispatcher', Dispatcher::class); +$container->set('dispatcher', Dispatcher::class); /** - * Initialize the Database connection + * Session */ -$di->set( - 'db', - function () use ($di) { - $config = $di['config']; - $config = $config->get('database')->toArray(); - $adapter = '\Phalcon\Db\Adapter\Pdo\\' . $config['adapter']; - - unset($config['adapter']); - - /** @var \Phalcon\Db\AdapterInterface $connection */ - $connection = new $adapter($config); - $connection->execute('SET NAMES UTF8', []); - - return $connection; - } -); +$container->set(CodeceptionMemorySession::class, PhalconMemorySession::class); $application = new Application(); -$application->setDI($di); +$application->setDI($container); + +FactoryDefault::setDefault($container); -FactoryDefault::setDefault($di); return $application; diff --git a/tests/_config/global.php b/tests/_config/global.php deleted file mode 100644 index 31602d47311..00000000000 --- a/tests/_config/global.php +++ /dev/null @@ -1,29 +0,0 @@ -<?php - -return [ - 'application' => [ - 'baseUri' => '/', - 'staticUri' => '/', - 'timezone' => 'UTC', - 'debugDir' => __DIR__ . '/../_data/debug/', - 'viewsDir' => __DIR__ . '/../_data/views/', - 'modelsDir' => __DIR__ . '/../_data/models/', - 'modulesDir' => __DIR__ . '/../_data/modules/', - 'resultsetsDir' => __DIR__ . '/../_data/resultsets/', - 'objectsetsDir' => __DIR__ . '/../_data/objectsets/', - 'collectionsDir' => __DIR__ . '/../_data/collections/', - 'controllersDir' => __DIR__ . '/../_data/controllers/', - 'tasksDir' => __DIR__ . '/../_data/tasks/', - 'microDir' => __DIR__ . '/../_data/micro/', - 'aclDir' => __DIR__ . '/../_data/acl/' - ], - 'database' => [ - 'adapter' => 'Mysql', - 'host' => TEST_DB_MYSQL_HOST, - 'username' => TEST_DB_MYSQL_USER, - 'password' => TEST_DB_MYSQL_PASSWD, - 'dbname' => TEST_DB_MYSQL_NAME, - 'port' => TEST_DB_MYSQL_PORT, - 'charset' => TEST_DB_MYSQL_CHARSET, - ], -]; diff --git a/tests/_data/logs/dummy b/tests/_data/.gitkeep similarity index 100% rename from tests/_data/logs/dummy rename to tests/_data/.gitkeep diff --git a/tests/_data/acl/TestResourceAware.php b/tests/_data/acl/TestResourceAware.php deleted file mode 100644 index 43a0b19b17d..00000000000 --- a/tests/_data/acl/TestResourceAware.php +++ /dev/null @@ -1,59 +0,0 @@ -<?php - -namespace Phalcon\Test\Acl; - -use Phalcon\Acl\ResourceAware; - -/** - * TestResourceAware - * Resource class for \Phalcon\Acl\Resource component - * - * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Wojciech Slawski <jurigag@gmail.com> - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class TestResourceAware implements ResourceAware -{ - /** - * @var int - */ - protected $user; - - /** - * @var string - */ - protected $resourceName; - - /** - * @param $user - * @param $resourceName - */ - public function __construct($user, $resourceName) - { - $this->user = $user; - $this->resourceName = $resourceName; - } - - /** - * @return int - */ - public function getUser() - { - return $this->user; - } - - /** - * @return string - */ - public function getResourceName() - { - return $this->resourceName; - } -} diff --git a/tests/_data/acl/TestRoleAware.php b/tests/_data/acl/TestRoleAware.php deleted file mode 100644 index b742987656f..00000000000 --- a/tests/_data/acl/TestRoleAware.php +++ /dev/null @@ -1,59 +0,0 @@ -<?php - -namespace Phalcon\Test\Acl; - -use Phalcon\Acl\RoleAware; - -/** - * TestRoleAware - * Resource class for \Phalcon\Acl\Resource component - * - * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Wojciech Slawski <jurigag@gmail.com> - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class TestRoleAware implements RoleAware -{ - /** - * @var int - */ - protected $id; - - /** - * @var string - */ - protected $roleName; - - /** - * @param $id - * @param $roleName - */ - public function __construct($id, $roleName) - { - $this->id = $id; - $this->roleName = $roleName; - } - - /** - * @return int - */ - public function getId() - { - return $this->id; - } - - /** - * @return string - */ - public function getRoleName() - { - return $this->roleName; - } -} diff --git a/tests/_data/acl/TestRoleResourceAware.php b/tests/_data/acl/TestRoleResourceAware.php deleted file mode 100644 index 5ffe9b227b9..00000000000 --- a/tests/_data/acl/TestRoleResourceAware.php +++ /dev/null @@ -1,74 +0,0 @@ -<?php - -namespace Phalcon\Test\Acl; - -use Phalcon\Acl\ResourceAware; -use Phalcon\Acl\RoleAware; - -/** - * TestRoleResourceAware - * - * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Wojciech Slawski <jurigag@gmail.com> - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class TestRoleResourceAware implements RoleAware, ResourceAware -{ - /** - * @var int - */ - protected $user; - - /** - * @var string - */ - protected $resourceName; - - /** - * @var string - */ - protected $roleName; - - /** - * @param $user - * @param $resourceName - * @param $roleName - */ - public function __construct($user, $resourceName, $roleName) - { - $this->user = $user; - $this->resourceName = $resourceName; - $this->roleName = $roleName; - } - - /** - * @return string - */ - public function getResourceName() - { - return $this->resourceName; - } - - /** - * @return string - */ - public function getRoleName() - { - return $this->roleName; - } - - /** - * @return int - */ - public function getUser() - { - return $this->user; - } -} diff --git a/tests/_data/annotations/TestClass.php b/tests/_data/annotations/TestClass.php deleted file mode 100644 index 617ea31920d..00000000000 --- a/tests/_data/annotations/TestClass.php +++ /dev/null @@ -1,117 +0,0 @@ -<?php -/** - * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Nikolaos Dimopoulos <nikos@phalconphp.com> - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -/** - * TestClass - * - * This is a test class, it's useful to make tests - * - * @Simple - * @SingleParam("Param") - * @MultipleParams("First", Second, 1, 1.1, -10, false, true, null) - * @Params({"key1", "key2", "key3"}); - * @HashParams({"key1": "value", "key2": "value", "key3": "value"}); - * @NamedParams(first=some, second=other); - * @AlternativeNamedParams(first: some, second: other); - * @AlternativeHashParams({key1="value", "key2"=value, "key3"="value"}); - * @RecursiveHash({key1="value", "key2"=value, "key3"=[1, 2, 3, 4]}); - */ -class TestClass -{ - /** - * This is a property string - * - * @var string - * @Simple - * @SingleParam("Param") - * @MultipleParams("First", Second, 1, 1.1, -10, false, true, null) - */ - public $testProp1; - - /** - * - */ - public $testProp2; - - /** - * @Simple @SingleParam("Param") @MultipleParams("First", Second, 1, 1.1, -10, false, true, null) - */ - public $testProp3; - - /** - * @Simple @SingleParam( - * "Param") @MultipleParams( "First", - * Second, 1, 1.1 - * ,-10, - * false, true, - * null) - */ - public $testProp4; - - public $testProp5; - - /** - * This is a comment - */ - public $testProp6; - - /** - * This is a property string - * - * @return string - * @Simple - * @SingleParam("Param") - * @MultipleParams("First", Second, 1, 1.1, -10, false, true, null) - * @NamedMultipleParams(first: "First", second: Second) - */ - public function testMethod1() - { - } - - /** - * - */ - public function testMethod2() - { - } - - /** - * @Simple @SingleParam("Param") @MultipleParams("First", Second, 1, 1.1, -10, false, true, null) - */ - public function testMethod3() - { - } - - /** - @Simple @SingleParam( - "Param") @MultipleParams( "First", - Second, 1, 1.1 - ,-10, - false, true, - null) - */ - public function testMethod4() - { - } - -/** @Simple a good comment between annotations @SingleParam( -"Param") this is extra content @MultipleParams( "First", - Second, 1, 1.1 ,-10, - false, true, -null) more content here */ - public function testMethod5() - { - } -} diff --git a/tests/_data/annotations/TestClassNs.php b/tests/_data/annotations/TestClassNs.php deleted file mode 100644 index e603cd7ec26..00000000000 --- a/tests/_data/annotations/TestClassNs.php +++ /dev/null @@ -1,35 +0,0 @@ -<?php -/** - * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Nikolaos Dimopoulos <nikos@phalconphp.com> - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -namespace User; - -/** - * User\TestClassNs - * - * This class has annotations but it's in a namespace - * - * @Simple - * @SingleParam("Param") - * @MultipleParams("First", Second, 1, 1.1, -10, false, true, null) - * @Params({"key1", "key2", "key3"}); - * @HashParams({"key1": "value", "key2": "value", "key3": "value"}); - * @NamedParams(first=some, second=other); - * @AlternativeNamedParams(first: some, second: other); - * @AlternativeHashParams({key1="value", "key2"=value, "key3"="value"}); - * @RecursiveHash({key1="value", "key2"=value, "key3"=[1, 2, 3, 4]}); - */ -class TestClassNs -{ -} diff --git a/tests/_data/annotations/TestInvalid.php b/tests/_data/annotations/TestInvalid.php deleted file mode 100644 index 28e03bb621f..00000000000 --- a/tests/_data/annotations/TestInvalid.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php -/** - * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Nikolaos Dimopoulos <nikos@phalconphp.com> - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -/** - * @Invalid( - */ -class TestInvalid -{ -} diff --git a/tests/_data/assets/assets-multiple-01.js b/tests/_data/assets/assets-multiple-01.js deleted file mode 100644 index 9cbd490ec2a..00000000000 --- a/tests/_data/assets/assets-multiple-01.js +++ /dev/null @@ -1,3 +0,0 @@ -function popup() { - alert("Hello World"); -} \ No newline at end of file diff --git a/tests/_data/assets/assets-multiple-02.js b/tests/_data/assets/assets-multiple-02.js deleted file mode 100644 index f7853c4335b..00000000000 --- a/tests/_data/assets/assets-multiple-02.js +++ /dev/null @@ -1,3 +0,0 @@ -function popdown() { - alert("Goodbye World"); -} \ No newline at end of file diff --git a/tests/_data/assets/1198.css b/tests/_data/assets/assets/1198.css similarity index 100% rename from tests/_data/assets/1198.css rename to tests/_data/assets/assets/1198.css diff --git a/tests/_data/assets/cssmin-01-result.css b/tests/_data/assets/assets/cssmin-01-result.css similarity index 100% rename from tests/_data/assets/cssmin-01-result.css rename to tests/_data/assets/assets/cssmin-01-result.css diff --git a/tests/_data/assets/cssmin-01.css b/tests/_data/assets/assets/cssmin-01.css similarity index 100% rename from tests/_data/assets/cssmin-01.css rename to tests/_data/assets/assets/cssmin-01.css diff --git a/tests/_data/assets/jquery.js b/tests/_data/assets/assets/jquery.js similarity index 100% rename from tests/_data/assets/jquery.js rename to tests/_data/assets/assets/jquery.js diff --git a/tests/_data/assets/signup.js b/tests/_data/assets/assets/signup.js similarity index 100% rename from tests/_data/assets/signup.js rename to tests/_data/assets/assets/signup.js diff --git a/tests/_data/assets/config/callbacks.yml b/tests/_data/assets/config/callbacks.yml new file mode 100644 index 00000000000..2dc629d60c8 --- /dev/null +++ b/tests/_data/assets/config/callbacks.yml @@ -0,0 +1,4 @@ +application: + controllersDir: !approot /app/controllers/ +database: + password: !decrypt some_decrypted_password_here diff --git a/tests/_data/config/config-with-constants.ini b/tests/_data/assets/config/config-with-constants.ini similarity index 100% rename from tests/_data/config/config-with-constants.ini rename to tests/_data/assets/config/config-with-constants.ini diff --git a/tests/_data/config/config.ini b/tests/_data/assets/config/config.ini similarity index 91% rename from tests/_data/config/config.ini rename to tests/_data/assets/config/config.ini index 368a3a71466..bf793bc9534 100644 --- a/tests/_data/config/config.ini +++ b/tests/_data/assets/config/config.ini @@ -22,4 +22,4 @@ channel.handlers.0.fingersCrossed = info channel.handlers.0.filename = channel.log channel.handlers.1.name = redis channel.handlers.1.level = debug -channel.handlers.1.fingersCrossed = info \ No newline at end of file +channel.handlers.1.fingersCrossed = info diff --git a/tests/_data/config/config.json b/tests/_data/assets/config/config.json similarity index 99% rename from tests/_data/config/config.json rename to tests/_data/assets/config/config.json index 1251cece3cc..07238af63f2 100644 --- a/tests/_data/config/config.json +++ b/tests/_data/assets/config/config.json @@ -35,4 +35,4 @@ ] } } -} \ No newline at end of file +} diff --git a/tests/_data/assets/config/config.php b/tests/_data/assets/config/config.php new file mode 100644 index 00000000000..3a1d416a7a6 --- /dev/null +++ b/tests/_data/assets/config/config.php @@ -0,0 +1,40 @@ +<?php + +return [ + "phalcon" => [ + "baseuri" => "/phalcon/", + ], + "models" => [ + "metadata" => "memory", + ], + "database" => [ + "adapter" => "mysql", + "host" => "localhost", + "username" => "user", + "password" => "passwd", + "name" => "demo", + ], + "test" => [ + "parent" => [ + "property" => 1, + "property2" => "yeah", + ], + ], + 'issue-12725' => [ + 'channel' => [ + 'handlers' => [ + 0 => [ + 'name' => 'stream', + 'level' => 'debug', + 'fingersCrossed' => 'info', + 'filename' => 'channel.log', + ], + 1 => [ + 'name' => 'redis', + 'level' => 'debug', + 'fingersCrossed' => 'info', + ], + ], + ], + ], +]; diff --git a/tests/_data/config/config.yml b/tests/_data/assets/config/config.yml similarity index 100% rename from tests/_data/config/config.yml rename to tests/_data/assets/config/config.yml diff --git a/tests/_data/config/directive.ini b/tests/_data/assets/config/directive.ini similarity index 100% rename from tests/_data/config/directive.ini rename to tests/_data/assets/config/directive.ini diff --git a/tests/_data/assets/config/factory.ini b/tests/_data/assets/config/factory.ini new file mode 100644 index 00000000000..fafcc630609 --- /dev/null +++ b/tests/_data/assets/config/factory.ini @@ -0,0 +1,57 @@ +[annotations] +prefix = annotations +lieftime = 3600 +adapter = apcu + +[cache_backend] +prefix = app-data +frontend.adapter = data +frontend.lifetime = 172800 +adapter = apcu + +[cache_frontend] +lifetime = 172800 +adapter = data + +[config] +filePath = PATH_DATA"assets/config/config" +filePathExtension = PATH_DATA"assets/config/config.ini" +adapter = ini + +[database] +host = DATA_MYSQL_HOST +username = DATA_MYSQL_USER +password = DATA_MYSQL_PASS +dbname = DATA_MYSQL_NAME +port = DATA_MYSQL_PORT +charset = DATA_MYSQL_CHARSET +adapter = mysql + +[image] +file = PATH_DATA"assets/images/phalconphp.jpg" +adapter = imagick + +[logger] +name = PATH_OUTPUT"tests/logs/factory.log" +adapter = file + +[paginator] +limit = 20 +page = 1 +adapter = queryBuilder + +[session] +uniqueId = my-private-app +host = 127.0.0.1 +port = 11211 +persistent = true +lifetime = 3600 +prefix = my_ +adapter = Files + +[translate] +locale = en_US.utf8 +defaultDomain = messages +directory = PATH_DATA"assets/translation/gettext" +category = LC_MESSAGES +adapter = gettext diff --git a/tests/_data/assets/db/schemas/mysql_schema.sql b/tests/_data/assets/db/schemas/mysql_schema.sql new file mode 100644 index 00000000000..6a50f74d022 --- /dev/null +++ b/tests/_data/assets/db/schemas/mysql_schema.sql @@ -0,0 +1,12789 @@ +-- MySQL dump +DROP TABLE IF EXISTS `albums`; +CREATE TABLE `albums` +( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `artists_id` int(10) unsigned NOT NULL, + `name` varchar(72) COLLATE utf8_unicode_ci NOT NULL, + PRIMARY KEY (`id`), + KEY `artists_id` (`artists_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE =utf8_unicode_ci; +INSERT INTO `albums` +VALUES (1, 1, 'Born to Die'), + (2, 1, 'Born to Die - The Paradise Edition'); + + +DROP TABLE IF EXISTS `artists`; +CREATE TABLE `artists` +( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(72) COLLATE utf8_unicode_ci NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE =utf8_unicode_ci; +INSERT INTO `artists` +VALUES (1, 'Lana del Rey'), + (2, 'Radiohead'); + + +DROP TABLE IF EXISTS `customers`; +CREATE TABLE `customers` +( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `document_id` int(3) unsigned NOT NULL, + `customer_id` char(15) COLLATE utf8_unicode_ci NOT NULL, + `first_name` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, + `last_name` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, + `phone` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, + `email` varchar(70) COLLATE utf8_unicode_ci NOT NULL, + `instructions` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, + `status` enum('A','I','X') COLLATE utf8_unicode_ci NOT NULL, + `birth_date` date DEFAULT '1970-01-01', + `credit_line` decimal(16,2) DEFAULT '0.00', + `created_at` datetime NOT NULL, + `created_at_user_id` int(10) unsigned DEFAULT '0', + PRIMARY KEY (`id`), + KEY `customers_document_id_idx` (`document_id`), + KEY `customers_customer_id_idx` (`customer_id`), + KEY `customers_credit_line_idx` (`credit_line`), + KEY `customers_status_idx` (`status`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE =utf8_unicode_ci; +INSERT INTO `customers` (`id`, `document_id`, `customer_id`, `email`, `status`, + `created_at`) +VALUES + ('1', '1', '1', 'foo@bar.baz', 'A', NOW()), + ('2', '1', '3', 'foo@bar.baz', 'A', NOW()), + ('3', '1', '3', 'foo@bar.baz', 'A', NOW()), + ('4', '1', '3', 'foo@bar.baz', 'I', NOW()), + ('5', '3', '2', 'foo@bar.baz', 'X', NOW()), + ('6', '4', '4', 'foo@bar.baz', 'A', NOW()); + + +DROP TABLE IF EXISTS `m2m_parts`; +CREATE TABLE `m2m_parts` +( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(70) NOT NULL, + PRIMARY KEY (`id`) +); + + +DROP TABLE IF EXISTS `m2m_robots`; +CREATE TABLE `m2m_robots` +( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(70) COLLATE utf8_unicode_ci NOT NULL, + PRIMARY KEY (`id`) +); + + +DROP TABLE IF EXISTS `m2m_robots_parts`; +CREATE TABLE `m2m_robots_parts` +( + `robots_id` int(10) unsigned NOT NULL, + `parts_id` int(10) unsigned NOT NULL, + PRIMARY KEY (`robots_id`, `parts_id`) +); + + +DROP TABLE IF EXISTS `parts`; +CREATE TABLE `parts` +( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(70) COLLATE utf8_unicode_ci NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE =utf8_unicode_ci; +INSERT INTO `parts` +VALUES (1, 'Head'), + (2, 'Body'), + (3, 'Arms'), + (4, 'Legs'), + (5, 'CPU'); + + +DROP TABLE IF EXISTS `personas`; +CREATE TABLE `personas` +( + `cedula` char(15) COLLATE utf8_unicode_ci NOT NULL, + `tipo_documento_id` int(3) unsigned NOT NULL, + `nombres` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `telefono` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, + `direccion` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, + `email` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, + `fecha_nacimiento` date DEFAULT '1970-01-01', + `ciudad_id` int(10) unsigned DEFAULT '0', + `creado_at` date DEFAULT NULL, + `cupo` decimal(16,2) NOT NULL, + `estado` enum('A','I','X') COLLATE utf8_unicode_ci NOT NULL, + PRIMARY KEY (`cedula`), + KEY `estado` (`estado`), + KEY `ciudad_id` (`ciudad_id`), + KEY `estado_2` (`estado`,`nombres`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE =utf8_unicode_ci; +INSERT INTO `personas` +VALUES ('1', 3, 'HUANG ZHENGQUIN', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-05-18', '6930.00', 'I'), + ('100', 1, 'USME FERNANDEZ JUAN GUILLERMO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-04-15', + '439480.00', 'A'), + ('1003', 8, 'SINMON PEREZ', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-25', '468610.00', 'A'), + ('1009', 8, 'ARCINIEGAS Y VILLAMIZAR', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-08-12', '967680.00', 'A'), + ('101', 1, 'CRANE DE NARVAEZ JUAN PABLO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-06-09', + '790540.00', 'A'), + ('1011', 8, 'EL EVENTO', '191821112', 'CRA 25 CALLE 100', + '596@terra.com.co', '2011-02-03', 127591, '2011-05-24', '820390.00', + 'A'), + ('1020', 7, 'OSPINA YOLANDA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-02', '222970.00', 'A'), + ('1025', 7, 'CHEMIPLAS', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-08', '918670.00', 'A'), + ('1034', 1, 'TAXI FILMS', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2010-09-01', '962580.00', 'A'), + ('104', 1, 'CASTELLANOS JIMENEZ NOE', '191821112', 'CRA 25 CALLE 100', + '127@yahoo.es', '2011-02-03', 127591, '2011-10-05', '95230.00', 'A'), + ('1046', 3, 'JACQUET PIERRE MICHEL ALAIN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 263489, '2011-07-23', + '90810.00', 'A'), + ('1048', 5, 'SPOERER VELEZ CARLOS JORGE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-02-03', + '184920.00', 'A'), + ('1049', 3, 'SIDNEI DA SILVA LUIZ', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 117630, '2011-07-02', '850180.00', 'A'), + ('105', 1, 'HERRERA SEQUERA ALVARO FRANCISCO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-26', + '77390.00', 'A'), + ('1050', 3, 'CAVALCANTI YUE CARLA HANLI', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-31', + '696130.00', 'A'), + ('1052', 1, 'BARRETO RIVAS ELKIN MARTIN', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 131508, '2011-09-19', + '562160.00', 'A'), + ('1053', 3, 'WANDERLEY ANTONIO ERNESTO THOME', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150617, '2011-01-31', + '20490.00', 'A'), + ('1054', 3, 'HE SHAN', '191821112', 'CRA 25 CALLE 100', '715@yahoo.es', + '2011-02-03', 132958, '2010-10-05', '415970.00', 'A'), + ('1055', 3, 'ZHRNG XIM', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-05', '18380.00', 'A'), + ('1057', 3, 'NICKEL GEB. STUTZ KARIN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-10-08', '164850.00', 'A'), + ('1058', 1, 'VELEZ PAREJA IGNACIO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2011-06-24', + '292250.00', 'A'), + ('1059', 3, 'GURKE RALF ERNST', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 287570, '2011-06-15', '966700.00', 'A'), + ('106', 1, 'ESTRADA LONDOÑO JUAN SIMON', '191821112', 'CRA 25 CALLE 100', + '8@terra.com.co', '2011-02-03', 128579, '2011-03-09', '101260.00', 'A'), + ('1060', 1, 'MEDRANO BARRIOS WILSON', '191821112', 'CRA 25 CALLE 100', + '479@facebook.com', '2011-02-03', 132775, '2011-06-18', '956740.00', + 'A'), + ('1061', 1, 'GERDTS PORTO HANS EDUARDO', '191821112', 'CRA 25 CALLE 100', + '140@gmail.com', '2011-02-03', 127591, '2011-05-09', '883590.00', 'A'), + ('1062', 1, 'BORGE VISBAL JORGE FIDEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 132775, '2011-07-14', '547750.00', 'A'), + ('1063', 3, 'GUTIERREZ JOSELYN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-06', '87960.00', 'A'), + ('1064', 4, 'OVIEDO PINZON MARYI YULEY', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127538, '2011-04-21', '796560.00', 'A'), + ('1065', 1, 'VILORA SILVA OMAR ESTEBAN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 133535, '2010-06-09', '718910.00', 'A'), + ('1066', 3, 'AGUIAR ROMAN RODRIGO HUMBERTO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126674, '2011-06-28', + '204890.00', 'A'), + ('1067', 1, 'GOMEZ AGAMEZ ADOLFO DEL CRISTO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131105, '2011-06-15', + '867730.00', 'A'), + ('1068', 3, 'GARRIDO CECILIA', '191821112', 'CRA 25 CALLE 100', + '973@yahoo.com.mx', '2011-02-03', 118777, '2010-08-16', '723980.00', + 'A'), + ('1069', 1, 'JIMENEZ MANJARRES DAVID RAFAEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2010-12-17', + '16680.00', 'A'), + ('107', 1, 'ARANGUREN TEJADA JORGE ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-16', + '274110.00', 'A'), + ('1070', 3, 'OYARZUN TEJEDA ANDRES FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-26', + '911490.00', 'A'), + ('1071', 3, 'MARIN BUCK RAFAEL ENRIQUE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 126180, '2011-05-04', '507400.00', 'A'), + ('1072', 3, 'VARGAS JOSE ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 126674, '2011-07-28', '802540.00', 'A'), + ('1073', 3, 'JUEZ JAIRALA JOSE ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 126180, '2010-04-09', '490510.00', 'A'), + ('1074', 1, 'APONTE PENSO HERNAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132879, '2011-05-27', '44900.00', 'A'), + ('1075', 1, 'PIÑERES BUSTILLO ALFONSO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 126916, '2008-10-29', '752980.00', 'A'), + ('1076', 1, 'OTERA OMA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-04-29', '630210.00', 'A'), + ('1077', 3, 'CONTRERAS CHINCHILLA JUAN DOMINGO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 139844, '2011-06-21', + '892110.00', 'A'), + ('1078', 1, 'GAMBA LAURENCIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-09-15', '569940.00', 'A'), + ('108', 1, 'MUÑOZ ARANGO JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-01', '66770.00', 'A'), + ('1080', 1, 'PRADA ABAUZA CARLOS AUGUSTO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-11-15', + '156870.00', 'A'), + ('1081', 1, 'PAOLA CAROLINA PINTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-27', '264350.00', 'A'), + ('1082', 1, 'PALOMINO HERNANDEZ GERMAN JAVIER', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-03-22', + '851120.00', 'A'), + ('1084', 1, 'URIBE DANIEL ALBERTO', '191821112', 'CRA 25 CALLE 100', + '602@hotmail.es', '2011-02-03', 127591, '2011-09-07', '759470.00', 'A'), + ('1085', 1, 'ARGUELLO CALDERON ARMANDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-24', '409660.00', 'A'), + ('1087', 1, 'CARVAJAL HERNANDEZ CHRISTIAN ARMANDO', '191821112', + 'CRA 25 CALLE 100', '296@yahoo.es', '2011-02-03', 159432, '2011-06-03', + '620410.00', 'A'), + ('1088', 1, 'CASTRO BLANCO MANUEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 150512, '2009-10-08', '792400.00', 'A'), + ('1089', 1, 'RIBEROS GUTIERREZ GUSTAVO ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-01-27', + '100800.00', 'A'), + ('109', 1, 'BELTRAN MARIA LUZ DARY', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-06', '511510.00', 'A'), + ('1091', 4, 'ORTIZ ORTIZ BENIGNO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127538, '2011-08-05', '331540.00', 'A'), + ('1092', 3, 'JOHN CHRISTOPHER', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-04-08', '277320.00', 'A'), + ('1093', 1, 'PARRA VILLAREAL MIGUEL ANGEL', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 129499, '2011-08-23', + '391980.00', 'A'), + ('1094', 1, 'BESGA RODRIGUEZ JUAN JAVIER', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-09-23', + '127960.00', 'A'), + ('1095', 1, 'ZAPATA MEZA EDGAR FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-05-19', + '463840.00', 'A'), + ('1096', 3, 'CORNEJO BRAVO MARCO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2010-11-08', + '935340.00', 'A'), + ('1099', 1, 'GARCIA PORRAS FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-14', '243360.00', 'A'), + ('11', 1, 'HERNANDEZ PARDO ARMANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-31', '197540.00', 'A'), + ('110', 1, 'VANEGAS JULIAN ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-09-06', '357260.00', 'A'), + ('1101', 1, 'QUINTERO BURBANO GABRIEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 129499, '2011-08-20', '57420.00', 'A'), + ('1102', 1, 'BOHORQUEZ AFANADOR CHRISTIAN', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-19', + '214610.00', 'A'), + ('1103', 1, 'MORA VARGAS JULIO ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-29', '900790.00', 'A'), + ('1104', 1, 'PINEDA JORGE ARMANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-21', '860110.00', 'A'), + ('1105', 1, 'TORO CEBALLOS GONZALO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 129499, '2011-08-18', '598180.00', 'A'), + ('1106', 1, 'SCHENIDER TORRES JAIME', '191821112', 'CRA 25 CALLE 100', + '85@yahoo.com.mx', '2011-02-03', 127799, '2011-08-11', '410590.00', + 'A'), + ('1107', 1, 'RUEDA VILLAMIZAR JAIME', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-11-15', '258410.00', 'A'), + ('1108', 1, 'RUEDA VILLAMIZAR RICARDO JAIME', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129499, '2011-03-22', + '60260.00', 'A'), + ('1109', 1, 'GOMEZ RODRIGUEZ HERNANDO ARTURO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-06-02', + '526080.00', 'A'), + ('111', 1, 'FRANCISCO EDUARDO JAIME BOTERO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-09-09', + '251770.00', 'A'), + ('1110', 1, 'HERNÁNDEZ MÉNDEZ EDGAR', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 129499, '2011-03-22', '449610.00', 'A'), + ('1113', 1, 'LEON HERNANDEZ OSCAR', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 129499, '2011-03-21', '992090.00', 'A'), + ('1114', 1, 'LIZARAZO CARREÑO HUGO ARCENIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2010-12-10', + '959490.00', 'A'), + ('1115', 1, 'LIAN BARRERA GABRIEL', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-05-30', '821170.00', 'A'), + ('1117', 3, 'TELLEZ BEZAN FRANCISCO JAVIER ', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-08-21', + '673430.00', 'A'), + ('1118', 1, 'FUENTES ARIZA DIEGO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-06-09', '684970.00', 'A'), + ('1119', 1, 'MOLINA M. ROBINSON', '191821112', 'CRA 25 CALLE 100', + '728@hotmail.com', '2011-02-03', 129447, '2010-09-19', '404580.00', + 'A'), + ('112', 1, 'PTIÑO PINTO ARIEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-10-06', '187050.00', 'A'), + ('1120', 1, 'ORTIZ DURAN BENIGNO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127538, '2011-08-05', '967970.00', 'A'), + ('1121', 1, 'CARVAJAL ALMEIDA LUIS RAUL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2011-06-22', + '626140.00', 'A'), + ('1122', 1, 'TORRES QUIROGA EDWIN SILVESTRE', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 129447, '2011-08-17', + '226780.00', 'A'), + ('1123', 1, 'VIVIESCAS JAIMES ALVARO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-10', '255480.00', 'A'), + ('1124', 1, 'MARTINEZ RUEDA JAVIER EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129447, '2011-06-23', + '597040.00', 'A'), + ('1125', 1, 'ANAYA FLORES JORGE ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-06-04', + '218790.00', 'A'), + ('1126', 3, 'TORRES MARTINEZ ANTONIO JESUS', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2010-09-02', + '302820.00', 'A'), + ('1127', 3, 'CACHO LEVISIER JOSE MANUEL', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 153276, '2009-06-25', + '857720.00', 'A'), + ('1129', 3, 'ULLOA VALDIVIESO CRISTIAN ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-06-02', + '327570.00', 'A'), + ('113', 1, 'HIGUERA CALA JAIME ENRIQUE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-07-27', '179950.00', 'A'), + ('1130', 1, 'ARCINIEGAS WILLIAM', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 126892, '2011-08-05', '497420.00', 'A'), + ('1131', 1, 'BAZA ACUÑA JAVIER', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 129447, '2010-12-10', '504410.00', 'A'), + ('1132', 3, 'BUIRA ROS CARLOS MARIA', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-04-27', '29750.00', 'A'), + ('1133', 1, 'RODRIGUEZ JAIME', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 129447, '2011-06-10', '635560.00', 'A'), + ('1134', 1, 'QUIROGA PEREZ NELSON', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 129447, '2011-05-18', '88520.00', 'A'), + ('1135', 1, 'TATIANA AYALA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127122, '2011-07-01', '535920.00', 'A'), + ('1136', 1, 'OSORIO BENEDETTI FABIAN AUGUSTO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2010-10-23', + '414060.00', 'A'), + ('1139', 1, 'CELIS PINTO ARMANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2009-02-25', '964970.00', 'A'), + ('114', 1, 'VALDERRAMA CUERVO JOSE IGNACIO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-02', + '338590.00', 'A'), + ('1140', 1, 'ORTIZ ARENAS JUAN MANUEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 129499, '2009-10-21', '613300.00', 'A'), + ('1141', 1, 'VALDIVIESO ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 134022, '2009-01-13', '171590.00', 'A'), + ('1144', 1, 'LOPEZ CASTILLO NELSON', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 129499, '2010-09-09', '823110.00', 'A'), + ('1145', 1, 'CAVELIER LUIS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 126916, '2008-11-29', '389220.00', 'A'), + ('1146', 1, 'CAVELIER OTOYA LUIS EDURDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126916, '2010-05-25', + '476770.00', 'A'), + ('1147', 1, 'GARCIA RUEDA JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '111@yahoo.es', '2011-02-03', 133535, '2010-09-12', '216190.00', 'A'), + ('1148', 1, 'LADINO GOMEZ OMAR ORLANDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-02', '650640.00', 'A'), + ('1149', 1, 'CARREÑO ORTIZ OSCAR JAVIER', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-15', + '604630.00', 'A'), + ('115', 1, 'NARDEI BONILLO BRUNO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-04-16', '153110.00', 'A'), + ('1150', 1, 'MONTOYA BOZZI MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 129499, '2011-05-12', '71240.00', 'A'), + ('1152', 1, 'LORA RICHARD JAVIER', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-09-15', '497700.00', 'A'), + ('1153', 1, 'SILVA PINZON MARCO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '915@hotmail.es', '2011-02-03', 127591, + '2011-06-15', '861670.00', 'A'), + ('1154', 3, 'GEORGE J A KHALILIEH', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-20', '815260.00', 'A'), + ('1155', 3, 'CHACON MARIN CARLOS MANUEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-07-26', + '491280.00', 'A'), + ('1156', 3, 'OCHOA CHEHAB XAVIER ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 126180, '2011-06-13', + '10630.00', 'A'), + ('1157', 3, 'ARAYA GARRI GABRIEL ALEXIS', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-09-19', + '579320.00', 'A'), + ('1158', 3, 'MACCHI ARIEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 116366, '2010-04-12', '864690.00', 'A'), + ('116', 1, 'GONZALEZ FANDIÑO JAIME EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-10', + '749800.00', 'A'), + ('1160', 1, 'CAVALIER LUIS EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 126916, '2009-08-27', '333390.00', 'A'), + ('1161', 3, 'DOMINGUEZ DE OBREGON ILEANA DEL CARMEN', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 139844, '2011-03-06', + '910490.00', 'A'), + ('1162', 2, 'FALASCA CLAUDIO ARIEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 116511, '2011-07-10', '552280.00', 'A'), + ('1163', 3, 'MUTABARUKA PATRICK', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 131352, '2011-03-22', '29940.00', 'A'), + ('1164', 1, 'DOMINGUEZ ATENCIA JIMMY CARLOS', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-22', + '492860.00', 'A'), + ('1165', 4, 'LLANO GONZALEZ ALBERTO MARIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2010-08-21', + '374490.00', 'A'), + ('1166', 3, 'LOPEZ ROLDAN JOSE MANUEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188640, '2011-07-31', '393860.00', 'A'), + ('1167', 1, 'GUTIERREZ DE PIÑERES JALILIE ARISTIDES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2010-12-09', + '845810.00', 'A'), + ('1168', 1, 'HEYMANS PIERRE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2010-11-08', '47470.00', 'A'), + ('1169', 1, 'BOTERO OSORIO RUBEN DARIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2009-05-27', '699940.00', 'A'), + ('1170', 3, 'GARNHAM POBLETE ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 116396, '2011-03-27', '357270.00', 'A'), + ('1172', 1, 'DAJUD DURAN JOSE RODRIGO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 133535, '2009-12-02', '360910.00', 'A'), + ('1173', 1, 'MARTINEZ MERCADO PEDRO PABLO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-07-25', + '744930.00', 'A'), + ('1174', 1, 'GARCIA AMADOR ANDRES EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-05-19', + '641930.00', 'A'), + ('1176', 1, 'VARGAS VARELA LUIS GABRIEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 131568, '2011-08-30', + '948410.00', 'A'), + ('1178', 1, 'GUTIERRES DE PIÑERES ARISTIDES', '191821112', + 'CRA 25 CALLE 100', '217@hotmail.com', '2011-02-03', 133535, + '2011-05-10', '242490.00', 'A'), + ('1179', 3, 'LEIZAOLA POZO JIMENA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 132958, '2011-08-01', '759800.00', 'A'), + ('118', 1, 'FERNANDEZ VELOSO PEDRO HERNANDO', '191821112', + 'CRA 25 CALLE 100', '452@hotmail.es', '2011-02-03', 128662, + '2010-08-06', '198830.00', 'A'), + ('1180', 3, 'MARINO PAOLO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-12-24', '71520.00', 'A'), + ('1181', 1, 'MOLINA VIZCAINO GUSTAVO JORGE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-28', + '78220.00', 'A'), + ('1182', 3, 'MEDEL GARCIA FABIAN RODRIGO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-04-25', + '176540.00', 'A'), + ('1183', 1, 'LESMES ARIAS RUBEN DARIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2010-09-09', '648020.00', 'A'), + ('1184', 1, 'ALCALA MARTINEZ ALFREDO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132775, '2010-07-23', + '710470.00', 'A'), + ('1186', 1, 'LLAMAS FOLIACO LUIS ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-07', + '910210.00', 'A'), + ('1187', 1, 'GUARDO DEL RIO LIBARDO FARID', '191821112', + 'CRA 25 CALLE 100', '73@yahoo.com.mx', '2011-02-03', 128662, + '2011-09-01', '726050.00', 'A'), + ('1188', 3, 'JEFFREY ARTHUR DAVID', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 115724, '2011-03-21', '899630.00', 'A'), + ('1189', 1, 'DAHL VELEZ JULIANA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 126916, '2011-05-23', '320020.00', 'A'), + ('119', 3, 'WALESKA DE LIMA ALMEIDA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118942, '2011-05-09', '125240.00', 'A'), + ('1190', 3, 'LUIS JOSE MANUEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2008-04-04', '901210.00', 'A'), + ('1192', 1, 'AZUERO VALENTINA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-04-14', '26310.00', 'A'), + ('1193', 1, 'MARQUEZ GALINDO MAURICIO JAVIER', '191821112', + 'CRA 25 CALLE 100', '729@yahoo.es', '2011-02-03', 131105, '2011-05-13', + '493560.00', 'A'), + ('1195', 1, 'NIETO FRANCO JUAN FELIPE', '191821112', 'CRA 25 CALLE 100', + '707@yahoo.com', '2011-02-03', 127591, '2011-07-30', '463790.00', 'A'), + ('1196', 3, 'ESTEVES JOAQUIM LUIS FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-04-05', + '152270.00', 'A'), + ('1197', 4, 'BARRERO KAREN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-12', '369990.00', 'A'), + ('1198', 1, 'CORRALES GUZMAN DELIO ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127689, '2011-08-03', '393120.00', 'A'), + ('1199', 1, 'CUELLAR TOCO EDGAR', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127531, '2011-09-20', '855640.00', 'A'), + ('12', 1, 'MARIN PRIETO FREDY NELSON ', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-23', '641210.00', 'A'), + ('120', 1, 'LOPEZ JARAMILLO ANDRES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2009-04-17', '29680.00', 'A'), + ('1200', 3, 'SCHULTER ACHIM', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 291002, '2010-05-21', '98860.00', 'A'), + ('1201', 3, 'HOWELL LAURENCE ADRIAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 286785, '2011-05-22', '927350.00', 'A'), + ('1202', 3, 'ALCAZAR ESCARATE JAIME PATRICIO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-08-25', + '340160.00', 'A'), + ('1203', 3, 'HIDALGO FUENZALIDA GABRIEL RAUL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-03', + '918780.00', 'A'), + ('1206', 1, 'VANEGAS HENAO ORLANDO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-27', '832910.00', 'A'), + ('1207', 1, 'PEÑARANDA ARIAS RICARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-19', '832710.00', 'A'), + ('1209', 1, 'LEZAMA CERVERA JUAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2011-09-14', + '825980.00', 'A'), + ('121', 1, 'PULIDO JIMENEZ OSCAR HUMBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-29', + '772700.00', 'A'), + ('1211', 1, 'TRUJILLO BOCANEGRA HAROL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127538, '2011-05-27', '199260.00', 'A'), + ('1212', 1, 'ALVAREZ TORRES MARIO RICARDO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-08-15', + '589960.00', 'A'), + ('1213', 1, 'CORRALES VARON BELMER', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-26', '352030.00', 'A'), + ('1214', 3, 'CUEVAS RODRIGUEZ MANUELA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-30', '990250.00', 'A'), + ('1216', 1, 'LOPEZ EDICSON', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-31', '505210.00', 'A'), + ('1217', 3, 'GARCIA PALOMARES JUAN JAVIER', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-07-31', + '840440.00', 'A'), + ('1218', 1, 'ARCINIEGAS NARANJO RICARDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127492, '2010-12-17', + '686610.00', 'A'), + ('122', 1, 'GONZALEZ RIANO LEONARDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128031, '2011-08-05', '774450.00', 'A'), + ('1220', 1, 'GARCIA GUTIERREZ WILLIAM', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-06-20', '498680.00', 'A'), + ('1221', 3, 'GOMEZ DE ALONSO ANGELA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-27', '758300.00', 'A'), + ('1222', 1, 'MEDINA QUIROGA JAMES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127538, '2011-01-16', '295480.00', 'A'), + ('1224', 1, 'ARCILA CORREA JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-03-20', '125900.00', 'A'), + ('1225', 1, 'QUIJANO REYES CARLOS ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2010-04-08', + '22100.00', 'A'), + ('1226', 1, 'VARGAS GALLEGO JAIRO ALONSO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2009-07-30', + '732820.00', 'A'), + ('1228', 3, 'NAPANGA MIRENGHI MARTIN', '191821112', 'CRA 25 CALLE 100', + '153@yahoo.es', '2011-02-03', 132958, '2011-02-08', '790400.00', 'A'), + ('123', 1, 'LAMUS CASTELLANOS ANDRES RICARDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-11', + '554160.00', 'A'), + ('1230', 1, 'RIVEROS PIÑEROS JOSE ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127492, '2011-09-25', + '422220.00', 'A'), + ('1231', 3, 'ESSER JUAN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127327, '2011-04-01', '635060.00', 'A'), + ('1232', 3, 'DOMINGUEZ MORA MAURICIO ALFREDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-22', + '908630.00', 'A'), + ('1233', 3, 'MOLINA FERNANDEZ FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-05-28', '637990.00', 'A'), + ('1234', 3, 'BELLO DANIEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 196234, '2010-09-04', '464040.00', 'A'), + ('1235', 3, 'BENADAVA GUEVARA DAVID ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-05-18', + '406240.00', 'A'), + ('1236', 3, 'RODRIGUEZ MATOS ROBERTO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-03-22', '639070.00', 'A'), + ('1237', 3, 'TAPIA ALARCON PATRICIO ANDRES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2010-07-06', + '976620.00', 'A'), + ('1239', 3, 'VERCHERE ALFONSO CHRISTIAN', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2010-08-23', + '899600.00', 'A'), + ('1241', 1, 'ESPINEL LUIS FELIPE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128206, '2009-03-09', '302860.00', 'A'), + ('1242', 3, 'VERGARA FERREIRA PATRICIA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-10-03', '713310.00', 'A'), + ('1243', 3, 'ZUMARRAGA SIRVENT CRSTINA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-08-24', '657950.00', 'A'), + ('1244', 4, 'ESCORCIA VASQUEZ TOMAS', '191821112', 'CRA 25 CALLE 100', + '354@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', '149830.00', + 'A'), + ('1245', 4, 'PARAMO CUENCA KELLY LORENA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127492, '2011-05-04', + '775300.00', 'A'), + ('1246', 4, 'PEREZ LOPEZ VERONICA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2011-07-11', '426990.00', 'A'), + ('1247', 4, 'CHAPARRO RODRIGUEZ DANIELA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-08', + '809070.00', 'A'), + ('1249', 4, 'DIAZ MARTINEZ MARIA CAROLINA', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2011-05-30', + '394740.00', 'A'), + ('125', 1, 'CALDON RODRIGUEZ JAIME ARIEL', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126968, '2011-07-29', + '574780.00', 'A'), + ('1250', 4, 'PINEDA VASQUEZ JUAN PABLO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2010-09-03', '680540.00', 'A'), + ('1251', 5, 'MATIZ URIBE ANGELA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-12-25', '218470.00', 'A'), + ('1253', 1, 'ZAMUDIO RICAURTE JAIRO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 126892, '2011-08-05', '598160.00', 'A'), + ('1254', 1, 'ALJURE FRANCISCO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-07-21', '838660.00', 'A'), + ('1255', 3, 'ARMESTO AIRA ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 196234, '2011-01-29', '398840.00', 'A'), + ('1257', 1, 'POTES GUEVARA JAIRO MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127858, '2011-03-17', + '194580.00', 'A'), + ('1258', 1, 'BURBANO QUIROGA RAFAEL', '191821112', 'CRA 25 CALLE 100', + '767@facebook.com', '2011-02-03', 127591, '2011-04-07', '538220.00', + 'A'), + ('1259', 1, 'CARDONA GOMEZ JAVIR', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127300, '2011-03-16', '107380.00', 'A'), + ('126', 1, 'PULIDO PARDO GUIDO IVAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-10-05', '531550.00', 'A'), + ('1260', 1, 'LOPERA LEDESMA PABLO ANDRES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-19', + '922240.00', 'A'), + ('1263', 1, 'TRIBIN BARRIGA JUAN MANUEL', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-09-02', + '525330.00', 'A'), + ('1264', 1, 'NAVIA LOPEZ ANDRÉS FELIPE ', '191821112', + 'CRA 25 CALLE 100', '353@hotmail.es', '2011-02-03', 127300, + '2011-07-15', '591190.00', 'A'), + ('1265', 1, 'CARDONA GOMEZ FABIAN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127300, '2010-11-18', '379940.00', 'A'), + ('1266', 1, 'ESCARRIA VILLEGAS ANDRES JULIAN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-08-19', + '126160.00', 'A'), + ('1268', 1, 'CASTRO HERNANDEZ ALVARO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127300, '2011-03-25', '76260.00', 'A'), + ('127', 1, 'RODRIGUEZ RODRIGUEZ GIOVANI FRANCISCO', '191821112', + 'CRA 25 CALLE 100', '662@hotmail.es', '2011-02-03', 127591, + '2011-09-29', '933390.00', 'A'), + ('1270', 1, 'LEAL HERNANDEZ MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', '313610.00', 'A'), + ('1272', 1, 'ORTIZ CARDONA WILLIAM ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '914@hotmail.com', '2011-02-03', 128662, + '2011-09-13', '272150.00', 'A'), + ('1273', 1, 'ROMERO VAN GOMPEL HERNAN', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-09-07', '832960.00', 'A'), + ('1274', 1, 'BERMUDEZ LONDOÑO JHON FREDY', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-08-29', + '348380.00', 'A'), + ('1275', 1, 'URREA ALVAREZ NICOLAS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-01', '242980.00', 'A'), + ('1276', 1, 'VALENCIA LLANOS RODRIGO AUGUSTO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-04-11', + '169790.00', 'A'), + ('1277', 1, 'PAZ VALENCIA GUILLERMO ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127300, '2011-08-05', + '120020.00', 'A'), + ('1278', 1, 'MONROY CORREDOR GERARDO ALONSO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-06-25', + '90700.00', 'A'), + ('1279', 1, 'RIOS MEDINA JAVIER ERMINSO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-12', + '93440.00', 'A'), + ('128', 1, 'GALLEGO GUZMAN MARIO ANDRES', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-06-25', + '72290.00', 'A'), + ('1280', 1, 'GARCIA OSCAR EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-30', '195090.00', 'A'), + ('1282', 1, 'MURILLO PESELLIN GABRIEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127300, '2011-06-15', '890530.00', 'A'), + ('1284', 1, 'DIAZ ALVAREZ JOHNY', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127300, '2011-06-25', '164130.00', 'A'), + ('1285', 1, 'GARCES BELTRAN RAUL', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127300, '2011-08-11', '719220.00', 'A'), + ('1286', 1, 'MATERON POVEDA LUIS ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-25', + '103710.00', 'A'), + ('1287', 1, 'VALENCIA ALEXANDER', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-10-23', '360880.00', 'A'), + ('1288', 1, 'PEÑA AGUDELO JOSE RAMON', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 134022, '2011-05-25', '493280.00', 'A'), + ('1289', 1, 'CORREA NUÑEZ JORGE ALEXANDER', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-08-18', + '383750.00', 'A'), + ('129', 1, 'ALVAREZ RODRIGUEZ IVAN RICARDO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2008-01-28', + '561290.00', 'A'), + ('1291', 1, 'BEJARANO ROSERO FREDDY ANDRES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-09', + '43400.00', 'A'), + ('1292', 1, 'CASTILLO BARRIOS GUSTAVO ADOLFO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-06-17', + '900180.00', 'A'), + ('1296', 1, 'GALVEZ GUTIERREZ JUAN PABLO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2010-03-28', + '807090.00', 'A'), + ('1297', 3, 'CRUZ GARCIA MILTON', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 139844, '2011-03-21', '75630.00', 'A'), + ('1298', 1, 'VILLEGAS GUTIERREZ JOSE RICARDO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-11', + '956860.00', 'A'), + ('13', 1, 'VACA MURCIA JESUS ALFREDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-04', '613430.00', 'A'), + ('1301', 3, 'BOTTI ALFONSO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 231989, '2011-04-04', '910640.00', 'A'), + ('1302', 3, 'COTINO HUESO LORENZO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-02-02', '803450.00', 'A'), + ('1304', 3, 'NESPOLI MANTOVANI LUIZ CARLOS', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-04-18', + '16230.00', 'A'), + ('1307', 4, 'AVILA GIL PAULA ANDREA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-19', '711110.00', 'A'), + ('1308', 4, 'VALLEJO PINEDA ALEJANDRA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-12', '323490.00', 'A'), + ('1312', 1, 'ROMERO OSCAR EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-04-17', '642460.00', 'A'), + ('1314', 3, 'LULLIES CONSTANZE', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 245206, '2010-06-03', '154970.00', 'A'), + ('1315', 1, 'CHAPARRO GUTIERREZ JORGE ADRIANO', '191821112', + 'CRA 25 CALLE 100', '284@hotmail.es', '2011-02-03', 127591, + '2010-12-02', '325440.00', 'A'), + ('1316', 1, 'BARRANTES DISI RICARDO JOSE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132879, '2011-07-18', + '162270.00', 'A'), + ('1317', 3, 'VERDES GAGO JOSE ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 188640, '2010-03-10', '835060.00', 'A'), + ('1319', 3, 'MARTIN MARTINEZ GUSTAVO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2010-05-26', '937220.00', 'A'), + ('1320', 3, 'MOTTURA MASSIMO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2008-11-10', '620640.00', 'A'), + ('1321', 3, 'RUSSELL TIMOTHY JAMES', '191821112', 'CRA 25 CALLE 100', + '502@hotmail.es', '2011-02-03', 145135, '2010-04-16', '291560.00', 'A'), + ('1322', 3, 'JAIN TARSEM', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 190393, '2011-05-31', '595890.00', 'A'), + ('1323', 3, 'ORTEGA CEVALLOS JULIETA ELIZABETH', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-30', + '104760.00', 'A'), + ('1324', 3, 'MULLER PICHAIDA ANDRES FELIPE', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-05-17', + '736130.00', 'A'), + ('1325', 3, 'ALVEAR TELLEZ JULIO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-01-23', '366390.00', 'A'), + ('1327', 3, 'MOYA LATORRE MARCELA CAROLINA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-05-17', + '18520.00', 'A'), + ('1328', 3, 'LAMA ZAROR RODRIGO IGNACIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2010-10-27', + '221990.00', 'A'), + ('1329', 3, 'HERNANDEZ CIFUENTES MAURICE JEANETTE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 139844, '2011-06-22', + '54410.00', 'A'), + ('133', 1, 'CORDOBA HOYOS JUAN PABLO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-20', '966820.00', 'A'), + ('1330', 2, 'HOCHKOFLER NOEMI CONSUELO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-27', '606070.00', 'A'), + ('1331', 4, 'RAMIREZ BARRERO DANIELA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 154563, '2011-04-18', '867120.00', 'A'), + ('1332', 4, 'DE LEON DURANGO RICARDO JOSE', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131105, '2011-09-08', + '517400.00', 'A'), + ('1333', 4, 'RODRIGUEZ MACIAS IVAN MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129447, '2011-05-23', + '985620.00', 'A'), + ('1334', 4, 'GUTIERREZ DE PIÑERES YANET MARIA ALEJANDRA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-06-16', + '375890.00', 'A'), + ('1335', 4, 'GUTIERREZ DE PIÑERES YANET MARIA GABRIELA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-06-16', + '922600.00', 'A'), + ('1336', 4, 'CABRALES BECHARA JOSE MARIA', '191821112', + 'CRA 25 CALLE 100', '708@hotmail.com', '2011-02-03', 131105, + '2011-05-13', '485330.00', 'A'), + ('1337', 4, 'MEJIA TOBON LUIS DAVID', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127662, '2011-08-05', '658860.00', 'A'), + ('1338', 3, 'OROS NERCELLES CRISTIAN ANDRE', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 144215, '2011-04-26', + '838310.00', 'A'), + ('1339', 3, 'MORENO BRAVO CAROLINA ANDREA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 190393, '2010-12-08', + '214950.00', 'A'), + ('134', 1, 'GONZALEZ LOPEZ DANIEL ANDRES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-08', + '178580.00', 'A'), + ('1340', 3, 'FERNANDEZ GARRIDO MARCELO FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-07-08', + '559820.00', 'A'), + ('1342', 3, 'SUMEGI IMRE ZOLTAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-16', '91750.00', 'A'), + ('1343', 3, 'CALDERON FLANDEZ SERGIO', '191821112', 'CRA 25 CALLE 100', + '108@hotmail.com', '2011-02-03', 117002, '2010-12-12', '996030.00', + 'A'), + ('1345', 3, 'CARBONELL ATCHUGARRY GUILLERMO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116366, '2010-04-12', + '536390.00', 'A'), + ('1346', 3, 'MONTEALEGRE AGUILAR FEDERICO ', '191821112', + 'CRA 25 CALLE 100', '448@yahoo.es', '2011-02-03', 132165, '2011-08-08', + '567260.00', 'A'), + ('1347', 1, 'HERNANDEZ MANCHEGO CARLOS JULIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-04-28', + '227130.00', 'A'), + ('1348', 1, 'ARENAS ZARATE FERNEY ARNULFO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127963, '2011-03-26', + '433860.00', 'A'), + ('1349', 3, 'DELFIM DINIZ PASSOS PINHEIRO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 110784, '2010-04-17', + '487930.00', 'A'), + ('135', 1, 'GARCIA SIMBAQUEBA RUBEN DARIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-25', + '992420.00', 'A'), + ('1350', 3, 'BRAUN VALENZUELA FELIPE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-29', '138050.00', 'A'), + ('1351', 3, 'LEVIN FIORELLI ANDRES', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 116366, '2011-04-10', '226470.00', 'A'), + ('1353', 3, 'BALTODANO ESQUIVEL LAURA CRISTINA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-08-01', + '911660.00', 'A'), + ('1354', 4, 'ESCOBAR YEPES ANDREA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-05-19', '403630.00', 'A'), + ('1356', 1, 'GAGELI OSORIO ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '228@yahoo.com.mx', '2011-02-03', 128662, '2011-07-14', '205070.00', + 'A'), + ('1357', 3, 'CABAL ALVAREZ RUBEN', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-08-14', '175770.00', 'A'), + ('1359', 4, 'HUERFANO JUAN DAVID', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-04', '790970.00', 'A'), + ('136', 1, 'OSORIO RAMIREZ LEONARDO', '191821112', 'CRA 25 CALLE 100', + '686@yahoo.es', '2011-02-03', 128662, '2010-05-14', '426380.00', 'A'), + ('1360', 4, 'RAMON GARCIA MARIA PAULA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-01', '163890.00', 'A'), + ('1362', 30, 'ALVAREZ CLAVIO CARLA ALEJANDRA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127203, '2011-04-18', + '741020.00', 'A'), + ('1363', 3, 'SERRA DURAN GERARDO ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-03', + '365490.00', 'A'), + ('1364', 3, 'NORIEGA VALVERDE SILVIA MARCELA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132775, '2011-02-27', + '604370.00', 'A'), + ('1366', 1, 'JARAMILLO LOPEZ ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '269@terra.com.co', '2011-02-03', 127559, '2010-11-08', '813800.00', + 'A'), + ('1367', 1, 'MAZO ROLDAN CARLOS ANDRES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-04', '292880.00', 'A'), + ('1368', 1, 'MURIEL ARCILA MAURICIO HERNANDO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-29', + '22970.00', 'A'), + ('1369', 1, 'RAMIREZ CARLOS FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-14', '236230.00', 'A'), + ('137', 1, 'LUNA PEREZ JUAN PABLO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 126881, '2011-08-05', '154640.00', 'A'), + ('1370', 1, 'GARCIA GRAJALES PEDRO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128166, '2011-10-09', + '112230.00', 'A'), + ('1372', 3, 'GARCIA ESCOBAR ANA MARIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-29', '925670.00', 'A'), + ('1373', 3, 'ALVES DIAS CARLOS AUGUSTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-07', '70940.00', 'A'), + ('1374', 3, 'MATTOS CHRISTIANE GARCIA CID', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 183024, '2010-08-25', + '577700.00', 'A'), + ('1376', 1, 'CARVAJAL ROJAS ORLANDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-10', '645240.00', 'A'), + ('1377', 3, 'MADARIAGA CADIZ CLAUDIO CRISTIAN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-10-04', + '199200.00', 'A'), + ('1379', 3, 'MARIN YANEZ ALICIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188640, '2011-02-20', '703870.00', 'A'), + ('138', 1, 'DIAZ AVENDAÑO MARCELO IVAN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-22', '494080.00', 'A'), + ('1381', 3, 'COSTA VILLEGAS LUIS ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-08-21', + '580670.00', 'A'), + ('1382', 3, 'DAZA PEREZ JOSE LUIS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 122035, '2009-02-23', '888000.00', 'A'), + ('1385', 4, 'RIVEROS ARIAS MARIA ALEJANDRA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127492, '2011-09-26', + '35710.00', 'A'), + ('1386', 30, 'TORO GIRALDO MATEO', '191821112', 'CRA 25 CALLE 100', + '433@yahoo.com.mx', '2011-02-03', 127591, '2011-07-17', '700730.00', + 'A'), + ('1387', 4, 'ROJAS YARA LAURA DANIELA MARIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-31', + '396530.00', 'A'), + ('1388', 3, 'GALLEGO RODRIGO MARIA PILAR', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2009-04-19', + '880450.00', 'A'), + ('1389', 1, 'PANTOJA VELASQUEZ JOSE ARMANDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2011-08-05', + '212660.00', 'A'), + ('139', 1, 'FRANCO GOMEZ HERNÁN EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-01-19', + '6450.00', 'A'), + ('1390', 3, 'VAN DEN BORNE KEES', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 132958, '2010-01-28', '421930.00', 'A'), + ('1391', 3, 'MONDRAGON FLORES JUAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-08-22', + '471700.00', 'A'), + ('1392', 3, 'BAGELLA MICHELE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-07-27', '92720.00', 'A'), + ('1393', 3, 'BISTIANCIC MACHADO ANA INES', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 116366, '2010-08-02', + '48490.00', 'A'), + ('1394', 3, 'BAÑADOS ORTIZ MARIA PILAR', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-08-25', '964280.00', 'A'), + ('1395', 1, 'CHINDOY CHINDOY HERNANDO', '191821112', 'CRA 25 CALLE 100', + '107@terra.com.co', '2011-02-03', 126892, '2011-08-25', '675920.00', + 'A'), + ('1396', 3, 'SOTO NUÑEZ ANDRES ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-10-02', + '486760.00', 'A'), + ('1397', 1, 'DELGADO MARTINEZ LORGE ELIAS', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-23', + '406040.00', 'A'), + ('1398', 1, 'LEON GUEVARA JAVIER ANIBAL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126892, '2011-09-08', + '569930.00', 'A'), + ('1399', 1, 'ZARAMA BASTIDAS LUIS GABRIEL', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126892, '2011-08-05', + '631540.00', 'A'), + ('14', 1, 'MAGUIN HENNSSEY LUIS FERNANDO', '191821112', + 'CRA 25 CALLE 100', '714@gmail.com', '2011-02-03', 127591, '2011-07-11', + '143540.00', 'A'), + ('140', 1, 'CARRANZA CUY ALEXANDER', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-25', '550010.00', 'A'), + ('1401', 3, 'REYNA CASTORENA JOSE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 189815, '2011-08-29', '344970.00', 'A'), + ('1402', 1, 'GFALLO BOTERO SERGIO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-07-14', '381100.00', 'A'), + ('1403', 1, 'ARANGO ARAQUE JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-05-04', '870590.00', 'A'), + ('1404', 3, 'LASSNER NORBERTO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118942, '2010-02-28', '209650.00', 'A'), + ('1405', 1, 'DURANGO MARIN HECTOR LEON', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '1970-02-02', '436480.00', 'A'), + ('1407', 1, 'FRANCO CASTAÑO DIEGO MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-06-28', + '457770.00', 'A'), + ('1408', 1, 'HERNANDEZ SERGIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2011-05-29', '628550.00', 'A'), + ('1409', 1, 'CASTAÑO DUQUE CARLOS HUGO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-03-23', '769410.00', 'A'), + ('141', 1, 'CHAMORRO CHEDRAUI SERGIO ALBERTO', '191821112', + 'CRA 25 CALLE 100', '922@yahoo.com.mx', '2011-02-03', 127591, + '2011-05-07', '730720.00', 'A'), + ('1411', 1, 'RAMIREZ MONTOYA ADAMO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-04-13', '498880.00', 'A'), + ('1412', 1, 'GONZALEZ BENJUMEA OSCAR HUMBERTO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-11-01', + '610150.00', 'A'), + ('1413', 1, 'ARANGO ACEVEDO WALTER ANDRES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-10-07', + '554090.00', 'A'), + ('1414', 1, 'ARANGO GALLO HUMBERTO LEON', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-02-25', + '940010.00', 'A'), + ('1415', 1, 'VELASQUEZ LUIS GONZALO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-07-06', '37760.00', 'A'), + ('1416', 1, 'MIRA AGUILAR FRANCISCO ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-30', + '368790.00', 'A'), + ('1417', 1, 'RIVERA ARISTIZABAL CARLOS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-03-02', '730670.00', 'A'), + ('1418', 1, 'ARISTIZABAL ROLDAN ANDRES RICARDO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-02', + '546960.00', 'A'), + ('142', 1, 'LOPEZ ZULETA MAURICIO ALEXANDER', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-01', + '3550.00', 'A'), + ('1420', 1, 'ESCORCIA ARAMBURO JUAN MARIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', + '73100.00', 'A'), + ('1421', 1, 'CORREA PARRA RICARDO ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-05', + '737110.00', 'A'), + ('1422', 1, 'RESTREPO NARANJO DANIEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2011-09-15', '466240.00', 'A'), + ('1423', 1, 'VELASQUEZ CARLOS JUAN', '191821112', 'CRA 25 CALLE 100', + '123@yahoo.com', '2011-02-03', 128662, '2010-06-09', '119880.00', 'A'), + ('1424', 1, 'MACIA GONZALEZ ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2010-11-12', '200690.00', 'A'), + ('1425', 1, 'BERRIO MEJIA HELBER ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2010-06-04', + '643800.00', 'A'), + ('1427', 1, 'GOMEZ GUTIERREZ CARLOS ARIEL', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-09-08', + '153320.00', 'A'), + ('1428', 1, 'RESTREPO LOPEZ JOSE ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-12', + '915770.00', 'A'), + ('1429', 1, 'BARTH TOBAR LUIS FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-02-23', '118900.00', 'A'), + ('143', 1, 'MUNERA BEDIYA JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2010-09-21', '825600.00', 'A'), + ('1430', 1, 'JIMENEZ VELEZ ANDRES EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-02-26', + '847160.00', 'A'), + ('1431', 1, 'TAKAHASHI GAVIRIA NICOLAS KEIICHIRO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-13', + '879120.00', 'A'), + ('1432', 1, 'ESCOBAR JARAMILLO ESTEBAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2010-06-10', '854110.00', 'A'), + ('1433', 1, 'PALACIO NAVARRO ANDRES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-08-18', '633200.00', 'A'), + ('1434', 1, 'LONDOÑO MUÑOZ ADOLFO LEON', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-09-14', '603670.00', 'A'), + ('1435', 1, 'PULGARIN JAIME ANDRES', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2009-11-01', '118730.00', 'A'), + ('1436', 1, 'FERRERA ZULUAGA LUIS FELIPE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-07-10', + '782630.00', 'A'), + ('1437', 1, 'VASQUEZ VELEZ HABACUC', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-27', '557000.00', 'A'), + ('1438', 1, 'HENAO PALOMINO DIEGO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2009-05-06', '437080.00', 'A'), + ('1439', 1, 'HURTADO URIBE JUAN GONZALO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-01-11', + '514400.00', 'A'), + ('144', 1, 'ALDANA RODOLFO AUGUSTO', '191821112', 'CRA 25 CALLE 100', + '838@yahoo.es', '2011-02-03', 127591, '2011-08-07', '117350.00', 'A'), + ('1441', 1, 'URIBE DANIEL ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 133535, '2010-11-19', '760610.00', 'A'), + ('1442', 1, 'PINEDA GALIANO JUAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-07-29', + '20770.00', 'A'), + ('1443', 1, 'DUQUE BETANCOURT FABIO LEON', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-26', + '822030.00', 'A'), + ('1444', 1, 'JARAMILLO TORO HERNAN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-04-27', '47830.00', 'A'), + ('145', 1, 'VASQUEZ ZAPATA JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-09', '109940.00', 'A'), + ('1450', 1, 'TOBON FRANCO MARCO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '545@facebook.com', '2011-02-03', 127591, + '2011-05-03', '889540.00', 'A'), + ('1454', 1, 'LOTERO PAVAS CARLOS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-28', + '646750.00', 'A'), + ('1455', 1, 'ESTRADA HENAO JAVIER ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128569, '2009-09-07', + '215460.00', 'A'), + ('1456', 1, 'VALDERRAMA MAXIMILIANO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-03-23', '137030.00', 'A'), + ('1457', 3, 'ESTRADA ALVAREZ GONZALO ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 154903, '2011-05-02', + '38790.00', 'A'), + ('1458', 1, 'PAUCAR VALLEJO JAIRO ALONSO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-10-15', + '782860.00', 'A'), + ('1459', 1, 'RESTREPO GIRALDO JHON DARIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-04-04', + '797930.00', 'A'), + ('146', 1, 'BAQUERO FELIPE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2010-03-03', '197650.00', 'A'), + ('1460', 1, 'RESTREPO DOMINGUEZ GUSTAVO ADOLFO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2009-05-18', + '641050.00', 'A'), + ('1461', 1, 'YANOVICH JACKY', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-08-21', '811470.00', 'A'), + ('1462', 1, 'HINCAPIE ROLDAN JOSE ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-27', + '134200.00', 'A'), + ('1463', 3, 'ZEA JORGE OLIVER', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 150699, '2011-03-12', '236610.00', 'A'), + ('1464', 1, 'OSCAR MAURICIO ECHAVARRIA', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2010-11-24', '780440.00', 'A'), + ('1465', 1, 'COSSIO GIL JOSE ALEXANDER', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-10-01', '192380.00', 'A'), + ('1466', 1, 'GOMEZ CARLOS ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-03-01', '620580.00', 'A'), + ('1467', 1, 'VILLALOBOS OCHOA ANDRES GABRIEL', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-18', + '525740.00', 'A'), + ('1470', 1, 'GARCIA GONZALEZ DAVID DARIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-09-17', + '986990.00', 'A'), + ('1471', 1, 'RAMIREZ RESTREPO ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-03', + '162250.00', 'A'), + ('1472', 1, 'VASQUEZ GUTIERREZ JUAN ANDRES', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-05', + '850280.00', 'A'), + ('1474', 1, 'ESCOBAR ARANGO DAVID', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2010-11-01', '272460.00', 'A'), + ('1475', 1, 'MEJIA TORO JUAN DAVID', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-05-02', '68320.00', 'A'), + ('1477', 1, 'ESCOBAR GOMEZ JUAN MANUEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127848, '2011-05-15', '416150.00', 'A'), + ('1478', 1, 'BETANCUR WILSON', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2008-02-09', '508060.00', 'A'), + ('1479', 3, 'ROMERO ARRAU GONZALO ANDRES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-10', + '291880.00', 'A'), + ('148', 1, 'REINA MORENO MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-08', '699240.00', 'A'), + ('1480', 1, 'CASTAÑO OSORIO JORGE ', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127662, '2011-09-20', '935200.00', 'A'), + ('1482', 1, 'LOPEZ LOPERA ROBINSON FREDY', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-09-02', + '196280.00', 'A'), + ('1484', 1, 'HERNAN DARIO RENDON', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-03-18', '312520.00', 'A'), + ('1485', 1, 'MARTINEZ ARBOLEDA MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-11-03', + '821760.00', 'A'), + ('1486', 1, 'RODRIGUEZ MORA CARLOS MORA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-09-16', + '171270.00', 'A'), + ('1487', 1, 'PENAGOS VASQUEZ JOSE DOMINGO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-09-06', + '391080.00', 'A'), + ('1488', 1, 'UERRA MEJIA DIEGO LEON', '191821112', 'CRA 25 CALLE 100', + '704@hotmail.com', '2011-02-03', 144086, '2011-08-06', '441570.00', + 'A'), + ('1491', 1, 'QUINTERO GUTIERREZ ABEL PASTOR', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2009-11-16', + '138100.00', 'A'), + ('1492', 1, 'ALARCON YEPES IVAN DARIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 150699, '2010-05-03', '145330.00', 'A'), + ('1494', 1, 'HERNANDEZ VALLEJO ANDRES MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-09', + '125770.00', 'A'), + ('1495', 1, 'MONTOYA MORENO LUIS MIGUEL', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-09', + '691770.00', 'A'), + ('1497', 1, 'BARRERA CARLOS ANDRES', '191821112', 'CRA 25 CALLE 100', + '62@yahoo.es', '2011-02-03', 127591, '2010-08-24', '332550.00', 'A'), + ('1498', 1, 'ARROYAVE FERNANDEZ PABLO EMILIO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-05-12', + '418030.00', 'A'), + ('1499', 1, 'GOMEZ ANGEL FELIPE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-05-03', '92480.00', 'A'), + ('15', 1, 'AMSILI COHEN JOSEPH', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', '877400.00', 'A'), + ('150', 3, 'ARDILA GUTIERREZ DANIEL MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-12', + '506760.00', 'A'), + ('1500', 1, 'GONZALEZ DUQUE PABLO JOSE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2010-04-13', '208330.00', 'A'), + ('1502', 1, 'MEJIA BUSTAMANTE JUAN FELIPE', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-09', + '196000.00', 'A'), + ('1506', 1, 'SUAREZ MONTOYA JUAN PABLO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128569, '2011-09-13', '368250.00', 'A'), + ('1508', 1, 'ALVAREZ GONZALEZ JUAN PABLO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-02-15', + '355190.00', 'A'), + ('1509', 1, 'NIETO CORREA ANDRES FELIPE', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-31', + '899980.00', 'A'), + ('1511', 1, 'HERNANDEZ GRANADOS JHONATHAN', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-08-30', + '471720.00', 'A'), + ('1512', 1, 'CARDONA ALVAREZ DEIBY', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2010-10-05', '55590.00', 'A'), + ('1513', 1, 'TORRES MARULANDA JUAN ESTEBAN', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-20', + '862820.00', 'A'), + ('1514', 1, 'RAMIREZ RAMIREZ JHON JAIRO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-11', + '147310.00', 'A'), + ('1515', 1, 'MONDRAGON TORO NICOLAS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-01-19', '148100.00', 'A'), + ('1517', 3, 'SUIDA DIETER', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118942, '2008-07-21', '48580.00', 'A'), + ('1518', 3, 'LEFTWICH ANDREW PAUL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 211610, '2011-06-07', '347170.00', 'A'), + ('1519', 3, 'RENTON ANDREW GEORGE PATRICK', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2010-12-11', + '590120.00', 'A'), + ('152', 1, 'BUSTOS MONZON CARLOS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-22', + '335160.00', 'A'), + ('1521', 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 119814, '2011-04-28', + '775000.00', 'A'), + ('1522', 3, 'GUARACI FRANCO DE PAIVA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 119167, '2011-04-28', '147770.00', 'A'), + ('1525', 4, 'MORENO TENORIO MIGUEL ANGEL', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-20', + '888750.00', 'A'), + ('1527', 1, 'VELASQUEZ HERNANDEZ JHON EDUARSON', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-19', + '161270.00', 'A'), + ('1528', 4, 'VANEGAS ALEJANDRA', '191821112', 'CRA 25 CALLE 100', + '185@yahoo.com', '2011-02-03', 127591, '2011-06-20', '109830.00', 'A'), + ('1529', 3, 'BARBABE CLAIRE LAURENCE ANNICK', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-04', + '65330.00', 'A'), + ('153', 1, 'GONZALEZ TORREZ MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-01', '762560.00', 'A'), + ('1530', 3, 'COREA MARTINEZ GUILLERMO JOSE ', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-09-25', + '997190.00', 'A'), + ('1531', 3, 'PACHECO RODRIGO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 117002, '2010-03-08', '789960.00', 'A'), + ('1532', 3, 'WELCH RICHARD WILLIAM', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 190393, '2010-10-04', '958210.00', 'A'), + ('1533', 3, 'FOREMAN CAROLYN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 107159, '2011-05-23', '421200.00', 'A'), + ('1535', 3, 'ZAGAL SOTO CLAUDIA PAZ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 117002, '2008-05-16', '893130.00', 'A'), + ('1536', 3, 'ZAGAL SOTO CLAUDIA PAZ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 117002, '2011-10-08', '771600.00', 'A'), + ('1538', 3, 'BLANCO RODRIGUEZ JUAN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 197162, '2011-04-02', '578250.00', 'A'), + ('154', 1, 'HENDEZ PUERTO JAVIER ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', + '807310.00', 'A'), + ('1540', 3, 'CONTRERAS BRAIN JAVIER ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-02-22', + '42420.00', 'A'), + ('1541', 3, 'RONDON HERNANDEZ MARYLIN DEL CARMEN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-09-29', + '145780.00', 'A'), + ('1542', 3, 'ELJURI RAMIREZ EMIRA ELIZABETH', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2010-10-13', + '601670.00', 'A'), + ('1544', 3, 'REYES LE ROY TOMAS FRANCISCO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2009-06-24', + '49990.00', 'A'), + ('1545', 3, 'GHETEA GAMUZ JENNY', '191821112', 'CRA 25 CALLE 100', + '675@gmail.com', '2011-02-03', 150699, '2010-05-29', '536940.00', 'A'), + ('1546', 3, 'DUARTE GONZALEZ ROONEY ORLANDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-20', + '534720.00', 'A'), + ('1548', 3, 'BIZOT PHILIPPE PIERRE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 263813, '2011-03-02', '709760.00', 'A'), + ('1549', 3, 'PELUFFO RUBIO GUILLERMO JUAN', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 116366, '2011-05-09', + '360470.00', 'A'), + ('1550', 3, 'AGLIATI YERKOVIC CAROLINA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2010-06-01', '673040.00', 'A'), + ('1551', 3, 'SEPULVEDA LEDEZMA HENRY CORNELIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-08-15', + '283810.00', 'A'), + ('1552', 3, 'CABRERA CARMINE JAIME FRANCO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2008-11-30', + '399940.00', 'A'), + ('1553', 3, 'ZINNO PEÑA ALVARO ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 116366, '2010-08-02', '148270.00', 'A'), + ('1554', 3, 'ROMERO BUCCICARDI JUAN CRISTOBAL', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-08-01', + '541530.00', 'A'), + ('1555', 3, 'FEFERKORN ABRAHAM', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 159312, '2011-06-12', '262840.00', 'A'), + ('1556', 3, 'MASSE CATESSON CAROLINE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 131272, '2011-06-12', '689600.00', 'A'), + ('1557', 3, 'CATESSON ALEXANDRA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 131272, '2011-06-12', '659470.00', 'A'), + ('1558', 3, 'FUENTES HERNANDEZ RICARDO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-18', '228540.00', 'A'), + ('1559', 3, 'GUEVARA MENJIVAR WILSON ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-18', + '164310.00', 'A'), + ('1560', 3, 'DANOWSKI NICOLAS JAMES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-05-02', '135920.00', 'A'), + ('1561', 3, 'CASTRO VELASQUEZ ISMAEL', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 121318, '2011-07-31', '186670.00', 'A'), + ('1562', 3, 'RODRIGUEZ CORNEJO CARLOS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', + '525590.00', 'A'), + ('1563', 3, 'VANIA CAROLINA FLORES AVILA', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-18', + '67950.00', 'A'), + ('1564', 3, 'ARMERO RAMOS OSCAR ALEXANDER', '191821112', + 'CRA 25 CALLE 100', '414@hotmail.com', '2011-02-03', 127591, + '2011-09-18', '762950.00', 'A'), + ('1565', 3, 'ORELLANA MARTINEZ JUAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-18', + '610930.00', 'A'), + ('1566', 3, 'BRATT BABONNEAU CARLOS MIGUEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', + '765800.00', 'A'), + ('1567', 3, 'YANES FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 150728, '2011-04-12', '996200.00', 'A'), + ('1568', 3, 'ANGULO TAMAYO SEBASTIAN GUILLERMO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126674, '2011-05-19', + '683600.00', 'A'), + ('1569', 3, 'HENRIQUEZ JOSE LUIS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 138329, '2011-08-15', '429390.00', 'A'), + ('157', 1, 'ORTIZ RIOS ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-12', '365330.00', 'A'), + ('1570', 3, 'GARCIA VILLARROEL RAUL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 126189, '2011-06-12', '96140.00', 'A'), + ('1571', 3, 'SOLA HERNANDEZ JOSE FRANCISCO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-09-25', + '192530.00', 'A'), + ('1572', 3, 'PEREZ PASTOR OSWALDO MAGARREY', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126674, '2011-05-25', + '674260.00', 'A'), + ('1573', 3, 'MICHAN QUIÑONES FRANCISCO JOSE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-06-21', + '793680.00', 'A'), + ('1574', 3, 'GARCIA ARANDA OSCAR DAVID', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-08-15', '945620.00', 'A'), + ('1575', 3, 'GARCIA RIBAS JORDI', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-07-10', '347070.00', 'A'), + ('1576', 3, 'GALVAN ROMERO MARIA INMACULADA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-09-14', + '898480.00', 'A'), + ('1577', 3, 'BOSH MOLINAS JUAN JOSE ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 198576, '2011-08-22', '451190.00', 'A'), + ('1578', 3, 'MARTIN TENA JOSE MARIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188640, '2011-04-24', '560520.00', 'A'), + ('1579', 3, 'HAWKINS ROBERT JAMES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-12', '449010.00', 'A'), + ('1580', 3, 'GHERARDI ALEJANDRO EMILIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 180063, '2010-11-15', '563500.00', 'A'), + ('1581', 3, 'TELLO JUAN EDUARDO', '191821112', 'CRA 25 CALLE 100', + '192@hotmail.com', '2011-02-03', 138329, '2011-05-01', '470460.00', + 'A'), + ('1583', 3, 'GUZMAN VALDIVIA CINTIA TATIANA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 199862, '2011-04-06', + '897580.00', 'A'), + ('1584', 3, 'STUBBS MERCEDES CARMEN JOSEFINA DEL MILAGRO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 199862, '2011-04-06', + '502510.00', 'A'), + ('1585', 3, 'QUINTEIRO GORIS JOSE ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-17', + '819840.00', 'A'), + ('1587', 3, 'RIVAS LORIA PRISCILLA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 205636, '2011-05-01', '498720.00', 'A'), + ('1588', 3, 'DE LA TORRE AUGUSTO PATRICIO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 20404, '2011-08-31', + '718670.00', 'A'), + ('159', 1, 'ALDANA PATIÑO NORMAN ALEXANDER', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2009-10-10', + '201500.00', 'A'), + ('1590', 3, 'TORRES VILLAR ROBERTO ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2011-08-10', '329950.00', 'A'), + ('1591', 3, 'PETRULLI CARMELO MORENO', '191821112', 'CRA 25 CALLE 100', + '883@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', '358180.00', + 'A'), + ('1592', 3, 'MUSCO ENZO FRANCESCO GIUSEPPE', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-04', + '801050.00', 'A'), + ('1593', 3, 'RONCUZZI CLAUDIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127134, '2011-10-02', '930700.00', 'A'), + ('1594', 3, 'VELANI FRANCESCA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 199862, '2011-08-22', '250360.00', 'A'), + ('1596', 3, 'BENARROCH ASSOR DAVID ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-10-06', + '547310.00', 'A'), + ('1597', 3, 'FLO VILLASECA ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-05-27', '357520.00', 'A'), + ('1598', 3, 'FONT RIBAS ANTONI', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 196117, '2011-09-21', '145660.00', 'A'), + ('1599', 3, 'LOPEZ BARAHONA MONICA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2011-08-03', '655740.00', 'A'), + ('16', 1, 'FLOREZ PEREZ GUILLERMO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 132572, '2011-03-30', '956370.00', 'A'), + ('160', 1, 'GIRALDO MENDIVELSO MARTIN EDISSON', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-14', + '429010.00', 'A'), + ('1600', 3, 'SCATTIATI ALDO ', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 215245, '2011-07-10', '841730.00', 'A'), + ('1601', 3, 'MARONE CARLO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 101179, '2011-06-14', '241420.00', 'A'), + ('1602', 3, 'CHUVASHEVA ELENA ', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 190393, '2011-08-21', '681900.00', 'A'), + ('1603', 3, 'GIGLIO FRANCISCO JOSE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 122035, '2011-09-19', '685250.00', 'A'), + ('1604', 3, 'JUSTO AMATE AGUSTIN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 174598, '2011-05-16', '380560.00', 'A'), + ('1605', 3, 'GUARDABASSI FABIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 281044, '2011-07-26', '847060.00', 'A'), + ('1606', 3, 'CALABRETTA FRAMCESCO ANTONIO MARIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 199862, '2011-08-22', + '93590.00', 'A'), + ('1607', 3, 'TARTARINI MASSIMO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 196234, '2011-05-10', '926800.00', 'A'), + ('1608', 3, 'BOTTI GIAIME', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 231989, '2011-04-04', '353210.00', 'A'), + ('1610', 3, 'PILERI ANDREA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 205040, '2011-09-01', '868590.00', 'A'), + ('1612', 3, 'MARTIN GRACIA LUIS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-07-27', '324320.00', 'A'), + ('1613', 3, 'GRACIA MARTIN LUIS', '191821112', 'CRA 25 CALLE 100', + '579@facebook.com', '2011-02-03', 198248, '2011-08-24', '463560.00', + 'A'), + ('1614', 3, 'SERRAT SESE JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 196234, '2011-05-16', '344840.00', 'A'), + ('1615', 3, 'DEL LAGO AMPELIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 145135, '2011-06-29', '333510.00', 'A'), + ('1616', 3, 'PERUGORRIA RODRIGUEZ JORGE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 148511, '2011-06-06', + '633040.00', 'A'), + ('1617', 3, 'GIRAL CALVO IGNACIO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196234, '2011-09-19', '164670.00', 'A'), + ('1618', 3, 'ALONSO CEBRIAN JOSE MARIA', '191821112', 'CRA 25 CALLE 100', + '253@terra.com.co', '2011-02-03', 188640, '2011-03-23', '924240.00', + 'A'), + ('162', 1, 'ARIZA PINEDA JOHN ALEXANDER', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-11-27', + '415710.00', 'A'), + ('1620', 3, 'OLMEDO CARDENETE DOMINGO MIGUEL', '191821112', + 'CRA 25 CALLE 100', '608@terra.com.co', '2011-02-03', 135397, + '2011-09-03', '863200.00', 'A'), + ('1622', 3, 'GIMENEZ BALDRES ENRIQUE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 182860, '2011-05-12', '82660.00', 'A'), + ('1623', 3, 'NUÑEZ MIGUEL ANGEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2011-05-23', '609950.00', 'A'), + ('1624', 3, 'PEÑATE CASTRO WENCESLAO LORENZO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 153607, '2011-09-13', + '801750.00', 'A'), + ('1626', 3, 'ESCODA MIGUEL JOAN JOSEP', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 188640, '2011-07-18', '489310.00', 'A'), + ('1628', 3, 'ESTRADA CAPILLA ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-07-26', '81180.00', 'A'), + ('163', 1, 'PERDOMO LOPEZ ANDRES', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-05', '456910.00', 'A'), + ('1630', 3, 'SUBIRAIS MARIANA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-08', '138700.00', 'A'), + ('1632', 3, 'ENSEÑAT VELASCO JAIME LUIS', '191821112', + 'CRA 25 CALLE 100', '687@gmail.com', '2011-02-03', 188640, '2011-04-12', + '904560.00', 'A'), + ('1633', 3, 'DIEZ POLANCO CARLOS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-05-24', '530410.00', 'A'), + ('1636', 3, 'CUADRA ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-09-04', '688400.00', 'A'), + ('1637', 3, 'UBRIC MUÑOZ RAUL', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 98790, '2011-05-30', '139830.00', 'A'), + ('1638', 3, 'NEDDERMANN GUJO RICARDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-07-31', '633990.00', 'A'), + ('1639', 3, 'RENEDO ZALBA JAIME', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2011-03-13', '750430.00', 'A'), + ('164', 1, 'JIMENEZ PADILLA JOHAN MARCEL', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-05', + '37430.00', 'A'), + ('1640', 3, 'FERNANDEZ MORENO DAVID', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-05-28', '850180.00', 'A'), + ('1641', 3, 'VERGARA SERRANO JUAN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196234, '2011-06-30', '999620.00', 'A'), + ('1642', 3, 'MARTINEZ HUESO LUCAS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 182860, '2011-06-29', '447570.00', 'A'), + ('1643', 3, 'FRANCO POBLET JUAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 196234, '2011-10-03', '238990.00', 'A'), + ('1644', 3, 'MORA HIDALGO MIGUEL', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-06', '852250.00', 'A'), + ('1645', 3, 'GARCIA COSO EMILIANO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188640, '2011-09-14', '544260.00', 'A'), + ('1646', 3, 'GIMENO ESCRIG ENRIQUE', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 180124, '2011-09-20', '164580.00', 'A'), + ('1647', 3, 'MORCILLO LOPEZ RAMON', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127538, '2011-04-16', '190090.00', 'A'), + ('1648', 3, 'RUBIO BONET MANUEL', '191821112', 'CRA 25 CALLE 100', + '252@facebook.com', '2011-02-03', 196234, '2011-05-25', '456740.00', + 'A'), + ('1649', 3, 'PRADO ABUIN FERNANDO ', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-07-16', '713400.00', 'A'), + ('165', 1, 'RAMIREZ PALMA LUIS FELIPE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-10', '816420.00', 'A'), + ('1650', 3, 'DE VEGA PUJOL GEMA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196234, '2011-08-01', '196780.00', 'A'), + ('1651', 3, 'IBARGUEN ALFREDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2010-12-03', '843720.00', 'A'), + ('1652', 3, 'IBARGUEN ALFREDO', '191821112', 'CRA 25 CALLE 100', + '856@hotmail.com', '2011-02-03', 188640, '2011-06-18', '628250.00', + 'A'), + ('1654', 3, 'MATELLANES RODRIGUEZ NURIA PILAR', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-10-05', + '165770.00', 'A'), + ('1656', 3, 'VIDAURRAZAGA GUISOLA JUAN ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-08-08', + '495320.00', 'A'), + ('1658', 3, 'GOMEZ ULLATE MARIA ELENA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-04-12', '919090.00', 'A'), + ('1659', 3, 'ALCAIDE ALONSO JUAN MIGUEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-02', + '152430.00', 'A'), + ('166', 1, 'TUSTANOSKI RODOLFO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-12-03', '969790.00', 'A'), + ('1660', 3, 'LARROY GARCIA CRISTINA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-09-14', '4900.00', 'A'), + ('1661', 3, 'FERNANDEZ POYATO ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-09-10', '567180.00', 'A'), + ('1662', 3, 'TREVEJO PARDO JULIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-25', '821200.00', 'A'), + ('1663', 3, 'GORGA CASSINELLI VICTOR DANIEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-30', + '404490.00', 'A'), + ('1664', 3, 'MORUECO GONZALEZ JOSE ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-10-09', + '558820.00', 'A'), + ('1665', 3, 'IRURETA FERNANDEZ PEDRO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 214283, '2011-09-14', '580650.00', 'A'), + ('1667', 3, 'TREVEJO PARDO JUAN ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-25', + '392020.00', 'A'), + ('1668', 3, 'BOCOS NUÑEZ MIGUEL ANGEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 196234, '2011-10-08', '279710.00', 'A'), + ('1669', 3, 'LUIS CASTILLO JOSE AGUSTIN', '191821112', + 'CRA 25 CALLE 100', '557@hotmail.es', '2011-02-03', 168202, + '2011-06-16', '222500.00', 'A'), + ('167', 1, 'HURTADO BELALCAZAR JOHN JADY', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-08-17', + '399710.00', 'A'), + ('1670', 3, 'REDONDO GUTIERREZ EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-09-14', '273350.00', 'A'), + ('1671', 3, 'MADARIAGA ALONSO RAMON', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2011-07-26', '699240.00', 'A'), + ('1673', 3, 'REY GONZALEZ LUIS JAVIER', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 188640, '2011-07-26', '283190.00', 'A'), + ('1676', 3, 'PEREZ ESTER ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-10-03', '274900.00', 'A'), + ('1677', 3, 'GOMEZ-GRACIA HUERTA ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-22', + '112260.00', 'A'), + ('1678', 3, 'DAMASO PUENTE DIEGO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2011-05-25', '736600.00', 'A'), + ('168', 1, 'JUAN PABLO MARTINEZ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-08-15', '89160.00', 'A'), + ('1680', 3, 'DIEZ GONZALEZ LUIS MIGUEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-17', '521280.00', 'A'), + ('1681', 3, 'LOPEZ LOPEZ JOSE LUIS', '191821112', 'CRA 25 CALLE 100', + '853@yahoo.com', '2011-02-03', 196234, '2010-12-13', '567760.00', 'A'), + ('1682', 3, 'MIRO LINARES FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133442, '2011-09-03', '274930.00', 'A'), + ('1683', 3, 'ROCA PINTADO MANUEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196234, '2011-05-16', '671410.00', 'A'), + ('1684', 3, 'GARCIA BARTOLOME HORACIO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196234, '2011-09-29', '532220.00', 'A'), + ('1686', 3, 'BALMASEDA DE AHUMADA DIEZ JUAN LUIS', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 168202, '2011-04-13', + '637860.00', 'A'), + ('1687', 3, 'FERNANDEZ IMAZ FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2011-04-10', '248580.00', 'A'), + ('1688', 3, 'ELIAS CASTELLS FRANCISCO JAVIER', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-19', + '329300.00', 'A'), + ('1689', 3, 'ANIDO DIAZ DANIEL', '191821112', 'CRA 25 CALLE 100', + '491@gmail.com', '2011-02-03', 188640, '2011-04-04', '900780.00', 'A'), + ('1691', 3, 'GATELL ARIMONT MARIA CRISTINA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-17', + '877700.00', 'A'), + ('1692', 3, 'RIVERA MUÑOZ ADONI', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 211705, '2011-04-05', '840470.00', 'A'), + ('1693', 3, 'LUNA LOPEZ ALICIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188640, '2011-10-01', '569270.00', 'A'), + ('1695', 3, 'HAMMOND ANN ELIZABETH', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118021, '2011-05-17', '916770.00', 'A'), + ('1698', 3, 'RODRIGUEZ PARAJA MARIA CRISTINA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-15', + '649080.00', 'A'), + ('1699', 3, 'RUIZ DIAZ JOSE IGNACIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-06-24', '359540.00', 'A'), + ('17', 1, 'SUAREZ CUEVAS FRANCISCO JAVIER', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2011-08-31', + '149640.00', 'A'), + ('170', 1, 'MARROQUIN AVILA FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-04', '965840.00', 'A'), + ('1700', 3, 'BACCHELLI ORTEGA JOSE MARIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126180, '2011-06-07', + '850450.00', 'A'), + ('1701', 3, 'IGLESIAS JOSE IGNACIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2010-09-14', '173630.00', 'A'), + ('1702', 3, 'GUTIEZ CUEVAS JULIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2010-09-07', '316800.00', 'A'), + ('1704', 3, 'CALDEIRO ZAMORA JESUS CARMELO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-09', + '365230.00', 'A'), + ('1705', 3, 'ARBONA ABASCAL MANUEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-02-27', '636760.00', 'A'), + ('1706', 3, 'COHEN AMAR MOISES', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196766, '2011-05-20', '88120.00', 'A'), + ('1708', 3, 'FERNANDEZ COBOS ANDRES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2010-11-09', '387220.00', 'A'), + ('1709', 3, 'CANAL VIVES JOAQUIN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 196234, '2011-09-27', '345150.00', 'A'), + ('171', 1, 'LADINO MORENO JAVIER ORLANDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-25', + '89230.00', 'A'), + ('1710', 5, 'GARCIA BERTRAND HECTOR', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-04-07', '564100.00', 'A'), + ('1711', 1, 'CONSTANZA MARÍN ESCOBAR', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127799, '2011-03-24', '785060.00', 'A'), + ('1712', 1, 'NUNEZ BATALLA FAUSTINO JORGE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-26', + '232970.00', 'A'), + ('1713', 3, 'VILORA LAZARO ERICK MARTIN', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-26', + '809690.00', 'A'), + ('1715', 3, 'ELLIOT EDWARD JAMES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-26', '318660.00', 'A'), + ('1716', 3, 'ALCALDE ORTEÑO MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 117002, '2011-07-23', '544650.00', 'A'), + ('1717', 3, 'CIARAVELLA STEFANO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 231989, '2011-06-13', '767260.00', 'A'), + ('1718', 3, 'URRA GONZALEZ PEDRO ANDRES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-05-02', + '202370.00', 'A'), + ('172', 1, 'GUERRERO ERNESTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-15', '548610.00', 'A'), + ('1720', 3, 'JIMENEZ RODRIGUEZ ANNET', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-05-25', '943140.00', 'A'), + ('1721', 3, 'LESCAY CASTELLANOS ARNALDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', + '585570.00', 'A'), + ('1722', 3, 'OCHOA AGUILAR ELIADES', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-25', '98410.00', 'A'), + ('1723', 3, 'RODRIGUEZ NUÑES JOSE ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-25', + '735340.00', 'A'), + ('1724', 3, 'OCHOA BUSTAMANTE ELIADES', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-25', '381480.00', 'A'), + ('1725', 3, 'MARTINEZ NIEVES JOSE ANGEL', '191821112', + 'CRA 25 CALLE 100', '919@yahoo.es', '2011-02-03', 127591, '2011-05-25', + '701360.00', 'A'), + ('1727', 3, 'DRAGONI ALAIN ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-25', '707850.00', 'A'), + ('1728', 3, 'FERNANDEZ LOPEZ MARCOS ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-25', + '452090.00', 'A'), + ('1729', 3, 'MATURELL ROMERO JORGE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-25', '136880.00', 'A'), + ('173', 1, 'RUIZ CEBALLOS ALEXANDER', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-04', '475380.00', 'A'), + ('1730', 3, 'LARA CASTELLANO LENNIS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-25', '328150.00', 'A'), + ('1731', 3, 'GRAHAM CRISTOPHER DRAKE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 203079, '2011-06-27', '230120.00', 'A'), + ('1732', 3, 'TORRE LUCA', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 188640, '2011-05-11', '166120.00', 'A'), + ('1733', 3, 'OCHOA HIDALGO EGLIS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-05-25', '140250.00', 'A'), + ('1734', 3, 'LOURERIO DELACROIX FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116511, '2011-09-28', + '202900.00', 'A'), + ('1736', 3, 'LEVIN FIORELLI ANDRES', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 116366, '2011-08-07', '360110.00', 'A'), + ('1739', 3, 'BERRY R ALBERT', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 216125, '2011-08-16', '22170.00', 'A'), + ('174', 1, 'NIETO PARRA SEBASTIAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-05-11', '731040.00', 'A'), + ('1740', 3, 'MARSHALL ROBERT SHEPARD', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 150159, '2011-03-09', '62860.00', 'A'), + ('1741', 3, 'HENANDEZ ROY CHRISTOPHER JOHN PATRICK', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 179614, '2011-09-26', + '247780.00', 'A'), + ('1742', 3, 'LANDRY GUILLAUME', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 232263, '2011-04-27', '50330.00', 'A'), + ('1743', 3, 'VUCETIC ZELJKO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 232263, '2011-07-25', '508320.00', 'A'), + ('1744', 3, 'DE JUANA CELASCO MARIA DEL CARMEN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-04-16', + '390620.00', 'A'), + ('1745', 3, 'LABONTE RONALD', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 269033, '2011-09-28', '428120.00', 'A'), + ('1746', 3, 'NEWMAN PHILIP MARK', '191821112', 'CRA 25 CALLE 100', + '557@gmail.com', '2011-02-03', 231373, '2011-07-25', '968750.00', 'A'), + ('1747', 3, 'GRENIER MARIE PIERRE ', '191821112', 'CRA 25 CALLE 100', + '409@facebook.com', '2011-02-03', 244158, '2011-07-03', '559370.00', + 'A'), + ('1749', 3, 'SHINDER GARY', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 244158, '2011-07-25', '775000.00', 'A'), + ('175', 3, 'GALLEGOS BASTIDAS CARLOS EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133211, '2011-08-10', + '229090.00', 'A'), + ('1750', 3, 'LOPEZ DE GOICOCHEA ZABALA FRANCISCO JAVIER', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-13', + '203120.00', 'A'), + ('1751', 3, 'CORRAL BELLON MANUEL', '191821112', 'CRA 25 CALLE 100', + '538@yahoo.com', '2011-02-03', 177443, '2011-05-02', '690610.00', 'A'), + ('1752', 3, 'DE SOLA SOLVAS JUAN ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-10-02', + '843700.00', 'A'), + ('1753', 3, 'GARCIA ALCALA DIAZ REGAÑON EVA MARIA', '191821112', + 'CRA 25 CALLE 100', '398@yahoo.com', '2011-02-03', 118777, '2010-03-15', + '146680.00', 'A'), + ('1754', 3, 'BIELA VILIAM', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 132958, '2011-08-16', '202290.00', 'A'), + ('1755', 3, 'GUIOT CANO JUAN PATRICK', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 232263, '2011-05-23', '571390.00', 'A'), + ('1756', 3, 'JIMENEZ DIAZ LUIS MIGUEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-03-27', '250100.00', 'A'), + ('1757', 3, 'FOX ELEANORE MAE', '191821112', 'CRA 25 CALLE 100', + '117@yahoo.com', '2011-02-03', 190393, '2011-05-04', '536340.00', 'A'), + ('1758', 3, 'TANG VAN SON', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132958, '2011-05-07', '931400.00', 'A'), + ('1759', 3, 'SUTTON PETER RONALD', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 281673, '2011-06-01', '47960.00', 'A'), + ('176', 1, 'GOMEZ IVAN', '191821112', 'CRA 25 CALLE 100', + '438@yahoo.com.mx', '2011-02-03', 127591, '2008-04-09', '952310.00', + 'A'), + ('1762', 3, 'STOODY MATTHEW FRANCIS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-07-21', '84320.00', 'A'), + ('1763', 3, 'SEIX MASO ARNAU', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 150699, '2011-05-24', '168880.00', 'A'), + ('1764', 3, 'FERNANDEZ REDEL RAQUEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-09-14', '591440.00', 'A'), + ('1765', 3, 'PORCAR DESCALS VICENNTE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 176745, '2011-04-24', '450580.00', 'A'), + ('1766', 3, 'PEREZ DE VILLEGAS TRILLO FIGUEROA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-05-17', + '478560.00', 'A'), + ('1767', 3, 'CELDRAN DEGANO ANGEL', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 196234, '2011-05-17', '41040.00', 'A'), + ('1768', 3, 'TERRAGO MARI FERRAN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 188640, '2011-09-30', '769550.00', 'A'), + ('1769', 3, 'SZUCHOVSZKY GERGELY', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 250256, '2011-05-23', '724630.00', 'A'), + ('177', 1, 'SEBASTIAN TORO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127443, '2011-07-14', '74270.00', 'A'), + ('1771', 3, 'TORIBIO JOSE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 226612, '2011-09-04', '398570.00', 'A'), + ('1772', 3, 'JOSE LUIS BAQUERA PEIRONCELLY', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2010-10-19', + '49360.00', 'A'), + ('1773', 3, 'MADARIAGA VILLANUEVA MIGUEL', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-04-12', + '51090.00', 'A'), + ('1774', 3, 'VILLENA BORREGO ANTONIO', '191821112', 'CRA 25 CALLE 100', + '830@terra.com.co', '2011-02-03', 188640, '2011-07-19', '107400.00', + 'A'), + ('1776', 3, 'VILAR VILLALBA JOSE LUIS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 180124, '2011-09-20', '596330.00', 'A'), + ('1777', 3, 'CAGIGAL ORTIZ MACARENA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 214283, '2011-09-14', '830530.00', 'A'), + ('1778', 3, 'KORBA ATTILA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 250256, '2011-09-27', '363650.00', 'A'), + ('1779', 3, 'KORBA-ELIAS BARBARA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 250256, '2011-09-27', '326670.00', 'A'), + ('178', 1, 'AMSILI COHEN HANAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2009-08-29', '514450.00', 'A'), + ('1780', 3, 'PINDADO GOMEZ JESUS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 189053, '2011-04-26', '542400.00', 'A'), + ('1781', 3, 'IBARRONDO GOMEZ GRACIA ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-09-21', + '731990.00', 'A'), + ('1782', 3, 'MUNGUIRA GONZALEZ JUAN JULIAN', '191821112', + 'CRA 25 CALLE 100', '54@hotmail.es', '2011-02-03', 188640, '2011-09-06', + '32730.00', 'A'), + ('1784', 3, 'LANDMAN PIETER MARINUS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 294861, '2011-09-22', '740260.00', 'A'), + ('1789', 3, 'SUAREZ AINARA ', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-05-17', '503470.00', 'A'), + ('179', 1, 'CARO JUNCO GUIOVANNY', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-03', '349420.00', 'A'), + ('1790', 3, 'MARTINEZ CHACON JOSE JOAQUIN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-20', + '592220.00', 'A'), + ('1792', 3, 'MENDEZ DEL RION LUCIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 120639, '2011-06-16', '476910.00', 'A'), + ('1793', 3, 'VERHULST LAMBERTUS CORNELIA FRANCISCUS ALPHONSUS', + '191821112', 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 295420, + '2011-07-04', '32410.00', 'A'), + ('1794', 3, 'YAÑEZ YAGUE JESUS', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-07-10', '731290.00', 'A'), + ('1796', 3, 'GOMEZ ZORRILLA AMATE JOSE MARIOA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-07-12', + '602380.00', 'A'), + ('1797', 3, 'LAIZ MORENO ENEKO', '191821112', 'CRA 25 CALLE 100', + '219@gmail.com', '2011-02-03', 127591, '2011-08-05', '334150.00', 'A'), + ('1798', 3, 'MORODO RUIZ RUBEN DAVID', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-09-14', '863620.00', 'A'), + ('18', 1, 'GARZON VARGAS GUILLERMO FEDERICO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-29', + '879110.00', 'A'), + ('1800', 3, 'ALFARO FAUS MANUEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196234, '2011-09-14', '987410.00', 'A'), + ('1801', 3, 'MORRALLA VALLVERDU ENRIC', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 194601, '2011-07-18', '990070.00', 'A'), + ('1802', 3, 'BALBASTRE TEJEDOR JUAN VICENTE', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 182860, '2011-08-24', + '988120.00', 'A'), + ('1803', 3, 'MINGO REIZ FRANCISCO JAVIER', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2010-03-24', + '970400.00', 'A'), + ('1804', 3, 'IRURETA FERNANDEZ JOSE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 214283, '2011-09-10', '887630.00', 'A'), + ('1807', 3, 'NEBRO MELLADO JOSE JUAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 168996, '2011-08-15', '278540.00', 'A'), + ('1808', 3, 'ALBERQUILLA OJEDA JOSE DANIEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-09-27', + '477070.00', 'A'), + ('1809', 3, 'BUENDIA NORTE MARIA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 131401, '2011-07-08', '549720.00', 'A'), + ('181', 1, 'CASTELLANOS FLORES RODRIGO ALFONSO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-18', + '970470.00', 'A'), + ('1811', 3, 'HILBERT ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-08', '937830.00', 'A'), + ('1812', 3, 'GONZALES PINTO COTERILLO ADOLFO LORENZO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 214283, '2011-09-10', + '736970.00', 'A'), + ('1813', 3, 'ARQUES ALVAREZ JOSE RICARDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-04-04', + '871360.00', 'A'), + ('1817', 3, 'CLAUSELL LOW ROBERTO EMILIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2011-09-28', + '348770.00', 'A'), + ('1818', 3, 'BELICHON MARTINEZ JESUS ALVARO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-04-12', + '327010.00', 'A'), + ('182', 1, 'GUZMAN NIETO JOSE MARIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-20', '241130.00', 'A'), + ('1821', 3, 'LINATI DE PUIG JORGE', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 196234, '2011-05-18', '47210.00', 'A'), + ('1823', 3, 'SINBARRERA ROMA ', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 196234, '2011-09-08', '598380.00', 'A'), + ('1826', 2, 'JUANES GARATE BRUNO ', '191821112', 'CRA 25 CALLE 100', + '301@gmail.com', '2011-02-03', 118777, '2011-08-21', '877650.00', 'A'), + ('1827', 3, 'BOLOS GIMENO ROGELIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 200247, '2010-11-28', '555470.00', 'A'), + ('1828', 3, 'ZABALA ASTIGARRAGA JOSE MARIA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-09-20', + '144410.00', 'A'), + ('1831', 3, 'MAPELLI CAFFARENA BORJA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 172381, '2011-09-04', '58200.00', 'A'), + ('1833', 3, 'LARMONIE LESLIE MARTIN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-30', '604840.00', 'A'), + ('1834', 3, 'WILLEMS ROBERT-JAN MICHAEL', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 288531, '2011-09-05', + '756530.00', 'A'), + ('1835', 3, 'ANJEMA LAURENS JAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2011-08-29', '968140.00', 'A'), + ('1836', 3, 'VERHULST HENRICUS LAMBERTUS MARIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 295420, '2011-04-03', + '571100.00', 'A'), + ('1837', 3, 'PIERROT JOZEF MARIE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 288733, '2011-05-18', '951100.00', 'A'), + ('1838', 3, 'EIKELBOOM HIDDE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-02', '42210.00', 'A'), + ('1839', 3, 'TAMBINI GOMEZ DE MUNG', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 180063, '2011-04-24', '357740.00', 'A'), + ('1840', 3, 'MAGAÑA PEREZ GERARDO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-09-28', + '662060.00', 'A'), + ('1841', 3, 'COURTOISIE BEYHAUT RAFAEL JUAN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116366, '2011-09-05', + '237070.00', 'A'), + ('1842', 3, 'ROJAS BENJAMIN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-13', '199170.00', 'A'), + ('1843', 3, 'GARCIA VICENTE EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 150699, '2011-08-10', '284650.00', 'A'), + ('1844', 3, 'CESTTI LOPEZ RAFAEL GUSTAVO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 144215, '2011-09-27', + '825750.00', 'A'), + ('1845', 3, 'URTECHO LOPEZ ARMANDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 139272, '2011-09-28', '274800.00', 'A'), + ('1846', 3, 'SEGURA ESPINOZA ARMANDO SEBASTIAN', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 135360, '2011-09-28', + '896730.00', 'A'), + ('1847', 3, 'GONZALEZ VEGA LUIS PASTOR', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 135360, '2011-05-18', '659240.00', 'A'), + ('185', 1, 'AYALA CARDENAS NELSON MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', + '855960.00', 'A'), + ('1850', 3, 'ROTZINGER ROA KLAUS ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 116366, '2011-09-12', '444250.00', 'A'), + ('1851', 3, 'FRANCO DE LEON SEBASTIAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 116366, '2011-04-26', '63840.00', 'A'), + ('1852', 3, 'RIVAS GAGNONI LUIS ARMANDO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 135360, '2011-05-18', + '986440.00', 'A'), + ('1853', 3, 'BARRETO VELASQUEZ JOEL FERNANDO', '191821112', + 'CRA 25 CALLE 100', '104@hotmail.es', '2011-02-03', 116511, + '2011-04-27', '740670.00', 'A'), + ('1854', 3, 'SEVILLA AMAYA ORLANDO', '191821112', 'CRA 25 CALLE 100', + '264@yahoo.com', '2011-02-03', 136995, '2011-05-18', '744020.00', 'A'), + ('1855', 3, 'VALFRE BRALICH ELEONORA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 116366, '2011-06-06', '498080.00', 'A'), + ('1857', 3, 'URDANETA DIAMANTES DIEGO ANDRES', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-09-23', + '797590.00', 'A'), + ('1858', 3, 'RAMIREZ ALVARADO ROBERT JESUS', '191821112', + 'CRA 25 CALLE 100', '290@yahoo.com.mx', '2011-02-03', 127591, + '2011-09-18', '212850.00', 'A'), + ('1859', 3, 'GUTTNER DENNIS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-06-25', '671470.00', 'A'), + ('186', 1, 'CARRASCO SUESCUN ANDRES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-15', '36620.00', 'A'), + ('1861', 3, 'HEGEMANN JOACHIM', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-25', '579710.00', 'A'), + ('1862', 3, 'MALCHER INGO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 292243, '2011-06-23', '742060.00', 'A'), + ('1864', 3, 'HOFFMEISTER MALTE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128206, '2011-09-06', '629770.00', 'A'), + ('1865', 3, 'BOHME ALEXANDRA LUCE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-14', '235260.00', 'A'), + ('1866', 3, 'HAMMAN FRANK THOMAS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-13', '286980.00', 'A'), + ('1867', 3, 'GOPPERT MARKUS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-09-05', '729150.00', 'A'), + ('1868', 3, 'BISCARO CAROLINA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-16', '784790.00', 'A'), + ('1869', 3, 'MASCHAT SEBASTIAN STEPHAN ANDREAS', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-02-03', + '736520.00', 'A'), + ('1870', 3, 'WALTHER DANIEL CLAUS PETER', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-24', + '328220.00', 'A'), + ('1871', 3, 'NENTWIG DANIEL', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 289697, '2011-02-03', '431550.00', 'A'), + ('1872', 3, 'KARUTZ ALEX', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127662, '2011-03-17', '173090.00', 'A'), + ('1875', 3, 'KAY KUNNE', '191821112', 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 289697, '2011-03-18', '961400.00', 'A'), + ('1876', 2, 'SCHLUMPF IVANA PATRICIA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 245206, '2011-03-28', '802690.00', 'A'), + ('1877', 3, 'RODRIGUEZ BUSTILLO CONSUELO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 139067, '2011-03-21', + '129280.00', 'A'), + ('1878', 1, 'REHWALDT RICHARD ULRICH', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 289697, '2009-10-25', '238320.00', 'A'), + ('1880', 3, 'FONSECA BEHRENS MANUELA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-18', '303810.00', 'A'), + ('1881', 3, 'VOGEL MIRKO', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-06-09', '107790.00', 'A'), + ('1882', 3, 'WU WEI', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 289697, '2011-03-04', '627520.00', 'A'), + ('1884', 3, 'KADOLSKY ANKE SIGRID', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 289697, '2010-10-07', '188560.00', 'A'), + ('1885', 3, 'PFLUCKER PLENGE CARLOS HERNAN', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 239124, '2011-08-15', + '500140.00', 'A'), + ('1886', 3, 'PEÑA LAGOS MELENIA PATRICIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', + '935020.00', 'A'), + ('1887', 3, 'CALVANO MARCO ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118942, '2011-05-02', '174690.00', 'A'), + ('1888', 3, 'KUHLEN LOTHAR WILHELM', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 289232, '2011-08-30', '68390.00', 'A'), + ('1889', 3, 'QUIJANO RICO SOFIA VICTORIA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 221939, '2011-06-13', + '817890.00', 'A'), + ('189', 1, 'GOMEZ TRUJILLO SERGIO ANDRES', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-17', + '985980.00', 'A'), + ('1890', 3, 'SCHILBERZ KARIN', '191821112', 'CRA 25 CALLE 100', + '405@facebook.com', '2011-02-03', 287570, '2011-06-23', '884260.00', + 'A'), + ('1891', 3, 'SCHILBERZ SOPHIE CAHRLOTTE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 287570, '2011-06-23', + '967640.00', 'A'), + ('1892', 3, 'MOLINA MOLINA MILAGRO DE SUYAPA', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 139844, '2011-07-26', + '185410.00', 'A'), + ('1893', 3, 'BARRIENTOS ESCALANTE RAFAEL ALVARO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 139067, '2011-05-18', + '24110.00', 'A'), + ('1895', 3, 'ENGELS FRANZBERNARD', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 292243, '2011-07-01', '749430.00', 'A'), + ('1896', 3, 'FRIEDHOFF SVEN WILHEM', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 289697, '2010-10-31', '54090.00', 'A'), + ('1897', 3, 'BARTELS CHRISTIAN JOHAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 133535, '2011-07-25', '22160.00', 'A'), + ('1898', 3, 'NILS REMMEL', '191821112', 'CRA 25 CALLE 100', + '214@gmail.com', '2011-02-03', 256231, '2011-08-05', '948530.00', 'A'), + ('1899', 3, 'DR SCHEIBE MATTHIAS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 252431, '2011-09-26', '676150.00', 'A'), + ('19', 1, 'RIAÑO ROMERO ALBERTO ELIAS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2009-12-14', '946630.00', 'A'), + ('190', 1, 'LLOREDA ORTIZ FELIPE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-12-20', '30860.00', 'A'), + ('1900', 3, 'CARRASCO CATERIANO PEDRO', '191821112', 'CRA 25 CALLE 100', + '255@hotmail.com', '2011-02-03', 286578, '2011-05-02', '535180.00', + 'A'), + ('1901', 3, 'ROSENBER DIRK PETER', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-29', '647450.00', 'A'), + ('1902', 3, 'LAUBACH JOHANNES', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 289697, '2011-05-01', '631720.00', 'A'), + ('1904', 3, 'GRUND STEFAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 256231, '2011-08-05', '185990.00', 'A'), + ('1905', 3, 'GRUND BEATE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 256231, '2011-08-05', '281280.00', 'A'), + ('1906', 3, 'CORZO PAULA MIRIANA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 180063, '2011-08-02', '848400.00', 'A'), + ('1907', 3, 'OESTERHAUS CORNELIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 256231, '2011-03-16', '398170.00', 'A'), + ('1908', 1, 'JUAN SEBASTIAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127300, '2011-05-12', '445660.00', 'A'), + ('1909', 3, 'VAN ZIJL CHRISTIAN ANDREAS', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 286785, '2011-09-24', + '33800.00', 'A'), + ('191', 1, 'CASTAÑEDA CABALLERO JUAN MANUEL', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-28', + '196370.00', 'A'), + ('1910', 3, 'LORZA RUIZ MYRIAM ESPERANZA', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-29', + '831990.00', 'A'), + ('192', 1, 'ZEA EDUARDO', '191821112', 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-09-09', '889270.00', 'A'), + ('193', 1, 'VELEZ VICTOR MANUEL', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2010-10-22', '857250.00', 'A'), + ('194', 1, 'ARCINIEGAS GOMEZ ISMAEL', '191821112', 'CRA 25 CALLE 100', + '937@hotmail.com', '2011-02-03', 127591, '2011-05-18', '618450.00', + 'A'), + ('195', 1, 'LINAREZ PEDRO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-12', '520470.00', 'A'), + ('1952', 3, 'BERND ERNST HEINZ SCHUNEMANN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 255673, '2011-09-04', + '796820.00', 'A'), + ('1953', 3, 'BUCHNER RICHARD ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-17', '808430.00', 'A'), + ('1954', 3, 'CHO YONG BEOM', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 173192, '2011-02-07', '651670.00', 'A'), + ('1955', 3, 'BERNECKER WALTER LUDWIG', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 256231, '2011-04-03', '833080.00', 'A'), + ('1956', 3, 'SCHIERENBECK THOMAS', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 256231, '2011-05-03', '210380.00', 'A'), + ('1957', 3, 'STEGMANN WOLF DIETER', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-08-27', '552650.00', 'A'), + ('1958', 3, 'LEBAGE GONZALEZ VALENTINA CECILIA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 131272, '2011-07-29', + '132130.00', 'A'), + ('1959', 3, 'CABRERA MACCHI JOSE ', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 180063, '2011-08-02', '2700.00', 'A'), + ('196', 1, 'OTERO BERNAL ALVARO ERNESTO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-04-29', + '747030.00', 'A'), + ('1960', 3, 'KOO BONKI', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-05-15', '617110.00', 'A'), + ('1961', 3, 'JODJAHN DE CARVALHO BEIRAL FLAVIA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-07-05', + '77460.00', 'A'), + ('1963', 3, 'VIEIRA ROCHA MARQUES ELIANE TEREZINHA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118402, '2011-09-13', + '447430.00', 'A'), + ('1965', 3, 'KELLEN CRISTINA GATTI', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 126180, '2011-07-01', '804020.00', 'A'), + ('1966', 3, 'CHAVEZ MARLON TENORIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-25', '132310.00', 'A'), + ('1967', 3, 'SERGIO COZZI', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 125750, '2011-08-28', '249500.00', 'A'), + ('1968', 3, 'REZENDE LIMA JOSE MARCIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118777, '2011-08-23', '850570.00', 'A'), + ('1969', 3, 'RAMOS PEDRO ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118942, '2011-08-03', '504330.00', 'A'), + ('1972', 3, 'ADAMS THOMAS', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118942, '2011-08-11', '774000.00', 'A'), + ('1973', 3, 'WALESKA NUCINI BOGO ANDREA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-23', + '859690.00', 'A'), + ('1974', 3, 'GERMANO PAULO BUNN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118439, '2011-08-30', '976440.00', 'A'), + ('1975', 3, 'CALDEIRA FILHO RUBENS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118942, '2011-07-18', '303120.00', 'A'), + ('1976', 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 119814, '2011-09-08', + '586290.00', 'A'), + ('1977', 3, 'GAMAS MARIA CRISTINA ALVES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-09-19', + '22070.00', 'A'), + ('1979', 3, 'PORTO WEBER FERREIRA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-07', '691340.00', 'A'), + ('1980', 3, 'FONSECA LAURO PINTO', '191821112', 'CRA 25 CALLE 100', + '104@hotmail.es', '2011-02-03', 127591, '2011-08-16', '402140.00', 'A'), + ('1981', 3, 'DUARTE ELENA CECILIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118777, '2011-06-15', '936710.00', 'A'), + ('1983', 3, 'CECHINEL CRISTIAN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118942, '2011-06-12', '575530.00', 'A'), + ('1984', 3, 'BATISTA PINHERO JOAO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118777, '2011-04-25', '446250.00', 'A'), + ('1987', 1, 'ISRAEL JOSE MAXWELL', '191821112', 'CRA 25 CALLE 100', + '936@gmail.com', '2011-02-03', 125894, '2011-07-04', '408350.00', 'A'), + ('1988', 3, 'BATISTA CARVALHO RODRIGO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118864, '2011-09-19', '488410.00', 'A'), + ('1989', 3, 'RENO DA SILVEIRA EDNEIA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118867, '2011-05-03', '216990.00', 'A'), + ('199', 1, 'BASTO CORREA FERNANDO ANTONIO ', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-21', + '616860.00', 'A'), + ('1990', 3, 'SEIDLER KOHNERT G TEIXEIRA CHRISTINA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 119814, '2011-08-23', + '619730.00', 'A'), + ('1992', 3, 'GUIMARAES COSTA LEONARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2011-04-20', '379090.00', 'A'), + ('1993', 3, 'BOTTA RODRIGO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118777, '2011-09-16', '552510.00', 'A'), + ('1994', 3, 'ARAUJO DA SILVA MARCELO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 125666, '2011-08-03', '625260.00', 'A'), + ('1995', 3, 'DA SILVA FELIPE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118864, '2011-04-14', '468760.00', 'A'), + ('1996', 3, 'MANFIO RODRIGUEZ FERNANDO', '191821112', 'CRA 25 CALLE 100', + '974@yahoo.com', '2011-02-03', 118777, '2011-03-23', '468040.00', 'A'), + ('1997', 3, 'NEIVA MORENO DE SOUZA CRISTIANE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-24', + '933900.00', 'A'), + ('2', 3, 'CHEEVER MICHAEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-04', '560090.00', 'I'), + ('2000', 3, 'ROCHA GUSTAVO ADRIANO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118288, '2011-07-25', '830340.00', 'A'), + ('2001', 3, 'DE ANDRADE CARVALHO VIRGINIA', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-08-11', + '575760.00', 'A'), + ('2002', 3, 'CAVALCANTI PIERECK GUILHERME', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 180063, '2011-08-01', + '387770.00', 'A'), + ('2004', 3, 'HOEGEMANN RAMOS CARLOS FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-04', + '894550.00', 'A'), + ('201', 1, 'LUIS FERNANDO AREVALO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-06-17', '156730.00', 'A'), + ('2010', 3, 'GOMES BUCHALA JORGE FERNANDO ', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-23', + '314800.00', 'A'), + ('2011', 3, 'MARTINS SIMAIKA CATIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118777, '2011-06-01', '155020.00', 'A'), + ('2012', 3, 'MONICA CASECA BUENO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118777, '2011-05-16', '830710.00', 'A'), + ('2013', 3, 'ALBERTAL MARCELO ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118000, '2010-09-10', '688480.00', 'A'), + ('2015', 3, 'GOMES CANTARELLI JAIRO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118761, '2011-01-11', '685940.00', 'A'), + ('2016', 3, 'CADETTI GARBELLINI ENILICE CRISTINA ', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-11', + '578870.00', 'A'), + ('2017', 3, 'SPIELKAMP KLAUS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 150699, '2011-03-28', '836540.00', 'A'), + ('2019', 3, 'GARES HENRI PHILIPPE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 135190, '2011-04-05', '720730.00', 'A'), + ('202', 1, 'LUCIO CHAUSTRE ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-19', '179240.00', 'A'), + ('2023', 3, 'GRECO DE RESENDELUIZ ALFREDO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 119814, '2011-04-25', + '647940.00', 'A'), + ('2024', 3, 'CORTINA EVANDRO JOAO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118922, '2011-05-12', '153970.00', 'A'), + ('2026', 3, 'BASQUES MOURA GERALDO CARLOS', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 119814, '2011-09-07', + '668250.00', 'A'), + ('2027', 3, 'DA SILVA VALDECIR', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', '863150.00', 'A'), + ('2028', 3, 'CHI MOW YUNG IVAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-21', '311000.00', 'A'), + ('2029', 3, 'YUNG MYRA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-21', '965570.00', 'A'), + ('2030', 3, 'MARTINS RAMALHO PATRICIA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2011-03-23', '894830.00', 'A'), + ('2031', 3, 'DE LEMOS RIBEIRO GILBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118951, '2011-07-29', '577430.00', 'A'), + ('2032', 3, 'AIROLDI CLAUDIO', '191821112', 'CRA 25 CALLE 100', + '973@terra.com.co', '2011-02-03', 127591, '2011-09-28', '202650.00', + 'A'), + ('2033', 3, 'ARRUDA MENDES HEILMANN IONE TEREZA', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 120773, '2011-09-07', + '280990.00', 'A'), + ('2034', 3, 'TAVARES DE CARVALHO EDUARDO JOSE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118942, '2011-08-03', + '796980.00', 'A'), + ('2036', 3, 'FERNANDES ALARCON RAFAEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118777, '2011-08-28', '318730.00', 'A'), + ('2037', 3, 'SUCHODOLKI SERGIO GUSMAO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 190393, '2011-07-13', '167870.00', 'A'), + ('2039', 3, 'ESTEVES MARCAL MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-02-24', '912100.00', 'A'), + ('2040', 3, 'CORSI LUIZ ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2011-03-25', '911080.00', 'A'), + ('2041', 3, 'LOPEZ MONICA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118795, '2011-05-03', '819090.00', 'A'), + ('2042', 3, 'QUINTANILHA LUIS CARLOS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-16', '362230.00', 'A'), + ('2043', 3, 'DE CARLI BRUNO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118777, '2011-05-03', '353890.00', 'A'), + ('2045', 3, 'MARINO FRANCA MARILIA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118777, '2011-07-04', '352060.00', 'A'), + ('2048', 3, 'VOIGT ALPHONSE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118439, '2010-11-22', '384150.00', 'A'), + ('2049', 3, 'ALENCAR ARIMA TATIANA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118777, '2011-05-23', '408590.00', 'A'), + ('2050', 3, 'LINIS DE ALMEIDA NEILSON', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 125666, '2011-08-03', '890480.00', 'A'), + ('2051', 3, 'PINHEIRO DE CASTRO BENETI', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118942, '2011-08-09', '226640.00', 'A'), + ('2052', 3, 'ALVES DO LAGO HELMANN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118942, '2011-08-01', '461770.00', 'A'), + ('2053', 3, 'OLIVO MARCO ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-03-22', '628900.00', 'A'), + ('2054', 3, 'WILLIAM DOMINGUES SERGIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118085, '2011-08-23', '759220.00', 'A'), + ('2055', 3, 'DE SOUZA MENEZES KLEBER', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118777, '2011-04-25', '909400.00', 'A'), + ('2056', 3, 'CABRAL NEIDE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-16', '269340.00', 'A'), + ('2057', 3, 'RODRIGUES RENATO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118777, '2011-06-15', '618500.00', 'A'), + ('2058', 3, 'SPADALE PEDRO JORGE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118942, '2011-08-03', '284490.00', 'A'), + ('2059', 3, 'MARTINS DE ALMEIDA GUSTAVO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-09-28', + '566920.00', 'A'), + ('206', 1, 'TORRES HEBER MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2011-01-29', '643210.00', 'A'), + ('2060', 3, 'IKUNO CELINA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118777, '2011-06-08', '981170.00', 'A'), + ('2061', 3, 'DAL BELLO FABIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 129499, '2011-08-20', '205050.00', 'A'), + ('2062', 3, 'BENATES ADRIANA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-23', '81770.00', 'A'), + ('2063', 3, 'CARDOSO ALEXANDRE ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', '793690.00', 'A'), + ('2064', 3, 'ZANIOLO DE SOUZA CARLOS HENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-09-19', + '723130.00', 'A'), + ('2065', 3, 'DA SILVA LUIZ SIDNEI', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118777, '2011-03-30', '234590.00', 'A'), + ('2066', 3, 'RUFATO DE SOUZA LUIZ FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-08-29', + '3560.00', 'A'), + ('2067', 3, 'DE MEDEIROS LUCIANA', '191821112', 'CRA 25 CALLE 100', + '994@yahoo.com.mx', '2011-02-03', 118777, '2011-09-10', '314020.00', + 'A'), + ('2068', 3, 'WOLFF PIAZERA DANIEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118255, '2011-06-15', '559430.00', 'A'), + ('2069', 3, 'DA SILVA FORTUNA MARINA CLAUDIA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-09-23', + '855100.00', 'A'), + ('2070', 3, 'PEREIRA BORGES LUCILA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-26', '597210.00', 'A'), + ('2072', 3, 'PORROZZI DE ALMEIDA RENATO', '191821112', + 'CRA 25 CALLE 100', '812@hotmail.es', '2011-02-03', 127591, + '2011-06-13', '312120.00', 'A'), + ('2073', 3, 'KALICHSZTEINN RICARDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118777, '2011-03-23', '298330.00', 'A'), + ('2074', 3, 'OCCHIALINI GUIMARAES ANA PAULA', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2011-08-03', + '555310.00', 'A'), + ('2075', 3, 'MAZZUCO FONTES LUIZ ROBERTO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-05-23', + '881570.00', 'A'), + ('2078', 3, 'TRAN DINH VAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', '98560.00', 'A'), + ('2079', 3, 'NGUYEN THI LE YEN', '191821112', 'CRA 25 CALLE 100', + '249@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', '298200.00', + 'A'), + ('208', 1, 'GOMEZ GONZALEZ JORGE MARIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-12', '889010.00', 'A'), + ('2080', 3, 'MILA DE LA ROCA JOHANA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132958, '2011-01-26', '195350.00', 'A'), + ('2081', 3, 'RODRIGUEZ DE FLORES LOURDES MARIA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-16', + '82120.00', 'A'), + ('2082', 3, 'FLORES PEREZ FRANCISCO GUILLERMO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-23', + '824550.00', 'A'), + ('2083', 3, 'FRAGACHAN BETANCOUT FRANCISCO JO SÉ', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-07-04', + '876400.00', 'A'), + ('2084', 3, 'GAFARO MOLINA CARLOS JULIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-22', + '908370.00', 'A'), + ('2085', 3, 'CACERES REYES JORGEANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-08-11', + '912630.00', 'A'), + ('2086', 3, 'ALVAREZ RODRIGUEZ VICTOR ROGELIO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2011-05-23', + '838040.00', 'A'), + ('2087', 3, 'GARCES ALVARADO JHAGEIMA JOSEFINA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-04-29', + '452320.00', 'A'), + ('2089', 3, 'FAVREAU CHOLLET JEAN PIERRE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132554, '2011-05-27', + '380470.00', 'A'), + ('209', 1, 'CRUZ RODRIGEZ CARLOS ANDRES', '191821112', + 'CRA 25 CALLE 100', '316@hotmail.es', '2011-02-03', 127591, + '2011-06-28', '953870.00', 'A'), + ('2090', 3, 'GARAY LLUCH URBI ALAIN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132958, '2011-03-13', '659870.00', 'A'), + ('2091', 3, 'LETICIA LETICIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-07', '157950.00', 'A'), + ('2092', 3, 'VELASQUEZ RODULFO RAMON ARISTIDES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-23', + '810140.00', 'A'), + ('2093', 3, 'PEREZ EDGAR', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-06', '576850.00', 'A'), + ('2094', 3, 'PEREZ MARIELA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-06-07', '453840.00', 'A'), + ('2095', 3, 'PETRUZZI MANGIARANO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132958, '2011-03-27', '538650.00', 'A'), + ('2096', 3, 'LINARES GORI RICARDO RAMON', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-12', + '331730.00', 'A'), + ('2097', 3, 'LAIRET OLIVEROS CAROLINE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-25', '42680.00', 'A'), + ('2099', 3, 'JIMENEZ GARCIA FERNANDO JOSE', '191821112', + 'CRA 25 CALLE 100', '78@hotmail.es', '2011-02-03', 132958, '2011-07-21', + '963110.00', 'A'), + ('21', 1, 'RUBIO ESCOBAR RUBEN DARIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2009-05-21', '639240.00', 'A'), + ('2100', 3, 'ZABALA MILAGROS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-20', '160860.00', 'A'), + ('2101', 3, 'VASQUEZ CRUZ NICOLEDANIELA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-07-31', + '914990.00', 'A'), + ('2102', 3, 'REYES FIGUERA RAMON ALEXANDER', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126674, '2011-04-03', + '92340.00', 'A'), + ('2104', 3, 'RAMIREZ JIMENEZ MARYLIN CAROLINA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2011-06-14', + '306760.00', 'A'), + ('2105', 3, 'TELLES GUILLEN INNA', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 132958, '2011-09-07', '383520.00', 'A'), + ('2106', 3, 'ALVAREZ CARMEN MARINA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-07-20', '997340.00', 'A'), + ('2107', 3, 'MARTINEZ YRIGOYEN NABUCODONOSOR', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-07-21', + '836110.00', 'A'), + ('2108', 5, 'FERNANDEZ RUIZ IGNACIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-01', '188530.00', 'A'), + ('211', 1, 'RIVEROS GARCIA JORGE IVAN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-01', '650050.00', 'A'), + ('2110', 3, 'CACERES REYES JORGE ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-08-08', + '606030.00', 'A'), + ('2111', 3, 'GELFI MARCOS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 199862, '2011-05-17', '727190.00', 'A'), + ('2112', 3, 'CERDA CASTILLO CARMEN GLORIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', + '817870.00', 'A'), + ('2113', 3, 'RANGEL FERNANDEZ LEONARDO JOSE', '191821112', + 'CRA 25 CALLE 100', '856@hotmail.com', '2011-02-03', 133211, + '2011-05-16', '907750.00', 'A'), + ('2114', 3, 'ROTHSCHILD VARGAS MICHAEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132165, '2011-02-05', '85170.00', 'A'), + ('2115', 3, 'RUIZ GRATEROL INGRID JOHANNA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-05-16', + '702600.00', 'A'), + ('2116', 2, 'DEARMAS ALBERTO FERNANDO ', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 150699, '2011-07-19', '257500.00', 'A'), + ('2117', 3, 'BOSCAN ARRIETA ERICK HUMBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-07-12', + '179680.00', 'A'), + ('2118', 3, 'GUILLEN DE TELLES NENCY JOSEFINA', '191821112', + 'CRA 25 CALLE 100', '56@facebook.com', '2011-02-03', 132958, + '2011-09-07', '125900.00', 'A'), + ('212', 1, 'BUSTAMANTE BUSTAMANTE CARLOS ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-26', + '943260.00', 'A'), + ('2120', 2, 'MARK ANTHONY STUART', '191821112', 'CRA 25 CALLE 100', + '661@terra.com.co', '2011-02-03', 127591, '2011-06-26', '74600.00', + 'A'), + ('2122', 3, 'SCOCOZZA GIOVANNA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 190526, '2011-09-23', '284220.00', 'A'), + ('2125', 3, 'CHAVES MOLINA JULIO FELIPE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132165, '2011-09-22', + '295360.00', 'A'), + ('2127', 3, 'BERNARDES DE SOUZA TONIATI VIRGINIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-30', + '565090.00', 'A'), + ('2129', 2, 'BRIAN DAVIS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-03-19', '78460.00', 'A'), + ('213', 1, 'PAREJO CARLOS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-11', '766120.00', 'A'), + ('2131', 3, 'DE OLIVEIRA LOPES REGINALDO LAZARO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-05', + '404910.00', 'A'), + ('2132', 3, 'DE MELO MING AZEVEDO PAULO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-10-05', + '440370.00', 'A'), + ('2137', 3, 'SILVA JORGE ', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-10-05', '230570.00', 'A'), + ('214', 1, 'CADENA RICARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-08', '840.00', 'A'), + ('2142', 3, 'VIEIRA VEIGA PEDRO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-30', '85330.00', 'A'), + ('2144', 3, 'ESCRIBANO LEONARDA DEL VALLE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-03-24', + '941440.00', 'A'), + ('2145', 3, 'RODRIGUEZ MENENDEZ BERNARDO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 148511, '2011-08-02', + '588740.00', 'A'), + ('2146', 3, 'GONZALEZ COURET DANIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 148511, '2011-08-09', '119380.00', 'A'), + ('2147', 3, 'GARCIA SOTO WILLIAM', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 135360, '2011-05-18', '830660.00', 'A'), + ('2148', 3, 'MENESES ORELLANA RICARDO TOMAS', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-06-13', + '795200.00', 'A'), + ('2149', 3, 'GUEVARA JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-06-27', '483990.00', 'A'), + ('215', 1, 'BELTRAN PINZON JUAN CARLO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-08', '705860.00', 'A'), + ('2151', 2, 'LLANES GARRIDO JAVIER ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-30', '719750.00', 'A'), + ('2152', 3, 'CHAVARRIA CHAVES RAFAEL ADRIAN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132165, '2011-09-20', + '495720.00', 'A'), + ('2153', 2, 'MILBERT ANDREASPETER', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-10', '319370.00', 'A'), + ('2154', 2, 'GOMEZ SILVA LOZANO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127300, '2011-05-30', '109670.00', 'A'), + ('2156', 3, 'WINTON ROBERT DOUGLAS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 115551, '2011-08-08', '622290.00', 'A'), + ('2157', 2, 'ROMERO PIÑA MANUEL GUSTAVO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-05', + '340650.00', 'A'), + ('2158', 3, 'KARWALSKI MATTHEW REECE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 117229, '2011-08-29', '836380.00', 'A'), + ('2159', 2, 'KIM JUNG SIK ', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-08', '159950.00', 'A'), + ('216', 1, 'MARTINEZ VALBUENA JOSE ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', + '526750.00', 'A'), + ('2160', 3, 'AGAR ROBERT ALEXANDER', '191821112', 'CRA 25 CALLE 100', + '81@hotmail.es', '2011-02-03', 116862, '2011-06-11', '290620.00', 'A'), + ('2161', 3, 'IGLESIAS EDGAR ALEXIS', '191821112', 'CRA 25 CALLE 100', + '645@facebook.com', '2011-02-03', 131272, '2011-04-04', '973240.00', + 'A'), + ('2163', 2, 'NOAIN MORENO CECILIA KARIM ', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-22', + '51950.00', 'A'), + ('2164', 2, 'FIGUEROA HEBEL ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-04-26', '276760.00', 'A'), + ('2166', 5, 'FRANDBERG DAN RICHARD VERNER', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 134022, '2011-04-06', + '309480.00', 'A'), + ('2168', 2, 'CONTRERAS LILLO EDUARDO ANDRES', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-27', + '389320.00', 'A'), + ('2169', 2, 'BLANCO VALLE RICARDO ', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-07-13', '355950.00', 'A'), + ('2171', 2, 'BELTRAN ZAVALA JIMI ALFONSO MIGUEL', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126674, '2011-08-22', + '991000.00', 'A'), + ('2172', 2, 'RAMIRO OREGUI JOSE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 133535, '2011-04-27', '119700.00', 'A'), + ('2175', 2, 'FENG PUYO', '191821112', 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 302172, '2011-10-07', '965660.00', 'A'), + ('2176', 3, 'CLERICI GUIDO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 116366, '2011-08-30', '522970.00', 'A'), + ('2177', 1, 'SEIJAS GUNTER LUIS MANUEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-02', '717890.00', 'A'), + ('2178', 2, 'SHOSHANI MOSHE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-13', '20520.00', 'A'), + ('218', 3, 'HUCHICHALEO ARSENDIGA FRANCISCA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-05', + '690.00', 'A'), + ('2181', 2, 'DOMINGO BARTOLOME LUIS FERNANDO', '191821112', + 'CRA 25 CALLE 100', '173@terra.com.co', '2011-02-03', 127591, + '2011-04-18', '569030.00', 'A'), + ('2182', 3, 'GONZALEZ RIJO JOSE ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-10-02', + '795610.00', 'A'), + ('2183', 2, 'ANDROVICH MORENO LIZETH LILIAN', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127300, '2011-10-10', + '270970.00', 'A'), + ('2184', 2, 'ARREAZA LUGO JESUS ALFREDO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', + '968030.00', 'A'), + ('2185', 2, 'NAVEDA CANELON KATHERINE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 132775, '2011-09-14', '27250.00', 'A'), + ('2189', 2, 'LUGO BEHRENS DENISE SOFIA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-08', '253980.00', 'A'), + ('2190', 2, 'ERICA ROSE MOLDENHAUVER', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-25', '175480.00', 'A'), + ('2192', 2, 'SOLORZANO GARCIA ANDREINA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-07-25', '50790.00', 'A'), + ('2193', 3, 'DE LA COSTE MARIA CAROLINA', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-26', + '907640.00', 'A'), + ('2194', 2, 'MARTINEZ DIAZ JUAN JOSE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-08', '385810.00', 'A'), + ('2195', 2, 'GALARRAGA ECHEVERRIA DAYEN ALI', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-13', + '206150.00', 'A'), + ('2196', 2, 'GUTIERREZ RAMIREZ HECTOR JOSÉ', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133211, '2011-06-07', + '873330.00', 'A'), + ('2197', 2, 'LOPEZ GONZALEZ SILVIA', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127662, '2011-09-01', '748170.00', 'A'), + ('2198', 2, 'SEGARES LUTZ JOSE IGNACIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-07', '120880.00', 'A'), + ('2199', 2, 'NADER MARTIN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127538, '2011-08-12', '359880.00', 'A'), + ('22', 1, 'CARDOZO AMAYA JORGE HUMBERTO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-25', + '908720.00', 'A'), + ('2200', 3, 'NATERA BERMUDEZ OSWALDO JOSE', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-18', + '436740.00', 'A'), + ('2201', 2, 'COSTA RICARDO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 150699, '2011-09-01', '104090.00', 'A'), + ('2202', 5, 'GRUNDY VALENZUELA ALAN PATRICK', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-08', + '210230.00', 'A'), + ('2203', 2, 'MONTENEGRO DANIEL ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-05-26', '738890.00', 'A'), + ('2204', 2, 'TAMAI BUNGO', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-24', '63730.00', 'A'), + ('2205', 5, 'VINHAS FORTUNA EDSON', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 133535, '2011-09-23', '102010.00', 'A'), + ('2206', 2, 'RUIZ ERBS MARIO ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-07-19', '318860.00', 'A'), + ('2207', 2, 'VENTURA TINEO MARCEL ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', + '288240.00', 'A'), + ('2210', 2, 'RAMIREZ GUZMAN RICARDO JAIME', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-28', + '338740.00', 'A'), + ('2211', 2, 'STERNBERG GABRIEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 132958, '2011-09-04', '18070.00', 'A'), + ('2212', 2, 'MARTELLO ALEJOS ROGER ADOLFO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127443, '2011-06-20', + '74120.00', 'A'), + ('2213', 2, 'CASTANEDA RAFAEL ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-25', '316410.00', 'A'), + ('2214', 2, 'LIMON MARTINEZ WILBERT DE JESUS', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128904, '2011-09-19', + '359690.00', 'A'), + ('2215', 2, 'PEREZ HERNANDEZ MONICA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 133211, '2011-05-23', '849240.00', 'A'), + ('2216', 2, 'AWAD LOBATO RICARDO SEBASTIAN', '191821112', + 'CRA 25 CALLE 100', '853@hotmail.com', '2011-02-03', 127591, + '2011-04-12', '167100.00', 'A'), + ('2217', 2, 'CEPEDA VANEGAS ENDER ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-08-22', + '287770.00', 'A'), + ('2218', 2, 'PEREZ CHIQUIN HECTOR', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 132572, '2011-04-13', '937580.00', 'A'), + ('2220', 5, 'FRANCO DELGADILLO RONALD FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132775, '2011-09-16', + '310190.00', 'A'), + ('2222', 2, 'ALCAIDE ALONSO JUAN MIGUEL', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-02', + '455360.00', 'A'), + ('2223', 3, 'BROWNING BENJAMIN MARK', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-06-09', '45230.00', 'A'), + ('2225', 3, 'HARWOO BENJAMIN JOEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-09', '164620.00', 'A'), + ('2226', 3, 'HOEY TIMOTHY ROSS', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-06-09', '242910.00', 'A'), + ('2227', 3, 'FERGUSON GARRY', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-28', '720700.00', 'A'), + ('2228', 3, ' NORMAN NEVILLE ROBERT', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 288493, '2011-06-29', '874750.00', 'A'), + ('2229', 3, 'KUK HYUN CHAN', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-03-22', '211660.00', 'A'), + ('223', 1, 'PINZON PLAZA MARCOS VINICIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', + '856300.00', 'A'), + ('2230', 3, 'SLIPAK NATALIA ANDREA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-07-27', '434070.00', 'A'), + ('2231', 3, 'BONELLI MASSIMO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 170601, '2011-07-11', '535340.00', 'A'), + ('2233', 3, 'VUYLSTEKE ALEXANDER ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 284647, '2011-09-11', '266530.00', 'A'), + ('2234', 3, 'DRESSE ALAIN', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 284272, '2011-04-19', '209100.00', 'A'), + ('2235', 3, 'PAIRON JEAN LOUIS MARIE RAIMOND', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 284272, '2011-03-03', + '245940.00', 'A'), + ('2236', 3, 'DEVIANE ACHIM', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 284272, '2010-11-14', '602370.00', 'A'), + ('2239', 3, 'DE CANNIERE LOUIS GEORFES HELE MARIE-JOZEF', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 285511, '2011-09-11', + '993540.00', 'A'), + ('2240', 1, 'ERGO ROBERT', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-28', '278270.00', 'A'), + ('2241', 3, 'MYRTES RODRIGUEZ MORGANA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2011-09-18', '410740.00', 'A'), + ('2242', 3, 'BRECHBUEHL HANSRUDOLF', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 249059, '2011-07-27', '218900.00', 'A'), + ('2243', 3, 'IVANA SCHLUMPF', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 245206, '2011-04-08', '862270.00', 'A'), + ('2244', 3, 'JESSICA JACCART', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 189512, '2011-08-28', '654640.00', 'A'), + ('2246', 3, 'PAUSELLI MARIANO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 210050, '2011-09-26', '468090.00', 'A'), + ('2247', 3, 'VOLONTEIRO RICCARDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118777, '2011-04-13', '281230.00', 'A'), + ('2248', 3, 'HOFFMANN ALVIR ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 120773, '2011-08-23', '1900.00', 'A'), + ('2249', 3, 'MANTOVANI DANIEL FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118942, '2011-08-09', '165820.00', 'A'), + ('225', 1, 'DUARTE RUEDA JAVIER ALEXANDER', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-29', + '293110.00', 'A'), + ('2250', 3, 'LIMA DA COSTA BRENO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118777, '2011-03-23', '823370.00', 'A'), + ('2251', 3, 'TAMBORIN MACIEL MAGALI', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-23', '619420.00', 'A'), + ('2252', 3, 'BELLO DE MUORA BIANCA', '191821112', 'CRA 25 CALLE 100', + '969@gmail.com', '2011-02-03', 118942, '2011-08-03', '626970.00', 'A'), + ('2253', 3, 'VINHAS FORTUNA PIETRO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 133535, '2011-09-23', '276600.00', 'A'), + ('2255', 3, 'BLUMENTHAL JAIRO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 117630, '2011-07-20', '680590.00', 'A'), + ('2256', 3, 'DOS REIS FILHO ELPIDIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 120773, '2011-08-07', '896720.00', 'A'), + ('2257', 3, 'COIMBRA CARDOSO MUNARI FERNANDA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-09', + '441830.00', 'A'), + ('2258', 3, 'LAZANHA FLAVIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118942, '2011-06-14', '519000.00', 'A'), + ('2259', 3, 'LAZANHA FLAVIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118942, '2011-06-14', '269480.00', 'A'), + ('226', 1, 'HUERFANO FLOREZ JOHN FAVER', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-29', '148340.00', 'A'), + ('2260', 3, 'JOVETTA EDILSON', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118941, '2011-09-19', '790430.00', 'A'), + ('2261', 3, 'DE OLIVEIRA ANDRE RICARDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118942, '2011-07-25', '143680.00', 'A'), + ('2263', 3, 'MUNDO TEIXEIRA CARVALHO SILVIA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118864, '2011-09-19', + '304670.00', 'A'), + ('2264', 3, 'FERREIRA CINTRA ADRIANO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2011-04-08', '481910.00', 'A'), + ('2265', 3, 'AUGUSTO DE OLIVEIRA MARCOS', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118685, '2011-08-09', + '495530.00', 'A'), + ('2266', 3, 'CHEN ROBERTO LUIZ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118777, '2011-03-15', '31920.00', 'A'), + ('2268', 3, 'WROBLESKI DIENSTMANN RAQUEL', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117630, '2011-05-15', + '269320.00', 'A'), + ('2269', 3, 'MALAGOLA GEDERSON', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118864, '2011-05-30', '327540.00', 'A'), + ('227', 1, 'LOPEZ ESCOBAR CARLOS ALFONSO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-06', + '862360.00', 'A'), + ('2271', 3, 'GOMES EVANDRO HENRIQUE', '191821112', 'CRA 25 CALLE 100', + '199@hotmail.es', '2011-02-03', 118777, '2011-03-24', '166100.00', 'A'), + ('2273', 3, 'LANDEIRA FERNANDEZ JESUS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-21', '207990.00', 'A'), + ('2274', 3, 'ROSSI RENATO', '191821112', 'CRA 25 CALLE 100', + '791@hotmail.es', '2011-02-03', 118777, '2011-09-19', '16170.00', 'A'), + ('2275', 3, 'CALMON RANGEL PATRICIA', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-23', '456890.00', 'A'), + ('2277', 3, 'CIFU NETO ROQUE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118777, '2011-04-27', '808940.00', 'A'), + ('2278', 3, 'GONCALVES PRETO FRANCISCO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118942, '2011-07-25', '336930.00', 'A'), + ('2279', 3, 'JORGE JUNIOR ROBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118777, '2011-05-09', '257840.00', 'A'), + ('2281', 3, 'ELENCIUC DEMETRIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118777, '2011-04-20', '618510.00', 'A'), + ('2283', 3, 'CUNHA MENDEZ RAFAEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 119855, '2011-07-18', '431190.00', 'A'), + ('2286', 3, 'DIAZ LENICE APARECIDA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-03', '977840.00', 'A'), + ('2288', 3, 'DE CARVALHO SIGEL TATIANA', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118777, '2011-07-04', '123920.00', 'A'), + ('229', 1, 'GALARZA GIRALDO SERGIO ALDEMAR', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-09-17', + '746930.00', 'A'), + ('2290', 3, 'ACHOA MORANDI BORGUES SIBELE MARIA', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118777, '2011-09-12', + '553890.00', 'A'), + ('2291', 3, 'EPAMINONDAS DE ALMEIDA DELIO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-22', + '14080.00', 'A'), + ('2293', 3, 'REIS CASTRO SHANA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118942, '2011-08-03', '1430.00', 'A'), + ('2294', 3, 'BERNARDES JUNIOR ARMANDO', '191821112', 'CRA 25 CALLE 100', + '678@gmail.com', '2011-02-03', 127591, '2011-08-30', '780930.00', 'A'), + ('2295', 3, 'LEMOS DE SOUZA AGUIAR SERGIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-10-03', + '900370.00', 'A'), + ('2296', 3, 'CARVALHO ADAMS KARIN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118942, '2011-08-11', '159040.00', 'A'), + ('2297', 3, 'GALLINA SILVANA BRASILEIRA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', + '94110.00', 'A'), + ('23', 1, 'COLMENARES PEDREROS EDUARDO ADOLFO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-02', + '625870.00', 'A'), + ('2300', 3, 'TAVEIRA DE SIQUEIRA TANIA APARECIDA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-24', + '443910.00', 'A'), + ('2301', 3, 'DA SIVA LIMA ANDRE LUIS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-23', '165020.00', 'A'), + ('2302', 3, 'GALVAO GUSTAVO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118942, '2011-09-12', '493370.00', 'A'), + ('2303', 3, 'DA COSTA CRUZ GABRIELA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2011-07-27', '971800.00', 'A'), + ('2304', 3, 'BERNHARD GOTTFRIED RABER', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-04-30', '378870.00', 'A'), + ('2306', 3, 'ALDANA URIBE PABLO AXEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-05-08', '758160.00', 'A'), + ('2308', 3, 'FLORES ALONSO EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-04-26', '995310.00', 'A'), + ('2309', 3, 'MADRIGAL MIER Y TERAN LUIS FELIPE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-02-23', + '414650.00', 'A'), + ('231', 1, 'ZAPATA CEBALLOS JUAN MANUEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-08-16', + '430320.00', 'A'), + ('2310', 3, 'GONZALEZ ALVARO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-05-19', '87330.00', 'A'), + ('2313', 3, 'MONTES PORTO ANDREA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 145135, '2011-09-01', '929180.00', 'A'), + ('2314', 3, 'ROCHA SUSUNAGA SERGIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2010-10-18', '541540.00', 'A'), + ('2315', 3, 'VASQUEZ CALERO FEDERICO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-06-22', '920160.00', 'A'), + ('2317', 3, 'GONZALEZ FERNANDEZ YUSSEN ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-26', + '120530.00', 'A'), + ('2319', 3, 'ATTIAS WENGROWSKY DAVID', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 150581, '2011-09-07', '8580.00', 'A'), + ('232', 1, 'OSPINA ABUCHAIBE ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2011-07-14', '748960.00', 'A'), + ('2320', 3, 'EFRON TOPOROVSKY INES', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 116511, '2011-07-15', '20810.00', 'A'), + ('2321', 3, 'LUNA PLA DARIO', '191821112', 'CRA 25 CALLE 100', + '95@terra.com.co', '2011-02-03', 145135, '2011-09-07', '78320.00', 'A'), + ('2322', 1, 'VAZQUEZ DANIELA', '191821112', 'CRA 25 CALLE 100', + '190@gmail.com', '2011-02-03', 145135, '2011-05-19', '329170.00', 'A'), + ('2323', 3, 'BALBI BALBI JUAN DE DIOS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-23', '410880.00', 'A'), + ('2324', 3, 'MARROQUÍN FERNANDEZ GELACIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-23', + '66880.00', 'A'), + ('2325', 3, 'VAZQUEZ ZAVALA ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-04-11', '101770.00', 'A'), + ('2326', 3, 'SOTO MARTINEZ MARIA ELENA', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-03-23', '308200.00', 'A'), + ('2328', 3, 'HERNANDEZ MURILLO RICARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-22', '253830.00', 'A'), + ('233', 1, 'HADDAD LINERO YEBRAIL', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 130608, '2010-06-17', '453830.00', 'A'), + ('2330', 3, 'TERMINEL HERNANDEZ DANIELA PATRICIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 190393, '2011-08-15', + '48940.00', 'A'), + ('2331', 3, 'MIJARES FERNANDEZ MAGDALENA GUADALUPE', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-31', + '558440.00', 'A'), + ('2332', 3, 'GONZALEZ LUNA CARLOS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 146258, '2011-04-26', '645400.00', 'A'), + ('2333', 3, 'DIAZ TORREJON', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-03', '551690.00', 'A'), + ('2335', 3, 'PADILLA GUTIERREZ JESUS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-22', '456120.00', 'A'), + ('2336', 3, 'TORRES CORONA JORGE ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', + '813900.00', 'A'), + ('2337', 3, 'CASTRO RAMSES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 150581, '2011-07-04', '701120.00', 'A'), + ('2338', 3, 'APARICIO VALLEJO RUSSELL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-03-16', '63890.00', 'A'), + ('2339', 3, 'ALBOR FERNANDEZ LUIS ARTURO', '191821112', + 'CRA 25 CALLE 100', '574@gmail.com', '2011-02-03', 147467, '2011-05-09', + '216110.00', 'A'), + ('234', 1, 'DOMINGUEZ GOMEZ JUAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '942@hotmail.com', '2011-02-03', 127591, + '2010-08-22', '22260.00', 'A'), + ('2342', 3, 'REY ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '110@facebook.com', '2011-02-03', 127591, '2011-03-04', '313330.00', + 'A'), + ('2343', 3, 'MENDOZA GONZALES ADRIANA', '191821112', 'CRA 25 CALLE 100', + '295@yahoo.com', '2011-02-03', 127591, '2011-03-23', '178720.00', 'A'), + ('2344', 3, 'RODRIGUEZ SEGOVIA JESUS ALONSO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-07-26', + '953590.00', 'A'), + ('2345', 3, 'GONZALEZ PELAEZ EDUARDO DAVID', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-26', + '231790.00', 'A'), + ('2347', 3, 'VILLEDA GARCIA DAVID', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 144939, '2011-05-29', '795600.00', 'A'), + ('2348', 3, 'FERRER BURGES EMILIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', '83430.00', 'A'), + ('2349', 3, 'NARRO ROBLES LUIS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-03-16', '30330.00', 'A'), + ('2350', 3, 'ZALDIVAR UGALDE CARLOS IGNACIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-06-19', + '901380.00', 'A'), + ('2351', 3, 'VARGAS RODRIGUEZ VALENTE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 146258, '2011-04-26', '415910.00', 'A'), + ('2354', 3, 'DEL PIERO FRANCISCO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-05-09', '19890.00', 'A'), + ('2355', 3, 'VILLAREAL ANA CRISTINA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-03-23', '211810.00', 'A'), + ('2356', 3, 'GARRIDO FERRAN JORGE ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-22', + '999370.00', 'A'), + ('2357', 3, 'PEREZ PRECIADO EDMUNDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-22', '361450.00', 'A'), + ('2358', 3, 'AGUIRRE VIGNAU DANIEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 150581, '2011-08-21', '809110.00', 'A'), + ('2359', 3, 'LOPEZ SESMA TOMAS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 146258, '2011-09-14', '961200.00', 'A'), + ('236', 1, 'VENTO BETANCOURT LUIS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-19', + '682230.00', 'A'), + ('2360', 3, 'BERNAL MALDONADO GUILLERMO JAVIER', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-19', + '378670.00', 'A'), + ('2361', 3, 'GUZMAN DELGADO ALFREDO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-22', '9770.00', 'A'), + ('2362', 3, 'GUZMAN DELGADO MARTIN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-22', '912850.00', 'A'), + ('2363', 3, 'GUSMAND ELGADO JORGE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-22', '534910.00', 'A'), + ('2364', 3, 'RENDON BUICK JORGE JOSE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-07-26', '936010.00', 'A'), + ('2365', 3, 'HERNANDEZ HERNANDEZ HERNANDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-22', + '75340.00', 'A'), + ('2366', 3, 'ALVAREZ PAZ PEDRO RAFAEL ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-01-02', '568650.00', 'A'), + ('2367', 3, 'MIJARES DE LA BARREDA FERNANDA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-07-31', + '617240.00', 'A'), + ('2368', 3, 'MARTINEZ LOPEZ MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-08-24', '380250.00', 'A'), + ('2369', 3, 'GAYTAN MILLAN YANERI', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', '49520.00', 'A'), + ('237', 1, 'BARGUIL ASSIS DAVID ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117460, '2009-09-03', + '161770.00', 'A'), + ('2370', 3, 'DURAN HEREDIA FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-04-15', '106850.00', 'A'), + ('2371', 3, 'SEGURA MIJARES CRISTOBAL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-07-31', '385700.00', 'A'), + ('2372', 3, 'TEPOS VALTIERRA ERIK ARTURO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116345, '2011-09-01', + '607930.00', 'A'), + ('2373', 3, 'RODRIGUEZ AGUILAR EDMUNDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 145135, '2011-05-04', '882570.00', 'A'), + ('2374', 3, 'MYSLABODSKI MICHAEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 145135, '2011-03-08', '589060.00', 'A'), + ('2375', 3, 'HERNANDEZ MIRELES JATNIEL ELIOENAI', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', + '297600.00', 'A'), + ('2376', 3, 'SNELL FERNANDEZ SYNTYHA ROCIO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', + '720830.00', 'A'), + ('2378', 3, 'HERNANDEZ EIVET AARON', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-26', '394200.00', 'A'), + ('2379', 3, 'LOPEZ GARZA JAIME', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-22', '837000.00', 'A'), + ('238', 1, 'GARCIA PINO CARLOS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-05-10', '762140.00', 'A'), + ('2381', 3, 'TOSCANO ESTRADA RUBEN ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-22', + '500940.00', 'A'), + ('2382', 3, 'RAMIREZ HUDSON ROGER SILVESTER', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-22', + '497550.00', 'A'), + ('2383', 3, 'RAMOS JUAN ANTONIO', '191821112', 'CRA 25 CALLE 100', + '362@yahoo.es', '2011-02-03', 127591, '2011-08-22', '984940.00', 'A'), + ('2384', 3, 'CORTES CERVANTES ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-04-11', + '432020.00', 'A'), + ('2385', 3, 'POZOS ESQUIVEL DAVID', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-27', '205310.00', 'A'), + ('2387', 3, 'ESTRADA AGUIRRE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-22', '36470.00', 'A'), + ('2388', 3, 'GARCIA RAMIREZ RAMON', '191821112', 'CRA 25 CALLE 100', + '177@yahoo.es', '2011-02-03', 127591, '2011-08-22', '990910.00', 'A'), + ('2389', 3, 'PRUD HOMME GARCIA CUBAS XAVIER', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-18', + '845140.00', 'A'), + ('239', 1, 'PINZON ARDILA GUSTAVO ALFONSO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-01', + '325400.00', 'A'), + ('2390', 3, 'ELIZABETH OCHOA ROJAS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 145135, '2011-05-21', '252950.00', 'A'), + ('2391', 3, 'MEZA ALVAREZ JOSE ALBERTO', '191821112', 'CRA 25 CALLE 100', + '646@terra.com.co', '2011-02-03', 144939, '2011-05-09', '729340.00', + 'A'), + ('2392', 3, 'HERRERA REYES RENATO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2010-02-28', + '887860.00', 'A'), + ('2393', 3, 'MURILLO GARIBAY GILBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-08-20', '251280.00', 'A'), + ('2394', 3, 'GARCIA JIMENEZ CARLOS MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-09', + '592830.00', 'A'), + ('2395', 3, 'GUAGNELLI MARTINEZ BLANCA MONICA', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145184, '2010-10-05', + '210320.00', 'A'), + ('2397', 3, 'GARCIA CISNEROS RAUL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-07-04', '734530.00', 'A'), + ('2398', 3, 'MIRANDA ROMO FRANCISCO JAVIER', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', + '853340.00', 'A'), + ('24', 1, 'ARREGOCES GARZON NELSON ORLANDO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127783, '2011-08-12', + '403190.00', 'A'), + ('240', 1, 'ARCINIEGAS GOMEZ ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-18', '340590.00', 'A'), + ('2400', 3, 'HERRERA ABARCA EDUARDO VICENTE ', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', + '755620.00', 'A'), + ('2403', 3, 'CASTRO MONCAYO LUIS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-07-29', + '617260.00', 'A'), + ('2404', 3, 'GUZMAN DELGADO OSBALDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-22', '56250.00', 'A'), + ('2405', 3, 'GARCIA LOPEZ DAVID', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-22', '429500.00', 'A'), + ('2406', 3, 'JIMENEZ GAMEZ RAFAEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 245206, '2011-03-23', '978720.00', 'A'), + ('2407', 3, 'BECERRA MARTINEZ JUAN PABLO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-08-23', + '605130.00', 'A'), + ('2408', 3, 'GARCIA MARTINEZ BERNARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-22', '89480.00', 'A'), + ('2409', 3, 'URRUTIA RAYAS BALTAZAR', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-22', '632020.00', 'A'), + ('241', 1, 'MEDINA AGUILA NESTOR EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-09', + '726730.00', 'A'), + ('2411', 3, 'VERGARA MENDOZAVICTOR HUGO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-06-15', + '562230.00', 'A'), + ('2412', 3, 'MENDOZA MEDINA JORGE IGNACIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', + '136170.00', 'A'), + ('2413', 3, 'CORONADO CASTILLO HUGO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 147529, '2011-05-09', '994160.00', 'A'), + ('2414', 3, 'GONZALEZ SOTO DELIA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-03-23', '562280.00', 'A'), + ('2415', 3, 'HERNANDEZ FLORES STEPHANIE REYNA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', + '828940.00', 'A'), + ('2416', 3, 'ABRAJAN GUERRERO MARIA DE LOS ANGELES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-23', + '457860.00', 'A'), + ('2417', 3, 'HERNANDEZ LOERA ALFONSO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', '802490.00', 'A'), + ('2418', 3, 'TARÍN LÓPEZ JOSE CARMEN', '191821112', 'CRA 25 CALLE 100', + '117@gmail.com', '2011-02-03', 127591, '2011-03-23', '638870.00', 'A'), + ('242', 1, 'JULIO NARVAEZ', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-07-05', '611890.00', 'A'), + ('2420', 3, 'BATTA MARQUEZ VICTOR ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-08-23', + '17820.00', 'A'), + ('2423', 3, 'GONZALEZ REYES JUAN JOSE', '191821112', 'CRA 25 CALLE 100', + '55@yahoo.es', '2011-02-03', 127591, '2011-07-26', '758070.00', 'A'), + ('2425', 3, 'ALVAREZ RODRIGUEZ HIRAM RAMSES', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-23', + '847420.00', 'A'), + ('2426', 3, 'FEMATT HERNANDEZ JESUS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-03-23', '164130.00', 'A'), + ('2427', 3, 'GUTIERRES ORTEGA FRANCISCO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', + '278410.00', 'A'), + ('2428', 3, 'JIMENEZ DIAZ JUAN JORGE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-05-13', '899650.00', 'A'), + ('2429', 3, 'VILLANUEVA PÉREZ MIGUEL ANGEL', '191821112', + 'CRA 25 CALLE 100', '656@yahoo.es', '2011-02-03', 150449, '2011-03-23', + '663000.00', 'A'), + ('243', 1, 'GOMEZ REYES ANDRES', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 126674, '2009-12-20', '879240.00', 'A'), + ('2430', 3, 'CERON GOMEZ JOEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-03-21', '616070.00', 'A'), + ('2431', 3, 'LOPEZ LINALDI DEMETRIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 145135, '2011-05-09', '91360.00', 'A'), + ('2432', 3, 'JOSEPH NATHAN PEDRO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-05-02', '608580.00', 'A'), + ('2433', 3, 'CARREÑO PULIDO RUBEN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 147242, '2011-06-19', '768810.00', 'A'), + ('2434', 3, 'AREVALO MERCADO CARLOS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-06-12', '18320.00', 'A'), + ('2436', 3, 'RAMIREZ QUEZADA ERIKA BELEM', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-03', + '870930.00', 'A'), + ('2438', 3, 'TATTO PRIETO MIGUEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-19', '382740.00', 'A'), + ('2439', 3, 'LOPEZ AYALA LUIS ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-10-08', '916370.00', 'A'), + ('244', 1, 'DEVIS EDGAR JOSE', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-10-08', '560540.00', 'A'), + ('2440', 3, 'HERNANDEZ TOVAR JORGE ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 144991, '2011-10-02', + '433650.00', 'A'), + ('2441', 3, 'COLLIARD LOPEZ PETER GEORGE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-09', + '419120.00', 'A'), + ('2442', 3, 'FLORES CHALA GARY', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-22', '794670.00', 'A'), + ('2443', 3, 'FANDIÑO MUÑOZ ZAMIA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-07-19', '715970.00', 'A'), + ('2444', 3, 'BARROSO VARGAS DIEGO ALFONSO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-26', + '195840.00', 'A'), + ('2446', 3, 'CRUZ RAMIREZ JUAN PEDRO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 145135, '2011-07-14', '569050.00', 'A'), + ('2447', 3, 'TIJERINA ACOSTA SERGIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-26', '351280.00', 'A'), + ('2449', 3, 'JASSO BARRERA CARLOS GUSTAVO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-08-24', + '192560.00', 'A'), + ('245', 1, 'LENCHIG KALEDA SERGIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-02', '165000.00', 'A'), + ('2450', 3, 'GARRIDO PATRON VICTOR', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-09-27', '814970.00', 'A'), + ('2451', 3, 'VELASQUEZ GUERRERO RUBEN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', '497150.00', 'A'), + ('2452', 3, 'CHOI SUNGKYU', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 209494, '2011-08-16', '40860.00', 'A'), + ('2453', 3, 'CONTRERAS LOPEZ SERGIO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 145135, '2011-08-05', '712830.00', 'A'), + ('2454', 3, 'CHAVEZ BATAA OSCAR', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 150699, '2011-06-14', '441590.00', 'A'), + ('2455', 3, 'LEE JONG HYUN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 131272, '2011-10-10', '69460.00', 'A'), + ('2456', 3, 'MEDINA PADILLA CARLOS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 146589, '2011-04-20', + '22530.00', 'A'), + ('2457', 3, 'FLORES CUEVAS DOTNARA LUZ', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 145135, '2011-05-17', '904260.00', 'A'), + ('2458', 3, 'LIU YONGCHAO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-10-09', '453710.00', 'A'), + ('2459', 3, 'CASTRO FERNANDES PORTOCARRERO JOSE MANUEL', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 195892, '2011-06-14', + '555790.00', 'A'), + ('246', 1, 'YAMHURE FONSECAN ERNESTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2009-10-03', '143350.00', 'A'), + ('2460', 3, 'DUAN WEI', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2011-06-22', '417820.00', 'A'), + ('2461', 3, 'ZHU XUTAO', '191821112', 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-05-18', '421740.00', 'A'), + ('2462', 3, 'MEI SHUANNIU', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-10-09', '855240.00', 'A'), + ('2464', 3, 'VEGA VACA LUIS ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-06-08', '489110.00', 'A'), + ('2465', 3, 'TANG YUMING', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 147578, '2011-03-26', '412660.00', 'A'), + ('2466', 3, 'VILLEDA GARCIA DAVID', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 144939, '2011-06-07', '595990.00', 'A'), + ('2467', 3, 'GARCIA GARZA BLANCA ARMIDA', '191821112', + 'CRA 25 CALLE 100', '927@hotmail.com', '2011-02-03', 145135, + '2011-05-20', '741940.00', 'A'), + ('2468', 3, 'HERNANDEZ MARTINEZ EMILIO JOAQUIN', '191821112', + 'CRA 25 CALLE 100', '356@facebook.com', '2011-02-03', 145135, + '2011-06-16', '921740.00', 'A'), + ('2469', 3, 'WANG FAN', '191821112', 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 185363, '2011-08-20', '382860.00', 'A'), + ('247', 1, 'ROJAS RODRIGUEZ ALVARO HERNAN', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-09', + '221760.00', 'A'), + ('2470', 3, 'WANG FEI', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-10-09', '149100.00', 'A'), + ('2471', 3, 'BERNAL MALDONADO GUILLERMO JAVIER', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118777, '2011-07-26', + '596900.00', 'A'), + ('2472', 3, 'GUTIERREZ GOMEZ ARTURO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145184, '2011-07-24', '537210.00', 'A'), + ('2474', 3, 'LAN TYANYE ', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-06-23', '865050.00', 'A'), + ('2475', 3, 'LAN SHUZHEN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-23', '639240.00', 'A'), + ('2476', 3, 'RODRIGUEZ GONZALEZ CARLOS ARTURO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 144616, '2011-08-09', + '601050.00', 'A'), + ('2477', 3, 'HAIBO NI', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-20', '87540.00', 'A'), + ('2479', 3, 'RUIZ RODRIGUEZ GRACIELA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-05-20', '910130.00', 'A'), + ('248', 1, 'GONZALEZ RODRIGUEZ ANDRES', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-03', '678750.00', 'A'), + ('2480', 3, 'OROZCO MACIAS NORMA LETICIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-20', + '647010.00', 'A'), + ('2481', 3, 'MEZA ALVAREZ JOSE ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 144939, '2011-06-07', '504670.00', 'A'), + ('2482', 3, 'RODRIGUEZ FIGUEROA RODRIGO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 146308, '2011-04-27', + '582290.00', 'A'), + ('2483', 3, 'CARREON GUERRA ANA CECILIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 110709, '2011-05-27', + '397440.00', 'A'), + ('2484', 3, 'BOTELHO BARRETO CARLOS JOSE', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 195892, '2011-08-02', + '240350.00', 'A'), + ('2485', 3, 'CORONADO CASTILLO HUGO', '191821112', 'CRA 25 CALLE 100', + '209@yahoo.com.mx', '2011-02-03', 147529, '2011-06-07', '9420.00', 'A'), + ('2486', 3, 'DE FUENTES GARZA MARCELO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-18', '326030.00', 'A'), + ('2487', 3, 'GONZALEZ DUHART GUTIERREZ HORACIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-17', + '601920.00', 'A'), + ('2488', 3, 'LOPEZ LINALDI DEMETRIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-06-07', '31500.00', 'A'), + ('2489', 3, 'CASTRO MONCAYO JOSE LUIS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-06-15', '351720.00', 'A'), + ('249', 1, 'CASTRO RIBEROS JULIAN ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-23', + '728470.00', 'A'), + ('2490', 3, 'SERRALDE LOPEZ MARIA GUADALUPE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-25', + '664120.00', 'A'), + ('2491', 3, 'GARRIDO PATRON VICTOR', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-09-29', '265450.00', 'A'), + ('2492', 3, 'BRAUN JUAN NICOLAS ANTONIE', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-28', + '334880.00', 'A'), + ('2493', 3, 'BANKA RAHUL', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 141138, '2011-05-02', '878070.00', 'A'), + ('2494', 1, 'GARCIA MARTINEZ MARIA VIRGINIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-17', + '385690.00', 'A'), + ('2495', 1, 'MARIA VIRGINIA', '191821112', 'CRA 25 CALLE 100', + '298@yahoo.com.mx', '2011-02-03', 127591, '2011-04-16', '294220.00', + 'A'), + ('2496', 3, 'GOMEZ ZENDEJAS MARIA ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145184, '2011-06-06', '314060.00', 'A'), + ('2498', 3, 'MENDEZ MARTINEZ RAUL', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 145135, '2011-07-10', '496040.00', 'A'), + ('2499', 3, 'CARREON GUERRA ANA CECILIA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-29', + '417240.00', 'A'), + ('2501', 3, 'OLIVAR ARIAS ISMAEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-06-06', '738850.00', 'A'), + ('2502', 3, 'ABOUMRAD NASTA EMILE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-07-26', '899890.00', 'A'), + ('2503', 3, 'RODRIGUEZ JIMENEZ ROBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-05-03', '282900.00', 'A'), + ('2504', 3, 'ESTADOS UNIDOS', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 145135, '2011-07-27', '714840.00', 'A'), + ('2505', 3, 'SOTO MUÑOZ MARCO GREGORIO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-26', '725480.00', 'A'), + ('2506', 3, 'GARCIA MONTER ANA OTILIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-10-05', '482880.00', 'A'), + ('2507', 3, 'THIRUKONDA VIGNESH', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 126180, '2011-05-02', '237950.00', 'A'), + ('2508', 3, 'RAMIREZ REATIAGA LYDA YOANA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 150699, '2011-06-26', + '741120.00', 'A'), + ('2509', 3, 'SEPULVEDA RODRIGUEZ JESUS ', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', + '991730.00', 'A'), + ('251', 1, 'MEJIA PIZANO ANDRES', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-10', '845000.00', 'A'), + ('2510', 3, 'FRANCISCO MARIA DIAS COSTA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 179111, '2011-07-12', + '735330.00', 'A'), + ('2511', 3, 'TEIXEIRA REGO DE OLIVEIRA TIAGO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 179111, '2011-06-14', + '701430.00', 'A'), + ('2512', 3, 'PHILLIP JAMES', '191821112', 'CRA 25 CALLE 100', + '766@terra.com.co', '2011-02-03', 127591, '2011-09-28', '301150.00', + 'A'), + ('2513', 3, 'ERXLEBEN ROBERT', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 216125, '2011-04-13', '401460.00', 'A'), + ('2514', 3, 'HUGHES CONNORRICHARD', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 269033, '2011-06-22', '103880.00', 'A'), + ('2515', 3, 'LEBLANC MICHAEL PAUL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 216125, '2011-08-09', '314990.00', 'A'), + ('2517', 3, 'DEVINE CHRISTOPHER', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 269033, '2011-06-22', '371560.00', 'A'), + ('2518', 3, 'WONG BRIAN TEK FUNG', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 126885, '2011-09-22', '67910.00', 'A'), + ('2519', 3, 'BIDWALA IRFAN A', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 154811, '2011-03-28', '224840.00', 'A'), + ('252', 1, 'JIMENEZ LARRARTE JUAN GABRIEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-01', + '406770.00', 'A'), + ('2520', 3, 'LEE HO YIN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 147578, '2011-08-29', '920470.00', 'A'), + ('2521', 3, 'DE MOURA MARTINS NUNO ALEXANDRE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196094, '2011-10-09', + '927850.00', 'A'), + ('2522', 3, 'DA COSTA GOMES CARLOS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 179111, '2011-08-10', + '877850.00', 'A'), + ('2523', 3, 'HOOGWAERTS PAUL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118777, '2011-02-11', '605690.00', 'A'), + ('2524', 3, 'LOPES MARQUES LUIS JOSE MANUEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2011-09-20', + '394910.00', 'A'), + ('2525', 3, 'CORREIA CAVACO JOSE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 178728, '2011-10-09', '157470.00', 'A'), + ('2526', 3, 'HALL JOHN WILLIAM', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-09', '602620.00', 'A'), + ('2527', 3, 'KNIGHT MARTIN GYLES', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 113550, '2011-08-29', '540670.00', 'A'), + ('2528', 3, 'HINDS THMAS TRISTAN PELLEW', '191821112', + 'CRA 25 CALLE 100', '337@yahoo.es', '2011-02-03', 116862, '2011-08-23', + '895500.00', 'A'), + ('2529', 3, 'CARTON ALAN JOHN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 117002, '2011-07-31', '855510.00', 'A'), + ('253', 1, 'AZCUENAGA RAMIREZ NICOLAS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 298472, '2011-05-10', '498840.00', 'A'), + ('2530', 3, 'GHIM CHEOLL HO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-27', '591060.00', 'A'), + ('2531', 3, 'PHILLIPS NADIA SULLIVAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-28', '388750.00', 'A'), + ('2532', 3, 'CHANG KUKHYUN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-03-22', '170560.00', 'A'), + ('2533', 3, 'KANG SEOUNGHYUN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 173192, '2011-08-24', '686540.00', 'A'), + ('2534', 3, 'CHUNG BYANG HOON', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 125744, '2011-03-14', '921030.00', 'A'), + ('2535', 3, 'SHIN MIN CHUL ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 173192, '2011-08-24', '545510.00', 'A'), + ('2536', 3, 'CHOI JIN SUNG', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-15', '964490.00', 'A'), + ('2537', 3, 'CHOI SUNGMIN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-27', '185910.00', 'A'), + ('2538', 3, 'PARK JAESER ', '191821112', 'CRA 25 CALLE 100', + '525@terra.com.co', '2011-02-03', 127591, '2011-09-03', '36090.00', + 'A'), + ('2539', 3, 'KIM DAE HOON ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 173192, '2011-08-24', '622700.00', 'A'), + ('254', 1, 'AVENDAÑO PABON ROLANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-05-12', '273900.00', 'A'), + ('2540', 3, 'LYNN MARIA CRISTINA NORMA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 116862, '2011-09-21', '5220.00', 'A'), + ('2541', 3, 'KIM CHINIL JULIAN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 147578, '2011-08-27', '158030.00', 'A'), + ('2543', 3, 'HALL JOHN WILLIAM', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-09', '398290.00', 'A'), + ('2544', 3, 'YOSUKE PERDOMO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 165600, '2011-07-26', '668040.00', 'A'), + ('2546', 3, 'AKAGI KAZAHIKO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-26', '722510.00', 'A'), + ('2547', 3, 'NELSON JONATHAN GARY', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-09', '176570.00', 'A'), + ('2548', 3, 'DUONG HOP BA', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 116862, '2011-09-14', '715310.00', 'A'), + ('2549', 3, 'CHAO-VILLEGAS NIKOLE TUK HING', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 180063, '2011-04-05', + '46830.00', 'A'), + ('255', 1, 'CORREA ALVARO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-27', '872990.00', 'A'), + ('2551', 3, 'APPELS LAURENT BERNHARD', '191821112', 'CRA 25 CALLE 100', + '891@hotmail.es', '2011-02-03', 135190, '2011-08-16', '300620.00', 'A'), + ('2552', 3, 'PLAISIER ERIK JAN', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 289294, '2011-05-23', '238440.00', 'A'), + ('2553', 3, 'BLOK HENDRIK', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 288552, '2011-03-27', '290350.00', 'A'), + ('2554', 3, 'NETTE ANNA STERRE', '191821112', 'CRA 25 CALLE 100', + '621@yahoo.com.mx', '2011-02-03', 185363, '2011-07-30', '736400.00', + 'A'), + ('2555', 3, 'FRIELING HANS ERIC', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 107469, '2011-07-31', '810990.00', 'A'), + ('2556', 3, 'RUTTE CORNELIA JANTINE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 143579, '2011-03-30', '845710.00', 'A'), + ('2557', 3, 'WALRAVEN PIETER PAUL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 289294, '2011-07-29', '795620.00', 'A'), + ('2558', 3, 'TREBES LAURENS JOHANNES', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-11-22', '440940.00', 'A'), + ('2559', 3, 'KROESE ROLANDWILLEBRORDUSMARIA', '191821112', + 'CRA 25 CALLE 100', '188@facebook.com', '2011-02-03', 110643, + '2011-06-09', '817860.00', 'A'), + ('256', 1, 'FARIAS GARCIA REINI', '191821112', 'CRA 25 CALLE 100', + '615@hotmail.com', '2011-02-03', 127591, '2011-03-05', '543220.00', + 'A'), + ('2560', 3, 'VAN DER HEIDE HENDRIK', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 291042, '2011-09-04', '766460.00', 'A'), + ('2561', 3, 'VAN DEN BERG DONAR ALEXANDER GABRIEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 190393, '2011-07-13', + '378720.00', 'A'), + ('2562', 3, 'GODEFRIDUS JOHANNES ROPS ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127622, '2011-10-02', '594240.00', 'A'), + ('2564', 3, 'WAT YOK YIENG', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 287095, '2011-03-22', '392370.00', 'A'), + ('2565', 3, 'BUIS JACOBUS NICOLAAS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-20', '456810.00', 'A'), + ('2567', 3, 'CHIPPER FRANCIUSCUS NICOLAAS ', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 291599, '2011-07-28', + '164300.00', 'A'), + ('2568', 3, 'ONNO ROUKENS', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-11-28', '500670.00', 'A'), + ('2569', 3, 'PETRUS MARCELLINUS STEPHANUS', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-06-25', + '10430.00', 'A'), + ('2571', 3, 'VAN VOLLENHOVEN IVO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-08', '719370.00', 'A'), + ('2572', 3, 'LAMBOOIJ BART', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-09-20', '946480.00', 'A'), + ('2573', 3, 'LANSER MARIANA PAULINE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 289294, '2011-04-09', '574270.00', 'A'), + ('2575', 3, 'KLERKEN JOHANNES', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 286101, '2011-05-24', '436840.00', 'A'), + ('2576', 3, 'KRAS JACOBUS NICOLAAS', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 289294, '2011-09-26', '88410.00', 'A'), + ('2577', 3, 'FUCHS MICHAEL JOSEPH', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 185363, '2011-07-30', '131530.00', 'A'), + ('2578', 3, 'BIJVANK ERIK JAN WILLEM', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-04-11', '392410.00', 'A'), + ('2579', 3, 'SCHMIDT FRANC ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 106742, '2011-09-11', '567470.00', 'A'), + ('258', 1, 'SOTO GONZALEZ FRANCISCO LAZARO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 116511, '2011-05-07', + '856050.00', 'A'), + ('2580', 3, 'VAN DER KOOIJ', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 291277, '2011-07-10', '660130.00', 'A'), + ('2581', 2, 'KRIS ANDRE GEORGES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127300, '2011-07-26', '598240.00', 'A'), + ('2582', 3, 'HARDING LUIS ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 263813, '2011-05-08', '10820.00', 'A'), + ('2583', 3, 'ROLLI GUY JEAN ', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-05-31', '259370.00', 'A'), + ('2584', 3, 'NIETO PARRA SEBASTIAN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 263813, '2011-07-04', '264400.00', 'A'), + ('2585', 3, 'LASTRA CHAVEZ PABLO ARMANDO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126674, '2011-05-25', + '543890.00', 'A'), + ('2586', 1, 'ZAIDA MAYERLY', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-05', '926250.00', 'A'), + ('2587', 1, 'OSWALDO SOLORZANO CONTRERAS', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-28', + '999590.00', 'A'), + ('2588', 3, 'ZHOU XUAN', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-18', '219200.00', 'A'), + ('2589', 3, 'HUANG ZHENGQUN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-05-18', '97230.00', 'A'), + ('259', 1, 'GALARZA NARANJO JAIME RENE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-18', '988830.00', 'A'), + ('2590', 3, 'HUANG ZHENQUIN', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-18', '828560.00', 'A'), + ('2591', 3, 'WEIDEN MULLER AMURER', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-03-29', '851110.00', 'A'), + ('2593', 3, 'OESTERHAUS CORNELIA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 256231, '2011-03-29', '295960.00', 'A'), + ('2594', 3, 'RINTALAHTI JUHA HENRIK', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-23', '170220.00', 'A'), + ('2597', 3, 'VERWIJNEN JONAS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 289697, '2011-02-03', '638040.00', 'A'), + ('2598', 3, 'SHAW ROBERT', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 157414, '2011-07-10', '273550.00', 'A'), + ('2599', 3, 'MAKINEN TIMO JUHANI', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 196234, '2011-09-13', '453600.00', 'A'), + ('260', 1, 'RIVERA CAÑON JOSE EDWARD', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127538, '2011-09-19', '375990.00', 'A'), + ('2600', 3, 'HONKANIEMI ARTO OLAVI', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 301387, '2011-09-06', '447380.00', 'A'), + ('2601', 3, 'DAGG JAMIE MICHAEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 216125, '2011-08-09', '876080.00', 'A'), + ('2602', 3, 'BOLAND PATRICK CHARLES ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 216125, '2011-09-14', '38260.00', 'A'), + ('2603', 2, 'ZULEYKA JERRYS RIVERA MENDOZA', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 150347, '2011-03-27', + '563050.00', 'A'), + ('2604', 3, 'DELGADO SEQUIRA FERRAO JOSE PEDRO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188228, '2011-08-16', + '700460.00', 'A'), + ('2605', 3, 'YORRO LORA EDGAR MANUEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127689, '2011-06-17', '813180.00', 'A'), + ('2606', 3, 'CARRASCO RODRIGUEZQCARLOS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127689, '2011-06-17', '964520.00', 'A'), + ('2607', 30, 'ORJUELA VELASQUEZ JULIANA MARIA', '191821112', + 'CRA 25 CALLE 100', '372@terra.com.co', '2011-02-03', 132775, + '2011-09-01', '383070.00', 'A'), + ('2608', 3, 'DUQUE DUTRA LUIS EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118942, '2011-07-12', '21780.00', 'A'), + ('261', 1, 'MURCIA MARQUEZ NESTOR JAVIER', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-19', + '913480.00', 'A'), + ('2610', 3, 'NGUYEN HUU KHUONG', '191821112', 'CRA 25 CALLE 100', + '457@facebook.com', '2011-02-03', 132958, '2011-05-07', '733120.00', + 'A'), + ('2611', 3, 'NGUYEN VAN LAP', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', '786510.00', 'A'), + ('2612', 3, 'PHAM HUU THU', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', '733200.00', 'A'), + ('2613', 3, 'DANG MING CUONG', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132958, '2011-05-07', '306460.00', 'A'), + ('2614', 3, 'VU THI HONG HANH', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132958, '2011-05-07', '332710.00', 'A'), + ('2615', 3, 'CHAU TANG LANG', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 132958, '2011-05-07', '744190.00', 'A'), + ('2616', 3, 'CHU BAN THING', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132958, '2011-05-07', '722800.00', 'A'), + ('2617', 3, 'NGUYEN QUANG THU', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132958, '2011-05-07', '381420.00', 'A'), + ('2618', 3, 'TRAN THI KIM OANH', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 132958, '2011-05-07', '738690.00', 'A'), + ('2619', 3, 'NGUYEN VAN VINH', '191821112', 'CRA 25 CALLE 100', + '422@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', '549210.00', + 'A'), + ('262', 1, 'ABDULAZIS ELNESER KHALED', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-27', '439430.00', 'A'), + ('2620', 3, 'NGUYEN XUAN VY', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132958, '2011-05-07', '529950.00', 'A'), + ('2621', 3, 'HA MANH HOA', '191821112', 'CRA 25 CALLE 100', + '439@gmail.com', '2011-02-03', 132958, '2011-05-07', '2160.00', 'A'), + ('2622', 3, 'ZAFIROPOULO STEVEN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-05-25', '420930.00', 'A'), + ('2623', 3, 'ZAFIROPOULO ANA I', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-25', '98170.00', 'A'), + ('2624', 3, 'TEMIGTERRA MASSIMILIANO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 210050, '2011-09-26', '228070.00', 'A'), + ('2625', 3, 'CASSES TRINDADE HELGIO HENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118402, '2011-09-13', + '845850.00', 'A'), + ('2626', 3, 'ASCOLI MASTROENI MARCO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 120773, '2011-09-07', + '545010.00', 'A'), + ('2627', 3, 'MONTEIRO SOARES MARCOS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 120773, '2011-07-18', '187530.00', 'A'), + ('2629', 3, 'HALL ALVARO AUGUSTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 120773, '2011-08-02', '950450.00', 'A'), + ('2631', 3, 'ANDRADE CATUNDA RAFAEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 120773, '2011-08-23', '370860.00', 'A'), + ('2632', 3, 'MAGALHAES MAYRA ', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118767, '2011-08-23', '320960.00', 'A'), + ('2633', 3, 'SPREAFICO MIRIAM ', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118587, '2011-08-23', '492220.00', 'A'), + ('2634', 3, 'GOMES FERREIRA HELIO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 125812, '2011-08-23', '498220.00', 'A'), + ('2635', 3, 'FERNANDES SENNA PIRES SERGIO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-05', + '14460.00', 'A'), + ('2636', 3, 'BALESTRO FLORIANO FABIO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 120773, '2011-08-24', '577630.00', 'A'), + ('2637', 3, 'CABANA DE QUEIROZ ANDRADE ALAXANDRE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-23', + '844780.00', 'A'), + ('2638', 3, 'DALBOSCO CARLA', '191821112', 'CRA 25 CALLE 100', + '380@yahoo.com.mx', '2011-02-03', 127591, '2011-06-30', '491010.00', + 'A'), + ('264', 1, 'ROMERO MONTOYA NICOLAY ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-13', + '965220.00', 'A'), + ('2640', 3, 'BILLINI CRUZ RICARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 144215, '2011-03-27', '130530.00', 'A'), + ('2641', 3, 'VASQUES ARIAS DAVID', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 144509, '2011-08-19', '890500.00', 'A'), + ('2642', 3, 'ROJAS VOLQUEZ GLADYS MICHELLE', '191821112', + 'CRA 25 CALLE 100', '852@gmail.com', '2011-02-03', 144215, '2011-07-25', + '60930.00', 'A'), + ('2643', 3, 'LLANEZA GIL JUAN RAFAELMO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 144215, '2011-07-08', '633120.00', 'A'), + ('2646', 3, 'AVILA PEROZO IANKEL JACOB', '191821112', 'CRA 25 CALLE 100', + '318@hotmail.com', '2011-02-03', 144215, '2011-09-03', '125600.00', + 'A'), + ('2647', 3, 'REGULAR EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-19', '583540.00', 'A'), + ('2648', 3, 'CORONADO BATISTA JOSE ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-19', '540910.00', 'A'), + ('2649', 3, 'OLIVIER JOSE VICTOR', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 144509, '2011-08-19', '953910.00', 'A'), + ('2650', 3, 'YOO HOE TAEK', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 145135, '2011-08-25', '146820.00', 'A'), + ('266', 1, 'CUECA RODRIGUEZ CARLOS ANDRES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-22', + '384280.00', 'A'), + ('267', 1, 'NIETO ALVARADO ARMANDO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2008-04-28', '553450.00', 'A'), + ('269', 1, 'LEAL HOLGUIN FRANCISCO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-07-25', '411700.00', 'A'), + ('27', 1, 'MORENO MORENO CARLOS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2009-09-15', + '995620.00', 'A'), + ('270', 1, 'CANO IBAÑES JUAN FELIPE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-06-03', '215260.00', 'A'), + ('271', 1, 'RESTREPO HERRAN ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132775, '2011-04-18', '841220.00', 'A'), + ('272', 3, 'RIOS FRANCISCO JOSE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 199862, '2011-03-24', '560300.00', 'A'), + ('273', 1, 'MADERO LORENZANA NICOLAS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-03', '277850.00', 'A'), + ('274', 1, 'GOMEZ GABRIEL', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-09-24', '708350.00', 'A'), + ('275', 1, 'CONSUEGRA ARENAS ANDRES MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-09', + '708210.00', 'A'), + ('276', 1, 'HURTADO ROJAS NICOLAS', '191821112', 'CRA 25 CALLE 100', + '463@yahoo.com.mx', '2011-02-03', 127591, '2011-09-07', '416000.00', + 'A'), + ('277', 1, 'MURCIA BAQUERO MARCO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-02', + '955370.00', 'A'), + ('2773', 3, 'TAKUBO KAORI', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 165753, '2011-05-12', '872390.00', 'A'), + ('2774', 3, 'OKADA MAKOTO', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 165753, '2011-06-19', '921480.00', 'A'), + ('2775', 3, 'TAKEDA AKIO ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 21062, '2011-06-19', '990250.00', 'A'), + ('2776', 3, 'KOIKE WATARU ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 165753, '2011-06-19', '186800.00', 'A'), + ('2777', 3, 'KUBO SHINEI', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 165753, '2011-02-13', '963230.00', 'A'), + ('2778', 3, 'KANNO YONEZO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 165600, '2011-07-26', '255770.00', 'A'), + ('278', 3, 'PARENT ELOIDE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 267980, '2011-05-01', '528840.00', 'A'), + ('2781', 3, 'SUNADA MINORU ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 165753, '2011-06-19', '724450.00', 'A'), + ('2782', 3, 'INOUE KASUYA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-22', '87150.00', 'A'), + ('2783', 3, 'OTAKE NOBUTOSHI', '191821112', 'CRA 25 CALLE 100', + '208@facebook.com', '2011-02-03', 127591, '2011-06-11', '262380.00', + 'A'), + ('2784', 3, 'MOTOI KEN', '191821112', 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 165753, '2011-06-19', '50470.00', 'A'), + ('2785', 3, 'TANAKA KIYOTAKA ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 165753, '2011-06-19', '465210.00', 'A'), + ('2787', 3, 'YUMIKOPERDOMO', '191821112', 'CRA 25 CALLE 100', + '600@yahoo.es', '2011-02-03', 165600, '2011-07-26', '477550.00', 'A'), + ('2788', 3, 'FUKUSHIMA KENZO', '191821112', 'CRA 25 CALLE 100', + '599@gmail.com', '2011-02-03', 156960, '2011-05-30', '863860.00', 'A'), + ('2789', 3, 'GELGIN LEVENT NURI', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-05-26', '886630.00', 'A'), + ('279', 1, 'AVIATUR S. A.', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-05-02', '778110.00', 'A'), + ('2791', 3, 'GELGIN ENIS ENRE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-26', '547940.00', 'A'), + ('2792', 3, 'PAZ SOTO LUBRASCA MARIA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 143954, '2011-06-27', '215000.00', 'A'), + ('2794', 3, 'MOURAD TAOUFIKI', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-04-13', '511000.00', 'A'), + ('2796', 3, 'DASTUS ALAIN', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 218656, '2011-05-29', '774010.00', 'A'), + ('2797', 3, 'MCDONALD MICHAEL LORNE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 269033, '2011-07-19', '85820.00', 'A'), + ('2799', 3, 'KLESO MICHAEL QUENTIN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 269033, '2011-07-26', '277950.00', 'A'), + ('28', 1, 'GONZALEZ ACUÑA EDGAR MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-19', + '531710.00', 'A'), + ('280', 3, 'NEME KARIM CHAIBAN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 135967, '2010-05-02', '304040.00', 'A'), + ('2800', 3, 'CLERK CHARLES ALEXANDER', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 244158, '2011-07-26', '68490.00', 'A'), + ('2801', 3, 'BURRIS MAURICE STEWARD', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-27', '508600.00', 'A'), + ('2802', 1, 'PINCHEN CLAIRE ELAINE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 216125, '2011-04-13', '337530.00', 'A'), + ('2803', 3, 'LETTNER EVA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 231224, '2011-09-20', '161860.00', 'A'), + ('2804', 3, 'CANUEL LUCIE', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 146258, '2011-09-20', '796710.00', 'A'), + ('2805', 3, 'IGLESIAS CARLOS ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 216125, '2011-08-02', '497980.00', 'A'), + ('2806', 3, 'PAQUIN JEAN FRANCOIS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 269033, '2011-03-27', '99760.00', 'A'), + ('2807', 3, 'FOURNIER DANIEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 228688, '2011-05-19', '4860.00', 'A'), + ('2808', 3, 'BILODEAU MARTIN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-13', '725030.00', 'A'), + ('2809', 3, 'KELLNER PETER WILLIAM', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 130757, '2011-07-24', '610570.00', 'A'), + ('2810', 3, 'ZAZULAK INGRID ROSEMARIE', '191821112', 'CRA 25 CALLE 100', + '683@facebook.com', '2011-02-03', 240550, '2011-09-11', '877770.00', + 'A'), + ('2811', 3, 'RUCCI JHON MARIA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 285188, '2011-05-10', '557130.00', 'A'), + ('2813', 3, 'JONCAS MARC', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 33265, '2011-03-21', '90360.00', 'A'), + ('2814', 3, 'DUCHARME ERICK', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-03-29', '994750.00', 'A'), + ('2816', 3, 'BAILLOD THOMAS DAVID ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 239124, '2010-10-20', '529130.00', 'A'), + ('2817', 3, 'MARTINEZ SORIA JOSE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 289697, '2011-09-06', '537630.00', 'A'), + ('2818', 3, 'TAMARA RABER', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-04-30', '100750.00', 'A'), + ('2819', 3, 'BURGI VINCENT EMANUEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 245206, '2011-04-20', '890860.00', 'A'), + ('282', 1, 'HUESPED ASISTENTE A LA CONVENCION DE LA DIAN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2009-06-24', + '17160.00', 'A'), + ('2820', 3, 'ROBLES TORRALBA IVAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 238949, '2011-05-16', '152030.00', 'A'), + ('2821', 3, 'CONSUEGRA MARIA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-06', '87600.00', 'A'), + ('2822', 3, 'CELMA ADROVER LAIA', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 190393, '2011-03-23', '981880.00', 'A'), + ('2823', 3, 'ALVAREZ JUAN PABLO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 150699, '2011-06-20', '646610.00', 'A'), + ('2824', 3, 'VARGAS WOODROFFE FRANCISCO JOSE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 157414, '2011-06-22', + '287410.00', 'A'), + ('2825', 3, 'GARCIA GUILLEN VICENTE LUIS', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 144215, '2011-08-19', + '497230.00', 'A'), + ('2826', 3, 'GOMEZ GARCIA DIAMANTES PATRICIA MARIA', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2011-09-22', + '623930.00', 'A'), + ('2827', 3, 'PEREZ IGLESIAS BIBIANA', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 132958, '2011-09-30', '627940.00', 'A'), + ('2830', 3, 'VILLALONGA MORENES MARIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 169679, '2011-05-29', '474910.00', 'A'), + ('2831', 3, 'REY LOPEZ DAVID', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 150699, '2011-08-03', '7380.00', 'A'), + ('2832', 3, 'HOYO APARICIO JESUS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 116511, '2011-09-19', '612180.00', 'A'), + ('2836', 3, 'GOMEZ GARCIA LOPEZ CARLOS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 150699, '2011-09-21', '277540.00', 'A'), + ('2839', 3, 'GALIMERTI MARCO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 235197, '2011-08-28', '156870.00', 'A'), + ('2840', 3, 'BAROZZI GIUSEPE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 231989, '2011-05-25', '609500.00', 'A'), + ('2841', 3, 'MARIAN RENATO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-06-12', '576900.00', 'A'), + ('2842', 3, 'FAENZA CARLO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 126180, '2011-05-19', '55990.00', 'A'), + ('2843', 3, 'PESOLILLO CARMINE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 203162, '2011-06-26', '549230.00', 'A'), + ('2844', 3, 'CHIODI FRANCESCO MARIA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 199862, '2011-09-10', '578210.00', 'A'), + ('2845', 3, 'RUTA MARIO', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2011-06-19', '243350.00', 'A'), + ('2846', 3, 'BAZZONI MARINO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 101518, '2011-05-03', '482140.00', 'A'), + ('2848', 3, 'LAGASIO LEONARDO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 231989, '2011-05-04', '956670.00', 'A'), + ('2849', 3, 'VIERA DA CUNHA PAULO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 190393, '2011-04-05', '741520.00', 'A'), + ('2850', 3, 'DAL BEN DENIS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 116511, '2011-05-26', '837590.00', 'A'), + ('2851', 3, 'GIANELLI HERIBERTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 233927, '2011-05-01', '963400.00', 'A'), + ('2852', 3, 'JUSTINO DA SILVA DJAMIR', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-04-08', '304200.00', 'A'), + ('2853', 3, 'DIPASQUUALE GAETANO', '191821112', 'CRA 25 CALLE 100', + '574@terra.com.co', '2011-02-03', 172888, '2011-07-11', '630830.00', + 'A'), + ('2855', 3, 'CURI MAURO', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 199862, '2011-06-19', '315160.00', 'A'), + ('2856', 3, 'DI DIO MARCO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-20', '851210.00', 'A'), + ('2857', 3, 'ROBERTI MENDONCA CAIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-11', '310580.00', 'A'), + ('2859', 3, 'RAMOS MORENO DE SOUZA ANDRE ', '191821112', + 'CRA 25 CALLE 100', '133@facebook.com', '2011-02-03', 118777, + '2011-09-24', '64540.00', 'A'), + ('286', 8, 'INEXMODA', '191821112', 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 128662, '2011-06-21', '50150.00', 'A'), + ('2860', 3, 'JODJAHN DE CARVALHO FLAVIA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-06-27', + '324950.00', 'A'), + ('2862', 3, 'LAGASIO LEONARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 231989, '2011-07-04', '180760.00', 'A'), + ('2863', 3, 'MOON SUNG RIUL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-04-08', '610440.00', 'A'), + ('2865', 3, 'VAIDYANATHAN VIKRAM', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-11', '718220.00', 'A'), + ('2866', 3, 'NARAYANASWAMY RAMSUNDAR', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 73079, '2011-10-02', '61390.00', 'A'), + ('2867', 3, 'VADADA VENKATA RAMESH KUMAR', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-10', + '152300.00', 'A'), + ('2868', 3, 'RAMA KRISHNAN ', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-10', '577300.00', 'A'), + ('2869', 3, 'JALAN PRASHANT', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 122035, '2011-05-02', '429600.00', 'A'), + ('2871', 3, 'CHANDRASEKAR VENKAT', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 112862, '2011-06-27', '791800.00', 'A'), + ('2872', 3, 'CUMBAKONAM SWAMINATHAN SUBRAMANIAN', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-11', + '710650.00', 'A'), + ('288', 8, 'BCD TRAVEL', '191821112', 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-07-23', '645390.00', 'A'), + ('289', 3, 'EMBAJADA ARGENTINA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '1970-02-02', '749440.00', 'A'), + ('290', 3, 'EMBAJADA DE BRASIL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2010-11-16', '811030.00', 'A'), + ('293', 8, 'ONU', '191821112', 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2010-09-19', '584810.00', 'A'), + ('299', 1, 'BLANDON GUZMAN JHON JAIRO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-01-13', '201740.00', 'A'), + ('304', 3, 'COHEN DANIEL DYLAN', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 286785, '2010-11-17', '184850.00', 'A'), + ('306', 1, 'CINDU ANDINA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2009-06-11', '899230.00', 'A'), + ('31', 1, 'GARRIDO LEONARDO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127662, '2010-09-12', '801450.00', 'A'), + ('310', 3, 'CORPORACION CLUB EL NOGAL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2010-08-27', '918760.00', 'A'), + ('314', 3, 'CHAWLA AARON', '191821112', 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-04-08', '295840.00', 'A'), + ('317', 3, 'BAKER HUGHES', '191821112', 'CRA 25 CALLE 100', + '694@hotmail.com', '2011-02-03', 127591, '2011-04-03', '211990.00', + 'A'), + ('32', 1, 'PAEZ SEGURA JOSE ANTONIO', '191821112', 'CRA 25 CALLE 100', + '675@gmail.com', '2011-02-03', 129447, '2011-08-22', '717340.00', 'A'), + ('320', 1, 'MORENO PAEZ FREDDY ALEXANDER', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-31', + '971670.00', 'A'), + ('322', 1, 'CALDERON CARDOZO GASTON EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-05', + '990640.00', 'A'), + ('324', 1, 'ARCHILA MERA ALFREDOMANUEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-22', '77200.00', 'A'), + ('326', 1, 'MUÑOZ AVILA HERNEY', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-11-10', '550920.00', 'A'), + ('327', 1, 'CHAPARRO CUBILLOS FABIAN ANDRES', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-15', + '685080.00', 'A'), + ('329', 1, 'GOMEZ LOPEZ JUAN SEBASTIAN', '191821112', 'CRA 25 CALLE 100', + '970@yahoo.com', '2011-02-03', 127591, '2011-03-20', '808070.00', 'A'), + ('33', 1, 'MARTINEZ MARIÑO HENRY HERNAN', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-04-20', + '182370.00', 'A'), + ('330', 3, 'MAPSTONE NAOMI LEA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 122035, '2010-02-21', '722380.00', 'A'), + ('332', 3, 'ROSSI BURRI NELLY', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132165, '2010-05-10', '771210.00', 'A'), + ('333', 1, 'AVELLANEDA OVIEDO JUAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-25', + '293060.00', 'A'), + ('334', 1, 'SUZA FLOREZ JUAN PABLO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-05-13', '151650.00', 'A'), + ('335', 1, 'ESGUERRA ALVARO ANDRES', '191821112', 'CRA 25 CALLE 100', + '11@facebook.com', '2011-02-03', 127591, '2011-09-10', '879080.00', + 'A'), + ('337', 3, 'DE LA HARPE MARTIN CARAPET WALTER', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-27', + '64960.00', 'A'), + ('339', 1, 'HERNANDEZ ACOSTA SERGIO ANDRES', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 129499, '2011-06-22', + '322570.00', 'A'), + ('340', 3, 'ZARAMA DE LA ESPRIELLA MIGUEL PATRICIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-27', + '102360.00', 'A'), + ('342', 1, 'CABRERA VASQUEZ JUAN PABLO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-01', '413440.00', 'A'), + ('343', 3, 'RICHARDSON BEN MARRIS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 286785, '2010-05-18', '434890.00', 'A'), + ('344', 1, 'OLARTE PINZON MIGUEL FELIPE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-30', + '934140.00', 'A'), + ('345', 1, 'SOLER SEBASTIAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2011-04-20', '366020.00', 'A'), + ('346', 1, 'PRIETO JUAN ESTEBAN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2010-07-12', '27690.00', 'A'), + ('349', 1, 'BARRERO VELASCO DAVID', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-01', '472850.00', 'A'), + ('35', 1, 'VELASQUEZ RAMOS JUAN MANUEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-13', '251940.00', 'A'), + ('350', 1, 'RANGEL GARCIA SERGIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-03-20', '7880.00', 'A'), + ('353', 1, 'ALVAREZ ACEVEDO JOHN FREDDY', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-16', + '540070.00', 'A'), + ('354', 1, 'VILLAMARIN HOME WILMAR ALFREDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-19', + '458810.00', 'A'), + ('355', 3, 'SLUCHIN NAAMAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 263813, '2010-12-01', '673830.00', 'A'), + ('357', 1, 'BULLA BERNAL LUIS ERNESTO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-06-14', '942160.00', 'A'), + ('358', 1, 'BRACCIA AVILA GIANCARLO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-01', '732620.00', 'A'), + ('359', 1, 'RODRIGUEZ PINTO RAUL DAVID', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-24', '836600.00', 'A'), + ('36', 1, 'MALDONADO ALVAREZ JAIRO ASDRUBAL', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-06-19', + '980270.00', 'A'), + ('362', 1, 'POMBO POLANCO JUAN BERNARDO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-18', + '124130.00', 'A'), + ('363', 1, 'CARDENAS SUAREZ CARLOS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-01', + '372920.00', 'A'), + ('364', 1, 'RIVERA MAZO JOSE DAVID', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2010-06-10', '492220.00', 'A'), + ('365', 1, 'LEDERMAN CORDIKI JONATHAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-12-03', '342340.00', 'A'), + ('367', 1, 'BARRERA MARTINEZ LUIS CARLOS', '191821112', + 'CRA 25 CALLE 100', '35@yahoo.com.mx', '2011-02-03', 127591, + '2011-05-24', '148130.00', 'A'), + ('368', 1, 'SEPULVEDA RAMIREZ DANIEL MARCELO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-31', + '35560.00', 'A'), + ('369', 1, 'QUINTERO DIAZ WILSON ASDRUBAL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', + '733430.00', 'A'), + ('37', 1, 'RESTREPO SUAREZ HENRY BERNARDO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-07-25', + '145540.00', 'A'), + ('370', 1, 'ROJAS YARA WILLMAR ARLEY', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-12-03', '560450.00', 'A'), + ('371', 3, 'CARVER LOUISE EMILY', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 286785, '2010-10-07', '601980.00', 'A'), + ('372', 3, 'VINCENT DAVID', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 286785, '2011-03-06', '328540.00', 'A'), + ('374', 1, 'GONZALEZ DELGADO MIGUEL ANGEL', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-18', + '198260.00', 'A'), + ('375', 1, 'PAEZ SIMON', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-06-25', '480970.00', 'A'), + ('376', 1, 'CADOSCH DELMAR ELIE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-10-07', '810080.00', 'A'), + ('377', 1, 'HERRERA VASQUEZ DANIEL EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-06-30', + '607460.00', 'A'), + ('378', 1, 'CORREAL ROJAS RONALD', '191821112', 'CRA 25 CALLE 100', + '269@facebook.com', '2011-02-03', 127591, '2011-07-16', '607080.00', + 'A'), + ('379', 1, 'VOIDONNIKOLAS MUÑOS PANAGIOTIS', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-27', + '213010.00', 'A'), + ('38', 1, 'CANAL ROJAS MAURICIO HERNANDO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-05-29', + '786900.00', 'A'), + ('380', 1, 'DIAZ ECHEVERRI JUAN DAVID ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-20', + '243800.00', 'A'), + ('381', 1, 'CIFUENTES MARIN HERNANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-05-26', '579960.00', 'A'), + ('382', 3, 'PAXTON LUCINDA HARRIET', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 107159, '2011-05-23', '168420.00', 'A'), + ('384', 3, 'POYNTON BRIAN GEORGE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 286785, '2011-03-20', '5790.00', 'A'), + ('385', 3, 'TERMIGNONI ADRIANO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-01-14', '722320.00', 'A'), + ('386', 3, 'CARDWELL PAULA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-02-17', '594230.00', 'A'), + ('389', 1, 'FONCECA MARTINEZ MIGUEL ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-25', + '778680.00', 'A'), + ('39', 1, 'GARCIA SUAREZ WILLIAM ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-25', + '497880.00', 'A'), + ('390', 1, 'GUERRERO NELSON', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-12-03', '178650.00', 'A'), + ('391', 1, 'VICTORIA PENA FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-06-22', '557200.00', 'A'), + ('392', 1, 'VAN HISSENHOVEN FERRERO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-13', '250060.00', 'A'), + ('393', 1, 'CACERES ORDUZ JUAN GUILLERMO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-28', + '578690.00', 'A'), + ('394', 1, 'QUINTERO ALVARO FELIPE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-17', '143270.00', 'A'), + ('395', 1, 'ANZOLA PEREZ CARLOSDAVID', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-04', '980300.00', 'A'), + ('397', 1, 'LLOREDA ORTIZ CARLOS JOSE', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-27', '417470.00', 'A'), + ('398', 1, 'GONZALES LONDOÑO SEBASTIAN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-06-19', '672310.00', 'A'), + ('4', 1, 'LONDOÑO DOMINGUEZ ERNESTO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-05', '324610.00', 'A'), + ('40', 1, 'MORENO ANGULO ORLANDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-01', '128690.00', 'A'), + ('400', 8, 'TRANSELCA .A', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 133535, '2011-04-14', '528930.00', 'A'), + ('403', 1, 'VERGARA MURILLO JUAN FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-04', + '42900.00', 'A'), + ('405', 1, 'CAPERA CAPERA HARRINSON', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127799, '2011-06-12', '961000.00', 'A'), + ('407', 1, 'MORENO MORA WILLIAM EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-22', + '872780.00', 'A'), + ('408', 1, 'HIGUERA ROA NICOLAS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-03-28', '910430.00', 'A'), + ('409', 1, 'FORERO CASTILLO OSCAR ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '988@terra.com.co', '2011-02-03', 127591, + '2011-07-23', '933810.00', 'A'), + ('410', 1, 'LOPEZ MURCIA JULIAN DANIEL', '191821112', 'CRA 25 CALLE 100', + '399@facebook.com', '2011-02-03', 127591, '2011-08-08', '937790.00', + 'A'), + ('411', 1, 'ALZATE JOHN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-09-09', '887490.00', 'A'), + ('412', 1, 'GONZALES GONZALES ORLANDO ANDREY', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-30', + '624080.00', 'A'), + ('413', 1, 'ESCOLANO VALENTIN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-05', '457930.00', 'A'), + ('414', 1, 'JARAMILLO RODRIGUEZ JUAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-12', + '417420.00', 'A'), + ('415', 1, 'GARCIA MUÑOZ DANIEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-10-02', '713300.00', 'A'), + ('416', 1, 'PIÑEROS ARENAS JUAN DAVID', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-10-17', '314260.00', 'A'), + ('417', 1, 'ORTIZ ARROYAVE ANDRES', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-05-21', '431370.00', 'A'), + ('418', 1, 'BAYONA BARRIENTOS JEAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-12', + '214090.00', 'A'), + ('419', 1, 'AGUDELO VASQUEZ JUAN FELIPE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-30', + '776360.00', 'A'), + ('420', 1, 'CALLE DANIEL CJ PRODUCCIONES', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-04', + '239500.00', 'A'), + ('422', 1, 'CANO BETANCUR ANDRES', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-08-20', '623620.00', 'A'), + ('423', 1, 'CALDAS BARRETO LUZ MIREYA', '191821112', 'CRA 25 CALLE 100', + '991@facebook.com', '2011-02-03', 127591, '2011-05-22', '512840.00', + 'A'), + ('424', 1, 'SIMBAQUEBA JOSE ERNESTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-07-25', '693320.00', 'A'), + ('425', 1, 'DE SILVESTRE CALERO LUIS GABRIEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-18', + '928110.00', 'A'), + ('426', 1, 'ZORRO PERALTA YEZID', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-07-25', '560560.00', 'A'), + ('428', 1, 'SUAREZ OIDOR DARWIN LEONARDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131272, '2011-09-05', + '410650.00', 'A'), + ('429', 1, 'GIRAL CARRILLO LUIS ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-13', + '997850.00', 'A'), + ('43', 1, 'MARULANDA VALENCIA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-17', '365550.00', 'A'), + ('430', 1, 'CORDOBA GARCES JUAN PABLO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-18', '757320.00', 'A'), + ('431', 1, 'ARIAS TAMAYO DIEGO MAURICIO', '191821112', + 'CRA 25 CALLE 100', '36@yahoo.com', '2011-02-03', 127591, '2011-09-05', + '793050.00', 'A'), + ('432', 1, 'EICHMANN PERRET MARC WILLY', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-22', '693270.00', 'A'), + ('433', 1, 'DIAZ DANIEL ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2008-09-18', '87200.00', 'A'), + ('435', 1, 'FACCINI GONZALEZ HERMANN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2009-01-08', '519420.00', 'A'), + ('436', 1, 'URIBE DUQUE FELIPE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-28', '528470.00', 'A'), + ('437', 1, 'TAVERA GAONA GABREL LEAL', '191821112', 'CRA 25 CALLE 100', + '280@terra.com.co', '2011-02-03', 127591, '2011-04-28', '84120.00', + 'A'), + ('438', 1, 'ORDOÑEZ PARIS FERNANDO MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-09-26', + '835170.00', 'A'), + ('439', 1, 'VILLEGAS ANDRES', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-03-19', '923520.00', 'A'), + ('44', 1, 'MARTINEZ PEDRO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-08-13', '738750.00', 'A'), + ('440', 1, 'MARTINEZ RUEDA JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '805@hotmail.es', '2011-02-03', 127591, '2011-04-07', '112050.00', 'A'), + ('441', 1, 'ROLDAN JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-05-25', '789720.00', 'A'), + ('442', 1, 'PEREZ BRANDWAYN ELIYAU MOISES', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-10-20', + '612450.00', 'A'), + ('443', 1, 'VALLEJO TORO JUAN DIEGO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128579, '2011-08-16', '693080.00', 'A'), + ('444', 1, 'TORRES CABRERA EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-03-19', '628070.00', 'A'), + ('445', 1, 'MERINO MEJIA GERMAN ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-28', + '61100.00', 'A'), + ('447', 1, 'GOMEZ GOMEZ JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-08', '923070.00', 'A'), + ('448', 1, 'RAUSCH CHEHEBAR STEVEN JOSEPH', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-09-27', + '351540.00', 'A'), + ('449', 1, 'RESTREPO TRUCCO ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-28', '988500.00', 'A'), + ('45', 1, 'GUTIERREZ JARAMILLO CARLOS MARIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-22', + '597090.00', 'A'), + ('450', 1, 'GOLDSTEIN VAIDA ELI JACK', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-11', '887860.00', 'A'), + ('451', 1, 'OLEA PINEDA EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-10', '473800.00', 'A'), + ('452', 1, 'JORGE OROZCO', '191821112', 'CRA 25 CALLE 100', + '503@hotmail.es', '2011-02-03', 127591, '2011-06-02', '705410.00', 'A'), + ('454', 1, 'DE LA TORRE GOMEZ GERMAN ERNESTO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-03', + '411990.00', 'A'), + ('456', 1, 'MADERO ARIAS JUAN PABLO', '191821112', 'CRA 25 CALLE 100', + '452@hotmail.es', '2011-02-03', 127591, '2011-08-22', '479090.00', 'A'), + ('457', 1, 'GOMEZ MACHUCA ALVARO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-12', + '166430.00', 'A'), + ('458', 1, 'MENDIETA TOBON DANIEL RICARDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-08', + '394880.00', 'A'), + ('459', 1, 'VILLADIEGO CORTINA JAVIER TOMAS', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-26', + '475110.00', 'A'), + ('46', 1, 'FERRUCHO ARCINIEGAS JUAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', + '769220.00', 'A'), + ('460', 1, 'DERESER HARTUNG ERNESTO JOSE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-12-25', + '190900.00', 'A'), + ('461', 1, 'RAMIREZ PENA ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-06-25', '529190.00', 'A'), + ('463', 1, 'IREGUI REYES LUIS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', '778590.00', 'A'), + ('464', 1, 'PINTO GOMEZ MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132775, '2010-06-24', '673270.00', 'A'), + ('465', 1, 'RAMIREZ RAMIREZ FERNANDO ALONSO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127799, '2011-10-01', + '30570.00', 'A'), + ('466', 1, 'BERRIDO TRUJILLO JORGE HENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2011-10-06', + '133040.00', 'A'), + ('467', 1, 'RIVERA CARVAJAL RAFAEL HUMBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-20', + '573500.00', 'A'), + ('468', 3, 'FLOREZ PUENTES IVAN ALFONSO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-08', + '468380.00', 'A'), + ('469', 1, 'BALLESTEROS FLOREZ IVAN DARIO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-02', + '621410.00', 'A'), + ('47', 1, 'MARIN FLOREZ OMAR EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-30', '54840.00', 'A'), + ('470', 1, 'RODRIGO PEÑA HERRERA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 237734, '2011-10-04', '701890.00', 'A'), + ('471', 1, 'RODRIGUEZ SILVA ROGELIO', '191821112', 'CRA 25 CALLE 100', + '163@gmail.com', '2011-02-03', 127591, '2011-05-26', '645210.00', 'A'), + ('473', 1, 'VASQUEZ VELANDIA JUAN GABRIEL', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-05-04', + '666330.00', 'A'), + ('474', 1, 'ROBLEDO JAIME', '191821112', 'CRA 25 CALLE 100', + '409@yahoo.com', '2011-02-03', 127591, '2011-05-31', '970480.00', 'A'), + ('475', 1, 'GRIMBERG DIAZ PHILIP', '191821112', 'CRA 25 CALLE 100', + '723@yahoo.com', '2011-02-03', 127591, '2011-03-30', '853430.00', 'A'), + ('476', 1, 'CHAUSTRE GARCIA JUAN PABLO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-26', '355670.00', 'A'), + ('477', 1, 'GOMEZ FLOREZ IGNASIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-14', '218090.00', 'A'), + ('478', 1, 'LUIS ALBERTO CABRERA PUENTES', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-05-26', + '23420.00', 'A'), + ('479', 1, 'MARTINEZ ZAPATA JUAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '234@gmail.com', '2011-02-03', 127122, '2011-07-01', + '462840.00', 'A'), + ('48', 1, 'PARRA IBAÑEZ FABIAN ERNESTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-02-01', '966520.00', 'A'), + ('480', 3, 'WESTERBERG JAN RICKARD', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 300701, '2011-02-01', '243940.00', 'A'), + ('484', 1, 'RODRIGUEZ VILLALOBOS EDGAR FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-19', + '860320.00', 'A'), + ('486', 1, 'NAVARRO REYES DIEGO FELIPE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-01', '530150.00', 'A'), + ('487', 1, 'NOGUERA RICAURTE ANDRES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-01-21', '384100.00', 'A'), + ('488', 1, 'RUIZ VEJARANO CARLOS DANIEL', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-27', + '330030.00', 'A'), + ('489', 1, 'CORREA PEREZ ANDRES', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-12-14', '497860.00', 'A'), + ('49', 1, 'FLOREZ PEREZ RUBIEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-23', '668090.00', 'A'), + ('490', 1, 'REYES GOMEZ LUIS ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-26', '499210.00', 'A'), + ('491', 3, 'BERNAL LEON ALBERTO JOSE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 150699, '2011-03-29', '2470.00', 'A'), + ('492', 1, 'FELIPE JARAMILLO CARO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2009-10-31', '514700.00', 'A'), + ('493', 1, 'GOMEZ PARRA GERMAN DARIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-01-29', '566100.00', 'A'), + ('494', 1, 'VALLEJO RAMIREZ CARLOS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-13', + '286390.00', 'A'), + ('495', 1, 'DIAZ LONDOÑO HUGO MARIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-04-06', '733670.00', 'A'), + ('496', 3, 'VAN BAKERGEM RONALD JAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2008-11-05', '809190.00', 'A'), + ('497', 1, 'MENDEZ RAMIREZ JOSE LEONARDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-10', + '844920.00', 'A'), + ('498', 3, 'QUI TANILLA HENRIQUEZ PAUL ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-10', + '797030.00', 'A'), + ('499', 3, 'PELEATO FLOREAL', '191821112', 'CRA 25 CALLE 100', + '531@hotmail.com', '2011-02-03', 188640, '2011-04-23', '450370.00', + 'A'), + ('50', 1, 'SILVA GUZMAN MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-03-24', '440890.00', 'A'), + ('502', 3, 'LEO ULF GORAN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 300701, '2010-07-26', '181840.00', 'A'), + ('503', 3, 'KARLSSON DANIEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 300701, '2011-07-22', '50680.00', 'A'), + ('504', 1, 'JIMENEZ JANER ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '889@hotmail.es', '2011-02-03', 203272, '2011-08-29', '707880.00', 'A'), + ('506', 1, 'PABON OCHOA ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-14', '813050.00', 'A'), + ('507', 1, 'ACHURY CADENA CARLOS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-26', + '903240.00', 'A'), + ('508', 1, 'ECHEVERRY GARZON SEBASTIN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-23', '77050.00', 'A'), + ('509', 1, 'PIÑEROS PEÑA LUIS CARLOS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-29', '675550.00', 'A'), + ('51', 1, 'CAICEDO URREA JAIME ORLANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127300, '2011-08-17', '200160.00', 'A'), + ('510', 1, 'MARTINEZ MARTINEZ LUIS EDUARDO', '191821112', + 'CRA 25 CALLE 100', '586@facebook.com', '2011-02-03', 127591, + '2010-08-28', '146600.00', 'A'), + ('511', 1, 'MOLANO PEÑA JESUS ANDRES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-02-05', '706320.00', 'A'), + ('512', 3, 'RUDOLPHY FONTAINE ANDRES', '191821112', 'CRA 25 CALLE 100', + '492@yahoo.com', '2011-02-03', 117002, '2011-04-12', '91820.00', 'A'), + ('513', 1, 'NEIRA CHAVARRO JOHN JAIRO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-12', '340120.00', 'A'), + ('514', 3, 'MENDEZ VILLALOBOS ARMANDO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 145135, '2011-03-25', '425160.00', 'A'), + ('515', 3, 'HERNANDEZ OLIVA JOSE DE LA CRUZ', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-03-25', + '105440.00', 'A'), + ('518', 3, 'JANCO NICOLAS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-15', '955830.00', 'A'), + ('52', 1, 'TAPIA MUÑOZ JAIRO RICARDO', '191821112', 'CRA 25 CALLE 100', + '920@hotmail.es', '2011-02-03', 127591, '2011-10-05', '678130.00', 'A'), + ('520', 1, 'ALVARADO JAVIER', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-26', '895550.00', 'A'), + ('521', 1, 'HUERFANO SOTO JONATHAN', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-30', '619910.00', 'A'), + ('522', 1, 'HUERFANO SOTO JONATHAN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-06-04', '412900.00', 'A'), + ('523', 1, 'RODRIGEZ GOMEZ WILMAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-05-14', '204790.00', 'A'), + ('525', 1, 'ARROYO BAPTISTE DIEGO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-09', '311810.00', 'A'), + ('526', 1, 'PULECIO BOEK DANIEL', '191821112', 'CRA 25 CALLE 100', + '718@gmail.com', '2011-02-03', 127591, '2011-08-12', '203350.00', 'A'), + ('527', 1, 'ESLAVA VELEZ SEBASTIAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-10-08', '81300.00', 'A'), + ('528', 1, 'CASTRO FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-05-06', '796470.00', 'A'), + ('53', 1, 'HINCAPIE MARTINEZ RICARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127573, '2011-09-26', '790180.00', 'A'), + ('530', 1, 'ZORRILLA PUJANA NICOLAS', '191821112', 'CRA 25 CALLE 100', + '312@yahoo.es', '2011-02-03', 127591, '2011-06-06', '302750.00', 'A'), + ('531', 1, 'ZORRILLA PUJANA NICOLAS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-06-06', '298440.00', 'A'), + ('532', 1, 'PRETEL ARTEAGA MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-05-09', '583980.00', 'A'), + ('533', 1, 'RAMOS VERGARA HUMBERTO CARLOS', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 131105, '2010-05-13', + '24560.00', 'A'), + ('534', 1, 'BONILLA PIÑEROS DIEGO FELIPE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', + '370880.00', 'A'), + ('535', 1, 'BELTRAN TRIVIÑO JULIAN DAVID', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-11-06', + '780710.00', 'A'), + ('536', 3, 'BLOD ULF FREDERICK EDWARD', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-04-06', '790900.00', 'A'), + ('537', 1, 'VANEGAS OROZCO SEBASTIAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-11-10', '612400.00', 'A'), + ('538', 3, 'ORUE VALLE MONICA CECILIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 97885, '2011-09-15', '689270.00', 'A'), + ('539', 1, 'AGUDELO BEDOYA ANDRES JOSE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2011-05-24', '609160.00', 'A'), + ('54', 1, 'DE HOYOS TRESPALACIOS MAURICIO ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-21', + '916500.00', 'A'), + ('540', 3, 'HEIJKENSKJOLD PER JESPER', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-06', '977980.00', 'A'), + ('541', 3, 'GONZALEZ ALVARADO LUIS RAUL', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-08-27', + '62430.00', 'A'), + ('543', 1, 'GRUPO SURAMERICA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-08-24', '703760.00', 'A'), + ('545', 1, 'CORPORACION CONTEXTO ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-08', '809570.00', 'A'), + ('546', 3, 'LUNDIN JOHAN ERIK ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-07-29', '895330.00', 'A'), + ('548', 3, 'VEGERANO JOSE ', '191821112', 'CRA 25 CALLE 100', + '221@facebook.com', '2011-02-03', 190393, '2011-06-05', '553780.00', + 'A'), + ('549', 3, 'SERRANO MADRID CLAUDIA INES', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-27', + '625060.00', 'A'), + ('55', 1, 'TAFUR GOMEZ ALEXANDER', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127300, '2010-09-12', '211980.00', 'A'), + ('550', 1, 'MARTINEZ ACEVEDO MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-10-06', '463920.00', 'A'), + ('551', 1, 'GONZALEZ MORENO PABLO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-07-21', '444450.00', 'A'), + ('552', 1, 'MEJIA ROJAS ANDRES FELIPE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-08-02', '830470.00', 'A'), + ('553', 3, 'RODRIGUEZ ANTHONY HANSEL', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-16', '819000.00', 'A'), + ('554', 1, 'ABUCHAIBE ANNICCHRICO JOSE ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-31', + '603610.00', 'A'), + ('555', 3, 'MOYES KIMBERLY', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-04-08', '561020.00', 'A'), + ('556', 3, 'MONTINI MARIO JOSE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118942, '2010-03-16', '994280.00', 'A'), + ('557', 3, 'HOGBERG DANIEL TOBIAS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-15', '288350.00', 'A'), + ('559', 1, 'OROZCO PFEIZER MARTIN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-10-07', '429520.00', 'A'), + ('56', 1, 'NARIÑO ROJAS GABRIEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-27', '310390.00', 'A'), + ('560', 1, 'GARCIA MONTOYA ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-06-02', '770840.00', 'A'), + ('562', 1, 'VELASQUEZ PALACIO MANUEL ORLANDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-06-23', + '515670.00', 'A'), + ('563', 1, 'GALLEGO PEREZ DIEGO ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-14', + '881460.00', 'A'), + ('564', 1, 'RUEDA URREGO JUAN ESTEBAN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-05-04', '860270.00', 'A'), + ('565', 1, 'RESTREPO DEL TORO MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-05-10', '656960.00', 'A'), + ('567', 1, 'TORO VALENCIA FELIPE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-08-04', '549090.00', 'A'), + ('568', 1, 'VILLEGAS LUIS ALFONSO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-05-02', '633490.00', 'A'), + ('569', 3, 'RIDSTROM CHRISTER ANDERS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 300701, '2011-09-06', '520150.00', 'A'), + ('57', 1, 'TOVAR ARANGO JOHN JAIME', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127662, '2010-07-03', '916010.00', 'A'), + ('570', 3, 'SHEPHERD DAVID', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2008-05-11', '700280.00', 'A'), + ('573', 3, 'BENGTSSON JOHAN ANDREAS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-04-06', '196830.00', 'A'), + ('574', 3, 'PERSSON HANS JONAS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-06-09', '172340.00', 'A'), + ('575', 3, 'SYNNEBY BJORN ERIK', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-15', '271210.00', 'A'), + ('577', 3, 'COHEN PAUL KIRTAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-25', '381490.00', 'A'), + ('578', 3, 'ROMERO BRAVO FERNANDO EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', + '390360.00', 'A'), + ('579', 3, 'GUTHRIE ROBERT DEAN', '191821112', 'CRA 25 CALLE 100', + '794@gmail.com', '2011-02-03', 161705, '2010-07-20', '807350.00', 'A'), + ('58', 1, 'TORRES ESCOBAR JAIRO ALFONSO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-06-17', + '648860.00', 'A'), + ('580', 3, 'ROCASERMEÑO MONTENEGRO MARIO JOSE', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 139844, '2010-12-01', + '865650.00', 'A'), + ('581', 1, 'COCK JORGE EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-08-19', '906210.00', 'A'), + ('582', 3, 'REISS ANDREAS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2009-01-31', '934120.00', 'A'), + ('584', 3, 'ECHEVERRIA CASTILLO GERMAN FRANCISCO', '191821112', + 'CRA 25 CALLE 100', '982@yahoo.com', '2011-02-03', 139844, '2011-07-20', + '957370.00', 'A'), + ('585', 3, 'BRANDT CARLOS GUSTAVO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-10', '931030.00', 'A'), + ('586', 3, 'VEGA NUÑEZ GILBERTO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-14', + '783010.00', 'A'), + ('587', 1, 'BEJAR MUÑOZ JORDI', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 196234, '2010-10-08', '121990.00', 'A'), + ('588', 3, 'WADSO KERSTIN ELIZABETH', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-17', '260890.00', 'A'), + ('59', 1, 'RAMOS FORERO JAVIER', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-06-20', '496300.00', 'A'), + ('590', 1, 'RODRIGUEZ BETANCOURT JAVIER AUGUSTO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2011-05-23', + '909850.00', 'A'), + ('592', 1, 'ARBOLEDA HALABY RODRIGO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 150699, '2009-02-03', '939170.00', 'A'), + ('593', 1, 'CURE CURE CARLOS ALFREDO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 150699, '2011-07-11', '494600.00', 'A'), + ('594', 3, 'VIDELA PEREZ OSCAR EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 117002, '2011-07-13', '655510.00', 'A'), + ('595', 1, 'GONZALEZ GAVIRIA NESTOR', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2009-09-28', '793760.00', 'A'), + ('596', 3, 'IZQUIERDO DELGADO DIONISIO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2009-09-24', '2250.00', 'A'), + ('597', 1, 'MORENO DAIRO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127300, '2011-06-14', '629990.00', 'A'), + ('598', 1, 'RESTREPO FERNNDEZ SOTO JOSE MANUEL', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-08-31', + '143210.00', 'A'), + ('599', 3, 'YERYES VERGARA MARIA SOLEDAD', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-10-11', + '826060.00', 'A'), + ('6', 1, 'GUZMAN ESCOBAR JOSE VICENTE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-10', '26390.00', 'A'), + ('60', 1, 'ELEJALDE ESCOBAR TOMAS ANDRES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-11-09', + '534910.00', 'A'), + ('601', 1, 'ESCAF ESCAF WILLIAM MIGUEL', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 150699, '2011-07-26', '25190.00', 'A'), + ('602', 1, 'CEBALLOS ZULUAGA JOSE ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-03', + '23920.00', 'A'), + ('603', 1, 'OLIVELLA GUERRERO RAFAEL ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2010-06-23', + '44040.00', 'A'), + ('604', 1, 'ESCOBAR GALLO CARLOS HUGO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-09', '148420.00', 'A'), + ('605', 1, 'ESCORCIA RAMIREZ EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128569, '2011-04-01', '609990.00', 'A'), + ('606', 1, 'MELGAREJO MORENO PAULA ANDREA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-05', + '604700.00', 'A'), + ('607', 1, 'TOBON CALLE CARLOS GUILLERMO', '191821112', + 'CRA 25 CALLE 100', '689@hotmail.es', '2011-02-03', 128662, + '2011-03-16', '193510.00', 'A'), + ('608', 3, 'TREVIÑO NOPHAL SILVANO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 110709, '2011-05-27', '153470.00', 'A'), + ('609', 1, 'CARDER VELEZ EDWIN JOHN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-04', '186830.00', 'A'), + ('61', 1, 'GASCA DAZA VICTOR HERNANDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-09-09', '185660.00', 'A'), + ('610', 3, 'DAVIS JOHN BRADLEY', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-04-06', '473740.00', 'A'), + ('611', 1, 'BAQUERO SLDARRIAGA ALVARO ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-09-15', + '808210.00', 'A'), + ('612', 3, 'SERRACIN ARAUZ YANIRA YAMILET', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 131272, '2011-06-09', + '619820.00', 'A'), + ('613', 1, 'MORA SOTO ALVARO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-09-20', '674450.00', 'A'), + ('614', 1, 'SUAREZ RODRIGUEZ HERNANDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-03-29', '512820.00', 'A'), + ('616', 1, 'BAQUERO GARCIA JORGE LUIS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2010-07-14', '165160.00', 'A'), + ('617', 3, 'ABADI MADURO MOISES SIMON', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 131272, '2009-03-31', '203640.00', 'A'), + ('62', 3, 'FLOWER LYNDON BRUCE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 231373, '2011-05-16', '323560.00', 'A'), + ('624', 8, 'OLARTE LEONARDO', '191821112', 'CRA 25 CALLE 100', + '6@hotmail.com', '2011-02-03', 127591, '2011-06-03', '219790.00', 'A'), + ('63', 1, 'RUBIO CORTES OSCAR', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-04-28', '60830.00', 'A'), + ('630', 5, 'PROEXPORT', '191821112', 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 128662, '2010-08-12', '708320.00', 'A'), + ('632', 8, 'SUPER COFFEE ', '191821112', 'CRA 25 CALLE 100', + '792@hotmail.es', '2011-02-03', 127591, '2011-08-30', '306460.00', 'A'), + ('636', 8, 'NOGAL ASESORIAS FINANCIERAS', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-04-07', + '752150.00', 'A'), + ('64', 1, 'GUERRA MARTINEZ MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-24', '333480.00', 'A'), + ('645', 8, 'GIZ - PROFIS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-31', '566330.00', 'A'), + ('652', 3, 'QBE DEL ISTMO COMPAÑIA DE REASEGUROS ', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-14', + '932190.00', 'A'), + ('655', 3, 'CORP. CENTRO DE ESTUDIOS DE DERECHO JUSTICIA Y SOCIEDAD', + '191821112', 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, + '2010-05-04', '440370.00', 'A'), + ('659', 3, 'GOOD YEAR', '191821112', 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 128662, '2010-09-24', '993830.00', 'A'), + ('660', 3, 'ARCINIEGAS Y VILLAMIZAR', '191821112', 'CRA 25 CALLE 100', + '258@yahoo.com', '2011-02-03', 127591, '2010-12-02', '787450.00', 'A'), + ('67', 1, 'LOPEZ HOYOS JUAN DIEGO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127662, '2010-04-13', '665230.00', 'A'), + ('670', 8, 'APPLUS NORCONTROL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 133535, '2011-09-06', '83210.00', 'A'), + ('672', 3, 'KERLL SEBASTIAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 287273, '2010-12-19', '501610.00', 'A'), + ('673', 1, 'RESTREPO MOLINA RAMIRO ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 144215, '2010-12-18', + '457290.00', 'A'), + ('674', 1, 'PEREZ GIL JOSE IGNACIO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-08-18', '781610.00', 'A'), + ('676', 1, 'GARCIA LONDOÑO FRANCISCO JAVIER', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-23', + '336160.00', 'A'), + ('677', 3, 'RIJLAARSDAM KARIN AN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-07-03', '72210.00', 'A'), + ('679', 1, 'LIZCANO MONTEALEGRE ARNULFO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127203, '2011-02-01', + '546170.00', 'A'), + ('68', 1, 'MARTINEZ SILVA EDGAR', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-29', '54250.00', 'A'), + ('680', 3, 'OLIVARI MAYER PATRICIA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 122642, '2011-08-01', '673170.00', 'A'), + ('682', 3, 'CHEVALIER FRANCK PIERRE CHARLES', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 263813, '2010-12-01', + '617280.00', 'A'), + ('683', 3, 'NG WAI WING ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 126909, '2011-06-14', '904310.00', 'A'), + ('684', 3, 'MULLER DOMINGUEZ CARLOS ANDRES', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-22', + '669700.00', 'A'), + ('685', 3, 'MOSQUEDA DOMNGUEZ ANGEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-04-08', '635580.00', 'A'), + ('686', 3, 'LARREGUI MARIN LEON', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-08', '168800.00', 'A'), + ('687', 3, 'VARGAS VERGARA ALEJANDRO BRAULIO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 159245, '2011-09-14', + '937260.00', 'A'), + ('688', 3, 'SKINNER LYNN CHERYL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-06-12', '179890.00', 'A'), + ('689', 1, 'URIBE CORREA LEONARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2010-07-29', '87680.00', 'A'), + ('690', 1, 'TAMAYO JARAMILLO FRANCISCO JAVIER', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-11-10', + '898730.00', 'A'), + ('691', 3, 'MOTABAN DE BORGES PAULA ELENA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2010-09-24', + '230610.00', 'A'), + ('692', 5, 'FERNANDEZ NALDA JOSE MANUEL ', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-06-28', + '456850.00', 'A'), + ('693', 1, 'GOMEZ RESTREPO JUAN FELIPE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-06-28', '592420.00', 'A'), + ('694', 1, 'CARDENAS TAMAYO JOSE JAIME', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-08-08', '591550.00', 'A'), + ('696', 1, 'RESTREPO ARANGO ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-03-31', '127820.00', 'A'), + ('697', 1, 'ROCABADO PASTRANA ROBERT JAVIER', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127443, '2011-08-13', + '97600.00', 'A'), + ('698', 3, 'JARVINEN JOONAS JORI KRISTIAN', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196234, '2011-05-29', + '104560.00', 'A'), + ('699', 1, 'MORENO PEREZ HERNAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-30', '230000.00', 'A'), + ('7', 1, 'PUYANA RAMOS GUILLERMO ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-27', + '331830.00', 'A'), + ('70', 1, 'GALINDO MANZANO JAVIER FRANCISCO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-31', + '214890.00', 'A'), + ('701', 1, 'ROMERO PEREZ ARCESIO JOSE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 132775, '2011-07-13', '491650.00', 'A'), + ('703', 1, 'CHAPARRO AGUDELO LEONARDO VIRGILIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-05-04', + '271320.00', 'A'), + ('704', 5, 'VASQUEZ YANIS MARIA DEL PILAR', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-10-13', + '508820.00', 'A'), + ('705', 3, 'BARBERO JOSE ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 116511, '2010-09-13', '730170.00', 'A'), + ('706', 1, 'CARMONA HERNANDEZ MIGUEL ANGEL', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-11-08', + '124380.00', 'A'), + ('707', 1, 'PEREZ SUAREZ JORGE ANDRES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132775, '2011-09-14', '431370.00', 'A'), + ('708', 1, 'ROJAS JORGE MARIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 130135, '2011-04-01', '783740.00', 'A'), + ('71', 1, 'DIAZ JUAN PABLO/JULES JAVIER', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-10-01', + '247860.00', 'A'), + ('711', 3, 'CATALDO CARLOS ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 116773, '2011-06-06', '984810.00', 'A'), + ('716', 5, 'MACIAS PIZARRO PATRICIO ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 117002, '2011-06-07', '376260.00', 'A'), + ('717', 1, 'RENDON MAYA DAVID ALEXANDER', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 130273, '2010-07-25', + '332310.00', 'A'), + ('718', 3, 'DE HILDEBRAND E GRISI FILHO CELSO CLAUDIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-11', + '532740.00', 'A'), + ('719', 3, 'ALLIEL FACUSSE JULIO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-20', + '666800.00', 'A'), + ('72', 1, 'LOPEZ ROJAS VICTOR DANIEL', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-11', '594640.00', 'A'), + ('720', 3, 'CHEMELLO JIMENEZ GAETANO ALBERTO FRANCISCO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2010-06-23', + '735760.00', 'A'), + ('721', 3, 'GARCIA BEZANILLA RODOLFO EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-04-12', + '678420.00', 'A'), + ('722', 1, 'ARIAS EDWIN', '191821112', 'CRA 25 CALLE 100', + '13@terra.com.co', '2011-02-03', 127492, '2008-04-24', '184800.00', + 'A'), + ('723', 3, 'SOHN JANG WON', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-06-07', '888750.00', 'A'), + ('724', 3, 'WILHELM GIOVINE JAIME ROBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 115263, '2011-09-20', + '889340.00', 'A'), + ('726', 3, 'CASTILLERO DANIA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 131272, '2011-05-13', '234270.00', 'A'), + ('727', 3, 'PORTUGAL LANGHORST MAX GUILLERMO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-13', + '829960.00', 'A'), + ('729', 3, 'ALFONSO HERRANZ AGUSTIN ALFONSO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-21', + '745060.00', 'A'), + ('73', 1, 'DAVILA MENDEZ OSCAR DIEGO', '191821112', 'CRA 25 CALLE 100', + '991@yahoo.com.mx', '2011-02-03', 128569, '2011-08-31', '229630.00', + 'A'), + ('730', 3, 'ALFONSO HERRANZ AGUSTIN CARLOS', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-03-31', + '384360.00', 'A'), + ('731', 1, 'NOGUERA RAMIREZ CARLOS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-14', + '686610.00', 'A'), + ('732', 1, 'ACOSTA PERALTA FABIAN ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 134030, '2011-06-21', + '279960.00', 'A'), + ('733', 3, 'MAC LEAN PIÑA PEDRO SEGUNDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-05-23', + '339980.00', 'A'), + ('734', 1, 'LEÓN ARCOS ALEX', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 133535, '2011-05-04', '860020.00', 'A'), + ('736', 3, 'LAMARCA GARCIA GERMAN JULIO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-04-29', + '820700.00', 'A'), + ('737', 1, 'PORTO VELASQUEZ LUIS MIGUEL', '191821112', + 'CRA 25 CALLE 100', '321@hotmail.es', '2011-02-03', 133535, + '2011-08-17', '263060.00', 'A'), + ('738', 1, 'BUENAVENTURA MEDINA ERICK WILSON', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-09-18', + '853180.00', 'A'), + ('739', 1, 'LEVY ARRAZOLA RALPH MARC', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 133535, '2011-09-27', '476720.00', 'A'), + ('74', 1, 'RAMIREZ SORA EDISON', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-03', '364220.00', 'A'), + ('740', 3, 'MOON HYUNSIK ', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 173192, '2011-05-15', '824080.00', 'A'), + ('741', 3, 'LHUILLIER TRONCOSO GASTON MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-09-07', + '690230.00', 'A'), + ('742', 3, 'UNDURRAGA PELLEGRINI GONZALO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2010-11-21', + '978900.00', 'A'), + ('743', 1, 'SOLANO TRIBIN NICOLAS SIMON', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 134022, '2011-03-16', + '823800.00', 'A'), + ('744', 1, 'NOGUERA BENAVIDES JACOBO ALONSO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-06', + '182300.00', 'A'), + ('745', 1, 'GARCIA LEON MARCO ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 133535, '2008-04-16', '440110.00', 'A'), + ('746', 1, 'EMILIANI ROJAS ALEXANDER ALFONSO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-09-12', + '653640.00', 'A'), + ('748', 1, 'CARREÑO POULSEN HELGEN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', '778370.00', 'A'), + ('749', 1, 'ALVARADO FANDIÑO ANDRES EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2008-11-05', + '48280.00', 'A'), + ('750', 1, 'DIAZ GRANADOS JUAN PABLO.', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-01-12', '906290.00', 'A'), + ('751', 1, 'OVALLE BETANCOURT ALBERTO JOSE', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2011-08-14', + '386620.00', 'A'), + ('752', 3, 'GUTIERREZ VERGARA JOSE MIGUEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-08', + '214250.00', 'A'), + ('753', 3, 'CHAPARRO GUAIMARAL LIZ', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 147467, '2011-03-16', '911350.00', 'A'), + ('754', 3, 'CORTES DE SOLMINIHAC PABLO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 117002, '2011-01-20', '914020.00', 'A'), + ('755', 3, 'CHETAIL VINCENT', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 239124, '2010-08-23', '836050.00', 'A'), + ('756', 3, 'PERUGORRIA RODRIGUEZ JORGE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2010-10-17', '438210.00', 'A'), + ('757', 3, 'GOLLMANN ROBERTO JUAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 167269, '2011-03-28', '682870.00', 'A'), + ('758', 3, 'VARELA SEPULVEDA MARIA PILAR', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2010-07-26', + '99730.00', 'A'), + ('759', 3, 'MEYER WELIKSON MICHELE JANIK', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-05-10', + '450030.00', 'A'), + ('76', 1, 'VANEGAS RODRIGUEZ OSCAR IVAN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', + '568310.00', 'A'), + ('77', 3, 'GATICA SOTOMAYOR MAURICIO VICENTE', '191821112', + 'CRA 25 CALLE 100', '409@terra.com.co', '2011-02-03', 117002, + '2010-05-13', '444970.00', 'A'), + ('79', 1, 'PEÑA VALENZUELA DANIEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-19', '264790.00', 'A'), + ('8', 1, 'NAVARRO PALENCIA HUGO RAFAEL', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 126968, '2011-05-05', '579980.00', 'A'), + ('80', 1, 'BARRIOS CUADRADO DAVID', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-07-29', '764140.00', 'A'), + ('802', 3, 'RECK GARRONE', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118942, '2009-02-06', '767700.00', 'A'), + ('81', 1, 'PARRA QUIROGA JOSE ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-18', '26330.00', 'A'), + ('811', 8, 'FEDERACION NACIONAL DE AVICULTORES ', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-04-18', + '926010.00', 'A'), + ('812', 1, 'ORJUELA VELEZ JAIME ALFONSO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', + '257160.00', 'A'), + ('813', 1, 'PEÑA CHACON GUSTAVO ADOLFO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-08-27', '507770.00', 'A'), + ('814', 1, 'RONDEROS MOJICA ANDRES FELIPE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127443, '2011-05-04', + '767370.00', 'A'), + ('815', 1, 'RICO NIÑO MARIO ANDRES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127443, '2011-05-18', '313540.00', 'A'), + ('817', 3, 'AVILA CHYTIL MANUEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118471, '2011-07-14', '387300.00', 'A'), + ('818', 3, 'JABLONSKI DUARTE SILVEIRA ESTER', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2010-12-21', + '139740.00', 'A'), + ('819', 3, 'BUHLER MOSLER XIMENA ALEJANDRA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-06-20', + '536830.00', 'A'), + ('82', 1, 'CARRILLO GAMBOA JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-06-01', '839240.00', 'A'), + ('820', 3, 'FALQUETO DALMIRO ANGELO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-06-21', '264910.00', 'A'), + ('821', 1, 'RUGER GUSTAVO RODRIGUEZ TAMAYO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2010-04-12', + '714080.00', 'A'), + ('822', 3, 'JULIO RODRIGUEZ FRANCISCO JAVIER', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-08-16', + '775650.00', 'A'), + ('823', 3, 'CIBANIK RODOLFO MOISES', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132554, '2011-09-19', '736020.00', 'A'), + ('824', 3, 'JIMENEZ FRANCO EMMANUEL ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-17', + '353150.00', 'A'), + ('825', 3, 'GNECCO TREMEDAD', '191821112', 'CRA 25 CALLE 100', + '818@hotmail.com', '2011-02-03', 171072, '2011-03-19', '557700.00', + 'A'), + ('826', 3, 'VILAR MENDOZA JOSE RAFAEL', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-06-29', '729050.00', 'A'), + ('827', 3, 'GONZALEZ MOLINA CRISTIAN MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-06-20', + '972160.00', 'A'), + ('828', 1, 'GONTOVNIK HOBRECKT CARLOS DANIEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-08-02', + '673620.00', 'A'), + ('829', 3, 'DIBARRAT URZUA SEBASTIAN RAIMUNDO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-28', + '451650.00', 'A'), + ('830', 3, 'STOCCHERO HATSCHBACH GUILHERME', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2010-11-22', + '237370.00', 'A'), + ('831', 1, 'NAVAS PASSOS NARCISO EVELIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-04-21', + '831900.00', 'A'), + ('832', 3, 'LUNA SOBENES FAVIAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-10-11', '447400.00', 'A'), + ('833', 3, 'NUÑEZ NOGUEIRA ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-19', '741290.00', 'A'), + ('834', 1, 'CASTRO BELTRAN ARIEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128188, '2011-05-15', '364270.00', 'A'), + ('835', 1, 'TURBAY YAMIN MAURICIO JOSE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-03-17', '597490.00', 'A'), + ('836', 1, 'GOMEZ BARRAZA RODNEY LORENZO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', + '894610.00', 'A'), + ('837', 1, 'CUELLO LASCANO ROBERTO', '191821112', 'CRA 25 CALLE 100', + '221@hotmail.es', '2011-02-03', 133535, '2011-07-11', '680610.00', 'A'), + ('838', 1, 'PATERNINA PEINADO JOSE VICENTE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-08-23', + '719190.00', 'A'), + ('839', 1, 'YEPES RUBIANO ALFONSO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 133535, '2011-05-16', '554130.00', 'A'), + ('84', 1, 'ALVIS RAMIREZ ALFREDO', '191821112', 'CRA 25 CALLE 100', + '292@yahoo.com', '2011-02-03', 127662, '2011-09-16', '68190.00', 'A'), + ('840', 1, 'ROCA LLANOS GUILLERMO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-08-22', + '613060.00', 'A'), + ('841', 1, 'RENDON TORRALVO ENRIQUE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 133535, '2011-05-26', '402950.00', 'A'), + ('842', 1, 'BLANCO STAND GERMAN ELIECER', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-17', + '175530.00', 'A'), + ('843', 3, 'BERNAL MAYRA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 131272, '2010-08-31', '668820.00', 'A'), + ('844', 1, 'NAVARRO RUIZ LAZARO GREGORIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 126916, '2008-09-23', + '817520.00', 'A'), + ('846', 3, 'TUOMINEN OLLI PETTERI', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-09-01', '953150.00', 'A'), + ('847', 1, 'ESPARRAGOZA DE LA ESPRIELLA ENRIQUE ALBERTO ', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-08-09', + '522340.00', 'A'), + ('848', 3, 'ARAYA ARIAS JUAN VICENTE', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 132165, '2011-08-09', '752210.00', 'A'), + ('85', 1, 'GARCIA JORGE', '191821112', 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-03-01', '989420.00', 'A'), + ('850', 1, 'PARDO GOMEZ GERMAN ENRIQUE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132775, '2010-11-25', '713690.00', 'A'), + ('851', 1, 'ATIQUE JOSE MANUEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 133535, '2008-03-03', '986250.00', 'A'), + ('852', 1, 'HERNANDEZ MEYER EDGARDO DE JESUS', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-20', + '790190.00', 'A'), + ('853', 1, 'ZULUAGA DE LEON IVAN JESUS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-07-03', '992210.00', 'A'), + ('854', 1, 'VILLARREAL ANGULO ENRIQUE ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-10-02', + '590450.00', 'A'), + ('855', 1, 'CELIA MARTINEZ APARICIO GIAN PIERO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-06-15', + '975620.00', 'A'), + ('857', 3, 'LIPARI RONALDO LUIS', '191821112', 'CRA 25 CALLE 100', + '84@facebook.com', '2011-02-03', 118941, '2010-10-13', '606990.00', + 'A'), + ('858', 1, 'RAVACHI DAVILA ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 133535, '2011-05-04', '714620.00', 'A'), + ('859', 3, 'PINHEIRO OLIVEIRA LUCIANO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-04-06', '752130.00', 'A'), + ('86', 1, 'GOMEZ LIS CARLOS EMILIO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2009-12-22', '742520.00', 'A'), + ('860', 1, 'PUGLIESE MERCADO LUIGGI ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-08-19', + '616780.00', 'A'), + ('862', 1, 'JANNA TELLO DANIEL JALIL', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 133535, '2010-08-07', '287220.00', 'A'), + ('863', 3, 'MATTAR CARLOS HENRIQUE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2009-04-26', '953570.00', 'A'), + ('864', 1, 'MOLINA OLIER OSVALDO ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2011-04-18', + '906200.00', 'A'), + ('865', 1, 'BLANCO MCLIN DAVID ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-08-18', '670290.00', 'A'), + ('866', 1, 'NARANJO ROMERO ALFREDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 133535, '2010-08-25', '632860.00', 'A'), + ('867', 1, 'SIMANCAS TRUJILLO RICARDO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-04-07', + '153400.00', 'A'), + ('868', 1, 'ARENAS USME GERMAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 126881, '2011-10-01', '868430.00', 'A'), + ('869', 5, 'DIAZ CORDERO RODRIGO FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-11-04', + '881950.00', 'A'), + ('87', 1, 'CELIS PEREZ HERNANDO ALONSO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-10-05', '744330.00', 'A'), + ('870', 3, 'BINDER ZBEDA JONATAHAN JANAN', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131083, '2010-04-11', + '804460.00', 'A'), + ('871', 1, 'HINCAPIE HELLMAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-09-15', '376440.00', 'A'), + ('872', 3, 'MONTEIRO LANAMAR ALFONSO DE BUSTAMANTE', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118942, '2009-03-23', + '468820.00', 'A'), + ('873', 3, 'AGUDO CARMINATTI REGINA CELIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-01-04', + '214770.00', 'A'), + ('874', 1, 'GONZALEZ VILLALOBOS CRISTIAN MANUEL', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2011-09-26', + '667400.00', 'A'), + ('875', 3, 'GUELL VILLANUEVA ALVARO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2008-04-07', '692670.00', 'A'), + ('876', 3, 'GRES ANAIS ROBERTO ANDRES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-12-01', '461180.00', 'A'), + ('877', 3, 'GAME MOCOCAIN JUAN ENRIQUE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-07', '227890.00', 'A'), + ('878', 1, 'FERRER UCROS FERNANDO LEON', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 133535, '2011-06-22', '755900.00', 'A'), + ('879', 3, 'HERRERA JAUREGUI CARLOS GUSTAVO', '191821112', + 'CRA 25 CALLE 100', '599@facebook.com', '2011-02-03', 131272, + '2010-07-22', '95840.00', 'A'), + ('880', 3, 'BACALLAO HERNANDEZ ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 126180, '2010-04-21', '211480.00', 'A'), + ('881', 1, 'GIJON URBINA JAIME', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 144879, '2011-04-03', '769910.00', 'A'), + ('882', 3, 'TRUSEN CHRISTOPH WOLFGANG', '191821112', 'CRA 25 CALLE 100', + '338@yahoo.com.mx', '2011-02-03', 127591, '2010-10-24', '215100.00', + 'A'), + ('883', 3, 'ASHOURI ASKANDAR', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 157861, '2009-03-03', '765760.00', 'A'), + ('885', 1, 'ALTAMAR WATTS JAIRO ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-08-20', + '620170.00', 'A'), + ('887', 3, 'QUINTANA BALTIERRA ROBERTO ALEX', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-21', + '891370.00', 'A'), + ('889', 1, 'CARILLO PATIÑO VICTOR HILARIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 130226, '2011-09-06', + '354570.00', 'A'), + ('89', 1, 'CONTRERAS PULIDO LINA MARIA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-06', '237480.00', 'A'), + ('890', 1, 'GELVES CAÑAS GENARO ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-02', + '355640.00', 'A'), + ('891', 3, 'CAGNONI DE MELO PAULA CRISTINA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2010-12-14', + '714490.00', 'A'), + ('892', 3, 'MENA AMESTICA PATRICIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 117002, '2011-03-22', '505510.00', 'A'), + ('893', 1, 'CAICEDO ROMES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-04-07', '384110.00', 'A'), + ('894', 1, 'ECHEVERRY TRUJILLO ARMANDO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-06-08', '404010.00', 'A'), + ('895', 1, 'CAJIA PEDRAZA ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-02', '867700.00', 'A'), + ('896', 2, 'PALACIOS OLIVA ANDRES FELIPE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-24', + '126500.00', 'A'), + ('897', 1, 'GUTIERREZ QUINTERO FABIAN ESTEBAN', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2009-10-24', + '29380.00', 'A'), + ('899', 3, 'COBO GUEVARA LUIS FELIPE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-12-09', '748860.00', 'A'), + ('9', 1, 'OSORIO RODRIGUEZ FELIPE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-09-27', '904420.00', 'A'), + ('90', 1, 'LEYTON GONZALEZ FREDY RAFAEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-24', + '705130.00', 'A'), + ('901', 1, 'HERNANDEZ JOSE ANGEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 130266, '2011-05-23', '964010.00', 'A'), + ('903', 3, 'GONZALEZ MALDONADO MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2010-11-13', + '576500.00', 'A'), + ('904', 1, 'OCHOA BARRIGA JORGE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 130266, '2011-05-05', '401380.00', 'A'), + ('905', 1, 'OSORIO REDONDO JESUS DAVID', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127300, '2011-08-11', '277390.00', 'A'), + ('906', 1, 'BAYONA BARRIENTOS JEAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-01-25', + '182820.00', 'A'), + ('907', 1, 'MARTINEZ GOMEZ CARLOS ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2010-03-11', + '81940.00', 'A'), + ('908', 1, 'PUELLO LOPEZ GUILLERMO LEON', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-08-12', + '861240.00', 'A'), + ('909', 1, 'MOGOLLON LONDOÑO PEDRO LUIS CARLOS', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2011-06-22', + '60380.00', 'A'), + ('91', 1, 'ORTIZ RIOS JAVIER ADOLFO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-05-12', '813200.00', 'A'), + ('911', 1, 'HERRERA HOYOS CARLOS FRANCISCO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2010-09-12', + '409800.00', 'A'), + ('912', 3, 'RIM MYUNG HWAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-15', '894450.00', 'A'), + ('913', 3, 'BIANCO DORIEN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-29', '242820.00', 'A'), + ('914', 3, 'FROIMZON WIEN DANIEL', '191821112', 'CRA 25 CALLE 100', + '348@yahoo.com', '2011-02-03', 132165, '2010-11-06', '530780.00', 'A'), + ('915', 3, 'ALVEZ AZEVEDO JOAO MIGUEL', '191821112', 'CRA 25 CALLE 100', + '861@hotmail.es', '2011-02-03', 127591, '2009-06-25', '925420.00', 'A'), + ('916', 3, 'CARRASCO DIAZ LUIS ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-10-02', '34780.00', 'A'), + ('917', 3, 'VIVALLOS MEDINA LEONEL EDMUNDO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-09-12', + '397640.00', 'A'), + ('919', 3, 'LASSE ANDRE BARKLIEN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 286724, '2011-03-31', '226390.00', 'A'), + ('92', 1, 'CUERVO CARDENAS ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-08', '950630.00', 'A'), + ('920', 3, 'BARCELOS PLOTEGHER LILIA MARA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-07', + '480380.00', 'A'), + ('921', 1, 'JARAMILLO ARANGO JUAN DIEGO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127559, '2011-06-28', + '722700.00', 'A'), + ('93', 3, 'RUIZ PRIETO WILLIAM', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 131272, '2011-01-19', '313540.00', 'A'), + ('932', 7, 'COMFENALCO ANTIOQUIA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-05-05', '515430.00', 'A'), + ('94', 1, 'GALLEGO JUAN GUILLERMO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-06-25', '715830.00', 'A'), + ('944', 3, 'KARMELIC PAVLOV VESNA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 120066, '2010-08-07', '585580.00', 'A'), + ('945', 3, 'RAMIREZ BORDON OSCAR', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2010-07-02', '526250.00', 'A'), + ('946', 3, 'SORACCO CABEZA RODRIGO ANDRES', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-04', + '874490.00', 'A'), + ('949', 1, 'GALINDO JORGE ERNESTO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127300, '2008-07-10', '344110.00', 'A'), + ('950', 3, 'DR KNABLE THOMAS ERNST ALBERT', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 256231, '2009-11-17', + '685430.00', 'A'), + ('953', 3, 'VELASQUEZ JANETH', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-20', '404650.00', 'A'), + ('954', 3, 'SOZA REX JOSE FRANCISCO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 150903, '2011-05-26', '269790.00', 'A'), + ('955', 3, 'FONTANA GAETE JAIME PATRICIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-01-11', + '134970.00', 'A'), + ('957', 3, 'PEREZ MARTINEZ GRECIA INDIRA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2010-08-27', + '922610.00', 'A'), + ('96', 1, 'FORERO CUBILLOS JORGEARTURO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-25', '45020.00', 'A'), + ('97', 1, 'SILVA ACOSTA MARIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-19', '309580.00', 'A'), + ('978', 3, 'BLUMENTHAL JAIRO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 117630, '2010-04-22', '653490.00', 'A'), + ('984', 3, 'SUN XIAN', '191821112', 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-01-17', '203630.00', 'A'), + ('99', 1, 'CANO GUZMAN ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-23', '135620.00', 'A'), + ('999', 1, ' DRAGER', '191821112', 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2010-12-22', '882070.00', 'A'), + ('CELL1020', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1083', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1153', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL126', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1326', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1329', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL133', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1413', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1426', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1529', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1651', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1760', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1857', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1879', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1902', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1921', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1962', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1992', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL2006', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL215', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL2187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL2307', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL2322', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL2497', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL2641', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL2736', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL2805', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL281', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL2905', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL2963', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3029', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3090', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3161', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3302', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3309', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3325', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3372', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3422', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3514', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3562', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3652', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3661', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3789', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3795', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL381', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3840', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3886', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3944', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL396', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4012', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL411', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4137', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4159', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4291', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4308', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4324', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4330', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4334', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4440', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4547', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4639', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4662', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4698', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL475', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4790', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4838', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4885', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4939', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5064', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5066', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL51', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5102', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5116', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5192', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5226', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5250', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5282', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL536', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5503', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5506', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL554', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5544', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5595', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5648', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5801', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5821', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6201', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6277', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6288', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6358', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6369', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6408', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6425', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6439', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6509', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6533', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6556', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6731', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6766', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6775', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6802', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6834', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6890', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6953', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6957', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7024', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7216', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL728', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7314', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7431', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7432', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7513', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7522', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7617', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7623', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7708', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7777', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL787', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7907', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7951', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7956', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8004', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8058', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL811', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8136', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8162', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8286', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8300', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8339', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8366', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8389', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8446', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8487', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8546', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8578', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8643', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8774', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8829', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8846', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8942', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9046', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9110', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL917', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9189', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9241', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9331', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9429', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9434', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9495', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9517', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9558', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9650', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9748', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9830', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9878', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9893', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9945', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('T-Cx200', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx201', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx202', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx203', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx204', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx205', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx206', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx207', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx208', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx209', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx210', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx211', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx212', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx213', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx214', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'); + + +DROP TABLE IF EXISTS `personnes`; +CREATE TABLE `personnes` +( + `cedula` char(15) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, + `tipo_documento_id` int(3) unsigned NOT NULL, + `nombres` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `telefono` varchar(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, + `direccion` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, + `email` varchar(50) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, + `fecha_nacimiento` date DEFAULT '1970-01-01', + `ciudad_id` int(10) unsigned DEFAULT '0', + `creado_at` date DEFAULT NULL, + `cupo` decimal(16,2) NOT NULL, + `estado` enum('A','I','X') CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, + PRIMARY KEY (`cedula`), + KEY `ciudad_id` (`ciudad_id`), + KEY `estado` (`estado`), + KEY `cupo` (`cupo`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +INSERT INTO `personnes` +VALUES ('1', 3, 'HUANG ZHENGQUIN', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-05-18', '6930.00', 'I'), + ('100', 1, 'USME FERNANDEZ JUAN GUILLERMO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-04-15', + '439480.00', 'A'), + ('1003', 8, 'SINMON PEREZ', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-25', '468610.00', 'A'), + ('1009', 8, 'ARCINIEGAS Y VILLAMIZAR', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-08-12', '967680.00', 'A'), + ('101', 1, 'CRANE DE NARVAEZ JUAN PABLO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-06-09', + '790540.00', 'A'), + ('1011', 8, 'EL EVENTO', '191821112', 'CRA 25 CALLE 100', + '596@terra.com.co', '2011-02-03', 127591, '2011-05-24', '820390.00', + 'A'), + ('1020', 7, 'OSPINA YOLANDA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-02', '222970.00', 'A'), + ('1025', 7, 'CHEMIPLAS', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-08', '918670.00', 'A'), + ('1034', 1, 'TAXI FILMS', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2010-09-01', '962580.00', 'A'), + ('104', 1, 'CASTELLANOS JIMENEZ NOE', '191821112', 'CRA 25 CALLE 100', + '127@yahoo.es', '2011-02-03', 127591, '2011-10-05', '95230.00', 'A'), + ('1046', 3, 'JACQUET PIERRE MICHEL ALAIN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 263489, '2011-07-23', + '90810.00', 'A'), + ('1048', 5, 'SPOERER VELEZ CARLOS JORGE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-02-03', + '184920.00', 'A'), + ('1049', 3, 'SIDNEI DA SILVA LUIZ', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 117630, '2011-07-02', '850180.00', 'A'), + ('105', 1, 'HERRERA SEQUERA ALVARO FRANCISCO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-26', + '77390.00', 'A'), + ('1050', 3, 'CAVALCANTI YUE CARLA HANLI', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-31', + '696130.00', 'A'), + ('1052', 1, 'BARRETO RIVAS ELKIN MARTIN', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 131508, '2011-09-19', + '562160.00', 'A'), + ('1053', 3, 'WANDERLEY ANTONIO ERNESTO THOME', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150617, '2011-01-31', + '20490.00', 'A'), + ('1054', 3, 'HE SHAN', '191821112', 'CRA 25 CALLE 100', '715@yahoo.es', + '2011-02-03', 132958, '2010-10-05', '415970.00', 'A'), + ('1055', 3, 'ZHRNG XIM', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-05', '18380.00', 'A'), + ('1057', 3, 'NICKEL GEB. STUTZ KARIN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-10-08', '164850.00', 'A'), + ('1058', 1, 'VELEZ PAREJA IGNACIO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2011-06-24', + '292250.00', 'A'), + ('1059', 3, 'GURKE RALF ERNST', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 287570, '2011-06-15', '966700.00', 'A'), + ('106', 1, 'ESTRADA LONDOÑO JUAN SIMON', '191821112', 'CRA 25 CALLE 100', + '8@terra.com.co', '2011-02-03', 128579, '2011-03-09', '101260.00', 'A'), + ('1060', 1, 'MEDRANO BARRIOS WILSON', '191821112', 'CRA 25 CALLE 100', + '479@facebook.com', '2011-02-03', 132775, '2011-06-18', '956740.00', + 'A'), + ('1061', 1, 'GERDTS PORTO HANS EDUARDO', '191821112', 'CRA 25 CALLE 100', + '140@gmail.com', '2011-02-03', 127591, '2011-05-09', '883590.00', 'A'), + ('1062', 1, 'BORGE VISBAL JORGE FIDEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 132775, '2011-07-14', '547750.00', 'A'), + ('1063', 3, 'GUTIERREZ JOSELYN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-06', '87960.00', 'A'), + ('1064', 4, 'OVIEDO PINZON MARYI YULEY', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127538, '2011-04-21', '796560.00', 'A'), + ('1065', 1, 'VILORA SILVA OMAR ESTEBAN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 133535, '2010-06-09', '718910.00', 'A'), + ('1066', 3, 'AGUIAR ROMAN RODRIGO HUMBERTO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126674, '2011-06-28', + '204890.00', 'A'), + ('1067', 1, 'GOMEZ AGAMEZ ADOLFO DEL CRISTO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131105, '2011-06-15', + '867730.00', 'A'), + ('1068', 3, 'GARRIDO CECILIA', '191821112', 'CRA 25 CALLE 100', + '973@yahoo.com.mx', '2011-02-03', 118777, '2010-08-16', '723980.00', + 'A'), + ('1069', 1, 'JIMENEZ MANJARRES DAVID RAFAEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2010-12-17', + '16680.00', 'A'), + ('107', 1, 'ARANGUREN TEJADA JORGE ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-16', + '274110.00', 'A'), + ('1070', 3, 'OYARZUN TEJEDA ANDRES FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-26', + '911490.00', 'A'), + ('1071', 3, 'MARIN BUCK RAFAEL ENRIQUE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 126180, '2011-05-04', '507400.00', 'A'), + ('1072', 3, 'VARGAS JOSE ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 126674, '2011-07-28', '802540.00', 'A'), + ('1073', 3, 'JUEZ JAIRALA JOSE ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 126180, '2010-04-09', '490510.00', 'A'), + ('1074', 1, 'APONTE PENSO HERNAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132879, '2011-05-27', '44900.00', 'A'), + ('1075', 1, 'PIÑERES BUSTILLO ALFONSO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 126916, '2008-10-29', '752980.00', 'A'), + ('1076', 1, 'OTERA OMA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-04-29', '630210.00', 'A'), + ('1077', 3, 'CONTRERAS CHINCHILLA JUAN DOMINGO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 139844, '2011-06-21', + '892110.00', 'A'), + ('1078', 1, 'GAMBA LAURENCIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-09-15', '569940.00', 'A'), + ('108', 1, 'MUÑOZ ARANGO JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-01', '66770.00', 'A'), + ('1080', 1, 'PRADA ABAUZA CARLOS AUGUSTO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-11-15', + '156870.00', 'A'), + ('1081', 1, 'PAOLA CAROLINA PINTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-27', '264350.00', 'A'), + ('1082', 1, 'PALOMINO HERNANDEZ GERMAN JAVIER', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-03-22', + '851120.00', 'A'), + ('1084', 1, 'URIBE DANIEL ALBERTO', '191821112', 'CRA 25 CALLE 100', + '602@hotmail.es', '2011-02-03', 127591, '2011-09-07', '759470.00', 'A'), + ('1085', 1, 'ARGUELLO CALDERON ARMANDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-24', '409660.00', 'A'), + ('1087', 1, 'CARVAJAL HERNANDEZ CHRISTIAN ARMANDO', '191821112', + 'CRA 25 CALLE 100', '296@yahoo.es', '2011-02-03', 159432, '2011-06-03', + '620410.00', 'A'), + ('1088', 1, 'CASTRO BLANCO MANUEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 150512, '2009-10-08', '792400.00', 'A'), + ('1089', 1, 'RIBEROS GUTIERREZ GUSTAVO ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-01-27', + '100800.00', 'A'), + ('109', 1, 'BELTRAN MARIA LUZ DARY', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-06', '511510.00', 'A'), + ('1091', 4, 'ORTIZ ORTIZ BENIGNO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127538, '2011-08-05', '331540.00', 'A'), + ('1092', 3, 'JOHN CHRISTOPHER', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-04-08', '277320.00', 'A'), + ('1093', 1, 'PARRA VILLAREAL MIGUEL ANGEL', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 129499, '2011-08-23', + '391980.00', 'A'), + ('1094', 1, 'BESGA RODRIGUEZ JUAN JAVIER', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-09-23', + '127960.00', 'A'), + ('1095', 1, 'ZAPATA MEZA EDGAR FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-05-19', + '463840.00', 'A'), + ('1096', 3, 'CORNEJO BRAVO MARCO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2010-11-08', + '935340.00', 'A'), + ('1099', 1, 'GARCIA PORRAS FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-14', '243360.00', 'A'), + ('11', 1, 'HERNANDEZ PARDO ARMANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-31', '197540.00', 'A'), + ('110', 1, 'VANEGAS JULIAN ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-09-06', '357260.00', 'A'), + ('1101', 1, 'QUINTERO BURBANO GABRIEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 129499, '2011-08-20', '57420.00', 'A'), + ('1102', 1, 'BOHORQUEZ AFANADOR CHRISTIAN', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-19', + '214610.00', 'A'), + ('1103', 1, 'MORA VARGAS JULIO ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-29', '900790.00', 'A'), + ('1104', 1, 'PINEDA JORGE ARMANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-21', '860110.00', 'A'), + ('1105', 1, 'TORO CEBALLOS GONZALO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 129499, '2011-08-18', '598180.00', 'A'), + ('1106', 1, 'SCHENIDER TORRES JAIME', '191821112', 'CRA 25 CALLE 100', + '85@yahoo.com.mx', '2011-02-03', 127799, '2011-08-11', '410590.00', + 'A'), + ('1107', 1, 'RUEDA VILLAMIZAR JAIME', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-11-15', '258410.00', 'A'), + ('1108', 1, 'RUEDA VILLAMIZAR RICARDO JAIME', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129499, '2011-03-22', + '60260.00', 'A'), + ('1109', 1, 'GOMEZ RODRIGUEZ HERNANDO ARTURO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-06-02', + '526080.00', 'A'), + ('111', 1, 'FRANCISCO EDUARDO JAIME BOTERO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-09-09', + '251770.00', 'A'), + ('1110', 1, 'HERNÁNDEZ MÉNDEZ EDGAR', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 129499, '2011-03-22', '449610.00', 'A'), + ('1113', 1, 'LEON HERNANDEZ OSCAR', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 129499, '2011-03-21', '992090.00', 'A'), + ('1114', 1, 'LIZARAZO CARREÑO HUGO ARCENIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2010-12-10', + '959490.00', 'A'), + ('1115', 1, 'LIAN BARRERA GABRIEL', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-05-30', '821170.00', 'A'), + ('1117', 3, 'TELLEZ BEZAN FRANCISCO JAVIER ', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-08-21', + '673430.00', 'A'), + ('1118', 1, 'FUENTES ARIZA DIEGO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-06-09', '684970.00', 'A'), + ('1119', 1, 'MOLINA M. ROBINSON', '191821112', 'CRA 25 CALLE 100', + '728@hotmail.com', '2011-02-03', 129447, '2010-09-19', '404580.00', + 'A'), + ('112', 1, 'PTIÑO PINTO ARIEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-10-06', '187050.00', 'A'), + ('1120', 1, 'ORTIZ DURAN BENIGNO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127538, '2011-08-05', '967970.00', 'A'), + ('1121', 1, 'CARVAJAL ALMEIDA LUIS RAUL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2011-06-22', + '626140.00', 'A'), + ('1122', 1, 'TORRES QUIROGA EDWIN SILVESTRE', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 129447, '2011-08-17', + '226780.00', 'A'), + ('1123', 1, 'VIVIESCAS JAIMES ALVARO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-10', '255480.00', 'A'), + ('1124', 1, 'MARTINEZ RUEDA JAVIER EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129447, '2011-06-23', + '597040.00', 'A'), + ('1125', 1, 'ANAYA FLORES JORGE ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-06-04', + '218790.00', 'A'), + ('1126', 3, 'TORRES MARTINEZ ANTONIO JESUS', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2010-09-02', + '302820.00', 'A'), + ('1127', 3, 'CACHO LEVISIER JOSE MANUEL', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 153276, '2009-06-25', + '857720.00', 'A'), + ('1129', 3, 'ULLOA VALDIVIESO CRISTIAN ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-06-02', + '327570.00', 'A'), + ('113', 1, 'HIGUERA CALA JAIME ENRIQUE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-07-27', '179950.00', 'A'), + ('1130', 1, 'ARCINIEGAS WILLIAM', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 126892, '2011-08-05', '497420.00', 'A'), + ('1131', 1, 'BAZA ACUÑA JAVIER', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 129447, '2010-12-10', '504410.00', 'A'), + ('1132', 3, 'BUIRA ROS CARLOS MARIA', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-04-27', '29750.00', 'A'), + ('1133', 1, 'RODRIGUEZ JAIME', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 129447, '2011-06-10', '635560.00', 'A'), + ('1134', 1, 'QUIROGA PEREZ NELSON', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 129447, '2011-05-18', '88520.00', 'A'), + ('1135', 1, 'TATIANA AYALA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127122, '2011-07-01', '535920.00', 'A'), + ('1136', 1, 'OSORIO BENEDETTI FABIAN AUGUSTO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2010-10-23', + '414060.00', 'A'), + ('1139', 1, 'CELIS PINTO ARMANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2009-02-25', '964970.00', 'A'), + ('114', 1, 'VALDERRAMA CUERVO JOSE IGNACIO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-02', + '338590.00', 'A'), + ('1140', 1, 'ORTIZ ARENAS JUAN MANUEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 129499, '2009-10-21', '613300.00', 'A'), + ('1141', 1, 'VALDIVIESO ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 134022, '2009-01-13', '171590.00', 'A'), + ('1144', 1, 'LOPEZ CASTILLO NELSON', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 129499, '2010-09-09', '823110.00', 'A'), + ('1145', 1, 'CAVELIER LUIS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 126916, '2008-11-29', '389220.00', 'A'), + ('1146', 1, 'CAVELIER OTOYA LUIS EDURDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126916, '2010-05-25', + '476770.00', 'A'), + ('1147', 1, 'GARCIA RUEDA JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '111@yahoo.es', '2011-02-03', 133535, '2010-09-12', '216190.00', 'A'), + ('1148', 1, 'LADINO GOMEZ OMAR ORLANDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-02', '650640.00', 'A'), + ('1149', 1, 'CARREÑO ORTIZ OSCAR JAVIER', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-15', + '604630.00', 'A'), + ('115', 1, 'NARDEI BONILLO BRUNO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-04-16', '153110.00', 'A'), + ('1150', 1, 'MONTOYA BOZZI MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 129499, '2011-05-12', '71240.00', 'A'), + ('1152', 1, 'LORA RICHARD JAVIER', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-09-15', '497700.00', 'A'), + ('1153', 1, 'SILVA PINZON MARCO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '915@hotmail.es', '2011-02-03', 127591, + '2011-06-15', '861670.00', 'A'), + ('1154', 3, 'GEORGE J A KHALILIEH', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-20', '815260.00', 'A'), + ('1155', 3, 'CHACON MARIN CARLOS MANUEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-07-26', + '491280.00', 'A'), + ('1156', 3, 'OCHOA CHEHAB XAVIER ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 126180, '2011-06-13', + '10630.00', 'A'), + ('1157', 3, 'ARAYA GARRI GABRIEL ALEXIS', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-09-19', + '579320.00', 'A'), + ('1158', 3, 'MACCHI ARIEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 116366, '2010-04-12', '864690.00', 'A'), + ('116', 1, 'GONZALEZ FANDIÑO JAIME EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-10', + '749800.00', 'A'), + ('1160', 1, 'CAVALIER LUIS EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 126916, '2009-08-27', '333390.00', 'A'), + ('1161', 3, 'DOMINGUEZ DE OBREGON ILEANA DEL CARMEN', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 139844, '2011-03-06', + '910490.00', 'A'), + ('1162', 2, 'FALASCA CLAUDIO ARIEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 116511, '2011-07-10', '552280.00', 'A'), + ('1163', 3, 'MUTABARUKA PATRICK', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 131352, '2011-03-22', '29940.00', 'A'), + ('1164', 1, 'DOMINGUEZ ATENCIA JIMMY CARLOS', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-22', + '492860.00', 'A'), + ('1165', 4, 'LLANO GONZALEZ ALBERTO MARIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2010-08-21', + '374490.00', 'A'), + ('1166', 3, 'LOPEZ ROLDAN JOSE MANUEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188640, '2011-07-31', '393860.00', 'A'), + ('1167', 1, 'GUTIERREZ DE PIÑERES JALILIE ARISTIDES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2010-12-09', + '845810.00', 'A'), + ('1168', 1, 'HEYMANS PIERRE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2010-11-08', '47470.00', 'A'), + ('1169', 1, 'BOTERO OSORIO RUBEN DARIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2009-05-27', '699940.00', 'A'), + ('1170', 3, 'GARNHAM POBLETE ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 116396, '2011-03-27', '357270.00', 'A'), + ('1172', 1, 'DAJUD DURAN JOSE RODRIGO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 133535, '2009-12-02', '360910.00', 'A'), + ('1173', 1, 'MARTINEZ MERCADO PEDRO PABLO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-07-25', + '744930.00', 'A'), + ('1174', 1, 'GARCIA AMADOR ANDRES EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-05-19', + '641930.00', 'A'), + ('1176', 1, 'VARGAS VARELA LUIS GABRIEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 131568, '2011-08-30', + '948410.00', 'A'), + ('1178', 1, 'GUTIERRES DE PIÑERES ARISTIDES', '191821112', + 'CRA 25 CALLE 100', '217@hotmail.com', '2011-02-03', 133535, + '2011-05-10', '242490.00', 'A'), + ('1179', 3, 'LEIZAOLA POZO JIMENA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 132958, '2011-08-01', '759800.00', 'A'), + ('118', 1, 'FERNANDEZ VELOSO PEDRO HERNANDO', '191821112', + 'CRA 25 CALLE 100', '452@hotmail.es', '2011-02-03', 128662, + '2010-08-06', '198830.00', 'A'), + ('1180', 3, 'MARINO PAOLO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-12-24', '71520.00', 'A'), + ('1181', 1, 'MOLINA VIZCAINO GUSTAVO JORGE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-28', + '78220.00', 'A'), + ('1182', 3, 'MEDEL GARCIA FABIAN RODRIGO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-04-25', + '176540.00', 'A'), + ('1183', 1, 'LESMES ARIAS RUBEN DARIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2010-09-09', '648020.00', 'A'), + ('1184', 1, 'ALCALA MARTINEZ ALFREDO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132775, '2010-07-23', + '710470.00', 'A'), + ('1186', 1, 'LLAMAS FOLIACO LUIS ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-07', + '910210.00', 'A'), + ('1187', 1, 'GUARDO DEL RIO LIBARDO FARID', '191821112', + 'CRA 25 CALLE 100', '73@yahoo.com.mx', '2011-02-03', 128662, + '2011-09-01', '726050.00', 'A'), + ('1188', 3, 'JEFFREY ARTHUR DAVID', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 115724, '2011-03-21', '899630.00', 'A'), + ('1189', 1, 'DAHL VELEZ JULIANA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 126916, '2011-05-23', '320020.00', 'A'), + ('119', 3, 'WALESKA DE LIMA ALMEIDA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118942, '2011-05-09', '125240.00', 'A'), + ('1190', 3, 'LUIS JOSE MANUEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2008-04-04', '901210.00', 'A'), + ('1192', 1, 'AZUERO VALENTINA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-04-14', '26310.00', 'A'), + ('1193', 1, 'MARQUEZ GALINDO MAURICIO JAVIER', '191821112', + 'CRA 25 CALLE 100', '729@yahoo.es', '2011-02-03', 131105, '2011-05-13', + '493560.00', 'A'), + ('1195', 1, 'NIETO FRANCO JUAN FELIPE', '191821112', 'CRA 25 CALLE 100', + '707@yahoo.com', '2011-02-03', 127591, '2011-07-30', '463790.00', 'A'), + ('1196', 3, 'ESTEVES JOAQUIM LUIS FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-04-05', + '152270.00', 'A'), + ('1197', 4, 'BARRERO KAREN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-12', '369990.00', 'A'), + ('1198', 1, 'CORRALES GUZMAN DELIO ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127689, '2011-08-03', '393120.00', 'A'), + ('1199', 1, 'CUELLAR TOCO EDGAR', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127531, '2011-09-20', '855640.00', 'A'), + ('12', 1, 'MARIN PRIETO FREDY NELSON ', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-23', '641210.00', 'A'), + ('120', 1, 'LOPEZ JARAMILLO ANDRES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2009-04-17', '29680.00', 'A'), + ('1200', 3, 'SCHULTER ACHIM', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 291002, '2010-05-21', '98860.00', 'A'), + ('1201', 3, 'HOWELL LAURENCE ADRIAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 286785, '2011-05-22', '927350.00', 'A'), + ('1202', 3, 'ALCAZAR ESCARATE JAIME PATRICIO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-08-25', + '340160.00', 'A'), + ('1203', 3, 'HIDALGO FUENZALIDA GABRIEL RAUL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-03', + '918780.00', 'A'), + ('1206', 1, 'VANEGAS HENAO ORLANDO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-27', '832910.00', 'A'), + ('1207', 1, 'PEÑARANDA ARIAS RICARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-19', '832710.00', 'A'), + ('1209', 1, 'LEZAMA CERVERA JUAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2011-09-14', + '825980.00', 'A'), + ('121', 1, 'PULIDO JIMENEZ OSCAR HUMBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-29', + '772700.00', 'A'), + ('1211', 1, 'TRUJILLO BOCANEGRA HAROL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127538, '2011-05-27', '199260.00', 'A'), + ('1212', 1, 'ALVAREZ TORRES MARIO RICARDO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-08-15', + '589960.00', 'A'), + ('1213', 1, 'CORRALES VARON BELMER', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-26', '352030.00', 'A'), + ('1214', 3, 'CUEVAS RODRIGUEZ MANUELA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-30', '990250.00', 'A'), + ('1216', 1, 'LOPEZ EDICSON', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-31', '505210.00', 'A'), + ('1217', 3, 'GARCIA PALOMARES JUAN JAVIER', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-07-31', + '840440.00', 'A'), + ('1218', 1, 'ARCINIEGAS NARANJO RICARDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127492, '2010-12-17', + '686610.00', 'A'), + ('122', 1, 'GONZALEZ RIANO LEONARDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128031, '2011-08-05', '774450.00', 'A'), + ('1220', 1, 'GARCIA GUTIERREZ WILLIAM', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-06-20', '498680.00', 'A'), + ('1221', 3, 'GOMEZ DE ALONSO ANGELA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-27', '758300.00', 'A'), + ('1222', 1, 'MEDINA QUIROGA JAMES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127538, '2011-01-16', '295480.00', 'A'), + ('1224', 1, 'ARCILA CORREA JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-03-20', '125900.00', 'A'), + ('1225', 1, 'QUIJANO REYES CARLOS ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2010-04-08', + '22100.00', 'A'), + ('1226', 1, 'VARGAS GALLEGO JAIRO ALONSO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2009-07-30', + '732820.00', 'A'), + ('1228', 3, 'NAPANGA MIRENGHI MARTIN', '191821112', 'CRA 25 CALLE 100', + '153@yahoo.es', '2011-02-03', 132958, '2011-02-08', '790400.00', 'A'), + ('123', 1, 'LAMUS CASTELLANOS ANDRES RICARDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-11', + '554160.00', 'A'), + ('1230', 1, 'RIVEROS PIÑEROS JOSE ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127492, '2011-09-25', + '422220.00', 'A'), + ('1231', 3, 'ESSER JUAN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127327, '2011-04-01', '635060.00', 'A'), + ('1232', 3, 'DOMINGUEZ MORA MAURICIO ALFREDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-22', + '908630.00', 'A'), + ('1233', 3, 'MOLINA FERNANDEZ FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-05-28', '637990.00', 'A'), + ('1234', 3, 'BELLO DANIEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 196234, '2010-09-04', '464040.00', 'A'), + ('1235', 3, 'BENADAVA GUEVARA DAVID ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-05-18', + '406240.00', 'A'), + ('1236', 3, 'RODRIGUEZ MATOS ROBERTO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-03-22', '639070.00', 'A'), + ('1237', 3, 'TAPIA ALARCON PATRICIO ANDRES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2010-07-06', + '976620.00', 'A'), + ('1239', 3, 'VERCHERE ALFONSO CHRISTIAN', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2010-08-23', + '899600.00', 'A'), + ('1241', 1, 'ESPINEL LUIS FELIPE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128206, '2009-03-09', '302860.00', 'A'), + ('1242', 3, 'VERGARA FERREIRA PATRICIA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-10-03', '713310.00', 'A'), + ('1243', 3, 'ZUMARRAGA SIRVENT CRSTINA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-08-24', '657950.00', 'A'), + ('1244', 4, 'ESCORCIA VASQUEZ TOMAS', '191821112', 'CRA 25 CALLE 100', + '354@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', '149830.00', + 'A'), + ('1245', 4, 'PARAMO CUENCA KELLY LORENA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127492, '2011-05-04', + '775300.00', 'A'), + ('1246', 4, 'PEREZ LOPEZ VERONICA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2011-07-11', '426990.00', 'A'), + ('1247', 4, 'CHAPARRO RODRIGUEZ DANIELA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-08', + '809070.00', 'A'), + ('1249', 4, 'DIAZ MARTINEZ MARIA CAROLINA', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2011-05-30', + '394740.00', 'A'), + ('125', 1, 'CALDON RODRIGUEZ JAIME ARIEL', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126968, '2011-07-29', + '574780.00', 'A'), + ('1250', 4, 'PINEDA VASQUEZ JUAN PABLO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2010-09-03', '680540.00', 'A'), + ('1251', 5, 'MATIZ URIBE ANGELA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-12-25', '218470.00', 'A'), + ('1253', 1, 'ZAMUDIO RICAURTE JAIRO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 126892, '2011-08-05', '598160.00', 'A'), + ('1254', 1, 'ALJURE FRANCISCO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-07-21', '838660.00', 'A'), + ('1255', 3, 'ARMESTO AIRA ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 196234, '2011-01-29', '398840.00', 'A'), + ('1257', 1, 'POTES GUEVARA JAIRO MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127858, '2011-03-17', + '194580.00', 'A'), + ('1258', 1, 'BURBANO QUIROGA RAFAEL', '191821112', 'CRA 25 CALLE 100', + '767@facebook.com', '2011-02-03', 127591, '2011-04-07', '538220.00', + 'A'), + ('1259', 1, 'CARDONA GOMEZ JAVIR', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127300, '2011-03-16', '107380.00', 'A'), + ('126', 1, 'PULIDO PARDO GUIDO IVAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-10-05', '531550.00', 'A'), + ('1260', 1, 'LOPERA LEDESMA PABLO ANDRES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-19', + '922240.00', 'A'), + ('1263', 1, 'TRIBIN BARRIGA JUAN MANUEL', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-09-02', + '525330.00', 'A'), + ('1264', 1, 'NAVIA LOPEZ ANDRÉS FELIPE ', '191821112', + 'CRA 25 CALLE 100', '353@hotmail.es', '2011-02-03', 127300, + '2011-07-15', '591190.00', 'A'), + ('1265', 1, 'CARDONA GOMEZ FABIAN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127300, '2010-11-18', '379940.00', 'A'), + ('1266', 1, 'ESCARRIA VILLEGAS ANDRES JULIAN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-08-19', + '126160.00', 'A'), + ('1268', 1, 'CASTRO HERNANDEZ ALVARO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127300, '2011-03-25', '76260.00', 'A'), + ('127', 1, 'RODRIGUEZ RODRIGUEZ GIOVANI FRANCISCO', '191821112', + 'CRA 25 CALLE 100', '662@hotmail.es', '2011-02-03', 127591, + '2011-09-29', '933390.00', 'A'), + ('1270', 1, 'LEAL HERNANDEZ MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', '313610.00', 'A'), + ('1272', 1, 'ORTIZ CARDONA WILLIAM ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '914@hotmail.com', '2011-02-03', 128662, + '2011-09-13', '272150.00', 'A'), + ('1273', 1, 'ROMERO VAN GOMPEL HERNAN', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-09-07', '832960.00', 'A'), + ('1274', 1, 'BERMUDEZ LONDOÑO JHON FREDY', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-08-29', + '348380.00', 'A'), + ('1275', 1, 'URREA ALVAREZ NICOLAS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-01', '242980.00', 'A'), + ('1276', 1, 'VALENCIA LLANOS RODRIGO AUGUSTO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-04-11', + '169790.00', 'A'), + ('1277', 1, 'PAZ VALENCIA GUILLERMO ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127300, '2011-08-05', + '120020.00', 'A'), + ('1278', 1, 'MONROY CORREDOR GERARDO ALONSO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-06-25', + '90700.00', 'A'), + ('1279', 1, 'RIOS MEDINA JAVIER ERMINSO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-12', + '93440.00', 'A'), + ('128', 1, 'GALLEGO GUZMAN MARIO ANDRES', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-06-25', + '72290.00', 'A'), + ('1280', 1, 'GARCIA OSCAR EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-30', '195090.00', 'A'), + ('1282', 1, 'MURILLO PESELLIN GABRIEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127300, '2011-06-15', '890530.00', 'A'), + ('1284', 1, 'DIAZ ALVAREZ JOHNY', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127300, '2011-06-25', '164130.00', 'A'), + ('1285', 1, 'GARCES BELTRAN RAUL', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127300, '2011-08-11', '719220.00', 'A'), + ('1286', 1, 'MATERON POVEDA LUIS ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-25', + '103710.00', 'A'), + ('1287', 1, 'VALENCIA ALEXANDER', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-10-23', '360880.00', 'A'), + ('1288', 1, 'PEÑA AGUDELO JOSE RAMON', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 134022, '2011-05-25', '493280.00', 'A'), + ('1289', 1, 'CORREA NUÑEZ JORGE ALEXANDER', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-08-18', + '383750.00', 'A'), + ('129', 1, 'ALVAREZ RODRIGUEZ IVAN RICARDO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2008-01-28', + '561290.00', 'A'), + ('1291', 1, 'BEJARANO ROSERO FREDDY ANDRES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-09', + '43400.00', 'A'), + ('1292', 1, 'CASTILLO BARRIOS GUSTAVO ADOLFO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-06-17', + '900180.00', 'A'), + ('1296', 1, 'GALVEZ GUTIERREZ JUAN PABLO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2010-03-28', + '807090.00', 'A'), + ('1297', 3, 'CRUZ GARCIA MILTON', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 139844, '2011-03-21', '75630.00', 'A'), + ('1298', 1, 'VILLEGAS GUTIERREZ JOSE RICARDO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-11', + '956860.00', 'A'), + ('13', 1, 'VACA MURCIA JESUS ALFREDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-04', '613430.00', 'A'), + ('1301', 3, 'BOTTI ALFONSO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 231989, '2011-04-04', '910640.00', 'A'), + ('1302', 3, 'COTINO HUESO LORENZO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-02-02', '803450.00', 'A'), + ('1304', 3, 'NESPOLI MANTOVANI LUIZ CARLOS', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-04-18', + '16230.00', 'A'), + ('1307', 4, 'AVILA GIL PAULA ANDREA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-19', '711110.00', 'A'), + ('1308', 4, 'VALLEJO PINEDA ALEJANDRA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-12', '323490.00', 'A'), + ('1312', 1, 'ROMERO OSCAR EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-04-17', '642460.00', 'A'), + ('1314', 3, 'LULLIES CONSTANZE', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 245206, '2010-06-03', '154970.00', 'A'), + ('1315', 1, 'CHAPARRO GUTIERREZ JORGE ADRIANO', '191821112', + 'CRA 25 CALLE 100', '284@hotmail.es', '2011-02-03', 127591, + '2010-12-02', '325440.00', 'A'), + ('1316', 1, 'BARRANTES DISI RICARDO JOSE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132879, '2011-07-18', + '162270.00', 'A'), + ('1317', 3, 'VERDES GAGO JOSE ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 188640, '2010-03-10', '835060.00', 'A'), + ('1319', 3, 'MARTIN MARTINEZ GUSTAVO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2010-05-26', '937220.00', 'A'), + ('1320', 3, 'MOTTURA MASSIMO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2008-11-10', '620640.00', 'A'), + ('1321', 3, 'RUSSELL TIMOTHY JAMES', '191821112', 'CRA 25 CALLE 100', + '502@hotmail.es', '2011-02-03', 145135, '2010-04-16', '291560.00', 'A'), + ('1322', 3, 'JAIN TARSEM', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 190393, '2011-05-31', '595890.00', 'A'), + ('1323', 3, 'ORTEGA CEVALLOS JULIETA ELIZABETH', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-30', + '104760.00', 'A'), + ('1324', 3, 'MULLER PICHAIDA ANDRES FELIPE', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-05-17', + '736130.00', 'A'), + ('1325', 3, 'ALVEAR TELLEZ JULIO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-01-23', '366390.00', 'A'), + ('1327', 3, 'MOYA LATORRE MARCELA CAROLINA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-05-17', + '18520.00', 'A'), + ('1328', 3, 'LAMA ZAROR RODRIGO IGNACIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2010-10-27', + '221990.00', 'A'), + ('1329', 3, 'HERNANDEZ CIFUENTES MAURICE JEANETTE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 139844, '2011-06-22', + '54410.00', 'A'), + ('133', 1, 'CORDOBA HOYOS JUAN PABLO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-20', '966820.00', 'A'), + ('1330', 2, 'HOCHKOFLER NOEMI CONSUELO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-27', '606070.00', 'A'), + ('1331', 4, 'RAMIREZ BARRERO DANIELA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 154563, '2011-04-18', '867120.00', 'A'), + ('1332', 4, 'DE LEON DURANGO RICARDO JOSE', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131105, '2011-09-08', + '517400.00', 'A'), + ('1333', 4, 'RODRIGUEZ MACIAS IVAN MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129447, '2011-05-23', + '985620.00', 'A'), + ('1334', 4, 'GUTIERREZ DE PIÑERES YANET MARIA ALEJANDRA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-06-16', + '375890.00', 'A'), + ('1335', 4, 'GUTIERREZ DE PIÑERES YANET MARIA GABRIELA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-06-16', + '922600.00', 'A'), + ('1336', 4, 'CABRALES BECHARA JOSE MARIA', '191821112', + 'CRA 25 CALLE 100', '708@hotmail.com', '2011-02-03', 131105, + '2011-05-13', '485330.00', 'A'), + ('1337', 4, 'MEJIA TOBON LUIS DAVID', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127662, '2011-08-05', '658860.00', 'A'), + ('1338', 3, 'OROS NERCELLES CRISTIAN ANDRE', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 144215, '2011-04-26', + '838310.00', 'A'), + ('1339', 3, 'MORENO BRAVO CAROLINA ANDREA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 190393, '2010-12-08', + '214950.00', 'A'), + ('134', 1, 'GONZALEZ LOPEZ DANIEL ANDRES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-08', + '178580.00', 'A'), + ('1340', 3, 'FERNANDEZ GARRIDO MARCELO FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-07-08', + '559820.00', 'A'), + ('1342', 3, 'SUMEGI IMRE ZOLTAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-16', '91750.00', 'A'), + ('1343', 3, 'CALDERON FLANDEZ SERGIO', '191821112', 'CRA 25 CALLE 100', + '108@hotmail.com', '2011-02-03', 117002, '2010-12-12', '996030.00', + 'A'), + ('1345', 3, 'CARBONELL ATCHUGARRY GUILLERMO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116366, '2010-04-12', + '536390.00', 'A'), + ('1346', 3, 'MONTEALEGRE AGUILAR FEDERICO ', '191821112', + 'CRA 25 CALLE 100', '448@yahoo.es', '2011-02-03', 132165, '2011-08-08', + '567260.00', 'A'), + ('1347', 1, 'HERNANDEZ MANCHEGO CARLOS JULIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-04-28', + '227130.00', 'A'), + ('1348', 1, 'ARENAS ZARATE FERNEY ARNULFO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127963, '2011-03-26', + '433860.00', 'A'), + ('1349', 3, 'DELFIM DINIZ PASSOS PINHEIRO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 110784, '2010-04-17', + '487930.00', 'A'), + ('135', 1, 'GARCIA SIMBAQUEBA RUBEN DARIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-25', + '992420.00', 'A'), + ('1350', 3, 'BRAUN VALENZUELA FELIPE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-29', '138050.00', 'A'), + ('1351', 3, 'LEVIN FIORELLI ANDRES', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 116366, '2011-04-10', '226470.00', 'A'), + ('1353', 3, 'BALTODANO ESQUIVEL LAURA CRISTINA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-08-01', + '911660.00', 'A'), + ('1354', 4, 'ESCOBAR YEPES ANDREA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-05-19', '403630.00', 'A'), + ('1356', 1, 'GAGELI OSORIO ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '228@yahoo.com.mx', '2011-02-03', 128662, '2011-07-14', '205070.00', + 'A'), + ('1357', 3, 'CABAL ALVAREZ RUBEN', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-08-14', '175770.00', 'A'), + ('1359', 4, 'HUERFANO JUAN DAVID', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-04', '790970.00', 'A'), + ('136', 1, 'OSORIO RAMIREZ LEONARDO', '191821112', 'CRA 25 CALLE 100', + '686@yahoo.es', '2011-02-03', 128662, '2010-05-14', '426380.00', 'A'), + ('1360', 4, 'RAMON GARCIA MARIA PAULA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-01', '163890.00', 'A'), + ('1362', 30, 'ALVAREZ CLAVIO CARLA ALEJANDRA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127203, '2011-04-18', + '741020.00', 'A'), + ('1363', 3, 'SERRA DURAN GERARDO ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-03', + '365490.00', 'A'), + ('1364', 3, 'NORIEGA VALVERDE SILVIA MARCELA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132775, '2011-02-27', + '604370.00', 'A'), + ('1366', 1, 'JARAMILLO LOPEZ ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '269@terra.com.co', '2011-02-03', 127559, '2010-11-08', '813800.00', + 'A'), + ('1367', 1, 'MAZO ROLDAN CARLOS ANDRES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-04', '292880.00', 'A'), + ('1368', 1, 'MURIEL ARCILA MAURICIO HERNANDO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-29', + '22970.00', 'A'), + ('1369', 1, 'RAMIREZ CARLOS FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-14', '236230.00', 'A'), + ('137', 1, 'LUNA PEREZ JUAN PABLO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 126881, '2011-08-05', '154640.00', 'A'), + ('1370', 1, 'GARCIA GRAJALES PEDRO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128166, '2011-10-09', + '112230.00', 'A'), + ('1372', 3, 'GARCIA ESCOBAR ANA MARIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-29', '925670.00', 'A'), + ('1373', 3, 'ALVES DIAS CARLOS AUGUSTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-07', '70940.00', 'A'), + ('1374', 3, 'MATTOS CHRISTIANE GARCIA CID', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 183024, '2010-08-25', + '577700.00', 'A'), + ('1376', 1, 'CARVAJAL ROJAS ORLANDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-10', '645240.00', 'A'), + ('1377', 3, 'MADARIAGA CADIZ CLAUDIO CRISTIAN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-10-04', + '199200.00', 'A'), + ('1379', 3, 'MARIN YANEZ ALICIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188640, '2011-02-20', '703870.00', 'A'), + ('138', 1, 'DIAZ AVENDAÑO MARCELO IVAN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-22', '494080.00', 'A'), + ('1381', 3, 'COSTA VILLEGAS LUIS ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-08-21', + '580670.00', 'A'), + ('1382', 3, 'DAZA PEREZ JOSE LUIS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 122035, '2009-02-23', '888000.00', 'A'), + ('1385', 4, 'RIVEROS ARIAS MARIA ALEJANDRA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127492, '2011-09-26', + '35710.00', 'A'), + ('1386', 30, 'TORO GIRALDO MATEO', '191821112', 'CRA 25 CALLE 100', + '433@yahoo.com.mx', '2011-02-03', 127591, '2011-07-17', '700730.00', + 'A'), + ('1387', 4, 'ROJAS YARA LAURA DANIELA MARIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-31', + '396530.00', 'A'), + ('1388', 3, 'GALLEGO RODRIGO MARIA PILAR', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2009-04-19', + '880450.00', 'A'), + ('1389', 1, 'PANTOJA VELASQUEZ JOSE ARMANDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2011-08-05', + '212660.00', 'A'), + ('139', 1, 'FRANCO GOMEZ HERNÁN EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-01-19', + '6450.00', 'A'), + ('1390', 3, 'VAN DEN BORNE KEES', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 132958, '2010-01-28', '421930.00', 'A'), + ('1391', 3, 'MONDRAGON FLORES JUAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-08-22', + '471700.00', 'A'), + ('1392', 3, 'BAGELLA MICHELE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-07-27', '92720.00', 'A'), + ('1393', 3, 'BISTIANCIC MACHADO ANA INES', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 116366, '2010-08-02', + '48490.00', 'A'), + ('1394', 3, 'BAÑADOS ORTIZ MARIA PILAR', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-08-25', '964280.00', 'A'), + ('1395', 1, 'CHINDOY CHINDOY HERNANDO', '191821112', 'CRA 25 CALLE 100', + '107@terra.com.co', '2011-02-03', 126892, '2011-08-25', '675920.00', + 'A'), + ('1396', 3, 'SOTO NUÑEZ ANDRES ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-10-02', + '486760.00', 'A'), + ('1397', 1, 'DELGADO MARTINEZ LORGE ELIAS', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-23', + '406040.00', 'A'), + ('1398', 1, 'LEON GUEVARA JAVIER ANIBAL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126892, '2011-09-08', + '569930.00', 'A'), + ('1399', 1, 'ZARAMA BASTIDAS LUIS GABRIEL', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126892, '2011-08-05', + '631540.00', 'A'), + ('14', 1, 'MAGUIN HENNSSEY LUIS FERNANDO', '191821112', + 'CRA 25 CALLE 100', '714@gmail.com', '2011-02-03', 127591, '2011-07-11', + '143540.00', 'A'), + ('140', 1, 'CARRANZA CUY ALEXANDER', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-25', '550010.00', 'A'), + ('1401', 3, 'REYNA CASTORENA JOSE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 189815, '2011-08-29', '344970.00', 'A'), + ('1402', 1, 'GFALLO BOTERO SERGIO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-07-14', '381100.00', 'A'), + ('1403', 1, 'ARANGO ARAQUE JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-05-04', '870590.00', 'A'), + ('1404', 3, 'LASSNER NORBERTO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118942, '2010-02-28', '209650.00', 'A'), + ('1405', 1, 'DURANGO MARIN HECTOR LEON', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '1970-02-02', '436480.00', 'A'), + ('1407', 1, 'FRANCO CASTAÑO DIEGO MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-06-28', + '457770.00', 'A'), + ('1408', 1, 'HERNANDEZ SERGIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2011-05-29', '628550.00', 'A'), + ('1409', 1, 'CASTAÑO DUQUE CARLOS HUGO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-03-23', '769410.00', 'A'), + ('141', 1, 'CHAMORRO CHEDRAUI SERGIO ALBERTO', '191821112', + 'CRA 25 CALLE 100', '922@yahoo.com.mx', '2011-02-03', 127591, + '2011-05-07', '730720.00', 'A'), + ('1411', 1, 'RAMIREZ MONTOYA ADAMO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-04-13', '498880.00', 'A'), + ('1412', 1, 'GONZALEZ BENJUMEA OSCAR HUMBERTO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-11-01', + '610150.00', 'A'), + ('1413', 1, 'ARANGO ACEVEDO WALTER ANDRES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-10-07', + '554090.00', 'A'), + ('1414', 1, 'ARANGO GALLO HUMBERTO LEON', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-02-25', + '940010.00', 'A'), + ('1415', 1, 'VELASQUEZ LUIS GONZALO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-07-06', '37760.00', 'A'), + ('1416', 1, 'MIRA AGUILAR FRANCISCO ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-30', + '368790.00', 'A'), + ('1417', 1, 'RIVERA ARISTIZABAL CARLOS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-03-02', '730670.00', 'A'), + ('1418', 1, 'ARISTIZABAL ROLDAN ANDRES RICARDO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-02', + '546960.00', 'A'), + ('142', 1, 'LOPEZ ZULETA MAURICIO ALEXANDER', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-01', + '3550.00', 'A'), + ('1420', 1, 'ESCORCIA ARAMBURO JUAN MARIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', + '73100.00', 'A'), + ('1421', 1, 'CORREA PARRA RICARDO ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-05', + '737110.00', 'A'), + ('1422', 1, 'RESTREPO NARANJO DANIEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2011-09-15', '466240.00', 'A'), + ('1423', 1, 'VELASQUEZ CARLOS JUAN', '191821112', 'CRA 25 CALLE 100', + '123@yahoo.com', '2011-02-03', 128662, '2010-06-09', '119880.00', 'A'), + ('1424', 1, 'MACIA GONZALEZ ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2010-11-12', '200690.00', 'A'), + ('1425', 1, 'BERRIO MEJIA HELBER ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2010-06-04', + '643800.00', 'A'), + ('1427', 1, 'GOMEZ GUTIERREZ CARLOS ARIEL', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-09-08', + '153320.00', 'A'), + ('1428', 1, 'RESTREPO LOPEZ JOSE ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-12', + '915770.00', 'A'), + ('1429', 1, 'BARTH TOBAR LUIS FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-02-23', '118900.00', 'A'), + ('143', 1, 'MUNERA BEDIYA JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2010-09-21', '825600.00', 'A'), + ('1430', 1, 'JIMENEZ VELEZ ANDRES EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-02-26', + '847160.00', 'A'), + ('1431', 1, 'TAKAHASHI GAVIRIA NICOLAS KEIICHIRO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-13', + '879120.00', 'A'), + ('1432', 1, 'ESCOBAR JARAMILLO ESTEBAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2010-06-10', '854110.00', 'A'), + ('1433', 1, 'PALACIO NAVARRO ANDRES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-08-18', '633200.00', 'A'), + ('1434', 1, 'LONDOÑO MUÑOZ ADOLFO LEON', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-09-14', '603670.00', 'A'), + ('1435', 1, 'PULGARIN JAIME ANDRES', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2009-11-01', '118730.00', 'A'), + ('1436', 1, 'FERRERA ZULUAGA LUIS FELIPE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-07-10', + '782630.00', 'A'), + ('1437', 1, 'VASQUEZ VELEZ HABACUC', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-27', '557000.00', 'A'), + ('1438', 1, 'HENAO PALOMINO DIEGO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2009-05-06', '437080.00', 'A'), + ('1439', 1, 'HURTADO URIBE JUAN GONZALO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-01-11', + '514400.00', 'A'), + ('144', 1, 'ALDANA RODOLFO AUGUSTO', '191821112', 'CRA 25 CALLE 100', + '838@yahoo.es', '2011-02-03', 127591, '2011-08-07', '117350.00', 'A'), + ('1441', 1, 'URIBE DANIEL ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 133535, '2010-11-19', '760610.00', 'A'), + ('1442', 1, 'PINEDA GALIANO JUAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-07-29', + '20770.00', 'A'), + ('1443', 1, 'DUQUE BETANCOURT FABIO LEON', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-26', + '822030.00', 'A'), + ('1444', 1, 'JARAMILLO TORO HERNAN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-04-27', '47830.00', 'A'), + ('145', 1, 'VASQUEZ ZAPATA JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-09', '109940.00', 'A'), + ('1450', 1, 'TOBON FRANCO MARCO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '545@facebook.com', '2011-02-03', 127591, + '2011-05-03', '889540.00', 'A'), + ('1454', 1, 'LOTERO PAVAS CARLOS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-28', + '646750.00', 'A'), + ('1455', 1, 'ESTRADA HENAO JAVIER ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128569, '2009-09-07', + '215460.00', 'A'), + ('1456', 1, 'VALDERRAMA MAXIMILIANO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-03-23', '137030.00', 'A'), + ('1457', 3, 'ESTRADA ALVAREZ GONZALO ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 154903, '2011-05-02', + '38790.00', 'A'), + ('1458', 1, 'PAUCAR VALLEJO JAIRO ALONSO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-10-15', + '782860.00', 'A'), + ('1459', 1, 'RESTREPO GIRALDO JHON DARIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-04-04', + '797930.00', 'A'), + ('146', 1, 'BAQUERO FELIPE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2010-03-03', '197650.00', 'A'), + ('1460', 1, 'RESTREPO DOMINGUEZ GUSTAVO ADOLFO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2009-05-18', + '641050.00', 'A'), + ('1461', 1, 'YANOVICH JACKY', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-08-21', '811470.00', 'A'), + ('1462', 1, 'HINCAPIE ROLDAN JOSE ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-27', + '134200.00', 'A'), + ('1463', 3, 'ZEA JORGE OLIVER', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 150699, '2011-03-12', '236610.00', 'A'), + ('1464', 1, 'OSCAR MAURICIO ECHAVARRIA', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2010-11-24', '780440.00', 'A'), + ('1465', 1, 'COSSIO GIL JOSE ALEXANDER', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-10-01', '192380.00', 'A'), + ('1466', 1, 'GOMEZ CARLOS ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-03-01', '620580.00', 'A'), + ('1467', 1, 'VILLALOBOS OCHOA ANDRES GABRIEL', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-18', + '525740.00', 'A'), + ('1470', 1, 'GARCIA GONZALEZ DAVID DARIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-09-17', + '986990.00', 'A'), + ('1471', 1, 'RAMIREZ RESTREPO ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-03', + '162250.00', 'A'), + ('1472', 1, 'VASQUEZ GUTIERREZ JUAN ANDRES', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-05', + '850280.00', 'A'), + ('1474', 1, 'ESCOBAR ARANGO DAVID', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2010-11-01', '272460.00', 'A'), + ('1475', 1, 'MEJIA TORO JUAN DAVID', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-05-02', '68320.00', 'A'), + ('1477', 1, 'ESCOBAR GOMEZ JUAN MANUEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127848, '2011-05-15', '416150.00', 'A'), + ('1478', 1, 'BETANCUR WILSON', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2008-02-09', '508060.00', 'A'), + ('1479', 3, 'ROMERO ARRAU GONZALO ANDRES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-10', + '291880.00', 'A'), + ('148', 1, 'REINA MORENO MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-08', '699240.00', 'A'), + ('1480', 1, 'CASTAÑO OSORIO JORGE ', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127662, '2011-09-20', '935200.00', 'A'), + ('1482', 1, 'LOPEZ LOPERA ROBINSON FREDY', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-09-02', + '196280.00', 'A'), + ('1484', 1, 'HERNAN DARIO RENDON', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-03-18', '312520.00', 'A'), + ('1485', 1, 'MARTINEZ ARBOLEDA MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-11-03', + '821760.00', 'A'), + ('1486', 1, 'RODRIGUEZ MORA CARLOS MORA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-09-16', + '171270.00', 'A'), + ('1487', 1, 'PENAGOS VASQUEZ JOSE DOMINGO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-09-06', + '391080.00', 'A'), + ('1488', 1, 'UERRA MEJIA DIEGO LEON', '191821112', 'CRA 25 CALLE 100', + '704@hotmail.com', '2011-02-03', 144086, '2011-08-06', '441570.00', + 'A'), + ('1491', 1, 'QUINTERO GUTIERREZ ABEL PASTOR', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2009-11-16', + '138100.00', 'A'), + ('1492', 1, 'ALARCON YEPES IVAN DARIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 150699, '2010-05-03', '145330.00', 'A'), + ('1494', 1, 'HERNANDEZ VALLEJO ANDRES MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-09', + '125770.00', 'A'), + ('1495', 1, 'MONTOYA MORENO LUIS MIGUEL', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-09', + '691770.00', 'A'), + ('1497', 1, 'BARRERA CARLOS ANDRES', '191821112', 'CRA 25 CALLE 100', + '62@yahoo.es', '2011-02-03', 127591, '2010-08-24', '332550.00', 'A'), + ('1498', 1, 'ARROYAVE FERNANDEZ PABLO EMILIO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-05-12', + '418030.00', 'A'), + ('1499', 1, 'GOMEZ ANGEL FELIPE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-05-03', '92480.00', 'A'), + ('15', 1, 'AMSILI COHEN JOSEPH', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', '877400.00', 'A'), + ('150', 3, 'ARDILA GUTIERREZ DANIEL MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-12', + '506760.00', 'A'), + ('1500', 1, 'GONZALEZ DUQUE PABLO JOSE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2010-04-13', '208330.00', 'A'), + ('1502', 1, 'MEJIA BUSTAMANTE JUAN FELIPE', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-09', + '196000.00', 'A'), + ('1506', 1, 'SUAREZ MONTOYA JUAN PABLO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128569, '2011-09-13', '368250.00', 'A'), + ('1508', 1, 'ALVAREZ GONZALEZ JUAN PABLO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-02-15', + '355190.00', 'A'), + ('1509', 1, 'NIETO CORREA ANDRES FELIPE', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-31', + '899980.00', 'A'), + ('1511', 1, 'HERNANDEZ GRANADOS JHONATHAN', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-08-30', + '471720.00', 'A'), + ('1512', 1, 'CARDONA ALVAREZ DEIBY', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2010-10-05', '55590.00', 'A'), + ('1513', 1, 'TORRES MARULANDA JUAN ESTEBAN', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-20', + '862820.00', 'A'), + ('1514', 1, 'RAMIREZ RAMIREZ JHON JAIRO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-11', + '147310.00', 'A'), + ('1515', 1, 'MONDRAGON TORO NICOLAS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-01-19', '148100.00', 'A'), + ('1517', 3, 'SUIDA DIETER', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118942, '2008-07-21', '48580.00', 'A'), + ('1518', 3, 'LEFTWICH ANDREW PAUL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 211610, '2011-06-07', '347170.00', 'A'), + ('1519', 3, 'RENTON ANDREW GEORGE PATRICK', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2010-12-11', + '590120.00', 'A'), + ('152', 1, 'BUSTOS MONZON CARLOS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-22', + '335160.00', 'A'), + ('1521', 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 119814, '2011-04-28', + '775000.00', 'A'), + ('1522', 3, 'GUARACI FRANCO DE PAIVA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 119167, '2011-04-28', '147770.00', 'A'), + ('1525', 4, 'MORENO TENORIO MIGUEL ANGEL', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-20', + '888750.00', 'A'), + ('1527', 1, 'VELASQUEZ HERNANDEZ JHON EDUARSON', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-19', + '161270.00', 'A'), + ('1528', 4, 'VANEGAS ALEJANDRA', '191821112', 'CRA 25 CALLE 100', + '185@yahoo.com', '2011-02-03', 127591, '2011-06-20', '109830.00', 'A'), + ('1529', 3, 'BARBABE CLAIRE LAURENCE ANNICK', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-04', + '65330.00', 'A'), + ('153', 1, 'GONZALEZ TORREZ MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-01', '762560.00', 'A'), + ('1530', 3, 'COREA MARTINEZ GUILLERMO JOSE ', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-09-25', + '997190.00', 'A'), + ('1531', 3, 'PACHECO RODRIGO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 117002, '2010-03-08', '789960.00', 'A'), + ('1532', 3, 'WELCH RICHARD WILLIAM', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 190393, '2010-10-04', '958210.00', 'A'), + ('1533', 3, 'FOREMAN CAROLYN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 107159, '2011-05-23', '421200.00', 'A'), + ('1535', 3, 'ZAGAL SOTO CLAUDIA PAZ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 117002, '2008-05-16', '893130.00', 'A'), + ('1536', 3, 'ZAGAL SOTO CLAUDIA PAZ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 117002, '2011-10-08', '771600.00', 'A'), + ('1538', 3, 'BLANCO RODRIGUEZ JUAN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 197162, '2011-04-02', '578250.00', 'A'), + ('154', 1, 'HENDEZ PUERTO JAVIER ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', + '807310.00', 'A'), + ('1540', 3, 'CONTRERAS BRAIN JAVIER ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-02-22', + '42420.00', 'A'), + ('1541', 3, 'RONDON HERNANDEZ MARYLIN DEL CARMEN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-09-29', + '145780.00', 'A'), + ('1542', 3, 'ELJURI RAMIREZ EMIRA ELIZABETH', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2010-10-13', + '601670.00', 'A'), + ('1544', 3, 'REYES LE ROY TOMAS FRANCISCO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2009-06-24', + '49990.00', 'A'), + ('1545', 3, 'GHETEA GAMUZ JENNY', '191821112', 'CRA 25 CALLE 100', + '675@gmail.com', '2011-02-03', 150699, '2010-05-29', '536940.00', 'A'), + ('1546', 3, 'DUARTE GONZALEZ ROONEY ORLANDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-20', + '534720.00', 'A'), + ('1548', 3, 'BIZOT PHILIPPE PIERRE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 263813, '2011-03-02', '709760.00', 'A'), + ('1549', 3, 'PELUFFO RUBIO GUILLERMO JUAN', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 116366, '2011-05-09', + '360470.00', 'A'), + ('1550', 3, 'AGLIATI YERKOVIC CAROLINA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2010-06-01', '673040.00', 'A'), + ('1551', 3, 'SEPULVEDA LEDEZMA HENRY CORNELIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-08-15', + '283810.00', 'A'), + ('1552', 3, 'CABRERA CARMINE JAIME FRANCO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2008-11-30', + '399940.00', 'A'), + ('1553', 3, 'ZINNO PEÑA ALVARO ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 116366, '2010-08-02', '148270.00', 'A'), + ('1554', 3, 'ROMERO BUCCICARDI JUAN CRISTOBAL', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-08-01', + '541530.00', 'A'), + ('1555', 3, 'FEFERKORN ABRAHAM', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 159312, '2011-06-12', '262840.00', 'A'), + ('1556', 3, 'MASSE CATESSON CAROLINE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 131272, '2011-06-12', '689600.00', 'A'), + ('1557', 3, 'CATESSON ALEXANDRA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 131272, '2011-06-12', '659470.00', 'A'), + ('1558', 3, 'FUENTES HERNANDEZ RICARDO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-18', '228540.00', 'A'), + ('1559', 3, 'GUEVARA MENJIVAR WILSON ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-18', + '164310.00', 'A'), + ('1560', 3, 'DANOWSKI NICOLAS JAMES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-05-02', '135920.00', 'A'), + ('1561', 3, 'CASTRO VELASQUEZ ISMAEL', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 121318, '2011-07-31', '186670.00', 'A'), + ('1562', 3, 'RODRIGUEZ CORNEJO CARLOS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', + '525590.00', 'A'), + ('1563', 3, 'VANIA CAROLINA FLORES AVILA', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-18', + '67950.00', 'A'), + ('1564', 3, 'ARMERO RAMOS OSCAR ALEXANDER', '191821112', + 'CRA 25 CALLE 100', '414@hotmail.com', '2011-02-03', 127591, + '2011-09-18', '762950.00', 'A'), + ('1565', 3, 'ORELLANA MARTINEZ JUAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-18', + '610930.00', 'A'), + ('1566', 3, 'BRATT BABONNEAU CARLOS MIGUEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', + '765800.00', 'A'), + ('1567', 3, 'YANES FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 150728, '2011-04-12', '996200.00', 'A'), + ('1568', 3, 'ANGULO TAMAYO SEBASTIAN GUILLERMO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126674, '2011-05-19', + '683600.00', 'A'), + ('1569', 3, 'HENRIQUEZ JOSE LUIS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 138329, '2011-08-15', '429390.00', 'A'), + ('157', 1, 'ORTIZ RIOS ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-12', '365330.00', 'A'), + ('1570', 3, 'GARCIA VILLARROEL RAUL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 126189, '2011-06-12', '96140.00', 'A'), + ('1571', 3, 'SOLA HERNANDEZ JOSE FRANCISCO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-09-25', + '192530.00', 'A'), + ('1572', 3, 'PEREZ PASTOR OSWALDO MAGARREY', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126674, '2011-05-25', + '674260.00', 'A'), + ('1573', 3, 'MICHAN QUIÑONES FRANCISCO JOSE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-06-21', + '793680.00', 'A'), + ('1574', 3, 'GARCIA ARANDA OSCAR DAVID', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-08-15', '945620.00', 'A'), + ('1575', 3, 'GARCIA RIBAS JORDI', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-07-10', '347070.00', 'A'), + ('1576', 3, 'GALVAN ROMERO MARIA INMACULADA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-09-14', + '898480.00', 'A'), + ('1577', 3, 'BOSH MOLINAS JUAN JOSE ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 198576, '2011-08-22', '451190.00', 'A'), + ('1578', 3, 'MARTIN TENA JOSE MARIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188640, '2011-04-24', '560520.00', 'A'), + ('1579', 3, 'HAWKINS ROBERT JAMES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-12', '449010.00', 'A'), + ('1580', 3, 'GHERARDI ALEJANDRO EMILIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 180063, '2010-11-15', '563500.00', 'A'), + ('1581', 3, 'TELLO JUAN EDUARDO', '191821112', 'CRA 25 CALLE 100', + '192@hotmail.com', '2011-02-03', 138329, '2011-05-01', '470460.00', + 'A'), + ('1583', 3, 'GUZMAN VALDIVIA CINTIA TATIANA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 199862, '2011-04-06', + '897580.00', 'A'), + ('1584', 3, 'STUBBS MERCEDES CARMEN JOSEFINA DEL MILAGRO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 199862, '2011-04-06', + '502510.00', 'A'), + ('1585', 3, 'QUINTEIRO GORIS JOSE ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-17', + '819840.00', 'A'), + ('1587', 3, 'RIVAS LORIA PRISCILLA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 205636, '2011-05-01', '498720.00', 'A'), + ('1588', 3, 'DE LA TORRE AUGUSTO PATRICIO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 20404, '2011-08-31', + '718670.00', 'A'), + ('159', 1, 'ALDANA PATIÑO NORMAN ALEXANDER', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2009-10-10', + '201500.00', 'A'), + ('1590', 3, 'TORRES VILLAR ROBERTO ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2011-08-10', '329950.00', 'A'), + ('1591', 3, 'PETRULLI CARMELO MORENO', '191821112', 'CRA 25 CALLE 100', + '883@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', '358180.00', + 'A'), + ('1592', 3, 'MUSCO ENZO FRANCESCO GIUSEPPE', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-04', + '801050.00', 'A'), + ('1593', 3, 'RONCUZZI CLAUDIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127134, '2011-10-02', '930700.00', 'A'), + ('1594', 3, 'VELANI FRANCESCA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 199862, '2011-08-22', '250360.00', 'A'), + ('1596', 3, 'BENARROCH ASSOR DAVID ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-10-06', + '547310.00', 'A'), + ('1597', 3, 'FLO VILLASECA ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-05-27', '357520.00', 'A'), + ('1598', 3, 'FONT RIBAS ANTONI', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 196117, '2011-09-21', '145660.00', 'A'), + ('1599', 3, 'LOPEZ BARAHONA MONICA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2011-08-03', '655740.00', 'A'), + ('16', 1, 'FLOREZ PEREZ GUILLERMO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 132572, '2011-03-30', '956370.00', 'A'), + ('160', 1, 'GIRALDO MENDIVELSO MARTIN EDISSON', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-14', + '429010.00', 'A'), + ('1600', 3, 'SCATTIATI ALDO ', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 215245, '2011-07-10', '841730.00', 'A'), + ('1601', 3, 'MARONE CARLO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 101179, '2011-06-14', '241420.00', 'A'), + ('1602', 3, 'CHUVASHEVA ELENA ', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 190393, '2011-08-21', '681900.00', 'A'), + ('1603', 3, 'GIGLIO FRANCISCO JOSE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 122035, '2011-09-19', '685250.00', 'A'), + ('1604', 3, 'JUSTO AMATE AGUSTIN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 174598, '2011-05-16', '380560.00', 'A'), + ('1605', 3, 'GUARDABASSI FABIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 281044, '2011-07-26', '847060.00', 'A'), + ('1606', 3, 'CALABRETTA FRAMCESCO ANTONIO MARIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 199862, '2011-08-22', + '93590.00', 'A'), + ('1607', 3, 'TARTARINI MASSIMO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 196234, '2011-05-10', '926800.00', 'A'), + ('1608', 3, 'BOTTI GIAIME', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 231989, '2011-04-04', '353210.00', 'A'), + ('1610', 3, 'PILERI ANDREA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 205040, '2011-09-01', '868590.00', 'A'), + ('1612', 3, 'MARTIN GRACIA LUIS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-07-27', '324320.00', 'A'), + ('1613', 3, 'GRACIA MARTIN LUIS', '191821112', 'CRA 25 CALLE 100', + '579@facebook.com', '2011-02-03', 198248, '2011-08-24', '463560.00', + 'A'), + ('1614', 3, 'SERRAT SESE JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 196234, '2011-05-16', '344840.00', 'A'), + ('1615', 3, 'DEL LAGO AMPELIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 145135, '2011-06-29', '333510.00', 'A'), + ('1616', 3, 'PERUGORRIA RODRIGUEZ JORGE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 148511, '2011-06-06', + '633040.00', 'A'), + ('1617', 3, 'GIRAL CALVO IGNACIO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196234, '2011-09-19', '164670.00', 'A'), + ('1618', 3, 'ALONSO CEBRIAN JOSE MARIA', '191821112', 'CRA 25 CALLE 100', + '253@terra.com.co', '2011-02-03', 188640, '2011-03-23', '924240.00', + 'A'), + ('162', 1, 'ARIZA PINEDA JOHN ALEXANDER', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-11-27', + '415710.00', 'A'), + ('1620', 3, 'OLMEDO CARDENETE DOMINGO MIGUEL', '191821112', + 'CRA 25 CALLE 100', '608@terra.com.co', '2011-02-03', 135397, + '2011-09-03', '863200.00', 'A'), + ('1622', 3, 'GIMENEZ BALDRES ENRIQUE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 182860, '2011-05-12', '82660.00', 'A'), + ('1623', 3, 'NUÑEZ MIGUEL ANGEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2011-05-23', '609950.00', 'A'), + ('1624', 3, 'PEÑATE CASTRO WENCESLAO LORENZO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 153607, '2011-09-13', + '801750.00', 'A'), + ('1626', 3, 'ESCODA MIGUEL JOAN JOSEP', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 188640, '2011-07-18', '489310.00', 'A'), + ('1628', 3, 'ESTRADA CAPILLA ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-07-26', '81180.00', 'A'), + ('163', 1, 'PERDOMO LOPEZ ANDRES', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-05', '456910.00', 'A'), + ('1630', 3, 'SUBIRAIS MARIANA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-08', '138700.00', 'A'), + ('1632', 3, 'ENSEÑAT VELASCO JAIME LUIS', '191821112', + 'CRA 25 CALLE 100', '687@gmail.com', '2011-02-03', 188640, '2011-04-12', + '904560.00', 'A'), + ('1633', 3, 'DIEZ POLANCO CARLOS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-05-24', '530410.00', 'A'), + ('1636', 3, 'CUADRA ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-09-04', '688400.00', 'A'), + ('1637', 3, 'UBRIC MUÑOZ RAUL', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 98790, '2011-05-30', '139830.00', 'A'), + ('1638', 3, 'NEDDERMANN GUJO RICARDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-07-31', '633990.00', 'A'), + ('1639', 3, 'RENEDO ZALBA JAIME', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2011-03-13', '750430.00', 'A'), + ('164', 1, 'JIMENEZ PADILLA JOHAN MARCEL', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-05', + '37430.00', 'A'), + ('1640', 3, 'FERNANDEZ MORENO DAVID', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-05-28', '850180.00', 'A'), + ('1641', 3, 'VERGARA SERRANO JUAN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196234, '2011-06-30', '999620.00', 'A'), + ('1642', 3, 'MARTINEZ HUESO LUCAS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 182860, '2011-06-29', '447570.00', 'A'), + ('1643', 3, 'FRANCO POBLET JUAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 196234, '2011-10-03', '238990.00', 'A'), + ('1644', 3, 'MORA HIDALGO MIGUEL', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-06', '852250.00', 'A'), + ('1645', 3, 'GARCIA COSO EMILIANO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188640, '2011-09-14', '544260.00', 'A'), + ('1646', 3, 'GIMENO ESCRIG ENRIQUE', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 180124, '2011-09-20', '164580.00', 'A'), + ('1647', 3, 'MORCILLO LOPEZ RAMON', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127538, '2011-04-16', '190090.00', 'A'), + ('1648', 3, 'RUBIO BONET MANUEL', '191821112', 'CRA 25 CALLE 100', + '252@facebook.com', '2011-02-03', 196234, '2011-05-25', '456740.00', + 'A'), + ('1649', 3, 'PRADO ABUIN FERNANDO ', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-07-16', '713400.00', 'A'), + ('165', 1, 'RAMIREZ PALMA LUIS FELIPE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-10', '816420.00', 'A'), + ('1650', 3, 'DE VEGA PUJOL GEMA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196234, '2011-08-01', '196780.00', 'A'), + ('1651', 3, 'IBARGUEN ALFREDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2010-12-03', '843720.00', 'A'), + ('1652', 3, 'IBARGUEN ALFREDO', '191821112', 'CRA 25 CALLE 100', + '856@hotmail.com', '2011-02-03', 188640, '2011-06-18', '628250.00', + 'A'), + ('1654', 3, 'MATELLANES RODRIGUEZ NURIA PILAR', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-10-05', + '165770.00', 'A'), + ('1656', 3, 'VIDAURRAZAGA GUISOLA JUAN ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-08-08', + '495320.00', 'A'), + ('1658', 3, 'GOMEZ ULLATE MARIA ELENA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-04-12', '919090.00', 'A'), + ('1659', 3, 'ALCAIDE ALONSO JUAN MIGUEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-02', + '152430.00', 'A'), + ('166', 1, 'TUSTANOSKI RODOLFO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-12-03', '969790.00', 'A'), + ('1660', 3, 'LARROY GARCIA CRISTINA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-09-14', '4900.00', 'A'), + ('1661', 3, 'FERNANDEZ POYATO ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-09-10', '567180.00', 'A'), + ('1662', 3, 'TREVEJO PARDO JULIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-25', '821200.00', 'A'), + ('1663', 3, 'GORGA CASSINELLI VICTOR DANIEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-30', + '404490.00', 'A'), + ('1664', 3, 'MORUECO GONZALEZ JOSE ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-10-09', + '558820.00', 'A'), + ('1665', 3, 'IRURETA FERNANDEZ PEDRO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 214283, '2011-09-14', '580650.00', 'A'), + ('1667', 3, 'TREVEJO PARDO JUAN ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-25', + '392020.00', 'A'), + ('1668', 3, 'BOCOS NUÑEZ MIGUEL ANGEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 196234, '2011-10-08', '279710.00', 'A'), + ('1669', 3, 'LUIS CASTILLO JOSE AGUSTIN', '191821112', + 'CRA 25 CALLE 100', '557@hotmail.es', '2011-02-03', 168202, + '2011-06-16', '222500.00', 'A'), + ('167', 1, 'HURTADO BELALCAZAR JOHN JADY', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-08-17', + '399710.00', 'A'), + ('1670', 3, 'REDONDO GUTIERREZ EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-09-14', '273350.00', 'A'), + ('1671', 3, 'MADARIAGA ALONSO RAMON', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2011-07-26', '699240.00', 'A'), + ('1673', 3, 'REY GONZALEZ LUIS JAVIER', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 188640, '2011-07-26', '283190.00', 'A'), + ('1676', 3, 'PEREZ ESTER ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-10-03', '274900.00', 'A'), + ('1677', 3, 'GOMEZ-GRACIA HUERTA ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-22', + '112260.00', 'A'), + ('1678', 3, 'DAMASO PUENTE DIEGO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2011-05-25', '736600.00', 'A'), + ('168', 1, 'JUAN PABLO MARTINEZ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-08-15', '89160.00', 'A'), + ('1680', 3, 'DIEZ GONZALEZ LUIS MIGUEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-17', '521280.00', 'A'), + ('1681', 3, 'LOPEZ LOPEZ JOSE LUIS', '191821112', 'CRA 25 CALLE 100', + '853@yahoo.com', '2011-02-03', 196234, '2010-12-13', '567760.00', 'A'), + ('1682', 3, 'MIRO LINARES FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133442, '2011-09-03', '274930.00', 'A'), + ('1683', 3, 'ROCA PINTADO MANUEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196234, '2011-05-16', '671410.00', 'A'), + ('1684', 3, 'GARCIA BARTOLOME HORACIO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196234, '2011-09-29', '532220.00', 'A'), + ('1686', 3, 'BALMASEDA DE AHUMADA DIEZ JUAN LUIS', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 168202, '2011-04-13', + '637860.00', 'A'), + ('1687', 3, 'FERNANDEZ IMAZ FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2011-04-10', '248580.00', 'A'), + ('1688', 3, 'ELIAS CASTELLS FRANCISCO JAVIER', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-19', + '329300.00', 'A'), + ('1689', 3, 'ANIDO DIAZ DANIEL', '191821112', 'CRA 25 CALLE 100', + '491@gmail.com', '2011-02-03', 188640, '2011-04-04', '900780.00', 'A'), + ('1691', 3, 'GATELL ARIMONT MARIA CRISTINA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-17', + '877700.00', 'A'), + ('1692', 3, 'RIVERA MUÑOZ ADONI', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 211705, '2011-04-05', '840470.00', 'A'), + ('1693', 3, 'LUNA LOPEZ ALICIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 188640, '2011-10-01', '569270.00', 'A'), + ('1695', 3, 'HAMMOND ANN ELIZABETH', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118021, '2011-05-17', '916770.00', 'A'), + ('1698', 3, 'RODRIGUEZ PARAJA MARIA CRISTINA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-15', + '649080.00', 'A'), + ('1699', 3, 'RUIZ DIAZ JOSE IGNACIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-06-24', '359540.00', 'A'), + ('17', 1, 'SUAREZ CUEVAS FRANCISCO JAVIER', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2011-08-31', + '149640.00', 'A'), + ('170', 1, 'MARROQUIN AVILA FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-04', '965840.00', 'A'), + ('1700', 3, 'BACCHELLI ORTEGA JOSE MARIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126180, '2011-06-07', + '850450.00', 'A'), + ('1701', 3, 'IGLESIAS JOSE IGNACIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 188640, '2010-09-14', '173630.00', 'A'), + ('1702', 3, 'GUTIEZ CUEVAS JULIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2010-09-07', '316800.00', 'A'), + ('1704', 3, 'CALDEIRO ZAMORA JESUS CARMELO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-09', + '365230.00', 'A'), + ('1705', 3, 'ARBONA ABASCAL MANUEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-02-27', '636760.00', 'A'), + ('1706', 3, 'COHEN AMAR MOISES', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196766, '2011-05-20', '88120.00', 'A'), + ('1708', 3, 'FERNANDEZ COBOS ANDRES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2010-11-09', '387220.00', 'A'), + ('1709', 3, 'CANAL VIVES JOAQUIN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 196234, '2011-09-27', '345150.00', 'A'), + ('171', 1, 'LADINO MORENO JAVIER ORLANDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-25', + '89230.00', 'A'), + ('1710', 5, 'GARCIA BERTRAND HECTOR', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-04-07', '564100.00', 'A'), + ('1711', 1, 'CONSTANZA MARÍN ESCOBAR', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127799, '2011-03-24', '785060.00', 'A'), + ('1712', 1, 'NUNEZ BATALLA FAUSTINO JORGE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-26', + '232970.00', 'A'), + ('1713', 3, 'VILORA LAZARO ERICK MARTIN', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-26', + '809690.00', 'A'), + ('1715', 3, 'ELLIOT EDWARD JAMES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-26', '318660.00', 'A'), + ('1716', 3, 'ALCALDE ORTEÑO MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 117002, '2011-07-23', '544650.00', 'A'), + ('1717', 3, 'CIARAVELLA STEFANO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 231989, '2011-06-13', '767260.00', 'A'), + ('1718', 3, 'URRA GONZALEZ PEDRO ANDRES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-05-02', + '202370.00', 'A'), + ('172', 1, 'GUERRERO ERNESTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-15', '548610.00', 'A'), + ('1720', 3, 'JIMENEZ RODRIGUEZ ANNET', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 188640, '2011-05-25', '943140.00', 'A'), + ('1721', 3, 'LESCAY CASTELLANOS ARNALDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', + '585570.00', 'A'), + ('1722', 3, 'OCHOA AGUILAR ELIADES', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-25', '98410.00', 'A'), + ('1723', 3, 'RODRIGUEZ NUÑES JOSE ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-25', + '735340.00', 'A'), + ('1724', 3, 'OCHOA BUSTAMANTE ELIADES', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-25', '381480.00', 'A'), + ('1725', 3, 'MARTINEZ NIEVES JOSE ANGEL', '191821112', + 'CRA 25 CALLE 100', '919@yahoo.es', '2011-02-03', 127591, '2011-05-25', + '701360.00', 'A'), + ('1727', 3, 'DRAGONI ALAIN ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-25', '707850.00', 'A'), + ('1728', 3, 'FERNANDEZ LOPEZ MARCOS ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-25', + '452090.00', 'A'), + ('1729', 3, 'MATURELL ROMERO JORGE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-25', '136880.00', 'A'), + ('173', 1, 'RUIZ CEBALLOS ALEXANDER', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-04', '475380.00', 'A'), + ('1730', 3, 'LARA CASTELLANO LENNIS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-25', '328150.00', 'A'), + ('1731', 3, 'GRAHAM CRISTOPHER DRAKE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 203079, '2011-06-27', '230120.00', 'A'), + ('1732', 3, 'TORRE LUCA', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 188640, '2011-05-11', '166120.00', 'A'), + ('1733', 3, 'OCHOA HIDALGO EGLIS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-05-25', '140250.00', 'A'), + ('1734', 3, 'LOURERIO DELACROIX FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116511, '2011-09-28', + '202900.00', 'A'), + ('1736', 3, 'LEVIN FIORELLI ANDRES', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 116366, '2011-08-07', '360110.00', 'A'), + ('1739', 3, 'BERRY R ALBERT', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 216125, '2011-08-16', '22170.00', 'A'), + ('174', 1, 'NIETO PARRA SEBASTIAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-05-11', '731040.00', 'A'), + ('1740', 3, 'MARSHALL ROBERT SHEPARD', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 150159, '2011-03-09', '62860.00', 'A'), + ('1741', 3, 'HENANDEZ ROY CHRISTOPHER JOHN PATRICK', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 179614, '2011-09-26', + '247780.00', 'A'), + ('1742', 3, 'LANDRY GUILLAUME', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 232263, '2011-04-27', '50330.00', 'A'), + ('1743', 3, 'VUCETIC ZELJKO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 232263, '2011-07-25', '508320.00', 'A'), + ('1744', 3, 'DE JUANA CELASCO MARIA DEL CARMEN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-04-16', + '390620.00', 'A'), + ('1745', 3, 'LABONTE RONALD', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 269033, '2011-09-28', '428120.00', 'A'), + ('1746', 3, 'NEWMAN PHILIP MARK', '191821112', 'CRA 25 CALLE 100', + '557@gmail.com', '2011-02-03', 231373, '2011-07-25', '968750.00', 'A'), + ('1747', 3, 'GRENIER MARIE PIERRE ', '191821112', 'CRA 25 CALLE 100', + '409@facebook.com', '2011-02-03', 244158, '2011-07-03', '559370.00', + 'A'), + ('1749', 3, 'SHINDER GARY', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 244158, '2011-07-25', '775000.00', 'A'), + ('175', 3, 'GALLEGOS BASTIDAS CARLOS EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133211, '2011-08-10', + '229090.00', 'A'), + ('1750', 3, 'LOPEZ DE GOICOCHEA ZABALA FRANCISCO JAVIER', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-13', + '203120.00', 'A'), + ('1751', 3, 'CORRAL BELLON MANUEL', '191821112', 'CRA 25 CALLE 100', + '538@yahoo.com', '2011-02-03', 177443, '2011-05-02', '690610.00', 'A'), + ('1752', 3, 'DE SOLA SOLVAS JUAN ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-10-02', + '843700.00', 'A'), + ('1753', 3, 'GARCIA ALCALA DIAZ REGAÑON EVA MARIA', '191821112', + 'CRA 25 CALLE 100', '398@yahoo.com', '2011-02-03', 118777, '2010-03-15', + '146680.00', 'A'), + ('1754', 3, 'BIELA VILIAM', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 132958, '2011-08-16', '202290.00', 'A'), + ('1755', 3, 'GUIOT CANO JUAN PATRICK', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 232263, '2011-05-23', '571390.00', 'A'), + ('1756', 3, 'JIMENEZ DIAZ LUIS MIGUEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-03-27', '250100.00', 'A'), + ('1757', 3, 'FOX ELEANORE MAE', '191821112', 'CRA 25 CALLE 100', + '117@yahoo.com', '2011-02-03', 190393, '2011-05-04', '536340.00', 'A'), + ('1758', 3, 'TANG VAN SON', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132958, '2011-05-07', '931400.00', 'A'), + ('1759', 3, 'SUTTON PETER RONALD', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 281673, '2011-06-01', '47960.00', 'A'), + ('176', 1, 'GOMEZ IVAN', '191821112', 'CRA 25 CALLE 100', + '438@yahoo.com.mx', '2011-02-03', 127591, '2008-04-09', '952310.00', + 'A'), + ('1762', 3, 'STOODY MATTHEW FRANCIS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-07-21', '84320.00', 'A'), + ('1763', 3, 'SEIX MASO ARNAU', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 150699, '2011-05-24', '168880.00', 'A'), + ('1764', 3, 'FERNANDEZ REDEL RAQUEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-09-14', '591440.00', 'A'), + ('1765', 3, 'PORCAR DESCALS VICENNTE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 176745, '2011-04-24', '450580.00', 'A'), + ('1766', 3, 'PEREZ DE VILLEGAS TRILLO FIGUEROA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-05-17', + '478560.00', 'A'), + ('1767', 3, 'CELDRAN DEGANO ANGEL', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 196234, '2011-05-17', '41040.00', 'A'), + ('1768', 3, 'TERRAGO MARI FERRAN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 188640, '2011-09-30', '769550.00', 'A'), + ('1769', 3, 'SZUCHOVSZKY GERGELY', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 250256, '2011-05-23', '724630.00', 'A'), + ('177', 1, 'SEBASTIAN TORO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127443, '2011-07-14', '74270.00', 'A'), + ('1771', 3, 'TORIBIO JOSE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 226612, '2011-09-04', '398570.00', 'A'), + ('1772', 3, 'JOSE LUIS BAQUERA PEIRONCELLY', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2010-10-19', + '49360.00', 'A'), + ('1773', 3, 'MADARIAGA VILLANUEVA MIGUEL', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-04-12', + '51090.00', 'A'), + ('1774', 3, 'VILLENA BORREGO ANTONIO', '191821112', 'CRA 25 CALLE 100', + '830@terra.com.co', '2011-02-03', 188640, '2011-07-19', '107400.00', + 'A'), + ('1776', 3, 'VILAR VILLALBA JOSE LUIS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 180124, '2011-09-20', '596330.00', 'A'), + ('1777', 3, 'CAGIGAL ORTIZ MACARENA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 214283, '2011-09-14', '830530.00', 'A'), + ('1778', 3, 'KORBA ATTILA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 250256, '2011-09-27', '363650.00', 'A'), + ('1779', 3, 'KORBA-ELIAS BARBARA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 250256, '2011-09-27', '326670.00', 'A'), + ('178', 1, 'AMSILI COHEN HANAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2009-08-29', '514450.00', 'A'), + ('1780', 3, 'PINDADO GOMEZ JESUS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 189053, '2011-04-26', '542400.00', 'A'), + ('1781', 3, 'IBARRONDO GOMEZ GRACIA ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-09-21', + '731990.00', 'A'), + ('1782', 3, 'MUNGUIRA GONZALEZ JUAN JULIAN', '191821112', + 'CRA 25 CALLE 100', '54@hotmail.es', '2011-02-03', 188640, '2011-09-06', + '32730.00', 'A'), + ('1784', 3, 'LANDMAN PIETER MARINUS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 294861, '2011-09-22', '740260.00', 'A'), + ('1789', 3, 'SUAREZ AINARA ', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-05-17', '503470.00', 'A'), + ('179', 1, 'CARO JUNCO GUIOVANNY', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-03', '349420.00', 'A'), + ('1790', 3, 'MARTINEZ CHACON JOSE JOAQUIN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-20', + '592220.00', 'A'), + ('1792', 3, 'MENDEZ DEL RION LUCIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 120639, '2011-06-16', '476910.00', 'A'), + ('1793', 3, 'VERHULST LAMBERTUS CORNELIA FRANCISCUS ALPHONSUS', + '191821112', 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 295420, + '2011-07-04', '32410.00', 'A'), + ('1794', 3, 'YAÑEZ YAGUE JESUS', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 188640, '2011-07-10', '731290.00', 'A'), + ('1796', 3, 'GOMEZ ZORRILLA AMATE JOSE MARIOA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-07-12', + '602380.00', 'A'), + ('1797', 3, 'LAIZ MORENO ENEKO', '191821112', 'CRA 25 CALLE 100', + '219@gmail.com', '2011-02-03', 127591, '2011-08-05', '334150.00', 'A'), + ('1798', 3, 'MORODO RUIZ RUBEN DAVID', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-09-14', '863620.00', 'A'), + ('18', 1, 'GARZON VARGAS GUILLERMO FEDERICO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-29', + '879110.00', 'A'), + ('1800', 3, 'ALFARO FAUS MANUEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 196234, '2011-09-14', '987410.00', 'A'), + ('1801', 3, 'MORRALLA VALLVERDU ENRIC', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 194601, '2011-07-18', '990070.00', 'A'), + ('1802', 3, 'BALBASTRE TEJEDOR JUAN VICENTE', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 182860, '2011-08-24', + '988120.00', 'A'), + ('1803', 3, 'MINGO REIZ FRANCISCO JAVIER', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2010-03-24', + '970400.00', 'A'), + ('1804', 3, 'IRURETA FERNANDEZ JOSE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 214283, '2011-09-10', '887630.00', 'A'), + ('1807', 3, 'NEBRO MELLADO JOSE JUAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 168996, '2011-08-15', '278540.00', 'A'), + ('1808', 3, 'ALBERQUILLA OJEDA JOSE DANIEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-09-27', + '477070.00', 'A'), + ('1809', 3, 'BUENDIA NORTE MARIA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 131401, '2011-07-08', '549720.00', 'A'), + ('181', 1, 'CASTELLANOS FLORES RODRIGO ALFONSO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-18', + '970470.00', 'A'), + ('1811', 3, 'HILBERT ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-08', '937830.00', 'A'), + ('1812', 3, 'GONZALES PINTO COTERILLO ADOLFO LORENZO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 214283, '2011-09-10', + '736970.00', 'A'), + ('1813', 3, 'ARQUES ALVAREZ JOSE RICARDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-04-04', + '871360.00', 'A'), + ('1817', 3, 'CLAUSELL LOW ROBERTO EMILIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2011-09-28', + '348770.00', 'A'), + ('1818', 3, 'BELICHON MARTINEZ JESUS ALVARO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-04-12', + '327010.00', 'A'), + ('182', 1, 'GUZMAN NIETO JOSE MARIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-20', '241130.00', 'A'), + ('1821', 3, 'LINATI DE PUIG JORGE', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 196234, '2011-05-18', '47210.00', 'A'), + ('1823', 3, 'SINBARRERA ROMA ', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 196234, '2011-09-08', '598380.00', 'A'), + ('1826', 2, 'JUANES GARATE BRUNO ', '191821112', 'CRA 25 CALLE 100', + '301@gmail.com', '2011-02-03', 118777, '2011-08-21', '877650.00', 'A'), + ('1827', 3, 'BOLOS GIMENO ROGELIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 200247, '2010-11-28', '555470.00', 'A'), + ('1828', 3, 'ZABALA ASTIGARRAGA JOSE MARIA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-09-20', + '144410.00', 'A'), + ('1831', 3, 'MAPELLI CAFFARENA BORJA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 172381, '2011-09-04', '58200.00', 'A'), + ('1833', 3, 'LARMONIE LESLIE MARTIN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-30', '604840.00', 'A'), + ('1834', 3, 'WILLEMS ROBERT-JAN MICHAEL', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 288531, '2011-09-05', + '756530.00', 'A'), + ('1835', 3, 'ANJEMA LAURENS JAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2011-08-29', '968140.00', 'A'), + ('1836', 3, 'VERHULST HENRICUS LAMBERTUS MARIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 295420, '2011-04-03', + '571100.00', 'A'), + ('1837', 3, 'PIERROT JOZEF MARIE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 288733, '2011-05-18', '951100.00', 'A'), + ('1838', 3, 'EIKELBOOM HIDDE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-02', '42210.00', 'A'), + ('1839', 3, 'TAMBINI GOMEZ DE MUNG', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 180063, '2011-04-24', '357740.00', 'A'), + ('1840', 3, 'MAGAÑA PEREZ GERARDO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-09-28', + '662060.00', 'A'), + ('1841', 3, 'COURTOISIE BEYHAUT RAFAEL JUAN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116366, '2011-09-05', + '237070.00', 'A'), + ('1842', 3, 'ROJAS BENJAMIN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-13', '199170.00', 'A'), + ('1843', 3, 'GARCIA VICENTE EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 150699, '2011-08-10', '284650.00', 'A'), + ('1844', 3, 'CESTTI LOPEZ RAFAEL GUSTAVO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 144215, '2011-09-27', + '825750.00', 'A'), + ('1845', 3, 'URTECHO LOPEZ ARMANDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 139272, '2011-09-28', '274800.00', 'A'), + ('1846', 3, 'SEGURA ESPINOZA ARMANDO SEBASTIAN', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 135360, '2011-09-28', + '896730.00', 'A'), + ('1847', 3, 'GONZALEZ VEGA LUIS PASTOR', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 135360, '2011-05-18', '659240.00', 'A'), + ('185', 1, 'AYALA CARDENAS NELSON MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', + '855960.00', 'A'), + ('1850', 3, 'ROTZINGER ROA KLAUS ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 116366, '2011-09-12', '444250.00', 'A'), + ('1851', 3, 'FRANCO DE LEON SEBASTIAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 116366, '2011-04-26', '63840.00', 'A'), + ('1852', 3, 'RIVAS GAGNONI LUIS ARMANDO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 135360, '2011-05-18', + '986440.00', 'A'), + ('1853', 3, 'BARRETO VELASQUEZ JOEL FERNANDO', '191821112', + 'CRA 25 CALLE 100', '104@hotmail.es', '2011-02-03', 116511, + '2011-04-27', '740670.00', 'A'), + ('1854', 3, 'SEVILLA AMAYA ORLANDO', '191821112', 'CRA 25 CALLE 100', + '264@yahoo.com', '2011-02-03', 136995, '2011-05-18', '744020.00', 'A'), + ('1855', 3, 'VALFRE BRALICH ELEONORA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 116366, '2011-06-06', '498080.00', 'A'), + ('1857', 3, 'URDANETA DIAMANTES DIEGO ANDRES', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-09-23', + '797590.00', 'A'), + ('1858', 3, 'RAMIREZ ALVARADO ROBERT JESUS', '191821112', + 'CRA 25 CALLE 100', '290@yahoo.com.mx', '2011-02-03', 127591, + '2011-09-18', '212850.00', 'A'), + ('1859', 3, 'GUTTNER DENNIS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-06-25', '671470.00', 'A'), + ('186', 1, 'CARRASCO SUESCUN ANDRES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-15', '36620.00', 'A'), + ('1861', 3, 'HEGEMANN JOACHIM', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-25', '579710.00', 'A'), + ('1862', 3, 'MALCHER INGO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 292243, '2011-06-23', '742060.00', 'A'), + ('1864', 3, 'HOFFMEISTER MALTE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128206, '2011-09-06', '629770.00', 'A'), + ('1865', 3, 'BOHME ALEXANDRA LUCE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-14', '235260.00', 'A'), + ('1866', 3, 'HAMMAN FRANK THOMAS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-13', '286980.00', 'A'), + ('1867', 3, 'GOPPERT MARKUS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-09-05', '729150.00', 'A'), + ('1868', 3, 'BISCARO CAROLINA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-16', '784790.00', 'A'), + ('1869', 3, 'MASCHAT SEBASTIAN STEPHAN ANDREAS', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-02-03', + '736520.00', 'A'), + ('1870', 3, 'WALTHER DANIEL CLAUS PETER', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-24', + '328220.00', 'A'), + ('1871', 3, 'NENTWIG DANIEL', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 289697, '2011-02-03', '431550.00', 'A'), + ('1872', 3, 'KARUTZ ALEX', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127662, '2011-03-17', '173090.00', 'A'), + ('1875', 3, 'KAY KUNNE', '191821112', 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 289697, '2011-03-18', '961400.00', 'A'), + ('1876', 2, 'SCHLUMPF IVANA PATRICIA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 245206, '2011-03-28', '802690.00', 'A'), + ('1877', 3, 'RODRIGUEZ BUSTILLO CONSUELO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 139067, '2011-03-21', + '129280.00', 'A'), + ('1878', 1, 'REHWALDT RICHARD ULRICH', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 289697, '2009-10-25', '238320.00', 'A'), + ('1880', 3, 'FONSECA BEHRENS MANUELA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-18', '303810.00', 'A'), + ('1881', 3, 'VOGEL MIRKO', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-06-09', '107790.00', 'A'), + ('1882', 3, 'WU WEI', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 289697, '2011-03-04', '627520.00', 'A'), + ('1884', 3, 'KADOLSKY ANKE SIGRID', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 289697, '2010-10-07', '188560.00', 'A'), + ('1885', 3, 'PFLUCKER PLENGE CARLOS HERNAN', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 239124, '2011-08-15', + '500140.00', 'A'), + ('1886', 3, 'PEÑA LAGOS MELENIA PATRICIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', + '935020.00', 'A'), + ('1887', 3, 'CALVANO MARCO ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118942, '2011-05-02', '174690.00', 'A'), + ('1888', 3, 'KUHLEN LOTHAR WILHELM', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 289232, '2011-08-30', '68390.00', 'A'), + ('1889', 3, 'QUIJANO RICO SOFIA VICTORIA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 221939, '2011-06-13', + '817890.00', 'A'), + ('189', 1, 'GOMEZ TRUJILLO SERGIO ANDRES', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-17', + '985980.00', 'A'), + ('1890', 3, 'SCHILBERZ KARIN', '191821112', 'CRA 25 CALLE 100', + '405@facebook.com', '2011-02-03', 287570, '2011-06-23', '884260.00', + 'A'), + ('1891', 3, 'SCHILBERZ SOPHIE CAHRLOTTE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 287570, '2011-06-23', + '967640.00', 'A'), + ('1892', 3, 'MOLINA MOLINA MILAGRO DE SUYAPA', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 139844, '2011-07-26', + '185410.00', 'A'), + ('1893', 3, 'BARRIENTOS ESCALANTE RAFAEL ALVARO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 139067, '2011-05-18', + '24110.00', 'A'), + ('1895', 3, 'ENGELS FRANZBERNARD', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 292243, '2011-07-01', '749430.00', 'A'), + ('1896', 3, 'FRIEDHOFF SVEN WILHEM', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 289697, '2010-10-31', '54090.00', 'A'), + ('1897', 3, 'BARTELS CHRISTIAN JOHAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 133535, '2011-07-25', '22160.00', 'A'), + ('1898', 3, 'NILS REMMEL', '191821112', 'CRA 25 CALLE 100', + '214@gmail.com', '2011-02-03', 256231, '2011-08-05', '948530.00', 'A'), + ('1899', 3, 'DR SCHEIBE MATTHIAS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 252431, '2011-09-26', '676150.00', 'A'), + ('19', 1, 'RIAÑO ROMERO ALBERTO ELIAS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2009-12-14', '946630.00', 'A'), + ('190', 1, 'LLOREDA ORTIZ FELIPE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-12-20', '30860.00', 'A'), + ('1900', 3, 'CARRASCO CATERIANO PEDRO', '191821112', 'CRA 25 CALLE 100', + '255@hotmail.com', '2011-02-03', 286578, '2011-05-02', '535180.00', + 'A'), + ('1901', 3, 'ROSENBER DIRK PETER', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-29', '647450.00', 'A'), + ('1902', 3, 'LAUBACH JOHANNES', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 289697, '2011-05-01', '631720.00', 'A'), + ('1904', 3, 'GRUND STEFAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 256231, '2011-08-05', '185990.00', 'A'), + ('1905', 3, 'GRUND BEATE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 256231, '2011-08-05', '281280.00', 'A'), + ('1906', 3, 'CORZO PAULA MIRIANA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 180063, '2011-08-02', '848400.00', 'A'), + ('1907', 3, 'OESTERHAUS CORNELIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 256231, '2011-03-16', '398170.00', 'A'), + ('1908', 1, 'JUAN SEBASTIAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127300, '2011-05-12', '445660.00', 'A'), + ('1909', 3, 'VAN ZIJL CHRISTIAN ANDREAS', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 286785, '2011-09-24', + '33800.00', 'A'), + ('191', 1, 'CASTAÑEDA CABALLERO JUAN MANUEL', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-28', + '196370.00', 'A'), + ('1910', 3, 'LORZA RUIZ MYRIAM ESPERANZA', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-29', + '831990.00', 'A'), + ('192', 1, 'ZEA EDUARDO', '191821112', 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-09-09', '889270.00', 'A'), + ('193', 1, 'VELEZ VICTOR MANUEL', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2010-10-22', '857250.00', 'A'), + ('194', 1, 'ARCINIEGAS GOMEZ ISMAEL', '191821112', 'CRA 25 CALLE 100', + '937@hotmail.com', '2011-02-03', 127591, '2011-05-18', '618450.00', + 'A'), + ('195', 1, 'LINAREZ PEDRO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-12', '520470.00', 'A'), + ('1952', 3, 'BERND ERNST HEINZ SCHUNEMANN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 255673, '2011-09-04', + '796820.00', 'A'), + ('1953', 3, 'BUCHNER RICHARD ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-17', '808430.00', 'A'), + ('1954', 3, 'CHO YONG BEOM', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 173192, '2011-02-07', '651670.00', 'A'), + ('1955', 3, 'BERNECKER WALTER LUDWIG', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 256231, '2011-04-03', '833080.00', 'A'), + ('1956', 3, 'SCHIERENBECK THOMAS', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 256231, '2011-05-03', '210380.00', 'A'), + ('1957', 3, 'STEGMANN WOLF DIETER', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-08-27', '552650.00', 'A'), + ('1958', 3, 'LEBAGE GONZALEZ VALENTINA CECILIA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 131272, '2011-07-29', + '132130.00', 'A'), + ('1959', 3, 'CABRERA MACCHI JOSE ', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 180063, '2011-08-02', '2700.00', 'A'), + ('196', 1, 'OTERO BERNAL ALVARO ERNESTO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-04-29', + '747030.00', 'A'), + ('1960', 3, 'KOO BONKI', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2011-05-15', '617110.00', 'A'), + ('1961', 3, 'JODJAHN DE CARVALHO BEIRAL FLAVIA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-07-05', + '77460.00', 'A'), + ('1963', 3, 'VIEIRA ROCHA MARQUES ELIANE TEREZINHA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118402, '2011-09-13', + '447430.00', 'A'), + ('1965', 3, 'KELLEN CRISTINA GATTI', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 126180, '2011-07-01', '804020.00', 'A'), + ('1966', 3, 'CHAVEZ MARLON TENORIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-25', '132310.00', 'A'), + ('1967', 3, 'SERGIO COZZI', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 125750, '2011-08-28', '249500.00', 'A'), + ('1968', 3, 'REZENDE LIMA JOSE MARCIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118777, '2011-08-23', '850570.00', 'A'), + ('1969', 3, 'RAMOS PEDRO ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118942, '2011-08-03', '504330.00', 'A'), + ('1972', 3, 'ADAMS THOMAS', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118942, '2011-08-11', '774000.00', 'A'), + ('1973', 3, 'WALESKA NUCINI BOGO ANDREA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-23', + '859690.00', 'A'), + ('1974', 3, 'GERMANO PAULO BUNN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118439, '2011-08-30', '976440.00', 'A'), + ('1975', 3, 'CALDEIRA FILHO RUBENS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118942, '2011-07-18', '303120.00', 'A'), + ('1976', 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 119814, '2011-09-08', + '586290.00', 'A'), + ('1977', 3, 'GAMAS MARIA CRISTINA ALVES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-09-19', + '22070.00', 'A'), + ('1979', 3, 'PORTO WEBER FERREIRA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-07', '691340.00', 'A'), + ('1980', 3, 'FONSECA LAURO PINTO', '191821112', 'CRA 25 CALLE 100', + '104@hotmail.es', '2011-02-03', 127591, '2011-08-16', '402140.00', 'A'), + ('1981', 3, 'DUARTE ELENA CECILIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118777, '2011-06-15', '936710.00', 'A'), + ('1983', 3, 'CECHINEL CRISTIAN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118942, '2011-06-12', '575530.00', 'A'), + ('1984', 3, 'BATISTA PINHERO JOAO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118777, '2011-04-25', '446250.00', 'A'), + ('1987', 1, 'ISRAEL JOSE MAXWELL', '191821112', 'CRA 25 CALLE 100', + '936@gmail.com', '2011-02-03', 125894, '2011-07-04', '408350.00', 'A'), + ('1988', 3, 'BATISTA CARVALHO RODRIGO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118864, '2011-09-19', '488410.00', 'A'), + ('1989', 3, 'RENO DA SILVEIRA EDNEIA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118867, '2011-05-03', '216990.00', 'A'), + ('199', 1, 'BASTO CORREA FERNANDO ANTONIO ', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-21', + '616860.00', 'A'), + ('1990', 3, 'SEIDLER KOHNERT G TEIXEIRA CHRISTINA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 119814, '2011-08-23', + '619730.00', 'A'), + ('1992', 3, 'GUIMARAES COSTA LEONARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2011-04-20', '379090.00', 'A'), + ('1993', 3, 'BOTTA RODRIGO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118777, '2011-09-16', '552510.00', 'A'), + ('1994', 3, 'ARAUJO DA SILVA MARCELO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 125666, '2011-08-03', '625260.00', 'A'), + ('1995', 3, 'DA SILVA FELIPE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118864, '2011-04-14', '468760.00', 'A'), + ('1996', 3, 'MANFIO RODRIGUEZ FERNANDO', '191821112', 'CRA 25 CALLE 100', + '974@yahoo.com', '2011-02-03', 118777, '2011-03-23', '468040.00', 'A'), + ('1997', 3, 'NEIVA MORENO DE SOUZA CRISTIANE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-24', + '933900.00', 'A'), + ('2', 3, 'CHEEVER MICHAEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-04', '560090.00', 'I'), + ('2000', 3, 'ROCHA GUSTAVO ADRIANO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118288, '2011-07-25', '830340.00', 'A'), + ('2001', 3, 'DE ANDRADE CARVALHO VIRGINIA', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-08-11', + '575760.00', 'A'), + ('2002', 3, 'CAVALCANTI PIERECK GUILHERME', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 180063, '2011-08-01', + '387770.00', 'A'), + ('2004', 3, 'HOEGEMANN RAMOS CARLOS FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-04', + '894550.00', 'A'), + ('201', 1, 'LUIS FERNANDO AREVALO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-06-17', '156730.00', 'A'), + ('2010', 3, 'GOMES BUCHALA JORGE FERNANDO ', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-23', + '314800.00', 'A'), + ('2011', 3, 'MARTINS SIMAIKA CATIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118777, '2011-06-01', '155020.00', 'A'), + ('2012', 3, 'MONICA CASECA BUENO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118777, '2011-05-16', '830710.00', 'A'), + ('2013', 3, 'ALBERTAL MARCELO ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118000, '2010-09-10', '688480.00', 'A'), + ('2015', 3, 'GOMES CANTARELLI JAIRO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118761, '2011-01-11', '685940.00', 'A'), + ('2016', 3, 'CADETTI GARBELLINI ENILICE CRISTINA ', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-11', + '578870.00', 'A'), + ('2017', 3, 'SPIELKAMP KLAUS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 150699, '2011-03-28', '836540.00', 'A'), + ('2019', 3, 'GARES HENRI PHILIPPE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 135190, '2011-04-05', '720730.00', 'A'), + ('202', 1, 'LUCIO CHAUSTRE ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-19', '179240.00', 'A'), + ('2023', 3, 'GRECO DE RESENDELUIZ ALFREDO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 119814, '2011-04-25', + '647940.00', 'A'), + ('2024', 3, 'CORTINA EVANDRO JOAO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118922, '2011-05-12', '153970.00', 'A'), + ('2026', 3, 'BASQUES MOURA GERALDO CARLOS', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 119814, '2011-09-07', + '668250.00', 'A'), + ('2027', 3, 'DA SILVA VALDECIR', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', '863150.00', 'A'), + ('2028', 3, 'CHI MOW YUNG IVAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-21', '311000.00', 'A'), + ('2029', 3, 'YUNG MYRA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-21', '965570.00', 'A'), + ('2030', 3, 'MARTINS RAMALHO PATRICIA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2011-03-23', '894830.00', 'A'), + ('2031', 3, 'DE LEMOS RIBEIRO GILBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118951, '2011-07-29', '577430.00', 'A'), + ('2032', 3, 'AIROLDI CLAUDIO', '191821112', 'CRA 25 CALLE 100', + '973@terra.com.co', '2011-02-03', 127591, '2011-09-28', '202650.00', + 'A'), + ('2033', 3, 'ARRUDA MENDES HEILMANN IONE TEREZA', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 120773, '2011-09-07', + '280990.00', 'A'), + ('2034', 3, 'TAVARES DE CARVALHO EDUARDO JOSE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118942, '2011-08-03', + '796980.00', 'A'), + ('2036', 3, 'FERNANDES ALARCON RAFAEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118777, '2011-08-28', '318730.00', 'A'), + ('2037', 3, 'SUCHODOLKI SERGIO GUSMAO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 190393, '2011-07-13', '167870.00', 'A'), + ('2039', 3, 'ESTEVES MARCAL MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-02-24', '912100.00', 'A'), + ('2040', 3, 'CORSI LUIZ ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2011-03-25', '911080.00', 'A'), + ('2041', 3, 'LOPEZ MONICA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118795, '2011-05-03', '819090.00', 'A'), + ('2042', 3, 'QUINTANILHA LUIS CARLOS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-16', '362230.00', 'A'), + ('2043', 3, 'DE CARLI BRUNO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118777, '2011-05-03', '353890.00', 'A'), + ('2045', 3, 'MARINO FRANCA MARILIA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118777, '2011-07-04', '352060.00', 'A'), + ('2048', 3, 'VOIGT ALPHONSE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118439, '2010-11-22', '384150.00', 'A'), + ('2049', 3, 'ALENCAR ARIMA TATIANA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118777, '2011-05-23', '408590.00', 'A'), + ('2050', 3, 'LINIS DE ALMEIDA NEILSON', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 125666, '2011-08-03', '890480.00', 'A'), + ('2051', 3, 'PINHEIRO DE CASTRO BENETI', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118942, '2011-08-09', '226640.00', 'A'), + ('2052', 3, 'ALVES DO LAGO HELMANN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118942, '2011-08-01', '461770.00', 'A'), + ('2053', 3, 'OLIVO MARCO ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-03-22', '628900.00', 'A'), + ('2054', 3, 'WILLIAM DOMINGUES SERGIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118085, '2011-08-23', '759220.00', 'A'), + ('2055', 3, 'DE SOUZA MENEZES KLEBER', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118777, '2011-04-25', '909400.00', 'A'), + ('2056', 3, 'CABRAL NEIDE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-16', '269340.00', 'A'), + ('2057', 3, 'RODRIGUES RENATO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118777, '2011-06-15', '618500.00', 'A'), + ('2058', 3, 'SPADALE PEDRO JORGE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118942, '2011-08-03', '284490.00', 'A'), + ('2059', 3, 'MARTINS DE ALMEIDA GUSTAVO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-09-28', + '566920.00', 'A'), + ('206', 1, 'TORRES HEBER MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2011-01-29', '643210.00', 'A'), + ('2060', 3, 'IKUNO CELINA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118777, '2011-06-08', '981170.00', 'A'), + ('2061', 3, 'DAL BELLO FABIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 129499, '2011-08-20', '205050.00', 'A'), + ('2062', 3, 'BENATES ADRIANA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-23', '81770.00', 'A'), + ('2063', 3, 'CARDOSO ALEXANDRE ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', '793690.00', 'A'), + ('2064', 3, 'ZANIOLO DE SOUZA CARLOS HENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-09-19', + '723130.00', 'A'), + ('2065', 3, 'DA SILVA LUIZ SIDNEI', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118777, '2011-03-30', '234590.00', 'A'), + ('2066', 3, 'RUFATO DE SOUZA LUIZ FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-08-29', + '3560.00', 'A'), + ('2067', 3, 'DE MEDEIROS LUCIANA', '191821112', 'CRA 25 CALLE 100', + '994@yahoo.com.mx', '2011-02-03', 118777, '2011-09-10', '314020.00', + 'A'), + ('2068', 3, 'WOLFF PIAZERA DANIEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118255, '2011-06-15', '559430.00', 'A'), + ('2069', 3, 'DA SILVA FORTUNA MARINA CLAUDIA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-09-23', + '855100.00', 'A'), + ('2070', 3, 'PEREIRA BORGES LUCILA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-26', '597210.00', 'A'), + ('2072', 3, 'PORROZZI DE ALMEIDA RENATO', '191821112', + 'CRA 25 CALLE 100', '812@hotmail.es', '2011-02-03', 127591, + '2011-06-13', '312120.00', 'A'), + ('2073', 3, 'KALICHSZTEINN RICARDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118777, '2011-03-23', '298330.00', 'A'), + ('2074', 3, 'OCCHIALINI GUIMARAES ANA PAULA', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2011-08-03', + '555310.00', 'A'), + ('2075', 3, 'MAZZUCO FONTES LUIZ ROBERTO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-05-23', + '881570.00', 'A'), + ('2078', 3, 'TRAN DINH VAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', '98560.00', 'A'), + ('2079', 3, 'NGUYEN THI LE YEN', '191821112', 'CRA 25 CALLE 100', + '249@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', '298200.00', + 'A'), + ('208', 1, 'GOMEZ GONZALEZ JORGE MARIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-12', '889010.00', 'A'), + ('2080', 3, 'MILA DE LA ROCA JOHANA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132958, '2011-01-26', '195350.00', 'A'), + ('2081', 3, 'RODRIGUEZ DE FLORES LOURDES MARIA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-16', + '82120.00', 'A'), + ('2082', 3, 'FLORES PEREZ FRANCISCO GUILLERMO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-23', + '824550.00', 'A'), + ('2083', 3, 'FRAGACHAN BETANCOUT FRANCISCO JO SÉ', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-07-04', + '876400.00', 'A'), + ('2084', 3, 'GAFARO MOLINA CARLOS JULIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-22', + '908370.00', 'A'), + ('2085', 3, 'CACERES REYES JORGEANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-08-11', + '912630.00', 'A'), + ('2086', 3, 'ALVAREZ RODRIGUEZ VICTOR ROGELIO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2011-05-23', + '838040.00', 'A'), + ('2087', 3, 'GARCES ALVARADO JHAGEIMA JOSEFINA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-04-29', + '452320.00', 'A'), + ('2089', 3, 'FAVREAU CHOLLET JEAN PIERRE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132554, '2011-05-27', + '380470.00', 'A'), + ('209', 1, 'CRUZ RODRIGEZ CARLOS ANDRES', '191821112', + 'CRA 25 CALLE 100', '316@hotmail.es', '2011-02-03', 127591, + '2011-06-28', '953870.00', 'A'), + ('2090', 3, 'GARAY LLUCH URBI ALAIN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132958, '2011-03-13', '659870.00', 'A'), + ('2091', 3, 'LETICIA LETICIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-07', '157950.00', 'A'), + ('2092', 3, 'VELASQUEZ RODULFO RAMON ARISTIDES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-23', + '810140.00', 'A'), + ('2093', 3, 'PEREZ EDGAR', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-06', '576850.00', 'A'), + ('2094', 3, 'PEREZ MARIELA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-06-07', '453840.00', 'A'), + ('2095', 3, 'PETRUZZI MANGIARANO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132958, '2011-03-27', '538650.00', 'A'), + ('2096', 3, 'LINARES GORI RICARDO RAMON', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-12', + '331730.00', 'A'), + ('2097', 3, 'LAIRET OLIVEROS CAROLINE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-25', '42680.00', 'A'), + ('2099', 3, 'JIMENEZ GARCIA FERNANDO JOSE', '191821112', + 'CRA 25 CALLE 100', '78@hotmail.es', '2011-02-03', 132958, '2011-07-21', + '963110.00', 'A'), + ('21', 1, 'RUBIO ESCOBAR RUBEN DARIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2009-05-21', '639240.00', 'A'), + ('2100', 3, 'ZABALA MILAGROS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-20', '160860.00', 'A'), + ('2101', 3, 'VASQUEZ CRUZ NICOLEDANIELA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-07-31', + '914990.00', 'A'), + ('2102', 3, 'REYES FIGUERA RAMON ALEXANDER', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126674, '2011-04-03', + '92340.00', 'A'), + ('2104', 3, 'RAMIREZ JIMENEZ MARYLIN CAROLINA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2011-06-14', + '306760.00', 'A'), + ('2105', 3, 'TELLES GUILLEN INNA', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 132958, '2011-09-07', '383520.00', 'A'), + ('2106', 3, 'ALVAREZ CARMEN MARINA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-07-20', '997340.00', 'A'), + ('2107', 3, 'MARTINEZ YRIGOYEN NABUCODONOSOR', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-07-21', + '836110.00', 'A'), + ('2108', 5, 'FERNANDEZ RUIZ IGNACIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-01', '188530.00', 'A'), + ('211', 1, 'RIVEROS GARCIA JORGE IVAN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-01', '650050.00', 'A'), + ('2110', 3, 'CACERES REYES JORGE ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-08-08', + '606030.00', 'A'), + ('2111', 3, 'GELFI MARCOS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 199862, '2011-05-17', '727190.00', 'A'), + ('2112', 3, 'CERDA CASTILLO CARMEN GLORIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', + '817870.00', 'A'), + ('2113', 3, 'RANGEL FERNANDEZ LEONARDO JOSE', '191821112', + 'CRA 25 CALLE 100', '856@hotmail.com', '2011-02-03', 133211, + '2011-05-16', '907750.00', 'A'), + ('2114', 3, 'ROTHSCHILD VARGAS MICHAEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132165, '2011-02-05', '85170.00', 'A'), + ('2115', 3, 'RUIZ GRATEROL INGRID JOHANNA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-05-16', + '702600.00', 'A'), + ('2116', 2, 'DEARMAS ALBERTO FERNANDO ', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 150699, '2011-07-19', '257500.00', 'A'), + ('2117', 3, 'BOSCAN ARRIETA ERICK HUMBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-07-12', + '179680.00', 'A'), + ('2118', 3, 'GUILLEN DE TELLES NENCY JOSEFINA', '191821112', + 'CRA 25 CALLE 100', '56@facebook.com', '2011-02-03', 132958, + '2011-09-07', '125900.00', 'A'), + ('212', 1, 'BUSTAMANTE BUSTAMANTE CARLOS ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-26', + '943260.00', 'A'), + ('2120', 2, 'MARK ANTHONY STUART', '191821112', 'CRA 25 CALLE 100', + '661@terra.com.co', '2011-02-03', 127591, '2011-06-26', '74600.00', + 'A'), + ('2122', 3, 'SCOCOZZA GIOVANNA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 190526, '2011-09-23', '284220.00', 'A'), + ('2125', 3, 'CHAVES MOLINA JULIO FELIPE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132165, '2011-09-22', + '295360.00', 'A'), + ('2127', 3, 'BERNARDES DE SOUZA TONIATI VIRGINIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-30', + '565090.00', 'A'), + ('2129', 2, 'BRIAN DAVIS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-03-19', '78460.00', 'A'), + ('213', 1, 'PAREJO CARLOS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-11', '766120.00', 'A'), + ('2131', 3, 'DE OLIVEIRA LOPES REGINALDO LAZARO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-05', + '404910.00', 'A'), + ('2132', 3, 'DE MELO MING AZEVEDO PAULO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-10-05', + '440370.00', 'A'), + ('2137', 3, 'SILVA JORGE ', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-10-05', '230570.00', 'A'), + ('214', 1, 'CADENA RICARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-08', '840.00', 'A'), + ('2142', 3, 'VIEIRA VEIGA PEDRO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-30', '85330.00', 'A'), + ('2144', 3, 'ESCRIBANO LEONARDA DEL VALLE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-03-24', + '941440.00', 'A'), + ('2145', 3, 'RODRIGUEZ MENENDEZ BERNARDO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 148511, '2011-08-02', + '588740.00', 'A'), + ('2146', 3, 'GONZALEZ COURET DANIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 148511, '2011-08-09', '119380.00', 'A'), + ('2147', 3, 'GARCIA SOTO WILLIAM', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 135360, '2011-05-18', '830660.00', 'A'), + ('2148', 3, 'MENESES ORELLANA RICARDO TOMAS', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-06-13', + '795200.00', 'A'), + ('2149', 3, 'GUEVARA JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-06-27', '483990.00', 'A'), + ('215', 1, 'BELTRAN PINZON JUAN CARLO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-08', '705860.00', 'A'), + ('2151', 2, 'LLANES GARRIDO JAVIER ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-30', '719750.00', 'A'), + ('2152', 3, 'CHAVARRIA CHAVES RAFAEL ADRIAN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132165, '2011-09-20', + '495720.00', 'A'), + ('2153', 2, 'MILBERT ANDREASPETER', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-10', '319370.00', 'A'), + ('2154', 2, 'GOMEZ SILVA LOZANO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127300, '2011-05-30', '109670.00', 'A'), + ('2156', 3, 'WINTON ROBERT DOUGLAS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 115551, '2011-08-08', '622290.00', 'A'), + ('2157', 2, 'ROMERO PIÑA MANUEL GUSTAVO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-05', + '340650.00', 'A'), + ('2158', 3, 'KARWALSKI MATTHEW REECE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 117229, '2011-08-29', '836380.00', 'A'), + ('2159', 2, 'KIM JUNG SIK ', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-08', '159950.00', 'A'), + ('216', 1, 'MARTINEZ VALBUENA JOSE ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', + '526750.00', 'A'), + ('2160', 3, 'AGAR ROBERT ALEXANDER', '191821112', 'CRA 25 CALLE 100', + '81@hotmail.es', '2011-02-03', 116862, '2011-06-11', '290620.00', 'A'), + ('2161', 3, 'IGLESIAS EDGAR ALEXIS', '191821112', 'CRA 25 CALLE 100', + '645@facebook.com', '2011-02-03', 131272, '2011-04-04', '973240.00', + 'A'), + ('2163', 2, 'NOAIN MORENO CECILIA KARIM ', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-22', + '51950.00', 'A'), + ('2164', 2, 'FIGUEROA HEBEL ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-04-26', '276760.00', 'A'), + ('2166', 5, 'FRANDBERG DAN RICHARD VERNER', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 134022, '2011-04-06', + '309480.00', 'A'), + ('2168', 2, 'CONTRERAS LILLO EDUARDO ANDRES', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-27', + '389320.00', 'A'), + ('2169', 2, 'BLANCO VALLE RICARDO ', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-07-13', '355950.00', 'A'), + ('2171', 2, 'BELTRAN ZAVALA JIMI ALFONSO MIGUEL', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126674, '2011-08-22', + '991000.00', 'A'), + ('2172', 2, 'RAMIRO OREGUI JOSE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 133535, '2011-04-27', '119700.00', 'A'), + ('2175', 2, 'FENG PUYO', '191821112', 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 302172, '2011-10-07', '965660.00', 'A'), + ('2176', 3, 'CLERICI GUIDO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 116366, '2011-08-30', '522970.00', 'A'), + ('2177', 1, 'SEIJAS GUNTER LUIS MANUEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-02', '717890.00', 'A'), + ('2178', 2, 'SHOSHANI MOSHE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-13', '20520.00', 'A'), + ('218', 3, 'HUCHICHALEO ARSENDIGA FRANCISCA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-05', + '690.00', 'A'), + ('2181', 2, 'DOMINGO BARTOLOME LUIS FERNANDO', '191821112', + 'CRA 25 CALLE 100', '173@terra.com.co', '2011-02-03', 127591, + '2011-04-18', '569030.00', 'A'), + ('2182', 3, 'GONZALEZ RIJO JOSE ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-10-02', + '795610.00', 'A'), + ('2183', 2, 'ANDROVICH MORENO LIZETH LILIAN', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127300, '2011-10-10', + '270970.00', 'A'), + ('2184', 2, 'ARREAZA LUGO JESUS ALFREDO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', + '968030.00', 'A'), + ('2185', 2, 'NAVEDA CANELON KATHERINE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 132775, '2011-09-14', '27250.00', 'A'), + ('2189', 2, 'LUGO BEHRENS DENISE SOFIA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-08', '253980.00', 'A'), + ('2190', 2, 'ERICA ROSE MOLDENHAUVER', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-25', '175480.00', 'A'), + ('2192', 2, 'SOLORZANO GARCIA ANDREINA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-07-25', '50790.00', 'A'), + ('2193', 3, 'DE LA COSTE MARIA CAROLINA', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-26', + '907640.00', 'A'), + ('2194', 2, 'MARTINEZ DIAZ JUAN JOSE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-08', '385810.00', 'A'), + ('2195', 2, 'GALARRAGA ECHEVERRIA DAYEN ALI', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-13', + '206150.00', 'A'), + ('2196', 2, 'GUTIERREZ RAMIREZ HECTOR JOSÉ', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133211, '2011-06-07', + '873330.00', 'A'), + ('2197', 2, 'LOPEZ GONZALEZ SILVIA', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127662, '2011-09-01', '748170.00', 'A'), + ('2198', 2, 'SEGARES LUTZ JOSE IGNACIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-07', '120880.00', 'A'), + ('2199', 2, 'NADER MARTIN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127538, '2011-08-12', '359880.00', 'A'), + ('22', 1, 'CARDOZO AMAYA JORGE HUMBERTO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-25', + '908720.00', 'A'), + ('2200', 3, 'NATERA BERMUDEZ OSWALDO JOSE', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-18', + '436740.00', 'A'), + ('2201', 2, 'COSTA RICARDO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 150699, '2011-09-01', '104090.00', 'A'), + ('2202', 5, 'GRUNDY VALENZUELA ALAN PATRICK', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-08', + '210230.00', 'A'), + ('2203', 2, 'MONTENEGRO DANIEL ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-05-26', '738890.00', 'A'), + ('2204', 2, 'TAMAI BUNGO', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-24', '63730.00', 'A'), + ('2205', 5, 'VINHAS FORTUNA EDSON', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 133535, '2011-09-23', '102010.00', 'A'), + ('2206', 2, 'RUIZ ERBS MARIO ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-07-19', '318860.00', 'A'), + ('2207', 2, 'VENTURA TINEO MARCEL ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', + '288240.00', 'A'), + ('2210', 2, 'RAMIREZ GUZMAN RICARDO JAIME', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-28', + '338740.00', 'A'), + ('2211', 2, 'STERNBERG GABRIEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 132958, '2011-09-04', '18070.00', 'A'), + ('2212', 2, 'MARTELLO ALEJOS ROGER ADOLFO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127443, '2011-06-20', + '74120.00', 'A'), + ('2213', 2, 'CASTANEDA RAFAEL ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-25', '316410.00', 'A'), + ('2214', 2, 'LIMON MARTINEZ WILBERT DE JESUS', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128904, '2011-09-19', + '359690.00', 'A'), + ('2215', 2, 'PEREZ HERNANDEZ MONICA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 133211, '2011-05-23', '849240.00', 'A'), + ('2216', 2, 'AWAD LOBATO RICARDO SEBASTIAN', '191821112', + 'CRA 25 CALLE 100', '853@hotmail.com', '2011-02-03', 127591, + '2011-04-12', '167100.00', 'A'), + ('2217', 2, 'CEPEDA VANEGAS ENDER ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-08-22', + '287770.00', 'A'), + ('2218', 2, 'PEREZ CHIQUIN HECTOR', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 132572, '2011-04-13', '937580.00', 'A'), + ('2220', 5, 'FRANCO DELGADILLO RONALD FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132775, '2011-09-16', + '310190.00', 'A'), + ('2222', 2, 'ALCAIDE ALONSO JUAN MIGUEL', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-02', + '455360.00', 'A'), + ('2223', 3, 'BROWNING BENJAMIN MARK', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-06-09', '45230.00', 'A'), + ('2225', 3, 'HARWOO BENJAMIN JOEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-09', '164620.00', 'A'), + ('2226', 3, 'HOEY TIMOTHY ROSS', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-06-09', '242910.00', 'A'), + ('2227', 3, 'FERGUSON GARRY', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-28', '720700.00', 'A'), + ('2228', 3, ' NORMAN NEVILLE ROBERT', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 288493, '2011-06-29', '874750.00', 'A'), + ('2229', 3, 'KUK HYUN CHAN', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-03-22', '211660.00', 'A'), + ('223', 1, 'PINZON PLAZA MARCOS VINICIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', + '856300.00', 'A'), + ('2230', 3, 'SLIPAK NATALIA ANDREA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-07-27', '434070.00', 'A'), + ('2231', 3, 'BONELLI MASSIMO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 170601, '2011-07-11', '535340.00', 'A'), + ('2233', 3, 'VUYLSTEKE ALEXANDER ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 284647, '2011-09-11', '266530.00', 'A'), + ('2234', 3, 'DRESSE ALAIN', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 284272, '2011-04-19', '209100.00', 'A'), + ('2235', 3, 'PAIRON JEAN LOUIS MARIE RAIMOND', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 284272, '2011-03-03', + '245940.00', 'A'), + ('2236', 3, 'DEVIANE ACHIM', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 284272, '2010-11-14', '602370.00', 'A'), + ('2239', 3, 'DE CANNIERE LOUIS GEORFES HELE MARIE-JOZEF', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 285511, '2011-09-11', + '993540.00', 'A'), + ('2240', 1, 'ERGO ROBERT', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-09-28', '278270.00', 'A'), + ('2241', 3, 'MYRTES RODRIGUEZ MORGANA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2011-09-18', '410740.00', 'A'), + ('2242', 3, 'BRECHBUEHL HANSRUDOLF', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 249059, '2011-07-27', '218900.00', 'A'), + ('2243', 3, 'IVANA SCHLUMPF', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 245206, '2011-04-08', '862270.00', 'A'), + ('2244', 3, 'JESSICA JACCART', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 189512, '2011-08-28', '654640.00', 'A'), + ('2246', 3, 'PAUSELLI MARIANO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 210050, '2011-09-26', '468090.00', 'A'), + ('2247', 3, 'VOLONTEIRO RICCARDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118777, '2011-04-13', '281230.00', 'A'), + ('2248', 3, 'HOFFMANN ALVIR ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 120773, '2011-08-23', '1900.00', 'A'), + ('2249', 3, 'MANTOVANI DANIEL FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118942, '2011-08-09', '165820.00', 'A'), + ('225', 1, 'DUARTE RUEDA JAVIER ALEXANDER', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-29', + '293110.00', 'A'), + ('2250', 3, 'LIMA DA COSTA BRENO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118777, '2011-03-23', '823370.00', 'A'), + ('2251', 3, 'TAMBORIN MACIEL MAGALI', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-23', '619420.00', 'A'), + ('2252', 3, 'BELLO DE MUORA BIANCA', '191821112', 'CRA 25 CALLE 100', + '969@gmail.com', '2011-02-03', 118942, '2011-08-03', '626970.00', 'A'), + ('2253', 3, 'VINHAS FORTUNA PIETRO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 133535, '2011-09-23', '276600.00', 'A'), + ('2255', 3, 'BLUMENTHAL JAIRO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 117630, '2011-07-20', '680590.00', 'A'), + ('2256', 3, 'DOS REIS FILHO ELPIDIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 120773, '2011-08-07', '896720.00', 'A'), + ('2257', 3, 'COIMBRA CARDOSO MUNARI FERNANDA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-09', + '441830.00', 'A'), + ('2258', 3, 'LAZANHA FLAVIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118942, '2011-06-14', '519000.00', 'A'), + ('2259', 3, 'LAZANHA FLAVIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118942, '2011-06-14', '269480.00', 'A'), + ('226', 1, 'HUERFANO FLOREZ JOHN FAVER', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-29', '148340.00', 'A'), + ('2260', 3, 'JOVETTA EDILSON', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118941, '2011-09-19', '790430.00', 'A'), + ('2261', 3, 'DE OLIVEIRA ANDRE RICARDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118942, '2011-07-25', '143680.00', 'A'), + ('2263', 3, 'MUNDO TEIXEIRA CARVALHO SILVIA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118864, '2011-09-19', + '304670.00', 'A'), + ('2264', 3, 'FERREIRA CINTRA ADRIANO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2011-04-08', '481910.00', 'A'), + ('2265', 3, 'AUGUSTO DE OLIVEIRA MARCOS', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118685, '2011-08-09', + '495530.00', 'A'), + ('2266', 3, 'CHEN ROBERTO LUIZ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118777, '2011-03-15', '31920.00', 'A'), + ('2268', 3, 'WROBLESKI DIENSTMANN RAQUEL', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117630, '2011-05-15', + '269320.00', 'A'), + ('2269', 3, 'MALAGOLA GEDERSON', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118864, '2011-05-30', '327540.00', 'A'), + ('227', 1, 'LOPEZ ESCOBAR CARLOS ALFONSO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-06', + '862360.00', 'A'), + ('2271', 3, 'GOMES EVANDRO HENRIQUE', '191821112', 'CRA 25 CALLE 100', + '199@hotmail.es', '2011-02-03', 118777, '2011-03-24', '166100.00', 'A'), + ('2273', 3, 'LANDEIRA FERNANDEZ JESUS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-21', '207990.00', 'A'), + ('2274', 3, 'ROSSI RENATO', '191821112', 'CRA 25 CALLE 100', + '791@hotmail.es', '2011-02-03', 118777, '2011-09-19', '16170.00', 'A'), + ('2275', 3, 'CALMON RANGEL PATRICIA', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-23', '456890.00', 'A'), + ('2277', 3, 'CIFU NETO ROQUE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118777, '2011-04-27', '808940.00', 'A'), + ('2278', 3, 'GONCALVES PRETO FRANCISCO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118942, '2011-07-25', '336930.00', 'A'), + ('2279', 3, 'JORGE JUNIOR ROBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 118777, '2011-05-09', '257840.00', 'A'), + ('2281', 3, 'ELENCIUC DEMETRIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 118777, '2011-04-20', '618510.00', 'A'), + ('2283', 3, 'CUNHA MENDEZ RAFAEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 119855, '2011-07-18', '431190.00', 'A'), + ('2286', 3, 'DIAZ LENICE APARECIDA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-03', '977840.00', 'A'), + ('2288', 3, 'DE CARVALHO SIGEL TATIANA', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118777, '2011-07-04', '123920.00', 'A'), + ('229', 1, 'GALARZA GIRALDO SERGIO ALDEMAR', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-09-17', + '746930.00', 'A'), + ('2290', 3, 'ACHOA MORANDI BORGUES SIBELE MARIA', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118777, '2011-09-12', + '553890.00', 'A'), + ('2291', 3, 'EPAMINONDAS DE ALMEIDA DELIO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-22', + '14080.00', 'A'), + ('2293', 3, 'REIS CASTRO SHANA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118942, '2011-08-03', '1430.00', 'A'), + ('2294', 3, 'BERNARDES JUNIOR ARMANDO', '191821112', 'CRA 25 CALLE 100', + '678@gmail.com', '2011-02-03', 127591, '2011-08-30', '780930.00', 'A'), + ('2295', 3, 'LEMOS DE SOUZA AGUIAR SERGIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-10-03', + '900370.00', 'A'), + ('2296', 3, 'CARVALHO ADAMS KARIN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118942, '2011-08-11', '159040.00', 'A'), + ('2297', 3, 'GALLINA SILVANA BRASILEIRA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', + '94110.00', 'A'), + ('23', 1, 'COLMENARES PEDREROS EDUARDO ADOLFO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-02', + '625870.00', 'A'), + ('2300', 3, 'TAVEIRA DE SIQUEIRA TANIA APARECIDA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-24', + '443910.00', 'A'), + ('2301', 3, 'DA SIVA LIMA ANDRE LUIS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-23', '165020.00', 'A'), + ('2302', 3, 'GALVAO GUSTAVO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118942, '2011-09-12', '493370.00', 'A'), + ('2303', 3, 'DA COSTA CRUZ GABRIELA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118777, '2011-07-27', '971800.00', 'A'), + ('2304', 3, 'BERNHARD GOTTFRIED RABER', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-04-30', '378870.00', 'A'), + ('2306', 3, 'ALDANA URIBE PABLO AXEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-05-08', '758160.00', 'A'), + ('2308', 3, 'FLORES ALONSO EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-04-26', '995310.00', 'A'), + ('2309', 3, 'MADRIGAL MIER Y TERAN LUIS FELIPE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-02-23', + '414650.00', 'A'), + ('231', 1, 'ZAPATA CEBALLOS JUAN MANUEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-08-16', + '430320.00', 'A'), + ('2310', 3, 'GONZALEZ ALVARO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-05-19', '87330.00', 'A'), + ('2313', 3, 'MONTES PORTO ANDREA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 145135, '2011-09-01', '929180.00', 'A'), + ('2314', 3, 'ROCHA SUSUNAGA SERGIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2010-10-18', '541540.00', 'A'), + ('2315', 3, 'VASQUEZ CALERO FEDERICO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-06-22', '920160.00', 'A'), + ('2317', 3, 'GONZALEZ FERNANDEZ YUSSEN ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-26', + '120530.00', 'A'), + ('2319', 3, 'ATTIAS WENGROWSKY DAVID', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 150581, '2011-09-07', '8580.00', 'A'), + ('232', 1, 'OSPINA ABUCHAIBE ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 133535, '2011-07-14', '748960.00', 'A'), + ('2320', 3, 'EFRON TOPOROVSKY INES', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 116511, '2011-07-15', '20810.00', 'A'), + ('2321', 3, 'LUNA PLA DARIO', '191821112', 'CRA 25 CALLE 100', + '95@terra.com.co', '2011-02-03', 145135, '2011-09-07', '78320.00', 'A'), + ('2322', 1, 'VAZQUEZ DANIELA', '191821112', 'CRA 25 CALLE 100', + '190@gmail.com', '2011-02-03', 145135, '2011-05-19', '329170.00', 'A'), + ('2323', 3, 'BALBI BALBI JUAN DE DIOS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-23', '410880.00', 'A'), + ('2324', 3, 'MARROQUÍN FERNANDEZ GELACIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-23', + '66880.00', 'A'), + ('2325', 3, 'VAZQUEZ ZAVALA ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-04-11', '101770.00', 'A'), + ('2326', 3, 'SOTO MARTINEZ MARIA ELENA', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-03-23', '308200.00', 'A'), + ('2328', 3, 'HERNANDEZ MURILLO RICARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-22', '253830.00', 'A'), + ('233', 1, 'HADDAD LINERO YEBRAIL', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 130608, '2010-06-17', '453830.00', 'A'), + ('2330', 3, 'TERMINEL HERNANDEZ DANIELA PATRICIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 190393, '2011-08-15', + '48940.00', 'A'), + ('2331', 3, 'MIJARES FERNANDEZ MAGDALENA GUADALUPE', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-31', + '558440.00', 'A'), + ('2332', 3, 'GONZALEZ LUNA CARLOS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 146258, '2011-04-26', '645400.00', 'A'), + ('2333', 3, 'DIAZ TORREJON', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-03', '551690.00', 'A'), + ('2335', 3, 'PADILLA GUTIERREZ JESUS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-22', '456120.00', 'A'), + ('2336', 3, 'TORRES CORONA JORGE ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', + '813900.00', 'A'), + ('2337', 3, 'CASTRO RAMSES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 150581, '2011-07-04', '701120.00', 'A'), + ('2338', 3, 'APARICIO VALLEJO RUSSELL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2011-03-16', '63890.00', 'A'), + ('2339', 3, 'ALBOR FERNANDEZ LUIS ARTURO', '191821112', + 'CRA 25 CALLE 100', '574@gmail.com', '2011-02-03', 147467, '2011-05-09', + '216110.00', 'A'), + ('234', 1, 'DOMINGUEZ GOMEZ JUAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '942@hotmail.com', '2011-02-03', 127591, + '2010-08-22', '22260.00', 'A'), + ('2342', 3, 'REY ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '110@facebook.com', '2011-02-03', 127591, '2011-03-04', '313330.00', + 'A'), + ('2343', 3, 'MENDOZA GONZALES ADRIANA', '191821112', 'CRA 25 CALLE 100', + '295@yahoo.com', '2011-02-03', 127591, '2011-03-23', '178720.00', 'A'), + ('2344', 3, 'RODRIGUEZ SEGOVIA JESUS ALONSO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-07-26', + '953590.00', 'A'), + ('2345', 3, 'GONZALEZ PELAEZ EDUARDO DAVID', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-26', + '231790.00', 'A'), + ('2347', 3, 'VILLEDA GARCIA DAVID', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 144939, '2011-05-29', '795600.00', 'A'), + ('2348', 3, 'FERRER BURGES EMILIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', '83430.00', 'A'), + ('2349', 3, 'NARRO ROBLES LUIS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-03-16', '30330.00', 'A'), + ('2350', 3, 'ZALDIVAR UGALDE CARLOS IGNACIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-06-19', + '901380.00', 'A'), + ('2351', 3, 'VARGAS RODRIGUEZ VALENTE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 146258, '2011-04-26', '415910.00', 'A'), + ('2354', 3, 'DEL PIERO FRANCISCO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-05-09', '19890.00', 'A'), + ('2355', 3, 'VILLAREAL ANA CRISTINA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-03-23', '211810.00', 'A'), + ('2356', 3, 'GARRIDO FERRAN JORGE ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-22', + '999370.00', 'A'), + ('2357', 3, 'PEREZ PRECIADO EDMUNDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-22', '361450.00', 'A'), + ('2358', 3, 'AGUIRRE VIGNAU DANIEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 150581, '2011-08-21', '809110.00', 'A'), + ('2359', 3, 'LOPEZ SESMA TOMAS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 146258, '2011-09-14', '961200.00', 'A'), + ('236', 1, 'VENTO BETANCOURT LUIS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-19', + '682230.00', 'A'), + ('2360', 3, 'BERNAL MALDONADO GUILLERMO JAVIER', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-19', + '378670.00', 'A'), + ('2361', 3, 'GUZMAN DELGADO ALFREDO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-22', '9770.00', 'A'), + ('2362', 3, 'GUZMAN DELGADO MARTIN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-22', '912850.00', 'A'), + ('2363', 3, 'GUSMAND ELGADO JORGE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-22', '534910.00', 'A'), + ('2364', 3, 'RENDON BUICK JORGE JOSE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-07-26', '936010.00', 'A'), + ('2365', 3, 'HERNANDEZ HERNANDEZ HERNANDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-22', + '75340.00', 'A'), + ('2366', 3, 'ALVAREZ PAZ PEDRO RAFAEL ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-01-02', '568650.00', 'A'), + ('2367', 3, 'MIJARES DE LA BARREDA FERNANDA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-07-31', + '617240.00', 'A'), + ('2368', 3, 'MARTINEZ LOPEZ MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-08-24', '380250.00', 'A'), + ('2369', 3, 'GAYTAN MILLAN YANERI', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', '49520.00', 'A'), + ('237', 1, 'BARGUIL ASSIS DAVID ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117460, '2009-09-03', + '161770.00', 'A'), + ('2370', 3, 'DURAN HEREDIA FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-04-15', '106850.00', 'A'), + ('2371', 3, 'SEGURA MIJARES CRISTOBAL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-07-31', '385700.00', 'A'), + ('2372', 3, 'TEPOS VALTIERRA ERIK ARTURO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116345, '2011-09-01', + '607930.00', 'A'), + ('2373', 3, 'RODRIGUEZ AGUILAR EDMUNDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 145135, '2011-05-04', '882570.00', 'A'), + ('2374', 3, 'MYSLABODSKI MICHAEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 145135, '2011-03-08', '589060.00', 'A'), + ('2375', 3, 'HERNANDEZ MIRELES JATNIEL ELIOENAI', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', + '297600.00', 'A'), + ('2376', 3, 'SNELL FERNANDEZ SYNTYHA ROCIO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', + '720830.00', 'A'), + ('2378', 3, 'HERNANDEZ EIVET AARON', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-26', '394200.00', 'A'), + ('2379', 3, 'LOPEZ GARZA JAIME', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-22', '837000.00', 'A'), + ('238', 1, 'GARCIA PINO CARLOS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-05-10', '762140.00', 'A'), + ('2381', 3, 'TOSCANO ESTRADA RUBEN ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-22', + '500940.00', 'A'), + ('2382', 3, 'RAMIREZ HUDSON ROGER SILVESTER', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-22', + '497550.00', 'A'), + ('2383', 3, 'RAMOS JUAN ANTONIO', '191821112', 'CRA 25 CALLE 100', + '362@yahoo.es', '2011-02-03', 127591, '2011-08-22', '984940.00', 'A'), + ('2384', 3, 'CORTES CERVANTES ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-04-11', + '432020.00', 'A'), + ('2385', 3, 'POZOS ESQUIVEL DAVID', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-27', '205310.00', 'A'), + ('2387', 3, 'ESTRADA AGUIRRE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-22', '36470.00', 'A'), + ('2388', 3, 'GARCIA RAMIREZ RAMON', '191821112', 'CRA 25 CALLE 100', + '177@yahoo.es', '2011-02-03', 127591, '2011-08-22', '990910.00', 'A'), + ('2389', 3, 'PRUD HOMME GARCIA CUBAS XAVIER', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-18', + '845140.00', 'A'), + ('239', 1, 'PINZON ARDILA GUSTAVO ALFONSO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-01', + '325400.00', 'A'), + ('2390', 3, 'ELIZABETH OCHOA ROJAS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 145135, '2011-05-21', '252950.00', 'A'), + ('2391', 3, 'MEZA ALVAREZ JOSE ALBERTO', '191821112', 'CRA 25 CALLE 100', + '646@terra.com.co', '2011-02-03', 144939, '2011-05-09', '729340.00', + 'A'), + ('2392', 3, 'HERRERA REYES RENATO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2010-02-28', + '887860.00', 'A'), + ('2393', 3, 'MURILLO GARIBAY GILBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-08-20', '251280.00', 'A'), + ('2394', 3, 'GARCIA JIMENEZ CARLOS MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-09', + '592830.00', 'A'), + ('2395', 3, 'GUAGNELLI MARTINEZ BLANCA MONICA', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145184, '2010-10-05', + '210320.00', 'A'), + ('2397', 3, 'GARCIA CISNEROS RAUL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-07-04', '734530.00', 'A'), + ('2398', 3, 'MIRANDA ROMO FRANCISCO JAVIER', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', + '853340.00', 'A'), + ('24', 1, 'ARREGOCES GARZON NELSON ORLANDO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127783, '2011-08-12', + '403190.00', 'A'), + ('240', 1, 'ARCINIEGAS GOMEZ ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-18', '340590.00', 'A'), + ('2400', 3, 'HERRERA ABARCA EDUARDO VICENTE ', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', + '755620.00', 'A'), + ('2403', 3, 'CASTRO MONCAYO LUIS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-07-29', + '617260.00', 'A'), + ('2404', 3, 'GUZMAN DELGADO OSBALDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-22', '56250.00', 'A'), + ('2405', 3, 'GARCIA LOPEZ DAVID', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-22', '429500.00', 'A'), + ('2406', 3, 'JIMENEZ GAMEZ RAFAEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 245206, '2011-03-23', '978720.00', 'A'), + ('2407', 3, 'BECERRA MARTINEZ JUAN PABLO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-08-23', + '605130.00', 'A'), + ('2408', 3, 'GARCIA MARTINEZ BERNARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-22', '89480.00', 'A'), + ('2409', 3, 'URRUTIA RAYAS BALTAZAR', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-22', '632020.00', 'A'), + ('241', 1, 'MEDINA AGUILA NESTOR EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-09', + '726730.00', 'A'), + ('2411', 3, 'VERGARA MENDOZAVICTOR HUGO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-06-15', + '562230.00', 'A'), + ('2412', 3, 'MENDOZA MEDINA JORGE IGNACIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', + '136170.00', 'A'), + ('2413', 3, 'CORONADO CASTILLO HUGO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 147529, '2011-05-09', '994160.00', 'A'), + ('2414', 3, 'GONZALEZ SOTO DELIA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-03-23', '562280.00', 'A'), + ('2415', 3, 'HERNANDEZ FLORES STEPHANIE REYNA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', + '828940.00', 'A'), + ('2416', 3, 'ABRAJAN GUERRERO MARIA DE LOS ANGELES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-23', + '457860.00', 'A'), + ('2417', 3, 'HERNANDEZ LOERA ALFONSO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', '802490.00', 'A'), + ('2418', 3, 'TARÍN LÓPEZ JOSE CARMEN', '191821112', 'CRA 25 CALLE 100', + '117@gmail.com', '2011-02-03', 127591, '2011-03-23', '638870.00', 'A'), + ('242', 1, 'JULIO NARVAEZ', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-07-05', '611890.00', 'A'), + ('2420', 3, 'BATTA MARQUEZ VICTOR ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-08-23', + '17820.00', 'A'), + ('2423', 3, 'GONZALEZ REYES JUAN JOSE', '191821112', 'CRA 25 CALLE 100', + '55@yahoo.es', '2011-02-03', 127591, '2011-07-26', '758070.00', 'A'), + ('2425', 3, 'ALVAREZ RODRIGUEZ HIRAM RAMSES', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-23', + '847420.00', 'A'), + ('2426', 3, 'FEMATT HERNANDEZ JESUS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-03-23', '164130.00', 'A'), + ('2427', 3, 'GUTIERRES ORTEGA FRANCISCO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', + '278410.00', 'A'), + ('2428', 3, 'JIMENEZ DIAZ JUAN JORGE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-05-13', '899650.00', 'A'), + ('2429', 3, 'VILLANUEVA PÉREZ MIGUEL ANGEL', '191821112', + 'CRA 25 CALLE 100', '656@yahoo.es', '2011-02-03', 150449, '2011-03-23', + '663000.00', 'A'), + ('243', 1, 'GOMEZ REYES ANDRES', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 126674, '2009-12-20', '879240.00', 'A'), + ('2430', 3, 'CERON GOMEZ JOEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-03-21', '616070.00', 'A'), + ('2431', 3, 'LOPEZ LINALDI DEMETRIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 145135, '2011-05-09', '91360.00', 'A'), + ('2432', 3, 'JOSEPH NATHAN PEDRO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145135, '2011-05-02', '608580.00', 'A'), + ('2433', 3, 'CARREÑO PULIDO RUBEN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 147242, '2011-06-19', '768810.00', 'A'), + ('2434', 3, 'AREVALO MERCADO CARLOS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-06-12', '18320.00', 'A'), + ('2436', 3, 'RAMIREZ QUEZADA ERIKA BELEM', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-03', + '870930.00', 'A'), + ('2438', 3, 'TATTO PRIETO MIGUEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-19', '382740.00', 'A'), + ('2439', 3, 'LOPEZ AYALA LUIS ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-10-08', '916370.00', 'A'), + ('244', 1, 'DEVIS EDGAR JOSE', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-10-08', '560540.00', 'A'), + ('2440', 3, 'HERNANDEZ TOVAR JORGE ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 144991, '2011-10-02', + '433650.00', 'A'), + ('2441', 3, 'COLLIARD LOPEZ PETER GEORGE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-09', + '419120.00', 'A'), + ('2442', 3, 'FLORES CHALA GARY', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-22', '794670.00', 'A'), + ('2443', 3, 'FANDIÑO MUÑOZ ZAMIA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-07-19', '715970.00', 'A'), + ('2444', 3, 'BARROSO VARGAS DIEGO ALFONSO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-26', + '195840.00', 'A'), + ('2446', 3, 'CRUZ RAMIREZ JUAN PEDRO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 145135, '2011-07-14', '569050.00', 'A'), + ('2447', 3, 'TIJERINA ACOSTA SERGIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-26', '351280.00', 'A'), + ('2449', 3, 'JASSO BARRERA CARLOS GUSTAVO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-08-24', + '192560.00', 'A'), + ('245', 1, 'LENCHIG KALEDA SERGIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-02', '165000.00', 'A'), + ('2450', 3, 'GARRIDO PATRON VICTOR', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-09-27', '814970.00', 'A'), + ('2451', 3, 'VELASQUEZ GUERRERO RUBEN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', '497150.00', 'A'), + ('2452', 3, 'CHOI SUNGKYU', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 209494, '2011-08-16', '40860.00', 'A'), + ('2453', 3, 'CONTRERAS LOPEZ SERGIO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 145135, '2011-08-05', '712830.00', 'A'), + ('2454', 3, 'CHAVEZ BATAA OSCAR', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 150699, '2011-06-14', '441590.00', 'A'), + ('2455', 3, 'LEE JONG HYUN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 131272, '2011-10-10', '69460.00', 'A'), + ('2456', 3, 'MEDINA PADILLA CARLOS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 146589, '2011-04-20', + '22530.00', 'A'), + ('2457', 3, 'FLORES CUEVAS DOTNARA LUZ', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 145135, '2011-05-17', '904260.00', 'A'), + ('2458', 3, 'LIU YONGCHAO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-10-09', '453710.00', 'A'), + ('2459', 3, 'CASTRO FERNANDES PORTOCARRERO JOSE MANUEL', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 195892, '2011-06-14', + '555790.00', 'A'), + ('246', 1, 'YAMHURE FONSECAN ERNESTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2009-10-03', '143350.00', 'A'), + ('2460', 3, 'DUAN WEI', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2011-06-22', '417820.00', 'A'), + ('2461', 3, 'ZHU XUTAO', '191821112', 'CRA 25 CALLE 100', '@hotmail.es', + '2011-02-03', 127591, '2011-05-18', '421740.00', 'A'), + ('2462', 3, 'MEI SHUANNIU', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-10-09', '855240.00', 'A'), + ('2464', 3, 'VEGA VACA LUIS ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-06-08', '489110.00', 'A'), + ('2465', 3, 'TANG YUMING', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 147578, '2011-03-26', '412660.00', 'A'), + ('2466', 3, 'VILLEDA GARCIA DAVID', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 144939, '2011-06-07', '595990.00', 'A'), + ('2467', 3, 'GARCIA GARZA BLANCA ARMIDA', '191821112', + 'CRA 25 CALLE 100', '927@hotmail.com', '2011-02-03', 145135, + '2011-05-20', '741940.00', 'A'), + ('2468', 3, 'HERNANDEZ MARTINEZ EMILIO JOAQUIN', '191821112', + 'CRA 25 CALLE 100', '356@facebook.com', '2011-02-03', 145135, + '2011-06-16', '921740.00', 'A'), + ('2469', 3, 'WANG FAN', '191821112', 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 185363, '2011-08-20', '382860.00', 'A'), + ('247', 1, 'ROJAS RODRIGUEZ ALVARO HERNAN', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-09', + '221760.00', 'A'), + ('2470', 3, 'WANG FEI', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-10-09', '149100.00', 'A'), + ('2471', 3, 'BERNAL MALDONADO GUILLERMO JAVIER', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118777, '2011-07-26', + '596900.00', 'A'), + ('2472', 3, 'GUTIERREZ GOMEZ ARTURO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145184, '2011-07-24', '537210.00', 'A'), + ('2474', 3, 'LAN TYANYE ', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-06-23', '865050.00', 'A'), + ('2475', 3, 'LAN SHUZHEN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-23', '639240.00', 'A'), + ('2476', 3, 'RODRIGUEZ GONZALEZ CARLOS ARTURO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 144616, '2011-08-09', + '601050.00', 'A'), + ('2477', 3, 'HAIBO NI', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 127591, '2011-08-20', '87540.00', 'A'), + ('2479', 3, 'RUIZ RODRIGUEZ GRACIELA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-05-20', '910130.00', 'A'), + ('248', 1, 'GONZALEZ RODRIGUEZ ANDRES', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-03', '678750.00', 'A'), + ('2480', 3, 'OROZCO MACIAS NORMA LETICIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-20', + '647010.00', 'A'), + ('2481', 3, 'MEZA ALVAREZ JOSE ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 144939, '2011-06-07', '504670.00', 'A'), + ('2482', 3, 'RODRIGUEZ FIGUEROA RODRIGO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 146308, '2011-04-27', + '582290.00', 'A'), + ('2483', 3, 'CARREON GUERRA ANA CECILIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 110709, '2011-05-27', + '397440.00', 'A'), + ('2484', 3, 'BOTELHO BARRETO CARLOS JOSE', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 195892, '2011-08-02', + '240350.00', 'A'), + ('2485', 3, 'CORONADO CASTILLO HUGO', '191821112', 'CRA 25 CALLE 100', + '209@yahoo.com.mx', '2011-02-03', 147529, '2011-06-07', '9420.00', 'A'), + ('2486', 3, 'DE FUENTES GARZA MARCELO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-18', '326030.00', 'A'), + ('2487', 3, 'GONZALEZ DUHART GUTIERREZ HORACIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-17', + '601920.00', 'A'), + ('2488', 3, 'LOPEZ LINALDI DEMETRIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-06-07', '31500.00', 'A'), + ('2489', 3, 'CASTRO MONCAYO JOSE LUIS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-06-15', '351720.00', 'A'), + ('249', 1, 'CASTRO RIBEROS JULIAN ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-23', + '728470.00', 'A'), + ('2490', 3, 'SERRALDE LOPEZ MARIA GUADALUPE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-25', + '664120.00', 'A'), + ('2491', 3, 'GARRIDO PATRON VICTOR', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-09-29', '265450.00', 'A'), + ('2492', 3, 'BRAUN JUAN NICOLAS ANTONIE', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-28', + '334880.00', 'A'), + ('2493', 3, 'BANKA RAHUL', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 141138, '2011-05-02', '878070.00', 'A'), + ('2494', 1, 'GARCIA MARTINEZ MARIA VIRGINIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-17', + '385690.00', 'A'), + ('2495', 1, 'MARIA VIRGINIA', '191821112', 'CRA 25 CALLE 100', + '298@yahoo.com.mx', '2011-02-03', 127591, '2011-04-16', '294220.00', + 'A'), + ('2496', 3, 'GOMEZ ZENDEJAS MARIA ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 145184, '2011-06-06', '314060.00', 'A'), + ('2498', 3, 'MENDEZ MARTINEZ RAUL', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 145135, '2011-07-10', '496040.00', 'A'), + ('2499', 3, 'CARREON GUERRA ANA CECILIA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-29', + '417240.00', 'A'), + ('2501', 3, 'OLIVAR ARIAS ISMAEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-06-06', '738850.00', 'A'), + ('2502', 3, 'ABOUMRAD NASTA EMILE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 145135, '2011-07-26', '899890.00', 'A'), + ('2503', 3, 'RODRIGUEZ JIMENEZ ROBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-05-03', '282900.00', 'A'), + ('2504', 3, 'ESTADOS UNIDOS', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 145135, '2011-07-27', '714840.00', 'A'), + ('2505', 3, 'SOTO MUÑOZ MARCO GREGORIO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-26', '725480.00', 'A'), + ('2506', 3, 'GARCIA MONTER ANA OTILIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 145135, '2011-10-05', '482880.00', 'A'), + ('2507', 3, 'THIRUKONDA VIGNESH', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 126180, '2011-05-02', '237950.00', 'A'), + ('2508', 3, 'RAMIREZ REATIAGA LYDA YOANA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 150699, '2011-06-26', + '741120.00', 'A'), + ('2509', 3, 'SEPULVEDA RODRIGUEZ JESUS ', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', + '991730.00', 'A'), + ('251', 1, 'MEJIA PIZANO ANDRES', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-07-10', '845000.00', 'A'), + ('2510', 3, 'FRANCISCO MARIA DIAS COSTA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 179111, '2011-07-12', + '735330.00', 'A'), + ('2511', 3, 'TEIXEIRA REGO DE OLIVEIRA TIAGO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 179111, '2011-06-14', + '701430.00', 'A'), + ('2512', 3, 'PHILLIP JAMES', '191821112', 'CRA 25 CALLE 100', + '766@terra.com.co', '2011-02-03', 127591, '2011-09-28', '301150.00', + 'A'), + ('2513', 3, 'ERXLEBEN ROBERT', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 216125, '2011-04-13', '401460.00', 'A'), + ('2514', 3, 'HUGHES CONNORRICHARD', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 269033, '2011-06-22', '103880.00', 'A'), + ('2515', 3, 'LEBLANC MICHAEL PAUL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 216125, '2011-08-09', '314990.00', 'A'), + ('2517', 3, 'DEVINE CHRISTOPHER', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 269033, '2011-06-22', '371560.00', 'A'), + ('2518', 3, 'WONG BRIAN TEK FUNG', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 126885, '2011-09-22', '67910.00', 'A'), + ('2519', 3, 'BIDWALA IRFAN A', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 154811, '2011-03-28', '224840.00', 'A'), + ('252', 1, 'JIMENEZ LARRARTE JUAN GABRIEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-01', + '406770.00', 'A'), + ('2520', 3, 'LEE HO YIN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 147578, '2011-08-29', '920470.00', 'A'), + ('2521', 3, 'DE MOURA MARTINS NUNO ALEXANDRE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196094, '2011-10-09', + '927850.00', 'A'), + ('2522', 3, 'DA COSTA GOMES CARLOS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 179111, '2011-08-10', + '877850.00', 'A'), + ('2523', 3, 'HOOGWAERTS PAUL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 118777, '2011-02-11', '605690.00', 'A'), + ('2524', 3, 'LOPES MARQUES LUIS JOSE MANUEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2011-09-20', + '394910.00', 'A'), + ('2525', 3, 'CORREIA CAVACO JOSE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 178728, '2011-10-09', '157470.00', 'A'), + ('2526', 3, 'HALL JOHN WILLIAM', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-09', '602620.00', 'A'), + ('2527', 3, 'KNIGHT MARTIN GYLES', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 113550, '2011-08-29', '540670.00', 'A'), + ('2528', 3, 'HINDS THMAS TRISTAN PELLEW', '191821112', + 'CRA 25 CALLE 100', '337@yahoo.es', '2011-02-03', 116862, '2011-08-23', + '895500.00', 'A'), + ('2529', 3, 'CARTON ALAN JOHN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 117002, '2011-07-31', '855510.00', 'A'), + ('253', 1, 'AZCUENAGA RAMIREZ NICOLAS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 298472, '2011-05-10', '498840.00', 'A'), + ('2530', 3, 'GHIM CHEOLL HO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-27', '591060.00', 'A'), + ('2531', 3, 'PHILLIPS NADIA SULLIVAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-28', '388750.00', 'A'), + ('2532', 3, 'CHANG KUKHYUN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-03-22', '170560.00', 'A'), + ('2533', 3, 'KANG SEOUNGHYUN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 173192, '2011-08-24', '686540.00', 'A'), + ('2534', 3, 'CHUNG BYANG HOON', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 125744, '2011-03-14', '921030.00', 'A'), + ('2535', 3, 'SHIN MIN CHUL ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 173192, '2011-08-24', '545510.00', 'A'), + ('2536', 3, 'CHOI JIN SUNG', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-15', '964490.00', 'A'), + ('2537', 3, 'CHOI SUNGMIN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-27', '185910.00', 'A'), + ('2538', 3, 'PARK JAESER ', '191821112', 'CRA 25 CALLE 100', + '525@terra.com.co', '2011-02-03', 127591, '2011-09-03', '36090.00', + 'A'), + ('2539', 3, 'KIM DAE HOON ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 173192, '2011-08-24', '622700.00', 'A'), + ('254', 1, 'AVENDAÑO PABON ROLANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-05-12', '273900.00', 'A'), + ('2540', 3, 'LYNN MARIA CRISTINA NORMA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 116862, '2011-09-21', '5220.00', 'A'), + ('2541', 3, 'KIM CHINIL JULIAN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 147578, '2011-08-27', '158030.00', 'A'), + ('2543', 3, 'HALL JOHN WILLIAM', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-09', '398290.00', 'A'), + ('2544', 3, 'YOSUKE PERDOMO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 165600, '2011-07-26', '668040.00', 'A'), + ('2546', 3, 'AKAGI KAZAHIKO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-26', '722510.00', 'A'), + ('2547', 3, 'NELSON JONATHAN GARY', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-09', '176570.00', 'A'), + ('2548', 3, 'DUONG HOP BA', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 116862, '2011-09-14', '715310.00', 'A'), + ('2549', 3, 'CHAO-VILLEGAS NIKOLE TUK HING', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 180063, '2011-04-05', + '46830.00', 'A'), + ('255', 1, 'CORREA ALVARO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-27', '872990.00', 'A'), + ('2551', 3, 'APPELS LAURENT BERNHARD', '191821112', 'CRA 25 CALLE 100', + '891@hotmail.es', '2011-02-03', 135190, '2011-08-16', '300620.00', 'A'), + ('2552', 3, 'PLAISIER ERIK JAN', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 289294, '2011-05-23', '238440.00', 'A'), + ('2553', 3, 'BLOK HENDRIK', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 288552, '2011-03-27', '290350.00', 'A'), + ('2554', 3, 'NETTE ANNA STERRE', '191821112', 'CRA 25 CALLE 100', + '621@yahoo.com.mx', '2011-02-03', 185363, '2011-07-30', '736400.00', + 'A'), + ('2555', 3, 'FRIELING HANS ERIC', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 107469, '2011-07-31', '810990.00', 'A'), + ('2556', 3, 'RUTTE CORNELIA JANTINE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 143579, '2011-03-30', '845710.00', 'A'), + ('2557', 3, 'WALRAVEN PIETER PAUL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 289294, '2011-07-29', '795620.00', 'A'), + ('2558', 3, 'TREBES LAURENS JOHANNES', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-11-22', '440940.00', 'A'), + ('2559', 3, 'KROESE ROLANDWILLEBRORDUSMARIA', '191821112', + 'CRA 25 CALLE 100', '188@facebook.com', '2011-02-03', 110643, + '2011-06-09', '817860.00', 'A'), + ('256', 1, 'FARIAS GARCIA REINI', '191821112', 'CRA 25 CALLE 100', + '615@hotmail.com', '2011-02-03', 127591, '2011-03-05', '543220.00', + 'A'), + ('2560', 3, 'VAN DER HEIDE HENDRIK', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 291042, '2011-09-04', '766460.00', 'A'), + ('2561', 3, 'VAN DEN BERG DONAR ALEXANDER GABRIEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 190393, '2011-07-13', + '378720.00', 'A'), + ('2562', 3, 'GODEFRIDUS JOHANNES ROPS ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127622, '2011-10-02', '594240.00', 'A'), + ('2564', 3, 'WAT YOK YIENG', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 287095, '2011-03-22', '392370.00', 'A'), + ('2565', 3, 'BUIS JACOBUS NICOLAAS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-20', '456810.00', 'A'), + ('2567', 3, 'CHIPPER FRANCIUSCUS NICOLAAS ', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 291599, '2011-07-28', + '164300.00', 'A'), + ('2568', 3, 'ONNO ROUKENS', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-11-28', '500670.00', 'A'), + ('2569', 3, 'PETRUS MARCELLINUS STEPHANUS', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-06-25', + '10430.00', 'A'), + ('2571', 3, 'VAN VOLLENHOVEN IVO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-08', '719370.00', 'A'), + ('2572', 3, 'LAMBOOIJ BART', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-09-20', '946480.00', 'A'), + ('2573', 3, 'LANSER MARIANA PAULINE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 289294, '2011-04-09', '574270.00', 'A'), + ('2575', 3, 'KLERKEN JOHANNES', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 286101, '2011-05-24', '436840.00', 'A'), + ('2576', 3, 'KRAS JACOBUS NICOLAAS', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 289294, '2011-09-26', '88410.00', 'A'), + ('2577', 3, 'FUCHS MICHAEL JOSEPH', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 185363, '2011-07-30', '131530.00', 'A'), + ('2578', 3, 'BIJVANK ERIK JAN WILLEM', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-04-11', '392410.00', 'A'), + ('2579', 3, 'SCHMIDT FRANC ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 106742, '2011-09-11', '567470.00', 'A'), + ('258', 1, 'SOTO GONZALEZ FRANCISCO LAZARO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 116511, '2011-05-07', + '856050.00', 'A'), + ('2580', 3, 'VAN DER KOOIJ', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 291277, '2011-07-10', '660130.00', 'A'), + ('2581', 2, 'KRIS ANDRE GEORGES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127300, '2011-07-26', '598240.00', 'A'), + ('2582', 3, 'HARDING LUIS ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 263813, '2011-05-08', '10820.00', 'A'), + ('2583', 3, 'ROLLI GUY JEAN ', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 145135, '2011-05-31', '259370.00', 'A'), + ('2584', 3, 'NIETO PARRA SEBASTIAN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 263813, '2011-07-04', '264400.00', 'A'), + ('2585', 3, 'LASTRA CHAVEZ PABLO ARMANDO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126674, '2011-05-25', + '543890.00', 'A'), + ('2586', 1, 'ZAIDA MAYERLY', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-05', '926250.00', 'A'), + ('2587', 1, 'OSWALDO SOLORZANO CONTRERAS', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-28', + '999590.00', 'A'), + ('2588', 3, 'ZHOU XUAN', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-18', '219200.00', 'A'), + ('2589', 3, 'HUANG ZHENGQUN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-05-18', '97230.00', 'A'), + ('259', 1, 'GALARZA NARANJO JAIME RENE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-18', '988830.00', 'A'), + ('2590', 3, 'HUANG ZHENQUIN', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-18', '828560.00', 'A'), + ('2591', 3, 'WEIDEN MULLER AMURER', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-03-29', '851110.00', 'A'), + ('2593', 3, 'OESTERHAUS CORNELIA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 256231, '2011-03-29', '295960.00', 'A'), + ('2594', 3, 'RINTALAHTI JUHA HENRIK', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-23', '170220.00', 'A'), + ('2597', 3, 'VERWIJNEN JONAS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 289697, '2011-02-03', '638040.00', 'A'), + ('2598', 3, 'SHAW ROBERT', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 157414, '2011-07-10', '273550.00', 'A'), + ('2599', 3, 'MAKINEN TIMO JUHANI', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 196234, '2011-09-13', '453600.00', 'A'), + ('260', 1, 'RIVERA CAÑON JOSE EDWARD', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127538, '2011-09-19', '375990.00', 'A'), + ('2600', 3, 'HONKANIEMI ARTO OLAVI', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 301387, '2011-09-06', '447380.00', 'A'), + ('2601', 3, 'DAGG JAMIE MICHAEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 216125, '2011-08-09', '876080.00', 'A'), + ('2602', 3, 'BOLAND PATRICK CHARLES ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 216125, '2011-09-14', '38260.00', 'A'), + ('2603', 2, 'ZULEYKA JERRYS RIVERA MENDOZA', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 150347, '2011-03-27', + '563050.00', 'A'), + ('2604', 3, 'DELGADO SEQUIRA FERRAO JOSE PEDRO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188228, '2011-08-16', + '700460.00', 'A'), + ('2605', 3, 'YORRO LORA EDGAR MANUEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127689, '2011-06-17', '813180.00', 'A'), + ('2606', 3, 'CARRASCO RODRIGUEZQCARLOS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127689, '2011-06-17', '964520.00', 'A'), + ('2607', 30, 'ORJUELA VELASQUEZ JULIANA MARIA', '191821112', + 'CRA 25 CALLE 100', '372@terra.com.co', '2011-02-03', 132775, + '2011-09-01', '383070.00', 'A'), + ('2608', 3, 'DUQUE DUTRA LUIS EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 118942, '2011-07-12', '21780.00', 'A'), + ('261', 1, 'MURCIA MARQUEZ NESTOR JAVIER', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-19', + '913480.00', 'A'), + ('2610', 3, 'NGUYEN HUU KHUONG', '191821112', 'CRA 25 CALLE 100', + '457@facebook.com', '2011-02-03', 132958, '2011-05-07', '733120.00', + 'A'), + ('2611', 3, 'NGUYEN VAN LAP', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', '786510.00', 'A'), + ('2612', 3, 'PHAM HUU THU', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', '733200.00', 'A'), + ('2613', 3, 'DANG MING CUONG', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132958, '2011-05-07', '306460.00', 'A'), + ('2614', 3, 'VU THI HONG HANH', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132958, '2011-05-07', '332710.00', 'A'), + ('2615', 3, 'CHAU TANG LANG', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 132958, '2011-05-07', '744190.00', 'A'), + ('2616', 3, 'CHU BAN THING', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132958, '2011-05-07', '722800.00', 'A'), + ('2617', 3, 'NGUYEN QUANG THU', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132958, '2011-05-07', '381420.00', 'A'), + ('2618', 3, 'TRAN THI KIM OANH', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 132958, '2011-05-07', '738690.00', 'A'), + ('2619', 3, 'NGUYEN VAN VINH', '191821112', 'CRA 25 CALLE 100', + '422@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', '549210.00', + 'A'), + ('262', 1, 'ABDULAZIS ELNESER KHALED', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-27', '439430.00', 'A'), + ('2620', 3, 'NGUYEN XUAN VY', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132958, '2011-05-07', '529950.00', 'A'), + ('2621', 3, 'HA MANH HOA', '191821112', 'CRA 25 CALLE 100', + '439@gmail.com', '2011-02-03', 132958, '2011-05-07', '2160.00', 'A'), + ('2622', 3, 'ZAFIROPOULO STEVEN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-05-25', '420930.00', 'A'), + ('2623', 3, 'ZAFIROPOULO ANA I', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-25', '98170.00', 'A'), + ('2624', 3, 'TEMIGTERRA MASSIMILIANO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 210050, '2011-09-26', '228070.00', 'A'), + ('2625', 3, 'CASSES TRINDADE HELGIO HENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118402, '2011-09-13', + '845850.00', 'A'), + ('2626', 3, 'ASCOLI MASTROENI MARCO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 120773, '2011-09-07', + '545010.00', 'A'), + ('2627', 3, 'MONTEIRO SOARES MARCOS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 120773, '2011-07-18', '187530.00', 'A'), + ('2629', 3, 'HALL ALVARO AUGUSTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 120773, '2011-08-02', '950450.00', 'A'), + ('2631', 3, 'ANDRADE CATUNDA RAFAEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 120773, '2011-08-23', '370860.00', 'A'), + ('2632', 3, 'MAGALHAES MAYRA ', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 118767, '2011-08-23', '320960.00', 'A'), + ('2633', 3, 'SPREAFICO MIRIAM ', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 118587, '2011-08-23', '492220.00', 'A'), + ('2634', 3, 'GOMES FERREIRA HELIO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 125812, '2011-08-23', '498220.00', 'A'), + ('2635', 3, 'FERNANDES SENNA PIRES SERGIO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-05', + '14460.00', 'A'), + ('2636', 3, 'BALESTRO FLORIANO FABIO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 120773, '2011-08-24', '577630.00', 'A'), + ('2637', 3, 'CABANA DE QUEIROZ ANDRADE ALAXANDRE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-23', + '844780.00', 'A'), + ('2638', 3, 'DALBOSCO CARLA', '191821112', 'CRA 25 CALLE 100', + '380@yahoo.com.mx', '2011-02-03', 127591, '2011-06-30', '491010.00', + 'A'), + ('264', 1, 'ROMERO MONTOYA NICOLAY ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-13', + '965220.00', 'A'), + ('2640', 3, 'BILLINI CRUZ RICARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 144215, '2011-03-27', '130530.00', 'A'), + ('2641', 3, 'VASQUES ARIAS DAVID', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 144509, '2011-08-19', '890500.00', 'A'), + ('2642', 3, 'ROJAS VOLQUEZ GLADYS MICHELLE', '191821112', + 'CRA 25 CALLE 100', '852@gmail.com', '2011-02-03', 144215, '2011-07-25', + '60930.00', 'A'), + ('2643', 3, 'LLANEZA GIL JUAN RAFAELMO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 144215, '2011-07-08', '633120.00', 'A'), + ('2646', 3, 'AVILA PEROZO IANKEL JACOB', '191821112', 'CRA 25 CALLE 100', + '318@hotmail.com', '2011-02-03', 144215, '2011-09-03', '125600.00', + 'A'), + ('2647', 3, 'REGULAR EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-08-19', '583540.00', 'A'), + ('2648', 3, 'CORONADO BATISTA JOSE ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-19', '540910.00', 'A'), + ('2649', 3, 'OLIVIER JOSE VICTOR', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 144509, '2011-08-19', '953910.00', 'A'), + ('2650', 3, 'YOO HOE TAEK', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 145135, '2011-08-25', '146820.00', 'A'), + ('266', 1, 'CUECA RODRIGUEZ CARLOS ANDRES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-22', + '384280.00', 'A'), + ('267', 1, 'NIETO ALVARADO ARMANDO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2008-04-28', '553450.00', 'A'), + ('269', 1, 'LEAL HOLGUIN FRANCISCO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-07-25', '411700.00', 'A'), + ('27', 1, 'MORENO MORENO CARLOS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2009-09-15', + '995620.00', 'A'), + ('270', 1, 'CANO IBAÑES JUAN FELIPE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-06-03', '215260.00', 'A'), + ('271', 1, 'RESTREPO HERRAN ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132775, '2011-04-18', '841220.00', 'A'), + ('272', 3, 'RIOS FRANCISCO JOSE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 199862, '2011-03-24', '560300.00', 'A'), + ('273', 1, 'MADERO LORENZANA NICOLAS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-03', '277850.00', 'A'), + ('274', 1, 'GOMEZ GABRIEL', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 127591, '2010-09-24', '708350.00', 'A'), + ('275', 1, 'CONSUEGRA ARENAS ANDRES MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-09', + '708210.00', 'A'), + ('276', 1, 'HURTADO ROJAS NICOLAS', '191821112', 'CRA 25 CALLE 100', + '463@yahoo.com.mx', '2011-02-03', 127591, '2011-09-07', '416000.00', + 'A'), + ('277', 1, 'MURCIA BAQUERO MARCO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-02', + '955370.00', 'A'), + ('2773', 3, 'TAKUBO KAORI', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 165753, '2011-05-12', '872390.00', 'A'), + ('2774', 3, 'OKADA MAKOTO', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 165753, '2011-06-19', '921480.00', 'A'), + ('2775', 3, 'TAKEDA AKIO ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 21062, '2011-06-19', '990250.00', 'A'), + ('2776', 3, 'KOIKE WATARU ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 165753, '2011-06-19', '186800.00', 'A'), + ('2777', 3, 'KUBO SHINEI', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 165753, '2011-02-13', '963230.00', 'A'), + ('2778', 3, 'KANNO YONEZO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 165600, '2011-07-26', '255770.00', 'A'), + ('278', 3, 'PARENT ELOIDE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 267980, '2011-05-01', '528840.00', 'A'), + ('2781', 3, 'SUNADA MINORU ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 165753, '2011-06-19', '724450.00', 'A'), + ('2782', 3, 'INOUE KASUYA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-22', '87150.00', 'A'), + ('2783', 3, 'OTAKE NOBUTOSHI', '191821112', 'CRA 25 CALLE 100', + '208@facebook.com', '2011-02-03', 127591, '2011-06-11', '262380.00', + 'A'), + ('2784', 3, 'MOTOI KEN', '191821112', 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 165753, '2011-06-19', '50470.00', 'A'), + ('2785', 3, 'TANAKA KIYOTAKA ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 165753, '2011-06-19', '465210.00', 'A'), + ('2787', 3, 'YUMIKOPERDOMO', '191821112', 'CRA 25 CALLE 100', + '600@yahoo.es', '2011-02-03', 165600, '2011-07-26', '477550.00', 'A'), + ('2788', 3, 'FUKUSHIMA KENZO', '191821112', 'CRA 25 CALLE 100', + '599@gmail.com', '2011-02-03', 156960, '2011-05-30', '863860.00', 'A'), + ('2789', 3, 'GELGIN LEVENT NURI', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-05-26', '886630.00', 'A'), + ('279', 1, 'AVIATUR S. A.', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-05-02', '778110.00', 'A'), + ('2791', 3, 'GELGIN ENIS ENRE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-26', '547940.00', 'A'), + ('2792', 3, 'PAZ SOTO LUBRASCA MARIA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 143954, '2011-06-27', '215000.00', 'A'), + ('2794', 3, 'MOURAD TAOUFIKI', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-04-13', '511000.00', 'A'), + ('2796', 3, 'DASTUS ALAIN', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 218656, '2011-05-29', '774010.00', 'A'), + ('2797', 3, 'MCDONALD MICHAEL LORNE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 269033, '2011-07-19', '85820.00', 'A'), + ('2799', 3, 'KLESO MICHAEL QUENTIN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 269033, '2011-07-26', '277950.00', 'A'), + ('28', 1, 'GONZALEZ ACUÑA EDGAR MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-19', + '531710.00', 'A'), + ('280', 3, 'NEME KARIM CHAIBAN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 135967, '2010-05-02', '304040.00', 'A'), + ('2800', 3, 'CLERK CHARLES ALEXANDER', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 244158, '2011-07-26', '68490.00', 'A'), + ('2801', 3, 'BURRIS MAURICE STEWARD', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-27', '508600.00', 'A'), + ('2802', 1, 'PINCHEN CLAIRE ELAINE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 216125, '2011-04-13', '337530.00', 'A'), + ('2803', 3, 'LETTNER EVA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 231224, '2011-09-20', '161860.00', 'A'), + ('2804', 3, 'CANUEL LUCIE', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 146258, '2011-09-20', '796710.00', 'A'), + ('2805', 3, 'IGLESIAS CARLOS ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 216125, '2011-08-02', '497980.00', 'A'), + ('2806', 3, 'PAQUIN JEAN FRANCOIS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 269033, '2011-03-27', '99760.00', 'A'), + ('2807', 3, 'FOURNIER DANIEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 228688, '2011-05-19', '4860.00', 'A'), + ('2808', 3, 'BILODEAU MARTIN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-13', '725030.00', 'A'), + ('2809', 3, 'KELLNER PETER WILLIAM', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 130757, '2011-07-24', '610570.00', 'A'), + ('2810', 3, 'ZAZULAK INGRID ROSEMARIE', '191821112', 'CRA 25 CALLE 100', + '683@facebook.com', '2011-02-03', 240550, '2011-09-11', '877770.00', + 'A'), + ('2811', 3, 'RUCCI JHON MARIA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 285188, '2011-05-10', '557130.00', 'A'), + ('2813', 3, 'JONCAS MARC', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 33265, '2011-03-21', '90360.00', 'A'), + ('2814', 3, 'DUCHARME ERICK', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-03-29', '994750.00', 'A'), + ('2816', 3, 'BAILLOD THOMAS DAVID ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 239124, '2010-10-20', '529130.00', 'A'), + ('2817', 3, 'MARTINEZ SORIA JOSE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 289697, '2011-09-06', '537630.00', 'A'), + ('2818', 3, 'TAMARA RABER', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-04-30', '100750.00', 'A'), + ('2819', 3, 'BURGI VINCENT EMANUEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 245206, '2011-04-20', '890860.00', 'A'), + ('282', 1, 'HUESPED ASISTENTE A LA CONVENCION DE LA DIAN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2009-06-24', + '17160.00', 'A'), + ('2820', 3, 'ROBLES TORRALBA IVAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 238949, '2011-05-16', '152030.00', 'A'), + ('2821', 3, 'CONSUEGRA MARIA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-06', '87600.00', 'A'), + ('2822', 3, 'CELMA ADROVER LAIA', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 190393, '2011-03-23', '981880.00', 'A'), + ('2823', 3, 'ALVAREZ JUAN PABLO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 150699, '2011-06-20', '646610.00', 'A'), + ('2824', 3, 'VARGAS WOODROFFE FRANCISCO JOSE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 157414, '2011-06-22', + '287410.00', 'A'), + ('2825', 3, 'GARCIA GUILLEN VICENTE LUIS', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 144215, '2011-08-19', + '497230.00', 'A'), + ('2826', 3, 'GOMEZ GARCIA DIAMANTES PATRICIA MARIA', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2011-09-22', + '623930.00', 'A'), + ('2827', 3, 'PEREZ IGLESIAS BIBIANA', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 132958, '2011-09-30', '627940.00', 'A'), + ('2830', 3, 'VILLALONGA MORENES MARIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 169679, '2011-05-29', '474910.00', 'A'), + ('2831', 3, 'REY LOPEZ DAVID', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 150699, '2011-08-03', '7380.00', 'A'), + ('2832', 3, 'HOYO APARICIO JESUS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 116511, '2011-09-19', '612180.00', 'A'), + ('2836', 3, 'GOMEZ GARCIA LOPEZ CARLOS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 150699, '2011-09-21', '277540.00', 'A'), + ('2839', 3, 'GALIMERTI MARCO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 235197, '2011-08-28', '156870.00', 'A'), + ('2840', 3, 'BAROZZI GIUSEPE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 231989, '2011-05-25', '609500.00', 'A'), + ('2841', 3, 'MARIAN RENATO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-06-12', '576900.00', 'A'), + ('2842', 3, 'FAENZA CARLO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 126180, '2011-05-19', '55990.00', 'A'), + ('2843', 3, 'PESOLILLO CARMINE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 203162, '2011-06-26', '549230.00', 'A'), + ('2844', 3, 'CHIODI FRANCESCO MARIA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 199862, '2011-09-10', '578210.00', 'A'), + ('2845', 3, 'RUTA MARIO', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 128662, '2011-06-19', '243350.00', 'A'), + ('2846', 3, 'BAZZONI MARINO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 101518, '2011-05-03', '482140.00', 'A'), + ('2848', 3, 'LAGASIO LEONARDO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 231989, '2011-05-04', '956670.00', 'A'), + ('2849', 3, 'VIERA DA CUNHA PAULO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 190393, '2011-04-05', '741520.00', 'A'), + ('2850', 3, 'DAL BEN DENIS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 116511, '2011-05-26', '837590.00', 'A'), + ('2851', 3, 'GIANELLI HERIBERTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 233927, '2011-05-01', '963400.00', 'A'), + ('2852', 3, 'JUSTINO DA SILVA DJAMIR', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-04-08', '304200.00', 'A'), + ('2853', 3, 'DIPASQUUALE GAETANO', '191821112', 'CRA 25 CALLE 100', + '574@terra.com.co', '2011-02-03', 172888, '2011-07-11', '630830.00', + 'A'), + ('2855', 3, 'CURI MAURO', '191821112', 'CRA 25 CALLE 100', '@gmail.com', + '2011-02-03', 199862, '2011-06-19', '315160.00', 'A'), + ('2856', 3, 'DI DIO MARCO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-20', '851210.00', 'A'), + ('2857', 3, 'ROBERTI MENDONCA CAIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-11', '310580.00', 'A'), + ('2859', 3, 'RAMOS MORENO DE SOUZA ANDRE ', '191821112', + 'CRA 25 CALLE 100', '133@facebook.com', '2011-02-03', 118777, + '2011-09-24', '64540.00', 'A'), + ('286', 8, 'INEXMODA', '191821112', 'CRA 25 CALLE 100', '@facebook.com', + '2011-02-03', 128662, '2011-06-21', '50150.00', 'A'), + ('2860', 3, 'JODJAHN DE CARVALHO FLAVIA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-06-27', + '324950.00', 'A'), + ('2862', 3, 'LAGASIO LEONARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 231989, '2011-07-04', '180760.00', 'A'), + ('2863', 3, 'MOON SUNG RIUL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-04-08', '610440.00', 'A'), + ('2865', 3, 'VAIDYANATHAN VIKRAM', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-11', '718220.00', 'A'), + ('2866', 3, 'NARAYANASWAMY RAMSUNDAR', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 73079, '2011-10-02', '61390.00', 'A'), + ('2867', 3, 'VADADA VENKATA RAMESH KUMAR', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-10', + '152300.00', 'A'), + ('2868', 3, 'RAMA KRISHNAN ', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-10', '577300.00', 'A'), + ('2869', 3, 'JALAN PRASHANT', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 122035, '2011-05-02', '429600.00', 'A'), + ('2871', 3, 'CHANDRASEKAR VENKAT', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 112862, '2011-06-27', '791800.00', 'A'), + ('2872', 3, 'CUMBAKONAM SWAMINATHAN SUBRAMANIAN', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-11', + '710650.00', 'A'), + ('288', 8, 'BCD TRAVEL', '191821112', 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 127591, '2011-07-23', '645390.00', 'A'), + ('289', 3, 'EMBAJADA ARGENTINA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '1970-02-02', '749440.00', 'A'), + ('290', 3, 'EMBAJADA DE BRASIL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2010-11-16', '811030.00', 'A'), + ('293', 8, 'ONU', '191821112', 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2010-09-19', '584810.00', 'A'), + ('299', 1, 'BLANDON GUZMAN JHON JAIRO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-01-13', '201740.00', 'A'), + ('304', 3, 'COHEN DANIEL DYLAN', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 286785, '2010-11-17', '184850.00', 'A'), + ('306', 1, 'CINDU ANDINA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2009-06-11', '899230.00', 'A'), + ('31', 1, 'GARRIDO LEONARDO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127662, '2010-09-12', '801450.00', 'A'), + ('310', 3, 'CORPORACION CLUB EL NOGAL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2010-08-27', '918760.00', 'A'), + ('314', 3, 'CHAWLA AARON', '191821112', 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-04-08', '295840.00', 'A'), + ('317', 3, 'BAKER HUGHES', '191821112', 'CRA 25 CALLE 100', + '694@hotmail.com', '2011-02-03', 127591, '2011-04-03', '211990.00', + 'A'), + ('32', 1, 'PAEZ SEGURA JOSE ANTONIO', '191821112', 'CRA 25 CALLE 100', + '675@gmail.com', '2011-02-03', 129447, '2011-08-22', '717340.00', 'A'), + ('320', 1, 'MORENO PAEZ FREDDY ALEXANDER', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-31', + '971670.00', 'A'), + ('322', 1, 'CALDERON CARDOZO GASTON EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-05', + '990640.00', 'A'), + ('324', 1, 'ARCHILA MERA ALFREDOMANUEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-06-22', '77200.00', 'A'), + ('326', 1, 'MUÑOZ AVILA HERNEY', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-11-10', '550920.00', 'A'), + ('327', 1, 'CHAPARRO CUBILLOS FABIAN ANDRES', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-15', + '685080.00', 'A'), + ('329', 1, 'GOMEZ LOPEZ JUAN SEBASTIAN', '191821112', 'CRA 25 CALLE 100', + '970@yahoo.com', '2011-02-03', 127591, '2011-03-20', '808070.00', 'A'), + ('33', 1, 'MARTINEZ MARIÑO HENRY HERNAN', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-04-20', + '182370.00', 'A'), + ('330', 3, 'MAPSTONE NAOMI LEA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 122035, '2010-02-21', '722380.00', 'A'), + ('332', 3, 'ROSSI BURRI NELLY', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 132165, '2010-05-10', '771210.00', 'A'), + ('333', 1, 'AVELLANEDA OVIEDO JUAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-25', + '293060.00', 'A'), + ('334', 1, 'SUZA FLOREZ JUAN PABLO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-05-13', '151650.00', 'A'), + ('335', 1, 'ESGUERRA ALVARO ANDRES', '191821112', 'CRA 25 CALLE 100', + '11@facebook.com', '2011-02-03', 127591, '2011-09-10', '879080.00', + 'A'), + ('337', 3, 'DE LA HARPE MARTIN CARAPET WALTER', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-27', + '64960.00', 'A'), + ('339', 1, 'HERNANDEZ ACOSTA SERGIO ANDRES', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 129499, '2011-06-22', + '322570.00', 'A'), + ('340', 3, 'ZARAMA DE LA ESPRIELLA MIGUEL PATRICIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-27', + '102360.00', 'A'), + ('342', 1, 'CABRERA VASQUEZ JUAN PABLO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-05-01', '413440.00', 'A'), + ('343', 3, 'RICHARDSON BEN MARRIS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 286785, '2010-05-18', '434890.00', 'A'), + ('344', 1, 'OLARTE PINZON MIGUEL FELIPE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-30', + '934140.00', 'A'), + ('345', 1, 'SOLER SEBASTIAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2011-04-20', '366020.00', 'A'), + ('346', 1, 'PRIETO JUAN ESTEBAN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2010-07-12', '27690.00', 'A'), + ('349', 1, 'BARRERO VELASCO DAVID', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-01', '472850.00', 'A'), + ('35', 1, 'VELASQUEZ RAMOS JUAN MANUEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-13', '251940.00', 'A'), + ('350', 1, 'RANGEL GARCIA SERGIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-03-20', '7880.00', 'A'), + ('353', 1, 'ALVAREZ ACEVEDO JOHN FREDDY', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-16', + '540070.00', 'A'), + ('354', 1, 'VILLAMARIN HOME WILMAR ALFREDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-19', + '458810.00', 'A'), + ('355', 3, 'SLUCHIN NAAMAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 263813, '2010-12-01', '673830.00', 'A'), + ('357', 1, 'BULLA BERNAL LUIS ERNESTO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-06-14', '942160.00', 'A'), + ('358', 1, 'BRACCIA AVILA GIANCARLO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-01', '732620.00', 'A'), + ('359', 1, 'RODRIGUEZ PINTO RAUL DAVID', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-08-24', '836600.00', 'A'), + ('36', 1, 'MALDONADO ALVAREZ JAIRO ASDRUBAL', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-06-19', + '980270.00', 'A'), + ('362', 1, 'POMBO POLANCO JUAN BERNARDO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-18', + '124130.00', 'A'), + ('363', 1, 'CARDENAS SUAREZ CARLOS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-01', + '372920.00', 'A'), + ('364', 1, 'RIVERA MAZO JOSE DAVID', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2010-06-10', '492220.00', 'A'), + ('365', 1, 'LEDERMAN CORDIKI JONATHAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-12-03', '342340.00', 'A'), + ('367', 1, 'BARRERA MARTINEZ LUIS CARLOS', '191821112', + 'CRA 25 CALLE 100', '35@yahoo.com.mx', '2011-02-03', 127591, + '2011-05-24', '148130.00', 'A'), + ('368', 1, 'SEPULVEDA RAMIREZ DANIEL MARCELO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-31', + '35560.00', 'A'), + ('369', 1, 'QUINTERO DIAZ WILSON ASDRUBAL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', + '733430.00', 'A'), + ('37', 1, 'RESTREPO SUAREZ HENRY BERNARDO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-07-25', + '145540.00', 'A'), + ('370', 1, 'ROJAS YARA WILLMAR ARLEY', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-12-03', '560450.00', 'A'), + ('371', 3, 'CARVER LOUISE EMILY', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 286785, '2010-10-07', '601980.00', 'A'), + ('372', 3, 'VINCENT DAVID', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 286785, '2011-03-06', '328540.00', 'A'), + ('374', 1, 'GONZALEZ DELGADO MIGUEL ANGEL', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-18', + '198260.00', 'A'), + ('375', 1, 'PAEZ SIMON', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-06-25', '480970.00', 'A'), + ('376', 1, 'CADOSCH DELMAR ELIE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-10-07', '810080.00', 'A'), + ('377', 1, 'HERRERA VASQUEZ DANIEL EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-06-30', + '607460.00', 'A'), + ('378', 1, 'CORREAL ROJAS RONALD', '191821112', 'CRA 25 CALLE 100', + '269@facebook.com', '2011-02-03', 127591, '2011-07-16', '607080.00', + 'A'), + ('379', 1, 'VOIDONNIKOLAS MUÑOS PANAGIOTIS', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-27', + '213010.00', 'A'), + ('38', 1, 'CANAL ROJAS MAURICIO HERNANDO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-05-29', + '786900.00', 'A'), + ('380', 1, 'DIAZ ECHEVERRI JUAN DAVID ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-20', + '243800.00', 'A'), + ('381', 1, 'CIFUENTES MARIN HERNANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-05-26', '579960.00', 'A'), + ('382', 3, 'PAXTON LUCINDA HARRIET', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 107159, '2011-05-23', '168420.00', 'A'), + ('384', 3, 'POYNTON BRIAN GEORGE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 286785, '2011-03-20', '5790.00', 'A'), + ('385', 3, 'TERMIGNONI ADRIANO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-01-14', '722320.00', 'A'), + ('386', 3, 'CARDWELL PAULA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-02-17', '594230.00', 'A'), + ('389', 1, 'FONCECA MARTINEZ MIGUEL ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-25', + '778680.00', 'A'), + ('39', 1, 'GARCIA SUAREZ WILLIAM ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-25', + '497880.00', 'A'), + ('390', 1, 'GUERRERO NELSON', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-12-03', '178650.00', 'A'), + ('391', 1, 'VICTORIA PENA FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-06-22', '557200.00', 'A'), + ('392', 1, 'VAN HISSENHOVEN FERRERO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-13', '250060.00', 'A'), + ('393', 1, 'CACERES ORDUZ JUAN GUILLERMO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-28', + '578690.00', 'A'), + ('394', 1, 'QUINTERO ALVARO FELIPE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-17', '143270.00', 'A'), + ('395', 1, 'ANZOLA PEREZ CARLOSDAVID', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-04', '980300.00', 'A'), + ('397', 1, 'LLOREDA ORTIZ CARLOS JOSE', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-27', '417470.00', 'A'), + ('398', 1, 'GONZALES LONDOÑO SEBASTIAN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-06-19', '672310.00', 'A'), + ('4', 1, 'LONDOÑO DOMINGUEZ ERNESTO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-05', '324610.00', 'A'), + ('40', 1, 'MORENO ANGULO ORLANDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-01', '128690.00', 'A'), + ('400', 8, 'TRANSELCA .A', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 133535, '2011-04-14', '528930.00', 'A'), + ('403', 1, 'VERGARA MURILLO JUAN FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-04', + '42900.00', 'A'), + ('405', 1, 'CAPERA CAPERA HARRINSON', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127799, '2011-06-12', '961000.00', 'A'), + ('407', 1, 'MORENO MORA WILLIAM EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-22', + '872780.00', 'A'), + ('408', 1, 'HIGUERA ROA NICOLAS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-03-28', '910430.00', 'A'), + ('409', 1, 'FORERO CASTILLO OSCAR ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '988@terra.com.co', '2011-02-03', 127591, + '2011-07-23', '933810.00', 'A'), + ('410', 1, 'LOPEZ MURCIA JULIAN DANIEL', '191821112', 'CRA 25 CALLE 100', + '399@facebook.com', '2011-02-03', 127591, '2011-08-08', '937790.00', + 'A'), + ('411', 1, 'ALZATE JOHN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-09-09', '887490.00', 'A'), + ('412', 1, 'GONZALES GONZALES ORLANDO ANDREY', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-30', + '624080.00', 'A'), + ('413', 1, 'ESCOLANO VALENTIN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-05', '457930.00', 'A'), + ('414', 1, 'JARAMILLO RODRIGUEZ JUAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-12', + '417420.00', 'A'), + ('415', 1, 'GARCIA MUÑOZ DANIEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-10-02', '713300.00', 'A'), + ('416', 1, 'PIÑEROS ARENAS JUAN DAVID', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-10-17', '314260.00', 'A'), + ('417', 1, 'ORTIZ ARROYAVE ANDRES', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-05-21', '431370.00', 'A'), + ('418', 1, 'BAYONA BARRIENTOS JEAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-12', + '214090.00', 'A'), + ('419', 1, 'AGUDELO VASQUEZ JUAN FELIPE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-30', + '776360.00', 'A'), + ('420', 1, 'CALLE DANIEL CJ PRODUCCIONES', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-04', + '239500.00', 'A'), + ('422', 1, 'CANO BETANCUR ANDRES', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-08-20', '623620.00', 'A'), + ('423', 1, 'CALDAS BARRETO LUZ MIREYA', '191821112', 'CRA 25 CALLE 100', + '991@facebook.com', '2011-02-03', 127591, '2011-05-22', '512840.00', + 'A'), + ('424', 1, 'SIMBAQUEBA JOSE ERNESTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-07-25', '693320.00', 'A'), + ('425', 1, 'DE SILVESTRE CALERO LUIS GABRIEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-18', + '928110.00', 'A'), + ('426', 1, 'ZORRO PERALTA YEZID', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-07-25', '560560.00', 'A'), + ('428', 1, 'SUAREZ OIDOR DARWIN LEONARDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131272, '2011-09-05', + '410650.00', 'A'), + ('429', 1, 'GIRAL CARRILLO LUIS ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-13', + '997850.00', 'A'), + ('43', 1, 'MARULANDA VALENCIA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-09-17', '365550.00', 'A'), + ('430', 1, 'CORDOBA GARCES JUAN PABLO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-18', '757320.00', 'A'), + ('431', 1, 'ARIAS TAMAYO DIEGO MAURICIO', '191821112', + 'CRA 25 CALLE 100', '36@yahoo.com', '2011-02-03', 127591, '2011-09-05', + '793050.00', 'A'), + ('432', 1, 'EICHMANN PERRET MARC WILLY', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-22', '693270.00', 'A'), + ('433', 1, 'DIAZ DANIEL ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2008-09-18', '87200.00', 'A'), + ('435', 1, 'FACCINI GONZALEZ HERMANN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2009-01-08', '519420.00', 'A'), + ('436', 1, 'URIBE DUQUE FELIPE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-28', '528470.00', 'A'), + ('437', 1, 'TAVERA GAONA GABREL LEAL', '191821112', 'CRA 25 CALLE 100', + '280@terra.com.co', '2011-02-03', 127591, '2011-04-28', '84120.00', + 'A'), + ('438', 1, 'ORDOÑEZ PARIS FERNANDO MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-09-26', + '835170.00', 'A'), + ('439', 1, 'VILLEGAS ANDRES', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-03-19', '923520.00', 'A'), + ('44', 1, 'MARTINEZ PEDRO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-08-13', '738750.00', 'A'), + ('440', 1, 'MARTINEZ RUEDA JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '805@hotmail.es', '2011-02-03', 127591, '2011-04-07', '112050.00', 'A'), + ('441', 1, 'ROLDAN JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-05-25', '789720.00', 'A'), + ('442', 1, 'PEREZ BRANDWAYN ELIYAU MOISES', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-10-20', + '612450.00', 'A'), + ('443', 1, 'VALLEJO TORO JUAN DIEGO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128579, '2011-08-16', '693080.00', 'A'), + ('444', 1, 'TORRES CABRERA EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-03-19', '628070.00', 'A'), + ('445', 1, 'MERINO MEJIA GERMAN ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-28', + '61100.00', 'A'), + ('447', 1, 'GOMEZ GOMEZ JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-08', '923070.00', 'A'), + ('448', 1, 'RAUSCH CHEHEBAR STEVEN JOSEPH', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-09-27', + '351540.00', 'A'), + ('449', 1, 'RESTREPO TRUCCO ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-07-28', '988500.00', 'A'), + ('45', 1, 'GUTIERREZ JARAMILLO CARLOS MARIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-22', + '597090.00', 'A'), + ('450', 1, 'GOLDSTEIN VAIDA ELI JACK', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-11', '887860.00', 'A'), + ('451', 1, 'OLEA PINEDA EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-08-10', '473800.00', 'A'), + ('452', 1, 'JORGE OROZCO', '191821112', 'CRA 25 CALLE 100', + '503@hotmail.es', '2011-02-03', 127591, '2011-06-02', '705410.00', 'A'), + ('454', 1, 'DE LA TORRE GOMEZ GERMAN ERNESTO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-03', + '411990.00', 'A'), + ('456', 1, 'MADERO ARIAS JUAN PABLO', '191821112', 'CRA 25 CALLE 100', + '452@hotmail.es', '2011-02-03', 127591, '2011-08-22', '479090.00', 'A'), + ('457', 1, 'GOMEZ MACHUCA ALVARO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-12', + '166430.00', 'A'), + ('458', 1, 'MENDIETA TOBON DANIEL RICARDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-08', + '394880.00', 'A'), + ('459', 1, 'VILLADIEGO CORTINA JAVIER TOMAS', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-26', + '475110.00', 'A'), + ('46', 1, 'FERRUCHO ARCINIEGAS JUAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', + '769220.00', 'A'), + ('460', 1, 'DERESER HARTUNG ERNESTO JOSE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-12-25', + '190900.00', 'A'), + ('461', 1, 'RAMIREZ PENA ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-06-25', '529190.00', 'A'), + ('463', 1, 'IREGUI REYES LUIS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', '778590.00', 'A'), + ('464', 1, 'PINTO GOMEZ MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 132775, '2010-06-24', '673270.00', 'A'), + ('465', 1, 'RAMIREZ RAMIREZ FERNANDO ALONSO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127799, '2011-10-01', + '30570.00', 'A'), + ('466', 1, 'BERRIDO TRUJILLO JORGE HENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2011-10-06', + '133040.00', 'A'), + ('467', 1, 'RIVERA CARVAJAL RAFAEL HUMBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-20', + '573500.00', 'A'), + ('468', 3, 'FLOREZ PUENTES IVAN ALFONSO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-08', + '468380.00', 'A'), + ('469', 1, 'BALLESTEROS FLOREZ IVAN DARIO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-02', + '621410.00', 'A'), + ('47', 1, 'MARIN FLOREZ OMAR EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-30', '54840.00', 'A'), + ('470', 1, 'RODRIGO PEÑA HERRERA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 237734, '2011-10-04', '701890.00', 'A'), + ('471', 1, 'RODRIGUEZ SILVA ROGELIO', '191821112', 'CRA 25 CALLE 100', + '163@gmail.com', '2011-02-03', 127591, '2011-05-26', '645210.00', 'A'), + ('473', 1, 'VASQUEZ VELANDIA JUAN GABRIEL', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-05-04', + '666330.00', 'A'), + ('474', 1, 'ROBLEDO JAIME', '191821112', 'CRA 25 CALLE 100', + '409@yahoo.com', '2011-02-03', 127591, '2011-05-31', '970480.00', 'A'), + ('475', 1, 'GRIMBERG DIAZ PHILIP', '191821112', 'CRA 25 CALLE 100', + '723@yahoo.com', '2011-02-03', 127591, '2011-03-30', '853430.00', 'A'), + ('476', 1, 'CHAUSTRE GARCIA JUAN PABLO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-26', '355670.00', 'A'), + ('477', 1, 'GOMEZ FLOREZ IGNASIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-14', '218090.00', 'A'), + ('478', 1, 'LUIS ALBERTO CABRERA PUENTES', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-05-26', + '23420.00', 'A'), + ('479', 1, 'MARTINEZ ZAPATA JUAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '234@gmail.com', '2011-02-03', 127122, '2011-07-01', + '462840.00', 'A'), + ('48', 1, 'PARRA IBAÑEZ FABIAN ERNESTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-02-01', '966520.00', 'A'), + ('480', 3, 'WESTERBERG JAN RICKARD', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 300701, '2011-02-01', '243940.00', 'A'), + ('484', 1, 'RODRIGUEZ VILLALOBOS EDGAR FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-19', + '860320.00', 'A'), + ('486', 1, 'NAVARRO REYES DIEGO FELIPE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-01', '530150.00', 'A'), + ('487', 1, 'NOGUERA RICAURTE ANDRES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-01-21', '384100.00', 'A'), + ('488', 1, 'RUIZ VEJARANO CARLOS DANIEL', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-27', + '330030.00', 'A'), + ('489', 1, 'CORREA PEREZ ANDRES', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-12-14', '497860.00', 'A'), + ('49', 1, 'FLOREZ PEREZ RUBIEL', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-23', '668090.00', 'A'), + ('490', 1, 'REYES GOMEZ LUIS ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-26', '499210.00', 'A'), + ('491', 3, 'BERNAL LEON ALBERTO JOSE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 150699, '2011-03-29', '2470.00', 'A'), + ('492', 1, 'FELIPE JARAMILLO CARO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2009-10-31', '514700.00', 'A'), + ('493', 1, 'GOMEZ PARRA GERMAN DARIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-01-29', '566100.00', 'A'), + ('494', 1, 'VALLEJO RAMIREZ CARLOS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-13', + '286390.00', 'A'), + ('495', 1, 'DIAZ LONDOÑO HUGO MARIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-04-06', '733670.00', 'A'), + ('496', 3, 'VAN BAKERGEM RONALD JAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2008-11-05', '809190.00', 'A'), + ('497', 1, 'MENDEZ RAMIREZ JOSE LEONARDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-10', + '844920.00', 'A'), + ('498', 3, 'QUI TANILLA HENRIQUEZ PAUL ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-10', + '797030.00', 'A'), + ('499', 3, 'PELEATO FLOREAL', '191821112', 'CRA 25 CALLE 100', + '531@hotmail.com', '2011-02-03', 188640, '2011-04-23', '450370.00', + 'A'), + ('50', 1, 'SILVA GUZMAN MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-03-24', '440890.00', 'A'), + ('502', 3, 'LEO ULF GORAN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 300701, '2010-07-26', '181840.00', 'A'), + ('503', 3, 'KARLSSON DANIEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 300701, '2011-07-22', '50680.00', 'A'), + ('504', 1, 'JIMENEZ JANER ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '889@hotmail.es', '2011-02-03', 203272, '2011-08-29', '707880.00', 'A'), + ('506', 1, 'PABON OCHOA ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-14', '813050.00', 'A'), + ('507', 1, 'ACHURY CADENA CARLOS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-26', + '903240.00', 'A'), + ('508', 1, 'ECHEVERRY GARZON SEBASTIN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-23', '77050.00', 'A'), + ('509', 1, 'PIÑEROS PEÑA LUIS CARLOS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-07-29', '675550.00', 'A'), + ('51', 1, 'CAICEDO URREA JAIME ORLANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127300, '2011-08-17', '200160.00', 'A'), + ('510', 1, 'MARTINEZ MARTINEZ LUIS EDUARDO', '191821112', + 'CRA 25 CALLE 100', '586@facebook.com', '2011-02-03', 127591, + '2010-08-28', '146600.00', 'A'), + ('511', 1, 'MOLANO PEÑA JESUS ANDRES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-02-05', '706320.00', 'A'), + ('512', 3, 'RUDOLPHY FONTAINE ANDRES', '191821112', 'CRA 25 CALLE 100', + '492@yahoo.com', '2011-02-03', 117002, '2011-04-12', '91820.00', 'A'), + ('513', 1, 'NEIRA CHAVARRO JOHN JAIRO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-05-12', '340120.00', 'A'), + ('514', 3, 'MENDEZ VILLALOBOS ARMANDO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 145135, '2011-03-25', '425160.00', 'A'), + ('515', 3, 'HERNANDEZ OLIVA JOSE DE LA CRUZ', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-03-25', + '105440.00', 'A'), + ('518', 3, 'JANCO NICOLAS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-15', '955830.00', 'A'), + ('52', 1, 'TAPIA MUÑOZ JAIRO RICARDO', '191821112', 'CRA 25 CALLE 100', + '920@hotmail.es', '2011-02-03', 127591, '2011-10-05', '678130.00', 'A'), + ('520', 1, 'ALVARADO JAVIER', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-26', '895550.00', 'A'), + ('521', 1, 'HUERFANO SOTO JONATHAN', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-05-30', '619910.00', 'A'), + ('522', 1, 'HUERFANO SOTO JONATHAN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-06-04', '412900.00', 'A'), + ('523', 1, 'RODRIGEZ GOMEZ WILMAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-05-14', '204790.00', 'A'), + ('525', 1, 'ARROYO BAPTISTE DIEGO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-09', '311810.00', 'A'), + ('526', 1, 'PULECIO BOEK DANIEL', '191821112', 'CRA 25 CALLE 100', + '718@gmail.com', '2011-02-03', 127591, '2011-08-12', '203350.00', 'A'), + ('527', 1, 'ESLAVA VELEZ SEBASTIAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-10-08', '81300.00', 'A'), + ('528', 1, 'CASTRO FERNANDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-05-06', '796470.00', 'A'), + ('53', 1, 'HINCAPIE MARTINEZ RICARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127573, '2011-09-26', '790180.00', 'A'), + ('530', 1, 'ZORRILLA PUJANA NICOLAS', '191821112', 'CRA 25 CALLE 100', + '312@yahoo.es', '2011-02-03', 127591, '2011-06-06', '302750.00', 'A'), + ('531', 1, 'ZORRILLA PUJANA NICOLAS', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-06-06', '298440.00', 'A'), + ('532', 1, 'PRETEL ARTEAGA MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-05-09', '583980.00', 'A'), + ('533', 1, 'RAMOS VERGARA HUMBERTO CARLOS', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 131105, '2010-05-13', + '24560.00', 'A'), + ('534', 1, 'BONILLA PIÑEROS DIEGO FELIPE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', + '370880.00', 'A'), + ('535', 1, 'BELTRAN TRIVIÑO JULIAN DAVID', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-11-06', + '780710.00', 'A'), + ('536', 3, 'BLOD ULF FREDERICK EDWARD', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-04-06', '790900.00', 'A'), + ('537', 1, 'VANEGAS OROZCO SEBASTIAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128662, '2010-11-10', '612400.00', 'A'), + ('538', 3, 'ORUE VALLE MONICA CECILIA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 97885, '2011-09-15', '689270.00', 'A'), + ('539', 1, 'AGUDELO BEDOYA ANDRES JOSE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2011-05-24', '609160.00', 'A'), + ('54', 1, 'DE HOYOS TRESPALACIOS MAURICIO ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-21', + '916500.00', 'A'), + ('540', 3, 'HEIJKENSKJOLD PER JESPER', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-06', '977980.00', 'A'), + ('541', 3, 'GONZALEZ ALVARADO LUIS RAUL', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-08-27', + '62430.00', 'A'), + ('543', 1, 'GRUPO SURAMERICA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-08-24', '703760.00', 'A'), + ('545', 1, 'CORPORACION CONTEXTO ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-08', '809570.00', 'A'), + ('546', 3, 'LUNDIN JOHAN ERIK ', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-07-29', '895330.00', 'A'), + ('548', 3, 'VEGERANO JOSE ', '191821112', 'CRA 25 CALLE 100', + '221@facebook.com', '2011-02-03', 190393, '2011-06-05', '553780.00', + 'A'), + ('549', 3, 'SERRANO MADRID CLAUDIA INES', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-27', + '625060.00', 'A'), + ('55', 1, 'TAFUR GOMEZ ALEXANDER', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127300, '2010-09-12', '211980.00', 'A'), + ('550', 1, 'MARTINEZ ACEVEDO MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-10-06', '463920.00', 'A'), + ('551', 1, 'GONZALEZ MORENO PABLO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-07-21', '444450.00', 'A'), + ('552', 1, 'MEJIA ROJAS ANDRES FELIPE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-08-02', '830470.00', 'A'), + ('553', 3, 'RODRIGUEZ ANTHONY HANSEL', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-16', '819000.00', 'A'), + ('554', 1, 'ABUCHAIBE ANNICCHRICO JOSE ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-31', + '603610.00', 'A'), + ('555', 3, 'MOYES KIMBERLY', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-04-08', '561020.00', 'A'), + ('556', 3, 'MONTINI MARIO JOSE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 118942, '2010-03-16', '994280.00', 'A'), + ('557', 3, 'HOGBERG DANIEL TOBIAS', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-06-15', '288350.00', 'A'), + ('559', 1, 'OROZCO PFEIZER MARTIN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-10-07', '429520.00', 'A'), + ('56', 1, 'NARIÑO ROJAS GABRIEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-27', '310390.00', 'A'), + ('560', 1, 'GARCIA MONTOYA ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 128662, '2011-06-02', '770840.00', 'A'), + ('562', 1, 'VELASQUEZ PALACIO MANUEL ORLANDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-06-23', + '515670.00', 'A'), + ('563', 1, 'GALLEGO PEREZ DIEGO ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-14', + '881460.00', 'A'), + ('564', 1, 'RUEDA URREGO JUAN ESTEBAN', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 128662, '2011-05-04', '860270.00', 'A'), + ('565', 1, 'RESTREPO DEL TORO MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-05-10', '656960.00', 'A'), + ('567', 1, 'TORO VALENCIA FELIPE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2010-08-04', '549090.00', 'A'), + ('568', 1, 'VILLEGAS LUIS ALFONSO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-05-02', '633490.00', 'A'), + ('569', 3, 'RIDSTROM CHRISTER ANDERS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 300701, '2011-09-06', '520150.00', 'A'), + ('57', 1, 'TOVAR ARANGO JOHN JAIME', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127662, '2010-07-03', '916010.00', 'A'), + ('570', 3, 'SHEPHERD DAVID', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2008-05-11', '700280.00', 'A'), + ('573', 3, 'BENGTSSON JOHAN ANDREAS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-04-06', '196830.00', 'A'), + ('574', 3, 'PERSSON HANS JONAS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-06-09', '172340.00', 'A'), + ('575', 3, 'SYNNEBY BJORN ERIK', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-06-15', '271210.00', 'A'), + ('577', 3, 'COHEN PAUL KIRTAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-25', '381490.00', 'A'), + ('578', 3, 'ROMERO BRAVO FERNANDO EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', + '390360.00', 'A'), + ('579', 3, 'GUTHRIE ROBERT DEAN', '191821112', 'CRA 25 CALLE 100', + '794@gmail.com', '2011-02-03', 161705, '2010-07-20', '807350.00', 'A'), + ('58', 1, 'TORRES ESCOBAR JAIRO ALFONSO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-06-17', + '648860.00', 'A'), + ('580', 3, 'ROCASERMEÑO MONTENEGRO MARIO JOSE', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 139844, '2010-12-01', + '865650.00', 'A'), + ('581', 1, 'COCK JORGE EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 128662, '2011-08-19', '906210.00', 'A'), + ('582', 3, 'REISS ANDREAS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2009-01-31', '934120.00', 'A'), + ('584', 3, 'ECHEVERRIA CASTILLO GERMAN FRANCISCO', '191821112', + 'CRA 25 CALLE 100', '982@yahoo.com', '2011-02-03', 139844, '2011-07-20', + '957370.00', 'A'), + ('585', 3, 'BRANDT CARLOS GUSTAVO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-10', '931030.00', 'A'), + ('586', 3, 'VEGA NUÑEZ GILBERTO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-14', + '783010.00', 'A'), + ('587', 1, 'BEJAR MUÑOZ JORDI', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 196234, '2010-10-08', '121990.00', 'A'), + ('588', 3, 'WADSO KERSTIN ELIZABETH', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-09-17', '260890.00', 'A'), + ('59', 1, 'RAMOS FORERO JAVIER', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-06-20', '496300.00', 'A'), + ('590', 1, 'RODRIGUEZ BETANCOURT JAVIER AUGUSTO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2011-05-23', + '909850.00', 'A'), + ('592', 1, 'ARBOLEDA HALABY RODRIGO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 150699, '2009-02-03', '939170.00', 'A'), + ('593', 1, 'CURE CURE CARLOS ALFREDO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 150699, '2011-07-11', '494600.00', 'A'), + ('594', 3, 'VIDELA PEREZ OSCAR EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 117002, '2011-07-13', '655510.00', 'A'), + ('595', 1, 'GONZALEZ GAVIRIA NESTOR', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2009-09-28', '793760.00', 'A'), + ('596', 3, 'IZQUIERDO DELGADO DIONISIO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2009-09-24', '2250.00', 'A'), + ('597', 1, 'MORENO DAIRO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127300, '2011-06-14', '629990.00', 'A'), + ('598', 1, 'RESTREPO FERNNDEZ SOTO JOSE MANUEL', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-08-31', + '143210.00', 'A'), + ('599', 3, 'YERYES VERGARA MARIA SOLEDAD', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-10-11', + '826060.00', 'A'), + ('6', 1, 'GUZMAN ESCOBAR JOSE VICENTE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-10', '26390.00', 'A'), + ('60', 1, 'ELEJALDE ESCOBAR TOMAS ANDRES', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-11-09', + '534910.00', 'A'), + ('601', 1, 'ESCAF ESCAF WILLIAM MIGUEL', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 150699, '2011-07-26', '25190.00', 'A'), + ('602', 1, 'CEBALLOS ZULUAGA JOSE ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-03', + '23920.00', 'A'), + ('603', 1, 'OLIVELLA GUERRERO RAFAEL ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2010-06-23', + '44040.00', 'A'), + ('604', 1, 'ESCOBAR GALLO CARLOS HUGO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-09', '148420.00', 'A'), + ('605', 1, 'ESCORCIA RAMIREZ EDUARDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 128569, '2011-04-01', '609990.00', 'A'), + ('606', 1, 'MELGAREJO MORENO PAULA ANDREA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-05', + '604700.00', 'A'), + ('607', 1, 'TOBON CALLE CARLOS GUILLERMO', '191821112', + 'CRA 25 CALLE 100', '689@hotmail.es', '2011-02-03', 128662, + '2011-03-16', '193510.00', 'A'), + ('608', 3, 'TREVIÑO NOPHAL SILVANO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 110709, '2011-05-27', '153470.00', 'A'), + ('609', 1, 'CARDER VELEZ EDWIN JOHN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-04', '186830.00', 'A'), + ('61', 1, 'GASCA DAZA VICTOR HERNANDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-09-09', '185660.00', 'A'), + ('610', 3, 'DAVIS JOHN BRADLEY', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-04-06', '473740.00', 'A'), + ('611', 1, 'BAQUERO SLDARRIAGA ALVARO ALEJANDRO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-09-15', + '808210.00', 'A'), + ('612', 3, 'SERRACIN ARAUZ YANIRA YAMILET', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 131272, '2011-06-09', + '619820.00', 'A'), + ('613', 1, 'MORA SOTO ALVARO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-09-20', '674450.00', 'A'), + ('614', 1, 'SUAREZ RODRIGUEZ HERNANDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 145135, '2011-03-29', '512820.00', 'A'), + ('616', 1, 'BAQUERO GARCIA JORGE LUIS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2010-07-14', '165160.00', 'A'), + ('617', 3, 'ABADI MADURO MOISES SIMON', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 131272, '2009-03-31', '203640.00', 'A'), + ('62', 3, 'FLOWER LYNDON BRUCE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 231373, '2011-05-16', '323560.00', 'A'), + ('624', 8, 'OLARTE LEONARDO', '191821112', 'CRA 25 CALLE 100', + '6@hotmail.com', '2011-02-03', 127591, '2011-06-03', '219790.00', 'A'), + ('63', 1, 'RUBIO CORTES OSCAR', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-04-28', '60830.00', 'A'), + ('630', 5, 'PROEXPORT', '191821112', 'CRA 25 CALLE 100', '@terra.com.co', + '2011-02-03', 128662, '2010-08-12', '708320.00', 'A'), + ('632', 8, 'SUPER COFFEE ', '191821112', 'CRA 25 CALLE 100', + '792@hotmail.es', '2011-02-03', 127591, '2011-08-30', '306460.00', 'A'), + ('636', 8, 'NOGAL ASESORIAS FINANCIERAS', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-04-07', + '752150.00', 'A'), + ('64', 1, 'GUERRA MARTINEZ MAURICIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-24', '333480.00', 'A'), + ('645', 8, 'GIZ - PROFIS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-08-31', '566330.00', 'A'), + ('652', 3, 'QBE DEL ISTMO COMPAÑIA DE REASEGUROS ', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-14', + '932190.00', 'A'), + ('655', 3, 'CORP. CENTRO DE ESTUDIOS DE DERECHO JUSTICIA Y SOCIEDAD', + '191821112', 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, + '2010-05-04', '440370.00', 'A'), + ('659', 3, 'GOOD YEAR', '191821112', 'CRA 25 CALLE 100', '@hotmail.com', + '2011-02-03', 128662, '2010-09-24', '993830.00', 'A'), + ('660', 3, 'ARCINIEGAS Y VILLAMIZAR', '191821112', 'CRA 25 CALLE 100', + '258@yahoo.com', '2011-02-03', 127591, '2010-12-02', '787450.00', 'A'), + ('67', 1, 'LOPEZ HOYOS JUAN DIEGO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127662, '2010-04-13', '665230.00', 'A'), + ('670', 8, 'APPLUS NORCONTROL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 133535, '2011-09-06', '83210.00', 'A'), + ('672', 3, 'KERLL SEBASTIAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 287273, '2010-12-19', '501610.00', 'A'), + ('673', 1, 'RESTREPO MOLINA RAMIRO ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 144215, '2010-12-18', + '457290.00', 'A'), + ('674', 1, 'PEREZ GIL JOSE IGNACIO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-08-18', '781610.00', 'A'), + ('676', 1, 'GARCIA LONDOÑO FRANCISCO JAVIER', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-23', + '336160.00', 'A'), + ('677', 3, 'RIJLAARSDAM KARIN AN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-07-03', '72210.00', 'A'), + ('679', 1, 'LIZCANO MONTEALEGRE ARNULFO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127203, '2011-02-01', + '546170.00', 'A'), + ('68', 1, 'MARTINEZ SILVA EDGAR', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-29', '54250.00', 'A'), + ('680', 3, 'OLIVARI MAYER PATRICIA', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 122642, '2011-08-01', '673170.00', 'A'), + ('682', 3, 'CHEVALIER FRANCK PIERRE CHARLES', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 263813, '2010-12-01', + '617280.00', 'A'), + ('683', 3, 'NG WAI WING ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 126909, '2011-06-14', '904310.00', 'A'), + ('684', 3, 'MULLER DOMINGUEZ CARLOS ANDRES', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-22', + '669700.00', 'A'), + ('685', 3, 'MOSQUEDA DOMNGUEZ ANGEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-04-08', '635580.00', 'A'), + ('686', 3, 'LARREGUI MARIN LEON', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2011-04-08', '168800.00', 'A'), + ('687', 3, 'VARGAS VERGARA ALEJANDRO BRAULIO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 159245, '2011-09-14', + '937260.00', 'A'), + ('688', 3, 'SKINNER LYNN CHERYL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-06-12', '179890.00', 'A'), + ('689', 1, 'URIBE CORREA LEONARDO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128662, '2010-07-29', '87680.00', 'A'), + ('690', 1, 'TAMAYO JARAMILLO FRANCISCO JAVIER', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-11-10', + '898730.00', 'A'), + ('691', 3, 'MOTABAN DE BORGES PAULA ELENA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2010-09-24', + '230610.00', 'A'), + ('692', 5, 'FERNANDEZ NALDA JOSE MANUEL ', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-06-28', + '456850.00', 'A'), + ('693', 1, 'GOMEZ RESTREPO JUAN FELIPE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-06-28', '592420.00', 'A'), + ('694', 1, 'CARDENAS TAMAYO JOSE JAIME', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-08-08', '591550.00', 'A'), + ('696', 1, 'RESTREPO ARANGO ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127591, '2010-03-31', '127820.00', 'A'), + ('697', 1, 'ROCABADO PASTRANA ROBERT JAVIER', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127443, '2011-08-13', + '97600.00', 'A'), + ('698', 3, 'JARVINEN JOONAS JORI KRISTIAN', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196234, '2011-05-29', + '104560.00', 'A'), + ('699', 1, 'MORENO PEREZ HERNAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-30', '230000.00', 'A'), + ('7', 1, 'PUYANA RAMOS GUILLERMO ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-27', + '331830.00', 'A'), + ('70', 1, 'GALINDO MANZANO JAVIER FRANCISCO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-31', + '214890.00', 'A'), + ('701', 1, 'ROMERO PEREZ ARCESIO JOSE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 132775, '2011-07-13', '491650.00', 'A'), + ('703', 1, 'CHAPARRO AGUDELO LEONARDO VIRGILIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-05-04', + '271320.00', 'A'), + ('704', 5, 'VASQUEZ YANIS MARIA DEL PILAR', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-10-13', + '508820.00', 'A'), + ('705', 3, 'BARBERO JOSE ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 116511, '2010-09-13', '730170.00', 'A'), + ('706', 1, 'CARMONA HERNANDEZ MIGUEL ANGEL', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-11-08', + '124380.00', 'A'), + ('707', 1, 'PEREZ SUAREZ JORGE ANDRES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132775, '2011-09-14', '431370.00', 'A'), + ('708', 1, 'ROJAS JORGE MARIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 130135, '2011-04-01', '783740.00', 'A'), + ('71', 1, 'DIAZ JUAN PABLO/JULES JAVIER', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-10-01', + '247860.00', 'A'), + ('711', 3, 'CATALDO CARLOS ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 116773, '2011-06-06', '984810.00', 'A'), + ('716', 5, 'MACIAS PIZARRO PATRICIO ', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 117002, '2011-06-07', '376260.00', 'A'), + ('717', 1, 'RENDON MAYA DAVID ALEXANDER', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 130273, '2010-07-25', + '332310.00', 'A'), + ('718', 3, 'DE HILDEBRAND E GRISI FILHO CELSO CLAUDIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-11', + '532740.00', 'A'), + ('719', 3, 'ALLIEL FACUSSE JULIO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-20', + '666800.00', 'A'), + ('72', 1, 'LOPEZ ROJAS VICTOR DANIEL', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-07-11', '594640.00', 'A'), + ('720', 3, 'CHEMELLO JIMENEZ GAETANO ALBERTO FRANCISCO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2010-06-23', + '735760.00', 'A'), + ('721', 3, 'GARCIA BEZANILLA RODOLFO EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-04-12', + '678420.00', 'A'), + ('722', 1, 'ARIAS EDWIN', '191821112', 'CRA 25 CALLE 100', + '13@terra.com.co', '2011-02-03', 127492, '2008-04-24', '184800.00', + 'A'), + ('723', 3, 'SOHN JANG WON', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-06-07', '888750.00', 'A'), + ('724', 3, 'WILHELM GIOVINE JAIME ROBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 115263, '2011-09-20', + '889340.00', 'A'), + ('726', 3, 'CASTILLERO DANIA', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 131272, '2011-05-13', '234270.00', 'A'), + ('727', 3, 'PORTUGAL LANGHORST MAX GUILLERMO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-13', + '829960.00', 'A'), + ('729', 3, 'ALFONSO HERRANZ AGUSTIN ALFONSO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-21', + '745060.00', 'A'), + ('73', 1, 'DAVILA MENDEZ OSCAR DIEGO', '191821112', 'CRA 25 CALLE 100', + '991@yahoo.com.mx', '2011-02-03', 128569, '2011-08-31', '229630.00', + 'A'), + ('730', 3, 'ALFONSO HERRANZ AGUSTIN CARLOS', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-03-31', + '384360.00', 'A'), + ('731', 1, 'NOGUERA RAMIREZ CARLOS ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-14', + '686610.00', 'A'), + ('732', 1, 'ACOSTA PERALTA FABIAN ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 134030, '2011-06-21', + '279960.00', 'A'), + ('733', 3, 'MAC LEAN PIÑA PEDRO SEGUNDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-05-23', + '339980.00', 'A'), + ('734', 1, 'LEÓN ARCOS ALEX', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 133535, '2011-05-04', '860020.00', 'A'), + ('736', 3, 'LAMARCA GARCIA GERMAN JULIO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-04-29', + '820700.00', 'A'), + ('737', 1, 'PORTO VELASQUEZ LUIS MIGUEL', '191821112', + 'CRA 25 CALLE 100', '321@hotmail.es', '2011-02-03', 133535, + '2011-08-17', '263060.00', 'A'), + ('738', 1, 'BUENAVENTURA MEDINA ERICK WILSON', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-09-18', + '853180.00', 'A'), + ('739', 1, 'LEVY ARRAZOLA RALPH MARC', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 133535, '2011-09-27', '476720.00', 'A'), + ('74', 1, 'RAMIREZ SORA EDISON', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-03', '364220.00', 'A'), + ('740', 3, 'MOON HYUNSIK ', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 173192, '2011-05-15', '824080.00', 'A'), + ('741', 3, 'LHUILLIER TRONCOSO GASTON MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-09-07', + '690230.00', 'A'), + ('742', 3, 'UNDURRAGA PELLEGRINI GONZALO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2010-11-21', + '978900.00', 'A'), + ('743', 1, 'SOLANO TRIBIN NICOLAS SIMON', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 134022, '2011-03-16', + '823800.00', 'A'), + ('744', 1, 'NOGUERA BENAVIDES JACOBO ALONSO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-06', + '182300.00', 'A'), + ('745', 1, 'GARCIA LEON MARCO ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 133535, '2008-04-16', '440110.00', 'A'), + ('746', 1, 'EMILIANI ROJAS ALEXANDER ALFONSO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-09-12', + '653640.00', 'A'), + ('748', 1, 'CARREÑO POULSEN HELGEN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', '778370.00', 'A'), + ('749', 1, 'ALVARADO FANDIÑO ANDRES EDUARDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2008-11-05', + '48280.00', 'A'), + ('750', 1, 'DIAZ GRANADOS JUAN PABLO.', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-01-12', '906290.00', 'A'), + ('751', 1, 'OVALLE BETANCOURT ALBERTO JOSE', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2011-08-14', + '386620.00', 'A'), + ('752', 3, 'GUTIERREZ VERGARA JOSE MIGUEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-08', + '214250.00', 'A'), + ('753', 3, 'CHAPARRO GUAIMARAL LIZ', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 147467, '2011-03-16', '911350.00', 'A'), + ('754', 3, 'CORTES DE SOLMINIHAC PABLO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 117002, '2011-01-20', '914020.00', 'A'), + ('755', 3, 'CHETAIL VINCENT', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 239124, '2010-08-23', '836050.00', 'A'), + ('756', 3, 'PERUGORRIA RODRIGUEZ JORGE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2010-10-17', '438210.00', 'A'), + ('757', 3, 'GOLLMANN ROBERTO JUAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 167269, '2011-03-28', '682870.00', 'A'), + ('758', 3, 'VARELA SEPULVEDA MARIA PILAR', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2010-07-26', + '99730.00', 'A'), + ('759', 3, 'MEYER WELIKSON MICHELE JANIK', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-05-10', + '450030.00', 'A'), + ('76', 1, 'VANEGAS RODRIGUEZ OSCAR IVAN', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', + '568310.00', 'A'), + ('77', 3, 'GATICA SOTOMAYOR MAURICIO VICENTE', '191821112', + 'CRA 25 CALLE 100', '409@terra.com.co', '2011-02-03', 117002, + '2010-05-13', '444970.00', 'A'), + ('79', 1, 'PEÑA VALENZUELA DANIEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-19', '264790.00', 'A'), + ('8', 1, 'NAVARRO PALENCIA HUGO RAFAEL', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 126968, '2011-05-05', '579980.00', 'A'), + ('80', 1, 'BARRIOS CUADRADO DAVID', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-07-29', '764140.00', 'A'), + ('802', 3, 'RECK GARRONE', '191821112', 'CRA 25 CALLE 100', '@yahoo.es', + '2011-02-03', 118942, '2009-02-06', '767700.00', 'A'), + ('81', 1, 'PARRA QUIROGA JOSE ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-18', '26330.00', 'A'), + ('811', 8, 'FEDERACION NACIONAL DE AVICULTORES ', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-04-18', + '926010.00', 'A'), + ('812', 1, 'ORJUELA VELEZ JAIME ALFONSO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', + '257160.00', 'A'), + ('813', 1, 'PEÑA CHACON GUSTAVO ADOLFO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2011-08-27', '507770.00', 'A'), + ('814', 1, 'RONDEROS MOJICA ANDRES FELIPE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127443, '2011-05-04', + '767370.00', 'A'), + ('815', 1, 'RICO NIÑO MARIO ANDRES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127443, '2011-05-18', '313540.00', 'A'), + ('817', 3, 'AVILA CHYTIL MANUEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 118471, '2011-07-14', '387300.00', 'A'), + ('818', 3, 'JABLONSKI DUARTE SILVEIRA ESTER', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2010-12-21', + '139740.00', 'A'), + ('819', 3, 'BUHLER MOSLER XIMENA ALEJANDRA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-06-20', + '536830.00', 'A'), + ('82', 1, 'CARRILLO GAMBOA JUAN CARLOS', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-06-01', '839240.00', 'A'), + ('820', 3, 'FALQUETO DALMIRO ANGELO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-06-21', '264910.00', 'A'), + ('821', 1, 'RUGER GUSTAVO RODRIGUEZ TAMAYO', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2010-04-12', + '714080.00', 'A'), + ('822', 3, 'JULIO RODRIGUEZ FRANCISCO JAVIER', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-08-16', + '775650.00', 'A'), + ('823', 3, 'CIBANIK RODOLFO MOISES', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 132554, '2011-09-19', '736020.00', 'A'), + ('824', 3, 'JIMENEZ FRANCO EMMANUEL ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-17', + '353150.00', 'A'), + ('825', 3, 'GNECCO TREMEDAD', '191821112', 'CRA 25 CALLE 100', + '818@hotmail.com', '2011-02-03', 171072, '2011-03-19', '557700.00', + 'A'), + ('826', 3, 'VILAR MENDOZA JOSE RAFAEL', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-06-29', '729050.00', 'A'), + ('827', 3, 'GONZALEZ MOLINA CRISTIAN MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-06-20', + '972160.00', 'A'), + ('828', 1, 'GONTOVNIK HOBRECKT CARLOS DANIEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-08-02', + '673620.00', 'A'), + ('829', 3, 'DIBARRAT URZUA SEBASTIAN RAIMUNDO', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-28', + '451650.00', 'A'), + ('830', 3, 'STOCCHERO HATSCHBACH GUILHERME', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2010-11-22', + '237370.00', 'A'), + ('831', 1, 'NAVAS PASSOS NARCISO EVELIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-04-21', + '831900.00', 'A'), + ('832', 3, 'LUNA SOBENES FAVIAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-10-11', '447400.00', 'A'), + ('833', 3, 'NUÑEZ NOGUEIRA ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-19', '741290.00', 'A'), + ('834', 1, 'CASTRO BELTRAN ARIEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 128188, '2011-05-15', '364270.00', 'A'), + ('835', 1, 'TURBAY YAMIN MAURICIO JOSE', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 188640, '2011-03-17', '597490.00', 'A'), + ('836', 1, 'GOMEZ BARRAZA RODNEY LORENZO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', + '894610.00', 'A'), + ('837', 1, 'CUELLO LASCANO ROBERTO', '191821112', 'CRA 25 CALLE 100', + '221@hotmail.es', '2011-02-03', 133535, '2011-07-11', '680610.00', 'A'), + ('838', 1, 'PATERNINA PEINADO JOSE VICENTE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-08-23', + '719190.00', 'A'), + ('839', 1, 'YEPES RUBIANO ALFONSO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 133535, '2011-05-16', '554130.00', 'A'), + ('84', 1, 'ALVIS RAMIREZ ALFREDO', '191821112', 'CRA 25 CALLE 100', + '292@yahoo.com', '2011-02-03', 127662, '2011-09-16', '68190.00', 'A'), + ('840', 1, 'ROCA LLANOS GUILLERMO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-08-22', + '613060.00', 'A'), + ('841', 1, 'RENDON TORRALVO ENRIQUE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 133535, '2011-05-26', '402950.00', 'A'), + ('842', 1, 'BLANCO STAND GERMAN ELIECER', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-17', + '175530.00', 'A'), + ('843', 3, 'BERNAL MAYRA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 131272, '2010-08-31', '668820.00', 'A'), + ('844', 1, 'NAVARRO RUIZ LAZARO GREGORIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 126916, '2008-09-23', + '817520.00', 'A'), + ('846', 3, 'TUOMINEN OLLI PETTERI', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2010-09-01', '953150.00', 'A'), + ('847', 1, 'ESPARRAGOZA DE LA ESPRIELLA ENRIQUE ALBERTO ', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-08-09', + '522340.00', 'A'), + ('848', 3, 'ARAYA ARIAS JUAN VICENTE', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 132165, '2011-08-09', '752210.00', 'A'), + ('85', 1, 'GARCIA JORGE', '191821112', 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2011-03-01', '989420.00', 'A'), + ('850', 1, 'PARDO GOMEZ GERMAN ENRIQUE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 132775, '2010-11-25', '713690.00', 'A'), + ('851', 1, 'ATIQUE JOSE MANUEL', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 133535, '2008-03-03', '986250.00', 'A'), + ('852', 1, 'HERNANDEZ MEYER EDGARDO DE JESUS', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-20', + '790190.00', 'A'), + ('853', 1, 'ZULUAGA DE LEON IVAN JESUS', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2010-07-03', '992210.00', 'A'), + ('854', 1, 'VILLARREAL ANGULO ENRIQUE ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-10-02', + '590450.00', 'A'), + ('855', 1, 'CELIA MARTINEZ APARICIO GIAN PIERO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-06-15', + '975620.00', 'A'), + ('857', 3, 'LIPARI RONALDO LUIS', '191821112', 'CRA 25 CALLE 100', + '84@facebook.com', '2011-02-03', 118941, '2010-10-13', '606990.00', + 'A'), + ('858', 1, 'RAVACHI DAVILA ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 133535, '2011-05-04', '714620.00', 'A'), + ('859', 3, 'PINHEIRO OLIVEIRA LUCIANO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-04-06', '752130.00', 'A'), + ('86', 1, 'GOMEZ LIS CARLOS EMILIO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2009-12-22', '742520.00', 'A'), + ('860', 1, 'PUGLIESE MERCADO LUIGGI ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-08-19', + '616780.00', 'A'), + ('862', 1, 'JANNA TELLO DANIEL JALIL', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 133535, '2010-08-07', '287220.00', 'A'), + ('863', 3, 'MATTAR CARLOS HENRIQUE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2009-04-26', '953570.00', 'A'), + ('864', 1, 'MOLINA OLIER OSVALDO ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2011-04-18', + '906200.00', 'A'), + ('865', 1, 'BLANCO MCLIN DAVID ALBERTO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2010-08-18', '670290.00', 'A'), + ('866', 1, 'NARANJO ROMERO ALFREDO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 133535, '2010-08-25', '632860.00', 'A'), + ('867', 1, 'SIMANCAS TRUJILLO RICARDO ANTONIO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-04-07', + '153400.00', 'A'), + ('868', 1, 'ARENAS USME GERMAN', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 126881, '2011-10-01', '868430.00', 'A'), + ('869', 5, 'DIAZ CORDERO RODRIGO FERNANDO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-11-04', + '881950.00', 'A'), + ('87', 1, 'CELIS PEREZ HERNANDO ALONSO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-10-05', '744330.00', 'A'), + ('870', 3, 'BINDER ZBEDA JONATAHAN JANAN', '191821112', + 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131083, '2010-04-11', + '804460.00', 'A'), + ('871', 1, 'HINCAPIE HELLMAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2010-09-15', '376440.00', 'A'), + ('872', 3, 'MONTEIRO LANAMAR ALFONSO DE BUSTAMANTE', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118942, '2009-03-23', + '468820.00', 'A'), + ('873', 3, 'AGUDO CARMINATTI REGINA CELIA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-01-04', + '214770.00', 'A'), + ('874', 1, 'GONZALEZ VILLALOBOS CRISTIAN MANUEL', '191821112', + 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2011-09-26', + '667400.00', 'A'), + ('875', 3, 'GUELL VILLANUEVA ALVARO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 117002, '2008-04-07', '692670.00', 'A'), + ('876', 3, 'GRES ANAIS ROBERTO ANDRES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2010-12-01', '461180.00', 'A'), + ('877', 3, 'GAME MOCOCAIN JUAN ENRIQUE', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-08-07', '227890.00', 'A'), + ('878', 1, 'FERRER UCROS FERNANDO LEON', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 133535, '2011-06-22', '755900.00', 'A'), + ('879', 3, 'HERRERA JAUREGUI CARLOS GUSTAVO', '191821112', + 'CRA 25 CALLE 100', '599@facebook.com', '2011-02-03', 131272, + '2010-07-22', '95840.00', 'A'), + ('880', 3, 'BACALLAO HERNANDEZ ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 126180, '2010-04-21', '211480.00', 'A'), + ('881', 1, 'GIJON URBINA JAIME', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 144879, '2011-04-03', '769910.00', 'A'), + ('882', 3, 'TRUSEN CHRISTOPH WOLFGANG', '191821112', 'CRA 25 CALLE 100', + '338@yahoo.com.mx', '2011-02-03', 127591, '2010-10-24', '215100.00', + 'A'), + ('883', 3, 'ASHOURI ASKANDAR', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 157861, '2009-03-03', '765760.00', 'A'), + ('885', 1, 'ALTAMAR WATTS JAIRO ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-08-20', + '620170.00', 'A'), + ('887', 3, 'QUINTANA BALTIERRA ROBERTO ALEX', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-21', + '891370.00', 'A'), + ('889', 1, 'CARILLO PATIÑO VICTOR HILARIO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 130226, '2011-09-06', + '354570.00', 'A'), + ('89', 1, 'CONTRERAS PULIDO LINA MARIA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-08-06', '237480.00', 'A'), + ('890', 1, 'GELVES CAÑAS GENARO ALBERTO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-02', + '355640.00', 'A'), + ('891', 3, 'CAGNONI DE MELO PAULA CRISTINA', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2010-12-14', + '714490.00', 'A'), + ('892', 3, 'MENA AMESTICA PATRICIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 117002, '2011-03-22', '505510.00', 'A'), + ('893', 1, 'CAICEDO ROMES', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-04-07', '384110.00', 'A'), + ('894', 1, 'ECHEVERRY TRUJILLO ARMANDO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-06-08', '404010.00', 'A'), + ('895', 1, 'CAJIA PEDRAZA ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 127591, '2011-09-02', '867700.00', 'A'), + ('896', 2, 'PALACIOS OLIVA ANDRES FELIPE', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-24', + '126500.00', 'A'), + ('897', 1, 'GUTIERREZ QUINTERO FABIAN ESTEBAN', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2009-10-24', + '29380.00', 'A'), + ('899', 3, 'COBO GUEVARA LUIS FELIPE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-12-09', '748860.00', 'A'), + ('9', 1, 'OSORIO RODRIGUEZ FELIPE', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2010-09-27', '904420.00', 'A'), + ('90', 1, 'LEYTON GONZALEZ FREDY RAFAEL', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-24', + '705130.00', 'A'), + ('901', 1, 'HERNANDEZ JOSE ANGEL', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 130266, '2011-05-23', '964010.00', 'A'), + ('903', 3, 'GONZALEZ MALDONADO MAURICIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2010-11-13', + '576500.00', 'A'), + ('904', 1, 'OCHOA BARRIGA JORGE', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com.mx', '2011-02-03', 130266, '2011-05-05', '401380.00', 'A'), + ('905', 1, 'OSORIO REDONDO JESUS DAVID', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127300, '2011-08-11', '277390.00', 'A'), + ('906', 1, 'BAYONA BARRIENTOS JEAN CARLOS', '191821112', + 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-01-25', + '182820.00', 'A'), + ('907', 1, 'MARTINEZ GOMEZ CARLOS ENRIQUE', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2010-03-11', + '81940.00', 'A'), + ('908', 1, 'PUELLO LOPEZ GUILLERMO LEON', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-08-12', + '861240.00', 'A'), + ('909', 1, 'MOGOLLON LONDOÑO PEDRO LUIS CARLOS', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2011-06-22', + '60380.00', 'A'), + ('91', 1, 'ORTIZ RIOS JAVIER ADOLFO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.es', '2011-02-03', 127591, '2011-05-12', '813200.00', 'A'), + ('911', 1, 'HERRERA HOYOS CARLOS FRANCISCO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2010-09-12', + '409800.00', 'A'), + ('912', 3, 'RIM MYUNG HWAN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-05-15', '894450.00', 'A'), + ('913', 3, 'BIANCO DORIEN', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-29', '242820.00', 'A'), + ('914', 3, 'FROIMZON WIEN DANIEL', '191821112', 'CRA 25 CALLE 100', + '348@yahoo.com', '2011-02-03', 132165, '2010-11-06', '530780.00', 'A'), + ('915', 3, 'ALVEZ AZEVEDO JOAO MIGUEL', '191821112', 'CRA 25 CALLE 100', + '861@hotmail.es', '2011-02-03', 127591, '2009-06-25', '925420.00', 'A'), + ('916', 3, 'CARRASCO DIAZ LUIS ANTONIO', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 127591, '2011-10-02', '34780.00', 'A'), + ('917', 3, 'VIVALLOS MEDINA LEONEL EDMUNDO', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-09-12', + '397640.00', 'A'), + ('919', 3, 'LASSE ANDRE BARKLIEN', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 286724, '2011-03-31', '226390.00', 'A'), + ('92', 1, 'CUERVO CARDENAS ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-09-08', '950630.00', 'A'), + ('920', 3, 'BARCELOS PLOTEGHER LILIA MARA', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-07', + '480380.00', 'A'), + ('921', 1, 'JARAMILLO ARANGO JUAN DIEGO', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127559, '2011-06-28', + '722700.00', 'A'), + ('93', 3, 'RUIZ PRIETO WILLIAM', '191821112', 'CRA 25 CALLE 100', + '@yahoo.com', '2011-02-03', 131272, '2011-01-19', '313540.00', 'A'), + ('932', 7, 'COMFENALCO ANTIOQUIA', '191821112', 'CRA 25 CALLE 100', + '@facebook.com', '2011-02-03', 128662, '2011-05-05', '515430.00', 'A'), + ('94', 1, 'GALLEGO JUAN GUILLERMO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-06-25', '715830.00', 'A'), + ('944', 3, 'KARMELIC PAVLOV VESNA', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 120066, '2010-08-07', '585580.00', 'A'), + ('945', 3, 'RAMIREZ BORDON OSCAR', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 128662, '2010-07-02', '526250.00', 'A'), + ('946', 3, 'SORACCO CABEZA RODRIGO ANDRES', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-04', + '874490.00', 'A'), + ('949', 1, 'GALINDO JORGE ERNESTO', '191821112', 'CRA 25 CALLE 100', + '@terra.com.co', '2011-02-03', 127300, '2008-07-10', '344110.00', 'A'), + ('950', 3, 'DR KNABLE THOMAS ERNST ALBERT', '191821112', + 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 256231, '2009-11-17', + '685430.00', 'A'), + ('953', 3, 'VELASQUEZ JANETH', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-20', '404650.00', 'A'), + ('954', 3, 'SOZA REX JOSE FRANCISCO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 150903, '2011-05-26', '269790.00', 'A'), + ('955', 3, 'FONTANA GAETE JAIME PATRICIO', '191821112', + 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-01-11', + '134970.00', 'A'), + ('957', 3, 'PEREZ MARTINEZ GRECIA INDIRA', '191821112', + 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2010-08-27', + '922610.00', 'A'), + ('96', 1, 'FORERO CUBILLOS JORGEARTURO', '191821112', 'CRA 25 CALLE 100', + '@hotmail.com', '2011-02-03', 127591, '2011-07-25', '45020.00', 'A'), + ('97', 1, 'SILVA ACOSTA MARIO', '191821112', 'CRA 25 CALLE 100', + '@yahoo.es', '2011-02-03', 127591, '2011-09-19', '309580.00', 'A'), + ('978', 3, 'BLUMENTHAL JAIRO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 117630, '2010-04-22', '653490.00', 'A'), + ('984', 3, 'SUN XIAN', '191821112', 'CRA 25 CALLE 100', '@yahoo.com.mx', + '2011-02-03', 127591, '2011-01-17', '203630.00', 'A'), + ('99', 1, 'CANO GUZMAN ALEJANDRO', '191821112', 'CRA 25 CALLE 100', + '@gmail.com', '2011-02-03', 127591, '2011-08-23', '135620.00', 'A'), + ('999', 1, ' DRAGER', '191821112', 'CRA 25 CALLE 100', '@yahoo.com', + '2011-02-03', 127591, '2010-12-22', '882070.00', 'A'), + ('CELL1020', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1083', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1153', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL126', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1326', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1329', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL133', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1413', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1426', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1529', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1651', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1760', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1857', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1879', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1902', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1921', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1962', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL1992', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL2006', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL215', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL2187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL2307', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL2322', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL2497', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL2641', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL2736', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL2805', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL281', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL2905', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL2963', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3029', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3090', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3161', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3302', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3309', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3325', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3372', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3422', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3514', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3562', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3652', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3661', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3789', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3795', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL381', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3840', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3886', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL3944', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL396', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4012', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL411', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4137', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4159', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4291', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4308', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4324', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4330', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4334', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4440', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4547', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4639', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4662', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4698', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL475', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4790', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4838', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4885', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL4939', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5064', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5066', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL51', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5102', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5116', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5192', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5226', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5250', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5282', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL536', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5503', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5506', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL554', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5544', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5595', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5648', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5801', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL5821', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6201', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6277', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6288', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6358', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6369', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6408', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6425', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6439', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6509', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6533', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6556', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6731', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6766', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6775', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6802', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6834', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6890', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6953', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL6957', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7024', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7216', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL728', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7314', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7431', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7432', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7513', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7522', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7617', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7623', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7708', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7777', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL787', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7907', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7951', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL7956', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8004', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8058', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL811', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8136', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8162', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8286', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8300', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8339', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8366', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8389', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8446', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8487', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8546', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8578', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8643', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8774', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8829', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8846', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL8942', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9046', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9110', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL917', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9189', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9241', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9331', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9429', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9434', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9495', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9517', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9558', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9650', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9748', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9830', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9878', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9893', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('CELL9945', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, '20000.00', + 'A'), + ('T-Cx200', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx201', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx202', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx203', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx204', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx205', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx206', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx207', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx208', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx209', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx210', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx211', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx212', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx213', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'), + ('T-Cx214', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, '0.00', + 'A'); + + +DROP TABLE IF EXISTS `prueba`; +CREATE TABLE `prueba` +( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `nombre` varchar(120) COLLATE utf8_unicode_ci NOT NULL, + `estado` char(1) COLLATE utf8_unicode_ci NOT NULL, + PRIMARY KEY (`id`), + KEY `estado` (`estado`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE =utf8_unicode_ci; + + +DROP TABLE IF EXISTS `robots`; +CREATE TABLE `robots` +( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(70) COLLATE utf8_unicode_ci NOT NULL, + `type` varchar(32) COLLATE utf8_unicode_ci NOT NULL default 'mechanical', + `year` int(11) NOT NULL default 1900, + `datetime` datetime NOT NULL, + `deleted` datetime DEFAULT NULL, + `text` text NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE =utf8_unicode_ci; + + +INSERT INTO `robots` +VALUES (1, 'Robotina', 'mechanical', 1972, '1972/01/01 00:00:00', null, 'text'), + (2, 'Astro Boy', 'mechanical', 1952, '1952/01/01 00:00:00', null, + 'text'), + (3, 'Terminator', 'cyborg', 2029, '2029/01/01 00:00:00', null, 'text'); + + +DROP TABLE IF EXISTS `identityless_requests`; +CREATE TABLE `identityless_requests` +( + `method` ENUM('GET', 'POST', 'PUT', 'DELETE', 'OPTIONS', 'HEAD', 'PATCH', 'PURGE', 'TRACE', 'CONNECT'), + `requested_uri` VARCHAR(255), + `request_count` int(10) unsigned NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE =utf8_unicode_ci; + + +DROP TABLE IF EXISTS `robots_parts`; +CREATE TABLE `robots_parts` +( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `robots_id` int(10) unsigned NOT NULL, + `parts_id` int(10) unsigned NOT NULL, + PRIMARY KEY (`id`), + KEY `robots_id` (`robots_id`), + KEY `parts_id` (`parts_id`), + CONSTRAINT `robots_parts_ibfk_1` FOREIGN KEY (`robots_id`) REFERENCES `robots` (`id`), + CONSTRAINT `robots_parts_ibfk_2` FOREIGN KEY (`parts_id`) REFERENCES `parts` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE =utf8_unicode_ci; +INSERT INTO `robots_parts` +VALUES (1, 1, 1), + (2, 1, 2), + (3, 1, 3); + + +DROP TABLE IF EXISTS `songs`; +CREATE TABLE `songs` +( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `albums_id` int(10) unsigned NOT NULL, + `name` varchar(72) COLLATE utf8_unicode_ci NOT NULL, + PRIMARY KEY (`id`), + KEY `albums_id` (`albums_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE =utf8_unicode_ci; +INSERT INTO `songs` +VALUES (1, 1, 'Born to Die'), + (2, 1, 'Off to Races'), + (3, 1, 'Blue Jeans'), + (4, 1, 'Video Games'), + (5, 1, 'Diet Mountain Dew'), + (6, 1, 'National Anthem'), + (7, 1, 'Dark Paradise'); + + +DROP TABLE IF EXISTS `subscriptores`; +CREATE TABLE `subscriptores` +( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `email` varchar(70) COLLATE utf8_unicode_ci NOT NULL, + `created_at` datetime DEFAULT NULL, + `status` char(1) COLLATE utf8_unicode_ci NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE =utf8_unicode_ci; +INSERT INTO `subscriptores` +VALUES (43, 'fuego@hotmail.com', '2012-04-14 23:30:33', 'P'); + + +DROP TABLE IF EXISTS `tipo_documento`; +CREATE TABLE `tipo_documento` +( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `detalle` varchar(32) COLLATE utf8_unicode_ci NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE =utf8_unicode_ci; +INSERT INTO `tipo_documento` +VALUES (1, 'TIPO 0'), + (2, 'TIPO 1'), + (3, 'TIPO 2'), + (4, 'TIPO 3'), + (5, 'TIPO 4'), + (6, 'TIPO 5'), + (7, 'TIPO 6'), + (8, 'TIPO 7'), + (9, 'TIPO 8'), + (10, 'TIPO 9'), + (11, 'TIPO 10'), + (12, 'TIPO 11'), + (13, 'TIPO 12'), + (14, 'TIPO 13'), + (15, 'TIPO 14'), + (16, 'TIPO 15'), + (17, 'TIPO 16'), + (18, 'TIPO 17'), + (19, 'TIPO 18'), + (20, 'TIPO 19'), + (21, 'TIPO 20'), + (22, 'TIPO 21'), + (23, 'TIPO 22'), + (24, 'TIPO 23'), + (25, 'TIPO 24'), + (26, 'TIPO 25'), + (27, 'TIPO 26'), + (28, 'TIPO 27'), + (29, 'TIPO 28'), + (30, 'TIPO 29'), + (31, 'TIPO 30'), + (32, 'TIPO 31'), + (33, 'TIPO 32'), + (34, 'TIPO 33'), + (35, 'TIPO 34'), + (36, 'TIPO 35'), + (37, 'TIPO 36'), + (38, 'TIPO 37'), + (39, 'TIPO 38'), + (40, 'TIPO 39'), + (41, 'TIPO 40'), + (42, 'TIPO 41'), + (43, 'TIPO 42'), + (44, 'TIPO 43'), + (45, 'TIPO 44'), + (46, 'TIPO 45'), + (47, 'TIPO 46'), + (48, 'TIPO 47'), + (49, 'TIPO 48'), + (50, 'TIPO 49'), + (51, 'TIPO 50'), + (52, 'TIPO 51'), + (53, 'TIPO 52'), + (54, 'TIPO 53'), + (55, 'TIPO 54'), + (56, 'TIPO 55'), + (57, 'TIPO 56'), + (58, 'TIPO 57'), + (59, 'TIPO 58'), + (60, 'TIPO 59'), + (61, 'TIPO 60'), + (62, 'TIPO 61'), + (63, 'TIPO 62'), + (64, 'TIPO 63'), + (65, 'TIPO 64'), + (66, 'TIPO 65'), + (67, 'TIPO 66'), + (68, 'TIPO 67'), + (69, 'TIPO 68'), + (70, 'TIPO 69'), + (71, 'TIPO 70'), + (72, 'TIPO 71'), + (73, 'TIPO 72'), + (74, 'TIPO 73'), + (75, 'TIPO 74'), + (76, 'TIPO 75'), + (77, 'TIPO 76'), + (78, 'TIPO 77'), + (79, 'TIPO 78'), + (80, 'TIPO 79'), + (81, 'TIPO 80'), + (82, 'TIPO 81'), + (83, 'TIPO 82'), + (84, 'TIPO 83'), + (85, 'TIPO 84'), + (86, 'TIPO 85'), + (87, 'TIPO 86'), + (88, 'TIPO 87'), + (89, 'TIPO 88'), + (90, 'TIPO 89'), + (91, 'TIPO 90'), + (92, 'TIPO 91'), + (93, 'TIPO 92'), + (94, 'TIPO 93'), + (95, 'TIPO 94'), + (96, 'TIPO 95'), + (97, 'TIPO 96'), + (98, 'TIPO 97'), + (99, 'TIPO 98'), + (100, 'TIPO 99'), + (101, 'TIPO 100'), + (102, 'TIPO 101'), + (103, 'TIPO 102'), + (104, 'TIPO 103'), + (105, 'TIPO 104'), + (106, 'TIPO 105'), + (107, 'TIPO 106'), + (108, 'TIPO 107'), + (109, 'TIPO 108'), + (110, 'TIPO 109'), + (111, 'TIPO 110'), + (112, 'TIPO 111'), + (113, 'TIPO 112'), + (114, 'TIPO 113'), + (115, 'TIPO 114'), + (116, 'TIPO 115'), + (117, 'TIPO 116'), + (118, 'TIPO 117'), + (119, 'TIPO 118'), + (120, 'TIPO 119'), + (121, 'TIPO 120'), + (122, 'TIPO 121'), + (123, 'TIPO 122'), + (124, 'TIPO 123'), + (125, 'TIPO 124'), + (126, 'TIPO 125'), + (127, 'TIPO 126'), + (128, 'TIPO 127'), + (129, 'TIPO 128'), + (130, 'TIPO 129'), + (131, 'TIPO 130'), + (132, 'TIPO 131'), + (133, 'TIPO 132'), + (134, 'TIPO 133'), + (135, 'TIPO 134'), + (136, 'TIPO 135'), + (137, 'TIPO 136'), + (138, 'TIPO 137'), + (139, 'TIPO 138'), + (140, 'TIPO 139'), + (141, 'TIPO 140'), + (142, 'TIPO 141'), + (143, 'TIPO 142'), + (144, 'TIPO 143'), + (145, 'TIPO 144'), + (146, 'TIPO 145'), + (147, 'TIPO 146'), + (148, 'TIPO 147'), + (149, 'TIPO 148'), + (150, 'TIPO 149'), + (151, 'TIPO 150'), + (152, 'TIPO 151'), + (153, 'TIPO 152'), + (154, 'TIPO 153'), + (155, 'TIPO 154'), + (156, 'TIPO 155'), + (157, 'TIPO 156'), + (158, 'TIPO 157'), + (159, 'TIPO 158'), + (160, 'TIPO 159'), + (161, 'TIPO 160'), + (162, 'TIPO 161'), + (163, 'TIPO 162'), + (164, 'TIPO 163'), + (165, 'TIPO 164'), + (166, 'TIPO 165'), + (167, 'TIPO 166'), + (168, 'TIPO 167'), + (169, 'TIPO 168'), + (170, 'TIPO 169'), + (171, 'TIPO 170'), + (172, 'TIPO 171'), + (173, 'TIPO 172'), + (174, 'TIPO 173'), + (175, 'TIPO 174'), + (176, 'TIPO 175'), + (177, 'TIPO 176'), + (178, 'TIPO 177'), + (179, 'TIPO 178'), + (180, 'TIPO 179'), + (181, 'TIPO 180'), + (182, 'TIPO 181'), + (183, 'TIPO 182'), + (184, 'TIPO 183'), + (185, 'TIPO 184'), + (186, 'TIPO 185'), + (187, 'TIPO 186'), + (188, 'TIPO 187'), + (189, 'TIPO 188'), + (190, 'TIPO 189'), + (191, 'TIPO 190'), + (192, 'TIPO 191'), + (193, 'TIPO 192'), + (194, 'TIPO 193'), + (195, 'TIPO 194'), + (196, 'TIPO 195'), + (197, 'TIPO 196'), + (198, 'TIPO 197'), + (199, 'TIPO 198'), + (200, 'TIPO 199'), + (201, 'TIPO 200'), + (202, 'TIPO 201'), + (203, 'TIPO 202'), + (204, 'TIPO 203'), + (205, 'TIPO 204'), + (206, 'TIPO 205'), + (207, 'TIPO 206'), + (208, 'TIPO 207'), + (209, 'TIPO 208'), + (210, 'TIPO 209'), + (211, 'TIPO 210'), + (212, 'TIPO 211'), + (213, 'TIPO 212'), + (214, 'TIPO 213'), + (215, 'TIPO 214'), + (216, 'TIPO 215'), + (217, 'TIPO 216'), + (218, 'TIPO 217'), + (219, 'TIPO 218'), + (220, 'TIPO 219'), + (221, 'TIPO 220'), + (222, 'TIPO 221'), + (223, 'TIPO 222'), + (224, 'TIPO 223'), + (225, 'TIPO 224'), + (226, 'TIPO 225'), + (227, 'TIPO 226'), + (228, 'TIPO 227'), + (229, 'TIPO 228'), + (230, 'TIPO 229'), + (231, 'TIPO 230'), + (232, 'TIPO 231'), + (233, 'TIPO 232'), + (234, 'TIPO 233'), + (235, 'TIPO 234'), + (236, 'TIPO 235'), + (237, 'TIPO 236'), + (238, 'TIPO 237'), + (239, 'TIPO 238'), + (240, 'TIPO 239'), + (241, 'TIPO 240'), + (242, 'TIPO 241'), + (243, 'TIPO 242'), + (244, 'TIPO 243'), + (245, 'TIPO 244'), + (246, 'TIPO 245'), + (247, 'TIPO 246'), + (248, 'TIPO 247'), + (249, 'TIPO 248'), + (250, 'TIPO 249'), + (251, 'TIPO 250'), + (252, 'TIPO 251'), + (253, 'TIPO 252'), + (254, 'TIPO 253'), + (255, 'TIPO 254'), + (256, 'TIPO 255'), + (257, 'TIPO 256'), + (258, 'TIPO 257'), + (259, 'TIPO 258'), + (260, 'TIPO 259'), + (261, 'TIPO 260'), + (262, 'TIPO 261'), + (263, 'TIPO 262'), + (264, 'TIPO 263'), + (265, 'TIPO 264'), + (266, 'TIPO 265'), + (267, 'TIPO 266'), + (268, 'TIPO 267'), + (269, 'TIPO 268'), + (270, 'TIPO 269'), + (271, 'TIPO 270'), + (272, 'TIPO 271'), + (273, 'TIPO 272'), + (274, 'TIPO 273'), + (275, 'TIPO 274'), + (276, 'TIPO 275'), + (277, 'TIPO 276'), + (278, 'TIPO 277'), + (279, 'TIPO 278'), + (280, 'TIPO 279'), + (281, 'TIPO 280'), + (282, 'TIPO 281'), + (283, 'TIPO 282'), + (284, 'TIPO 283'), + (285, 'TIPO 284'), + (286, 'TIPO 285'), + (287, 'TIPO 286'), + (288, 'TIPO 287'), + (289, 'TIPO 288'), + (290, 'TIPO 289'), + (291, 'TIPO 290'), + (292, 'TIPO 291'), + (293, 'TIPO 292'), + (294, 'TIPO 293'), + (295, 'TIPO 294'), + (296, 'TIPO 295'), + (297, 'TIPO 296'), + (298, 'TIPO 297'), + (299, 'TIPO 298'), + (300, 'TIPO 299'), + (301, 'TIPO 300'), + (302, 'TIPO 301'), + (303, 'TIPO 302'), + (304, 'TIPO 303'), + (305, 'TIPO 304'), + (306, 'TIPO 305'), + (307, 'TIPO 306'), + (308, 'TIPO 307'), + (309, 'TIPO 308'), + (310, 'TIPO 309'), + (311, 'TIPO 310'), + (312, 'TIPO 311'), + (313, 'TIPO 312'), + (314, 'TIPO 313'), + (315, 'TIPO 314'), + (316, 'TIPO 315'), + (317, 'TIPO 316'), + (318, 'TIPO 317'), + (319, 'TIPO 318'), + (320, 'TIPO 319'), + (321, 'TIPO 320'), + (322, 'TIPO 321'), + (323, 'TIPO 322'), + (324, 'TIPO 323'), + (325, 'TIPO 324'), + (326, 'TIPO 325'), + (327, 'TIPO 326'), + (328, 'TIPO 327'), + (329, 'TIPO 328'), + (330, 'TIPO 329'), + (331, 'TIPO 330'), + (332, 'TIPO 331'), + (333, 'TIPO 332'), + (334, 'TIPO 333'), + (335, 'TIPO 334'), + (336, 'TIPO 335'), + (337, 'TIPO 336'), + (338, 'TIPO 337'), + (339, 'TIPO 338'), + (340, 'TIPO 339'), + (341, 'TIPO 340'), + (342, 'TIPO 341'), + (343, 'TIPO 342'), + (344, 'TIPO 343'), + (345, 'TIPO 344'), + (346, 'TIPO 345'), + (347, 'TIPO 346'), + (348, 'TIPO 347'), + (349, 'TIPO 348'), + (350, 'TIPO 349'), + (351, 'TIPO 350'), + (352, 'TIPO 351'), + (353, 'TIPO 352'), + (354, 'TIPO 353'), + (355, 'TIPO 354'), + (356, 'TIPO 355'), + (357, 'TIPO 356'), + (358, 'TIPO 357'), + (359, 'TIPO 358'), + (360, 'TIPO 359'), + (361, 'TIPO 360'), + (362, 'TIPO 361'), + (363, 'TIPO 362'), + (364, 'TIPO 363'), + (365, 'TIPO 364'), + (366, 'TIPO 365'), + (367, 'TIPO 366'), + (368, 'TIPO 367'), + (369, 'TIPO 368'), + (370, 'TIPO 369'), + (371, 'TIPO 370'), + (372, 'TIPO 371'), + (373, 'TIPO 372'), + (374, 'TIPO 373'), + (375, 'TIPO 374'), + (376, 'TIPO 375'), + (377, 'TIPO 376'), + (378, 'TIPO 377'), + (379, 'TIPO 378'), + (380, 'TIPO 379'), + (381, 'TIPO 380'), + (382, 'TIPO 381'), + (383, 'TIPO 382'), + (384, 'TIPO 383'), + (385, 'TIPO 384'), + (386, 'TIPO 385'), + (387, 'TIPO 386'), + (388, 'TIPO 387'), + (389, 'TIPO 388'), + (390, 'TIPO 389'), + (391, 'TIPO 390'), + (392, 'TIPO 391'), + (393, 'TIPO 392'), + (394, 'TIPO 393'), + (395, 'TIPO 394'), + (396, 'TIPO 395'), + (397, 'TIPO 396'), + (398, 'TIPO 397'), + (399, 'TIPO 398'), + (400, 'TIPO 399'), + (401, 'TIPO 400'), + (402, 'TIPO 401'), + (403, 'TIPO 402'), + (404, 'TIPO 403'), + (405, 'TIPO 404'), + (406, 'TIPO 405'), + (407, 'TIPO 406'), + (408, 'TIPO 407'), + (409, 'TIPO 408'), + (410, 'TIPO 409'), + (411, 'TIPO 410'), + (412, 'TIPO 411'), + (413, 'TIPO 412'), + (414, 'TIPO 413'), + (415, 'TIPO 414'), + (416, 'TIPO 415'), + (417, 'TIPO 416'), + (418, 'TIPO 417'), + (419, 'TIPO 418'), + (420, 'TIPO 419'), + (421, 'TIPO 420'), + (422, 'TIPO 421'), + (423, 'TIPO 422'), + (424, 'TIPO 423'), + (425, 'TIPO 424'), + (426, 'TIPO 425'), + (427, 'TIPO 426'), + (428, 'TIPO 427'), + (429, 'TIPO 428'), + (430, 'TIPO 429'), + (431, 'TIPO 430'), + (432, 'TIPO 431'), + (433, 'TIPO 432'), + (434, 'TIPO 433'), + (435, 'TIPO 434'), + (436, 'TIPO 435'), + (437, 'TIPO 436'), + (438, 'TIPO 437'), + (439, 'TIPO 438'), + (440, 'TIPO 439'), + (441, 'TIPO 440'), + (442, 'TIPO 441'), + (443, 'TIPO 442'), + (444, 'TIPO 443'), + (445, 'TIPO 444'), + (446, 'TIPO 445'), + (447, 'TIPO 446'), + (448, 'TIPO 447'), + (449, 'TIPO 448'), + (450, 'TIPO 449'), + (451, 'TIPO 450'), + (452, 'TIPO 451'), + (453, 'TIPO 452'), + (454, 'TIPO 453'), + (455, 'TIPO 454'), + (456, 'TIPO 455'), + (457, 'TIPO 456'), + (458, 'TIPO 457'), + (459, 'TIPO 458'), + (460, 'TIPO 459'), + (461, 'TIPO 460'), + (462, 'TIPO 461'), + (463, 'TIPO 462'), + (464, 'TIPO 463'), + (465, 'TIPO 464'), + (466, 'TIPO 465'), + (467, 'TIPO 466'), + (468, 'TIPO 467'), + (469, 'TIPO 468'), + (470, 'TIPO 469'), + (471, 'TIPO 470'), + (472, 'TIPO 471'), + (473, 'TIPO 472'), + (474, 'TIPO 473'), + (475, 'TIPO 474'), + (476, 'TIPO 475'), + (477, 'TIPO 476'), + (478, 'TIPO 477'), + (479, 'TIPO 478'), + (480, 'TIPO 479'), + (481, 'TIPO 480'), + (482, 'TIPO 481'), + (483, 'TIPO 482'), + (484, 'TIPO 483'), + (485, 'TIPO 484'), + (486, 'TIPO 485'), + (487, 'TIPO 486'), + (488, 'TIPO 487'), + (489, 'TIPO 488'), + (490, 'TIPO 489'), + (491, 'TIPO 490'), + (492, 'TIPO 491'), + (493, 'TIPO 492'), + (494, 'TIPO 493'), + (495, 'TIPO 494'), + (496, 'TIPO 495'), + (497, 'TIPO 496'), + (498, 'TIPO 497'), + (499, 'TIPO 498'), + (500, 'TIPO 499'), + (501, 'TIPO 500'), + (502, 'TIPO 501'), + (503, 'TIPO 502'), + (504, 'TIPO 503'), + (505, 'TIPO 504'), + (506, 'TIPO 505'), + (507, 'TIPO 506'), + (508, 'TIPO 507'), + (509, 'TIPO 508'), + (510, 'TIPO 509'), + (511, 'TIPO 510'), + (512, 'TIPO 511'), + (513, 'TIPO 512'), + (514, 'TIPO 513'), + (515, 'TIPO 514'), + (516, 'TIPO 515'), + (517, 'TIPO 516'), + (518, 'TIPO 517'), + (519, 'TIPO 518'), + (520, 'TIPO 519'), + (521, 'TIPO 520'), + (522, 'TIPO 521'), + (523, 'TIPO 522'), + (524, 'TIPO 523'), + (525, 'TIPO 524'), + (526, 'TIPO 525'), + (527, 'TIPO 526'), + (528, 'TIPO 527'), + (529, 'TIPO 528'), + (530, 'TIPO 529'), + (531, 'TIPO 530'), + (532, 'TIPO 531'), + (533, 'TIPO 532'), + (534, 'TIPO 533'), + (535, 'TIPO 534'), + (536, 'TIPO 535'), + (537, 'TIPO 536'), + (538, 'TIPO 537'), + (539, 'TIPO 538'), + (540, 'TIPO 539'), + (541, 'TIPO 540'), + (542, 'TIPO 541'), + (543, 'TIPO 542'), + (544, 'TIPO 543'), + (545, 'TIPO 544'), + (546, 'TIPO 545'), + (547, 'TIPO 546'), + (548, 'TIPO 547'), + (549, 'TIPO 548'), + (550, 'TIPO 549'), + (551, 'TIPO 550'), + (552, 'TIPO 551'), + (553, 'TIPO 552'), + (554, 'TIPO 553'), + (555, 'TIPO 554'), + (556, 'TIPO 555'), + (557, 'TIPO 556'), + (558, 'TIPO 557'), + (559, 'TIPO 558'), + (560, 'TIPO 559'), + (561, 'TIPO 560'), + (562, 'TIPO 561'), + (563, 'TIPO 562'), + (564, 'TIPO 563'), + (565, 'TIPO 564'), + (566, 'TIPO 565'), + (567, 'TIPO 566'), + (568, 'TIPO 567'), + (569, 'TIPO 568'), + (570, 'TIPO 569'), + (571, 'TIPO 570'), + (572, 'TIPO 571'), + (573, 'TIPO 572'), + (574, 'TIPO 573'), + (575, 'TIPO 574'), + (576, 'TIPO 575'), + (577, 'TIPO 576'), + (578, 'TIPO 577'), + (579, 'TIPO 578'), + (580, 'TIPO 579'), + (581, 'TIPO 580'), + (582, 'TIPO 581'), + (583, 'TIPO 582'), + (584, 'TIPO 583'), + (585, 'TIPO 584'), + (586, 'TIPO 585'), + (587, 'TIPO 586'), + (588, 'TIPO 587'), + (589, 'TIPO 588'), + (590, 'TIPO 589'), + (591, 'TIPO 590'), + (592, 'TIPO 591'), + (593, 'TIPO 592'), + (594, 'TIPO 593'), + (595, 'TIPO 594'), + (596, 'TIPO 595'), + (597, 'TIPO 596'), + (598, 'TIPO 597'), + (599, 'TIPO 598'), + (600, 'TIPO 599'), + (601, 'TIPO 600'), + (602, 'TIPO 601'), + (603, 'TIPO 602'), + (604, 'TIPO 603'), + (605, 'TIPO 604'), + (606, 'TIPO 605'), + (607, 'TIPO 606'), + (608, 'TIPO 607'), + (609, 'TIPO 608'), + (610, 'TIPO 609'), + (611, 'TIPO 610'), + (612, 'TIPO 611'), + (613, 'TIPO 612'), + (614, 'TIPO 613'), + (615, 'TIPO 614'), + (616, 'TIPO 615'), + (617, 'TIPO 616'), + (618, 'TIPO 617'), + (619, 'TIPO 618'), + (620, 'TIPO 619'), + (621, 'TIPO 620'), + (622, 'TIPO 621'), + (623, 'TIPO 622'), + (624, 'TIPO 623'), + (625, 'TIPO 624'), + (626, 'TIPO 625'), + (627, 'TIPO 626'), + (628, 'TIPO 627'), + (629, 'TIPO 628'), + (630, 'TIPO 629'), + (631, 'TIPO 630'), + (632, 'TIPO 631'), + (633, 'TIPO 632'), + (634, 'TIPO 633'), + (635, 'TIPO 634'), + (636, 'TIPO 635'), + (637, 'TIPO 636'), + (638, 'TIPO 637'), + (639, 'TIPO 638'), + (640, 'TIPO 639'), + (641, 'TIPO 640'), + (642, 'TIPO 641'), + (643, 'TIPO 642'), + (644, 'TIPO 643'), + (645, 'TIPO 644'), + (646, 'TIPO 645'), + (647, 'TIPO 646'), + (648, 'TIPO 647'), + (649, 'TIPO 648'), + (650, 'TIPO 649'), + (651, 'TIPO 650'), + (652, 'TIPO 651'), + (653, 'TIPO 652'), + (654, 'TIPO 653'), + (655, 'TIPO 654'), + (656, 'TIPO 655'), + (657, 'TIPO 656'), + (658, 'TIPO 657'), + (659, 'TIPO 658'), + (660, 'TIPO 659'), + (661, 'TIPO 660'), + (662, 'TIPO 661'), + (663, 'TIPO 662'), + (664, 'TIPO 663'), + (665, 'TIPO 664'), + (666, 'TIPO 665'), + (667, 'TIPO 666'), + (668, 'TIPO 667'), + (669, 'TIPO 668'), + (670, 'TIPO 669'), + (671, 'TIPO 670'), + (672, 'TIPO 671'), + (673, 'TIPO 672'), + (674, 'TIPO 673'), + (675, 'TIPO 674'), + (676, 'TIPO 675'), + (677, 'TIPO 676'), + (678, 'TIPO 677'), + (679, 'TIPO 678'), + (680, 'TIPO 679'), + (681, 'TIPO 680'), + (682, 'TIPO 681'), + (683, 'TIPO 682'), + (684, 'TIPO 683'), + (685, 'TIPO 684'), + (686, 'TIPO 685'), + (687, 'TIPO 686'), + (688, 'TIPO 687'), + (689, 'TIPO 688'), + (690, 'TIPO 689'), + (691, 'TIPO 690'), + (692, 'TIPO 691'), + (693, 'TIPO 692'), + (694, 'TIPO 693'), + (695, 'TIPO 694'), + (696, 'TIPO 695'), + (697, 'TIPO 696'), + (698, 'TIPO 697'), + (699, 'TIPO 698'), + (700, 'TIPO 699'), + (701, 'TIPO 700'), + (702, 'TIPO 701'), + (703, 'TIPO 702'), + (704, 'TIPO 703'), + (705, 'TIPO 704'), + (706, 'TIPO 705'), + (707, 'TIPO 706'), + (708, 'TIPO 707'), + (709, 'TIPO 708'), + (710, 'TIPO 709'), + (711, 'TIPO 710'), + (712, 'TIPO 711'), + (713, 'TIPO 712'), + (714, 'TIPO 713'), + (715, 'TIPO 714'), + (716, 'TIPO 715'), + (717, 'TIPO 716'), + (718, 'TIPO 717'), + (719, 'TIPO 718'), + (720, 'TIPO 719'), + (721, 'TIPO 720'), + (722, 'TIPO 721'), + (723, 'TIPO 722'), + (724, 'TIPO 723'), + (725, 'TIPO 724'), + (726, 'TIPO 725'), + (727, 'TIPO 726'), + (728, 'TIPO 727'), + (729, 'TIPO 728'), + (730, 'TIPO 729'), + (731, 'TIPO 730'), + (732, 'TIPO 731'), + (733, 'TIPO 732'), + (734, 'TIPO 733'), + (735, 'TIPO 734'), + (736, 'TIPO 735'), + (737, 'TIPO 736'), + (738, 'TIPO 737'), + (739, 'TIPO 738'), + (740, 'TIPO 739'), + (741, 'TIPO 740'), + (742, 'TIPO 741'), + (743, 'TIPO 742'), + (744, 'TIPO 743'), + (745, 'TIPO 744'), + (746, 'TIPO 745'), + (747, 'TIPO 746'), + (748, 'TIPO 747'), + (749, 'TIPO 748'), + (750, 'TIPO 749'), + (751, 'TIPO 750'), + (752, 'TIPO 751'), + (753, 'TIPO 752'), + (754, 'TIPO 753'), + (755, 'TIPO 754'), + (756, 'TIPO 755'), + (757, 'TIPO 756'), + (758, 'TIPO 757'), + (759, 'TIPO 758'), + (760, 'TIPO 759'), + (761, 'TIPO 760'), + (762, 'TIPO 761'), + (763, 'TIPO 762'), + (764, 'TIPO 763'), + (765, 'TIPO 764'), + (766, 'TIPO 765'), + (767, 'TIPO 766'), + (768, 'TIPO 767'), + (769, 'TIPO 768'), + (770, 'TIPO 769'), + (771, 'TIPO 770'), + (772, 'TIPO 771'), + (773, 'TIPO 772'), + (774, 'TIPO 773'), + (775, 'TIPO 774'), + (776, 'TIPO 775'), + (777, 'TIPO 776'), + (778, 'TIPO 777'), + (779, 'TIPO 778'), + (780, 'TIPO 779'), + (781, 'TIPO 780'), + (782, 'TIPO 781'), + (783, 'TIPO 782'), + (784, 'TIPO 783'), + (785, 'TIPO 784'), + (786, 'TIPO 785'), + (787, 'TIPO 786'), + (788, 'TIPO 787'), + (789, 'TIPO 788'), + (790, 'TIPO 789'), + (791, 'TIPO 790'), + (792, 'TIPO 791'), + (793, 'TIPO 792'), + (794, 'TIPO 793'), + (795, 'TIPO 794'), + (796, 'TIPO 795'), + (797, 'TIPO 796'), + (798, 'TIPO 797'), + (799, 'TIPO 798'), + (800, 'TIPO 799'), + (801, 'TIPO 800'), + (802, 'TIPO 801'), + (803, 'TIPO 802'), + (804, 'TIPO 803'), + (805, 'TIPO 804'), + (806, 'TIPO 805'), + (807, 'TIPO 806'), + (808, 'TIPO 807'), + (809, 'TIPO 808'), + (810, 'TIPO 809'), + (811, 'TIPO 810'), + (812, 'TIPO 811'), + (813, 'TIPO 812'), + (814, 'TIPO 813'), + (815, 'TIPO 814'), + (816, 'TIPO 815'), + (817, 'TIPO 816'), + (818, 'TIPO 817'), + (819, 'TIPO 818'), + (820, 'TIPO 819'), + (821, 'TIPO 820'), + (822, 'TIPO 821'), + (823, 'TIPO 822'), + (824, 'TIPO 823'), + (825, 'TIPO 824'), + (826, 'TIPO 825'), + (827, 'TIPO 826'), + (828, 'TIPO 827'), + (829, 'TIPO 828'), + (830, 'TIPO 829'), + (831, 'TIPO 830'), + (832, 'TIPO 831'), + (833, 'TIPO 832'), + (834, 'TIPO 833'), + (835, 'TIPO 834'), + (836, 'TIPO 835'), + (837, 'TIPO 836'), + (838, 'TIPO 837'), + (839, 'TIPO 838'), + (840, 'TIPO 839'), + (841, 'TIPO 840'), + (842, 'TIPO 841'), + (843, 'TIPO 842'), + (844, 'TIPO 843'), + (845, 'TIPO 844'), + (846, 'TIPO 845'), + (847, 'TIPO 846'), + (848, 'TIPO 847'), + (849, 'TIPO 848'), + (850, 'TIPO 849'), + (851, 'TIPO 850'), + (852, 'TIPO 851'), + (853, 'TIPO 852'), + (854, 'TIPO 853'), + (855, 'TIPO 854'), + (856, 'TIPO 855'), + (857, 'TIPO 856'), + (858, 'TIPO 857'), + (859, 'TIPO 858'), + (860, 'TIPO 859'), + (861, 'TIPO 860'), + (862, 'TIPO 861'), + (863, 'TIPO 862'), + (864, 'TIPO 863'), + (865, 'TIPO 864'), + (866, 'TIPO 865'), + (867, 'TIPO 866'), + (868, 'TIPO 867'), + (869, 'TIPO 868'), + (870, 'TIPO 869'), + (871, 'TIPO 870'), + (872, 'TIPO 871'), + (873, 'TIPO 872'), + (874, 'TIPO 873'), + (875, 'TIPO 874'), + (876, 'TIPO 875'), + (877, 'TIPO 876'), + (878, 'TIPO 877'), + (879, 'TIPO 878'), + (880, 'TIPO 879'), + (881, 'TIPO 880'), + (882, 'TIPO 881'), + (883, 'TIPO 882'), + (884, 'TIPO 883'), + (885, 'TIPO 884'), + (886, 'TIPO 885'), + (887, 'TIPO 886'), + (888, 'TIPO 887'), + (889, 'TIPO 888'), + (890, 'TIPO 889'), + (891, 'TIPO 890'), + (892, 'TIPO 891'), + (893, 'TIPO 892'), + (894, 'TIPO 893'), + (895, 'TIPO 894'), + (896, 'TIPO 895'), + (897, 'TIPO 896'), + (898, 'TIPO 897'), + (899, 'TIPO 898'), + (900, 'TIPO 899'), + (901, 'TIPO 900'), + (902, 'TIPO 901'), + (903, 'TIPO 902'), + (904, 'TIPO 903'), + (905, 'TIPO 904'), + (906, 'TIPO 905'), + (907, 'TIPO 906'), + (908, 'TIPO 907'), + (909, 'TIPO 908'), + (910, 'TIPO 909'), + (911, 'TIPO 910'), + (912, 'TIPO 911'), + (913, 'TIPO 912'), + (914, 'TIPO 913'), + (915, 'TIPO 914'), + (916, 'TIPO 915'), + (917, 'TIPO 916'), + (918, 'TIPO 917'), + (919, 'TIPO 918'), + (920, 'TIPO 919'), + (921, 'TIPO 920'), + (922, 'TIPO 921'), + (923, 'TIPO 922'), + (924, 'TIPO 923'), + (925, 'TIPO 924'), + (926, 'TIPO 925'), + (927, 'TIPO 926'), + (928, 'TIPO 927'), + (929, 'TIPO 928'), + (930, 'TIPO 929'), + (931, 'TIPO 930'), + (932, 'TIPO 931'), + (933, 'TIPO 932'), + (934, 'TIPO 933'), + (935, 'TIPO 934'), + (936, 'TIPO 935'), + (937, 'TIPO 936'), + (938, 'TIPO 937'), + (939, 'TIPO 938'), + (940, 'TIPO 939'), + (941, 'TIPO 940'), + (942, 'TIPO 941'), + (943, 'TIPO 942'), + (944, 'TIPO 943'), + (945, 'TIPO 944'), + (946, 'TIPO 945'), + (947, 'TIPO 946'), + (948, 'TIPO 947'), + (949, 'TIPO 948'), + (950, 'TIPO 949'), + (951, 'TIPO 950'), + (952, 'TIPO 951'), + (953, 'TIPO 952'), + (954, 'TIPO 953'), + (955, 'TIPO 954'), + (956, 'TIPO 955'), + (957, 'TIPO 956'), + (958, 'TIPO 957'), + (959, 'TIPO 958'), + (960, 'TIPO 959'), + (961, 'TIPO 960'), + (962, 'TIPO 961'), + (963, 'TIPO 962'), + (964, 'TIPO 963'), + (965, 'TIPO 964'), + (966, 'TIPO 965'), + (967, 'TIPO 966'), + (968, 'TIPO 967'), + (969, 'TIPO 968'), + (970, 'TIPO 969'), + (971, 'TIPO 970'), + (972, 'TIPO 971'), + (973, 'TIPO 972'), + (974, 'TIPO 973'), + (975, 'TIPO 974'), + (976, 'TIPO 975'), + (977, 'TIPO 976'), + (978, 'TIPO 977'), + (979, 'TIPO 978'), + (980, 'TIPO 979'), + (981, 'TIPO 980'), + (982, 'TIPO 981'), + (983, 'TIPO 982'), + (984, 'TIPO 983'), + (985, 'TIPO 984'), + (986, 'TIPO 985'), + (987, 'TIPO 986'), + (988, 'TIPO 987'), + (989, 'TIPO 988'), + (990, 'TIPO 989'), + (991, 'TIPO 990'), + (992, 'TIPO 991'), + (993, 'TIPO 992'), + (994, 'TIPO 993'), + (995, 'TIPO 994'), + (996, 'TIPO 995'), + (997, 'TIPO 996'), + (998, 'TIPO 997'), + (999, 'TIPO 998'), + (1000, 'TIPO 999'), + (1001, 'TIPO 1000'), + (1002, 'TIPO 1001'), + (1003, 'TIPO 1002'), + (1004, 'TIPO 1003'), + (1005, 'TIPO 1004'), + (1006, 'TIPO 1005'), + (1007, 'TIPO 1006'), + (1008, 'TIPO 1007'), + (1009, 'TIPO 1008'), + (1010, 'TIPO 1009'), + (1011, 'TIPO 1010'), + (1012, 'TIPO 1011'), + (1013, 'TIPO 1012'), + (1014, 'TIPO 1013'), + (1015, 'TIPO 1014'), + (1016, 'TIPO 1015'), + (1017, 'TIPO 1016'), + (1018, 'TIPO 1017'), + (1019, 'TIPO 1018'), + (1020, 'TIPO 1019'), + (1021, 'TIPO 1020'), + (1022, 'TIPO 1021'), + (1023, 'TIPO 1022'), + (1024, 'TIPO 1023'), + (1025, 'TIPO 1024'), + (1026, 'TIPO 1025'), + (1027, 'TIPO 1026'), + (1028, 'TIPO 1027'), + (1029, 'TIPO 1028'), + (1030, 'TIPO 1029'), + (1031, 'TIPO 1030'), + (1032, 'TIPO 1031'), + (1033, 'TIPO 1032'), + (1034, 'TIPO 1033'), + (1035, 'TIPO 1034'), + (1036, 'TIPO 1035'), + (1037, 'TIPO 1036'), + (1038, 'TIPO 1037'), + (1039, 'TIPO 1038'), + (1040, 'TIPO 1039'), + (1041, 'TIPO 1040'), + (1042, 'TIPO 1041'), + (1043, 'TIPO 1042'), + (1044, 'TIPO 1043'), + (1045, 'TIPO 1044'), + (1046, 'TIPO 1045'), + (1047, 'TIPO 1046'), + (1048, 'TIPO 1047'), + (1049, 'TIPO 1048'), + (1050, 'TIPO 1049'), + (1051, 'TIPO 1050'), + (1052, 'TIPO 1051'), + (1053, 'TIPO 1052'), + (1054, 'TIPO 1053'), + (1055, 'TIPO 1054'), + (1056, 'TIPO 1055'), + (1057, 'TIPO 1056'), + (1058, 'TIPO 1057'), + (1059, 'TIPO 1058'), + (1060, 'TIPO 1059'), + (1061, 'TIPO 1060'), + (1062, 'TIPO 1061'), + (1063, 'TIPO 1062'), + (1064, 'TIPO 1063'), + (1065, 'TIPO 1064'), + (1066, 'TIPO 1065'), + (1067, 'TIPO 1066'), + (1068, 'TIPO 1067'), + (1069, 'TIPO 1068'), + (1070, 'TIPO 1069'), + (1071, 'TIPO 1070'), + (1072, 'TIPO 1071'), + (1073, 'TIPO 1072'), + (1074, 'TIPO 1073'), + (1075, 'TIPO 1074'), + (1076, 'TIPO 1075'), + (1077, 'TIPO 1076'), + (1078, 'TIPO 1077'), + (1079, 'TIPO 1078'), + (1080, 'TIPO 1079'), + (1081, 'TIPO 1080'), + (1082, 'TIPO 1081'), + (1083, 'TIPO 1082'), + (1084, 'TIPO 1083'), + (1085, 'TIPO 1084'), + (1086, 'TIPO 1085'), + (1087, 'TIPO 1086'), + (1088, 'TIPO 1087'), + (1089, 'TIPO 1088'), + (1090, 'TIPO 1089'), + (1091, 'TIPO 1090'), + (1092, 'TIPO 1091'), + (1093, 'TIPO 1092'), + (1094, 'TIPO 1093'), + (1095, 'TIPO 1094'), + (1096, 'TIPO 1095'), + (1097, 'TIPO 1096'), + (1098, 'TIPO 1097'), + (1099, 'TIPO 1098'), + (1100, 'TIPO 1099'), + (1101, 'TIPO 1100'), + (1102, 'TIPO 1101'), + (1103, 'TIPO 1102'), + (1104, 'TIPO 1103'), + (1105, 'TIPO 1104'), + (1106, 'TIPO 1105'), + (1107, 'TIPO 1106'), + (1108, 'TIPO 1107'), + (1109, 'TIPO 1108'), + (1110, 'TIPO 1109'), + (1111, 'TIPO 1110'), + (1112, 'TIPO 1111'), + (1113, 'TIPO 1112'), + (1114, 'TIPO 1113'), + (1115, 'TIPO 1114'), + (1116, 'TIPO 1115'), + (1117, 'TIPO 1116'), + (1118, 'TIPO 1117'), + (1119, 'TIPO 1118'), + (1120, 'TIPO 1119'), + (1121, 'TIPO 1120'), + (1122, 'TIPO 1121'), + (1123, 'TIPO 1122'), + (1124, 'TIPO 1123'), + (1125, 'TIPO 1124'), + (1126, 'TIPO 1125'), + (1127, 'TIPO 1126'), + (1128, 'TIPO 1127'), + (1129, 'TIPO 1128'), + (1130, 'TIPO 1129'), + (1131, 'TIPO 1130'), + (1132, 'TIPO 1131'), + (1133, 'TIPO 1132'), + (1134, 'TIPO 1133'), + (1135, 'TIPO 1134'), + (1136, 'TIPO 1135'), + (1137, 'TIPO 1136'), + (1138, 'TIPO 1137'), + (1139, 'TIPO 1138'), + (1140, 'TIPO 1139'), + (1141, 'TIPO 1140'), + (1142, 'TIPO 1141'), + (1143, 'TIPO 1142'), + (1144, 'TIPO 1143'), + (1145, 'TIPO 1144'), + (1146, 'TIPO 1145'), + (1147, 'TIPO 1146'), + (1148, 'TIPO 1147'), + (1149, 'TIPO 1148'), + (1150, 'TIPO 1149'), + (1151, 'TIPO 1150'), + (1152, 'TIPO 1151'), + (1153, 'TIPO 1152'), + (1154, 'TIPO 1153'), + (1155, 'TIPO 1154'), + (1156, 'TIPO 1155'), + (1157, 'TIPO 1156'), + (1158, 'TIPO 1157'), + (1159, 'TIPO 1158'), + (1160, 'TIPO 1159'), + (1161, 'TIPO 1160'), + (1162, 'TIPO 1161'), + (1163, 'TIPO 1162'), + (1164, 'TIPO 1163'), + (1165, 'TIPO 1164'), + (1166, 'TIPO 1165'), + (1167, 'TIPO 1166'), + (1168, 'TIPO 1167'), + (1169, 'TIPO 1168'), + (1170, 'TIPO 1169'), + (1171, 'TIPO 1170'), + (1172, 'TIPO 1171'), + (1173, 'TIPO 1172'), + (1174, 'TIPO 1173'), + (1175, 'TIPO 1174'), + (1176, 'TIPO 1175'), + (1177, 'TIPO 1176'), + (1178, 'TIPO 1177'), + (1179, 'TIPO 1178'), + (1180, 'TIPO 1179'), + (1181, 'TIPO 1180'), + (1182, 'TIPO 1181'), + (1183, 'TIPO 1182'), + (1184, 'TIPO 1183'), + (1185, 'TIPO 1184'), + (1186, 'TIPO 1185'), + (1187, 'TIPO 1186'), + (1188, 'TIPO 1187'), + (1189, 'TIPO 1188'), + (1190, 'TIPO 1189'), + (1191, 'TIPO 1190'), + (1192, 'TIPO 1191'), + (1193, 'TIPO 1192'), + (1194, 'TIPO 1193'), + (1195, 'TIPO 1194'), + (1196, 'TIPO 1195'), + (1197, 'TIPO 1196'), + (1198, 'TIPO 1197'), + (1199, 'TIPO 1198'), + (1200, 'TIPO 1199'), + (1201, 'TIPO 1200'), + (1202, 'TIPO 1201'), + (1203, 'TIPO 1202'), + (1204, 'TIPO 1203'), + (1205, 'TIPO 1204'), + (1206, 'TIPO 1205'), + (1207, 'TIPO 1206'), + (1208, 'TIPO 1207'), + (1209, 'TIPO 1208'), + (1210, 'TIPO 1209'), + (1211, 'TIPO 1210'), + (1212, 'TIPO 1211'), + (1213, 'TIPO 1212'), + (1214, 'TIPO 1213'), + (1215, 'TIPO 1214'), + (1216, 'TIPO 1215'), + (1217, 'TIPO 1216'), + (1218, 'TIPO 1217'), + (1219, 'TIPO 1218'), + (1220, 'TIPO 1219'), + (1221, 'TIPO 1220'), + (1222, 'TIPO 1221'), + (1223, 'TIPO 1222'), + (1224, 'TIPO 1223'), + (1225, 'TIPO 1224'), + (1226, 'TIPO 1225'), + (1227, 'TIPO 1226'), + (1228, 'TIPO 1227'), + (1229, 'TIPO 1228'), + (1230, 'TIPO 1229'), + (1231, 'TIPO 1230'), + (1232, 'TIPO 1231'), + (1233, 'TIPO 1232'), + (1234, 'TIPO 1233'), + (1235, 'TIPO 1234'), + (1236, 'TIPO 1235'), + (1237, 'TIPO 1236'), + (1238, 'TIPO 1237'), + (1239, 'TIPO 1238'), + (1240, 'TIPO 1239'), + (1241, 'TIPO 1240'), + (1242, 'TIPO 1241'), + (1243, 'TIPO 1242'), + (1244, 'TIPO 1243'), + (1245, 'TIPO 1244'), + (1246, 'TIPO 1245'), + (1247, 'TIPO 1246'), + (1248, 'TIPO 1247'), + (1249, 'TIPO 1248'), + (1250, 'TIPO 1249'), + (1251, 'TIPO 1250'), + (1252, 'TIPO 1251'), + (1253, 'TIPO 1252'), + (1254, 'TIPO 1253'), + (1255, 'TIPO 1254'), + (1256, 'TIPO 1255'), + (1257, 'TIPO 1256'), + (1258, 'TIPO 1257'), + (1259, 'TIPO 1258'), + (1260, 'TIPO 1259'), + (1261, 'TIPO 1260'), + (1262, 'TIPO 1261'), + (1263, 'TIPO 1262'), + (1264, 'TIPO 1263'), + (1265, 'TIPO 1264'), + (1266, 'TIPO 1265'), + (1267, 'TIPO 1266'), + (1268, 'TIPO 1267'), + (1269, 'TIPO 1268'), + (1270, 'TIPO 1269'), + (1271, 'TIPO 1270'), + (1272, 'TIPO 1271'), + (1273, 'TIPO 1272'), + (1274, 'TIPO 1273'), + (1275, 'TIPO 1274'), + (1276, 'TIPO 1275'), + (1277, 'TIPO 1276'), + (1278, 'TIPO 1277'), + (1279, 'TIPO 1278'), + (1280, 'TIPO 1279'), + (1281, 'TIPO 1280'), + (1282, 'TIPO 1281'), + (1283, 'TIPO 1282'), + (1284, 'TIPO 1283'), + (1285, 'TIPO 1284'), + (1286, 'TIPO 1285'), + (1287, 'TIPO 1286'), + (1288, 'TIPO 1287'), + (1289, 'TIPO 1288'), + (1290, 'TIPO 1289'), + (1291, 'TIPO 1290'), + (1292, 'TIPO 1291'), + (1293, 'TIPO 1292'), + (1294, 'TIPO 1293'), + (1295, 'TIPO 1294'), + (1296, 'TIPO 1295'), + (1297, 'TIPO 1296'), + (1298, 'TIPO 1297'), + (1299, 'TIPO 1298'), + (1300, 'TIPO 1299'), + (1301, 'TIPO 1300'), + (1302, 'TIPO 1301'), + (1303, 'TIPO 1302'), + (1304, 'TIPO 1303'), + (1305, 'TIPO 1304'), + (1306, 'TIPO 1305'), + (1307, 'TIPO 1306'), + (1308, 'TIPO 1307'), + (1309, 'TIPO 1308'), + (1310, 'TIPO 1309'), + (1311, 'TIPO 1310'), + (1312, 'TIPO 1311'), + (1313, 'TIPO 1312'), + (1314, 'TIPO 1313'), + (1315, 'TIPO 1314'), + (1316, 'TIPO 1315'), + (1317, 'TIPO 1316'), + (1318, 'TIPO 1317'), + (1319, 'TIPO 1318'), + (1320, 'TIPO 1319'), + (1321, 'TIPO 1320'), + (1322, 'TIPO 1321'), + (1323, 'TIPO 1322'), + (1324, 'TIPO 1323'), + (1325, 'TIPO 1324'), + (1326, 'TIPO 1325'), + (1327, 'TIPO 1326'), + (1328, 'TIPO 1327'), + (1329, 'TIPO 1328'), + (1330, 'TIPO 1329'), + (1331, 'TIPO 1330'), + (1332, 'TIPO 1331'), + (1333, 'TIPO 1332'), + (1334, 'TIPO 1333'), + (1335, 'TIPO 1334'), + (1336, 'TIPO 1335'), + (1337, 'TIPO 1336'), + (1338, 'TIPO 1337'), + (1339, 'TIPO 1338'), + (1340, 'TIPO 1339'), + (1341, 'TIPO 1340'), + (1342, 'TIPO 1341'), + (1343, 'TIPO 1342'), + (1344, 'TIPO 1343'), + (1345, 'TIPO 1344'), + (1346, 'TIPO 1345'), + (1347, 'TIPO 1346'), + (1348, 'TIPO 1347'), + (1349, 'TIPO 1348'), + (1350, 'TIPO 1349'), + (1351, 'TIPO 1350'), + (1352, 'TIPO 1351'), + (1353, 'TIPO 1352'), + (1354, 'TIPO 1353'), + (1355, 'TIPO 1354'), + (1356, 'TIPO 1355'), + (1357, 'TIPO 1356'), + (1358, 'TIPO 1357'), + (1359, 'TIPO 1358'), + (1360, 'TIPO 1359'), + (1361, 'TIPO 1360'), + (1362, 'TIPO 1361'), + (1363, 'TIPO 1362'), + (1364, 'TIPO 1363'), + (1365, 'TIPO 1364'), + (1366, 'TIPO 1365'), + (1367, 'TIPO 1366'), + (1368, 'TIPO 1367'), + (1369, 'TIPO 1368'), + (1370, 'TIPO 1369'), + (1371, 'TIPO 1370'), + (1372, 'TIPO 1371'), + (1373, 'TIPO 1372'), + (1374, 'TIPO 1373'), + (1375, 'TIPO 1374'), + (1376, 'TIPO 1375'), + (1377, 'TIPO 1376'), + (1378, 'TIPO 1377'), + (1379, 'TIPO 1378'), + (1380, 'TIPO 1379'), + (1381, 'TIPO 1380'), + (1382, 'TIPO 1381'), + (1383, 'TIPO 1382'), + (1384, 'TIPO 1383'), + (1385, 'TIPO 1384'), + (1386, 'TIPO 1385'), + (1387, 'TIPO 1386'), + (1388, 'TIPO 1387'), + (1389, 'TIPO 1388'), + (1390, 'TIPO 1389'), + (1391, 'TIPO 1390'), + (1392, 'TIPO 1391'), + (1393, 'TIPO 1392'), + (1394, 'TIPO 1393'), + (1395, 'TIPO 1394'), + (1396, 'TIPO 1395'), + (1397, 'TIPO 1396'), + (1398, 'TIPO 1397'), + (1399, 'TIPO 1398'), + (1400, 'TIPO 1399'), + (1401, 'TIPO 1400'), + (1402, 'TIPO 1401'), + (1403, 'TIPO 1402'), + (1404, 'TIPO 1403'), + (1405, 'TIPO 1404'), + (1406, 'TIPO 1405'), + (1407, 'TIPO 1406'), + (1408, 'TIPO 1407'), + (1409, 'TIPO 1408'), + (1410, 'TIPO 1409'), + (1411, 'TIPO 1410'), + (1412, 'TIPO 1411'), + (1413, 'TIPO 1412'), + (1414, 'TIPO 1413'), + (1415, 'TIPO 1414'), + (1416, 'TIPO 1415'), + (1417, 'TIPO 1416'), + (1418, 'TIPO 1417'), + (1419, 'TIPO 1418'), + (1420, 'TIPO 1419'), + (1421, 'TIPO 1420'), + (1422, 'TIPO 1421'), + (1423, 'TIPO 1422'), + (1424, 'TIPO 1423'), + (1425, 'TIPO 1424'), + (1426, 'TIPO 1425'), + (1427, 'TIPO 1426'), + (1428, 'TIPO 1427'), + (1429, 'TIPO 1428'), + (1430, 'TIPO 1429'), + (1431, 'TIPO 1430'), + (1432, 'TIPO 1431'), + (1433, 'TIPO 1432'), + (1434, 'TIPO 1433'), + (1435, 'TIPO 1434'), + (1436, 'TIPO 1435'), + (1437, 'TIPO 1436'), + (1438, 'TIPO 1437'), + (1439, 'TIPO 1438'), + (1440, 'TIPO 1439'), + (1441, 'TIPO 1440'), + (1442, 'TIPO 1441'), + (1443, 'TIPO 1442'), + (1444, 'TIPO 1443'), + (1445, 'TIPO 1444'), + (1446, 'TIPO 1445'), + (1447, 'TIPO 1446'), + (1448, 'TIPO 1447'), + (1449, 'TIPO 1448'), + (1450, 'TIPO 1449'), + (1451, 'TIPO 1450'), + (1452, 'TIPO 1451'), + (1453, 'TIPO 1452'), + (1454, 'TIPO 1453'), + (1455, 'TIPO 1454'), + (1456, 'TIPO 1455'), + (1457, 'TIPO 1456'), + (1458, 'TIPO 1457'), + (1459, 'TIPO 1458'), + (1460, 'TIPO 1459'), + (1461, 'TIPO 1460'), + (1462, 'TIPO 1461'), + (1463, 'TIPO 1462'), + (1464, 'TIPO 1463'), + (1465, 'TIPO 1464'), + (1466, 'TIPO 1465'), + (1467, 'TIPO 1466'), + (1468, 'TIPO 1467'), + (1469, 'TIPO 1468'), + (1470, 'TIPO 1469'), + (1471, 'TIPO 1470'), + (1472, 'TIPO 1471'), + (1473, 'TIPO 1472'), + (1474, 'TIPO 1473'), + (1475, 'TIPO 1474'), + (1476, 'TIPO 1475'), + (1477, 'TIPO 1476'), + (1478, 'TIPO 1477'), + (1479, 'TIPO 1478'), + (1480, 'TIPO 1479'), + (1481, 'TIPO 1480'), + (1482, 'TIPO 1481'), + (1483, 'TIPO 1482'), + (1484, 'TIPO 1483'), + (1485, 'TIPO 1484'), + (1486, 'TIPO 1485'), + (1487, 'TIPO 1486'), + (1488, 'TIPO 1487'), + (1489, 'TIPO 1488'), + (1490, 'TIPO 1489'), + (1491, 'TIPO 1490'), + (1492, 'TIPO 1491'), + (1493, 'TIPO 1492'), + (1494, 'TIPO 1493'), + (1495, 'TIPO 1494'), + (1496, 'TIPO 1495'), + (1497, 'TIPO 1496'), + (1498, 'TIPO 1497'), + (1499, 'TIPO 1498'), + (1500, 'TIPO 1499'), + (1501, 'TIPO 1500'), + (1502, 'TIPO 1501'), + (1503, 'TIPO 1502'), + (1504, 'TIPO 1503'), + (1505, 'TIPO 1504'), + (1506, 'TIPO 1505'), + (1507, 'TIPO 1506'), + (1508, 'TIPO 1507'), + (1509, 'TIPO 1508'), + (1510, 'TIPO 1509'), + (1511, 'TIPO 1510'), + (1512, 'TIPO 1511'), + (1513, 'TIPO 1512'), + (1514, 'TIPO 1513'), + (1515, 'TIPO 1514'), + (1516, 'TIPO 1515'), + (1517, 'TIPO 1516'), + (1518, 'TIPO 1517'), + (1519, 'TIPO 1518'), + (1520, 'TIPO 1519'), + (1521, 'TIPO 1520'), + (1522, 'TIPO 1521'), + (1523, 'TIPO 1522'), + (1524, 'TIPO 1523'), + (1525, 'TIPO 1524'), + (1526, 'TIPO 1525'), + (1527, 'TIPO 1526'), + (1528, 'TIPO 1527'), + (1529, 'TIPO 1528'), + (1530, 'TIPO 1529'), + (1531, 'TIPO 1530'), + (1532, 'TIPO 1531'), + (1533, 'TIPO 1532'), + (1534, 'TIPO 1533'), + (1535, 'TIPO 1534'), + (1536, 'TIPO 1535'), + (1537, 'TIPO 1536'), + (1538, 'TIPO 1537'), + (1539, 'TIPO 1538'), + (1540, 'TIPO 1539'), + (1541, 'TIPO 1540'), + (1542, 'TIPO 1541'), + (1543, 'TIPO 1542'), + (1544, 'TIPO 1543'), + (1545, 'TIPO 1544'), + (1546, 'TIPO 1545'), + (1547, 'TIPO 1546'), + (1548, 'TIPO 1547'), + (1549, 'TIPO 1548'), + (1550, 'TIPO 1549'), + (1551, 'TIPO 1550'), + (1552, 'TIPO 1551'), + (1553, 'TIPO 1552'), + (1554, 'TIPO 1553'), + (1555, 'TIPO 1554'), + (1556, 'TIPO 1555'), + (1557, 'TIPO 1556'), + (1558, 'TIPO 1557'), + (1559, 'TIPO 1558'), + (1560, 'TIPO 1559'), + (1561, 'TIPO 1560'), + (1562, 'TIPO 1561'), + (1563, 'TIPO 1562'), + (1564, 'TIPO 1563'), + (1565, 'TIPO 1564'), + (1566, 'TIPO 1565'), + (1567, 'TIPO 1566'), + (1568, 'TIPO 1567'), + (1569, 'TIPO 1568'), + (1570, 'TIPO 1569'), + (1571, 'TIPO 1570'), + (1572, 'TIPO 1571'), + (1573, 'TIPO 1572'), + (1574, 'TIPO 1573'), + (1575, 'TIPO 1574'), + (1576, 'TIPO 1575'), + (1577, 'TIPO 1576'), + (1578, 'TIPO 1577'), + (1579, 'TIPO 1578'), + (1580, 'TIPO 1579'), + (1581, 'TIPO 1580'), + (1582, 'TIPO 1581'), + (1583, 'TIPO 1582'), + (1584, 'TIPO 1583'), + (1585, 'TIPO 1584'), + (1586, 'TIPO 1585'), + (1587, 'TIPO 1586'), + (1588, 'TIPO 1587'), + (1589, 'TIPO 1588'), + (1590, 'TIPO 1589'), + (1591, 'TIPO 1590'), + (1592, 'TIPO 1591'), + (1593, 'TIPO 1592'), + (1594, 'TIPO 1593'), + (1595, 'TIPO 1594'), + (1596, 'TIPO 1595'), + (1597, 'TIPO 1596'), + (1598, 'TIPO 1597'), + (1599, 'TIPO 1598'), + (1600, 'TIPO 1599'), + (1601, 'TIPO 1600'), + (1602, 'TIPO 1601'), + (1603, 'TIPO 1602'), + (1604, 'TIPO 1603'), + (1605, 'TIPO 1604'), + (1606, 'TIPO 1605'), + (1607, 'TIPO 1606'), + (1608, 'TIPO 1607'), + (1609, 'TIPO 1608'), + (1610, 'TIPO 1609'), + (1611, 'TIPO 1610'), + (1612, 'TIPO 1611'), + (1613, 'TIPO 1612'), + (1614, 'TIPO 1613'), + (1615, 'TIPO 1614'), + (1616, 'TIPO 1615'), + (1617, 'TIPO 1616'), + (1618, 'TIPO 1617'), + (1619, 'TIPO 1618'), + (1620, 'TIPO 1619'), + (1621, 'TIPO 1620'), + (1622, 'TIPO 1621'), + (1623, 'TIPO 1622'), + (1624, 'TIPO 1623'), + (1625, 'TIPO 1624'), + (1626, 'TIPO 1625'), + (1627, 'TIPO 1626'), + (1628, 'TIPO 1627'), + (1629, 'TIPO 1628'), + (1630, 'TIPO 1629'), + (1631, 'TIPO 1630'), + (1632, 'TIPO 1631'), + (1633, 'TIPO 1632'), + (1634, 'TIPO 1633'), + (1635, 'TIPO 1634'), + (1636, 'TIPO 1635'), + (1637, 'TIPO 1636'), + (1638, 'TIPO 1637'), + (1639, 'TIPO 1638'), + (1640, 'TIPO 1639'), + (1641, 'TIPO 1640'), + (1642, 'TIPO 1641'), + (1643, 'TIPO 1642'), + (1644, 'TIPO 1643'), + (1645, 'TIPO 1644'), + (1646, 'TIPO 1645'), + (1647, 'TIPO 1646'), + (1648, 'TIPO 1647'), + (1649, 'TIPO 1648'), + (1650, 'TIPO 1649'), + (1651, 'TIPO 1650'), + (1652, 'TIPO 1651'), + (1653, 'TIPO 1652'), + (1654, 'TIPO 1653'), + (1655, 'TIPO 1654'), + (1656, 'TIPO 1655'), + (1657, 'TIPO 1656'), + (1658, 'TIPO 1657'), + (1659, 'TIPO 1658'), + (1660, 'TIPO 1659'), + (1661, 'TIPO 1660'), + (1662, 'TIPO 1661'), + (1663, 'TIPO 1662'), + (1664, 'TIPO 1663'), + (1665, 'TIPO 1664'), + (1666, 'TIPO 1665'), + (1667, 'TIPO 1666'), + (1668, 'TIPO 1667'), + (1669, 'TIPO 1668'), + (1670, 'TIPO 1669'), + (1671, 'TIPO 1670'), + (1672, 'TIPO 1671'), + (1673, 'TIPO 1672'), + (1674, 'TIPO 1673'), + (1675, 'TIPO 1674'), + (1676, 'TIPO 1675'), + (1677, 'TIPO 1676'), + (1678, 'TIPO 1677'), + (1679, 'TIPO 1678'), + (1680, 'TIPO 1679'), + (1681, 'TIPO 1680'), + (1682, 'TIPO 1681'), + (1683, 'TIPO 1682'), + (1684, 'TIPO 1683'), + (1685, 'TIPO 1684'), + (1686, 'TIPO 1685'), + (1687, 'TIPO 1686'), + (1688, 'TIPO 1687'), + (1689, 'TIPO 1688'), + (1690, 'TIPO 1689'), + (1691, 'TIPO 1690'), + (1692, 'TIPO 1691'), + (1693, 'TIPO 1692'), + (1694, 'TIPO 1693'), + (1695, 'TIPO 1694'), + (1696, 'TIPO 1695'), + (1697, 'TIPO 1696'), + (1698, 'TIPO 1697'), + (1699, 'TIPO 1698'), + (1700, 'TIPO 1699'), + (1701, 'TIPO 1700'), + (1702, 'TIPO 1701'), + (1703, 'TIPO 1702'), + (1704, 'TIPO 1703'), + (1705, 'TIPO 1704'), + (1706, 'TIPO 1705'), + (1707, 'TIPO 1706'), + (1708, 'TIPO 1707'), + (1709, 'TIPO 1708'), + (1710, 'TIPO 1709'), + (1711, 'TIPO 1710'), + (1712, 'TIPO 1711'), + (1713, 'TIPO 1712'), + (1714, 'TIPO 1713'), + (1715, 'TIPO 1714'), + (1716, 'TIPO 1715'), + (1717, 'TIPO 1716'), + (1718, 'TIPO 1717'), + (1719, 'TIPO 1718'), + (1720, 'TIPO 1719'), + (1721, 'TIPO 1720'), + (1722, 'TIPO 1721'), + (1723, 'TIPO 1722'), + (1724, 'TIPO 1723'), + (1725, 'TIPO 1724'), + (1726, 'TIPO 1725'), + (1727, 'TIPO 1726'), + (1728, 'TIPO 1727'), + (1729, 'TIPO 1728'), + (1730, 'TIPO 1729'), + (1731, 'TIPO 1730'), + (1732, 'TIPO 1731'), + (1733, 'TIPO 1732'), + (1734, 'TIPO 1733'), + (1735, 'TIPO 1734'), + (1736, 'TIPO 1735'), + (1737, 'TIPO 1736'), + (1738, 'TIPO 1737'), + (1739, 'TIPO 1738'), + (1740, 'TIPO 1739'), + (1741, 'TIPO 1740'), + (1742, 'TIPO 1741'), + (1743, 'TIPO 1742'), + (1744, 'TIPO 1743'), + (1745, 'TIPO 1744'), + (1746, 'TIPO 1745'), + (1747, 'TIPO 1746'), + (1748, 'TIPO 1747'), + (1749, 'TIPO 1748'), + (1750, 'TIPO 1749'), + (1751, 'TIPO 1750'), + (1752, 'TIPO 1751'), + (1753, 'TIPO 1752'), + (1754, 'TIPO 1753'), + (1755, 'TIPO 1754'), + (1756, 'TIPO 1755'), + (1757, 'TIPO 1756'), + (1758, 'TIPO 1757'), + (1759, 'TIPO 1758'), + (1760, 'TIPO 1759'), + (1761, 'TIPO 1760'), + (1762, 'TIPO 1761'), + (1763, 'TIPO 1762'), + (1764, 'TIPO 1763'), + (1765, 'TIPO 1764'), + (1766, 'TIPO 1765'), + (1767, 'TIPO 1766'), + (1768, 'TIPO 1767'), + (1769, 'TIPO 1768'), + (1770, 'TIPO 1769'), + (1771, 'TIPO 1770'), + (1772, 'TIPO 1771'), + (1773, 'TIPO 1772'), + (1774, 'TIPO 1773'), + (1775, 'TIPO 1774'), + (1776, 'TIPO 1775'), + (1777, 'TIPO 1776'), + (1778, 'TIPO 1777'), + (1779, 'TIPO 1778'), + (1780, 'TIPO 1779'), + (1781, 'TIPO 1780'), + (1782, 'TIPO 1781'), + (1783, 'TIPO 1782'), + (1784, 'TIPO 1783'), + (1785, 'TIPO 1784'), + (1786, 'TIPO 1785'), + (1787, 'TIPO 1786'), + (1788, 'TIPO 1787'), + (1789, 'TIPO 1788'), + (1790, 'TIPO 1789'), + (1791, 'TIPO 1790'), + (1792, 'TIPO 1791'), + (1793, 'TIPO 1792'), + (1794, 'TIPO 1793'), + (1795, 'TIPO 1794'), + (1796, 'TIPO 1795'), + (1797, 'TIPO 1796'), + (1798, 'TIPO 1797'), + (1799, 'TIPO 1798'), + (1800, 'TIPO 1799'), + (1801, 'TIPO 1800'), + (1802, 'TIPO 1801'), + (1803, 'TIPO 1802'), + (1804, 'TIPO 1803'), + (1805, 'TIPO 1804'), + (1806, 'TIPO 1805'), + (1807, 'TIPO 1806'), + (1808, 'TIPO 1807'), + (1809, 'TIPO 1808'), + (1810, 'TIPO 1809'), + (1811, 'TIPO 1810'), + (1812, 'TIPO 1811'), + (1813, 'TIPO 1812'), + (1814, 'TIPO 1813'), + (1815, 'TIPO 1814'), + (1816, 'TIPO 1815'), + (1817, 'TIPO 1816'), + (1818, 'TIPO 1817'), + (1819, 'TIPO 1818'), + (1820, 'TIPO 1819'), + (1821, 'TIPO 1820'), + (1822, 'TIPO 1821'), + (1823, 'TIPO 1822'), + (1824, 'TIPO 1823'), + (1825, 'TIPO 1824'), + (1826, 'TIPO 1825'), + (1827, 'TIPO 1826'), + (1828, 'TIPO 1827'), + (1829, 'TIPO 1828'), + (1830, 'TIPO 1829'), + (1831, 'TIPO 1830'), + (1832, 'TIPO 1831'), + (1833, 'TIPO 1832'), + (1834, 'TIPO 1833'), + (1835, 'TIPO 1834'), + (1836, 'TIPO 1835'), + (1837, 'TIPO 1836'), + (1838, 'TIPO 1837'), + (1839, 'TIPO 1838'), + (1840, 'TIPO 1839'), + (1841, 'TIPO 1840'), + (1842, 'TIPO 1841'), + (1843, 'TIPO 1842'), + (1844, 'TIPO 1843'), + (1845, 'TIPO 1844'), + (1846, 'TIPO 1845'), + (1847, 'TIPO 1846'), + (1848, 'TIPO 1847'), + (1849, 'TIPO 1848'), + (1850, 'TIPO 1849'), + (1851, 'TIPO 1850'), + (1852, 'TIPO 1851'), + (1853, 'TIPO 1852'), + (1854, 'TIPO 1853'), + (1855, 'TIPO 1854'), + (1856, 'TIPO 1855'), + (1857, 'TIPO 1856'), + (1858, 'TIPO 1857'), + (1859, 'TIPO 1858'), + (1860, 'TIPO 1859'), + (1861, 'TIPO 1860'), + (1862, 'TIPO 1861'), + (1863, 'TIPO 1862'), + (1864, 'TIPO 1863'), + (1865, 'TIPO 1864'), + (1866, 'TIPO 1865'), + (1867, 'TIPO 1866'), + (1868, 'TIPO 1867'), + (1869, 'TIPO 1868'), + (1870, 'TIPO 1869'), + (1871, 'TIPO 1870'), + (1872, 'TIPO 1871'), + (1873, 'TIPO 1872'), + (1874, 'TIPO 1873'), + (1875, 'TIPO 1874'), + (1876, 'TIPO 1875'), + (1877, 'TIPO 1876'), + (1878, 'TIPO 1877'), + (1879, 'TIPO 1878'), + (1880, 'TIPO 1879'), + (1881, 'TIPO 1880'), + (1882, 'TIPO 1881'), + (1883, 'TIPO 1882'), + (1884, 'TIPO 1883'), + (1885, 'TIPO 1884'), + (1886, 'TIPO 1885'), + (1887, 'TIPO 1886'), + (1888, 'TIPO 1887'), + (1889, 'TIPO 1888'), + (1890, 'TIPO 1889'), + (1891, 'TIPO 1890'), + (1892, 'TIPO 1891'), + (1893, 'TIPO 1892'), + (1894, 'TIPO 1893'), + (1895, 'TIPO 1894'), + (1896, 'TIPO 1895'), + (1897, 'TIPO 1896'), + (1898, 'TIPO 1897'), + (1899, 'TIPO 1898'), + (1900, 'TIPO 1899'), + (1901, 'TIPO 1900'), + (1902, 'TIPO 1901'), + (1903, 'TIPO 1902'), + (1904, 'TIPO 1903'), + (1905, 'TIPO 1904'), + (1906, 'TIPO 1905'), + (1907, 'TIPO 1906'), + (1908, 'TIPO 1907'), + (1909, 'TIPO 1908'), + (1910, 'TIPO 1909'), + (1911, 'TIPO 1910'), + (1912, 'TIPO 1911'), + (1913, 'TIPO 1912'), + (1914, 'TIPO 1913'), + (1915, 'TIPO 1914'), + (1916, 'TIPO 1915'), + (1917, 'TIPO 1916'), + (1918, 'TIPO 1917'), + (1919, 'TIPO 1918'), + (1920, 'TIPO 1919'), + (1921, 'TIPO 1920'), + (1922, 'TIPO 1921'), + (1923, 'TIPO 1922'), + (1924, 'TIPO 1923'), + (1925, 'TIPO 1924'), + (1926, 'TIPO 1925'), + (1927, 'TIPO 1926'), + (1928, 'TIPO 1927'), + (1929, 'TIPO 1928'), + (1930, 'TIPO 1929'), + (1931, 'TIPO 1930'), + (1932, 'TIPO 1931'), + (1933, 'TIPO 1932'), + (1934, 'TIPO 1933'), + (1935, 'TIPO 1934'), + (1936, 'TIPO 1935'), + (1937, 'TIPO 1936'), + (1938, 'TIPO 1937'), + (1939, 'TIPO 1938'), + (1940, 'TIPO 1939'), + (1941, 'TIPO 1940'), + (1942, 'TIPO 1941'), + (1943, 'TIPO 1942'), + (1944, 'TIPO 1943'), + (1945, 'TIPO 1944'), + (1946, 'TIPO 1945'), + (1947, 'TIPO 1946'), + (1948, 'TIPO 1947'), + (1949, 'TIPO 1948'), + (1950, 'TIPO 1949'), + (1951, 'TIPO 1950'), + (1952, 'TIPO 1951'), + (1953, 'TIPO 1952'), + (1954, 'TIPO 1953'), + (1955, 'TIPO 1954'), + (1956, 'TIPO 1955'), + (1957, 'TIPO 1956'), + (1958, 'TIPO 1957'), + (1959, 'TIPO 1958'), + (1960, 'TIPO 1959'), + (1961, 'TIPO 1960'), + (1962, 'TIPO 1961'), + (1963, 'TIPO 1962'), + (1964, 'TIPO 1963'), + (1965, 'TIPO 1964'), + (1966, 'TIPO 1965'), + (1967, 'TIPO 1966'), + (1968, 'TIPO 1967'), + (1969, 'TIPO 1968'), + (1970, 'TIPO 1969'), + (1971, 'TIPO 1970'), + (1972, 'TIPO 1971'), + (1973, 'TIPO 1972'), + (1974, 'TIPO 1973'), + (1975, 'TIPO 1974'), + (1976, 'TIPO 1975'), + (1977, 'TIPO 1976'), + (1978, 'TIPO 1977'), + (1979, 'TIPO 1978'), + (1980, 'TIPO 1979'), + (1981, 'TIPO 1980'), + (1982, 'TIPO 1981'), + (1983, 'TIPO 1982'), + (1984, 'TIPO 1983'), + (1985, 'TIPO 1984'), + (1986, 'TIPO 1985'), + (1987, 'TIPO 1986'), + (1988, 'TIPO 1987'), + (1989, 'TIPO 1988'), + (1990, 'TIPO 1989'), + (1991, 'TIPO 1990'), + (1992, 'TIPO 1991'), + (1993, 'TIPO 1992'), + (1994, 'TIPO 1993'), + (1995, 'TIPO 1994'), + (1996, 'TIPO 1995'), + (1997, 'TIPO 1996'), + (1998, 'TIPO 1997'), + (1999, 'TIPO 1998'), + (2000, 'TIPO 1999'); + + +DROP TABLE IF EXISTS `issue_1534`; +CREATE TABLE `issue_1534` +( + `id` smallint(6) unsigned NOT NULL AUTO_INCREMENT, + `language` varchar(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'bb', + `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, + `slug` varchar(20) COLLATE utf8_unicode_ci NOT NULL, + `brand` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, + `sort` tinyint(3) unsigned NOT NULL DEFAULT '0', + `language2` varchar(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'bb', + PRIMARY KEY (`id`, `language`), + UNIQUE KEY `slug` (`slug`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE =utf8_unicode_ci; + + +DROP TABLE IF EXISTS `issue_2019`; +CREATE TABLE IF NOT EXISTS `issue_2019` +( + `id` int +( + 10 +) NOT NULL AUTO_INCREMENT, + `column` varchar +( + 100 +) COLLATE utf8_unicode_ci NOT NULL, + PRIMARY KEY +( + `id` +) + ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE =utf8_unicode_ci; + + +DROP TABLE IF EXISTS `ph_select`; +CREATE TABLE IF NOT EXISTS `ph_select` +( + `sel_id` int +( + 11 +) unsigned NOT NULL AUTO_INCREMENT, + `sel_name` varchar +( + 16 +) COLLATE utf8_unicode_ci NOT NULL, + `sel_text` varchar +( + 32 +) COLLATE utf8_unicode_ci DEFAULT NULL, + PRIMARY KEY +( + `sel_id` +) + ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE =utf8_unicode_ci; +INSERT INTO `ph_select` (`sel_id`, `sel_name`, `sel_text`) +VALUES + (1, 'Sun', 'The one and only'), + (2, 'Mercury', 'Cold and hot'), + (3, 'Venus', 'Yeah baby she''s got it'), + (4, 'Earth', 'Home'), + (5, 'Mars', 'The God of War'), + (6, 'Jupiter', NULL), + (7, 'Saturn', 'A car'), + (8, 'Uranus', 'Loads of jokes for this one'); + + +DROP TABLE IF EXISTS `issue_11036`; +CREATE TABLE `issue_11036` +( + `id` int(11) unsigned NOT NULL AUTO_INCREMENT, + `token` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `issue_11036_token_UNIQUE` (`token`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + + +DROP TABLE IF EXISTS `packages`; +CREATE TABLE `packages` +( + `reference_type_id` int(11) NOT NULL, + `reference_id` int(10) unsigned NOT NULL, + `title` varchar(100) COLLATE utf8_unicode_ci NOT NULL, + `created` int(10) unsigned NOT NULL, + `updated` int(10) unsigned NOT NULL, + `deleted` int(10) unsigned DEFAULT NULL, + PRIMARY KEY (`reference_type_id`, `reference_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE =utf8_unicode_ci; +INSERT INTO `packages` (`reference_type_id`, `reference_id`, `title`, `created`, + `updated`, `deleted`) +VALUES + (1, 1, 'Private Package #1', 0, 0, NULL), + (1, 2, 'Private Package #2', 0, 0, NULL), + (2, 1, 'Public Package #1', 0, 0, NULL); + + +DROP TABLE IF EXISTS `package_details`; +CREATE TABLE `package_details` +( + `reference_type_id` int(11) NOT NULL, + `reference_id` int(10) unsigned NOT NULL, + `type` varchar(50) COLLATE utf8_unicode_ci NOT NULL, + `value` text COLLATE utf8_unicode_ci NOT NULL, + `created` int(10) unsigned NOT NULL, + `updated` int(10) unsigned NOT NULL, + `deleted` int(10) unsigned DEFAULT NULL, + PRIMARY KEY (`reference_type_id`, `reference_id`, `type`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE =utf8_unicode_ci; +INSERT INTO `package_details` (`reference_type_id`, `reference_id`, `type`, + `value`, `created`, `updated`, `deleted`) +VALUES +(1, 1, 'detail', 'private package #1 - detail', 0, 0, NULL), +(1, 1, 'option', 'private package #1 - option', 0, 0, NULL), +(1, 2, 'detail', 'private package #2 - detail', 0, 0, NULL), +(1, 2, 'option', 'private package #2 - option', 0, 0, NULL), +(2, 1, 'coupon', 'public package #1 - coupon', 0, 0, NULL), +(2, 1, 'detail', 'public package #1 - detail', 0, 0, NULL), +(2, 1, 'option', 'public package #1 - option', 0, 0, NULL); + + +DROP TABLE IF EXISTS `childs`; +CREATE TABLE `childs` +( + `id` INT NOT NULL AUTO_INCREMENT, + `parent` INT DEFAULT NULL, + `source` VARCHAR(20) DEFAULT NULL, + `transaction` VARCHAR(20) DEFAULT NULL, + `for` INT DEFAULT NULL, + `group` INT DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + + +DROP TABLE IF EXISTS `users`; +CREATE TABLE `users` +( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` VARCHAR(128) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE =utf8_unicode_ci; +INSERT INTO `users` (`id`, `name`) +VALUES + (1, 'Andres Gutierrez'), + (2, 'Serghei Iakovlev'), + (3, 'Nikolaos Dimopoulos'), + (4, 'Eduar Carvajal'); + + +DROP TABLE IF EXISTS `issue12071_head`; +CREATE TABLE `issue12071_head` +( + `id` INT NOT NULL AUTO_INCREMENT, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +INSERT INTO `issue12071_head` +VALUES (1); +INSERT INTO `issue12071_head` +VALUES (2); + + +DROP TABLE IF EXISTS `issue12071_body`; +CREATE TABLE `issue12071_body` +( + `id` INT NOT NULL AUTO_INCREMENT, + `head_1_id` INT, + `head_2_id` INT, + PRIMARY KEY (`id`), + CONSTRAINT `issue12071_body_head_1_fkey` FOREIGN KEY (`head_1_id`) REFERENCES `issue12071_head` (`id`), + CONSTRAINT `issue12071_body_head_2_fkey` FOREIGN KEY (`head_2_id`) REFERENCES `issue12071_head` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + + +DROP TABLE IF EXISTS `stats`; +CREATE TABLE `stats` +( + `date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, + `type` TINYINT(3) UNSIGNED NOT NULL, + `value` BIGINT(20) UNSIGNED NOT NULL, + PRIMARY KEY (`date`, `type`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE =utf8_unicode_ci; +INSERT INTO `stats` (`date`, `type`, `value`) +VALUES + ('2016-02-12 00:00:00', 1, 10), + ('2016-02-12 00:01:00', 2, 100), + ('2016-02-12 00:02:00', 3, 100); + + +DROP TABLE IF EXISTS `stock`; +CREATE TABLE `stock` +( + `id` int(11) NOT NULL, + `name` varchar(32) NOT NULL, + `stock` int(11) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +INSERT INTO `stock` (`id`, `name`, `stock`) +VALUES + (1, 'Apple', 2), + (2, 'Carrot', 6), + (3, 'pear', 0); +ALTER TABLE `stock` + ADD PRIMARY KEY (`id`); +ALTER TABLE `stock` + MODIFY `id` int (11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; + + +DROP TABLE IF EXISTS `foreign_key_parent`; +CREATE TABLE `foreign_key_parent` +( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `name` VARCHAR(32) NOT NULL, + `refer_int` INT(10) NOT NULL, + PRIMARY KEY (`id`), + KEY (`refer_int` +) + ) ENGINE=InnoDB DEFAULT CHARSET=utf8; + + +DROP TABLE IF EXISTS `foreign_key_child`; +CREATE TABLE `foreign_key_child` +( + `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, + `name` VARCHAR(32) NOT NULL, + `child_int` INT(10) NOT NULL, + PRIMARY KEY (`id`), + KEY (`child_int` +) + ) ENGINE=InnoDB DEFAULT CHARSET=utf8; + + +DROP TABLE IF EXISTS `table_with_string_field`; +CREATE TABLE `table_with_string_field` +( + `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, + `field` VARCHAR(70) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +INSERT INTO `table_with_string_field` +VALUES + (1, 'String one'), + (2, 'String two'), + (3, 'Another one string'); + +drop table if exists `dialect_table`; +create table dialect_table +( + field_primary int auto_increment + primary key, + field_blob blob null, + field_bit bit null, + field_bit_default bit default b'1' null, + field_bigint bigint null, + field_bigint_default bigint default 1 null, + field_boolean tinyint(1) null, + field_boolean_default tinyint(1) default 1 null, + field_char char(10) null, + field_char_default char(10) default 'ABC' null, + field_decimal decimal(10,4) null, + field_decimal_default decimal(10,4) default 14.5678 null, + field_enum enum('xs', 's', 'm', 'l', 'xl') null, + field_integer int(10) null, + field_integer_default int(10) default 1 null, + field_json json null, + field_float float(10,4) null, + field_float_default float(10,4) default 14.5678 null, + field_date date null, + field_date_default date default '2018-10-01' null, + field_datetime datetime null, + field_datetime_default datetime default '2018-10-01 12:34:56' null, + field_time time null, + field_time_default time default '12:34:56' null, + field_timestamp timestamp null, + field_timestamp_default timestamp default '2018-10-01 12:34:56' null, + field_mediumint mediumint(10) null, + field_mediumint_default mediumint(10) default 1 null, + field_smallint smallint(10) null, + field_smallint_default smallint(10) default 1 null, + field_tinyint tinyint(10) null, + field_tinyint_default tinyint(10) default 1 null, + field_longtext longtext null, + field_mediumtext mediumtext null, + field_tinytext tinytext null, + field_text text null, + field_varchar varchar(10) null, + field_varchar_default varchar(10) default 'D' null, + unique key dialect_table_unique (field_integer), + key dialect_table_index (field_bigint), + key dialect_table_two_fields (field_char, field_char_default) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +drop table if exists `dialect_table_remote`; +create table dialect_table_remote +( + field_primary int auto_increment + primary key, + field_text varchar(20) null +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + + +drop table if exists `dialect_table_intermediate`; +create table dialect_table_intermediate +( + field_primary_id int null, + field_remote_id int null, + constraint dialect_table_intermediate_primary__fk + foreign key (field_primary_id) references dialect_table (field_primary), + constraint dialect_table_intermediate_remote__fk + foreign key (field_remote_id) references dialect_table_remote (field_primary) + on update cascade on delete set null +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + diff --git a/tests/_data/assets/db/schemas/postgresql_schema.sql b/tests/_data/assets/db/schemas/postgresql_schema.sql new file mode 100644 index 00000000000..3625fa72028 --- /dev/null +++ b/tests/_data/assets/db/schemas/postgresql_schema.sql @@ -0,0 +1,7047 @@ +-- +-- PostgreSQL database dump +-- + +SET statement_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SET check_function_bodies = false; +SET client_min_messages = warning; + +-- +-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: +-- + +CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; + +-- +-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: +-- + +COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; + +SET search_path = public, pg_catalog; +SET default_tablespace = ''; +SET default_with_oids = false; + +-- +-- Name: customers; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS customers; +CREATE TABLE customers ( + id SERIAL, + document_id integer NOT NULL, + customer_id char(15) NOT NULL, + first_name varchar(100) DEFAULT NULL, + last_name varchar(100) DEFAULT NULL, + phone varchar(20) DEFAULT NULL, + email varchar(70) NOT NULL, + instructions varchar(100) DEFAULT NULL, + status CHAR(1) NOT NULL, + birth_date date DEFAULT '1970-01-01', + credit_line decimal(16,2) DEFAULT '0.00', + created_at timestamp NOT NULL, + created_at_user_id integer DEFAULT '0', + PRIMARY KEY (id) +); + +CREATE INDEX customers_document_id_idx ON customers (document_id); +CREATE INDEX customers_customer_id_idx ON customers (customer_id); +CREATE INDEX customers_credit_line_idx ON customers (credit_line); +CREATE INDEX customers_status_idx ON customers (status); + +ALTER TABLE public.customers OWNER TO postgres; + +-- +-- Name: parts; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS parts CASCADE; +CREATE TABLE parts ( + id integer NOT NULL, + name character varying(70) NOT NULL +); + +ALTER TABLE public.parts OWNER TO postgres; + +-- +-- Name: images; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS images; +CREATE TABLE images ( + id BIGSERIAL, + base64 TEXT +); + +ALTER TABLE public.images OWNER TO postgres; + +-- +-- Name: personas; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS personas; +CREATE TABLE personas ( + cedula character(15) NOT NULL, + tipo_documento_id integer NOT NULL, + nombres character varying(100) DEFAULT ''::character varying NOT NULL, + telefono character varying(20) DEFAULT NULL::character varying, + direccion character varying(100) DEFAULT NULL::character varying, + email character varying(50) DEFAULT NULL::character varying, + fecha_nacimiento date DEFAULT '1970-01-01'::date, + ciudad_id integer DEFAULT 0, + creado_at date, + cupo numeric(16,2) NOT NULL, + estado character(1) NOT NULL +); + +ALTER TABLE public.personas OWNER TO postgres; + +-- +-- Name: personnes; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS personnes; +CREATE TABLE personnes ( + cedula character(15) NOT NULL, + tipo_documento_id integer NOT NULL, + nombres character varying(100) DEFAULT ''::character varying NOT NULL, + telefono character varying(20) DEFAULT NULL::character varying, + direccion character varying(100) DEFAULT NULL::character varying, + email character varying(50) DEFAULT NULL::character varying, + fecha_nacimiento date DEFAULT '1970-01-01'::date, + ciudad_id integer DEFAULT 0, + creado_at date, + cupo numeric(16,2) NOT NULL, + estado character(1) NOT NULL +); + +ALTER TABLE public.personnes OWNER TO postgres; + +-- +-- Name: prueba; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS prueba; +CREATE TABLE prueba ( + id integer NOT NULL, + nombre character varying(120) NOT NULL, + estado character(1) NOT NULL +); + +ALTER TABLE public.prueba OWNER TO postgres; + +-- +-- Name: prueba_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +DROP SEQUENCE IF EXISTS prueba_id_seq; +CREATE SEQUENCE prueba_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER TABLE public.prueba_id_seq OWNER TO postgres; + +-- +-- Name: prueba_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE prueba_id_seq OWNED BY prueba.id; + +-- +-- Name: prueba_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('prueba_id_seq', 636, true); + +-- +-- Name: robots; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS robots CASCADE; +CREATE TABLE robots ( + id integer NOT NULL, + name character varying(70) NOT NULL, + type character varying(32) DEFAULT 'mechanical'::character varying NOT NULL, + year integer DEFAULT 1900 NOT NULL, + datetime timestamp NOT NULL, + deleted timestamp DEFAULT NULL, + text text NOT NULL +); + +ALTER TABLE public.robots OWNER TO postgres; + +-- +-- Name: robots_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +DROP SEQUENCE IF EXISTS robots_id_seq; +CREATE SEQUENCE robots_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER TABLE public.robots_id_seq OWNER TO postgres; + +-- +-- Name: robots_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE robots_id_seq OWNED BY robots.id; + +-- +-- Name: robots_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('robots_id_seq', 1, false); + +-- +-- Name: robots_parts; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS robots_parts; +CREATE TABLE robots_parts ( + id integer NOT NULL, + robots_id integer NOT NULL, + parts_id integer NOT NULL +); + +ALTER TABLE public.robots_parts OWNER TO postgres; + +-- +-- Name: robots_parts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +DROP SEQUENCE IF EXISTS robots_parts_id_seq; +CREATE SEQUENCE robots_parts_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER TABLE public.robots_parts_id_seq OWNER TO postgres; + +-- +-- Name: robots_parts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE robots_parts_id_seq OWNED BY robots_parts.id; + +-- +-- Name: robots_parts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('robots_parts_id_seq', 1, false); + +-- +-- Name: subscriptores; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS subscriptores; +CREATE TABLE subscriptores ( + id integer NOT NULL, + email character varying(70) NOT NULL, + created_at timestamp without time zone, + status character(1) NOT NULL +); + +ALTER TABLE public.subscriptores OWNER TO postgres; + +-- +-- Name: subscriptores_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +DROP SEQUENCE IF EXISTS subscriptores_id_seq; +CREATE SEQUENCE subscriptores_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER TABLE public.subscriptores_id_seq OWNER TO postgres; + +-- +-- Name: subscriptores_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE subscriptores_id_seq OWNED BY subscriptores.id; + +-- +-- Name: subscriptores_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('subscriptores_id_seq', 1, false); + +-- +-- Name: tipo_documento; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS tipo_documento; +CREATE TABLE tipo_documento ( + id integer NOT NULL, + detalle character varying(32) NOT NULL +); + +ALTER TABLE public.tipo_documento OWNER TO postgres; + +-- +-- Name: tipo_documento_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +DROP SEQUENCE IF EXISTS tipo_documento_id_seq; +CREATE SEQUENCE tipo_documento_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +-- +-- Name: foreign_key_parent; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS foreign_key_parent; +CREATE TABLE foreign_key_parent ( + id SERIAL, + name character varying(70) NOT NULL, + refer_int integer NOT NULL, + PRIMARY KEY (id), + UNIQUE (refer_int) +); + +ALTER TABLE public.foreign_key_parent OWNER TO postgres; + +-- +-- Name: ph_select; Type: TABLE TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS ph_select; +CREATE TABLE ph_select ( + sel_id SERIAL, + sel_name character varying(16) NOT NULL, + sel_text character varying(32) DEFAULT NULL, + PRIMARY KEY (sel_id) +); + +INSERT INTO ph_select (sel_id, sel_name, sel_text) VALUES + (1, 'Sun', 'The one and only'), + (2, 'Mercury', 'Cold and hot'), + (3, 'Venus', 'Yeah baby she''s got it'), + (4, 'Earth', 'Home'), + (5, 'Mars', 'The God of War'), + (6, 'Jupiter', NULL), + (7, 'Saturn', 'A car'), + (8, 'Uranus', 'Loads of jokes for this one'); + +ALTER TABLE public.ph_select OWNER TO postgres; + +-- +-- Name: foreign_key_child; Type: TABLE; Schema: public; Owner: postgres; Tablespace: +-- + +DROP TABLE IF EXISTS foreign_key_child; +CREATE TABLE foreign_key_child ( + id SERIAL, + name character varying(70) NOT NULL, + child_int integer NOT NULL, + PRIMARY KEY (id), + UNIQUE (child_int) +); + +ALTER TABLE public.foreign_key_child OWNER TO postgres; +ALTER TABLE public.tipo_documento_id_seq OWNER TO postgres; + +ALTER TABLE foreign_key_child ADD CONSTRAINT test_describeReferences FOREIGN KEY (child_int) REFERENCES foreign_key_parent (refer_int) ON UPDATE CASCADE ON DELETE RESTRICT; + +-- +-- Name: tipo_documento_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE tipo_documento_id_seq OWNED BY tipo_documento.id; + +-- +-- Name: tipo_documento_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('tipo_documento_id_seq', 1, false); + +-- +-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY prueba ALTER COLUMN id SET DEFAULT nextval('prueba_id_seq'::regclass); + +-- +-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY robots ALTER COLUMN id SET DEFAULT nextval('robots_id_seq'::regclass); + +-- +-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY robots_parts ALTER COLUMN id SET DEFAULT nextval('robots_parts_id_seq'::regclass); + +-- +-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY subscriptores ALTER COLUMN id SET DEFAULT nextval('subscriptores_id_seq'::regclass); + +-- +-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY tipo_documento ALTER COLUMN id SET DEFAULT nextval('tipo_documento_id_seq'::regclass); + +-- +-- Data for Name: parts; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +INSERT INTO parts (id, name) VALUES + (1, 'Head'), + (2, 'Body'), + (3, 'Arms'), + (4, 'Legs'), + (5, 'CPU'); + +-- +-- Data for Name: personas; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +INSERT INTO personas (cedula, tipo_documento_id, nombres, telefono, direccion, email, fecha_nacimiento, ciudad_id, creado_at, cupo, estado) VALUES + (1, 3, 'HUANG ZHENGQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-18', 6930.00, 'I'), + (100, 1, 'USME FERNANDEZ JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-04-15', 439480.00, 'A'), + (1003, 8, 'SINMON PEREZ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-25', 468610.00, 'A'), + (1009, 8, 'ARCINIEGAS Y VILLAMIZAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-08-12', 967680.00, 'A'), + (101, 1, 'CRANE DE NARVAEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-06-09', 790540.00, 'A'), + (1011, 8, 'EL EVENTO', 191821112, 'CRA 25 CALLE 100', '596@terra.com.co', '2011-02-03', 127591, '2011-05-24', 820390.00, 'A'), + (1020, 7, 'OSPINA YOLANDA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-02', 222970.00, 'A'), + (1025, 7, 'CHEMIPLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', 918670.00, 'A'), + (1034, 1, 'TAXI FILMS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-09-01', 962580.00, 'A'), + (104, 1, 'CASTELLANOS JIMENEZ NOE', 191821112, 'CRA 25 CALLE 100', '127@yahoo.es', '2011-02-03', 127591, '2011-10-05', 95230.00, 'A'), + (1046, 3, 'JACQUET PIERRE MICHEL ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 263489, '2011-07-23', 90810.00, 'A'), + (1048, 5, 'SPOERER VELEZ CARLOS JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-02-03', 184920.00, 'A'), + (1049, 3, 'SIDNEI DA SILVA LUIZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117630, '2011-07-02', 850180.00, 'A'), + (105, 1, 'HERRERA SEQUERA ALVARO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-26', 77390.00, 'A'), + (1050, 3, 'CAVALCANTI YUE CARLA HANLI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-31', 696130.00, 'A'), + (1052, 1, 'BARRETO RIVAS ELKIN MARTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 131508, '2011-09-19', 562160.00, 'A'), + (1053, 3, 'WANDERLEY ANTONIO ERNESTO THOME', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150617, '2011-01-31', 20490.00, 'A'), + (1054, 3, 'HE SHAN', 191821112, 'CRA 25 CALLE 100', '715@yahoo.es', '2011-02-03', 132958, '2010-10-05', 415970.00, 'A'), + (1055, 3, 'ZHRNG XIM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-05', 18380.00, 'A'), + (1057, 3, 'NICKEL GEB. STUTZ KARIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-10-08', 164850.00, 'A'), + (1058, 1, 'VELEZ PAREJA IGNACIO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2011-06-24', 292250.00, 'A'), + (1059, 3, 'GURKE RALF ERNST', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 287570, '2011-06-15', 966700.00, 'A'), + (106, 1, 'ESTRADA LONDONO JUAN SIMON', 191821112, 'CRA 25 CALLE 100', '8@terra.com.co', '2011-02-03', 128579, '2011-03-09', 101260.00, 'A'), + (1060, 1, 'MEDRANO BARRIOS WILSON', 191821112, 'CRA 25 CALLE 100', '479@facebook.com', '2011-02-03', 132775, '2011-06-18', 956740.00, 'A'), + (1061, 1, 'GERDTS PORTO HANS EDUARDO', 191821112, 'CRA 25 CALLE 100', '140@gmail.com', '2011-02-03', 127591, '2011-05-09', 883590.00, 'A'), + (1062, 1, 'BORGE VISBAL JORGE FIDEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132775, '2011-07-14', 547750.00, 'A'), + (1063, 3, 'GUTIERREZ JOSELYN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-06', 87960.00, 'A'), + (1064, 4, 'OVIEDO PINZON MARYI YULEY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2011-04-21', 796560.00, 'A'), + (1065, 1, 'VILORA SILVA OMAR ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2010-06-09', 718910.00, 'A'), + (1066, 3, 'AGUIAR ROMAN RODRIGO HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126674, '2011-06-28', 204890.00, 'A'), + (1067, 1, 'GOMEZ AGAMEZ ADOLFO DEL CRISTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131105, '2011-06-15', 867730.00, 'A'), + (1068, 3, 'GARRIDO CECILIA', 191821112, 'CRA 25 CALLE 100', '973@yahoo.com.mx', '2011-02-03', 118777, '2010-08-16', 723980.00, 'A'), + (1069, 1, 'JIMENEZ MANJARRES DAVID RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2010-12-17', 16680.00, 'A'), + (107, 1, 'ARANGUREN TEJADA JORGE ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-16', 274110.00, 'A'), + (1070, 3, 'OYARZUN TEJEDA ANDRES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-26', 911490.00, 'A'), + (1071, 3, 'MARIN BUCK RAFAEL ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126180, '2011-05-04', 507400.00, 'A'), + (1072, 3, 'VARGAS JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126674, '2011-07-28', 802540.00, 'A'), + (1073, 3, 'JUEZ JAIRALA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126180, '2010-04-09', 490510.00, 'A'), + (1074, 1, 'APONTE PENSO HERNAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132879, '2011-05-27', 44900.00, 'A'), + (1075, 1, 'PINERES BUSTILLO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126916, '2008-10-29', 752980.00, 'A'), + (1076, 1, 'OTERA OMA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-04-29', 630210.00, 'A'), + (1077, 3, 'CONTRERAS CHINCHILLA JUAN DOMINGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 139844, '2011-06-21', 892110.00, 'A'), + (1078, 1, 'GAMBA LAURENCIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-09-15', 569940.00, 'A'), + (108, 1, 'MUNOZ ARANGO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-01', 66770.00, 'A'), + (1080, 1, 'PRADA ABAUZA CARLOS AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-11-15', 156870.00, 'A'), + (1081, 1, 'PAOLA CAROLINA PINTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-27', 264350.00, 'A'), + (1082, 1, 'PALOMINO HERNANDEZ GERMAN JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-03-22', 851120.00, 'A'), + (1084, 1, 'URIBE DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '602@hotmail.es', '2011-02-03', 127591, '2011-09-07', 759470.00, 'A'), + (1085, 1, 'ARGUELLO CALDERON ARMANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-24', 409660.00, 'A'), + (1087, 1, 'CARVAJAL HERNANDEZ CHRISTIAN ARMANDO', 191821112, 'CRA 25 CALLE 100', '296@yahoo.es', '2011-02-03', 159432, '2011-06-03', 620410.00, 'A'), + (1088, 1, 'CASTRO BLANCO MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150512, '2009-10-08', 792400.00, 'A'), + (1089, 1, 'RIBEROS GUTIERREZ GUSTAVO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-01-27', 100800.00, 'A'), + (109, 1, 'BELTRAN MARIA LUZ DARY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-06', 511510.00, 'A'), + (1091, 4, 'ORTIZ ORTIZ BENIGNO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127538, '2011-08-05', 331540.00, 'A'), + (1092, 3, 'JOHN CHRISTOPHER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-08', 277320.00, 'A'), + (1093, 1, 'PARRA VILLAREAL MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 129499, '2011-08-23', 391980.00, 'A'), + (1094, 1, 'BESGA RODRIGUEZ JUAN JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-09-23', 127960.00, 'A'), + (1095, 1, 'ZAPATA MEZA EDGAR FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-05-19', 463840.00, 'A'), + (1096, 3, 'CORNEJO BRAVO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2010-11-08', 935340.00, 'A'), + ('CELL3944', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (1099, 1, 'GARCIA PORRAS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-14', 243360.00, 'A'), + (11, 1, 'HERNANDEZ PARDO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-31', 197540.00, 'A'), + (110, 1, 'VANEGAS JULIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-06', 357260.00, 'A'), + (1101, 1, 'QUINTERO BURBANO GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-08-20', 57420.00, 'A'), + (1102, 1, 'BOHORQUEZ AFANADOR CHRISTIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 214610.00, 'A'), + (1103, 1, 'MORA VARGAS JULIO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-29', 900790.00, 'A'), + (1104, 1, 'PINEDA JORGE ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-21', 860110.00, 'A'), + (1105, 1, 'TORO CEBALLOS GONZALO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 129499, '2011-08-18', 598180.00, 'A'), + (1106, 1, 'SCHENIDER TORRES JAIME', 191821112, 'CRA 25 CALLE 100', '85@yahoo.com.mx', '2011-02-03', 127799, '2011-08-11', 410590.00, 'A'), + (1107, 1, 'RUEDA VILLAMIZAR JAIME', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-11-15', 258410.00, 'A'), + (1108, 1, 'RUEDA VILLAMIZAR RICARDO JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129499, '2011-03-22', 60260.00, 'A'), + (1109, 1, 'GOMEZ RODRIGUEZ HERNANDO ARTURO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-06-02', 526080.00, 'A'), + (111, 1, 'FRANCISCO EDUARDO JAIME BOTERO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-09-09', 251770.00, 'A'), + (1110, 1, 'HERNANDEZ MENDEZ EDGAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 129499, '2011-03-22', 449610.00, 'A'), + (1113, 1, 'LEON HERNANDEZ OSCAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129499, '2011-03-21', 992090.00, 'A'), + (1114, 1, 'LIZARAZO CARRENO HUGO ARCENIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2010-12-10', 959490.00, 'A'), + (1115, 1, 'LIAN BARRERA GABRIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-05-30', 821170.00, 'A'), + (1117, 3, 'TELLEZ BEZAN FRANCISCO JAVIER ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-08-21', 673430.00, 'A'), + (1118, 1, 'FUENTES ARIZA DIEGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-09', 684970.00, 'A'), + (1119, 1, 'MOLINA M. ROBINSON', 191821112, 'CRA 25 CALLE 100', '728@hotmail.com', '2011-02-03', 129447, '2010-09-19', 404580.00, 'A'), + (112, 1, 'PATINO PINTO ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-06', 187050.00, 'A'), + (1120, 1, 'ORTIZ DURAN BENIGNO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127538, '2011-08-05', 967970.00, 'A'), + (1121, 1, 'CARVAJAL ALMEIDA LUIS RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2011-06-22', 626140.00, 'A'), + (1122, 1, 'TORRES QUIROGA EDWIN SILVESTRE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 129447, '2011-08-17', 226780.00, 'A'), + (1123, 1, 'VIVIESCAS JAIMES ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-10', 255480.00, 'A'), + (1124, 1, 'MARTINEZ RUEDA JAVIER EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129447, '2011-06-23', 597040.00, 'A'), + (1125, 1, 'ANAYA FLORES JORGE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-06-04', 218790.00, 'A'), + (1126, 3, 'TORRES MARTINEZ ANTONIO JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2010-09-02', 302820.00, 'A'), + (1127, 3, 'CACHO LEVISIER JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 153276, '2009-06-25', 857720.00, 'A'), + (1129, 3, 'ULLOA VALDIVIESO CRISTIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-06-02', 327570.00, 'A'), + (113, 1, 'HIGUERA CALA JAIME ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-27', 179950.00, 'A'), + (1130, 1, 'ARCINIEGAS WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126892, '2011-08-05', 497420.00, 'A'), + (1131, 1, 'BAZA ACUNA JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129447, '2010-12-10', 504410.00, 'A'), + (1132, 3, 'BUIRA ROS CARLOS MARIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-04-27', 29750.00, 'A'), + (1133, 1, 'RODRIGUEZ JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 129447, '2011-06-10', 635560.00, 'A'), + (1134, 1, 'QUIROGA PEREZ NELSON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 129447, '2011-05-18', 88520.00, 'A'), + (1135, 1, 'TATIANA AYALA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127122, '2011-07-01', 535920.00, 'A'), + (1136, 1, 'OSORIO BENEDETTI FABIAN AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2010-10-23', 414060.00, 'A'), + (1139, 1, 'CELIS PINTO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2009-02-25', 964970.00, 'A'), + (114, 1, 'VALDERRAMA CUERVO JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-02', 338590.00, 'A'), + (1140, 1, 'ORTIZ ARENAS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2009-10-21', 613300.00, 'A'), + (1141, 1, 'VALDIVIESO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2009-01-13', 171590.00, 'A'), + (1144, 1, 'LOPEZ CASTILLO NELSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 129499, '2010-09-09', 823110.00, 'A'), + (1145, 1, 'CAVELIER LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126916, '2008-11-29', 389220.00, 'A'), + (1146, 1, 'CAVELIER OTOYA LUIS EDURDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126916, '2010-05-25', 476770.00, 'A'), + (1147, 1, 'GARCIA RUEDA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '111@yahoo.es', '2011-02-03', 133535, '2010-09-12', 216190.00, 'A'), + (1148, 1, 'LADINO GOMEZ OMAR ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-02', 650640.00, 'A'), + (1149, 1, 'CARRENO ORTIZ OSCAR JAVIER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-15', 604630.00, 'A'), + (115, 1, 'NARDEI BONILLO BRUNO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-16', 153110.00, 'A'), + (1150, 1, 'MONTOYA BOZZI MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 129499, '2011-05-12', 71240.00, 'A'), + (1152, 1, 'LORA RICHARD JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-09-15', 497700.00, 'A'), + (1153, 1, 'SILVA PINZON MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '915@hotmail.es', '2011-02-03', 127591, '2011-06-15', 861670.00, 'A'), + (1154, 3, 'GEORGE J A KHALILIEH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-20', 815260.00, 'A'), + (1155, 3, 'CHACON MARIN CARLOS MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-07-26', 491280.00, 'A'), + (1156, 3, 'OCHOA CHEHAB XAVIER ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 126180, '2011-06-13', 10630.00, 'A'), + (1157, 3, 'ARAYA GARRI GABRIEL ALEXIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-09-19', 579320.00, 'A'), + (1158, 3, 'MACCHI ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116366, '2010-04-12', 864690.00, 'A'), + (116, 1, 'GONZALEZ FANDINO JAIME EDUARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-10', 749800.00, 'A'), + (1160, 1, 'CAVALIER LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126916, '2009-08-27', 333390.00, 'A'), + ('CELL396', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (1161, 3, 'DOMINGUEZ DE OBREGON ILEANA DEL CARMEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 139844, '2011-03-06', 910490.00, 'A'), + (1162, 2, 'FALASCA CLAUDIO ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116511, '2011-07-10', 552280.00, 'A'), + (1163, 3, 'MUTABARUKA PATRICK', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131352, '2011-03-22', 29940.00, 'A'), + (1164, 1, 'DOMINGUEZ ATENCIA JIMMY CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-22', 492860.00, 'A'), + (1165, 4, 'LLANO GONZALEZ ALBERTO MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2010-08-21', 374490.00, 'A'), + (1166, 3, 'LOPEZ ROLDAN JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-07-31', 393860.00, 'A'), + (1167, 1, 'GUTIERREZ DE PINERES JALILIE ARISTIDES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2010-12-09', 845810.00, 'A'), + (1168, 1, 'HEYMANS PIERRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2010-11-08', 47470.00, 'A'), + (1169, 1, 'BOTERO OSORIO RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2009-05-27', 699940.00, 'A'), + (1170, 3, 'GARNHAM POBLETE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 116396, '2011-03-27', 357270.00, 'A'), + (1172, 1, 'DAJUD DURAN JOSE RODRIGO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2009-12-02', 360910.00, 'A'), + (1173, 1, 'MARTINEZ MERCADO PEDRO PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-07-25', 744930.00, 'A'), + (1174, 1, 'GARCIA AMADOR ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-05-19', 641930.00, 'A'), + (1176, 1, 'VARGAS VARELA LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 131568, '2011-08-30', 948410.00, 'A'), + (1178, 1, 'GUTIERRES DE PINERES ARISTIDES', 191821112, 'CRA 25 CALLE 100', '217@hotmail.com', '2011-02-03', 133535, '2011-05-10', 242490.00, 'A'), + (1179, 3, 'LEIZAOLA POZO JIMENA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2011-08-01', 759800.00, 'A'), + (118, 1, 'FERNANDEZ VELOSO PEDRO HERNANDO', 191821112, 'CRA 25 CALLE 100', '452@hotmail.es', '2011-02-03', 128662, '2010-08-06', 198830.00, 'A'), + (1180, 3, 'MARINO PAOLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-12-24', 71520.00, 'A'), + (1181, 1, 'MOLINA VIZCAINO GUSTAVO JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-28', 78220.00, 'A'), + (1182, 3, 'MEDEL GARCIA FABIAN RODRIGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-04-25', 176540.00, 'A'), + (1183, 1, 'LESMES ARIAS RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-09-09', 648020.00, 'A'), + (1184, 1, 'ALCALA MARTINEZ ALFREDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132775, '2010-07-23', 710470.00, 'A'), + (1186, 1, 'LLAMAS FOLIACO LUIS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-07', 910210.00, 'A'), + (1187, 1, 'GUARDO DEL RIO LIBARDO FARID', 191821112, 'CRA 25 CALLE 100', '73@yahoo.com.mx', '2011-02-03', 128662, '2011-09-01', 726050.00, 'A'), + (1188, 3, 'JEFFREY ARTHUR DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 115724, '2011-03-21', 899630.00, 'A'), + (1189, 1, 'DAHL VELEZ JULIANA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126916, '2011-05-23', 320020.00, 'A'), + (119, 3, 'WALESKA DE LIMA ALMEIDA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-05-09', 125240.00, 'A'), + (1190, 3, 'LUIS JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2008-04-04', 901210.00, 'A'), + (1192, 1, 'AZUERO VALENTINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-14', 26310.00, 'A'), + (1193, 1, 'MARQUEZ GALINDO MAURICIO JAVIER', 191821112, 'CRA 25 CALLE 100', '729@yahoo.es', '2011-02-03', 131105, '2011-05-13', 493560.00, 'A'), + (1195, 1, 'NIETO FRANCO JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '707@yahoo.com', '2011-02-03', 127591, '2011-07-30', 463790.00, 'A'), + (1196, 3, 'ESTEVES JOAQUIM LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-04-05', 152270.00, 'A'), + (1197, 4, 'BARRERO KAREN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-12', 369990.00, 'A'), + (1198, 1, 'CORRALES GUZMAN DELIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127689, '2011-08-03', 393120.00, 'A'), + (1199, 1, 'CUELLAR TOCO EDGAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127531, '2011-09-20', 855640.00, 'A'), + (12, 1, 'MARIN PRIETO FREDY NELSON ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-23', 641210.00, 'A'), + (120, 1, 'LOPEZ JARAMILLO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2009-04-17', 29680.00, 'A'), + (1200, 3, 'SCHULTER ACHIM', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 291002, '2010-05-21', 98860.00, 'A'), + (1201, 3, 'HOWELL LAURENCE ADRIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 286785, '2011-05-22', 927350.00, 'A'), + (1202, 3, 'ALCAZAR ESCARATE JAIME PATRICIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-08-25', 340160.00, 'A'), + (1203, 3, 'HIDALGO FUENZALIDA GABRIEL RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-03', 918780.00, 'A'), + (1206, 1, 'VANEGAS HENAO ORLANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-27', 832910.00, 'A'), + (1207, 1, 'PENARANDA ARIAS RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-19', 832710.00, 'A'), + (1209, 1, 'LEZAMA CERVERA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2011-09-14', 825980.00, 'A'), + (121, 1, 'PULIDO JIMENEZ OSCAR HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-29', 772700.00, 'A'), + (1211, 1, 'TRUJILLO BOCANEGRA HAROL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127538, '2011-05-27', 199260.00, 'A'), + (1212, 1, 'ALVAREZ TORRES MARIO RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-08-15', 589960.00, 'A'), + (1213, 1, 'CORRALES VARON BELMER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-26', 352030.00, 'A'), + (1214, 3, 'CUEVAS RODRIGUEZ MANUELA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-30', 990250.00, 'A'), + (1216, 1, 'LOPEZ EDICSON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-31', 505210.00, 'A'), + (1217, 3, 'GARCIA PALOMARES JUAN JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-07-31', 840440.00, 'A'), + (1218, 1, 'ARCINIEGAS NARANJO RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127492, '2010-12-17', 686610.00, 'A'), + (122, 1, 'GONZALEZ RIANO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128031, '2011-08-05', 774450.00, 'A'), + (1220, 1, 'GARCIA GUTIERREZ WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-06-20', 498680.00, 'A'), + (1221, 3, 'GOMEZ DE ALONSO ANGELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-27', 758300.00, 'A'), + (1222, 1, 'MEDINA QUIROGA JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127538, '2011-01-16', 295480.00, 'A'), + (1224, 1, 'ARCILA CORREA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-03-20', 125900.00, 'A'), + (1225, 1, 'QUIJANO REYES CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2010-04-08', 22100.00, 'A'), + (157, 1, 'ORTIZ RIOS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-12', 365330.00, 'A'), + (1226, 1, 'VARGAS GALLEGO JAIRO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2009-07-30', 732820.00, 'A'), + (1228, 3, 'NAPANGA MIRENGHI MARTIN', 191821112, 'CRA 25 CALLE 100', '153@yahoo.es', '2011-02-03', 132958, '2011-02-08', 790400.00, 'A'), + (123, 1, 'LAMUS CASTELLANOS ANDRES RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-11', 554160.00, 'A'), + (1230, 1, 'RIVEROS PINEROS JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127492, '2011-09-25', 422220.00, 'A'), + (1231, 3, 'ESSER JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127327, '2011-04-01', 635060.00, 'A'), + (1232, 3, 'DOMINGUEZ MORA MAURICIO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-22', 908630.00, 'A'), + (1233, 3, 'MOLINA FERNANDEZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-05-28', 637990.00, 'A'), + (1234, 3, 'BELLO DANIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 196234, '2010-09-04', 464040.00, 'A'), + (1235, 3, 'BENADAVA GUEVARA DAVID ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-05-18', 406240.00, 'A'), + (1236, 3, 'RODRIGUEZ MATOS ROBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-03-22', 639070.00, 'A'), + (1237, 3, 'TAPIA ALARCON PATRICIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2010-07-06', 976620.00, 'A'), + (1239, 3, 'VERCHERE ALFONSO CHRISTIAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2010-08-23', 899600.00, 'A'), + (1241, 1, 'ESPINEL LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128206, '2009-03-09', 302860.00, 'A'), + (1242, 3, 'VERGARA FERREIRA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-03', 713310.00, 'A'), + (1243, 3, 'ZUMARRAGA SIRVENT CRSTINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-08-24', 657950.00, 'A'), + (1244, 4, 'ESCORCIA VASQUEZ TOMAS', 191821112, 'CRA 25 CALLE 100', '354@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', 149830.00, 'A'), + (1245, 4, 'PARAMO CUENCA KELLY LORENA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127492, '2011-05-04', 775300.00, 'A'), + (1246, 4, 'PEREZ LOPEZ VERONICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-07-11', 426990.00, 'A'), + (1247, 4, 'CHAPARRO RODRIGUEZ DANIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-08', 809070.00, 'A'), + (1249, 4, 'DIAZ MARTINEZ MARIA CAROLINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2011-05-30', 394740.00, 'A'), + (125, 1, 'CALDON RODRIGUEZ JAIME ARIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126968, '2011-07-29', 574780.00, 'A'), + (1250, 4, 'PINEDA VASQUEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2010-09-03', 680540.00, 'A'), + (1251, 5, 'MATIZ URIBE ANGELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-12-25', 218470.00, 'A'), + (1253, 1, 'ZAMUDIO RICAURTE JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126892, '2011-08-05', 598160.00, 'A'), + (1254, 1, 'ALJURE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-21', 838660.00, 'A'), + (1255, 3, 'ARMESTO AIRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 196234, '2011-01-29', 398840.00, 'A'), + (1257, 1, 'POTES GUEVARA JAIRO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127858, '2011-03-17', 194580.00, 'A'), + (1258, 1, 'BURBANO QUIROGA RAFAEL', 191821112, 'CRA 25 CALLE 100', '767@facebook.com', '2011-02-03', 127591, '2011-04-07', 538220.00, 'A'), + (1259, 1, 'CARDONA GOMEZ JAVIR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-03-16', 107380.00, 'A'), + (126, 1, 'PULIDO PARDO GUIDO IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-05', 531550.00, 'A'), + (1260, 1, 'LOPERA LEDESMA PABLO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-19', 922240.00, 'A'), + (1263, 1, 'TRIBIN BARRIGA JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-09-02', 525330.00, 'A'), + (1264, 1, 'NAVIA LOPEZ ANDRES FELIPE ', 191821112, 'CRA 25 CALLE 100', '353@hotmail.es', '2011-02-03', 127300, '2011-07-15', 591190.00, 'A'), + (1265, 1, 'CARDONA GOMEZ FABIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2010-11-18', 379940.00, 'A'), + (1266, 1, 'ESCARRIA VILLEGAS ANDRES JULIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-08-19', 126160.00, 'A'), + (1268, 1, 'CASTRO HERNANDEZ ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-03-25', 76260.00, 'A'), + (127, 1, 'RODRIGUEZ RODRIGUEZ GIOVANI FRANCISCO', 191821112, 'CRA 25 CALLE 100', '662@hotmail.es', '2011-02-03', 127591, '2011-09-29', 933390.00, 'A'), + (1270, 1, 'LEAL HERNANDEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', 313610.00, 'A'), + (1272, 1, 'ORTIZ CARDONA WILLIAM ENRIQUE', 191821112, 'CRA 25 CALLE 100', '914@hotmail.com', '2011-02-03', 128662, '2011-09-13', 272150.00, 'A'), + (1273, 1, 'ROMERO VAN GOMPEL HERNAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-09-07', 832960.00, 'A'), + (1274, 1, 'BERMUDEZ LONDONO JHON FREDY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-08-29', 348380.00, 'A'), + (1275, 1, 'URREA ALVAREZ NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-01', 242980.00, 'A'), + (1276, 1, 'VALENCIA LLANOS RODRIGO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-04-11', 169790.00, 'A'), + (1277, 1, 'PAZ VALENCIA GUILLERMO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127300, '2011-08-05', 120020.00, 'A'), + (1278, 1, 'MONROY CORREDOR GERARDO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-06-25', 90700.00, 'A'), + (1279, 1, 'RIOS MEDINA JAVIER ERMINSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-12', 93440.00, 'A'), + (128, 1, 'GALLEGO GUZMAN MARIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-06-25', 72290.00, 'A'), + (1280, 1, 'GARCIA OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-30', 195090.00, 'A'), + (1282, 1, 'MURILLO PESELLIN GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-06-15', 890530.00, 'A'), + (1284, 1, 'DIAZ ALVAREZ JOHNY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-06-25', 164130.00, 'A'), + (1285, 1, 'GARCES BELTRAN RAUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-08-11', 719220.00, 'A'), + (1286, 1, 'MATERON POVEDA LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-25', 103710.00, 'A'), + (1287, 1, 'VALENCIA ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-10-23', 360880.00, 'A'), + (1288, 1, 'PENA AGUDELO JOSE RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 134022, '2011-05-25', 493280.00, 'A'), + (1289, 1, 'CORREA NUNEZ JORGE ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-08-18', 383750.00, 'A'), + (129, 1, 'ALVAREZ RODRIGUEZ IVAN RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2008-01-28', 561290.00, 'A'), + (1291, 1, 'BEJARANO ROSERO FREDDY ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-09', 43400.00, 'A'), + (1292, 1, 'CASTILLO BARRIOS GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-06-17', 900180.00, 'A'), + ('CELL401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (1296, 1, 'GALVEZ GUTIERREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2010-03-28', 807090.00, 'A'), + (1297, 3, 'CRUZ GARCIA MILTON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 139844, '2011-03-21', 75630.00, 'A'), + (1298, 1, 'VILLEGAS GUTIERREZ JOSE RICARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-11', 956860.00, 'A'), + (13, 1, 'VACA MURCIA JESUS ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-04', 613430.00, 'A'), + (1301, 3, 'BOTTI ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 231989, '2011-04-04', 910640.00, 'A'), + (1302, 3, 'COTINO HUESO LORENZO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-02-02', 803450.00, 'A'), + (1304, 3, 'NESPOLI MANTOVANI LUIZ CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-04-18', 16230.00, 'A'), + (1307, 4, 'AVILA GIL PAULA ANDREA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-19', 711110.00, 'A'), + (1308, 4, 'VALLEJO PINEDA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-12', 323490.00, 'A'), + (1312, 1, 'ROMERO OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-17', 642460.00, 'A'), + (1314, 3, 'LULLIES CONSTANZE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 245206, '2010-06-03', 154970.00, 'A'), + (1315, 1, 'CHAPARRO GUTIERREZ JORGE ADRIANO', 191821112, 'CRA 25 CALLE 100', '284@hotmail.es', '2011-02-03', 127591, '2010-12-02', 325440.00, 'A'), + (1316, 1, 'BARRANTES DISI RICARDO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132879, '2011-07-18', 162270.00, 'A'), + (1317, 3, 'VERDES GAGO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2010-03-10', 835060.00, 'A'), + (1319, 3, 'MARTIN MARTINEZ GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2010-05-26', 937220.00, 'A'), + (1320, 3, 'MOTTURA MASSIMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2008-11-10', 620640.00, 'A'), + (1321, 3, 'RUSSELL TIMOTHY JAMES', 191821112, 'CRA 25 CALLE 100', '502@hotmail.es', '2011-02-03', 145135, '2010-04-16', 291560.00, 'A'), + (1322, 3, 'JAIN TARSEM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 190393, '2011-05-31', 595890.00, 'A'), + (1323, 3, 'ORTEGA CEVALLOS JULIETA ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-30', 104760.00, 'A'), + (1324, 3, 'MULLER PICHAIDA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-05-17', 736130.00, 'A'), + (1325, 3, 'ALVEAR TELLEZ JULIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-01-23', 366390.00, 'A'), + (1327, 3, 'MOYA LATORRE MARCELA CAROLINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-05-17', 18520.00, 'A'), + (1328, 3, 'LAMA ZAROR RODRIGO IGNACIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2010-10-27', 221990.00, 'A'), + (1329, 3, 'HERNANDEZ CIFUENTES MAURICE JEANETTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 139844, '2011-06-22', 54410.00, 'A'), + (133, 1, 'CORDOBA HOYOS JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-20', 966820.00, 'A'), + (1330, 2, 'HOCHKOFLER NOEMI CONSUELO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-27', 606070.00, 'A'), + (1331, 4, 'RAMIREZ BARRERO DANIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 154563, '2011-04-18', 867120.00, 'A'), + (1332, 4, 'DE LEON DURANGO RICARDO JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131105, '2011-09-08', 517400.00, 'A'), + (1333, 4, 'RODRIGUEZ MACIAS IVAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129447, '2011-05-23', 985620.00, 'A'), + (1334, 4, 'GUTIERREZ DE PINERES YANET MARIA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-06-16', 375890.00, 'A'), + (1335, 4, 'GUTIERREZ DE PINERES YANET MARIA GABRIELA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-06-16', 922600.00, 'A'), + (1336, 4, 'CABRALES BECHARA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '708@hotmail.com', '2011-02-03', 131105, '2011-05-13', 485330.00, 'A'), + (1337, 4, 'MEJIA TOBON LUIS DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127662, '2011-08-05', 658860.00, 'A'), + (1338, 3, 'OROS NERCELLES CRISTIAN ANDRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 144215, '2011-04-26', 838310.00, 'A'), + (1339, 3, 'MORENO BRAVO CAROLINA ANDREA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 190393, '2010-12-08', 214950.00, 'A'), + (134, 1, 'GONZALEZ LOPEZ DANIEL ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-08', 178580.00, 'A'), + (1340, 3, 'FERNANDEZ GARRIDO MARCELO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-07-08', 559820.00, 'A'), + (1342, 3, 'SUMEGI IMRE ZOLTAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-16', 91750.00, 'A'), + (1343, 3, 'CALDERON FLANDEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '108@hotmail.com', '2011-02-03', 117002, '2010-12-12', 996030.00, 'A'), + (1345, 3, 'CARBONELL ATCHUGARRY GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116366, '2010-04-12', 536390.00, 'A'), + (1346, 3, 'MONTEALEGRE AGUILAR FEDERICO ', 191821112, 'CRA 25 CALLE 100', '448@yahoo.es', '2011-02-03', 132165, '2011-08-08', 567260.00, 'A'), + (1347, 1, 'HERNANDEZ MANCHEGO CARLOS JULIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-04-28', 227130.00, 'A'), + (1348, 1, 'ARENAS ZARATE FERNEY ARNULFO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127963, '2011-03-26', 433860.00, 'A'), + (1349, 3, 'DELFIM DINIZ PASSOS PINHEIRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 110784, '2010-04-17', 487930.00, 'A'), + (135, 1, 'GARCIA SIMBAQUEBA RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 992420.00, 'A'), + (1350, 3, 'BRAUN VALENZUELA FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-29', 138050.00, 'A'), + (1351, 3, 'LEVIN FIORELLI ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 116366, '2011-04-10', 226470.00, 'A'), + (1353, 3, 'BALTODANO ESQUIVEL LAURA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-08-01', 911660.00, 'A'), + (1354, 4, 'ESCOBAR YEPES ANDREA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-19', 403630.00, 'A'), + (1356, 1, 'GAGELI OSORIO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '228@yahoo.com.mx', '2011-02-03', 128662, '2011-07-14', 205070.00, 'A'), + (1357, 3, 'CABAL ALVAREZ RUBEN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-08-14', 175770.00, 'A'), + (1359, 4, 'HUERFANO JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-04', 790970.00, 'A'), + (136, 1, 'OSORIO RAMIREZ LEONARDO', 191821112, 'CRA 25 CALLE 100', '686@yahoo.es', '2011-02-03', 128662, '2010-05-14', 426380.00, 'A'), + (1360, 4, 'RAMON GARCIA MARIA PAULA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-01', 163890.00, 'A'), + (1362, 30, 'ALVAREZ CLAVIO CARLA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127203, '2011-04-18', 741020.00, 'A'), + (1363, 3, 'SERRA DURAN GERARDO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-03', 365490.00, 'A'), + (1364, 3, 'NORIEGA VALVERDE SILVIA MARCELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132775, '2011-02-27', 604370.00, 'A'), + (1366, 1, 'JARAMILLO LOPEZ ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '269@terra.com.co', '2011-02-03', 127559, '2010-11-08', 813800.00, 'A'), + (1367, 1, 'MAZO ROLDAN CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-04', 292880.00, 'A'), + (1368, 1, 'MURIEL ARCILA MAURICIO HERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-29', 22970.00, 'A'), + (1369, 1, 'RAMIREZ CARLOS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-14', 236230.00, 'A'), + (137, 1, 'LUNA PEREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126881, '2011-08-05', 154640.00, 'A'), + (1370, 1, 'GARCIA GRAJALES PEDRO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128166, '2011-10-09', 112230.00, 'A'), + (1372, 3, 'GARCIA ESCOBAR ANA MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-29', 925670.00, 'A'), + (1373, 3, 'ALVES DIAS CARLOS AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-07', 70940.00, 'A'), + (1374, 3, 'MATTOS CHRISTIANE GARCIA CID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 183024, '2010-08-25', 577700.00, 'A'), + (1376, 1, 'CARVAJAL ROJAS ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-10', 645240.00, 'A'), + (1377, 3, 'MADARIAGA CADIZ CLAUDIO CRISTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-10-04', 199200.00, 'A'), + (1379, 3, 'MARIN YANEZ ALICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-02-20', 703870.00, 'A'), + (138, 1, 'DIAZ AVENDANO MARCELO IVAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-22', 494080.00, 'A'), + (1381, 3, 'COSTA VILLEGAS LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-08-21', 580670.00, 'A'), + (1382, 3, 'DAZA PEREZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 122035, '2009-02-23', 888000.00, 'A'), + (1385, 4, 'RIVEROS ARIAS MARIA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127492, '2011-09-26', 35710.00, 'A'), + (1386, 30, 'TORO GIRALDO MATEO', 191821112, 'CRA 25 CALLE 100', '433@yahoo.com.mx', '2011-02-03', 127591, '2011-07-17', 700730.00, 'A'), + (1387, 4, 'ROJAS YARA LAURA DANIELA MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-31', 396530.00, 'A'), + (1388, 3, 'GALLEGO RODRIGO MARIA PILAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2009-04-19', 880450.00, 'A'), + (1389, 1, 'PANTOJA VELASQUEZ JOSE ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2011-08-05', 212660.00, 'A'), + (139, 1, 'RANCO GOMEZ HERNÁN EDUARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-01-19', 6450.00, 'A'), + (1390, 3, 'VAN DEN BORNE KEES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2010-01-28', 421930.00, 'A'), + (1391, 3, 'MONDRAGON FLORES JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-08-22', 471700.00, 'A'), + (1392, 3, 'BAGELLA MICHELE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-07-27', 92720.00, 'A'), + (1393, 3, 'BISTIANCIC MACHADO ANA INES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 116366, '2010-08-02', 48490.00, 'A'), + (1394, 3, 'BANADOS ORTIZ MARIA PILAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-08-25', 964280.00, 'A'), + (1395, 1, 'CHINDOY CHINDOY HERNANDO', 191821112, 'CRA 25 CALLE 100', '107@terra.com.co', '2011-02-03', 126892, '2011-08-25', 675920.00, 'A'), + (1396, 3, 'SOTO NUNEZ ANDRES ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-10-02', 486760.00, 'A'), + (1397, 1, 'DELGADO MARTINEZ LORGE ELIAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-23', 406040.00, 'A'), + (1398, 1, 'LEON GUEVARA JAVIER ANIBAL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126892, '2011-09-08', 569930.00, 'A'), + (1399, 1, 'ZARAMA BASTIDAS LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126892, '2011-08-05', 631540.00, 'A'), + (14, 1, 'MAGUIN HENNSSEY LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '714@gmail.com', '2011-02-03', 127591, '2011-07-11', 143540.00, 'A'), + (140, 1, 'CARRANZA CUY ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-25', 550010.00, 'A'), + (1401, 3, 'REYNA CASTORENA JOSE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 189815, '2011-08-29', 344970.00, 'A'), + (1402, 1, 'GFALLO BOTERO SERGIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-07-14', 381100.00, 'A'), + (1403, 1, 'ARANGO ARAQUE JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-05-04', 870590.00, 'A'), + (1404, 3, 'LASSNER NORBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118942, '2010-02-28', 209650.00, 'A'), + (1405, 1, 'DURANGO MARIN HECTOR LEON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '1970-02-02', 436480.00, 'A'), + (1407, 1, 'FRANCO CASTANO DIEGO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-06-28', 457770.00, 'A'), + (1408, 1, 'HERNANDEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-05-29', 628550.00, 'A'), + (1409, 1, 'CASTANO DUQUE CARLOS HUGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-03-23', 769410.00, 'A'), + (141, 1, 'CHAMORRO CHEDRAUI SERGIO ALBERTO', 191821112, 'CRA 25 CALLE 100', '922@yahoo.com.mx', '2011-02-03', 127591, '2011-05-07', 730720.00, 'A'), + (1411, 1, 'RAMIREZ MONTOYA ADAMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-04-13', 498880.00, 'A'), + (1412, 1, 'GONZALEZ BENJUMEA OSCAR HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-11-01', 610150.00, 'A'), + (1413, 1, 'ARANGO ACEVEDO WALTER ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-10-07', 554090.00, 'A'), + (1414, 1, 'ARANGO GALLO HUMBERTO LEON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-02-25', 940010.00, 'A'), + (1415, 1, 'VELASQUEZ LUIS GONZALO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-07-06', 37760.00, 'A'), + (1416, 1, 'MIRA AGUILAR FRANCISCO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-30', 368790.00, 'A'), + (1417, 1, 'RIVERA ARISTIZABAL CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-03-02', 730670.00, 'A'), + (1418, 1, 'ARISTIZABAL ROLDAN ANDRES RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-02', 546960.00, 'A'), + (142, 1, 'LOPEZ ZULETA MAURICIO ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-01', 3550.00, 'A'), + (1420, 1, 'ESCORCIA ARAMBURO JUAN MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', 73100.00, 'A'), + (1421, 1, 'CORREA PARRA RICARDO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-05', 737110.00, 'A'), + (1422, 1, 'RESTREPO NARANJO DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-09-15', 466240.00, 'A'), + (1423, 1, 'VELASQUEZ CARLOS JUAN', 191821112, 'CRA 25 CALLE 100', '123@yahoo.com', '2011-02-03', 128662, '2010-06-09', 119880.00, 'A'), + (1424, 1, 'MACIA GONZALEZ ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2010-11-12', 200690.00, 'A'), + (1425, 1, 'BERRIO MEJIA HELBER ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2010-06-04', 643800.00, 'A'), + (1427, 1, 'GOMEZ GUTIERREZ CARLOS ARIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-09-08', 153320.00, 'A'), + (1428, 1, 'RESTREPO LOPEZ JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-12', 915770.00, 'A'), + ('CELL4012', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (1429, 1, 'BARTH TOBAR LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-02-23', 118900.00, 'A'), + (143, 1, 'MUNERA BEDIYA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-09-21', 825600.00, 'A'), + (1430, 1, 'JIMENEZ VELEZ ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-02-26', 847160.00, 'A'), + (1431, 1, 'TAKAHASHI GAVIRIA NICOLAS KEIICHIRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-13', 879120.00, 'A'), + (1432, 1, 'ESCOBAR JARAMILLO ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-06-10', 854110.00, 'A'), + (1433, 1, 'PALACIO NAVARRO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-08-18', 633200.00, 'A'), + (1434, 1, 'LONDONO MUNOZ ADOLFO LEON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-09-14', 603670.00, 'A'), + (1435, 1, 'PULGARIN JAIME ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2009-11-01', 118730.00, 'A'), + (1436, 1, 'FERRERA ZULUAGA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-07-10', 782630.00, 'A'), + (1437, 1, 'VASQUEZ VELEZ HABACUC', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-27', 557000.00, 'A'), + (1438, 1, 'HENAO PALOMINO DIEGO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2009-05-06', 437080.00, 'A'), + (1439, 1, 'HURTADO URIBE JUAN GONZALO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-01-11', 514400.00, 'A'), + (144, 1, 'ALDANA RODOLFO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '838@yahoo.es', '2011-02-03', 127591, '2011-08-07', 117350.00, 'A'), + (1441, 1, 'URIBE DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2010-11-19', 760610.00, 'A'), + (1442, 1, 'PINEDA GALIANO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-07-29', 20770.00, 'A'), + (1443, 1, 'DUQUE BETANCOURT FABIO LEON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-26', 822030.00, 'A'), + (1444, 1, 'JARAMILLO TORO HERNAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-04-27', 47830.00, 'A'), + (145, 1, 'VASQUEZ ZAPATA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-09', 109940.00, 'A'), + (1450, 1, 'TOBON FRANCO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '545@facebook.com', '2011-02-03', 127591, '2011-05-03', 889540.00, 'A'), + (1454, 1, 'LOTERO PAVAS CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-28', 646750.00, 'A'), + (1455, 1, 'ESTRADA HENAO JAVIER ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128569, '2009-09-07', 215460.00, 'A'), + (1456, 1, 'VALDERRAMA MAXIMILIANO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-23', 137030.00, 'A'), + (1457, 3, 'ESTRADA ALVAREZ GONZALO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 154903, '2011-05-02', 38790.00, 'A'), + (1458, 1, 'PAUCAR VALLEJO JAIRO ALONSO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-10-15', 782860.00, 'A'), + (1459, 1, 'RESTREPO GIRALDO JHON DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-04-04', 797930.00, 'A'), + (146, 1, 'BAQUERO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-03-03', 197650.00, 'A'), + (1460, 1, 'RESTREPO DOMINGUEZ GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2009-05-18', 641050.00, 'A'), + (1461, 1, 'YANOVICH JACKY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-08-21', 811470.00, 'A'), + (1462, 1, 'HINCAPIE ROLDAN JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-27', 134200.00, 'A'), + (1463, 3, 'ZEA JORGE OLIVER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2011-03-12', 236610.00, 'A'), + (1464, 1, 'OSCAR MAURICIO ECHAVARRIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-11-24', 780440.00, 'A'), + (1465, 1, 'COSSIO GIL JOSE ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-10-01', 192380.00, 'A'), + (1466, 1, 'GOMEZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-03-01', 620580.00, 'A'), + (1467, 1, 'VILLALOBOS OCHOA ANDRES GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-18', 525740.00, 'A'), + (1470, 1, 'GARCIA GONZALEZ DAVID DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-09-17', 986990.00, 'A'), + (1471, 1, 'RAMIREZ RESTREPO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-03', 162250.00, 'A'), + (1472, 1, 'VASQUEZ GUTIERREZ JUAN ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-05', 850280.00, 'A'), + (1474, 1, 'ESCOBAR ARANGO DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-11-01', 272460.00, 'A'), + (1475, 1, 'MEJIA TORO JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-05-02', 68320.00, 'A'), + (1477, 1, 'ESCOBAR GOMEZ JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127848, '2011-05-15', 416150.00, 'A'), + (1478, 1, 'BETANCUR WILSON', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2008-02-09', 508060.00, 'A'), + (1479, 3, 'ROMERO ARRAU GONZALO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-10', 291880.00, 'A'), + (148, 1, 'REINA MORENO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-08', 699240.00, 'A'), + (1480, 1, 'CASTANO OSORIO JORGE ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127662, '2011-09-20', 935200.00, 'A'), + (1482, 1, 'LOPEZ LOPERA ROBINSON FREDY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-09-02', 196280.00, 'A'), + (1484, 1, 'HERNAN DARIO RENDON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-03-18', 312520.00, 'A'), + (1485, 1, 'MARTINEZ ARBOLEDA MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-11-03', 821760.00, 'A'), + (1486, 1, 'RODRIGUEZ MORA CARLOS MORA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-09-16', 171270.00, 'A'), + (1487, 1, 'PENAGOS VASQUEZ JOSE DOMINGO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-09-06', 391080.00, 'A'), + (1488, 1, 'UERRA MEJIA DIEGO LEON', 191821112, 'CRA 25 CALLE 100', '704@hotmail.com', '2011-02-03', 144086, '2011-08-06', 441570.00, 'A'), + (1491, 1, 'QUINTERO GUTIERREZ ABEL PASTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2009-11-16', 138100.00, 'A'), + (1492, 1, 'ALARCON YEPES IVAN DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2010-05-03', 145330.00, 'A'), + (1494, 1, 'HERNANDEZ VALLEJO ANDRES MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-09', 125770.00, 'A'), + (1495, 1, 'MONTOYA MORENO LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-09', 691770.00, 'A'), + (1497, 1, 'BARRERA CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '62@yahoo.es', '2011-02-03', 127591, '2010-08-24', 332550.00, 'A'), + (1498, 1, 'ARROYAVE FERNANDEZ PABLO EMILIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-05-12', 418030.00, 'A'), + (1499, 1, 'GOMEZ ANGEL FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-05-03', 92480.00, 'A'), + (15, 1, 'AMSILI COHEN JOSEPH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 877400.00, 'A'), + ('CELL411', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (150, 3, 'ARDILA GUTIERREZ DANIEL MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-12', 506760.00, 'A'), + (1500, 1, 'GONZALEZ DUQUE PABLO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-04-13', 208330.00, 'A'), + (1502, 1, 'MEJIA BUSTAMANTE JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-09', 196000.00, 'A'), + (1506, 1, 'SUAREZ MONTOYA JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128569, '2011-09-13', 368250.00, 'A'), + (1508, 1, 'ALVAREZ GONZALEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-02-15', 355190.00, 'A'), + (1509, 1, 'NIETO CORREA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-31', 899980.00, 'A'), + (1511, 1, 'HERNANDEZ GRANADOS JHONATHAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-08-30', 471720.00, 'A'), + (1512, 1, 'CARDONA ALVAREZ DEIBY', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2010-10-05', 55590.00, 'A'), + (1513, 1, 'TORRES MARULANDA JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-20', 862820.00, 'A'), + (1514, 1, 'RAMIREZ RAMIREZ JHON JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-11', 147310.00, 'A'), + (1515, 1, 'MONDRAGON TORO NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-01-19', 148100.00, 'A'), + (1517, 3, 'SUIDA DIETER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2008-07-21', 48580.00, 'A'), + (1518, 3, 'LEFTWICH ANDREW PAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 211610, '2011-06-07', 347170.00, 'A'), + (1519, 3, 'RENTON ANDREW GEORGE PATRICK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2010-12-11', 590120.00, 'A'), + (152, 1, 'BUSTOS MONZON CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-22', 335160.00, 'A'), + (1521, 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 119814, '2011-04-28', 775000.00, 'A'), + (1522, 3, 'GUARACI FRANCO DE PAIVA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 119167, '2011-04-28', 147770.00, 'A'), + (1525, 4, 'MORENO TENORIO MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-20', 888750.00, 'A'), + (1527, 1, 'VELASQUEZ HERNANDEZ JHON EDUARSON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-19', 161270.00, 'A'), + (1528, 4, 'VANEGAS ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '185@yahoo.com', '2011-02-03', 127591, '2011-06-20', 109830.00, 'A'), + (1529, 3, 'BARBABE CLAIRE LAURENCE ANNICK', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-04', 65330.00, 'A'), + (153, 1, 'GONZALEZ TORREZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-01', 762560.00, 'A'), + (1530, 3, 'COREA MARTINEZ GUILLERMO JOSE ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-09-25', 997190.00, 'A'), + (1531, 3, 'PACHECO RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2010-03-08', 789960.00, 'A'), + (1532, 3, 'WELCH RICHARD WILLIAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 190393, '2010-10-04', 958210.00, 'A'), + (1533, 3, 'FOREMAN CAROLYN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 107159, '2011-05-23', 421200.00, 'A'), + (1535, 3, 'ZAGAL SOTO CLAUDIA PAZ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2008-05-16', 893130.00, 'A'), + (1536, 3, 'ZAGAL SOTO CLAUDIA PAZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-10-08', 771600.00, 'A'), + (1538, 3, 'BLANCO RODRIGUEZ JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 197162, '2011-04-02', 578250.00, 'A'), + (154, 1, 'HENDEZ PUERTO JAVIER ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 807310.00, 'A'), + (1540, 3, 'CONTRERAS BRAIN JAVIER ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-02-22', 42420.00, 'A'), + (1541, 3, 'RONDON HERNANDEZ MARYLIN DEL CARMEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-09-29', 145780.00, 'A'), + (1542, 3, 'ELJURI RAMIREZ EMIRA ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2010-10-13', 601670.00, 'A'), + (1544, 3, 'REYES LE ROY TOMAS FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2009-06-24', 49990.00, 'A'), + (1545, 3, 'GHETEA GAMUZ JENNY', 191821112, 'CRA 25 CALLE 100', '675@gmail.com', '2011-02-03', 150699, '2010-05-29', 536940.00, 'A'), + (1546, 3, 'DUARTE GONZALEZ ROONEY ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-20', 534720.00, 'A'), + (1548, 3, 'BIZOT PHILIPPE PIERRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 263813, '2011-03-02', 709760.00, 'A'), + (1549, 3, 'PELUFFO RUBIO GUILLERMO JUAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 116366, '2011-05-09', 360470.00, 'A'), + (1550, 3, 'AGLIATI YERKOVIC CAROLINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-06-01', 673040.00, 'A'), + (1551, 3, 'SEPULVEDA LEDEZMA HENRY CORNELIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-08-15', 283810.00, 'A'), + (1552, 3, 'CABRERA CARMINE JAIME FRANCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2008-11-30', 399940.00, 'A'), + (1553, 3, 'ZINNO PENA ALVARO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116366, '2010-08-02', 148270.00, 'A'), + (1554, 3, 'ROMERO BUCCICARDI JUAN CRISTOBAL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-08-01', 541530.00, 'A'), + (1555, 3, 'FEFERKORN ABRAHAM', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 159312, '2011-06-12', 262840.00, 'A'), + (1556, 3, 'MASSE CATESSON CAROLINE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131272, '2011-06-12', 689600.00, 'A'), + (1557, 3, 'CATESSON ALEXANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 131272, '2011-06-12', 659470.00, 'A'), + (1558, 3, 'FUENTES HERNANDEZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-18', 228540.00, 'A'), + (1559, 3, 'GUEVARA MENJIVAR WILSON ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-18', 164310.00, 'A'), + (1560, 3, 'DANOWSKI NICOLAS JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-02', 135920.00, 'A'), + (1561, 3, 'CASTRO VELASQUEZ ISMAEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 121318, '2011-07-31', 186670.00, 'A'), + (1562, 3, 'RODRIGUEZ CORNEJO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 525590.00, 'A'), + (1563, 3, 'VANIA CAROLINA FLORES AVILA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-18', 67950.00, 'A'), + (1564, 3, 'ARMERO RAMOS OSCAR ALEXANDER', 191821112, 'CRA 25 CALLE 100', '414@hotmail.com', '2011-02-03', 127591, '2011-09-18', 762950.00, 'A'), + (1565, 3, 'ORELLANA MARTINEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-18', 610930.00, 'A'), + (1566, 3, 'BRATT BABONNEAU CARLOS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', 765800.00, 'A'), + (1567, 3, 'YANES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150728, '2011-04-12', 996200.00, 'A'), + (1568, 3, 'ANGULO TAMAYO SEBASTIAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126674, '2011-05-19', 683600.00, 'A'), + (1569, 3, 'HENRIQUEZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 138329, '2011-08-15', 429390.00, 'A'), + ('CELL4137', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (1570, 3, 'GARCIA VILLARROEL RAUL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126189, '2011-06-12', 96140.00, 'A'), + (1571, 3, 'SOLA HERNANDEZ JOSE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-09-25', 192530.00, 'A'), + (1572, 3, 'PEREZ PASTOR OSWALDO MAGARREY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126674, '2011-05-25', 674260.00, 'A'), + (1573, 3, 'MICHAN QUINONES FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-06-21', 793680.00, 'A'), + (1574, 3, 'GARCIA ARANDA OSCAR DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-08-15', 945620.00, 'A'), + (1575, 3, 'GARCIA RIBAS JORDI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-10', 347070.00, 'A'), + (1576, 3, 'GALVAN ROMERO MARIA INMACULADA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-09-14', 898480.00, 'A'), + (1577, 3, 'BOSH MOLINAS JUAN JOSE ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 198576, '2011-08-22', 451190.00, 'A'), + (1578, 3, 'MARTIN TENA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-04-24', 560520.00, 'A'), + (1579, 3, 'HAWKINS ROBERT JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-12', 449010.00, 'A'), + (1580, 3, 'GHERARDI ALEJANDRO EMILIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 180063, '2010-11-15', 563500.00, 'A'), + (1581, 3, 'TELLO JUAN EDUARDO', 191821112, 'CRA 25 CALLE 100', '192@hotmail.com', '2011-02-03', 138329, '2011-05-01', 470460.00, 'A'), + (1583, 3, 'GUZMAN VALDIVIA CINTIA TATIANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 199862, '2011-04-06', 897580.00, 'A'), + (1584, 3, 'STUBBS MERCEDES CARMEN JOSEFINA DEL MILAGRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 199862, '2011-04-06', 502510.00, 'A'), + (1585, 3, 'QUINTEIRO GORIS JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-17', 819840.00, 'A'), + (1587, 3, 'RIVAS LORIA PRISCILLA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 205636, '2011-05-01', 498720.00, 'A'), + (1588, 3, 'DE LA TORRE AUGUSTO PATRICIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 20404, '2011-08-31', 718670.00, 'A'), + (159, 1, 'ALDANA PATINO NORMAN ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2009-10-10', 201500.00, 'A'), + (1590, 3, 'TORRES VILLAR ROBERTO ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-08-10', 329950.00, 'A'), + (1591, 3, 'PETRULLI CARMELO MORENO', 191821112, 'CRA 25 CALLE 100', '883@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', 358180.00, 'A'), + (1592, 3, 'MUSCO ENZO FRANCESCO GIUSEPPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-04', 801050.00, 'A'), + (1593, 3, 'RONCUZZI CLAUDIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127134, '2011-10-02', 930700.00, 'A'), + (1594, 3, 'VELANI FRANCESCA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 199862, '2011-08-22', 250360.00, 'A'), + (1596, 3, 'BENARROCH ASSOR DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-10-06', 547310.00, 'A'), + (1597, 3, 'FLO VILLASECA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-05-27', 357520.00, 'A'), + (1598, 3, 'FONT RIBAS ANTONI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196117, '2011-09-21', 145660.00, 'A'), + (1599, 3, 'LOPEZ BARAHONA MONICA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-08-03', 655740.00, 'A'), + (16, 1, 'FLOREZ PEREZ GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132572, '2011-03-30', 956370.00, 'A'), + (160, 1, 'GIRALDO MENDIVELSO MARTIN EDISSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-14', 429010.00, 'A'), + (1600, 3, 'SCATTIATI ALDO ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 215245, '2011-07-10', 841730.00, 'A'), + (1601, 3, 'MARONE CARLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 101179, '2011-06-14', 241420.00, 'A'), + (1602, 3, 'CHUVASHEVA ELENA ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 190393, '2011-08-21', 681900.00, 'A'), + (1603, 3, 'GIGLIO FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 122035, '2011-09-19', 685250.00, 'A'), + (1604, 3, 'JUSTO AMATE AGUSTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 174598, '2011-05-16', 380560.00, 'A'), + (1605, 3, 'GUARDABASSI FABIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 281044, '2011-07-26', 847060.00, 'A'), + (1606, 3, 'CALABRETTA FRAMCESCO ANTONIO MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 199862, '2011-08-22', 93590.00, 'A'), + (1607, 3, 'TARTARINI MASSIMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196234, '2011-05-10', 926800.00, 'A'), + (1608, 3, 'BOTTI GIAIME', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 231989, '2011-04-04', 353210.00, 'A'), + (1610, 3, 'PILERI ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 205040, '2011-09-01', 868590.00, 'A'), + (1612, 3, 'MARTIN GRACIA LUIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-07-27', 324320.00, 'A'), + (1613, 3, 'GRACIA MARTIN LUIS', 191821112, 'CRA 25 CALLE 100', '579@facebook.com', '2011-02-03', 198248, '2011-08-24', 463560.00, 'A'), + (1614, 3, 'SERRAT SESE JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-05-16', 344840.00, 'A'), + (1615, 3, 'DEL LAGO AMPELIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-06-29', 333510.00, 'A'), + (1616, 3, 'PERUGORRIA RODRIGUEZ JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 148511, '2011-06-06', 633040.00, 'A'), + (1617, 3, 'GIRAL CALVO IGNACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-09-19', 164670.00, 'A'), + (1618, 3, 'ALONSO CEBRIAN JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '253@terra.com.co', '2011-02-03', 188640, '2011-03-23', 924240.00, 'A'), + (162, 1, 'ARIZA PINEDA JOHN ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-11-27', 415710.00, 'A'), + (1620, 3, 'OLMEDO CARDENETE DOMINGO MIGUEL', 191821112, 'CRA 25 CALLE 100', '608@terra.com.co', '2011-02-03', 135397, '2011-09-03', 863200.00, 'A'), + (1622, 3, 'GIMENEZ BALDRES ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 182860, '2011-05-12', 82660.00, 'A'), + (1623, 3, 'NUNEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-05-23', 609950.00, 'A'), + (1624, 3, 'PENATE CASTRO WENCESLAO LORENZO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 153607, '2011-09-13', 801750.00, 'A'), + (1626, 3, 'ESCODA MIGUEL JOAN JOSEP', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-07-18', 489310.00, 'A'), + (1628, 3, 'ESTRADA CAPILLA ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-26', 81180.00, 'A'), + (163, 1, 'PERDOMO LOPEZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-05', 456910.00, 'A'), + (1630, 3, 'SUBIRAIS MARIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-08', 138700.00, 'A'), + (1632, 3, 'ENSENAT VELASCO JAIME LUIS', 191821112, 'CRA 25 CALLE 100', '687@gmail.com', '2011-02-03', 188640, '2011-04-12', 904560.00, 'A'), + (1633, 3, 'DIEZ POLANCO CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-05-24', 530410.00, 'A'), + (1636, 3, 'CUADRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-09-04', 688400.00, 'A'), + (1637, 3, 'UBRIC MUNOZ RAUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 98790, '2011-05-30', 139830.00, 'A'), + ('CELL4159', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (1638, 3, 'NEDDERMANN GUJO RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-31', 633990.00, 'A'), + (1639, 3, 'RENEDO ZALBA JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-03-13', 750430.00, 'A'), + (164, 1, 'JIMENEZ PADILLA JOHAN MARCEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-05', 37430.00, 'A'), + (1640, 3, 'FERNANDEZ MORENO DAVID', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-05-28', 850180.00, 'A'), + (1641, 3, 'VERGARA SERRANO JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-06-30', 999620.00, 'A'), + (1642, 3, 'MARTINEZ HUESO LUCAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 182860, '2011-06-29', 447570.00, 'A'), + (1643, 3, 'FRANCO POBLET JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-10-03', 238990.00, 'A'), + (1644, 3, 'MORA HIDALGO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-06', 852250.00, 'A'), + (1645, 3, 'GARCIA COSO EMILIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-09-14', 544260.00, 'A'), + (1646, 3, 'GIMENO ESCRIG ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 180124, '2011-09-20', 164580.00, 'A'), + (1647, 3, 'MORCILLO LOPEZ RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127538, '2011-04-16', 190090.00, 'A'), + (1648, 3, 'RUBIO BONET MANUEL', 191821112, 'CRA 25 CALLE 100', '252@facebook.com', '2011-02-03', 196234, '2011-05-25', 456740.00, 'A'), + (1649, 3, 'PRADO ABUIN FERNANDO ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-07-16', 713400.00, 'A'), + (165, 1, 'RAMIREZ PALMA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-10', 816420.00, 'A'), + (1650, 3, 'DE VEGA PUJOL GEMA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-08-01', 196780.00, 'A'), + (1651, 3, 'IBARGUEN ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2010-12-03', 843720.00, 'A'), + (1652, 3, 'IBARGUEN ALFREDO', 191821112, 'CRA 25 CALLE 100', '856@hotmail.com', '2011-02-03', 188640, '2011-06-18', 628250.00, 'A'), + (1654, 3, 'MATELLANES RODRIGUEZ NURIA PILAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-10-05', 165770.00, 'A'), + (1656, 3, 'VIDAURRAZAGA GUISOLA JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-08-08', 495320.00, 'A'), + (1658, 3, 'GOMEZ ULLATE MARIA ELENA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-04-12', 919090.00, 'A'), + (1659, 3, 'ALCAIDE ALONSO JUAN MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-02', 152430.00, 'A'), + (166, 1, 'TUSTANOSKI RODOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-12-03', 969790.00, 'A'), + (1660, 3, 'LARROY GARCIA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-14', 4900.00, 'A'), + (1661, 3, 'FERNANDEZ POYATO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-10', 567180.00, 'A'), + (1662, 3, 'TREVEJO PARDO JULIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-25', 821200.00, 'A'), + (1663, 3, 'GORGA CASSINELLI VICTOR DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-30', 404490.00, 'A'), + (1664, 3, 'MORUECO GONZALEZ JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-10-09', 558820.00, 'A'), + (1665, 3, 'IRURETA FERNANDEZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 214283, '2011-09-14', 580650.00, 'A'), + (1667, 3, 'TREVEJO PARDO JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-25', 392020.00, 'A'), + (1668, 3, 'BOCOS NUNEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-10-08', 279710.00, 'A'), + (1669, 3, 'LUIS CASTILLO JOSE AGUSTIN', 191821112, 'CRA 25 CALLE 100', '557@hotmail.es', '2011-02-03', 168202, '2011-06-16', 222500.00, 'A'), + (167, 1, 'HURTADO BELALCAZAR JOHN JADY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-08-17', 399710.00, 'A'), + (1670, 3, 'REDONDO GUTIERREZ EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-09-14', 273350.00, 'A'), + (1671, 3, 'MADARIAGA ALONSO RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-07-26', 699240.00, 'A'), + (1673, 3, 'REY GONZALEZ LUIS JAVIER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-07-26', 283190.00, 'A'), + (1676, 3, 'PEREZ ESTER ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-10-03', 274900.00, 'A'), + (1677, 3, 'GOMEZ-GRACIA HUERTA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-22', 112260.00, 'A'), + (1678, 3, 'DAMASO PUENTE DIEGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-25', 736600.00, 'A'), + (168, 1, 'JUAN PABLO MARTINEZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-15', 89160.00, 'A'), + (1680, 3, 'DIEZ GONZALEZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-17', 521280.00, 'A'), + (1681, 3, 'LOPEZ LOPEZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '853@yahoo.com', '2011-02-03', 196234, '2010-12-13', 567760.00, 'A'), + (1682, 3, 'MIRO LINARES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133442, '2011-09-03', 274930.00, 'A'), + (1683, 3, 'ROCA PINTADO MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-05-16', 671410.00, 'A'), + (1684, 3, 'GARCIA BARTOLOME HORACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-09-29', 532220.00, 'A'), + (1686, 3, 'BALMASEDA DE AHUMADA DIEZ JUAN LUIS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 168202, '2011-04-13', 637860.00, 'A'), + (1687, 3, 'FERNANDEZ IMAZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-04-10', 248580.00, 'A'), + (1688, 3, 'ELIAS CASTELLS FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-19', 329300.00, 'A'), + (1689, 3, 'ANIDO DIAZ DANIEL', 191821112, 'CRA 25 CALLE 100', '491@gmail.com', '2011-02-03', 188640, '2011-04-04', 900780.00, 'A'), + (1691, 3, 'GATELL ARIMONT MARIA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-17', 877700.00, 'A'), + (1692, 3, 'RIVERA MUNOZ ADONI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 211705, '2011-04-05', 840470.00, 'A'), + (1693, 3, 'LUNA LOPEZ ALICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-10-01', 569270.00, 'A'), + (1695, 3, 'HAMMOND ANN ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118021, '2011-05-17', 916770.00, 'A'), + (1698, 3, 'RODRIGUEZ PARAJA MARIA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-15', 649080.00, 'A'), + (1699, 3, 'RUIZ DIAZ JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-06-24', 359540.00, 'A'), + (17, 1, 'SUAREZ CUEVAS FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2011-08-31', 149640.00, 'A'), + (170, 1, 'MARROQUIN AVILA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-04', 965840.00, 'A'), + (1700, 3, 'BACCHELLI ORTEGA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126180, '2011-06-07', 850450.00, 'A'), + (1701, 3, 'IGLESIAS JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2010-09-14', 173630.00, 'A'), + (1702, 3, 'GUTIEZ CUEVAS JULIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2010-09-07', 316800.00, 'A'), + ('CELL4183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (1704, 3, 'CALDEIRO ZAMORA JESUS CARMELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-09', 365230.00, 'A'), + (1705, 3, 'ARBONA ABASCAL MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-02-27', 636760.00, 'A'), + (1706, 3, 'COHEN AMAR MOISES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196766, '2011-05-20', 88120.00, 'A'), + (1708, 3, 'FERNANDEZ COBOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2010-11-09', 387220.00, 'A'), + (1709, 3, 'CANAL VIVES JOAQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 196234, '2011-09-27', 345150.00, 'A'), + (171, 1, 'LADINO MORENO JAVIER ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-25', 89230.00, 'A'), + (1710, 5, 'GARCIA BERTRAND HECTOR', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-04-07', 564100.00, 'A'), + (1711, 1, 'CONSTANZA MARIN ESCOBAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127799, '2011-03-24', 785060.00, 'A'), + (1712, 1, 'NUNEZ BATALLA FAUSTINO JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-26', 232970.00, 'A'), + (1713, 3, 'VILORA LAZARO ERICK MARTIN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-26', 809690.00, 'A'), + (1715, 3, 'ELLIOT EDWARD JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-26', 318660.00, 'A'), + (1716, 3, 'ALCALDE ORTENO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-07-23', 544650.00, 'A'), + (1717, 3, 'CIARAVELLA STEFANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 231989, '2011-06-13', 767260.00, 'A'), + (1718, 3, 'URRA GONZALEZ PEDRO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-05-02', 202370.00, 'A'), + (172, 1, 'GUERRERO ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-15', 548610.00, 'A'), + (1720, 3, 'JIMENEZ RODRIGUEZ ANNET', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-05-25', 943140.00, 'A'), + (1721, 3, 'LESCAY CASTELLANOS ARNALDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', 585570.00, 'A'), + (1722, 3, 'OCHOA AGUILAR ELIADES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-25', 98410.00, 'A'), + (1723, 3, 'RODRIGUEZ NUNES JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 735340.00, 'A'), + (1724, 3, 'OCHOA BUSTAMANTE ELIADES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-25', 381480.00, 'A'), + (1725, 3, 'MARTINEZ NIEVES JOSE ANGEL', 191821112, 'CRA 25 CALLE 100', '919@yahoo.es', '2011-02-03', 127591, '2011-05-25', 701360.00, 'A'), + (1727, 3, 'DRAGONI ALAIN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-25', 707850.00, 'A'), + (1728, 3, 'FERNANDEZ LOPEZ MARCOS ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-25', 452090.00, 'A'), + (1729, 3, 'MATURELL ROMERO JORGE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-25', 136880.00, 'A'), + (173, 1, 'RUIZ CEBALLOS ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-04', 475380.00, 'A'), + (1730, 3, 'LARA CASTELLANO LENNIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-25', 328150.00, 'A'), + (1731, 3, 'GRAHAM CRISTOPHER DRAKE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 203079, '2011-06-27', 230120.00, 'A'), + (1732, 3, 'TORRE LUCA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-05-11', 166120.00, 'A'), + (1733, 3, 'OCHOA HIDALGO EGLIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 140250.00, 'A'), + (1734, 3, 'LOURERIO DELACROIX FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116511, '2011-09-28', 202900.00, 'A'), + (1736, 3, 'LEVIN FIORELLI ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116366, '2011-08-07', 360110.00, 'A'), + (1739, 3, 'BERRY R ALBERT', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 216125, '2011-08-16', 22170.00, 'A'), + (174, 1, 'NIETO PARRA SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-05-11', 731040.00, 'A'), + (1740, 3, 'MARSHALL ROBERT SHEPARD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 150159, '2011-03-09', 62860.00, 'A'), + (1741, 3, 'HENANDEZ ROY CHRISTOPHER JOHN PATRICK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 179614, '2011-09-26', 247780.00, 'A'), + (1742, 3, 'LANDRY GUILLAUME', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 232263, '2011-04-27', 50330.00, 'A'), + (1743, 3, 'VUCETIC ZELJKO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 232263, '2011-07-25', 508320.00, 'A'), + (1744, 3, 'DE JUANA CELASCO MARIA DEL CARMEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-04-16', 390620.00, 'A'), + (1745, 3, 'LABONTE RONALD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 269033, '2011-09-28', 428120.00, 'A'), + (1746, 3, 'NEWMAN PHILIP MARK', 191821112, 'CRA 25 CALLE 100', '557@gmail.com', '2011-02-03', 231373, '2011-07-25', 968750.00, 'A'), + (1747, 3, 'GRENIER MARIE PIERRE ', 191821112, 'CRA 25 CALLE 100', '409@facebook.com', '2011-02-03', 244158, '2011-07-03', 559370.00, 'A'), + (1749, 3, 'SHINDER GARY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 244158, '2011-07-25', 775000.00, 'A'), + (175, 3, 'GALLEGOS BASTIDAS CARLOS EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133211, '2011-08-10', 229090.00, 'A'), + (1750, 3, 'LOPEZ DE GOICOCHEA ZABALA FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-13', 203120.00, 'A'), + (1751, 3, 'CORRAL BELLON MANUEL', 191821112, 'CRA 25 CALLE 100', '538@yahoo.com', '2011-02-03', 177443, '2011-05-02', 690610.00, 'A'), + (1752, 3, 'DE SOLA SOLVAS JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-10-02', 843700.00, 'A'), + (1753, 3, 'GARCIA ALCALA DIAZ REGANON EVA MARIA', 191821112, 'CRA 25 CALLE 100', '398@yahoo.com', '2011-02-03', 118777, '2010-03-15', 146680.00, 'A'), + (1754, 3, 'BIELA VILIAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2011-08-16', 202290.00, 'A'), + (1755, 3, 'GUIOT CANO JUAN PATRICK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 232263, '2011-05-23', 571390.00, 'A'), + (1756, 3, 'JIMENEZ DIAZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-03-27', 250100.00, 'A'), + (1757, 3, 'FOX ELEANORE MAE', 191821112, 'CRA 25 CALLE 100', '117@yahoo.com', '2011-02-03', 190393, '2011-05-04', 536340.00, 'A'), + (1758, 3, 'TANG VAN SON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-05-07', 931400.00, 'A'), + (1759, 3, 'SUTTON PETER RONALD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 281673, '2011-06-01', 47960.00, 'A'), + (176, 1, 'GOMEZ IVAN', 191821112, 'CRA 25 CALLE 100', '438@yahoo.com.mx', '2011-02-03', 127591, '2008-04-09', 952310.00, 'A'), + (1762, 3, 'STOODY MATTHEW FRANCIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-21', 84320.00, 'A'), + (1763, 3, 'SEIX MASO ARNAU', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150699, '2011-05-24', 168880.00, 'A'), + (1764, 3, 'FERNANDEZ REDEL RAQUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-09-14', 591440.00, 'A'), + (1765, 3, 'PORCAR DESCALS VICENNTE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 176745, '2011-04-24', 450580.00, 'A'), + (1766, 3, 'PEREZ DE VILLEGAS TRILLO FIGUEROA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-05-17', 478560.00, 'A'), + ('CELL4198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (1767, 3, 'CELDRAN DEGANO ANGEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 196234, '2011-05-17', 41040.00, 'A'), + (1768, 3, 'TERRAGO MARI FERRAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-09-30', 769550.00, 'A'), + (1769, 3, 'SZUCHOVSZKY GERGELY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 250256, '2011-05-23', 724630.00, 'A'), + (177, 1, 'SEBASTIAN TORO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127443, '2011-07-14', 74270.00, 'A'), + (1771, 3, 'TORIBIO JOSE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 226612, '2011-09-04', 398570.00, 'A'), + (1772, 3, 'JOSE LUIS BAQUERA PEIRONCELLY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2010-10-19', 49360.00, 'A'), + (1773, 3, 'MADARIAGA VILLANUEVA MIGUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-04-12', 51090.00, 'A'), + (1774, 3, 'VILLENA BORREGO ANTONIO', 191821112, 'CRA 25 CALLE 100', '830@terra.com.co', '2011-02-03', 188640, '2011-07-19', 107400.00, 'A'), + (1776, 3, 'VILAR VILLALBA JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 180124, '2011-09-20', 596330.00, 'A'), + (1777, 3, 'CAGIGAL ORTIZ MACARENA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 214283, '2011-09-14', 830530.00, 'A'), + (1778, 3, 'KORBA ATTILA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 250256, '2011-09-27', 363650.00, 'A'), + (1779, 3, 'KORBA-ELIAS BARBARA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 250256, '2011-09-27', 326670.00, 'A'), + (178, 1, 'AMSILI COHEN HANAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-08-29', 514450.00, 'A'), + (1780, 3, 'PINDADO GOMEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 189053, '2011-04-26', 542400.00, 'A'), + (1781, 3, 'IBARRONDO GOMEZ GRACIA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-09-21', 731990.00, 'A'), + (1782, 3, 'MUNGUIRA GONZALEZ JUAN JULIAN', 191821112, 'CRA 25 CALLE 100', '54@hotmail.es', '2011-02-03', 188640, '2011-09-06', 32730.00, 'A'), + (1784, 3, 'LANDMAN PIETER MARINUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 294861, '2011-09-22', 740260.00, 'A'), + (1789, 3, 'SUAREZ AINARA ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-05-17', 503470.00, 'A'), + (179, 1, 'CARO JUNCO GUIOVANNY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-03', 349420.00, 'A'), + (1790, 3, 'MARTINEZ CHACON JOSE JOAQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-20', 592220.00, 'A'), + (1792, 3, 'MENDEZ DEL RION LUCIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 120639, '2011-06-16', 476910.00, 'A'), + (1793, 3, 'VERHULST LAMBERTUS CORNELIA FRANCISCUS ALPHONSUS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 295420, '2011-07-04', 32410.00, 'A'), + (1794, 3, 'YANEZ YAGUE JESUS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-07-10', 731290.00, 'A'), + (1796, 3, 'GOMEZ ZORRILLA AMATE JOSE MARIOA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-07-12', 602380.00, 'A'), + (1797, 3, 'LAIZ MORENO ENEKO', 191821112, 'CRA 25 CALLE 100', '219@gmail.com', '2011-02-03', 127591, '2011-08-05', 334150.00, 'A'), + (1798, 3, 'MORODO RUIZ RUBEN DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-09-14', 863620.00, 'A'), + (18, 1, 'GARZON VARGAS GUILLERMO FEDERICO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-29', 879110.00, 'A'), + (1800, 3, 'ALFARO FAUS MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-09-14', 987410.00, 'A'), + (1801, 3, 'MORRALLA VALLVERDU ENRIC', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 194601, '2011-07-18', 990070.00, 'A'), + (1802, 3, 'BALBASTRE TEJEDOR JUAN VICENTE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 182860, '2011-08-24', 988120.00, 'A'), + (1803, 3, 'MINGO REIZ FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2010-03-24', 970400.00, 'A'), + (1804, 3, 'IRURETA FERNANDEZ JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 214283, '2011-09-10', 887630.00, 'A'), + (1807, 3, 'NEBRO MELLADO JOSE JUAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 168996, '2011-08-15', 278540.00, 'A'), + (1808, 3, 'ALBERQUILLA OJEDA JOSE DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-09-27', 477070.00, 'A'), + (1809, 3, 'BUENDIA NORTE MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 131401, '2011-07-08', 549720.00, 'A'), + (181, 1, 'CASTELLANOS FLORES RODRIGO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-18', 970470.00, 'A'), + (1811, 3, 'HILBERT ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-08', 937830.00, 'A'), + (1812, 3, 'GONZALES PINTO COTERILLO ADOLFO LORENZO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 214283, '2011-09-10', 736970.00, 'A'), + (1813, 3, 'ARQUES ALVAREZ JOSE RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-04-04', 871360.00, 'A'), + (1817, 3, 'CLAUSELL LOW ROBERTO EMILIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2011-09-28', 348770.00, 'A'), + (1818, 3, 'BELICHON MARTINEZ JESUS ALVARO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-04-12', 327010.00, 'A'), + (182, 1, 'GUZMAN NIETO JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-20', 241130.00, 'A'), + (1821, 3, 'LINATI DE PUIG JORGE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 196234, '2011-05-18', 47210.00, 'A'), + (1823, 3, 'SINBARRERA ROMA ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196234, '2011-09-08', 598380.00, 'A'), + (1826, 2, 'JUANES GARATE BRUNO ', 191821112, 'CRA 25 CALLE 100', '301@gmail.com', '2011-02-03', 118777, '2011-08-21', 877650.00, 'A'), + (1827, 3, 'BOLOS GIMENO ROGELIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 200247, '2010-11-28', 555470.00, 'A'), + (1828, 3, 'ZABALA ASTIGARRAGA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-09-20', 144410.00, 'A'), + (1831, 3, 'MAPELLI CAFFARENA BORJA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 172381, '2011-09-04', 58200.00, 'A'), + (1833, 3, 'LARMONIE LESLIE MARTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-30', 604840.00, 'A'), + (1834, 3, 'WILLEMS ROBERT-JAN MICHAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 288531, '2011-09-05', 756530.00, 'A'), + (1835, 3, 'ANJEMA LAURENS JAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-08-29', 968140.00, 'A'), + (1836, 3, 'VERHULST HENRICUS LAMBERTUS MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 295420, '2011-04-03', 571100.00, 'A'), + (1837, 3, 'PIERROT JOZEF MARIE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 288733, '2011-05-18', 951100.00, 'A'), + (1838, 3, 'EIKELBOOM HIDDE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 42210.00, 'A'), + (1839, 3, 'TAMBINI GOMEZ DE MUNG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 180063, '2011-04-24', 357740.00, 'A'), + (1840, 3, 'MAGANA PEREZ GERARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-09-28', 662060.00, 'A'), + (1841, 3, 'COURTOISIE BEYHAUT RAFAEL JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116366, '2011-09-05', 237070.00, 'A'), + (1842, 3, 'ROJAS BENJAMIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-13', 199170.00, 'A'), + (1843, 3, 'GARCIA VICENTE EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 150699, '2011-08-10', 284650.00, 'A'), + ('CELL4291', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (1844, 3, 'CESTTI LOPEZ RAFAEL GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 144215, '2011-09-27', 825750.00, 'A'), + (1845, 3, 'URTECHO LOPEZ ARMANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 139272, '2011-09-28', 274800.00, 'A'), + (1846, 3, 'SEGURA ESPINOZA ARMANDO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 135360, '2011-09-28', 896730.00, 'A'), + (1847, 3, 'GONZALEZ VEGA LUIS PASTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-05-18', 659240.00, 'A'), + (185, 1, 'AYALA CARDENAS NELSON MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 855960.00, 'A'), + (1850, 3, 'ROTZINGER ROA KLAUS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 116366, '2011-09-12', 444250.00, 'A'), + (1851, 3, 'FRANCO DE LEON SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116366, '2011-04-26', 63840.00, 'A'), + (1852, 3, 'RIVAS GAGNONI LUIS ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 135360, '2011-05-18', 986440.00, 'A'), + (1853, 3, 'BARRETO VELASQUEZ JOEL FERNANDO', 191821112, 'CRA 25 CALLE 100', '104@hotmail.es', '2011-02-03', 116511, '2011-04-27', 740670.00, 'A'), + (1854, 3, 'SEVILLA AMAYA ORLANDO', 191821112, 'CRA 25 CALLE 100', '264@yahoo.com', '2011-02-03', 136995, '2011-05-18', 744020.00, 'A'), + (1855, 3, 'VALFRE BRALICH ELEONORA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116366, '2011-06-06', 498080.00, 'A'), + (1857, 3, 'URDANETA DIAMANTES DIEGO ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-09-23', 797590.00, 'A'), + (1858, 3, 'RAMIREZ ALVARADO ROBERT JESUS', 191821112, 'CRA 25 CALLE 100', '290@yahoo.com.mx', '2011-02-03', 127591, '2011-09-18', 212850.00, 'A'), + (1859, 3, 'GUTTNER DENNIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-25', 671470.00, 'A'), + (186, 1, 'CARRASCO SUESCUN ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-15', 36620.00, 'A'), + (1861, 3, 'HEGEMANN JOACHIM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-25', 579710.00, 'A'), + (1862, 3, 'MALCHER INGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 292243, '2011-06-23', 742060.00, 'A'), + (1864, 3, 'HOFFMEISTER MALTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128206, '2011-09-06', 629770.00, 'A'), + (1865, 3, 'BOHME ALEXANDRA LUCE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-14', 235260.00, 'A'), + (1866, 3, 'HAMMAN FRANK THOMAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-13', 286980.00, 'A'), + (1867, 3, 'GOPPERT MARKUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-09-05', 729150.00, 'A'), + (1868, 3, 'BISCARO CAROLINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-16', 784790.00, 'A'), + (1869, 3, 'MASCHAT SEBASTIAN STEPHAN ANDREAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-02-03', 736520.00, 'A'), + (1870, 3, 'WALTHER DANIEL CLAUS PETER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-24', 328220.00, 'A'), + (1871, 3, 'NENTWIG DANIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 289697, '2011-02-03', 431550.00, 'A'), + (1872, 3, 'KARUTZ ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127662, '2011-03-17', 173090.00, 'A'), + (1875, 3, 'KAY KUNNE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 289697, '2011-03-18', 961400.00, 'A'), + (1876, 2, 'SCHLUMPF IVANA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 245206, '2011-03-28', 802690.00, 'A'), + (1877, 3, 'RODRIGUEZ BUSTILLO CONSUELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 139067, '2011-03-21', 129280.00, 'A'), + (1878, 1, 'REHWALDT RICHARD ULRICH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289697, '2009-10-25', 238320.00, 'A'), + (1880, 3, 'FONSECA BEHRENS MANUELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-18', 303810.00, 'A'), + (1881, 3, 'VOGEL MIRKO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-09', 107790.00, 'A'), + (1882, 3, 'WU WEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 289697, '2011-03-04', 627520.00, 'A'), + (1884, 3, 'KADOLSKY ANKE SIGRID', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 289697, '2010-10-07', 188560.00, 'A'), + (1885, 3, 'PFLUCKER PLENGE CARLOS HERNAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 239124, '2011-08-15', 500140.00, 'A'), + (1886, 3, 'PENA LAGOS MELENIA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 935020.00, 'A'), + (1887, 3, 'CALVANO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-05-02', 174690.00, 'A'), + (1888, 3, 'KUHLEN LOTHAR WILHELM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 289232, '2011-08-30', 68390.00, 'A'), + (1889, 3, 'QUIJANO RICO SOFIA VICTORIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 221939, '2011-06-13', 817890.00, 'A'), + (189, 1, 'GOMEZ TRUJILLO SERGIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-17', 985980.00, 'A'), + (1890, 3, 'SCHILBERZ KARIN', 191821112, 'CRA 25 CALLE 100', '405@facebook.com', '2011-02-03', 287570, '2011-06-23', 884260.00, 'A'), + (1891, 3, 'SCHILBERZ SOPHIE CAHRLOTTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 287570, '2011-06-23', 967640.00, 'A'), + (1892, 3, 'MOLINA MOLINA MILAGRO DE SUYAPA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 139844, '2011-07-26', 185410.00, 'A'), + (1893, 3, 'BARRIENTOS ESCALANTE RAFAEL ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 139067, '2011-05-18', 24110.00, 'A'), + (1895, 3, 'ENGELS FRANZBERNARD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 292243, '2011-07-01', 749430.00, 'A'), + (1896, 3, 'FRIEDHOFF SVEN WILHEM', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 289697, '2010-10-31', 54090.00, 'A'), + (1897, 3, 'BARTELS CHRISTIAN JOHAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-07-25', 22160.00, 'A'), + (1898, 3, 'NILS REMMEL', 191821112, 'CRA 25 CALLE 100', '214@gmail.com', '2011-02-03', 256231, '2011-08-05', 948530.00, 'A'), + (1899, 3, 'DR SCHEIBE MATTHIAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 252431, '2011-09-26', 676150.00, 'A'), + (19, 1, 'RIANO ROMERO ALBERTO ELIAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-12-14', 946630.00, 'A'), + (190, 1, 'LLOREDA ORTIZ FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-12-20', 30860.00, 'A'), + (1900, 3, 'CARRASCO CATERIANO PEDRO', 191821112, 'CRA 25 CALLE 100', '255@hotmail.com', '2011-02-03', 286578, '2011-05-02', 535180.00, 'A'), + (1901, 3, 'ROSENBER DIRK PETER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-29', 647450.00, 'A'), + (1902, 3, 'LAUBACH JOHANNES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289697, '2011-05-01', 631720.00, 'A'), + (1904, 3, 'GRUND STEFAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 256231, '2011-08-05', 185990.00, 'A'), + (1905, 3, 'GRUND BEATE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 256231, '2011-08-05', 281280.00, 'A'), + (1906, 3, 'CORZO PAULA MIRIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 180063, '2011-08-02', 848400.00, 'A'), + (1907, 3, 'OESTERHAUS CORNELIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 256231, '2011-03-16', 398170.00, 'A'), + (1908, 1, 'JUAN SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-05-12', 445660.00, 'A'), + (1909, 3, 'VAN ZIJL CHRISTIAN ANDREAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 286785, '2011-09-24', 33800.00, 'A'), + (191, 1, 'CASTANEDA CABALLERO JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-28', 196370.00, 'A'), + (1910, 3, 'LORZA RUIZ MYRIAM ESPERANZA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-29', 831990.00, 'A'), + (192, 1, 'ZEA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-09', 889270.00, 'A'), + (193, 1, 'VELEZ VICTOR MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-22', 857250.00, 'A'), + (194, 1, 'ARCINIEGAS GOMEZ ISMAEL', 191821112, 'CRA 25 CALLE 100', '937@hotmail.com', '2011-02-03', 127591, '2011-05-18', 618450.00, 'A'), + (195, 1, 'LINAREZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-12', 520470.00, 'A'), + (1952, 3, 'BERND ERNST HEINZ SCHUNEMANN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 255673, '2011-09-04', 796820.00, 'A'), + (1953, 3, 'BUCHNER RICHARD ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-17', 808430.00, 'A'), + (1954, 3, 'CHO YONG BEOM', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 173192, '2011-02-07', 651670.00, 'A'), + (1955, 3, 'BERNECKER WALTER LUDWIG', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 256231, '2011-04-03', 833080.00, 'A'), + (1956, 3, 'SCHIERENBECK THOMAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 256231, '2011-05-03', 210380.00, 'A'), + (1957, 3, 'STEGMANN WOLF DIETER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-08-27', 552650.00, 'A'), + (1958, 3, 'LEBAGE GONZALEZ VALENTINA CECILIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 131272, '2011-07-29', 132130.00, 'A'), + (1959, 3, 'CABRERA MACCHI JOSE ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 180063, '2011-08-02', 2700.00, 'A'), + (196, 1, 'OTERO BERNAL ALVARO ERNESTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-04-29', 747030.00, 'A'), + (1960, 3, 'KOO BONKI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-15', 617110.00, 'A'), + (1961, 3, 'JODJAHN DE CARVALHO BEIRAL FLAVIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-07-05', 77460.00, 'A'), + (1963, 3, 'VIEIRA ROCHA MARQUES ELIANE TEREZINHA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118402, '2011-09-13', 447430.00, 'A'), + (1965, 3, 'KELLEN CRISTINA GATTI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126180, '2011-07-01', 804020.00, 'A'), + (1966, 3, 'CHAVEZ MARLON TENORIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-25', 132310.00, 'A'), + (1967, 3, 'SERGIO COZZI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 125750, '2011-08-28', 249500.00, 'A'), + (1968, 3, 'REZENDE LIMA JOSE MARCIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-08-23', 850570.00, 'A'), + (1969, 3, 'RAMOS PEDRO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118942, '2011-08-03', 504330.00, 'A'), + (1972, 3, 'ADAMS THOMAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2011-08-11', 774000.00, 'A'), + (1973, 3, 'WALESKA NUCINI BOGO ANDREA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-23', 859690.00, 'A'), + (1974, 3, 'GERMANO PAULO BUNN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118439, '2011-08-30', 976440.00, 'A'), + (1975, 3, 'CALDEIRA FILHO RUBENS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118942, '2011-07-18', 303120.00, 'A'), + (1976, 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 119814, '2011-09-08', 586290.00, 'A'), + (1977, 3, 'GAMAS MARIA CRISTINA ALVES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-09-19', 22070.00, 'A'), + (1979, 3, 'PORTO WEBER FERREIRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-07', 691340.00, 'A'), + (1980, 3, 'FONSECA LAURO PINTO', 191821112, 'CRA 25 CALLE 100', '104@hotmail.es', '2011-02-03', 127591, '2011-08-16', 402140.00, 'A'), + (1981, 3, 'DUARTE ELENA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-06-15', 936710.00, 'A'), + (1983, 3, 'CECHINEL CRISTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118942, '2011-06-12', 575530.00, 'A'), + (1984, 3, 'BATISTA PINHERO JOAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-04-25', 446250.00, 'A'), + (1987, 1, 'ISRAEL JOSE MAXWELL', 191821112, 'CRA 25 CALLE 100', '936@gmail.com', '2011-02-03', 125894, '2011-07-04', 408350.00, 'A'), + (1988, 3, 'BATISTA CARVALHO RODRIGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118864, '2011-09-19', 488410.00, 'A'), + (1989, 3, 'RENO DA SILVEIRA EDNEIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118867, '2011-05-03', 216990.00, 'A'), + (199, 1, 'BASTO CORREA FERNANDO ANTONIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-21', 616860.00, 'A'), + (1990, 3, 'SEIDLER KOHNERT G TEIXEIRA CHRISTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 119814, '2011-08-23', 619730.00, 'A'), + (1992, 3, 'GUIMARAES COSTA LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-04-20', 379090.00, 'A'), + (1993, 3, 'BOTTA RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2011-09-16', 552510.00, 'A'), + (1994, 3, 'ARAUJO DA SILVA MARCELO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 125666, '2011-08-03', 625260.00, 'A'), + (1995, 3, 'DA SILVA FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118864, '2011-04-14', 468760.00, 'A'), + (1996, 3, 'MANFIO RODRIGUEZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '974@yahoo.com', '2011-02-03', 118777, '2011-03-23', 468040.00, 'A'), + (1997, 3, 'NEIVA MORENO DE SOUZA CRISTIANE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-24', 933900.00, 'A'), + (2, 3, 'CHEEVER MICHAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-04', 560090.00, 'I'), + (2000, 3, 'ROCHA GUSTAVO ADRIANO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118288, '2011-07-25', 830340.00, 'A'), + (2001, 3, 'DE ANDRADE CARVALHO VIRGINIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-08-11', 575760.00, 'A'), + (2002, 3, 'CAVALCANTI PIERECK GUILHERME', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 180063, '2011-08-01', 387770.00, 'A'), + (2004, 3, 'HOEGEMANN RAMOS CARLOS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-04', 894550.00, 'A'), + (201, 1, 'LUIS FERNANDO AREVALO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-17', 156730.00, 'A'), + (2010, 3, 'GOMES BUCHALA JORGE FERNANDO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-23', 314800.00, 'A'), + (2011, 3, 'MARTINS SIMAIKA CATIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-06-01', 155020.00, 'A'), + (2012, 3, 'MONICA CASECA BUENO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-05-16', 830710.00, 'A'), + (2013, 3, 'ALBERTAL MARCELO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118000, '2010-09-10', 688480.00, 'A'), + (2015, 3, 'GOMES CANTARELLI JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118761, '2011-01-11', 685940.00, 'A'), + (2016, 3, 'CADETTI GARBELLINI ENILICE CRISTINA ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-11', 578870.00, 'A'), + (2017, 3, 'SPIELKAMP KLAUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 150699, '2011-03-28', 836540.00, 'A'), + (2019, 3, 'GARES HENRI PHILIPPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 135190, '2011-04-05', 720730.00, 'A'), + ('CELL4308', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (202, 1, 'LUCIO CHAUSTRE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-19', 179240.00, 'A'), + (2023, 3, 'GRECO DE RESENDELUIZ ALFREDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 119814, '2011-04-25', 647940.00, 'A'), + (2024, 3, 'CORTINA EVANDRO JOAO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118922, '2011-05-12', 153970.00, 'A'), + (2026, 3, 'BASQUES MOURA GERALDO CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 119814, '2011-09-07', 668250.00, 'A'), + (2027, 3, 'DA SILVA VALDECIR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 863150.00, 'A'), + (2028, 3, 'CHI MOW YUNG IVAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-21', 311000.00, 'A'), + (2029, 3, 'YUNG MYRA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-21', 965570.00, 'A'), + (2030, 3, 'MARTINS RAMALHO PATRICIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-03-23', 894830.00, 'A'), + (2031, 3, 'DE LEMOS RIBEIRO GILBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118951, '2011-07-29', 577430.00, 'A'), + (2032, 3, 'AIROLDI CLAUDIO', 191821112, 'CRA 25 CALLE 100', '973@terra.com.co', '2011-02-03', 127591, '2011-09-28', 202650.00, 'A'), + (2033, 3, 'ARRUDA MENDES HEILMANN IONE TEREZA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 120773, '2011-09-07', 280990.00, 'A'), + (2034, 3, 'TAVARES DE CARVALHO EDUARDO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118942, '2011-08-03', 796980.00, 'A'), + (2036, 3, 'FERNANDES ALARCON RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-08-28', 318730.00, 'A'), + (2037, 3, 'SUCHODOLKI SERGIO GUSMAO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 190393, '2011-07-13', 167870.00, 'A'), + (2039, 3, 'ESTEVES MARCAL MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-02-24', 912100.00, 'A'), + (2040, 3, 'CORSI LUIZ ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-03-25', 911080.00, 'A'), + (2041, 3, 'LOPEZ MONICA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118795, '2011-05-03', 819090.00, 'A'), + (2042, 3, 'QUINTANILHA LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-16', 362230.00, 'A'), + (2043, 3, 'DE CARLI BRUNO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-05-03', 353890.00, 'A'), + (2045, 3, 'MARINO FRANCA MARILIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-07-04', 352060.00, 'A'), + (2048, 3, 'VOIGT ALPHONSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118439, '2010-11-22', 384150.00, 'A'), + (2049, 3, 'ALENCAR ARIMA TATIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-05-23', 408590.00, 'A'), + (2050, 3, 'LINIS DE ALMEIDA NEILSON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 125666, '2011-08-03', 890480.00, 'A'), + (2051, 3, 'PINHEIRO DE CASTRO BENETI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-08-09', 226640.00, 'A'), + (2052, 3, 'ALVES DO LAGO HELMANN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118942, '2011-08-01', 461770.00, 'A'), + (2053, 3, 'OLIVO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-22', 628900.00, 'A'), + (2054, 3, 'WILLIAM DOMINGUES SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118085, '2011-08-23', 759220.00, 'A'), + (2055, 3, 'DE SOUZA MENEZES KLEBER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-04-25', 909400.00, 'A'), + (2056, 3, 'CABRAL NEIDE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-16', 269340.00, 'A'), + (2057, 3, 'RODRIGUES RENATO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-06-15', 618500.00, 'A'), + (2058, 3, 'SPADALE PEDRO JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-08-03', 284490.00, 'A'), + (2059, 3, 'MARTINS DE ALMEIDA GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-09-28', 566920.00, 'A'), + (206, 1, 'TORRES HEBER MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-01-29', 643210.00, 'A'), + (2060, 3, 'IKUNO CELINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-06-08', 981170.00, 'A'), + (2061, 3, 'DAL BELLO FABIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129499, '2011-08-20', 205050.00, 'A'), + (2062, 3, 'BENATES ADRIANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-23', 81770.00, 'A'), + (2063, 3, 'CARDOSO ALEXANDRE ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 793690.00, 'A'), + (2064, 3, 'ZANIOLO DE SOUZA CARLOS HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-09-19', 723130.00, 'A'), + (2065, 3, 'DA SILVA LUIZ SIDNEI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-03-30', 234590.00, 'A'), + (2066, 3, 'RUFATO DE SOUZA LUIZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-08-29', 3560.00, 'A'), + (2067, 3, 'DE MEDEIROS LUCIANA', 191821112, 'CRA 25 CALLE 100', '994@yahoo.com.mx', '2011-02-03', 118777, '2011-09-10', 314020.00, 'A'), + (2068, 3, 'WOLFF PIAZERA DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118255, '2011-06-15', 559430.00, 'A'), + (2069, 3, 'DA SILVA FORTUNA MARINA CLAUDIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-09-23', 855100.00, 'A'), + (2070, 3, 'PEREIRA BORGES LUCILA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-26', 597210.00, 'A'), + (2072, 3, 'PORROZZI DE ALMEIDA RENATO', 191821112, 'CRA 25 CALLE 100', '812@hotmail.es', '2011-02-03', 127591, '2011-06-13', 312120.00, 'A'), + (2073, 3, 'KALICHSZTEINN RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-03-23', 298330.00, 'A'), + (2074, 3, 'OCCHIALINI GUIMARAES ANA PAULA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2011-08-03', 555310.00, 'A'), + (2075, 3, 'MAZZUCO FONTES LUIZ ROBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-05-23', 881570.00, 'A'), + (2078, 3, 'TRAN DINH VAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 98560.00, 'A'), + (2079, 3, 'NGUYEN THI LE YEN', 191821112, 'CRA 25 CALLE 100', '249@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 298200.00, 'A'), + (208, 1, 'GOMEZ GONZALEZ JORGE MARIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-12', 889010.00, 'A'), + (2080, 3, 'MILA DE LA ROCA JOHANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-01-26', 195350.00, 'A'), + (2081, 3, 'RODRIGUEZ DE FLORES LOURDES MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-16', 82120.00, 'A'), + (2082, 3, 'FLORES PEREZ FRANCISCO GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-23', 824550.00, 'A'), + (2083, 3, 'FRAGACHAN BETANCOUT FRANCISCO JO SE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-07-04', 876400.00, 'A'), + (2084, 3, 'GAFARO MOLINA CARLOS JULIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-22', 908370.00, 'A'), + (2085, 3, 'CACERES REYES JORGEANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-08-11', 912630.00, 'A'), + (2086, 3, 'ALVAREZ RODRIGUEZ VICTOR ROGELIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2011-05-23', 838040.00, 'A'), + (2087, 3, 'GARCES ALVARADO JHAGEIMA JOSEFINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-04-29', 452320.00, 'A'), + ('CELL4324', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (2089, 3, 'FAVREAU CHOLLET JEAN PIERRE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132554, '2011-05-27', 380470.00, 'A'), + (209, 1, 'CRUZ RODRIGEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '316@hotmail.es', '2011-02-03', 127591, '2011-06-28', 953870.00, 'A'), + (2090, 3, 'GARAY LLUCH URBI ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-03-13', 659870.00, 'A'), + (2091, 3, 'LETICIA LETICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-07', 157950.00, 'A'), + (2092, 3, 'VELASQUEZ RODULFO RAMON ARISTIDES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-23', 810140.00, 'A'), + (2093, 3, 'PEREZ EDGAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-06', 576850.00, 'A'), + (2094, 3, 'PEREZ MARIELA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-07', 453840.00, 'A'), + (2095, 3, 'PETRUZZI MANGIARANO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132958, '2011-03-27', 538650.00, 'A'), + (2096, 3, 'LINARES GORI RICARDO RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-12', 331730.00, 'A'), + (2097, 3, 'LAIRET OLIVEROS CAROLINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-25', 42680.00, 'A'), + (2099, 3, 'JIMENEZ GARCIA FERNANDO JOSE', 191821112, 'CRA 25 CALLE 100', '78@hotmail.es', '2011-02-03', 132958, '2011-07-21', 963110.00, 'A'), + (21, 1, 'RUBIO ESCOBAR RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-05-21', 639240.00, 'A'), + (2100, 3, 'ZABALA MILAGROS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-20', 160860.00, 'A'), + (2101, 3, 'VASQUEZ CRUZ NICOLEDANIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-07-31', 914990.00, 'A'), + (2102, 3, 'REYES FIGUERA RAMON ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126674, '2011-04-03', 92340.00, 'A'), + (2104, 3, 'RAMIREZ JIMENEZ MARYLIN CAROLINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2011-06-14', 306760.00, 'A'), + (2105, 3, 'TELLES GUILLEN INNA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-09-07', 383520.00, 'A'), + (2106, 3, 'ALVAREZ CARMEN MARINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-07-20', 997340.00, 'A'), + (2107, 3, 'MARTINEZ YRIGOYEN NABUCODONOSOR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-07-21', 836110.00, 'A'), + (2108, 5, 'FERNANDEZ RUIZ IGNACIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-01', 188530.00, 'A'), + (211, 1, 'RIVEROS GARCIA JORGE IVAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-01', 650050.00, 'A'), + (2110, 3, 'CACERES REYES JORGE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-08-08', 606030.00, 'A'), + (2111, 3, 'GELFI MARCOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 199862, '2011-05-17', 727190.00, 'A'), + (2112, 3, 'CERDA CASTILLO CARMEN GLORIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', 817870.00, 'A'), + (2113, 3, 'RANGEL FERNANDEZ LEONARDO JOSE', 191821112, 'CRA 25 CALLE 100', '856@hotmail.com', '2011-02-03', 133211, '2011-05-16', 907750.00, 'A'), + (2114, 3, 'ROTHSCHILD VARGAS MICHAEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-02-05', 85170.00, 'A'), + (2115, 3, 'RUIZ GRATEROL INGRID JOHANNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-05-16', 702600.00, 'A'), + (2116, 2, 'DEARMAS ALBERTO FERNANDO ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-07-19', 257500.00, 'A'), + (2117, 3, 'BOSCAN ARRIETA ERICK HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-07-12', 179680.00, 'A'), + (2118, 3, 'GUILLEN DE TELLES NENCY JOSEFINA', 191821112, 'CRA 25 CALLE 100', '56@facebook.com', '2011-02-03', 132958, '2011-09-07', 125900.00, 'A'), + (212, 1, 'BUSTAMANTE BUSTAMANTE CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-26', 943260.00, 'A'), + (2120, 2, 'MARK ANTHONY STUART', 191821112, 'CRA 25 CALLE 100', '661@terra.com.co', '2011-02-03', 127591, '2011-06-26', 74600.00, 'A'), + (2122, 3, 'SCOCOZZA GIOVANNA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 190526, '2011-09-23', 284220.00, 'A'), + (2125, 3, 'CHAVES MOLINA JULIO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132165, '2011-09-22', 295360.00, 'A'), + (2127, 3, 'BERNARDES DE SOUZA TONIATI VIRGINIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-30', 565090.00, 'A'), + (2129, 2, 'BRIAN DAVIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 78460.00, 'A'), + (213, 1, 'PAREJO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-11', 766120.00, 'A'), + (2131, 3, 'DE OLIVEIRA LOPES REGINALDO LAZARO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-05', 404910.00, 'A'), + (2132, 3, 'DE MELO MING AZEVEDO PAULO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-10-05', 440370.00, 'A'), + (2137, 3, 'SILVA JORGE ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-05', 230570.00, 'A'), + (214, 1, 'CADENA RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-08', 840.00, 'A'), + (2142, 3, 'VIEIRA VEIGA PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-30', 85330.00, 'A'), + (2144, 3, 'ESCRIBANO LEONARDA DEL VALLE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-03-24', 941440.00, 'A'), + (2145, 3, 'RODRIGUEZ MENENDEZ BERNARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 148511, '2011-08-02', 588740.00, 'A'), + (2146, 3, 'GONZALEZ COURET DANIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 148511, '2011-08-09', 119380.00, 'A'), + (2147, 3, 'GARCIA SOTO WILLIAM', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 135360, '2011-05-18', 830660.00, 'A'), + (2148, 3, 'MENESES ORELLANA RICARDO TOMAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-06-13', 795200.00, 'A'), + (2149, 3, 'GUEVARA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-27', 483990.00, 'A'), + (215, 1, 'BELTRAN PINZON JUAN CARLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-08', 705860.00, 'A'), + (2151, 2, 'LLANES GARRIDO JAVIER ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-30', 719750.00, 'A'), + (2152, 3, 'CHAVARRIA CHAVES RAFAEL ADRIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132165, '2011-09-20', 495720.00, 'A'), + (2153, 2, 'MILBERT ANDREASPETER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-10', 319370.00, 'A'), + (2154, 2, 'GOMEZ SILVA LOZANO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127300, '2011-05-30', 109670.00, 'A'), + (2156, 3, 'WINTON ROBERT DOUGLAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 115551, '2011-08-08', 622290.00, 'A'), + (2157, 2, 'ROMERO PINA MANUEL GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-05', 340650.00, 'A'), + (2158, 3, 'KARWALSKI MATTHEW REECE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117229, '2011-08-29', 836380.00, 'A'), + (2159, 2, 'KIM JUNG SIK ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-08', 159950.00, 'A'), + (216, 1, 'MARTINEZ VALBUENA JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 526750.00, 'A'), + (2160, 3, 'AGAR ROBERT ALEXANDER', 191821112, 'CRA 25 CALLE 100', '81@hotmail.es', '2011-02-03', 116862, '2011-06-11', 290620.00, 'A'), + (2161, 3, 'IGLESIAS EDGAR ALEXIS', 191821112, 'CRA 25 CALLE 100', '645@facebook.com', '2011-02-03', 131272, '2011-04-04', 973240.00, 'A'), + (2163, 2, 'NOAIN MORENO CECILIA KARIM ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-22', 51950.00, 'A'), + (2164, 2, 'FIGUEROA HEBEL ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-26', 276760.00, 'A'), + (2166, 5, 'FRANDBERG DAN RICHARD VERNER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 134022, '2011-04-06', 309480.00, 'A'), + (2168, 2, 'CONTRERAS LILLO EDUARDO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-27', 389320.00, 'A'), + (2169, 2, 'BLANCO VALLE RICARDO ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-07-13', 355950.00, 'A'), + (2171, 2, 'BELTRAN ZAVALA JIMI ALFONSO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126674, '2011-08-22', 991000.00, 'A'), + (2172, 2, 'RAMIRO OREGUI JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-04-27', 119700.00, 'A'), + (2175, 2, 'FENG PUYO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 302172, '2011-10-07', 965660.00, 'A'), + (2176, 3, 'CLERICI GUIDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 116366, '2011-08-30', 522970.00, 'A'), + (2177, 1, 'SEIJAS GUNTER LUIS MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-02', 717890.00, 'A'), + (2178, 2, 'SHOSHANI MOSHE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-13', 20520.00, 'A'), + (218, 3, 'HUCHICHALEO ARSENDIGA FRANCISCA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-05', 690.00, 'A'), + (2181, 2, 'DOMINGO BARTOLOME LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '173@terra.com.co', '2011-02-03', 127591, '2011-04-18', 569030.00, 'A'), + (2182, 3, 'GONZALEZ RIJO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-10-02', 795610.00, 'A'), + (2183, 2, 'ANDROVICH MORENO LIZETH LILIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127300, '2011-10-10', 270970.00, 'A'), + (2184, 2, 'ARREAZA LUGO JESUS ALFREDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', 968030.00, 'A'), + (2185, 2, 'NAVEDA CANELON KATHERINE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132775, '2011-09-14', 27250.00, 'A'), + (2189, 2, 'LUGO BEHRENS DENISE SOFIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-08', 253980.00, 'A'), + (2190, 2, 'ERICA ROSE MOLDENHAUVER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-25', 175480.00, 'A'), + (2192, 2, 'SOLORZANO GARCIA ANDREINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 50790.00, 'A'), + (2193, 3, 'DE LA COSTE MARIA CAROLINA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-26', 907640.00, 'A'), + (2194, 2, 'MARTINEZ DIAZ JUAN JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-08', 385810.00, 'A'), + (2195, 2, 'GALARRAGA ECHEVERRIA DAYEN ALI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-13', 206150.00, 'A'), + (2196, 2, 'GUTIERREZ RAMIREZ HECTOR JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133211, '2011-06-07', 873330.00, 'A'), + (2197, 2, 'LOPEZ GONZALEZ SILVIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127662, '2011-09-01', 748170.00, 'A'), + (2198, 2, 'SEGARES LUTZ JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-07', 120880.00, 'A'), + (2199, 2, 'NADER MARTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127538, '2011-08-12', 359880.00, 'A'), + (22, 1, 'CARDOZO AMAYA JORGE HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-25', 908720.00, 'A'), + (2200, 3, 'NATERA BERMUDEZ OSWALDO JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-18', 436740.00, 'A'), + (2201, 2, 'COSTA RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 150699, '2011-09-01', 104090.00, 'A'), + (2202, 5, 'GRUNDY VALENZUELA ALAN PATRICK', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-08', 210230.00, 'A'), + (2203, 2, 'MONTENEGRO DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-26', 738890.00, 'A'), + (2204, 2, 'TAMAI BUNGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-24', 63730.00, 'A'), + (2205, 5, 'VINHAS FORTUNA EDSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-09-23', 102010.00, 'A'), + (2206, 2, 'RUIZ ERBS MARIO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-07-19', 318860.00, 'A'), + (2207, 2, 'VENTURA TINEO MARCEL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', 288240.00, 'A'), + (2210, 2, 'RAMIREZ GUZMAN RICARDO JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-28', 338740.00, 'A'), + (2211, 2, 'STERNBERG GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2011-09-04', 18070.00, 'A'), + (2212, 2, 'MARTELLO ALEJOS ROGER ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127443, '2011-06-20', 74120.00, 'A'), + (2213, 2, 'CASTANEDA RAFAEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 316410.00, 'A'), + (2214, 2, 'LIMON MARTINEZ WILBERT DE JESUS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128904, '2011-09-19', 359690.00, 'A'), + (2215, 2, 'PEREZ HERNANDEZ MONICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133211, '2011-05-23', 849240.00, 'A'), + (2216, 2, 'AWAD LOBATO RICARDO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '853@hotmail.com', '2011-02-03', 127591, '2011-04-12', 167100.00, 'A'), + (2217, 2, 'CEPEDA VANEGAS ENDER ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-08-22', 287770.00, 'A'), + (2218, 2, 'PEREZ CHIQUIN HECTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132572, '2011-04-13', 937580.00, 'A'), + (2220, 5, 'FRANCO DELGADILLO RONALD FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132775, '2011-09-16', 310190.00, 'A'), + (2222, 2, 'ALCAIDE ALONSO JUAN MIGUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-02', 455360.00, 'A'), + (2223, 3, 'BROWNING BENJAMIN MARK', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-09', 45230.00, 'A'), + (2225, 3, 'HARWOO BENJAMIN JOEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 164620.00, 'A'), + (2226, 3, 'HOEY TIMOTHY ROSS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-09', 242910.00, 'A'), + (2227, 3, 'FERGUSON GARRY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-28', 720700.00, 'A'), + (2228, 3, 'NORMAN NEVILLE ROBERT', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 288493, '2011-06-29', 874750.00, 'A'), + (2229, 3, 'KUK HYUN CHAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-03-22', 211660.00, 'A'), + (223, 1, 'PINZON PLAZA MARCOS VINICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 856300.00, 'A'), + (2230, 3, 'SLIPAK NATALIA ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-07-27', 434070.00, 'A'), + (2231, 3, 'BONELLI MASSIMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 170601, '2011-07-11', 535340.00, 'A'), + (2233, 3, 'VUYLSTEKE ALEXANDER ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 284647, '2011-09-11', 266530.00, 'A'), + (2234, 3, 'DRESSE ALAIN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 284272, '2011-04-19', 209100.00, 'A'), + (2235, 3, 'PAIRON JEAN LOUIS MARIE RAIMOND', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 284272, '2011-03-03', 245940.00, 'A'), + (2236, 3, 'DEVIANE ACHIM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 284272, '2010-11-14', 602370.00, 'A'), + (2239, 3, 'DE CANNIERE LOUIS GEORFES HELE MARIE-JOZEF', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 285511, '2011-09-11', 993540.00, 'A'), + (2240, 1, 'ERGO ROBERT', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-28', 278270.00, 'A'), + (2241, 3, 'MYRTES RODRIGUEZ MORGANA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-18', 410740.00, 'A'), + (2242, 3, 'BRECHBUEHL HANSRUDOLF', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 249059, '2011-07-27', 218900.00, 'A'), + (2243, 3, 'IVANA SCHLUMPF', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 245206, '2011-04-08', 862270.00, 'A'), + (2244, 3, 'JESSICA JACCART', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 189512, '2011-08-28', 654640.00, 'A'), + (2246, 3, 'PAUSELLI MARIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 210050, '2011-09-26', 468090.00, 'A'), + (2247, 3, 'VOLONTEIRO RICCARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-04-13', 281230.00, 'A'), + (2248, 3, 'HOFFMANN ALVIR ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 120773, '2011-08-23', 1900.00, 'A'), + (2249, 3, 'MANTOVANI DANIEL FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-08-09', 165820.00, 'A'), + (225, 1, 'DUARTE RUEDA JAVIER ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-29', 293110.00, 'A'), + (2250, 3, 'LIMA DA COSTA BRENO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-03-23', 823370.00, 'A'), + (2251, 3, 'TAMBORIN MACIEL MAGALI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 619420.00, 'A'), + (2252, 3, 'BELLO DE MUORA BIANCA', 191821112, 'CRA 25 CALLE 100', '969@gmail.com', '2011-02-03', 118942, '2011-08-03', 626970.00, 'A'), + (2253, 3, 'VINHAS FORTUNA PIETRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2011-09-23', 276600.00, 'A'), + (2255, 3, 'BLUMENTHAL JAIRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117630, '2011-07-20', 680590.00, 'A'), + (2256, 3, 'DOS REIS FILHO ELPIDIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 120773, '2011-08-07', 896720.00, 'A'), + (2257, 3, 'COIMBRA CARDOSO MUNARI FERNANDA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-09', 441830.00, 'A'), + (2258, 3, 'LAZANHA FLAVIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118942, '2011-06-14', 519000.00, 'A'), + (2259, 3, 'LAZANHA FLAVIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-06-14', 269480.00, 'A'), + (226, 1, 'HUERFANO FLOREZ JOHN FAVER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-29', 148340.00, 'A'), + (2260, 3, 'JOVETTA EDILSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118941, '2011-09-19', 790430.00, 'A'), + (2261, 3, 'DE OLIVEIRA ANDRE RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-07-25', 143680.00, 'A'), + (2263, 3, 'MUNDO TEIXEIRA CARVALHO SILVIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118864, '2011-09-19', 304670.00, 'A'), + (2264, 3, 'FERREIRA CINTRA ADRIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-04-08', 481910.00, 'A'), + (2265, 3, 'AUGUSTO DE OLIVEIRA MARCOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118685, '2011-08-09', 495530.00, 'A'), + (2266, 3, 'CHEN ROBERTO LUIZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-03-15', 31920.00, 'A'), + (2268, 3, 'WROBLESKI DIENSTMANN RAQUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117630, '2011-05-15', 269320.00, 'A'), + (2269, 3, 'MALAGOLA GEDERSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118864, '2011-05-30', 327540.00, 'A'), + (227, 1, 'LOPEZ ESCOBAR CARLOS ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-06', 862360.00, 'A'), + (2271, 3, 'GOMES EVANDRO HENRIQUE', 191821112, 'CRA 25 CALLE 100', '199@hotmail.es', '2011-02-03', 118777, '2011-03-24', 166100.00, 'A'), + (2273, 3, 'LANDEIRA FERNANDEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-21', 207990.00, 'A'), + (2274, 3, 'ROSSI RENATO', 191821112, 'CRA 25 CALLE 100', '791@hotmail.es', '2011-02-03', 118777, '2011-09-19', 16170.00, 'A'), + (2275, 3, 'CALMON RANGEL PATRICIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 456890.00, 'A'), + (2277, 3, 'CIFU NETO ROQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-04-27', 808940.00, 'A'), + (2278, 3, 'GONCALVES PRETO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118942, '2011-07-25', 336930.00, 'A'), + (2279, 3, 'JORGE JUNIOR ROBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-05-09', 257840.00, 'A'), + (2281, 3, 'ELENCIUC DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-04-20', 618510.00, 'A'), + (2283, 3, 'CUNHA MENDEZ RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 119855, '2011-07-18', 431190.00, 'A'), + (2286, 3, 'DIAZ LENICE APARECIDA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-03', 977840.00, 'A'), + (2288, 3, 'DE CARVALHO SIGEL TATIANA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2011-07-04', 123920.00, 'A'), + (229, 1, 'GALARZA GIRALDO SERGIO ALDEMAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-09-17', 746930.00, 'A'), + (2290, 3, 'ACHOA MORANDI BORGUES SIBELE MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118777, '2011-09-12', 553890.00, 'A'), + (2291, 3, 'EPAMINONDAS DE ALMEIDA DELIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-22', 14080.00, 'A'), + (2293, 3, 'REIS CASTRO SHANA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-08-03', 1430.00, 'A'), + (2294, 3, 'BERNARDES JUNIOR ARMANDO', 191821112, 'CRA 25 CALLE 100', '678@gmail.com', '2011-02-03', 127591, '2011-08-30', 780930.00, 'A'), + (2295, 3, 'LEMOS DE SOUZA AGUIAR SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-10-03', 900370.00, 'A'), + (2296, 3, 'CARVALHO ADAMS KARIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2011-08-11', 159040.00, 'A'), + (2297, 3, 'GALLINA SILVANA BRASILEIRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 94110.00, 'A'), + (23, 1, 'COLMENARES PEDREROS EDUARDO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 625870.00, 'A'), + (2300, 3, 'TAVEIRA DE SIQUEIRA TANIA APARECIDA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-24', 443910.00, 'A'), + (2301, 3, 'DA SIVA LIMA ANDRE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-23', 165020.00, 'A'), + (2302, 3, 'GALVAO GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-09-12', 493370.00, 'A'), + (2303, 3, 'DA COSTA CRUZ GABRIELA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-07-27', 971800.00, 'A'), + (2304, 3, 'BERNHARD GOTTFRIED RABER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-04-30', 378870.00, 'A'), + (2306, 3, 'ALDANA URIBE PABLO AXEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-05-08', 758160.00, 'A'), + (2308, 3, 'FLORES ALONSO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-04-26', 995310.00, 'A'), + ('CELL4330', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (2309, 3, 'MADRIGAL MIER Y TERAN LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-02-23', 414650.00, 'A'), + (231, 1, 'ZAPATA CEBALLOS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-08-16', 430320.00, 'A'), + (2310, 3, 'GONZALEZ ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-05-19', 87330.00, 'A'), + (2313, 3, 'MONTES PORTO ANDREA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-09-01', 929180.00, 'A'), + (2314, 3, 'ROCHA SUSUNAGA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2010-10-18', 541540.00, 'A'), + (2315, 3, 'VASQUEZ CALERO FEDERICO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 920160.00, 'A'), + (2317, 3, 'GONZALEZ FERNANDEZ YUSSEN ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-26', 120530.00, 'A'), + (2319, 3, 'ATTIAS WENGROWSKY DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150581, '2011-09-07', 8580.00, 'A'), + (232, 1, 'OSPINA ABUCHAIBE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-14', 748960.00, 'A'), + (2320, 3, 'EFRON TOPOROVSKY INES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 116511, '2011-07-15', 20810.00, 'A'), + (2321, 3, 'LUNA PLA DARIO', 191821112, 'CRA 25 CALLE 100', '95@terra.com.co', '2011-02-03', 145135, '2011-09-07', 78320.00, 'A'), + (2322, 1, 'VAZQUEZ DANIELA', 191821112, 'CRA 25 CALLE 100', '190@gmail.com', '2011-02-03', 145135, '2011-05-19', 329170.00, 'A'), + (2323, 3, 'BALBI BALBI JUAN DE DIOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-23', 410880.00, 'A'), + (2324, 3, 'MARROQUIN FERNANDEZ GELACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-23', 66880.00, 'A'), + (2325, 3, 'VAZQUEZ ZAVALA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-04-11', 101770.00, 'A'), + (2326, 3, 'SOTO MARTINEZ MARIA ELENA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-23', 308200.00, 'A'), + (2328, 3, 'HERNANDEZ MURILLO RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-22', 253830.00, 'A'), + (233, 1, 'HADDAD LINERO YEBRAIL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 130608, '2010-06-17', 453830.00, 'A'), + (2330, 3, 'TERMINEL HERNANDEZ DANIELA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 190393, '2011-08-15', 48940.00, 'A'), + (2331, 3, 'MIJARES FERNANDEZ MAGDALENA GUADALUPE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-31', 558440.00, 'A'), + (2332, 3, 'GONZALEZ LUNA CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 146258, '2011-04-26', 645400.00, 'A'), + (2333, 3, 'DIAZ TORREJON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-03', 551690.00, 'A'), + (2335, 3, 'PADILLA GUTIERREZ JESUS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 456120.00, 'A'), + (2336, 3, 'TORRES CORONA JORGE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', 813900.00, 'A'), + (2337, 3, 'CASTRO RAMSES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150581, '2011-07-04', 701120.00, 'A'), + (2338, 3, 'APARICIO VALLEJO RUSSELL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-03-16', 63890.00, 'A'), + (2339, 3, 'ALBOR FERNANDEZ LUIS ARTURO', 191821112, 'CRA 25 CALLE 100', '574@gmail.com', '2011-02-03', 147467, '2011-05-09', 216110.00, 'A'), + (234, 1, 'DOMINGUEZ GOMEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '942@hotmail.com', '2011-02-03', 127591, '2010-08-22', 22260.00, 'A'), + (2342, 3, 'REY ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '110@facebook.com', '2011-02-03', 127591, '2011-03-04', 313330.00, 'A'), + (2343, 3, 'MENDOZA GONZALES ADRIANA', 191821112, 'CRA 25 CALLE 100', '295@yahoo.com', '2011-02-03', 127591, '2011-03-23', 178720.00, 'A'), + (2344, 3, 'RODRIGUEZ SEGOVIA JESUS ALONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-07-26', 953590.00, 'A'), + (2345, 3, 'GONZALEZ PELAEZ EDUARDO DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 231790.00, 'A'), + (2347, 3, 'VILLEDA GARCIA DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 144939, '2011-05-29', 795600.00, 'A'), + (2348, 3, 'FERRER BURGES EMILIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', 83430.00, 'A'), + (2349, 3, 'NARRO ROBLES LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-03-16', 30330.00, 'A'), + (2350, 3, 'ZALDIVAR UGALDE CARLOS IGNACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-06-19', 901380.00, 'A'), + (2351, 3, 'VARGAS RODRIGUEZ VALENTE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 146258, '2011-04-26', 415910.00, 'A'), + (2354, 3, 'DEL PIERO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-09', 19890.00, 'A'), + (2355, 3, 'VILLAREAL ANA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-23', 211810.00, 'A'), + (2356, 3, 'GARRIDO FERRAN JORGE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 999370.00, 'A'), + (2357, 3, 'PEREZ PRECIADO EDMUNDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-22', 361450.00, 'A'), + (2358, 3, 'AGUIRRE VIGNAU DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150581, '2011-08-21', 809110.00, 'A'), + (2359, 3, 'LOPEZ SESMA TOMAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 146258, '2011-09-14', 961200.00, 'A'), + (236, 1, 'VENTO BETANCOURT LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-19', 682230.00, 'A'), + (2360, 3, 'BERNAL MALDONADO GUILLERMO JAVIER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-19', 378670.00, 'A'), + (2361, 3, 'GUZMAN DELGADO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-22', 9770.00, 'A'), + (2362, 3, 'GUZMAN DELGADO MARTIN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 912850.00, 'A'), + (2363, 3, 'GUSMAND ELGADO JORGE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-22', 534910.00, 'A'), + (2364, 3, 'RENDON BUICK JORGE JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-26', 936010.00, 'A'), + (2365, 3, 'HERNANDEZ HERNANDEZ HERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 75340.00, 'A'), + (2366, 3, 'ALVAREZ PAZ PEDRO RAFAEL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-01-02', 568650.00, 'A'), + (2367, 3, 'MIJARES DE LA BARREDA FERNANDA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-07-31', 617240.00, 'A'), + (2368, 3, 'MARTINEZ LOPEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-08-24', 380250.00, 'A'), + (2369, 3, 'GAYTAN MILLAN YANERI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 49520.00, 'A'), + (237, 1, 'BARGUIL ASSIS DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117460, '2009-09-03', 161770.00, 'A'), + (2370, 3, 'DURAN HEREDIA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-04-15', 106850.00, 'A'), + (2371, 3, 'SEGURA MIJARES CRISTOBAL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-31', 385700.00, 'A'), + (2372, 3, 'TEPOS VALTIERRA ERIK ARTURO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116345, '2011-09-01', 607930.00, 'A'), + (2373, 3, 'RODRIGUEZ AGUILAR EDMUNDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-05-04', 882570.00, 'A'), + (2374, 3, 'MYSLABODSKI MICHAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-03-08', 589060.00, 'A'), + (2375, 3, 'HERNANDEZ MIRELES JATNIEL ELIOENAI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', 297600.00, 'A'), + (2376, 3, 'SNELL FERNANDEZ SYNTYHA ROCIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 720830.00, 'A'), + (2378, 3, 'HERNANDEZ EIVET AARON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 394200.00, 'A'), + (2379, 3, 'LOPEZ GARZA JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-22', 837000.00, 'A'), + (238, 1, 'GARCIA PINO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-10', 762140.00, 'A'), + (2381, 3, 'TOSCANO ESTRADA RUBEN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-22', 500940.00, 'A'), + (2382, 3, 'RAMIREZ HUDSON ROGER SILVESTER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-22', 497550.00, 'A'), + (2383, 3, 'RAMOS JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '362@yahoo.es', '2011-02-03', 127591, '2011-08-22', 984940.00, 'A'), + (2384, 3, 'CORTES CERVANTES ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-04-11', 432020.00, 'A'), + (2385, 3, 'POZOS ESQUIVEL DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-27', 205310.00, 'A'), + (2387, 3, 'ESTRADA AGUIRRE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 36470.00, 'A'), + (2388, 3, 'GARCIA RAMIREZ RAMON', 191821112, 'CRA 25 CALLE 100', '177@yahoo.es', '2011-02-03', 127591, '2011-08-22', 990910.00, 'A'), + (2389, 3, 'PRUD HOMME GARCIA CUBAS XAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-18', 845140.00, 'A'), + (239, 1, 'PINZON ARDILA GUSTAVO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-01', 325400.00, 'A'), + (2390, 3, 'ELIZABETH OCHOA ROJAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-05-21', 252950.00, 'A'), + (2391, 3, 'MEZA ALVAREZ JOSE ALBERTO', 191821112, 'CRA 25 CALLE 100', '646@terra.com.co', '2011-02-03', 144939, '2011-05-09', 729340.00, 'A'), + (2392, 3, 'HERRERA REYES RENATO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2010-02-28', 887860.00, 'A'), + (2393, 3, 'MURILLO GARIBAY GILBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-08-20', 251280.00, 'A'), + (2394, 3, 'GARCIA JIMENEZ CARLOS MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-09', 592830.00, 'A'), + (2395, 3, 'GUAGNELLI MARTINEZ BLANCA MONICA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145184, '2010-10-05', 210320.00, 'A'), + (2397, 3, 'GARCIA CISNEROS RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-07-04', 734530.00, 'A'), + (2398, 3, 'MIRANDA ROMO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 853340.00, 'A'), + (24, 1, 'ARREGOCES GARZON NELSON ORLANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127783, '2011-08-12', 403190.00, 'A'), + (240, 1, 'ARCINIEGAS GOMEZ ALBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-18', 340590.00, 'A'), + (2400, 3, 'HERRERA ABARCA EDUARDO VICENTE ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 755620.00, 'A'), + (2403, 3, 'CASTRO MONCAYO LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-07-29', 617260.00, 'A'), + (2404, 3, 'GUZMAN DELGADO OSBALDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 56250.00, 'A'), + (2405, 3, 'GARCIA LOPEZ DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-22', 429500.00, 'A'), + (2406, 3, 'JIMENEZ GAMEZ RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 245206, '2011-03-23', 978720.00, 'A'), + (2407, 3, 'BECERRA MARTINEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-08-23', 605130.00, 'A'), + (2408, 3, 'GARCIA MARTINEZ BERNARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 89480.00, 'A'), + (2409, 3, 'URRUTIA RAYAS BALTAZAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 632020.00, 'A'), + (241, 1, 'MEDINA AGUILA NESTOR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-09', 726730.00, 'A'), + (2411, 3, 'VERGARA MENDOZAVICTOR HUGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-06-15', 562230.00, 'A'), + (2412, 3, 'MENDOZA MEDINA JORGE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 136170.00, 'A'), + (2413, 3, 'CORONADO CASTILLO HUGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 147529, '2011-05-09', 994160.00, 'A'), + (2414, 3, 'GONZALEZ SOTO DELIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-03-23', 562280.00, 'A'), + (2415, 3, 'HERNANDEZ FLORES STEPHANIE REYNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 828940.00, 'A'), + (2416, 3, 'ABRAJAN GUERRERO MARIA DE LOS ANGELES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-23', 457860.00, 'A'), + (2417, 3, 'HERNANDEZ LOERA ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 802490.00, 'A'), + (2418, 3, 'TARIN LOPEZ JOSE CARMEN', 191821112, 'CRA 25 CALLE 100', '117@gmail.com', '2011-02-03', 127591, '2011-03-23', 638870.00, 'A'), + (242, 1, 'JULIO NARVAEZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-05', 611890.00, 'A'), + (2420, 3, 'BATTA MARQUEZ VICTOR ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-08-23', 17820.00, 'A'), + (2423, 3, 'GONZALEZ REYES JUAN JOSE', 191821112, 'CRA 25 CALLE 100', '55@yahoo.es', '2011-02-03', 127591, '2011-07-26', 758070.00, 'A'), + (2425, 3, 'ALVAREZ RODRIGUEZ HIRAM RAMSES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-23', 847420.00, 'A'), + (2426, 3, 'FEMATT HERNANDEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-03-23', 164130.00, 'A'), + (2427, 3, 'GUTIERRES ORTEGA FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 278410.00, 'A'), + (2428, 3, 'JIMENEZ DIAZ JUAN JORGE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-13', 899650.00, 'A'), + (2429, 3, 'VILLANUEVA PEREZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '656@yahoo.es', '2011-02-03', 150449, '2011-03-23', 663000.00, 'A'), + (243, 1, 'GOMEZ REYES ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126674, '2009-12-20', 879240.00, 'A'), + (2430, 3, 'CERON GOMEZ JOEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-03-21', 616070.00, 'A'), + (2431, 3, 'LOPEZ LINALDI DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-05-09', 91360.00, 'A'), + (2432, 3, 'JOSEPH NATHAN PEDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-02', 608580.00, 'A'), + (2433, 3, 'CARRENO PULIDO RUBEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 147242, '2011-06-19', 768810.00, 'A'), + (2434, 3, 'AREVALO MERCADO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-06-12', 18320.00, 'A'), + (2436, 3, 'RAMIREZ QUEZADA ERIKA BELEM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-03', 870930.00, 'A'), + (2438, 3, 'TATTO PRIETO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-19', 382740.00, 'A'), + (2439, 3, 'LOPEZ AYALA LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-10-08', 916370.00, 'A'), + (244, 1, 'DEVIS EDGAR JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-10-08', 560540.00, 'A'), + (2440, 3, 'HERNANDEZ TOVAR JORGE ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 144991, '2011-10-02', 433650.00, 'A'), + (2441, 3, 'COLLIARD LOPEZ PETER GEORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 419120.00, 'A'), + (2442, 3, 'FLORES CHALA GARY', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 794670.00, 'A'), + (2443, 3, 'FANDINO MUNOZ ZAMIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-19', 715970.00, 'A'), + (2444, 3, 'BARROSO VARGAS DIEGO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-26', 195840.00, 'A'), + (2446, 3, 'CRUZ RAMIREZ JUAN PEDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-07-14', 569050.00, 'A'), + (2447, 3, 'TIJERINA ACOSTA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 351280.00, 'A'), + (2449, 3, 'JASSO BARRERA CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-08-24', 192560.00, 'A'), + (245, 1, 'LENCHIG KALEDA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-02', 165000.00, 'A'), + (2450, 3, 'GARRIDO PATRON VICTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-09-27', 814970.00, 'A'), + (2451, 3, 'VELASQUEZ GUERRERO RUBEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', 497150.00, 'A'), + (2452, 3, 'CHOI SUNGKYU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 209494, '2011-08-16', 40860.00, 'A'), + (2453, 3, 'CONTRERAS LOPEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-08-05', 712830.00, 'A'), + (2454, 3, 'CHAVEZ BATAA OSCAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 150699, '2011-06-14', 441590.00, 'A'), + (2455, 3, 'LEE JONG HYUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131272, '2011-10-10', 69460.00, 'A'), + (2456, 3, 'MEDINA PADILLA CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 146589, '2011-04-20', 22530.00, 'A'), + (2457, 3, 'FLORES CUEVAS DOTNARA LUZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-05-17', 904260.00, 'A'), + (2458, 3, 'LIU YONGCHAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-10-09', 453710.00, 'A'), + (2459, 3, 'CASTRO FERNANDES PORTOCARRERO JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 195892, '2011-06-14', 555790.00, 'A'), + (246, 1, 'YAMHURE FONSECAN ERNESTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-10-03', 143350.00, 'A'), + (2460, 3, 'DUAN WEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-06-22', 417820.00, 'A'), + (2461, 3, 'ZHU XUTAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-18', 421740.00, 'A'), + (2462, 3, 'MEI SHUANNIU', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-09', 855240.00, 'A'), + (2464, 3, 'VEGA VACA LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-06-08', 489110.00, 'A'), + (2465, 3, 'TANG YUMING', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 147578, '2011-03-26', 412660.00, 'A'), + (2466, 3, 'VILLEDA GARCIA DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 144939, '2011-06-07', 595990.00, 'A'), + (2467, 3, 'GARCIA GARZA BLANCA ARMIDA', 191821112, 'CRA 25 CALLE 100', '927@hotmail.com', '2011-02-03', 145135, '2011-05-20', 741940.00, 'A'), + (2468, 3, 'HERNANDEZ MARTINEZ EMILIO JOAQUIN', 191821112, 'CRA 25 CALLE 100', '356@facebook.com', '2011-02-03', 145135, '2011-06-16', 921740.00, 'A'), + (2469, 3, 'WANG FAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 185363, '2011-08-20', 382860.00, 'A'), + (247, 1, 'ROJAS RODRIGUEZ ALVARO HERNAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-09', 221760.00, 'A'), + (2470, 3, 'WANG FEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-10-09', 149100.00, 'A'), + (2471, 3, 'BERNAL MALDONADO GUILLERMO JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118777, '2011-07-26', 596900.00, 'A'), + (2472, 3, 'GUTIERREZ GOMEZ ARTURO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145184, '2011-07-24', 537210.00, 'A'), + (2474, 3, 'LAN TYANYE ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-23', 865050.00, 'A'), + (2475, 3, 'LAN SHUZHEN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-23', 639240.00, 'A'), + (2476, 3, 'RODRIGUEZ GONZALEZ CARLOS ARTURO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 144616, '2011-08-09', 601050.00, 'A'), + (2477, 3, 'HAIBO NI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-20', 87540.00, 'A'), + (2479, 3, 'RUIZ RODRIGUEZ GRACIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-05-20', 910130.00, 'A'), + (248, 1, 'GONZALEZ RODRIGUEZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-03', 678750.00, 'A'), + (2480, 3, 'OROZCO MACIAS NORMA LETICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-20', 647010.00, 'A'), + (2481, 3, 'MEZA ALVAREZ JOSE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 144939, '2011-06-07', 504670.00, 'A'), + (2482, 3, 'RODRIGUEZ FIGUEROA RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 146308, '2011-04-27', 582290.00, 'A'), + (2483, 3, 'CARREON GUERRA ANA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 110709, '2011-05-27', 397440.00, 'A'), + (2484, 3, 'BOTELHO BARRETO CARLOS JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 195892, '2011-08-02', 240350.00, 'A'), + (2485, 3, 'CORONADO CASTILLO HUGO', 191821112, 'CRA 25 CALLE 100', '209@yahoo.com.mx', '2011-02-03', 147529, '2011-06-07', 9420.00, 'A'), + (2486, 3, 'DE FUENTES GARZA MARCELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-18', 326030.00, 'A'), + (2487, 3, 'GONZALEZ DUHART GUTIERREZ HORACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-17', 601920.00, 'A'), + (2488, 3, 'LOPEZ LINALDI DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-06-07', 31500.00, 'A'), + (2489, 3, 'CASTRO MONCAYO JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-06-15', 351720.00, 'A'), + (249, 1, 'CASTRO RIBEROS JULIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-23', 728470.00, 'A'), + (2490, 3, 'SERRALDE LOPEZ MARIA GUADALUPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-25', 664120.00, 'A'), + (2491, 3, 'GARRIDO PATRON VICTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-09-29', 265450.00, 'A'), + (2492, 3, 'BRAUN JUAN NICOLAS ANTONIE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-28', 334880.00, 'A'), + (2493, 3, 'BANKA RAHUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 141138, '2011-05-02', 878070.00, 'A'), + (2494, 1, 'GARCIA MARTINEZ MARIA VIRGINIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-17', 385690.00, 'A'), + (2495, 1, 'MARIA VIRGINIA', 191821112, 'CRA 25 CALLE 100', '298@yahoo.com.mx', '2011-02-03', 127591, '2011-04-16', 294220.00, 'A'), + (2496, 3, 'GOMEZ ZENDEJAS MARIA ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145184, '2011-06-06', 314060.00, 'A'), + (2498, 3, 'MENDEZ MARTINEZ RAUL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-10', 496040.00, 'A'), + (2623, 3, 'ZAFIROPOULO ANA I', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 98170.00, 'A'), + (2499, 3, 'CARREON GUERRA ANA CECILIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-29', 417240.00, 'A'), + (2501, 3, 'OLIVAR ARIAS ISMAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-06-06', 738850.00, 'A'), + (2502, 3, 'ABOUMRAD NASTA EMILE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-07-26', 899890.00, 'A'), + (2503, 3, 'RODRIGUEZ JIMENEZ ROBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-05-03', 282900.00, 'A'), + (2504, 3, 'ESTADOS UNIDOS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-27', 714840.00, 'A'), + (2505, 3, 'SOTO MUNOZ MARCO GREGORIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-26', 725480.00, 'A'), + (2506, 3, 'GARCIA MONTER ANA OTILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-10-05', 482880.00, 'A'), + (2507, 3, 'THIRUKONDA VIGNESH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126180, '2011-05-02', 237950.00, 'A'), + (2508, 3, 'RAMIREZ REATIAGA LYDA YOANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 150699, '2011-06-26', 741120.00, 'A'), + (2509, 3, 'SEPULVEDA RODRIGUEZ JESUS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', 991730.00, 'A'), + (251, 1, 'MEJIA PIZANO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-10', 845000.00, 'A'), + (2510, 3, 'FRANCISCO MARIA DIAS COSTA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 179111, '2011-07-12', 735330.00, 'A'), + (2511, 3, 'TEIXEIRA REGO DE OLIVEIRA TIAGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 179111, '2011-06-14', 701430.00, 'A'), + (2512, 3, 'PHILLIP JAMES', 191821112, 'CRA 25 CALLE 100', '766@terra.com.co', '2011-02-03', 127591, '2011-09-28', 301150.00, 'A'), + (2513, 3, 'ERXLEBEN ROBERT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 216125, '2011-04-13', 401460.00, 'A'), + (2514, 3, 'HUGHES CONNORRICHARD', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-06-22', 103880.00, 'A'), + (2515, 3, 'LEBLANC MICHAEL PAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 216125, '2011-08-09', 314990.00, 'A'), + (2517, 3, 'DEVINE CHRISTOPHER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-06-22', 371560.00, 'A'), + (2518, 3, 'WONG BRIAN TEK FUNG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126885, '2011-09-22', 67910.00, 'A'), + (2519, 3, 'BIDWALA IRFAN A', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 154811, '2011-03-28', 224840.00, 'A'), + (252, 1, 'JIMENEZ LARRARTE JUAN GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-01', 406770.00, 'A'), + (2520, 3, 'LEE HO YIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 147578, '2011-08-29', 920470.00, 'A'), + (2521, 3, 'DE MOURA MARTINS NUNO ALEXANDRE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196094, '2011-10-09', 927850.00, 'A'), + (2522, 3, 'DA COSTA GOMES CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 179111, '2011-08-10', 877850.00, 'A'), + (2523, 3, 'HOOGWAERTS PAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-02-11', 605690.00, 'A'), + (2524, 3, 'LOPES MARQUES LUIS JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2011-09-20', 394910.00, 'A'), + (2525, 3, 'CORREIA CAVACO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 178728, '2011-10-09', 157470.00, 'A'), + (2526, 3, 'HALL JOHN WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-09', 602620.00, 'A'), + (2527, 3, 'KNIGHT MARTIN GYLES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 113550, '2011-08-29', 540670.00, 'A'), + (2528, 3, 'HINDS THMAS TRISTAN PELLEW', 191821112, 'CRA 25 CALLE 100', '337@yahoo.es', '2011-02-03', 116862, '2011-08-23', 895500.00, 'A'), + (2529, 3, 'CARTON ALAN JOHN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-07-31', 855510.00, 'A'), + (253, 1, 'AZCUENAGA RAMIREZ NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 298472, '2011-05-10', 498840.00, 'A'), + (2530, 3, 'GHIM CHEOLL HO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-27', 591060.00, 'A'), + (2531, 3, 'PHILLIPS NADIA SULLIVAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-28', 388750.00, 'A'), + (2532, 3, 'CHANG KUKHYUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-22', 170560.00, 'A'), + (2533, 3, 'KANG SEOUNGHYUN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 173192, '2011-08-24', 686540.00, 'A'), + (2534, 3, 'CHUNG BYANG HOON', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 125744, '2011-03-14', 921030.00, 'A'), + (2535, 3, 'SHIN MIN CHUL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 173192, '2011-08-24', 545510.00, 'A'), + (2536, 3, 'CHOI JIN SUNG', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-15', 964490.00, 'A'), + (2537, 3, 'CHOI SUNGMIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-27', 185910.00, 'A'), + (2538, 3, 'PARK JAESER ', 191821112, 'CRA 25 CALLE 100', '525@terra.com.co', '2011-02-03', 127591, '2011-09-03', 36090.00, 'A'), + (2539, 3, 'KIM DAE HOON ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 173192, '2011-08-24', 622700.00, 'A'), + (254, 1, 'AVENDANO PABON ROLANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-05-12', 273900.00, 'A'), + (2540, 3, 'LYNN MARIA CRISTINA NORMA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116862, '2011-09-21', 5220.00, 'A'), + (2541, 3, 'KIM CHINIL JULIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 147578, '2011-08-27', 158030.00, 'A'), + (2543, 3, 'HALL JOHN WILLIAM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 398290.00, 'A'), + (2544, 3, 'YOSUKE PERDOMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 165600, '2011-07-26', 668040.00, 'A'), + (2546, 3, 'AKAGI KAZAHIKO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-26', 722510.00, 'A'), + (2547, 3, 'NELSON JONATHAN GARY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-09', 176570.00, 'A'), + (2548, 3, 'DUONG HOP BA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 116862, '2011-09-14', 715310.00, 'A'), + (2549, 3, 'CHAO-VILLEGAS NIKOLE TUK HING', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 180063, '2011-04-05', 46830.00, 'A'), + (255, 1, 'CORREA ALVARO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-27', 872990.00, 'A'), + (2551, 3, 'APPELS LAURENT BERNHARD', 191821112, 'CRA 25 CALLE 100', '891@hotmail.es', '2011-02-03', 135190, '2011-08-16', 300620.00, 'A'), + (2552, 3, 'PLAISIER ERIK JAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289294, '2011-05-23', 238440.00, 'A'), + (2553, 3, 'BLOK HENDRIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 288552, '2011-03-27', 290350.00, 'A'), + (2554, 3, 'NETTE ANNA STERRE', 191821112, 'CRA 25 CALLE 100', '621@yahoo.com.mx', '2011-02-03', 185363, '2011-07-30', 736400.00, 'A'), + (2555, 3, 'FRIELING HANS ERIC', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 107469, '2011-07-31', 810990.00, 'A'), + (2556, 3, 'RUTTE CORNELIA JANTINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 143579, '2011-03-30', 845710.00, 'A'), + (2557, 3, 'WALRAVEN PIETER PAUL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 289294, '2011-07-29', 795620.00, 'A'), + (2558, 3, 'TREBES LAURENS JOHANNES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-11-22', 440940.00, 'A'), + (2559, 3, 'KROESE ROLANDWILLEBRORDUSMARIA', 191821112, 'CRA 25 CALLE 100', '188@facebook.com', '2011-02-03', 110643, '2011-06-09', 817860.00, 'A'), + (256, 1, 'FARIAS GARCIA REINI', 191821112, 'CRA 25 CALLE 100', '615@hotmail.com', '2011-02-03', 127591, '2011-03-05', 543220.00, 'A'), + (2560, 3, 'VAN DER HEIDE HENDRIK', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 291042, '2011-09-04', 766460.00, 'A'), + (2561, 3, 'VAN DEN BERG DONAR ALEXANDER GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 190393, '2011-07-13', 378720.00, 'A'), + (2562, 3, 'GODEFRIDUS JOHANNES ROPS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127622, '2011-10-02', 594240.00, 'A'), + (2564, 3, 'WAT YOK YIENG', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 287095, '2011-03-22', 392370.00, 'A'), + (2565, 3, 'BUIS JACOBUS NICOLAAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-20', 456810.00, 'A'), + (2567, 3, 'CHIPPER FRANCIUSCUS NICOLAAS ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 291599, '2011-07-28', 164300.00, 'A'), + (2568, 3, 'ONNO ROUKENS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-11-28', 500670.00, 'A'), + (2569, 3, 'PETRUS MARCELLINUS STEPHANUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-06-25', 10430.00, 'A'), + (2571, 3, 'VAN VOLLENHOVEN IVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-08', 719370.00, 'A'), + (2572, 3, 'LAMBOOIJ BART', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-09-20', 946480.00, 'A'), + (2573, 3, 'LANSER MARIANA PAULINE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 289294, '2011-04-09', 574270.00, 'A'), + (2575, 3, 'KLERKEN JOHANNES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 286101, '2011-05-24', 436840.00, 'A'), + (2576, 3, 'KRAS JACOBUS NICOLAAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289294, '2011-09-26', 88410.00, 'A'), + (2577, 3, 'FUCHS MICHAEL JOSEPH', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 185363, '2011-07-30', 131530.00, 'A'), + (2578, 3, 'BIJVANK ERIK JAN WILLEM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-11', 392410.00, 'A'), + (2579, 3, 'SCHMIDT FRANC ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 106742, '2011-09-11', 567470.00, 'A'), + (258, 1, 'SOTO GONZALEZ FRANCISCO LAZARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 116511, '2011-05-07', 856050.00, 'A'), + (2580, 3, 'VAN DER KOOIJ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 291277, '2011-07-10', 660130.00, 'A'), + (2581, 2, 'KRIS ANDRE GEORGES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-07-26', 598240.00, 'A'), + (2582, 3, 'HARDING LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 263813, '2011-05-08', 10820.00, 'A'), + (2583, 3, 'ROLLI GUY JEAN ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-05-31', 259370.00, 'A'), + (2584, 3, 'NIETO PARRA SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 263813, '2011-07-04', 264400.00, 'A'), + (2585, 3, 'LASTRA CHAVEZ PABLO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126674, '2011-05-25', 543890.00, 'A'), + (2586, 1, 'ZAIDA MAYERLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-05', 926250.00, 'A'), + (2587, 1, 'OSWALDO SOLORZANO CONTRERAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-28', 999590.00, 'A'), + (2588, 3, 'ZHOU XUAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-18', 219200.00, 'A'), + (2589, 3, 'HUANG ZHENGQUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-18', 97230.00, 'A'), + (259, 1, 'GALARZA NARANJO JAIME RENE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 988830.00, 'A'), + (2590, 3, 'HUANG ZHENQUIN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-18', 828560.00, 'A'), + (2591, 3, 'WEIDEN MULLER AMURER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-29', 851110.00, 'A'), + (2593, 3, 'OESTERHAUS CORNELIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 256231, '2011-03-29', 295960.00, 'A'), + (2594, 3, 'RINTALAHTI JUHA HENRIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 170220.00, 'A'), + (2597, 3, 'VERWIJNEN JONAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 289697, '2011-02-03', 638040.00, 'A'), + (2598, 3, 'SHAW ROBERT', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 157414, '2011-07-10', 273550.00, 'A'), + (2599, 3, 'MAKINEN TIMO JUHANI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-09-13', 453600.00, 'A'), + (260, 1, 'RIVERA CANON JOSE EDWARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127538, '2011-09-19', 375990.00, 'A'), + (2600, 3, 'HONKANIEMI ARTO OLAVI', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 301387, '2011-09-06', 447380.00, 'A'), + (2601, 3, 'DAGG JAMIE MICHAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 216125, '2011-08-09', 876080.00, 'A'), + (2602, 3, 'BOLAND PATRICK CHARLES ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 216125, '2011-09-14', 38260.00, 'A'), + (2603, 2, 'ZULEYKA JERRYS RIVERA MENDOZA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 150347, '2011-03-27', 563050.00, 'A'), + (2604, 3, 'DELGADO SEQUIRA FERRAO JOSE PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188228, '2011-08-16', 700460.00, 'A'), + (2605, 3, 'YORRO LORA EDGAR MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127689, '2011-06-17', 813180.00, 'A'), + (2606, 3, 'CARRASCO RODRIGUEZQCARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127689, '2011-06-17', 964520.00, 'A'), + (2607, 30, 'ORJUELA VELASQUEZ JULIANA MARIA', 191821112, 'CRA 25 CALLE 100', '372@terra.com.co', '2011-02-03', 132775, '2011-09-01', 383070.00, 'A'), + (2608, 3, 'DUQUE DUTRA LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-07-12', 21780.00, 'A'), + (261, 1, 'MURCIA MARQUEZ NESTOR JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-19', 913480.00, 'A'), + (2610, 3, 'NGUYEN HUU KHUONG', 191821112, 'CRA 25 CALLE 100', '457@facebook.com', '2011-02-03', 132958, '2011-05-07', 733120.00, 'A'), + (2611, 3, 'NGUYEN VAN LAP', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 786510.00, 'A'), + (2612, 3, 'PHAM HUU THU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 733200.00, 'A'), + (2613, 3, 'DANG MING CUONG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-05-07', 306460.00, 'A'), + (2614, 3, 'VU THI HONG HANH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-05-07', 332710.00, 'A'), + (2615, 3, 'CHAU TANG LANG', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-05-07', 744190.00, 'A'), + (2616, 3, 'CHU BAN THING', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-05-07', 722800.00, 'A'), + (2617, 3, 'NGUYEN QUANG THU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-05-07', 381420.00, 'A'), + (2618, 3, 'TRAN THI KIM OANH', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-05-07', 738690.00, 'A'), + (2619, 3, 'NGUYEN VAN VINH', 191821112, 'CRA 25 CALLE 100', '422@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 549210.00, 'A'), + (262, 1, 'ABDULAZIS ELNESER KHALED', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-27', 439430.00, 'A'), + (2620, 3, 'NGUYEN XUAN VY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132958, '2011-05-07', 529950.00, 'A'), + (2621, 3, 'HA MANH HOA', 191821112, 'CRA 25 CALLE 100', '439@gmail.com', '2011-02-03', 132958, '2011-05-07', 2160.00, 'A'), + (2622, 3, 'ZAFIROPOULO STEVEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 420930.00, 'A'), + (2624, 3, 'TEMIGTERRA MASSIMILIANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 210050, '2011-09-26', 228070.00, 'A'), + (2625, 3, 'CASSES TRINDADE HELGIO HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118402, '2011-09-13', 845850.00, 'A'), + (2626, 3, 'ASCOLI MASTROENI MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 120773, '2011-09-07', 545010.00, 'A'), + (2627, 3, 'MONTEIRO SOARES MARCOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 120773, '2011-07-18', 187530.00, 'A'), + (2629, 3, 'HALL ALVARO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 120773, '2011-08-02', 950450.00, 'A'), + (2631, 3, 'ANDRADE CATUNDA RAFAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 120773, '2011-08-23', 370860.00, 'A'), + (2632, 3, 'MAGALHAES MAYRA ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118767, '2011-08-23', 320960.00, 'A'), + (2633, 3, 'SPREAFICO MIRIAM ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118587, '2011-08-23', 492220.00, 'A'), + (2634, 3, 'GOMES FERREIRA HELIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 125812, '2011-08-23', 498220.00, 'A'), + (2635, 3, 'FERNANDES SENNA PIRES SERGIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-05', 14460.00, 'A'), + (2636, 3, 'BALESTRO FLORIANO FABIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 120773, '2011-08-24', 577630.00, 'A'), + (2637, 3, 'CABANA DE QUEIROZ ANDRADE ALAXANDRE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-23', 844780.00, 'A'), + (2638, 3, 'DALBOSCO CARLA', 191821112, 'CRA 25 CALLE 100', '380@yahoo.com.mx', '2011-02-03', 127591, '2011-06-30', 491010.00, 'A'), + (264, 1, 'ROMERO MONTOYA NICOLAY ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-13', 965220.00, 'A'), + (2640, 3, 'BILLINI CRUZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 144215, '2011-03-27', 130530.00, 'A'), + (2641, 3, 'VASQUES ARIAS DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 144509, '2011-08-19', 890500.00, 'A'), + (2642, 3, 'ROJAS VOLQUEZ GLADYS MICHELLE', 191821112, 'CRA 25 CALLE 100', '852@gmail.com', '2011-02-03', 144215, '2011-07-25', 60930.00, 'A'), + (2643, 3, 'LLANEZA GIL JUAN RAFAELMO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 144215, '2011-07-08', 633120.00, 'A'), + (2646, 3, 'AVILA PEROZO IANKEL JACOB', 191821112, 'CRA 25 CALLE 100', '318@hotmail.com', '2011-02-03', 144215, '2011-09-03', 125600.00, 'A'), + (2647, 3, 'REGULAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-19', 583540.00, 'A'), + (2648, 3, 'CORONADO BATISTA JOSE ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-19', 540910.00, 'A'), + (2649, 3, 'OLIVIER JOSE VICTOR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 144509, '2011-08-19', 953910.00, 'A'), + (2650, 3, 'YOO HOE TAEK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-08-25', 146820.00, 'A'), + (266, 1, 'CUECA RODRIGUEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-22', 384280.00, 'A'), + (267, 1, 'NIETO ALVARADO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2008-04-28', 553450.00, 'A'), + (269, 1, 'LEAL HOLGUIN FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-25', 411700.00, 'A'), + (27, 1, 'MORENO MORENO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2009-09-15', 995620.00, 'A'), + (270, 1, 'CANO IBANES JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-03', 215260.00, 'A'), + (271, 1, 'RESTREPO HERRAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2011-04-18', 841220.00, 'A'), + (272, 3, 'RIOS FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 199862, '2011-03-24', 560300.00, 'A'), + (273, 1, 'MADERO LORENZANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-03', 277850.00, 'A'), + (274, 1, 'GOMEZ GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-09-24', 708350.00, 'A'), + (275, 1, 'CONSUEGRA ARENAS ANDRES MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-09', 708210.00, 'A'), + (276, 1, 'HURTADO ROJAS NICOLAS', 191821112, 'CRA 25 CALLE 100', '463@yahoo.com.mx', '2011-02-03', 127591, '2011-09-07', 416000.00, 'A'), + (277, 1, 'MURCIA BAQUERO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-02', 955370.00, 'A'), + (2773, 3, 'TAKUBO KAORI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 165753, '2011-05-12', 872390.00, 'A'), + (2774, 3, 'OKADA MAKOTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 165753, '2011-06-19', 921480.00, 'A'), + (2775, 3, 'TAKEDA AKIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 21062, '2011-06-19', 990250.00, 'A'), + (2776, 3, 'KOIKE WATARU ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 165753, '2011-06-19', 186800.00, 'A'), + (2777, 3, 'KUBO SHINEI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 165753, '2011-02-13', 963230.00, 'A'), + (2778, 3, 'KANNO YONEZO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 165600, '2011-07-26', 255770.00, 'A'), + (278, 3, 'PARENT ELOIDE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 267980, '2011-05-01', 528840.00, 'A'), + (2781, 3, 'SUNADA MINORU ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 165753, '2011-06-19', 724450.00, 'A'), + (2782, 3, 'INOUE KASUYA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-22', 87150.00, 'A'), + (2783, 3, 'OTAKE NOBUTOSHI', 191821112, 'CRA 25 CALLE 100', '208@facebook.com', '2011-02-03', 127591, '2011-06-11', 262380.00, 'A'), + (2784, 3, 'MOTOI KEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 165753, '2011-06-19', 50470.00, 'A'), + (2785, 3, 'TANAKA KIYOTAKA ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 165753, '2011-06-19', 465210.00, 'A'), + (2787, 3, 'YUMIKOPERDOMO', 191821112, 'CRA 25 CALLE 100', '600@yahoo.es', '2011-02-03', 165600, '2011-07-26', 477550.00, 'A'), + (2788, 3, 'FUKUSHIMA KENZO', 191821112, 'CRA 25 CALLE 100', '599@gmail.com', '2011-02-03', 156960, '2011-05-30', 863860.00, 'A'), + (2789, 3, 'GELGIN LEVENT NURI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-26', 886630.00, 'A'), + (279, 1, 'AVIATUR S. A.', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-02', 778110.00, 'A'), + (2791, 3, 'GELGIN ENIS ENRE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-26', 547940.00, 'A'), + (2792, 3, 'PAZ SOTO LUBRASCA MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 143954, '2011-06-27', 215000.00, 'A'), + (2794, 3, 'MOURAD TAOUFIKI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-13', 511000.00, 'A'), + (2796, 3, 'DASTUS ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 218656, '2011-05-29', 774010.00, 'A'), + (2797, 3, 'MCDONALD MICHAEL LORNE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 269033, '2011-07-19', 85820.00, 'A'), + (2799, 3, 'KLESO MICHAEL QUENTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-07-26', 277950.00, 'A'), + (28, 1, 'GONZALEZ ACUNA EDGAR MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-19', 531710.00, 'A'), + (280, 3, 'NEME KARIM CHAIBAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 135967, '2010-05-02', 304040.00, 'A'), + (2800, 3, 'CLERK CHARLES ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 244158, '2011-07-26', 68490.00, 'A'), + ('CELL3673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (2801, 3, 'BURRIS MAURICE STEWARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-27', 508600.00, 'A'), + (2802, 1, 'PINCHEN CLAIRE ELAINE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 216125, '2011-04-13', 337530.00, 'A'), + (2803, 3, 'LETTNER EVA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 231224, '2011-09-20', 161860.00, 'A'), + (2804, 3, 'CANUEL LUCIE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 146258, '2011-09-20', 796710.00, 'A'), + (2805, 3, 'IGLESIAS CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 216125, '2011-08-02', 497980.00, 'A'), + (2806, 3, 'PAQUIN JEAN FRANCOIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-03-27', 99760.00, 'A'), + (2807, 3, 'FOURNIER DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 228688, '2011-05-19', 4860.00, 'A'), + (2808, 3, 'BILODEAU MARTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-13', 725030.00, 'A'), + (2809, 3, 'KELLNER PETER WILLIAM', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 130757, '2011-07-24', 610570.00, 'A'), + (2810, 3, 'ZAZULAK INGRID ROSEMARIE', 191821112, 'CRA 25 CALLE 100', '683@facebook.com', '2011-02-03', 240550, '2011-09-11', 877770.00, 'A'), + (2811, 3, 'RUCCI JHON MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 285188, '2011-05-10', 557130.00, 'A'), + (2813, 3, 'JONCAS MARC', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 33265, '2011-03-21', 90360.00, 'A'), + (2814, 3, 'DUCHARME ERICK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-03-29', 994750.00, 'A'), + (2816, 3, 'BAILLOD THOMAS DAVID ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 239124, '2010-10-20', 529130.00, 'A'), + (2817, 3, 'MARTINEZ SORIA JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 289697, '2011-09-06', 537630.00, 'A'), + (2818, 3, 'TAMARA RABER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-30', 100750.00, 'A'), + (2819, 3, 'BURGI VINCENT EMANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 245206, '2011-04-20', 890860.00, 'A'), + (282, 1, 'HUESPED ASISTENTE A LA CONVENCION DE LA DIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2009-06-24', 17160.00, 'A'), + (2820, 3, 'ROBLES TORRALBA IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 238949, '2011-05-16', 152030.00, 'A'), + (2821, 3, 'CONSUEGRA MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-06', 87600.00, 'A'), + (2822, 3, 'CELMA ADROVER LAIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 190393, '2011-03-23', 981880.00, 'A'), + (2823, 3, 'ALVAREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-06-20', 646610.00, 'A'), + (2824, 3, 'VARGAS WOODROFFE FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 157414, '2011-06-22', 287410.00, 'A'), + (2825, 3, 'GARCIA GUILLEN VICENTE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 144215, '2011-08-19', 497230.00, 'A'), + (2826, 3, 'GOMEZ GARCIA DIAMANTES PATRICIA MARIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2011-09-22', 623930.00, 'A'), + (2827, 3, 'PEREZ IGLESIAS BIBIANA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-09-30', 627940.00, 'A'), + (2830, 3, 'VILLALONGA MORENES MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 169679, '2011-05-29', 474910.00, 'A'), + (2831, 3, 'REY LOPEZ DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2011-08-03', 7380.00, 'A'), + (2832, 3, 'HOYO APARICIO JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116511, '2011-09-19', 612180.00, 'A'), + (2836, 3, 'GOMEZ GARCIA LOPEZ CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150699, '2011-09-21', 277540.00, 'A'), + (2839, 3, 'GALIMERTI MARCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 235197, '2011-08-28', 156870.00, 'A'), + (2840, 3, 'BAROZZI GIUSEPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 231989, '2011-05-25', 609500.00, 'A'), + (2841, 3, 'MARIAN RENATO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-12', 576900.00, 'A'), + (2842, 3, 'FAENZA CARLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126180, '2011-05-19', 55990.00, 'A'), + (2843, 3, 'PESOLILLO CARMINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 203162, '2011-06-26', 549230.00, 'A'), + (2844, 3, 'CHIODI FRANCESCO MARIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 199862, '2011-09-10', 578210.00, 'A'), + (2845, 3, 'RUTA MARIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-06-19', 243350.00, 'A'), + (2846, 3, 'BAZZONI MARINO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 101518, '2011-05-03', 482140.00, 'A'), + (2848, 3, 'LAGASIO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 231989, '2011-05-04', 956670.00, 'A'), + (2849, 3, 'VIERA DA CUNHA PAULO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 190393, '2011-04-05', 741520.00, 'A'), + (2850, 3, 'DAL BEN DENIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 116511, '2011-05-26', 837590.00, 'A'), + (2851, 3, 'GIANELLI HERIBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 233927, '2011-05-01', 963400.00, 'A'), + (2852, 3, 'JUSTINO DA SILVA DJAMIR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-08', 304200.00, 'A'), + (2853, 3, 'DIPASQUUALE GAETANO', 191821112, 'CRA 25 CALLE 100', '574@terra.com.co', '2011-02-03', 172888, '2011-07-11', 630830.00, 'A'), + (2855, 3, 'CURI MAURO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 199862, '2011-06-19', 315160.00, 'A'), + (2856, 3, 'DI DIO MARCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-20', 851210.00, 'A'), + (2857, 3, 'ROBERTI MENDONCA CAIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-11', 310580.00, 'A'), + (2859, 3, 'RAMOS MORENO DE SOUZA ANDRE ', 191821112, 'CRA 25 CALLE 100', '133@facebook.com', '2011-02-03', 118777, '2011-09-24', 64540.00, 'A'), + (286, 8, 'INEXMODA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-06-21', 50150.00, 'A'), + (2860, 3, 'JODJAHN DE CARVALHO FLAVIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-06-27', 324950.00, 'A'), + (2862, 3, 'LAGASIO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 231989, '2011-07-04', 180760.00, 'A'), + (2863, 3, 'MOON SUNG RIUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-08', 610440.00, 'A'), + (2865, 3, 'VAIDYANATHAN VIKRAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-11', 718220.00, 'A'), + (2866, 3, 'NARAYANASWAMY RAMSUNDAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 73079, '2011-10-02', 61390.00, 'A'), + (2867, 3, 'VADADA VENKATA RAMESH KUMAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-10', 152300.00, 'A'), + (2868, 3, 'RAMA KRISHNAN ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-10', 577300.00, 'A'), + (2869, 3, 'JALAN PRASHANT', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 122035, '2011-05-02', 429600.00, 'A'), + (2871, 3, 'CHANDRASEKAR VENKAT', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 112862, '2011-06-27', 791800.00, 'A'), + (2872, 3, 'CUMBAKONAM SWAMINATHAN SUBRAMANIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-11', 710650.00, 'A'), + (288, 8, 'BCD TRAVEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-23', 645390.00, 'A'), + (289, 3, 'EMBAJADA ARGENTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '1970-02-02', 749440.00, 'A'), + ('CELL3789', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (290, 3, 'EMBAJADA DE BRASIL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-11-16', 811030.00, 'A'), + (293, 8, 'ONU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-19', 584810.00, 'A'), + (299, 1, 'BLANDON GUZMAN JHON JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-01-13', 201740.00, 'A'), + (304, 3, 'COHEN DANIEL DYLAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 286785, '2010-11-17', 184850.00, 'A'), + (306, 1, 'CINDU ANDINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2009-06-11', 899230.00, 'A'), + (31, 1, 'GARRIDO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127662, '2010-09-12', 801450.00, 'A'), + (310, 3, 'CORPORACION CLUB EL NOGAL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2010-08-27', 918760.00, 'A'), + (314, 3, 'CHAWLA AARON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-08', 295840.00, 'A'), + (317, 3, 'BAKER HUGHES', 191821112, 'CRA 25 CALLE 100', '694@hotmail.com', '2011-02-03', 127591, '2011-04-03', 211990.00, 'A'), + (32, 1, 'PAEZ SEGURA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '675@gmail.com', '2011-02-03', 129447, '2011-08-22', 717340.00, 'A'), + (320, 1, 'MORENO PAEZ FREDDY ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-31', 971670.00, 'A'), + (322, 1, 'CALDERON CARDOZO GASTON EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-05', 990640.00, 'A'), + (324, 1, 'ARCHILA MERA ALFREDOMANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-22', 77200.00, 'A'), + (326, 1, 'MUNOZ AVILA HERNEY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-11-10', 550920.00, 'A'), + (327, 1, 'CHAPARRO CUBILLOS FABIAN ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-15', 685080.00, 'A'), + (329, 1, 'GOMEZ LOPEZ JUAN SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '970@yahoo.com', '2011-02-03', 127591, '2011-03-20', 808070.00, 'A'), + (33, 1, 'MARTINEZ MARINO HENRY HERNAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-04-20', 182370.00, 'A'), + (330, 3, 'MAPSTONE NAOMI LEA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 122035, '2010-02-21', 722380.00, 'A'), + (332, 3, 'ROSSI BURRI NELLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132165, '2010-05-10', 771210.00, 'A'), + (333, 1, 'AVELLANEDA OVIEDO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-25', 293060.00, 'A'), + (334, 1, 'SUZA FLOREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-13', 151650.00, 'A'), + (335, 1, 'ESGUERRA ALVARO ANDRES', 191821112, 'CRA 25 CALLE 100', '11@facebook.com', '2011-02-03', 127591, '2011-09-10', 879080.00, 'A'), + (337, 3, 'DE LA HARPE MARTIN CARAPET WALTER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-27', 64960.00, 'A'), + (339, 1, 'HERNANDEZ ACOSTA SERGIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 129499, '2011-06-22', 322570.00, 'A'), + (340, 3, 'ZARAMA DE LA ESPRIELLA MIGUEL PATRICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-27', 102360.00, 'A'), + (342, 1, 'CABRERA VASQUEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-01', 413440.00, 'A'), + (343, 3, 'RICHARDSON BEN MARRIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2010-05-18', 434890.00, 'A'), + (344, 1, 'OLARTE PINZON MIGUEL FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-30', 934140.00, 'A'), + (345, 1, 'SOLER SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-04-20', 366020.00, 'A'), + (346, 1, 'PRIETO JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-07-12', 27690.00, 'A'), + (349, 1, 'BARRERO VELASCO DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-01', 472850.00, 'A'), + (35, 1, 'VELASQUEZ RAMOS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-13', 251940.00, 'A'), + (350, 1, 'RANGEL GARCIA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-03-20', 7880.00, 'A'), + (353, 1, 'ALVAREZ ACEVEDO JOHN FREDDY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-16', 540070.00, 'A'), + (354, 1, 'VILLAMARIN HOME WILMAR ALFREDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-19', 458810.00, 'A'), + (355, 3, 'SLUCHIN NAAMAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 263813, '2010-12-01', 673830.00, 'A'), + (357, 1, 'BULLA BERNAL LUIS ERNESTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-14', 942160.00, 'A'), + (358, 1, 'BRACCIA AVILA GIANCARLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-01', 732620.00, 'A'), + (359, 1, 'RODRIGUEZ PINTO RAUL DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-24', 836600.00, 'A'), + (36, 1, 'MALDONADO ALVAREZ JAIRO ASDRUBAL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-06-19', 980270.00, 'A'), + (362, 1, 'POMBO POLANCO JUAN BERNARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-18', 124130.00, 'A'), + (363, 1, 'CARDENAS SUAREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-01', 372920.00, 'A'), + (364, 1, 'RIVERA MAZO JOSE DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-06-10', 492220.00, 'A'), + (365, 1, 'LEDERMAN CORDIKI JONATHAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-12-03', 342340.00, 'A'), + (367, 1, 'BARRERA MARTINEZ LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '35@yahoo.com.mx', '2011-02-03', 127591, '2011-05-24', 148130.00, 'A'), + (368, 1, 'SEPULVEDA RAMIREZ DANIEL MARCELO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-31', 35560.00, 'A'), + (369, 1, 'QUINTERO DIAZ WILSON ASDRUBAL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', 733430.00, 'A'), + (37, 1, 'RESTREPO SUAREZ HENRY BERNARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-07-25', 145540.00, 'A'), + (370, 1, 'ROJAS YARA WILLMAR ARLEY', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-12-03', 560450.00, 'A'), + (371, 3, 'CARVER LOUISE EMILY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 286785, '2010-10-07', 601980.00, 'A'), + (372, 3, 'VINCENT DAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2011-03-06', 328540.00, 'A'), + (374, 1, 'GONZALEZ DELGADO MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-18', 198260.00, 'A'), + (375, 1, 'PAEZ SIMON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-25', 480970.00, 'A'), + (376, 1, 'CADOSCH DELMAR ELIE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-07', 810080.00, 'A'), + (377, 1, 'HERRERA VASQUEZ DANIEL EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-06-30', 607460.00, 'A'), + (378, 1, 'CORREAL ROJAS RONALD', 191821112, 'CRA 25 CALLE 100', '269@facebook.com', '2011-02-03', 127591, '2011-07-16', 607080.00, 'A'), + (379, 1, 'VOIDONNIKOLAS MUNOS PANAGIOTIS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-27', 213010.00, 'A'), + (38, 1, 'CANAL ROJAS MAURICIO HERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-05-29', 786900.00, 'A'), + (380, 1, 'DIAZ ECHEVERRI JUAN DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-20', 243800.00, 'A'), + (381, 1, 'CIFUENTES MARIN HERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-26', 579960.00, 'A'), + (382, 3, 'PAXTON LUCINDA HARRIET', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 107159, '2011-05-23', 168420.00, 'A'), + (384, 3, 'POYNTON BRIAN GEORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 286785, '2011-03-20', 5790.00, 'A'), + (385, 3, 'TERMIGNONI ADRIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-01-14', 722320.00, 'A'), + (386, 3, 'CARDWELL PAULA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-02-17', 594230.00, 'A'), + (389, 1, 'FONCECA MARTINEZ MIGUEL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-25', 778680.00, 'A'), + (39, 1, 'GARCIA SUAREZ WILLIAM ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-25', 497880.00, 'A'), + (390, 1, 'GUERRERO NELSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-12-03', 178650.00, 'A'), + (391, 1, 'VICTORIA PENA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-22', 557200.00, 'A'), + (392, 1, 'VAN HISSENHOVEN FERRERO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-13', 250060.00, 'A'), + (393, 1, 'CACERES ORDUZ JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-28', 578690.00, 'A'), + (394, 1, 'QUINTERO ALVARO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-17', 143270.00, 'A'), + (395, 1, 'ANZOLA PEREZ CARLOSDAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-04', 980300.00, 'A'), + (397, 1, 'LLOREDA ORTIZ CARLOS JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-27', 417470.00, 'A'), + (398, 1, 'GONZALES LONDONO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-19', 672310.00, 'A'), + (4, 1, 'LONDONO DOMINGUEZ ERNESTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-05', 324610.00, 'A'), + (40, 1, 'MORENO ANGULO ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-01', 128690.00, 'A'), + (400, 8, 'TRANSELCA .A', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-04-14', 528930.00, 'A'), + (403, 1, 'VERGARA MURILLO JUAN FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-04', 42900.00, 'A'), + (405, 1, 'CAPERA CAPERA HARRINSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127799, '2011-06-12', 961000.00, 'A'), + (407, 1, 'MORENO MORA WILLIAM EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-22', 872780.00, 'A'), + (408, 1, 'HIGUERA ROA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-28', 910430.00, 'A'), + (409, 1, 'FORERO CASTILLO OSCAR ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '988@terra.com.co', '2011-02-03', 127591, '2011-07-23', 933810.00, 'A'), + (410, 1, 'LOPEZ MURCIA JULIAN DANIEL', 191821112, 'CRA 25 CALLE 100', '399@facebook.com', '2011-02-03', 127591, '2011-08-08', 937790.00, 'A'), + (411, 1, 'ALZATE JOHN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-09-09', 887490.00, 'A'), + (412, 1, 'GONZALES GONZALES ORLANDO ANDREY', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-30', 624080.00, 'A'), + (413, 1, 'ESCOLANO VALENTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-05', 457930.00, 'A'), + (414, 1, 'JARAMILLO RODRIGUEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-12', 417420.00, 'A'), + (415, 1, 'GARCIA MUNOZ DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-02', 713300.00, 'A'), + (416, 1, 'PINEROS ARENAS JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-10-17', 314260.00, 'A'), + (417, 1, 'ORTIZ ARROYAVE ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-05-21', 431370.00, 'A'), + (418, 1, 'BAYONA BARRIENTOS JEAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-12', 214090.00, 'A'), + (419, 1, 'AGUDELO VASQUEZ JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-30', 776360.00, 'A'), + (420, 1, 'CALLE DANIEL CJ PRODUCCIONES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-04', 239500.00, 'A'), + (422, 1, 'CANO BETANCUR ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-08-20', 623620.00, 'A'), + (423, 1, 'CALDAS BARRETO LUZ MIREYA', 191821112, 'CRA 25 CALLE 100', '991@facebook.com', '2011-02-03', 127591, '2011-05-22', 512840.00, 'A'), + (424, 1, 'SIMBAQUEBA JOSE ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 693320.00, 'A'), + (425, 1, 'DE SILVESTRE CALERO LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-18', 928110.00, 'A'), + (426, 1, 'ZORRO PERALTA YEZID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-25', 560560.00, 'A'), + (428, 1, 'SUAREZ OIDOR DARWIN LEONARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131272, '2011-09-05', 410650.00, 'A'), + (429, 1, 'GIRAL CARRILLO LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-13', 997850.00, 'A'), + (43, 1, 'MARULANDA VALENCIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-17', 365550.00, 'A'), + (430, 1, 'CORDOBA GARCES JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-18', 757320.00, 'A'), + (431, 1, 'ARIAS TAMAYO DIEGO MAURICIO', 191821112, 'CRA 25 CALLE 100', '36@yahoo.com', '2011-02-03', 127591, '2011-09-05', 793050.00, 'A'), + (432, 1, 'EICHMANN PERRET MARC WILLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-22', 693270.00, 'A'), + (433, 1, 'DIAZ DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2008-09-18', 87200.00, 'A'), + (435, 1, 'FACCINI GONZALEZ HERMANN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2009-01-08', 519420.00, 'A'), + (436, 1, 'URIBE DUQUE FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-28', 528470.00, 'A'), + (437, 1, 'TAVERA GAONA GABREL LEAL', 191821112, 'CRA 25 CALLE 100', '280@terra.com.co', '2011-02-03', 127591, '2011-04-28', 84120.00, 'A'), + (438, 1, 'ORDONEZ PARIS FERNANDO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-09-26', 835170.00, 'A'), + (439, 1, 'VILLEGAS ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 923520.00, 'A'), + (44, 1, 'MARTINEZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-08-13', 738750.00, 'A'), + (440, 1, 'MARTINEZ RUEDA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '805@hotmail.es', '2011-02-03', 127591, '2011-04-07', 112050.00, 'A'), + (441, 1, 'ROLDAN JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-05-25', 789720.00, 'A'), + (442, 1, 'PEREZ BRANDWAYN ELIYAU MOISES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-10-20', 612450.00, 'A'), + (443, 1, 'VALLEJO TORO JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128579, '2011-08-16', 693080.00, 'A'), + (444, 1, 'TORRES CABRERA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-19', 628070.00, 'A'), + (445, 1, 'MERINO MEJIA GERMAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-28', 61100.00, 'A'), + (447, 1, 'GOMEZ GOMEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-08', 923070.00, 'A'), + (448, 1, 'RAUSCH CHEHEBAR STEVEN JOSEPH', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-09-27', 351540.00, 'A'), + (449, 1, 'RESTREPO TRUCCO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-28', 988500.00, 'A'), + (45, 1, 'GUTIERREZ JARAMILLO CARLOS MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-22', 597090.00, 'A'), + (450, 1, 'GOLDSTEIN VAIDA ELI JACK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-11', 887860.00, 'A'), + (451, 1, 'OLEA PINEDA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-10', 473800.00, 'A'), + (452, 1, 'JORGE OROZCO', 191821112, 'CRA 25 CALLE 100', '503@hotmail.es', '2011-02-03', 127591, '2011-06-02', 705410.00, 'A'), + (454, 1, 'DE LA TORRE GOMEZ GERMAN ERNESTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-03', 411990.00, 'A'), + (456, 1, 'MADERO ARIAS JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '452@hotmail.es', '2011-02-03', 127591, '2011-08-22', 479090.00, 'A'), + (457, 1, 'GOMEZ MACHUCA ALVARO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-12', 166430.00, 'A'), + (458, 1, 'MENDIETA TOBON DANIEL RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-08', 394880.00, 'A'), + (459, 1, 'VILLADIEGO CORTINA JAVIER TOMAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-26', 475110.00, 'A'), + (46, 1, 'FERRUCHO ARCINIEGAS JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', 769220.00, 'A'), + (460, 1, 'DERESER HARTUNG ERNESTO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-12-25', 190900.00, 'A'), + (461, 1, 'RAMIREZ PENA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-06-25', 529190.00, 'A'), + (463, 1, 'IREGUI REYES LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 778590.00, 'A'), + (464, 1, 'PINTO GOMEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2010-06-24', 673270.00, 'A'), + (465, 1, 'RAMIREZ RAMIREZ FERNANDO ALONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127799, '2011-10-01', 30570.00, 'A'), + (466, 1, 'BERRIDO TRUJILLO JORGE HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2011-10-06', 133040.00, 'A'), + (467, 1, 'RIVERA CARVAJAL RAFAEL HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-20', 573500.00, 'A'), + (468, 3, 'FLOREZ PUENTES IVAN ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-08', 468380.00, 'A'), + (469, 1, 'BALLESTEROS FLOREZ IVAN DARIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-02', 621410.00, 'A'), + (47, 1, 'MARIN FLOREZ OMAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-30', 54840.00, 'A'), + (470, 1, 'RODRIGO PENA HERRERA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 237734, '2011-10-04', 701890.00, 'A'), + (471, 1, 'RODRIGUEZ SILVA ROGELIO', 191821112, 'CRA 25 CALLE 100', '163@gmail.com', '2011-02-03', 127591, '2011-05-26', 645210.00, 'A'), + (473, 1, 'VASQUEZ VELANDIA JUAN GABRIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-05-04', 666330.00, 'A'), + (474, 1, 'ROBLEDO JAIME', 191821112, 'CRA 25 CALLE 100', '409@yahoo.com', '2011-02-03', 127591, '2011-05-31', 970480.00, 'A'), + (475, 1, 'GRIMBERG DIAZ PHILIP', 191821112, 'CRA 25 CALLE 100', '723@yahoo.com', '2011-02-03', 127591, '2011-03-30', 853430.00, 'A'), + (476, 1, 'CHAUSTRE GARCIA JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-26', 355670.00, 'A'), + (477, 1, 'GOMEZ FLOREZ IGNASIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-14', 218090.00, 'A'), + (478, 1, 'LUIS ALBERTO CABRERA PUENTES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-05-26', 23420.00, 'A'), + (479, 1, 'MARTINEZ ZAPATA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '234@gmail.com', '2011-02-03', 127122, '2011-07-01', 462840.00, 'A'), + (48, 1, 'PARRA IBANEZ FABIAN ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-02-01', 966520.00, 'A'), + (480, 3, 'WESTERBERG JAN RICKARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 300701, '2011-02-01', 243940.00, 'A'), + (484, 1, 'RODRIGUEZ VILLALOBOS EDGAR FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-19', 860320.00, 'A'), + (486, 1, 'NAVARRO REYES DIEGO FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-01', 530150.00, 'A'), + (487, 1, 'NOGUERA RICAURTE ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-01-21', 384100.00, 'A'), + (488, 1, 'RUIZ VEJARANO CARLOS DANIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-27', 330030.00, 'A'), + (489, 1, 'CORREA PEREZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-12-14', 497860.00, 'A'), + (49, 1, 'FLOREZ PEREZ RUBIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-23', 668090.00, 'A'), + (490, 1, 'REYES GOMEZ LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-26', 499210.00, 'A'), + (491, 3, 'BERNAL LEON ALBERTO JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2011-03-29', 2470.00, 'A'), + (492, 1, 'FELIPE JARAMILLO CARO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2009-10-31', 514700.00, 'A'), + (493, 1, 'GOMEZ PARRA GERMAN DARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-01-29', 566100.00, 'A'), + (494, 1, 'VALLEJO RAMIREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-13', 286390.00, 'A'), + (495, 1, 'DIAZ LONDONO HUGO MARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 733670.00, 'A'), + (496, 3, 'VAN BAKERGEM RONALD JAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2008-11-05', 809190.00, 'A'), + (497, 1, 'MENDEZ RAMIREZ JOSE LEONARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-10', 844920.00, 'A'), + (498, 3, 'QUI TANILLA HENRIQUEZ PAUL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-10', 797030.00, 'A'), + (499, 3, 'PELEATO FLOREAL', 191821112, 'CRA 25 CALLE 100', '531@hotmail.com', '2011-02-03', 188640, '2011-04-23', 450370.00, 'A'), + (50, 1, 'SILVA GUZMAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-24', 440890.00, 'A'), + (502, 3, 'LEO ULF GORAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 300701, '2010-07-26', 181840.00, 'A'), + (503, 3, 'KARLSSON DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 300701, '2011-07-22', 50680.00, 'A'), + (504, 1, 'JIMENEZ JANER ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '889@hotmail.es', '2011-02-03', 203272, '2011-08-29', 707880.00, 'A'), + (506, 1, 'PABON OCHOA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-14', 813050.00, 'A'), + (507, 1, 'ACHURY CADENA CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-26', 903240.00, 'A'), + (508, 1, 'ECHEVERRY GARZON SEBASTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-23', 77050.00, 'A'), + (509, 1, 'PINEROS PENA LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-29', 675550.00, 'A'), + (51, 1, 'CAICEDO URREA JAIME ORLANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-08-17', 200160.00, 'A'), + ('CELL3795', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (510, 1, 'MARTINEZ MARTINEZ LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', '586@facebook.com', '2011-02-03', 127591, '2010-08-28', 146600.00, 'A'), + (511, 1, 'MOLANO PENA JESUS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-02-05', 706320.00, 'A'), + (512, 3, 'RUDOLPHY FONTAINE ANDRES', 191821112, 'CRA 25 CALLE 100', '492@yahoo.com', '2011-02-03', 117002, '2011-04-12', 91820.00, 'A'), + (513, 1, 'NEIRA CHAVARRO JOHN JAIRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-12', 340120.00, 'A'), + (514, 3, 'MENDEZ VILLALOBOS ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-03-25', 425160.00, 'A'), + (515, 3, 'HERNANDEZ OLIVA JOSE DE LA CRUZ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-03-25', 105440.00, 'A'), + (518, 3, 'JANCO NICOLAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-15', 955830.00, 'A'), + (52, 1, 'TAPIA MUNOZ JAIRO RICARDO', 191821112, 'CRA 25 CALLE 100', '920@hotmail.es', '2011-02-03', 127591, '2011-10-05', 678130.00, 'A'), + (520, 1, 'ALVARADO JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-26', 895550.00, 'A'), + (521, 1, 'HUERFANO SOTO JONATHAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-30', 619910.00, 'A'), + (522, 1, 'HUERFANO SOTO JONATHAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-04', 412900.00, 'A'), + (523, 1, 'RODRIGEZ GOMEZ WILMAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-14', 204790.00, 'A'), + (525, 1, 'ARROYO BAPTISTE DIEGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-09', 311810.00, 'A'), + (526, 1, 'PULECIO BOEK DANIEL', 191821112, 'CRA 25 CALLE 100', '718@gmail.com', '2011-02-03', 127591, '2011-08-12', 203350.00, 'A'), + (527, 1, 'ESLAVA VELEZ SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-10-08', 81300.00, 'A'), + (528, 1, 'CASTRO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-05-06', 796470.00, 'A'), + (53, 1, 'HINCAPIE MARTINEZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127573, '2011-09-26', 790180.00, 'A'), + (530, 1, 'ZORRILLA PUJANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '312@yahoo.es', '2011-02-03', 127591, '2011-06-06', 302750.00, 'A'), + (531, 1, 'ZORRILLA PUJANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-06', 298440.00, 'A'), + (532, 1, 'PRETEL ARTEAGA MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-09', 583980.00, 'A'), + (533, 1, 'RAMOS VERGARA HUMBERTO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 131105, '2010-05-13', 24560.00, 'A'), + (534, 1, 'BONILLA PINEROS DIEGO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', 370880.00, 'A'), + (535, 1, 'BELTRAN TRIVINO JULIAN DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-11-06', 780710.00, 'A'), + (536, 3, 'BLOD ULF FREDERICK EDWARD', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-06', 790900.00, 'A'), + (537, 1, 'VANEGAS OROZCO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-10', 612400.00, 'A'), + (538, 3, 'ORUE VALLE MONICA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 97885, '2011-09-15', 689270.00, 'A'), + (539, 1, 'AGUDELO BEDOYA ANDRES JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-05-24', 609160.00, 'A'), + (54, 1, 'DE HOYOS TRESPALACIOS MAURICIO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-21', 916500.00, 'A'), + (540, 3, 'HEIJKENSKJOLD PER JESPER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-06', 977980.00, 'A'), + (541, 3, 'GONZALEZ ALVARADO LUIS RAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-08-27', 62430.00, 'A'), + (543, 1, 'GRUPO SURAMERICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-08-24', 703760.00, 'A'), + (545, 1, 'CORPORACION CONTEXTO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-08', 809570.00, 'A'), + (546, 3, 'LUNDIN JOHAN ERIK ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-29', 895330.00, 'A'), + (548, 3, 'VEGERANO JOSE ', 191821112, 'CRA 25 CALLE 100', '221@facebook.com', '2011-02-03', 190393, '2011-06-05', 553780.00, 'A'), + (549, 3, 'SERRANO MADRID CLAUDIA INES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-27', 625060.00, 'A'), + (55, 1, 'TAFUR GOMEZ ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2010-09-12', 211980.00, 'A'), + (550, 1, 'MARTINEZ ACEVEDO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-10-06', 463920.00, 'A'), + (551, 1, 'GONZALEZ MORENO PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-07-21', 444450.00, 'A'), + (552, 1, 'MEJIA ROJAS ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-08-02', 830470.00, 'A'), + (553, 3, 'RODRIGUEZ ANTHONY HANSEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-16', 819000.00, 'A'), + (554, 1, 'ABUCHAIBE ANNICCHRICO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-31', 603610.00, 'A'), + (555, 3, 'MOYES KIMBERLY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-08', 561020.00, 'A'), + (556, 3, 'MONTINI MARIO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118942, '2010-03-16', 994280.00, 'A'), + (557, 3, 'HOGBERG DANIEL TOBIAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-15', 288350.00, 'A'), + (559, 1, 'OROZCO PFEIZER MARTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-10-07', 429520.00, 'A'), + (56, 1, 'NARINO ROJAS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-27', 310390.00, 'A'), + (560, 1, 'GARCIA MONTOYA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-06-02', 770840.00, 'A'), + (562, 1, 'VELASQUEZ PALACIO MANUEL ORLANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-06-23', 515670.00, 'A'), + (563, 1, 'GALLEGO PEREZ DIEGO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-14', 881460.00, 'A'), + (564, 1, 'RUEDA URREGO JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-04', 860270.00, 'A'), + (565, 1, 'RESTREPO DEL TORO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-10', 656960.00, 'A'), + (567, 1, 'TORO VALENCIA FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-08-04', 549090.00, 'A'), + (568, 1, 'VILLEGAS LUIS ALFONSO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-02', 633490.00, 'A'), + (569, 3, 'RIDSTROM CHRISTER ANDERS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 300701, '2011-09-06', 520150.00, 'A'), + (57, 1, 'TOVAR ARANGO JOHN JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127662, '2010-07-03', 916010.00, 'A'), + (570, 3, 'SHEPHERD DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2008-05-11', 700280.00, 'A'), + (573, 3, 'BENGTSSON JOHAN ANDREAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 196830.00, 'A'), + (574, 3, 'PERSSON HANS JONAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-09', 172340.00, 'A'), + (575, 3, 'SYNNEBY BJORN ERIK', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-15', 271210.00, 'A'), + ('CELL381', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (577, 3, 'COHEN PAUL KIRTAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 381490.00, 'A'), + (578, 3, 'ROMERO BRAVO FERNANDO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', 390360.00, 'A'), + (579, 3, 'GUTHRIE ROBERT DEAN', 191821112, 'CRA 25 CALLE 100', '794@gmail.com', '2011-02-03', 161705, '2010-07-20', 807350.00, 'A'), + (58, 1, 'TORRES ESCOBAR JAIRO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-06-17', 648860.00, 'A'), + (580, 3, 'ROCASERMENO MONTENEGRO MARIO JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 139844, '2010-12-01', 865650.00, 'A'), + (581, 1, 'COCK JORGE EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-19', 906210.00, 'A'), + (582, 3, 'REISS ANDREAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-01-31', 934120.00, 'A'), + (584, 3, 'ECHEVERRIA CASTILLO GERMAN FRANCISCO', 191821112, 'CRA 25 CALLE 100', '982@yahoo.com', '2011-02-03', 139844, '2011-07-20', 957370.00, 'A'), + (585, 3, 'BRANDT CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-10', 931030.00, 'A'), + (586, 3, 'VEGA NUNEZ GILBERTO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-14', 783010.00, 'A'), + (587, 1, 'BEJAR MUNOZ JORDI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 196234, '2010-10-08', 121990.00, 'A'), + (588, 3, 'WADSO KERSTIN ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-17', 260890.00, 'A'), + (59, 1, 'RAMOS FORERO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-20', 496300.00, 'A'), + (590, 1, 'RODRIGUEZ BETANCOURT JAVIER AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2011-05-23', 909850.00, 'A'), + (592, 1, 'ARBOLEDA HALABY RODRIGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 150699, '2009-02-03', 939170.00, 'A'), + (593, 1, 'CURE CURE CARLOS ALFREDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-07-11', 494600.00, 'A'), + (594, 3, 'VIDELA PEREZ OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-07-13', 655510.00, 'A'), + (595, 1, 'GONZALEZ GAVIRIA NESTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2009-09-28', 793760.00, 'A'), + (596, 3, 'IZQUIERDO DELGADO DIONISIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2009-09-24', 2250.00, 'A'), + (597, 1, 'MORENO DAIRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-06-14', 629990.00, 'A'), + (598, 1, 'RESTREPO FERNNDEZ SOTO JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-08-31', 143210.00, 'A'), + (599, 3, 'YERYES VERGARA MARIA SOLEDAD', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-10-11', 826060.00, 'A'), + (6, 1, 'GUZMAN ESCOBAR JOSE VICENTE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-10', 26390.00, 'A'), + (60, 1, 'ELEJALDE ESCOBAR TOMAS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-11-09', 534910.00, 'A'), + (601, 1, 'ESCAF ESCAF WILLIAM MIGUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 150699, '2011-07-26', 25190.00, 'A'), + (602, 1, 'CEBALLOS ZULUAGA JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-03', 23920.00, 'A'), + (603, 1, 'OLIVELLA GUERRERO RAFAEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2010-06-23', 44040.00, 'A'), + (604, 1, 'ESCOBAR GALLO CARLOS HUGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-09', 148420.00, 'A'), + (605, 1, 'ESCORCIA RAMIREZ EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128569, '2011-04-01', 609990.00, 'A'), + (606, 1, 'MELGAREJO MORENO PAULA ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-05', 604700.00, 'A'), + (607, 1, 'TOBON CALLE CARLOS GUILLERMO', 191821112, 'CRA 25 CALLE 100', '689@hotmail.es', '2011-02-03', 128662, '2011-03-16', 193510.00, 'A'), + (608, 3, 'TREVINO NOPHAL SILVANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 110709, '2011-05-27', 153470.00, 'A'), + (609, 1, 'CARDER VELEZ EDWIN JOHN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-04', 186830.00, 'A'), + (61, 1, 'GASCA DAZA VICTOR HERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-09', 185660.00, 'A'), + (610, 3, 'DAVIS JOHN BRADLEY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-04-06', 473740.00, 'A'), + (611, 1, 'BAQUERO SLDARRIAGA ALVARO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-09-15', 808210.00, 'A'), + (612, 3, 'SERRACIN ARAUZ YANIRA YAMILET', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 131272, '2011-06-09', 619820.00, 'A'), + (613, 1, 'MORA SOTO ALVARO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-09-20', 674450.00, 'A'), + (614, 1, 'SUAREZ RODRIGUEZ HERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-03-29', 512820.00, 'A'), + (616, 1, 'BAQUERO GARCIA JORGE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-07-14', 165160.00, 'A'), + (617, 3, 'ABADI MADURO MOISES SIMON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 131272, '2009-03-31', 203640.00, 'A'), + (62, 3, 'FLOWER LYNDON BRUCE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 231373, '2011-05-16', 323560.00, 'A'), + (624, 8, 'OLARTE LEONARDO', 191821112, 'CRA 25 CALLE 100', '6@hotmail.com', '2011-02-03', 127591, '2011-06-03', 219790.00, 'A'), + (63, 1, 'RUBIO CORTES OSCAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-04-28', 60830.00, 'A'), + (630, 5, 'PROEXPORT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2010-08-12', 708320.00, 'A'), + (632, 8, 'SUPER COFFEE ', 191821112, 'CRA 25 CALLE 100', '792@hotmail.es', '2011-02-03', 127591, '2011-08-30', 306460.00, 'A'), + (636, 8, 'NOGAL ASESORIAS FINANCIERAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-04-07', 752150.00, 'A'), + (64, 1, 'GUERRA MARTINEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-24', 333480.00, 'A'), + (645, 8, 'GIZ - PROFIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-31', 566330.00, 'A'), + (652, 3, 'QBE DEL ISTMO COMPANIA DE REASEGUROS ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-14', 932190.00, 'A'), + (655, 3, 'CORP. CENTRO DE ESTUDIOS DE DERECHO JUSTICIA Y SOCIEDAD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-05-04', 440370.00, 'A'), + (659, 3, 'GOOD YEAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2010-09-24', 993830.00, 'A'), + (660, 3, 'ARCINIEGAS Y VILLAMIZAR', 191821112, 'CRA 25 CALLE 100', '258@yahoo.com', '2011-02-03', 127591, '2010-12-02', 787450.00, 'A'), + (67, 1, 'LOPEZ HOYOS JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127662, '2010-04-13', 665230.00, 'A'), + (670, 8, 'APPLUS NORCONTROL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-09-06', 83210.00, 'A'), + (672, 3, 'KERLL SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 287273, '2010-12-19', 501610.00, 'A'), + (673, 1, 'RESTREPO MOLINA RAMIRO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 144215, '2010-12-18', 457290.00, 'A'), + (674, 1, 'PEREZ GIL JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-08-18', 781610.00, 'A'), + ('CELL3840', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (676, 1, 'GARCIA LONDONO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-23', 336160.00, 'A'), + (677, 3, 'RIJLAARSDAM KARIN AN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-07-03', 72210.00, 'A'), + (679, 1, 'LIZCANO MONTEALEGRE ARNULFO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127203, '2011-02-01', 546170.00, 'A'), + (68, 1, 'MARTINEZ SILVA EDGAR', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-29', 54250.00, 'A'), + (680, 3, 'OLIVARI MAYER PATRICIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 122642, '2011-08-01', 673170.00, 'A'), + (682, 3, 'CHEVALIER FRANCK PIERRE CHARLES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 263813, '2010-12-01', 617280.00, 'A'), + (683, 3, 'NG WAI WING ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126909, '2011-06-14', 904310.00, 'A'), + (684, 3, 'MULLER DOMINGUEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-22', 669700.00, 'A'), + (685, 3, 'MOSQUEDA DOMNGUEZ ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-04-08', 635580.00, 'A'), + (686, 3, 'LARREGUI MARIN LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-08', 168800.00, 'A'), + (687, 3, 'VARGAS VERGARA ALEJANDRO BRAULIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 159245, '2011-09-14', 937260.00, 'A'), + (688, 3, 'SKINNER LYNN CHERYL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-12', 179890.00, 'A'), + (689, 1, 'URIBE CORREA LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2010-07-29', 87680.00, 'A'), + (690, 1, 'TAMAYO JARAMILLO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-11-10', 898730.00, 'A'), + (691, 3, 'MOTABAN DE BORGES PAULA ELENA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2010-09-24', 230610.00, 'A'), + (692, 5, 'FERNANDEZ NALDA JOSE MANUEL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-06-28', 456850.00, 'A'), + (693, 1, 'GOMEZ RESTREPO JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-06-28', 592420.00, 'A'), + (694, 1, 'CARDENAS TAMAYO JOSE JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-08-08', 591550.00, 'A'), + (696, 1, 'RESTREPO ARANGO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-03-31', 127820.00, 'A'), + (697, 1, 'ROCABADO PASTRANA ROBERT JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127443, '2011-08-13', 97600.00, 'A'), + (698, 3, 'JARVINEN JOONAS JORI KRISTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196234, '2011-05-29', 104560.00, 'A'), + (699, 1, 'MORENO PEREZ HERNAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-30', 230000.00, 'A'), + (7, 1, 'PUYANA RAMOS GUILLERMO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-27', 331830.00, 'A'), + (70, 1, 'GALINDO MANZANO JAVIER FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-31', 214890.00, 'A'), + (701, 1, 'ROMERO PEREZ ARCESIO JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132775, '2011-07-13', 491650.00, 'A'), + (703, 1, 'CHAPARRO AGUDELO LEONARDO VIRGILIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-05-04', 271320.00, 'A'), + (704, 5, 'VASQUEZ YANIS MARIA DEL PILAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-10-13', 508820.00, 'A'), + (705, 3, 'BARBERO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 116511, '2010-09-13', 730170.00, 'A'), + (706, 1, 'CARMONA HERNANDEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-11-08', 124380.00, 'A'), + (707, 1, 'PEREZ SUAREZ JORGE ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2011-09-14', 431370.00, 'A'), + (708, 1, 'ROJAS JORGE MARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 130135, '2011-04-01', 783740.00, 'A'), + (71, 1, 'DIAZ JUAN PABLO/JULES JAVIER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-10-01', 247860.00, 'A'), + (711, 3, 'CATALDO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116773, '2011-06-06', 984810.00, 'A'), + (716, 5, 'MACIAS PIZARRO PATRICIO ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-06-07', 376260.00, 'A'), + (717, 1, 'RENDON MAYA DAVID ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 130273, '2010-07-25', 332310.00, 'A'), + (718, 3, 'DE HILDEBRAND E GRISI FILHO CELSO CLAUDIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-11', 532740.00, 'A'), + (719, 3, 'ALLIEL FACUSSE JULIO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-20', 666800.00, 'A'), + (72, 1, 'LOPEZ ROJAS VICTOR DANIEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-11', 594640.00, 'A'), + (720, 3, 'CHEMELLO JIMENEZ GAETANO ALBERTO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2010-06-23', 735760.00, 'A'), + (721, 3, 'GARCIA BEZANILLA RODOLFO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-04-12', 678420.00, 'A'), + (722, 1, 'ARIAS EDWIN', 191821112, 'CRA 25 CALLE 100', '13@terra.com.co', '2011-02-03', 127492, '2008-04-24', 184800.00, 'A'), + (723, 3, 'SOHN JANG WON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-07', 888750.00, 'A'), + (724, 3, 'WILHELM GIOVINE JAIME ROBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 115263, '2011-09-20', 889340.00, 'A'), + (726, 3, 'CASTILLERO DANIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 131272, '2011-05-13', 234270.00, 'A'), + (727, 3, 'PORTUGAL LANGHORST MAX GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-13', 829960.00, 'A'), + (729, 3, 'ALFONSO HERRANZ AGUSTIN ALFONSO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-21', 745060.00, 'A'), + (73, 1, 'DAVILA MENDEZ OSCAR DIEGO', 191821112, 'CRA 25 CALLE 100', '991@yahoo.com.mx', '2011-02-03', 128569, '2011-08-31', 229630.00, 'A'), + (730, 3, 'ALFONSO HERRANZ AGUSTIN CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-03-31', 384360.00, 'A'), + (731, 1, 'NOGUERA RAMIREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-14', 686610.00, 'A'), + (732, 1, 'ACOSTA PERALTA FABIAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 134030, '2011-06-21', 279960.00, 'A'), + (733, 3, 'MAC LEAN PINA PEDRO SEGUNDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-05-23', 339980.00, 'A'), + (734, 1, 'LEON ARCOS ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-05-04', 860020.00, 'A'), + (736, 3, 'LAMARCA GARCIA GERMAN JULIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-04-29', 820700.00, 'A'), + (737, 1, 'PORTO VELASQUEZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '321@hotmail.es', '2011-02-03', 133535, '2011-08-17', 263060.00, 'A'), + (738, 1, 'BUENAVENTURA MEDINA ERICK WILSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-09-18', 853180.00, 'A'), + (739, 1, 'LEVY ARRAZOLA RALPH MARC', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2011-09-27', 476720.00, 'A'), + (74, 1, 'RAMIREZ SORA EDISON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-03', 364220.00, 'A'), + (740, 3, 'MOON HYUNSIK ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 173192, '2011-05-15', 824080.00, 'A'), + (741, 3, 'LHUILLIER TRONCOSO GASTON MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-09-07', 690230.00, 'A'), + (742, 3, 'UNDURRAGA PELLEGRINI GONZALO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2010-11-21', 978900.00, 'A'), + (743, 1, 'SOLANO TRIBIN NICOLAS SIMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 134022, '2011-03-16', 823800.00, 'A'), + (744, 1, 'NOGUERA BENAVIDES JACOBO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-06', 182300.00, 'A'), + (745, 1, 'GARCIA LEON MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2008-04-16', 440110.00, 'A'), + (746, 1, 'EMILIANI ROJAS ALEXANDER ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-09-12', 653640.00, 'A'), + (748, 1, 'CARRENO POULSEN HELGEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', 778370.00, 'A'), + (749, 1, 'ALVARADO FANDINO ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2008-11-05', 48280.00, 'A'), + (750, 1, 'DIAZ GRANADOS JUAN PABLO.', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-01-12', 906290.00, 'A'), + (751, 1, 'OVALLE BETANCOURT ALBERTO JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2011-08-14', 386620.00, 'A'), + (752, 3, 'GUTIERREZ VERGARA JOSE MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-08', 214250.00, 'A'), + (753, 3, 'CHAPARRO GUAIMARAL LIZ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 147467, '2011-03-16', 911350.00, 'A'), + (754, 3, 'CORTES DE SOLMINIHAC PABLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-01-20', 914020.00, 'A'), + (755, 3, 'CHETAIL VINCENT', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 239124, '2010-08-23', 836050.00, 'A'), + (756, 3, 'PERUGORRIA RODRIGUEZ JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2010-10-17', 438210.00, 'A'), + (757, 3, 'GOLLMANN ROBERTO JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 167269, '2011-03-28', 682870.00, 'A'), + (758, 3, 'VARELA SEPULVEDA MARIA PILAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2010-07-26', 99730.00, 'A'), + (759, 3, 'MEYER WELIKSON MICHELE JANIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-05-10', 450030.00, 'A'), + (76, 1, 'VANEGAS RODRIGUEZ OSCAR IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', 568310.00, 'A'), + (77, 3, 'GATICA SOTOMAYOR MAURICIO VICENTE', 191821112, 'CRA 25 CALLE 100', '409@terra.com.co', '2011-02-03', 117002, '2010-05-13', 444970.00, 'A'), + (79, 1, 'PENA VALENZUELA DANIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-19', 264790.00, 'A'), + (8, 1, 'NAVARRO PALENCIA HUGO RAFAEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126968, '2011-05-05', 579980.00, 'A'), + (80, 1, 'BARRIOS CUADRADO DAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-29', 764140.00, 'A'), + (802, 3, 'RECK GARRONE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2009-02-06', 767700.00, 'A'), + (81, 1, 'PARRA QUIROGA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 26330.00, 'A'), + (811, 8, 'FEDERACION NACIONAL DE AVICULTORES ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-04-18', 926010.00, 'A'), + (812, 1, 'ORJUELA VELEZ JAIME ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 257160.00, 'A'), + (813, 1, 'PENA CHACON GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-08-27', 507770.00, 'A'), + (814, 1, 'RONDEROS MOJICA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127443, '2011-05-04', 767370.00, 'A'), + (815, 1, 'RICO NINO MARIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127443, '2011-05-18', 313540.00, 'A'), + (817, 3, 'AVILA CHYTIL MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118471, '2011-07-14', 387300.00, 'A'), + (818, 3, 'JABLONSKI DUARTE SILVEIRA ESTER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2010-12-21', 139740.00, 'A'), + (819, 3, 'BUHLER MOSLER XIMENA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-06-20', 536830.00, 'A'), + (82, 1, 'CARRILLO GAMBOA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-06-01', 839240.00, 'A'), + (820, 3, 'FALQUETO DALMIRO ANGELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-06-21', 264910.00, 'A'), + (821, 1, 'RUGER GUSTAVO RODRIGUEZ TAMAYO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2010-04-12', 714080.00, 'A'), + (822, 3, 'JULIO RODRIGUEZ FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-08-16', 775650.00, 'A'), + (823, 3, 'CIBANIK RODOLFO MOISES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132554, '2011-09-19', 736020.00, 'A'), + (824, 3, 'JIMENEZ FRANCO EMMANUEL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-17', 353150.00, 'A'), + (825, 3, 'GNECCO TREMEDAD', 191821112, 'CRA 25 CALLE 100', '818@hotmail.com', '2011-02-03', 171072, '2011-03-19', 557700.00, 'A'), + (826, 3, 'VILAR MENDOZA JOSE RAFAEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-29', 729050.00, 'A'), + (827, 3, 'GONZALEZ MOLINA CRISTIAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-06-20', 972160.00, 'A'), + (828, 1, 'GONTOVNIK HOBRECKT CARLOS DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-08-02', 673620.00, 'A'), + (829, 3, 'DIBARRAT URZUA SEBASTIAN RAIMUNDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-28', 451650.00, 'A'), + (830, 3, 'STOCCHERO HATSCHBACH GUILHERME', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2010-11-22', 237370.00, 'A'), + (831, 1, 'NAVAS PASSOS NARCISO EVELIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-04-21', 831900.00, 'A'), + (832, 3, 'LUNA SOBENES FAVIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-10-11', 447400.00, 'A'), + (833, 3, 'NUNEZ NOGUEIRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-19', 741290.00, 'A'), + (834, 1, 'CASTRO BELTRAN ARIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128188, '2011-05-15', 364270.00, 'A'), + (835, 1, 'TURBAY YAMIN MAURICIO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-03-17', 597490.00, 'A'), + (836, 1, 'GOMEZ BARRAZA RODNEY LORENZO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 894610.00, 'A'), + (837, 1, 'CUELLO LASCANO ROBERTO', 191821112, 'CRA 25 CALLE 100', '221@hotmail.es', '2011-02-03', 133535, '2011-07-11', 680610.00, 'A'), + (838, 1, 'PATERNINA PEINADO JOSE VICENTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-08-23', 719190.00, 'A'), + (839, 1, 'YEPES RUBIANO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-05-16', 554130.00, 'A'), + (84, 1, 'ALVIS RAMIREZ ALFREDO', 191821112, 'CRA 25 CALLE 100', '292@yahoo.com', '2011-02-03', 127662, '2011-09-16', 68190.00, 'A'), + (840, 1, 'ROCA LLANOS GUILLERMO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-08-22', 613060.00, 'A'), + (841, 1, 'RENDON TORRALVO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2011-05-26', 402950.00, 'A'), + (842, 1, 'BLANCO STAND GERMAN ELIECER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-17', 175530.00, 'A'), + (843, 3, 'BERNAL MAYRA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131272, '2010-08-31', 668820.00, 'A'), + (844, 1, 'NAVARRO RUIZ LAZARO GREGORIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 126916, '2008-09-23', 817520.00, 'A'), + (846, 3, 'TUOMINEN OLLI PETTERI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-09-01', 953150.00, 'A'), + (847, 1, 'ESPARRAGOZA DE LA ESPRIELLA ENRIQUE ALBERTO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-08-09', 522340.00, 'A'), + (848, 3, 'ARAYA ARIAS JUAN VICENTE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132165, '2011-08-09', 752210.00, 'A'), + (85, 1, 'GARCIA JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-03-01', 989420.00, 'A'), + (850, 1, 'PARDO GOMEZ GERMAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2010-11-25', 713690.00, 'A'), + (851, 1, 'ATIQUE JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2008-03-03', 986250.00, 'A'), + (852, 1, 'HERNANDEZ MEYER EDGARDO DE JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-20', 790190.00, 'A'), + (853, 1, 'ZULUAGA DE LEON IVAN JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-07-03', 992210.00, 'A'), + (854, 1, 'VILLARREAL ANGULO ENRIQUE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-10-02', 590450.00, 'A'), + (855, 1, 'CELIA MARTINEZ APARICIO GIAN PIERO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-06-15', 975620.00, 'A'), + (857, 3, 'LIPARI RONALDO LUIS', 191821112, 'CRA 25 CALLE 100', '84@facebook.com', '2011-02-03', 118941, '2010-10-13', 606990.00, 'A'), + (858, 1, 'RAVACHI DAVILA ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2011-05-04', 714620.00, 'A'), + (859, 3, 'PINHEIRO OLIVEIRA LUCIANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 752130.00, 'A'), + (86, 1, 'GOMEZ LIS CARLOS EMILIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2009-12-22', 742520.00, 'A'), + (860, 1, 'PUGLIESE MERCADO LUIGGI ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-08-19', 616780.00, 'A'), + (862, 1, 'JANNA TELLO DANIEL JALIL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2010-08-07', 287220.00, 'A'), + (863, 3, 'MATTAR CARLOS HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2009-04-26', 953570.00, 'A'), + (864, 1, 'MOLINA OLIER OSVALDO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2011-04-18', 906200.00, 'A'), + (865, 1, 'BLANCO MCLIN DAVID ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-08-18', 670290.00, 'A'), + (866, 1, 'NARANJO ROMERO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2010-08-25', 632860.00, 'A'), + (867, 1, 'SIMANCAS TRUJILLO RICARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-04-07', 153400.00, 'A'), + (868, 1, 'ARENAS USME GERMAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126881, '2011-10-01', 868430.00, 'A'), + (869, 5, 'DIAZ CORDERO RODRIGO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-11-04', 881950.00, 'A'), + (87, 1, 'CELIS PEREZ HERNANDO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-05', 744330.00, 'A'), + (870, 3, 'BINDER ZBEDA JONATAHAN JANAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131083, '2010-04-11', 804460.00, 'A'), + (871, 1, 'HINCAPIE HELLMAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-09-15', 376440.00, 'A'), + (872, 3, 'MONTEIRO LANAMAR ALFONSO DE BUSTAMANTE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118942, '2009-03-23', 468820.00, 'A'), + (873, 3, 'AGUDO CARMINATTI REGINA CELIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-01-04', 214770.00, 'A'), + (874, 1, 'GONZALEZ VILLALOBOS CRISTIAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2011-09-26', 667400.00, 'A'), + (875, 3, 'GUELL VILLANUEVA ALVARO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2008-04-07', 692670.00, 'A'), + (876, 3, 'GRES ANAIS ROBERTO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-12-01', 461180.00, 'A'), + (877, 3, 'GAME MOCOCAIN JUAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-07', 227890.00, 'A'), + (878, 1, 'FERRER UCROS FERNANDO LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-06-22', 755900.00, 'A'), + (879, 3, 'HERRERA JAUREGUI CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', '599@facebook.com', '2011-02-03', 131272, '2010-07-22', 95840.00, 'A'), + (880, 3, 'BACALLAO HERNANDEZ ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126180, '2010-04-21', 211480.00, 'A'), + (881, 1, 'GIJON URBINA JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 144879, '2011-04-03', 769910.00, 'A'), + (882, 3, 'TRUSEN CHRISTOPH WOLFGANG', 191821112, 'CRA 25 CALLE 100', '338@yahoo.com.mx', '2011-02-03', 127591, '2010-10-24', 215100.00, 'A'), + (883, 3, 'ASHOURI ASKANDAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 157861, '2009-03-03', 765760.00, 'A'), + (885, 1, 'ALTAMAR WATTS JAIRO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-08-20', 620170.00, 'A'), + (887, 3, 'QUINTANA BALTIERRA ROBERTO ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-21', 891370.00, 'A'), + (889, 1, 'CARILLO PATINO VICTOR HILARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 130226, '2011-09-06', 354570.00, 'A'), + (89, 1, 'CONTRERAS PULIDO LINA MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-06', 237480.00, 'A'), + (890, 1, 'GELVES CANAS GENARO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-02', 355640.00, 'A'), + (891, 3, 'CAGNONI DE MELO PAULA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2010-12-14', 714490.00, 'A'), + (892, 3, 'MENA AMESTICA PATRICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-03-22', 505510.00, 'A'), + (893, 1, 'CAICEDO ROMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-07', 384110.00, 'A'), + (894, 1, 'ECHEVERRY TRUJILLO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-08', 404010.00, 'A'), + (895, 1, 'CAJIA PEDRAZA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 867700.00, 'A'), + (896, 2, 'PALACIOS OLIVA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-24', 126500.00, 'A'), + (897, 1, 'GUTIERREZ QUINTERO FABIAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2009-10-24', 29380.00, 'A'), + (899, 3, 'COBO GUEVARA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-12-09', 748860.00, 'A'), + (9, 1, 'OSORIO RODRIGUEZ FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-09-27', 904420.00, 'A'), + (90, 1, 'LEYTON GONZALEZ FREDY RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-24', 705130.00, 'A'), + (901, 1, 'HERNANDEZ JOSE ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 130266, '2011-05-23', 964010.00, 'A'), + (903, 3, 'GONZALEZ MALDONADO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2010-11-13', 576500.00, 'A'), + (904, 1, 'OCHOA BARRIGA JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 130266, '2011-05-05', 401380.00, 'A'), + ('CELL3886', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (905, 1, 'OSORIO REDONDO JESUS DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2011-08-11', 277390.00, 'A'), + (906, 1, 'BAYONA BARRIENTOS JEAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-01-25', 182820.00, 'A'), + (907, 1, 'MARTINEZ GOMEZ CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2010-03-11', 81940.00, 'A'), + (908, 1, 'PUELLO LOPEZ GUILLERMO LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-08-12', 861240.00, 'A'), + (909, 1, 'MOGOLLON LONDONO PEDRO LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2011-06-22', 60380.00, 'A'), + (91, 1, 'ORTIZ RIOS JAVIER ADOLFO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-12', 813200.00, 'A'), + (911, 1, 'HERRERA HOYOS CARLOS FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2010-09-12', 409800.00, 'A'), + (912, 3, 'RIM MYUNG HWAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-15', 894450.00, 'A'), + (913, 3, 'BIANCO DORIEN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-29', 242820.00, 'A'), + (914, 3, 'FROIMZON WIEN DANIEL', 191821112, 'CRA 25 CALLE 100', '348@yahoo.com', '2011-02-03', 132165, '2010-11-06', 530780.00, 'A'), + (915, 3, 'ALVEZ AZEVEDO JOAO MIGUEL', 191821112, 'CRA 25 CALLE 100', '861@hotmail.es', '2011-02-03', 127591, '2009-06-25', 925420.00, 'A'), + (916, 3, 'CARRASCO DIAZ LUIS ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-02', 34780.00, 'A'), + (917, 3, 'VIVALLOS MEDINA LEONEL EDMUNDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-09-12', 397640.00, 'A'), + (919, 3, 'LASSE ANDRE BARKLIEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 286724, '2011-03-31', 226390.00, 'A'), + (92, 1, 'CUERVO CARDENAS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-08', 950630.00, 'A'), + (920, 3, 'BARCELOS PLOTEGHER LILIA MARA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-07', 480380.00, 'A'), + (921, 1, 'JARAMILLO ARANGO JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127559, '2011-06-28', 722700.00, 'A'), + (93, 3, 'RUIZ PRIETO WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 131272, '2011-01-19', 313540.00, 'A'), + (932, 7, 'COMFENALCO ANTIOQUIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-05', 515430.00, 'A'), + (94, 1, 'GALLEGO JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-25', 715830.00, 'A'), + (944, 3, 'KARMELIC PAVLOV VESNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 120066, '2010-08-07', 585580.00, 'A'), + (945, 3, 'RAMIREZ BORDON OSCAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-07-02', 526250.00, 'A'), + (946, 3, 'SORACCO CABEZA RODRIGO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-04', 874490.00, 'A'), + (949, 1, 'GALINDO JORGE ERNESTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127300, '2008-07-10', 344110.00, 'A'), + (950, 3, 'DR KNABLE THOMAS ERNST ALBERT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 256231, '2009-11-17', 685430.00, 'A'), + (953, 3, 'VELASQUEZ JANETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-20', 404650.00, 'A'), + (954, 3, 'SOZA REX JOSE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 150903, '2011-05-26', 269790.00, 'A'), + (955, 3, 'FONTANA GAETE JAIME PATRICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-01-11', 134970.00, 'A'), + (957, 3, 'PEREZ MARTINEZ GRECIA INDIRA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2010-08-27', 922610.00, 'A'), + (96, 1, 'FORERO CUBILLOS JORGEARTURO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-25', 45020.00, 'A'), + (97, 1, 'SILVA ACOSTA MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-19', 309580.00, 'A'), + (978, 3, 'BLUMENTHAL JAIRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117630, '2010-04-22', 653490.00, 'A'), + (984, 3, 'SUN XIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-01-17', 203630.00, 'A'), + (99, 1, 'CANO GUZMAN ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 135620.00, 'A'), + (999, 1, 'DRAGER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-12-22', 882070.00, 'A'), + ('CELL1020', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1083', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1153', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL126', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1326', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1329', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL133', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1413', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1426', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1529', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1651', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1760', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1857', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1879', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1902', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1921', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1962', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1992', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2006', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL215', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2307', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2322', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2497', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2641', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2736', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2805', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL281', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2905', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2963', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3029', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3090', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3161', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3302', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3309', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3325', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3372', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3422', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3514', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3562', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3652', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3661', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4334', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4440', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4547', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4639', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4662', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4698', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL475', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4790', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4838', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4885', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4939', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5064', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5066', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL51', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5102', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5116', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5192', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5226', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5250', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5282', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL536', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5503', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5506', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL554', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5544', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5595', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5648', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5801', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5821', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6201', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6277', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6288', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6358', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6369', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6408', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6425', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6439', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6509', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6533', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6556', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6731', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6766', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6775', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6802', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6834', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6890', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6953', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6957', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7024', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7216', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL728', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7314', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7431', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7432', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7513', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7522', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7617', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7623', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7708', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7777', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL787', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7907', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7951', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7956', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8004', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8058', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL811', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8136', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8162', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8286', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8300', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8339', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8366', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8389', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8446', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8487', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8546', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8578', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8643', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8774', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8829', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8846', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8942', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9046', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9110', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL917', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9189', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9241', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9331', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9429', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9434', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9495', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9517', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9558', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9650', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9748', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9830', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9878', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9893', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9945', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('T-Cx200', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx201', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx202', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx203', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx204', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx205', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx206', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx207', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx208', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx209', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx210', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx211', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx212', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx213', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx214', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('CELL4021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5255', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5730', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2540', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7376', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5471', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2588', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL570', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2854', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6683', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1382', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2051', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7086', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9220', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9701', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'); + +-- +-- Data for Name: personnes; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +INSERT INTO personnes (cedula, tipo_documento_id, nombres, telefono, direccion, email, fecha_nacimiento, ciudad_id, creado_at, cupo, estado) VALUES + (1, 3, 'HUANG ZHENGQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-18', 6930.00, 'I'), + (100, 1, 'USME FERNANDEZ JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-04-15', 439480.00, 'A'), + (1003, 8, 'SINMON PEREZ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-25', 468610.00, 'A'), + (1009, 8, 'ARCINIEGAS Y VILLAMIZAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-08-12', 967680.00, 'A'), + (101, 1, 'CRANE DE NARVAEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-06-09', 790540.00, 'A'), + (1011, 8, 'EL EVENTO', 191821112, 'CRA 25 CALLE 100', '596@terra.com.co', '2011-02-03', 127591, '2011-05-24', 820390.00, 'A'), + (1020, 7, 'OSPINA YOLANDA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-02', 222970.00, 'A'), + (1025, 7, 'CHEMIPLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', 918670.00, 'A'), + (1034, 1, 'TAXI FILMS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-09-01', 962580.00, 'A'), + (104, 1, 'CASTELLANOS JIMENEZ NOE', 191821112, 'CRA 25 CALLE 100', '127@yahoo.es', '2011-02-03', 127591, '2011-10-05', 95230.00, 'A'), + (1046, 3, 'JACQUET PIERRE MICHEL ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 263489, '2011-07-23', 90810.00, 'A'), + (1048, 5, 'SPOERER VELEZ CARLOS JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-02-03', 184920.00, 'A'), + (1049, 3, 'SIDNEI DA SILVA LUIZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117630, '2011-07-02', 850180.00, 'A'), + (105, 1, 'HERRERA SEQUERA ALVARO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-26', 77390.00, 'A'), + (1050, 3, 'CAVALCANTI YUE CARLA HANLI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-31', 696130.00, 'A'), + (1052, 1, 'BARRETO RIVAS ELKIN MARTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 131508, '2011-09-19', 562160.00, 'A'), + (1053, 3, 'WANDERLEY ANTONIO ERNESTO THOME', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150617, '2011-01-31', 20490.00, 'A'), + (1054, 3, 'HE SHAN', 191821112, 'CRA 25 CALLE 100', '715@yahoo.es', '2011-02-03', 132958, '2010-10-05', 415970.00, 'A'), + (1055, 3, 'ZHRNG XIM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-05', 18380.00, 'A'), + (1057, 3, 'NICKEL GEB. STUTZ KARIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-10-08', 164850.00, 'A'), + (1058, 1, 'VELEZ PAREJA IGNACIO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2011-06-24', 292250.00, 'A'), + (1059, 3, 'GURKE RALF ERNST', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 287570, '2011-06-15', 966700.00, 'A'), + (106, 1, 'ESTRADA LONDONO JUAN SIMON', 191821112, 'CRA 25 CALLE 100', '8@terra.com.co', '2011-02-03', 128579, '2011-03-09', 101260.00, 'A'), + (1060, 1, 'MEDRANO BARRIOS WILSON', 191821112, 'CRA 25 CALLE 100', '479@facebook.com', '2011-02-03', 132775, '2011-06-18', 956740.00, 'A'), + (1061, 1, 'GERDTS PORTO HANS EDUARDO', 191821112, 'CRA 25 CALLE 100', '140@gmail.com', '2011-02-03', 127591, '2011-05-09', 883590.00, 'A'), + (1062, 1, 'BORGE VISBAL JORGE FIDEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132775, '2011-07-14', 547750.00, 'A'), + (1063, 3, 'GUTIERREZ JOSELYN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-06', 87960.00, 'A'), + (1064, 4, 'OVIEDO PINZON MARYI YULEY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2011-04-21', 796560.00, 'A'), + (1065, 1, 'VILORA SILVA OMAR ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2010-06-09', 718910.00, 'A'), + (1066, 3, 'AGUIAR ROMAN RODRIGO HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126674, '2011-06-28', 204890.00, 'A'), + (1067, 1, 'GOMEZ AGAMEZ ADOLFO DEL CRISTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131105, '2011-06-15', 867730.00, 'A'), + (1068, 3, 'GARRIDO CECILIA', 191821112, 'CRA 25 CALLE 100', '973@yahoo.com.mx', '2011-02-03', 118777, '2010-08-16', 723980.00, 'A'), + (1069, 1, 'JIMENEZ MANJARRES DAVID RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2010-12-17', 16680.00, 'A'), + (107, 1, 'ARANGUREN TEJADA JORGE ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-16', 274110.00, 'A'), + (1070, 3, 'OYARZUN TEJEDA ANDRES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-26', 911490.00, 'A'), + (1071, 3, 'MARIN BUCK RAFAEL ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126180, '2011-05-04', 507400.00, 'A'), + (1072, 3, 'VARGAS JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126674, '2011-07-28', 802540.00, 'A'), + (1073, 3, 'JUEZ JAIRALA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126180, '2010-04-09', 490510.00, 'A'), + (1074, 1, 'APONTE PENSO HERNAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132879, '2011-05-27', 44900.00, 'A'), + (1075, 1, 'PINERES BUSTILLO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126916, '2008-10-29', 752980.00, 'A'), + (1076, 1, 'OTERA OMA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-04-29', 630210.00, 'A'), + (1077, 3, 'CONTRERAS CHINCHILLA JUAN DOMINGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 139844, '2011-06-21', 892110.00, 'A'), + (1078, 1, 'GAMBA LAURENCIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-09-15', 569940.00, 'A'), + (108, 1, 'MUNOZ ARANGO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-01', 66770.00, 'A'), + (1080, 1, 'PRADA ABAUZA CARLOS AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-11-15', 156870.00, 'A'), + (1081, 1, 'PAOLA CAROLINA PINTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-27', 264350.00, 'A'), + (1082, 1, 'PALOMINO HERNANDEZ GERMAN JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-03-22', 851120.00, 'A'), + (1084, 1, 'URIBE DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '602@hotmail.es', '2011-02-03', 127591, '2011-09-07', 759470.00, 'A'), + (1085, 1, 'ARGUELLO CALDERON ARMANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-24', 409660.00, 'A'), + (1087, 1, 'CARVAJAL HERNANDEZ CHRISTIAN ARMANDO', 191821112, 'CRA 25 CALLE 100', '296@yahoo.es', '2011-02-03', 159432, '2011-06-03', 620410.00, 'A'), + (1088, 1, 'CASTRO BLANCO MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150512, '2009-10-08', 792400.00, 'A'), + (1089, 1, 'RIBEROS GUTIERREZ GUSTAVO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-01-27', 100800.00, 'A'), + (109, 1, 'BELTRAN MARIA LUZ DARY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-06', 511510.00, 'A'), + (1091, 4, 'ORTIZ ORTIZ BENIGNO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127538, '2011-08-05', 331540.00, 'A'), + (1092, 3, 'JOHN CHRISTOPHER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-08', 277320.00, 'A'), + (1093, 1, 'PARRA VILLAREAL MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 129499, '2011-08-23', 391980.00, 'A'), + (1094, 1, 'BESGA RODRIGUEZ JUAN JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-09-23', 127960.00, 'A'), + (1095, 1, 'ZAPATA MEZA EDGAR FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-05-19', 463840.00, 'A'), + (1096, 3, 'CORNEJO BRAVO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2010-11-08', 935340.00, 'A'), + ('CELL3944', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (1099, 1, 'GARCIA PORRAS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-14', 243360.00, 'A'), + (11, 1, 'HERNANDEZ PARDO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-31', 197540.00, 'A'), + (110, 1, 'VANEGAS JULIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-06', 357260.00, 'A'), + (1101, 1, 'QUINTERO BURBANO GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-08-20', 57420.00, 'A'), + (1102, 1, 'BOHORQUEZ AFANADOR CHRISTIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 214610.00, 'A'), + (1103, 1, 'MORA VARGAS JULIO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-29', 900790.00, 'A'), + (1104, 1, 'PINEDA JORGE ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-21', 860110.00, 'A'), + (1105, 1, 'TORO CEBALLOS GONZALO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 129499, '2011-08-18', 598180.00, 'A'), + (1106, 1, 'SCHENIDER TORRES JAIME', 191821112, 'CRA 25 CALLE 100', '85@yahoo.com.mx', '2011-02-03', 127799, '2011-08-11', 410590.00, 'A'), + (1107, 1, 'RUEDA VILLAMIZAR JAIME', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-11-15', 258410.00, 'A'), + (1108, 1, 'RUEDA VILLAMIZAR RICARDO JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129499, '2011-03-22', 60260.00, 'A'), + (1109, 1, 'GOMEZ RODRIGUEZ HERNANDO ARTURO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-06-02', 526080.00, 'A'), + (111, 1, 'FRANCISCO EDUARDO JAIME BOTERO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-09-09', 251770.00, 'A'), + (1110, 1, 'HERNANDEZ MENDEZ EDGAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 129499, '2011-03-22', 449610.00, 'A'), + (1113, 1, 'LEON HERNANDEZ OSCAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129499, '2011-03-21', 992090.00, 'A'), + (1114, 1, 'LIZARAZO CARRENO HUGO ARCENIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2010-12-10', 959490.00, 'A'), + (1115, 1, 'LIAN BARRERA GABRIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-05-30', 821170.00, 'A'), + (1117, 3, 'TELLEZ BEZAN FRANCISCO JAVIER ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-08-21', 673430.00, 'A'), + (1118, 1, 'FUENTES ARIZA DIEGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-09', 684970.00, 'A'), + (1119, 1, 'MOLINA M. ROBINSON', 191821112, 'CRA 25 CALLE 100', '728@hotmail.com', '2011-02-03', 129447, '2010-09-19', 404580.00, 'A'), + (112, 1, 'PATINO PINTO ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-06', 187050.00, 'A'), + (1120, 1, 'ORTIZ DURAN BENIGNO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127538, '2011-08-05', 967970.00, 'A'), + (1121, 1, 'CARVAJAL ALMEIDA LUIS RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2011-06-22', 626140.00, 'A'), + (1122, 1, 'TORRES QUIROGA EDWIN SILVESTRE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 129447, '2011-08-17', 226780.00, 'A'), + (1123, 1, 'VIVIESCAS JAIMES ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-10', 255480.00, 'A'), + (1124, 1, 'MARTINEZ RUEDA JAVIER EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129447, '2011-06-23', 597040.00, 'A'), + (1125, 1, 'ANAYA FLORES JORGE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-06-04', 218790.00, 'A'), + (1126, 3, 'TORRES MARTINEZ ANTONIO JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2010-09-02', 302820.00, 'A'), + (1127, 3, 'CACHO LEVISIER JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 153276, '2009-06-25', 857720.00, 'A'), + (1129, 3, 'ULLOA VALDIVIESO CRISTIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-06-02', 327570.00, 'A'), + (113, 1, 'HIGUERA CALA JAIME ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-27', 179950.00, 'A'), + (1130, 1, 'ARCINIEGAS WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126892, '2011-08-05', 497420.00, 'A'), + (1131, 1, 'BAZA ACUNA JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129447, '2010-12-10', 504410.00, 'A'), + (1132, 3, 'BUIRA ROS CARLOS MARIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-04-27', 29750.00, 'A'), + (1133, 1, 'RODRIGUEZ JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 129447, '2011-06-10', 635560.00, 'A'), + (1134, 1, 'QUIROGA PEREZ NELSON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 129447, '2011-05-18', 88520.00, 'A'), + (1135, 1, 'TATIANA AYALA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127122, '2011-07-01', 535920.00, 'A'), + (1136, 1, 'OSORIO BENEDETTI FABIAN AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2010-10-23', 414060.00, 'A'), + (1139, 1, 'CELIS PINTO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2009-02-25', 964970.00, 'A'), + (114, 1, 'VALDERRAMA CUERVO JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-02', 338590.00, 'A'), + (1140, 1, 'ORTIZ ARENAS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2009-10-21', 613300.00, 'A'), + (1141, 1, 'VALDIVIESO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2009-01-13', 171590.00, 'A'), + (1144, 1, 'LOPEZ CASTILLO NELSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 129499, '2010-09-09', 823110.00, 'A'), + (1145, 1, 'CAVELIER LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126916, '2008-11-29', 389220.00, 'A'), + (1146, 1, 'CAVELIER OTOYA LUIS EDURDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126916, '2010-05-25', 476770.00, 'A'), + (1147, 1, 'GARCIA RUEDA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '111@yahoo.es', '2011-02-03', 133535, '2010-09-12', 216190.00, 'A'), + (1148, 1, 'LADINO GOMEZ OMAR ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-02', 650640.00, 'A'), + (1149, 1, 'CARRENO ORTIZ OSCAR JAVIER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-15', 604630.00, 'A'), + (115, 1, 'NARDEI BONILLO BRUNO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-16', 153110.00, 'A'), + (1150, 1, 'MONTOYA BOZZI MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 129499, '2011-05-12', 71240.00, 'A'), + (1152, 1, 'LORA RICHARD JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-09-15', 497700.00, 'A'), + (1153, 1, 'SILVA PINZON MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '915@hotmail.es', '2011-02-03', 127591, '2011-06-15', 861670.00, 'A'), + (1154, 3, 'GEORGE J A KHALILIEH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-20', 815260.00, 'A'), + (1155, 3, 'CHACON MARIN CARLOS MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-07-26', 491280.00, 'A'), + (1156, 3, 'OCHOA CHEHAB XAVIER ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 126180, '2011-06-13', 10630.00, 'A'), + (1157, 3, 'ARAYA GARRI GABRIEL ALEXIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-09-19', 579320.00, 'A'), + (1158, 3, 'MACCHI ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116366, '2010-04-12', 864690.00, 'A'), + (116, 1, 'GONZALEZ FANDINO JAIME EDUARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-10', 749800.00, 'A'), + (1160, 1, 'CAVALIER LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126916, '2009-08-27', 333390.00, 'A'), + ('CELL396', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (1161, 3, 'DOMINGUEZ DE OBREGON ILEANA DEL CARMEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 139844, '2011-03-06', 910490.00, 'A'), + (1162, 2, 'FALASCA CLAUDIO ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116511, '2011-07-10', 552280.00, 'A'), + (1163, 3, 'MUTABARUKA PATRICK', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131352, '2011-03-22', 29940.00, 'A'), + (1164, 1, 'DOMINGUEZ ATENCIA JIMMY CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-22', 492860.00, 'A'), + (1165, 4, 'LLANO GONZALEZ ALBERTO MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2010-08-21', 374490.00, 'A'), + (1166, 3, 'LOPEZ ROLDAN JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-07-31', 393860.00, 'A'), + (1167, 1, 'GUTIERREZ DE PINERES JALILIE ARISTIDES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2010-12-09', 845810.00, 'A'), + (1168, 1, 'HEYMANS PIERRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2010-11-08', 47470.00, 'A'), + (1169, 1, 'BOTERO OSORIO RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2009-05-27', 699940.00, 'A'), + (1170, 3, 'GARNHAM POBLETE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 116396, '2011-03-27', 357270.00, 'A'), + (1172, 1, 'DAJUD DURAN JOSE RODRIGO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2009-12-02', 360910.00, 'A'), + (1173, 1, 'MARTINEZ MERCADO PEDRO PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-07-25', 744930.00, 'A'), + (1174, 1, 'GARCIA AMADOR ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-05-19', 641930.00, 'A'), + (1176, 1, 'VARGAS VARELA LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 131568, '2011-08-30', 948410.00, 'A'), + (1178, 1, 'GUTIERRES DE PINERES ARISTIDES', 191821112, 'CRA 25 CALLE 100', '217@hotmail.com', '2011-02-03', 133535, '2011-05-10', 242490.00, 'A'), + (1179, 3, 'LEIZAOLA POZO JIMENA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2011-08-01', 759800.00, 'A'), + (118, 1, 'FERNANDEZ VELOSO PEDRO HERNANDO', 191821112, 'CRA 25 CALLE 100', '452@hotmail.es', '2011-02-03', 128662, '2010-08-06', 198830.00, 'A'), + (1180, 3, 'MARINO PAOLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-12-24', 71520.00, 'A'), + (1181, 1, 'MOLINA VIZCAINO GUSTAVO JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-28', 78220.00, 'A'), + (1182, 3, 'MEDEL GARCIA FABIAN RODRIGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-04-25', 176540.00, 'A'), + (1183, 1, 'LESMES ARIAS RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-09-09', 648020.00, 'A'), + (1184, 1, 'ALCALA MARTINEZ ALFREDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132775, '2010-07-23', 710470.00, 'A'), + (1186, 1, 'LLAMAS FOLIACO LUIS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-07', 910210.00, 'A'), + (1187, 1, 'GUARDO DEL RIO LIBARDO FARID', 191821112, 'CRA 25 CALLE 100', '73@yahoo.com.mx', '2011-02-03', 128662, '2011-09-01', 726050.00, 'A'), + (1188, 3, 'JEFFREY ARTHUR DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 115724, '2011-03-21', 899630.00, 'A'), + (1189, 1, 'DAHL VELEZ JULIANA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126916, '2011-05-23', 320020.00, 'A'), + (119, 3, 'WALESKA DE LIMA ALMEIDA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-05-09', 125240.00, 'A'), + (1190, 3, 'LUIS JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2008-04-04', 901210.00, 'A'), + (1192, 1, 'AZUERO VALENTINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-14', 26310.00, 'A'), + (1193, 1, 'MARQUEZ GALINDO MAURICIO JAVIER', 191821112, 'CRA 25 CALLE 100', '729@yahoo.es', '2011-02-03', 131105, '2011-05-13', 493560.00, 'A'), + (1195, 1, 'NIETO FRANCO JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '707@yahoo.com', '2011-02-03', 127591, '2011-07-30', 463790.00, 'A'), + (1196, 3, 'ESTEVES JOAQUIM LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-04-05', 152270.00, 'A'), + (1197, 4, 'BARRERO KAREN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-12', 369990.00, 'A'), + (1198, 1, 'CORRALES GUZMAN DELIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127689, '2011-08-03', 393120.00, 'A'), + (1199, 1, 'CUELLAR TOCO EDGAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127531, '2011-09-20', 855640.00, 'A'), + (12, 1, 'MARIN PRIETO FREDY NELSON ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-23', 641210.00, 'A'), + (120, 1, 'LOPEZ JARAMILLO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2009-04-17', 29680.00, 'A'), + (1200, 3, 'SCHULTER ACHIM', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 291002, '2010-05-21', 98860.00, 'A'), + (1201, 3, 'HOWELL LAURENCE ADRIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 286785, '2011-05-22', 927350.00, 'A'), + (1202, 3, 'ALCAZAR ESCARATE JAIME PATRICIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-08-25', 340160.00, 'A'), + (1203, 3, 'HIDALGO FUENZALIDA GABRIEL RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-03', 918780.00, 'A'), + (1206, 1, 'VANEGAS HENAO ORLANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-27', 832910.00, 'A'), + (1207, 1, 'PENARANDA ARIAS RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-19', 832710.00, 'A'), + (1209, 1, 'LEZAMA CERVERA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2011-09-14', 825980.00, 'A'), + (121, 1, 'PULIDO JIMENEZ OSCAR HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-29', 772700.00, 'A'), + (1211, 1, 'TRUJILLO BOCANEGRA HAROL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127538, '2011-05-27', 199260.00, 'A'), + (1212, 1, 'ALVAREZ TORRES MARIO RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-08-15', 589960.00, 'A'), + (1213, 1, 'CORRALES VARON BELMER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-26', 352030.00, 'A'), + (1214, 3, 'CUEVAS RODRIGUEZ MANUELA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-30', 990250.00, 'A'), + (1216, 1, 'LOPEZ EDICSON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-31', 505210.00, 'A'), + (1217, 3, 'GARCIA PALOMARES JUAN JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-07-31', 840440.00, 'A'), + (1218, 1, 'ARCINIEGAS NARANJO RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127492, '2010-12-17', 686610.00, 'A'), + (122, 1, 'GONZALEZ RIANO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128031, '2011-08-05', 774450.00, 'A'), + (1220, 1, 'GARCIA GUTIERREZ WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-06-20', 498680.00, 'A'), + (1221, 3, 'GOMEZ DE ALONSO ANGELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-27', 758300.00, 'A'), + (1222, 1, 'MEDINA QUIROGA JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127538, '2011-01-16', 295480.00, 'A'), + (1224, 1, 'ARCILA CORREA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-03-20', 125900.00, 'A'), + (1225, 1, 'QUIJANO REYES CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2010-04-08', 22100.00, 'A'), + (157, 1, 'ORTIZ RIOS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-12', 365330.00, 'A'), + (1226, 1, 'VARGAS GALLEGO JAIRO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2009-07-30', 732820.00, 'A'), + (1228, 3, 'NAPANGA MIRENGHI MARTIN', 191821112, 'CRA 25 CALLE 100', '153@yahoo.es', '2011-02-03', 132958, '2011-02-08', 790400.00, 'A'), + (123, 1, 'LAMUS CASTELLANOS ANDRES RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-11', 554160.00, 'A'), + (1230, 1, 'RIVEROS PINEROS JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127492, '2011-09-25', 422220.00, 'A'), + (1231, 3, 'ESSER JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127327, '2011-04-01', 635060.00, 'A'), + (1232, 3, 'DOMINGUEZ MORA MAURICIO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-22', 908630.00, 'A'), + (1233, 3, 'MOLINA FERNANDEZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-05-28', 637990.00, 'A'), + (1234, 3, 'BELLO DANIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 196234, '2010-09-04', 464040.00, 'A'), + (1235, 3, 'BENADAVA GUEVARA DAVID ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-05-18', 406240.00, 'A'), + (1236, 3, 'RODRIGUEZ MATOS ROBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-03-22', 639070.00, 'A'), + (1237, 3, 'TAPIA ALARCON PATRICIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2010-07-06', 976620.00, 'A'), + (1239, 3, 'VERCHERE ALFONSO CHRISTIAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2010-08-23', 899600.00, 'A'), + (1241, 1, 'ESPINEL LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128206, '2009-03-09', 302860.00, 'A'), + (1242, 3, 'VERGARA FERREIRA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-03', 713310.00, 'A'), + (1243, 3, 'ZUMARRAGA SIRVENT CRSTINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-08-24', 657950.00, 'A'), + (1244, 4, 'ESCORCIA VASQUEZ TOMAS', 191821112, 'CRA 25 CALLE 100', '354@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', 149830.00, 'A'), + (1245, 4, 'PARAMO CUENCA KELLY LORENA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127492, '2011-05-04', 775300.00, 'A'), + (1246, 4, 'PEREZ LOPEZ VERONICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-07-11', 426990.00, 'A'), + (1247, 4, 'CHAPARRO RODRIGUEZ DANIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-08', 809070.00, 'A'), + (1249, 4, 'DIAZ MARTINEZ MARIA CAROLINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2011-05-30', 394740.00, 'A'), + (125, 1, 'CALDON RODRIGUEZ JAIME ARIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126968, '2011-07-29', 574780.00, 'A'), + (1250, 4, 'PINEDA VASQUEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2010-09-03', 680540.00, 'A'), + (1251, 5, 'MATIZ URIBE ANGELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-12-25', 218470.00, 'A'), + (1253, 1, 'ZAMUDIO RICAURTE JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126892, '2011-08-05', 598160.00, 'A'), + (1254, 1, 'ALJURE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-21', 838660.00, 'A'), + (1255, 3, 'ARMESTO AIRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 196234, '2011-01-29', 398840.00, 'A'), + (1257, 1, 'POTES GUEVARA JAIRO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127858, '2011-03-17', 194580.00, 'A'), + (1258, 1, 'BURBANO QUIROGA RAFAEL', 191821112, 'CRA 25 CALLE 100', '767@facebook.com', '2011-02-03', 127591, '2011-04-07', 538220.00, 'A'), + (1259, 1, 'CARDONA GOMEZ JAVIR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-03-16', 107380.00, 'A'), + (126, 1, 'PULIDO PARDO GUIDO IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-05', 531550.00, 'A'), + (1260, 1, 'LOPERA LEDESMA PABLO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-19', 922240.00, 'A'), + (1263, 1, 'TRIBIN BARRIGA JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-09-02', 525330.00, 'A'), + (1264, 1, 'NAVIA LOPEZ ANDRES FELIPE ', 191821112, 'CRA 25 CALLE 100', '353@hotmail.es', '2011-02-03', 127300, '2011-07-15', 591190.00, 'A'), + (1265, 1, 'CARDONA GOMEZ FABIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2010-11-18', 379940.00, 'A'), + (1266, 1, 'ESCARRIA VILLEGAS ANDRES JULIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-08-19', 126160.00, 'A'), + (1268, 1, 'CASTRO HERNANDEZ ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-03-25', 76260.00, 'A'), + (127, 1, 'RODRIGUEZ RODRIGUEZ GIOVANI FRANCISCO', 191821112, 'CRA 25 CALLE 100', '662@hotmail.es', '2011-02-03', 127591, '2011-09-29', 933390.00, 'A'), + (1270, 1, 'LEAL HERNANDEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', 313610.00, 'A'), + (1272, 1, 'ORTIZ CARDONA WILLIAM ENRIQUE', 191821112, 'CRA 25 CALLE 100', '914@hotmail.com', '2011-02-03', 128662, '2011-09-13', 272150.00, 'A'), + (1273, 1, 'ROMERO VAN GOMPEL HERNAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-09-07', 832960.00, 'A'), + (1274, 1, 'BERMUDEZ LONDONO JHON FREDY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-08-29', 348380.00, 'A'), + (1275, 1, 'URREA ALVAREZ NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-01', 242980.00, 'A'), + (1276, 1, 'VALENCIA LLANOS RODRIGO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-04-11', 169790.00, 'A'), + (1277, 1, 'PAZ VALENCIA GUILLERMO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127300, '2011-08-05', 120020.00, 'A'), + (1278, 1, 'MONROY CORREDOR GERARDO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-06-25', 90700.00, 'A'), + (1279, 1, 'RIOS MEDINA JAVIER ERMINSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-12', 93440.00, 'A'), + (128, 1, 'GALLEGO GUZMAN MARIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-06-25', 72290.00, 'A'), + (1280, 1, 'GARCIA OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-30', 195090.00, 'A'), + (1282, 1, 'MURILLO PESELLIN GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-06-15', 890530.00, 'A'), + (1284, 1, 'DIAZ ALVAREZ JOHNY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-06-25', 164130.00, 'A'), + (1285, 1, 'GARCES BELTRAN RAUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-08-11', 719220.00, 'A'), + (1286, 1, 'MATERON POVEDA LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-25', 103710.00, 'A'), + (1287, 1, 'VALENCIA ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-10-23', 360880.00, 'A'), + (1288, 1, 'PENA AGUDELO JOSE RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 134022, '2011-05-25', 493280.00, 'A'), + (1289, 1, 'CORREA NUNEZ JORGE ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-08-18', 383750.00, 'A'), + (129, 1, 'ALVAREZ RODRIGUEZ IVAN RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2008-01-28', 561290.00, 'A'), + (1291, 1, 'BEJARANO ROSERO FREDDY ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-09', 43400.00, 'A'), + (1292, 1, 'CASTILLO BARRIOS GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-06-17', 900180.00, 'A'), + ('CELL401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (1296, 1, 'GALVEZ GUTIERREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2010-03-28', 807090.00, 'A'), + (1297, 3, 'CRUZ GARCIA MILTON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 139844, '2011-03-21', 75630.00, 'A'), + (1298, 1, 'VILLEGAS GUTIERREZ JOSE RICARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-11', 956860.00, 'A'), + (13, 1, 'VACA MURCIA JESUS ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-04', 613430.00, 'A'), + (1301, 3, 'BOTTI ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 231989, '2011-04-04', 910640.00, 'A'), + (1302, 3, 'COTINO HUESO LORENZO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-02-02', 803450.00, 'A'), + (1304, 3, 'NESPOLI MANTOVANI LUIZ CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-04-18', 16230.00, 'A'), + (1307, 4, 'AVILA GIL PAULA ANDREA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-19', 711110.00, 'A'), + (1308, 4, 'VALLEJO PINEDA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-12', 323490.00, 'A'), + (1312, 1, 'ROMERO OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-17', 642460.00, 'A'), + (1314, 3, 'LULLIES CONSTANZE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 245206, '2010-06-03', 154970.00, 'A'), + (1315, 1, 'CHAPARRO GUTIERREZ JORGE ADRIANO', 191821112, 'CRA 25 CALLE 100', '284@hotmail.es', '2011-02-03', 127591, '2010-12-02', 325440.00, 'A'), + (1316, 1, 'BARRANTES DISI RICARDO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132879, '2011-07-18', 162270.00, 'A'), + (1317, 3, 'VERDES GAGO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2010-03-10', 835060.00, 'A'), + (1319, 3, 'MARTIN MARTINEZ GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2010-05-26', 937220.00, 'A'), + (1320, 3, 'MOTTURA MASSIMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2008-11-10', 620640.00, 'A'), + (1321, 3, 'RUSSELL TIMOTHY JAMES', 191821112, 'CRA 25 CALLE 100', '502@hotmail.es', '2011-02-03', 145135, '2010-04-16', 291560.00, 'A'), + (1322, 3, 'JAIN TARSEM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 190393, '2011-05-31', 595890.00, 'A'), + (1323, 3, 'ORTEGA CEVALLOS JULIETA ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-30', 104760.00, 'A'), + (1324, 3, 'MULLER PICHAIDA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-05-17', 736130.00, 'A'), + (1325, 3, 'ALVEAR TELLEZ JULIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-01-23', 366390.00, 'A'), + (1327, 3, 'MOYA LATORRE MARCELA CAROLINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-05-17', 18520.00, 'A'), + (1328, 3, 'LAMA ZAROR RODRIGO IGNACIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2010-10-27', 221990.00, 'A'), + (1329, 3, 'HERNANDEZ CIFUENTES MAURICE JEANETTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 139844, '2011-06-22', 54410.00, 'A'), + (133, 1, 'CORDOBA HOYOS JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-20', 966820.00, 'A'), + (1330, 2, 'HOCHKOFLER NOEMI CONSUELO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-27', 606070.00, 'A'), + (1331, 4, 'RAMIREZ BARRERO DANIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 154563, '2011-04-18', 867120.00, 'A'), + (1332, 4, 'DE LEON DURANGO RICARDO JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131105, '2011-09-08', 517400.00, 'A'), + (1333, 4, 'RODRIGUEZ MACIAS IVAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129447, '2011-05-23', 985620.00, 'A'), + (1334, 4, 'GUTIERREZ DE PINERES YANET MARIA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-06-16', 375890.00, 'A'), + (1335, 4, 'GUTIERREZ DE PINERES YANET MARIA GABRIELA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-06-16', 922600.00, 'A'), + (1336, 4, 'CABRALES BECHARA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '708@hotmail.com', '2011-02-03', 131105, '2011-05-13', 485330.00, 'A'), + (1337, 4, 'MEJIA TOBON LUIS DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127662, '2011-08-05', 658860.00, 'A'), + (1338, 3, 'OROS NERCELLES CRISTIAN ANDRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 144215, '2011-04-26', 838310.00, 'A'), + (1339, 3, 'MORENO BRAVO CAROLINA ANDREA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 190393, '2010-12-08', 214950.00, 'A'), + (134, 1, 'GONZALEZ LOPEZ DANIEL ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-08', 178580.00, 'A'), + (1340, 3, 'FERNANDEZ GARRIDO MARCELO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-07-08', 559820.00, 'A'), + (1342, 3, 'SUMEGI IMRE ZOLTAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-16', 91750.00, 'A'), + (1343, 3, 'CALDERON FLANDEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '108@hotmail.com', '2011-02-03', 117002, '2010-12-12', 996030.00, 'A'), + (1345, 3, 'CARBONELL ATCHUGARRY GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116366, '2010-04-12', 536390.00, 'A'), + (1346, 3, 'MONTEALEGRE AGUILAR FEDERICO ', 191821112, 'CRA 25 CALLE 100', '448@yahoo.es', '2011-02-03', 132165, '2011-08-08', 567260.00, 'A'), + (1347, 1, 'HERNANDEZ MANCHEGO CARLOS JULIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-04-28', 227130.00, 'A'), + (1348, 1, 'ARENAS ZARATE FERNEY ARNULFO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127963, '2011-03-26', 433860.00, 'A'), + (1349, 3, 'DELFIM DINIZ PASSOS PINHEIRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 110784, '2010-04-17', 487930.00, 'A'), + (135, 1, 'GARCIA SIMBAQUEBA RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 992420.00, 'A'), + (1350, 3, 'BRAUN VALENZUELA FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-29', 138050.00, 'A'), + (1351, 3, 'LEVIN FIORELLI ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 116366, '2011-04-10', 226470.00, 'A'), + (1353, 3, 'BALTODANO ESQUIVEL LAURA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-08-01', 911660.00, 'A'), + (1354, 4, 'ESCOBAR YEPES ANDREA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-19', 403630.00, 'A'), + (1356, 1, 'GAGELI OSORIO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '228@yahoo.com.mx', '2011-02-03', 128662, '2011-07-14', 205070.00, 'A'), + (1357, 3, 'CABAL ALVAREZ RUBEN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-08-14', 175770.00, 'A'), + (1359, 4, 'HUERFANO JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-04', 790970.00, 'A'), + (136, 1, 'OSORIO RAMIREZ LEONARDO', 191821112, 'CRA 25 CALLE 100', '686@yahoo.es', '2011-02-03', 128662, '2010-05-14', 426380.00, 'A'), + (1360, 4, 'RAMON GARCIA MARIA PAULA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-01', 163890.00, 'A'), + (1362, 30, 'ALVAREZ CLAVIO CARLA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127203, '2011-04-18', 741020.00, 'A'), + (1363, 3, 'SERRA DURAN GERARDO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-03', 365490.00, 'A'), + (1364, 3, 'NORIEGA VALVERDE SILVIA MARCELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132775, '2011-02-27', 604370.00, 'A'), + (1366, 1, 'JARAMILLO LOPEZ ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '269@terra.com.co', '2011-02-03', 127559, '2010-11-08', 813800.00, 'A'), + (1367, 1, 'MAZO ROLDAN CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-04', 292880.00, 'A'), + (1368, 1, 'MURIEL ARCILA MAURICIO HERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-29', 22970.00, 'A'), + (1369, 1, 'RAMIREZ CARLOS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-14', 236230.00, 'A'), + (137, 1, 'LUNA PEREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126881, '2011-08-05', 154640.00, 'A'), + (1370, 1, 'GARCIA GRAJALES PEDRO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128166, '2011-10-09', 112230.00, 'A'), + (1372, 3, 'GARCIA ESCOBAR ANA MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-29', 925670.00, 'A'), + (1373, 3, 'ALVES DIAS CARLOS AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-07', 70940.00, 'A'), + (1374, 3, 'MATTOS CHRISTIANE GARCIA CID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 183024, '2010-08-25', 577700.00, 'A'), + (1376, 1, 'CARVAJAL ROJAS ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-10', 645240.00, 'A'), + (1377, 3, 'MADARIAGA CADIZ CLAUDIO CRISTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-10-04', 199200.00, 'A'), + (1379, 3, 'MARIN YANEZ ALICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-02-20', 703870.00, 'A'), + (138, 1, 'DIAZ AVENDANO MARCELO IVAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-22', 494080.00, 'A'), + (1381, 3, 'COSTA VILLEGAS LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-08-21', 580670.00, 'A'), + (1382, 3, 'DAZA PEREZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 122035, '2009-02-23', 888000.00, 'A'), + (1385, 4, 'RIVEROS ARIAS MARIA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127492, '2011-09-26', 35710.00, 'A'), + (1386, 30, 'TORO GIRALDO MATEO', 191821112, 'CRA 25 CALLE 100', '433@yahoo.com.mx', '2011-02-03', 127591, '2011-07-17', 700730.00, 'A'), + (1387, 4, 'ROJAS YARA LAURA DANIELA MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-31', 396530.00, 'A'), + (1388, 3, 'GALLEGO RODRIGO MARIA PILAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2009-04-19', 880450.00, 'A'), + (1389, 1, 'PANTOJA VELASQUEZ JOSE ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2011-08-05', 212660.00, 'A'), + (139, 1, 'RANCO GOMEZ HERNÁN EDUARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-01-19', 6450.00, 'A'), + (1390, 3, 'VAN DEN BORNE KEES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2010-01-28', 421930.00, 'A'), + (1391, 3, 'MONDRAGON FLORES JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-08-22', 471700.00, 'A'), + (1392, 3, 'BAGELLA MICHELE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-07-27', 92720.00, 'A'), + (1393, 3, 'BISTIANCIC MACHADO ANA INES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 116366, '2010-08-02', 48490.00, 'A'), + (1394, 3, 'BANADOS ORTIZ MARIA PILAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-08-25', 964280.00, 'A'), + (1395, 1, 'CHINDOY CHINDOY HERNANDO', 191821112, 'CRA 25 CALLE 100', '107@terra.com.co', '2011-02-03', 126892, '2011-08-25', 675920.00, 'A'), + (1396, 3, 'SOTO NUNEZ ANDRES ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-10-02', 486760.00, 'A'), + (1397, 1, 'DELGADO MARTINEZ LORGE ELIAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-23', 406040.00, 'A'), + (1398, 1, 'LEON GUEVARA JAVIER ANIBAL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126892, '2011-09-08', 569930.00, 'A'), + (1399, 1, 'ZARAMA BASTIDAS LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126892, '2011-08-05', 631540.00, 'A'), + (14, 1, 'MAGUIN HENNSSEY LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '714@gmail.com', '2011-02-03', 127591, '2011-07-11', 143540.00, 'A'), + (140, 1, 'CARRANZA CUY ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-25', 550010.00, 'A'), + (1401, 3, 'REYNA CASTORENA JOSE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 189815, '2011-08-29', 344970.00, 'A'), + (1402, 1, 'GFALLO BOTERO SERGIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-07-14', 381100.00, 'A'), + (1403, 1, 'ARANGO ARAQUE JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-05-04', 870590.00, 'A'), + (1404, 3, 'LASSNER NORBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118942, '2010-02-28', 209650.00, 'A'), + (1405, 1, 'DURANGO MARIN HECTOR LEON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '1970-02-02', 436480.00, 'A'), + (1407, 1, 'FRANCO CASTANO DIEGO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-06-28', 457770.00, 'A'), + (1408, 1, 'HERNANDEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-05-29', 628550.00, 'A'), + (1409, 1, 'CASTANO DUQUE CARLOS HUGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-03-23', 769410.00, 'A'), + (141, 1, 'CHAMORRO CHEDRAUI SERGIO ALBERTO', 191821112, 'CRA 25 CALLE 100', '922@yahoo.com.mx', '2011-02-03', 127591, '2011-05-07', 730720.00, 'A'), + (1411, 1, 'RAMIREZ MONTOYA ADAMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-04-13', 498880.00, 'A'), + (1412, 1, 'GONZALEZ BENJUMEA OSCAR HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-11-01', 610150.00, 'A'), + (1413, 1, 'ARANGO ACEVEDO WALTER ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-10-07', 554090.00, 'A'), + (1414, 1, 'ARANGO GALLO HUMBERTO LEON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-02-25', 940010.00, 'A'), + (1415, 1, 'VELASQUEZ LUIS GONZALO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-07-06', 37760.00, 'A'), + (1416, 1, 'MIRA AGUILAR FRANCISCO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-30', 368790.00, 'A'), + (1417, 1, 'RIVERA ARISTIZABAL CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-03-02', 730670.00, 'A'), + (1418, 1, 'ARISTIZABAL ROLDAN ANDRES RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-02', 546960.00, 'A'), + (142, 1, 'LOPEZ ZULETA MAURICIO ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-01', 3550.00, 'A'), + (1420, 1, 'ESCORCIA ARAMBURO JUAN MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', 73100.00, 'A'), + (1421, 1, 'CORREA PARRA RICARDO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-05', 737110.00, 'A'), + (1422, 1, 'RESTREPO NARANJO DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-09-15', 466240.00, 'A'), + (1423, 1, 'VELASQUEZ CARLOS JUAN', 191821112, 'CRA 25 CALLE 100', '123@yahoo.com', '2011-02-03', 128662, '2010-06-09', 119880.00, 'A'), + (1424, 1, 'MACIA GONZALEZ ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2010-11-12', 200690.00, 'A'), + (1425, 1, 'BERRIO MEJIA HELBER ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2010-06-04', 643800.00, 'A'), + (1427, 1, 'GOMEZ GUTIERREZ CARLOS ARIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-09-08', 153320.00, 'A'), + (1428, 1, 'RESTREPO LOPEZ JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-12', 915770.00, 'A'), + ('CELL4012', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (1429, 1, 'BARTH TOBAR LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-02-23', 118900.00, 'A'), + (143, 1, 'MUNERA BEDIYA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-09-21', 825600.00, 'A'), + (1430, 1, 'JIMENEZ VELEZ ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-02-26', 847160.00, 'A'), + (1431, 1, 'TAKAHASHI GAVIRIA NICOLAS KEIICHIRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-13', 879120.00, 'A'), + (1432, 1, 'ESCOBAR JARAMILLO ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-06-10', 854110.00, 'A'), + (1433, 1, 'PALACIO NAVARRO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-08-18', 633200.00, 'A'), + (1434, 1, 'LONDONO MUNOZ ADOLFO LEON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-09-14', 603670.00, 'A'), + (1435, 1, 'PULGARIN JAIME ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2009-11-01', 118730.00, 'A'), + (1436, 1, 'FERRERA ZULUAGA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-07-10', 782630.00, 'A'), + (1437, 1, 'VASQUEZ VELEZ HABACUC', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-27', 557000.00, 'A'), + (1438, 1, 'HENAO PALOMINO DIEGO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2009-05-06', 437080.00, 'A'), + (1439, 1, 'HURTADO URIBE JUAN GONZALO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-01-11', 514400.00, 'A'), + (144, 1, 'ALDANA RODOLFO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '838@yahoo.es', '2011-02-03', 127591, '2011-08-07', 117350.00, 'A'), + (1441, 1, 'URIBE DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2010-11-19', 760610.00, 'A'), + (1442, 1, 'PINEDA GALIANO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-07-29', 20770.00, 'A'), + (1443, 1, 'DUQUE BETANCOURT FABIO LEON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-26', 822030.00, 'A'), + (1444, 1, 'JARAMILLO TORO HERNAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-04-27', 47830.00, 'A'), + (145, 1, 'VASQUEZ ZAPATA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-09', 109940.00, 'A'), + (1450, 1, 'TOBON FRANCO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '545@facebook.com', '2011-02-03', 127591, '2011-05-03', 889540.00, 'A'), + (1454, 1, 'LOTERO PAVAS CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-28', 646750.00, 'A'), + (1455, 1, 'ESTRADA HENAO JAVIER ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128569, '2009-09-07', 215460.00, 'A'), + (1456, 1, 'VALDERRAMA MAXIMILIANO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-23', 137030.00, 'A'), + (1457, 3, 'ESTRADA ALVAREZ GONZALO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 154903, '2011-05-02', 38790.00, 'A'), + (1458, 1, 'PAUCAR VALLEJO JAIRO ALONSO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-10-15', 782860.00, 'A'), + (1459, 1, 'RESTREPO GIRALDO JHON DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-04-04', 797930.00, 'A'), + (146, 1, 'BAQUERO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-03-03', 197650.00, 'A'), + (1460, 1, 'RESTREPO DOMINGUEZ GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2009-05-18', 641050.00, 'A'), + (1461, 1, 'YANOVICH JACKY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-08-21', 811470.00, 'A'), + (1462, 1, 'HINCAPIE ROLDAN JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-27', 134200.00, 'A'), + (1463, 3, 'ZEA JORGE OLIVER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2011-03-12', 236610.00, 'A'), + (1464, 1, 'OSCAR MAURICIO ECHAVARRIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-11-24', 780440.00, 'A'), + (1465, 1, 'COSSIO GIL JOSE ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-10-01', 192380.00, 'A'), + (1466, 1, 'GOMEZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-03-01', 620580.00, 'A'), + (1467, 1, 'VILLALOBOS OCHOA ANDRES GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-18', 525740.00, 'A'), + (1470, 1, 'GARCIA GONZALEZ DAVID DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-09-17', 986990.00, 'A'), + (1471, 1, 'RAMIREZ RESTREPO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-03', 162250.00, 'A'), + (1472, 1, 'VASQUEZ GUTIERREZ JUAN ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-05', 850280.00, 'A'), + (1474, 1, 'ESCOBAR ARANGO DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-11-01', 272460.00, 'A'), + (1475, 1, 'MEJIA TORO JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-05-02', 68320.00, 'A'), + (1477, 1, 'ESCOBAR GOMEZ JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127848, '2011-05-15', 416150.00, 'A'), + (1478, 1, 'BETANCUR WILSON', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2008-02-09', 508060.00, 'A'), + (1479, 3, 'ROMERO ARRAU GONZALO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-10', 291880.00, 'A'), + (148, 1, 'REINA MORENO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-08', 699240.00, 'A'), + (1480, 1, 'CASTANO OSORIO JORGE ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127662, '2011-09-20', 935200.00, 'A'), + (1482, 1, 'LOPEZ LOPERA ROBINSON FREDY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-09-02', 196280.00, 'A'), + (1484, 1, 'HERNAN DARIO RENDON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-03-18', 312520.00, 'A'), + (1485, 1, 'MARTINEZ ARBOLEDA MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-11-03', 821760.00, 'A'), + (1486, 1, 'RODRIGUEZ MORA CARLOS MORA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-09-16', 171270.00, 'A'), + (1487, 1, 'PENAGOS VASQUEZ JOSE DOMINGO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-09-06', 391080.00, 'A'), + (1488, 1, 'UERRA MEJIA DIEGO LEON', 191821112, 'CRA 25 CALLE 100', '704@hotmail.com', '2011-02-03', 144086, '2011-08-06', 441570.00, 'A'), + (1491, 1, 'QUINTERO GUTIERREZ ABEL PASTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2009-11-16', 138100.00, 'A'), + (1492, 1, 'ALARCON YEPES IVAN DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2010-05-03', 145330.00, 'A'), + (1494, 1, 'HERNANDEZ VALLEJO ANDRES MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-09', 125770.00, 'A'), + (1495, 1, 'MONTOYA MORENO LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-09', 691770.00, 'A'), + (1497, 1, 'BARRERA CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '62@yahoo.es', '2011-02-03', 127591, '2010-08-24', 332550.00, 'A'), + (1498, 1, 'ARROYAVE FERNANDEZ PABLO EMILIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-05-12', 418030.00, 'A'), + (1499, 1, 'GOMEZ ANGEL FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-05-03', 92480.00, 'A'), + (15, 1, 'AMSILI COHEN JOSEPH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 877400.00, 'A'), + ('CELL411', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (150, 3, 'ARDILA GUTIERREZ DANIEL MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-12', 506760.00, 'A'), + (1500, 1, 'GONZALEZ DUQUE PABLO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-04-13', 208330.00, 'A'), + (1502, 1, 'MEJIA BUSTAMANTE JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-09', 196000.00, 'A'), + (1506, 1, 'SUAREZ MONTOYA JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128569, '2011-09-13', 368250.00, 'A'), + (1508, 1, 'ALVAREZ GONZALEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-02-15', 355190.00, 'A'), + (1509, 1, 'NIETO CORREA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-31', 899980.00, 'A'), + (1511, 1, 'HERNANDEZ GRANADOS JHONATHAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-08-30', 471720.00, 'A'), + (1512, 1, 'CARDONA ALVAREZ DEIBY', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2010-10-05', 55590.00, 'A'), + (1513, 1, 'TORRES MARULANDA JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-20', 862820.00, 'A'), + (1514, 1, 'RAMIREZ RAMIREZ JHON JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-11', 147310.00, 'A'), + (1515, 1, 'MONDRAGON TORO NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-01-19', 148100.00, 'A'), + (1517, 3, 'SUIDA DIETER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2008-07-21', 48580.00, 'A'), + (1518, 3, 'LEFTWICH ANDREW PAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 211610, '2011-06-07', 347170.00, 'A'), + (1519, 3, 'RENTON ANDREW GEORGE PATRICK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2010-12-11', 590120.00, 'A'), + (152, 1, 'BUSTOS MONZON CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-22', 335160.00, 'A'), + (1521, 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 119814, '2011-04-28', 775000.00, 'A'), + (1522, 3, 'GUARACI FRANCO DE PAIVA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 119167, '2011-04-28', 147770.00, 'A'), + (1525, 4, 'MORENO TENORIO MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-20', 888750.00, 'A'), + (1527, 1, 'VELASQUEZ HERNANDEZ JHON EDUARSON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-19', 161270.00, 'A'), + (1528, 4, 'VANEGAS ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '185@yahoo.com', '2011-02-03', 127591, '2011-06-20', 109830.00, 'A'), + (1529, 3, 'BARBABE CLAIRE LAURENCE ANNICK', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-04', 65330.00, 'A'), + (153, 1, 'GONZALEZ TORREZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-01', 762560.00, 'A'), + (1530, 3, 'COREA MARTINEZ GUILLERMO JOSE ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-09-25', 997190.00, 'A'), + (1531, 3, 'PACHECO RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2010-03-08', 789960.00, 'A'), + (1532, 3, 'WELCH RICHARD WILLIAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 190393, '2010-10-04', 958210.00, 'A'), + (1533, 3, 'FOREMAN CAROLYN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 107159, '2011-05-23', 421200.00, 'A'), + (1535, 3, 'ZAGAL SOTO CLAUDIA PAZ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2008-05-16', 893130.00, 'A'), + (1536, 3, 'ZAGAL SOTO CLAUDIA PAZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-10-08', 771600.00, 'A'), + (1538, 3, 'BLANCO RODRIGUEZ JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 197162, '2011-04-02', 578250.00, 'A'), + (154, 1, 'HENDEZ PUERTO JAVIER ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 807310.00, 'A'), + (1540, 3, 'CONTRERAS BRAIN JAVIER ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-02-22', 42420.00, 'A'), + (1541, 3, 'RONDON HERNANDEZ MARYLIN DEL CARMEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-09-29', 145780.00, 'A'), + (1542, 3, 'ELJURI RAMIREZ EMIRA ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2010-10-13', 601670.00, 'A'), + (1544, 3, 'REYES LE ROY TOMAS FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2009-06-24', 49990.00, 'A'), + (1545, 3, 'GHETEA GAMUZ JENNY', 191821112, 'CRA 25 CALLE 100', '675@gmail.com', '2011-02-03', 150699, '2010-05-29', 536940.00, 'A'), + (1546, 3, 'DUARTE GONZALEZ ROONEY ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-20', 534720.00, 'A'), + (1548, 3, 'BIZOT PHILIPPE PIERRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 263813, '2011-03-02', 709760.00, 'A'), + (1549, 3, 'PELUFFO RUBIO GUILLERMO JUAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 116366, '2011-05-09', 360470.00, 'A'), + (1550, 3, 'AGLIATI YERKOVIC CAROLINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-06-01', 673040.00, 'A'), + (1551, 3, 'SEPULVEDA LEDEZMA HENRY CORNELIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-08-15', 283810.00, 'A'), + (1552, 3, 'CABRERA CARMINE JAIME FRANCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2008-11-30', 399940.00, 'A'), + (1553, 3, 'ZINNO PENA ALVARO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116366, '2010-08-02', 148270.00, 'A'), + (1554, 3, 'ROMERO BUCCICARDI JUAN CRISTOBAL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-08-01', 541530.00, 'A'), + (1555, 3, 'FEFERKORN ABRAHAM', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 159312, '2011-06-12', 262840.00, 'A'), + (1556, 3, 'MASSE CATESSON CAROLINE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131272, '2011-06-12', 689600.00, 'A'), + (1557, 3, 'CATESSON ALEXANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 131272, '2011-06-12', 659470.00, 'A'), + (1558, 3, 'FUENTES HERNANDEZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-18', 228540.00, 'A'), + (1559, 3, 'GUEVARA MENJIVAR WILSON ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-18', 164310.00, 'A'), + (1560, 3, 'DANOWSKI NICOLAS JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-02', 135920.00, 'A'), + (1561, 3, 'CASTRO VELASQUEZ ISMAEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 121318, '2011-07-31', 186670.00, 'A'), + (1562, 3, 'RODRIGUEZ CORNEJO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 525590.00, 'A'), + (1563, 3, 'VANIA CAROLINA FLORES AVILA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-18', 67950.00, 'A'), + (1564, 3, 'ARMERO RAMOS OSCAR ALEXANDER', 191821112, 'CRA 25 CALLE 100', '414@hotmail.com', '2011-02-03', 127591, '2011-09-18', 762950.00, 'A'), + (1565, 3, 'ORELLANA MARTINEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-18', 610930.00, 'A'), + (1566, 3, 'BRATT BABONNEAU CARLOS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', 765800.00, 'A'), + (1567, 3, 'YANES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150728, '2011-04-12', 996200.00, 'A'), + (1568, 3, 'ANGULO TAMAYO SEBASTIAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126674, '2011-05-19', 683600.00, 'A'), + (1569, 3, 'HENRIQUEZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 138329, '2011-08-15', 429390.00, 'A'), + ('CELL4137', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (1570, 3, 'GARCIA VILLARROEL RAUL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126189, '2011-06-12', 96140.00, 'A'), + (1571, 3, 'SOLA HERNANDEZ JOSE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-09-25', 192530.00, 'A'), + (1572, 3, 'PEREZ PASTOR OSWALDO MAGARREY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126674, '2011-05-25', 674260.00, 'A'), + (1573, 3, 'MICHAN QUINONES FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-06-21', 793680.00, 'A'), + (1574, 3, 'GARCIA ARANDA OSCAR DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-08-15', 945620.00, 'A'), + (1575, 3, 'GARCIA RIBAS JORDI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-10', 347070.00, 'A'), + (1576, 3, 'GALVAN ROMERO MARIA INMACULADA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-09-14', 898480.00, 'A'), + (1577, 3, 'BOSH MOLINAS JUAN JOSE ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 198576, '2011-08-22', 451190.00, 'A'), + (1578, 3, 'MARTIN TENA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-04-24', 560520.00, 'A'), + (1579, 3, 'HAWKINS ROBERT JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-12', 449010.00, 'A'), + (1580, 3, 'GHERARDI ALEJANDRO EMILIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 180063, '2010-11-15', 563500.00, 'A'), + (1581, 3, 'TELLO JUAN EDUARDO', 191821112, 'CRA 25 CALLE 100', '192@hotmail.com', '2011-02-03', 138329, '2011-05-01', 470460.00, 'A'), + (1583, 3, 'GUZMAN VALDIVIA CINTIA TATIANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 199862, '2011-04-06', 897580.00, 'A'), + (1584, 3, 'STUBBS MERCEDES CARMEN JOSEFINA DEL MILAGRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 199862, '2011-04-06', 502510.00, 'A'), + (1585, 3, 'QUINTEIRO GORIS JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-17', 819840.00, 'A'), + (1587, 3, 'RIVAS LORIA PRISCILLA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 205636, '2011-05-01', 498720.00, 'A'), + (1588, 3, 'DE LA TORRE AUGUSTO PATRICIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 20404, '2011-08-31', 718670.00, 'A'), + (159, 1, 'ALDANA PATINO NORMAN ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2009-10-10', 201500.00, 'A'), + (1590, 3, 'TORRES VILLAR ROBERTO ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-08-10', 329950.00, 'A'), + (1591, 3, 'PETRULLI CARMELO MORENO', 191821112, 'CRA 25 CALLE 100', '883@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', 358180.00, 'A'), + (1592, 3, 'MUSCO ENZO FRANCESCO GIUSEPPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-04', 801050.00, 'A'), + (1593, 3, 'RONCUZZI CLAUDIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127134, '2011-10-02', 930700.00, 'A'), + (1594, 3, 'VELANI FRANCESCA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 199862, '2011-08-22', 250360.00, 'A'), + (1596, 3, 'BENARROCH ASSOR DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-10-06', 547310.00, 'A'), + (1597, 3, 'FLO VILLASECA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-05-27', 357520.00, 'A'), + (1598, 3, 'FONT RIBAS ANTONI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196117, '2011-09-21', 145660.00, 'A'), + (1599, 3, 'LOPEZ BARAHONA MONICA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-08-03', 655740.00, 'A'), + (16, 1, 'FLOREZ PEREZ GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132572, '2011-03-30', 956370.00, 'A'), + (160, 1, 'GIRALDO MENDIVELSO MARTIN EDISSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-14', 429010.00, 'A'), + (1600, 3, 'SCATTIATI ALDO ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 215245, '2011-07-10', 841730.00, 'A'), + (1601, 3, 'MARONE CARLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 101179, '2011-06-14', 241420.00, 'A'), + (1602, 3, 'CHUVASHEVA ELENA ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 190393, '2011-08-21', 681900.00, 'A'), + (1603, 3, 'GIGLIO FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 122035, '2011-09-19', 685250.00, 'A'), + (1604, 3, 'JUSTO AMATE AGUSTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 174598, '2011-05-16', 380560.00, 'A'), + (1605, 3, 'GUARDABASSI FABIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 281044, '2011-07-26', 847060.00, 'A'), + (1606, 3, 'CALABRETTA FRAMCESCO ANTONIO MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 199862, '2011-08-22', 93590.00, 'A'), + (1607, 3, 'TARTARINI MASSIMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196234, '2011-05-10', 926800.00, 'A'), + (1608, 3, 'BOTTI GIAIME', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 231989, '2011-04-04', 353210.00, 'A'), + (1610, 3, 'PILERI ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 205040, '2011-09-01', 868590.00, 'A'), + (1612, 3, 'MARTIN GRACIA LUIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-07-27', 324320.00, 'A'), + (1613, 3, 'GRACIA MARTIN LUIS', 191821112, 'CRA 25 CALLE 100', '579@facebook.com', '2011-02-03', 198248, '2011-08-24', 463560.00, 'A'), + (1614, 3, 'SERRAT SESE JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-05-16', 344840.00, 'A'), + (1615, 3, 'DEL LAGO AMPELIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-06-29', 333510.00, 'A'), + (1616, 3, 'PERUGORRIA RODRIGUEZ JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 148511, '2011-06-06', 633040.00, 'A'), + (1617, 3, 'GIRAL CALVO IGNACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-09-19', 164670.00, 'A'), + (1618, 3, 'ALONSO CEBRIAN JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '253@terra.com.co', '2011-02-03', 188640, '2011-03-23', 924240.00, 'A'), + (162, 1, 'ARIZA PINEDA JOHN ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-11-27', 415710.00, 'A'), + (1620, 3, 'OLMEDO CARDENETE DOMINGO MIGUEL', 191821112, 'CRA 25 CALLE 100', '608@terra.com.co', '2011-02-03', 135397, '2011-09-03', 863200.00, 'A'), + (1622, 3, 'GIMENEZ BALDRES ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 182860, '2011-05-12', 82660.00, 'A'), + (1623, 3, 'NUNEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-05-23', 609950.00, 'A'), + (1624, 3, 'PENATE CASTRO WENCESLAO LORENZO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 153607, '2011-09-13', 801750.00, 'A'), + (1626, 3, 'ESCODA MIGUEL JOAN JOSEP', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-07-18', 489310.00, 'A'), + (1628, 3, 'ESTRADA CAPILLA ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-26', 81180.00, 'A'), + (163, 1, 'PERDOMO LOPEZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-05', 456910.00, 'A'), + (1630, 3, 'SUBIRAIS MARIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-08', 138700.00, 'A'), + (1632, 3, 'ENSENAT VELASCO JAIME LUIS', 191821112, 'CRA 25 CALLE 100', '687@gmail.com', '2011-02-03', 188640, '2011-04-12', 904560.00, 'A'), + (1633, 3, 'DIEZ POLANCO CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-05-24', 530410.00, 'A'), + (1636, 3, 'CUADRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-09-04', 688400.00, 'A'), + (1637, 3, 'UBRIC MUNOZ RAUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 98790, '2011-05-30', 139830.00, 'A'), + ('CELL4159', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (1638, 3, 'NEDDERMANN GUJO RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-31', 633990.00, 'A'), + (1639, 3, 'RENEDO ZALBA JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-03-13', 750430.00, 'A'), + (164, 1, 'JIMENEZ PADILLA JOHAN MARCEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-05', 37430.00, 'A'), + (1640, 3, 'FERNANDEZ MORENO DAVID', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-05-28', 850180.00, 'A'), + (1641, 3, 'VERGARA SERRANO JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-06-30', 999620.00, 'A'), + (1642, 3, 'MARTINEZ HUESO LUCAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 182860, '2011-06-29', 447570.00, 'A'), + (1643, 3, 'FRANCO POBLET JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-10-03', 238990.00, 'A'), + (1644, 3, 'MORA HIDALGO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-06', 852250.00, 'A'), + (1645, 3, 'GARCIA COSO EMILIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-09-14', 544260.00, 'A'), + (1646, 3, 'GIMENO ESCRIG ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 180124, '2011-09-20', 164580.00, 'A'), + (1647, 3, 'MORCILLO LOPEZ RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127538, '2011-04-16', 190090.00, 'A'), + (1648, 3, 'RUBIO BONET MANUEL', 191821112, 'CRA 25 CALLE 100', '252@facebook.com', '2011-02-03', 196234, '2011-05-25', 456740.00, 'A'), + (1649, 3, 'PRADO ABUIN FERNANDO ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-07-16', 713400.00, 'A'), + (165, 1, 'RAMIREZ PALMA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-10', 816420.00, 'A'), + (1650, 3, 'DE VEGA PUJOL GEMA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-08-01', 196780.00, 'A'), + (1651, 3, 'IBARGUEN ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2010-12-03', 843720.00, 'A'), + (1652, 3, 'IBARGUEN ALFREDO', 191821112, 'CRA 25 CALLE 100', '856@hotmail.com', '2011-02-03', 188640, '2011-06-18', 628250.00, 'A'), + (1654, 3, 'MATELLANES RODRIGUEZ NURIA PILAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-10-05', 165770.00, 'A'), + (1656, 3, 'VIDAURRAZAGA GUISOLA JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-08-08', 495320.00, 'A'), + (1658, 3, 'GOMEZ ULLATE MARIA ELENA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-04-12', 919090.00, 'A'), + (1659, 3, 'ALCAIDE ALONSO JUAN MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-02', 152430.00, 'A'), + (166, 1, 'TUSTANOSKI RODOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-12-03', 969790.00, 'A'), + (1660, 3, 'LARROY GARCIA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-14', 4900.00, 'A'), + (1661, 3, 'FERNANDEZ POYATO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-10', 567180.00, 'A'), + (1662, 3, 'TREVEJO PARDO JULIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-25', 821200.00, 'A'), + (1663, 3, 'GORGA CASSINELLI VICTOR DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-30', 404490.00, 'A'), + (1664, 3, 'MORUECO GONZALEZ JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-10-09', 558820.00, 'A'), + (1665, 3, 'IRURETA FERNANDEZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 214283, '2011-09-14', 580650.00, 'A'), + (1667, 3, 'TREVEJO PARDO JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-25', 392020.00, 'A'), + (1668, 3, 'BOCOS NUNEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-10-08', 279710.00, 'A'), + (1669, 3, 'LUIS CASTILLO JOSE AGUSTIN', 191821112, 'CRA 25 CALLE 100', '557@hotmail.es', '2011-02-03', 168202, '2011-06-16', 222500.00, 'A'), + (167, 1, 'HURTADO BELALCAZAR JOHN JADY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-08-17', 399710.00, 'A'), + (1670, 3, 'REDONDO GUTIERREZ EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-09-14', 273350.00, 'A'), + (1671, 3, 'MADARIAGA ALONSO RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-07-26', 699240.00, 'A'), + (1673, 3, 'REY GONZALEZ LUIS JAVIER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-07-26', 283190.00, 'A'), + (1676, 3, 'PEREZ ESTER ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-10-03', 274900.00, 'A'), + (1677, 3, 'GOMEZ-GRACIA HUERTA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-22', 112260.00, 'A'), + (1678, 3, 'DAMASO PUENTE DIEGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-25', 736600.00, 'A'), + (168, 1, 'JUAN PABLO MARTINEZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-15', 89160.00, 'A'), + (1680, 3, 'DIEZ GONZALEZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-17', 521280.00, 'A'), + (1681, 3, 'LOPEZ LOPEZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '853@yahoo.com', '2011-02-03', 196234, '2010-12-13', 567760.00, 'A'), + (1682, 3, 'MIRO LINARES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133442, '2011-09-03', 274930.00, 'A'), + (1683, 3, 'ROCA PINTADO MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-05-16', 671410.00, 'A'), + (1684, 3, 'GARCIA BARTOLOME HORACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-09-29', 532220.00, 'A'), + (1686, 3, 'BALMASEDA DE AHUMADA DIEZ JUAN LUIS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 168202, '2011-04-13', 637860.00, 'A'), + (1687, 3, 'FERNANDEZ IMAZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-04-10', 248580.00, 'A'), + (1688, 3, 'ELIAS CASTELLS FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-19', 329300.00, 'A'), + (1689, 3, 'ANIDO DIAZ DANIEL', 191821112, 'CRA 25 CALLE 100', '491@gmail.com', '2011-02-03', 188640, '2011-04-04', 900780.00, 'A'), + (1691, 3, 'GATELL ARIMONT MARIA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-17', 877700.00, 'A'), + (1692, 3, 'RIVERA MUNOZ ADONI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 211705, '2011-04-05', 840470.00, 'A'), + (1693, 3, 'LUNA LOPEZ ALICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-10-01', 569270.00, 'A'), + (1695, 3, 'HAMMOND ANN ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118021, '2011-05-17', 916770.00, 'A'), + (1698, 3, 'RODRIGUEZ PARAJA MARIA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-15', 649080.00, 'A'), + (1699, 3, 'RUIZ DIAZ JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-06-24', 359540.00, 'A'), + (17, 1, 'SUAREZ CUEVAS FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2011-08-31', 149640.00, 'A'), + (170, 1, 'MARROQUIN AVILA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-04', 965840.00, 'A'), + (1700, 3, 'BACCHELLI ORTEGA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126180, '2011-06-07', 850450.00, 'A'), + (1701, 3, 'IGLESIAS JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2010-09-14', 173630.00, 'A'), + (1702, 3, 'GUTIEZ CUEVAS JULIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2010-09-07', 316800.00, 'A'), + ('CELL4183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (1704, 3, 'CALDEIRO ZAMORA JESUS CARMELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-09', 365230.00, 'A'), + (1705, 3, 'ARBONA ABASCAL MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-02-27', 636760.00, 'A'), + (1706, 3, 'COHEN AMAR MOISES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196766, '2011-05-20', 88120.00, 'A'), + (1708, 3, 'FERNANDEZ COBOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2010-11-09', 387220.00, 'A'), + (1709, 3, 'CANAL VIVES JOAQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 196234, '2011-09-27', 345150.00, 'A'), + (171, 1, 'LADINO MORENO JAVIER ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-25', 89230.00, 'A'), + (1710, 5, 'GARCIA BERTRAND HECTOR', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-04-07', 564100.00, 'A'), + (1711, 1, 'CONSTANZA MARIN ESCOBAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127799, '2011-03-24', 785060.00, 'A'), + (1712, 1, 'NUNEZ BATALLA FAUSTINO JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-26', 232970.00, 'A'), + (1713, 3, 'VILORA LAZARO ERICK MARTIN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-26', 809690.00, 'A'), + (1715, 3, 'ELLIOT EDWARD JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-26', 318660.00, 'A'), + (1716, 3, 'ALCALDE ORTENO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-07-23', 544650.00, 'A'), + (1717, 3, 'CIARAVELLA STEFANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 231989, '2011-06-13', 767260.00, 'A'), + (1718, 3, 'URRA GONZALEZ PEDRO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-05-02', 202370.00, 'A'), + (172, 1, 'GUERRERO ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-15', 548610.00, 'A'), + (1720, 3, 'JIMENEZ RODRIGUEZ ANNET', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-05-25', 943140.00, 'A'), + (1721, 3, 'LESCAY CASTELLANOS ARNALDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', 585570.00, 'A'), + (1722, 3, 'OCHOA AGUILAR ELIADES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-25', 98410.00, 'A'), + (1723, 3, 'RODRIGUEZ NUNES JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 735340.00, 'A'), + (1724, 3, 'OCHOA BUSTAMANTE ELIADES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-25', 381480.00, 'A'), + (1725, 3, 'MARTINEZ NIEVES JOSE ANGEL', 191821112, 'CRA 25 CALLE 100', '919@yahoo.es', '2011-02-03', 127591, '2011-05-25', 701360.00, 'A'), + (1727, 3, 'DRAGONI ALAIN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-25', 707850.00, 'A'), + (1728, 3, 'FERNANDEZ LOPEZ MARCOS ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-25', 452090.00, 'A'), + (1729, 3, 'MATURELL ROMERO JORGE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-25', 136880.00, 'A'), + (173, 1, 'RUIZ CEBALLOS ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-04', 475380.00, 'A'), + (1730, 3, 'LARA CASTELLANO LENNIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-25', 328150.00, 'A'), + (1731, 3, 'GRAHAM CRISTOPHER DRAKE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 203079, '2011-06-27', 230120.00, 'A'), + (1732, 3, 'TORRE LUCA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-05-11', 166120.00, 'A'), + (1733, 3, 'OCHOA HIDALGO EGLIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 140250.00, 'A'), + (1734, 3, 'LOURERIO DELACROIX FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116511, '2011-09-28', 202900.00, 'A'), + (1736, 3, 'LEVIN FIORELLI ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116366, '2011-08-07', 360110.00, 'A'), + (1739, 3, 'BERRY R ALBERT', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 216125, '2011-08-16', 22170.00, 'A'), + (174, 1, 'NIETO PARRA SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-05-11', 731040.00, 'A'), + (1740, 3, 'MARSHALL ROBERT SHEPARD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 150159, '2011-03-09', 62860.00, 'A'), + (1741, 3, 'HENANDEZ ROY CHRISTOPHER JOHN PATRICK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 179614, '2011-09-26', 247780.00, 'A'), + (1742, 3, 'LANDRY GUILLAUME', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 232263, '2011-04-27', 50330.00, 'A'), + (1743, 3, 'VUCETIC ZELJKO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 232263, '2011-07-25', 508320.00, 'A'), + (1744, 3, 'DE JUANA CELASCO MARIA DEL CARMEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-04-16', 390620.00, 'A'), + (1745, 3, 'LABONTE RONALD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 269033, '2011-09-28', 428120.00, 'A'), + (1746, 3, 'NEWMAN PHILIP MARK', 191821112, 'CRA 25 CALLE 100', '557@gmail.com', '2011-02-03', 231373, '2011-07-25', 968750.00, 'A'), + (1747, 3, 'GRENIER MARIE PIERRE ', 191821112, 'CRA 25 CALLE 100', '409@facebook.com', '2011-02-03', 244158, '2011-07-03', 559370.00, 'A'), + (1749, 3, 'SHINDER GARY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 244158, '2011-07-25', 775000.00, 'A'), + (175, 3, 'GALLEGOS BASTIDAS CARLOS EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133211, '2011-08-10', 229090.00, 'A'), + (1750, 3, 'LOPEZ DE GOICOCHEA ZABALA FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-13', 203120.00, 'A'), + (1751, 3, 'CORRAL BELLON MANUEL', 191821112, 'CRA 25 CALLE 100', '538@yahoo.com', '2011-02-03', 177443, '2011-05-02', 690610.00, 'A'), + (1752, 3, 'DE SOLA SOLVAS JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-10-02', 843700.00, 'A'), + (1753, 3, 'GARCIA ALCALA DIAZ REGANON EVA MARIA', 191821112, 'CRA 25 CALLE 100', '398@yahoo.com', '2011-02-03', 118777, '2010-03-15', 146680.00, 'A'), + (1754, 3, 'BIELA VILIAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2011-08-16', 202290.00, 'A'), + (1755, 3, 'GUIOT CANO JUAN PATRICK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 232263, '2011-05-23', 571390.00, 'A'), + (1756, 3, 'JIMENEZ DIAZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-03-27', 250100.00, 'A'), + (1757, 3, 'FOX ELEANORE MAE', 191821112, 'CRA 25 CALLE 100', '117@yahoo.com', '2011-02-03', 190393, '2011-05-04', 536340.00, 'A'), + (1758, 3, 'TANG VAN SON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-05-07', 931400.00, 'A'), + (1759, 3, 'SUTTON PETER RONALD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 281673, '2011-06-01', 47960.00, 'A'), + (176, 1, 'GOMEZ IVAN', 191821112, 'CRA 25 CALLE 100', '438@yahoo.com.mx', '2011-02-03', 127591, '2008-04-09', 952310.00, 'A'), + (1762, 3, 'STOODY MATTHEW FRANCIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-21', 84320.00, 'A'), + (1763, 3, 'SEIX MASO ARNAU', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150699, '2011-05-24', 168880.00, 'A'), + (1764, 3, 'FERNANDEZ REDEL RAQUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-09-14', 591440.00, 'A'), + (1765, 3, 'PORCAR DESCALS VICENNTE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 176745, '2011-04-24', 450580.00, 'A'), + (1766, 3, 'PEREZ DE VILLEGAS TRILLO FIGUEROA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-05-17', 478560.00, 'A'), + ('CELL4198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (1767, 3, 'CELDRAN DEGANO ANGEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 196234, '2011-05-17', 41040.00, 'A'), + (1768, 3, 'TERRAGO MARI FERRAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-09-30', 769550.00, 'A'), + (1769, 3, 'SZUCHOVSZKY GERGELY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 250256, '2011-05-23', 724630.00, 'A'), + (177, 1, 'SEBASTIAN TORO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127443, '2011-07-14', 74270.00, 'A'), + (1771, 3, 'TORIBIO JOSE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 226612, '2011-09-04', 398570.00, 'A'), + (1772, 3, 'JOSE LUIS BAQUERA PEIRONCELLY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2010-10-19', 49360.00, 'A'), + (1773, 3, 'MADARIAGA VILLANUEVA MIGUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-04-12', 51090.00, 'A'), + (1774, 3, 'VILLENA BORREGO ANTONIO', 191821112, 'CRA 25 CALLE 100', '830@terra.com.co', '2011-02-03', 188640, '2011-07-19', 107400.00, 'A'), + (1776, 3, 'VILAR VILLALBA JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 180124, '2011-09-20', 596330.00, 'A'), + (1777, 3, 'CAGIGAL ORTIZ MACARENA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 214283, '2011-09-14', 830530.00, 'A'), + (1778, 3, 'KORBA ATTILA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 250256, '2011-09-27', 363650.00, 'A'), + (1779, 3, 'KORBA-ELIAS BARBARA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 250256, '2011-09-27', 326670.00, 'A'), + (178, 1, 'AMSILI COHEN HANAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-08-29', 514450.00, 'A'), + (1780, 3, 'PINDADO GOMEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 189053, '2011-04-26', 542400.00, 'A'), + (1781, 3, 'IBARRONDO GOMEZ GRACIA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-09-21', 731990.00, 'A'), + (1782, 3, 'MUNGUIRA GONZALEZ JUAN JULIAN', 191821112, 'CRA 25 CALLE 100', '54@hotmail.es', '2011-02-03', 188640, '2011-09-06', 32730.00, 'A'), + (1784, 3, 'LANDMAN PIETER MARINUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 294861, '2011-09-22', 740260.00, 'A'), + (1789, 3, 'SUAREZ AINARA ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-05-17', 503470.00, 'A'), + (179, 1, 'CARO JUNCO GUIOVANNY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-03', 349420.00, 'A'), + (1790, 3, 'MARTINEZ CHACON JOSE JOAQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-20', 592220.00, 'A'), + (1792, 3, 'MENDEZ DEL RION LUCIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 120639, '2011-06-16', 476910.00, 'A'), + (1793, 3, 'VERHULST LAMBERTUS CORNELIA FRANCISCUS ALPHONSUS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 295420, '2011-07-04', 32410.00, 'A'), + (1794, 3, 'YANEZ YAGUE JESUS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-07-10', 731290.00, 'A'), + (1796, 3, 'GOMEZ ZORRILLA AMATE JOSE MARIOA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-07-12', 602380.00, 'A'), + (1797, 3, 'LAIZ MORENO ENEKO', 191821112, 'CRA 25 CALLE 100', '219@gmail.com', '2011-02-03', 127591, '2011-08-05', 334150.00, 'A'), + (1798, 3, 'MORODO RUIZ RUBEN DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-09-14', 863620.00, 'A'), + (18, 1, 'GARZON VARGAS GUILLERMO FEDERICO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-29', 879110.00, 'A'), + (1800, 3, 'ALFARO FAUS MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-09-14', 987410.00, 'A'), + (1801, 3, 'MORRALLA VALLVERDU ENRIC', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 194601, '2011-07-18', 990070.00, 'A'), + (1802, 3, 'BALBASTRE TEJEDOR JUAN VICENTE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 182860, '2011-08-24', 988120.00, 'A'), + (1803, 3, 'MINGO REIZ FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2010-03-24', 970400.00, 'A'), + (1804, 3, 'IRURETA FERNANDEZ JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 214283, '2011-09-10', 887630.00, 'A'), + (1807, 3, 'NEBRO MELLADO JOSE JUAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 168996, '2011-08-15', 278540.00, 'A'), + (1808, 3, 'ALBERQUILLA OJEDA JOSE DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-09-27', 477070.00, 'A'), + (1809, 3, 'BUENDIA NORTE MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 131401, '2011-07-08', 549720.00, 'A'), + (181, 1, 'CASTELLANOS FLORES RODRIGO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-18', 970470.00, 'A'), + (1811, 3, 'HILBERT ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-08', 937830.00, 'A'), + (1812, 3, 'GONZALES PINTO COTERILLO ADOLFO LORENZO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 214283, '2011-09-10', 736970.00, 'A'), + (1813, 3, 'ARQUES ALVAREZ JOSE RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-04-04', 871360.00, 'A'), + (1817, 3, 'CLAUSELL LOW ROBERTO EMILIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2011-09-28', 348770.00, 'A'), + (1818, 3, 'BELICHON MARTINEZ JESUS ALVARO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-04-12', 327010.00, 'A'), + (182, 1, 'GUZMAN NIETO JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-20', 241130.00, 'A'), + (1821, 3, 'LINATI DE PUIG JORGE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 196234, '2011-05-18', 47210.00, 'A'), + (1823, 3, 'SINBARRERA ROMA ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196234, '2011-09-08', 598380.00, 'A'), + (1826, 2, 'JUANES GARATE BRUNO ', 191821112, 'CRA 25 CALLE 100', '301@gmail.com', '2011-02-03', 118777, '2011-08-21', 877650.00, 'A'), + (1827, 3, 'BOLOS GIMENO ROGELIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 200247, '2010-11-28', 555470.00, 'A'), + (1828, 3, 'ZABALA ASTIGARRAGA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-09-20', 144410.00, 'A'), + (1831, 3, 'MAPELLI CAFFARENA BORJA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 172381, '2011-09-04', 58200.00, 'A'), + (1833, 3, 'LARMONIE LESLIE MARTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-30', 604840.00, 'A'), + (1834, 3, 'WILLEMS ROBERT-JAN MICHAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 288531, '2011-09-05', 756530.00, 'A'), + (1835, 3, 'ANJEMA LAURENS JAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-08-29', 968140.00, 'A'), + (1836, 3, 'VERHULST HENRICUS LAMBERTUS MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 295420, '2011-04-03', 571100.00, 'A'), + (1837, 3, 'PIERROT JOZEF MARIE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 288733, '2011-05-18', 951100.00, 'A'), + (1838, 3, 'EIKELBOOM HIDDE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 42210.00, 'A'), + (1839, 3, 'TAMBINI GOMEZ DE MUNG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 180063, '2011-04-24', 357740.00, 'A'), + (1840, 3, 'MAGANA PEREZ GERARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-09-28', 662060.00, 'A'), + (1841, 3, 'COURTOISIE BEYHAUT RAFAEL JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116366, '2011-09-05', 237070.00, 'A'), + (1842, 3, 'ROJAS BENJAMIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-13', 199170.00, 'A'), + (1843, 3, 'GARCIA VICENTE EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 150699, '2011-08-10', 284650.00, 'A'), + ('CELL4291', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (1844, 3, 'CESTTI LOPEZ RAFAEL GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 144215, '2011-09-27', 825750.00, 'A'), + (1845, 3, 'URTECHO LOPEZ ARMANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 139272, '2011-09-28', 274800.00, 'A'), + (1846, 3, 'SEGURA ESPINOZA ARMANDO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 135360, '2011-09-28', 896730.00, 'A'), + (1847, 3, 'GONZALEZ VEGA LUIS PASTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-05-18', 659240.00, 'A'), + (185, 1, 'AYALA CARDENAS NELSON MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 855960.00, 'A'), + (1850, 3, 'ROTZINGER ROA KLAUS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 116366, '2011-09-12', 444250.00, 'A'), + (1851, 3, 'FRANCO DE LEON SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116366, '2011-04-26', 63840.00, 'A'), + (1852, 3, 'RIVAS GAGNONI LUIS ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 135360, '2011-05-18', 986440.00, 'A'), + (1853, 3, 'BARRETO VELASQUEZ JOEL FERNANDO', 191821112, 'CRA 25 CALLE 100', '104@hotmail.es', '2011-02-03', 116511, '2011-04-27', 740670.00, 'A'), + (1854, 3, 'SEVILLA AMAYA ORLANDO', 191821112, 'CRA 25 CALLE 100', '264@yahoo.com', '2011-02-03', 136995, '2011-05-18', 744020.00, 'A'), + (1855, 3, 'VALFRE BRALICH ELEONORA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116366, '2011-06-06', 498080.00, 'A'), + (1857, 3, 'URDANETA DIAMANTES DIEGO ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-09-23', 797590.00, 'A'), + (1858, 3, 'RAMIREZ ALVARADO ROBERT JESUS', 191821112, 'CRA 25 CALLE 100', '290@yahoo.com.mx', '2011-02-03', 127591, '2011-09-18', 212850.00, 'A'), + (1859, 3, 'GUTTNER DENNIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-25', 671470.00, 'A'), + (186, 1, 'CARRASCO SUESCUN ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-15', 36620.00, 'A'), + (1861, 3, 'HEGEMANN JOACHIM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-25', 579710.00, 'A'), + (1862, 3, 'MALCHER INGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 292243, '2011-06-23', 742060.00, 'A'), + (1864, 3, 'HOFFMEISTER MALTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128206, '2011-09-06', 629770.00, 'A'), + (1865, 3, 'BOHME ALEXANDRA LUCE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-14', 235260.00, 'A'), + (1866, 3, 'HAMMAN FRANK THOMAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-13', 286980.00, 'A'), + (1867, 3, 'GOPPERT MARKUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-09-05', 729150.00, 'A'), + (1868, 3, 'BISCARO CAROLINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-16', 784790.00, 'A'), + (1869, 3, 'MASCHAT SEBASTIAN STEPHAN ANDREAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-02-03', 736520.00, 'A'), + (1870, 3, 'WALTHER DANIEL CLAUS PETER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-24', 328220.00, 'A'), + (1871, 3, 'NENTWIG DANIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 289697, '2011-02-03', 431550.00, 'A'), + (1872, 3, 'KARUTZ ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127662, '2011-03-17', 173090.00, 'A'), + (1875, 3, 'KAY KUNNE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 289697, '2011-03-18', 961400.00, 'A'), + (1876, 2, 'SCHLUMPF IVANA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 245206, '2011-03-28', 802690.00, 'A'), + (1877, 3, 'RODRIGUEZ BUSTILLO CONSUELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 139067, '2011-03-21', 129280.00, 'A'), + (1878, 1, 'REHWALDT RICHARD ULRICH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289697, '2009-10-25', 238320.00, 'A'), + (1880, 3, 'FONSECA BEHRENS MANUELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-18', 303810.00, 'A'), + (1881, 3, 'VOGEL MIRKO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-09', 107790.00, 'A'), + (1882, 3, 'WU WEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 289697, '2011-03-04', 627520.00, 'A'), + (1884, 3, 'KADOLSKY ANKE SIGRID', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 289697, '2010-10-07', 188560.00, 'A'), + (1885, 3, 'PFLUCKER PLENGE CARLOS HERNAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 239124, '2011-08-15', 500140.00, 'A'), + (1886, 3, 'PENA LAGOS MELENIA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 935020.00, 'A'), + (1887, 3, 'CALVANO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-05-02', 174690.00, 'A'), + (1888, 3, 'KUHLEN LOTHAR WILHELM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 289232, '2011-08-30', 68390.00, 'A'), + (1889, 3, 'QUIJANO RICO SOFIA VICTORIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 221939, '2011-06-13', 817890.00, 'A'), + (189, 1, 'GOMEZ TRUJILLO SERGIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-17', 985980.00, 'A'), + (1890, 3, 'SCHILBERZ KARIN', 191821112, 'CRA 25 CALLE 100', '405@facebook.com', '2011-02-03', 287570, '2011-06-23', 884260.00, 'A'), + (1891, 3, 'SCHILBERZ SOPHIE CAHRLOTTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 287570, '2011-06-23', 967640.00, 'A'), + (1892, 3, 'MOLINA MOLINA MILAGRO DE SUYAPA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 139844, '2011-07-26', 185410.00, 'A'), + (1893, 3, 'BARRIENTOS ESCALANTE RAFAEL ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 139067, '2011-05-18', 24110.00, 'A'), + (1895, 3, 'ENGELS FRANZBERNARD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 292243, '2011-07-01', 749430.00, 'A'), + (1896, 3, 'FRIEDHOFF SVEN WILHEM', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 289697, '2010-10-31', 54090.00, 'A'), + (1897, 3, 'BARTELS CHRISTIAN JOHAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-07-25', 22160.00, 'A'), + (1898, 3, 'NILS REMMEL', 191821112, 'CRA 25 CALLE 100', '214@gmail.com', '2011-02-03', 256231, '2011-08-05', 948530.00, 'A'), + (1899, 3, 'DR SCHEIBE MATTHIAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 252431, '2011-09-26', 676150.00, 'A'), + (19, 1, 'RIANO ROMERO ALBERTO ELIAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-12-14', 946630.00, 'A'), + (190, 1, 'LLOREDA ORTIZ FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-12-20', 30860.00, 'A'), + (1900, 3, 'CARRASCO CATERIANO PEDRO', 191821112, 'CRA 25 CALLE 100', '255@hotmail.com', '2011-02-03', 286578, '2011-05-02', 535180.00, 'A'), + (1901, 3, 'ROSENBER DIRK PETER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-29', 647450.00, 'A'), + (1902, 3, 'LAUBACH JOHANNES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289697, '2011-05-01', 631720.00, 'A'), + (1904, 3, 'GRUND STEFAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 256231, '2011-08-05', 185990.00, 'A'), + (1905, 3, 'GRUND BEATE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 256231, '2011-08-05', 281280.00, 'A'), + (1906, 3, 'CORZO PAULA MIRIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 180063, '2011-08-02', 848400.00, 'A'), + (1907, 3, 'OESTERHAUS CORNELIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 256231, '2011-03-16', 398170.00, 'A'), + (1908, 1, 'JUAN SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-05-12', 445660.00, 'A'), + (1909, 3, 'VAN ZIJL CHRISTIAN ANDREAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 286785, '2011-09-24', 33800.00, 'A'), + (191, 1, 'CASTANEDA CABALLERO JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-28', 196370.00, 'A'), + (1910, 3, 'LORZA RUIZ MYRIAM ESPERANZA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-29', 831990.00, 'A'), + (192, 1, 'ZEA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-09', 889270.00, 'A'), + (193, 1, 'VELEZ VICTOR MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-22', 857250.00, 'A'), + (194, 1, 'ARCINIEGAS GOMEZ ISMAEL', 191821112, 'CRA 25 CALLE 100', '937@hotmail.com', '2011-02-03', 127591, '2011-05-18', 618450.00, 'A'), + (195, 1, 'LINAREZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-12', 520470.00, 'A'), + (1952, 3, 'BERND ERNST HEINZ SCHUNEMANN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 255673, '2011-09-04', 796820.00, 'A'), + (1953, 3, 'BUCHNER RICHARD ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-17', 808430.00, 'A'), + (1954, 3, 'CHO YONG BEOM', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 173192, '2011-02-07', 651670.00, 'A'), + (1955, 3, 'BERNECKER WALTER LUDWIG', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 256231, '2011-04-03', 833080.00, 'A'), + (1956, 3, 'SCHIERENBECK THOMAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 256231, '2011-05-03', 210380.00, 'A'), + (1957, 3, 'STEGMANN WOLF DIETER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-08-27', 552650.00, 'A'), + (1958, 3, 'LEBAGE GONZALEZ VALENTINA CECILIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 131272, '2011-07-29', 132130.00, 'A'), + (1959, 3, 'CABRERA MACCHI JOSE ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 180063, '2011-08-02', 2700.00, 'A'), + (196, 1, 'OTERO BERNAL ALVARO ERNESTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-04-29', 747030.00, 'A'), + (1960, 3, 'KOO BONKI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-15', 617110.00, 'A'), + (1961, 3, 'JODJAHN DE CARVALHO BEIRAL FLAVIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-07-05', 77460.00, 'A'), + (1963, 3, 'VIEIRA ROCHA MARQUES ELIANE TEREZINHA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118402, '2011-09-13', 447430.00, 'A'), + (1965, 3, 'KELLEN CRISTINA GATTI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126180, '2011-07-01', 804020.00, 'A'), + (1966, 3, 'CHAVEZ MARLON TENORIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-25', 132310.00, 'A'), + (1967, 3, 'SERGIO COZZI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 125750, '2011-08-28', 249500.00, 'A'), + (1968, 3, 'REZENDE LIMA JOSE MARCIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-08-23', 850570.00, 'A'), + (1969, 3, 'RAMOS PEDRO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118942, '2011-08-03', 504330.00, 'A'), + (1972, 3, 'ADAMS THOMAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2011-08-11', 774000.00, 'A'), + (1973, 3, 'WALESKA NUCINI BOGO ANDREA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-23', 859690.00, 'A'), + (1974, 3, 'GERMANO PAULO BUNN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118439, '2011-08-30', 976440.00, 'A'), + (1975, 3, 'CALDEIRA FILHO RUBENS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118942, '2011-07-18', 303120.00, 'A'), + (1976, 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 119814, '2011-09-08', 586290.00, 'A'), + (1977, 3, 'GAMAS MARIA CRISTINA ALVES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-09-19', 22070.00, 'A'), + (1979, 3, 'PORTO WEBER FERREIRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-07', 691340.00, 'A'), + (1980, 3, 'FONSECA LAURO PINTO', 191821112, 'CRA 25 CALLE 100', '104@hotmail.es', '2011-02-03', 127591, '2011-08-16', 402140.00, 'A'), + (1981, 3, 'DUARTE ELENA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-06-15', 936710.00, 'A'), + (1983, 3, 'CECHINEL CRISTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118942, '2011-06-12', 575530.00, 'A'), + (1984, 3, 'BATISTA PINHERO JOAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-04-25', 446250.00, 'A'), + (1987, 1, 'ISRAEL JOSE MAXWELL', 191821112, 'CRA 25 CALLE 100', '936@gmail.com', '2011-02-03', 125894, '2011-07-04', 408350.00, 'A'), + (1988, 3, 'BATISTA CARVALHO RODRIGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118864, '2011-09-19', 488410.00, 'A'), + (1989, 3, 'RENO DA SILVEIRA EDNEIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118867, '2011-05-03', 216990.00, 'A'), + (199, 1, 'BASTO CORREA FERNANDO ANTONIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-21', 616860.00, 'A'), + (1990, 3, 'SEIDLER KOHNERT G TEIXEIRA CHRISTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 119814, '2011-08-23', 619730.00, 'A'), + (1992, 3, 'GUIMARAES COSTA LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-04-20', 379090.00, 'A'), + (1993, 3, 'BOTTA RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2011-09-16', 552510.00, 'A'), + (1994, 3, 'ARAUJO DA SILVA MARCELO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 125666, '2011-08-03', 625260.00, 'A'), + (1995, 3, 'DA SILVA FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118864, '2011-04-14', 468760.00, 'A'), + (1996, 3, 'MANFIO RODRIGUEZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '974@yahoo.com', '2011-02-03', 118777, '2011-03-23', 468040.00, 'A'), + (1997, 3, 'NEIVA MORENO DE SOUZA CRISTIANE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-24', 933900.00, 'A'), + (2, 3, 'CHEEVER MICHAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-04', 560090.00, 'I'), + (2000, 3, 'ROCHA GUSTAVO ADRIANO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118288, '2011-07-25', 830340.00, 'A'), + (2001, 3, 'DE ANDRADE CARVALHO VIRGINIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-08-11', 575760.00, 'A'), + (2002, 3, 'CAVALCANTI PIERECK GUILHERME', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 180063, '2011-08-01', 387770.00, 'A'), + (2004, 3, 'HOEGEMANN RAMOS CARLOS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-04', 894550.00, 'A'), + (201, 1, 'LUIS FERNANDO AREVALO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-17', 156730.00, 'A'), + (2010, 3, 'GOMES BUCHALA JORGE FERNANDO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-23', 314800.00, 'A'), + (2011, 3, 'MARTINS SIMAIKA CATIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-06-01', 155020.00, 'A'), + (2012, 3, 'MONICA CASECA BUENO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-05-16', 830710.00, 'A'), + (2013, 3, 'ALBERTAL MARCELO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118000, '2010-09-10', 688480.00, 'A'), + (2015, 3, 'GOMES CANTARELLI JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118761, '2011-01-11', 685940.00, 'A'), + (2016, 3, 'CADETTI GARBELLINI ENILICE CRISTINA ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-11', 578870.00, 'A'), + (2017, 3, 'SPIELKAMP KLAUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 150699, '2011-03-28', 836540.00, 'A'), + (2019, 3, 'GARES HENRI PHILIPPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 135190, '2011-04-05', 720730.00, 'A'), + ('CELL4308', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (202, 1, 'LUCIO CHAUSTRE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-19', 179240.00, 'A'), + (2023, 3, 'GRECO DE RESENDELUIZ ALFREDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 119814, '2011-04-25', 647940.00, 'A'), + (2024, 3, 'CORTINA EVANDRO JOAO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118922, '2011-05-12', 153970.00, 'A'), + (2026, 3, 'BASQUES MOURA GERALDO CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 119814, '2011-09-07', 668250.00, 'A'), + (2027, 3, 'DA SILVA VALDECIR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 863150.00, 'A'), + (2028, 3, 'CHI MOW YUNG IVAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-21', 311000.00, 'A'), + (2029, 3, 'YUNG MYRA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-21', 965570.00, 'A'), + (2030, 3, 'MARTINS RAMALHO PATRICIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-03-23', 894830.00, 'A'), + (2031, 3, 'DE LEMOS RIBEIRO GILBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118951, '2011-07-29', 577430.00, 'A'), + (2032, 3, 'AIROLDI CLAUDIO', 191821112, 'CRA 25 CALLE 100', '973@terra.com.co', '2011-02-03', 127591, '2011-09-28', 202650.00, 'A'), + (2033, 3, 'ARRUDA MENDES HEILMANN IONE TEREZA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 120773, '2011-09-07', 280990.00, 'A'), + (2034, 3, 'TAVARES DE CARVALHO EDUARDO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118942, '2011-08-03', 796980.00, 'A'), + (2036, 3, 'FERNANDES ALARCON RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-08-28', 318730.00, 'A'), + (2037, 3, 'SUCHODOLKI SERGIO GUSMAO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 190393, '2011-07-13', 167870.00, 'A'), + (2039, 3, 'ESTEVES MARCAL MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-02-24', 912100.00, 'A'), + (2040, 3, 'CORSI LUIZ ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-03-25', 911080.00, 'A'), + (2041, 3, 'LOPEZ MONICA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118795, '2011-05-03', 819090.00, 'A'), + (2042, 3, 'QUINTANILHA LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-16', 362230.00, 'A'), + (2043, 3, 'DE CARLI BRUNO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-05-03', 353890.00, 'A'), + (2045, 3, 'MARINO FRANCA MARILIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-07-04', 352060.00, 'A'), + (2048, 3, 'VOIGT ALPHONSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118439, '2010-11-22', 384150.00, 'A'), + (2049, 3, 'ALENCAR ARIMA TATIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-05-23', 408590.00, 'A'), + (2050, 3, 'LINIS DE ALMEIDA NEILSON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 125666, '2011-08-03', 890480.00, 'A'), + (2051, 3, 'PINHEIRO DE CASTRO BENETI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-08-09', 226640.00, 'A'), + (2052, 3, 'ALVES DO LAGO HELMANN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118942, '2011-08-01', 461770.00, 'A'), + (2053, 3, 'OLIVO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-22', 628900.00, 'A'), + (2054, 3, 'WILLIAM DOMINGUES SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118085, '2011-08-23', 759220.00, 'A'), + (2055, 3, 'DE SOUZA MENEZES KLEBER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-04-25', 909400.00, 'A'), + (2056, 3, 'CABRAL NEIDE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-16', 269340.00, 'A'), + (2057, 3, 'RODRIGUES RENATO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-06-15', 618500.00, 'A'), + (2058, 3, 'SPADALE PEDRO JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-08-03', 284490.00, 'A'), + (2059, 3, 'MARTINS DE ALMEIDA GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-09-28', 566920.00, 'A'), + (206, 1, 'TORRES HEBER MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-01-29', 643210.00, 'A'), + (2060, 3, 'IKUNO CELINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-06-08', 981170.00, 'A'), + (2061, 3, 'DAL BELLO FABIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129499, '2011-08-20', 205050.00, 'A'), + (2062, 3, 'BENATES ADRIANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-23', 81770.00, 'A'), + (2063, 3, 'CARDOSO ALEXANDRE ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 793690.00, 'A'), + (2064, 3, 'ZANIOLO DE SOUZA CARLOS HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-09-19', 723130.00, 'A'), + (2065, 3, 'DA SILVA LUIZ SIDNEI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-03-30', 234590.00, 'A'), + (2066, 3, 'RUFATO DE SOUZA LUIZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-08-29', 3560.00, 'A'), + (2067, 3, 'DE MEDEIROS LUCIANA', 191821112, 'CRA 25 CALLE 100', '994@yahoo.com.mx', '2011-02-03', 118777, '2011-09-10', 314020.00, 'A'), + (2068, 3, 'WOLFF PIAZERA DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118255, '2011-06-15', 559430.00, 'A'), + (2069, 3, 'DA SILVA FORTUNA MARINA CLAUDIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-09-23', 855100.00, 'A'), + (2070, 3, 'PEREIRA BORGES LUCILA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-26', 597210.00, 'A'), + (2072, 3, 'PORROZZI DE ALMEIDA RENATO', 191821112, 'CRA 25 CALLE 100', '812@hotmail.es', '2011-02-03', 127591, '2011-06-13', 312120.00, 'A'), + (2073, 3, 'KALICHSZTEINN RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-03-23', 298330.00, 'A'), + (2074, 3, 'OCCHIALINI GUIMARAES ANA PAULA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2011-08-03', 555310.00, 'A'), + (2075, 3, 'MAZZUCO FONTES LUIZ ROBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-05-23', 881570.00, 'A'), + (2078, 3, 'TRAN DINH VAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 98560.00, 'A'), + (2079, 3, 'NGUYEN THI LE YEN', 191821112, 'CRA 25 CALLE 100', '249@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 298200.00, 'A'), + (208, 1, 'GOMEZ GONZALEZ JORGE MARIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-12', 889010.00, 'A'), + (2080, 3, 'MILA DE LA ROCA JOHANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-01-26', 195350.00, 'A'), + (2081, 3, 'RODRIGUEZ DE FLORES LOURDES MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-16', 82120.00, 'A'), + (2082, 3, 'FLORES PEREZ FRANCISCO GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-23', 824550.00, 'A'), + (2083, 3, 'FRAGACHAN BETANCOUT FRANCISCO JO SE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-07-04', 876400.00, 'A'), + (2084, 3, 'GAFARO MOLINA CARLOS JULIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-22', 908370.00, 'A'), + (2085, 3, 'CACERES REYES JORGEANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-08-11', 912630.00, 'A'), + (2086, 3, 'ALVAREZ RODRIGUEZ VICTOR ROGELIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2011-05-23', 838040.00, 'A'), + (2087, 3, 'GARCES ALVARADO JHAGEIMA JOSEFINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-04-29', 452320.00, 'A'), + ('CELL4324', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (2089, 3, 'FAVREAU CHOLLET JEAN PIERRE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132554, '2011-05-27', 380470.00, 'A'), + (209, 1, 'CRUZ RODRIGEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '316@hotmail.es', '2011-02-03', 127591, '2011-06-28', 953870.00, 'A'), + (2090, 3, 'GARAY LLUCH URBI ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-03-13', 659870.00, 'A'), + (2091, 3, 'LETICIA LETICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-07', 157950.00, 'A'), + (2092, 3, 'VELASQUEZ RODULFO RAMON ARISTIDES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-23', 810140.00, 'A'), + (2093, 3, 'PEREZ EDGAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-06', 576850.00, 'A'), + (2094, 3, 'PEREZ MARIELA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-07', 453840.00, 'A'), + (2095, 3, 'PETRUZZI MANGIARANO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132958, '2011-03-27', 538650.00, 'A'), + (2096, 3, 'LINARES GORI RICARDO RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-12', 331730.00, 'A'), + (2097, 3, 'LAIRET OLIVEROS CAROLINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-25', 42680.00, 'A'), + (2099, 3, 'JIMENEZ GARCIA FERNANDO JOSE', 191821112, 'CRA 25 CALLE 100', '78@hotmail.es', '2011-02-03', 132958, '2011-07-21', 963110.00, 'A'), + (21, 1, 'RUBIO ESCOBAR RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-05-21', 639240.00, 'A'), + (2100, 3, 'ZABALA MILAGROS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-20', 160860.00, 'A'), + (2101, 3, 'VASQUEZ CRUZ NICOLEDANIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-07-31', 914990.00, 'A'), + (2102, 3, 'REYES FIGUERA RAMON ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126674, '2011-04-03', 92340.00, 'A'), + (2104, 3, 'RAMIREZ JIMENEZ MARYLIN CAROLINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2011-06-14', 306760.00, 'A'), + (2105, 3, 'TELLES GUILLEN INNA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-09-07', 383520.00, 'A'), + (2106, 3, 'ALVAREZ CARMEN MARINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-07-20', 997340.00, 'A'), + (2107, 3, 'MARTINEZ YRIGOYEN NABUCODONOSOR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-07-21', 836110.00, 'A'), + (2108, 5, 'FERNANDEZ RUIZ IGNACIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-01', 188530.00, 'A'), + (211, 1, 'RIVEROS GARCIA JORGE IVAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-01', 650050.00, 'A'), + (2110, 3, 'CACERES REYES JORGE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-08-08', 606030.00, 'A'), + (2111, 3, 'GELFI MARCOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 199862, '2011-05-17', 727190.00, 'A'), + (2112, 3, 'CERDA CASTILLO CARMEN GLORIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', 817870.00, 'A'), + (2113, 3, 'RANGEL FERNANDEZ LEONARDO JOSE', 191821112, 'CRA 25 CALLE 100', '856@hotmail.com', '2011-02-03', 133211, '2011-05-16', 907750.00, 'A'), + (2114, 3, 'ROTHSCHILD VARGAS MICHAEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-02-05', 85170.00, 'A'), + (2115, 3, 'RUIZ GRATEROL INGRID JOHANNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-05-16', 702600.00, 'A'), + (2116, 2, 'DEARMAS ALBERTO FERNANDO ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-07-19', 257500.00, 'A'), + (2117, 3, 'BOSCAN ARRIETA ERICK HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-07-12', 179680.00, 'A'), + (2118, 3, 'GUILLEN DE TELLES NENCY JOSEFINA', 191821112, 'CRA 25 CALLE 100', '56@facebook.com', '2011-02-03', 132958, '2011-09-07', 125900.00, 'A'), + (212, 1, 'BUSTAMANTE BUSTAMANTE CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-26', 943260.00, 'A'), + (2120, 2, 'MARK ANTHONY STUART', 191821112, 'CRA 25 CALLE 100', '661@terra.com.co', '2011-02-03', 127591, '2011-06-26', 74600.00, 'A'), + (2122, 3, 'SCOCOZZA GIOVANNA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 190526, '2011-09-23', 284220.00, 'A'), + (2125, 3, 'CHAVES MOLINA JULIO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132165, '2011-09-22', 295360.00, 'A'), + (2127, 3, 'BERNARDES DE SOUZA TONIATI VIRGINIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-30', 565090.00, 'A'), + (2129, 2, 'BRIAN DAVIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 78460.00, 'A'), + (213, 1, 'PAREJO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-11', 766120.00, 'A'), + (2131, 3, 'DE OLIVEIRA LOPES REGINALDO LAZARO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-05', 404910.00, 'A'), + (2132, 3, 'DE MELO MING AZEVEDO PAULO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-10-05', 440370.00, 'A'), + (2137, 3, 'SILVA JORGE ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-05', 230570.00, 'A'), + (214, 1, 'CADENA RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-08', 840.00, 'A'), + (2142, 3, 'VIEIRA VEIGA PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-30', 85330.00, 'A'), + (2144, 3, 'ESCRIBANO LEONARDA DEL VALLE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-03-24', 941440.00, 'A'), + (2145, 3, 'RODRIGUEZ MENENDEZ BERNARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 148511, '2011-08-02', 588740.00, 'A'), + (2146, 3, 'GONZALEZ COURET DANIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 148511, '2011-08-09', 119380.00, 'A'), + (2147, 3, 'GARCIA SOTO WILLIAM', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 135360, '2011-05-18', 830660.00, 'A'), + (2148, 3, 'MENESES ORELLANA RICARDO TOMAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-06-13', 795200.00, 'A'), + (2149, 3, 'GUEVARA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-27', 483990.00, 'A'), + (215, 1, 'BELTRAN PINZON JUAN CARLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-08', 705860.00, 'A'), + (2151, 2, 'LLANES GARRIDO JAVIER ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-30', 719750.00, 'A'), + (2152, 3, 'CHAVARRIA CHAVES RAFAEL ADRIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132165, '2011-09-20', 495720.00, 'A'), + (2153, 2, 'MILBERT ANDREASPETER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-10', 319370.00, 'A'), + (2154, 2, 'GOMEZ SILVA LOZANO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127300, '2011-05-30', 109670.00, 'A'), + (2156, 3, 'WINTON ROBERT DOUGLAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 115551, '2011-08-08', 622290.00, 'A'), + (2157, 2, 'ROMERO PINA MANUEL GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-05', 340650.00, 'A'), + (2158, 3, 'KARWALSKI MATTHEW REECE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117229, '2011-08-29', 836380.00, 'A'), + (2159, 2, 'KIM JUNG SIK ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-08', 159950.00, 'A'), + (216, 1, 'MARTINEZ VALBUENA JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 526750.00, 'A'), + (2160, 3, 'AGAR ROBERT ALEXANDER', 191821112, 'CRA 25 CALLE 100', '81@hotmail.es', '2011-02-03', 116862, '2011-06-11', 290620.00, 'A'), + (2161, 3, 'IGLESIAS EDGAR ALEXIS', 191821112, 'CRA 25 CALLE 100', '645@facebook.com', '2011-02-03', 131272, '2011-04-04', 973240.00, 'A'), + (2163, 2, 'NOAIN MORENO CECILIA KARIM ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-22', 51950.00, 'A'), + (2164, 2, 'FIGUEROA HEBEL ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-26', 276760.00, 'A'), + (2166, 5, 'FRANDBERG DAN RICHARD VERNER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 134022, '2011-04-06', 309480.00, 'A'), + (2168, 2, 'CONTRERAS LILLO EDUARDO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-27', 389320.00, 'A'), + (2169, 2, 'BLANCO VALLE RICARDO ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-07-13', 355950.00, 'A'), + (2171, 2, 'BELTRAN ZAVALA JIMI ALFONSO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126674, '2011-08-22', 991000.00, 'A'), + (2172, 2, 'RAMIRO OREGUI JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-04-27', 119700.00, 'A'), + (2175, 2, 'FENG PUYO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 302172, '2011-10-07', 965660.00, 'A'), + (2176, 3, 'CLERICI GUIDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 116366, '2011-08-30', 522970.00, 'A'), + (2177, 1, 'SEIJAS GUNTER LUIS MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-02', 717890.00, 'A'), + (2178, 2, 'SHOSHANI MOSHE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-13', 20520.00, 'A'), + (218, 3, 'HUCHICHALEO ARSENDIGA FRANCISCA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-05', 690.00, 'A'), + (2181, 2, 'DOMINGO BARTOLOME LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '173@terra.com.co', '2011-02-03', 127591, '2011-04-18', 569030.00, 'A'), + (2182, 3, 'GONZALEZ RIJO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-10-02', 795610.00, 'A'), + (2183, 2, 'ANDROVICH MORENO LIZETH LILIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127300, '2011-10-10', 270970.00, 'A'), + (2184, 2, 'ARREAZA LUGO JESUS ALFREDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', 968030.00, 'A'), + (2185, 2, 'NAVEDA CANELON KATHERINE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132775, '2011-09-14', 27250.00, 'A'), + (2189, 2, 'LUGO BEHRENS DENISE SOFIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-08', 253980.00, 'A'), + (2190, 2, 'ERICA ROSE MOLDENHAUVER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-25', 175480.00, 'A'), + (2192, 2, 'SOLORZANO GARCIA ANDREINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 50790.00, 'A'), + (2193, 3, 'DE LA COSTE MARIA CAROLINA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-26', 907640.00, 'A'), + (2194, 2, 'MARTINEZ DIAZ JUAN JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-08', 385810.00, 'A'), + (2195, 2, 'GALARRAGA ECHEVERRIA DAYEN ALI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-13', 206150.00, 'A'), + (2196, 2, 'GUTIERREZ RAMIREZ HECTOR JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133211, '2011-06-07', 873330.00, 'A'), + (2197, 2, 'LOPEZ GONZALEZ SILVIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127662, '2011-09-01', 748170.00, 'A'), + (2198, 2, 'SEGARES LUTZ JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-07', 120880.00, 'A'), + (2199, 2, 'NADER MARTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127538, '2011-08-12', 359880.00, 'A'), + (22, 1, 'CARDOZO AMAYA JORGE HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-25', 908720.00, 'A'), + (2200, 3, 'NATERA BERMUDEZ OSWALDO JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-18', 436740.00, 'A'), + (2201, 2, 'COSTA RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 150699, '2011-09-01', 104090.00, 'A'), + (2202, 5, 'GRUNDY VALENZUELA ALAN PATRICK', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-08', 210230.00, 'A'), + (2203, 2, 'MONTENEGRO DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-26', 738890.00, 'A'), + (2204, 2, 'TAMAI BUNGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-24', 63730.00, 'A'), + (2205, 5, 'VINHAS FORTUNA EDSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-09-23', 102010.00, 'A'), + (2206, 2, 'RUIZ ERBS MARIO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-07-19', 318860.00, 'A'), + (2207, 2, 'VENTURA TINEO MARCEL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', 288240.00, 'A'), + (2210, 2, 'RAMIREZ GUZMAN RICARDO JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-28', 338740.00, 'A'), + (2211, 2, 'STERNBERG GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2011-09-04', 18070.00, 'A'), + (2212, 2, 'MARTELLO ALEJOS ROGER ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127443, '2011-06-20', 74120.00, 'A'), + (2213, 2, 'CASTANEDA RAFAEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 316410.00, 'A'), + (2214, 2, 'LIMON MARTINEZ WILBERT DE JESUS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128904, '2011-09-19', 359690.00, 'A'), + (2215, 2, 'PEREZ HERNANDEZ MONICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133211, '2011-05-23', 849240.00, 'A'), + (2216, 2, 'AWAD LOBATO RICARDO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '853@hotmail.com', '2011-02-03', 127591, '2011-04-12', 167100.00, 'A'), + (2217, 2, 'CEPEDA VANEGAS ENDER ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-08-22', 287770.00, 'A'), + (2218, 2, 'PEREZ CHIQUIN HECTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132572, '2011-04-13', 937580.00, 'A'), + (2220, 5, 'FRANCO DELGADILLO RONALD FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132775, '2011-09-16', 310190.00, 'A'), + (2222, 2, 'ALCAIDE ALONSO JUAN MIGUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-02', 455360.00, 'A'), + (2223, 3, 'BROWNING BENJAMIN MARK', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-09', 45230.00, 'A'), + (2225, 3, 'HARWOO BENJAMIN JOEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 164620.00, 'A'), + (2226, 3, 'HOEY TIMOTHY ROSS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-09', 242910.00, 'A'), + (2227, 3, 'FERGUSON GARRY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-28', 720700.00, 'A'), + (2228, 3, 'NORMAN NEVILLE ROBERT', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 288493, '2011-06-29', 874750.00, 'A'), + (2229, 3, 'KUK HYUN CHAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-03-22', 211660.00, 'A'), + (223, 1, 'PINZON PLAZA MARCOS VINICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 856300.00, 'A'), + (2230, 3, 'SLIPAK NATALIA ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-07-27', 434070.00, 'A'), + (2231, 3, 'BONELLI MASSIMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 170601, '2011-07-11', 535340.00, 'A'), + (2233, 3, 'VUYLSTEKE ALEXANDER ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 284647, '2011-09-11', 266530.00, 'A'), + (2234, 3, 'DRESSE ALAIN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 284272, '2011-04-19', 209100.00, 'A'), + (2235, 3, 'PAIRON JEAN LOUIS MARIE RAIMOND', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 284272, '2011-03-03', 245940.00, 'A'), + (2236, 3, 'DEVIANE ACHIM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 284272, '2010-11-14', 602370.00, 'A'), + (2239, 3, 'DE CANNIERE LOUIS GEORFES HELE MARIE-JOZEF', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 285511, '2011-09-11', 993540.00, 'A'), + (2240, 1, 'ERGO ROBERT', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-28', 278270.00, 'A'), + (2241, 3, 'MYRTES RODRIGUEZ MORGANA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-18', 410740.00, 'A'), + (2242, 3, 'BRECHBUEHL HANSRUDOLF', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 249059, '2011-07-27', 218900.00, 'A'), + (2243, 3, 'IVANA SCHLUMPF', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 245206, '2011-04-08', 862270.00, 'A'), + (2244, 3, 'JESSICA JACCART', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 189512, '2011-08-28', 654640.00, 'A'), + (2246, 3, 'PAUSELLI MARIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 210050, '2011-09-26', 468090.00, 'A'), + (2247, 3, 'VOLONTEIRO RICCARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-04-13', 281230.00, 'A'), + (2248, 3, 'HOFFMANN ALVIR ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 120773, '2011-08-23', 1900.00, 'A'), + (2249, 3, 'MANTOVANI DANIEL FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-08-09', 165820.00, 'A'), + (225, 1, 'DUARTE RUEDA JAVIER ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-29', 293110.00, 'A'), + (2250, 3, 'LIMA DA COSTA BRENO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-03-23', 823370.00, 'A'), + (2251, 3, 'TAMBORIN MACIEL MAGALI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 619420.00, 'A'), + (2252, 3, 'BELLO DE MUORA BIANCA', 191821112, 'CRA 25 CALLE 100', '969@gmail.com', '2011-02-03', 118942, '2011-08-03', 626970.00, 'A'), + (2253, 3, 'VINHAS FORTUNA PIETRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2011-09-23', 276600.00, 'A'), + (2255, 3, 'BLUMENTHAL JAIRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117630, '2011-07-20', 680590.00, 'A'), + (2256, 3, 'DOS REIS FILHO ELPIDIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 120773, '2011-08-07', 896720.00, 'A'), + (2257, 3, 'COIMBRA CARDOSO MUNARI FERNANDA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-09', 441830.00, 'A'), + (2258, 3, 'LAZANHA FLAVIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118942, '2011-06-14', 519000.00, 'A'), + (2259, 3, 'LAZANHA FLAVIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-06-14', 269480.00, 'A'), + (226, 1, 'HUERFANO FLOREZ JOHN FAVER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-29', 148340.00, 'A'), + (2260, 3, 'JOVETTA EDILSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118941, '2011-09-19', 790430.00, 'A'), + (2261, 3, 'DE OLIVEIRA ANDRE RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-07-25', 143680.00, 'A'), + (2263, 3, 'MUNDO TEIXEIRA CARVALHO SILVIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118864, '2011-09-19', 304670.00, 'A'), + (2264, 3, 'FERREIRA CINTRA ADRIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-04-08', 481910.00, 'A'), + (2265, 3, 'AUGUSTO DE OLIVEIRA MARCOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118685, '2011-08-09', 495530.00, 'A'), + (2266, 3, 'CHEN ROBERTO LUIZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-03-15', 31920.00, 'A'), + (2268, 3, 'WROBLESKI DIENSTMANN RAQUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117630, '2011-05-15', 269320.00, 'A'), + (2269, 3, 'MALAGOLA GEDERSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118864, '2011-05-30', 327540.00, 'A'), + (227, 1, 'LOPEZ ESCOBAR CARLOS ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-06', 862360.00, 'A'), + (2271, 3, 'GOMES EVANDRO HENRIQUE', 191821112, 'CRA 25 CALLE 100', '199@hotmail.es', '2011-02-03', 118777, '2011-03-24', 166100.00, 'A'), + (2273, 3, 'LANDEIRA FERNANDEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-21', 207990.00, 'A'), + (2274, 3, 'ROSSI RENATO', 191821112, 'CRA 25 CALLE 100', '791@hotmail.es', '2011-02-03', 118777, '2011-09-19', 16170.00, 'A'), + (2275, 3, 'CALMON RANGEL PATRICIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 456890.00, 'A'), + (2277, 3, 'CIFU NETO ROQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-04-27', 808940.00, 'A'), + (2278, 3, 'GONCALVES PRETO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118942, '2011-07-25', 336930.00, 'A'), + (2279, 3, 'JORGE JUNIOR ROBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-05-09', 257840.00, 'A'), + (2281, 3, 'ELENCIUC DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-04-20', 618510.00, 'A'), + (2283, 3, 'CUNHA MENDEZ RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 119855, '2011-07-18', 431190.00, 'A'), + (2286, 3, 'DIAZ LENICE APARECIDA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-03', 977840.00, 'A'), + (2288, 3, 'DE CARVALHO SIGEL TATIANA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2011-07-04', 123920.00, 'A'), + (229, 1, 'GALARZA GIRALDO SERGIO ALDEMAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-09-17', 746930.00, 'A'), + (2290, 3, 'ACHOA MORANDI BORGUES SIBELE MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118777, '2011-09-12', 553890.00, 'A'), + (2291, 3, 'EPAMINONDAS DE ALMEIDA DELIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-22', 14080.00, 'A'), + (2293, 3, 'REIS CASTRO SHANA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-08-03', 1430.00, 'A'), + (2294, 3, 'BERNARDES JUNIOR ARMANDO', 191821112, 'CRA 25 CALLE 100', '678@gmail.com', '2011-02-03', 127591, '2011-08-30', 780930.00, 'A'), + (2295, 3, 'LEMOS DE SOUZA AGUIAR SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-10-03', 900370.00, 'A'), + (2296, 3, 'CARVALHO ADAMS KARIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2011-08-11', 159040.00, 'A'), + (2297, 3, 'GALLINA SILVANA BRASILEIRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 94110.00, 'A'), + (23, 1, 'COLMENARES PEDREROS EDUARDO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 625870.00, 'A'), + (2300, 3, 'TAVEIRA DE SIQUEIRA TANIA APARECIDA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-24', 443910.00, 'A'), + (2301, 3, 'DA SIVA LIMA ANDRE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-23', 165020.00, 'A'), + (2302, 3, 'GALVAO GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-09-12', 493370.00, 'A'), + (2303, 3, 'DA COSTA CRUZ GABRIELA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-07-27', 971800.00, 'A'), + (2304, 3, 'BERNHARD GOTTFRIED RABER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-04-30', 378870.00, 'A'), + (2306, 3, 'ALDANA URIBE PABLO AXEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-05-08', 758160.00, 'A'), + (2308, 3, 'FLORES ALONSO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-04-26', 995310.00, 'A'), + ('CELL4330', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (2309, 3, 'MADRIGAL MIER Y TERAN LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-02-23', 414650.00, 'A'), + (231, 1, 'ZAPATA CEBALLOS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-08-16', 430320.00, 'A'), + (2310, 3, 'GONZALEZ ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-05-19', 87330.00, 'A'), + (2313, 3, 'MONTES PORTO ANDREA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-09-01', 929180.00, 'A'), + (2314, 3, 'ROCHA SUSUNAGA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2010-10-18', 541540.00, 'A'), + (2315, 3, 'VASQUEZ CALERO FEDERICO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 920160.00, 'A'), + (2317, 3, 'GONZALEZ FERNANDEZ YUSSEN ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-26', 120530.00, 'A'), + (2319, 3, 'ATTIAS WENGROWSKY DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150581, '2011-09-07', 8580.00, 'A'), + (232, 1, 'OSPINA ABUCHAIBE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-14', 748960.00, 'A'), + (2320, 3, 'EFRON TOPOROVSKY INES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 116511, '2011-07-15', 20810.00, 'A'), + (2321, 3, 'LUNA PLA DARIO', 191821112, 'CRA 25 CALLE 100', '95@terra.com.co', '2011-02-03', 145135, '2011-09-07', 78320.00, 'A'), + (2322, 1, 'VAZQUEZ DANIELA', 191821112, 'CRA 25 CALLE 100', '190@gmail.com', '2011-02-03', 145135, '2011-05-19', 329170.00, 'A'), + (2323, 3, 'BALBI BALBI JUAN DE DIOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-23', 410880.00, 'A'), + (2324, 3, 'MARROQUIN FERNANDEZ GELACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-23', 66880.00, 'A'), + (2325, 3, 'VAZQUEZ ZAVALA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-04-11', 101770.00, 'A'), + (2326, 3, 'SOTO MARTINEZ MARIA ELENA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-23', 308200.00, 'A'), + (2328, 3, 'HERNANDEZ MURILLO RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-22', 253830.00, 'A'), + (233, 1, 'HADDAD LINERO YEBRAIL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 130608, '2010-06-17', 453830.00, 'A'), + (2330, 3, 'TERMINEL HERNANDEZ DANIELA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 190393, '2011-08-15', 48940.00, 'A'), + (2331, 3, 'MIJARES FERNANDEZ MAGDALENA GUADALUPE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-31', 558440.00, 'A'), + (2332, 3, 'GONZALEZ LUNA CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 146258, '2011-04-26', 645400.00, 'A'), + (2333, 3, 'DIAZ TORREJON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-03', 551690.00, 'A'), + (2335, 3, 'PADILLA GUTIERREZ JESUS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 456120.00, 'A'), + (2336, 3, 'TORRES CORONA JORGE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', 813900.00, 'A'), + (2337, 3, 'CASTRO RAMSES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150581, '2011-07-04', 701120.00, 'A'), + (2338, 3, 'APARICIO VALLEJO RUSSELL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-03-16', 63890.00, 'A'), + (2339, 3, 'ALBOR FERNANDEZ LUIS ARTURO', 191821112, 'CRA 25 CALLE 100', '574@gmail.com', '2011-02-03', 147467, '2011-05-09', 216110.00, 'A'), + (234, 1, 'DOMINGUEZ GOMEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '942@hotmail.com', '2011-02-03', 127591, '2010-08-22', 22260.00, 'A'), + (2342, 3, 'REY ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '110@facebook.com', '2011-02-03', 127591, '2011-03-04', 313330.00, 'A'), + (2343, 3, 'MENDOZA GONZALES ADRIANA', 191821112, 'CRA 25 CALLE 100', '295@yahoo.com', '2011-02-03', 127591, '2011-03-23', 178720.00, 'A'), + (2344, 3, 'RODRIGUEZ SEGOVIA JESUS ALONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-07-26', 953590.00, 'A'), + (2345, 3, 'GONZALEZ PELAEZ EDUARDO DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 231790.00, 'A'), + (2347, 3, 'VILLEDA GARCIA DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 144939, '2011-05-29', 795600.00, 'A'), + (2348, 3, 'FERRER BURGES EMILIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', 83430.00, 'A'), + (2349, 3, 'NARRO ROBLES LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-03-16', 30330.00, 'A'), + (2350, 3, 'ZALDIVAR UGALDE CARLOS IGNACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-06-19', 901380.00, 'A'), + (2351, 3, 'VARGAS RODRIGUEZ VALENTE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 146258, '2011-04-26', 415910.00, 'A'), + (2354, 3, 'DEL PIERO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-09', 19890.00, 'A'), + (2355, 3, 'VILLAREAL ANA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-23', 211810.00, 'A'), + (2356, 3, 'GARRIDO FERRAN JORGE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 999370.00, 'A'), + (2357, 3, 'PEREZ PRECIADO EDMUNDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-22', 361450.00, 'A'), + (2358, 3, 'AGUIRRE VIGNAU DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150581, '2011-08-21', 809110.00, 'A'), + (2359, 3, 'LOPEZ SESMA TOMAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 146258, '2011-09-14', 961200.00, 'A'), + (236, 1, 'VENTO BETANCOURT LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-19', 682230.00, 'A'), + (2360, 3, 'BERNAL MALDONADO GUILLERMO JAVIER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-19', 378670.00, 'A'), + (2361, 3, 'GUZMAN DELGADO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-22', 9770.00, 'A'), + (2362, 3, 'GUZMAN DELGADO MARTIN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 912850.00, 'A'), + (2363, 3, 'GUSMAND ELGADO JORGE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-22', 534910.00, 'A'), + (2364, 3, 'RENDON BUICK JORGE JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-26', 936010.00, 'A'), + (2365, 3, 'HERNANDEZ HERNANDEZ HERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 75340.00, 'A'), + (2366, 3, 'ALVAREZ PAZ PEDRO RAFAEL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-01-02', 568650.00, 'A'), + (2367, 3, 'MIJARES DE LA BARREDA FERNANDA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-07-31', 617240.00, 'A'), + (2368, 3, 'MARTINEZ LOPEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-08-24', 380250.00, 'A'), + (2369, 3, 'GAYTAN MILLAN YANERI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 49520.00, 'A'), + (237, 1, 'BARGUIL ASSIS DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117460, '2009-09-03', 161770.00, 'A'), + (2370, 3, 'DURAN HEREDIA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-04-15', 106850.00, 'A'), + (2371, 3, 'SEGURA MIJARES CRISTOBAL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-31', 385700.00, 'A'), + (2372, 3, 'TEPOS VALTIERRA ERIK ARTURO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116345, '2011-09-01', 607930.00, 'A'), + (2373, 3, 'RODRIGUEZ AGUILAR EDMUNDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-05-04', 882570.00, 'A'), + (2374, 3, 'MYSLABODSKI MICHAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-03-08', 589060.00, 'A'), + (2375, 3, 'HERNANDEZ MIRELES JATNIEL ELIOENAI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', 297600.00, 'A'), + (2376, 3, 'SNELL FERNANDEZ SYNTYHA ROCIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 720830.00, 'A'), + (2378, 3, 'HERNANDEZ EIVET AARON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 394200.00, 'A'), + (2379, 3, 'LOPEZ GARZA JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-22', 837000.00, 'A'), + (238, 1, 'GARCIA PINO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-10', 762140.00, 'A'), + (2381, 3, 'TOSCANO ESTRADA RUBEN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-22', 500940.00, 'A'), + (2382, 3, 'RAMIREZ HUDSON ROGER SILVESTER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-22', 497550.00, 'A'), + (2383, 3, 'RAMOS JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '362@yahoo.es', '2011-02-03', 127591, '2011-08-22', 984940.00, 'A'), + (2384, 3, 'CORTES CERVANTES ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-04-11', 432020.00, 'A'), + (2385, 3, 'POZOS ESQUIVEL DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-27', 205310.00, 'A'), + (2387, 3, 'ESTRADA AGUIRRE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 36470.00, 'A'), + (2388, 3, 'GARCIA RAMIREZ RAMON', 191821112, 'CRA 25 CALLE 100', '177@yahoo.es', '2011-02-03', 127591, '2011-08-22', 990910.00, 'A'), + (2389, 3, 'PRUD HOMME GARCIA CUBAS XAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-18', 845140.00, 'A'), + (239, 1, 'PINZON ARDILA GUSTAVO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-01', 325400.00, 'A'), + (2390, 3, 'ELIZABETH OCHOA ROJAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-05-21', 252950.00, 'A'), + (2391, 3, 'MEZA ALVAREZ JOSE ALBERTO', 191821112, 'CRA 25 CALLE 100', '646@terra.com.co', '2011-02-03', 144939, '2011-05-09', 729340.00, 'A'), + (2392, 3, 'HERRERA REYES RENATO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2010-02-28', 887860.00, 'A'), + (2393, 3, 'MURILLO GARIBAY GILBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-08-20', 251280.00, 'A'), + (2394, 3, 'GARCIA JIMENEZ CARLOS MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-09', 592830.00, 'A'), + (2395, 3, 'GUAGNELLI MARTINEZ BLANCA MONICA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145184, '2010-10-05', 210320.00, 'A'), + (2397, 3, 'GARCIA CISNEROS RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-07-04', 734530.00, 'A'), + (2398, 3, 'MIRANDA ROMO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 853340.00, 'A'), + (24, 1, 'ARREGOCES GARZON NELSON ORLANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127783, '2011-08-12', 403190.00, 'A'), + (240, 1, 'ARCINIEGAS GOMEZ ALBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-18', 340590.00, 'A'), + (2400, 3, 'HERRERA ABARCA EDUARDO VICENTE ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 755620.00, 'A'), + (2403, 3, 'CASTRO MONCAYO LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-07-29', 617260.00, 'A'), + (2404, 3, 'GUZMAN DELGADO OSBALDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 56250.00, 'A'), + (2405, 3, 'GARCIA LOPEZ DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-22', 429500.00, 'A'), + (2406, 3, 'JIMENEZ GAMEZ RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 245206, '2011-03-23', 978720.00, 'A'), + (2407, 3, 'BECERRA MARTINEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-08-23', 605130.00, 'A'), + (2408, 3, 'GARCIA MARTINEZ BERNARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 89480.00, 'A'), + (2409, 3, 'URRUTIA RAYAS BALTAZAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 632020.00, 'A'), + (241, 1, 'MEDINA AGUILA NESTOR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-09', 726730.00, 'A'), + (2411, 3, 'VERGARA MENDOZAVICTOR HUGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-06-15', 562230.00, 'A'), + (2412, 3, 'MENDOZA MEDINA JORGE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 136170.00, 'A'), + (2413, 3, 'CORONADO CASTILLO HUGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 147529, '2011-05-09', 994160.00, 'A'), + (2414, 3, 'GONZALEZ SOTO DELIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-03-23', 562280.00, 'A'), + (2415, 3, 'HERNANDEZ FLORES STEPHANIE REYNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 828940.00, 'A'), + (2416, 3, 'ABRAJAN GUERRERO MARIA DE LOS ANGELES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-23', 457860.00, 'A'), + (2417, 3, 'HERNANDEZ LOERA ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 802490.00, 'A'), + (2418, 3, 'TARIN LOPEZ JOSE CARMEN', 191821112, 'CRA 25 CALLE 100', '117@gmail.com', '2011-02-03', 127591, '2011-03-23', 638870.00, 'A'), + (242, 1, 'JULIO NARVAEZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-05', 611890.00, 'A'), + (2420, 3, 'BATTA MARQUEZ VICTOR ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-08-23', 17820.00, 'A'), + (2423, 3, 'GONZALEZ REYES JUAN JOSE', 191821112, 'CRA 25 CALLE 100', '55@yahoo.es', '2011-02-03', 127591, '2011-07-26', 758070.00, 'A'), + (2425, 3, 'ALVAREZ RODRIGUEZ HIRAM RAMSES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-23', 847420.00, 'A'), + (2426, 3, 'FEMATT HERNANDEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-03-23', 164130.00, 'A'), + (2427, 3, 'GUTIERRES ORTEGA FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 278410.00, 'A'), + (2428, 3, 'JIMENEZ DIAZ JUAN JORGE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-13', 899650.00, 'A'), + (2429, 3, 'VILLANUEVA PEREZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '656@yahoo.es', '2011-02-03', 150449, '2011-03-23', 663000.00, 'A'), + (243, 1, 'GOMEZ REYES ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126674, '2009-12-20', 879240.00, 'A'), + (2430, 3, 'CERON GOMEZ JOEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-03-21', 616070.00, 'A'), + (2431, 3, 'LOPEZ LINALDI DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-05-09', 91360.00, 'A'), + (2432, 3, 'JOSEPH NATHAN PEDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-02', 608580.00, 'A'), + (2433, 3, 'CARRENO PULIDO RUBEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 147242, '2011-06-19', 768810.00, 'A'), + (2434, 3, 'AREVALO MERCADO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-06-12', 18320.00, 'A'), + (2436, 3, 'RAMIREZ QUEZADA ERIKA BELEM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-03', 870930.00, 'A'), + (2438, 3, 'TATTO PRIETO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-19', 382740.00, 'A'), + (2439, 3, 'LOPEZ AYALA LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-10-08', 916370.00, 'A'), + (244, 1, 'DEVIS EDGAR JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-10-08', 560540.00, 'A'), + (2440, 3, 'HERNANDEZ TOVAR JORGE ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 144991, '2011-10-02', 433650.00, 'A'), + (2441, 3, 'COLLIARD LOPEZ PETER GEORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 419120.00, 'A'), + (2442, 3, 'FLORES CHALA GARY', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 794670.00, 'A'), + (2443, 3, 'FANDINO MUNOZ ZAMIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-19', 715970.00, 'A'), + (2444, 3, 'BARROSO VARGAS DIEGO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-26', 195840.00, 'A'), + (2446, 3, 'CRUZ RAMIREZ JUAN PEDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-07-14', 569050.00, 'A'), + (2447, 3, 'TIJERINA ACOSTA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 351280.00, 'A'), + (2449, 3, 'JASSO BARRERA CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-08-24', 192560.00, 'A'), + (245, 1, 'LENCHIG KALEDA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-02', 165000.00, 'A'), + (2450, 3, 'GARRIDO PATRON VICTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-09-27', 814970.00, 'A'), + (2451, 3, 'VELASQUEZ GUERRERO RUBEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', 497150.00, 'A'), + (2452, 3, 'CHOI SUNGKYU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 209494, '2011-08-16', 40860.00, 'A'), + (2453, 3, 'CONTRERAS LOPEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-08-05', 712830.00, 'A'), + (2454, 3, 'CHAVEZ BATAA OSCAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 150699, '2011-06-14', 441590.00, 'A'), + (2455, 3, 'LEE JONG HYUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131272, '2011-10-10', 69460.00, 'A'), + (2456, 3, 'MEDINA PADILLA CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 146589, '2011-04-20', 22530.00, 'A'), + (2457, 3, 'FLORES CUEVAS DOTNARA LUZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-05-17', 904260.00, 'A'), + (2458, 3, 'LIU YONGCHAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-10-09', 453710.00, 'A'), + (2459, 3, 'CASTRO FERNANDES PORTOCARRERO JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 195892, '2011-06-14', 555790.00, 'A'), + (246, 1, 'YAMHURE FONSECAN ERNESTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-10-03', 143350.00, 'A'), + (2460, 3, 'DUAN WEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-06-22', 417820.00, 'A'), + (2461, 3, 'ZHU XUTAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-18', 421740.00, 'A'), + (2462, 3, 'MEI SHUANNIU', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-09', 855240.00, 'A'), + (2464, 3, 'VEGA VACA LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-06-08', 489110.00, 'A'), + (2465, 3, 'TANG YUMING', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 147578, '2011-03-26', 412660.00, 'A'), + (2466, 3, 'VILLEDA GARCIA DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 144939, '2011-06-07', 595990.00, 'A'), + (2467, 3, 'GARCIA GARZA BLANCA ARMIDA', 191821112, 'CRA 25 CALLE 100', '927@hotmail.com', '2011-02-03', 145135, '2011-05-20', 741940.00, 'A'), + (2468, 3, 'HERNANDEZ MARTINEZ EMILIO JOAQUIN', 191821112, 'CRA 25 CALLE 100', '356@facebook.com', '2011-02-03', 145135, '2011-06-16', 921740.00, 'A'), + (2469, 3, 'WANG FAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 185363, '2011-08-20', 382860.00, 'A'), + (247, 1, 'ROJAS RODRIGUEZ ALVARO HERNAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-09', 221760.00, 'A'), + (2470, 3, 'WANG FEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-10-09', 149100.00, 'A'), + (2471, 3, 'BERNAL MALDONADO GUILLERMO JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118777, '2011-07-26', 596900.00, 'A'), + (2472, 3, 'GUTIERREZ GOMEZ ARTURO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145184, '2011-07-24', 537210.00, 'A'), + (2474, 3, 'LAN TYANYE ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-23', 865050.00, 'A'), + (2475, 3, 'LAN SHUZHEN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-23', 639240.00, 'A'), + (2476, 3, 'RODRIGUEZ GONZALEZ CARLOS ARTURO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 144616, '2011-08-09', 601050.00, 'A'), + (2477, 3, 'HAIBO NI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-20', 87540.00, 'A'), + (2479, 3, 'RUIZ RODRIGUEZ GRACIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-05-20', 910130.00, 'A'), + (248, 1, 'GONZALEZ RODRIGUEZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-03', 678750.00, 'A'), + (2480, 3, 'OROZCO MACIAS NORMA LETICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-20', 647010.00, 'A'), + (2481, 3, 'MEZA ALVAREZ JOSE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 144939, '2011-06-07', 504670.00, 'A'), + (2482, 3, 'RODRIGUEZ FIGUEROA RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 146308, '2011-04-27', 582290.00, 'A'), + (2483, 3, 'CARREON GUERRA ANA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 110709, '2011-05-27', 397440.00, 'A'), + (2484, 3, 'BOTELHO BARRETO CARLOS JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 195892, '2011-08-02', 240350.00, 'A'), + (2485, 3, 'CORONADO CASTILLO HUGO', 191821112, 'CRA 25 CALLE 100', '209@yahoo.com.mx', '2011-02-03', 147529, '2011-06-07', 9420.00, 'A'), + (2486, 3, 'DE FUENTES GARZA MARCELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-18', 326030.00, 'A'), + (2487, 3, 'GONZALEZ DUHART GUTIERREZ HORACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-17', 601920.00, 'A'), + (2488, 3, 'LOPEZ LINALDI DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-06-07', 31500.00, 'A'), + (2489, 3, 'CASTRO MONCAYO JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-06-15', 351720.00, 'A'), + (249, 1, 'CASTRO RIBEROS JULIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-23', 728470.00, 'A'), + (2490, 3, 'SERRALDE LOPEZ MARIA GUADALUPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-25', 664120.00, 'A'), + (2491, 3, 'GARRIDO PATRON VICTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-09-29', 265450.00, 'A'), + (2492, 3, 'BRAUN JUAN NICOLAS ANTONIE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-28', 334880.00, 'A'), + (2493, 3, 'BANKA RAHUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 141138, '2011-05-02', 878070.00, 'A'), + (2494, 1, 'GARCIA MARTINEZ MARIA VIRGINIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-17', 385690.00, 'A'), + (2495, 1, 'MARIA VIRGINIA', 191821112, 'CRA 25 CALLE 100', '298@yahoo.com.mx', '2011-02-03', 127591, '2011-04-16', 294220.00, 'A'), + (2496, 3, 'GOMEZ ZENDEJAS MARIA ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145184, '2011-06-06', 314060.00, 'A'), + (2498, 3, 'MENDEZ MARTINEZ RAUL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-10', 496040.00, 'A'), + (2623, 3, 'ZAFIROPOULO ANA I', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 98170.00, 'A'), + (2499, 3, 'CARREON GUERRA ANA CECILIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-29', 417240.00, 'A'), + (2501, 3, 'OLIVAR ARIAS ISMAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-06-06', 738850.00, 'A'), + (2502, 3, 'ABOUMRAD NASTA EMILE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-07-26', 899890.00, 'A'), + (2503, 3, 'RODRIGUEZ JIMENEZ ROBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-05-03', 282900.00, 'A'), + (2504, 3, 'ESTADOS UNIDOS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-27', 714840.00, 'A'), + (2505, 3, 'SOTO MUNOZ MARCO GREGORIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-26', 725480.00, 'A'), + (2506, 3, 'GARCIA MONTER ANA OTILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-10-05', 482880.00, 'A'), + (2507, 3, 'THIRUKONDA VIGNESH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126180, '2011-05-02', 237950.00, 'A'), + (2508, 3, 'RAMIREZ REATIAGA LYDA YOANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 150699, '2011-06-26', 741120.00, 'A'), + (2509, 3, 'SEPULVEDA RODRIGUEZ JESUS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', 991730.00, 'A'), + (251, 1, 'MEJIA PIZANO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-10', 845000.00, 'A'), + (2510, 3, 'FRANCISCO MARIA DIAS COSTA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 179111, '2011-07-12', 735330.00, 'A'), + (2511, 3, 'TEIXEIRA REGO DE OLIVEIRA TIAGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 179111, '2011-06-14', 701430.00, 'A'), + (2512, 3, 'PHILLIP JAMES', 191821112, 'CRA 25 CALLE 100', '766@terra.com.co', '2011-02-03', 127591, '2011-09-28', 301150.00, 'A'), + (2513, 3, 'ERXLEBEN ROBERT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 216125, '2011-04-13', 401460.00, 'A'), + (2514, 3, 'HUGHES CONNORRICHARD', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-06-22', 103880.00, 'A'), + (2515, 3, 'LEBLANC MICHAEL PAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 216125, '2011-08-09', 314990.00, 'A'), + (2517, 3, 'DEVINE CHRISTOPHER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-06-22', 371560.00, 'A'), + (2518, 3, 'WONG BRIAN TEK FUNG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126885, '2011-09-22', 67910.00, 'A'), + (2519, 3, 'BIDWALA IRFAN A', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 154811, '2011-03-28', 224840.00, 'A'), + (252, 1, 'JIMENEZ LARRARTE JUAN GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-01', 406770.00, 'A'), + (2520, 3, 'LEE HO YIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 147578, '2011-08-29', 920470.00, 'A'), + (2521, 3, 'DE MOURA MARTINS NUNO ALEXANDRE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196094, '2011-10-09', 927850.00, 'A'), + (2522, 3, 'DA COSTA GOMES CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 179111, '2011-08-10', 877850.00, 'A'), + (2523, 3, 'HOOGWAERTS PAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-02-11', 605690.00, 'A'), + (2524, 3, 'LOPES MARQUES LUIS JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2011-09-20', 394910.00, 'A'), + (2525, 3, 'CORREIA CAVACO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 178728, '2011-10-09', 157470.00, 'A'), + (2526, 3, 'HALL JOHN WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-09', 602620.00, 'A'), + (2527, 3, 'KNIGHT MARTIN GYLES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 113550, '2011-08-29', 540670.00, 'A'), + (2528, 3, 'HINDS THMAS TRISTAN PELLEW', 191821112, 'CRA 25 CALLE 100', '337@yahoo.es', '2011-02-03', 116862, '2011-08-23', 895500.00, 'A'), + (2529, 3, 'CARTON ALAN JOHN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-07-31', 855510.00, 'A'), + (253, 1, 'AZCUENAGA RAMIREZ NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 298472, '2011-05-10', 498840.00, 'A'), + (2530, 3, 'GHIM CHEOLL HO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-27', 591060.00, 'A'), + (2531, 3, 'PHILLIPS NADIA SULLIVAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-28', 388750.00, 'A'), + (2532, 3, 'CHANG KUKHYUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-22', 170560.00, 'A'), + (2533, 3, 'KANG SEOUNGHYUN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 173192, '2011-08-24', 686540.00, 'A'), + (2534, 3, 'CHUNG BYANG HOON', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 125744, '2011-03-14', 921030.00, 'A'), + (2535, 3, 'SHIN MIN CHUL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 173192, '2011-08-24', 545510.00, 'A'), + (2536, 3, 'CHOI JIN SUNG', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-15', 964490.00, 'A'), + (2537, 3, 'CHOI SUNGMIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-27', 185910.00, 'A'), + (2538, 3, 'PARK JAESER ', 191821112, 'CRA 25 CALLE 100', '525@terra.com.co', '2011-02-03', 127591, '2011-09-03', 36090.00, 'A'), + (2539, 3, 'KIM DAE HOON ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 173192, '2011-08-24', 622700.00, 'A'), + (254, 1, 'AVENDANO PABON ROLANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-05-12', 273900.00, 'A'), + (2540, 3, 'LYNN MARIA CRISTINA NORMA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116862, '2011-09-21', 5220.00, 'A'), + (2541, 3, 'KIM CHINIL JULIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 147578, '2011-08-27', 158030.00, 'A'), + (2543, 3, 'HALL JOHN WILLIAM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 398290.00, 'A'), + (2544, 3, 'YOSUKE PERDOMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 165600, '2011-07-26', 668040.00, 'A'), + (2546, 3, 'AKAGI KAZAHIKO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-26', 722510.00, 'A'), + (2547, 3, 'NELSON JONATHAN GARY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-09', 176570.00, 'A'), + (2548, 3, 'DUONG HOP BA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 116862, '2011-09-14', 715310.00, 'A'), + (2549, 3, 'CHAO-VILLEGAS NIKOLE TUK HING', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 180063, '2011-04-05', 46830.00, 'A'), + (255, 1, 'CORREA ALVARO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-27', 872990.00, 'A'), + (2551, 3, 'APPELS LAURENT BERNHARD', 191821112, 'CRA 25 CALLE 100', '891@hotmail.es', '2011-02-03', 135190, '2011-08-16', 300620.00, 'A'), + (2552, 3, 'PLAISIER ERIK JAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289294, '2011-05-23', 238440.00, 'A'), + (2553, 3, 'BLOK HENDRIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 288552, '2011-03-27', 290350.00, 'A'), + (2554, 3, 'NETTE ANNA STERRE', 191821112, 'CRA 25 CALLE 100', '621@yahoo.com.mx', '2011-02-03', 185363, '2011-07-30', 736400.00, 'A'), + (2555, 3, 'FRIELING HANS ERIC', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 107469, '2011-07-31', 810990.00, 'A'), + (2556, 3, 'RUTTE CORNELIA JANTINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 143579, '2011-03-30', 845710.00, 'A'), + (2557, 3, 'WALRAVEN PIETER PAUL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 289294, '2011-07-29', 795620.00, 'A'), + (2558, 3, 'TREBES LAURENS JOHANNES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-11-22', 440940.00, 'A'), + (2559, 3, 'KROESE ROLANDWILLEBRORDUSMARIA', 191821112, 'CRA 25 CALLE 100', '188@facebook.com', '2011-02-03', 110643, '2011-06-09', 817860.00, 'A'), + (256, 1, 'FARIAS GARCIA REINI', 191821112, 'CRA 25 CALLE 100', '615@hotmail.com', '2011-02-03', 127591, '2011-03-05', 543220.00, 'A'), + (2560, 3, 'VAN DER HEIDE HENDRIK', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 291042, '2011-09-04', 766460.00, 'A'), + (2561, 3, 'VAN DEN BERG DONAR ALEXANDER GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 190393, '2011-07-13', 378720.00, 'A'), + (2562, 3, 'GODEFRIDUS JOHANNES ROPS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127622, '2011-10-02', 594240.00, 'A'), + (2564, 3, 'WAT YOK YIENG', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 287095, '2011-03-22', 392370.00, 'A'), + (2565, 3, 'BUIS JACOBUS NICOLAAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-20', 456810.00, 'A'), + (2567, 3, 'CHIPPER FRANCIUSCUS NICOLAAS ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 291599, '2011-07-28', 164300.00, 'A'), + (2568, 3, 'ONNO ROUKENS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-11-28', 500670.00, 'A'), + (2569, 3, 'PETRUS MARCELLINUS STEPHANUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-06-25', 10430.00, 'A'), + (2571, 3, 'VAN VOLLENHOVEN IVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-08', 719370.00, 'A'), + (2572, 3, 'LAMBOOIJ BART', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-09-20', 946480.00, 'A'), + (2573, 3, 'LANSER MARIANA PAULINE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 289294, '2011-04-09', 574270.00, 'A'), + (2575, 3, 'KLERKEN JOHANNES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 286101, '2011-05-24', 436840.00, 'A'), + (2576, 3, 'KRAS JACOBUS NICOLAAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289294, '2011-09-26', 88410.00, 'A'), + (2577, 3, 'FUCHS MICHAEL JOSEPH', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 185363, '2011-07-30', 131530.00, 'A'), + (2578, 3, 'BIJVANK ERIK JAN WILLEM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-11', 392410.00, 'A'), + (2579, 3, 'SCHMIDT FRANC ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 106742, '2011-09-11', 567470.00, 'A'), + (258, 1, 'SOTO GONZALEZ FRANCISCO LAZARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 116511, '2011-05-07', 856050.00, 'A'), + (2580, 3, 'VAN DER KOOIJ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 291277, '2011-07-10', 660130.00, 'A'), + (2581, 2, 'KRIS ANDRE GEORGES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-07-26', 598240.00, 'A'), + (2582, 3, 'HARDING LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 263813, '2011-05-08', 10820.00, 'A'), + (2583, 3, 'ROLLI GUY JEAN ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-05-31', 259370.00, 'A'), + (2584, 3, 'NIETO PARRA SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 263813, '2011-07-04', 264400.00, 'A'), + (2585, 3, 'LASTRA CHAVEZ PABLO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126674, '2011-05-25', 543890.00, 'A'), + (2586, 1, 'ZAIDA MAYERLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-05', 926250.00, 'A'), + (2587, 1, 'OSWALDO SOLORZANO CONTRERAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-28', 999590.00, 'A'), + (2588, 3, 'ZHOU XUAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-18', 219200.00, 'A'), + (2589, 3, 'HUANG ZHENGQUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-18', 97230.00, 'A'), + (259, 1, 'GALARZA NARANJO JAIME RENE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 988830.00, 'A'), + (2590, 3, 'HUANG ZHENQUIN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-18', 828560.00, 'A'), + (2591, 3, 'WEIDEN MULLER AMURER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-29', 851110.00, 'A'), + (2593, 3, 'OESTERHAUS CORNELIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 256231, '2011-03-29', 295960.00, 'A'), + (2594, 3, 'RINTALAHTI JUHA HENRIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 170220.00, 'A'), + (2597, 3, 'VERWIJNEN JONAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 289697, '2011-02-03', 638040.00, 'A'), + (2598, 3, 'SHAW ROBERT', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 157414, '2011-07-10', 273550.00, 'A'), + (2599, 3, 'MAKINEN TIMO JUHANI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-09-13', 453600.00, 'A'), + (260, 1, 'RIVERA CANON JOSE EDWARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127538, '2011-09-19', 375990.00, 'A'), + (2600, 3, 'HONKANIEMI ARTO OLAVI', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 301387, '2011-09-06', 447380.00, 'A'), + (2601, 3, 'DAGG JAMIE MICHAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 216125, '2011-08-09', 876080.00, 'A'), + (2602, 3, 'BOLAND PATRICK CHARLES ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 216125, '2011-09-14', 38260.00, 'A'), + (2603, 2, 'ZULEYKA JERRYS RIVERA MENDOZA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 150347, '2011-03-27', 563050.00, 'A'), + (2604, 3, 'DELGADO SEQUIRA FERRAO JOSE PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188228, '2011-08-16', 700460.00, 'A'), + (2605, 3, 'YORRO LORA EDGAR MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127689, '2011-06-17', 813180.00, 'A'), + (2606, 3, 'CARRASCO RODRIGUEZQCARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127689, '2011-06-17', 964520.00, 'A'), + (2607, 30, 'ORJUELA VELASQUEZ JULIANA MARIA', 191821112, 'CRA 25 CALLE 100', '372@terra.com.co', '2011-02-03', 132775, '2011-09-01', 383070.00, 'A'), + (2608, 3, 'DUQUE DUTRA LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-07-12', 21780.00, 'A'), + (261, 1, 'MURCIA MARQUEZ NESTOR JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-19', 913480.00, 'A'), + (2610, 3, 'NGUYEN HUU KHUONG', 191821112, 'CRA 25 CALLE 100', '457@facebook.com', '2011-02-03', 132958, '2011-05-07', 733120.00, 'A'), + (2611, 3, 'NGUYEN VAN LAP', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 786510.00, 'A'), + (2612, 3, 'PHAM HUU THU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 733200.00, 'A'), + (2613, 3, 'DANG MING CUONG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-05-07', 306460.00, 'A'), + (2614, 3, 'VU THI HONG HANH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-05-07', 332710.00, 'A'), + (2615, 3, 'CHAU TANG LANG', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-05-07', 744190.00, 'A'), + (2616, 3, 'CHU BAN THING', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-05-07', 722800.00, 'A'), + (2617, 3, 'NGUYEN QUANG THU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-05-07', 381420.00, 'A'), + (2618, 3, 'TRAN THI KIM OANH', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-05-07', 738690.00, 'A'), + (2619, 3, 'NGUYEN VAN VINH', 191821112, 'CRA 25 CALLE 100', '422@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 549210.00, 'A'), + (262, 1, 'ABDULAZIS ELNESER KHALED', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-27', 439430.00, 'A'), + (2620, 3, 'NGUYEN XUAN VY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132958, '2011-05-07', 529950.00, 'A'), + (2621, 3, 'HA MANH HOA', 191821112, 'CRA 25 CALLE 100', '439@gmail.com', '2011-02-03', 132958, '2011-05-07', 2160.00, 'A'), + (2622, 3, 'ZAFIROPOULO STEVEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 420930.00, 'A'), + (2624, 3, 'TEMIGTERRA MASSIMILIANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 210050, '2011-09-26', 228070.00, 'A'), + (2625, 3, 'CASSES TRINDADE HELGIO HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118402, '2011-09-13', 845850.00, 'A'), + (2626, 3, 'ASCOLI MASTROENI MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 120773, '2011-09-07', 545010.00, 'A'), + (2627, 3, 'MONTEIRO SOARES MARCOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 120773, '2011-07-18', 187530.00, 'A'), + (2629, 3, 'HALL ALVARO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 120773, '2011-08-02', 950450.00, 'A'), + (2631, 3, 'ANDRADE CATUNDA RAFAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 120773, '2011-08-23', 370860.00, 'A'), + (2632, 3, 'MAGALHAES MAYRA ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118767, '2011-08-23', 320960.00, 'A'), + (2633, 3, 'SPREAFICO MIRIAM ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118587, '2011-08-23', 492220.00, 'A'), + (2634, 3, 'GOMES FERREIRA HELIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 125812, '2011-08-23', 498220.00, 'A'), + (2635, 3, 'FERNANDES SENNA PIRES SERGIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-05', 14460.00, 'A'), + (2636, 3, 'BALESTRO FLORIANO FABIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 120773, '2011-08-24', 577630.00, 'A'), + (2637, 3, 'CABANA DE QUEIROZ ANDRADE ALAXANDRE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-23', 844780.00, 'A'), + (2638, 3, 'DALBOSCO CARLA', 191821112, 'CRA 25 CALLE 100', '380@yahoo.com.mx', '2011-02-03', 127591, '2011-06-30', 491010.00, 'A'), + (264, 1, 'ROMERO MONTOYA NICOLAY ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-13', 965220.00, 'A'), + (2640, 3, 'BILLINI CRUZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 144215, '2011-03-27', 130530.00, 'A'), + (2641, 3, 'VASQUES ARIAS DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 144509, '2011-08-19', 890500.00, 'A'), + (2642, 3, 'ROJAS VOLQUEZ GLADYS MICHELLE', 191821112, 'CRA 25 CALLE 100', '852@gmail.com', '2011-02-03', 144215, '2011-07-25', 60930.00, 'A'), + (2643, 3, 'LLANEZA GIL JUAN RAFAELMO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 144215, '2011-07-08', 633120.00, 'A'), + (2646, 3, 'AVILA PEROZO IANKEL JACOB', 191821112, 'CRA 25 CALLE 100', '318@hotmail.com', '2011-02-03', 144215, '2011-09-03', 125600.00, 'A'), + (2647, 3, 'REGULAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-19', 583540.00, 'A'), + (2648, 3, 'CORONADO BATISTA JOSE ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-19', 540910.00, 'A'), + (2649, 3, 'OLIVIER JOSE VICTOR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 144509, '2011-08-19', 953910.00, 'A'), + (2650, 3, 'YOO HOE TAEK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-08-25', 146820.00, 'A'), + (266, 1, 'CUECA RODRIGUEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-22', 384280.00, 'A'), + (267, 1, 'NIETO ALVARADO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2008-04-28', 553450.00, 'A'), + (269, 1, 'LEAL HOLGUIN FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-25', 411700.00, 'A'), + (27, 1, 'MORENO MORENO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2009-09-15', 995620.00, 'A'), + (270, 1, 'CANO IBANES JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-03', 215260.00, 'A'), + (271, 1, 'RESTREPO HERRAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2011-04-18', 841220.00, 'A'), + (272, 3, 'RIOS FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 199862, '2011-03-24', 560300.00, 'A'), + (273, 1, 'MADERO LORENZANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-03', 277850.00, 'A'), + (274, 1, 'GOMEZ GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-09-24', 708350.00, 'A'), + (275, 1, 'CONSUEGRA ARENAS ANDRES MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-09', 708210.00, 'A'), + (276, 1, 'HURTADO ROJAS NICOLAS', 191821112, 'CRA 25 CALLE 100', '463@yahoo.com.mx', '2011-02-03', 127591, '2011-09-07', 416000.00, 'A'), + (277, 1, 'MURCIA BAQUERO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-02', 955370.00, 'A'), + (2773, 3, 'TAKUBO KAORI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 165753, '2011-05-12', 872390.00, 'A'), + (2774, 3, 'OKADA MAKOTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 165753, '2011-06-19', 921480.00, 'A'), + (2775, 3, 'TAKEDA AKIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 21062, '2011-06-19', 990250.00, 'A'), + (2776, 3, 'KOIKE WATARU ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 165753, '2011-06-19', 186800.00, 'A'), + (2777, 3, 'KUBO SHINEI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 165753, '2011-02-13', 963230.00, 'A'), + (2778, 3, 'KANNO YONEZO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 165600, '2011-07-26', 255770.00, 'A'), + (278, 3, 'PARENT ELOIDE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 267980, '2011-05-01', 528840.00, 'A'), + (2781, 3, 'SUNADA MINORU ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 165753, '2011-06-19', 724450.00, 'A'), + (2782, 3, 'INOUE KASUYA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-22', 87150.00, 'A'), + (2783, 3, 'OTAKE NOBUTOSHI', 191821112, 'CRA 25 CALLE 100', '208@facebook.com', '2011-02-03', 127591, '2011-06-11', 262380.00, 'A'), + (2784, 3, 'MOTOI KEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 165753, '2011-06-19', 50470.00, 'A'), + (2785, 3, 'TANAKA KIYOTAKA ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 165753, '2011-06-19', 465210.00, 'A'), + (2787, 3, 'YUMIKOPERDOMO', 191821112, 'CRA 25 CALLE 100', '600@yahoo.es', '2011-02-03', 165600, '2011-07-26', 477550.00, 'A'), + (2788, 3, 'FUKUSHIMA KENZO', 191821112, 'CRA 25 CALLE 100', '599@gmail.com', '2011-02-03', 156960, '2011-05-30', 863860.00, 'A'), + (2789, 3, 'GELGIN LEVENT NURI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-26', 886630.00, 'A'), + (279, 1, 'AVIATUR S. A.', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-02', 778110.00, 'A'), + (2791, 3, 'GELGIN ENIS ENRE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-26', 547940.00, 'A'), + (2792, 3, 'PAZ SOTO LUBRASCA MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 143954, '2011-06-27', 215000.00, 'A'), + (2794, 3, 'MOURAD TAOUFIKI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-13', 511000.00, 'A'), + (2796, 3, 'DASTUS ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 218656, '2011-05-29', 774010.00, 'A'), + (2797, 3, 'MCDONALD MICHAEL LORNE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 269033, '2011-07-19', 85820.00, 'A'), + (2799, 3, 'KLESO MICHAEL QUENTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-07-26', 277950.00, 'A'), + (28, 1, 'GONZALEZ ACUNA EDGAR MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-19', 531710.00, 'A'), + (280, 3, 'NEME KARIM CHAIBAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 135967, '2010-05-02', 304040.00, 'A'), + (2800, 3, 'CLERK CHARLES ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 244158, '2011-07-26', 68490.00, 'A'), + ('CELL3673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (2801, 3, 'BURRIS MAURICE STEWARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-27', 508600.00, 'A'), + (2802, 1, 'PINCHEN CLAIRE ELAINE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 216125, '2011-04-13', 337530.00, 'A'), + (2803, 3, 'LETTNER EVA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 231224, '2011-09-20', 161860.00, 'A'), + (2804, 3, 'CANUEL LUCIE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 146258, '2011-09-20', 796710.00, 'A'), + (2805, 3, 'IGLESIAS CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 216125, '2011-08-02', 497980.00, 'A'), + (2806, 3, 'PAQUIN JEAN FRANCOIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-03-27', 99760.00, 'A'), + (2807, 3, 'FOURNIER DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 228688, '2011-05-19', 4860.00, 'A'), + (2808, 3, 'BILODEAU MARTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-13', 725030.00, 'A'), + (2809, 3, 'KELLNER PETER WILLIAM', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 130757, '2011-07-24', 610570.00, 'A'), + (2810, 3, 'ZAZULAK INGRID ROSEMARIE', 191821112, 'CRA 25 CALLE 100', '683@facebook.com', '2011-02-03', 240550, '2011-09-11', 877770.00, 'A'), + (2811, 3, 'RUCCI JHON MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 285188, '2011-05-10', 557130.00, 'A'), + (2813, 3, 'JONCAS MARC', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 33265, '2011-03-21', 90360.00, 'A'), + (2814, 3, 'DUCHARME ERICK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-03-29', 994750.00, 'A'), + (2816, 3, 'BAILLOD THOMAS DAVID ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 239124, '2010-10-20', 529130.00, 'A'), + (2817, 3, 'MARTINEZ SORIA JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 289697, '2011-09-06', 537630.00, 'A'), + (2818, 3, 'TAMARA RABER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-30', 100750.00, 'A'), + (2819, 3, 'BURGI VINCENT EMANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 245206, '2011-04-20', 890860.00, 'A'), + (282, 1, 'HUESPED ASISTENTE A LA CONVENCION DE LA DIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2009-06-24', 17160.00, 'A'), + (2820, 3, 'ROBLES TORRALBA IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 238949, '2011-05-16', 152030.00, 'A'), + (2821, 3, 'CONSUEGRA MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-06', 87600.00, 'A'), + (2822, 3, 'CELMA ADROVER LAIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 190393, '2011-03-23', 981880.00, 'A'), + (2823, 3, 'ALVAREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-06-20', 646610.00, 'A'), + (2824, 3, 'VARGAS WOODROFFE FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 157414, '2011-06-22', 287410.00, 'A'), + (2825, 3, 'GARCIA GUILLEN VICENTE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 144215, '2011-08-19', 497230.00, 'A'), + (2826, 3, 'GOMEZ GARCIA DIAMANTES PATRICIA MARIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2011-09-22', 623930.00, 'A'), + (2827, 3, 'PEREZ IGLESIAS BIBIANA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-09-30', 627940.00, 'A'), + (2830, 3, 'VILLALONGA MORENES MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 169679, '2011-05-29', 474910.00, 'A'), + (2831, 3, 'REY LOPEZ DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2011-08-03', 7380.00, 'A'), + (2832, 3, 'HOYO APARICIO JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116511, '2011-09-19', 612180.00, 'A'), + (2836, 3, 'GOMEZ GARCIA LOPEZ CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150699, '2011-09-21', 277540.00, 'A'), + (2839, 3, 'GALIMERTI MARCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 235197, '2011-08-28', 156870.00, 'A'), + (2840, 3, 'BAROZZI GIUSEPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 231989, '2011-05-25', 609500.00, 'A'), + (2841, 3, 'MARIAN RENATO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-12', 576900.00, 'A'), + (2842, 3, 'FAENZA CARLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126180, '2011-05-19', 55990.00, 'A'), + (2843, 3, 'PESOLILLO CARMINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 203162, '2011-06-26', 549230.00, 'A'), + (2844, 3, 'CHIODI FRANCESCO MARIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 199862, '2011-09-10', 578210.00, 'A'), + (2845, 3, 'RUTA MARIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-06-19', 243350.00, 'A'), + (2846, 3, 'BAZZONI MARINO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 101518, '2011-05-03', 482140.00, 'A'), + (2848, 3, 'LAGASIO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 231989, '2011-05-04', 956670.00, 'A'), + (2849, 3, 'VIERA DA CUNHA PAULO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 190393, '2011-04-05', 741520.00, 'A'), + (2850, 3, 'DAL BEN DENIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 116511, '2011-05-26', 837590.00, 'A'), + (2851, 3, 'GIANELLI HERIBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 233927, '2011-05-01', 963400.00, 'A'), + (2852, 3, 'JUSTINO DA SILVA DJAMIR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-08', 304200.00, 'A'), + (2853, 3, 'DIPASQUUALE GAETANO', 191821112, 'CRA 25 CALLE 100', '574@terra.com.co', '2011-02-03', 172888, '2011-07-11', 630830.00, 'A'), + (2855, 3, 'CURI MAURO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 199862, '2011-06-19', 315160.00, 'A'), + (2856, 3, 'DI DIO MARCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-20', 851210.00, 'A'), + (2857, 3, 'ROBERTI MENDONCA CAIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-11', 310580.00, 'A'), + (2859, 3, 'RAMOS MORENO DE SOUZA ANDRE ', 191821112, 'CRA 25 CALLE 100', '133@facebook.com', '2011-02-03', 118777, '2011-09-24', 64540.00, 'A'), + (286, 8, 'INEXMODA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-06-21', 50150.00, 'A'), + (2860, 3, 'JODJAHN DE CARVALHO FLAVIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-06-27', 324950.00, 'A'), + (2862, 3, 'LAGASIO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 231989, '2011-07-04', 180760.00, 'A'), + (2863, 3, 'MOON SUNG RIUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-08', 610440.00, 'A'), + (2865, 3, 'VAIDYANATHAN VIKRAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-11', 718220.00, 'A'), + (2866, 3, 'NARAYANASWAMY RAMSUNDAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 73079, '2011-10-02', 61390.00, 'A'), + (2867, 3, 'VADADA VENKATA RAMESH KUMAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-10', 152300.00, 'A'), + (2868, 3, 'RAMA KRISHNAN ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-10', 577300.00, 'A'), + (2869, 3, 'JALAN PRASHANT', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 122035, '2011-05-02', 429600.00, 'A'), + (2871, 3, 'CHANDRASEKAR VENKAT', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 112862, '2011-06-27', 791800.00, 'A'), + (2872, 3, 'CUMBAKONAM SWAMINATHAN SUBRAMANIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-11', 710650.00, 'A'), + (288, 8, 'BCD TRAVEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-23', 645390.00, 'A'), + (289, 3, 'EMBAJADA ARGENTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '1970-02-02', 749440.00, 'A'), + ('CELL3789', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (290, 3, 'EMBAJADA DE BRASIL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-11-16', 811030.00, 'A'), + (293, 8, 'ONU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-19', 584810.00, 'A'), + (299, 1, 'BLANDON GUZMAN JHON JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-01-13', 201740.00, 'A'), + (304, 3, 'COHEN DANIEL DYLAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 286785, '2010-11-17', 184850.00, 'A'), + (306, 1, 'CINDU ANDINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2009-06-11', 899230.00, 'A'), + (31, 1, 'GARRIDO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127662, '2010-09-12', 801450.00, 'A'), + (310, 3, 'CORPORACION CLUB EL NOGAL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2010-08-27', 918760.00, 'A'), + (314, 3, 'CHAWLA AARON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-08', 295840.00, 'A'), + (317, 3, 'BAKER HUGHES', 191821112, 'CRA 25 CALLE 100', '694@hotmail.com', '2011-02-03', 127591, '2011-04-03', 211990.00, 'A'), + (32, 1, 'PAEZ SEGURA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '675@gmail.com', '2011-02-03', 129447, '2011-08-22', 717340.00, 'A'), + (320, 1, 'MORENO PAEZ FREDDY ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-31', 971670.00, 'A'), + (322, 1, 'CALDERON CARDOZO GASTON EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-05', 990640.00, 'A'), + (324, 1, 'ARCHILA MERA ALFREDOMANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-22', 77200.00, 'A'), + (326, 1, 'MUNOZ AVILA HERNEY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-11-10', 550920.00, 'A'), + (327, 1, 'CHAPARRO CUBILLOS FABIAN ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-15', 685080.00, 'A'), + (329, 1, 'GOMEZ LOPEZ JUAN SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '970@yahoo.com', '2011-02-03', 127591, '2011-03-20', 808070.00, 'A'), + (33, 1, 'MARTINEZ MARINO HENRY HERNAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-04-20', 182370.00, 'A'), + (330, 3, 'MAPSTONE NAOMI LEA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 122035, '2010-02-21', 722380.00, 'A'), + (332, 3, 'ROSSI BURRI NELLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132165, '2010-05-10', 771210.00, 'A'), + (333, 1, 'AVELLANEDA OVIEDO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-25', 293060.00, 'A'), + (334, 1, 'SUZA FLOREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-13', 151650.00, 'A'), + (335, 1, 'ESGUERRA ALVARO ANDRES', 191821112, 'CRA 25 CALLE 100', '11@facebook.com', '2011-02-03', 127591, '2011-09-10', 879080.00, 'A'), + (337, 3, 'DE LA HARPE MARTIN CARAPET WALTER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-27', 64960.00, 'A'), + (339, 1, 'HERNANDEZ ACOSTA SERGIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 129499, '2011-06-22', 322570.00, 'A'), + (340, 3, 'ZARAMA DE LA ESPRIELLA MIGUEL PATRICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-27', 102360.00, 'A'), + (342, 1, 'CABRERA VASQUEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-01', 413440.00, 'A'), + (343, 3, 'RICHARDSON BEN MARRIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2010-05-18', 434890.00, 'A'), + (344, 1, 'OLARTE PINZON MIGUEL FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-30', 934140.00, 'A'), + (345, 1, 'SOLER SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-04-20', 366020.00, 'A'), + (346, 1, 'PRIETO JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-07-12', 27690.00, 'A'), + (349, 1, 'BARRERO VELASCO DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-01', 472850.00, 'A'), + (35, 1, 'VELASQUEZ RAMOS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-13', 251940.00, 'A'), + (350, 1, 'RANGEL GARCIA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-03-20', 7880.00, 'A'), + (353, 1, 'ALVAREZ ACEVEDO JOHN FREDDY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-16', 540070.00, 'A'), + (354, 1, 'VILLAMARIN HOME WILMAR ALFREDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-19', 458810.00, 'A'), + (355, 3, 'SLUCHIN NAAMAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 263813, '2010-12-01', 673830.00, 'A'), + (357, 1, 'BULLA BERNAL LUIS ERNESTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-14', 942160.00, 'A'), + (358, 1, 'BRACCIA AVILA GIANCARLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-01', 732620.00, 'A'), + (359, 1, 'RODRIGUEZ PINTO RAUL DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-24', 836600.00, 'A'), + (36, 1, 'MALDONADO ALVAREZ JAIRO ASDRUBAL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-06-19', 980270.00, 'A'), + (362, 1, 'POMBO POLANCO JUAN BERNARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-18', 124130.00, 'A'), + (363, 1, 'CARDENAS SUAREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-01', 372920.00, 'A'), + (364, 1, 'RIVERA MAZO JOSE DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-06-10', 492220.00, 'A'), + (365, 1, 'LEDERMAN CORDIKI JONATHAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-12-03', 342340.00, 'A'), + (367, 1, 'BARRERA MARTINEZ LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '35@yahoo.com.mx', '2011-02-03', 127591, '2011-05-24', 148130.00, 'A'), + (368, 1, 'SEPULVEDA RAMIREZ DANIEL MARCELO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-31', 35560.00, 'A'), + (369, 1, 'QUINTERO DIAZ WILSON ASDRUBAL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', 733430.00, 'A'), + (37, 1, 'RESTREPO SUAREZ HENRY BERNARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-07-25', 145540.00, 'A'), + (370, 1, 'ROJAS YARA WILLMAR ARLEY', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-12-03', 560450.00, 'A'), + (371, 3, 'CARVER LOUISE EMILY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 286785, '2010-10-07', 601980.00, 'A'), + (372, 3, 'VINCENT DAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2011-03-06', 328540.00, 'A'), + (374, 1, 'GONZALEZ DELGADO MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-18', 198260.00, 'A'), + (375, 1, 'PAEZ SIMON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-25', 480970.00, 'A'), + (376, 1, 'CADOSCH DELMAR ELIE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-07', 810080.00, 'A'), + (377, 1, 'HERRERA VASQUEZ DANIEL EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-06-30', 607460.00, 'A'), + (378, 1, 'CORREAL ROJAS RONALD', 191821112, 'CRA 25 CALLE 100', '269@facebook.com', '2011-02-03', 127591, '2011-07-16', 607080.00, 'A'), + (379, 1, 'VOIDONNIKOLAS MUNOS PANAGIOTIS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-27', 213010.00, 'A'), + (38, 1, 'CANAL ROJAS MAURICIO HERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-05-29', 786900.00, 'A'), + (380, 1, 'DIAZ ECHEVERRI JUAN DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-20', 243800.00, 'A'), + (381, 1, 'CIFUENTES MARIN HERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-26', 579960.00, 'A'), + (382, 3, 'PAXTON LUCINDA HARRIET', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 107159, '2011-05-23', 168420.00, 'A'), + (384, 3, 'POYNTON BRIAN GEORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 286785, '2011-03-20', 5790.00, 'A'), + (385, 3, 'TERMIGNONI ADRIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-01-14', 722320.00, 'A'), + (386, 3, 'CARDWELL PAULA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-02-17', 594230.00, 'A'), + (389, 1, 'FONCECA MARTINEZ MIGUEL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-25', 778680.00, 'A'), + (39, 1, 'GARCIA SUAREZ WILLIAM ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-25', 497880.00, 'A'), + (390, 1, 'GUERRERO NELSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-12-03', 178650.00, 'A'), + (391, 1, 'VICTORIA PENA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-22', 557200.00, 'A'), + (392, 1, 'VAN HISSENHOVEN FERRERO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-13', 250060.00, 'A'), + (393, 1, 'CACERES ORDUZ JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-28', 578690.00, 'A'), + (394, 1, 'QUINTERO ALVARO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-17', 143270.00, 'A'), + (395, 1, 'ANZOLA PEREZ CARLOSDAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-04', 980300.00, 'A'), + (397, 1, 'LLOREDA ORTIZ CARLOS JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-27', 417470.00, 'A'), + (398, 1, 'GONZALES LONDONO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-19', 672310.00, 'A'), + (4, 1, 'LONDONO DOMINGUEZ ERNESTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-05', 324610.00, 'A'), + (40, 1, 'MORENO ANGULO ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-01', 128690.00, 'A'), + (400, 8, 'TRANSELCA .A', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-04-14', 528930.00, 'A'), + (403, 1, 'VERGARA MURILLO JUAN FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-04', 42900.00, 'A'), + (405, 1, 'CAPERA CAPERA HARRINSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127799, '2011-06-12', 961000.00, 'A'), + (407, 1, 'MORENO MORA WILLIAM EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-22', 872780.00, 'A'), + (408, 1, 'HIGUERA ROA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-28', 910430.00, 'A'), + (409, 1, 'FORERO CASTILLO OSCAR ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '988@terra.com.co', '2011-02-03', 127591, '2011-07-23', 933810.00, 'A'), + (410, 1, 'LOPEZ MURCIA JULIAN DANIEL', 191821112, 'CRA 25 CALLE 100', '399@facebook.com', '2011-02-03', 127591, '2011-08-08', 937790.00, 'A'), + (411, 1, 'ALZATE JOHN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-09-09', 887490.00, 'A'), + (412, 1, 'GONZALES GONZALES ORLANDO ANDREY', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-30', 624080.00, 'A'), + (413, 1, 'ESCOLANO VALENTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-05', 457930.00, 'A'), + (414, 1, 'JARAMILLO RODRIGUEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-12', 417420.00, 'A'), + (415, 1, 'GARCIA MUNOZ DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-02', 713300.00, 'A'), + (416, 1, 'PINEROS ARENAS JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-10-17', 314260.00, 'A'), + (417, 1, 'ORTIZ ARROYAVE ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-05-21', 431370.00, 'A'), + (418, 1, 'BAYONA BARRIENTOS JEAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-12', 214090.00, 'A'), + (419, 1, 'AGUDELO VASQUEZ JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-30', 776360.00, 'A'), + (420, 1, 'CALLE DANIEL CJ PRODUCCIONES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-04', 239500.00, 'A'), + (422, 1, 'CANO BETANCUR ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-08-20', 623620.00, 'A'), + (423, 1, 'CALDAS BARRETO LUZ MIREYA', 191821112, 'CRA 25 CALLE 100', '991@facebook.com', '2011-02-03', 127591, '2011-05-22', 512840.00, 'A'), + (424, 1, 'SIMBAQUEBA JOSE ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 693320.00, 'A'), + (425, 1, 'DE SILVESTRE CALERO LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-18', 928110.00, 'A'), + (426, 1, 'ZORRO PERALTA YEZID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-25', 560560.00, 'A'), + (428, 1, 'SUAREZ OIDOR DARWIN LEONARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131272, '2011-09-05', 410650.00, 'A'), + (429, 1, 'GIRAL CARRILLO LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-13', 997850.00, 'A'), + (43, 1, 'MARULANDA VALENCIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-17', 365550.00, 'A'), + (430, 1, 'CORDOBA GARCES JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-18', 757320.00, 'A'), + (431, 1, 'ARIAS TAMAYO DIEGO MAURICIO', 191821112, 'CRA 25 CALLE 100', '36@yahoo.com', '2011-02-03', 127591, '2011-09-05', 793050.00, 'A'), + (432, 1, 'EICHMANN PERRET MARC WILLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-22', 693270.00, 'A'), + (433, 1, 'DIAZ DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2008-09-18', 87200.00, 'A'), + (435, 1, 'FACCINI GONZALEZ HERMANN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2009-01-08', 519420.00, 'A'), + (436, 1, 'URIBE DUQUE FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-28', 528470.00, 'A'), + (437, 1, 'TAVERA GAONA GABREL LEAL', 191821112, 'CRA 25 CALLE 100', '280@terra.com.co', '2011-02-03', 127591, '2011-04-28', 84120.00, 'A'), + (438, 1, 'ORDONEZ PARIS FERNANDO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-09-26', 835170.00, 'A'), + (439, 1, 'VILLEGAS ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 923520.00, 'A'), + (44, 1, 'MARTINEZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-08-13', 738750.00, 'A'), + (440, 1, 'MARTINEZ RUEDA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '805@hotmail.es', '2011-02-03', 127591, '2011-04-07', 112050.00, 'A'), + (441, 1, 'ROLDAN JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-05-25', 789720.00, 'A'), + (442, 1, 'PEREZ BRANDWAYN ELIYAU MOISES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-10-20', 612450.00, 'A'), + (443, 1, 'VALLEJO TORO JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128579, '2011-08-16', 693080.00, 'A'), + (444, 1, 'TORRES CABRERA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-19', 628070.00, 'A'), + (445, 1, 'MERINO MEJIA GERMAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-28', 61100.00, 'A'), + (447, 1, 'GOMEZ GOMEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-08', 923070.00, 'A'), + (448, 1, 'RAUSCH CHEHEBAR STEVEN JOSEPH', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-09-27', 351540.00, 'A'), + (449, 1, 'RESTREPO TRUCCO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-28', 988500.00, 'A'), + (45, 1, 'GUTIERREZ JARAMILLO CARLOS MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-22', 597090.00, 'A'), + (450, 1, 'GOLDSTEIN VAIDA ELI JACK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-11', 887860.00, 'A'), + (451, 1, 'OLEA PINEDA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-10', 473800.00, 'A'), + (452, 1, 'JORGE OROZCO', 191821112, 'CRA 25 CALLE 100', '503@hotmail.es', '2011-02-03', 127591, '2011-06-02', 705410.00, 'A'), + (454, 1, 'DE LA TORRE GOMEZ GERMAN ERNESTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-03', 411990.00, 'A'), + (456, 1, 'MADERO ARIAS JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '452@hotmail.es', '2011-02-03', 127591, '2011-08-22', 479090.00, 'A'), + (457, 1, 'GOMEZ MACHUCA ALVARO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-12', 166430.00, 'A'), + (458, 1, 'MENDIETA TOBON DANIEL RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-08', 394880.00, 'A'), + (459, 1, 'VILLADIEGO CORTINA JAVIER TOMAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-26', 475110.00, 'A'), + (46, 1, 'FERRUCHO ARCINIEGAS JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', 769220.00, 'A'), + (460, 1, 'DERESER HARTUNG ERNESTO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-12-25', 190900.00, 'A'), + (461, 1, 'RAMIREZ PENA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-06-25', 529190.00, 'A'), + (463, 1, 'IREGUI REYES LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 778590.00, 'A'), + (464, 1, 'PINTO GOMEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2010-06-24', 673270.00, 'A'), + (465, 1, 'RAMIREZ RAMIREZ FERNANDO ALONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127799, '2011-10-01', 30570.00, 'A'), + (466, 1, 'BERRIDO TRUJILLO JORGE HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2011-10-06', 133040.00, 'A'), + (467, 1, 'RIVERA CARVAJAL RAFAEL HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-20', 573500.00, 'A'), + (468, 3, 'FLOREZ PUENTES IVAN ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-08', 468380.00, 'A'), + (469, 1, 'BALLESTEROS FLOREZ IVAN DARIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-02', 621410.00, 'A'), + (47, 1, 'MARIN FLOREZ OMAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-30', 54840.00, 'A'), + (470, 1, 'RODRIGO PENA HERRERA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 237734, '2011-10-04', 701890.00, 'A'), + (471, 1, 'RODRIGUEZ SILVA ROGELIO', 191821112, 'CRA 25 CALLE 100', '163@gmail.com', '2011-02-03', 127591, '2011-05-26', 645210.00, 'A'), + (473, 1, 'VASQUEZ VELANDIA JUAN GABRIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-05-04', 666330.00, 'A'), + (474, 1, 'ROBLEDO JAIME', 191821112, 'CRA 25 CALLE 100', '409@yahoo.com', '2011-02-03', 127591, '2011-05-31', 970480.00, 'A'), + (475, 1, 'GRIMBERG DIAZ PHILIP', 191821112, 'CRA 25 CALLE 100', '723@yahoo.com', '2011-02-03', 127591, '2011-03-30', 853430.00, 'A'), + (476, 1, 'CHAUSTRE GARCIA JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-26', 355670.00, 'A'), + (477, 1, 'GOMEZ FLOREZ IGNASIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-14', 218090.00, 'A'), + (478, 1, 'LUIS ALBERTO CABRERA PUENTES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-05-26', 23420.00, 'A'), + (479, 1, 'MARTINEZ ZAPATA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '234@gmail.com', '2011-02-03', 127122, '2011-07-01', 462840.00, 'A'), + (48, 1, 'PARRA IBANEZ FABIAN ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-02-01', 966520.00, 'A'), + (480, 3, 'WESTERBERG JAN RICKARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 300701, '2011-02-01', 243940.00, 'A'), + (484, 1, 'RODRIGUEZ VILLALOBOS EDGAR FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-19', 860320.00, 'A'), + (486, 1, 'NAVARRO REYES DIEGO FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-01', 530150.00, 'A'), + (487, 1, 'NOGUERA RICAURTE ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-01-21', 384100.00, 'A'), + (488, 1, 'RUIZ VEJARANO CARLOS DANIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-27', 330030.00, 'A'), + (489, 1, 'CORREA PEREZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-12-14', 497860.00, 'A'), + (49, 1, 'FLOREZ PEREZ RUBIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-23', 668090.00, 'A'), + (490, 1, 'REYES GOMEZ LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-26', 499210.00, 'A'), + (491, 3, 'BERNAL LEON ALBERTO JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2011-03-29', 2470.00, 'A'), + (492, 1, 'FELIPE JARAMILLO CARO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2009-10-31', 514700.00, 'A'), + (493, 1, 'GOMEZ PARRA GERMAN DARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-01-29', 566100.00, 'A'), + (494, 1, 'VALLEJO RAMIREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-13', 286390.00, 'A'), + (495, 1, 'DIAZ LONDONO HUGO MARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 733670.00, 'A'), + (496, 3, 'VAN BAKERGEM RONALD JAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2008-11-05', 809190.00, 'A'), + (497, 1, 'MENDEZ RAMIREZ JOSE LEONARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-10', 844920.00, 'A'), + (498, 3, 'QUI TANILLA HENRIQUEZ PAUL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-10', 797030.00, 'A'), + (499, 3, 'PELEATO FLOREAL', 191821112, 'CRA 25 CALLE 100', '531@hotmail.com', '2011-02-03', 188640, '2011-04-23', 450370.00, 'A'), + (50, 1, 'SILVA GUZMAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-24', 440890.00, 'A'), + (502, 3, 'LEO ULF GORAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 300701, '2010-07-26', 181840.00, 'A'), + (503, 3, 'KARLSSON DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 300701, '2011-07-22', 50680.00, 'A'), + (504, 1, 'JIMENEZ JANER ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '889@hotmail.es', '2011-02-03', 203272, '2011-08-29', 707880.00, 'A'), + (506, 1, 'PABON OCHOA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-14', 813050.00, 'A'), + (507, 1, 'ACHURY CADENA CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-26', 903240.00, 'A'), + (508, 1, 'ECHEVERRY GARZON SEBASTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-23', 77050.00, 'A'), + (509, 1, 'PINEROS PENA LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-29', 675550.00, 'A'), + (51, 1, 'CAICEDO URREA JAIME ORLANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-08-17', 200160.00, 'A'), + ('CELL3795', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (510, 1, 'MARTINEZ MARTINEZ LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', '586@facebook.com', '2011-02-03', 127591, '2010-08-28', 146600.00, 'A'), + (511, 1, 'MOLANO PENA JESUS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-02-05', 706320.00, 'A'), + (512, 3, 'RUDOLPHY FONTAINE ANDRES', 191821112, 'CRA 25 CALLE 100', '492@yahoo.com', '2011-02-03', 117002, '2011-04-12', 91820.00, 'A'), + (513, 1, 'NEIRA CHAVARRO JOHN JAIRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-12', 340120.00, 'A'), + (514, 3, 'MENDEZ VILLALOBOS ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-03-25', 425160.00, 'A'), + (515, 3, 'HERNANDEZ OLIVA JOSE DE LA CRUZ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-03-25', 105440.00, 'A'), + (518, 3, 'JANCO NICOLAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-15', 955830.00, 'A'), + (52, 1, 'TAPIA MUNOZ JAIRO RICARDO', 191821112, 'CRA 25 CALLE 100', '920@hotmail.es', '2011-02-03', 127591, '2011-10-05', 678130.00, 'A'), + (520, 1, 'ALVARADO JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-26', 895550.00, 'A'), + (521, 1, 'HUERFANO SOTO JONATHAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-30', 619910.00, 'A'), + (522, 1, 'HUERFANO SOTO JONATHAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-04', 412900.00, 'A'), + (523, 1, 'RODRIGEZ GOMEZ WILMAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-14', 204790.00, 'A'), + (525, 1, 'ARROYO BAPTISTE DIEGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-09', 311810.00, 'A'), + (526, 1, 'PULECIO BOEK DANIEL', 191821112, 'CRA 25 CALLE 100', '718@gmail.com', '2011-02-03', 127591, '2011-08-12', 203350.00, 'A'), + (527, 1, 'ESLAVA VELEZ SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-10-08', 81300.00, 'A'), + (528, 1, 'CASTRO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-05-06', 796470.00, 'A'), + (53, 1, 'HINCAPIE MARTINEZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127573, '2011-09-26', 790180.00, 'A'), + (530, 1, 'ZORRILLA PUJANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '312@yahoo.es', '2011-02-03', 127591, '2011-06-06', 302750.00, 'A'), + (531, 1, 'ZORRILLA PUJANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-06', 298440.00, 'A'), + (532, 1, 'PRETEL ARTEAGA MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-09', 583980.00, 'A'), + (533, 1, 'RAMOS VERGARA HUMBERTO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 131105, '2010-05-13', 24560.00, 'A'), + (534, 1, 'BONILLA PINEROS DIEGO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', 370880.00, 'A'), + (535, 1, 'BELTRAN TRIVINO JULIAN DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-11-06', 780710.00, 'A'), + (536, 3, 'BLOD ULF FREDERICK EDWARD', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-06', 790900.00, 'A'), + (537, 1, 'VANEGAS OROZCO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-10', 612400.00, 'A'), + (538, 3, 'ORUE VALLE MONICA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 97885, '2011-09-15', 689270.00, 'A'), + (539, 1, 'AGUDELO BEDOYA ANDRES JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-05-24', 609160.00, 'A'), + (54, 1, 'DE HOYOS TRESPALACIOS MAURICIO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-21', 916500.00, 'A'), + (540, 3, 'HEIJKENSKJOLD PER JESPER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-06', 977980.00, 'A'), + (541, 3, 'GONZALEZ ALVARADO LUIS RAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-08-27', 62430.00, 'A'), + (543, 1, 'GRUPO SURAMERICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-08-24', 703760.00, 'A'), + (545, 1, 'CORPORACION CONTEXTO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-08', 809570.00, 'A'), + (546, 3, 'LUNDIN JOHAN ERIK ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-29', 895330.00, 'A'), + (548, 3, 'VEGERANO JOSE ', 191821112, 'CRA 25 CALLE 100', '221@facebook.com', '2011-02-03', 190393, '2011-06-05', 553780.00, 'A'), + (549, 3, 'SERRANO MADRID CLAUDIA INES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-27', 625060.00, 'A'), + (55, 1, 'TAFUR GOMEZ ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2010-09-12', 211980.00, 'A'), + (550, 1, 'MARTINEZ ACEVEDO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-10-06', 463920.00, 'A'), + (551, 1, 'GONZALEZ MORENO PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-07-21', 444450.00, 'A'), + (552, 1, 'MEJIA ROJAS ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-08-02', 830470.00, 'A'), + (553, 3, 'RODRIGUEZ ANTHONY HANSEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-16', 819000.00, 'A'), + (554, 1, 'ABUCHAIBE ANNICCHRICO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-31', 603610.00, 'A'), + (555, 3, 'MOYES KIMBERLY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-08', 561020.00, 'A'), + (556, 3, 'MONTINI MARIO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118942, '2010-03-16', 994280.00, 'A'), + (557, 3, 'HOGBERG DANIEL TOBIAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-15', 288350.00, 'A'), + (559, 1, 'OROZCO PFEIZER MARTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-10-07', 429520.00, 'A'), + (56, 1, 'NARINO ROJAS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-27', 310390.00, 'A'), + (560, 1, 'GARCIA MONTOYA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-06-02', 770840.00, 'A'), + (562, 1, 'VELASQUEZ PALACIO MANUEL ORLANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-06-23', 515670.00, 'A'), + (563, 1, 'GALLEGO PEREZ DIEGO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-14', 881460.00, 'A'), + (564, 1, 'RUEDA URREGO JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-04', 860270.00, 'A'), + (565, 1, 'RESTREPO DEL TORO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-10', 656960.00, 'A'), + (567, 1, 'TORO VALENCIA FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-08-04', 549090.00, 'A'), + (568, 1, 'VILLEGAS LUIS ALFONSO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-02', 633490.00, 'A'), + (569, 3, 'RIDSTROM CHRISTER ANDERS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 300701, '2011-09-06', 520150.00, 'A'), + (57, 1, 'TOVAR ARANGO JOHN JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127662, '2010-07-03', 916010.00, 'A'), + (570, 3, 'SHEPHERD DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2008-05-11', 700280.00, 'A'), + (573, 3, 'BENGTSSON JOHAN ANDREAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 196830.00, 'A'), + (574, 3, 'PERSSON HANS JONAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-09', 172340.00, 'A'), + (575, 3, 'SYNNEBY BJORN ERIK', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-15', 271210.00, 'A'), + ('CELL381', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (577, 3, 'COHEN PAUL KIRTAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 381490.00, 'A'), + (578, 3, 'ROMERO BRAVO FERNANDO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', 390360.00, 'A'), + (579, 3, 'GUTHRIE ROBERT DEAN', 191821112, 'CRA 25 CALLE 100', '794@gmail.com', '2011-02-03', 161705, '2010-07-20', 807350.00, 'A'), + (58, 1, 'TORRES ESCOBAR JAIRO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-06-17', 648860.00, 'A'), + (580, 3, 'ROCASERMENO MONTENEGRO MARIO JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 139844, '2010-12-01', 865650.00, 'A'), + (581, 1, 'COCK JORGE EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-19', 906210.00, 'A'), + (582, 3, 'REISS ANDREAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-01-31', 934120.00, 'A'), + (584, 3, 'ECHEVERRIA CASTILLO GERMAN FRANCISCO', 191821112, 'CRA 25 CALLE 100', '982@yahoo.com', '2011-02-03', 139844, '2011-07-20', 957370.00, 'A'), + (585, 3, 'BRANDT CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-10', 931030.00, 'A'), + (586, 3, 'VEGA NUNEZ GILBERTO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-14', 783010.00, 'A'), + (587, 1, 'BEJAR MUNOZ JORDI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 196234, '2010-10-08', 121990.00, 'A'), + (588, 3, 'WADSO KERSTIN ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-17', 260890.00, 'A'), + (59, 1, 'RAMOS FORERO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-20', 496300.00, 'A'), + (590, 1, 'RODRIGUEZ BETANCOURT JAVIER AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2011-05-23', 909850.00, 'A'), + (592, 1, 'ARBOLEDA HALABY RODRIGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 150699, '2009-02-03', 939170.00, 'A'), + (593, 1, 'CURE CURE CARLOS ALFREDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-07-11', 494600.00, 'A'), + (594, 3, 'VIDELA PEREZ OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-07-13', 655510.00, 'A'), + (595, 1, 'GONZALEZ GAVIRIA NESTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2009-09-28', 793760.00, 'A'), + (596, 3, 'IZQUIERDO DELGADO DIONISIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2009-09-24', 2250.00, 'A'), + (597, 1, 'MORENO DAIRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-06-14', 629990.00, 'A'), + (598, 1, 'RESTREPO FERNNDEZ SOTO JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-08-31', 143210.00, 'A'), + (599, 3, 'YERYES VERGARA MARIA SOLEDAD', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-10-11', 826060.00, 'A'), + (6, 1, 'GUZMAN ESCOBAR JOSE VICENTE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-10', 26390.00, 'A'), + (60, 1, 'ELEJALDE ESCOBAR TOMAS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-11-09', 534910.00, 'A'), + (601, 1, 'ESCAF ESCAF WILLIAM MIGUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 150699, '2011-07-26', 25190.00, 'A'), + (602, 1, 'CEBALLOS ZULUAGA JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-03', 23920.00, 'A'), + (603, 1, 'OLIVELLA GUERRERO RAFAEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2010-06-23', 44040.00, 'A'), + (604, 1, 'ESCOBAR GALLO CARLOS HUGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-09', 148420.00, 'A'), + (605, 1, 'ESCORCIA RAMIREZ EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128569, '2011-04-01', 609990.00, 'A'), + (606, 1, 'MELGAREJO MORENO PAULA ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-05', 604700.00, 'A'), + (607, 1, 'TOBON CALLE CARLOS GUILLERMO', 191821112, 'CRA 25 CALLE 100', '689@hotmail.es', '2011-02-03', 128662, '2011-03-16', 193510.00, 'A'), + (608, 3, 'TREVINO NOPHAL SILVANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 110709, '2011-05-27', 153470.00, 'A'), + (609, 1, 'CARDER VELEZ EDWIN JOHN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-04', 186830.00, 'A'), + (61, 1, 'GASCA DAZA VICTOR HERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-09', 185660.00, 'A'), + (610, 3, 'DAVIS JOHN BRADLEY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-04-06', 473740.00, 'A'), + (611, 1, 'BAQUERO SLDARRIAGA ALVARO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-09-15', 808210.00, 'A'), + (612, 3, 'SERRACIN ARAUZ YANIRA YAMILET', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 131272, '2011-06-09', 619820.00, 'A'), + (613, 1, 'MORA SOTO ALVARO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-09-20', 674450.00, 'A'), + (614, 1, 'SUAREZ RODRIGUEZ HERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-03-29', 512820.00, 'A'), + (616, 1, 'BAQUERO GARCIA JORGE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-07-14', 165160.00, 'A'), + (617, 3, 'ABADI MADURO MOISES SIMON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 131272, '2009-03-31', 203640.00, 'A'), + (62, 3, 'FLOWER LYNDON BRUCE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 231373, '2011-05-16', 323560.00, 'A'), + (624, 8, 'OLARTE LEONARDO', 191821112, 'CRA 25 CALLE 100', '6@hotmail.com', '2011-02-03', 127591, '2011-06-03', 219790.00, 'A'), + (63, 1, 'RUBIO CORTES OSCAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-04-28', 60830.00, 'A'), + (630, 5, 'PROEXPORT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2010-08-12', 708320.00, 'A'), + (632, 8, 'SUPER COFFEE ', 191821112, 'CRA 25 CALLE 100', '792@hotmail.es', '2011-02-03', 127591, '2011-08-30', 306460.00, 'A'), + (636, 8, 'NOGAL ASESORIAS FINANCIERAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-04-07', 752150.00, 'A'), + (64, 1, 'GUERRA MARTINEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-24', 333480.00, 'A'), + (645, 8, 'GIZ - PROFIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-31', 566330.00, 'A'), + (652, 3, 'QBE DEL ISTMO COMPANIA DE REASEGUROS ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-14', 932190.00, 'A'), + (655, 3, 'CORP. CENTRO DE ESTUDIOS DE DERECHO JUSTICIA Y SOCIEDAD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-05-04', 440370.00, 'A'), + (659, 3, 'GOOD YEAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2010-09-24', 993830.00, 'A'), + (660, 3, 'ARCINIEGAS Y VILLAMIZAR', 191821112, 'CRA 25 CALLE 100', '258@yahoo.com', '2011-02-03', 127591, '2010-12-02', 787450.00, 'A'), + (67, 1, 'LOPEZ HOYOS JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127662, '2010-04-13', 665230.00, 'A'), + (670, 8, 'APPLUS NORCONTROL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-09-06', 83210.00, 'A'), + (672, 3, 'KERLL SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 287273, '2010-12-19', 501610.00, 'A'), + (673, 1, 'RESTREPO MOLINA RAMIRO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 144215, '2010-12-18', 457290.00, 'A'), + (674, 1, 'PEREZ GIL JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-08-18', 781610.00, 'A'), + ('CELL3840', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (676, 1, 'GARCIA LONDONO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-23', 336160.00, 'A'), + (677, 3, 'RIJLAARSDAM KARIN AN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-07-03', 72210.00, 'A'), + (679, 1, 'LIZCANO MONTEALEGRE ARNULFO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127203, '2011-02-01', 546170.00, 'A'), + (68, 1, 'MARTINEZ SILVA EDGAR', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-29', 54250.00, 'A'), + (680, 3, 'OLIVARI MAYER PATRICIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 122642, '2011-08-01', 673170.00, 'A'), + (682, 3, 'CHEVALIER FRANCK PIERRE CHARLES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 263813, '2010-12-01', 617280.00, 'A'), + (683, 3, 'NG WAI WING ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126909, '2011-06-14', 904310.00, 'A'), + (684, 3, 'MULLER DOMINGUEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-22', 669700.00, 'A'), + (685, 3, 'MOSQUEDA DOMNGUEZ ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-04-08', 635580.00, 'A'), + (686, 3, 'LARREGUI MARIN LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-08', 168800.00, 'A'), + (687, 3, 'VARGAS VERGARA ALEJANDRO BRAULIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 159245, '2011-09-14', 937260.00, 'A'), + (688, 3, 'SKINNER LYNN CHERYL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-12', 179890.00, 'A'), + (689, 1, 'URIBE CORREA LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2010-07-29', 87680.00, 'A'), + (690, 1, 'TAMAYO JARAMILLO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-11-10', 898730.00, 'A'), + (691, 3, 'MOTABAN DE BORGES PAULA ELENA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2010-09-24', 230610.00, 'A'), + (692, 5, 'FERNANDEZ NALDA JOSE MANUEL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-06-28', 456850.00, 'A'), + (693, 1, 'GOMEZ RESTREPO JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-06-28', 592420.00, 'A'), + (694, 1, 'CARDENAS TAMAYO JOSE JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-08-08', 591550.00, 'A'), + (696, 1, 'RESTREPO ARANGO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-03-31', 127820.00, 'A'), + (697, 1, 'ROCABADO PASTRANA ROBERT JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127443, '2011-08-13', 97600.00, 'A'), + (698, 3, 'JARVINEN JOONAS JORI KRISTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196234, '2011-05-29', 104560.00, 'A'), + (699, 1, 'MORENO PEREZ HERNAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-30', 230000.00, 'A'), + (7, 1, 'PUYANA RAMOS GUILLERMO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-27', 331830.00, 'A'), + (70, 1, 'GALINDO MANZANO JAVIER FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-31', 214890.00, 'A'), + (701, 1, 'ROMERO PEREZ ARCESIO JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132775, '2011-07-13', 491650.00, 'A'), + (703, 1, 'CHAPARRO AGUDELO LEONARDO VIRGILIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-05-04', 271320.00, 'A'), + (704, 5, 'VASQUEZ YANIS MARIA DEL PILAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-10-13', 508820.00, 'A'), + (705, 3, 'BARBERO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 116511, '2010-09-13', 730170.00, 'A'), + (706, 1, 'CARMONA HERNANDEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-11-08', 124380.00, 'A'), + (707, 1, 'PEREZ SUAREZ JORGE ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2011-09-14', 431370.00, 'A'), + (708, 1, 'ROJAS JORGE MARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 130135, '2011-04-01', 783740.00, 'A'), + (71, 1, 'DIAZ JUAN PABLO/JULES JAVIER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-10-01', 247860.00, 'A'), + (711, 3, 'CATALDO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116773, '2011-06-06', 984810.00, 'A'), + (716, 5, 'MACIAS PIZARRO PATRICIO ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-06-07', 376260.00, 'A'), + (717, 1, 'RENDON MAYA DAVID ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 130273, '2010-07-25', 332310.00, 'A'), + (718, 3, 'DE HILDEBRAND E GRISI FILHO CELSO CLAUDIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-11', 532740.00, 'A'), + (719, 3, 'ALLIEL FACUSSE JULIO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-20', 666800.00, 'A'), + (72, 1, 'LOPEZ ROJAS VICTOR DANIEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-11', 594640.00, 'A'), + (720, 3, 'CHEMELLO JIMENEZ GAETANO ALBERTO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2010-06-23', 735760.00, 'A'), + (721, 3, 'GARCIA BEZANILLA RODOLFO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-04-12', 678420.00, 'A'), + (722, 1, 'ARIAS EDWIN', 191821112, 'CRA 25 CALLE 100', '13@terra.com.co', '2011-02-03', 127492, '2008-04-24', 184800.00, 'A'), + (723, 3, 'SOHN JANG WON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-07', 888750.00, 'A'), + (724, 3, 'WILHELM GIOVINE JAIME ROBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 115263, '2011-09-20', 889340.00, 'A'), + (726, 3, 'CASTILLERO DANIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 131272, '2011-05-13', 234270.00, 'A'), + (727, 3, 'PORTUGAL LANGHORST MAX GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-13', 829960.00, 'A'), + (729, 3, 'ALFONSO HERRANZ AGUSTIN ALFONSO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-21', 745060.00, 'A'), + (73, 1, 'DAVILA MENDEZ OSCAR DIEGO', 191821112, 'CRA 25 CALLE 100', '991@yahoo.com.mx', '2011-02-03', 128569, '2011-08-31', 229630.00, 'A'), + (730, 3, 'ALFONSO HERRANZ AGUSTIN CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-03-31', 384360.00, 'A'), + (731, 1, 'NOGUERA RAMIREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-14', 686610.00, 'A'), + (732, 1, 'ACOSTA PERALTA FABIAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 134030, '2011-06-21', 279960.00, 'A'), + (733, 3, 'MAC LEAN PINA PEDRO SEGUNDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-05-23', 339980.00, 'A'), + (734, 1, 'LEON ARCOS ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-05-04', 860020.00, 'A'), + (736, 3, 'LAMARCA GARCIA GERMAN JULIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-04-29', 820700.00, 'A'), + (737, 1, 'PORTO VELASQUEZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '321@hotmail.es', '2011-02-03', 133535, '2011-08-17', 263060.00, 'A'), + (738, 1, 'BUENAVENTURA MEDINA ERICK WILSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-09-18', 853180.00, 'A'), + (739, 1, 'LEVY ARRAZOLA RALPH MARC', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2011-09-27', 476720.00, 'A'), + (74, 1, 'RAMIREZ SORA EDISON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-03', 364220.00, 'A'), + (740, 3, 'MOON HYUNSIK ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 173192, '2011-05-15', 824080.00, 'A'), + (741, 3, 'LHUILLIER TRONCOSO GASTON MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-09-07', 690230.00, 'A'), + (742, 3, 'UNDURRAGA PELLEGRINI GONZALO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2010-11-21', 978900.00, 'A'), + (743, 1, 'SOLANO TRIBIN NICOLAS SIMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 134022, '2011-03-16', 823800.00, 'A'), + (744, 1, 'NOGUERA BENAVIDES JACOBO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-06', 182300.00, 'A'), + (745, 1, 'GARCIA LEON MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2008-04-16', 440110.00, 'A'), + (746, 1, 'EMILIANI ROJAS ALEXANDER ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-09-12', 653640.00, 'A'), + (748, 1, 'CARRENO POULSEN HELGEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', 778370.00, 'A'), + (749, 1, 'ALVARADO FANDINO ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2008-11-05', 48280.00, 'A'), + (750, 1, 'DIAZ GRANADOS JUAN PABLO.', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-01-12', 906290.00, 'A'), + (751, 1, 'OVALLE BETANCOURT ALBERTO JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2011-08-14', 386620.00, 'A'), + (752, 3, 'GUTIERREZ VERGARA JOSE MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-08', 214250.00, 'A'), + (753, 3, 'CHAPARRO GUAIMARAL LIZ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 147467, '2011-03-16', 911350.00, 'A'), + (754, 3, 'CORTES DE SOLMINIHAC PABLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-01-20', 914020.00, 'A'), + (755, 3, 'CHETAIL VINCENT', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 239124, '2010-08-23', 836050.00, 'A'), + (756, 3, 'PERUGORRIA RODRIGUEZ JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2010-10-17', 438210.00, 'A'), + (757, 3, 'GOLLMANN ROBERTO JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 167269, '2011-03-28', 682870.00, 'A'), + (758, 3, 'VARELA SEPULVEDA MARIA PILAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2010-07-26', 99730.00, 'A'), + (759, 3, 'MEYER WELIKSON MICHELE JANIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-05-10', 450030.00, 'A'), + (76, 1, 'VANEGAS RODRIGUEZ OSCAR IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', 568310.00, 'A'), + (77, 3, 'GATICA SOTOMAYOR MAURICIO VICENTE', 191821112, 'CRA 25 CALLE 100', '409@terra.com.co', '2011-02-03', 117002, '2010-05-13', 444970.00, 'A'), + (79, 1, 'PENA VALENZUELA DANIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-19', 264790.00, 'A'), + (8, 1, 'NAVARRO PALENCIA HUGO RAFAEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126968, '2011-05-05', 579980.00, 'A'), + (80, 1, 'BARRIOS CUADRADO DAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-29', 764140.00, 'A'), + (802, 3, 'RECK GARRONE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2009-02-06', 767700.00, 'A'), + (81, 1, 'PARRA QUIROGA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 26330.00, 'A'), + (811, 8, 'FEDERACION NACIONAL DE AVICULTORES ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-04-18', 926010.00, 'A'), + (812, 1, 'ORJUELA VELEZ JAIME ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 257160.00, 'A'), + (813, 1, 'PENA CHACON GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-08-27', 507770.00, 'A'), + (814, 1, 'RONDEROS MOJICA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127443, '2011-05-04', 767370.00, 'A'), + (815, 1, 'RICO NINO MARIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127443, '2011-05-18', 313540.00, 'A'), + (817, 3, 'AVILA CHYTIL MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118471, '2011-07-14', 387300.00, 'A'), + (818, 3, 'JABLONSKI DUARTE SILVEIRA ESTER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2010-12-21', 139740.00, 'A'), + (819, 3, 'BUHLER MOSLER XIMENA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-06-20', 536830.00, 'A'), + (82, 1, 'CARRILLO GAMBOA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-06-01', 839240.00, 'A'), + (820, 3, 'FALQUETO DALMIRO ANGELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-06-21', 264910.00, 'A'), + (821, 1, 'RUGER GUSTAVO RODRIGUEZ TAMAYO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2010-04-12', 714080.00, 'A'), + (822, 3, 'JULIO RODRIGUEZ FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-08-16', 775650.00, 'A'), + (823, 3, 'CIBANIK RODOLFO MOISES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132554, '2011-09-19', 736020.00, 'A'), + (824, 3, 'JIMENEZ FRANCO EMMANUEL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-17', 353150.00, 'A'), + (825, 3, 'GNECCO TREMEDAD', 191821112, 'CRA 25 CALLE 100', '818@hotmail.com', '2011-02-03', 171072, '2011-03-19', 557700.00, 'A'), + (826, 3, 'VILAR MENDOZA JOSE RAFAEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-29', 729050.00, 'A'), + (827, 3, 'GONZALEZ MOLINA CRISTIAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-06-20', 972160.00, 'A'), + (828, 1, 'GONTOVNIK HOBRECKT CARLOS DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-08-02', 673620.00, 'A'), + (829, 3, 'DIBARRAT URZUA SEBASTIAN RAIMUNDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-28', 451650.00, 'A'), + (830, 3, 'STOCCHERO HATSCHBACH GUILHERME', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2010-11-22', 237370.00, 'A'), + (831, 1, 'NAVAS PASSOS NARCISO EVELIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-04-21', 831900.00, 'A'), + (832, 3, 'LUNA SOBENES FAVIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-10-11', 447400.00, 'A'), + (833, 3, 'NUNEZ NOGUEIRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-19', 741290.00, 'A'), + (834, 1, 'CASTRO BELTRAN ARIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128188, '2011-05-15', 364270.00, 'A'), + (835, 1, 'TURBAY YAMIN MAURICIO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-03-17', 597490.00, 'A'), + (836, 1, 'GOMEZ BARRAZA RODNEY LORENZO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 894610.00, 'A'), + (837, 1, 'CUELLO LASCANO ROBERTO', 191821112, 'CRA 25 CALLE 100', '221@hotmail.es', '2011-02-03', 133535, '2011-07-11', 680610.00, 'A'), + (838, 1, 'PATERNINA PEINADO JOSE VICENTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-08-23', 719190.00, 'A'), + (839, 1, 'YEPES RUBIANO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-05-16', 554130.00, 'A'), + (84, 1, 'ALVIS RAMIREZ ALFREDO', 191821112, 'CRA 25 CALLE 100', '292@yahoo.com', '2011-02-03', 127662, '2011-09-16', 68190.00, 'A'), + (840, 1, 'ROCA LLANOS GUILLERMO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-08-22', 613060.00, 'A'), + (841, 1, 'RENDON TORRALVO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2011-05-26', 402950.00, 'A'), + (842, 1, 'BLANCO STAND GERMAN ELIECER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-17', 175530.00, 'A'), + (843, 3, 'BERNAL MAYRA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131272, '2010-08-31', 668820.00, 'A'), + (844, 1, 'NAVARRO RUIZ LAZARO GREGORIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 126916, '2008-09-23', 817520.00, 'A'), + (846, 3, 'TUOMINEN OLLI PETTERI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-09-01', 953150.00, 'A'), + (847, 1, 'ESPARRAGOZA DE LA ESPRIELLA ENRIQUE ALBERTO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-08-09', 522340.00, 'A'), + (848, 3, 'ARAYA ARIAS JUAN VICENTE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132165, '2011-08-09', 752210.00, 'A'), + (85, 1, 'GARCIA JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-03-01', 989420.00, 'A'), + (850, 1, 'PARDO GOMEZ GERMAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2010-11-25', 713690.00, 'A'), + (851, 1, 'ATIQUE JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2008-03-03', 986250.00, 'A'), + (852, 1, 'HERNANDEZ MEYER EDGARDO DE JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-20', 790190.00, 'A'), + (853, 1, 'ZULUAGA DE LEON IVAN JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-07-03', 992210.00, 'A'), + (854, 1, 'VILLARREAL ANGULO ENRIQUE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-10-02', 590450.00, 'A'), + (855, 1, 'CELIA MARTINEZ APARICIO GIAN PIERO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-06-15', 975620.00, 'A'), + (857, 3, 'LIPARI RONALDO LUIS', 191821112, 'CRA 25 CALLE 100', '84@facebook.com', '2011-02-03', 118941, '2010-10-13', 606990.00, 'A'), + (858, 1, 'RAVACHI DAVILA ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2011-05-04', 714620.00, 'A'), + (859, 3, 'PINHEIRO OLIVEIRA LUCIANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 752130.00, 'A'), + (86, 1, 'GOMEZ LIS CARLOS EMILIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2009-12-22', 742520.00, 'A'), + (860, 1, 'PUGLIESE MERCADO LUIGGI ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-08-19', 616780.00, 'A'), + (862, 1, 'JANNA TELLO DANIEL JALIL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2010-08-07', 287220.00, 'A'), + (863, 3, 'MATTAR CARLOS HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2009-04-26', 953570.00, 'A'), + (864, 1, 'MOLINA OLIER OSVALDO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2011-04-18', 906200.00, 'A'), + (865, 1, 'BLANCO MCLIN DAVID ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-08-18', 670290.00, 'A'), + (866, 1, 'NARANJO ROMERO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2010-08-25', 632860.00, 'A'), + (867, 1, 'SIMANCAS TRUJILLO RICARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-04-07', 153400.00, 'A'), + (868, 1, 'ARENAS USME GERMAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126881, '2011-10-01', 868430.00, 'A'), + (869, 5, 'DIAZ CORDERO RODRIGO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-11-04', 881950.00, 'A'), + (87, 1, 'CELIS PEREZ HERNANDO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-05', 744330.00, 'A'), + (870, 3, 'BINDER ZBEDA JONATAHAN JANAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131083, '2010-04-11', 804460.00, 'A'), + (871, 1, 'HINCAPIE HELLMAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-09-15', 376440.00, 'A'), + (872, 3, 'MONTEIRO LANAMAR ALFONSO DE BUSTAMANTE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118942, '2009-03-23', 468820.00, 'A'), + (873, 3, 'AGUDO CARMINATTI REGINA CELIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-01-04', 214770.00, 'A'), + (874, 1, 'GONZALEZ VILLALOBOS CRISTIAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2011-09-26', 667400.00, 'A'), + (875, 3, 'GUELL VILLANUEVA ALVARO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2008-04-07', 692670.00, 'A'), + (876, 3, 'GRES ANAIS ROBERTO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-12-01', 461180.00, 'A'), + (877, 3, 'GAME MOCOCAIN JUAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-07', 227890.00, 'A'), + (878, 1, 'FERRER UCROS FERNANDO LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-06-22', 755900.00, 'A'), + (879, 3, 'HERRERA JAUREGUI CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', '599@facebook.com', '2011-02-03', 131272, '2010-07-22', 95840.00, 'A'), + (880, 3, 'BACALLAO HERNANDEZ ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126180, '2010-04-21', 211480.00, 'A'), + (881, 1, 'GIJON URBINA JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 144879, '2011-04-03', 769910.00, 'A'), + (882, 3, 'TRUSEN CHRISTOPH WOLFGANG', 191821112, 'CRA 25 CALLE 100', '338@yahoo.com.mx', '2011-02-03', 127591, '2010-10-24', 215100.00, 'A'), + (883, 3, 'ASHOURI ASKANDAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 157861, '2009-03-03', 765760.00, 'A'), + (885, 1, 'ALTAMAR WATTS JAIRO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-08-20', 620170.00, 'A'), + (887, 3, 'QUINTANA BALTIERRA ROBERTO ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-21', 891370.00, 'A'), + (889, 1, 'CARILLO PATINO VICTOR HILARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 130226, '2011-09-06', 354570.00, 'A'), + (89, 1, 'CONTRERAS PULIDO LINA MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-06', 237480.00, 'A'), + (890, 1, 'GELVES CANAS GENARO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-02', 355640.00, 'A'), + (891, 3, 'CAGNONI DE MELO PAULA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2010-12-14', 714490.00, 'A'), + (892, 3, 'MENA AMESTICA PATRICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-03-22', 505510.00, 'A'), + (893, 1, 'CAICEDO ROMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-07', 384110.00, 'A'), + (894, 1, 'ECHEVERRY TRUJILLO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-08', 404010.00, 'A'), + (895, 1, 'CAJIA PEDRAZA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 867700.00, 'A'), + (896, 2, 'PALACIOS OLIVA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-24', 126500.00, 'A'), + (897, 1, 'GUTIERREZ QUINTERO FABIAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2009-10-24', 29380.00, 'A'), + (899, 3, 'COBO GUEVARA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-12-09', 748860.00, 'A'), + (9, 1, 'OSORIO RODRIGUEZ FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-09-27', 904420.00, 'A'), + (90, 1, 'LEYTON GONZALEZ FREDY RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-24', 705130.00, 'A'), + (901, 1, 'HERNANDEZ JOSE ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 130266, '2011-05-23', 964010.00, 'A'), + (903, 3, 'GONZALEZ MALDONADO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2010-11-13', 576500.00, 'A'), + (904, 1, 'OCHOA BARRIGA JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 130266, '2011-05-05', 401380.00, 'A'), + ('CELL3886', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + (905, 1, 'OSORIO REDONDO JESUS DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2011-08-11', 277390.00, 'A'), + (906, 1, 'BAYONA BARRIENTOS JEAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-01-25', 182820.00, 'A'), + (907, 1, 'MARTINEZ GOMEZ CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2010-03-11', 81940.00, 'A'), + (908, 1, 'PUELLO LOPEZ GUILLERMO LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-08-12', 861240.00, 'A'), + (909, 1, 'MOGOLLON LONDONO PEDRO LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2011-06-22', 60380.00, 'A'), + (91, 1, 'ORTIZ RIOS JAVIER ADOLFO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-12', 813200.00, 'A'), + (911, 1, 'HERRERA HOYOS CARLOS FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2010-09-12', 409800.00, 'A'), + (912, 3, 'RIM MYUNG HWAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-15', 894450.00, 'A'), + (913, 3, 'BIANCO DORIEN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-29', 242820.00, 'A'), + (914, 3, 'FROIMZON WIEN DANIEL', 191821112, 'CRA 25 CALLE 100', '348@yahoo.com', '2011-02-03', 132165, '2010-11-06', 530780.00, 'A'), + (915, 3, 'ALVEZ AZEVEDO JOAO MIGUEL', 191821112, 'CRA 25 CALLE 100', '861@hotmail.es', '2011-02-03', 127591, '2009-06-25', 925420.00, 'A'), + (916, 3, 'CARRASCO DIAZ LUIS ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-02', 34780.00, 'A'), + (917, 3, 'VIVALLOS MEDINA LEONEL EDMUNDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-09-12', 397640.00, 'A'), + (919, 3, 'LASSE ANDRE BARKLIEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 286724, '2011-03-31', 226390.00, 'A'), + (92, 1, 'CUERVO CARDENAS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-08', 950630.00, 'A'), + (920, 3, 'BARCELOS PLOTEGHER LILIA MARA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-07', 480380.00, 'A'), + (921, 1, 'JARAMILLO ARANGO JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127559, '2011-06-28', 722700.00, 'A'), + (93, 3, 'RUIZ PRIETO WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 131272, '2011-01-19', 313540.00, 'A'), + (932, 7, 'COMFENALCO ANTIOQUIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-05', 515430.00, 'A'), + (94, 1, 'GALLEGO JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-25', 715830.00, 'A'), + (944, 3, 'KARMELIC PAVLOV VESNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 120066, '2010-08-07', 585580.00, 'A'), + (945, 3, 'RAMIREZ BORDON OSCAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-07-02', 526250.00, 'A'), + (946, 3, 'SORACCO CABEZA RODRIGO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-04', 874490.00, 'A'), + (949, 1, 'GALINDO JORGE ERNESTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127300, '2008-07-10', 344110.00, 'A'), + (950, 3, 'DR KNABLE THOMAS ERNST ALBERT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 256231, '2009-11-17', 685430.00, 'A'), + (953, 3, 'VELASQUEZ JANETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-20', 404650.00, 'A'), + (954, 3, 'SOZA REX JOSE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 150903, '2011-05-26', 269790.00, 'A'), + (955, 3, 'FONTANA GAETE JAIME PATRICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-01-11', 134970.00, 'A'), + (957, 3, 'PEREZ MARTINEZ GRECIA INDIRA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2010-08-27', 922610.00, 'A'), + (96, 1, 'FORERO CUBILLOS JORGEARTURO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-25', 45020.00, 'A'), + (97, 1, 'SILVA ACOSTA MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-19', 309580.00, 'A'), + (978, 3, 'BLUMENTHAL JAIRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117630, '2010-04-22', 653490.00, 'A'), + (984, 3, 'SUN XIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-01-17', 203630.00, 'A'), + (99, 1, 'CANO GUZMAN ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 135620.00, 'A'), + (999, 1, 'DRAGER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-12-22', 882070.00, 'A'), + ('CELL1020', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1083', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1153', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL126', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1326', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1329', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL133', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1413', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1426', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1529', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1651', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1760', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1857', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1879', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1902', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1921', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1962', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1992', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2006', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL215', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2307', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2322', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2497', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2641', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2736', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2805', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL281', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2905', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2963', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3029', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3090', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3161', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3302', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3309', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3325', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3372', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3422', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3514', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3562', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3652', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL3661', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4334', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4440', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4547', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4639', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4662', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4698', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL475', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4790', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4838', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4885', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL4939', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5064', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5066', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL51', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5102', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5116', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5192', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5226', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5250', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5282', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL536', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5503', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5506', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL554', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5544', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5595', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5648', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5801', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5821', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6201', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6277', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6288', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6358', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6369', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6408', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6425', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6439', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6509', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6533', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6556', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6731', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6766', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6775', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6802', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6834', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6890', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6953', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6957', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7024', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7216', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL728', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7314', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7431', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7432', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7513', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7522', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7617', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7623', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7708', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7777', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL787', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7907', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7951', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7956', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8004', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8058', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL811', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8136', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8162', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8286', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8300', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8339', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8366', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8389', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8446', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8487', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8546', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8578', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8643', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8774', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8829', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8846', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL8942', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9046', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9110', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL917', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9189', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9241', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9331', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9429', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9434', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9495', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9517', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9558', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9650', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9748', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9830', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9878', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9893', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9945', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('T-Cx200', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx201', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx202', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx203', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx204', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx205', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx206', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx207', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx208', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx209', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx210', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx211', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx212', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx213', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('T-Cx214', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), + ('CELL4021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5255', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5730', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2540', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7376', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL5471', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2588', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL570', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2854', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL6683', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL1382', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL2051', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL7086', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9220', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), + ('CELL9701', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'); + +-- +-- Data for Name: robots; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +INSERT INTO robots (id, name, type, year, datetime, text) VALUES + (1, 'Robotina', 'mechanical', 1972, '1972-01-01 00:00:00', 'text'), + (2, 'Astro Boy', 'mechanical', 1952, '1952-01-01 00:00:00', 'text'), + (3, 'Terminator', 'cyborg', 2029, '2029-01-01 00:00:00', 'text'); + +-- +-- Data for Name: robots_parts; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +INSERT INTO robots_parts (id, robots_id, parts_id) VALUES + (1, 1, 1), + (2, 1, 2), + (3, 1, 3); + +-- +-- Data for Name: subscriptores; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +INSERT INTO subscriptores (id, email, created_at, status) VALUES + (43, 'fuego@hotmail.com', '2012-04-14 23:30:33', 'P'); + +-- +-- Data for Name: tipo_documento; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +INSERT INTO tipo_documento (id, detalle) VALUES + (1, 'TIPO'), + (2, 'TIPO'), + (3, 'TIPO'), + (4, 'TIPO'), + (5, 'TIPO'), + (6, 'TIPO'), + (7, 'TIPO'), + (8, 'TIPO'), + (9, 'TIPO'), + (10, 'TIPO'), + (11, 'TIPO'), + (12, 'TIPO'), + (13, 'TIPO'), + (14, 'TIPO'), + (15, 'TIPO'), + (16, 'TIPO'), + (17, 'TIPO'), + (18, 'TIPO'), + (19, 'TIPO'), + (20, 'TIPO'), + (21, 'TIPO'), + (22, 'TIPO'), + (23, 'TIPO'), + (24, 'TIPO'), + (25, 'TIPO'), + (26, 'TIPO'), + (27, 'TIPO'), + (28, 'TIPO'), + (29, 'TIPO'), + (30, 'TIPO'), + (31, 'TIPO'), + (32, 'TIPO'), + (33, 'TIPO'), + (34, 'TIPO'), + (35, 'TIPO'), + (36, 'TIPO'), + (37, 'TIPO'), + (38, 'TIPO'), + (39, 'TIPO'), + (40, 'TIPO'), + (41, 'TIPO'), + (42, 'TIPO'), + (43, 'TIPO'), + (44, 'TIPO'), + (45, 'TIPO'), + (46, 'TIPO'), + (47, 'TIPO'), + (48, 'TIPO'), + (49, 'TIPO'), + (50, 'TIPO'), + (51, 'TIPO'), + (52, 'TIPO'), + (53, 'TIPO'), + (54, 'TIPO'), + (55, 'TIPO'), + (56, 'TIPO'), + (57, 'TIPO'), + (58, 'TIPO'), + (59, 'TIPO'), + (60, 'TIPO'), + (61, 'TIPO'), + (62, 'TIPO'), + (63, 'TIPO'), + (64, 'TIPO'), + (65, 'TIPO'), + (66, 'TIPO'), + (67, 'TIPO'), + (68, 'TIPO'), + (69, 'TIPO'), + (70, 'TIPO'), + (71, 'TIPO'), + (72, 'TIPO'), + (73, 'TIPO'), + (74, 'TIPO'), + (75, 'TIPO'), + (76, 'TIPO'), + (77, 'TIPO'), + (78, 'TIPO'), + (79, 'TIPO'), + (80, 'TIPO'), + (81, 'TIPO'), + (82, 'TIPO'), + (83, 'TIPO'), + (84, 'TIPO'), + (85, 'TIPO'), + (86, 'TIPO'), + (87, 'TIPO'), + (88, 'TIPO'), + (89, 'TIPO'), + (90, 'TIPO'), + (91, 'TIPO'), + (92, 'TIPO'), + (93, 'TIPO'), + (94, 'TIPO'), + (95, 'TIPO'), + (96, 'TIPO'), + (97, 'TIPO'), + (98, 'TIPO'), + (99, 'TIPO'), + (100, 'TIPO'), + (101, 'TIPO'), + (102, 'TIPO'), + (103, 'TIPO'), + (104, 'TIPO'), + (105, 'TIPO'), + (106, 'TIPO'), + (107, 'TIPO'), + (108, 'TIPO'), + (109, 'TIPO'), + (110, 'TIPO'), + (111, 'TIPO'), + (112, 'TIPO'), + (113, 'TIPO'), + (114, 'TIPO'), + (115, 'TIPO'), + (116, 'TIPO'), + (117, 'TIPO'), + (118, 'TIPO'), + (119, 'TIPO'), + (120, 'TIPO'), + (121, 'TIPO'), + (122, 'TIPO'), + (123, 'TIPO'), + (124, 'TIPO'), + (125, 'TIPO'), + (126, 'TIPO'), + (127, 'TIPO'), + (128, 'TIPO'), + (129, 'TIPO'), + (130, 'TIPO'), + (131, 'TIPO'), + (132, 'TIPO'), + (133, 'TIPO'), + (134, 'TIPO'), + (135, 'TIPO'), + (136, 'TIPO'), + (137, 'TIPO'), + (138, 'TIPO'), + (139, 'TIPO'), + (140, 'TIPO'), + (141, 'TIPO'), + (142, 'TIPO'), + (143, 'TIPO'), + (144, 'TIPO'), + (145, 'TIPO'), + (146, 'TIPO'), + (147, 'TIPO'), + (148, 'TIPO'), + (149, 'TIPO'), + (150, 'TIPO'), + (151, 'TIPO'), + (152, 'TIPO'), + (153, 'TIPO'), + (154, 'TIPO'), + (155, 'TIPO'), + (156, 'TIPO'), + (157, 'TIPO'), + (158, 'TIPO'), + (159, 'TIPO'), + (160, 'TIPO'), + (161, 'TIPO'), + (162, 'TIPO'), + (163, 'TIPO'), + (164, 'TIPO'), + (165, 'TIPO'), + (166, 'TIPO'), + (167, 'TIPO'), + (168, 'TIPO'), + (169, 'TIPO'), + (170, 'TIPO'), + (171, 'TIPO'), + (172, 'TIPO'), + (173, 'TIPO'), + (174, 'TIPO'), + (175, 'TIPO'), + (176, 'TIPO'), + (177, 'TIPO'), + (178, 'TIPO'), + (179, 'TIPO'), + (180, 'TIPO'), + (181, 'TIPO'), + (182, 'TIPO'), + (183, 'TIPO'), + (184, 'TIPO'), + (185, 'TIPO'), + (186, 'TIPO'), + (187, 'TIPO'), + (188, 'TIPO'), + (189, 'TIPO'), + (190, 'TIPO'), + (191, 'TIPO'), + (192, 'TIPO'), + (193, 'TIPO'), + (194, 'TIPO'), + (195, 'TIPO'), + (196, 'TIPO'), + (197, 'TIPO'), + (198, 'TIPO'), + (199, 'TIPO'), + (200, 'TIPO'), + (201, 'TIPO'), + (202, 'TIPO'), + (203, 'TIPO'), + (204, 'TIPO'), + (205, 'TIPO'), + (206, 'TIPO'), + (207, 'TIPO'), + (208, 'TIPO'), + (209, 'TIPO'), + (210, 'TIPO'), + (211, 'TIPO'), + (212, 'TIPO'), + (213, 'TIPO'), + (214, 'TIPO'), + (215, 'TIPO'), + (216, 'TIPO'), + (217, 'TIPO'), + (218, 'TIPO'), + (219, 'TIPO'), + (220, 'TIPO'), + (221, 'TIPO'), + (222, 'TIPO'), + (223, 'TIPO'), + (224, 'TIPO'), + (225, 'TIPO'), + (226, 'TIPO'), + (227, 'TIPO'), + (228, 'TIPO'), + (229, 'TIPO'), + (230, 'TIPO'), + (231, 'TIPO'), + (232, 'TIPO'), + (233, 'TIPO'), + (234, 'TIPO'), + (235, 'TIPO'), + (236, 'TIPO'), + (237, 'TIPO'), + (238, 'TIPO'), + (239, 'TIPO'), + (240, 'TIPO'), + (241, 'TIPO'), + (242, 'TIPO'), + (243, 'TIPO'), + (244, 'TIPO'), + (245, 'TIPO'), + (246, 'TIPO'), + (247, 'TIPO'), + (248, 'TIPO'), + (249, 'TIPO'), + (250, 'TIPO'), + (251, 'TIPO'), + (252, 'TIPO'), + (253, 'TIPO'), + (254, 'TIPO'), + (255, 'TIPO'), + (256, 'TIPO'), + (257, 'TIPO'), + (258, 'TIPO'), + (259, 'TIPO'), + (260, 'TIPO'), + (261, 'TIPO'), + (262, 'TIPO'), + (263, 'TIPO'), + (264, 'TIPO'), + (265, 'TIPO'), + (266, 'TIPO'), + (267, 'TIPO'), + (268, 'TIPO'), + (269, 'TIPO'), + (270, 'TIPO'), + (271, 'TIPO'), + (272, 'TIPO'), + (273, 'TIPO'), + (274, 'TIPO'), + (275, 'TIPO'), + (276, 'TIPO'), + (277, 'TIPO'), + (278, 'TIPO'), + (279, 'TIPO'), + (280, 'TIPO'), + (281, 'TIPO'), + (282, 'TIPO'), + (283, 'TIPO'), + (284, 'TIPO'), + (285, 'TIPO'), + (286, 'TIPO'), + (287, 'TIPO'), + (288, 'TIPO'), + (289, 'TIPO'), + (290, 'TIPO'), + (291, 'TIPO'), + (292, 'TIPO'), + (293, 'TIPO'), + (294, 'TIPO'), + (295, 'TIPO'), + (296, 'TIPO'), + (297, 'TIPO'), + (298, 'TIPO'), + (299, 'TIPO'), + (300, 'TIPO'), + (301, 'TIPO'), + (302, 'TIPO'), + (303, 'TIPO'), + (304, 'TIPO'), + (305, 'TIPO'), + (306, 'TIPO'), + (307, 'TIPO'), + (308, 'TIPO'), + (309, 'TIPO'), + (310, 'TIPO'), + (311, 'TIPO'), + (312, 'TIPO'), + (313, 'TIPO'), + (314, 'TIPO'), + (315, 'TIPO'), + (316, 'TIPO'), + (317, 'TIPO'), + (318, 'TIPO'), + (319, 'TIPO'), + (320, 'TIPO'), + (321, 'TIPO'), + (322, 'TIPO'), + (323, 'TIPO'), + (324, 'TIPO'), + (325, 'TIPO'), + (326, 'TIPO'), + (327, 'TIPO'), + (328, 'TIPO'), + (329, 'TIPO'), + (330, 'TIPO'), + (331, 'TIPO'), + (332, 'TIPO'), + (333, 'TIPO'), + (334, 'TIPO'), + (335, 'TIPO'), + (336, 'TIPO'), + (337, 'TIPO'), + (338, 'TIPO'), + (339, 'TIPO'), + (340, 'TIPO'), + (341, 'TIPO'), + (342, 'TIPO'), + (343, 'TIPO'), + (344, 'TIPO'), + (345, 'TIPO'), + (346, 'TIPO'), + (347, 'TIPO'), + (348, 'TIPO'), + (349, 'TIPO'), + (350, 'TIPO'), + (351, 'TIPO'), + (352, 'TIPO'), + (353, 'TIPO'), + (354, 'TIPO'), + (355, 'TIPO'), + (356, 'TIPO'), + (357, 'TIPO'), + (358, 'TIPO'), + (359, 'TIPO'), + (360, 'TIPO'), + (361, 'TIPO'), + (362, 'TIPO'), + (363, 'TIPO'), + (364, 'TIPO'), + (365, 'TIPO'), + (366, 'TIPO'), + (367, 'TIPO'), + (368, 'TIPO'), + (369, 'TIPO'), + (370, 'TIPO'), + (371, 'TIPO'), + (372, 'TIPO'), + (373, 'TIPO'), + (374, 'TIPO'), + (375, 'TIPO'), + (376, 'TIPO'), + (377, 'TIPO'), + (378, 'TIPO'), + (379, 'TIPO'), + (380, 'TIPO'), + (381, 'TIPO'), + (382, 'TIPO'), + (383, 'TIPO'), + (384, 'TIPO'), + (385, 'TIPO'), + (386, 'TIPO'), + (387, 'TIPO'), + (388, 'TIPO'), + (389, 'TIPO'), + (390, 'TIPO'), + (391, 'TIPO'), + (392, 'TIPO'), + (393, 'TIPO'), + (394, 'TIPO'), + (395, 'TIPO'), + (396, 'TIPO'), + (397, 'TIPO'), + (398, 'TIPO'), + (399, 'TIPO'), + (400, 'TIPO'), + (401, 'TIPO'), + (402, 'TIPO'), + (403, 'TIPO'), + (404, 'TIPO'), + (405, 'TIPO'), + (406, 'TIPO'), + (407, 'TIPO'), + (408, 'TIPO'), + (409, 'TIPO'), + (410, 'TIPO'), + (411, 'TIPO'), + (412, 'TIPO'), + (413, 'TIPO'), + (414, 'TIPO'), + (415, 'TIPO'), + (416, 'TIPO'), + (417, 'TIPO'), + (418, 'TIPO'), + (419, 'TIPO'), + (420, 'TIPO'), + (421, 'TIPO'), + (422, 'TIPO'), + (423, 'TIPO'), + (424, 'TIPO'), + (425, 'TIPO'), + (426, 'TIPO'), + (427, 'TIPO'), + (428, 'TIPO'), + (429, 'TIPO'), + (430, 'TIPO'), + (431, 'TIPO'), + (432, 'TIPO'), + (433, 'TIPO'), + (434, 'TIPO'), + (435, 'TIPO'), + (436, 'TIPO'), + (437, 'TIPO'), + (438, 'TIPO'), + (439, 'TIPO'), + (440, 'TIPO'), + (441, 'TIPO'), + (442, 'TIPO'), + (443, 'TIPO'), + (444, 'TIPO'), + (445, 'TIPO'), + (446, 'TIPO'), + (447, 'TIPO'), + (448, 'TIPO'), + (449, 'TIPO'), + (450, 'TIPO'), + (451, 'TIPO'), + (452, 'TIPO'), + (453, 'TIPO'), + (454, 'TIPO'), + (455, 'TIPO'), + (456, 'TIPO'), + (457, 'TIPO'), + (458, 'TIPO'), + (459, 'TIPO'), + (460, 'TIPO'), + (461, 'TIPO'), + (462, 'TIPO'), + (463, 'TIPO'), + (464, 'TIPO'), + (465, 'TIPO'), + (466, 'TIPO'), + (467, 'TIPO'), + (468, 'TIPO'), + (469, 'TIPO'), + (470, 'TIPO'), + (471, 'TIPO'), + (472, 'TIPO'), + (473, 'TIPO'), + (474, 'TIPO'), + (475, 'TIPO'), + (476, 'TIPO'), + (477, 'TIPO'), + (478, 'TIPO'), + (479, 'TIPO'), + (480, 'TIPO'), + (481, 'TIPO'), + (482, 'TIPO'), + (483, 'TIPO'), + (484, 'TIPO'), + (485, 'TIPO'), + (486, 'TIPO'), + (487, 'TIPO'), + (488, 'TIPO'), + (489, 'TIPO'), + (490, 'TIPO'), + (491, 'TIPO'), + (492, 'TIPO'), + (493, 'TIPO'), + (494, 'TIPO'), + (495, 'TIPO'), + (496, 'TIPO'), + (497, 'TIPO'), + (498, 'TIPO'), + (499, 'TIPO'), + (500, 'TIPO'), + (501, 'TIPO'), + (502, 'TIPO'), + (503, 'TIPO'), + (504, 'TIPO'), + (505, 'TIPO'), + (506, 'TIPO'), + (507, 'TIPO'), + (508, 'TIPO'), + (509, 'TIPO'), + (510, 'TIPO'), + (511, 'TIPO'), + (512, 'TIPO'), + (513, 'TIPO'), + (514, 'TIPO'), + (515, 'TIPO'), + (516, 'TIPO'), + (517, 'TIPO'), + (518, 'TIPO'), + (519, 'TIPO'), + (520, 'TIPO'), + (521, 'TIPO'), + (522, 'TIPO'), + (523, 'TIPO'), + (524, 'TIPO'), + (525, 'TIPO'), + (526, 'TIPO'), + (527, 'TIPO'), + (528, 'TIPO'), + (529, 'TIPO'), + (530, 'TIPO'), + (531, 'TIPO'), + (532, 'TIPO'), + (533, 'TIPO'), + (534, 'TIPO'), + (535, 'TIPO'), + (536, 'TIPO'), + (537, 'TIPO'), + (538, 'TIPO'), + (539, 'TIPO'), + (540, 'TIPO'), + (541, 'TIPO'), + (542, 'TIPO'), + (543, 'TIPO'), + (544, 'TIPO'), + (545, 'TIPO'), + (546, 'TIPO'), + (547, 'TIPO'), + (548, 'TIPO'), + (549, 'TIPO'), + (550, 'TIPO'), + (551, 'TIPO'), + (552, 'TIPO'), + (553, 'TIPO'), + (554, 'TIPO'), + (555, 'TIPO'), + (556, 'TIPO'), + (557, 'TIPO'), + (558, 'TIPO'), + (559, 'TIPO'), + (560, 'TIPO'), + (561, 'TIPO'), + (562, 'TIPO'), + (563, 'TIPO'), + (564, 'TIPO'), + (565, 'TIPO'), + (566, 'TIPO'), + (567, 'TIPO'), + (568, 'TIPO'), + (569, 'TIPO'), + (570, 'TIPO'), + (571, 'TIPO'), + (572, 'TIPO'), + (573, 'TIPO'), + (574, 'TIPO'), + (575, 'TIPO'), + (576, 'TIPO'), + (577, 'TIPO'), + (578, 'TIPO'), + (579, 'TIPO'), + (580, 'TIPO'), + (581, 'TIPO'), + (582, 'TIPO'), + (583, 'TIPO'), + (584, 'TIPO'), + (585, 'TIPO'), + (586, 'TIPO'), + (587, 'TIPO'), + (588, 'TIPO'), + (589, 'TIPO'), + (590, 'TIPO'), + (591, 'TIPO'), + (592, 'TIPO'), + (593, 'TIPO'), + (594, 'TIPO'), + (595, 'TIPO'), + (596, 'TIPO'), + (597, 'TIPO'), + (598, 'TIPO'), + (599, 'TIPO'), + (600, 'TIPO'), + (601, 'TIPO'), + (602, 'TIPO'), + (603, 'TIPO'), + (604, 'TIPO'), + (605, 'TIPO'), + (606, 'TIPO'), + (607, 'TIPO'), + (608, 'TIPO'), + (609, 'TIPO'), + (610, 'TIPO'), + (611, 'TIPO'), + (612, 'TIPO'), + (613, 'TIPO'), + (614, 'TIPO'), + (615, 'TIPO'), + (616, 'TIPO'), + (617, 'TIPO'), + (618, 'TIPO'), + (619, 'TIPO'), + (620, 'TIPO'), + (621, 'TIPO'), + (622, 'TIPO'), + (623, 'TIPO'), + (624, 'TIPO'), + (625, 'TIPO'), + (626, 'TIPO'), + (627, 'TIPO'), + (628, 'TIPO'), + (629, 'TIPO'), + (630, 'TIPO'), + (631, 'TIPO'), + (632, 'TIPO'), + (633, 'TIPO'), + (634, 'TIPO'), + (635, 'TIPO'), + (636, 'TIPO'), + (637, 'TIPO'), + (638, 'TIPO'), + (639, 'TIPO'), + (640, 'TIPO'), + (641, 'TIPO'), + (642, 'TIPO'), + (643, 'TIPO'), + (644, 'TIPO'), + (645, 'TIPO'), + (646, 'TIPO'), + (647, 'TIPO'), + (648, 'TIPO'), + (649, 'TIPO'), + (650, 'TIPO'), + (651, 'TIPO'), + (652, 'TIPO'), + (653, 'TIPO'), + (654, 'TIPO'), + (655, 'TIPO'), + (656, 'TIPO'), + (657, 'TIPO'), + (658, 'TIPO'), + (659, 'TIPO'), + (660, 'TIPO'), + (661, 'TIPO'), + (662, 'TIPO'), + (663, 'TIPO'), + (664, 'TIPO'), + (665, 'TIPO'), + (666, 'TIPO'), + (667, 'TIPO'), + (668, 'TIPO'), + (669, 'TIPO'), + (670, 'TIPO'), + (671, 'TIPO'), + (672, 'TIPO'), + (673, 'TIPO'), + (674, 'TIPO'), + (675, 'TIPO'), + (676, 'TIPO'), + (677, 'TIPO'), + (678, 'TIPO'), + (679, 'TIPO'), + (680, 'TIPO'), + (681, 'TIPO'), + (682, 'TIPO'), + (683, 'TIPO'), + (684, 'TIPO'), + (685, 'TIPO'), + (686, 'TIPO'), + (687, 'TIPO'), + (688, 'TIPO'), + (689, 'TIPO'), + (690, 'TIPO'), + (691, 'TIPO'), + (692, 'TIPO'), + (693, 'TIPO'), + (694, 'TIPO'), + (695, 'TIPO'), + (696, 'TIPO'), + (697, 'TIPO'), + (698, 'TIPO'), + (699, 'TIPO'), + (700, 'TIPO'), + (701, 'TIPO'), + (702, 'TIPO'), + (703, 'TIPO'), + (704, 'TIPO'), + (705, 'TIPO'), + (706, 'TIPO'), + (707, 'TIPO'), + (708, 'TIPO'), + (709, 'TIPO'), + (710, 'TIPO'), + (711, 'TIPO'), + (712, 'TIPO'), + (713, 'TIPO'), + (714, 'TIPO'), + (715, 'TIPO'), + (716, 'TIPO'), + (717, 'TIPO'), + (718, 'TIPO'), + (719, 'TIPO'), + (720, 'TIPO'), + (721, 'TIPO'), + (722, 'TIPO'), + (723, 'TIPO'), + (724, 'TIPO'), + (725, 'TIPO'), + (726, 'TIPO'), + (727, 'TIPO'), + (728, 'TIPO'), + (729, 'TIPO'), + (730, 'TIPO'), + (731, 'TIPO'), + (732, 'TIPO'), + (733, 'TIPO'), + (734, 'TIPO'), + (735, 'TIPO'), + (736, 'TIPO'), + (737, 'TIPO'), + (738, 'TIPO'), + (739, 'TIPO'), + (740, 'TIPO'), + (741, 'TIPO'), + (742, 'TIPO'), + (743, 'TIPO'), + (744, 'TIPO'), + (745, 'TIPO'), + (746, 'TIPO'), + (747, 'TIPO'), + (748, 'TIPO'), + (749, 'TIPO'), + (750, 'TIPO'), + (751, 'TIPO'), + (752, 'TIPO'), + (753, 'TIPO'), + (754, 'TIPO'), + (755, 'TIPO'), + (756, 'TIPO'), + (757, 'TIPO'), + (758, 'TIPO'), + (759, 'TIPO'), + (760, 'TIPO'), + (761, 'TIPO'), + (762, 'TIPO'), + (763, 'TIPO'), + (764, 'TIPO'), + (765, 'TIPO'), + (766, 'TIPO'), + (767, 'TIPO'), + (768, 'TIPO'), + (769, 'TIPO'), + (770, 'TIPO'), + (771, 'TIPO'), + (772, 'TIPO'), + (773, 'TIPO'), + (774, 'TIPO'), + (775, 'TIPO'), + (776, 'TIPO'), + (777, 'TIPO'), + (778, 'TIPO'), + (779, 'TIPO'), + (780, 'TIPO'), + (781, 'TIPO'), + (782, 'TIPO'), + (783, 'TIPO'), + (784, 'TIPO'), + (785, 'TIPO'), + (786, 'TIPO'), + (787, 'TIPO'), + (788, 'TIPO'), + (789, 'TIPO'), + (790, 'TIPO'), + (791, 'TIPO'), + (792, 'TIPO'), + (793, 'TIPO'), + (794, 'TIPO'), + (795, 'TIPO'), + (796, 'TIPO'), + (797, 'TIPO'), + (798, 'TIPO'), + (799, 'TIPO'), + (800, 'TIPO'), + (801, 'TIPO'), + (802, 'TIPO'), + (803, 'TIPO'), + (804, 'TIPO'), + (805, 'TIPO'), + (806, 'TIPO'), + (807, 'TIPO'), + (808, 'TIPO'), + (809, 'TIPO'), + (810, 'TIPO'), + (811, 'TIPO'), + (812, 'TIPO'), + (813, 'TIPO'), + (814, 'TIPO'), + (815, 'TIPO'), + (816, 'TIPO'), + (817, 'TIPO'), + (818, 'TIPO'), + (819, 'TIPO'), + (820, 'TIPO'), + (821, 'TIPO'), + (822, 'TIPO'), + (823, 'TIPO'), + (824, 'TIPO'), + (825, 'TIPO'), + (826, 'TIPO'), + (827, 'TIPO'), + (828, 'TIPO'), + (829, 'TIPO'), + (830, 'TIPO'), + (831, 'TIPO'), + (832, 'TIPO'), + (833, 'TIPO'), + (834, 'TIPO'), + (835, 'TIPO'), + (836, 'TIPO'), + (837, 'TIPO'), + (838, 'TIPO'), + (839, 'TIPO'), + (840, 'TIPO'), + (841, 'TIPO'), + (842, 'TIPO'), + (843, 'TIPO'), + (844, 'TIPO'), + (845, 'TIPO'), + (846, 'TIPO'), + (847, 'TIPO'), + (848, 'TIPO'), + (849, 'TIPO'), + (850, 'TIPO'), + (851, 'TIPO'), + (852, 'TIPO'), + (853, 'TIPO'), + (854, 'TIPO'), + (855, 'TIPO'), + (856, 'TIPO'), + (857, 'TIPO'), + (858, 'TIPO'), + (859, 'TIPO'), + (860, 'TIPO'), + (861, 'TIPO'), + (862, 'TIPO'), + (863, 'TIPO'), + (864, 'TIPO'), + (865, 'TIPO'), + (866, 'TIPO'), + (867, 'TIPO'), + (868, 'TIPO'), + (869, 'TIPO'), + (870, 'TIPO'), + (871, 'TIPO'), + (872, 'TIPO'), + (873, 'TIPO'), + (874, 'TIPO'), + (875, 'TIPO'), + (876, 'TIPO'), + (877, 'TIPO'), + (878, 'TIPO'), + (879, 'TIPO'), + (880, 'TIPO'), + (881, 'TIPO'), + (882, 'TIPO'), + (883, 'TIPO'), + (884, 'TIPO'), + (885, 'TIPO'), + (886, 'TIPO'), + (887, 'TIPO'), + (888, 'TIPO'), + (889, 'TIPO'), + (890, 'TIPO'), + (891, 'TIPO'), + (892, 'TIPO'), + (893, 'TIPO'), + (894, 'TIPO'), + (895, 'TIPO'), + (896, 'TIPO'), + (897, 'TIPO'), + (898, 'TIPO'), + (899, 'TIPO'), + (900, 'TIPO'), + (901, 'TIPO'), + (902, 'TIPO'), + (903, 'TIPO'), + (904, 'TIPO'), + (905, 'TIPO'), + (906, 'TIPO'), + (907, 'TIPO'), + (908, 'TIPO'), + (909, 'TIPO'), + (910, 'TIPO'), + (911, 'TIPO'), + (912, 'TIPO'), + (913, 'TIPO'), + (914, 'TIPO'), + (915, 'TIPO'), + (916, 'TIPO'), + (917, 'TIPO'), + (918, 'TIPO'), + (919, 'TIPO'), + (920, 'TIPO'), + (921, 'TIPO'), + (922, 'TIPO'), + (923, 'TIPO'), + (924, 'TIPO'), + (925, 'TIPO'), + (926, 'TIPO'), + (927, 'TIPO'), + (928, 'TIPO'), + (929, 'TIPO'), + (930, 'TIPO'), + (931, 'TIPO'), + (932, 'TIPO'), + (933, 'TIPO'), + (934, 'TIPO'), + (935, 'TIPO'), + (936, 'TIPO'), + (937, 'TIPO'), + (938, 'TIPO'), + (939, 'TIPO'), + (940, 'TIPO'), + (941, 'TIPO'), + (942, 'TIPO'), + (943, 'TIPO'), + (944, 'TIPO'), + (945, 'TIPO'), + (946, 'TIPO'), + (947, 'TIPO'), + (948, 'TIPO'), + (949, 'TIPO'), + (950, 'TIPO'), + (951, 'TIPO'), + (952, 'TIPO'), + (953, 'TIPO'), + (954, 'TIPO'), + (955, 'TIPO'), + (956, 'TIPO'), + (957, 'TIPO'), + (958, 'TIPO'), + (959, 'TIPO'), + (960, 'TIPO'), + (961, 'TIPO'), + (962, 'TIPO'), + (963, 'TIPO'), + (964, 'TIPO'), + (965, 'TIPO'), + (966, 'TIPO'), + (967, 'TIPO'), + (968, 'TIPO'), + (969, 'TIPO'), + (970, 'TIPO'), + (971, 'TIPO'), + (972, 'TIPO'), + (973, 'TIPO'), + (974, 'TIPO'), + (975, 'TIPO'), + (976, 'TIPO'), + (977, 'TIPO'), + (978, 'TIPO'), + (979, 'TIPO'), + (980, 'TIPO'), + (981, 'TIPO'), + (982, 'TIPO'), + (983, 'TIPO'), + (984, 'TIPO'), + (985, 'TIPO'), + (986, 'TIPO'), + (987, 'TIPO'), + (988, 'TIPO'), + (989, 'TIPO'), + (990, 'TIPO'), + (991, 'TIPO'), + (992, 'TIPO'), + (993, 'TIPO'), + (994, 'TIPO'), + (995, 'TIPO'), + (996, 'TIPO'), + (997, 'TIPO'), + (998, 'TIPO'), + (999, 'TIPO'), + (1000, 'TIPO'), + (1001, 'TIPO'), + (1002, 'TIPO'), + (1003, 'TIPO'), + (1004, 'TIPO'), + (1005, 'TIPO'), + (1006, 'TIPO'), + (1007, 'TIPO'), + (1008, 'TIPO'), + (1009, 'TIPO'), + (1010, 'TIPO'), + (1011, 'TIPO'), + (1012, 'TIPO'), + (1013, 'TIPO'), + (1014, 'TIPO'), + (1015, 'TIPO'), + (1016, 'TIPO'), + (1017, 'TIPO'), + (1018, 'TIPO'), + (1019, 'TIPO'), + (1020, 'TIPO'), + (1021, 'TIPO'), + (1022, 'TIPO'), + (1023, 'TIPO'), + (1024, 'TIPO'), + (1025, 'TIPO'), + (1026, 'TIPO'), + (1027, 'TIPO'), + (1028, 'TIPO'), + (1029, 'TIPO'), + (1030, 'TIPO'), + (1031, 'TIPO'), + (1032, 'TIPO'), + (1033, 'TIPO'), + (1034, 'TIPO'), + (1035, 'TIPO'), + (1036, 'TIPO'), + (1037, 'TIPO'), + (1038, 'TIPO'), + (1039, 'TIPO'), + (1040, 'TIPO'), + (1041, 'TIPO'), + (1042, 'TIPO'), + (1043, 'TIPO'), + (1044, 'TIPO'), + (1045, 'TIPO'), + (1046, 'TIPO'), + (1047, 'TIPO'), + (1048, 'TIPO'), + (1049, 'TIPO'), + (1050, 'TIPO'), + (1051, 'TIPO'), + (1052, 'TIPO'), + (1053, 'TIPO'), + (1054, 'TIPO'), + (1055, 'TIPO'), + (1056, 'TIPO'), + (1057, 'TIPO'), + (1058, 'TIPO'), + (1059, 'TIPO'), + (1060, 'TIPO'), + (1061, 'TIPO'), + (1062, 'TIPO'), + (1063, 'TIPO'), + (1064, 'TIPO'), + (1065, 'TIPO'), + (1066, 'TIPO'), + (1067, 'TIPO'), + (1068, 'TIPO'), + (1069, 'TIPO'), + (1070, 'TIPO'), + (1071, 'TIPO'), + (1072, 'TIPO'), + (1073, 'TIPO'), + (1074, 'TIPO'), + (1075, 'TIPO'), + (1076, 'TIPO'), + (1077, 'TIPO'), + (1078, 'TIPO'), + (1079, 'TIPO'), + (1080, 'TIPO'), + (1081, 'TIPO'), + (1082, 'TIPO'), + (1083, 'TIPO'), + (1084, 'TIPO'), + (1085, 'TIPO'), + (1086, 'TIPO'), + (1087, 'TIPO'), + (1088, 'TIPO'), + (1089, 'TIPO'), + (1090, 'TIPO'), + (1091, 'TIPO'), + (1092, 'TIPO'), + (1093, 'TIPO'), + (1094, 'TIPO'), + (1095, 'TIPO'), + (1096, 'TIPO'), + (1097, 'TIPO'), + (1098, 'TIPO'), + (1099, 'TIPO'), + (1100, 'TIPO'), + (1101, 'TIPO'), + (1102, 'TIPO'), + (1103, 'TIPO'), + (1104, 'TIPO'), + (1105, 'TIPO'), + (1106, 'TIPO'), + (1107, 'TIPO'), + (1108, 'TIPO'), + (1109, 'TIPO'), + (1110, 'TIPO'), + (1111, 'TIPO'), + (1112, 'TIPO'), + (1113, 'TIPO'), + (1114, 'TIPO'), + (1115, 'TIPO'), + (1116, 'TIPO'), + (1117, 'TIPO'), + (1118, 'TIPO'), + (1119, 'TIPO'), + (1120, 'TIPO'), + (1121, 'TIPO'), + (1122, 'TIPO'), + (1123, 'TIPO'), + (1124, 'TIPO'), + (1125, 'TIPO'), + (1126, 'TIPO'), + (1127, 'TIPO'), + (1128, 'TIPO'), + (1129, 'TIPO'), + (1130, 'TIPO'), + (1131, 'TIPO'), + (1132, 'TIPO'), + (1133, 'TIPO'), + (1134, 'TIPO'), + (1135, 'TIPO'), + (1136, 'TIPO'), + (1137, 'TIPO'), + (1138, 'TIPO'), + (1139, 'TIPO'), + (1140, 'TIPO'), + (1141, 'TIPO'), + (1142, 'TIPO'), + (1143, 'TIPO'), + (1144, 'TIPO'), + (1145, 'TIPO'), + (1146, 'TIPO'), + (1147, 'TIPO'), + (1148, 'TIPO'), + (1149, 'TIPO'), + (1150, 'TIPO'), + (1151, 'TIPO'), + (1152, 'TIPO'), + (1153, 'TIPO'), + (1154, 'TIPO'), + (1155, 'TIPO'), + (1156, 'TIPO'), + (1157, 'TIPO'), + (1158, 'TIPO'), + (1159, 'TIPO'), + (1160, 'TIPO'), + (1161, 'TIPO'), + (1162, 'TIPO'), + (1163, 'TIPO'), + (1164, 'TIPO'), + (1165, 'TIPO'), + (1166, 'TIPO'), + (1167, 'TIPO'), + (1168, 'TIPO'), + (1169, 'TIPO'), + (1170, 'TIPO'), + (1171, 'TIPO'), + (1172, 'TIPO'), + (1173, 'TIPO'), + (1174, 'TIPO'), + (1175, 'TIPO'), + (1176, 'TIPO'), + (1177, 'TIPO'), + (1178, 'TIPO'), + (1179, 'TIPO'), + (1180, 'TIPO'), + (1181, 'TIPO'), + (1182, 'TIPO'), + (1183, 'TIPO'), + (1184, 'TIPO'), + (1185, 'TIPO'), + (1186, 'TIPO'), + (1187, 'TIPO'), + (1188, 'TIPO'), + (1189, 'TIPO'), + (1190, 'TIPO'), + (1191, 'TIPO'), + (1192, 'TIPO'), + (1193, 'TIPO'), + (1194, 'TIPO'), + (1195, 'TIPO'), + (1196, 'TIPO'), + (1197, 'TIPO'), + (1198, 'TIPO'), + (1199, 'TIPO'), + (1200, 'TIPO'), + (1201, 'TIPO'), + (1202, 'TIPO'), + (1203, 'TIPO'), + (1204, 'TIPO'), + (1205, 'TIPO'), + (1206, 'TIPO'), + (1207, 'TIPO'), + (1208, 'TIPO'), + (1209, 'TIPO'), + (1210, 'TIPO'), + (1211, 'TIPO'), + (1212, 'TIPO'), + (1213, 'TIPO'), + (1214, 'TIPO'), + (1215, 'TIPO'), + (1216, 'TIPO'), + (1217, 'TIPO'), + (1218, 'TIPO'), + (1219, 'TIPO'), + (1220, 'TIPO'), + (1221, 'TIPO'), + (1222, 'TIPO'), + (1223, 'TIPO'), + (1224, 'TIPO'), + (1225, 'TIPO'), + (1226, 'TIPO'), + (1227, 'TIPO'), + (1228, 'TIPO'), + (1229, 'TIPO'), + (1230, 'TIPO'), + (1231, 'TIPO'), + (1232, 'TIPO'), + (1233, 'TIPO'), + (1234, 'TIPO'), + (1235, 'TIPO'), + (1236, 'TIPO'), + (1237, 'TIPO'), + (1238, 'TIPO'), + (1239, 'TIPO'), + (1240, 'TIPO'), + (1241, 'TIPO'), + (1242, 'TIPO'), + (1243, 'TIPO'), + (1244, 'TIPO'), + (1245, 'TIPO'), + (1246, 'TIPO'), + (1247, 'TIPO'), + (1248, 'TIPO'), + (1249, 'TIPO'), + (1250, 'TIPO'), + (1251, 'TIPO'), + (1252, 'TIPO'), + (1253, 'TIPO'), + (1254, 'TIPO'), + (1255, 'TIPO'), + (1256, 'TIPO'), + (1257, 'TIPO'), + (1258, 'TIPO'), + (1259, 'TIPO'), + (1260, 'TIPO'), + (1261, 'TIPO'), + (1262, 'TIPO'), + (1263, 'TIPO'), + (1264, 'TIPO'), + (1265, 'TIPO'), + (1266, 'TIPO'), + (1267, 'TIPO'), + (1268, 'TIPO'), + (1269, 'TIPO'), + (1270, 'TIPO'), + (1271, 'TIPO'), + (1272, 'TIPO'), + (1273, 'TIPO'), + (1274, 'TIPO'), + (1275, 'TIPO'), + (1276, 'TIPO'), + (1277, 'TIPO'), + (1278, 'TIPO'), + (1279, 'TIPO'), + (1280, 'TIPO'), + (1281, 'TIPO'), + (1282, 'TIPO'), + (1283, 'TIPO'), + (1284, 'TIPO'), + (1285, 'TIPO'), + (1286, 'TIPO'), + (1287, 'TIPO'), + (1288, 'TIPO'), + (1289, 'TIPO'), + (1290, 'TIPO'), + (1291, 'TIPO'), + (1292, 'TIPO'), + (1293, 'TIPO'), + (1294, 'TIPO'), + (1295, 'TIPO'), + (1296, 'TIPO'), + (1297, 'TIPO'), + (1298, 'TIPO'), + (1299, 'TIPO'), + (1300, 'TIPO'), + (1301, 'TIPO'), + (1302, 'TIPO'), + (1303, 'TIPO'), + (1304, 'TIPO'), + (1305, 'TIPO'), + (1306, 'TIPO'), + (1307, 'TIPO'), + (1308, 'TIPO'), + (1309, 'TIPO'), + (1310, 'TIPO'), + (1311, 'TIPO'), + (1312, 'TIPO'), + (1313, 'TIPO'), + (1314, 'TIPO'), + (1315, 'TIPO'), + (1316, 'TIPO'), + (1317, 'TIPO'), + (1318, 'TIPO'), + (1319, 'TIPO'), + (1320, 'TIPO'), + (1321, 'TIPO'), + (1322, 'TIPO'), + (1323, 'TIPO'), + (1324, 'TIPO'), + (1325, 'TIPO'), + (1326, 'TIPO'), + (1327, 'TIPO'), + (1328, 'TIPO'), + (1329, 'TIPO'), + (1330, 'TIPO'), + (1331, 'TIPO'), + (1332, 'TIPO'), + (1333, 'TIPO'), + (1334, 'TIPO'), + (1335, 'TIPO'), + (1336, 'TIPO'), + (1337, 'TIPO'), + (1338, 'TIPO'), + (1339, 'TIPO'), + (1340, 'TIPO'), + (1341, 'TIPO'), + (1342, 'TIPO'), + (1343, 'TIPO'), + (1344, 'TIPO'), + (1345, 'TIPO'), + (1346, 'TIPO'), + (1347, 'TIPO'), + (1348, 'TIPO'), + (1349, 'TIPO'), + (1350, 'TIPO'), + (1351, 'TIPO'), + (1352, 'TIPO'), + (1353, 'TIPO'), + (1354, 'TIPO'), + (1355, 'TIPO'), + (1356, 'TIPO'), + (1357, 'TIPO'), + (1358, 'TIPO'), + (1359, 'TIPO'), + (1360, 'TIPO'), + (1361, 'TIPO'), + (1362, 'TIPO'), + (1363, 'TIPO'), + (1364, 'TIPO'), + (1365, 'TIPO'), + (1366, 'TIPO'), + (1367, 'TIPO'), + (1368, 'TIPO'), + (1369, 'TIPO'), + (1370, 'TIPO'), + (1371, 'TIPO'), + (1372, 'TIPO'), + (1373, 'TIPO'), + (1374, 'TIPO'), + (1375, 'TIPO'), + (1376, 'TIPO'), + (1377, 'TIPO'), + (1378, 'TIPO'), + (1379, 'TIPO'), + (1380, 'TIPO'), + (1381, 'TIPO'), + (1382, 'TIPO'), + (1383, 'TIPO'), + (1384, 'TIPO'), + (1385, 'TIPO'), + (1386, 'TIPO'), + (1387, 'TIPO'), + (1388, 'TIPO'), + (1389, 'TIPO'), + (1390, 'TIPO'), + (1391, 'TIPO'), + (1392, 'TIPO'), + (1393, 'TIPO'), + (1394, 'TIPO'), + (1395, 'TIPO'), + (1396, 'TIPO'), + (1397, 'TIPO'), + (1398, 'TIPO'), + (1399, 'TIPO'), + (1400, 'TIPO'), + (1401, 'TIPO'), + (1402, 'TIPO'), + (1403, 'TIPO'), + (1404, 'TIPO'), + (1405, 'TIPO'), + (1406, 'TIPO'), + (1407, 'TIPO'), + (1408, 'TIPO'), + (1409, 'TIPO'), + (1410, 'TIPO'), + (1411, 'TIPO'), + (1412, 'TIPO'), + (1413, 'TIPO'), + (1414, 'TIPO'), + (1415, 'TIPO'), + (1416, 'TIPO'), + (1417, 'TIPO'), + (1418, 'TIPO'), + (1419, 'TIPO'), + (1420, 'TIPO'), + (1421, 'TIPO'), + (1422, 'TIPO'), + (1423, 'TIPO'), + (1424, 'TIPO'), + (1425, 'TIPO'), + (1426, 'TIPO'), + (1427, 'TIPO'), + (1428, 'TIPO'), + (1429, 'TIPO'), + (1430, 'TIPO'), + (1431, 'TIPO'), + (1432, 'TIPO'), + (1433, 'TIPO'), + (1434, 'TIPO'), + (1435, 'TIPO'), + (1436, 'TIPO'), + (1437, 'TIPO'), + (1438, 'TIPO'), + (1439, 'TIPO'), + (1440, 'TIPO'), + (1441, 'TIPO'), + (1442, 'TIPO'), + (1443, 'TIPO'), + (1444, 'TIPO'), + (1445, 'TIPO'), + (1446, 'TIPO'), + (1447, 'TIPO'), + (1448, 'TIPO'), + (1449, 'TIPO'), + (1450, 'TIPO'), + (1451, 'TIPO'), + (1452, 'TIPO'), + (1453, 'TIPO'), + (1454, 'TIPO'), + (1455, 'TIPO'), + (1456, 'TIPO'), + (1457, 'TIPO'), + (1458, 'TIPO'), + (1459, 'TIPO'), + (1460, 'TIPO'), + (1461, 'TIPO'), + (1462, 'TIPO'), + (1463, 'TIPO'), + (1464, 'TIPO'), + (1465, 'TIPO'), + (1466, 'TIPO'), + (1467, 'TIPO'), + (1468, 'TIPO'), + (1469, 'TIPO'), + (1470, 'TIPO'), + (1471, 'TIPO'), + (1472, 'TIPO'), + (1473, 'TIPO'), + (1474, 'TIPO'), + (1475, 'TIPO'), + (1476, 'TIPO'), + (1477, 'TIPO'), + (1478, 'TIPO'), + (1479, 'TIPO'), + (1480, 'TIPO'), + (1481, 'TIPO'), + (1482, 'TIPO'), + (1483, 'TIPO'), + (1484, 'TIPO'), + (1485, 'TIPO'), + (1486, 'TIPO'), + (1487, 'TIPO'), + (1488, 'TIPO'), + (1489, 'TIPO'), + (1490, 'TIPO'), + (1491, 'TIPO'), + (1492, 'TIPO'), + (1493, 'TIPO'), + (1494, 'TIPO'), + (1495, 'TIPO'), + (1496, 'TIPO'), + (1497, 'TIPO'), + (1498, 'TIPO'), + (1499, 'TIPO'), + (1500, 'TIPO'), + (1501, 'TIPO'), + (1502, 'TIPO'), + (1503, 'TIPO'), + (1504, 'TIPO'), + (1505, 'TIPO'), + (1506, 'TIPO'), + (1507, 'TIPO'), + (1508, 'TIPO'), + (1509, 'TIPO'), + (1510, 'TIPO'), + (1511, 'TIPO'), + (1512, 'TIPO'), + (1513, 'TIPO'), + (1514, 'TIPO'), + (1515, 'TIPO'), + (1516, 'TIPO'), + (1517, 'TIPO'), + (1518, 'TIPO'), + (1519, 'TIPO'), + (1520, 'TIPO'), + (1521, 'TIPO'), + (1522, 'TIPO'), + (1523, 'TIPO'), + (1524, 'TIPO'), + (1525, 'TIPO'), + (1526, 'TIPO'), + (1527, 'TIPO'), + (1528, 'TIPO'), + (1529, 'TIPO'), + (1530, 'TIPO'), + (1531, 'TIPO'), + (1532, 'TIPO'), + (1533, 'TIPO'), + (1534, 'TIPO'), + (1535, 'TIPO'), + (1536, 'TIPO'), + (1537, 'TIPO'), + (1538, 'TIPO'), + (1539, 'TIPO'), + (1540, 'TIPO'), + (1541, 'TIPO'), + (1542, 'TIPO'), + (1543, 'TIPO'), + (1544, 'TIPO'), + (1545, 'TIPO'), + (1546, 'TIPO'), + (1547, 'TIPO'), + (1548, 'TIPO'), + (1549, 'TIPO'), + (1550, 'TIPO'), + (1551, 'TIPO'), + (1552, 'TIPO'), + (1553, 'TIPO'), + (1554, 'TIPO'), + (1555, 'TIPO'), + (1556, 'TIPO'), + (1557, 'TIPO'), + (1558, 'TIPO'), + (1559, 'TIPO'), + (1560, 'TIPO'), + (1561, 'TIPO'), + (1562, 'TIPO'), + (1563, 'TIPO'), + (1564, 'TIPO'), + (1565, 'TIPO'), + (1566, 'TIPO'), + (1567, 'TIPO'), + (1568, 'TIPO'), + (1569, 'TIPO'), + (1570, 'TIPO'), + (1571, 'TIPO'), + (1572, 'TIPO'), + (1573, 'TIPO'), + (1574, 'TIPO'), + (1575, 'TIPO'), + (1576, 'TIPO'), + (1577, 'TIPO'), + (1578, 'TIPO'), + (1579, 'TIPO'), + (1580, 'TIPO'), + (1581, 'TIPO'), + (1582, 'TIPO'), + (1583, 'TIPO'), + (1584, 'TIPO'), + (1585, 'TIPO'), + (1586, 'TIPO'), + (1587, 'TIPO'), + (1588, 'TIPO'), + (1589, 'TIPO'), + (1590, 'TIPO'), + (1591, 'TIPO'), + (1592, 'TIPO'), + (1593, 'TIPO'), + (1594, 'TIPO'), + (1595, 'TIPO'), + (1596, 'TIPO'), + (1597, 'TIPO'), + (1598, 'TIPO'), + (1599, 'TIPO'), + (1600, 'TIPO'), + (1601, 'TIPO'), + (1602, 'TIPO'), + (1603, 'TIPO'), + (1604, 'TIPO'), + (1605, 'TIPO'), + (1606, 'TIPO'), + (1607, 'TIPO'), + (1608, 'TIPO'), + (1609, 'TIPO'), + (1610, 'TIPO'), + (1611, 'TIPO'), + (1612, 'TIPO'), + (1613, 'TIPO'), + (1614, 'TIPO'), + (1615, 'TIPO'), + (1616, 'TIPO'), + (1617, 'TIPO'), + (1618, 'TIPO'), + (1619, 'TIPO'), + (1620, 'TIPO'), + (1621, 'TIPO'), + (1622, 'TIPO'), + (1623, 'TIPO'), + (1624, 'TIPO'), + (1625, 'TIPO'), + (1626, 'TIPO'), + (1627, 'TIPO'), + (1628, 'TIPO'), + (1629, 'TIPO'), + (1630, 'TIPO'), + (1631, 'TIPO'), + (1632, 'TIPO'), + (1633, 'TIPO'), + (1634, 'TIPO'), + (1635, 'TIPO'), + (1636, 'TIPO'), + (1637, 'TIPO'), + (1638, 'TIPO'), + (1639, 'TIPO'), + (1640, 'TIPO'), + (1641, 'TIPO'), + (1642, 'TIPO'), + (1643, 'TIPO'), + (1644, 'TIPO'), + (1645, 'TIPO'), + (1646, 'TIPO'), + (1647, 'TIPO'), + (1648, 'TIPO'), + (1649, 'TIPO'), + (1650, 'TIPO'), + (1651, 'TIPO'), + (1652, 'TIPO'), + (1653, 'TIPO'), + (1654, 'TIPO'), + (1655, 'TIPO'), + (1656, 'TIPO'), + (1657, 'TIPO'), + (1658, 'TIPO'), + (1659, 'TIPO'), + (1660, 'TIPO'), + (1661, 'TIPO'), + (1662, 'TIPO'), + (1663, 'TIPO'), + (1664, 'TIPO'), + (1665, 'TIPO'), + (1666, 'TIPO'), + (1667, 'TIPO'), + (1668, 'TIPO'), + (1669, 'TIPO'), + (1670, 'TIPO'), + (1671, 'TIPO'), + (1672, 'TIPO'), + (1673, 'TIPO'), + (1674, 'TIPO'), + (1675, 'TIPO'), + (1676, 'TIPO'), + (1677, 'TIPO'), + (1678, 'TIPO'), + (1679, 'TIPO'), + (1680, 'TIPO'), + (1681, 'TIPO'), + (1682, 'TIPO'), + (1683, 'TIPO'), + (1684, 'TIPO'), + (1685, 'TIPO'), + (1686, 'TIPO'), + (1687, 'TIPO'), + (1688, 'TIPO'), + (1689, 'TIPO'), + (1690, 'TIPO'), + (1691, 'TIPO'), + (1692, 'TIPO'), + (1693, 'TIPO'), + (1694, 'TIPO'), + (1695, 'TIPO'), + (1696, 'TIPO'), + (1697, 'TIPO'), + (1698, 'TIPO'), + (1699, 'TIPO'), + (1700, 'TIPO'), + (1701, 'TIPO'), + (1702, 'TIPO'), + (1703, 'TIPO'), + (1704, 'TIPO'), + (1705, 'TIPO'), + (1706, 'TIPO'), + (1707, 'TIPO'), + (1708, 'TIPO'), + (1709, 'TIPO'), + (1710, 'TIPO'), + (1711, 'TIPO'), + (1712, 'TIPO'), + (1713, 'TIPO'), + (1714, 'TIPO'), + (1715, 'TIPO'), + (1716, 'TIPO'), + (1717, 'TIPO'), + (1718, 'TIPO'), + (1719, 'TIPO'), + (1720, 'TIPO'), + (1721, 'TIPO'), + (1722, 'TIPO'), + (1723, 'TIPO'), + (1724, 'TIPO'), + (1725, 'TIPO'), + (1726, 'TIPO'), + (1727, 'TIPO'), + (1728, 'TIPO'), + (1729, 'TIPO'), + (1730, 'TIPO'), + (1731, 'TIPO'), + (1732, 'TIPO'), + (1733, 'TIPO'), + (1734, 'TIPO'), + (1735, 'TIPO'), + (1736, 'TIPO'), + (1737, 'TIPO'), + (1738, 'TIPO'), + (1739, 'TIPO'), + (1740, 'TIPO'), + (1741, 'TIPO'), + (1742, 'TIPO'), + (1743, 'TIPO'), + (1744, 'TIPO'), + (1745, 'TIPO'), + (1746, 'TIPO'), + (1747, 'TIPO'), + (1748, 'TIPO'), + (1749, 'TIPO'), + (1750, 'TIPO'), + (1751, 'TIPO'), + (1752, 'TIPO'), + (1753, 'TIPO'), + (1754, 'TIPO'), + (1755, 'TIPO'), + (1756, 'TIPO'), + (1757, 'TIPO'), + (1758, 'TIPO'), + (1759, 'TIPO'), + (1760, 'TIPO'), + (1761, 'TIPO'), + (1762, 'TIPO'), + (1763, 'TIPO'), + (1764, 'TIPO'), + (1765, 'TIPO'), + (1766, 'TIPO'), + (1767, 'TIPO'), + (1768, 'TIPO'), + (1769, 'TIPO'), + (1770, 'TIPO'), + (1771, 'TIPO'), + (1772, 'TIPO'), + (1773, 'TIPO'), + (1774, 'TIPO'), + (1775, 'TIPO'), + (1776, 'TIPO'), + (1777, 'TIPO'), + (1778, 'TIPO'), + (1779, 'TIPO'), + (1780, 'TIPO'), + (1781, 'TIPO'), + (1782, 'TIPO'), + (1783, 'TIPO'), + (1784, 'TIPO'), + (1785, 'TIPO'), + (1786, 'TIPO'), + (1787, 'TIPO'), + (1788, 'TIPO'), + (1789, 'TIPO'), + (1790, 'TIPO'), + (1791, 'TIPO'), + (1792, 'TIPO'), + (1793, 'TIPO'), + (1794, 'TIPO'), + (1795, 'TIPO'), + (1796, 'TIPO'), + (1797, 'TIPO'), + (1798, 'TIPO'), + (1799, 'TIPO'), + (1800, 'TIPO'), + (1801, 'TIPO'), + (1802, 'TIPO'), + (1803, 'TIPO'), + (1804, 'TIPO'), + (1805, 'TIPO'), + (1806, 'TIPO'), + (1807, 'TIPO'), + (1808, 'TIPO'), + (1809, 'TIPO'), + (1810, 'TIPO'), + (1811, 'TIPO'), + (1812, 'TIPO'), + (1813, 'TIPO'), + (1814, 'TIPO'), + (1815, 'TIPO'), + (1816, 'TIPO'), + (1817, 'TIPO'), + (1818, 'TIPO'), + (1819, 'TIPO'), + (1820, 'TIPO'), + (1821, 'TIPO'), + (1822, 'TIPO'), + (1823, 'TIPO'), + (1824, 'TIPO'), + (1825, 'TIPO'), + (1826, 'TIPO'), + (1827, 'TIPO'), + (1828, 'TIPO'), + (1829, 'TIPO'), + (1830, 'TIPO'), + (1831, 'TIPO'), + (1832, 'TIPO'), + (1833, 'TIPO'), + (1834, 'TIPO'), + (1835, 'TIPO'), + (1836, 'TIPO'), + (1837, 'TIPO'), + (1838, 'TIPO'), + (1839, 'TIPO'), + (1840, 'TIPO'), + (1841, 'TIPO'), + (1842, 'TIPO'), + (1843, 'TIPO'), + (1844, 'TIPO'), + (1845, 'TIPO'), + (1846, 'TIPO'), + (1847, 'TIPO'), + (1848, 'TIPO'), + (1849, 'TIPO'), + (1850, 'TIPO'), + (1851, 'TIPO'), + (1852, 'TIPO'), + (1853, 'TIPO'), + (1854, 'TIPO'), + (1855, 'TIPO'), + (1856, 'TIPO'), + (1857, 'TIPO'), + (1858, 'TIPO'), + (1859, 'TIPO'), + (1860, 'TIPO'), + (1861, 'TIPO'), + (1862, 'TIPO'), + (1863, 'TIPO'), + (1864, 'TIPO'), + (1865, 'TIPO'), + (1866, 'TIPO'), + (1867, 'TIPO'), + (1868, 'TIPO'), + (1869, 'TIPO'), + (1870, 'TIPO'), + (1871, 'TIPO'), + (1872, 'TIPO'), + (1873, 'TIPO'), + (1874, 'TIPO'), + (1875, 'TIPO'), + (1876, 'TIPO'), + (1877, 'TIPO'), + (1878, 'TIPO'), + (1879, 'TIPO'), + (1880, 'TIPO'), + (1881, 'TIPO'), + (1882, 'TIPO'), + (1883, 'TIPO'), + (1884, 'TIPO'), + (1885, 'TIPO'), + (1886, 'TIPO'), + (1887, 'TIPO'), + (1888, 'TIPO'), + (1889, 'TIPO'), + (1890, 'TIPO'), + (1891, 'TIPO'), + (1892, 'TIPO'), + (1893, 'TIPO'), + (1894, 'TIPO'), + (1895, 'TIPO'), + (1896, 'TIPO'), + (1897, 'TIPO'), + (1898, 'TIPO'), + (1899, 'TIPO'), + (1900, 'TIPO'), + (1901, 'TIPO'), + (1902, 'TIPO'), + (1903, 'TIPO'), + (1904, 'TIPO'), + (1905, 'TIPO'), + (1906, 'TIPO'), + (1907, 'TIPO'), + (1908, 'TIPO'), + (1909, 'TIPO'), + (1910, 'TIPO'), + (1911, 'TIPO'), + (1912, 'TIPO'), + (1913, 'TIPO'), + (1914, 'TIPO'), + (1915, 'TIPO'), + (1916, 'TIPO'), + (1917, 'TIPO'), + (1918, 'TIPO'), + (1919, 'TIPO'), + (1920, 'TIPO'), + (1921, 'TIPO'), + (1922, 'TIPO'), + (1923, 'TIPO'), + (1924, 'TIPO'), + (1925, 'TIPO'), + (1926, 'TIPO'), + (1927, 'TIPO'), + (1928, 'TIPO'), + (1929, 'TIPO'), + (1930, 'TIPO'), + (1931, 'TIPO'), + (1932, 'TIPO'), + (1933, 'TIPO'), + (1934, 'TIPO'), + (1935, 'TIPO'), + (1936, 'TIPO'), + (1937, 'TIPO'), + (1938, 'TIPO'), + (1939, 'TIPO'), + (1940, 'TIPO'), + (1941, 'TIPO'), + (1942, 'TIPO'), + (1943, 'TIPO'), + (1944, 'TIPO'), + (1945, 'TIPO'), + (1946, 'TIPO'), + (1947, 'TIPO'), + (1948, 'TIPO'), + (1949, 'TIPO'), + (1950, 'TIPO'), + (1951, 'TIPO'), + (1952, 'TIPO'), + (1953, 'TIPO'), + (1954, 'TIPO'), + (1955, 'TIPO'), + (1956, 'TIPO'), + (1957, 'TIPO'), + (1958, 'TIPO'), + (1959, 'TIPO'), + (1960, 'TIPO'), + (1961, 'TIPO'), + (1962, 'TIPO'), + (1963, 'TIPO'), + (1964, 'TIPO'), + (1965, 'TIPO'), + (1966, 'TIPO'), + (1967, 'TIPO'), + (1968, 'TIPO'), + (1969, 'TIPO'), + (1970, 'TIPO'), + (1971, 'TIPO'), + (1972, 'TIPO'), + (1973, 'TIPO'), + (1974, 'TIPO'), + (1975, 'TIPO'), + (1976, 'TIPO'), + (1977, 'TIPO'), + (1978, 'TIPO'), + (1979, 'TIPO'), + (1980, 'TIPO'), + (1981, 'TIPO'), + (1982, 'TIPO'), + (1983, 'TIPO'), + (1984, 'TIPO'), + (1985, 'TIPO'), + (1986, 'TIPO'), + (1987, 'TIPO'), + (1988, 'TIPO'), + (1989, 'TIPO'), + (1990, 'TIPO'), + (1991, 'TIPO'), + (1992, 'TIPO'), + (1993, 'TIPO'), + (1994, 'TIPO'), + (1995, 'TIPO'), + (1996, 'TIPO'), + (1997, 'TIPO'), + (1998, 'TIPO'), + (1999, 'TIPO'), + (2000, 'TIPO'); + +-- +-- Name: parts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: +-- + +ALTER TABLE ONLY parts ADD CONSTRAINT parts_pkey PRIMARY KEY (id); + +-- +-- Name: personas_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: +-- + +ALTER TABLE ONLY personas ADD CONSTRAINT personas_pkey PRIMARY KEY (cedula); + +-- +-- Name: personnes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: +-- + +ALTER TABLE ONLY personnes ADD CONSTRAINT personnes_pkey PRIMARY KEY (cedula); + +-- +-- Name: prueba_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: +-- + +ALTER TABLE ONLY prueba ADD CONSTRAINT prueba_pkey PRIMARY KEY (id); + +-- +-- Name: robots_parts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: +-- + +ALTER TABLE ONLY robots_parts ADD CONSTRAINT robots_parts_pkey PRIMARY KEY (id); + +-- +-- Name: robots_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: +-- + +ALTER TABLE ONLY robots ADD CONSTRAINT robots_pkey PRIMARY KEY (id); + +-- +-- Name: subscriptores_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: +-- + +ALTER TABLE ONLY subscriptores ADD CONSTRAINT subscriptores_pkey PRIMARY KEY (id); + +-- +-- Name: tipo_documento_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: +-- + +ALTER TABLE ONLY tipo_documento ADD CONSTRAINT tipo_documento_pkey PRIMARY KEY (id); + +-- +-- Name: personas_estado_idx; Type: INDEX; Schema: public; Owner: postgres; Tablespace: +-- + +CREATE INDEX personas_estado_idx ON personas USING btree (estado); + +-- +-- Name: robots_parts_parts_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace: +-- + +CREATE INDEX robots_parts_parts_id ON robots_parts USING btree (parts_id); + +-- +-- Name: robots_parts_robots_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace: +-- + +CREATE INDEX robots_parts_robots_id ON robots_parts USING btree (robots_id); + +-- +-- Name: robots_parts_ibfk_1; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY robots_parts ADD CONSTRAINT robots_parts_ibfk_1 FOREIGN KEY (robots_id) REFERENCES robots(id); + +-- +-- Name: robots_parts_ibfk_2; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY robots_parts ADD CONSTRAINT robots_parts_ibfk_2 FOREIGN KEY (parts_id) REFERENCES parts(id); + +-- +-- Name: table_with_string_field; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +DROP TABLE IF EXISTS table_with_string_field; +CREATE TABLE table_with_string_field ( + id integer NOT NULL, + field character varying(70) NOT NULL +); + + +drop type if exists type_enum_size; +create type type_enum_size as enum +( + 'xs', + 's', + 'm', + 'l', + 'xl' +); + +drop table if exists dialect_table; +create table dialect_table +( + field_primary serial not null + constraint dialect_table_pk + primary key, + field_blob text, + field_bit bit, + field_bit_default bit default B'1'::"bit", + field_bigint bigint, + field_bigint_default bigint default 1, + field_boolean boolean, + field_boolean_default boolean default true, + field_char char(10), + field_char_default char(10) default 'ABC'::bpchar, + field_decimal numeric(10,4), + field_decimal_default numeric(10,4) default 14.5678, + field_enum type_enum_size, + field_integer integer, + field_integer_default integer default 1, + field_json json, + field_float numeric(10,4), + field_float_default numeric(10,4) default 14.5678, + field_date date, + field_date_default date default '2018-10-01':: date, + field_datetime timestamp, + field_datetime_default timestamp default '2018-10-01 12:34:56':: timestamp without time zone, + field_time time, + field_time_default time default '12:34:56':: time without time zone, + field_timestamp timestamp, + field_timestamp_default timestamp default '2018-10-01 12:34:56':: timestamp without time zone, + field_mediumint integer, + field_mediumint_default integer default 1, + field_smallint smallint, + field_smallint_default smallint default 1, + field_tinyint smallint, + field_tinyint_default smallint default 1, + field_longtext text, + field_mediumtext text, + field_tinytext text, + field_text text, + field_varchar varchar(10), + field_varchar_default varchar(10) default 'D':: character varying +); + +alter table public.dialect_table OWNER TO postgres; + +create index dialect_table_index +on dialect_table (field_bigint); + +create index dialect_table_two_fields +on dialect_table (field_char, field_char_default); + +create unique index dialect_table_unique +on dialect_table (field_integer); + +drop table if exists dialect_table_remote; +create table dialect_table_remote +( + field_primary serial not null + constraint dialect_table_remote_pk + primary key, + field_text varchar(20) +); +alter table public.dialect_table_remote OWNER TO postgres; + +drop table if exists dialect_table_intermediate; +create table dialect_table_intermediate +( + field_primary_id integer, + field_remote_id integer +); +alter table public.dialect_table_intermediate OWNER TO postgres; + +alter table only dialect_table_intermediate + add constraint dialect_table_intermediate_primary__fk + foreign key (field_primary_id) + references dialect_table (field_primary) + on update cascade on delete restrict; + +alter table only dialect_table_intermediate + add constraint dialect_table_intermediate_remote__fk + foreign key (field_remote_id) + references dialect_table_remote (field_primary); + +-- +-- Name: public; Type: ACL; Schema: -; Owner: postgres +-- + +REVOKE ALL ON SCHEMA public FROM PUBLIC; +REVOKE ALL ON SCHEMA public FROM postgres; +GRANT ALL ON SCHEMA public TO postgres; +GRANT ALL ON SCHEMA public TO PUBLIC; + +-- +-- PostgreSQL database dump complete +-- diff --git a/tests/_data/assets/db/schemas/postgresql_schema_nanobox.sql b/tests/_data/assets/db/schemas/postgresql_schema_nanobox.sql new file mode 100644 index 00000000000..6c7f05feb07 --- /dev/null +++ b/tests/_data/assets/db/schemas/postgresql_schema_nanobox.sql @@ -0,0 +1,7048 @@ +-- +-- PostgreSQL database dump +-- + +SET statement_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SET check_function_bodies = false; +SET client_min_messages = warning; + +-- +-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: +-- + +CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; + +-- +-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: +-- + +COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; + +SET search_path = public, pg_catalog; +SET default_tablespace = ''; +SET default_with_oids = false; + +-- +-- Name: customers; Type: TABLE; Schema: public; Owner: nanobox; Tablespace: +-- + +DROP TABLE IF EXISTS customers; +CREATE TABLE customers ( + id SERIAL, + document_id integer NOT NULL, + customer_id char(15) NOT NULL, + first_name varchar(100) DEFAULT NULL, + last_name varchar(100) DEFAULT NULL, + phone varchar(20) DEFAULT NULL, + email varchar(70) NOT NULL, + instructions varchar(100) DEFAULT NULL, + status CHAR(1) NOT NULL, + birth_date date DEFAULT '1970-01-01', + credit_line decimal(16,2) DEFAULT '0.00', + created_at timestamp NOT NULL, + created_at_user_id integer DEFAULT '0', + PRIMARY KEY (id) +); + +CREATE INDEX customers_document_id_idx ON customers (document_id); +CREATE INDEX customers_customer_id_idx ON customers (customer_id); +CREATE INDEX customers_credit_line_idx ON customers (credit_line); +CREATE INDEX customers_status_idx ON customers (status); + +ALTER TABLE public.customers OWNER TO nanobox; + +-- +-- Name: parts; Type: TABLE; Schema: public; Owner: nanobox; Tablespace: +-- + +DROP TABLE IF EXISTS parts CASCADE; +CREATE TABLE parts ( + id integer NOT NULL, + name character varying(70) NOT NULL +); + +ALTER TABLE public.parts OWNER TO nanobox; + +-- +-- Name: images; Type: TABLE; Schema: public; Owner: nanobox; Tablespace: +-- + +DROP TABLE IF EXISTS images; +CREATE TABLE images ( + id BIGSERIAL, + base64 TEXT +); + +ALTER TABLE public.images OWNER TO nanobox; + +-- +-- Name: personas; Type: TABLE; Schema: public; Owner: nanobox; Tablespace: +-- + +DROP TABLE IF EXISTS personas; +CREATE TABLE personas ( + cedula character(15) NOT NULL, + tipo_documento_id integer NOT NULL, + nombres character varying(100) DEFAULT ''::character varying NOT NULL, + telefono character varying(20) DEFAULT NULL::character varying, + direccion character varying(100) DEFAULT NULL::character varying, + email character varying(50) DEFAULT NULL::character varying, + fecha_nacimiento date DEFAULT '1970-01-01'::date, + ciudad_id integer DEFAULT 0, + creado_at date, + cupo numeric(16,2) NOT NULL, + estado character(1) NOT NULL +); + +ALTER TABLE public.personas OWNER TO nanobox; + +-- +-- Name: personnes; Type: TABLE; Schema: public; Owner: nanobox; Tablespace: +-- + +DROP TABLE IF EXISTS personnes; +CREATE TABLE personnes ( + cedula character(15) NOT NULL, + tipo_documento_id integer NOT NULL, + nombres character varying(100) DEFAULT ''::character varying NOT NULL, + telefono character varying(20) DEFAULT NULL::character varying, + direccion character varying(100) DEFAULT NULL::character varying, + email character varying(50) DEFAULT NULL::character varying, + fecha_nacimiento date DEFAULT '1970-01-01'::date, + ciudad_id integer DEFAULT 0, + creado_at date, + cupo numeric(16,2) NOT NULL, + estado character(1) NOT NULL +); + +ALTER TABLE public.personnes OWNER TO nanobox; + +-- +-- Name: prueba; Type: TABLE; Schema: public; Owner: nanobox; Tablespace: +-- + +DROP TABLE IF EXISTS prueba; +CREATE TABLE prueba ( + id integer NOT NULL, + nombre character varying(120) NOT NULL, + estado character(1) NOT NULL +); + +ALTER TABLE public.prueba OWNER TO nanobox; + +-- +-- Name: prueba_id_seq; Type: SEQUENCE; Schema: public; Owner: nanobox +-- + +DROP SEQUENCE IF EXISTS prueba_id_seq; +CREATE SEQUENCE prueba_id_seq +START WITH 1 +INCREMENT BY 1 +NO MINVALUE +NO MAXVALUE +CACHE 1; + +ALTER TABLE public.prueba_id_seq OWNER TO nanobox; + +-- +-- Name: prueba_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nanobox +-- + +ALTER SEQUENCE prueba_id_seq OWNED BY prueba.id; + +-- +-- Name: prueba_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nanobox +-- + +SELECT pg_catalog.setval('prueba_id_seq', 636, true); + +-- +-- Name: robots; Type: TABLE; Schema: public; Owner: nanobox; Tablespace: +-- + +DROP TABLE IF EXISTS robots CASCADE; +CREATE TABLE robots ( + id integer NOT NULL, + name character varying(70) NOT NULL, + type character varying(32) DEFAULT 'mechanical'::character varying NOT NULL, + year integer DEFAULT 1900 NOT NULL, + datetime timestamp NOT NULL, + deleted timestamp DEFAULT NULL, + text text NOT NULL +); + +ALTER TABLE public.robots OWNER TO nanobox; + +-- +-- Name: robots_id_seq; Type: SEQUENCE; Schema: public; Owner: nanobox +-- + +DROP SEQUENCE IF EXISTS robots_id_seq; +CREATE SEQUENCE robots_id_seq +START WITH 1 +INCREMENT BY 1 +NO MINVALUE +NO MAXVALUE +CACHE 1; + +ALTER TABLE public.robots_id_seq OWNER TO nanobox; + +-- +-- Name: robots_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nanobox +-- + +ALTER SEQUENCE robots_id_seq OWNED BY robots.id; + +-- +-- Name: robots_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nanobox +-- + +SELECT pg_catalog.setval('robots_id_seq', 1, false); + +-- +-- Name: robots_parts; Type: TABLE; Schema: public; Owner: nanobox; Tablespace: +-- + +DROP TABLE IF EXISTS robots_parts; +CREATE TABLE robots_parts ( + id integer NOT NULL, + robots_id integer NOT NULL, + parts_id integer NOT NULL +); + +ALTER TABLE public.robots_parts OWNER TO nanobox; + +-- +-- Name: robots_parts_id_seq; Type: SEQUENCE; Schema: public; Owner: nanobox +-- + +DROP SEQUENCE IF EXISTS robots_parts_id_seq; +CREATE SEQUENCE robots_parts_id_seq +START WITH 1 +INCREMENT BY 1 +NO MINVALUE +NO MAXVALUE +CACHE 1; + +ALTER TABLE public.robots_parts_id_seq OWNER TO nanobox; + +-- +-- Name: robots_parts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nanobox +-- + +ALTER SEQUENCE robots_parts_id_seq OWNED BY robots_parts.id; + +-- +-- Name: robots_parts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nanobox +-- + +SELECT pg_catalog.setval('robots_parts_id_seq', 1, false); + +-- +-- Name: subscriptores; Type: TABLE; Schema: public; Owner: nanobox; Tablespace: +-- + +DROP TABLE IF EXISTS subscriptores; +CREATE TABLE subscriptores ( + id integer NOT NULL, + email character varying(70) NOT NULL, + created_at timestamp without time zone, + status character(1) NOT NULL +); + +ALTER TABLE public.subscriptores OWNER TO nanobox; + +-- +-- Name: subscriptores_id_seq; Type: SEQUENCE; Schema: public; Owner: nanobox +-- + +DROP SEQUENCE IF EXISTS subscriptores_id_seq; +CREATE SEQUENCE subscriptores_id_seq +START WITH 1 +INCREMENT BY 1 +NO MINVALUE +NO MAXVALUE +CACHE 1; + +ALTER TABLE public.subscriptores_id_seq OWNER TO nanobox; + +-- +-- Name: subscriptores_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nanobox +-- + +ALTER SEQUENCE subscriptores_id_seq OWNED BY subscriptores.id; + +-- +-- Name: subscriptores_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nanobox +-- + +SELECT pg_catalog.setval('subscriptores_id_seq', 1, false); + +-- +-- Name: tipo_documento; Type: TABLE; Schema: public; Owner: nanobox; Tablespace: +-- + +DROP TABLE IF EXISTS tipo_documento; +CREATE TABLE tipo_documento ( + id integer NOT NULL, + detalle character varying(32) NOT NULL +); + +ALTER TABLE public.tipo_documento OWNER TO nanobox; + +-- +-- Name: tipo_documento_id_seq; Type: SEQUENCE; Schema: public; Owner: nanobox +-- + +DROP SEQUENCE IF EXISTS tipo_documento_id_seq; +CREATE SEQUENCE tipo_documento_id_seq +START WITH 1 +INCREMENT BY 1 +NO MINVALUE +NO MAXVALUE +CACHE 1; + +-- +-- Name: foreign_key_parent; Type: TABLE; Schema: public; Owner: nanobox; Tablespace: +-- + +DROP TABLE IF EXISTS foreign_key_parent; +CREATE TABLE foreign_key_parent ( + id SERIAL, + name character varying(70) NOT NULL, + refer_int integer NOT NULL, + PRIMARY KEY (id), + UNIQUE (refer_int) +); + +ALTER TABLE public.foreign_key_parent OWNER TO nanobox; + +-- +-- Name: ph_select; Type: TABLE TABLE; Schema: public; Owner: nanobox; Tablespace: +-- + +DROP TABLE IF EXISTS ph_select; +CREATE TABLE ph_select ( + sel_id SERIAL, + sel_name character varying(16) NOT NULL, + sel_text character varying(32) DEFAULT NULL, + PRIMARY KEY (sel_id) +); + +INSERT INTO ph_select (sel_id, sel_name, sel_text) VALUES +(1, 'Sun', 'The one and only'), +(2, 'Mercury', 'Cold and hot'), +(3, 'Venus', 'Yeah baby she''s got it'), +(4, 'Earth', 'Home'), +(5, 'Mars', 'The God of War'), +(6, 'Jupiter', NULL), +(7, 'Saturn', 'A car'), +(8, 'Uranus', 'Loads of jokes for this one'); + +ALTER TABLE public.ph_select OWNER TO nanobox; + +-- +-- Name: foreign_key_child; Type: TABLE; Schema: public; Owner: nanobox; Tablespace: +-- + +DROP TABLE IF EXISTS foreign_key_child; +CREATE TABLE foreign_key_child ( + id SERIAL, + name character varying(70) NOT NULL, + child_int integer NOT NULL, + PRIMARY KEY (id), + UNIQUE (child_int) +); + +ALTER TABLE public.foreign_key_child OWNER TO nanobox; +ALTER TABLE public.tipo_documento_id_seq OWNER TO nanobox; + +ALTER TABLE foreign_key_child ADD CONSTRAINT test_describeReferences FOREIGN KEY (child_int) REFERENCES foreign_key_parent (refer_int) ON UPDATE CASCADE ON DELETE RESTRICT; + +-- +-- Name: tipo_documento_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nanobox +-- + +ALTER SEQUENCE tipo_documento_id_seq OWNED BY tipo_documento.id; + +-- +-- Name: tipo_documento_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nanobox +-- + +SELECT pg_catalog.setval('tipo_documento_id_seq', 1, false); + +-- +-- Name: id; Type: DEFAULT; Schema: public; Owner: nanobox +-- + +ALTER TABLE ONLY prueba ALTER COLUMN id SET DEFAULT nextval('prueba_id_seq'::regclass); + +-- +-- Name: id; Type: DEFAULT; Schema: public; Owner: nanobox +-- + +ALTER TABLE ONLY robots ALTER COLUMN id SET DEFAULT nextval('robots_id_seq'::regclass); + +-- +-- Name: id; Type: DEFAULT; Schema: public; Owner: nanobox +-- + +ALTER TABLE ONLY robots_parts ALTER COLUMN id SET DEFAULT nextval('robots_parts_id_seq'::regclass); + +-- +-- Name: id; Type: DEFAULT; Schema: public; Owner: nanobox +-- + +ALTER TABLE ONLY subscriptores ALTER COLUMN id SET DEFAULT nextval('subscriptores_id_seq'::regclass); + +-- +-- Name: id; Type: DEFAULT; Schema: public; Owner: nanobox +-- + +ALTER TABLE ONLY tipo_documento ALTER COLUMN id SET DEFAULT nextval('tipo_documento_id_seq'::regclass); + +-- +-- Data for Name: parts; Type: TABLE DATA; Schema: public; Owner: nanobox +-- + +INSERT INTO parts (id, name) VALUES +(1, 'Head'), +(2, 'Body'), +(3, 'Arms'), +(4, 'Legs'), +(5, 'CPU'); + +-- +-- Data for Name: personas; Type: TABLE DATA; Schema: public; Owner: nanobox +-- + +INSERT INTO personas (cedula, tipo_documento_id, nombres, telefono, direccion, email, fecha_nacimiento, ciudad_id, creado_at, cupo, estado) VALUES +(1, 3, 'HUANG ZHENGQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-18', 6930.00, 'I'), +(100, 1, 'USME FERNANDEZ JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-04-15', 439480.00, 'A'), +(1003, 8, 'SINMON PEREZ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-25', 468610.00, 'A'), +(1009, 8, 'ARCINIEGAS Y VILLAMIZAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-08-12', 967680.00, 'A'), +(101, 1, 'CRANE DE NARVAEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-06-09', 790540.00, 'A'), +(1011, 8, 'EL EVENTO', 191821112, 'CRA 25 CALLE 100', '596@terra.com.co', '2011-02-03', 127591, '2011-05-24', 820390.00, 'A'), +(1020, 7, 'OSPINA YOLANDA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-02', 222970.00, 'A'), +(1025, 7, 'CHEMIPLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', 918670.00, 'A'), +(1034, 1, 'TAXI FILMS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-09-01', 962580.00, 'A'), +(104, 1, 'CASTELLANOS JIMENEZ NOE', 191821112, 'CRA 25 CALLE 100', '127@yahoo.es', '2011-02-03', 127591, '2011-10-05', 95230.00, 'A'), +(1046, 3, 'JACQUET PIERRE MICHEL ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 263489, '2011-07-23', 90810.00, 'A'), +(1048, 5, 'SPOERER VELEZ CARLOS JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-02-03', 184920.00, 'A'), +(1049, 3, 'SIDNEI DA SILVA LUIZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117630, '2011-07-02', 850180.00, 'A'), +(105, 1, 'HERRERA SEQUERA ALVARO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-26', 77390.00, 'A'), +(1050, 3, 'CAVALCANTI YUE CARLA HANLI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-31', 696130.00, 'A'), +(1052, 1, 'BARRETO RIVAS ELKIN MARTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 131508, '2011-09-19', 562160.00, 'A'), +(1053, 3, 'WANDERLEY ANTONIO ERNESTO THOME', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150617, '2011-01-31', 20490.00, 'A'), +(1054, 3, 'HE SHAN', 191821112, 'CRA 25 CALLE 100', '715@yahoo.es', '2011-02-03', 132958, '2010-10-05', 415970.00, 'A'), +(1055, 3, 'ZHRNG XIM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-05', 18380.00, 'A'), +(1057, 3, 'NICKEL GEB. STUTZ KARIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-10-08', 164850.00, 'A'), +(1058, 1, 'VELEZ PAREJA IGNACIO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2011-06-24', 292250.00, 'A'), +(1059, 3, 'GURKE RALF ERNST', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 287570, '2011-06-15', 966700.00, 'A'), +(106, 1, 'ESTRADA LONDONO JUAN SIMON', 191821112, 'CRA 25 CALLE 100', '8@terra.com.co', '2011-02-03', 128579, '2011-03-09', 101260.00, 'A'), +(1060, 1, 'MEDRANO BARRIOS WILSON', 191821112, 'CRA 25 CALLE 100', '479@facebook.com', '2011-02-03', 132775, '2011-06-18', 956740.00, 'A'), +(1061, 1, 'GERDTS PORTO HANS EDUARDO', 191821112, 'CRA 25 CALLE 100', '140@gmail.com', '2011-02-03', 127591, '2011-05-09', 883590.00, 'A'), +(1062, 1, 'BORGE VISBAL JORGE FIDEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132775, '2011-07-14', 547750.00, 'A'), +(1063, 3, 'GUTIERREZ JOSELYN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-06', 87960.00, 'A'), +(1064, 4, 'OVIEDO PINZON MARYI YULEY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2011-04-21', 796560.00, 'A'), +(1065, 1, 'VILORA SILVA OMAR ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2010-06-09', 718910.00, 'A'), +(1066, 3, 'AGUIAR ROMAN RODRIGO HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126674, '2011-06-28', 204890.00, 'A'), +(1067, 1, 'GOMEZ AGAMEZ ADOLFO DEL CRISTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131105, '2011-06-15', 867730.00, 'A'), +(1068, 3, 'GARRIDO CECILIA', 191821112, 'CRA 25 CALLE 100', '973@yahoo.com.mx', '2011-02-03', 118777, '2010-08-16', 723980.00, 'A'), +(1069, 1, 'JIMENEZ MANJARRES DAVID RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2010-12-17', 16680.00, 'A'), +(107, 1, 'ARANGUREN TEJADA JORGE ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-16', 274110.00, 'A'), +(1070, 3, 'OYARZUN TEJEDA ANDRES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-26', 911490.00, 'A'), +(1071, 3, 'MARIN BUCK RAFAEL ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126180, '2011-05-04', 507400.00, 'A'), +(1072, 3, 'VARGAS JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126674, '2011-07-28', 802540.00, 'A'), +(1073, 3, 'JUEZ JAIRALA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126180, '2010-04-09', 490510.00, 'A'), +(1074, 1, 'APONTE PENSO HERNAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132879, '2011-05-27', 44900.00, 'A'), +(1075, 1, 'PINERES BUSTILLO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126916, '2008-10-29', 752980.00, 'A'), +(1076, 1, 'OTERA OMA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-04-29', 630210.00, 'A'), +(1077, 3, 'CONTRERAS CHINCHILLA JUAN DOMINGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 139844, '2011-06-21', 892110.00, 'A'), +(1078, 1, 'GAMBA LAURENCIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-09-15', 569940.00, 'A'), +(108, 1, 'MUNOZ ARANGO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-01', 66770.00, 'A'), +(1080, 1, 'PRADA ABAUZA CARLOS AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-11-15', 156870.00, 'A'), +(1081, 1, 'PAOLA CAROLINA PINTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-27', 264350.00, 'A'), +(1082, 1, 'PALOMINO HERNANDEZ GERMAN JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-03-22', 851120.00, 'A'), +(1084, 1, 'URIBE DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '602@hotmail.es', '2011-02-03', 127591, '2011-09-07', 759470.00, 'A'), +(1085, 1, 'ARGUELLO CALDERON ARMANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-24', 409660.00, 'A'), +(1087, 1, 'CARVAJAL HERNANDEZ CHRISTIAN ARMANDO', 191821112, 'CRA 25 CALLE 100', '296@yahoo.es', '2011-02-03', 159432, '2011-06-03', 620410.00, 'A'), +(1088, 1, 'CASTRO BLANCO MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150512, '2009-10-08', 792400.00, 'A'), +(1089, 1, 'RIBEROS GUTIERREZ GUSTAVO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-01-27', 100800.00, 'A'), +(109, 1, 'BELTRAN MARIA LUZ DARY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-06', 511510.00, 'A'), +(1091, 4, 'ORTIZ ORTIZ BENIGNO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127538, '2011-08-05', 331540.00, 'A'), +(1092, 3, 'JOHN CHRISTOPHER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-08', 277320.00, 'A'), +(1093, 1, 'PARRA VILLAREAL MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 129499, '2011-08-23', 391980.00, 'A'), +(1094, 1, 'BESGA RODRIGUEZ JUAN JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-09-23', 127960.00, 'A'), +(1095, 1, 'ZAPATA MEZA EDGAR FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-05-19', 463840.00, 'A'), +(1096, 3, 'CORNEJO BRAVO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2010-11-08', 935340.00, 'A'), +('CELL3944', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1099, 1, 'GARCIA PORRAS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-14', 243360.00, 'A'), +(11, 1, 'HERNANDEZ PARDO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-31', 197540.00, 'A'), +(110, 1, 'VANEGAS JULIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-06', 357260.00, 'A'), +(1101, 1, 'QUINTERO BURBANO GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-08-20', 57420.00, 'A'), +(1102, 1, 'BOHORQUEZ AFANADOR CHRISTIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 214610.00, 'A'), +(1103, 1, 'MORA VARGAS JULIO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-29', 900790.00, 'A'), +(1104, 1, 'PINEDA JORGE ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-21', 860110.00, 'A'), +(1105, 1, 'TORO CEBALLOS GONZALO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 129499, '2011-08-18', 598180.00, 'A'), +(1106, 1, 'SCHENIDER TORRES JAIME', 191821112, 'CRA 25 CALLE 100', '85@yahoo.com.mx', '2011-02-03', 127799, '2011-08-11', 410590.00, 'A'), +(1107, 1, 'RUEDA VILLAMIZAR JAIME', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-11-15', 258410.00, 'A'), +(1108, 1, 'RUEDA VILLAMIZAR RICARDO JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129499, '2011-03-22', 60260.00, 'A'), +(1109, 1, 'GOMEZ RODRIGUEZ HERNANDO ARTURO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-06-02', 526080.00, 'A'), +(111, 1, 'FRANCISCO EDUARDO JAIME BOTERO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-09-09', 251770.00, 'A'), +(1110, 1, 'HERNANDEZ MENDEZ EDGAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 129499, '2011-03-22', 449610.00, 'A'), +(1113, 1, 'LEON HERNANDEZ OSCAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129499, '2011-03-21', 992090.00, 'A'), +(1114, 1, 'LIZARAZO CARRENO HUGO ARCENIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2010-12-10', 959490.00, 'A'), +(1115, 1, 'LIAN BARRERA GABRIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-05-30', 821170.00, 'A'), +(1117, 3, 'TELLEZ BEZAN FRANCISCO JAVIER ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-08-21', 673430.00, 'A'), +(1118, 1, 'FUENTES ARIZA DIEGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-09', 684970.00, 'A'), +(1119, 1, 'MOLINA M. ROBINSON', 191821112, 'CRA 25 CALLE 100', '728@hotmail.com', '2011-02-03', 129447, '2010-09-19', 404580.00, 'A'), +(112, 1, 'PATINO PINTO ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-06', 187050.00, 'A'), +(1120, 1, 'ORTIZ DURAN BENIGNO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127538, '2011-08-05', 967970.00, 'A'), +(1121, 1, 'CARVAJAL ALMEIDA LUIS RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2011-06-22', 626140.00, 'A'), +(1122, 1, 'TORRES QUIROGA EDWIN SILVESTRE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 129447, '2011-08-17', 226780.00, 'A'), +(1123, 1, 'VIVIESCAS JAIMES ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-10', 255480.00, 'A'), +(1124, 1, 'MARTINEZ RUEDA JAVIER EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129447, '2011-06-23', 597040.00, 'A'), +(1125, 1, 'ANAYA FLORES JORGE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-06-04', 218790.00, 'A'), +(1126, 3, 'TORRES MARTINEZ ANTONIO JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2010-09-02', 302820.00, 'A'), +(1127, 3, 'CACHO LEVISIER JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 153276, '2009-06-25', 857720.00, 'A'), +(1129, 3, 'ULLOA VALDIVIESO CRISTIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-06-02', 327570.00, 'A'), +(113, 1, 'HIGUERA CALA JAIME ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-27', 179950.00, 'A'), +(1130, 1, 'ARCINIEGAS WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126892, '2011-08-05', 497420.00, 'A'), +(1131, 1, 'BAZA ACUNA JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129447, '2010-12-10', 504410.00, 'A'), +(1132, 3, 'BUIRA ROS CARLOS MARIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-04-27', 29750.00, 'A'), +(1133, 1, 'RODRIGUEZ JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 129447, '2011-06-10', 635560.00, 'A'), +(1134, 1, 'QUIROGA PEREZ NELSON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 129447, '2011-05-18', 88520.00, 'A'), +(1135, 1, 'TATIANA AYALA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127122, '2011-07-01', 535920.00, 'A'), +(1136, 1, 'OSORIO BENEDETTI FABIAN AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2010-10-23', 414060.00, 'A'), +(1139, 1, 'CELIS PINTO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2009-02-25', 964970.00, 'A'), +(114, 1, 'VALDERRAMA CUERVO JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-02', 338590.00, 'A'), +(1140, 1, 'ORTIZ ARENAS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2009-10-21', 613300.00, 'A'), +(1141, 1, 'VALDIVIESO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2009-01-13', 171590.00, 'A'), +(1144, 1, 'LOPEZ CASTILLO NELSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 129499, '2010-09-09', 823110.00, 'A'), +(1145, 1, 'CAVELIER LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126916, '2008-11-29', 389220.00, 'A'), +(1146, 1, 'CAVELIER OTOYA LUIS EDURDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126916, '2010-05-25', 476770.00, 'A'), +(1147, 1, 'GARCIA RUEDA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '111@yahoo.es', '2011-02-03', 133535, '2010-09-12', 216190.00, 'A'), +(1148, 1, 'LADINO GOMEZ OMAR ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-02', 650640.00, 'A'), +(1149, 1, 'CARRENO ORTIZ OSCAR JAVIER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-15', 604630.00, 'A'), +(115, 1, 'NARDEI BONILLO BRUNO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-16', 153110.00, 'A'), +(1150, 1, 'MONTOYA BOZZI MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 129499, '2011-05-12', 71240.00, 'A'), +(1152, 1, 'LORA RICHARD JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-09-15', 497700.00, 'A'), +(1153, 1, 'SILVA PINZON MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '915@hotmail.es', '2011-02-03', 127591, '2011-06-15', 861670.00, 'A'), +(1154, 3, 'GEORGE J A KHALILIEH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-20', 815260.00, 'A'), +(1155, 3, 'CHACON MARIN CARLOS MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-07-26', 491280.00, 'A'), +(1156, 3, 'OCHOA CHEHAB XAVIER ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 126180, '2011-06-13', 10630.00, 'A'), +(1157, 3, 'ARAYA GARRI GABRIEL ALEXIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-09-19', 579320.00, 'A'), +(1158, 3, 'MACCHI ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116366, '2010-04-12', 864690.00, 'A'), +(116, 1, 'GONZALEZ FANDINO JAIME EDUARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-10', 749800.00, 'A'), +(1160, 1, 'CAVALIER LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126916, '2009-08-27', 333390.00, 'A'), +('CELL396', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1161, 3, 'DOMINGUEZ DE OBREGON ILEANA DEL CARMEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 139844, '2011-03-06', 910490.00, 'A'), +(1162, 2, 'FALASCA CLAUDIO ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116511, '2011-07-10', 552280.00, 'A'), +(1163, 3, 'MUTABARUKA PATRICK', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131352, '2011-03-22', 29940.00, 'A'), +(1164, 1, 'DOMINGUEZ ATENCIA JIMMY CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-22', 492860.00, 'A'), +(1165, 4, 'LLANO GONZALEZ ALBERTO MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2010-08-21', 374490.00, 'A'), +(1166, 3, 'LOPEZ ROLDAN JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-07-31', 393860.00, 'A'), +(1167, 1, 'GUTIERREZ DE PINERES JALILIE ARISTIDES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2010-12-09', 845810.00, 'A'), +(1168, 1, 'HEYMANS PIERRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2010-11-08', 47470.00, 'A'), +(1169, 1, 'BOTERO OSORIO RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2009-05-27', 699940.00, 'A'), +(1170, 3, 'GARNHAM POBLETE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 116396, '2011-03-27', 357270.00, 'A'), +(1172, 1, 'DAJUD DURAN JOSE RODRIGO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2009-12-02', 360910.00, 'A'), +(1173, 1, 'MARTINEZ MERCADO PEDRO PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-07-25', 744930.00, 'A'), +(1174, 1, 'GARCIA AMADOR ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-05-19', 641930.00, 'A'), +(1176, 1, 'VARGAS VARELA LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 131568, '2011-08-30', 948410.00, 'A'), +(1178, 1, 'GUTIERRES DE PINERES ARISTIDES', 191821112, 'CRA 25 CALLE 100', '217@hotmail.com', '2011-02-03', 133535, '2011-05-10', 242490.00, 'A'), +(1179, 3, 'LEIZAOLA POZO JIMENA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2011-08-01', 759800.00, 'A'), +(118, 1, 'FERNANDEZ VELOSO PEDRO HERNANDO', 191821112, 'CRA 25 CALLE 100', '452@hotmail.es', '2011-02-03', 128662, '2010-08-06', 198830.00, 'A'), +(1180, 3, 'MARINO PAOLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-12-24', 71520.00, 'A'), +(1181, 1, 'MOLINA VIZCAINO GUSTAVO JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-28', 78220.00, 'A'), +(1182, 3, 'MEDEL GARCIA FABIAN RODRIGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-04-25', 176540.00, 'A'), +(1183, 1, 'LESMES ARIAS RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-09-09', 648020.00, 'A'), +(1184, 1, 'ALCALA MARTINEZ ALFREDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132775, '2010-07-23', 710470.00, 'A'), +(1186, 1, 'LLAMAS FOLIACO LUIS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-07', 910210.00, 'A'), +(1187, 1, 'GUARDO DEL RIO LIBARDO FARID', 191821112, 'CRA 25 CALLE 100', '73@yahoo.com.mx', '2011-02-03', 128662, '2011-09-01', 726050.00, 'A'), +(1188, 3, 'JEFFREY ARTHUR DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 115724, '2011-03-21', 899630.00, 'A'), +(1189, 1, 'DAHL VELEZ JULIANA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126916, '2011-05-23', 320020.00, 'A'), +(119, 3, 'WALESKA DE LIMA ALMEIDA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-05-09', 125240.00, 'A'), +(1190, 3, 'LUIS JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2008-04-04', 901210.00, 'A'), +(1192, 1, 'AZUERO VALENTINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-14', 26310.00, 'A'), +(1193, 1, 'MARQUEZ GALINDO MAURICIO JAVIER', 191821112, 'CRA 25 CALLE 100', '729@yahoo.es', '2011-02-03', 131105, '2011-05-13', 493560.00, 'A'), +(1195, 1, 'NIETO FRANCO JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '707@yahoo.com', '2011-02-03', 127591, '2011-07-30', 463790.00, 'A'), +(1196, 3, 'ESTEVES JOAQUIM LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-04-05', 152270.00, 'A'), +(1197, 4, 'BARRERO KAREN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-12', 369990.00, 'A'), +(1198, 1, 'CORRALES GUZMAN DELIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127689, '2011-08-03', 393120.00, 'A'), +(1199, 1, 'CUELLAR TOCO EDGAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127531, '2011-09-20', 855640.00, 'A'), +(12, 1, 'MARIN PRIETO FREDY NELSON ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-23', 641210.00, 'A'), +(120, 1, 'LOPEZ JARAMILLO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2009-04-17', 29680.00, 'A'), +(1200, 3, 'SCHULTER ACHIM', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 291002, '2010-05-21', 98860.00, 'A'), +(1201, 3, 'HOWELL LAURENCE ADRIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 286785, '2011-05-22', 927350.00, 'A'), +(1202, 3, 'ALCAZAR ESCARATE JAIME PATRICIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-08-25', 340160.00, 'A'), +(1203, 3, 'HIDALGO FUENZALIDA GABRIEL RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-03', 918780.00, 'A'), +(1206, 1, 'VANEGAS HENAO ORLANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-27', 832910.00, 'A'), +(1207, 1, 'PENARANDA ARIAS RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-19', 832710.00, 'A'), +(1209, 1, 'LEZAMA CERVERA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2011-09-14', 825980.00, 'A'), +(121, 1, 'PULIDO JIMENEZ OSCAR HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-29', 772700.00, 'A'), +(1211, 1, 'TRUJILLO BOCANEGRA HAROL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127538, '2011-05-27', 199260.00, 'A'), +(1212, 1, 'ALVAREZ TORRES MARIO RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-08-15', 589960.00, 'A'), +(1213, 1, 'CORRALES VARON BELMER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-26', 352030.00, 'A'), +(1214, 3, 'CUEVAS RODRIGUEZ MANUELA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-30', 990250.00, 'A'), +(1216, 1, 'LOPEZ EDICSON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-31', 505210.00, 'A'), +(1217, 3, 'GARCIA PALOMARES JUAN JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-07-31', 840440.00, 'A'), +(1218, 1, 'ARCINIEGAS NARANJO RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127492, '2010-12-17', 686610.00, 'A'), +(122, 1, 'GONZALEZ RIANO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128031, '2011-08-05', 774450.00, 'A'), +(1220, 1, 'GARCIA GUTIERREZ WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-06-20', 498680.00, 'A'), +(1221, 3, 'GOMEZ DE ALONSO ANGELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-27', 758300.00, 'A'), +(1222, 1, 'MEDINA QUIROGA JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127538, '2011-01-16', 295480.00, 'A'), +(1224, 1, 'ARCILA CORREA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-03-20', 125900.00, 'A'), +(1225, 1, 'QUIJANO REYES CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2010-04-08', 22100.00, 'A'), +(157, 1, 'ORTIZ RIOS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-12', 365330.00, 'A'), +(1226, 1, 'VARGAS GALLEGO JAIRO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2009-07-30', 732820.00, 'A'), +(1228, 3, 'NAPANGA MIRENGHI MARTIN', 191821112, 'CRA 25 CALLE 100', '153@yahoo.es', '2011-02-03', 132958, '2011-02-08', 790400.00, 'A'), +(123, 1, 'LAMUS CASTELLANOS ANDRES RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-11', 554160.00, 'A'), +(1230, 1, 'RIVEROS PINEROS JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127492, '2011-09-25', 422220.00, 'A'), +(1231, 3, 'ESSER JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127327, '2011-04-01', 635060.00, 'A'), +(1232, 3, 'DOMINGUEZ MORA MAURICIO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-22', 908630.00, 'A'), +(1233, 3, 'MOLINA FERNANDEZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-05-28', 637990.00, 'A'), +(1234, 3, 'BELLO DANIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 196234, '2010-09-04', 464040.00, 'A'), +(1235, 3, 'BENADAVA GUEVARA DAVID ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-05-18', 406240.00, 'A'), +(1236, 3, 'RODRIGUEZ MATOS ROBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-03-22', 639070.00, 'A'), +(1237, 3, 'TAPIA ALARCON PATRICIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2010-07-06', 976620.00, 'A'), +(1239, 3, 'VERCHERE ALFONSO CHRISTIAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2010-08-23', 899600.00, 'A'), +(1241, 1, 'ESPINEL LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128206, '2009-03-09', 302860.00, 'A'), +(1242, 3, 'VERGARA FERREIRA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-03', 713310.00, 'A'), +(1243, 3, 'ZUMARRAGA SIRVENT CRSTINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-08-24', 657950.00, 'A'), +(1244, 4, 'ESCORCIA VASQUEZ TOMAS', 191821112, 'CRA 25 CALLE 100', '354@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', 149830.00, 'A'), +(1245, 4, 'PARAMO CUENCA KELLY LORENA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127492, '2011-05-04', 775300.00, 'A'), +(1246, 4, 'PEREZ LOPEZ VERONICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-07-11', 426990.00, 'A'), +(1247, 4, 'CHAPARRO RODRIGUEZ DANIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-08', 809070.00, 'A'), +(1249, 4, 'DIAZ MARTINEZ MARIA CAROLINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2011-05-30', 394740.00, 'A'), +(125, 1, 'CALDON RODRIGUEZ JAIME ARIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126968, '2011-07-29', 574780.00, 'A'), +(1250, 4, 'PINEDA VASQUEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2010-09-03', 680540.00, 'A'), +(1251, 5, 'MATIZ URIBE ANGELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-12-25', 218470.00, 'A'), +(1253, 1, 'ZAMUDIO RICAURTE JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126892, '2011-08-05', 598160.00, 'A'), +(1254, 1, 'ALJURE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-21', 838660.00, 'A'), +(1255, 3, 'ARMESTO AIRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 196234, '2011-01-29', 398840.00, 'A'), +(1257, 1, 'POTES GUEVARA JAIRO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127858, '2011-03-17', 194580.00, 'A'), +(1258, 1, 'BURBANO QUIROGA RAFAEL', 191821112, 'CRA 25 CALLE 100', '767@facebook.com', '2011-02-03', 127591, '2011-04-07', 538220.00, 'A'), +(1259, 1, 'CARDONA GOMEZ JAVIR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-03-16', 107380.00, 'A'), +(126, 1, 'PULIDO PARDO GUIDO IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-05', 531550.00, 'A'), +(1260, 1, 'LOPERA LEDESMA PABLO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-19', 922240.00, 'A'), +(1263, 1, 'TRIBIN BARRIGA JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-09-02', 525330.00, 'A'), +(1264, 1, 'NAVIA LOPEZ ANDRES FELIPE ', 191821112, 'CRA 25 CALLE 100', '353@hotmail.es', '2011-02-03', 127300, '2011-07-15', 591190.00, 'A'), +(1265, 1, 'CARDONA GOMEZ FABIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2010-11-18', 379940.00, 'A'), +(1266, 1, 'ESCARRIA VILLEGAS ANDRES JULIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-08-19', 126160.00, 'A'), +(1268, 1, 'CASTRO HERNANDEZ ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-03-25', 76260.00, 'A'), +(127, 1, 'RODRIGUEZ RODRIGUEZ GIOVANI FRANCISCO', 191821112, 'CRA 25 CALLE 100', '662@hotmail.es', '2011-02-03', 127591, '2011-09-29', 933390.00, 'A'), +(1270, 1, 'LEAL HERNANDEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', 313610.00, 'A'), +(1272, 1, 'ORTIZ CARDONA WILLIAM ENRIQUE', 191821112, 'CRA 25 CALLE 100', '914@hotmail.com', '2011-02-03', 128662, '2011-09-13', 272150.00, 'A'), +(1273, 1, 'ROMERO VAN GOMPEL HERNAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-09-07', 832960.00, 'A'), +(1274, 1, 'BERMUDEZ LONDONO JHON FREDY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-08-29', 348380.00, 'A'), +(1275, 1, 'URREA ALVAREZ NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-01', 242980.00, 'A'), +(1276, 1, 'VALENCIA LLANOS RODRIGO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-04-11', 169790.00, 'A'), +(1277, 1, 'PAZ VALENCIA GUILLERMO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127300, '2011-08-05', 120020.00, 'A'), +(1278, 1, 'MONROY CORREDOR GERARDO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-06-25', 90700.00, 'A'), +(1279, 1, 'RIOS MEDINA JAVIER ERMINSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-12', 93440.00, 'A'), +(128, 1, 'GALLEGO GUZMAN MARIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-06-25', 72290.00, 'A'), +(1280, 1, 'GARCIA OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-30', 195090.00, 'A'), +(1282, 1, 'MURILLO PESELLIN GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-06-15', 890530.00, 'A'), +(1284, 1, 'DIAZ ALVAREZ JOHNY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-06-25', 164130.00, 'A'), +(1285, 1, 'GARCES BELTRAN RAUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-08-11', 719220.00, 'A'), +(1286, 1, 'MATERON POVEDA LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-25', 103710.00, 'A'), +(1287, 1, 'VALENCIA ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-10-23', 360880.00, 'A'), +(1288, 1, 'PENA AGUDELO JOSE RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 134022, '2011-05-25', 493280.00, 'A'), +(1289, 1, 'CORREA NUNEZ JORGE ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-08-18', 383750.00, 'A'), +(129, 1, 'ALVAREZ RODRIGUEZ IVAN RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2008-01-28', 561290.00, 'A'), +(1291, 1, 'BEJARANO ROSERO FREDDY ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-09', 43400.00, 'A'), +(1292, 1, 'CASTILLO BARRIOS GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-06-17', 900180.00, 'A'), +('CELL401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1296, 1, 'GALVEZ GUTIERREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2010-03-28', 807090.00, 'A'), +(1297, 3, 'CRUZ GARCIA MILTON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 139844, '2011-03-21', 75630.00, 'A'), +(1298, 1, 'VILLEGAS GUTIERREZ JOSE RICARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-11', 956860.00, 'A'), +(13, 1, 'VACA MURCIA JESUS ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-04', 613430.00, 'A'), +(1301, 3, 'BOTTI ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 231989, '2011-04-04', 910640.00, 'A'), +(1302, 3, 'COTINO HUESO LORENZO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-02-02', 803450.00, 'A'), +(1304, 3, 'NESPOLI MANTOVANI LUIZ CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-04-18', 16230.00, 'A'), +(1307, 4, 'AVILA GIL PAULA ANDREA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-19', 711110.00, 'A'), +(1308, 4, 'VALLEJO PINEDA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-12', 323490.00, 'A'), +(1312, 1, 'ROMERO OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-17', 642460.00, 'A'), +(1314, 3, 'LULLIES CONSTANZE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 245206, '2010-06-03', 154970.00, 'A'), +(1315, 1, 'CHAPARRO GUTIERREZ JORGE ADRIANO', 191821112, 'CRA 25 CALLE 100', '284@hotmail.es', '2011-02-03', 127591, '2010-12-02', 325440.00, 'A'), +(1316, 1, 'BARRANTES DISI RICARDO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132879, '2011-07-18', 162270.00, 'A'), +(1317, 3, 'VERDES GAGO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2010-03-10', 835060.00, 'A'), +(1319, 3, 'MARTIN MARTINEZ GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2010-05-26', 937220.00, 'A'), +(1320, 3, 'MOTTURA MASSIMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2008-11-10', 620640.00, 'A'), +(1321, 3, 'RUSSELL TIMOTHY JAMES', 191821112, 'CRA 25 CALLE 100', '502@hotmail.es', '2011-02-03', 145135, '2010-04-16', 291560.00, 'A'), +(1322, 3, 'JAIN TARSEM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 190393, '2011-05-31', 595890.00, 'A'), +(1323, 3, 'ORTEGA CEVALLOS JULIETA ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-30', 104760.00, 'A'), +(1324, 3, 'MULLER PICHAIDA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-05-17', 736130.00, 'A'), +(1325, 3, 'ALVEAR TELLEZ JULIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-01-23', 366390.00, 'A'), +(1327, 3, 'MOYA LATORRE MARCELA CAROLINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-05-17', 18520.00, 'A'), +(1328, 3, 'LAMA ZAROR RODRIGO IGNACIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2010-10-27', 221990.00, 'A'), +(1329, 3, 'HERNANDEZ CIFUENTES MAURICE JEANETTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 139844, '2011-06-22', 54410.00, 'A'), +(133, 1, 'CORDOBA HOYOS JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-20', 966820.00, 'A'), +(1330, 2, 'HOCHKOFLER NOEMI CONSUELO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-27', 606070.00, 'A'), +(1331, 4, 'RAMIREZ BARRERO DANIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 154563, '2011-04-18', 867120.00, 'A'), +(1332, 4, 'DE LEON DURANGO RICARDO JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131105, '2011-09-08', 517400.00, 'A'), +(1333, 4, 'RODRIGUEZ MACIAS IVAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129447, '2011-05-23', 985620.00, 'A'), +(1334, 4, 'GUTIERREZ DE PINERES YANET MARIA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-06-16', 375890.00, 'A'), +(1335, 4, 'GUTIERREZ DE PINERES YANET MARIA GABRIELA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-06-16', 922600.00, 'A'), +(1336, 4, 'CABRALES BECHARA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '708@hotmail.com', '2011-02-03', 131105, '2011-05-13', 485330.00, 'A'), +(1337, 4, 'MEJIA TOBON LUIS DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127662, '2011-08-05', 658860.00, 'A'), +(1338, 3, 'OROS NERCELLES CRISTIAN ANDRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 144215, '2011-04-26', 838310.00, 'A'), +(1339, 3, 'MORENO BRAVO CAROLINA ANDREA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 190393, '2010-12-08', 214950.00, 'A'), +(134, 1, 'GONZALEZ LOPEZ DANIEL ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-08', 178580.00, 'A'), +(1340, 3, 'FERNANDEZ GARRIDO MARCELO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-07-08', 559820.00, 'A'), +(1342, 3, 'SUMEGI IMRE ZOLTAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-16', 91750.00, 'A'), +(1343, 3, 'CALDERON FLANDEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '108@hotmail.com', '2011-02-03', 117002, '2010-12-12', 996030.00, 'A'), +(1345, 3, 'CARBONELL ATCHUGARRY GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116366, '2010-04-12', 536390.00, 'A'), +(1346, 3, 'MONTEALEGRE AGUILAR FEDERICO ', 191821112, 'CRA 25 CALLE 100', '448@yahoo.es', '2011-02-03', 132165, '2011-08-08', 567260.00, 'A'), +(1347, 1, 'HERNANDEZ MANCHEGO CARLOS JULIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-04-28', 227130.00, 'A'), +(1348, 1, 'ARENAS ZARATE FERNEY ARNULFO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127963, '2011-03-26', 433860.00, 'A'), +(1349, 3, 'DELFIM DINIZ PASSOS PINHEIRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 110784, '2010-04-17', 487930.00, 'A'), +(135, 1, 'GARCIA SIMBAQUEBA RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 992420.00, 'A'), +(1350, 3, 'BRAUN VALENZUELA FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-29', 138050.00, 'A'), +(1351, 3, 'LEVIN FIORELLI ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 116366, '2011-04-10', 226470.00, 'A'), +(1353, 3, 'BALTODANO ESQUIVEL LAURA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-08-01', 911660.00, 'A'), +(1354, 4, 'ESCOBAR YEPES ANDREA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-19', 403630.00, 'A'), +(1356, 1, 'GAGELI OSORIO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '228@yahoo.com.mx', '2011-02-03', 128662, '2011-07-14', 205070.00, 'A'), +(1357, 3, 'CABAL ALVAREZ RUBEN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-08-14', 175770.00, 'A'), +(1359, 4, 'HUERFANO JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-04', 790970.00, 'A'), +(136, 1, 'OSORIO RAMIREZ LEONARDO', 191821112, 'CRA 25 CALLE 100', '686@yahoo.es', '2011-02-03', 128662, '2010-05-14', 426380.00, 'A'), +(1360, 4, 'RAMON GARCIA MARIA PAULA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-01', 163890.00, 'A'), +(1362, 30, 'ALVAREZ CLAVIO CARLA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127203, '2011-04-18', 741020.00, 'A'), +(1363, 3, 'SERRA DURAN GERARDO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-03', 365490.00, 'A'), +(1364, 3, 'NORIEGA VALVERDE SILVIA MARCELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132775, '2011-02-27', 604370.00, 'A'), +(1366, 1, 'JARAMILLO LOPEZ ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '269@terra.com.co', '2011-02-03', 127559, '2010-11-08', 813800.00, 'A'), +(1367, 1, 'MAZO ROLDAN CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-04', 292880.00, 'A'), +(1368, 1, 'MURIEL ARCILA MAURICIO HERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-29', 22970.00, 'A'), +(1369, 1, 'RAMIREZ CARLOS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-14', 236230.00, 'A'), +(137, 1, 'LUNA PEREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126881, '2011-08-05', 154640.00, 'A'), +(1370, 1, 'GARCIA GRAJALES PEDRO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128166, '2011-10-09', 112230.00, 'A'), +(1372, 3, 'GARCIA ESCOBAR ANA MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-29', 925670.00, 'A'), +(1373, 3, 'ALVES DIAS CARLOS AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-07', 70940.00, 'A'), +(1374, 3, 'MATTOS CHRISTIANE GARCIA CID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 183024, '2010-08-25', 577700.00, 'A'), +(1376, 1, 'CARVAJAL ROJAS ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-10', 645240.00, 'A'), +(1377, 3, 'MADARIAGA CADIZ CLAUDIO CRISTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-10-04', 199200.00, 'A'), +(1379, 3, 'MARIN YANEZ ALICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-02-20', 703870.00, 'A'), +(138, 1, 'DIAZ AVENDANO MARCELO IVAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-22', 494080.00, 'A'), +(1381, 3, 'COSTA VILLEGAS LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-08-21', 580670.00, 'A'), +(1382, 3, 'DAZA PEREZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 122035, '2009-02-23', 888000.00, 'A'), +(1385, 4, 'RIVEROS ARIAS MARIA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127492, '2011-09-26', 35710.00, 'A'), +(1386, 30, 'TORO GIRALDO MATEO', 191821112, 'CRA 25 CALLE 100', '433@yahoo.com.mx', '2011-02-03', 127591, '2011-07-17', 700730.00, 'A'), +(1387, 4, 'ROJAS YARA LAURA DANIELA MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-31', 396530.00, 'A'), +(1388, 3, 'GALLEGO RODRIGO MARIA PILAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2009-04-19', 880450.00, 'A'), +(1389, 1, 'PANTOJA VELASQUEZ JOSE ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2011-08-05', 212660.00, 'A'), +(139, 1, 'RANCO GOMEZ HERNÁN EDUARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-01-19', 6450.00, 'A'), +(1390, 3, 'VAN DEN BORNE KEES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2010-01-28', 421930.00, 'A'), +(1391, 3, 'MONDRAGON FLORES JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-08-22', 471700.00, 'A'), +(1392, 3, 'BAGELLA MICHELE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-07-27', 92720.00, 'A'), +(1393, 3, 'BISTIANCIC MACHADO ANA INES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 116366, '2010-08-02', 48490.00, 'A'), +(1394, 3, 'BANADOS ORTIZ MARIA PILAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-08-25', 964280.00, 'A'), +(1395, 1, 'CHINDOY CHINDOY HERNANDO', 191821112, 'CRA 25 CALLE 100', '107@terra.com.co', '2011-02-03', 126892, '2011-08-25', 675920.00, 'A'), +(1396, 3, 'SOTO NUNEZ ANDRES ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-10-02', 486760.00, 'A'), +(1397, 1, 'DELGADO MARTINEZ LORGE ELIAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-23', 406040.00, 'A'), +(1398, 1, 'LEON GUEVARA JAVIER ANIBAL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126892, '2011-09-08', 569930.00, 'A'), +(1399, 1, 'ZARAMA BASTIDAS LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126892, '2011-08-05', 631540.00, 'A'), +(14, 1, 'MAGUIN HENNSSEY LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '714@gmail.com', '2011-02-03', 127591, '2011-07-11', 143540.00, 'A'), +(140, 1, 'CARRANZA CUY ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-25', 550010.00, 'A'), +(1401, 3, 'REYNA CASTORENA JOSE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 189815, '2011-08-29', 344970.00, 'A'), +(1402, 1, 'GFALLO BOTERO SERGIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-07-14', 381100.00, 'A'), +(1403, 1, 'ARANGO ARAQUE JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-05-04', 870590.00, 'A'), +(1404, 3, 'LASSNER NORBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118942, '2010-02-28', 209650.00, 'A'), +(1405, 1, 'DURANGO MARIN HECTOR LEON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '1970-02-02', 436480.00, 'A'), +(1407, 1, 'FRANCO CASTANO DIEGO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-06-28', 457770.00, 'A'), +(1408, 1, 'HERNANDEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-05-29', 628550.00, 'A'), +(1409, 1, 'CASTANO DUQUE CARLOS HUGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-03-23', 769410.00, 'A'), +(141, 1, 'CHAMORRO CHEDRAUI SERGIO ALBERTO', 191821112, 'CRA 25 CALLE 100', '922@yahoo.com.mx', '2011-02-03', 127591, '2011-05-07', 730720.00, 'A'), +(1411, 1, 'RAMIREZ MONTOYA ADAMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-04-13', 498880.00, 'A'), +(1412, 1, 'GONZALEZ BENJUMEA OSCAR HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-11-01', 610150.00, 'A'), +(1413, 1, 'ARANGO ACEVEDO WALTER ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-10-07', 554090.00, 'A'), +(1414, 1, 'ARANGO GALLO HUMBERTO LEON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-02-25', 940010.00, 'A'), +(1415, 1, 'VELASQUEZ LUIS GONZALO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-07-06', 37760.00, 'A'), +(1416, 1, 'MIRA AGUILAR FRANCISCO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-30', 368790.00, 'A'), +(1417, 1, 'RIVERA ARISTIZABAL CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-03-02', 730670.00, 'A'), +(1418, 1, 'ARISTIZABAL ROLDAN ANDRES RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-02', 546960.00, 'A'), +(142, 1, 'LOPEZ ZULETA MAURICIO ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-01', 3550.00, 'A'), +(1420, 1, 'ESCORCIA ARAMBURO JUAN MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', 73100.00, 'A'), +(1421, 1, 'CORREA PARRA RICARDO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-05', 737110.00, 'A'), +(1422, 1, 'RESTREPO NARANJO DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-09-15', 466240.00, 'A'), +(1423, 1, 'VELASQUEZ CARLOS JUAN', 191821112, 'CRA 25 CALLE 100', '123@yahoo.com', '2011-02-03', 128662, '2010-06-09', 119880.00, 'A'), +(1424, 1, 'MACIA GONZALEZ ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2010-11-12', 200690.00, 'A'), +(1425, 1, 'BERRIO MEJIA HELBER ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2010-06-04', 643800.00, 'A'), +(1427, 1, 'GOMEZ GUTIERREZ CARLOS ARIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-09-08', 153320.00, 'A'), +(1428, 1, 'RESTREPO LOPEZ JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-12', 915770.00, 'A'), +('CELL4012', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1429, 1, 'BARTH TOBAR LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-02-23', 118900.00, 'A'), +(143, 1, 'MUNERA BEDIYA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-09-21', 825600.00, 'A'), +(1430, 1, 'JIMENEZ VELEZ ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-02-26', 847160.00, 'A'), +(1431, 1, 'TAKAHASHI GAVIRIA NICOLAS KEIICHIRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-13', 879120.00, 'A'), +(1432, 1, 'ESCOBAR JARAMILLO ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-06-10', 854110.00, 'A'), +(1433, 1, 'PALACIO NAVARRO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-08-18', 633200.00, 'A'), +(1434, 1, 'LONDONO MUNOZ ADOLFO LEON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-09-14', 603670.00, 'A'), +(1435, 1, 'PULGARIN JAIME ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2009-11-01', 118730.00, 'A'), +(1436, 1, 'FERRERA ZULUAGA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-07-10', 782630.00, 'A'), +(1437, 1, 'VASQUEZ VELEZ HABACUC', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-27', 557000.00, 'A'), +(1438, 1, 'HENAO PALOMINO DIEGO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2009-05-06', 437080.00, 'A'), +(1439, 1, 'HURTADO URIBE JUAN GONZALO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-01-11', 514400.00, 'A'), +(144, 1, 'ALDANA RODOLFO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '838@yahoo.es', '2011-02-03', 127591, '2011-08-07', 117350.00, 'A'), +(1441, 1, 'URIBE DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2010-11-19', 760610.00, 'A'), +(1442, 1, 'PINEDA GALIANO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-07-29', 20770.00, 'A'), +(1443, 1, 'DUQUE BETANCOURT FABIO LEON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-26', 822030.00, 'A'), +(1444, 1, 'JARAMILLO TORO HERNAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-04-27', 47830.00, 'A'), +(145, 1, 'VASQUEZ ZAPATA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-09', 109940.00, 'A'), +(1450, 1, 'TOBON FRANCO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '545@facebook.com', '2011-02-03', 127591, '2011-05-03', 889540.00, 'A'), +(1454, 1, 'LOTERO PAVAS CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-28', 646750.00, 'A'), +(1455, 1, 'ESTRADA HENAO JAVIER ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128569, '2009-09-07', 215460.00, 'A'), +(1456, 1, 'VALDERRAMA MAXIMILIANO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-23', 137030.00, 'A'), +(1457, 3, 'ESTRADA ALVAREZ GONZALO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 154903, '2011-05-02', 38790.00, 'A'), +(1458, 1, 'PAUCAR VALLEJO JAIRO ALONSO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-10-15', 782860.00, 'A'), +(1459, 1, 'RESTREPO GIRALDO JHON DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-04-04', 797930.00, 'A'), +(146, 1, 'BAQUERO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-03-03', 197650.00, 'A'), +(1460, 1, 'RESTREPO DOMINGUEZ GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2009-05-18', 641050.00, 'A'), +(1461, 1, 'YANOVICH JACKY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-08-21', 811470.00, 'A'), +(1462, 1, 'HINCAPIE ROLDAN JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-27', 134200.00, 'A'), +(1463, 3, 'ZEA JORGE OLIVER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2011-03-12', 236610.00, 'A'), +(1464, 1, 'OSCAR MAURICIO ECHAVARRIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-11-24', 780440.00, 'A'), +(1465, 1, 'COSSIO GIL JOSE ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-10-01', 192380.00, 'A'), +(1466, 1, 'GOMEZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-03-01', 620580.00, 'A'), +(1467, 1, 'VILLALOBOS OCHOA ANDRES GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-18', 525740.00, 'A'), +(1470, 1, 'GARCIA GONZALEZ DAVID DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-09-17', 986990.00, 'A'), +(1471, 1, 'RAMIREZ RESTREPO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-03', 162250.00, 'A'), +(1472, 1, 'VASQUEZ GUTIERREZ JUAN ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-05', 850280.00, 'A'), +(1474, 1, 'ESCOBAR ARANGO DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-11-01', 272460.00, 'A'), +(1475, 1, 'MEJIA TORO JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-05-02', 68320.00, 'A'), +(1477, 1, 'ESCOBAR GOMEZ JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127848, '2011-05-15', 416150.00, 'A'), +(1478, 1, 'BETANCUR WILSON', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2008-02-09', 508060.00, 'A'), +(1479, 3, 'ROMERO ARRAU GONZALO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-10', 291880.00, 'A'), +(148, 1, 'REINA MORENO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-08', 699240.00, 'A'), +(1480, 1, 'CASTANO OSORIO JORGE ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127662, '2011-09-20', 935200.00, 'A'), +(1482, 1, 'LOPEZ LOPERA ROBINSON FREDY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-09-02', 196280.00, 'A'), +(1484, 1, 'HERNAN DARIO RENDON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-03-18', 312520.00, 'A'), +(1485, 1, 'MARTINEZ ARBOLEDA MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-11-03', 821760.00, 'A'), +(1486, 1, 'RODRIGUEZ MORA CARLOS MORA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-09-16', 171270.00, 'A'), +(1487, 1, 'PENAGOS VASQUEZ JOSE DOMINGO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-09-06', 391080.00, 'A'), +(1488, 1, 'UERRA MEJIA DIEGO LEON', 191821112, 'CRA 25 CALLE 100', '704@hotmail.com', '2011-02-03', 144086, '2011-08-06', 441570.00, 'A'), +(1491, 1, 'QUINTERO GUTIERREZ ABEL PASTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2009-11-16', 138100.00, 'A'), +(1492, 1, 'ALARCON YEPES IVAN DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2010-05-03', 145330.00, 'A'), +(1494, 1, 'HERNANDEZ VALLEJO ANDRES MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-09', 125770.00, 'A'), +(1495, 1, 'MONTOYA MORENO LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-09', 691770.00, 'A'), +(1497, 1, 'BARRERA CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '62@yahoo.es', '2011-02-03', 127591, '2010-08-24', 332550.00, 'A'), +(1498, 1, 'ARROYAVE FERNANDEZ PABLO EMILIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-05-12', 418030.00, 'A'), +(1499, 1, 'GOMEZ ANGEL FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-05-03', 92480.00, 'A'), +(15, 1, 'AMSILI COHEN JOSEPH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 877400.00, 'A'), +('CELL411', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(150, 3, 'ARDILA GUTIERREZ DANIEL MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-12', 506760.00, 'A'), +(1500, 1, 'GONZALEZ DUQUE PABLO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-04-13', 208330.00, 'A'), +(1502, 1, 'MEJIA BUSTAMANTE JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-09', 196000.00, 'A'), +(1506, 1, 'SUAREZ MONTOYA JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128569, '2011-09-13', 368250.00, 'A'), +(1508, 1, 'ALVAREZ GONZALEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-02-15', 355190.00, 'A'), +(1509, 1, 'NIETO CORREA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-31', 899980.00, 'A'), +(1511, 1, 'HERNANDEZ GRANADOS JHONATHAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-08-30', 471720.00, 'A'), +(1512, 1, 'CARDONA ALVAREZ DEIBY', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2010-10-05', 55590.00, 'A'), +(1513, 1, 'TORRES MARULANDA JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-20', 862820.00, 'A'), +(1514, 1, 'RAMIREZ RAMIREZ JHON JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-11', 147310.00, 'A'), +(1515, 1, 'MONDRAGON TORO NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-01-19', 148100.00, 'A'), +(1517, 3, 'SUIDA DIETER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2008-07-21', 48580.00, 'A'), +(1518, 3, 'LEFTWICH ANDREW PAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 211610, '2011-06-07', 347170.00, 'A'), +(1519, 3, 'RENTON ANDREW GEORGE PATRICK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2010-12-11', 590120.00, 'A'), +(152, 1, 'BUSTOS MONZON CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-22', 335160.00, 'A'), +(1521, 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 119814, '2011-04-28', 775000.00, 'A'), +(1522, 3, 'GUARACI FRANCO DE PAIVA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 119167, '2011-04-28', 147770.00, 'A'), +(1525, 4, 'MORENO TENORIO MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-20', 888750.00, 'A'), +(1527, 1, 'VELASQUEZ HERNANDEZ JHON EDUARSON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-19', 161270.00, 'A'), +(1528, 4, 'VANEGAS ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '185@yahoo.com', '2011-02-03', 127591, '2011-06-20', 109830.00, 'A'), +(1529, 3, 'BARBABE CLAIRE LAURENCE ANNICK', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-04', 65330.00, 'A'), +(153, 1, 'GONZALEZ TORREZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-01', 762560.00, 'A'), +(1530, 3, 'COREA MARTINEZ GUILLERMO JOSE ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-09-25', 997190.00, 'A'), +(1531, 3, 'PACHECO RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2010-03-08', 789960.00, 'A'), +(1532, 3, 'WELCH RICHARD WILLIAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 190393, '2010-10-04', 958210.00, 'A'), +(1533, 3, 'FOREMAN CAROLYN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 107159, '2011-05-23', 421200.00, 'A'), +(1535, 3, 'ZAGAL SOTO CLAUDIA PAZ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2008-05-16', 893130.00, 'A'), +(1536, 3, 'ZAGAL SOTO CLAUDIA PAZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-10-08', 771600.00, 'A'), +(1538, 3, 'BLANCO RODRIGUEZ JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 197162, '2011-04-02', 578250.00, 'A'), +(154, 1, 'HENDEZ PUERTO JAVIER ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 807310.00, 'A'), +(1540, 3, 'CONTRERAS BRAIN JAVIER ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-02-22', 42420.00, 'A'), +(1541, 3, 'RONDON HERNANDEZ MARYLIN DEL CARMEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-09-29', 145780.00, 'A'), +(1542, 3, 'ELJURI RAMIREZ EMIRA ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2010-10-13', 601670.00, 'A'), +(1544, 3, 'REYES LE ROY TOMAS FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2009-06-24', 49990.00, 'A'), +(1545, 3, 'GHETEA GAMUZ JENNY', 191821112, 'CRA 25 CALLE 100', '675@gmail.com', '2011-02-03', 150699, '2010-05-29', 536940.00, 'A'), +(1546, 3, 'DUARTE GONZALEZ ROONEY ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-20', 534720.00, 'A'), +(1548, 3, 'BIZOT PHILIPPE PIERRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 263813, '2011-03-02', 709760.00, 'A'), +(1549, 3, 'PELUFFO RUBIO GUILLERMO JUAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 116366, '2011-05-09', 360470.00, 'A'), +(1550, 3, 'AGLIATI YERKOVIC CAROLINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-06-01', 673040.00, 'A'), +(1551, 3, 'SEPULVEDA LEDEZMA HENRY CORNELIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-08-15', 283810.00, 'A'), +(1552, 3, 'CABRERA CARMINE JAIME FRANCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2008-11-30', 399940.00, 'A'), +(1553, 3, 'ZINNO PENA ALVARO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116366, '2010-08-02', 148270.00, 'A'), +(1554, 3, 'ROMERO BUCCICARDI JUAN CRISTOBAL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-08-01', 541530.00, 'A'), +(1555, 3, 'FEFERKORN ABRAHAM', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 159312, '2011-06-12', 262840.00, 'A'), +(1556, 3, 'MASSE CATESSON CAROLINE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131272, '2011-06-12', 689600.00, 'A'), +(1557, 3, 'CATESSON ALEXANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 131272, '2011-06-12', 659470.00, 'A'), +(1558, 3, 'FUENTES HERNANDEZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-18', 228540.00, 'A'), +(1559, 3, 'GUEVARA MENJIVAR WILSON ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-18', 164310.00, 'A'), +(1560, 3, 'DANOWSKI NICOLAS JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-02', 135920.00, 'A'), +(1561, 3, 'CASTRO VELASQUEZ ISMAEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 121318, '2011-07-31', 186670.00, 'A'), +(1562, 3, 'RODRIGUEZ CORNEJO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 525590.00, 'A'), +(1563, 3, 'VANIA CAROLINA FLORES AVILA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-18', 67950.00, 'A'), +(1564, 3, 'ARMERO RAMOS OSCAR ALEXANDER', 191821112, 'CRA 25 CALLE 100', '414@hotmail.com', '2011-02-03', 127591, '2011-09-18', 762950.00, 'A'), +(1565, 3, 'ORELLANA MARTINEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-18', 610930.00, 'A'), +(1566, 3, 'BRATT BABONNEAU CARLOS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', 765800.00, 'A'), +(1567, 3, 'YANES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150728, '2011-04-12', 996200.00, 'A'), +(1568, 3, 'ANGULO TAMAYO SEBASTIAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126674, '2011-05-19', 683600.00, 'A'), +(1569, 3, 'HENRIQUEZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 138329, '2011-08-15', 429390.00, 'A'), +('CELL4137', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1570, 3, 'GARCIA VILLARROEL RAUL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126189, '2011-06-12', 96140.00, 'A'), +(1571, 3, 'SOLA HERNANDEZ JOSE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-09-25', 192530.00, 'A'), +(1572, 3, 'PEREZ PASTOR OSWALDO MAGARREY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126674, '2011-05-25', 674260.00, 'A'), +(1573, 3, 'MICHAN QUINONES FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-06-21', 793680.00, 'A'), +(1574, 3, 'GARCIA ARANDA OSCAR DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-08-15', 945620.00, 'A'), +(1575, 3, 'GARCIA RIBAS JORDI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-10', 347070.00, 'A'), +(1576, 3, 'GALVAN ROMERO MARIA INMACULADA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-09-14', 898480.00, 'A'), +(1577, 3, 'BOSH MOLINAS JUAN JOSE ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 198576, '2011-08-22', 451190.00, 'A'), +(1578, 3, 'MARTIN TENA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-04-24', 560520.00, 'A'), +(1579, 3, 'HAWKINS ROBERT JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-12', 449010.00, 'A'), +(1580, 3, 'GHERARDI ALEJANDRO EMILIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 180063, '2010-11-15', 563500.00, 'A'), +(1581, 3, 'TELLO JUAN EDUARDO', 191821112, 'CRA 25 CALLE 100', '192@hotmail.com', '2011-02-03', 138329, '2011-05-01', 470460.00, 'A'), +(1583, 3, 'GUZMAN VALDIVIA CINTIA TATIANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 199862, '2011-04-06', 897580.00, 'A'), +(1584, 3, 'STUBBS MERCEDES CARMEN JOSEFINA DEL MILAGRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 199862, '2011-04-06', 502510.00, 'A'), +(1585, 3, 'QUINTEIRO GORIS JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-17', 819840.00, 'A'), +(1587, 3, 'RIVAS LORIA PRISCILLA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 205636, '2011-05-01', 498720.00, 'A'), +(1588, 3, 'DE LA TORRE AUGUSTO PATRICIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 20404, '2011-08-31', 718670.00, 'A'), +(159, 1, 'ALDANA PATINO NORMAN ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2009-10-10', 201500.00, 'A'), +(1590, 3, 'TORRES VILLAR ROBERTO ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-08-10', 329950.00, 'A'), +(1591, 3, 'PETRULLI CARMELO MORENO', 191821112, 'CRA 25 CALLE 100', '883@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', 358180.00, 'A'), +(1592, 3, 'MUSCO ENZO FRANCESCO GIUSEPPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-04', 801050.00, 'A'), +(1593, 3, 'RONCUZZI CLAUDIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127134, '2011-10-02', 930700.00, 'A'), +(1594, 3, 'VELANI FRANCESCA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 199862, '2011-08-22', 250360.00, 'A'), +(1596, 3, 'BENARROCH ASSOR DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-10-06', 547310.00, 'A'), +(1597, 3, 'FLO VILLASECA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-05-27', 357520.00, 'A'), +(1598, 3, 'FONT RIBAS ANTONI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196117, '2011-09-21', 145660.00, 'A'), +(1599, 3, 'LOPEZ BARAHONA MONICA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-08-03', 655740.00, 'A'), +(16, 1, 'FLOREZ PEREZ GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132572, '2011-03-30', 956370.00, 'A'), +(160, 1, 'GIRALDO MENDIVELSO MARTIN EDISSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-14', 429010.00, 'A'), +(1600, 3, 'SCATTIATI ALDO ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 215245, '2011-07-10', 841730.00, 'A'), +(1601, 3, 'MARONE CARLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 101179, '2011-06-14', 241420.00, 'A'), +(1602, 3, 'CHUVASHEVA ELENA ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 190393, '2011-08-21', 681900.00, 'A'), +(1603, 3, 'GIGLIO FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 122035, '2011-09-19', 685250.00, 'A'), +(1604, 3, 'JUSTO AMATE AGUSTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 174598, '2011-05-16', 380560.00, 'A'), +(1605, 3, 'GUARDABASSI FABIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 281044, '2011-07-26', 847060.00, 'A'), +(1606, 3, 'CALABRETTA FRAMCESCO ANTONIO MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 199862, '2011-08-22', 93590.00, 'A'), +(1607, 3, 'TARTARINI MASSIMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196234, '2011-05-10', 926800.00, 'A'), +(1608, 3, 'BOTTI GIAIME', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 231989, '2011-04-04', 353210.00, 'A'), +(1610, 3, 'PILERI ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 205040, '2011-09-01', 868590.00, 'A'), +(1612, 3, 'MARTIN GRACIA LUIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-07-27', 324320.00, 'A'), +(1613, 3, 'GRACIA MARTIN LUIS', 191821112, 'CRA 25 CALLE 100', '579@facebook.com', '2011-02-03', 198248, '2011-08-24', 463560.00, 'A'), +(1614, 3, 'SERRAT SESE JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-05-16', 344840.00, 'A'), +(1615, 3, 'DEL LAGO AMPELIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-06-29', 333510.00, 'A'), +(1616, 3, 'PERUGORRIA RODRIGUEZ JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 148511, '2011-06-06', 633040.00, 'A'), +(1617, 3, 'GIRAL CALVO IGNACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-09-19', 164670.00, 'A'), +(1618, 3, 'ALONSO CEBRIAN JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '253@terra.com.co', '2011-02-03', 188640, '2011-03-23', 924240.00, 'A'), +(162, 1, 'ARIZA PINEDA JOHN ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-11-27', 415710.00, 'A'), +(1620, 3, 'OLMEDO CARDENETE DOMINGO MIGUEL', 191821112, 'CRA 25 CALLE 100', '608@terra.com.co', '2011-02-03', 135397, '2011-09-03', 863200.00, 'A'), +(1622, 3, 'GIMENEZ BALDRES ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 182860, '2011-05-12', 82660.00, 'A'), +(1623, 3, 'NUNEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-05-23', 609950.00, 'A'), +(1624, 3, 'PENATE CASTRO WENCESLAO LORENZO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 153607, '2011-09-13', 801750.00, 'A'), +(1626, 3, 'ESCODA MIGUEL JOAN JOSEP', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-07-18', 489310.00, 'A'), +(1628, 3, 'ESTRADA CAPILLA ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-26', 81180.00, 'A'), +(163, 1, 'PERDOMO LOPEZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-05', 456910.00, 'A'), +(1630, 3, 'SUBIRAIS MARIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-08', 138700.00, 'A'), +(1632, 3, 'ENSENAT VELASCO JAIME LUIS', 191821112, 'CRA 25 CALLE 100', '687@gmail.com', '2011-02-03', 188640, '2011-04-12', 904560.00, 'A'), +(1633, 3, 'DIEZ POLANCO CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-05-24', 530410.00, 'A'), +(1636, 3, 'CUADRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-09-04', 688400.00, 'A'), +(1637, 3, 'UBRIC MUNOZ RAUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 98790, '2011-05-30', 139830.00, 'A'), +('CELL4159', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1638, 3, 'NEDDERMANN GUJO RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-31', 633990.00, 'A'), +(1639, 3, 'RENEDO ZALBA JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-03-13', 750430.00, 'A'), +(164, 1, 'JIMENEZ PADILLA JOHAN MARCEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-05', 37430.00, 'A'), +(1640, 3, 'FERNANDEZ MORENO DAVID', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-05-28', 850180.00, 'A'), +(1641, 3, 'VERGARA SERRANO JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-06-30', 999620.00, 'A'), +(1642, 3, 'MARTINEZ HUESO LUCAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 182860, '2011-06-29', 447570.00, 'A'), +(1643, 3, 'FRANCO POBLET JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-10-03', 238990.00, 'A'), +(1644, 3, 'MORA HIDALGO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-06', 852250.00, 'A'), +(1645, 3, 'GARCIA COSO EMILIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-09-14', 544260.00, 'A'), +(1646, 3, 'GIMENO ESCRIG ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 180124, '2011-09-20', 164580.00, 'A'), +(1647, 3, 'MORCILLO LOPEZ RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127538, '2011-04-16', 190090.00, 'A'), +(1648, 3, 'RUBIO BONET MANUEL', 191821112, 'CRA 25 CALLE 100', '252@facebook.com', '2011-02-03', 196234, '2011-05-25', 456740.00, 'A'), +(1649, 3, 'PRADO ABUIN FERNANDO ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-07-16', 713400.00, 'A'), +(165, 1, 'RAMIREZ PALMA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-10', 816420.00, 'A'), +(1650, 3, 'DE VEGA PUJOL GEMA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-08-01', 196780.00, 'A'), +(1651, 3, 'IBARGUEN ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2010-12-03', 843720.00, 'A'), +(1652, 3, 'IBARGUEN ALFREDO', 191821112, 'CRA 25 CALLE 100', '856@hotmail.com', '2011-02-03', 188640, '2011-06-18', 628250.00, 'A'), +(1654, 3, 'MATELLANES RODRIGUEZ NURIA PILAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-10-05', 165770.00, 'A'), +(1656, 3, 'VIDAURRAZAGA GUISOLA JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-08-08', 495320.00, 'A'), +(1658, 3, 'GOMEZ ULLATE MARIA ELENA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-04-12', 919090.00, 'A'), +(1659, 3, 'ALCAIDE ALONSO JUAN MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-02', 152430.00, 'A'), +(166, 1, 'TUSTANOSKI RODOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-12-03', 969790.00, 'A'), +(1660, 3, 'LARROY GARCIA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-14', 4900.00, 'A'), +(1661, 3, 'FERNANDEZ POYATO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-10', 567180.00, 'A'), +(1662, 3, 'TREVEJO PARDO JULIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-25', 821200.00, 'A'), +(1663, 3, 'GORGA CASSINELLI VICTOR DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-30', 404490.00, 'A'), +(1664, 3, 'MORUECO GONZALEZ JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-10-09', 558820.00, 'A'), +(1665, 3, 'IRURETA FERNANDEZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 214283, '2011-09-14', 580650.00, 'A'), +(1667, 3, 'TREVEJO PARDO JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-25', 392020.00, 'A'), +(1668, 3, 'BOCOS NUNEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-10-08', 279710.00, 'A'), +(1669, 3, 'LUIS CASTILLO JOSE AGUSTIN', 191821112, 'CRA 25 CALLE 100', '557@hotmail.es', '2011-02-03', 168202, '2011-06-16', 222500.00, 'A'), +(167, 1, 'HURTADO BELALCAZAR JOHN JADY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-08-17', 399710.00, 'A'), +(1670, 3, 'REDONDO GUTIERREZ EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-09-14', 273350.00, 'A'), +(1671, 3, 'MADARIAGA ALONSO RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-07-26', 699240.00, 'A'), +(1673, 3, 'REY GONZALEZ LUIS JAVIER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-07-26', 283190.00, 'A'), +(1676, 3, 'PEREZ ESTER ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-10-03', 274900.00, 'A'), +(1677, 3, 'GOMEZ-GRACIA HUERTA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-22', 112260.00, 'A'), +(1678, 3, 'DAMASO PUENTE DIEGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-25', 736600.00, 'A'), +(168, 1, 'JUAN PABLO MARTINEZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-15', 89160.00, 'A'), +(1680, 3, 'DIEZ GONZALEZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-17', 521280.00, 'A'), +(1681, 3, 'LOPEZ LOPEZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '853@yahoo.com', '2011-02-03', 196234, '2010-12-13', 567760.00, 'A'), +(1682, 3, 'MIRO LINARES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133442, '2011-09-03', 274930.00, 'A'), +(1683, 3, 'ROCA PINTADO MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-05-16', 671410.00, 'A'), +(1684, 3, 'GARCIA BARTOLOME HORACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-09-29', 532220.00, 'A'), +(1686, 3, 'BALMASEDA DE AHUMADA DIEZ JUAN LUIS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 168202, '2011-04-13', 637860.00, 'A'), +(1687, 3, 'FERNANDEZ IMAZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-04-10', 248580.00, 'A'), +(1688, 3, 'ELIAS CASTELLS FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-19', 329300.00, 'A'), +(1689, 3, 'ANIDO DIAZ DANIEL', 191821112, 'CRA 25 CALLE 100', '491@gmail.com', '2011-02-03', 188640, '2011-04-04', 900780.00, 'A'), +(1691, 3, 'GATELL ARIMONT MARIA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-17', 877700.00, 'A'), +(1692, 3, 'RIVERA MUNOZ ADONI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 211705, '2011-04-05', 840470.00, 'A'), +(1693, 3, 'LUNA LOPEZ ALICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-10-01', 569270.00, 'A'), +(1695, 3, 'HAMMOND ANN ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118021, '2011-05-17', 916770.00, 'A'), +(1698, 3, 'RODRIGUEZ PARAJA MARIA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-15', 649080.00, 'A'), +(1699, 3, 'RUIZ DIAZ JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-06-24', 359540.00, 'A'), +(17, 1, 'SUAREZ CUEVAS FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2011-08-31', 149640.00, 'A'), +(170, 1, 'MARROQUIN AVILA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-04', 965840.00, 'A'), +(1700, 3, 'BACCHELLI ORTEGA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126180, '2011-06-07', 850450.00, 'A'), +(1701, 3, 'IGLESIAS JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2010-09-14', 173630.00, 'A'), +(1702, 3, 'GUTIEZ CUEVAS JULIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2010-09-07', 316800.00, 'A'), +('CELL4183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1704, 3, 'CALDEIRO ZAMORA JESUS CARMELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-09', 365230.00, 'A'), +(1705, 3, 'ARBONA ABASCAL MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-02-27', 636760.00, 'A'), +(1706, 3, 'COHEN AMAR MOISES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196766, '2011-05-20', 88120.00, 'A'), +(1708, 3, 'FERNANDEZ COBOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2010-11-09', 387220.00, 'A'), +(1709, 3, 'CANAL VIVES JOAQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 196234, '2011-09-27', 345150.00, 'A'), +(171, 1, 'LADINO MORENO JAVIER ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-25', 89230.00, 'A'), +(1710, 5, 'GARCIA BERTRAND HECTOR', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-04-07', 564100.00, 'A'), +(1711, 1, 'CONSTANZA MARIN ESCOBAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127799, '2011-03-24', 785060.00, 'A'), +(1712, 1, 'NUNEZ BATALLA FAUSTINO JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-26', 232970.00, 'A'), +(1713, 3, 'VILORA LAZARO ERICK MARTIN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-26', 809690.00, 'A'), +(1715, 3, 'ELLIOT EDWARD JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-26', 318660.00, 'A'), +(1716, 3, 'ALCALDE ORTENO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-07-23', 544650.00, 'A'), +(1717, 3, 'CIARAVELLA STEFANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 231989, '2011-06-13', 767260.00, 'A'), +(1718, 3, 'URRA GONZALEZ PEDRO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-05-02', 202370.00, 'A'), +(172, 1, 'GUERRERO ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-15', 548610.00, 'A'), +(1720, 3, 'JIMENEZ RODRIGUEZ ANNET', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-05-25', 943140.00, 'A'), +(1721, 3, 'LESCAY CASTELLANOS ARNALDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', 585570.00, 'A'), +(1722, 3, 'OCHOA AGUILAR ELIADES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-25', 98410.00, 'A'), +(1723, 3, 'RODRIGUEZ NUNES JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 735340.00, 'A'), +(1724, 3, 'OCHOA BUSTAMANTE ELIADES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-25', 381480.00, 'A'), +(1725, 3, 'MARTINEZ NIEVES JOSE ANGEL', 191821112, 'CRA 25 CALLE 100', '919@yahoo.es', '2011-02-03', 127591, '2011-05-25', 701360.00, 'A'), +(1727, 3, 'DRAGONI ALAIN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-25', 707850.00, 'A'), +(1728, 3, 'FERNANDEZ LOPEZ MARCOS ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-25', 452090.00, 'A'), +(1729, 3, 'MATURELL ROMERO JORGE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-25', 136880.00, 'A'), +(173, 1, 'RUIZ CEBALLOS ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-04', 475380.00, 'A'), +(1730, 3, 'LARA CASTELLANO LENNIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-25', 328150.00, 'A'), +(1731, 3, 'GRAHAM CRISTOPHER DRAKE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 203079, '2011-06-27', 230120.00, 'A'), +(1732, 3, 'TORRE LUCA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-05-11', 166120.00, 'A'), +(1733, 3, 'OCHOA HIDALGO EGLIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 140250.00, 'A'), +(1734, 3, 'LOURERIO DELACROIX FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116511, '2011-09-28', 202900.00, 'A'), +(1736, 3, 'LEVIN FIORELLI ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116366, '2011-08-07', 360110.00, 'A'), +(1739, 3, 'BERRY R ALBERT', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 216125, '2011-08-16', 22170.00, 'A'), +(174, 1, 'NIETO PARRA SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-05-11', 731040.00, 'A'), +(1740, 3, 'MARSHALL ROBERT SHEPARD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 150159, '2011-03-09', 62860.00, 'A'), +(1741, 3, 'HENANDEZ ROY CHRISTOPHER JOHN PATRICK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 179614, '2011-09-26', 247780.00, 'A'), +(1742, 3, 'LANDRY GUILLAUME', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 232263, '2011-04-27', 50330.00, 'A'), +(1743, 3, 'VUCETIC ZELJKO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 232263, '2011-07-25', 508320.00, 'A'), +(1744, 3, 'DE JUANA CELASCO MARIA DEL CARMEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-04-16', 390620.00, 'A'), +(1745, 3, 'LABONTE RONALD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 269033, '2011-09-28', 428120.00, 'A'), +(1746, 3, 'NEWMAN PHILIP MARK', 191821112, 'CRA 25 CALLE 100', '557@gmail.com', '2011-02-03', 231373, '2011-07-25', 968750.00, 'A'), +(1747, 3, 'GRENIER MARIE PIERRE ', 191821112, 'CRA 25 CALLE 100', '409@facebook.com', '2011-02-03', 244158, '2011-07-03', 559370.00, 'A'), +(1749, 3, 'SHINDER GARY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 244158, '2011-07-25', 775000.00, 'A'), +(175, 3, 'GALLEGOS BASTIDAS CARLOS EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133211, '2011-08-10', 229090.00, 'A'), +(1750, 3, 'LOPEZ DE GOICOCHEA ZABALA FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-13', 203120.00, 'A'), +(1751, 3, 'CORRAL BELLON MANUEL', 191821112, 'CRA 25 CALLE 100', '538@yahoo.com', '2011-02-03', 177443, '2011-05-02', 690610.00, 'A'), +(1752, 3, 'DE SOLA SOLVAS JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-10-02', 843700.00, 'A'), +(1753, 3, 'GARCIA ALCALA DIAZ REGANON EVA MARIA', 191821112, 'CRA 25 CALLE 100', '398@yahoo.com', '2011-02-03', 118777, '2010-03-15', 146680.00, 'A'), +(1754, 3, 'BIELA VILIAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2011-08-16', 202290.00, 'A'), +(1755, 3, 'GUIOT CANO JUAN PATRICK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 232263, '2011-05-23', 571390.00, 'A'), +(1756, 3, 'JIMENEZ DIAZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-03-27', 250100.00, 'A'), +(1757, 3, 'FOX ELEANORE MAE', 191821112, 'CRA 25 CALLE 100', '117@yahoo.com', '2011-02-03', 190393, '2011-05-04', 536340.00, 'A'), +(1758, 3, 'TANG VAN SON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-05-07', 931400.00, 'A'), +(1759, 3, 'SUTTON PETER RONALD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 281673, '2011-06-01', 47960.00, 'A'), +(176, 1, 'GOMEZ IVAN', 191821112, 'CRA 25 CALLE 100', '438@yahoo.com.mx', '2011-02-03', 127591, '2008-04-09', 952310.00, 'A'), +(1762, 3, 'STOODY MATTHEW FRANCIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-21', 84320.00, 'A'), +(1763, 3, 'SEIX MASO ARNAU', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150699, '2011-05-24', 168880.00, 'A'), +(1764, 3, 'FERNANDEZ REDEL RAQUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-09-14', 591440.00, 'A'), +(1765, 3, 'PORCAR DESCALS VICENNTE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 176745, '2011-04-24', 450580.00, 'A'), +(1766, 3, 'PEREZ DE VILLEGAS TRILLO FIGUEROA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-05-17', 478560.00, 'A'), +('CELL4198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1767, 3, 'CELDRAN DEGANO ANGEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 196234, '2011-05-17', 41040.00, 'A'), +(1768, 3, 'TERRAGO MARI FERRAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-09-30', 769550.00, 'A'), +(1769, 3, 'SZUCHOVSZKY GERGELY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 250256, '2011-05-23', 724630.00, 'A'), +(177, 1, 'SEBASTIAN TORO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127443, '2011-07-14', 74270.00, 'A'), +(1771, 3, 'TORIBIO JOSE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 226612, '2011-09-04', 398570.00, 'A'), +(1772, 3, 'JOSE LUIS BAQUERA PEIRONCELLY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2010-10-19', 49360.00, 'A'), +(1773, 3, 'MADARIAGA VILLANUEVA MIGUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-04-12', 51090.00, 'A'), +(1774, 3, 'VILLENA BORREGO ANTONIO', 191821112, 'CRA 25 CALLE 100', '830@terra.com.co', '2011-02-03', 188640, '2011-07-19', 107400.00, 'A'), +(1776, 3, 'VILAR VILLALBA JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 180124, '2011-09-20', 596330.00, 'A'), +(1777, 3, 'CAGIGAL ORTIZ MACARENA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 214283, '2011-09-14', 830530.00, 'A'), +(1778, 3, 'KORBA ATTILA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 250256, '2011-09-27', 363650.00, 'A'), +(1779, 3, 'KORBA-ELIAS BARBARA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 250256, '2011-09-27', 326670.00, 'A'), +(178, 1, 'AMSILI COHEN HANAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-08-29', 514450.00, 'A'), +(1780, 3, 'PINDADO GOMEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 189053, '2011-04-26', 542400.00, 'A'), +(1781, 3, 'IBARRONDO GOMEZ GRACIA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-09-21', 731990.00, 'A'), +(1782, 3, 'MUNGUIRA GONZALEZ JUAN JULIAN', 191821112, 'CRA 25 CALLE 100', '54@hotmail.es', '2011-02-03', 188640, '2011-09-06', 32730.00, 'A'), +(1784, 3, 'LANDMAN PIETER MARINUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 294861, '2011-09-22', 740260.00, 'A'), +(1789, 3, 'SUAREZ AINARA ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-05-17', 503470.00, 'A'), +(179, 1, 'CARO JUNCO GUIOVANNY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-03', 349420.00, 'A'), +(1790, 3, 'MARTINEZ CHACON JOSE JOAQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-20', 592220.00, 'A'), +(1792, 3, 'MENDEZ DEL RION LUCIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 120639, '2011-06-16', 476910.00, 'A'), +(1793, 3, 'VERHULST LAMBERTUS CORNELIA FRANCISCUS ALPHONSUS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 295420, '2011-07-04', 32410.00, 'A'), +(1794, 3, 'YANEZ YAGUE JESUS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-07-10', 731290.00, 'A'), +(1796, 3, 'GOMEZ ZORRILLA AMATE JOSE MARIOA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-07-12', 602380.00, 'A'), +(1797, 3, 'LAIZ MORENO ENEKO', 191821112, 'CRA 25 CALLE 100', '219@gmail.com', '2011-02-03', 127591, '2011-08-05', 334150.00, 'A'), +(1798, 3, 'MORODO RUIZ RUBEN DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-09-14', 863620.00, 'A'), +(18, 1, 'GARZON VARGAS GUILLERMO FEDERICO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-29', 879110.00, 'A'), +(1800, 3, 'ALFARO FAUS MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-09-14', 987410.00, 'A'), +(1801, 3, 'MORRALLA VALLVERDU ENRIC', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 194601, '2011-07-18', 990070.00, 'A'), +(1802, 3, 'BALBASTRE TEJEDOR JUAN VICENTE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 182860, '2011-08-24', 988120.00, 'A'), +(1803, 3, 'MINGO REIZ FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2010-03-24', 970400.00, 'A'), +(1804, 3, 'IRURETA FERNANDEZ JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 214283, '2011-09-10', 887630.00, 'A'), +(1807, 3, 'NEBRO MELLADO JOSE JUAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 168996, '2011-08-15', 278540.00, 'A'), +(1808, 3, 'ALBERQUILLA OJEDA JOSE DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-09-27', 477070.00, 'A'), +(1809, 3, 'BUENDIA NORTE MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 131401, '2011-07-08', 549720.00, 'A'), +(181, 1, 'CASTELLANOS FLORES RODRIGO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-18', 970470.00, 'A'), +(1811, 3, 'HILBERT ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-08', 937830.00, 'A'), +(1812, 3, 'GONZALES PINTO COTERILLO ADOLFO LORENZO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 214283, '2011-09-10', 736970.00, 'A'), +(1813, 3, 'ARQUES ALVAREZ JOSE RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-04-04', 871360.00, 'A'), +(1817, 3, 'CLAUSELL LOW ROBERTO EMILIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2011-09-28', 348770.00, 'A'), +(1818, 3, 'BELICHON MARTINEZ JESUS ALVARO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-04-12', 327010.00, 'A'), +(182, 1, 'GUZMAN NIETO JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-20', 241130.00, 'A'), +(1821, 3, 'LINATI DE PUIG JORGE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 196234, '2011-05-18', 47210.00, 'A'), +(1823, 3, 'SINBARRERA ROMA ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196234, '2011-09-08', 598380.00, 'A'), +(1826, 2, 'JUANES GARATE BRUNO ', 191821112, 'CRA 25 CALLE 100', '301@gmail.com', '2011-02-03', 118777, '2011-08-21', 877650.00, 'A'), +(1827, 3, 'BOLOS GIMENO ROGELIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 200247, '2010-11-28', 555470.00, 'A'), +(1828, 3, 'ZABALA ASTIGARRAGA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-09-20', 144410.00, 'A'), +(1831, 3, 'MAPELLI CAFFARENA BORJA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 172381, '2011-09-04', 58200.00, 'A'), +(1833, 3, 'LARMONIE LESLIE MARTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-30', 604840.00, 'A'), +(1834, 3, 'WILLEMS ROBERT-JAN MICHAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 288531, '2011-09-05', 756530.00, 'A'), +(1835, 3, 'ANJEMA LAURENS JAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-08-29', 968140.00, 'A'), +(1836, 3, 'VERHULST HENRICUS LAMBERTUS MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 295420, '2011-04-03', 571100.00, 'A'), +(1837, 3, 'PIERROT JOZEF MARIE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 288733, '2011-05-18', 951100.00, 'A'), +(1838, 3, 'EIKELBOOM HIDDE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 42210.00, 'A'), +(1839, 3, 'TAMBINI GOMEZ DE MUNG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 180063, '2011-04-24', 357740.00, 'A'), +(1840, 3, 'MAGANA PEREZ GERARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-09-28', 662060.00, 'A'), +(1841, 3, 'COURTOISIE BEYHAUT RAFAEL JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116366, '2011-09-05', 237070.00, 'A'), +(1842, 3, 'ROJAS BENJAMIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-13', 199170.00, 'A'), +(1843, 3, 'GARCIA VICENTE EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 150699, '2011-08-10', 284650.00, 'A'), +('CELL4291', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1844, 3, 'CESTTI LOPEZ RAFAEL GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 144215, '2011-09-27', 825750.00, 'A'), +(1845, 3, 'URTECHO LOPEZ ARMANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 139272, '2011-09-28', 274800.00, 'A'), +(1846, 3, 'SEGURA ESPINOZA ARMANDO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 135360, '2011-09-28', 896730.00, 'A'), +(1847, 3, 'GONZALEZ VEGA LUIS PASTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-05-18', 659240.00, 'A'), +(185, 1, 'AYALA CARDENAS NELSON MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 855960.00, 'A'), +(1850, 3, 'ROTZINGER ROA KLAUS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 116366, '2011-09-12', 444250.00, 'A'), +(1851, 3, 'FRANCO DE LEON SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116366, '2011-04-26', 63840.00, 'A'), +(1852, 3, 'RIVAS GAGNONI LUIS ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 135360, '2011-05-18', 986440.00, 'A'), +(1853, 3, 'BARRETO VELASQUEZ JOEL FERNANDO', 191821112, 'CRA 25 CALLE 100', '104@hotmail.es', '2011-02-03', 116511, '2011-04-27', 740670.00, 'A'), +(1854, 3, 'SEVILLA AMAYA ORLANDO', 191821112, 'CRA 25 CALLE 100', '264@yahoo.com', '2011-02-03', 136995, '2011-05-18', 744020.00, 'A'), +(1855, 3, 'VALFRE BRALICH ELEONORA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116366, '2011-06-06', 498080.00, 'A'), +(1857, 3, 'URDANETA DIAMANTES DIEGO ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-09-23', 797590.00, 'A'), +(1858, 3, 'RAMIREZ ALVARADO ROBERT JESUS', 191821112, 'CRA 25 CALLE 100', '290@yahoo.com.mx', '2011-02-03', 127591, '2011-09-18', 212850.00, 'A'), +(1859, 3, 'GUTTNER DENNIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-25', 671470.00, 'A'), +(186, 1, 'CARRASCO SUESCUN ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-15', 36620.00, 'A'), +(1861, 3, 'HEGEMANN JOACHIM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-25', 579710.00, 'A'), +(1862, 3, 'MALCHER INGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 292243, '2011-06-23', 742060.00, 'A'), +(1864, 3, 'HOFFMEISTER MALTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128206, '2011-09-06', 629770.00, 'A'), +(1865, 3, 'BOHME ALEXANDRA LUCE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-14', 235260.00, 'A'), +(1866, 3, 'HAMMAN FRANK THOMAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-13', 286980.00, 'A'), +(1867, 3, 'GOPPERT MARKUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-09-05', 729150.00, 'A'), +(1868, 3, 'BISCARO CAROLINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-16', 784790.00, 'A'), +(1869, 3, 'MASCHAT SEBASTIAN STEPHAN ANDREAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-02-03', 736520.00, 'A'), +(1870, 3, 'WALTHER DANIEL CLAUS PETER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-24', 328220.00, 'A'), +(1871, 3, 'NENTWIG DANIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 289697, '2011-02-03', 431550.00, 'A'), +(1872, 3, 'KARUTZ ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127662, '2011-03-17', 173090.00, 'A'), +(1875, 3, 'KAY KUNNE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 289697, '2011-03-18', 961400.00, 'A'), +(1876, 2, 'SCHLUMPF IVANA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 245206, '2011-03-28', 802690.00, 'A'), +(1877, 3, 'RODRIGUEZ BUSTILLO CONSUELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 139067, '2011-03-21', 129280.00, 'A'), +(1878, 1, 'REHWALDT RICHARD ULRICH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289697, '2009-10-25', 238320.00, 'A'), +(1880, 3, 'FONSECA BEHRENS MANUELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-18', 303810.00, 'A'), +(1881, 3, 'VOGEL MIRKO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-09', 107790.00, 'A'), +(1882, 3, 'WU WEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 289697, '2011-03-04', 627520.00, 'A'), +(1884, 3, 'KADOLSKY ANKE SIGRID', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 289697, '2010-10-07', 188560.00, 'A'), +(1885, 3, 'PFLUCKER PLENGE CARLOS HERNAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 239124, '2011-08-15', 500140.00, 'A'), +(1886, 3, 'PENA LAGOS MELENIA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 935020.00, 'A'), +(1887, 3, 'CALVANO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-05-02', 174690.00, 'A'), +(1888, 3, 'KUHLEN LOTHAR WILHELM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 289232, '2011-08-30', 68390.00, 'A'), +(1889, 3, 'QUIJANO RICO SOFIA VICTORIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 221939, '2011-06-13', 817890.00, 'A'), +(189, 1, 'GOMEZ TRUJILLO SERGIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-17', 985980.00, 'A'), +(1890, 3, 'SCHILBERZ KARIN', 191821112, 'CRA 25 CALLE 100', '405@facebook.com', '2011-02-03', 287570, '2011-06-23', 884260.00, 'A'), +(1891, 3, 'SCHILBERZ SOPHIE CAHRLOTTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 287570, '2011-06-23', 967640.00, 'A'), +(1892, 3, 'MOLINA MOLINA MILAGRO DE SUYAPA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 139844, '2011-07-26', 185410.00, 'A'), +(1893, 3, 'BARRIENTOS ESCALANTE RAFAEL ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 139067, '2011-05-18', 24110.00, 'A'), +(1895, 3, 'ENGELS FRANZBERNARD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 292243, '2011-07-01', 749430.00, 'A'), +(1896, 3, 'FRIEDHOFF SVEN WILHEM', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 289697, '2010-10-31', 54090.00, 'A'), +(1897, 3, 'BARTELS CHRISTIAN JOHAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-07-25', 22160.00, 'A'), +(1898, 3, 'NILS REMMEL', 191821112, 'CRA 25 CALLE 100', '214@gmail.com', '2011-02-03', 256231, '2011-08-05', 948530.00, 'A'), +(1899, 3, 'DR SCHEIBE MATTHIAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 252431, '2011-09-26', 676150.00, 'A'), +(19, 1, 'RIANO ROMERO ALBERTO ELIAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-12-14', 946630.00, 'A'), +(190, 1, 'LLOREDA ORTIZ FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-12-20', 30860.00, 'A'), +(1900, 3, 'CARRASCO CATERIANO PEDRO', 191821112, 'CRA 25 CALLE 100', '255@hotmail.com', '2011-02-03', 286578, '2011-05-02', 535180.00, 'A'), +(1901, 3, 'ROSENBER DIRK PETER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-29', 647450.00, 'A'), +(1902, 3, 'LAUBACH JOHANNES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289697, '2011-05-01', 631720.00, 'A'), +(1904, 3, 'GRUND STEFAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 256231, '2011-08-05', 185990.00, 'A'), +(1905, 3, 'GRUND BEATE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 256231, '2011-08-05', 281280.00, 'A'), +(1906, 3, 'CORZO PAULA MIRIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 180063, '2011-08-02', 848400.00, 'A'), +(1907, 3, 'OESTERHAUS CORNELIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 256231, '2011-03-16', 398170.00, 'A'), +(1908, 1, 'JUAN SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-05-12', 445660.00, 'A'), +(1909, 3, 'VAN ZIJL CHRISTIAN ANDREAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 286785, '2011-09-24', 33800.00, 'A'), +(191, 1, 'CASTANEDA CABALLERO JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-28', 196370.00, 'A'), +(1910, 3, 'LORZA RUIZ MYRIAM ESPERANZA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-29', 831990.00, 'A'), +(192, 1, 'ZEA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-09', 889270.00, 'A'), +(193, 1, 'VELEZ VICTOR MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-22', 857250.00, 'A'), +(194, 1, 'ARCINIEGAS GOMEZ ISMAEL', 191821112, 'CRA 25 CALLE 100', '937@hotmail.com', '2011-02-03', 127591, '2011-05-18', 618450.00, 'A'), +(195, 1, 'LINAREZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-12', 520470.00, 'A'), +(1952, 3, 'BERND ERNST HEINZ SCHUNEMANN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 255673, '2011-09-04', 796820.00, 'A'), +(1953, 3, 'BUCHNER RICHARD ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-17', 808430.00, 'A'), +(1954, 3, 'CHO YONG BEOM', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 173192, '2011-02-07', 651670.00, 'A'), +(1955, 3, 'BERNECKER WALTER LUDWIG', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 256231, '2011-04-03', 833080.00, 'A'), +(1956, 3, 'SCHIERENBECK THOMAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 256231, '2011-05-03', 210380.00, 'A'), +(1957, 3, 'STEGMANN WOLF DIETER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-08-27', 552650.00, 'A'), +(1958, 3, 'LEBAGE GONZALEZ VALENTINA CECILIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 131272, '2011-07-29', 132130.00, 'A'), +(1959, 3, 'CABRERA MACCHI JOSE ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 180063, '2011-08-02', 2700.00, 'A'), +(196, 1, 'OTERO BERNAL ALVARO ERNESTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-04-29', 747030.00, 'A'), +(1960, 3, 'KOO BONKI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-15', 617110.00, 'A'), +(1961, 3, 'JODJAHN DE CARVALHO BEIRAL FLAVIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-07-05', 77460.00, 'A'), +(1963, 3, 'VIEIRA ROCHA MARQUES ELIANE TEREZINHA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118402, '2011-09-13', 447430.00, 'A'), +(1965, 3, 'KELLEN CRISTINA GATTI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126180, '2011-07-01', 804020.00, 'A'), +(1966, 3, 'CHAVEZ MARLON TENORIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-25', 132310.00, 'A'), +(1967, 3, 'SERGIO COZZI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 125750, '2011-08-28', 249500.00, 'A'), +(1968, 3, 'REZENDE LIMA JOSE MARCIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-08-23', 850570.00, 'A'), +(1969, 3, 'RAMOS PEDRO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118942, '2011-08-03', 504330.00, 'A'), +(1972, 3, 'ADAMS THOMAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2011-08-11', 774000.00, 'A'), +(1973, 3, 'WALESKA NUCINI BOGO ANDREA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-23', 859690.00, 'A'), +(1974, 3, 'GERMANO PAULO BUNN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118439, '2011-08-30', 976440.00, 'A'), +(1975, 3, 'CALDEIRA FILHO RUBENS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118942, '2011-07-18', 303120.00, 'A'), +(1976, 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 119814, '2011-09-08', 586290.00, 'A'), +(1977, 3, 'GAMAS MARIA CRISTINA ALVES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-09-19', 22070.00, 'A'), +(1979, 3, 'PORTO WEBER FERREIRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-07', 691340.00, 'A'), +(1980, 3, 'FONSECA LAURO PINTO', 191821112, 'CRA 25 CALLE 100', '104@hotmail.es', '2011-02-03', 127591, '2011-08-16', 402140.00, 'A'), +(1981, 3, 'DUARTE ELENA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-06-15', 936710.00, 'A'), +(1983, 3, 'CECHINEL CRISTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118942, '2011-06-12', 575530.00, 'A'), +(1984, 3, 'BATISTA PINHERO JOAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-04-25', 446250.00, 'A'), +(1987, 1, 'ISRAEL JOSE MAXWELL', 191821112, 'CRA 25 CALLE 100', '936@gmail.com', '2011-02-03', 125894, '2011-07-04', 408350.00, 'A'), +(1988, 3, 'BATISTA CARVALHO RODRIGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118864, '2011-09-19', 488410.00, 'A'), +(1989, 3, 'RENO DA SILVEIRA EDNEIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118867, '2011-05-03', 216990.00, 'A'), +(199, 1, 'BASTO CORREA FERNANDO ANTONIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-21', 616860.00, 'A'), +(1990, 3, 'SEIDLER KOHNERT G TEIXEIRA CHRISTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 119814, '2011-08-23', 619730.00, 'A'), +(1992, 3, 'GUIMARAES COSTA LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-04-20', 379090.00, 'A'), +(1993, 3, 'BOTTA RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2011-09-16', 552510.00, 'A'), +(1994, 3, 'ARAUJO DA SILVA MARCELO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 125666, '2011-08-03', 625260.00, 'A'), +(1995, 3, 'DA SILVA FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118864, '2011-04-14', 468760.00, 'A'), +(1996, 3, 'MANFIO RODRIGUEZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '974@yahoo.com', '2011-02-03', 118777, '2011-03-23', 468040.00, 'A'), +(1997, 3, 'NEIVA MORENO DE SOUZA CRISTIANE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-24', 933900.00, 'A'), +(2, 3, 'CHEEVER MICHAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-04', 560090.00, 'I'), +(2000, 3, 'ROCHA GUSTAVO ADRIANO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118288, '2011-07-25', 830340.00, 'A'), +(2001, 3, 'DE ANDRADE CARVALHO VIRGINIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-08-11', 575760.00, 'A'), +(2002, 3, 'CAVALCANTI PIERECK GUILHERME', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 180063, '2011-08-01', 387770.00, 'A'), +(2004, 3, 'HOEGEMANN RAMOS CARLOS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-04', 894550.00, 'A'), +(201, 1, 'LUIS FERNANDO AREVALO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-17', 156730.00, 'A'), +(2010, 3, 'GOMES BUCHALA JORGE FERNANDO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-23', 314800.00, 'A'), +(2011, 3, 'MARTINS SIMAIKA CATIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-06-01', 155020.00, 'A'), +(2012, 3, 'MONICA CASECA BUENO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-05-16', 830710.00, 'A'), +(2013, 3, 'ALBERTAL MARCELO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118000, '2010-09-10', 688480.00, 'A'), +(2015, 3, 'GOMES CANTARELLI JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118761, '2011-01-11', 685940.00, 'A'), +(2016, 3, 'CADETTI GARBELLINI ENILICE CRISTINA ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-11', 578870.00, 'A'), +(2017, 3, 'SPIELKAMP KLAUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 150699, '2011-03-28', 836540.00, 'A'), +(2019, 3, 'GARES HENRI PHILIPPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 135190, '2011-04-05', 720730.00, 'A'), +('CELL4308', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(202, 1, 'LUCIO CHAUSTRE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-19', 179240.00, 'A'), +(2023, 3, 'GRECO DE RESENDELUIZ ALFREDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 119814, '2011-04-25', 647940.00, 'A'), +(2024, 3, 'CORTINA EVANDRO JOAO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118922, '2011-05-12', 153970.00, 'A'), +(2026, 3, 'BASQUES MOURA GERALDO CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 119814, '2011-09-07', 668250.00, 'A'), +(2027, 3, 'DA SILVA VALDECIR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 863150.00, 'A'), +(2028, 3, 'CHI MOW YUNG IVAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-21', 311000.00, 'A'), +(2029, 3, 'YUNG MYRA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-21', 965570.00, 'A'), +(2030, 3, 'MARTINS RAMALHO PATRICIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-03-23', 894830.00, 'A'), +(2031, 3, 'DE LEMOS RIBEIRO GILBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118951, '2011-07-29', 577430.00, 'A'), +(2032, 3, 'AIROLDI CLAUDIO', 191821112, 'CRA 25 CALLE 100', '973@terra.com.co', '2011-02-03', 127591, '2011-09-28', 202650.00, 'A'), +(2033, 3, 'ARRUDA MENDES HEILMANN IONE TEREZA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 120773, '2011-09-07', 280990.00, 'A'), +(2034, 3, 'TAVARES DE CARVALHO EDUARDO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118942, '2011-08-03', 796980.00, 'A'), +(2036, 3, 'FERNANDES ALARCON RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-08-28', 318730.00, 'A'), +(2037, 3, 'SUCHODOLKI SERGIO GUSMAO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 190393, '2011-07-13', 167870.00, 'A'), +(2039, 3, 'ESTEVES MARCAL MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-02-24', 912100.00, 'A'), +(2040, 3, 'CORSI LUIZ ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-03-25', 911080.00, 'A'), +(2041, 3, 'LOPEZ MONICA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118795, '2011-05-03', 819090.00, 'A'), +(2042, 3, 'QUINTANILHA LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-16', 362230.00, 'A'), +(2043, 3, 'DE CARLI BRUNO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-05-03', 353890.00, 'A'), +(2045, 3, 'MARINO FRANCA MARILIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-07-04', 352060.00, 'A'), +(2048, 3, 'VOIGT ALPHONSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118439, '2010-11-22', 384150.00, 'A'), +(2049, 3, 'ALENCAR ARIMA TATIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-05-23', 408590.00, 'A'), +(2050, 3, 'LINIS DE ALMEIDA NEILSON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 125666, '2011-08-03', 890480.00, 'A'), +(2051, 3, 'PINHEIRO DE CASTRO BENETI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-08-09', 226640.00, 'A'), +(2052, 3, 'ALVES DO LAGO HELMANN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118942, '2011-08-01', 461770.00, 'A'), +(2053, 3, 'OLIVO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-22', 628900.00, 'A'), +(2054, 3, 'WILLIAM DOMINGUES SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118085, '2011-08-23', 759220.00, 'A'), +(2055, 3, 'DE SOUZA MENEZES KLEBER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-04-25', 909400.00, 'A'), +(2056, 3, 'CABRAL NEIDE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-16', 269340.00, 'A'), +(2057, 3, 'RODRIGUES RENATO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-06-15', 618500.00, 'A'), +(2058, 3, 'SPADALE PEDRO JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-08-03', 284490.00, 'A'), +(2059, 3, 'MARTINS DE ALMEIDA GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-09-28', 566920.00, 'A'), +(206, 1, 'TORRES HEBER MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-01-29', 643210.00, 'A'), +(2060, 3, 'IKUNO CELINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-06-08', 981170.00, 'A'), +(2061, 3, 'DAL BELLO FABIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129499, '2011-08-20', 205050.00, 'A'), +(2062, 3, 'BENATES ADRIANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-23', 81770.00, 'A'), +(2063, 3, 'CARDOSO ALEXANDRE ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 793690.00, 'A'), +(2064, 3, 'ZANIOLO DE SOUZA CARLOS HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-09-19', 723130.00, 'A'), +(2065, 3, 'DA SILVA LUIZ SIDNEI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-03-30', 234590.00, 'A'), +(2066, 3, 'RUFATO DE SOUZA LUIZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-08-29', 3560.00, 'A'), +(2067, 3, 'DE MEDEIROS LUCIANA', 191821112, 'CRA 25 CALLE 100', '994@yahoo.com.mx', '2011-02-03', 118777, '2011-09-10', 314020.00, 'A'), +(2068, 3, 'WOLFF PIAZERA DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118255, '2011-06-15', 559430.00, 'A'), +(2069, 3, 'DA SILVA FORTUNA MARINA CLAUDIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-09-23', 855100.00, 'A'), +(2070, 3, 'PEREIRA BORGES LUCILA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-26', 597210.00, 'A'), +(2072, 3, 'PORROZZI DE ALMEIDA RENATO', 191821112, 'CRA 25 CALLE 100', '812@hotmail.es', '2011-02-03', 127591, '2011-06-13', 312120.00, 'A'), +(2073, 3, 'KALICHSZTEINN RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-03-23', 298330.00, 'A'), +(2074, 3, 'OCCHIALINI GUIMARAES ANA PAULA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2011-08-03', 555310.00, 'A'), +(2075, 3, 'MAZZUCO FONTES LUIZ ROBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-05-23', 881570.00, 'A'), +(2078, 3, 'TRAN DINH VAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 98560.00, 'A'), +(2079, 3, 'NGUYEN THI LE YEN', 191821112, 'CRA 25 CALLE 100', '249@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 298200.00, 'A'), +(208, 1, 'GOMEZ GONZALEZ JORGE MARIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-12', 889010.00, 'A'), +(2080, 3, 'MILA DE LA ROCA JOHANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-01-26', 195350.00, 'A'), +(2081, 3, 'RODRIGUEZ DE FLORES LOURDES MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-16', 82120.00, 'A'), +(2082, 3, 'FLORES PEREZ FRANCISCO GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-23', 824550.00, 'A'), +(2083, 3, 'FRAGACHAN BETANCOUT FRANCISCO JO SE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-07-04', 876400.00, 'A'), +(2084, 3, 'GAFARO MOLINA CARLOS JULIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-22', 908370.00, 'A'), +(2085, 3, 'CACERES REYES JORGEANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-08-11', 912630.00, 'A'), +(2086, 3, 'ALVAREZ RODRIGUEZ VICTOR ROGELIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2011-05-23', 838040.00, 'A'), +(2087, 3, 'GARCES ALVARADO JHAGEIMA JOSEFINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-04-29', 452320.00, 'A'), +('CELL4324', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(2089, 3, 'FAVREAU CHOLLET JEAN PIERRE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132554, '2011-05-27', 380470.00, 'A'), +(209, 1, 'CRUZ RODRIGEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '316@hotmail.es', '2011-02-03', 127591, '2011-06-28', 953870.00, 'A'), +(2090, 3, 'GARAY LLUCH URBI ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-03-13', 659870.00, 'A'), +(2091, 3, 'LETICIA LETICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-07', 157950.00, 'A'), +(2092, 3, 'VELASQUEZ RODULFO RAMON ARISTIDES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-23', 810140.00, 'A'), +(2093, 3, 'PEREZ EDGAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-06', 576850.00, 'A'), +(2094, 3, 'PEREZ MARIELA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-07', 453840.00, 'A'), +(2095, 3, 'PETRUZZI MANGIARANO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132958, '2011-03-27', 538650.00, 'A'), +(2096, 3, 'LINARES GORI RICARDO RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-12', 331730.00, 'A'), +(2097, 3, 'LAIRET OLIVEROS CAROLINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-25', 42680.00, 'A'), +(2099, 3, 'JIMENEZ GARCIA FERNANDO JOSE', 191821112, 'CRA 25 CALLE 100', '78@hotmail.es', '2011-02-03', 132958, '2011-07-21', 963110.00, 'A'), +(21, 1, 'RUBIO ESCOBAR RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-05-21', 639240.00, 'A'), +(2100, 3, 'ZABALA MILAGROS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-20', 160860.00, 'A'), +(2101, 3, 'VASQUEZ CRUZ NICOLEDANIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-07-31', 914990.00, 'A'), +(2102, 3, 'REYES FIGUERA RAMON ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126674, '2011-04-03', 92340.00, 'A'), +(2104, 3, 'RAMIREZ JIMENEZ MARYLIN CAROLINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2011-06-14', 306760.00, 'A'), +(2105, 3, 'TELLES GUILLEN INNA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-09-07', 383520.00, 'A'), +(2106, 3, 'ALVAREZ CARMEN MARINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-07-20', 997340.00, 'A'), +(2107, 3, 'MARTINEZ YRIGOYEN NABUCODONOSOR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-07-21', 836110.00, 'A'), +(2108, 5, 'FERNANDEZ RUIZ IGNACIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-01', 188530.00, 'A'), +(211, 1, 'RIVEROS GARCIA JORGE IVAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-01', 650050.00, 'A'), +(2110, 3, 'CACERES REYES JORGE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-08-08', 606030.00, 'A'), +(2111, 3, 'GELFI MARCOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 199862, '2011-05-17', 727190.00, 'A'), +(2112, 3, 'CERDA CASTILLO CARMEN GLORIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', 817870.00, 'A'), +(2113, 3, 'RANGEL FERNANDEZ LEONARDO JOSE', 191821112, 'CRA 25 CALLE 100', '856@hotmail.com', '2011-02-03', 133211, '2011-05-16', 907750.00, 'A'), +(2114, 3, 'ROTHSCHILD VARGAS MICHAEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-02-05', 85170.00, 'A'), +(2115, 3, 'RUIZ GRATEROL INGRID JOHANNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-05-16', 702600.00, 'A'), +(2116, 2, 'DEARMAS ALBERTO FERNANDO ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-07-19', 257500.00, 'A'), +(2117, 3, 'BOSCAN ARRIETA ERICK HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-07-12', 179680.00, 'A'), +(2118, 3, 'GUILLEN DE TELLES NENCY JOSEFINA', 191821112, 'CRA 25 CALLE 100', '56@facebook.com', '2011-02-03', 132958, '2011-09-07', 125900.00, 'A'), +(212, 1, 'BUSTAMANTE BUSTAMANTE CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-26', 943260.00, 'A'), +(2120, 2, 'MARK ANTHONY STUART', 191821112, 'CRA 25 CALLE 100', '661@terra.com.co', '2011-02-03', 127591, '2011-06-26', 74600.00, 'A'), +(2122, 3, 'SCOCOZZA GIOVANNA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 190526, '2011-09-23', 284220.00, 'A'), +(2125, 3, 'CHAVES MOLINA JULIO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132165, '2011-09-22', 295360.00, 'A'), +(2127, 3, 'BERNARDES DE SOUZA TONIATI VIRGINIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-30', 565090.00, 'A'), +(2129, 2, 'BRIAN DAVIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 78460.00, 'A'), +(213, 1, 'PAREJO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-11', 766120.00, 'A'), +(2131, 3, 'DE OLIVEIRA LOPES REGINALDO LAZARO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-05', 404910.00, 'A'), +(2132, 3, 'DE MELO MING AZEVEDO PAULO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-10-05', 440370.00, 'A'), +(2137, 3, 'SILVA JORGE ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-05', 230570.00, 'A'), +(214, 1, 'CADENA RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-08', 840.00, 'A'), +(2142, 3, 'VIEIRA VEIGA PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-30', 85330.00, 'A'), +(2144, 3, 'ESCRIBANO LEONARDA DEL VALLE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-03-24', 941440.00, 'A'), +(2145, 3, 'RODRIGUEZ MENENDEZ BERNARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 148511, '2011-08-02', 588740.00, 'A'), +(2146, 3, 'GONZALEZ COURET DANIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 148511, '2011-08-09', 119380.00, 'A'), +(2147, 3, 'GARCIA SOTO WILLIAM', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 135360, '2011-05-18', 830660.00, 'A'), +(2148, 3, 'MENESES ORELLANA RICARDO TOMAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-06-13', 795200.00, 'A'), +(2149, 3, 'GUEVARA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-27', 483990.00, 'A'), +(215, 1, 'BELTRAN PINZON JUAN CARLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-08', 705860.00, 'A'), +(2151, 2, 'LLANES GARRIDO JAVIER ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-30', 719750.00, 'A'), +(2152, 3, 'CHAVARRIA CHAVES RAFAEL ADRIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132165, '2011-09-20', 495720.00, 'A'), +(2153, 2, 'MILBERT ANDREASPETER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-10', 319370.00, 'A'), +(2154, 2, 'GOMEZ SILVA LOZANO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127300, '2011-05-30', 109670.00, 'A'), +(2156, 3, 'WINTON ROBERT DOUGLAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 115551, '2011-08-08', 622290.00, 'A'), +(2157, 2, 'ROMERO PINA MANUEL GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-05', 340650.00, 'A'), +(2158, 3, 'KARWALSKI MATTHEW REECE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117229, '2011-08-29', 836380.00, 'A'), +(2159, 2, 'KIM JUNG SIK ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-08', 159950.00, 'A'), +(216, 1, 'MARTINEZ VALBUENA JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 526750.00, 'A'), +(2160, 3, 'AGAR ROBERT ALEXANDER', 191821112, 'CRA 25 CALLE 100', '81@hotmail.es', '2011-02-03', 116862, '2011-06-11', 290620.00, 'A'), +(2161, 3, 'IGLESIAS EDGAR ALEXIS', 191821112, 'CRA 25 CALLE 100', '645@facebook.com', '2011-02-03', 131272, '2011-04-04', 973240.00, 'A'), +(2163, 2, 'NOAIN MORENO CECILIA KARIM ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-22', 51950.00, 'A'), +(2164, 2, 'FIGUEROA HEBEL ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-26', 276760.00, 'A'), +(2166, 5, 'FRANDBERG DAN RICHARD VERNER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 134022, '2011-04-06', 309480.00, 'A'), +(2168, 2, 'CONTRERAS LILLO EDUARDO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-27', 389320.00, 'A'), +(2169, 2, 'BLANCO VALLE RICARDO ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-07-13', 355950.00, 'A'), +(2171, 2, 'BELTRAN ZAVALA JIMI ALFONSO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126674, '2011-08-22', 991000.00, 'A'), +(2172, 2, 'RAMIRO OREGUI JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-04-27', 119700.00, 'A'), +(2175, 2, 'FENG PUYO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 302172, '2011-10-07', 965660.00, 'A'), +(2176, 3, 'CLERICI GUIDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 116366, '2011-08-30', 522970.00, 'A'), +(2177, 1, 'SEIJAS GUNTER LUIS MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-02', 717890.00, 'A'), +(2178, 2, 'SHOSHANI MOSHE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-13', 20520.00, 'A'), +(218, 3, 'HUCHICHALEO ARSENDIGA FRANCISCA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-05', 690.00, 'A'), +(2181, 2, 'DOMINGO BARTOLOME LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '173@terra.com.co', '2011-02-03', 127591, '2011-04-18', 569030.00, 'A'), +(2182, 3, 'GONZALEZ RIJO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-10-02', 795610.00, 'A'), +(2183, 2, 'ANDROVICH MORENO LIZETH LILIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127300, '2011-10-10', 270970.00, 'A'), +(2184, 2, 'ARREAZA LUGO JESUS ALFREDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', 968030.00, 'A'), +(2185, 2, 'NAVEDA CANELON KATHERINE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132775, '2011-09-14', 27250.00, 'A'), +(2189, 2, 'LUGO BEHRENS DENISE SOFIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-08', 253980.00, 'A'), +(2190, 2, 'ERICA ROSE MOLDENHAUVER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-25', 175480.00, 'A'), +(2192, 2, 'SOLORZANO GARCIA ANDREINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 50790.00, 'A'), +(2193, 3, 'DE LA COSTE MARIA CAROLINA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-26', 907640.00, 'A'), +(2194, 2, 'MARTINEZ DIAZ JUAN JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-08', 385810.00, 'A'), +(2195, 2, 'GALARRAGA ECHEVERRIA DAYEN ALI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-13', 206150.00, 'A'), +(2196, 2, 'GUTIERREZ RAMIREZ HECTOR JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133211, '2011-06-07', 873330.00, 'A'), +(2197, 2, 'LOPEZ GONZALEZ SILVIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127662, '2011-09-01', 748170.00, 'A'), +(2198, 2, 'SEGARES LUTZ JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-07', 120880.00, 'A'), +(2199, 2, 'NADER MARTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127538, '2011-08-12', 359880.00, 'A'), +(22, 1, 'CARDOZO AMAYA JORGE HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-25', 908720.00, 'A'), +(2200, 3, 'NATERA BERMUDEZ OSWALDO JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-18', 436740.00, 'A'), +(2201, 2, 'COSTA RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 150699, '2011-09-01', 104090.00, 'A'), +(2202, 5, 'GRUNDY VALENZUELA ALAN PATRICK', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-08', 210230.00, 'A'), +(2203, 2, 'MONTENEGRO DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-26', 738890.00, 'A'), +(2204, 2, 'TAMAI BUNGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-24', 63730.00, 'A'), +(2205, 5, 'VINHAS FORTUNA EDSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-09-23', 102010.00, 'A'), +(2206, 2, 'RUIZ ERBS MARIO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-07-19', 318860.00, 'A'), +(2207, 2, 'VENTURA TINEO MARCEL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', 288240.00, 'A'), +(2210, 2, 'RAMIREZ GUZMAN RICARDO JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-28', 338740.00, 'A'), +(2211, 2, 'STERNBERG GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2011-09-04', 18070.00, 'A'), +(2212, 2, 'MARTELLO ALEJOS ROGER ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127443, '2011-06-20', 74120.00, 'A'), +(2213, 2, 'CASTANEDA RAFAEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 316410.00, 'A'), +(2214, 2, 'LIMON MARTINEZ WILBERT DE JESUS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128904, '2011-09-19', 359690.00, 'A'), +(2215, 2, 'PEREZ HERNANDEZ MONICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133211, '2011-05-23', 849240.00, 'A'), +(2216, 2, 'AWAD LOBATO RICARDO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '853@hotmail.com', '2011-02-03', 127591, '2011-04-12', 167100.00, 'A'), +(2217, 2, 'CEPEDA VANEGAS ENDER ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-08-22', 287770.00, 'A'), +(2218, 2, 'PEREZ CHIQUIN HECTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132572, '2011-04-13', 937580.00, 'A'), +(2220, 5, 'FRANCO DELGADILLO RONALD FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132775, '2011-09-16', 310190.00, 'A'), +(2222, 2, 'ALCAIDE ALONSO JUAN MIGUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-02', 455360.00, 'A'), +(2223, 3, 'BROWNING BENJAMIN MARK', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-09', 45230.00, 'A'), +(2225, 3, 'HARWOO BENJAMIN JOEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 164620.00, 'A'), +(2226, 3, 'HOEY TIMOTHY ROSS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-09', 242910.00, 'A'), +(2227, 3, 'FERGUSON GARRY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-28', 720700.00, 'A'), +(2228, 3, 'NORMAN NEVILLE ROBERT', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 288493, '2011-06-29', 874750.00, 'A'), +(2229, 3, 'KUK HYUN CHAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-03-22', 211660.00, 'A'), +(223, 1, 'PINZON PLAZA MARCOS VINICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 856300.00, 'A'), +(2230, 3, 'SLIPAK NATALIA ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-07-27', 434070.00, 'A'), +(2231, 3, 'BONELLI MASSIMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 170601, '2011-07-11', 535340.00, 'A'), +(2233, 3, 'VUYLSTEKE ALEXANDER ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 284647, '2011-09-11', 266530.00, 'A'), +(2234, 3, 'DRESSE ALAIN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 284272, '2011-04-19', 209100.00, 'A'), +(2235, 3, 'PAIRON JEAN LOUIS MARIE RAIMOND', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 284272, '2011-03-03', 245940.00, 'A'), +(2236, 3, 'DEVIANE ACHIM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 284272, '2010-11-14', 602370.00, 'A'), +(2239, 3, 'DE CANNIERE LOUIS GEORFES HELE MARIE-JOZEF', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 285511, '2011-09-11', 993540.00, 'A'), +(2240, 1, 'ERGO ROBERT', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-28', 278270.00, 'A'), +(2241, 3, 'MYRTES RODRIGUEZ MORGANA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-18', 410740.00, 'A'), +(2242, 3, 'BRECHBUEHL HANSRUDOLF', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 249059, '2011-07-27', 218900.00, 'A'), +(2243, 3, 'IVANA SCHLUMPF', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 245206, '2011-04-08', 862270.00, 'A'), +(2244, 3, 'JESSICA JACCART', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 189512, '2011-08-28', 654640.00, 'A'), +(2246, 3, 'PAUSELLI MARIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 210050, '2011-09-26', 468090.00, 'A'), +(2247, 3, 'VOLONTEIRO RICCARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-04-13', 281230.00, 'A'), +(2248, 3, 'HOFFMANN ALVIR ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 120773, '2011-08-23', 1900.00, 'A'), +(2249, 3, 'MANTOVANI DANIEL FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-08-09', 165820.00, 'A'), +(225, 1, 'DUARTE RUEDA JAVIER ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-29', 293110.00, 'A'), +(2250, 3, 'LIMA DA COSTA BRENO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-03-23', 823370.00, 'A'), +(2251, 3, 'TAMBORIN MACIEL MAGALI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 619420.00, 'A'), +(2252, 3, 'BELLO DE MUORA BIANCA', 191821112, 'CRA 25 CALLE 100', '969@gmail.com', '2011-02-03', 118942, '2011-08-03', 626970.00, 'A'), +(2253, 3, 'VINHAS FORTUNA PIETRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2011-09-23', 276600.00, 'A'), +(2255, 3, 'BLUMENTHAL JAIRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117630, '2011-07-20', 680590.00, 'A'), +(2256, 3, 'DOS REIS FILHO ELPIDIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 120773, '2011-08-07', 896720.00, 'A'), +(2257, 3, 'COIMBRA CARDOSO MUNARI FERNANDA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-09', 441830.00, 'A'), +(2258, 3, 'LAZANHA FLAVIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118942, '2011-06-14', 519000.00, 'A'), +(2259, 3, 'LAZANHA FLAVIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-06-14', 269480.00, 'A'), +(226, 1, 'HUERFANO FLOREZ JOHN FAVER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-29', 148340.00, 'A'), +(2260, 3, 'JOVETTA EDILSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118941, '2011-09-19', 790430.00, 'A'), +(2261, 3, 'DE OLIVEIRA ANDRE RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-07-25', 143680.00, 'A'), +(2263, 3, 'MUNDO TEIXEIRA CARVALHO SILVIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118864, '2011-09-19', 304670.00, 'A'), +(2264, 3, 'FERREIRA CINTRA ADRIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-04-08', 481910.00, 'A'), +(2265, 3, 'AUGUSTO DE OLIVEIRA MARCOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118685, '2011-08-09', 495530.00, 'A'), +(2266, 3, 'CHEN ROBERTO LUIZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-03-15', 31920.00, 'A'), +(2268, 3, 'WROBLESKI DIENSTMANN RAQUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117630, '2011-05-15', 269320.00, 'A'), +(2269, 3, 'MALAGOLA GEDERSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118864, '2011-05-30', 327540.00, 'A'), +(227, 1, 'LOPEZ ESCOBAR CARLOS ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-06', 862360.00, 'A'), +(2271, 3, 'GOMES EVANDRO HENRIQUE', 191821112, 'CRA 25 CALLE 100', '199@hotmail.es', '2011-02-03', 118777, '2011-03-24', 166100.00, 'A'), +(2273, 3, 'LANDEIRA FERNANDEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-21', 207990.00, 'A'), +(2274, 3, 'ROSSI RENATO', 191821112, 'CRA 25 CALLE 100', '791@hotmail.es', '2011-02-03', 118777, '2011-09-19', 16170.00, 'A'), +(2275, 3, 'CALMON RANGEL PATRICIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 456890.00, 'A'), +(2277, 3, 'CIFU NETO ROQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-04-27', 808940.00, 'A'), +(2278, 3, 'GONCALVES PRETO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118942, '2011-07-25', 336930.00, 'A'), +(2279, 3, 'JORGE JUNIOR ROBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-05-09', 257840.00, 'A'), +(2281, 3, 'ELENCIUC DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-04-20', 618510.00, 'A'), +(2283, 3, 'CUNHA MENDEZ RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 119855, '2011-07-18', 431190.00, 'A'), +(2286, 3, 'DIAZ LENICE APARECIDA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-03', 977840.00, 'A'), +(2288, 3, 'DE CARVALHO SIGEL TATIANA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2011-07-04', 123920.00, 'A'), +(229, 1, 'GALARZA GIRALDO SERGIO ALDEMAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-09-17', 746930.00, 'A'), +(2290, 3, 'ACHOA MORANDI BORGUES SIBELE MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118777, '2011-09-12', 553890.00, 'A'), +(2291, 3, 'EPAMINONDAS DE ALMEIDA DELIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-22', 14080.00, 'A'), +(2293, 3, 'REIS CASTRO SHANA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-08-03', 1430.00, 'A'), +(2294, 3, 'BERNARDES JUNIOR ARMANDO', 191821112, 'CRA 25 CALLE 100', '678@gmail.com', '2011-02-03', 127591, '2011-08-30', 780930.00, 'A'), +(2295, 3, 'LEMOS DE SOUZA AGUIAR SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-10-03', 900370.00, 'A'), +(2296, 3, 'CARVALHO ADAMS KARIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2011-08-11', 159040.00, 'A'), +(2297, 3, 'GALLINA SILVANA BRASILEIRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 94110.00, 'A'), +(23, 1, 'COLMENARES PEDREROS EDUARDO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 625870.00, 'A'), +(2300, 3, 'TAVEIRA DE SIQUEIRA TANIA APARECIDA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-24', 443910.00, 'A'), +(2301, 3, 'DA SIVA LIMA ANDRE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-23', 165020.00, 'A'), +(2302, 3, 'GALVAO GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-09-12', 493370.00, 'A'), +(2303, 3, 'DA COSTA CRUZ GABRIELA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-07-27', 971800.00, 'A'), +(2304, 3, 'BERNHARD GOTTFRIED RABER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-04-30', 378870.00, 'A'), +(2306, 3, 'ALDANA URIBE PABLO AXEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-05-08', 758160.00, 'A'), +(2308, 3, 'FLORES ALONSO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-04-26', 995310.00, 'A'), +('CELL4330', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(2309, 3, 'MADRIGAL MIER Y TERAN LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-02-23', 414650.00, 'A'), +(231, 1, 'ZAPATA CEBALLOS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-08-16', 430320.00, 'A'), +(2310, 3, 'GONZALEZ ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-05-19', 87330.00, 'A'), +(2313, 3, 'MONTES PORTO ANDREA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-09-01', 929180.00, 'A'), +(2314, 3, 'ROCHA SUSUNAGA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2010-10-18', 541540.00, 'A'), +(2315, 3, 'VASQUEZ CALERO FEDERICO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 920160.00, 'A'), +(2317, 3, 'GONZALEZ FERNANDEZ YUSSEN ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-26', 120530.00, 'A'), +(2319, 3, 'ATTIAS WENGROWSKY DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150581, '2011-09-07', 8580.00, 'A'), +(232, 1, 'OSPINA ABUCHAIBE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-14', 748960.00, 'A'), +(2320, 3, 'EFRON TOPOROVSKY INES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 116511, '2011-07-15', 20810.00, 'A'), +(2321, 3, 'LUNA PLA DARIO', 191821112, 'CRA 25 CALLE 100', '95@terra.com.co', '2011-02-03', 145135, '2011-09-07', 78320.00, 'A'), +(2322, 1, 'VAZQUEZ DANIELA', 191821112, 'CRA 25 CALLE 100', '190@gmail.com', '2011-02-03', 145135, '2011-05-19', 329170.00, 'A'), +(2323, 3, 'BALBI BALBI JUAN DE DIOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-23', 410880.00, 'A'), +(2324, 3, 'MARROQUIN FERNANDEZ GELACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-23', 66880.00, 'A'), +(2325, 3, 'VAZQUEZ ZAVALA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-04-11', 101770.00, 'A'), +(2326, 3, 'SOTO MARTINEZ MARIA ELENA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-23', 308200.00, 'A'), +(2328, 3, 'HERNANDEZ MURILLO RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-22', 253830.00, 'A'), +(233, 1, 'HADDAD LINERO YEBRAIL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 130608, '2010-06-17', 453830.00, 'A'), +(2330, 3, 'TERMINEL HERNANDEZ DANIELA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 190393, '2011-08-15', 48940.00, 'A'), +(2331, 3, 'MIJARES FERNANDEZ MAGDALENA GUADALUPE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-31', 558440.00, 'A'), +(2332, 3, 'GONZALEZ LUNA CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 146258, '2011-04-26', 645400.00, 'A'), +(2333, 3, 'DIAZ TORREJON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-03', 551690.00, 'A'), +(2335, 3, 'PADILLA GUTIERREZ JESUS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 456120.00, 'A'), +(2336, 3, 'TORRES CORONA JORGE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', 813900.00, 'A'), +(2337, 3, 'CASTRO RAMSES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150581, '2011-07-04', 701120.00, 'A'), +(2338, 3, 'APARICIO VALLEJO RUSSELL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-03-16', 63890.00, 'A'), +(2339, 3, 'ALBOR FERNANDEZ LUIS ARTURO', 191821112, 'CRA 25 CALLE 100', '574@gmail.com', '2011-02-03', 147467, '2011-05-09', 216110.00, 'A'), +(234, 1, 'DOMINGUEZ GOMEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '942@hotmail.com', '2011-02-03', 127591, '2010-08-22', 22260.00, 'A'), +(2342, 3, 'REY ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '110@facebook.com', '2011-02-03', 127591, '2011-03-04', 313330.00, 'A'), +(2343, 3, 'MENDOZA GONZALES ADRIANA', 191821112, 'CRA 25 CALLE 100', '295@yahoo.com', '2011-02-03', 127591, '2011-03-23', 178720.00, 'A'), +(2344, 3, 'RODRIGUEZ SEGOVIA JESUS ALONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-07-26', 953590.00, 'A'), +(2345, 3, 'GONZALEZ PELAEZ EDUARDO DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 231790.00, 'A'), +(2347, 3, 'VILLEDA GARCIA DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 144939, '2011-05-29', 795600.00, 'A'), +(2348, 3, 'FERRER BURGES EMILIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', 83430.00, 'A'), +(2349, 3, 'NARRO ROBLES LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-03-16', 30330.00, 'A'), +(2350, 3, 'ZALDIVAR UGALDE CARLOS IGNACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-06-19', 901380.00, 'A'), +(2351, 3, 'VARGAS RODRIGUEZ VALENTE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 146258, '2011-04-26', 415910.00, 'A'), +(2354, 3, 'DEL PIERO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-09', 19890.00, 'A'), +(2355, 3, 'VILLAREAL ANA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-23', 211810.00, 'A'), +(2356, 3, 'GARRIDO FERRAN JORGE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 999370.00, 'A'), +(2357, 3, 'PEREZ PRECIADO EDMUNDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-22', 361450.00, 'A'), +(2358, 3, 'AGUIRRE VIGNAU DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150581, '2011-08-21', 809110.00, 'A'), +(2359, 3, 'LOPEZ SESMA TOMAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 146258, '2011-09-14', 961200.00, 'A'), +(236, 1, 'VENTO BETANCOURT LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-19', 682230.00, 'A'), +(2360, 3, 'BERNAL MALDONADO GUILLERMO JAVIER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-19', 378670.00, 'A'), +(2361, 3, 'GUZMAN DELGADO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-22', 9770.00, 'A'), +(2362, 3, 'GUZMAN DELGADO MARTIN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 912850.00, 'A'), +(2363, 3, 'GUSMAND ELGADO JORGE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-22', 534910.00, 'A'), +(2364, 3, 'RENDON BUICK JORGE JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-26', 936010.00, 'A'), +(2365, 3, 'HERNANDEZ HERNANDEZ HERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 75340.00, 'A'), +(2366, 3, 'ALVAREZ PAZ PEDRO RAFAEL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-01-02', 568650.00, 'A'), +(2367, 3, 'MIJARES DE LA BARREDA FERNANDA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-07-31', 617240.00, 'A'), +(2368, 3, 'MARTINEZ LOPEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-08-24', 380250.00, 'A'), +(2369, 3, 'GAYTAN MILLAN YANERI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 49520.00, 'A'), +(237, 1, 'BARGUIL ASSIS DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117460, '2009-09-03', 161770.00, 'A'), +(2370, 3, 'DURAN HEREDIA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-04-15', 106850.00, 'A'), +(2371, 3, 'SEGURA MIJARES CRISTOBAL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-31', 385700.00, 'A'), +(2372, 3, 'TEPOS VALTIERRA ERIK ARTURO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116345, '2011-09-01', 607930.00, 'A'), +(2373, 3, 'RODRIGUEZ AGUILAR EDMUNDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-05-04', 882570.00, 'A'), +(2374, 3, 'MYSLABODSKI MICHAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-03-08', 589060.00, 'A'), +(2375, 3, 'HERNANDEZ MIRELES JATNIEL ELIOENAI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', 297600.00, 'A'), +(2376, 3, 'SNELL FERNANDEZ SYNTYHA ROCIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 720830.00, 'A'), +(2378, 3, 'HERNANDEZ EIVET AARON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 394200.00, 'A'), +(2379, 3, 'LOPEZ GARZA JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-22', 837000.00, 'A'), +(238, 1, 'GARCIA PINO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-10', 762140.00, 'A'), +(2381, 3, 'TOSCANO ESTRADA RUBEN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-22', 500940.00, 'A'), +(2382, 3, 'RAMIREZ HUDSON ROGER SILVESTER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-22', 497550.00, 'A'), +(2383, 3, 'RAMOS JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '362@yahoo.es', '2011-02-03', 127591, '2011-08-22', 984940.00, 'A'), +(2384, 3, 'CORTES CERVANTES ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-04-11', 432020.00, 'A'), +(2385, 3, 'POZOS ESQUIVEL DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-27', 205310.00, 'A'), +(2387, 3, 'ESTRADA AGUIRRE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 36470.00, 'A'), +(2388, 3, 'GARCIA RAMIREZ RAMON', 191821112, 'CRA 25 CALLE 100', '177@yahoo.es', '2011-02-03', 127591, '2011-08-22', 990910.00, 'A'), +(2389, 3, 'PRUD HOMME GARCIA CUBAS XAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-18', 845140.00, 'A'), +(239, 1, 'PINZON ARDILA GUSTAVO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-01', 325400.00, 'A'), +(2390, 3, 'ELIZABETH OCHOA ROJAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-05-21', 252950.00, 'A'), +(2391, 3, 'MEZA ALVAREZ JOSE ALBERTO', 191821112, 'CRA 25 CALLE 100', '646@terra.com.co', '2011-02-03', 144939, '2011-05-09', 729340.00, 'A'), +(2392, 3, 'HERRERA REYES RENATO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2010-02-28', 887860.00, 'A'), +(2393, 3, 'MURILLO GARIBAY GILBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-08-20', 251280.00, 'A'), +(2394, 3, 'GARCIA JIMENEZ CARLOS MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-09', 592830.00, 'A'), +(2395, 3, 'GUAGNELLI MARTINEZ BLANCA MONICA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145184, '2010-10-05', 210320.00, 'A'), +(2397, 3, 'GARCIA CISNEROS RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-07-04', 734530.00, 'A'), +(2398, 3, 'MIRANDA ROMO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 853340.00, 'A'), +(24, 1, 'ARREGOCES GARZON NELSON ORLANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127783, '2011-08-12', 403190.00, 'A'), +(240, 1, 'ARCINIEGAS GOMEZ ALBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-18', 340590.00, 'A'), +(2400, 3, 'HERRERA ABARCA EDUARDO VICENTE ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 755620.00, 'A'), +(2403, 3, 'CASTRO MONCAYO LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-07-29', 617260.00, 'A'), +(2404, 3, 'GUZMAN DELGADO OSBALDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 56250.00, 'A'), +(2405, 3, 'GARCIA LOPEZ DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-22', 429500.00, 'A'), +(2406, 3, 'JIMENEZ GAMEZ RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 245206, '2011-03-23', 978720.00, 'A'), +(2407, 3, 'BECERRA MARTINEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-08-23', 605130.00, 'A'), +(2408, 3, 'GARCIA MARTINEZ BERNARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 89480.00, 'A'), +(2409, 3, 'URRUTIA RAYAS BALTAZAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 632020.00, 'A'), +(241, 1, 'MEDINA AGUILA NESTOR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-09', 726730.00, 'A'), +(2411, 3, 'VERGARA MENDOZAVICTOR HUGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-06-15', 562230.00, 'A'), +(2412, 3, 'MENDOZA MEDINA JORGE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 136170.00, 'A'), +(2413, 3, 'CORONADO CASTILLO HUGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 147529, '2011-05-09', 994160.00, 'A'), +(2414, 3, 'GONZALEZ SOTO DELIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-03-23', 562280.00, 'A'), +(2415, 3, 'HERNANDEZ FLORES STEPHANIE REYNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 828940.00, 'A'), +(2416, 3, 'ABRAJAN GUERRERO MARIA DE LOS ANGELES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-23', 457860.00, 'A'), +(2417, 3, 'HERNANDEZ LOERA ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 802490.00, 'A'), +(2418, 3, 'TARIN LOPEZ JOSE CARMEN', 191821112, 'CRA 25 CALLE 100', '117@gmail.com', '2011-02-03', 127591, '2011-03-23', 638870.00, 'A'), +(242, 1, 'JULIO NARVAEZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-05', 611890.00, 'A'), +(2420, 3, 'BATTA MARQUEZ VICTOR ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-08-23', 17820.00, 'A'), +(2423, 3, 'GONZALEZ REYES JUAN JOSE', 191821112, 'CRA 25 CALLE 100', '55@yahoo.es', '2011-02-03', 127591, '2011-07-26', 758070.00, 'A'), +(2425, 3, 'ALVAREZ RODRIGUEZ HIRAM RAMSES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-23', 847420.00, 'A'), +(2426, 3, 'FEMATT HERNANDEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-03-23', 164130.00, 'A'), +(2427, 3, 'GUTIERRES ORTEGA FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 278410.00, 'A'), +(2428, 3, 'JIMENEZ DIAZ JUAN JORGE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-13', 899650.00, 'A'), +(2429, 3, 'VILLANUEVA PEREZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '656@yahoo.es', '2011-02-03', 150449, '2011-03-23', 663000.00, 'A'), +(243, 1, 'GOMEZ REYES ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126674, '2009-12-20', 879240.00, 'A'), +(2430, 3, 'CERON GOMEZ JOEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-03-21', 616070.00, 'A'), +(2431, 3, 'LOPEZ LINALDI DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-05-09', 91360.00, 'A'), +(2432, 3, 'JOSEPH NATHAN PEDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-02', 608580.00, 'A'), +(2433, 3, 'CARRENO PULIDO RUBEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 147242, '2011-06-19', 768810.00, 'A'), +(2434, 3, 'AREVALO MERCADO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-06-12', 18320.00, 'A'), +(2436, 3, 'RAMIREZ QUEZADA ERIKA BELEM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-03', 870930.00, 'A'), +(2438, 3, 'TATTO PRIETO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-19', 382740.00, 'A'), +(2439, 3, 'LOPEZ AYALA LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-10-08', 916370.00, 'A'), +(244, 1, 'DEVIS EDGAR JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-10-08', 560540.00, 'A'), +(2440, 3, 'HERNANDEZ TOVAR JORGE ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 144991, '2011-10-02', 433650.00, 'A'), +(2441, 3, 'COLLIARD LOPEZ PETER GEORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 419120.00, 'A'), +(2442, 3, 'FLORES CHALA GARY', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 794670.00, 'A'), +(2443, 3, 'FANDINO MUNOZ ZAMIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-19', 715970.00, 'A'), +(2444, 3, 'BARROSO VARGAS DIEGO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-26', 195840.00, 'A'), +(2446, 3, 'CRUZ RAMIREZ JUAN PEDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-07-14', 569050.00, 'A'), +(2447, 3, 'TIJERINA ACOSTA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 351280.00, 'A'), +(2449, 3, 'JASSO BARRERA CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-08-24', 192560.00, 'A'), +(245, 1, 'LENCHIG KALEDA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-02', 165000.00, 'A'), +(2450, 3, 'GARRIDO PATRON VICTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-09-27', 814970.00, 'A'), +(2451, 3, 'VELASQUEZ GUERRERO RUBEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', 497150.00, 'A'), +(2452, 3, 'CHOI SUNGKYU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 209494, '2011-08-16', 40860.00, 'A'), +(2453, 3, 'CONTRERAS LOPEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-08-05', 712830.00, 'A'), +(2454, 3, 'CHAVEZ BATAA OSCAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 150699, '2011-06-14', 441590.00, 'A'), +(2455, 3, 'LEE JONG HYUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131272, '2011-10-10', 69460.00, 'A'), +(2456, 3, 'MEDINA PADILLA CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 146589, '2011-04-20', 22530.00, 'A'), +(2457, 3, 'FLORES CUEVAS DOTNARA LUZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-05-17', 904260.00, 'A'), +(2458, 3, 'LIU YONGCHAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-10-09', 453710.00, 'A'), +(2459, 3, 'CASTRO FERNANDES PORTOCARRERO JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 195892, '2011-06-14', 555790.00, 'A'), +(246, 1, 'YAMHURE FONSECAN ERNESTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-10-03', 143350.00, 'A'), +(2460, 3, 'DUAN WEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-06-22', 417820.00, 'A'), +(2461, 3, 'ZHU XUTAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-18', 421740.00, 'A'), +(2462, 3, 'MEI SHUANNIU', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-09', 855240.00, 'A'), +(2464, 3, 'VEGA VACA LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-06-08', 489110.00, 'A'), +(2465, 3, 'TANG YUMING', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 147578, '2011-03-26', 412660.00, 'A'), +(2466, 3, 'VILLEDA GARCIA DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 144939, '2011-06-07', 595990.00, 'A'), +(2467, 3, 'GARCIA GARZA BLANCA ARMIDA', 191821112, 'CRA 25 CALLE 100', '927@hotmail.com', '2011-02-03', 145135, '2011-05-20', 741940.00, 'A'), +(2468, 3, 'HERNANDEZ MARTINEZ EMILIO JOAQUIN', 191821112, 'CRA 25 CALLE 100', '356@facebook.com', '2011-02-03', 145135, '2011-06-16', 921740.00, 'A'), +(2469, 3, 'WANG FAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 185363, '2011-08-20', 382860.00, 'A'), +(247, 1, 'ROJAS RODRIGUEZ ALVARO HERNAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-09', 221760.00, 'A'), +(2470, 3, 'WANG FEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-10-09', 149100.00, 'A'), +(2471, 3, 'BERNAL MALDONADO GUILLERMO JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118777, '2011-07-26', 596900.00, 'A'), +(2472, 3, 'GUTIERREZ GOMEZ ARTURO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145184, '2011-07-24', 537210.00, 'A'), +(2474, 3, 'LAN TYANYE ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-23', 865050.00, 'A'), +(2475, 3, 'LAN SHUZHEN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-23', 639240.00, 'A'), +(2476, 3, 'RODRIGUEZ GONZALEZ CARLOS ARTURO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 144616, '2011-08-09', 601050.00, 'A'), +(2477, 3, 'HAIBO NI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-20', 87540.00, 'A'), +(2479, 3, 'RUIZ RODRIGUEZ GRACIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-05-20', 910130.00, 'A'), +(248, 1, 'GONZALEZ RODRIGUEZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-03', 678750.00, 'A'), +(2480, 3, 'OROZCO MACIAS NORMA LETICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-20', 647010.00, 'A'), +(2481, 3, 'MEZA ALVAREZ JOSE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 144939, '2011-06-07', 504670.00, 'A'), +(2482, 3, 'RODRIGUEZ FIGUEROA RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 146308, '2011-04-27', 582290.00, 'A'), +(2483, 3, 'CARREON GUERRA ANA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 110709, '2011-05-27', 397440.00, 'A'), +(2484, 3, 'BOTELHO BARRETO CARLOS JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 195892, '2011-08-02', 240350.00, 'A'), +(2485, 3, 'CORONADO CASTILLO HUGO', 191821112, 'CRA 25 CALLE 100', '209@yahoo.com.mx', '2011-02-03', 147529, '2011-06-07', 9420.00, 'A'), +(2486, 3, 'DE FUENTES GARZA MARCELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-18', 326030.00, 'A'), +(2487, 3, 'GONZALEZ DUHART GUTIERREZ HORACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-17', 601920.00, 'A'), +(2488, 3, 'LOPEZ LINALDI DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-06-07', 31500.00, 'A'), +(2489, 3, 'CASTRO MONCAYO JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-06-15', 351720.00, 'A'), +(249, 1, 'CASTRO RIBEROS JULIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-23', 728470.00, 'A'), +(2490, 3, 'SERRALDE LOPEZ MARIA GUADALUPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-25', 664120.00, 'A'), +(2491, 3, 'GARRIDO PATRON VICTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-09-29', 265450.00, 'A'), +(2492, 3, 'BRAUN JUAN NICOLAS ANTONIE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-28', 334880.00, 'A'), +(2493, 3, 'BANKA RAHUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 141138, '2011-05-02', 878070.00, 'A'), +(2494, 1, 'GARCIA MARTINEZ MARIA VIRGINIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-17', 385690.00, 'A'), +(2495, 1, 'MARIA VIRGINIA', 191821112, 'CRA 25 CALLE 100', '298@yahoo.com.mx', '2011-02-03', 127591, '2011-04-16', 294220.00, 'A'), +(2496, 3, 'GOMEZ ZENDEJAS MARIA ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145184, '2011-06-06', 314060.00, 'A'), +(2498, 3, 'MENDEZ MARTINEZ RAUL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-10', 496040.00, 'A'), +(2623, 3, 'ZAFIROPOULO ANA I', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 98170.00, 'A'), +(2499, 3, 'CARREON GUERRA ANA CECILIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-29', 417240.00, 'A'), +(2501, 3, 'OLIVAR ARIAS ISMAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-06-06', 738850.00, 'A'), +(2502, 3, 'ABOUMRAD NASTA EMILE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-07-26', 899890.00, 'A'), +(2503, 3, 'RODRIGUEZ JIMENEZ ROBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-05-03', 282900.00, 'A'), +(2504, 3, 'ESTADOS UNIDOS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-27', 714840.00, 'A'), +(2505, 3, 'SOTO MUNOZ MARCO GREGORIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-26', 725480.00, 'A'), +(2506, 3, 'GARCIA MONTER ANA OTILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-10-05', 482880.00, 'A'), +(2507, 3, 'THIRUKONDA VIGNESH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126180, '2011-05-02', 237950.00, 'A'), +(2508, 3, 'RAMIREZ REATIAGA LYDA YOANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 150699, '2011-06-26', 741120.00, 'A'), +(2509, 3, 'SEPULVEDA RODRIGUEZ JESUS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', 991730.00, 'A'), +(251, 1, 'MEJIA PIZANO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-10', 845000.00, 'A'), +(2510, 3, 'FRANCISCO MARIA DIAS COSTA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 179111, '2011-07-12', 735330.00, 'A'), +(2511, 3, 'TEIXEIRA REGO DE OLIVEIRA TIAGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 179111, '2011-06-14', 701430.00, 'A'), +(2512, 3, 'PHILLIP JAMES', 191821112, 'CRA 25 CALLE 100', '766@terra.com.co', '2011-02-03', 127591, '2011-09-28', 301150.00, 'A'), +(2513, 3, 'ERXLEBEN ROBERT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 216125, '2011-04-13', 401460.00, 'A'), +(2514, 3, 'HUGHES CONNORRICHARD', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-06-22', 103880.00, 'A'), +(2515, 3, 'LEBLANC MICHAEL PAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 216125, '2011-08-09', 314990.00, 'A'), +(2517, 3, 'DEVINE CHRISTOPHER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-06-22', 371560.00, 'A'), +(2518, 3, 'WONG BRIAN TEK FUNG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126885, '2011-09-22', 67910.00, 'A'), +(2519, 3, 'BIDWALA IRFAN A', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 154811, '2011-03-28', 224840.00, 'A'), +(252, 1, 'JIMENEZ LARRARTE JUAN GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-01', 406770.00, 'A'), +(2520, 3, 'LEE HO YIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 147578, '2011-08-29', 920470.00, 'A'), +(2521, 3, 'DE MOURA MARTINS NUNO ALEXANDRE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196094, '2011-10-09', 927850.00, 'A'), +(2522, 3, 'DA COSTA GOMES CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 179111, '2011-08-10', 877850.00, 'A'), +(2523, 3, 'HOOGWAERTS PAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-02-11', 605690.00, 'A'), +(2524, 3, 'LOPES MARQUES LUIS JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2011-09-20', 394910.00, 'A'), +(2525, 3, 'CORREIA CAVACO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 178728, '2011-10-09', 157470.00, 'A'), +(2526, 3, 'HALL JOHN WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-09', 602620.00, 'A'), +(2527, 3, 'KNIGHT MARTIN GYLES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 113550, '2011-08-29', 540670.00, 'A'), +(2528, 3, 'HINDS THMAS TRISTAN PELLEW', 191821112, 'CRA 25 CALLE 100', '337@yahoo.es', '2011-02-03', 116862, '2011-08-23', 895500.00, 'A'), +(2529, 3, 'CARTON ALAN JOHN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-07-31', 855510.00, 'A'), +(253, 1, 'AZCUENAGA RAMIREZ NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 298472, '2011-05-10', 498840.00, 'A'), +(2530, 3, 'GHIM CHEOLL HO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-27', 591060.00, 'A'), +(2531, 3, 'PHILLIPS NADIA SULLIVAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-28', 388750.00, 'A'), +(2532, 3, 'CHANG KUKHYUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-22', 170560.00, 'A'), +(2533, 3, 'KANG SEOUNGHYUN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 173192, '2011-08-24', 686540.00, 'A'), +(2534, 3, 'CHUNG BYANG HOON', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 125744, '2011-03-14', 921030.00, 'A'), +(2535, 3, 'SHIN MIN CHUL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 173192, '2011-08-24', 545510.00, 'A'), +(2536, 3, 'CHOI JIN SUNG', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-15', 964490.00, 'A'), +(2537, 3, 'CHOI SUNGMIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-27', 185910.00, 'A'), +(2538, 3, 'PARK JAESER ', 191821112, 'CRA 25 CALLE 100', '525@terra.com.co', '2011-02-03', 127591, '2011-09-03', 36090.00, 'A'), +(2539, 3, 'KIM DAE HOON ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 173192, '2011-08-24', 622700.00, 'A'), +(254, 1, 'AVENDANO PABON ROLANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-05-12', 273900.00, 'A'), +(2540, 3, 'LYNN MARIA CRISTINA NORMA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116862, '2011-09-21', 5220.00, 'A'), +(2541, 3, 'KIM CHINIL JULIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 147578, '2011-08-27', 158030.00, 'A'), +(2543, 3, 'HALL JOHN WILLIAM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 398290.00, 'A'), +(2544, 3, 'YOSUKE PERDOMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 165600, '2011-07-26', 668040.00, 'A'), +(2546, 3, 'AKAGI KAZAHIKO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-26', 722510.00, 'A'), +(2547, 3, 'NELSON JONATHAN GARY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-09', 176570.00, 'A'), +(2548, 3, 'DUONG HOP BA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 116862, '2011-09-14', 715310.00, 'A'), +(2549, 3, 'CHAO-VILLEGAS NIKOLE TUK HING', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 180063, '2011-04-05', 46830.00, 'A'), +(255, 1, 'CORREA ALVARO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-27', 872990.00, 'A'), +(2551, 3, 'APPELS LAURENT BERNHARD', 191821112, 'CRA 25 CALLE 100', '891@hotmail.es', '2011-02-03', 135190, '2011-08-16', 300620.00, 'A'), +(2552, 3, 'PLAISIER ERIK JAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289294, '2011-05-23', 238440.00, 'A'), +(2553, 3, 'BLOK HENDRIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 288552, '2011-03-27', 290350.00, 'A'), +(2554, 3, 'NETTE ANNA STERRE', 191821112, 'CRA 25 CALLE 100', '621@yahoo.com.mx', '2011-02-03', 185363, '2011-07-30', 736400.00, 'A'), +(2555, 3, 'FRIELING HANS ERIC', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 107469, '2011-07-31', 810990.00, 'A'), +(2556, 3, 'RUTTE CORNELIA JANTINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 143579, '2011-03-30', 845710.00, 'A'), +(2557, 3, 'WALRAVEN PIETER PAUL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 289294, '2011-07-29', 795620.00, 'A'), +(2558, 3, 'TREBES LAURENS JOHANNES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-11-22', 440940.00, 'A'), +(2559, 3, 'KROESE ROLANDWILLEBRORDUSMARIA', 191821112, 'CRA 25 CALLE 100', '188@facebook.com', '2011-02-03', 110643, '2011-06-09', 817860.00, 'A'), +(256, 1, 'FARIAS GARCIA REINI', 191821112, 'CRA 25 CALLE 100', '615@hotmail.com', '2011-02-03', 127591, '2011-03-05', 543220.00, 'A'), +(2560, 3, 'VAN DER HEIDE HENDRIK', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 291042, '2011-09-04', 766460.00, 'A'), +(2561, 3, 'VAN DEN BERG DONAR ALEXANDER GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 190393, '2011-07-13', 378720.00, 'A'), +(2562, 3, 'GODEFRIDUS JOHANNES ROPS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127622, '2011-10-02', 594240.00, 'A'), +(2564, 3, 'WAT YOK YIENG', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 287095, '2011-03-22', 392370.00, 'A'), +(2565, 3, 'BUIS JACOBUS NICOLAAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-20', 456810.00, 'A'), +(2567, 3, 'CHIPPER FRANCIUSCUS NICOLAAS ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 291599, '2011-07-28', 164300.00, 'A'), +(2568, 3, 'ONNO ROUKENS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-11-28', 500670.00, 'A'), +(2569, 3, 'PETRUS MARCELLINUS STEPHANUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-06-25', 10430.00, 'A'), +(2571, 3, 'VAN VOLLENHOVEN IVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-08', 719370.00, 'A'), +(2572, 3, 'LAMBOOIJ BART', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-09-20', 946480.00, 'A'), +(2573, 3, 'LANSER MARIANA PAULINE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 289294, '2011-04-09', 574270.00, 'A'), +(2575, 3, 'KLERKEN JOHANNES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 286101, '2011-05-24', 436840.00, 'A'), +(2576, 3, 'KRAS JACOBUS NICOLAAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289294, '2011-09-26', 88410.00, 'A'), +(2577, 3, 'FUCHS MICHAEL JOSEPH', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 185363, '2011-07-30', 131530.00, 'A'), +(2578, 3, 'BIJVANK ERIK JAN WILLEM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-11', 392410.00, 'A'), +(2579, 3, 'SCHMIDT FRANC ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 106742, '2011-09-11', 567470.00, 'A'), +(258, 1, 'SOTO GONZALEZ FRANCISCO LAZARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 116511, '2011-05-07', 856050.00, 'A'), +(2580, 3, 'VAN DER KOOIJ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 291277, '2011-07-10', 660130.00, 'A'), +(2581, 2, 'KRIS ANDRE GEORGES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-07-26', 598240.00, 'A'), +(2582, 3, 'HARDING LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 263813, '2011-05-08', 10820.00, 'A'), +(2583, 3, 'ROLLI GUY JEAN ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-05-31', 259370.00, 'A'), +(2584, 3, 'NIETO PARRA SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 263813, '2011-07-04', 264400.00, 'A'), +(2585, 3, 'LASTRA CHAVEZ PABLO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126674, '2011-05-25', 543890.00, 'A'), +(2586, 1, 'ZAIDA MAYERLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-05', 926250.00, 'A'), +(2587, 1, 'OSWALDO SOLORZANO CONTRERAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-28', 999590.00, 'A'), +(2588, 3, 'ZHOU XUAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-18', 219200.00, 'A'), +(2589, 3, 'HUANG ZHENGQUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-18', 97230.00, 'A'), +(259, 1, 'GALARZA NARANJO JAIME RENE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 988830.00, 'A'), +(2590, 3, 'HUANG ZHENQUIN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-18', 828560.00, 'A'), +(2591, 3, 'WEIDEN MULLER AMURER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-29', 851110.00, 'A'), +(2593, 3, 'OESTERHAUS CORNELIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 256231, '2011-03-29', 295960.00, 'A'), +(2594, 3, 'RINTALAHTI JUHA HENRIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 170220.00, 'A'), +(2597, 3, 'VERWIJNEN JONAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 289697, '2011-02-03', 638040.00, 'A'), +(2598, 3, 'SHAW ROBERT', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 157414, '2011-07-10', 273550.00, 'A'), +(2599, 3, 'MAKINEN TIMO JUHANI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-09-13', 453600.00, 'A'), +(260, 1, 'RIVERA CANON JOSE EDWARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127538, '2011-09-19', 375990.00, 'A'), +(2600, 3, 'HONKANIEMI ARTO OLAVI', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 301387, '2011-09-06', 447380.00, 'A'), +(2601, 3, 'DAGG JAMIE MICHAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 216125, '2011-08-09', 876080.00, 'A'), +(2602, 3, 'BOLAND PATRICK CHARLES ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 216125, '2011-09-14', 38260.00, 'A'), +(2603, 2, 'ZULEYKA JERRYS RIVERA MENDOZA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 150347, '2011-03-27', 563050.00, 'A'), +(2604, 3, 'DELGADO SEQUIRA FERRAO JOSE PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188228, '2011-08-16', 700460.00, 'A'), +(2605, 3, 'YORRO LORA EDGAR MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127689, '2011-06-17', 813180.00, 'A'), +(2606, 3, 'CARRASCO RODRIGUEZQCARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127689, '2011-06-17', 964520.00, 'A'), +(2607, 30, 'ORJUELA VELASQUEZ JULIANA MARIA', 191821112, 'CRA 25 CALLE 100', '372@terra.com.co', '2011-02-03', 132775, '2011-09-01', 383070.00, 'A'), +(2608, 3, 'DUQUE DUTRA LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-07-12', 21780.00, 'A'), +(261, 1, 'MURCIA MARQUEZ NESTOR JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-19', 913480.00, 'A'), +(2610, 3, 'NGUYEN HUU KHUONG', 191821112, 'CRA 25 CALLE 100', '457@facebook.com', '2011-02-03', 132958, '2011-05-07', 733120.00, 'A'), +(2611, 3, 'NGUYEN VAN LAP', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 786510.00, 'A'), +(2612, 3, 'PHAM HUU THU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 733200.00, 'A'), +(2613, 3, 'DANG MING CUONG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-05-07', 306460.00, 'A'), +(2614, 3, 'VU THI HONG HANH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-05-07', 332710.00, 'A'), +(2615, 3, 'CHAU TANG LANG', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-05-07', 744190.00, 'A'), +(2616, 3, 'CHU BAN THING', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-05-07', 722800.00, 'A'), +(2617, 3, 'NGUYEN QUANG THU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-05-07', 381420.00, 'A'), +(2618, 3, 'TRAN THI KIM OANH', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-05-07', 738690.00, 'A'), +(2619, 3, 'NGUYEN VAN VINH', 191821112, 'CRA 25 CALLE 100', '422@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 549210.00, 'A'), +(262, 1, 'ABDULAZIS ELNESER KHALED', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-27', 439430.00, 'A'), +(2620, 3, 'NGUYEN XUAN VY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132958, '2011-05-07', 529950.00, 'A'), +(2621, 3, 'HA MANH HOA', 191821112, 'CRA 25 CALLE 100', '439@gmail.com', '2011-02-03', 132958, '2011-05-07', 2160.00, 'A'), +(2622, 3, 'ZAFIROPOULO STEVEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 420930.00, 'A'), +(2624, 3, 'TEMIGTERRA MASSIMILIANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 210050, '2011-09-26', 228070.00, 'A'), +(2625, 3, 'CASSES TRINDADE HELGIO HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118402, '2011-09-13', 845850.00, 'A'), +(2626, 3, 'ASCOLI MASTROENI MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 120773, '2011-09-07', 545010.00, 'A'), +(2627, 3, 'MONTEIRO SOARES MARCOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 120773, '2011-07-18', 187530.00, 'A'), +(2629, 3, 'HALL ALVARO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 120773, '2011-08-02', 950450.00, 'A'), +(2631, 3, 'ANDRADE CATUNDA RAFAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 120773, '2011-08-23', 370860.00, 'A'), +(2632, 3, 'MAGALHAES MAYRA ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118767, '2011-08-23', 320960.00, 'A'), +(2633, 3, 'SPREAFICO MIRIAM ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118587, '2011-08-23', 492220.00, 'A'), +(2634, 3, 'GOMES FERREIRA HELIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 125812, '2011-08-23', 498220.00, 'A'), +(2635, 3, 'FERNANDES SENNA PIRES SERGIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-05', 14460.00, 'A'), +(2636, 3, 'BALESTRO FLORIANO FABIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 120773, '2011-08-24', 577630.00, 'A'), +(2637, 3, 'CABANA DE QUEIROZ ANDRADE ALAXANDRE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-23', 844780.00, 'A'), +(2638, 3, 'DALBOSCO CARLA', 191821112, 'CRA 25 CALLE 100', '380@yahoo.com.mx', '2011-02-03', 127591, '2011-06-30', 491010.00, 'A'), +(264, 1, 'ROMERO MONTOYA NICOLAY ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-13', 965220.00, 'A'), +(2640, 3, 'BILLINI CRUZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 144215, '2011-03-27', 130530.00, 'A'), +(2641, 3, 'VASQUES ARIAS DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 144509, '2011-08-19', 890500.00, 'A'), +(2642, 3, 'ROJAS VOLQUEZ GLADYS MICHELLE', 191821112, 'CRA 25 CALLE 100', '852@gmail.com', '2011-02-03', 144215, '2011-07-25', 60930.00, 'A'), +(2643, 3, 'LLANEZA GIL JUAN RAFAELMO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 144215, '2011-07-08', 633120.00, 'A'), +(2646, 3, 'AVILA PEROZO IANKEL JACOB', 191821112, 'CRA 25 CALLE 100', '318@hotmail.com', '2011-02-03', 144215, '2011-09-03', 125600.00, 'A'), +(2647, 3, 'REGULAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-19', 583540.00, 'A'), +(2648, 3, 'CORONADO BATISTA JOSE ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-19', 540910.00, 'A'), +(2649, 3, 'OLIVIER JOSE VICTOR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 144509, '2011-08-19', 953910.00, 'A'), +(2650, 3, 'YOO HOE TAEK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-08-25', 146820.00, 'A'), +(266, 1, 'CUECA RODRIGUEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-22', 384280.00, 'A'), +(267, 1, 'NIETO ALVARADO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2008-04-28', 553450.00, 'A'), +(269, 1, 'LEAL HOLGUIN FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-25', 411700.00, 'A'), +(27, 1, 'MORENO MORENO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2009-09-15', 995620.00, 'A'), +(270, 1, 'CANO IBANES JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-03', 215260.00, 'A'), +(271, 1, 'RESTREPO HERRAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2011-04-18', 841220.00, 'A'), +(272, 3, 'RIOS FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 199862, '2011-03-24', 560300.00, 'A'), +(273, 1, 'MADERO LORENZANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-03', 277850.00, 'A'), +(274, 1, 'GOMEZ GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-09-24', 708350.00, 'A'), +(275, 1, 'CONSUEGRA ARENAS ANDRES MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-09', 708210.00, 'A'), +(276, 1, 'HURTADO ROJAS NICOLAS', 191821112, 'CRA 25 CALLE 100', '463@yahoo.com.mx', '2011-02-03', 127591, '2011-09-07', 416000.00, 'A'), +(277, 1, 'MURCIA BAQUERO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-02', 955370.00, 'A'), +(2773, 3, 'TAKUBO KAORI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 165753, '2011-05-12', 872390.00, 'A'), +(2774, 3, 'OKADA MAKOTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 165753, '2011-06-19', 921480.00, 'A'), +(2775, 3, 'TAKEDA AKIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 21062, '2011-06-19', 990250.00, 'A'), +(2776, 3, 'KOIKE WATARU ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 165753, '2011-06-19', 186800.00, 'A'), +(2777, 3, 'KUBO SHINEI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 165753, '2011-02-13', 963230.00, 'A'), +(2778, 3, 'KANNO YONEZO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 165600, '2011-07-26', 255770.00, 'A'), +(278, 3, 'PARENT ELOIDE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 267980, '2011-05-01', 528840.00, 'A'), +(2781, 3, 'SUNADA MINORU ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 165753, '2011-06-19', 724450.00, 'A'), +(2782, 3, 'INOUE KASUYA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-22', 87150.00, 'A'), +(2783, 3, 'OTAKE NOBUTOSHI', 191821112, 'CRA 25 CALLE 100', '208@facebook.com', '2011-02-03', 127591, '2011-06-11', 262380.00, 'A'), +(2784, 3, 'MOTOI KEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 165753, '2011-06-19', 50470.00, 'A'), +(2785, 3, 'TANAKA KIYOTAKA ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 165753, '2011-06-19', 465210.00, 'A'), +(2787, 3, 'YUMIKOPERDOMO', 191821112, 'CRA 25 CALLE 100', '600@yahoo.es', '2011-02-03', 165600, '2011-07-26', 477550.00, 'A'), +(2788, 3, 'FUKUSHIMA KENZO', 191821112, 'CRA 25 CALLE 100', '599@gmail.com', '2011-02-03', 156960, '2011-05-30', 863860.00, 'A'), +(2789, 3, 'GELGIN LEVENT NURI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-26', 886630.00, 'A'), +(279, 1, 'AVIATUR S. A.', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-02', 778110.00, 'A'), +(2791, 3, 'GELGIN ENIS ENRE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-26', 547940.00, 'A'), +(2792, 3, 'PAZ SOTO LUBRASCA MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 143954, '2011-06-27', 215000.00, 'A'), +(2794, 3, 'MOURAD TAOUFIKI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-13', 511000.00, 'A'), +(2796, 3, 'DASTUS ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 218656, '2011-05-29', 774010.00, 'A'), +(2797, 3, 'MCDONALD MICHAEL LORNE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 269033, '2011-07-19', 85820.00, 'A'), +(2799, 3, 'KLESO MICHAEL QUENTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-07-26', 277950.00, 'A'), +(28, 1, 'GONZALEZ ACUNA EDGAR MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-19', 531710.00, 'A'), +(280, 3, 'NEME KARIM CHAIBAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 135967, '2010-05-02', 304040.00, 'A'), +(2800, 3, 'CLERK CHARLES ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 244158, '2011-07-26', 68490.00, 'A'), +('CELL3673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(2801, 3, 'BURRIS MAURICE STEWARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-27', 508600.00, 'A'), +(2802, 1, 'PINCHEN CLAIRE ELAINE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 216125, '2011-04-13', 337530.00, 'A'), +(2803, 3, 'LETTNER EVA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 231224, '2011-09-20', 161860.00, 'A'), +(2804, 3, 'CANUEL LUCIE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 146258, '2011-09-20', 796710.00, 'A'), +(2805, 3, 'IGLESIAS CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 216125, '2011-08-02', 497980.00, 'A'), +(2806, 3, 'PAQUIN JEAN FRANCOIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-03-27', 99760.00, 'A'), +(2807, 3, 'FOURNIER DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 228688, '2011-05-19', 4860.00, 'A'), +(2808, 3, 'BILODEAU MARTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-13', 725030.00, 'A'), +(2809, 3, 'KELLNER PETER WILLIAM', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 130757, '2011-07-24', 610570.00, 'A'), +(2810, 3, 'ZAZULAK INGRID ROSEMARIE', 191821112, 'CRA 25 CALLE 100', '683@facebook.com', '2011-02-03', 240550, '2011-09-11', 877770.00, 'A'), +(2811, 3, 'RUCCI JHON MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 285188, '2011-05-10', 557130.00, 'A'), +(2813, 3, 'JONCAS MARC', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 33265, '2011-03-21', 90360.00, 'A'), +(2814, 3, 'DUCHARME ERICK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-03-29', 994750.00, 'A'), +(2816, 3, 'BAILLOD THOMAS DAVID ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 239124, '2010-10-20', 529130.00, 'A'), +(2817, 3, 'MARTINEZ SORIA JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 289697, '2011-09-06', 537630.00, 'A'), +(2818, 3, 'TAMARA RABER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-30', 100750.00, 'A'), +(2819, 3, 'BURGI VINCENT EMANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 245206, '2011-04-20', 890860.00, 'A'), +(282, 1, 'HUESPED ASISTENTE A LA CONVENCION DE LA DIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2009-06-24', 17160.00, 'A'), +(2820, 3, 'ROBLES TORRALBA IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 238949, '2011-05-16', 152030.00, 'A'), +(2821, 3, 'CONSUEGRA MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-06', 87600.00, 'A'), +(2822, 3, 'CELMA ADROVER LAIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 190393, '2011-03-23', 981880.00, 'A'), +(2823, 3, 'ALVAREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-06-20', 646610.00, 'A'), +(2824, 3, 'VARGAS WOODROFFE FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 157414, '2011-06-22', 287410.00, 'A'), +(2825, 3, 'GARCIA GUILLEN VICENTE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 144215, '2011-08-19', 497230.00, 'A'), +(2826, 3, 'GOMEZ GARCIA DIAMANTES PATRICIA MARIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2011-09-22', 623930.00, 'A'), +(2827, 3, 'PEREZ IGLESIAS BIBIANA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-09-30', 627940.00, 'A'), +(2830, 3, 'VILLALONGA MORENES MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 169679, '2011-05-29', 474910.00, 'A'), +(2831, 3, 'REY LOPEZ DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2011-08-03', 7380.00, 'A'), +(2832, 3, 'HOYO APARICIO JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116511, '2011-09-19', 612180.00, 'A'), +(2836, 3, 'GOMEZ GARCIA LOPEZ CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150699, '2011-09-21', 277540.00, 'A'), +(2839, 3, 'GALIMERTI MARCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 235197, '2011-08-28', 156870.00, 'A'), +(2840, 3, 'BAROZZI GIUSEPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 231989, '2011-05-25', 609500.00, 'A'), +(2841, 3, 'MARIAN RENATO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-12', 576900.00, 'A'), +(2842, 3, 'FAENZA CARLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126180, '2011-05-19', 55990.00, 'A'), +(2843, 3, 'PESOLILLO CARMINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 203162, '2011-06-26', 549230.00, 'A'), +(2844, 3, 'CHIODI FRANCESCO MARIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 199862, '2011-09-10', 578210.00, 'A'), +(2845, 3, 'RUTA MARIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-06-19', 243350.00, 'A'), +(2846, 3, 'BAZZONI MARINO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 101518, '2011-05-03', 482140.00, 'A'), +(2848, 3, 'LAGASIO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 231989, '2011-05-04', 956670.00, 'A'), +(2849, 3, 'VIERA DA CUNHA PAULO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 190393, '2011-04-05', 741520.00, 'A'), +(2850, 3, 'DAL BEN DENIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 116511, '2011-05-26', 837590.00, 'A'), +(2851, 3, 'GIANELLI HERIBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 233927, '2011-05-01', 963400.00, 'A'), +(2852, 3, 'JUSTINO DA SILVA DJAMIR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-08', 304200.00, 'A'), +(2853, 3, 'DIPASQUUALE GAETANO', 191821112, 'CRA 25 CALLE 100', '574@terra.com.co', '2011-02-03', 172888, '2011-07-11', 630830.00, 'A'), +(2855, 3, 'CURI MAURO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 199862, '2011-06-19', 315160.00, 'A'), +(2856, 3, 'DI DIO MARCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-20', 851210.00, 'A'), +(2857, 3, 'ROBERTI MENDONCA CAIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-11', 310580.00, 'A'), +(2859, 3, 'RAMOS MORENO DE SOUZA ANDRE ', 191821112, 'CRA 25 CALLE 100', '133@facebook.com', '2011-02-03', 118777, '2011-09-24', 64540.00, 'A'), +(286, 8, 'INEXMODA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-06-21', 50150.00, 'A'), +(2860, 3, 'JODJAHN DE CARVALHO FLAVIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-06-27', 324950.00, 'A'), +(2862, 3, 'LAGASIO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 231989, '2011-07-04', 180760.00, 'A'), +(2863, 3, 'MOON SUNG RIUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-08', 610440.00, 'A'), +(2865, 3, 'VAIDYANATHAN VIKRAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-11', 718220.00, 'A'), +(2866, 3, 'NARAYANASWAMY RAMSUNDAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 73079, '2011-10-02', 61390.00, 'A'), +(2867, 3, 'VADADA VENKATA RAMESH KUMAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-10', 152300.00, 'A'), +(2868, 3, 'RAMA KRISHNAN ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-10', 577300.00, 'A'), +(2869, 3, 'JALAN PRASHANT', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 122035, '2011-05-02', 429600.00, 'A'), +(2871, 3, 'CHANDRASEKAR VENKAT', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 112862, '2011-06-27', 791800.00, 'A'), +(2872, 3, 'CUMBAKONAM SWAMINATHAN SUBRAMANIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-11', 710650.00, 'A'), +(288, 8, 'BCD TRAVEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-23', 645390.00, 'A'), +(289, 3, 'EMBAJADA ARGENTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '1970-02-02', 749440.00, 'A'), +('CELL3789', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(290, 3, 'EMBAJADA DE BRASIL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-11-16', 811030.00, 'A'), +(293, 8, 'ONU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-19', 584810.00, 'A'), +(299, 1, 'BLANDON GUZMAN JHON JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-01-13', 201740.00, 'A'), +(304, 3, 'COHEN DANIEL DYLAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 286785, '2010-11-17', 184850.00, 'A'), +(306, 1, 'CINDU ANDINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2009-06-11', 899230.00, 'A'), +(31, 1, 'GARRIDO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127662, '2010-09-12', 801450.00, 'A'), +(310, 3, 'CORPORACION CLUB EL NOGAL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2010-08-27', 918760.00, 'A'), +(314, 3, 'CHAWLA AARON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-08', 295840.00, 'A'), +(317, 3, 'BAKER HUGHES', 191821112, 'CRA 25 CALLE 100', '694@hotmail.com', '2011-02-03', 127591, '2011-04-03', 211990.00, 'A'), +(32, 1, 'PAEZ SEGURA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '675@gmail.com', '2011-02-03', 129447, '2011-08-22', 717340.00, 'A'), +(320, 1, 'MORENO PAEZ FREDDY ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-31', 971670.00, 'A'), +(322, 1, 'CALDERON CARDOZO GASTON EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-05', 990640.00, 'A'), +(324, 1, 'ARCHILA MERA ALFREDOMANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-22', 77200.00, 'A'), +(326, 1, 'MUNOZ AVILA HERNEY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-11-10', 550920.00, 'A'), +(327, 1, 'CHAPARRO CUBILLOS FABIAN ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-15', 685080.00, 'A'), +(329, 1, 'GOMEZ LOPEZ JUAN SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '970@yahoo.com', '2011-02-03', 127591, '2011-03-20', 808070.00, 'A'), +(33, 1, 'MARTINEZ MARINO HENRY HERNAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-04-20', 182370.00, 'A'), +(330, 3, 'MAPSTONE NAOMI LEA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 122035, '2010-02-21', 722380.00, 'A'), +(332, 3, 'ROSSI BURRI NELLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132165, '2010-05-10', 771210.00, 'A'), +(333, 1, 'AVELLANEDA OVIEDO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-25', 293060.00, 'A'), +(334, 1, 'SUZA FLOREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-13', 151650.00, 'A'), +(335, 1, 'ESGUERRA ALVARO ANDRES', 191821112, 'CRA 25 CALLE 100', '11@facebook.com', '2011-02-03', 127591, '2011-09-10', 879080.00, 'A'), +(337, 3, 'DE LA HARPE MARTIN CARAPET WALTER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-27', 64960.00, 'A'), +(339, 1, 'HERNANDEZ ACOSTA SERGIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 129499, '2011-06-22', 322570.00, 'A'), +(340, 3, 'ZARAMA DE LA ESPRIELLA MIGUEL PATRICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-27', 102360.00, 'A'), +(342, 1, 'CABRERA VASQUEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-01', 413440.00, 'A'), +(343, 3, 'RICHARDSON BEN MARRIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2010-05-18', 434890.00, 'A'), +(344, 1, 'OLARTE PINZON MIGUEL FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-30', 934140.00, 'A'), +(345, 1, 'SOLER SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-04-20', 366020.00, 'A'), +(346, 1, 'PRIETO JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-07-12', 27690.00, 'A'), +(349, 1, 'BARRERO VELASCO DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-01', 472850.00, 'A'), +(35, 1, 'VELASQUEZ RAMOS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-13', 251940.00, 'A'), +(350, 1, 'RANGEL GARCIA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-03-20', 7880.00, 'A'), +(353, 1, 'ALVAREZ ACEVEDO JOHN FREDDY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-16', 540070.00, 'A'), +(354, 1, 'VILLAMARIN HOME WILMAR ALFREDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-19', 458810.00, 'A'), +(355, 3, 'SLUCHIN NAAMAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 263813, '2010-12-01', 673830.00, 'A'), +(357, 1, 'BULLA BERNAL LUIS ERNESTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-14', 942160.00, 'A'), +(358, 1, 'BRACCIA AVILA GIANCARLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-01', 732620.00, 'A'), +(359, 1, 'RODRIGUEZ PINTO RAUL DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-24', 836600.00, 'A'), +(36, 1, 'MALDONADO ALVAREZ JAIRO ASDRUBAL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-06-19', 980270.00, 'A'), +(362, 1, 'POMBO POLANCO JUAN BERNARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-18', 124130.00, 'A'), +(363, 1, 'CARDENAS SUAREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-01', 372920.00, 'A'), +(364, 1, 'RIVERA MAZO JOSE DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-06-10', 492220.00, 'A'), +(365, 1, 'LEDERMAN CORDIKI JONATHAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-12-03', 342340.00, 'A'), +(367, 1, 'BARRERA MARTINEZ LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '35@yahoo.com.mx', '2011-02-03', 127591, '2011-05-24', 148130.00, 'A'), +(368, 1, 'SEPULVEDA RAMIREZ DANIEL MARCELO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-31', 35560.00, 'A'), +(369, 1, 'QUINTERO DIAZ WILSON ASDRUBAL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', 733430.00, 'A'), +(37, 1, 'RESTREPO SUAREZ HENRY BERNARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-07-25', 145540.00, 'A'), +(370, 1, 'ROJAS YARA WILLMAR ARLEY', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-12-03', 560450.00, 'A'), +(371, 3, 'CARVER LOUISE EMILY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 286785, '2010-10-07', 601980.00, 'A'), +(372, 3, 'VINCENT DAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2011-03-06', 328540.00, 'A'), +(374, 1, 'GONZALEZ DELGADO MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-18', 198260.00, 'A'), +(375, 1, 'PAEZ SIMON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-25', 480970.00, 'A'), +(376, 1, 'CADOSCH DELMAR ELIE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-07', 810080.00, 'A'), +(377, 1, 'HERRERA VASQUEZ DANIEL EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-06-30', 607460.00, 'A'), +(378, 1, 'CORREAL ROJAS RONALD', 191821112, 'CRA 25 CALLE 100', '269@facebook.com', '2011-02-03', 127591, '2011-07-16', 607080.00, 'A'), +(379, 1, 'VOIDONNIKOLAS MUNOS PANAGIOTIS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-27', 213010.00, 'A'), +(38, 1, 'CANAL ROJAS MAURICIO HERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-05-29', 786900.00, 'A'), +(380, 1, 'DIAZ ECHEVERRI JUAN DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-20', 243800.00, 'A'), +(381, 1, 'CIFUENTES MARIN HERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-26', 579960.00, 'A'), +(382, 3, 'PAXTON LUCINDA HARRIET', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 107159, '2011-05-23', 168420.00, 'A'), +(384, 3, 'POYNTON BRIAN GEORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 286785, '2011-03-20', 5790.00, 'A'), +(385, 3, 'TERMIGNONI ADRIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-01-14', 722320.00, 'A'), +(386, 3, 'CARDWELL PAULA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-02-17', 594230.00, 'A'), +(389, 1, 'FONCECA MARTINEZ MIGUEL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-25', 778680.00, 'A'), +(39, 1, 'GARCIA SUAREZ WILLIAM ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-25', 497880.00, 'A'), +(390, 1, 'GUERRERO NELSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-12-03', 178650.00, 'A'), +(391, 1, 'VICTORIA PENA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-22', 557200.00, 'A'), +(392, 1, 'VAN HISSENHOVEN FERRERO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-13', 250060.00, 'A'), +(393, 1, 'CACERES ORDUZ JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-28', 578690.00, 'A'), +(394, 1, 'QUINTERO ALVARO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-17', 143270.00, 'A'), +(395, 1, 'ANZOLA PEREZ CARLOSDAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-04', 980300.00, 'A'), +(397, 1, 'LLOREDA ORTIZ CARLOS JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-27', 417470.00, 'A'), +(398, 1, 'GONZALES LONDONO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-19', 672310.00, 'A'), +(4, 1, 'LONDONO DOMINGUEZ ERNESTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-05', 324610.00, 'A'), +(40, 1, 'MORENO ANGULO ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-01', 128690.00, 'A'), +(400, 8, 'TRANSELCA .A', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-04-14', 528930.00, 'A'), +(403, 1, 'VERGARA MURILLO JUAN FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-04', 42900.00, 'A'), +(405, 1, 'CAPERA CAPERA HARRINSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127799, '2011-06-12', 961000.00, 'A'), +(407, 1, 'MORENO MORA WILLIAM EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-22', 872780.00, 'A'), +(408, 1, 'HIGUERA ROA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-28', 910430.00, 'A'), +(409, 1, 'FORERO CASTILLO OSCAR ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '988@terra.com.co', '2011-02-03', 127591, '2011-07-23', 933810.00, 'A'), +(410, 1, 'LOPEZ MURCIA JULIAN DANIEL', 191821112, 'CRA 25 CALLE 100', '399@facebook.com', '2011-02-03', 127591, '2011-08-08', 937790.00, 'A'), +(411, 1, 'ALZATE JOHN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-09-09', 887490.00, 'A'), +(412, 1, 'GONZALES GONZALES ORLANDO ANDREY', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-30', 624080.00, 'A'), +(413, 1, 'ESCOLANO VALENTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-05', 457930.00, 'A'), +(414, 1, 'JARAMILLO RODRIGUEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-12', 417420.00, 'A'), +(415, 1, 'GARCIA MUNOZ DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-02', 713300.00, 'A'), +(416, 1, 'PINEROS ARENAS JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-10-17', 314260.00, 'A'), +(417, 1, 'ORTIZ ARROYAVE ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-05-21', 431370.00, 'A'), +(418, 1, 'BAYONA BARRIENTOS JEAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-12', 214090.00, 'A'), +(419, 1, 'AGUDELO VASQUEZ JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-30', 776360.00, 'A'), +(420, 1, 'CALLE DANIEL CJ PRODUCCIONES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-04', 239500.00, 'A'), +(422, 1, 'CANO BETANCUR ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-08-20', 623620.00, 'A'), +(423, 1, 'CALDAS BARRETO LUZ MIREYA', 191821112, 'CRA 25 CALLE 100', '991@facebook.com', '2011-02-03', 127591, '2011-05-22', 512840.00, 'A'), +(424, 1, 'SIMBAQUEBA JOSE ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 693320.00, 'A'), +(425, 1, 'DE SILVESTRE CALERO LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-18', 928110.00, 'A'), +(426, 1, 'ZORRO PERALTA YEZID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-25', 560560.00, 'A'), +(428, 1, 'SUAREZ OIDOR DARWIN LEONARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131272, '2011-09-05', 410650.00, 'A'), +(429, 1, 'GIRAL CARRILLO LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-13', 997850.00, 'A'), +(43, 1, 'MARULANDA VALENCIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-17', 365550.00, 'A'), +(430, 1, 'CORDOBA GARCES JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-18', 757320.00, 'A'), +(431, 1, 'ARIAS TAMAYO DIEGO MAURICIO', 191821112, 'CRA 25 CALLE 100', '36@yahoo.com', '2011-02-03', 127591, '2011-09-05', 793050.00, 'A'), +(432, 1, 'EICHMANN PERRET MARC WILLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-22', 693270.00, 'A'), +(433, 1, 'DIAZ DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2008-09-18', 87200.00, 'A'), +(435, 1, 'FACCINI GONZALEZ HERMANN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2009-01-08', 519420.00, 'A'), +(436, 1, 'URIBE DUQUE FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-28', 528470.00, 'A'), +(437, 1, 'TAVERA GAONA GABREL LEAL', 191821112, 'CRA 25 CALLE 100', '280@terra.com.co', '2011-02-03', 127591, '2011-04-28', 84120.00, 'A'), +(438, 1, 'ORDONEZ PARIS FERNANDO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-09-26', 835170.00, 'A'), +(439, 1, 'VILLEGAS ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 923520.00, 'A'), +(44, 1, 'MARTINEZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-08-13', 738750.00, 'A'), +(440, 1, 'MARTINEZ RUEDA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '805@hotmail.es', '2011-02-03', 127591, '2011-04-07', 112050.00, 'A'), +(441, 1, 'ROLDAN JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-05-25', 789720.00, 'A'), +(442, 1, 'PEREZ BRANDWAYN ELIYAU MOISES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-10-20', 612450.00, 'A'), +(443, 1, 'VALLEJO TORO JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128579, '2011-08-16', 693080.00, 'A'), +(444, 1, 'TORRES CABRERA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-19', 628070.00, 'A'), +(445, 1, 'MERINO MEJIA GERMAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-28', 61100.00, 'A'), +(447, 1, 'GOMEZ GOMEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-08', 923070.00, 'A'), +(448, 1, 'RAUSCH CHEHEBAR STEVEN JOSEPH', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-09-27', 351540.00, 'A'), +(449, 1, 'RESTREPO TRUCCO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-28', 988500.00, 'A'), +(45, 1, 'GUTIERREZ JARAMILLO CARLOS MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-22', 597090.00, 'A'), +(450, 1, 'GOLDSTEIN VAIDA ELI JACK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-11', 887860.00, 'A'), +(451, 1, 'OLEA PINEDA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-10', 473800.00, 'A'), +(452, 1, 'JORGE OROZCO', 191821112, 'CRA 25 CALLE 100', '503@hotmail.es', '2011-02-03', 127591, '2011-06-02', 705410.00, 'A'), +(454, 1, 'DE LA TORRE GOMEZ GERMAN ERNESTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-03', 411990.00, 'A'), +(456, 1, 'MADERO ARIAS JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '452@hotmail.es', '2011-02-03', 127591, '2011-08-22', 479090.00, 'A'), +(457, 1, 'GOMEZ MACHUCA ALVARO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-12', 166430.00, 'A'), +(458, 1, 'MENDIETA TOBON DANIEL RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-08', 394880.00, 'A'), +(459, 1, 'VILLADIEGO CORTINA JAVIER TOMAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-26', 475110.00, 'A'), +(46, 1, 'FERRUCHO ARCINIEGAS JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', 769220.00, 'A'), +(460, 1, 'DERESER HARTUNG ERNESTO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-12-25', 190900.00, 'A'), +(461, 1, 'RAMIREZ PENA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-06-25', 529190.00, 'A'), +(463, 1, 'IREGUI REYES LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 778590.00, 'A'), +(464, 1, 'PINTO GOMEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2010-06-24', 673270.00, 'A'), +(465, 1, 'RAMIREZ RAMIREZ FERNANDO ALONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127799, '2011-10-01', 30570.00, 'A'), +(466, 1, 'BERRIDO TRUJILLO JORGE HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2011-10-06', 133040.00, 'A'), +(467, 1, 'RIVERA CARVAJAL RAFAEL HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-20', 573500.00, 'A'), +(468, 3, 'FLOREZ PUENTES IVAN ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-08', 468380.00, 'A'), +(469, 1, 'BALLESTEROS FLOREZ IVAN DARIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-02', 621410.00, 'A'), +(47, 1, 'MARIN FLOREZ OMAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-30', 54840.00, 'A'), +(470, 1, 'RODRIGO PENA HERRERA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 237734, '2011-10-04', 701890.00, 'A'), +(471, 1, 'RODRIGUEZ SILVA ROGELIO', 191821112, 'CRA 25 CALLE 100', '163@gmail.com', '2011-02-03', 127591, '2011-05-26', 645210.00, 'A'), +(473, 1, 'VASQUEZ VELANDIA JUAN GABRIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-05-04', 666330.00, 'A'), +(474, 1, 'ROBLEDO JAIME', 191821112, 'CRA 25 CALLE 100', '409@yahoo.com', '2011-02-03', 127591, '2011-05-31', 970480.00, 'A'), +(475, 1, 'GRIMBERG DIAZ PHILIP', 191821112, 'CRA 25 CALLE 100', '723@yahoo.com', '2011-02-03', 127591, '2011-03-30', 853430.00, 'A'), +(476, 1, 'CHAUSTRE GARCIA JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-26', 355670.00, 'A'), +(477, 1, 'GOMEZ FLOREZ IGNASIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-14', 218090.00, 'A'), +(478, 1, 'LUIS ALBERTO CABRERA PUENTES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-05-26', 23420.00, 'A'), +(479, 1, 'MARTINEZ ZAPATA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '234@gmail.com', '2011-02-03', 127122, '2011-07-01', 462840.00, 'A'), +(48, 1, 'PARRA IBANEZ FABIAN ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-02-01', 966520.00, 'A'), +(480, 3, 'WESTERBERG JAN RICKARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 300701, '2011-02-01', 243940.00, 'A'), +(484, 1, 'RODRIGUEZ VILLALOBOS EDGAR FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-19', 860320.00, 'A'), +(486, 1, 'NAVARRO REYES DIEGO FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-01', 530150.00, 'A'), +(487, 1, 'NOGUERA RICAURTE ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-01-21', 384100.00, 'A'), +(488, 1, 'RUIZ VEJARANO CARLOS DANIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-27', 330030.00, 'A'), +(489, 1, 'CORREA PEREZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-12-14', 497860.00, 'A'), +(49, 1, 'FLOREZ PEREZ RUBIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-23', 668090.00, 'A'), +(490, 1, 'REYES GOMEZ LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-26', 499210.00, 'A'), +(491, 3, 'BERNAL LEON ALBERTO JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2011-03-29', 2470.00, 'A'), +(492, 1, 'FELIPE JARAMILLO CARO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2009-10-31', 514700.00, 'A'), +(493, 1, 'GOMEZ PARRA GERMAN DARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-01-29', 566100.00, 'A'), +(494, 1, 'VALLEJO RAMIREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-13', 286390.00, 'A'), +(495, 1, 'DIAZ LONDONO HUGO MARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 733670.00, 'A'), +(496, 3, 'VAN BAKERGEM RONALD JAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2008-11-05', 809190.00, 'A'), +(497, 1, 'MENDEZ RAMIREZ JOSE LEONARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-10', 844920.00, 'A'), +(498, 3, 'QUI TANILLA HENRIQUEZ PAUL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-10', 797030.00, 'A'), +(499, 3, 'PELEATO FLOREAL', 191821112, 'CRA 25 CALLE 100', '531@hotmail.com', '2011-02-03', 188640, '2011-04-23', 450370.00, 'A'), +(50, 1, 'SILVA GUZMAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-24', 440890.00, 'A'), +(502, 3, 'LEO ULF GORAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 300701, '2010-07-26', 181840.00, 'A'), +(503, 3, 'KARLSSON DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 300701, '2011-07-22', 50680.00, 'A'), +(504, 1, 'JIMENEZ JANER ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '889@hotmail.es', '2011-02-03', 203272, '2011-08-29', 707880.00, 'A'), +(506, 1, 'PABON OCHOA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-14', 813050.00, 'A'), +(507, 1, 'ACHURY CADENA CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-26', 903240.00, 'A'), +(508, 1, 'ECHEVERRY GARZON SEBASTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-23', 77050.00, 'A'), +(509, 1, 'PINEROS PENA LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-29', 675550.00, 'A'), +(51, 1, 'CAICEDO URREA JAIME ORLANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-08-17', 200160.00, 'A'), +('CELL3795', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(510, 1, 'MARTINEZ MARTINEZ LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', '586@facebook.com', '2011-02-03', 127591, '2010-08-28', 146600.00, 'A'), +(511, 1, 'MOLANO PENA JESUS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-02-05', 706320.00, 'A'), +(512, 3, 'RUDOLPHY FONTAINE ANDRES', 191821112, 'CRA 25 CALLE 100', '492@yahoo.com', '2011-02-03', 117002, '2011-04-12', 91820.00, 'A'), +(513, 1, 'NEIRA CHAVARRO JOHN JAIRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-12', 340120.00, 'A'), +(514, 3, 'MENDEZ VILLALOBOS ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-03-25', 425160.00, 'A'), +(515, 3, 'HERNANDEZ OLIVA JOSE DE LA CRUZ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-03-25', 105440.00, 'A'), +(518, 3, 'JANCO NICOLAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-15', 955830.00, 'A'), +(52, 1, 'TAPIA MUNOZ JAIRO RICARDO', 191821112, 'CRA 25 CALLE 100', '920@hotmail.es', '2011-02-03', 127591, '2011-10-05', 678130.00, 'A'), +(520, 1, 'ALVARADO JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-26', 895550.00, 'A'), +(521, 1, 'HUERFANO SOTO JONATHAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-30', 619910.00, 'A'), +(522, 1, 'HUERFANO SOTO JONATHAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-04', 412900.00, 'A'), +(523, 1, 'RODRIGEZ GOMEZ WILMAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-14', 204790.00, 'A'), +(525, 1, 'ARROYO BAPTISTE DIEGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-09', 311810.00, 'A'), +(526, 1, 'PULECIO BOEK DANIEL', 191821112, 'CRA 25 CALLE 100', '718@gmail.com', '2011-02-03', 127591, '2011-08-12', 203350.00, 'A'), +(527, 1, 'ESLAVA VELEZ SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-10-08', 81300.00, 'A'), +(528, 1, 'CASTRO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-05-06', 796470.00, 'A'), +(53, 1, 'HINCAPIE MARTINEZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127573, '2011-09-26', 790180.00, 'A'), +(530, 1, 'ZORRILLA PUJANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '312@yahoo.es', '2011-02-03', 127591, '2011-06-06', 302750.00, 'A'), +(531, 1, 'ZORRILLA PUJANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-06', 298440.00, 'A'), +(532, 1, 'PRETEL ARTEAGA MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-09', 583980.00, 'A'), +(533, 1, 'RAMOS VERGARA HUMBERTO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 131105, '2010-05-13', 24560.00, 'A'), +(534, 1, 'BONILLA PINEROS DIEGO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', 370880.00, 'A'), +(535, 1, 'BELTRAN TRIVINO JULIAN DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-11-06', 780710.00, 'A'), +(536, 3, 'BLOD ULF FREDERICK EDWARD', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-06', 790900.00, 'A'), +(537, 1, 'VANEGAS OROZCO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-10', 612400.00, 'A'), +(538, 3, 'ORUE VALLE MONICA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 97885, '2011-09-15', 689270.00, 'A'), +(539, 1, 'AGUDELO BEDOYA ANDRES JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-05-24', 609160.00, 'A'), +(54, 1, 'DE HOYOS TRESPALACIOS MAURICIO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-21', 916500.00, 'A'), +(540, 3, 'HEIJKENSKJOLD PER JESPER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-06', 977980.00, 'A'), +(541, 3, 'GONZALEZ ALVARADO LUIS RAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-08-27', 62430.00, 'A'), +(543, 1, 'GRUPO SURAMERICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-08-24', 703760.00, 'A'), +(545, 1, 'CORPORACION CONTEXTO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-08', 809570.00, 'A'), +(546, 3, 'LUNDIN JOHAN ERIK ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-29', 895330.00, 'A'), +(548, 3, 'VEGERANO JOSE ', 191821112, 'CRA 25 CALLE 100', '221@facebook.com', '2011-02-03', 190393, '2011-06-05', 553780.00, 'A'), +(549, 3, 'SERRANO MADRID CLAUDIA INES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-27', 625060.00, 'A'), +(55, 1, 'TAFUR GOMEZ ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2010-09-12', 211980.00, 'A'), +(550, 1, 'MARTINEZ ACEVEDO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-10-06', 463920.00, 'A'), +(551, 1, 'GONZALEZ MORENO PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-07-21', 444450.00, 'A'), +(552, 1, 'MEJIA ROJAS ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-08-02', 830470.00, 'A'), +(553, 3, 'RODRIGUEZ ANTHONY HANSEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-16', 819000.00, 'A'), +(554, 1, 'ABUCHAIBE ANNICCHRICO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-31', 603610.00, 'A'), +(555, 3, 'MOYES KIMBERLY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-08', 561020.00, 'A'), +(556, 3, 'MONTINI MARIO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118942, '2010-03-16', 994280.00, 'A'), +(557, 3, 'HOGBERG DANIEL TOBIAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-15', 288350.00, 'A'), +(559, 1, 'OROZCO PFEIZER MARTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-10-07', 429520.00, 'A'), +(56, 1, 'NARINO ROJAS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-27', 310390.00, 'A'), +(560, 1, 'GARCIA MONTOYA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-06-02', 770840.00, 'A'), +(562, 1, 'VELASQUEZ PALACIO MANUEL ORLANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-06-23', 515670.00, 'A'), +(563, 1, 'GALLEGO PEREZ DIEGO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-14', 881460.00, 'A'), +(564, 1, 'RUEDA URREGO JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-04', 860270.00, 'A'), +(565, 1, 'RESTREPO DEL TORO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-10', 656960.00, 'A'), +(567, 1, 'TORO VALENCIA FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-08-04', 549090.00, 'A'), +(568, 1, 'VILLEGAS LUIS ALFONSO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-02', 633490.00, 'A'), +(569, 3, 'RIDSTROM CHRISTER ANDERS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 300701, '2011-09-06', 520150.00, 'A'), +(57, 1, 'TOVAR ARANGO JOHN JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127662, '2010-07-03', 916010.00, 'A'), +(570, 3, 'SHEPHERD DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2008-05-11', 700280.00, 'A'), +(573, 3, 'BENGTSSON JOHAN ANDREAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 196830.00, 'A'), +(574, 3, 'PERSSON HANS JONAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-09', 172340.00, 'A'), +(575, 3, 'SYNNEBY BJORN ERIK', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-15', 271210.00, 'A'), +('CELL381', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(577, 3, 'COHEN PAUL KIRTAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 381490.00, 'A'), +(578, 3, 'ROMERO BRAVO FERNANDO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', 390360.00, 'A'), +(579, 3, 'GUTHRIE ROBERT DEAN', 191821112, 'CRA 25 CALLE 100', '794@gmail.com', '2011-02-03', 161705, '2010-07-20', 807350.00, 'A'), +(58, 1, 'TORRES ESCOBAR JAIRO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-06-17', 648860.00, 'A'), +(580, 3, 'ROCASERMENO MONTENEGRO MARIO JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 139844, '2010-12-01', 865650.00, 'A'), +(581, 1, 'COCK JORGE EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-19', 906210.00, 'A'), +(582, 3, 'REISS ANDREAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-01-31', 934120.00, 'A'), +(584, 3, 'ECHEVERRIA CASTILLO GERMAN FRANCISCO', 191821112, 'CRA 25 CALLE 100', '982@yahoo.com', '2011-02-03', 139844, '2011-07-20', 957370.00, 'A'), +(585, 3, 'BRANDT CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-10', 931030.00, 'A'), +(586, 3, 'VEGA NUNEZ GILBERTO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-14', 783010.00, 'A'), +(587, 1, 'BEJAR MUNOZ JORDI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 196234, '2010-10-08', 121990.00, 'A'), +(588, 3, 'WADSO KERSTIN ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-17', 260890.00, 'A'), +(59, 1, 'RAMOS FORERO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-20', 496300.00, 'A'), +(590, 1, 'RODRIGUEZ BETANCOURT JAVIER AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2011-05-23', 909850.00, 'A'), +(592, 1, 'ARBOLEDA HALABY RODRIGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 150699, '2009-02-03', 939170.00, 'A'), +(593, 1, 'CURE CURE CARLOS ALFREDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-07-11', 494600.00, 'A'), +(594, 3, 'VIDELA PEREZ OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-07-13', 655510.00, 'A'), +(595, 1, 'GONZALEZ GAVIRIA NESTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2009-09-28', 793760.00, 'A'), +(596, 3, 'IZQUIERDO DELGADO DIONISIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2009-09-24', 2250.00, 'A'), +(597, 1, 'MORENO DAIRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-06-14', 629990.00, 'A'), +(598, 1, 'RESTREPO FERNNDEZ SOTO JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-08-31', 143210.00, 'A'), +(599, 3, 'YERYES VERGARA MARIA SOLEDAD', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-10-11', 826060.00, 'A'), +(6, 1, 'GUZMAN ESCOBAR JOSE VICENTE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-10', 26390.00, 'A'), +(60, 1, 'ELEJALDE ESCOBAR TOMAS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-11-09', 534910.00, 'A'), +(601, 1, 'ESCAF ESCAF WILLIAM MIGUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 150699, '2011-07-26', 25190.00, 'A'), +(602, 1, 'CEBALLOS ZULUAGA JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-03', 23920.00, 'A'), +(603, 1, 'OLIVELLA GUERRERO RAFAEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2010-06-23', 44040.00, 'A'), +(604, 1, 'ESCOBAR GALLO CARLOS HUGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-09', 148420.00, 'A'), +(605, 1, 'ESCORCIA RAMIREZ EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128569, '2011-04-01', 609990.00, 'A'), +(606, 1, 'MELGAREJO MORENO PAULA ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-05', 604700.00, 'A'), +(607, 1, 'TOBON CALLE CARLOS GUILLERMO', 191821112, 'CRA 25 CALLE 100', '689@hotmail.es', '2011-02-03', 128662, '2011-03-16', 193510.00, 'A'), +(608, 3, 'TREVINO NOPHAL SILVANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 110709, '2011-05-27', 153470.00, 'A'), +(609, 1, 'CARDER VELEZ EDWIN JOHN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-04', 186830.00, 'A'), +(61, 1, 'GASCA DAZA VICTOR HERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-09', 185660.00, 'A'), +(610, 3, 'DAVIS JOHN BRADLEY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-04-06', 473740.00, 'A'), +(611, 1, 'BAQUERO SLDARRIAGA ALVARO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-09-15', 808210.00, 'A'), +(612, 3, 'SERRACIN ARAUZ YANIRA YAMILET', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 131272, '2011-06-09', 619820.00, 'A'), +(613, 1, 'MORA SOTO ALVARO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-09-20', 674450.00, 'A'), +(614, 1, 'SUAREZ RODRIGUEZ HERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-03-29', 512820.00, 'A'), +(616, 1, 'BAQUERO GARCIA JORGE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-07-14', 165160.00, 'A'), +(617, 3, 'ABADI MADURO MOISES SIMON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 131272, '2009-03-31', 203640.00, 'A'), +(62, 3, 'FLOWER LYNDON BRUCE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 231373, '2011-05-16', 323560.00, 'A'), +(624, 8, 'OLARTE LEONARDO', 191821112, 'CRA 25 CALLE 100', '6@hotmail.com', '2011-02-03', 127591, '2011-06-03', 219790.00, 'A'), +(63, 1, 'RUBIO CORTES OSCAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-04-28', 60830.00, 'A'), +(630, 5, 'PROEXPORT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2010-08-12', 708320.00, 'A'), +(632, 8, 'SUPER COFFEE ', 191821112, 'CRA 25 CALLE 100', '792@hotmail.es', '2011-02-03', 127591, '2011-08-30', 306460.00, 'A'), +(636, 8, 'NOGAL ASESORIAS FINANCIERAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-04-07', 752150.00, 'A'), +(64, 1, 'GUERRA MARTINEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-24', 333480.00, 'A'), +(645, 8, 'GIZ - PROFIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-31', 566330.00, 'A'), +(652, 3, 'QBE DEL ISTMO COMPANIA DE REASEGUROS ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-14', 932190.00, 'A'), +(655, 3, 'CORP. CENTRO DE ESTUDIOS DE DERECHO JUSTICIA Y SOCIEDAD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-05-04', 440370.00, 'A'), +(659, 3, 'GOOD YEAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2010-09-24', 993830.00, 'A'), +(660, 3, 'ARCINIEGAS Y VILLAMIZAR', 191821112, 'CRA 25 CALLE 100', '258@yahoo.com', '2011-02-03', 127591, '2010-12-02', 787450.00, 'A'), +(67, 1, 'LOPEZ HOYOS JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127662, '2010-04-13', 665230.00, 'A'), +(670, 8, 'APPLUS NORCONTROL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-09-06', 83210.00, 'A'), +(672, 3, 'KERLL SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 287273, '2010-12-19', 501610.00, 'A'), +(673, 1, 'RESTREPO MOLINA RAMIRO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 144215, '2010-12-18', 457290.00, 'A'), +(674, 1, 'PEREZ GIL JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-08-18', 781610.00, 'A'), +('CELL3840', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(676, 1, 'GARCIA LONDONO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-23', 336160.00, 'A'), +(677, 3, 'RIJLAARSDAM KARIN AN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-07-03', 72210.00, 'A'), +(679, 1, 'LIZCANO MONTEALEGRE ARNULFO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127203, '2011-02-01', 546170.00, 'A'), +(68, 1, 'MARTINEZ SILVA EDGAR', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-29', 54250.00, 'A'), +(680, 3, 'OLIVARI MAYER PATRICIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 122642, '2011-08-01', 673170.00, 'A'), +(682, 3, 'CHEVALIER FRANCK PIERRE CHARLES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 263813, '2010-12-01', 617280.00, 'A'), +(683, 3, 'NG WAI WING ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126909, '2011-06-14', 904310.00, 'A'), +(684, 3, 'MULLER DOMINGUEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-22', 669700.00, 'A'), +(685, 3, 'MOSQUEDA DOMNGUEZ ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-04-08', 635580.00, 'A'), +(686, 3, 'LARREGUI MARIN LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-08', 168800.00, 'A'), +(687, 3, 'VARGAS VERGARA ALEJANDRO BRAULIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 159245, '2011-09-14', 937260.00, 'A'), +(688, 3, 'SKINNER LYNN CHERYL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-12', 179890.00, 'A'), +(689, 1, 'URIBE CORREA LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2010-07-29', 87680.00, 'A'), +(690, 1, 'TAMAYO JARAMILLO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-11-10', 898730.00, 'A'), +(691, 3, 'MOTABAN DE BORGES PAULA ELENA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2010-09-24', 230610.00, 'A'), +(692, 5, 'FERNANDEZ NALDA JOSE MANUEL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-06-28', 456850.00, 'A'), +(693, 1, 'GOMEZ RESTREPO JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-06-28', 592420.00, 'A'), +(694, 1, 'CARDENAS TAMAYO JOSE JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-08-08', 591550.00, 'A'), +(696, 1, 'RESTREPO ARANGO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-03-31', 127820.00, 'A'), +(697, 1, 'ROCABADO PASTRANA ROBERT JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127443, '2011-08-13', 97600.00, 'A'), +(698, 3, 'JARVINEN JOONAS JORI KRISTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196234, '2011-05-29', 104560.00, 'A'), +(699, 1, 'MORENO PEREZ HERNAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-30', 230000.00, 'A'), +(7, 1, 'PUYANA RAMOS GUILLERMO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-27', 331830.00, 'A'), +(70, 1, 'GALINDO MANZANO JAVIER FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-31', 214890.00, 'A'), +(701, 1, 'ROMERO PEREZ ARCESIO JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132775, '2011-07-13', 491650.00, 'A'), +(703, 1, 'CHAPARRO AGUDELO LEONARDO VIRGILIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-05-04', 271320.00, 'A'), +(704, 5, 'VASQUEZ YANIS MARIA DEL PILAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-10-13', 508820.00, 'A'), +(705, 3, 'BARBERO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 116511, '2010-09-13', 730170.00, 'A'), +(706, 1, 'CARMONA HERNANDEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-11-08', 124380.00, 'A'), +(707, 1, 'PEREZ SUAREZ JORGE ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2011-09-14', 431370.00, 'A'), +(708, 1, 'ROJAS JORGE MARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 130135, '2011-04-01', 783740.00, 'A'), +(71, 1, 'DIAZ JUAN PABLO/JULES JAVIER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-10-01', 247860.00, 'A'), +(711, 3, 'CATALDO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116773, '2011-06-06', 984810.00, 'A'), +(716, 5, 'MACIAS PIZARRO PATRICIO ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-06-07', 376260.00, 'A'), +(717, 1, 'RENDON MAYA DAVID ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 130273, '2010-07-25', 332310.00, 'A'), +(718, 3, 'DE HILDEBRAND E GRISI FILHO CELSO CLAUDIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-11', 532740.00, 'A'), +(719, 3, 'ALLIEL FACUSSE JULIO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-20', 666800.00, 'A'), +(72, 1, 'LOPEZ ROJAS VICTOR DANIEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-11', 594640.00, 'A'), +(720, 3, 'CHEMELLO JIMENEZ GAETANO ALBERTO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2010-06-23', 735760.00, 'A'), +(721, 3, 'GARCIA BEZANILLA RODOLFO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-04-12', 678420.00, 'A'), +(722, 1, 'ARIAS EDWIN', 191821112, 'CRA 25 CALLE 100', '13@terra.com.co', '2011-02-03', 127492, '2008-04-24', 184800.00, 'A'), +(723, 3, 'SOHN JANG WON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-07', 888750.00, 'A'), +(724, 3, 'WILHELM GIOVINE JAIME ROBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 115263, '2011-09-20', 889340.00, 'A'), +(726, 3, 'CASTILLERO DANIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 131272, '2011-05-13', 234270.00, 'A'), +(727, 3, 'PORTUGAL LANGHORST MAX GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-13', 829960.00, 'A'), +(729, 3, 'ALFONSO HERRANZ AGUSTIN ALFONSO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-21', 745060.00, 'A'), +(73, 1, 'DAVILA MENDEZ OSCAR DIEGO', 191821112, 'CRA 25 CALLE 100', '991@yahoo.com.mx', '2011-02-03', 128569, '2011-08-31', 229630.00, 'A'), +(730, 3, 'ALFONSO HERRANZ AGUSTIN CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-03-31', 384360.00, 'A'), +(731, 1, 'NOGUERA RAMIREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-14', 686610.00, 'A'), +(732, 1, 'ACOSTA PERALTA FABIAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 134030, '2011-06-21', 279960.00, 'A'), +(733, 3, 'MAC LEAN PINA PEDRO SEGUNDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-05-23', 339980.00, 'A'), +(734, 1, 'LEON ARCOS ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-05-04', 860020.00, 'A'), +(736, 3, 'LAMARCA GARCIA GERMAN JULIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-04-29', 820700.00, 'A'), +(737, 1, 'PORTO VELASQUEZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '321@hotmail.es', '2011-02-03', 133535, '2011-08-17', 263060.00, 'A'), +(738, 1, 'BUENAVENTURA MEDINA ERICK WILSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-09-18', 853180.00, 'A'), +(739, 1, 'LEVY ARRAZOLA RALPH MARC', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2011-09-27', 476720.00, 'A'), +(74, 1, 'RAMIREZ SORA EDISON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-03', 364220.00, 'A'), +(740, 3, 'MOON HYUNSIK ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 173192, '2011-05-15', 824080.00, 'A'), +(741, 3, 'LHUILLIER TRONCOSO GASTON MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-09-07', 690230.00, 'A'), +(742, 3, 'UNDURRAGA PELLEGRINI GONZALO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2010-11-21', 978900.00, 'A'), +(743, 1, 'SOLANO TRIBIN NICOLAS SIMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 134022, '2011-03-16', 823800.00, 'A'), +(744, 1, 'NOGUERA BENAVIDES JACOBO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-06', 182300.00, 'A'), +(745, 1, 'GARCIA LEON MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2008-04-16', 440110.00, 'A'), +(746, 1, 'EMILIANI ROJAS ALEXANDER ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-09-12', 653640.00, 'A'), +(748, 1, 'CARRENO POULSEN HELGEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', 778370.00, 'A'), +(749, 1, 'ALVARADO FANDINO ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2008-11-05', 48280.00, 'A'), +(750, 1, 'DIAZ GRANADOS JUAN PABLO.', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-01-12', 906290.00, 'A'), +(751, 1, 'OVALLE BETANCOURT ALBERTO JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2011-08-14', 386620.00, 'A'), +(752, 3, 'GUTIERREZ VERGARA JOSE MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-08', 214250.00, 'A'), +(753, 3, 'CHAPARRO GUAIMARAL LIZ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 147467, '2011-03-16', 911350.00, 'A'), +(754, 3, 'CORTES DE SOLMINIHAC PABLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-01-20', 914020.00, 'A'), +(755, 3, 'CHETAIL VINCENT', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 239124, '2010-08-23', 836050.00, 'A'), +(756, 3, 'PERUGORRIA RODRIGUEZ JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2010-10-17', 438210.00, 'A'), +(757, 3, 'GOLLMANN ROBERTO JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 167269, '2011-03-28', 682870.00, 'A'), +(758, 3, 'VARELA SEPULVEDA MARIA PILAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2010-07-26', 99730.00, 'A'), +(759, 3, 'MEYER WELIKSON MICHELE JANIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-05-10', 450030.00, 'A'), +(76, 1, 'VANEGAS RODRIGUEZ OSCAR IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', 568310.00, 'A'), +(77, 3, 'GATICA SOTOMAYOR MAURICIO VICENTE', 191821112, 'CRA 25 CALLE 100', '409@terra.com.co', '2011-02-03', 117002, '2010-05-13', 444970.00, 'A'), +(79, 1, 'PENA VALENZUELA DANIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-19', 264790.00, 'A'), +(8, 1, 'NAVARRO PALENCIA HUGO RAFAEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126968, '2011-05-05', 579980.00, 'A'), +(80, 1, 'BARRIOS CUADRADO DAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-29', 764140.00, 'A'), +(802, 3, 'RECK GARRONE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2009-02-06', 767700.00, 'A'), +(81, 1, 'PARRA QUIROGA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 26330.00, 'A'), +(811, 8, 'FEDERACION NACIONAL DE AVICULTORES ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-04-18', 926010.00, 'A'), +(812, 1, 'ORJUELA VELEZ JAIME ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 257160.00, 'A'), +(813, 1, 'PENA CHACON GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-08-27', 507770.00, 'A'), +(814, 1, 'RONDEROS MOJICA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127443, '2011-05-04', 767370.00, 'A'), +(815, 1, 'RICO NINO MARIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127443, '2011-05-18', 313540.00, 'A'), +(817, 3, 'AVILA CHYTIL MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118471, '2011-07-14', 387300.00, 'A'), +(818, 3, 'JABLONSKI DUARTE SILVEIRA ESTER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2010-12-21', 139740.00, 'A'), +(819, 3, 'BUHLER MOSLER XIMENA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-06-20', 536830.00, 'A'), +(82, 1, 'CARRILLO GAMBOA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-06-01', 839240.00, 'A'), +(820, 3, 'FALQUETO DALMIRO ANGELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-06-21', 264910.00, 'A'), +(821, 1, 'RUGER GUSTAVO RODRIGUEZ TAMAYO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2010-04-12', 714080.00, 'A'), +(822, 3, 'JULIO RODRIGUEZ FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-08-16', 775650.00, 'A'), +(823, 3, 'CIBANIK RODOLFO MOISES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132554, '2011-09-19', 736020.00, 'A'), +(824, 3, 'JIMENEZ FRANCO EMMANUEL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-17', 353150.00, 'A'), +(825, 3, 'GNECCO TREMEDAD', 191821112, 'CRA 25 CALLE 100', '818@hotmail.com', '2011-02-03', 171072, '2011-03-19', 557700.00, 'A'), +(826, 3, 'VILAR MENDOZA JOSE RAFAEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-29', 729050.00, 'A'), +(827, 3, 'GONZALEZ MOLINA CRISTIAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-06-20', 972160.00, 'A'), +(828, 1, 'GONTOVNIK HOBRECKT CARLOS DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-08-02', 673620.00, 'A'), +(829, 3, 'DIBARRAT URZUA SEBASTIAN RAIMUNDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-28', 451650.00, 'A'), +(830, 3, 'STOCCHERO HATSCHBACH GUILHERME', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2010-11-22', 237370.00, 'A'), +(831, 1, 'NAVAS PASSOS NARCISO EVELIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-04-21', 831900.00, 'A'), +(832, 3, 'LUNA SOBENES FAVIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-10-11', 447400.00, 'A'), +(833, 3, 'NUNEZ NOGUEIRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-19', 741290.00, 'A'), +(834, 1, 'CASTRO BELTRAN ARIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128188, '2011-05-15', 364270.00, 'A'), +(835, 1, 'TURBAY YAMIN MAURICIO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-03-17', 597490.00, 'A'), +(836, 1, 'GOMEZ BARRAZA RODNEY LORENZO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 894610.00, 'A'), +(837, 1, 'CUELLO LASCANO ROBERTO', 191821112, 'CRA 25 CALLE 100', '221@hotmail.es', '2011-02-03', 133535, '2011-07-11', 680610.00, 'A'), +(838, 1, 'PATERNINA PEINADO JOSE VICENTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-08-23', 719190.00, 'A'), +(839, 1, 'YEPES RUBIANO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-05-16', 554130.00, 'A'), +(84, 1, 'ALVIS RAMIREZ ALFREDO', 191821112, 'CRA 25 CALLE 100', '292@yahoo.com', '2011-02-03', 127662, '2011-09-16', 68190.00, 'A'), +(840, 1, 'ROCA LLANOS GUILLERMO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-08-22', 613060.00, 'A'), +(841, 1, 'RENDON TORRALVO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2011-05-26', 402950.00, 'A'), +(842, 1, 'BLANCO STAND GERMAN ELIECER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-17', 175530.00, 'A'), +(843, 3, 'BERNAL MAYRA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131272, '2010-08-31', 668820.00, 'A'), +(844, 1, 'NAVARRO RUIZ LAZARO GREGORIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 126916, '2008-09-23', 817520.00, 'A'), +(846, 3, 'TUOMINEN OLLI PETTERI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-09-01', 953150.00, 'A'), +(847, 1, 'ESPARRAGOZA DE LA ESPRIELLA ENRIQUE ALBERTO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-08-09', 522340.00, 'A'), +(848, 3, 'ARAYA ARIAS JUAN VICENTE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132165, '2011-08-09', 752210.00, 'A'), +(85, 1, 'GARCIA JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-03-01', 989420.00, 'A'), +(850, 1, 'PARDO GOMEZ GERMAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2010-11-25', 713690.00, 'A'), +(851, 1, 'ATIQUE JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2008-03-03', 986250.00, 'A'), +(852, 1, 'HERNANDEZ MEYER EDGARDO DE JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-20', 790190.00, 'A'), +(853, 1, 'ZULUAGA DE LEON IVAN JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-07-03', 992210.00, 'A'), +(854, 1, 'VILLARREAL ANGULO ENRIQUE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-10-02', 590450.00, 'A'), +(855, 1, 'CELIA MARTINEZ APARICIO GIAN PIERO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-06-15', 975620.00, 'A'), +(857, 3, 'LIPARI RONALDO LUIS', 191821112, 'CRA 25 CALLE 100', '84@facebook.com', '2011-02-03', 118941, '2010-10-13', 606990.00, 'A'), +(858, 1, 'RAVACHI DAVILA ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2011-05-04', 714620.00, 'A'), +(859, 3, 'PINHEIRO OLIVEIRA LUCIANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 752130.00, 'A'), +(86, 1, 'GOMEZ LIS CARLOS EMILIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2009-12-22', 742520.00, 'A'), +(860, 1, 'PUGLIESE MERCADO LUIGGI ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-08-19', 616780.00, 'A'), +(862, 1, 'JANNA TELLO DANIEL JALIL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2010-08-07', 287220.00, 'A'), +(863, 3, 'MATTAR CARLOS HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2009-04-26', 953570.00, 'A'), +(864, 1, 'MOLINA OLIER OSVALDO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2011-04-18', 906200.00, 'A'), +(865, 1, 'BLANCO MCLIN DAVID ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-08-18', 670290.00, 'A'), +(866, 1, 'NARANJO ROMERO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2010-08-25', 632860.00, 'A'), +(867, 1, 'SIMANCAS TRUJILLO RICARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-04-07', 153400.00, 'A'), +(868, 1, 'ARENAS USME GERMAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126881, '2011-10-01', 868430.00, 'A'), +(869, 5, 'DIAZ CORDERO RODRIGO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-11-04', 881950.00, 'A'), +(87, 1, 'CELIS PEREZ HERNANDO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-05', 744330.00, 'A'), +(870, 3, 'BINDER ZBEDA JONATAHAN JANAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131083, '2010-04-11', 804460.00, 'A'), +(871, 1, 'HINCAPIE HELLMAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-09-15', 376440.00, 'A'), +(872, 3, 'MONTEIRO LANAMAR ALFONSO DE BUSTAMANTE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118942, '2009-03-23', 468820.00, 'A'), +(873, 3, 'AGUDO CARMINATTI REGINA CELIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-01-04', 214770.00, 'A'), +(874, 1, 'GONZALEZ VILLALOBOS CRISTIAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2011-09-26', 667400.00, 'A'), +(875, 3, 'GUELL VILLANUEVA ALVARO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2008-04-07', 692670.00, 'A'), +(876, 3, 'GRES ANAIS ROBERTO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-12-01', 461180.00, 'A'), +(877, 3, 'GAME MOCOCAIN JUAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-07', 227890.00, 'A'), +(878, 1, 'FERRER UCROS FERNANDO LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-06-22', 755900.00, 'A'), +(879, 3, 'HERRERA JAUREGUI CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', '599@facebook.com', '2011-02-03', 131272, '2010-07-22', 95840.00, 'A'), +(880, 3, 'BACALLAO HERNANDEZ ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126180, '2010-04-21', 211480.00, 'A'), +(881, 1, 'GIJON URBINA JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 144879, '2011-04-03', 769910.00, 'A'), +(882, 3, 'TRUSEN CHRISTOPH WOLFGANG', 191821112, 'CRA 25 CALLE 100', '338@yahoo.com.mx', '2011-02-03', 127591, '2010-10-24', 215100.00, 'A'), +(883, 3, 'ASHOURI ASKANDAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 157861, '2009-03-03', 765760.00, 'A'), +(885, 1, 'ALTAMAR WATTS JAIRO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-08-20', 620170.00, 'A'), +(887, 3, 'QUINTANA BALTIERRA ROBERTO ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-21', 891370.00, 'A'), +(889, 1, 'CARILLO PATINO VICTOR HILARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 130226, '2011-09-06', 354570.00, 'A'), +(89, 1, 'CONTRERAS PULIDO LINA MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-06', 237480.00, 'A'), +(890, 1, 'GELVES CANAS GENARO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-02', 355640.00, 'A'), +(891, 3, 'CAGNONI DE MELO PAULA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2010-12-14', 714490.00, 'A'), +(892, 3, 'MENA AMESTICA PATRICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-03-22', 505510.00, 'A'), +(893, 1, 'CAICEDO ROMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-07', 384110.00, 'A'), +(894, 1, 'ECHEVERRY TRUJILLO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-08', 404010.00, 'A'), +(895, 1, 'CAJIA PEDRAZA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 867700.00, 'A'), +(896, 2, 'PALACIOS OLIVA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-24', 126500.00, 'A'), +(897, 1, 'GUTIERREZ QUINTERO FABIAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2009-10-24', 29380.00, 'A'), +(899, 3, 'COBO GUEVARA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-12-09', 748860.00, 'A'), +(9, 1, 'OSORIO RODRIGUEZ FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-09-27', 904420.00, 'A'), +(90, 1, 'LEYTON GONZALEZ FREDY RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-24', 705130.00, 'A'), +(901, 1, 'HERNANDEZ JOSE ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 130266, '2011-05-23', 964010.00, 'A'), +(903, 3, 'GONZALEZ MALDONADO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2010-11-13', 576500.00, 'A'), +(904, 1, 'OCHOA BARRIGA JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 130266, '2011-05-05', 401380.00, 'A'), +('CELL3886', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(905, 1, 'OSORIO REDONDO JESUS DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2011-08-11', 277390.00, 'A'), +(906, 1, 'BAYONA BARRIENTOS JEAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-01-25', 182820.00, 'A'), +(907, 1, 'MARTINEZ GOMEZ CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2010-03-11', 81940.00, 'A'), +(908, 1, 'PUELLO LOPEZ GUILLERMO LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-08-12', 861240.00, 'A'), +(909, 1, 'MOGOLLON LONDONO PEDRO LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2011-06-22', 60380.00, 'A'), +(91, 1, 'ORTIZ RIOS JAVIER ADOLFO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-12', 813200.00, 'A'), +(911, 1, 'HERRERA HOYOS CARLOS FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2010-09-12', 409800.00, 'A'), +(912, 3, 'RIM MYUNG HWAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-15', 894450.00, 'A'), +(913, 3, 'BIANCO DORIEN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-29', 242820.00, 'A'), +(914, 3, 'FROIMZON WIEN DANIEL', 191821112, 'CRA 25 CALLE 100', '348@yahoo.com', '2011-02-03', 132165, '2010-11-06', 530780.00, 'A'), +(915, 3, 'ALVEZ AZEVEDO JOAO MIGUEL', 191821112, 'CRA 25 CALLE 100', '861@hotmail.es', '2011-02-03', 127591, '2009-06-25', 925420.00, 'A'), +(916, 3, 'CARRASCO DIAZ LUIS ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-02', 34780.00, 'A'), +(917, 3, 'VIVALLOS MEDINA LEONEL EDMUNDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-09-12', 397640.00, 'A'), +(919, 3, 'LASSE ANDRE BARKLIEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 286724, '2011-03-31', 226390.00, 'A'), +(92, 1, 'CUERVO CARDENAS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-08', 950630.00, 'A'), +(920, 3, 'BARCELOS PLOTEGHER LILIA MARA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-07', 480380.00, 'A'), +(921, 1, 'JARAMILLO ARANGO JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127559, '2011-06-28', 722700.00, 'A'), +(93, 3, 'RUIZ PRIETO WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 131272, '2011-01-19', 313540.00, 'A'), +(932, 7, 'COMFENALCO ANTIOQUIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-05', 515430.00, 'A'), +(94, 1, 'GALLEGO JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-25', 715830.00, 'A'), +(944, 3, 'KARMELIC PAVLOV VESNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 120066, '2010-08-07', 585580.00, 'A'), +(945, 3, 'RAMIREZ BORDON OSCAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-07-02', 526250.00, 'A'), +(946, 3, 'SORACCO CABEZA RODRIGO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-04', 874490.00, 'A'), +(949, 1, 'GALINDO JORGE ERNESTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127300, '2008-07-10', 344110.00, 'A'), +(950, 3, 'DR KNABLE THOMAS ERNST ALBERT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 256231, '2009-11-17', 685430.00, 'A'), +(953, 3, 'VELASQUEZ JANETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-20', 404650.00, 'A'), +(954, 3, 'SOZA REX JOSE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 150903, '2011-05-26', 269790.00, 'A'), +(955, 3, 'FONTANA GAETE JAIME PATRICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-01-11', 134970.00, 'A'), +(957, 3, 'PEREZ MARTINEZ GRECIA INDIRA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2010-08-27', 922610.00, 'A'), +(96, 1, 'FORERO CUBILLOS JORGEARTURO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-25', 45020.00, 'A'), +(97, 1, 'SILVA ACOSTA MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-19', 309580.00, 'A'), +(978, 3, 'BLUMENTHAL JAIRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117630, '2010-04-22', 653490.00, 'A'), +(984, 3, 'SUN XIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-01-17', 203630.00, 'A'), +(99, 1, 'CANO GUZMAN ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 135620.00, 'A'), +(999, 1, 'DRAGER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-12-22', 882070.00, 'A'), +('CELL1020', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1083', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1153', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL126', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1326', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1329', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL133', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1413', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1426', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1529', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1651', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1760', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1857', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1879', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1902', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1921', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1962', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1992', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2006', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL215', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2307', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2322', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2497', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2641', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2736', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2805', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL281', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2905', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2963', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3029', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3090', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3161', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3302', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3309', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3325', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3372', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3422', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3514', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3562', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3652', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3661', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4334', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4440', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4547', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4639', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4662', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4698', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL475', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4790', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4838', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4885', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4939', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5064', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5066', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL51', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5102', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5116', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5192', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5226', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5250', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5282', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL536', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5503', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5506', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL554', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5544', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5595', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5648', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5801', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5821', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6201', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6277', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6288', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6358', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6369', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6408', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6425', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6439', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6509', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6533', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6556', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6731', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6766', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6775', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6802', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6834', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6890', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6953', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6957', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7024', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7216', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL728', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7314', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7431', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7432', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7513', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7522', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7617', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7623', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7708', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7777', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL787', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7907', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7951', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7956', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8004', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8058', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL811', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8136', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8162', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8286', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8300', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8339', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8366', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8389', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8446', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8487', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8546', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8578', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8643', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8774', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8829', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8846', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8942', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9046', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9110', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL917', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9189', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9241', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9331', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9429', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9434', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9495', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9517', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9558', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9650', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9748', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9830', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9878', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9893', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9945', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('T-Cx200', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx201', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx202', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx203', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx204', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx205', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx206', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx207', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx208', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx209', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx210', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx211', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx212', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx213', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx214', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('CELL4021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5255', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5730', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2540', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7376', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5471', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2588', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL570', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2854', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6683', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1382', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2051', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7086', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9220', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9701', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'); + +-- +-- Data for Name: personnes; Type: TABLE DATA; Schema: public; Owner: nanobox +-- + +INSERT INTO personnes (cedula, tipo_documento_id, nombres, telefono, direccion, email, fecha_nacimiento, ciudad_id, creado_at, cupo, estado) VALUES +(1, 3, 'HUANG ZHENGQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-18', 6930.00, 'I'), +(100, 1, 'USME FERNANDEZ JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-04-15', 439480.00, 'A'), +(1003, 8, 'SINMON PEREZ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-25', 468610.00, 'A'), +(1009, 8, 'ARCINIEGAS Y VILLAMIZAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-08-12', 967680.00, 'A'), +(101, 1, 'CRANE DE NARVAEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-06-09', 790540.00, 'A'), +(1011, 8, 'EL EVENTO', 191821112, 'CRA 25 CALLE 100', '596@terra.com.co', '2011-02-03', 127591, '2011-05-24', 820390.00, 'A'), +(1020, 7, 'OSPINA YOLANDA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-02', 222970.00, 'A'), +(1025, 7, 'CHEMIPLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', 918670.00, 'A'), +(1034, 1, 'TAXI FILMS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-09-01', 962580.00, 'A'), +(104, 1, 'CASTELLANOS JIMENEZ NOE', 191821112, 'CRA 25 CALLE 100', '127@yahoo.es', '2011-02-03', 127591, '2011-10-05', 95230.00, 'A'), +(1046, 3, 'JACQUET PIERRE MICHEL ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 263489, '2011-07-23', 90810.00, 'A'), +(1048, 5, 'SPOERER VELEZ CARLOS JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-02-03', 184920.00, 'A'), +(1049, 3, 'SIDNEI DA SILVA LUIZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117630, '2011-07-02', 850180.00, 'A'), +(105, 1, 'HERRERA SEQUERA ALVARO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-26', 77390.00, 'A'), +(1050, 3, 'CAVALCANTI YUE CARLA HANLI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-31', 696130.00, 'A'), +(1052, 1, 'BARRETO RIVAS ELKIN MARTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 131508, '2011-09-19', 562160.00, 'A'), +(1053, 3, 'WANDERLEY ANTONIO ERNESTO THOME', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150617, '2011-01-31', 20490.00, 'A'), +(1054, 3, 'HE SHAN', 191821112, 'CRA 25 CALLE 100', '715@yahoo.es', '2011-02-03', 132958, '2010-10-05', 415970.00, 'A'), +(1055, 3, 'ZHRNG XIM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-05', 18380.00, 'A'), +(1057, 3, 'NICKEL GEB. STUTZ KARIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-10-08', 164850.00, 'A'), +(1058, 1, 'VELEZ PAREJA IGNACIO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2011-06-24', 292250.00, 'A'), +(1059, 3, 'GURKE RALF ERNST', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 287570, '2011-06-15', 966700.00, 'A'), +(106, 1, 'ESTRADA LONDONO JUAN SIMON', 191821112, 'CRA 25 CALLE 100', '8@terra.com.co', '2011-02-03', 128579, '2011-03-09', 101260.00, 'A'), +(1060, 1, 'MEDRANO BARRIOS WILSON', 191821112, 'CRA 25 CALLE 100', '479@facebook.com', '2011-02-03', 132775, '2011-06-18', 956740.00, 'A'), +(1061, 1, 'GERDTS PORTO HANS EDUARDO', 191821112, 'CRA 25 CALLE 100', '140@gmail.com', '2011-02-03', 127591, '2011-05-09', 883590.00, 'A'), +(1062, 1, 'BORGE VISBAL JORGE FIDEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132775, '2011-07-14', 547750.00, 'A'), +(1063, 3, 'GUTIERREZ JOSELYN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-06', 87960.00, 'A'), +(1064, 4, 'OVIEDO PINZON MARYI YULEY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2011-04-21', 796560.00, 'A'), +(1065, 1, 'VILORA SILVA OMAR ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2010-06-09', 718910.00, 'A'), +(1066, 3, 'AGUIAR ROMAN RODRIGO HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126674, '2011-06-28', 204890.00, 'A'), +(1067, 1, 'GOMEZ AGAMEZ ADOLFO DEL CRISTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131105, '2011-06-15', 867730.00, 'A'), +(1068, 3, 'GARRIDO CECILIA', 191821112, 'CRA 25 CALLE 100', '973@yahoo.com.mx', '2011-02-03', 118777, '2010-08-16', 723980.00, 'A'), +(1069, 1, 'JIMENEZ MANJARRES DAVID RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2010-12-17', 16680.00, 'A'), +(107, 1, 'ARANGUREN TEJADA JORGE ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-16', 274110.00, 'A'), +(1070, 3, 'OYARZUN TEJEDA ANDRES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-26', 911490.00, 'A'), +(1071, 3, 'MARIN BUCK RAFAEL ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126180, '2011-05-04', 507400.00, 'A'), +(1072, 3, 'VARGAS JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126674, '2011-07-28', 802540.00, 'A'), +(1073, 3, 'JUEZ JAIRALA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126180, '2010-04-09', 490510.00, 'A'), +(1074, 1, 'APONTE PENSO HERNAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132879, '2011-05-27', 44900.00, 'A'), +(1075, 1, 'PINERES BUSTILLO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126916, '2008-10-29', 752980.00, 'A'), +(1076, 1, 'OTERA OMA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-04-29', 630210.00, 'A'), +(1077, 3, 'CONTRERAS CHINCHILLA JUAN DOMINGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 139844, '2011-06-21', 892110.00, 'A'), +(1078, 1, 'GAMBA LAURENCIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-09-15', 569940.00, 'A'), +(108, 1, 'MUNOZ ARANGO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-01', 66770.00, 'A'), +(1080, 1, 'PRADA ABAUZA CARLOS AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-11-15', 156870.00, 'A'), +(1081, 1, 'PAOLA CAROLINA PINTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-27', 264350.00, 'A'), +(1082, 1, 'PALOMINO HERNANDEZ GERMAN JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-03-22', 851120.00, 'A'), +(1084, 1, 'URIBE DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '602@hotmail.es', '2011-02-03', 127591, '2011-09-07', 759470.00, 'A'), +(1085, 1, 'ARGUELLO CALDERON ARMANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-24', 409660.00, 'A'), +(1087, 1, 'CARVAJAL HERNANDEZ CHRISTIAN ARMANDO', 191821112, 'CRA 25 CALLE 100', '296@yahoo.es', '2011-02-03', 159432, '2011-06-03', 620410.00, 'A'), +(1088, 1, 'CASTRO BLANCO MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150512, '2009-10-08', 792400.00, 'A'), +(1089, 1, 'RIBEROS GUTIERREZ GUSTAVO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-01-27', 100800.00, 'A'), +(109, 1, 'BELTRAN MARIA LUZ DARY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-06', 511510.00, 'A'), +(1091, 4, 'ORTIZ ORTIZ BENIGNO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127538, '2011-08-05', 331540.00, 'A'), +(1092, 3, 'JOHN CHRISTOPHER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-08', 277320.00, 'A'), +(1093, 1, 'PARRA VILLAREAL MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 129499, '2011-08-23', 391980.00, 'A'), +(1094, 1, 'BESGA RODRIGUEZ JUAN JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-09-23', 127960.00, 'A'), +(1095, 1, 'ZAPATA MEZA EDGAR FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-05-19', 463840.00, 'A'), +(1096, 3, 'CORNEJO BRAVO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2010-11-08', 935340.00, 'A'), +('CELL3944', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1099, 1, 'GARCIA PORRAS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-14', 243360.00, 'A'), +(11, 1, 'HERNANDEZ PARDO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-31', 197540.00, 'A'), +(110, 1, 'VANEGAS JULIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-06', 357260.00, 'A'), +(1101, 1, 'QUINTERO BURBANO GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-08-20', 57420.00, 'A'), +(1102, 1, 'BOHORQUEZ AFANADOR CHRISTIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 214610.00, 'A'), +(1103, 1, 'MORA VARGAS JULIO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-29', 900790.00, 'A'), +(1104, 1, 'PINEDA JORGE ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-21', 860110.00, 'A'), +(1105, 1, 'TORO CEBALLOS GONZALO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 129499, '2011-08-18', 598180.00, 'A'), +(1106, 1, 'SCHENIDER TORRES JAIME', 191821112, 'CRA 25 CALLE 100', '85@yahoo.com.mx', '2011-02-03', 127799, '2011-08-11', 410590.00, 'A'), +(1107, 1, 'RUEDA VILLAMIZAR JAIME', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-11-15', 258410.00, 'A'), +(1108, 1, 'RUEDA VILLAMIZAR RICARDO JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129499, '2011-03-22', 60260.00, 'A'), +(1109, 1, 'GOMEZ RODRIGUEZ HERNANDO ARTURO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-06-02', 526080.00, 'A'), +(111, 1, 'FRANCISCO EDUARDO JAIME BOTERO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-09-09', 251770.00, 'A'), +(1110, 1, 'HERNANDEZ MENDEZ EDGAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 129499, '2011-03-22', 449610.00, 'A'), +(1113, 1, 'LEON HERNANDEZ OSCAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129499, '2011-03-21', 992090.00, 'A'), +(1114, 1, 'LIZARAZO CARRENO HUGO ARCENIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2010-12-10', 959490.00, 'A'), +(1115, 1, 'LIAN BARRERA GABRIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-05-30', 821170.00, 'A'), +(1117, 3, 'TELLEZ BEZAN FRANCISCO JAVIER ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-08-21', 673430.00, 'A'), +(1118, 1, 'FUENTES ARIZA DIEGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-09', 684970.00, 'A'), +(1119, 1, 'MOLINA M. ROBINSON', 191821112, 'CRA 25 CALLE 100', '728@hotmail.com', '2011-02-03', 129447, '2010-09-19', 404580.00, 'A'), +(112, 1, 'PATINO PINTO ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-06', 187050.00, 'A'), +(1120, 1, 'ORTIZ DURAN BENIGNO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127538, '2011-08-05', 967970.00, 'A'), +(1121, 1, 'CARVAJAL ALMEIDA LUIS RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2011-06-22', 626140.00, 'A'), +(1122, 1, 'TORRES QUIROGA EDWIN SILVESTRE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 129447, '2011-08-17', 226780.00, 'A'), +(1123, 1, 'VIVIESCAS JAIMES ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-10', 255480.00, 'A'), +(1124, 1, 'MARTINEZ RUEDA JAVIER EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129447, '2011-06-23', 597040.00, 'A'), +(1125, 1, 'ANAYA FLORES JORGE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129499, '2011-06-04', 218790.00, 'A'), +(1126, 3, 'TORRES MARTINEZ ANTONIO JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2010-09-02', 302820.00, 'A'), +(1127, 3, 'CACHO LEVISIER JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 153276, '2009-06-25', 857720.00, 'A'), +(1129, 3, 'ULLOA VALDIVIESO CRISTIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-06-02', 327570.00, 'A'), +(113, 1, 'HIGUERA CALA JAIME ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-27', 179950.00, 'A'), +(1130, 1, 'ARCINIEGAS WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126892, '2011-08-05', 497420.00, 'A'), +(1131, 1, 'BAZA ACUNA JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 129447, '2010-12-10', 504410.00, 'A'), +(1132, 3, 'BUIRA ROS CARLOS MARIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-04-27', 29750.00, 'A'), +(1133, 1, 'RODRIGUEZ JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 129447, '2011-06-10', 635560.00, 'A'), +(1134, 1, 'QUIROGA PEREZ NELSON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 129447, '2011-05-18', 88520.00, 'A'), +(1135, 1, 'TATIANA AYALA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127122, '2011-07-01', 535920.00, 'A'), +(1136, 1, 'OSORIO BENEDETTI FABIAN AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2010-10-23', 414060.00, 'A'), +(1139, 1, 'CELIS PINTO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2009-02-25', 964970.00, 'A'), +(114, 1, 'VALDERRAMA CUERVO JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-02', 338590.00, 'A'), +(1140, 1, 'ORTIZ ARENAS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2009-10-21', 613300.00, 'A'), +(1141, 1, 'VALDIVIESO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2009-01-13', 171590.00, 'A'), +(1144, 1, 'LOPEZ CASTILLO NELSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 129499, '2010-09-09', 823110.00, 'A'), +(1145, 1, 'CAVELIER LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126916, '2008-11-29', 389220.00, 'A'), +(1146, 1, 'CAVELIER OTOYA LUIS EDURDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126916, '2010-05-25', 476770.00, 'A'), +(1147, 1, 'GARCIA RUEDA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '111@yahoo.es', '2011-02-03', 133535, '2010-09-12', 216190.00, 'A'), +(1148, 1, 'LADINO GOMEZ OMAR ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-02', 650640.00, 'A'), +(1149, 1, 'CARRENO ORTIZ OSCAR JAVIER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-15', 604630.00, 'A'), +(115, 1, 'NARDEI BONILLO BRUNO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-16', 153110.00, 'A'), +(1150, 1, 'MONTOYA BOZZI MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 129499, '2011-05-12', 71240.00, 'A'), +(1152, 1, 'LORA RICHARD JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-09-15', 497700.00, 'A'), +(1153, 1, 'SILVA PINZON MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '915@hotmail.es', '2011-02-03', 127591, '2011-06-15', 861670.00, 'A'), +(1154, 3, 'GEORGE J A KHALILIEH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-20', 815260.00, 'A'), +(1155, 3, 'CHACON MARIN CARLOS MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-07-26', 491280.00, 'A'), +(1156, 3, 'OCHOA CHEHAB XAVIER ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 126180, '2011-06-13', 10630.00, 'A'), +(1157, 3, 'ARAYA GARRI GABRIEL ALEXIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-09-19', 579320.00, 'A'), +(1158, 3, 'MACCHI ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116366, '2010-04-12', 864690.00, 'A'), +(116, 1, 'GONZALEZ FANDINO JAIME EDUARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-10', 749800.00, 'A'), +(1160, 1, 'CAVALIER LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126916, '2009-08-27', 333390.00, 'A'), +('CELL396', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1161, 3, 'DOMINGUEZ DE OBREGON ILEANA DEL CARMEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 139844, '2011-03-06', 910490.00, 'A'), +(1162, 2, 'FALASCA CLAUDIO ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116511, '2011-07-10', 552280.00, 'A'), +(1163, 3, 'MUTABARUKA PATRICK', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131352, '2011-03-22', 29940.00, 'A'), +(1164, 1, 'DOMINGUEZ ATENCIA JIMMY CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-22', 492860.00, 'A'), +(1165, 4, 'LLANO GONZALEZ ALBERTO MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2010-08-21', 374490.00, 'A'), +(1166, 3, 'LOPEZ ROLDAN JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-07-31', 393860.00, 'A'), +(1167, 1, 'GUTIERREZ DE PINERES JALILIE ARISTIDES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2010-12-09', 845810.00, 'A'), +(1168, 1, 'HEYMANS PIERRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2010-11-08', 47470.00, 'A'), +(1169, 1, 'BOTERO OSORIO RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2009-05-27', 699940.00, 'A'), +(1170, 3, 'GARNHAM POBLETE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 116396, '2011-03-27', 357270.00, 'A'), +(1172, 1, 'DAJUD DURAN JOSE RODRIGO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2009-12-02', 360910.00, 'A'), +(1173, 1, 'MARTINEZ MERCADO PEDRO PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-07-25', 744930.00, 'A'), +(1174, 1, 'GARCIA AMADOR ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-05-19', 641930.00, 'A'), +(1176, 1, 'VARGAS VARELA LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 131568, '2011-08-30', 948410.00, 'A'), +(1178, 1, 'GUTIERRES DE PINERES ARISTIDES', 191821112, 'CRA 25 CALLE 100', '217@hotmail.com', '2011-02-03', 133535, '2011-05-10', 242490.00, 'A'), +(1179, 3, 'LEIZAOLA POZO JIMENA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2011-08-01', 759800.00, 'A'), +(118, 1, 'FERNANDEZ VELOSO PEDRO HERNANDO', 191821112, 'CRA 25 CALLE 100', '452@hotmail.es', '2011-02-03', 128662, '2010-08-06', 198830.00, 'A'), +(1180, 3, 'MARINO PAOLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-12-24', 71520.00, 'A'), +(1181, 1, 'MOLINA VIZCAINO GUSTAVO JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-28', 78220.00, 'A'), +(1182, 3, 'MEDEL GARCIA FABIAN RODRIGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-04-25', 176540.00, 'A'), +(1183, 1, 'LESMES ARIAS RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-09-09', 648020.00, 'A'), +(1184, 1, 'ALCALA MARTINEZ ALFREDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132775, '2010-07-23', 710470.00, 'A'), +(1186, 1, 'LLAMAS FOLIACO LUIS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-07', 910210.00, 'A'), +(1187, 1, 'GUARDO DEL RIO LIBARDO FARID', 191821112, 'CRA 25 CALLE 100', '73@yahoo.com.mx', '2011-02-03', 128662, '2011-09-01', 726050.00, 'A'), +(1188, 3, 'JEFFREY ARTHUR DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 115724, '2011-03-21', 899630.00, 'A'), +(1189, 1, 'DAHL VELEZ JULIANA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126916, '2011-05-23', 320020.00, 'A'), +(119, 3, 'WALESKA DE LIMA ALMEIDA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-05-09', 125240.00, 'A'), +(1190, 3, 'LUIS JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2008-04-04', 901210.00, 'A'), +(1192, 1, 'AZUERO VALENTINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-14', 26310.00, 'A'), +(1193, 1, 'MARQUEZ GALINDO MAURICIO JAVIER', 191821112, 'CRA 25 CALLE 100', '729@yahoo.es', '2011-02-03', 131105, '2011-05-13', 493560.00, 'A'), +(1195, 1, 'NIETO FRANCO JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '707@yahoo.com', '2011-02-03', 127591, '2011-07-30', 463790.00, 'A'), +(1196, 3, 'ESTEVES JOAQUIM LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-04-05', 152270.00, 'A'), +(1197, 4, 'BARRERO KAREN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-12', 369990.00, 'A'), +(1198, 1, 'CORRALES GUZMAN DELIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127689, '2011-08-03', 393120.00, 'A'), +(1199, 1, 'CUELLAR TOCO EDGAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127531, '2011-09-20', 855640.00, 'A'), +(12, 1, 'MARIN PRIETO FREDY NELSON ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-23', 641210.00, 'A'), +(120, 1, 'LOPEZ JARAMILLO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2009-04-17', 29680.00, 'A'), +(1200, 3, 'SCHULTER ACHIM', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 291002, '2010-05-21', 98860.00, 'A'), +(1201, 3, 'HOWELL LAURENCE ADRIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 286785, '2011-05-22', 927350.00, 'A'), +(1202, 3, 'ALCAZAR ESCARATE JAIME PATRICIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-08-25', 340160.00, 'A'), +(1203, 3, 'HIDALGO FUENZALIDA GABRIEL RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-03', 918780.00, 'A'), +(1206, 1, 'VANEGAS HENAO ORLANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-27', 832910.00, 'A'), +(1207, 1, 'PENARANDA ARIAS RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-19', 832710.00, 'A'), +(1209, 1, 'LEZAMA CERVERA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2011-09-14', 825980.00, 'A'), +(121, 1, 'PULIDO JIMENEZ OSCAR HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-29', 772700.00, 'A'), +(1211, 1, 'TRUJILLO BOCANEGRA HAROL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127538, '2011-05-27', 199260.00, 'A'), +(1212, 1, 'ALVAREZ TORRES MARIO RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-08-15', 589960.00, 'A'), +(1213, 1, 'CORRALES VARON BELMER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-26', 352030.00, 'A'), +(1214, 3, 'CUEVAS RODRIGUEZ MANUELA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-30', 990250.00, 'A'), +(1216, 1, 'LOPEZ EDICSON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-31', 505210.00, 'A'), +(1217, 3, 'GARCIA PALOMARES JUAN JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-07-31', 840440.00, 'A'), +(1218, 1, 'ARCINIEGAS NARANJO RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127492, '2010-12-17', 686610.00, 'A'), +(122, 1, 'GONZALEZ RIANO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128031, '2011-08-05', 774450.00, 'A'), +(1220, 1, 'GARCIA GUTIERREZ WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-06-20', 498680.00, 'A'), +(1221, 3, 'GOMEZ DE ALONSO ANGELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-27', 758300.00, 'A'), +(1222, 1, 'MEDINA QUIROGA JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127538, '2011-01-16', 295480.00, 'A'), +(1224, 1, 'ARCILA CORREA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-03-20', 125900.00, 'A'), +(1225, 1, 'QUIJANO REYES CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2010-04-08', 22100.00, 'A'), +(157, 1, 'ORTIZ RIOS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-12', 365330.00, 'A'), +(1226, 1, 'VARGAS GALLEGO JAIRO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2009-07-30', 732820.00, 'A'), +(1228, 3, 'NAPANGA MIRENGHI MARTIN', 191821112, 'CRA 25 CALLE 100', '153@yahoo.es', '2011-02-03', 132958, '2011-02-08', 790400.00, 'A'), +(123, 1, 'LAMUS CASTELLANOS ANDRES RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-11', 554160.00, 'A'), +(1230, 1, 'RIVEROS PINEROS JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127492, '2011-09-25', 422220.00, 'A'), +(1231, 3, 'ESSER JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127327, '2011-04-01', 635060.00, 'A'), +(1232, 3, 'DOMINGUEZ MORA MAURICIO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-22', 908630.00, 'A'), +(1233, 3, 'MOLINA FERNANDEZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-05-28', 637990.00, 'A'), +(1234, 3, 'BELLO DANIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 196234, '2010-09-04', 464040.00, 'A'), +(1235, 3, 'BENADAVA GUEVARA DAVID ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-05-18', 406240.00, 'A'), +(1236, 3, 'RODRIGUEZ MATOS ROBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-03-22', 639070.00, 'A'), +(1237, 3, 'TAPIA ALARCON PATRICIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2010-07-06', 976620.00, 'A'), +(1239, 3, 'VERCHERE ALFONSO CHRISTIAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2010-08-23', 899600.00, 'A'), +(1241, 1, 'ESPINEL LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128206, '2009-03-09', 302860.00, 'A'), +(1242, 3, 'VERGARA FERREIRA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-03', 713310.00, 'A'), +(1243, 3, 'ZUMARRAGA SIRVENT CRSTINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-08-24', 657950.00, 'A'), +(1244, 4, 'ESCORCIA VASQUEZ TOMAS', 191821112, 'CRA 25 CALLE 100', '354@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', 149830.00, 'A'), +(1245, 4, 'PARAMO CUENCA KELLY LORENA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127492, '2011-05-04', 775300.00, 'A'), +(1246, 4, 'PEREZ LOPEZ VERONICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-07-11', 426990.00, 'A'), +(1247, 4, 'CHAPARRO RODRIGUEZ DANIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-08', 809070.00, 'A'), +(1249, 4, 'DIAZ MARTINEZ MARIA CAROLINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2011-05-30', 394740.00, 'A'), +(125, 1, 'CALDON RODRIGUEZ JAIME ARIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126968, '2011-07-29', 574780.00, 'A'), +(1250, 4, 'PINEDA VASQUEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2010-09-03', 680540.00, 'A'), +(1251, 5, 'MATIZ URIBE ANGELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-12-25', 218470.00, 'A'), +(1253, 1, 'ZAMUDIO RICAURTE JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126892, '2011-08-05', 598160.00, 'A'), +(1254, 1, 'ALJURE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-21', 838660.00, 'A'), +(1255, 3, 'ARMESTO AIRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 196234, '2011-01-29', 398840.00, 'A'), +(1257, 1, 'POTES GUEVARA JAIRO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127858, '2011-03-17', 194580.00, 'A'), +(1258, 1, 'BURBANO QUIROGA RAFAEL', 191821112, 'CRA 25 CALLE 100', '767@facebook.com', '2011-02-03', 127591, '2011-04-07', 538220.00, 'A'), +(1259, 1, 'CARDONA GOMEZ JAVIR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-03-16', 107380.00, 'A'), +(126, 1, 'PULIDO PARDO GUIDO IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-05', 531550.00, 'A'), +(1260, 1, 'LOPERA LEDESMA PABLO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-19', 922240.00, 'A'), +(1263, 1, 'TRIBIN BARRIGA JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-09-02', 525330.00, 'A'), +(1264, 1, 'NAVIA LOPEZ ANDRES FELIPE ', 191821112, 'CRA 25 CALLE 100', '353@hotmail.es', '2011-02-03', 127300, '2011-07-15', 591190.00, 'A'), +(1265, 1, 'CARDONA GOMEZ FABIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2010-11-18', 379940.00, 'A'), +(1266, 1, 'ESCARRIA VILLEGAS ANDRES JULIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-08-19', 126160.00, 'A'), +(1268, 1, 'CASTRO HERNANDEZ ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-03-25', 76260.00, 'A'), +(127, 1, 'RODRIGUEZ RODRIGUEZ GIOVANI FRANCISCO', 191821112, 'CRA 25 CALLE 100', '662@hotmail.es', '2011-02-03', 127591, '2011-09-29', 933390.00, 'A'), +(1270, 1, 'LEAL HERNANDEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', 313610.00, 'A'), +(1272, 1, 'ORTIZ CARDONA WILLIAM ENRIQUE', 191821112, 'CRA 25 CALLE 100', '914@hotmail.com', '2011-02-03', 128662, '2011-09-13', 272150.00, 'A'), +(1273, 1, 'ROMERO VAN GOMPEL HERNAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-09-07', 832960.00, 'A'), +(1274, 1, 'BERMUDEZ LONDONO JHON FREDY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-08-29', 348380.00, 'A'), +(1275, 1, 'URREA ALVAREZ NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-01', 242980.00, 'A'), +(1276, 1, 'VALENCIA LLANOS RODRIGO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-04-11', 169790.00, 'A'), +(1277, 1, 'PAZ VALENCIA GUILLERMO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127300, '2011-08-05', 120020.00, 'A'), +(1278, 1, 'MONROY CORREDOR GERARDO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-06-25', 90700.00, 'A'), +(1279, 1, 'RIOS MEDINA JAVIER ERMINSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-12', 93440.00, 'A'), +(128, 1, 'GALLEGO GUZMAN MARIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-06-25', 72290.00, 'A'), +(1280, 1, 'GARCIA OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-30', 195090.00, 'A'), +(1282, 1, 'MURILLO PESELLIN GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-06-15', 890530.00, 'A'), +(1284, 1, 'DIAZ ALVAREZ JOHNY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-06-25', 164130.00, 'A'), +(1285, 1, 'GARCES BELTRAN RAUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-08-11', 719220.00, 'A'), +(1286, 1, 'MATERON POVEDA LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-25', 103710.00, 'A'), +(1287, 1, 'VALENCIA ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-10-23', 360880.00, 'A'), +(1288, 1, 'PENA AGUDELO JOSE RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 134022, '2011-05-25', 493280.00, 'A'), +(1289, 1, 'CORREA NUNEZ JORGE ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-08-18', 383750.00, 'A'), +(129, 1, 'ALVAREZ RODRIGUEZ IVAN RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2008-01-28', 561290.00, 'A'), +(1291, 1, 'BEJARANO ROSERO FREDDY ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-09', 43400.00, 'A'), +(1292, 1, 'CASTILLO BARRIOS GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-06-17', 900180.00, 'A'), +('CELL401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1296, 1, 'GALVEZ GUTIERREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2010-03-28', 807090.00, 'A'), +(1297, 3, 'CRUZ GARCIA MILTON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 139844, '2011-03-21', 75630.00, 'A'), +(1298, 1, 'VILLEGAS GUTIERREZ JOSE RICARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-11', 956860.00, 'A'), +(13, 1, 'VACA MURCIA JESUS ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-04', 613430.00, 'A'), +(1301, 3, 'BOTTI ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 231989, '2011-04-04', 910640.00, 'A'), +(1302, 3, 'COTINO HUESO LORENZO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-02-02', 803450.00, 'A'), +(1304, 3, 'NESPOLI MANTOVANI LUIZ CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-04-18', 16230.00, 'A'), +(1307, 4, 'AVILA GIL PAULA ANDREA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-19', 711110.00, 'A'), +(1308, 4, 'VALLEJO PINEDA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-12', 323490.00, 'A'), +(1312, 1, 'ROMERO OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-17', 642460.00, 'A'), +(1314, 3, 'LULLIES CONSTANZE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 245206, '2010-06-03', 154970.00, 'A'), +(1315, 1, 'CHAPARRO GUTIERREZ JORGE ADRIANO', 191821112, 'CRA 25 CALLE 100', '284@hotmail.es', '2011-02-03', 127591, '2010-12-02', 325440.00, 'A'), +(1316, 1, 'BARRANTES DISI RICARDO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132879, '2011-07-18', 162270.00, 'A'), +(1317, 3, 'VERDES GAGO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2010-03-10', 835060.00, 'A'), +(1319, 3, 'MARTIN MARTINEZ GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2010-05-26', 937220.00, 'A'), +(1320, 3, 'MOTTURA MASSIMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2008-11-10', 620640.00, 'A'), +(1321, 3, 'RUSSELL TIMOTHY JAMES', 191821112, 'CRA 25 CALLE 100', '502@hotmail.es', '2011-02-03', 145135, '2010-04-16', 291560.00, 'A'), +(1322, 3, 'JAIN TARSEM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 190393, '2011-05-31', 595890.00, 'A'), +(1323, 3, 'ORTEGA CEVALLOS JULIETA ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-30', 104760.00, 'A'), +(1324, 3, 'MULLER PICHAIDA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-05-17', 736130.00, 'A'), +(1325, 3, 'ALVEAR TELLEZ JULIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-01-23', 366390.00, 'A'), +(1327, 3, 'MOYA LATORRE MARCELA CAROLINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-05-17', 18520.00, 'A'), +(1328, 3, 'LAMA ZAROR RODRIGO IGNACIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2010-10-27', 221990.00, 'A'), +(1329, 3, 'HERNANDEZ CIFUENTES MAURICE JEANETTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 139844, '2011-06-22', 54410.00, 'A'), +(133, 1, 'CORDOBA HOYOS JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-20', 966820.00, 'A'), +(1330, 2, 'HOCHKOFLER NOEMI CONSUELO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-27', 606070.00, 'A'), +(1331, 4, 'RAMIREZ BARRERO DANIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 154563, '2011-04-18', 867120.00, 'A'), +(1332, 4, 'DE LEON DURANGO RICARDO JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131105, '2011-09-08', 517400.00, 'A'), +(1333, 4, 'RODRIGUEZ MACIAS IVAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129447, '2011-05-23', 985620.00, 'A'), +(1334, 4, 'GUTIERREZ DE PINERES YANET MARIA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-06-16', 375890.00, 'A'), +(1335, 4, 'GUTIERREZ DE PINERES YANET MARIA GABRIELA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-06-16', 922600.00, 'A'), +(1336, 4, 'CABRALES BECHARA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '708@hotmail.com', '2011-02-03', 131105, '2011-05-13', 485330.00, 'A'), +(1337, 4, 'MEJIA TOBON LUIS DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127662, '2011-08-05', 658860.00, 'A'), +(1338, 3, 'OROS NERCELLES CRISTIAN ANDRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 144215, '2011-04-26', 838310.00, 'A'), +(1339, 3, 'MORENO BRAVO CAROLINA ANDREA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 190393, '2010-12-08', 214950.00, 'A'), +(134, 1, 'GONZALEZ LOPEZ DANIEL ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-08', 178580.00, 'A'), +(1340, 3, 'FERNANDEZ GARRIDO MARCELO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-07-08', 559820.00, 'A'), +(1342, 3, 'SUMEGI IMRE ZOLTAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-16', 91750.00, 'A'), +(1343, 3, 'CALDERON FLANDEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '108@hotmail.com', '2011-02-03', 117002, '2010-12-12', 996030.00, 'A'), +(1345, 3, 'CARBONELL ATCHUGARRY GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116366, '2010-04-12', 536390.00, 'A'), +(1346, 3, 'MONTEALEGRE AGUILAR FEDERICO ', 191821112, 'CRA 25 CALLE 100', '448@yahoo.es', '2011-02-03', 132165, '2011-08-08', 567260.00, 'A'), +(1347, 1, 'HERNANDEZ MANCHEGO CARLOS JULIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-04-28', 227130.00, 'A'), +(1348, 1, 'ARENAS ZARATE FERNEY ARNULFO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127963, '2011-03-26', 433860.00, 'A'), +(1349, 3, 'DELFIM DINIZ PASSOS PINHEIRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 110784, '2010-04-17', 487930.00, 'A'), +(135, 1, 'GARCIA SIMBAQUEBA RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 992420.00, 'A'), +(1350, 3, 'BRAUN VALENZUELA FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-29', 138050.00, 'A'), +(1351, 3, 'LEVIN FIORELLI ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 116366, '2011-04-10', 226470.00, 'A'), +(1353, 3, 'BALTODANO ESQUIVEL LAURA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-08-01', 911660.00, 'A'), +(1354, 4, 'ESCOBAR YEPES ANDREA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-19', 403630.00, 'A'), +(1356, 1, 'GAGELI OSORIO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '228@yahoo.com.mx', '2011-02-03', 128662, '2011-07-14', 205070.00, 'A'), +(1357, 3, 'CABAL ALVAREZ RUBEN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-08-14', 175770.00, 'A'), +(1359, 4, 'HUERFANO JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-04', 790970.00, 'A'), +(136, 1, 'OSORIO RAMIREZ LEONARDO', 191821112, 'CRA 25 CALLE 100', '686@yahoo.es', '2011-02-03', 128662, '2010-05-14', 426380.00, 'A'), +(1360, 4, 'RAMON GARCIA MARIA PAULA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-01', 163890.00, 'A'), +(1362, 30, 'ALVAREZ CLAVIO CARLA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127203, '2011-04-18', 741020.00, 'A'), +(1363, 3, 'SERRA DURAN GERARDO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-03', 365490.00, 'A'), +(1364, 3, 'NORIEGA VALVERDE SILVIA MARCELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132775, '2011-02-27', 604370.00, 'A'), +(1366, 1, 'JARAMILLO LOPEZ ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '269@terra.com.co', '2011-02-03', 127559, '2010-11-08', 813800.00, 'A'), +(1367, 1, 'MAZO ROLDAN CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-04', 292880.00, 'A'), +(1368, 1, 'MURIEL ARCILA MAURICIO HERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-29', 22970.00, 'A'), +(1369, 1, 'RAMIREZ CARLOS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-14', 236230.00, 'A'), +(137, 1, 'LUNA PEREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126881, '2011-08-05', 154640.00, 'A'), +(1370, 1, 'GARCIA GRAJALES PEDRO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128166, '2011-10-09', 112230.00, 'A'), +(1372, 3, 'GARCIA ESCOBAR ANA MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-29', 925670.00, 'A'), +(1373, 3, 'ALVES DIAS CARLOS AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-07', 70940.00, 'A'), +(1374, 3, 'MATTOS CHRISTIANE GARCIA CID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 183024, '2010-08-25', 577700.00, 'A'), +(1376, 1, 'CARVAJAL ROJAS ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-10', 645240.00, 'A'), +(1377, 3, 'MADARIAGA CADIZ CLAUDIO CRISTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-10-04', 199200.00, 'A'), +(1379, 3, 'MARIN YANEZ ALICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-02-20', 703870.00, 'A'), +(138, 1, 'DIAZ AVENDANO MARCELO IVAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-22', 494080.00, 'A'), +(1381, 3, 'COSTA VILLEGAS LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-08-21', 580670.00, 'A'), +(1382, 3, 'DAZA PEREZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 122035, '2009-02-23', 888000.00, 'A'), +(1385, 4, 'RIVEROS ARIAS MARIA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127492, '2011-09-26', 35710.00, 'A'), +(1386, 30, 'TORO GIRALDO MATEO', 191821112, 'CRA 25 CALLE 100', '433@yahoo.com.mx', '2011-02-03', 127591, '2011-07-17', 700730.00, 'A'), +(1387, 4, 'ROJAS YARA LAURA DANIELA MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-31', 396530.00, 'A'), +(1388, 3, 'GALLEGO RODRIGO MARIA PILAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2009-04-19', 880450.00, 'A'), +(1389, 1, 'PANTOJA VELASQUEZ JOSE ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2011-08-05', 212660.00, 'A'), +(139, 1, 'RANCO GOMEZ HERNÁN EDUARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-01-19', 6450.00, 'A'), +(1390, 3, 'VAN DEN BORNE KEES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2010-01-28', 421930.00, 'A'), +(1391, 3, 'MONDRAGON FLORES JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-08-22', 471700.00, 'A'), +(1392, 3, 'BAGELLA MICHELE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-07-27', 92720.00, 'A'), +(1393, 3, 'BISTIANCIC MACHADO ANA INES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 116366, '2010-08-02', 48490.00, 'A'), +(1394, 3, 'BANADOS ORTIZ MARIA PILAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-08-25', 964280.00, 'A'), +(1395, 1, 'CHINDOY CHINDOY HERNANDO', 191821112, 'CRA 25 CALLE 100', '107@terra.com.co', '2011-02-03', 126892, '2011-08-25', 675920.00, 'A'), +(1396, 3, 'SOTO NUNEZ ANDRES ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-10-02', 486760.00, 'A'), +(1397, 1, 'DELGADO MARTINEZ LORGE ELIAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-23', 406040.00, 'A'), +(1398, 1, 'LEON GUEVARA JAVIER ANIBAL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126892, '2011-09-08', 569930.00, 'A'), +(1399, 1, 'ZARAMA BASTIDAS LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126892, '2011-08-05', 631540.00, 'A'), +(14, 1, 'MAGUIN HENNSSEY LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '714@gmail.com', '2011-02-03', 127591, '2011-07-11', 143540.00, 'A'), +(140, 1, 'CARRANZA CUY ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-25', 550010.00, 'A'), +(1401, 3, 'REYNA CASTORENA JOSE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 189815, '2011-08-29', 344970.00, 'A'), +(1402, 1, 'GFALLO BOTERO SERGIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-07-14', 381100.00, 'A'), +(1403, 1, 'ARANGO ARAQUE JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-05-04', 870590.00, 'A'), +(1404, 3, 'LASSNER NORBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118942, '2010-02-28', 209650.00, 'A'), +(1405, 1, 'DURANGO MARIN HECTOR LEON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '1970-02-02', 436480.00, 'A'), +(1407, 1, 'FRANCO CASTANO DIEGO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-06-28', 457770.00, 'A'), +(1408, 1, 'HERNANDEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-05-29', 628550.00, 'A'), +(1409, 1, 'CASTANO DUQUE CARLOS HUGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-03-23', 769410.00, 'A'), +(141, 1, 'CHAMORRO CHEDRAUI SERGIO ALBERTO', 191821112, 'CRA 25 CALLE 100', '922@yahoo.com.mx', '2011-02-03', 127591, '2011-05-07', 730720.00, 'A'), +(1411, 1, 'RAMIREZ MONTOYA ADAMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-04-13', 498880.00, 'A'), +(1412, 1, 'GONZALEZ BENJUMEA OSCAR HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-11-01', 610150.00, 'A'), +(1413, 1, 'ARANGO ACEVEDO WALTER ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-10-07', 554090.00, 'A'), +(1414, 1, 'ARANGO GALLO HUMBERTO LEON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-02-25', 940010.00, 'A'), +(1415, 1, 'VELASQUEZ LUIS GONZALO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-07-06', 37760.00, 'A'), +(1416, 1, 'MIRA AGUILAR FRANCISCO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-30', 368790.00, 'A'), +(1417, 1, 'RIVERA ARISTIZABAL CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-03-02', 730670.00, 'A'), +(1418, 1, 'ARISTIZABAL ROLDAN ANDRES RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-02', 546960.00, 'A'), +(142, 1, 'LOPEZ ZULETA MAURICIO ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-01', 3550.00, 'A'), +(1420, 1, 'ESCORCIA ARAMBURO JUAN MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', 73100.00, 'A'), +(1421, 1, 'CORREA PARRA RICARDO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-05', 737110.00, 'A'), +(1422, 1, 'RESTREPO NARANJO DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-09-15', 466240.00, 'A'), +(1423, 1, 'VELASQUEZ CARLOS JUAN', 191821112, 'CRA 25 CALLE 100', '123@yahoo.com', '2011-02-03', 128662, '2010-06-09', 119880.00, 'A'), +(1424, 1, 'MACIA GONZALEZ ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2010-11-12', 200690.00, 'A'), +(1425, 1, 'BERRIO MEJIA HELBER ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2010-06-04', 643800.00, 'A'), +(1427, 1, 'GOMEZ GUTIERREZ CARLOS ARIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-09-08', 153320.00, 'A'), +(1428, 1, 'RESTREPO LOPEZ JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-12', 915770.00, 'A'), +('CELL4012', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1429, 1, 'BARTH TOBAR LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-02-23', 118900.00, 'A'), +(143, 1, 'MUNERA BEDIYA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-09-21', 825600.00, 'A'), +(1430, 1, 'JIMENEZ VELEZ ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-02-26', 847160.00, 'A'), +(1431, 1, 'TAKAHASHI GAVIRIA NICOLAS KEIICHIRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-13', 879120.00, 'A'), +(1432, 1, 'ESCOBAR JARAMILLO ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-06-10', 854110.00, 'A'), +(1433, 1, 'PALACIO NAVARRO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-08-18', 633200.00, 'A'), +(1434, 1, 'LONDONO MUNOZ ADOLFO LEON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-09-14', 603670.00, 'A'), +(1435, 1, 'PULGARIN JAIME ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2009-11-01', 118730.00, 'A'), +(1436, 1, 'FERRERA ZULUAGA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-07-10', 782630.00, 'A'), +(1437, 1, 'VASQUEZ VELEZ HABACUC', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-27', 557000.00, 'A'), +(1438, 1, 'HENAO PALOMINO DIEGO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2009-05-06', 437080.00, 'A'), +(1439, 1, 'HURTADO URIBE JUAN GONZALO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-01-11', 514400.00, 'A'), +(144, 1, 'ALDANA RODOLFO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '838@yahoo.es', '2011-02-03', 127591, '2011-08-07', 117350.00, 'A'), +(1441, 1, 'URIBE DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2010-11-19', 760610.00, 'A'), +(1442, 1, 'PINEDA GALIANO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-07-29', 20770.00, 'A'), +(1443, 1, 'DUQUE BETANCOURT FABIO LEON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-26', 822030.00, 'A'), +(1444, 1, 'JARAMILLO TORO HERNAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-04-27', 47830.00, 'A'), +(145, 1, 'VASQUEZ ZAPATA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-09', 109940.00, 'A'), +(1450, 1, 'TOBON FRANCO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '545@facebook.com', '2011-02-03', 127591, '2011-05-03', 889540.00, 'A'), +(1454, 1, 'LOTERO PAVAS CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-28', 646750.00, 'A'), +(1455, 1, 'ESTRADA HENAO JAVIER ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128569, '2009-09-07', 215460.00, 'A'), +(1456, 1, 'VALDERRAMA MAXIMILIANO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-23', 137030.00, 'A'), +(1457, 3, 'ESTRADA ALVAREZ GONZALO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 154903, '2011-05-02', 38790.00, 'A'), +(1458, 1, 'PAUCAR VALLEJO JAIRO ALONSO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-10-15', 782860.00, 'A'), +(1459, 1, 'RESTREPO GIRALDO JHON DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-04-04', 797930.00, 'A'), +(146, 1, 'BAQUERO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-03-03', 197650.00, 'A'), +(1460, 1, 'RESTREPO DOMINGUEZ GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2009-05-18', 641050.00, 'A'), +(1461, 1, 'YANOVICH JACKY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-08-21', 811470.00, 'A'), +(1462, 1, 'HINCAPIE ROLDAN JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-27', 134200.00, 'A'), +(1463, 3, 'ZEA JORGE OLIVER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2011-03-12', 236610.00, 'A'), +(1464, 1, 'OSCAR MAURICIO ECHAVARRIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-11-24', 780440.00, 'A'), +(1465, 1, 'COSSIO GIL JOSE ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-10-01', 192380.00, 'A'), +(1466, 1, 'GOMEZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-03-01', 620580.00, 'A'), +(1467, 1, 'VILLALOBOS OCHOA ANDRES GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-18', 525740.00, 'A'), +(1470, 1, 'GARCIA GONZALEZ DAVID DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-09-17', 986990.00, 'A'), +(1471, 1, 'RAMIREZ RESTREPO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-03', 162250.00, 'A'), +(1472, 1, 'VASQUEZ GUTIERREZ JUAN ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-05', 850280.00, 'A'), +(1474, 1, 'ESCOBAR ARANGO DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-11-01', 272460.00, 'A'), +(1475, 1, 'MEJIA TORO JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-05-02', 68320.00, 'A'), +(1477, 1, 'ESCOBAR GOMEZ JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127848, '2011-05-15', 416150.00, 'A'), +(1478, 1, 'BETANCUR WILSON', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2008-02-09', 508060.00, 'A'), +(1479, 3, 'ROMERO ARRAU GONZALO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-10', 291880.00, 'A'), +(148, 1, 'REINA MORENO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-08', 699240.00, 'A'), +(1480, 1, 'CASTANO OSORIO JORGE ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127662, '2011-09-20', 935200.00, 'A'), +(1482, 1, 'LOPEZ LOPERA ROBINSON FREDY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-09-02', 196280.00, 'A'), +(1484, 1, 'HERNAN DARIO RENDON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-03-18', 312520.00, 'A'), +(1485, 1, 'MARTINEZ ARBOLEDA MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-11-03', 821760.00, 'A'), +(1486, 1, 'RODRIGUEZ MORA CARLOS MORA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-09-16', 171270.00, 'A'), +(1487, 1, 'PENAGOS VASQUEZ JOSE DOMINGO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-09-06', 391080.00, 'A'), +(1488, 1, 'UERRA MEJIA DIEGO LEON', 191821112, 'CRA 25 CALLE 100', '704@hotmail.com', '2011-02-03', 144086, '2011-08-06', 441570.00, 'A'), +(1491, 1, 'QUINTERO GUTIERREZ ABEL PASTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2009-11-16', 138100.00, 'A'), +(1492, 1, 'ALARCON YEPES IVAN DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2010-05-03', 145330.00, 'A'), +(1494, 1, 'HERNANDEZ VALLEJO ANDRES MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-09', 125770.00, 'A'), +(1495, 1, 'MONTOYA MORENO LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-09', 691770.00, 'A'), +(1497, 1, 'BARRERA CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '62@yahoo.es', '2011-02-03', 127591, '2010-08-24', 332550.00, 'A'), +(1498, 1, 'ARROYAVE FERNANDEZ PABLO EMILIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-05-12', 418030.00, 'A'), +(1499, 1, 'GOMEZ ANGEL FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-05-03', 92480.00, 'A'), +(15, 1, 'AMSILI COHEN JOSEPH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 877400.00, 'A'), +('CELL411', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(150, 3, 'ARDILA GUTIERREZ DANIEL MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-12', 506760.00, 'A'), +(1500, 1, 'GONZALEZ DUQUE PABLO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-04-13', 208330.00, 'A'), +(1502, 1, 'MEJIA BUSTAMANTE JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-09', 196000.00, 'A'), +(1506, 1, 'SUAREZ MONTOYA JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128569, '2011-09-13', 368250.00, 'A'), +(1508, 1, 'ALVAREZ GONZALEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-02-15', 355190.00, 'A'), +(1509, 1, 'NIETO CORREA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-31', 899980.00, 'A'), +(1511, 1, 'HERNANDEZ GRANADOS JHONATHAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-08-30', 471720.00, 'A'), +(1512, 1, 'CARDONA ALVAREZ DEIBY', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2010-10-05', 55590.00, 'A'), +(1513, 1, 'TORRES MARULANDA JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-20', 862820.00, 'A'), +(1514, 1, 'RAMIREZ RAMIREZ JHON JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-11', 147310.00, 'A'), +(1515, 1, 'MONDRAGON TORO NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-01-19', 148100.00, 'A'), +(1517, 3, 'SUIDA DIETER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2008-07-21', 48580.00, 'A'), +(1518, 3, 'LEFTWICH ANDREW PAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 211610, '2011-06-07', 347170.00, 'A'), +(1519, 3, 'RENTON ANDREW GEORGE PATRICK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2010-12-11', 590120.00, 'A'), +(152, 1, 'BUSTOS MONZON CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-22', 335160.00, 'A'), +(1521, 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 119814, '2011-04-28', 775000.00, 'A'), +(1522, 3, 'GUARACI FRANCO DE PAIVA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 119167, '2011-04-28', 147770.00, 'A'), +(1525, 4, 'MORENO TENORIO MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-20', 888750.00, 'A'), +(1527, 1, 'VELASQUEZ HERNANDEZ JHON EDUARSON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-07-19', 161270.00, 'A'), +(1528, 4, 'VANEGAS ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '185@yahoo.com', '2011-02-03', 127591, '2011-06-20', 109830.00, 'A'), +(1529, 3, 'BARBABE CLAIRE LAURENCE ANNICK', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-04', 65330.00, 'A'), +(153, 1, 'GONZALEZ TORREZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-01', 762560.00, 'A'), +(1530, 3, 'COREA MARTINEZ GUILLERMO JOSE ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-09-25', 997190.00, 'A'), +(1531, 3, 'PACHECO RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2010-03-08', 789960.00, 'A'), +(1532, 3, 'WELCH RICHARD WILLIAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 190393, '2010-10-04', 958210.00, 'A'), +(1533, 3, 'FOREMAN CAROLYN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 107159, '2011-05-23', 421200.00, 'A'), +(1535, 3, 'ZAGAL SOTO CLAUDIA PAZ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2008-05-16', 893130.00, 'A'), +(1536, 3, 'ZAGAL SOTO CLAUDIA PAZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-10-08', 771600.00, 'A'), +(1538, 3, 'BLANCO RODRIGUEZ JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 197162, '2011-04-02', 578250.00, 'A'), +(154, 1, 'HENDEZ PUERTO JAVIER ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 807310.00, 'A'), +(1540, 3, 'CONTRERAS BRAIN JAVIER ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-02-22', 42420.00, 'A'), +(1541, 3, 'RONDON HERNANDEZ MARYLIN DEL CARMEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-09-29', 145780.00, 'A'), +(1542, 3, 'ELJURI RAMIREZ EMIRA ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2010-10-13', 601670.00, 'A'), +(1544, 3, 'REYES LE ROY TOMAS FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2009-06-24', 49990.00, 'A'), +(1545, 3, 'GHETEA GAMUZ JENNY', 191821112, 'CRA 25 CALLE 100', '675@gmail.com', '2011-02-03', 150699, '2010-05-29', 536940.00, 'A'), +(1546, 3, 'DUARTE GONZALEZ ROONEY ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-20', 534720.00, 'A'), +(1548, 3, 'BIZOT PHILIPPE PIERRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 263813, '2011-03-02', 709760.00, 'A'), +(1549, 3, 'PELUFFO RUBIO GUILLERMO JUAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 116366, '2011-05-09', 360470.00, 'A'), +(1550, 3, 'AGLIATI YERKOVIC CAROLINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-06-01', 673040.00, 'A'), +(1551, 3, 'SEPULVEDA LEDEZMA HENRY CORNELIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-08-15', 283810.00, 'A'), +(1552, 3, 'CABRERA CARMINE JAIME FRANCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2008-11-30', 399940.00, 'A'), +(1553, 3, 'ZINNO PENA ALVARO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116366, '2010-08-02', 148270.00, 'A'), +(1554, 3, 'ROMERO BUCCICARDI JUAN CRISTOBAL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-08-01', 541530.00, 'A'), +(1555, 3, 'FEFERKORN ABRAHAM', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 159312, '2011-06-12', 262840.00, 'A'), +(1556, 3, 'MASSE CATESSON CAROLINE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131272, '2011-06-12', 689600.00, 'A'), +(1557, 3, 'CATESSON ALEXANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 131272, '2011-06-12', 659470.00, 'A'), +(1558, 3, 'FUENTES HERNANDEZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-18', 228540.00, 'A'), +(1559, 3, 'GUEVARA MENJIVAR WILSON ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-18', 164310.00, 'A'), +(1560, 3, 'DANOWSKI NICOLAS JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-02', 135920.00, 'A'), +(1561, 3, 'CASTRO VELASQUEZ ISMAEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 121318, '2011-07-31', 186670.00, 'A'), +(1562, 3, 'RODRIGUEZ CORNEJO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 525590.00, 'A'), +(1563, 3, 'VANIA CAROLINA FLORES AVILA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-18', 67950.00, 'A'), +(1564, 3, 'ARMERO RAMOS OSCAR ALEXANDER', 191821112, 'CRA 25 CALLE 100', '414@hotmail.com', '2011-02-03', 127591, '2011-09-18', 762950.00, 'A'), +(1565, 3, 'ORELLANA MARTINEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-18', 610930.00, 'A'), +(1566, 3, 'BRATT BABONNEAU CARLOS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', 765800.00, 'A'), +(1567, 3, 'YANES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150728, '2011-04-12', 996200.00, 'A'), +(1568, 3, 'ANGULO TAMAYO SEBASTIAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126674, '2011-05-19', 683600.00, 'A'), +(1569, 3, 'HENRIQUEZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 138329, '2011-08-15', 429390.00, 'A'), +('CELL4137', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1570, 3, 'GARCIA VILLARROEL RAUL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126189, '2011-06-12', 96140.00, 'A'), +(1571, 3, 'SOLA HERNANDEZ JOSE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-09-25', 192530.00, 'A'), +(1572, 3, 'PEREZ PASTOR OSWALDO MAGARREY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126674, '2011-05-25', 674260.00, 'A'), +(1573, 3, 'MICHAN QUINONES FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-06-21', 793680.00, 'A'), +(1574, 3, 'GARCIA ARANDA OSCAR DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-08-15', 945620.00, 'A'), +(1575, 3, 'GARCIA RIBAS JORDI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-10', 347070.00, 'A'), +(1576, 3, 'GALVAN ROMERO MARIA INMACULADA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-09-14', 898480.00, 'A'), +(1577, 3, 'BOSH MOLINAS JUAN JOSE ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 198576, '2011-08-22', 451190.00, 'A'), +(1578, 3, 'MARTIN TENA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-04-24', 560520.00, 'A'), +(1579, 3, 'HAWKINS ROBERT JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-12', 449010.00, 'A'), +(1580, 3, 'GHERARDI ALEJANDRO EMILIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 180063, '2010-11-15', 563500.00, 'A'), +(1581, 3, 'TELLO JUAN EDUARDO', 191821112, 'CRA 25 CALLE 100', '192@hotmail.com', '2011-02-03', 138329, '2011-05-01', 470460.00, 'A'), +(1583, 3, 'GUZMAN VALDIVIA CINTIA TATIANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 199862, '2011-04-06', 897580.00, 'A'), +(1584, 3, 'STUBBS MERCEDES CARMEN JOSEFINA DEL MILAGRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 199862, '2011-04-06', 502510.00, 'A'), +(1585, 3, 'QUINTEIRO GORIS JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-17', 819840.00, 'A'), +(1587, 3, 'RIVAS LORIA PRISCILLA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 205636, '2011-05-01', 498720.00, 'A'), +(1588, 3, 'DE LA TORRE AUGUSTO PATRICIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 20404, '2011-08-31', 718670.00, 'A'), +(159, 1, 'ALDANA PATINO NORMAN ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2009-10-10', 201500.00, 'A'), +(1590, 3, 'TORRES VILLAR ROBERTO ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-08-10', 329950.00, 'A'), +(1591, 3, 'PETRULLI CARMELO MORENO', 191821112, 'CRA 25 CALLE 100', '883@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', 358180.00, 'A'), +(1592, 3, 'MUSCO ENZO FRANCESCO GIUSEPPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-04', 801050.00, 'A'), +(1593, 3, 'RONCUZZI CLAUDIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127134, '2011-10-02', 930700.00, 'A'), +(1594, 3, 'VELANI FRANCESCA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 199862, '2011-08-22', 250360.00, 'A'), +(1596, 3, 'BENARROCH ASSOR DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-10-06', 547310.00, 'A'), +(1597, 3, 'FLO VILLASECA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-05-27', 357520.00, 'A'), +(1598, 3, 'FONT RIBAS ANTONI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196117, '2011-09-21', 145660.00, 'A'), +(1599, 3, 'LOPEZ BARAHONA MONICA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-08-03', 655740.00, 'A'), +(16, 1, 'FLOREZ PEREZ GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132572, '2011-03-30', 956370.00, 'A'), +(160, 1, 'GIRALDO MENDIVELSO MARTIN EDISSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-14', 429010.00, 'A'), +(1600, 3, 'SCATTIATI ALDO ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 215245, '2011-07-10', 841730.00, 'A'), +(1601, 3, 'MARONE CARLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 101179, '2011-06-14', 241420.00, 'A'), +(1602, 3, 'CHUVASHEVA ELENA ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 190393, '2011-08-21', 681900.00, 'A'), +(1603, 3, 'GIGLIO FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 122035, '2011-09-19', 685250.00, 'A'), +(1604, 3, 'JUSTO AMATE AGUSTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 174598, '2011-05-16', 380560.00, 'A'), +(1605, 3, 'GUARDABASSI FABIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 281044, '2011-07-26', 847060.00, 'A'), +(1606, 3, 'CALABRETTA FRAMCESCO ANTONIO MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 199862, '2011-08-22', 93590.00, 'A'), +(1607, 3, 'TARTARINI MASSIMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196234, '2011-05-10', 926800.00, 'A'), +(1608, 3, 'BOTTI GIAIME', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 231989, '2011-04-04', 353210.00, 'A'), +(1610, 3, 'PILERI ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 205040, '2011-09-01', 868590.00, 'A'), +(1612, 3, 'MARTIN GRACIA LUIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-07-27', 324320.00, 'A'), +(1613, 3, 'GRACIA MARTIN LUIS', 191821112, 'CRA 25 CALLE 100', '579@facebook.com', '2011-02-03', 198248, '2011-08-24', 463560.00, 'A'), +(1614, 3, 'SERRAT SESE JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-05-16', 344840.00, 'A'), +(1615, 3, 'DEL LAGO AMPELIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-06-29', 333510.00, 'A'), +(1616, 3, 'PERUGORRIA RODRIGUEZ JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 148511, '2011-06-06', 633040.00, 'A'), +(1617, 3, 'GIRAL CALVO IGNACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-09-19', 164670.00, 'A'), +(1618, 3, 'ALONSO CEBRIAN JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '253@terra.com.co', '2011-02-03', 188640, '2011-03-23', 924240.00, 'A'), +(162, 1, 'ARIZA PINEDA JOHN ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-11-27', 415710.00, 'A'), +(1620, 3, 'OLMEDO CARDENETE DOMINGO MIGUEL', 191821112, 'CRA 25 CALLE 100', '608@terra.com.co', '2011-02-03', 135397, '2011-09-03', 863200.00, 'A'), +(1622, 3, 'GIMENEZ BALDRES ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 182860, '2011-05-12', 82660.00, 'A'), +(1623, 3, 'NUNEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-05-23', 609950.00, 'A'), +(1624, 3, 'PENATE CASTRO WENCESLAO LORENZO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 153607, '2011-09-13', 801750.00, 'A'), +(1626, 3, 'ESCODA MIGUEL JOAN JOSEP', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-07-18', 489310.00, 'A'), +(1628, 3, 'ESTRADA CAPILLA ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-26', 81180.00, 'A'), +(163, 1, 'PERDOMO LOPEZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-05', 456910.00, 'A'), +(1630, 3, 'SUBIRAIS MARIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-08', 138700.00, 'A'), +(1632, 3, 'ENSENAT VELASCO JAIME LUIS', 191821112, 'CRA 25 CALLE 100', '687@gmail.com', '2011-02-03', 188640, '2011-04-12', 904560.00, 'A'), +(1633, 3, 'DIEZ POLANCO CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-05-24', 530410.00, 'A'), +(1636, 3, 'CUADRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-09-04', 688400.00, 'A'), +(1637, 3, 'UBRIC MUNOZ RAUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 98790, '2011-05-30', 139830.00, 'A'), +('CELL4159', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1638, 3, 'NEDDERMANN GUJO RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-31', 633990.00, 'A'), +(1639, 3, 'RENEDO ZALBA JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-03-13', 750430.00, 'A'), +(164, 1, 'JIMENEZ PADILLA JOHAN MARCEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-05', 37430.00, 'A'), +(1640, 3, 'FERNANDEZ MORENO DAVID', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-05-28', 850180.00, 'A'), +(1641, 3, 'VERGARA SERRANO JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-06-30', 999620.00, 'A'), +(1642, 3, 'MARTINEZ HUESO LUCAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 182860, '2011-06-29', 447570.00, 'A'), +(1643, 3, 'FRANCO POBLET JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-10-03', 238990.00, 'A'), +(1644, 3, 'MORA HIDALGO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-06', 852250.00, 'A'), +(1645, 3, 'GARCIA COSO EMILIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-09-14', 544260.00, 'A'), +(1646, 3, 'GIMENO ESCRIG ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 180124, '2011-09-20', 164580.00, 'A'), +(1647, 3, 'MORCILLO LOPEZ RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127538, '2011-04-16', 190090.00, 'A'), +(1648, 3, 'RUBIO BONET MANUEL', 191821112, 'CRA 25 CALLE 100', '252@facebook.com', '2011-02-03', 196234, '2011-05-25', 456740.00, 'A'), +(1649, 3, 'PRADO ABUIN FERNANDO ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-07-16', 713400.00, 'A'), +(165, 1, 'RAMIREZ PALMA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-10', 816420.00, 'A'), +(1650, 3, 'DE VEGA PUJOL GEMA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-08-01', 196780.00, 'A'), +(1651, 3, 'IBARGUEN ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2010-12-03', 843720.00, 'A'), +(1652, 3, 'IBARGUEN ALFREDO', 191821112, 'CRA 25 CALLE 100', '856@hotmail.com', '2011-02-03', 188640, '2011-06-18', 628250.00, 'A'), +(1654, 3, 'MATELLANES RODRIGUEZ NURIA PILAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-10-05', 165770.00, 'A'), +(1656, 3, 'VIDAURRAZAGA GUISOLA JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-08-08', 495320.00, 'A'), +(1658, 3, 'GOMEZ ULLATE MARIA ELENA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-04-12', 919090.00, 'A'), +(1659, 3, 'ALCAIDE ALONSO JUAN MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-02', 152430.00, 'A'), +(166, 1, 'TUSTANOSKI RODOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-12-03', 969790.00, 'A'), +(1660, 3, 'LARROY GARCIA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-14', 4900.00, 'A'), +(1661, 3, 'FERNANDEZ POYATO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-10', 567180.00, 'A'), +(1662, 3, 'TREVEJO PARDO JULIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-25', 821200.00, 'A'), +(1663, 3, 'GORGA CASSINELLI VICTOR DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-30', 404490.00, 'A'), +(1664, 3, 'MORUECO GONZALEZ JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-10-09', 558820.00, 'A'), +(1665, 3, 'IRURETA FERNANDEZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 214283, '2011-09-14', 580650.00, 'A'), +(1667, 3, 'TREVEJO PARDO JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-25', 392020.00, 'A'), +(1668, 3, 'BOCOS NUNEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-10-08', 279710.00, 'A'), +(1669, 3, 'LUIS CASTILLO JOSE AGUSTIN', 191821112, 'CRA 25 CALLE 100', '557@hotmail.es', '2011-02-03', 168202, '2011-06-16', 222500.00, 'A'), +(167, 1, 'HURTADO BELALCAZAR JOHN JADY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-08-17', 399710.00, 'A'), +(1670, 3, 'REDONDO GUTIERREZ EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-09-14', 273350.00, 'A'), +(1671, 3, 'MADARIAGA ALONSO RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-07-26', 699240.00, 'A'), +(1673, 3, 'REY GONZALEZ LUIS JAVIER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-07-26', 283190.00, 'A'), +(1676, 3, 'PEREZ ESTER ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-10-03', 274900.00, 'A'), +(1677, 3, 'GOMEZ-GRACIA HUERTA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-22', 112260.00, 'A'), +(1678, 3, 'DAMASO PUENTE DIEGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-25', 736600.00, 'A'), +(168, 1, 'JUAN PABLO MARTINEZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-15', 89160.00, 'A'), +(1680, 3, 'DIEZ GONZALEZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-17', 521280.00, 'A'), +(1681, 3, 'LOPEZ LOPEZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '853@yahoo.com', '2011-02-03', 196234, '2010-12-13', 567760.00, 'A'), +(1682, 3, 'MIRO LINARES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133442, '2011-09-03', 274930.00, 'A'), +(1683, 3, 'ROCA PINTADO MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-05-16', 671410.00, 'A'), +(1684, 3, 'GARCIA BARTOLOME HORACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-09-29', 532220.00, 'A'), +(1686, 3, 'BALMASEDA DE AHUMADA DIEZ JUAN LUIS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 168202, '2011-04-13', 637860.00, 'A'), +(1687, 3, 'FERNANDEZ IMAZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-04-10', 248580.00, 'A'), +(1688, 3, 'ELIAS CASTELLS FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-19', 329300.00, 'A'), +(1689, 3, 'ANIDO DIAZ DANIEL', 191821112, 'CRA 25 CALLE 100', '491@gmail.com', '2011-02-03', 188640, '2011-04-04', 900780.00, 'A'), +(1691, 3, 'GATELL ARIMONT MARIA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-17', 877700.00, 'A'), +(1692, 3, 'RIVERA MUNOZ ADONI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 211705, '2011-04-05', 840470.00, 'A'), +(1693, 3, 'LUNA LOPEZ ALICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-10-01', 569270.00, 'A'), +(1695, 3, 'HAMMOND ANN ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118021, '2011-05-17', 916770.00, 'A'), +(1698, 3, 'RODRIGUEZ PARAJA MARIA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-07-15', 649080.00, 'A'), +(1699, 3, 'RUIZ DIAZ JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-06-24', 359540.00, 'A'), +(17, 1, 'SUAREZ CUEVAS FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 129499, '2011-08-31', 149640.00, 'A'), +(170, 1, 'MARROQUIN AVILA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-04', 965840.00, 'A'), +(1700, 3, 'BACCHELLI ORTEGA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 126180, '2011-06-07', 850450.00, 'A'), +(1701, 3, 'IGLESIAS JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2010-09-14', 173630.00, 'A'), +(1702, 3, 'GUTIEZ CUEVAS JULIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2010-09-07', 316800.00, 'A'), +('CELL4183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1704, 3, 'CALDEIRO ZAMORA JESUS CARMELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-09', 365230.00, 'A'), +(1705, 3, 'ARBONA ABASCAL MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-02-27', 636760.00, 'A'), +(1706, 3, 'COHEN AMAR MOISES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196766, '2011-05-20', 88120.00, 'A'), +(1708, 3, 'FERNANDEZ COBOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2010-11-09', 387220.00, 'A'), +(1709, 3, 'CANAL VIVES JOAQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 196234, '2011-09-27', 345150.00, 'A'), +(171, 1, 'LADINO MORENO JAVIER ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-25', 89230.00, 'A'), +(1710, 5, 'GARCIA BERTRAND HECTOR', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-04-07', 564100.00, 'A'), +(1711, 1, 'CONSTANZA MARIN ESCOBAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127799, '2011-03-24', 785060.00, 'A'), +(1712, 1, 'NUNEZ BATALLA FAUSTINO JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-26', 232970.00, 'A'), +(1713, 3, 'VILORA LAZARO ERICK MARTIN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-26', 809690.00, 'A'), +(1715, 3, 'ELLIOT EDWARD JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-26', 318660.00, 'A'), +(1716, 3, 'ALCALDE ORTENO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-07-23', 544650.00, 'A'), +(1717, 3, 'CIARAVELLA STEFANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 231989, '2011-06-13', 767260.00, 'A'), +(1718, 3, 'URRA GONZALEZ PEDRO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-05-02', 202370.00, 'A'), +(172, 1, 'GUERRERO ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-15', 548610.00, 'A'), +(1720, 3, 'JIMENEZ RODRIGUEZ ANNET', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-05-25', 943140.00, 'A'), +(1721, 3, 'LESCAY CASTELLANOS ARNALDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', 585570.00, 'A'), +(1722, 3, 'OCHOA AGUILAR ELIADES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-25', 98410.00, 'A'), +(1723, 3, 'RODRIGUEZ NUNES JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 735340.00, 'A'), +(1724, 3, 'OCHOA BUSTAMANTE ELIADES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-25', 381480.00, 'A'), +(1725, 3, 'MARTINEZ NIEVES JOSE ANGEL', 191821112, 'CRA 25 CALLE 100', '919@yahoo.es', '2011-02-03', 127591, '2011-05-25', 701360.00, 'A'), +(1727, 3, 'DRAGONI ALAIN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-25', 707850.00, 'A'), +(1728, 3, 'FERNANDEZ LOPEZ MARCOS ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-25', 452090.00, 'A'), +(1729, 3, 'MATURELL ROMERO JORGE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-25', 136880.00, 'A'), +(173, 1, 'RUIZ CEBALLOS ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-04', 475380.00, 'A'), +(1730, 3, 'LARA CASTELLANO LENNIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-25', 328150.00, 'A'), +(1731, 3, 'GRAHAM CRISTOPHER DRAKE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 203079, '2011-06-27', 230120.00, 'A'), +(1732, 3, 'TORRE LUCA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-05-11', 166120.00, 'A'), +(1733, 3, 'OCHOA HIDALGO EGLIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 140250.00, 'A'), +(1734, 3, 'LOURERIO DELACROIX FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116511, '2011-09-28', 202900.00, 'A'), +(1736, 3, 'LEVIN FIORELLI ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116366, '2011-08-07', 360110.00, 'A'), +(1739, 3, 'BERRY R ALBERT', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 216125, '2011-08-16', 22170.00, 'A'), +(174, 1, 'NIETO PARRA SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-05-11', 731040.00, 'A'), +(1740, 3, 'MARSHALL ROBERT SHEPARD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 150159, '2011-03-09', 62860.00, 'A'), +(1741, 3, 'HENANDEZ ROY CHRISTOPHER JOHN PATRICK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 179614, '2011-09-26', 247780.00, 'A'), +(1742, 3, 'LANDRY GUILLAUME', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 232263, '2011-04-27', 50330.00, 'A'), +(1743, 3, 'VUCETIC ZELJKO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 232263, '2011-07-25', 508320.00, 'A'), +(1744, 3, 'DE JUANA CELASCO MARIA DEL CARMEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188640, '2011-04-16', 390620.00, 'A'), +(1745, 3, 'LABONTE RONALD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 269033, '2011-09-28', 428120.00, 'A'), +(1746, 3, 'NEWMAN PHILIP MARK', 191821112, 'CRA 25 CALLE 100', '557@gmail.com', '2011-02-03', 231373, '2011-07-25', 968750.00, 'A'), +(1747, 3, 'GRENIER MARIE PIERRE ', 191821112, 'CRA 25 CALLE 100', '409@facebook.com', '2011-02-03', 244158, '2011-07-03', 559370.00, 'A'), +(1749, 3, 'SHINDER GARY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 244158, '2011-07-25', 775000.00, 'A'), +(175, 3, 'GALLEGOS BASTIDAS CARLOS EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133211, '2011-08-10', 229090.00, 'A'), +(1750, 3, 'LOPEZ DE GOICOCHEA ZABALA FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-13', 203120.00, 'A'), +(1751, 3, 'CORRAL BELLON MANUEL', 191821112, 'CRA 25 CALLE 100', '538@yahoo.com', '2011-02-03', 177443, '2011-05-02', 690610.00, 'A'), +(1752, 3, 'DE SOLA SOLVAS JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-10-02', 843700.00, 'A'), +(1753, 3, 'GARCIA ALCALA DIAZ REGANON EVA MARIA', 191821112, 'CRA 25 CALLE 100', '398@yahoo.com', '2011-02-03', 118777, '2010-03-15', 146680.00, 'A'), +(1754, 3, 'BIELA VILIAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2011-08-16', 202290.00, 'A'), +(1755, 3, 'GUIOT CANO JUAN PATRICK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 232263, '2011-05-23', 571390.00, 'A'), +(1756, 3, 'JIMENEZ DIAZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-03-27', 250100.00, 'A'), +(1757, 3, 'FOX ELEANORE MAE', 191821112, 'CRA 25 CALLE 100', '117@yahoo.com', '2011-02-03', 190393, '2011-05-04', 536340.00, 'A'), +(1758, 3, 'TANG VAN SON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-05-07', 931400.00, 'A'), +(1759, 3, 'SUTTON PETER RONALD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 281673, '2011-06-01', 47960.00, 'A'), +(176, 1, 'GOMEZ IVAN', 191821112, 'CRA 25 CALLE 100', '438@yahoo.com.mx', '2011-02-03', 127591, '2008-04-09', 952310.00, 'A'), +(1762, 3, 'STOODY MATTHEW FRANCIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-21', 84320.00, 'A'), +(1763, 3, 'SEIX MASO ARNAU', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150699, '2011-05-24', 168880.00, 'A'), +(1764, 3, 'FERNANDEZ REDEL RAQUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-09-14', 591440.00, 'A'), +(1765, 3, 'PORCAR DESCALS VICENNTE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 176745, '2011-04-24', 450580.00, 'A'), +(1766, 3, 'PEREZ DE VILLEGAS TRILLO FIGUEROA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-05-17', 478560.00, 'A'), +('CELL4198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1767, 3, 'CELDRAN DEGANO ANGEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 196234, '2011-05-17', 41040.00, 'A'), +(1768, 3, 'TERRAGO MARI FERRAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-09-30', 769550.00, 'A'), +(1769, 3, 'SZUCHOVSZKY GERGELY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 250256, '2011-05-23', 724630.00, 'A'), +(177, 1, 'SEBASTIAN TORO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127443, '2011-07-14', 74270.00, 'A'), +(1771, 3, 'TORIBIO JOSE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 226612, '2011-09-04', 398570.00, 'A'), +(1772, 3, 'JOSE LUIS BAQUERA PEIRONCELLY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2010-10-19', 49360.00, 'A'), +(1773, 3, 'MADARIAGA VILLANUEVA MIGUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 188640, '2011-04-12', 51090.00, 'A'), +(1774, 3, 'VILLENA BORREGO ANTONIO', 191821112, 'CRA 25 CALLE 100', '830@terra.com.co', '2011-02-03', 188640, '2011-07-19', 107400.00, 'A'), +(1776, 3, 'VILAR VILLALBA JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 180124, '2011-09-20', 596330.00, 'A'), +(1777, 3, 'CAGIGAL ORTIZ MACARENA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 214283, '2011-09-14', 830530.00, 'A'), +(1778, 3, 'KORBA ATTILA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 250256, '2011-09-27', 363650.00, 'A'), +(1779, 3, 'KORBA-ELIAS BARBARA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 250256, '2011-09-27', 326670.00, 'A'), +(178, 1, 'AMSILI COHEN HANAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-08-29', 514450.00, 'A'), +(1780, 3, 'PINDADO GOMEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 189053, '2011-04-26', 542400.00, 'A'), +(1781, 3, 'IBARRONDO GOMEZ GRACIA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 188640, '2011-09-21', 731990.00, 'A'), +(1782, 3, 'MUNGUIRA GONZALEZ JUAN JULIAN', 191821112, 'CRA 25 CALLE 100', '54@hotmail.es', '2011-02-03', 188640, '2011-09-06', 32730.00, 'A'), +(1784, 3, 'LANDMAN PIETER MARINUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 294861, '2011-09-22', 740260.00, 'A'), +(1789, 3, 'SUAREZ AINARA ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-05-17', 503470.00, 'A'), +(179, 1, 'CARO JUNCO GUIOVANNY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-03', 349420.00, 'A'), +(1790, 3, 'MARTINEZ CHACON JOSE JOAQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-05-20', 592220.00, 'A'), +(1792, 3, 'MENDEZ DEL RION LUCIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 120639, '2011-06-16', 476910.00, 'A'), +(1793, 3, 'VERHULST LAMBERTUS CORNELIA FRANCISCUS ALPHONSUS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 295420, '2011-07-04', 32410.00, 'A'), +(1794, 3, 'YANEZ YAGUE JESUS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-07-10', 731290.00, 'A'), +(1796, 3, 'GOMEZ ZORRILLA AMATE JOSE MARIOA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-07-12', 602380.00, 'A'), +(1797, 3, 'LAIZ MORENO ENEKO', 191821112, 'CRA 25 CALLE 100', '219@gmail.com', '2011-02-03', 127591, '2011-08-05', 334150.00, 'A'), +(1798, 3, 'MORODO RUIZ RUBEN DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-09-14', 863620.00, 'A'), +(18, 1, 'GARZON VARGAS GUILLERMO FEDERICO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-29', 879110.00, 'A'), +(1800, 3, 'ALFARO FAUS MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-09-14', 987410.00, 'A'), +(1801, 3, 'MORRALLA VALLVERDU ENRIC', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 194601, '2011-07-18', 990070.00, 'A'), +(1802, 3, 'BALBASTRE TEJEDOR JUAN VICENTE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 182860, '2011-08-24', 988120.00, 'A'), +(1803, 3, 'MINGO REIZ FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2010-03-24', 970400.00, 'A'), +(1804, 3, 'IRURETA FERNANDEZ JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 214283, '2011-09-10', 887630.00, 'A'), +(1807, 3, 'NEBRO MELLADO JOSE JUAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 168996, '2011-08-15', 278540.00, 'A'), +(1808, 3, 'ALBERQUILLA OJEDA JOSE DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 188640, '2011-09-27', 477070.00, 'A'), +(1809, 3, 'BUENDIA NORTE MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 131401, '2011-07-08', 549720.00, 'A'), +(181, 1, 'CASTELLANOS FLORES RODRIGO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-18', 970470.00, 'A'), +(1811, 3, 'HILBERT ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-08', 937830.00, 'A'), +(1812, 3, 'GONZALES PINTO COTERILLO ADOLFO LORENZO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 214283, '2011-09-10', 736970.00, 'A'), +(1813, 3, 'ARQUES ALVAREZ JOSE RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-04-04', 871360.00, 'A'), +(1817, 3, 'CLAUSELL LOW ROBERTO EMILIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2011-09-28', 348770.00, 'A'), +(1818, 3, 'BELICHON MARTINEZ JESUS ALVARO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-04-12', 327010.00, 'A'), +(182, 1, 'GUZMAN NIETO JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-20', 241130.00, 'A'), +(1821, 3, 'LINATI DE PUIG JORGE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 196234, '2011-05-18', 47210.00, 'A'), +(1823, 3, 'SINBARRERA ROMA ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196234, '2011-09-08', 598380.00, 'A'), +(1826, 2, 'JUANES GARATE BRUNO ', 191821112, 'CRA 25 CALLE 100', '301@gmail.com', '2011-02-03', 118777, '2011-08-21', 877650.00, 'A'), +(1827, 3, 'BOLOS GIMENO ROGELIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 200247, '2010-11-28', 555470.00, 'A'), +(1828, 3, 'ZABALA ASTIGARRAGA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 188640, '2011-09-20', 144410.00, 'A'), +(1831, 3, 'MAPELLI CAFFARENA BORJA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 172381, '2011-09-04', 58200.00, 'A'), +(1833, 3, 'LARMONIE LESLIE MARTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-30', 604840.00, 'A'), +(1834, 3, 'WILLEMS ROBERT-JAN MICHAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 288531, '2011-09-05', 756530.00, 'A'), +(1835, 3, 'ANJEMA LAURENS JAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-08-29', 968140.00, 'A'), +(1836, 3, 'VERHULST HENRICUS LAMBERTUS MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 295420, '2011-04-03', 571100.00, 'A'), +(1837, 3, 'PIERROT JOZEF MARIE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 288733, '2011-05-18', 951100.00, 'A'), +(1838, 3, 'EIKELBOOM HIDDE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 42210.00, 'A'), +(1839, 3, 'TAMBINI GOMEZ DE MUNG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 180063, '2011-04-24', 357740.00, 'A'), +(1840, 3, 'MAGANA PEREZ GERARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-09-28', 662060.00, 'A'), +(1841, 3, 'COURTOISIE BEYHAUT RAFAEL JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116366, '2011-09-05', 237070.00, 'A'), +(1842, 3, 'ROJAS BENJAMIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-13', 199170.00, 'A'), +(1843, 3, 'GARCIA VICENTE EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 150699, '2011-08-10', 284650.00, 'A'), +('CELL4291', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(1844, 3, 'CESTTI LOPEZ RAFAEL GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 144215, '2011-09-27', 825750.00, 'A'), +(1845, 3, 'URTECHO LOPEZ ARMANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 139272, '2011-09-28', 274800.00, 'A'), +(1846, 3, 'SEGURA ESPINOZA ARMANDO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 135360, '2011-09-28', 896730.00, 'A'), +(1847, 3, 'GONZALEZ VEGA LUIS PASTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 135360, '2011-05-18', 659240.00, 'A'), +(185, 1, 'AYALA CARDENAS NELSON MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 855960.00, 'A'), +(1850, 3, 'ROTZINGER ROA KLAUS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 116366, '2011-09-12', 444250.00, 'A'), +(1851, 3, 'FRANCO DE LEON SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116366, '2011-04-26', 63840.00, 'A'), +(1852, 3, 'RIVAS GAGNONI LUIS ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 135360, '2011-05-18', 986440.00, 'A'), +(1853, 3, 'BARRETO VELASQUEZ JOEL FERNANDO', 191821112, 'CRA 25 CALLE 100', '104@hotmail.es', '2011-02-03', 116511, '2011-04-27', 740670.00, 'A'), +(1854, 3, 'SEVILLA AMAYA ORLANDO', 191821112, 'CRA 25 CALLE 100', '264@yahoo.com', '2011-02-03', 136995, '2011-05-18', 744020.00, 'A'), +(1855, 3, 'VALFRE BRALICH ELEONORA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116366, '2011-06-06', 498080.00, 'A'), +(1857, 3, 'URDANETA DIAMANTES DIEGO ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-09-23', 797590.00, 'A'), +(1858, 3, 'RAMIREZ ALVARADO ROBERT JESUS', 191821112, 'CRA 25 CALLE 100', '290@yahoo.com.mx', '2011-02-03', 127591, '2011-09-18', 212850.00, 'A'), +(1859, 3, 'GUTTNER DENNIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-25', 671470.00, 'A'), +(186, 1, 'CARRASCO SUESCUN ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-15', 36620.00, 'A'), +(1861, 3, 'HEGEMANN JOACHIM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-25', 579710.00, 'A'), +(1862, 3, 'MALCHER INGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 292243, '2011-06-23', 742060.00, 'A'), +(1864, 3, 'HOFFMEISTER MALTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128206, '2011-09-06', 629770.00, 'A'), +(1865, 3, 'BOHME ALEXANDRA LUCE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-14', 235260.00, 'A'), +(1866, 3, 'HAMMAN FRANK THOMAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-13', 286980.00, 'A'), +(1867, 3, 'GOPPERT MARKUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-09-05', 729150.00, 'A'), +(1868, 3, 'BISCARO CAROLINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-16', 784790.00, 'A'), +(1869, 3, 'MASCHAT SEBASTIAN STEPHAN ANDREAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-02-03', 736520.00, 'A'), +(1870, 3, 'WALTHER DANIEL CLAUS PETER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-24', 328220.00, 'A'), +(1871, 3, 'NENTWIG DANIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 289697, '2011-02-03', 431550.00, 'A'), +(1872, 3, 'KARUTZ ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127662, '2011-03-17', 173090.00, 'A'), +(1875, 3, 'KAY KUNNE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 289697, '2011-03-18', 961400.00, 'A'), +(1876, 2, 'SCHLUMPF IVANA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 245206, '2011-03-28', 802690.00, 'A'), +(1877, 3, 'RODRIGUEZ BUSTILLO CONSUELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 139067, '2011-03-21', 129280.00, 'A'), +(1878, 1, 'REHWALDT RICHARD ULRICH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289697, '2009-10-25', 238320.00, 'A'), +(1880, 3, 'FONSECA BEHRENS MANUELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-18', 303810.00, 'A'), +(1881, 3, 'VOGEL MIRKO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-09', 107790.00, 'A'), +(1882, 3, 'WU WEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 289697, '2011-03-04', 627520.00, 'A'), +(1884, 3, 'KADOLSKY ANKE SIGRID', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 289697, '2010-10-07', 188560.00, 'A'), +(1885, 3, 'PFLUCKER PLENGE CARLOS HERNAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 239124, '2011-08-15', 500140.00, 'A'), +(1886, 3, 'PENA LAGOS MELENIA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 935020.00, 'A'), +(1887, 3, 'CALVANO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-05-02', 174690.00, 'A'), +(1888, 3, 'KUHLEN LOTHAR WILHELM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 289232, '2011-08-30', 68390.00, 'A'), +(1889, 3, 'QUIJANO RICO SOFIA VICTORIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 221939, '2011-06-13', 817890.00, 'A'), +(189, 1, 'GOMEZ TRUJILLO SERGIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-17', 985980.00, 'A'), +(1890, 3, 'SCHILBERZ KARIN', 191821112, 'CRA 25 CALLE 100', '405@facebook.com', '2011-02-03', 287570, '2011-06-23', 884260.00, 'A'), +(1891, 3, 'SCHILBERZ SOPHIE CAHRLOTTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 287570, '2011-06-23', 967640.00, 'A'), +(1892, 3, 'MOLINA MOLINA MILAGRO DE SUYAPA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 139844, '2011-07-26', 185410.00, 'A'), +(1893, 3, 'BARRIENTOS ESCALANTE RAFAEL ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 139067, '2011-05-18', 24110.00, 'A'), +(1895, 3, 'ENGELS FRANZBERNARD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 292243, '2011-07-01', 749430.00, 'A'), +(1896, 3, 'FRIEDHOFF SVEN WILHEM', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 289697, '2010-10-31', 54090.00, 'A'), +(1897, 3, 'BARTELS CHRISTIAN JOHAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-07-25', 22160.00, 'A'), +(1898, 3, 'NILS REMMEL', 191821112, 'CRA 25 CALLE 100', '214@gmail.com', '2011-02-03', 256231, '2011-08-05', 948530.00, 'A'), +(1899, 3, 'DR SCHEIBE MATTHIAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 252431, '2011-09-26', 676150.00, 'A'), +(19, 1, 'RIANO ROMERO ALBERTO ELIAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-12-14', 946630.00, 'A'), +(190, 1, 'LLOREDA ORTIZ FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-12-20', 30860.00, 'A'), +(1900, 3, 'CARRASCO CATERIANO PEDRO', 191821112, 'CRA 25 CALLE 100', '255@hotmail.com', '2011-02-03', 286578, '2011-05-02', 535180.00, 'A'), +(1901, 3, 'ROSENBER DIRK PETER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-29', 647450.00, 'A'), +(1902, 3, 'LAUBACH JOHANNES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289697, '2011-05-01', 631720.00, 'A'), +(1904, 3, 'GRUND STEFAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 256231, '2011-08-05', 185990.00, 'A'), +(1905, 3, 'GRUND BEATE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 256231, '2011-08-05', 281280.00, 'A'), +(1906, 3, 'CORZO PAULA MIRIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 180063, '2011-08-02', 848400.00, 'A'), +(1907, 3, 'OESTERHAUS CORNELIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 256231, '2011-03-16', 398170.00, 'A'), +(1908, 1, 'JUAN SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-05-12', 445660.00, 'A'), +(1909, 3, 'VAN ZIJL CHRISTIAN ANDREAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 286785, '2011-09-24', 33800.00, 'A'), +(191, 1, 'CASTANEDA CABALLERO JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-28', 196370.00, 'A'), +(1910, 3, 'LORZA RUIZ MYRIAM ESPERANZA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-29', 831990.00, 'A'), +(192, 1, 'ZEA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-09', 889270.00, 'A'), +(193, 1, 'VELEZ VICTOR MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-22', 857250.00, 'A'), +(194, 1, 'ARCINIEGAS GOMEZ ISMAEL', 191821112, 'CRA 25 CALLE 100', '937@hotmail.com', '2011-02-03', 127591, '2011-05-18', 618450.00, 'A'), +(195, 1, 'LINAREZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-12', 520470.00, 'A'), +(1952, 3, 'BERND ERNST HEINZ SCHUNEMANN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 255673, '2011-09-04', 796820.00, 'A'), +(1953, 3, 'BUCHNER RICHARD ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-17', 808430.00, 'A'), +(1954, 3, 'CHO YONG BEOM', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 173192, '2011-02-07', 651670.00, 'A'), +(1955, 3, 'BERNECKER WALTER LUDWIG', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 256231, '2011-04-03', 833080.00, 'A'), +(1956, 3, 'SCHIERENBECK THOMAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 256231, '2011-05-03', 210380.00, 'A'), +(1957, 3, 'STEGMANN WOLF DIETER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-08-27', 552650.00, 'A'), +(1958, 3, 'LEBAGE GONZALEZ VALENTINA CECILIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 131272, '2011-07-29', 132130.00, 'A'), +(1959, 3, 'CABRERA MACCHI JOSE ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 180063, '2011-08-02', 2700.00, 'A'), +(196, 1, 'OTERO BERNAL ALVARO ERNESTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-04-29', 747030.00, 'A'), +(1960, 3, 'KOO BONKI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-15', 617110.00, 'A'), +(1961, 3, 'JODJAHN DE CARVALHO BEIRAL FLAVIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-07-05', 77460.00, 'A'), +(1963, 3, 'VIEIRA ROCHA MARQUES ELIANE TEREZINHA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118402, '2011-09-13', 447430.00, 'A'), +(1965, 3, 'KELLEN CRISTINA GATTI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126180, '2011-07-01', 804020.00, 'A'), +(1966, 3, 'CHAVEZ MARLON TENORIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-25', 132310.00, 'A'), +(1967, 3, 'SERGIO COZZI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 125750, '2011-08-28', 249500.00, 'A'), +(1968, 3, 'REZENDE LIMA JOSE MARCIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-08-23', 850570.00, 'A'), +(1969, 3, 'RAMOS PEDRO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118942, '2011-08-03', 504330.00, 'A'), +(1972, 3, 'ADAMS THOMAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2011-08-11', 774000.00, 'A'), +(1973, 3, 'WALESKA NUCINI BOGO ANDREA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-23', 859690.00, 'A'), +(1974, 3, 'GERMANO PAULO BUNN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118439, '2011-08-30', 976440.00, 'A'), +(1975, 3, 'CALDEIRA FILHO RUBENS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118942, '2011-07-18', 303120.00, 'A'), +(1976, 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 119814, '2011-09-08', 586290.00, 'A'), +(1977, 3, 'GAMAS MARIA CRISTINA ALVES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-09-19', 22070.00, 'A'), +(1979, 3, 'PORTO WEBER FERREIRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-07', 691340.00, 'A'), +(1980, 3, 'FONSECA LAURO PINTO', 191821112, 'CRA 25 CALLE 100', '104@hotmail.es', '2011-02-03', 127591, '2011-08-16', 402140.00, 'A'), +(1981, 3, 'DUARTE ELENA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-06-15', 936710.00, 'A'), +(1983, 3, 'CECHINEL CRISTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118942, '2011-06-12', 575530.00, 'A'), +(1984, 3, 'BATISTA PINHERO JOAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-04-25', 446250.00, 'A'), +(1987, 1, 'ISRAEL JOSE MAXWELL', 191821112, 'CRA 25 CALLE 100', '936@gmail.com', '2011-02-03', 125894, '2011-07-04', 408350.00, 'A'), +(1988, 3, 'BATISTA CARVALHO RODRIGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118864, '2011-09-19', 488410.00, 'A'), +(1989, 3, 'RENO DA SILVEIRA EDNEIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118867, '2011-05-03', 216990.00, 'A'), +(199, 1, 'BASTO CORREA FERNANDO ANTONIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-21', 616860.00, 'A'), +(1990, 3, 'SEIDLER KOHNERT G TEIXEIRA CHRISTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 119814, '2011-08-23', 619730.00, 'A'), +(1992, 3, 'GUIMARAES COSTA LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-04-20', 379090.00, 'A'), +(1993, 3, 'BOTTA RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2011-09-16', 552510.00, 'A'), +(1994, 3, 'ARAUJO DA SILVA MARCELO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 125666, '2011-08-03', 625260.00, 'A'), +(1995, 3, 'DA SILVA FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118864, '2011-04-14', 468760.00, 'A'), +(1996, 3, 'MANFIO RODRIGUEZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '974@yahoo.com', '2011-02-03', 118777, '2011-03-23', 468040.00, 'A'), +(1997, 3, 'NEIVA MORENO DE SOUZA CRISTIANE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-24', 933900.00, 'A'), +(2, 3, 'CHEEVER MICHAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-04', 560090.00, 'I'), +(2000, 3, 'ROCHA GUSTAVO ADRIANO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118288, '2011-07-25', 830340.00, 'A'), +(2001, 3, 'DE ANDRADE CARVALHO VIRGINIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-08-11', 575760.00, 'A'), +(2002, 3, 'CAVALCANTI PIERECK GUILHERME', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 180063, '2011-08-01', 387770.00, 'A'), +(2004, 3, 'HOEGEMANN RAMOS CARLOS FERNANDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-04', 894550.00, 'A'), +(201, 1, 'LUIS FERNANDO AREVALO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-17', 156730.00, 'A'), +(2010, 3, 'GOMES BUCHALA JORGE FERNANDO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-23', 314800.00, 'A'), +(2011, 3, 'MARTINS SIMAIKA CATIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-06-01', 155020.00, 'A'), +(2012, 3, 'MONICA CASECA BUENO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-05-16', 830710.00, 'A'), +(2013, 3, 'ALBERTAL MARCELO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118000, '2010-09-10', 688480.00, 'A'), +(2015, 3, 'GOMES CANTARELLI JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118761, '2011-01-11', 685940.00, 'A'), +(2016, 3, 'CADETTI GARBELLINI ENILICE CRISTINA ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-11', 578870.00, 'A'), +(2017, 3, 'SPIELKAMP KLAUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 150699, '2011-03-28', 836540.00, 'A'), +(2019, 3, 'GARES HENRI PHILIPPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 135190, '2011-04-05', 720730.00, 'A'), +('CELL4308', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(202, 1, 'LUCIO CHAUSTRE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-19', 179240.00, 'A'), +(2023, 3, 'GRECO DE RESENDELUIZ ALFREDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 119814, '2011-04-25', 647940.00, 'A'), +(2024, 3, 'CORTINA EVANDRO JOAO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118922, '2011-05-12', 153970.00, 'A'), +(2026, 3, 'BASQUES MOURA GERALDO CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 119814, '2011-09-07', 668250.00, 'A'), +(2027, 3, 'DA SILVA VALDECIR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 863150.00, 'A'), +(2028, 3, 'CHI MOW YUNG IVAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-21', 311000.00, 'A'), +(2029, 3, 'YUNG MYRA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-21', 965570.00, 'A'), +(2030, 3, 'MARTINS RAMALHO PATRICIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-03-23', 894830.00, 'A'), +(2031, 3, 'DE LEMOS RIBEIRO GILBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118951, '2011-07-29', 577430.00, 'A'), +(2032, 3, 'AIROLDI CLAUDIO', 191821112, 'CRA 25 CALLE 100', '973@terra.com.co', '2011-02-03', 127591, '2011-09-28', 202650.00, 'A'), +(2033, 3, 'ARRUDA MENDES HEILMANN IONE TEREZA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 120773, '2011-09-07', 280990.00, 'A'), +(2034, 3, 'TAVARES DE CARVALHO EDUARDO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118942, '2011-08-03', 796980.00, 'A'), +(2036, 3, 'FERNANDES ALARCON RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-08-28', 318730.00, 'A'), +(2037, 3, 'SUCHODOLKI SERGIO GUSMAO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 190393, '2011-07-13', 167870.00, 'A'), +(2039, 3, 'ESTEVES MARCAL MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-02-24', 912100.00, 'A'), +(2040, 3, 'CORSI LUIZ ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-03-25', 911080.00, 'A'), +(2041, 3, 'LOPEZ MONICA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118795, '2011-05-03', 819090.00, 'A'), +(2042, 3, 'QUINTANILHA LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-16', 362230.00, 'A'), +(2043, 3, 'DE CARLI BRUNO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-05-03', 353890.00, 'A'), +(2045, 3, 'MARINO FRANCA MARILIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-07-04', 352060.00, 'A'), +(2048, 3, 'VOIGT ALPHONSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118439, '2010-11-22', 384150.00, 'A'), +(2049, 3, 'ALENCAR ARIMA TATIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-05-23', 408590.00, 'A'), +(2050, 3, 'LINIS DE ALMEIDA NEILSON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 125666, '2011-08-03', 890480.00, 'A'), +(2051, 3, 'PINHEIRO DE CASTRO BENETI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-08-09', 226640.00, 'A'), +(2052, 3, 'ALVES DO LAGO HELMANN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118942, '2011-08-01', 461770.00, 'A'), +(2053, 3, 'OLIVO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-22', 628900.00, 'A'), +(2054, 3, 'WILLIAM DOMINGUES SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118085, '2011-08-23', 759220.00, 'A'), +(2055, 3, 'DE SOUZA MENEZES KLEBER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-04-25', 909400.00, 'A'), +(2056, 3, 'CABRAL NEIDE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-16', 269340.00, 'A'), +(2057, 3, 'RODRIGUES RENATO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-06-15', 618500.00, 'A'), +(2058, 3, 'SPADALE PEDRO JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-08-03', 284490.00, 'A'), +(2059, 3, 'MARTINS DE ALMEIDA GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-09-28', 566920.00, 'A'), +(206, 1, 'TORRES HEBER MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-01-29', 643210.00, 'A'), +(2060, 3, 'IKUNO CELINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-06-08', 981170.00, 'A'), +(2061, 3, 'DAL BELLO FABIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 129499, '2011-08-20', 205050.00, 'A'), +(2062, 3, 'BENATES ADRIANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-23', 81770.00, 'A'), +(2063, 3, 'CARDOSO ALEXANDRE ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 793690.00, 'A'), +(2064, 3, 'ZANIOLO DE SOUZA CARLOS HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-09-19', 723130.00, 'A'), +(2065, 3, 'DA SILVA LUIZ SIDNEI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-03-30', 234590.00, 'A'), +(2066, 3, 'RUFATO DE SOUZA LUIZ FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-08-29', 3560.00, 'A'), +(2067, 3, 'DE MEDEIROS LUCIANA', 191821112, 'CRA 25 CALLE 100', '994@yahoo.com.mx', '2011-02-03', 118777, '2011-09-10', 314020.00, 'A'), +(2068, 3, 'WOLFF PIAZERA DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118255, '2011-06-15', 559430.00, 'A'), +(2069, 3, 'DA SILVA FORTUNA MARINA CLAUDIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-09-23', 855100.00, 'A'), +(2070, 3, 'PEREIRA BORGES LUCILA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-26', 597210.00, 'A'), +(2072, 3, 'PORROZZI DE ALMEIDA RENATO', 191821112, 'CRA 25 CALLE 100', '812@hotmail.es', '2011-02-03', 127591, '2011-06-13', 312120.00, 'A'), +(2073, 3, 'KALICHSZTEINN RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-03-23', 298330.00, 'A'), +(2074, 3, 'OCCHIALINI GUIMARAES ANA PAULA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2011-08-03', 555310.00, 'A'), +(2075, 3, 'MAZZUCO FONTES LUIZ ROBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-05-23', 881570.00, 'A'), +(2078, 3, 'TRAN DINH VAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 98560.00, 'A'), +(2079, 3, 'NGUYEN THI LE YEN', 191821112, 'CRA 25 CALLE 100', '249@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 298200.00, 'A'), +(208, 1, 'GOMEZ GONZALEZ JORGE MARIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-12', 889010.00, 'A'), +(2080, 3, 'MILA DE LA ROCA JOHANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-01-26', 195350.00, 'A'), +(2081, 3, 'RODRIGUEZ DE FLORES LOURDES MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-16', 82120.00, 'A'), +(2082, 3, 'FLORES PEREZ FRANCISCO GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-23', 824550.00, 'A'), +(2083, 3, 'FRAGACHAN BETANCOUT FRANCISCO JO SE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-07-04', 876400.00, 'A'), +(2084, 3, 'GAFARO MOLINA CARLOS JULIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-22', 908370.00, 'A'), +(2085, 3, 'CACERES REYES JORGEANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-08-11', 912630.00, 'A'), +(2086, 3, 'ALVAREZ RODRIGUEZ VICTOR ROGELIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2011-05-23', 838040.00, 'A'), +(2087, 3, 'GARCES ALVARADO JHAGEIMA JOSEFINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-04-29', 452320.00, 'A'), +('CELL4324', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(2089, 3, 'FAVREAU CHOLLET JEAN PIERRE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132554, '2011-05-27', 380470.00, 'A'), +(209, 1, 'CRUZ RODRIGEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '316@hotmail.es', '2011-02-03', 127591, '2011-06-28', 953870.00, 'A'), +(2090, 3, 'GARAY LLUCH URBI ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-03-13', 659870.00, 'A'), +(2091, 3, 'LETICIA LETICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-07', 157950.00, 'A'), +(2092, 3, 'VELASQUEZ RODULFO RAMON ARISTIDES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-23', 810140.00, 'A'), +(2093, 3, 'PEREZ EDGAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-06', 576850.00, 'A'), +(2094, 3, 'PEREZ MARIELA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-07', 453840.00, 'A'), +(2095, 3, 'PETRUZZI MANGIARANO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132958, '2011-03-27', 538650.00, 'A'), +(2096, 3, 'LINARES GORI RICARDO RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-12', 331730.00, 'A'), +(2097, 3, 'LAIRET OLIVEROS CAROLINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-25', 42680.00, 'A'), +(2099, 3, 'JIMENEZ GARCIA FERNANDO JOSE', 191821112, 'CRA 25 CALLE 100', '78@hotmail.es', '2011-02-03', 132958, '2011-07-21', 963110.00, 'A'), +(21, 1, 'RUBIO ESCOBAR RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-05-21', 639240.00, 'A'), +(2100, 3, 'ZABALA MILAGROS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-20', 160860.00, 'A'), +(2101, 3, 'VASQUEZ CRUZ NICOLEDANIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-07-31', 914990.00, 'A'), +(2102, 3, 'REYES FIGUERA RAMON ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 126674, '2011-04-03', 92340.00, 'A'), +(2104, 3, 'RAMIREZ JIMENEZ MARYLIN CAROLINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2011-06-14', 306760.00, 'A'), +(2105, 3, 'TELLES GUILLEN INNA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-09-07', 383520.00, 'A'), +(2106, 3, 'ALVAREZ CARMEN MARINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-07-20', 997340.00, 'A'), +(2107, 3, 'MARTINEZ YRIGOYEN NABUCODONOSOR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-07-21', 836110.00, 'A'), +(2108, 5, 'FERNANDEZ RUIZ IGNACIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-01', 188530.00, 'A'), +(211, 1, 'RIVEROS GARCIA JORGE IVAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-01', 650050.00, 'A'), +(2110, 3, 'CACERES REYES JORGE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-08-08', 606030.00, 'A'), +(2111, 3, 'GELFI MARCOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 199862, '2011-05-17', 727190.00, 'A'), +(2112, 3, 'CERDA CASTILLO CARMEN GLORIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', 817870.00, 'A'), +(2113, 3, 'RANGEL FERNANDEZ LEONARDO JOSE', 191821112, 'CRA 25 CALLE 100', '856@hotmail.com', '2011-02-03', 133211, '2011-05-16', 907750.00, 'A'), +(2114, 3, 'ROTHSCHILD VARGAS MICHAEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-02-05', 85170.00, 'A'), +(2115, 3, 'RUIZ GRATEROL INGRID JOHANNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132958, '2011-05-16', 702600.00, 'A'), +(2116, 2, 'DEARMAS ALBERTO FERNANDO ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-07-19', 257500.00, 'A'), +(2117, 3, 'BOSCAN ARRIETA ERICK HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-07-12', 179680.00, 'A'), +(2118, 3, 'GUILLEN DE TELLES NENCY JOSEFINA', 191821112, 'CRA 25 CALLE 100', '56@facebook.com', '2011-02-03', 132958, '2011-09-07', 125900.00, 'A'), +(212, 1, 'BUSTAMANTE BUSTAMANTE CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-26', 943260.00, 'A'), +(2120, 2, 'MARK ANTHONY STUART', 191821112, 'CRA 25 CALLE 100', '661@terra.com.co', '2011-02-03', 127591, '2011-06-26', 74600.00, 'A'), +(2122, 3, 'SCOCOZZA GIOVANNA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 190526, '2011-09-23', 284220.00, 'A'), +(2125, 3, 'CHAVES MOLINA JULIO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132165, '2011-09-22', 295360.00, 'A'), +(2127, 3, 'BERNARDES DE SOUZA TONIATI VIRGINIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-30', 565090.00, 'A'), +(2129, 2, 'BRIAN DAVIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 78460.00, 'A'), +(213, 1, 'PAREJO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-11', 766120.00, 'A'), +(2131, 3, 'DE OLIVEIRA LOPES REGINALDO LAZARO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-05', 404910.00, 'A'), +(2132, 3, 'DE MELO MING AZEVEDO PAULO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-10-05', 440370.00, 'A'), +(2137, 3, 'SILVA JORGE ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-05', 230570.00, 'A'), +(214, 1, 'CADENA RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-08', 840.00, 'A'), +(2142, 3, 'VIEIRA VEIGA PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-30', 85330.00, 'A'), +(2144, 3, 'ESCRIBANO LEONARDA DEL VALLE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-03-24', 941440.00, 'A'), +(2145, 3, 'RODRIGUEZ MENENDEZ BERNARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 148511, '2011-08-02', 588740.00, 'A'), +(2146, 3, 'GONZALEZ COURET DANIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 148511, '2011-08-09', 119380.00, 'A'), +(2147, 3, 'GARCIA SOTO WILLIAM', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 135360, '2011-05-18', 830660.00, 'A'), +(2148, 3, 'MENESES ORELLANA RICARDO TOMAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132165, '2011-06-13', 795200.00, 'A'), +(2149, 3, 'GUEVARA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-27', 483990.00, 'A'), +(215, 1, 'BELTRAN PINZON JUAN CARLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-08', 705860.00, 'A'), +(2151, 2, 'LLANES GARRIDO JAVIER ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-30', 719750.00, 'A'), +(2152, 3, 'CHAVARRIA CHAVES RAFAEL ADRIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132165, '2011-09-20', 495720.00, 'A'), +(2153, 2, 'MILBERT ANDREASPETER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-10', 319370.00, 'A'), +(2154, 2, 'GOMEZ SILVA LOZANO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127300, '2011-05-30', 109670.00, 'A'), +(2156, 3, 'WINTON ROBERT DOUGLAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 115551, '2011-08-08', 622290.00, 'A'), +(2157, 2, 'ROMERO PINA MANUEL GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-05-05', 340650.00, 'A'), +(2158, 3, 'KARWALSKI MATTHEW REECE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117229, '2011-08-29', 836380.00, 'A'), +(2159, 2, 'KIM JUNG SIK ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-08', 159950.00, 'A'), +(216, 1, 'MARTINEZ VALBUENA JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 526750.00, 'A'), +(2160, 3, 'AGAR ROBERT ALEXANDER', 191821112, 'CRA 25 CALLE 100', '81@hotmail.es', '2011-02-03', 116862, '2011-06-11', 290620.00, 'A'), +(2161, 3, 'IGLESIAS EDGAR ALEXIS', 191821112, 'CRA 25 CALLE 100', '645@facebook.com', '2011-02-03', 131272, '2011-04-04', 973240.00, 'A'), +(2163, 2, 'NOAIN MORENO CECILIA KARIM ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-22', 51950.00, 'A'), +(2164, 2, 'FIGUEROA HEBEL ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-26', 276760.00, 'A'), +(2166, 5, 'FRANDBERG DAN RICHARD VERNER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 134022, '2011-04-06', 309480.00, 'A'), +(2168, 2, 'CONTRERAS LILLO EDUARDO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-27', 389320.00, 'A'), +(2169, 2, 'BLANCO VALLE RICARDO ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-07-13', 355950.00, 'A'), +(2171, 2, 'BELTRAN ZAVALA JIMI ALFONSO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126674, '2011-08-22', 991000.00, 'A'), +(2172, 2, 'RAMIRO OREGUI JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-04-27', 119700.00, 'A'), +(2175, 2, 'FENG PUYO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 302172, '2011-10-07', 965660.00, 'A'), +(2176, 3, 'CLERICI GUIDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 116366, '2011-08-30', 522970.00, 'A'), +(2177, 1, 'SEIJAS GUNTER LUIS MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-02', 717890.00, 'A'), +(2178, 2, 'SHOSHANI MOSHE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-13', 20520.00, 'A'), +(218, 3, 'HUCHICHALEO ARSENDIGA FRANCISCA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-05', 690.00, 'A'), +(2181, 2, 'DOMINGO BARTOLOME LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', '173@terra.com.co', '2011-02-03', 127591, '2011-04-18', 569030.00, 'A'), +(2182, 3, 'GONZALEZ RIJO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-10-02', 795610.00, 'A'), +(2183, 2, 'ANDROVICH MORENO LIZETH LILIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127300, '2011-10-10', 270970.00, 'A'), +(2184, 2, 'ARREAZA LUGO JESUS ALFREDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', 968030.00, 'A'), +(2185, 2, 'NAVEDA CANELON KATHERINE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132775, '2011-09-14', 27250.00, 'A'), +(2189, 2, 'LUGO BEHRENS DENISE SOFIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-08', 253980.00, 'A'), +(2190, 2, 'ERICA ROSE MOLDENHAUVER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-25', 175480.00, 'A'), +(2192, 2, 'SOLORZANO GARCIA ANDREINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 50790.00, 'A'), +(2193, 3, 'DE LA COSTE MARIA CAROLINA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-26', 907640.00, 'A'), +(2194, 2, 'MARTINEZ DIAZ JUAN JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-08', 385810.00, 'A'), +(2195, 2, 'GALARRAGA ECHEVERRIA DAYEN ALI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-13', 206150.00, 'A'), +(2196, 2, 'GUTIERREZ RAMIREZ HECTOR JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133211, '2011-06-07', 873330.00, 'A'), +(2197, 2, 'LOPEZ GONZALEZ SILVIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127662, '2011-09-01', 748170.00, 'A'), +(2198, 2, 'SEGARES LUTZ JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-07', 120880.00, 'A'), +(2199, 2, 'NADER MARTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127538, '2011-08-12', 359880.00, 'A'), +(22, 1, 'CARDOZO AMAYA JORGE HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-25', 908720.00, 'A'), +(2200, 3, 'NATERA BERMUDEZ OSWALDO JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2010-10-18', 436740.00, 'A'), +(2201, 2, 'COSTA RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 150699, '2011-09-01', 104090.00, 'A'), +(2202, 5, 'GRUNDY VALENZUELA ALAN PATRICK', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-08', 210230.00, 'A'), +(2203, 2, 'MONTENEGRO DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-26', 738890.00, 'A'), +(2204, 2, 'TAMAI BUNGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-24', 63730.00, 'A'), +(2205, 5, 'VINHAS FORTUNA EDSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-09-23', 102010.00, 'A'), +(2206, 2, 'RUIZ ERBS MARIO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-07-19', 318860.00, 'A'), +(2207, 2, 'VENTURA TINEO MARCEL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-08', 288240.00, 'A'), +(2210, 2, 'RAMIREZ GUZMAN RICARDO JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-28', 338740.00, 'A'), +(2211, 2, 'STERNBERG GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2011-09-04', 18070.00, 'A'), +(2212, 2, 'MARTELLO ALEJOS ROGER ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127443, '2011-06-20', 74120.00, 'A'), +(2213, 2, 'CASTANEDA RAFAEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 316410.00, 'A'), +(2214, 2, 'LIMON MARTINEZ WILBERT DE JESUS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128904, '2011-09-19', 359690.00, 'A'), +(2215, 2, 'PEREZ HERNANDEZ MONICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133211, '2011-05-23', 849240.00, 'A'), +(2216, 2, 'AWAD LOBATO RICARDO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '853@hotmail.com', '2011-02-03', 127591, '2011-04-12', 167100.00, 'A'), +(2217, 2, 'CEPEDA VANEGAS ENDER ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-08-22', 287770.00, 'A'), +(2218, 2, 'PEREZ CHIQUIN HECTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 132572, '2011-04-13', 937580.00, 'A'), +(2220, 5, 'FRANCO DELGADILLO RONALD FERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132775, '2011-09-16', 310190.00, 'A'), +(2222, 2, 'ALCAIDE ALONSO JUAN MIGUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-02', 455360.00, 'A'), +(2223, 3, 'BROWNING BENJAMIN MARK', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-09', 45230.00, 'A'), +(2225, 3, 'HARWOO BENJAMIN JOEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 164620.00, 'A'), +(2226, 3, 'HOEY TIMOTHY ROSS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-09', 242910.00, 'A'), +(2227, 3, 'FERGUSON GARRY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-28', 720700.00, 'A'), +(2228, 3, 'NORMAN NEVILLE ROBERT', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 288493, '2011-06-29', 874750.00, 'A'), +(2229, 3, 'KUK HYUN CHAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-03-22', 211660.00, 'A'), +(223, 1, 'PINZON PLAZA MARCOS VINICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 856300.00, 'A'), +(2230, 3, 'SLIPAK NATALIA ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-07-27', 434070.00, 'A'), +(2231, 3, 'BONELLI MASSIMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 170601, '2011-07-11', 535340.00, 'A'), +(2233, 3, 'VUYLSTEKE ALEXANDER ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 284647, '2011-09-11', 266530.00, 'A'), +(2234, 3, 'DRESSE ALAIN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 284272, '2011-04-19', 209100.00, 'A'), +(2235, 3, 'PAIRON JEAN LOUIS MARIE RAIMOND', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 284272, '2011-03-03', 245940.00, 'A'), +(2236, 3, 'DEVIANE ACHIM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 284272, '2010-11-14', 602370.00, 'A'), +(2239, 3, 'DE CANNIERE LOUIS GEORFES HELE MARIE-JOZEF', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 285511, '2011-09-11', 993540.00, 'A'), +(2240, 1, 'ERGO ROBERT', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-28', 278270.00, 'A'), +(2241, 3, 'MYRTES RODRIGUEZ MORGANA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-18', 410740.00, 'A'), +(2242, 3, 'BRECHBUEHL HANSRUDOLF', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 249059, '2011-07-27', 218900.00, 'A'), +(2243, 3, 'IVANA SCHLUMPF', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 245206, '2011-04-08', 862270.00, 'A'), +(2244, 3, 'JESSICA JACCART', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 189512, '2011-08-28', 654640.00, 'A'), +(2246, 3, 'PAUSELLI MARIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 210050, '2011-09-26', 468090.00, 'A'), +(2247, 3, 'VOLONTEIRO RICCARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-04-13', 281230.00, 'A'), +(2248, 3, 'HOFFMANN ALVIR ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 120773, '2011-08-23', 1900.00, 'A'), +(2249, 3, 'MANTOVANI DANIEL FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-08-09', 165820.00, 'A'), +(225, 1, 'DUARTE RUEDA JAVIER ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-29', 293110.00, 'A'), +(2250, 3, 'LIMA DA COSTA BRENO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-03-23', 823370.00, 'A'), +(2251, 3, 'TAMBORIN MACIEL MAGALI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 619420.00, 'A'), +(2252, 3, 'BELLO DE MUORA BIANCA', 191821112, 'CRA 25 CALLE 100', '969@gmail.com', '2011-02-03', 118942, '2011-08-03', 626970.00, 'A'), +(2253, 3, 'VINHAS FORTUNA PIETRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2011-09-23', 276600.00, 'A'), +(2255, 3, 'BLUMENTHAL JAIRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117630, '2011-07-20', 680590.00, 'A'), +(2256, 3, 'DOS REIS FILHO ELPIDIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 120773, '2011-08-07', 896720.00, 'A'), +(2257, 3, 'COIMBRA CARDOSO MUNARI FERNANDA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-09', 441830.00, 'A'), +(2258, 3, 'LAZANHA FLAVIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118942, '2011-06-14', 519000.00, 'A'), +(2259, 3, 'LAZANHA FLAVIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-06-14', 269480.00, 'A'), +(226, 1, 'HUERFANO FLOREZ JOHN FAVER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-29', 148340.00, 'A'), +(2260, 3, 'JOVETTA EDILSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118941, '2011-09-19', 790430.00, 'A'), +(2261, 3, 'DE OLIVEIRA ANDRE RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-07-25', 143680.00, 'A'), +(2263, 3, 'MUNDO TEIXEIRA CARVALHO SILVIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118864, '2011-09-19', 304670.00, 'A'), +(2264, 3, 'FERREIRA CINTRA ADRIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-04-08', 481910.00, 'A'), +(2265, 3, 'AUGUSTO DE OLIVEIRA MARCOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118685, '2011-08-09', 495530.00, 'A'), +(2266, 3, 'CHEN ROBERTO LUIZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-03-15', 31920.00, 'A'), +(2268, 3, 'WROBLESKI DIENSTMANN RAQUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117630, '2011-05-15', 269320.00, 'A'), +(2269, 3, 'MALAGOLA GEDERSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118864, '2011-05-30', 327540.00, 'A'), +(227, 1, 'LOPEZ ESCOBAR CARLOS ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-06', 862360.00, 'A'), +(2271, 3, 'GOMES EVANDRO HENRIQUE', 191821112, 'CRA 25 CALLE 100', '199@hotmail.es', '2011-02-03', 118777, '2011-03-24', 166100.00, 'A'), +(2273, 3, 'LANDEIRA FERNANDEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-21', 207990.00, 'A'), +(2274, 3, 'ROSSI RENATO', 191821112, 'CRA 25 CALLE 100', '791@hotmail.es', '2011-02-03', 118777, '2011-09-19', 16170.00, 'A'), +(2275, 3, 'CALMON RANGEL PATRICIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 456890.00, 'A'), +(2277, 3, 'CIFU NETO ROQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-04-27', 808940.00, 'A'), +(2278, 3, 'GONCALVES PRETO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118942, '2011-07-25', 336930.00, 'A'), +(2279, 3, 'JORGE JUNIOR ROBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118777, '2011-05-09', 257840.00, 'A'), +(2281, 3, 'ELENCIUC DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 118777, '2011-04-20', 618510.00, 'A'), +(2283, 3, 'CUNHA MENDEZ RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 119855, '2011-07-18', 431190.00, 'A'), +(2286, 3, 'DIAZ LENICE APARECIDA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-03', 977840.00, 'A'), +(2288, 3, 'DE CARVALHO SIGEL TATIANA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2011-07-04', 123920.00, 'A'), +(229, 1, 'GALARZA GIRALDO SERGIO ALDEMAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-09-17', 746930.00, 'A'), +(2290, 3, 'ACHOA MORANDI BORGUES SIBELE MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118777, '2011-09-12', 553890.00, 'A'), +(2291, 3, 'EPAMINONDAS DE ALMEIDA DELIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-22', 14080.00, 'A'), +(2293, 3, 'REIS CASTRO SHANA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-08-03', 1430.00, 'A'), +(2294, 3, 'BERNARDES JUNIOR ARMANDO', 191821112, 'CRA 25 CALLE 100', '678@gmail.com', '2011-02-03', 127591, '2011-08-30', 780930.00, 'A'), +(2295, 3, 'LEMOS DE SOUZA AGUIAR SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118777, '2011-10-03', 900370.00, 'A'), +(2296, 3, 'CARVALHO ADAMS KARIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2011-08-11', 159040.00, 'A'), +(2297, 3, 'GALLINA SILVANA BRASILEIRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 94110.00, 'A'), +(23, 1, 'COLMENARES PEDREROS EDUARDO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 625870.00, 'A'), +(2300, 3, 'TAVEIRA DE SIQUEIRA TANIA APARECIDA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-24', 443910.00, 'A'), +(2301, 3, 'DA SIVA LIMA ANDRE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-23', 165020.00, 'A'), +(2302, 3, 'GALVAO GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118942, '2011-09-12', 493370.00, 'A'), +(2303, 3, 'DA COSTA CRUZ GABRIELA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-07-27', 971800.00, 'A'), +(2304, 3, 'BERNHARD GOTTFRIED RABER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-04-30', 378870.00, 'A'), +(2306, 3, 'ALDANA URIBE PABLO AXEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-05-08', 758160.00, 'A'), +(2308, 3, 'FLORES ALONSO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-04-26', 995310.00, 'A'), +('CELL4330', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(2309, 3, 'MADRIGAL MIER Y TERAN LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-02-23', 414650.00, 'A'), +(231, 1, 'ZAPATA CEBALLOS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-08-16', 430320.00, 'A'), +(2310, 3, 'GONZALEZ ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-05-19', 87330.00, 'A'), +(2313, 3, 'MONTES PORTO ANDREA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-09-01', 929180.00, 'A'), +(2314, 3, 'ROCHA SUSUNAGA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2010-10-18', 541540.00, 'A'), +(2315, 3, 'VASQUEZ CALERO FEDERICO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 920160.00, 'A'), +(2317, 3, 'GONZALEZ FERNANDEZ YUSSEN ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-26', 120530.00, 'A'), +(2319, 3, 'ATTIAS WENGROWSKY DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150581, '2011-09-07', 8580.00, 'A'), +(232, 1, 'OSPINA ABUCHAIBE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-14', 748960.00, 'A'), +(2320, 3, 'EFRON TOPOROVSKY INES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 116511, '2011-07-15', 20810.00, 'A'), +(2321, 3, 'LUNA PLA DARIO', 191821112, 'CRA 25 CALLE 100', '95@terra.com.co', '2011-02-03', 145135, '2011-09-07', 78320.00, 'A'), +(2322, 1, 'VAZQUEZ DANIELA', 191821112, 'CRA 25 CALLE 100', '190@gmail.com', '2011-02-03', 145135, '2011-05-19', 329170.00, 'A'), +(2323, 3, 'BALBI BALBI JUAN DE DIOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-23', 410880.00, 'A'), +(2324, 3, 'MARROQUIN FERNANDEZ GELACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-23', 66880.00, 'A'), +(2325, 3, 'VAZQUEZ ZAVALA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-04-11', 101770.00, 'A'), +(2326, 3, 'SOTO MARTINEZ MARIA ELENA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-23', 308200.00, 'A'), +(2328, 3, 'HERNANDEZ MURILLO RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-22', 253830.00, 'A'), +(233, 1, 'HADDAD LINERO YEBRAIL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 130608, '2010-06-17', 453830.00, 'A'), +(2330, 3, 'TERMINEL HERNANDEZ DANIELA PATRICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 190393, '2011-08-15', 48940.00, 'A'), +(2331, 3, 'MIJARES FERNANDEZ MAGDALENA GUADALUPE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-31', 558440.00, 'A'), +(2332, 3, 'GONZALEZ LUNA CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 146258, '2011-04-26', 645400.00, 'A'), +(2333, 3, 'DIAZ TORREJON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-03', 551690.00, 'A'), +(2335, 3, 'PADILLA GUTIERREZ JESUS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 456120.00, 'A'), +(2336, 3, 'TORRES CORONA JORGE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', 813900.00, 'A'), +(2337, 3, 'CASTRO RAMSES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150581, '2011-07-04', 701120.00, 'A'), +(2338, 3, 'APARICIO VALLEJO RUSSELL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-03-16', 63890.00, 'A'), +(2339, 3, 'ALBOR FERNANDEZ LUIS ARTURO', 191821112, 'CRA 25 CALLE 100', '574@gmail.com', '2011-02-03', 147467, '2011-05-09', 216110.00, 'A'), +(234, 1, 'DOMINGUEZ GOMEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '942@hotmail.com', '2011-02-03', 127591, '2010-08-22', 22260.00, 'A'), +(2342, 3, 'REY ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '110@facebook.com', '2011-02-03', 127591, '2011-03-04', 313330.00, 'A'), +(2343, 3, 'MENDOZA GONZALES ADRIANA', 191821112, 'CRA 25 CALLE 100', '295@yahoo.com', '2011-02-03', 127591, '2011-03-23', 178720.00, 'A'), +(2344, 3, 'RODRIGUEZ SEGOVIA JESUS ALONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-07-26', 953590.00, 'A'), +(2345, 3, 'GONZALEZ PELAEZ EDUARDO DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 231790.00, 'A'), +(2347, 3, 'VILLEDA GARCIA DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 144939, '2011-05-29', 795600.00, 'A'), +(2348, 3, 'FERRER BURGES EMILIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', 83430.00, 'A'), +(2349, 3, 'NARRO ROBLES LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-03-16', 30330.00, 'A'), +(2350, 3, 'ZALDIVAR UGALDE CARLOS IGNACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-06-19', 901380.00, 'A'), +(2351, 3, 'VARGAS RODRIGUEZ VALENTE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 146258, '2011-04-26', 415910.00, 'A'), +(2354, 3, 'DEL PIERO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-09', 19890.00, 'A'), +(2355, 3, 'VILLAREAL ANA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-23', 211810.00, 'A'), +(2356, 3, 'GARRIDO FERRAN JORGE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 999370.00, 'A'), +(2357, 3, 'PEREZ PRECIADO EDMUNDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-22', 361450.00, 'A'), +(2358, 3, 'AGUIRRE VIGNAU DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150581, '2011-08-21', 809110.00, 'A'), +(2359, 3, 'LOPEZ SESMA TOMAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 146258, '2011-09-14', 961200.00, 'A'), +(236, 1, 'VENTO BETANCOURT LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-19', 682230.00, 'A'), +(2360, 3, 'BERNAL MALDONADO GUILLERMO JAVIER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2011-09-19', 378670.00, 'A'), +(2361, 3, 'GUZMAN DELGADO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-22', 9770.00, 'A'), +(2362, 3, 'GUZMAN DELGADO MARTIN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 912850.00, 'A'), +(2363, 3, 'GUSMAND ELGADO JORGE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-22', 534910.00, 'A'), +(2364, 3, 'RENDON BUICK JORGE JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-26', 936010.00, 'A'), +(2365, 3, 'HERNANDEZ HERNANDEZ HERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 75340.00, 'A'), +(2366, 3, 'ALVAREZ PAZ PEDRO RAFAEL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-01-02', 568650.00, 'A'), +(2367, 3, 'MIJARES DE LA BARREDA FERNANDA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-07-31', 617240.00, 'A'), +(2368, 3, 'MARTINEZ LOPEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-08-24', 380250.00, 'A'), +(2369, 3, 'GAYTAN MILLAN YANERI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 49520.00, 'A'), +(237, 1, 'BARGUIL ASSIS DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117460, '2009-09-03', 161770.00, 'A'), +(2370, 3, 'DURAN HEREDIA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-04-15', 106850.00, 'A'), +(2371, 3, 'SEGURA MIJARES CRISTOBAL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-31', 385700.00, 'A'), +(2372, 3, 'TEPOS VALTIERRA ERIK ARTURO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 116345, '2011-09-01', 607930.00, 'A'), +(2373, 3, 'RODRIGUEZ AGUILAR EDMUNDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-05-04', 882570.00, 'A'), +(2374, 3, 'MYSLABODSKI MICHAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-03-08', 589060.00, 'A'), +(2375, 3, 'HERNANDEZ MIRELES JATNIEL ELIOENAI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', 297600.00, 'A'), +(2376, 3, 'SNELL FERNANDEZ SYNTYHA ROCIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 720830.00, 'A'), +(2378, 3, 'HERNANDEZ EIVET AARON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 394200.00, 'A'), +(2379, 3, 'LOPEZ GARZA JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-22', 837000.00, 'A'), +(238, 1, 'GARCIA PINO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-10', 762140.00, 'A'), +(2381, 3, 'TOSCANO ESTRADA RUBEN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-22', 500940.00, 'A'), +(2382, 3, 'RAMIREZ HUDSON ROGER SILVESTER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-22', 497550.00, 'A'), +(2383, 3, 'RAMOS JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '362@yahoo.es', '2011-02-03', 127591, '2011-08-22', 984940.00, 'A'), +(2384, 3, 'CORTES CERVANTES ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-04-11', 432020.00, 'A'), +(2385, 3, 'POZOS ESQUIVEL DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-27', 205310.00, 'A'), +(2387, 3, 'ESTRADA AGUIRRE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 36470.00, 'A'), +(2388, 3, 'GARCIA RAMIREZ RAMON', 191821112, 'CRA 25 CALLE 100', '177@yahoo.es', '2011-02-03', 127591, '2011-08-22', 990910.00, 'A'), +(2389, 3, 'PRUD HOMME GARCIA CUBAS XAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-18', 845140.00, 'A'), +(239, 1, 'PINZON ARDILA GUSTAVO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-01', 325400.00, 'A'), +(2390, 3, 'ELIZABETH OCHOA ROJAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-05-21', 252950.00, 'A'), +(2391, 3, 'MEZA ALVAREZ JOSE ALBERTO', 191821112, 'CRA 25 CALLE 100', '646@terra.com.co', '2011-02-03', 144939, '2011-05-09', 729340.00, 'A'), +(2392, 3, 'HERRERA REYES RENATO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2010-02-28', 887860.00, 'A'), +(2393, 3, 'MURILLO GARIBAY GILBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-08-20', 251280.00, 'A'), +(2394, 3, 'GARCIA JIMENEZ CARLOS MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-09', 592830.00, 'A'), +(2395, 3, 'GUAGNELLI MARTINEZ BLANCA MONICA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145184, '2010-10-05', 210320.00, 'A'), +(2397, 3, 'GARCIA CISNEROS RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-07-04', 734530.00, 'A'), +(2398, 3, 'MIRANDA ROMO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 853340.00, 'A'), +(24, 1, 'ARREGOCES GARZON NELSON ORLANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127783, '2011-08-12', 403190.00, 'A'), +(240, 1, 'ARCINIEGAS GOMEZ ALBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-18', 340590.00, 'A'), +(2400, 3, 'HERRERA ABARCA EDUARDO VICENTE ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 755620.00, 'A'), +(2403, 3, 'CASTRO MONCAYO LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-07-29', 617260.00, 'A'), +(2404, 3, 'GUZMAN DELGADO OSBALDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 56250.00, 'A'), +(2405, 3, 'GARCIA LOPEZ DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-22', 429500.00, 'A'), +(2406, 3, 'JIMENEZ GAMEZ RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 245206, '2011-03-23', 978720.00, 'A'), +(2407, 3, 'BECERRA MARTINEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-08-23', 605130.00, 'A'), +(2408, 3, 'GARCIA MARTINEZ BERNARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 89480.00, 'A'), +(2409, 3, 'URRUTIA RAYAS BALTAZAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 632020.00, 'A'), +(241, 1, 'MEDINA AGUILA NESTOR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-09', 726730.00, 'A'), +(2411, 3, 'VERGARA MENDOZAVICTOR HUGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-06-15', 562230.00, 'A'), +(2412, 3, 'MENDOZA MEDINA JORGE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 136170.00, 'A'), +(2413, 3, 'CORONADO CASTILLO HUGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 147529, '2011-05-09', 994160.00, 'A'), +(2414, 3, 'GONZALEZ SOTO DELIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-03-23', 562280.00, 'A'), +(2415, 3, 'HERNANDEZ FLORES STEPHANIE REYNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 828940.00, 'A'), +(2416, 3, 'ABRAJAN GUERRERO MARIA DE LOS ANGELES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-23', 457860.00, 'A'), +(2417, 3, 'HERNANDEZ LOERA ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 802490.00, 'A'), +(2418, 3, 'TARIN LOPEZ JOSE CARMEN', 191821112, 'CRA 25 CALLE 100', '117@gmail.com', '2011-02-03', 127591, '2011-03-23', 638870.00, 'A'), +(242, 1, 'JULIO NARVAEZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-05', 611890.00, 'A'), +(2420, 3, 'BATTA MARQUEZ VICTOR ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-08-23', 17820.00, 'A'), +(2423, 3, 'GONZALEZ REYES JUAN JOSE', 191821112, 'CRA 25 CALLE 100', '55@yahoo.es', '2011-02-03', 127591, '2011-07-26', 758070.00, 'A'), +(2425, 3, 'ALVAREZ RODRIGUEZ HIRAM RAMSES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-23', 847420.00, 'A'), +(2426, 3, 'FEMATT HERNANDEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-03-23', 164130.00, 'A'), +(2427, 3, 'GUTIERRES ORTEGA FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 278410.00, 'A'), +(2428, 3, 'JIMENEZ DIAZ JUAN JORGE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-13', 899650.00, 'A'), +(2429, 3, 'VILLANUEVA PEREZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '656@yahoo.es', '2011-02-03', 150449, '2011-03-23', 663000.00, 'A'), +(243, 1, 'GOMEZ REYES ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126674, '2009-12-20', 879240.00, 'A'), +(2430, 3, 'CERON GOMEZ JOEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-03-21', 616070.00, 'A'), +(2431, 3, 'LOPEZ LINALDI DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-05-09', 91360.00, 'A'), +(2432, 3, 'JOSEPH NATHAN PEDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-02', 608580.00, 'A'), +(2433, 3, 'CARRENO PULIDO RUBEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 147242, '2011-06-19', 768810.00, 'A'), +(2434, 3, 'AREVALO MERCADO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-06-12', 18320.00, 'A'), +(2436, 3, 'RAMIREZ QUEZADA ERIKA BELEM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-03', 870930.00, 'A'), +(2438, 3, 'TATTO PRIETO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-19', 382740.00, 'A'), +(2439, 3, 'LOPEZ AYALA LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-10-08', 916370.00, 'A'), +(244, 1, 'DEVIS EDGAR JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-10-08', 560540.00, 'A'), +(2440, 3, 'HERNANDEZ TOVAR JORGE ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 144991, '2011-10-02', 433650.00, 'A'), +(2441, 3, 'COLLIARD LOPEZ PETER GEORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 419120.00, 'A'), +(2442, 3, 'FLORES CHALA GARY', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 794670.00, 'A'), +(2443, 3, 'FANDINO MUNOZ ZAMIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-19', 715970.00, 'A'), +(2444, 3, 'BARROSO VARGAS DIEGO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-26', 195840.00, 'A'), +(2446, 3, 'CRUZ RAMIREZ JUAN PEDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-07-14', 569050.00, 'A'), +(2447, 3, 'TIJERINA ACOSTA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 351280.00, 'A'), +(2449, 3, 'JASSO BARRERA CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-08-24', 192560.00, 'A'), +(245, 1, 'LENCHIG KALEDA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-02', 165000.00, 'A'), +(2450, 3, 'GARRIDO PATRON VICTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-09-27', 814970.00, 'A'), +(2451, 3, 'VELASQUEZ GUERRERO RUBEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', 497150.00, 'A'), +(2452, 3, 'CHOI SUNGKYU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 209494, '2011-08-16', 40860.00, 'A'), +(2453, 3, 'CONTRERAS LOPEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-08-05', 712830.00, 'A'), +(2454, 3, 'CHAVEZ BATAA OSCAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 150699, '2011-06-14', 441590.00, 'A'), +(2455, 3, 'LEE JONG HYUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131272, '2011-10-10', 69460.00, 'A'), +(2456, 3, 'MEDINA PADILLA CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 146589, '2011-04-20', 22530.00, 'A'), +(2457, 3, 'FLORES CUEVAS DOTNARA LUZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-05-17', 904260.00, 'A'), +(2458, 3, 'LIU YONGCHAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-10-09', 453710.00, 'A'), +(2459, 3, 'CASTRO FERNANDES PORTOCARRERO JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 195892, '2011-06-14', 555790.00, 'A'), +(246, 1, 'YAMHURE FONSECAN ERNESTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-10-03', 143350.00, 'A'), +(2460, 3, 'DUAN WEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-06-22', 417820.00, 'A'), +(2461, 3, 'ZHU XUTAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-18', 421740.00, 'A'), +(2462, 3, 'MEI SHUANNIU', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-09', 855240.00, 'A'), +(2464, 3, 'VEGA VACA LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-06-08', 489110.00, 'A'), +(2465, 3, 'TANG YUMING', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 147578, '2011-03-26', 412660.00, 'A'), +(2466, 3, 'VILLEDA GARCIA DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 144939, '2011-06-07', 595990.00, 'A'), +(2467, 3, 'GARCIA GARZA BLANCA ARMIDA', 191821112, 'CRA 25 CALLE 100', '927@hotmail.com', '2011-02-03', 145135, '2011-05-20', 741940.00, 'A'), +(2468, 3, 'HERNANDEZ MARTINEZ EMILIO JOAQUIN', 191821112, 'CRA 25 CALLE 100', '356@facebook.com', '2011-02-03', 145135, '2011-06-16', 921740.00, 'A'), +(2469, 3, 'WANG FAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 185363, '2011-08-20', 382860.00, 'A'), +(247, 1, 'ROJAS RODRIGUEZ ALVARO HERNAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-09', 221760.00, 'A'), +(2470, 3, 'WANG FEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-10-09', 149100.00, 'A'), +(2471, 3, 'BERNAL MALDONADO GUILLERMO JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118777, '2011-07-26', 596900.00, 'A'), +(2472, 3, 'GUTIERREZ GOMEZ ARTURO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145184, '2011-07-24', 537210.00, 'A'), +(2474, 3, 'LAN TYANYE ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-23', 865050.00, 'A'), +(2475, 3, 'LAN SHUZHEN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-23', 639240.00, 'A'), +(2476, 3, 'RODRIGUEZ GONZALEZ CARLOS ARTURO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 144616, '2011-08-09', 601050.00, 'A'), +(2477, 3, 'HAIBO NI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-20', 87540.00, 'A'), +(2479, 3, 'RUIZ RODRIGUEZ GRACIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-05-20', 910130.00, 'A'), +(248, 1, 'GONZALEZ RODRIGUEZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-03', 678750.00, 'A'), +(2480, 3, 'OROZCO MACIAS NORMA LETICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-20', 647010.00, 'A'), +(2481, 3, 'MEZA ALVAREZ JOSE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 144939, '2011-06-07', 504670.00, 'A'), +(2482, 3, 'RODRIGUEZ FIGUEROA RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 146308, '2011-04-27', 582290.00, 'A'), +(2483, 3, 'CARREON GUERRA ANA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 110709, '2011-05-27', 397440.00, 'A'), +(2484, 3, 'BOTELHO BARRETO CARLOS JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 195892, '2011-08-02', 240350.00, 'A'), +(2485, 3, 'CORONADO CASTILLO HUGO', 191821112, 'CRA 25 CALLE 100', '209@yahoo.com.mx', '2011-02-03', 147529, '2011-06-07', 9420.00, 'A'), +(2486, 3, 'DE FUENTES GARZA MARCELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-18', 326030.00, 'A'), +(2487, 3, 'GONZALEZ DUHART GUTIERREZ HORACIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-17', 601920.00, 'A'), +(2488, 3, 'LOPEZ LINALDI DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-06-07', 31500.00, 'A'), +(2489, 3, 'CASTRO MONCAYO JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-06-15', 351720.00, 'A'), +(249, 1, 'CASTRO RIBEROS JULIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-23', 728470.00, 'A'), +(2490, 3, 'SERRALDE LOPEZ MARIA GUADALUPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-25', 664120.00, 'A'), +(2491, 3, 'GARRIDO PATRON VICTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-09-29', 265450.00, 'A'), +(2492, 3, 'BRAUN JUAN NICOLAS ANTONIE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-28', 334880.00, 'A'), +(2493, 3, 'BANKA RAHUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 141138, '2011-05-02', 878070.00, 'A'), +(2494, 1, 'GARCIA MARTINEZ MARIA VIRGINIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-17', 385690.00, 'A'), +(2495, 1, 'MARIA VIRGINIA', 191821112, 'CRA 25 CALLE 100', '298@yahoo.com.mx', '2011-02-03', 127591, '2011-04-16', 294220.00, 'A'), +(2496, 3, 'GOMEZ ZENDEJAS MARIA ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145184, '2011-06-06', 314060.00, 'A'), +(2498, 3, 'MENDEZ MARTINEZ RAUL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-10', 496040.00, 'A'), +(2623, 3, 'ZAFIROPOULO ANA I', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 98170.00, 'A'), +(2499, 3, 'CARREON GUERRA ANA CECILIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-07-29', 417240.00, 'A'), +(2501, 3, 'OLIVAR ARIAS ISMAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-06-06', 738850.00, 'A'), +(2502, 3, 'ABOUMRAD NASTA EMILE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 145135, '2011-07-26', 899890.00, 'A'), +(2503, 3, 'RODRIGUEZ JIMENEZ ROBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-05-03', 282900.00, 'A'), +(2504, 3, 'ESTADOS UNIDOS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-27', 714840.00, 'A'), +(2505, 3, 'SOTO MUNOZ MARCO GREGORIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-26', 725480.00, 'A'), +(2506, 3, 'GARCIA MONTER ANA OTILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 145135, '2011-10-05', 482880.00, 'A'), +(2507, 3, 'THIRUKONDA VIGNESH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 126180, '2011-05-02', 237950.00, 'A'), +(2508, 3, 'RAMIREZ REATIAGA LYDA YOANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 150699, '2011-06-26', 741120.00, 'A'), +(2509, 3, 'SEPULVEDA RODRIGUEZ JESUS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', 991730.00, 'A'), +(251, 1, 'MEJIA PIZANO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-10', 845000.00, 'A'), +(2510, 3, 'FRANCISCO MARIA DIAS COSTA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 179111, '2011-07-12', 735330.00, 'A'), +(2511, 3, 'TEIXEIRA REGO DE OLIVEIRA TIAGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 179111, '2011-06-14', 701430.00, 'A'), +(2512, 3, 'PHILLIP JAMES', 191821112, 'CRA 25 CALLE 100', '766@terra.com.co', '2011-02-03', 127591, '2011-09-28', 301150.00, 'A'), +(2513, 3, 'ERXLEBEN ROBERT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 216125, '2011-04-13', 401460.00, 'A'), +(2514, 3, 'HUGHES CONNORRICHARD', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-06-22', 103880.00, 'A'), +(2515, 3, 'LEBLANC MICHAEL PAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 216125, '2011-08-09', 314990.00, 'A'), +(2517, 3, 'DEVINE CHRISTOPHER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-06-22', 371560.00, 'A'), +(2518, 3, 'WONG BRIAN TEK FUNG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126885, '2011-09-22', 67910.00, 'A'), +(2519, 3, 'BIDWALA IRFAN A', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 154811, '2011-03-28', 224840.00, 'A'), +(252, 1, 'JIMENEZ LARRARTE JUAN GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-01', 406770.00, 'A'), +(2520, 3, 'LEE HO YIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 147578, '2011-08-29', 920470.00, 'A'), +(2521, 3, 'DE MOURA MARTINS NUNO ALEXANDRE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196094, '2011-10-09', 927850.00, 'A'), +(2522, 3, 'DA COSTA GOMES CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 179111, '2011-08-10', 877850.00, 'A'), +(2523, 3, 'HOOGWAERTS PAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118777, '2011-02-11', 605690.00, 'A'), +(2524, 3, 'LOPES MARQUES LUIS JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2011-09-20', 394910.00, 'A'), +(2525, 3, 'CORREIA CAVACO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 178728, '2011-10-09', 157470.00, 'A'), +(2526, 3, 'HALL JOHN WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-09', 602620.00, 'A'), +(2527, 3, 'KNIGHT MARTIN GYLES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 113550, '2011-08-29', 540670.00, 'A'), +(2528, 3, 'HINDS THMAS TRISTAN PELLEW', 191821112, 'CRA 25 CALLE 100', '337@yahoo.es', '2011-02-03', 116862, '2011-08-23', 895500.00, 'A'), +(2529, 3, 'CARTON ALAN JOHN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-07-31', 855510.00, 'A'), +(253, 1, 'AZCUENAGA RAMIREZ NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 298472, '2011-05-10', 498840.00, 'A'), +(2530, 3, 'GHIM CHEOLL HO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-27', 591060.00, 'A'), +(2531, 3, 'PHILLIPS NADIA SULLIVAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-28', 388750.00, 'A'), +(2532, 3, 'CHANG KUKHYUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-22', 170560.00, 'A'), +(2533, 3, 'KANG SEOUNGHYUN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 173192, '2011-08-24', 686540.00, 'A'), +(2534, 3, 'CHUNG BYANG HOON', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 125744, '2011-03-14', 921030.00, 'A'), +(2535, 3, 'SHIN MIN CHUL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 173192, '2011-08-24', 545510.00, 'A'), +(2536, 3, 'CHOI JIN SUNG', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-15', 964490.00, 'A'), +(2537, 3, 'CHOI SUNGMIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-27', 185910.00, 'A'), +(2538, 3, 'PARK JAESER ', 191821112, 'CRA 25 CALLE 100', '525@terra.com.co', '2011-02-03', 127591, '2011-09-03', 36090.00, 'A'), +(2539, 3, 'KIM DAE HOON ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 173192, '2011-08-24', 622700.00, 'A'), +(254, 1, 'AVENDANO PABON ROLANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-05-12', 273900.00, 'A'), +(2540, 3, 'LYNN MARIA CRISTINA NORMA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116862, '2011-09-21', 5220.00, 'A'), +(2541, 3, 'KIM CHINIL JULIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 147578, '2011-08-27', 158030.00, 'A'), +(2543, 3, 'HALL JOHN WILLIAM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 398290.00, 'A'), +(2544, 3, 'YOSUKE PERDOMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 165600, '2011-07-26', 668040.00, 'A'), +(2546, 3, 'AKAGI KAZAHIKO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-26', 722510.00, 'A'), +(2547, 3, 'NELSON JONATHAN GARY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-09', 176570.00, 'A'), +(2548, 3, 'DUONG HOP BA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 116862, '2011-09-14', 715310.00, 'A'), +(2549, 3, 'CHAO-VILLEGAS NIKOLE TUK HING', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 180063, '2011-04-05', 46830.00, 'A'), +(255, 1, 'CORREA ALVARO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-27', 872990.00, 'A'), +(2551, 3, 'APPELS LAURENT BERNHARD', 191821112, 'CRA 25 CALLE 100', '891@hotmail.es', '2011-02-03', 135190, '2011-08-16', 300620.00, 'A'), +(2552, 3, 'PLAISIER ERIK JAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289294, '2011-05-23', 238440.00, 'A'), +(2553, 3, 'BLOK HENDRIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 288552, '2011-03-27', 290350.00, 'A'), +(2554, 3, 'NETTE ANNA STERRE', 191821112, 'CRA 25 CALLE 100', '621@yahoo.com.mx', '2011-02-03', 185363, '2011-07-30', 736400.00, 'A'), +(2555, 3, 'FRIELING HANS ERIC', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 107469, '2011-07-31', 810990.00, 'A'), +(2556, 3, 'RUTTE CORNELIA JANTINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 143579, '2011-03-30', 845710.00, 'A'), +(2557, 3, 'WALRAVEN PIETER PAUL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 289294, '2011-07-29', 795620.00, 'A'), +(2558, 3, 'TREBES LAURENS JOHANNES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-11-22', 440940.00, 'A'), +(2559, 3, 'KROESE ROLANDWILLEBRORDUSMARIA', 191821112, 'CRA 25 CALLE 100', '188@facebook.com', '2011-02-03', 110643, '2011-06-09', 817860.00, 'A'), +(256, 1, 'FARIAS GARCIA REINI', 191821112, 'CRA 25 CALLE 100', '615@hotmail.com', '2011-02-03', 127591, '2011-03-05', 543220.00, 'A'), +(2560, 3, 'VAN DER HEIDE HENDRIK', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 291042, '2011-09-04', 766460.00, 'A'), +(2561, 3, 'VAN DEN BERG DONAR ALEXANDER GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 190393, '2011-07-13', 378720.00, 'A'), +(2562, 3, 'GODEFRIDUS JOHANNES ROPS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127622, '2011-10-02', 594240.00, 'A'), +(2564, 3, 'WAT YOK YIENG', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 287095, '2011-03-22', 392370.00, 'A'), +(2565, 3, 'BUIS JACOBUS NICOLAAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-20', 456810.00, 'A'), +(2567, 3, 'CHIPPER FRANCIUSCUS NICOLAAS ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 291599, '2011-07-28', 164300.00, 'A'), +(2568, 3, 'ONNO ROUKENS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-11-28', 500670.00, 'A'), +(2569, 3, 'PETRUS MARCELLINUS STEPHANUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-06-25', 10430.00, 'A'), +(2571, 3, 'VAN VOLLENHOVEN IVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-08', 719370.00, 'A'), +(2572, 3, 'LAMBOOIJ BART', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-09-20', 946480.00, 'A'), +(2573, 3, 'LANSER MARIANA PAULINE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 289294, '2011-04-09', 574270.00, 'A'), +(2575, 3, 'KLERKEN JOHANNES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 286101, '2011-05-24', 436840.00, 'A'), +(2576, 3, 'KRAS JACOBUS NICOLAAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 289294, '2011-09-26', 88410.00, 'A'), +(2577, 3, 'FUCHS MICHAEL JOSEPH', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 185363, '2011-07-30', 131530.00, 'A'), +(2578, 3, 'BIJVANK ERIK JAN WILLEM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-11', 392410.00, 'A'), +(2579, 3, 'SCHMIDT FRANC ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 106742, '2011-09-11', 567470.00, 'A'), +(258, 1, 'SOTO GONZALEZ FRANCISCO LAZARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 116511, '2011-05-07', 856050.00, 'A'), +(2580, 3, 'VAN DER KOOIJ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 291277, '2011-07-10', 660130.00, 'A'), +(2581, 2, 'KRIS ANDRE GEORGES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127300, '2011-07-26', 598240.00, 'A'), +(2582, 3, 'HARDING LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 263813, '2011-05-08', 10820.00, 'A'), +(2583, 3, 'ROLLI GUY JEAN ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 145135, '2011-05-31', 259370.00, 'A'), +(2584, 3, 'NIETO PARRA SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 263813, '2011-07-04', 264400.00, 'A'), +(2585, 3, 'LASTRA CHAVEZ PABLO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126674, '2011-05-25', 543890.00, 'A'), +(2586, 1, 'ZAIDA MAYERLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-05', 926250.00, 'A'), +(2587, 1, 'OSWALDO SOLORZANO CONTRERAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-28', 999590.00, 'A'), +(2588, 3, 'ZHOU XUAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-18', 219200.00, 'A'), +(2589, 3, 'HUANG ZHENGQUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-18', 97230.00, 'A'), +(259, 1, 'GALARZA NARANJO JAIME RENE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 988830.00, 'A'), +(2590, 3, 'HUANG ZHENQUIN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-18', 828560.00, 'A'), +(2591, 3, 'WEIDEN MULLER AMURER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-29', 851110.00, 'A'), +(2593, 3, 'OESTERHAUS CORNELIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 256231, '2011-03-29', 295960.00, 'A'), +(2594, 3, 'RINTALAHTI JUHA HENRIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 170220.00, 'A'), +(2597, 3, 'VERWIJNEN JONAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 289697, '2011-02-03', 638040.00, 'A'), +(2598, 3, 'SHAW ROBERT', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 157414, '2011-07-10', 273550.00, 'A'), +(2599, 3, 'MAKINEN TIMO JUHANI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 196234, '2011-09-13', 453600.00, 'A'), +(260, 1, 'RIVERA CANON JOSE EDWARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127538, '2011-09-19', 375990.00, 'A'), +(2600, 3, 'HONKANIEMI ARTO OLAVI', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 301387, '2011-09-06', 447380.00, 'A'), +(2601, 3, 'DAGG JAMIE MICHAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 216125, '2011-08-09', 876080.00, 'A'), +(2602, 3, 'BOLAND PATRICK CHARLES ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 216125, '2011-09-14', 38260.00, 'A'), +(2603, 2, 'ZULEYKA JERRYS RIVERA MENDOZA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 150347, '2011-03-27', 563050.00, 'A'), +(2604, 3, 'DELGADO SEQUIRA FERRAO JOSE PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 188228, '2011-08-16', 700460.00, 'A'), +(2605, 3, 'YORRO LORA EDGAR MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127689, '2011-06-17', 813180.00, 'A'), +(2606, 3, 'CARRASCO RODRIGUEZQCARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127689, '2011-06-17', 964520.00, 'A'), +(2607, 30, 'ORJUELA VELASQUEZ JULIANA MARIA', 191821112, 'CRA 25 CALLE 100', '372@terra.com.co', '2011-02-03', 132775, '2011-09-01', 383070.00, 'A'), +(2608, 3, 'DUQUE DUTRA LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 118942, '2011-07-12', 21780.00, 'A'), +(261, 1, 'MURCIA MARQUEZ NESTOR JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-19', 913480.00, 'A'), +(2610, 3, 'NGUYEN HUU KHUONG', 191821112, 'CRA 25 CALLE 100', '457@facebook.com', '2011-02-03', 132958, '2011-05-07', 733120.00, 'A'), +(2611, 3, 'NGUYEN VAN LAP', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 786510.00, 'A'), +(2612, 3, 'PHAM HUU THU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 733200.00, 'A'), +(2613, 3, 'DANG MING CUONG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-05-07', 306460.00, 'A'), +(2614, 3, 'VU THI HONG HANH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-05-07', 332710.00, 'A'), +(2615, 3, 'CHAU TANG LANG', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-05-07', 744190.00, 'A'), +(2616, 3, 'CHU BAN THING', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2011-05-07', 722800.00, 'A'), +(2617, 3, 'NGUYEN QUANG THU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132958, '2011-05-07', 381420.00, 'A'), +(2618, 3, 'TRAN THI KIM OANH', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-05-07', 738690.00, 'A'), +(2619, 3, 'NGUYEN VAN VINH', 191821112, 'CRA 25 CALLE 100', '422@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 549210.00, 'A'), +(262, 1, 'ABDULAZIS ELNESER KHALED', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-27', 439430.00, 'A'), +(2620, 3, 'NGUYEN XUAN VY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132958, '2011-05-07', 529950.00, 'A'), +(2621, 3, 'HA MANH HOA', 191821112, 'CRA 25 CALLE 100', '439@gmail.com', '2011-02-03', 132958, '2011-05-07', 2160.00, 'A'), +(2622, 3, 'ZAFIROPOULO STEVEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 420930.00, 'A'), +(2624, 3, 'TEMIGTERRA MASSIMILIANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 210050, '2011-09-26', 228070.00, 'A'), +(2625, 3, 'CASSES TRINDADE HELGIO HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118402, '2011-09-13', 845850.00, 'A'), +(2626, 3, 'ASCOLI MASTROENI MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 120773, '2011-09-07', 545010.00, 'A'), +(2627, 3, 'MONTEIRO SOARES MARCOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 120773, '2011-07-18', 187530.00, 'A'), +(2629, 3, 'HALL ALVARO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 120773, '2011-08-02', 950450.00, 'A'), +(2631, 3, 'ANDRADE CATUNDA RAFAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 120773, '2011-08-23', 370860.00, 'A'), +(2632, 3, 'MAGALHAES MAYRA ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118767, '2011-08-23', 320960.00, 'A'), +(2633, 3, 'SPREAFICO MIRIAM ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118587, '2011-08-23', 492220.00, 'A'), +(2634, 3, 'GOMES FERREIRA HELIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 125812, '2011-08-23', 498220.00, 'A'), +(2635, 3, 'FERNANDES SENNA PIRES SERGIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-05', 14460.00, 'A'), +(2636, 3, 'BALESTRO FLORIANO FABIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 120773, '2011-08-24', 577630.00, 'A'), +(2637, 3, 'CABANA DE QUEIROZ ANDRADE ALAXANDRE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-23', 844780.00, 'A'), +(2638, 3, 'DALBOSCO CARLA', 191821112, 'CRA 25 CALLE 100', '380@yahoo.com.mx', '2011-02-03', 127591, '2011-06-30', 491010.00, 'A'), +(264, 1, 'ROMERO MONTOYA NICOLAY ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-13', 965220.00, 'A'), +(2640, 3, 'BILLINI CRUZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 144215, '2011-03-27', 130530.00, 'A'), +(2641, 3, 'VASQUES ARIAS DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 144509, '2011-08-19', 890500.00, 'A'), +(2642, 3, 'ROJAS VOLQUEZ GLADYS MICHELLE', 191821112, 'CRA 25 CALLE 100', '852@gmail.com', '2011-02-03', 144215, '2011-07-25', 60930.00, 'A'), +(2643, 3, 'LLANEZA GIL JUAN RAFAELMO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 144215, '2011-07-08', 633120.00, 'A'), +(2646, 3, 'AVILA PEROZO IANKEL JACOB', 191821112, 'CRA 25 CALLE 100', '318@hotmail.com', '2011-02-03', 144215, '2011-09-03', 125600.00, 'A'), +(2647, 3, 'REGULAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-19', 583540.00, 'A'), +(2648, 3, 'CORONADO BATISTA JOSE ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-19', 540910.00, 'A'), +(2649, 3, 'OLIVIER JOSE VICTOR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 144509, '2011-08-19', 953910.00, 'A'), +(2650, 3, 'YOO HOE TAEK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-08-25', 146820.00, 'A'), +(266, 1, 'CUECA RODRIGUEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-22', 384280.00, 'A'), +(267, 1, 'NIETO ALVARADO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2008-04-28', 553450.00, 'A'), +(269, 1, 'LEAL HOLGUIN FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-25', 411700.00, 'A'), +(27, 1, 'MORENO MORENO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2009-09-15', 995620.00, 'A'), +(270, 1, 'CANO IBANES JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-03', 215260.00, 'A'), +(271, 1, 'RESTREPO HERRAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2011-04-18', 841220.00, 'A'), +(272, 3, 'RIOS FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 199862, '2011-03-24', 560300.00, 'A'), +(273, 1, 'MADERO LORENZANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-03', 277850.00, 'A'), +(274, 1, 'GOMEZ GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-09-24', 708350.00, 'A'), +(275, 1, 'CONSUEGRA ARENAS ANDRES MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-09-09', 708210.00, 'A'), +(276, 1, 'HURTADO ROJAS NICOLAS', 191821112, 'CRA 25 CALLE 100', '463@yahoo.com.mx', '2011-02-03', 127591, '2011-09-07', 416000.00, 'A'), +(277, 1, 'MURCIA BAQUERO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-02', 955370.00, 'A'), +(2773, 3, 'TAKUBO KAORI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 165753, '2011-05-12', 872390.00, 'A'), +(2774, 3, 'OKADA MAKOTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 165753, '2011-06-19', 921480.00, 'A'), +(2775, 3, 'TAKEDA AKIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 21062, '2011-06-19', 990250.00, 'A'), +(2776, 3, 'KOIKE WATARU ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 165753, '2011-06-19', 186800.00, 'A'), +(2777, 3, 'KUBO SHINEI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 165753, '2011-02-13', 963230.00, 'A'), +(2778, 3, 'KANNO YONEZO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 165600, '2011-07-26', 255770.00, 'A'), +(278, 3, 'PARENT ELOIDE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 267980, '2011-05-01', 528840.00, 'A'), +(2781, 3, 'SUNADA MINORU ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 165753, '2011-06-19', 724450.00, 'A'), +(2782, 3, 'INOUE KASUYA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-22', 87150.00, 'A'), +(2783, 3, 'OTAKE NOBUTOSHI', 191821112, 'CRA 25 CALLE 100', '208@facebook.com', '2011-02-03', 127591, '2011-06-11', 262380.00, 'A'), +(2784, 3, 'MOTOI KEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 165753, '2011-06-19', 50470.00, 'A'), +(2785, 3, 'TANAKA KIYOTAKA ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 165753, '2011-06-19', 465210.00, 'A'), +(2787, 3, 'YUMIKOPERDOMO', 191821112, 'CRA 25 CALLE 100', '600@yahoo.es', '2011-02-03', 165600, '2011-07-26', 477550.00, 'A'), +(2788, 3, 'FUKUSHIMA KENZO', 191821112, 'CRA 25 CALLE 100', '599@gmail.com', '2011-02-03', 156960, '2011-05-30', 863860.00, 'A'), +(2789, 3, 'GELGIN LEVENT NURI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-26', 886630.00, 'A'), +(279, 1, 'AVIATUR S. A.', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-02', 778110.00, 'A'), +(2791, 3, 'GELGIN ENIS ENRE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-26', 547940.00, 'A'), +(2792, 3, 'PAZ SOTO LUBRASCA MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 143954, '2011-06-27', 215000.00, 'A'), +(2794, 3, 'MOURAD TAOUFIKI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-13', 511000.00, 'A'), +(2796, 3, 'DASTUS ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 218656, '2011-05-29', 774010.00, 'A'), +(2797, 3, 'MCDONALD MICHAEL LORNE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 269033, '2011-07-19', 85820.00, 'A'), +(2799, 3, 'KLESO MICHAEL QUENTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-07-26', 277950.00, 'A'), +(28, 1, 'GONZALEZ ACUNA EDGAR MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-19', 531710.00, 'A'), +(280, 3, 'NEME KARIM CHAIBAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 135967, '2010-05-02', 304040.00, 'A'), +(2800, 3, 'CLERK CHARLES ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 244158, '2011-07-26', 68490.00, 'A'), +('CELL3673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(2801, 3, 'BURRIS MAURICE STEWARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-27', 508600.00, 'A'), +(2802, 1, 'PINCHEN CLAIRE ELAINE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 216125, '2011-04-13', 337530.00, 'A'), +(2803, 3, 'LETTNER EVA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 231224, '2011-09-20', 161860.00, 'A'), +(2804, 3, 'CANUEL LUCIE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 146258, '2011-09-20', 796710.00, 'A'), +(2805, 3, 'IGLESIAS CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 216125, '2011-08-02', 497980.00, 'A'), +(2806, 3, 'PAQUIN JEAN FRANCOIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 269033, '2011-03-27', 99760.00, 'A'), +(2807, 3, 'FOURNIER DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 228688, '2011-05-19', 4860.00, 'A'), +(2808, 3, 'BILODEAU MARTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-13', 725030.00, 'A'), +(2809, 3, 'KELLNER PETER WILLIAM', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 130757, '2011-07-24', 610570.00, 'A'), +(2810, 3, 'ZAZULAK INGRID ROSEMARIE', 191821112, 'CRA 25 CALLE 100', '683@facebook.com', '2011-02-03', 240550, '2011-09-11', 877770.00, 'A'), +(2811, 3, 'RUCCI JHON MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 285188, '2011-05-10', 557130.00, 'A'), +(2813, 3, 'JONCAS MARC', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 33265, '2011-03-21', 90360.00, 'A'), +(2814, 3, 'DUCHARME ERICK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-03-29', 994750.00, 'A'), +(2816, 3, 'BAILLOD THOMAS DAVID ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 239124, '2010-10-20', 529130.00, 'A'), +(2817, 3, 'MARTINEZ SORIA JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 289697, '2011-09-06', 537630.00, 'A'), +(2818, 3, 'TAMARA RABER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-04-30', 100750.00, 'A'), +(2819, 3, 'BURGI VINCENT EMANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 245206, '2011-04-20', 890860.00, 'A'), +(282, 1, 'HUESPED ASISTENTE A LA CONVENCION DE LA DIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2009-06-24', 17160.00, 'A'), +(2820, 3, 'ROBLES TORRALBA IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 238949, '2011-05-16', 152030.00, 'A'), +(2821, 3, 'CONSUEGRA MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-06', 87600.00, 'A'), +(2822, 3, 'CELMA ADROVER LAIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 190393, '2011-03-23', 981880.00, 'A'), +(2823, 3, 'ALVAREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-06-20', 646610.00, 'A'), +(2824, 3, 'VARGAS WOODROFFE FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 157414, '2011-06-22', 287410.00, 'A'), +(2825, 3, 'GARCIA GUILLEN VICENTE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 144215, '2011-08-19', 497230.00, 'A'), +(2826, 3, 'GOMEZ GARCIA DIAMANTES PATRICIA MARIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2011-09-22', 623930.00, 'A'), +(2827, 3, 'PEREZ IGLESIAS BIBIANA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 132958, '2011-09-30', 627940.00, 'A'), +(2830, 3, 'VILLALONGA MORENES MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 169679, '2011-05-29', 474910.00, 'A'), +(2831, 3, 'REY LOPEZ DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2011-08-03', 7380.00, 'A'), +(2832, 3, 'HOYO APARICIO JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 116511, '2011-09-19', 612180.00, 'A'), +(2836, 3, 'GOMEZ GARCIA LOPEZ CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 150699, '2011-09-21', 277540.00, 'A'), +(2839, 3, 'GALIMERTI MARCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 235197, '2011-08-28', 156870.00, 'A'), +(2840, 3, 'BAROZZI GIUSEPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 231989, '2011-05-25', 609500.00, 'A'), +(2841, 3, 'MARIAN RENATO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-12', 576900.00, 'A'), +(2842, 3, 'FAENZA CARLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 126180, '2011-05-19', 55990.00, 'A'), +(2843, 3, 'PESOLILLO CARMINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 203162, '2011-06-26', 549230.00, 'A'), +(2844, 3, 'CHIODI FRANCESCO MARIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 199862, '2011-09-10', 578210.00, 'A'), +(2845, 3, 'RUTA MARIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-06-19', 243350.00, 'A'), +(2846, 3, 'BAZZONI MARINO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 101518, '2011-05-03', 482140.00, 'A'), +(2848, 3, 'LAGASIO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 231989, '2011-05-04', 956670.00, 'A'), +(2849, 3, 'VIERA DA CUNHA PAULO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 190393, '2011-04-05', 741520.00, 'A'), +(2850, 3, 'DAL BEN DENIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 116511, '2011-05-26', 837590.00, 'A'), +(2851, 3, 'GIANELLI HERIBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 233927, '2011-05-01', 963400.00, 'A'), +(2852, 3, 'JUSTINO DA SILVA DJAMIR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-08', 304200.00, 'A'), +(2853, 3, 'DIPASQUUALE GAETANO', 191821112, 'CRA 25 CALLE 100', '574@terra.com.co', '2011-02-03', 172888, '2011-07-11', 630830.00, 'A'), +(2855, 3, 'CURI MAURO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 199862, '2011-06-19', 315160.00, 'A'), +(2856, 3, 'DI DIO MARCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-20', 851210.00, 'A'), +(2857, 3, 'ROBERTI MENDONCA CAIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-11', 310580.00, 'A'), +(2859, 3, 'RAMOS MORENO DE SOUZA ANDRE ', 191821112, 'CRA 25 CALLE 100', '133@facebook.com', '2011-02-03', 118777, '2011-09-24', 64540.00, 'A'), +(286, 8, 'INEXMODA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-06-21', 50150.00, 'A'), +(2860, 3, 'JODJAHN DE CARVALHO FLAVIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2011-06-27', 324950.00, 'A'), +(2862, 3, 'LAGASIO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 231989, '2011-07-04', 180760.00, 'A'), +(2863, 3, 'MOON SUNG RIUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-08', 610440.00, 'A'), +(2865, 3, 'VAIDYANATHAN VIKRAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-11', 718220.00, 'A'), +(2866, 3, 'NARAYANASWAMY RAMSUNDAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 73079, '2011-10-02', 61390.00, 'A'), +(2867, 3, 'VADADA VENKATA RAMESH KUMAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-10', 152300.00, 'A'), +(2868, 3, 'RAMA KRISHNAN ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-10', 577300.00, 'A'), +(2869, 3, 'JALAN PRASHANT', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 122035, '2011-05-02', 429600.00, 'A'), +(2871, 3, 'CHANDRASEKAR VENKAT', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 112862, '2011-06-27', 791800.00, 'A'), +(2872, 3, 'CUMBAKONAM SWAMINATHAN SUBRAMANIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-11', 710650.00, 'A'), +(288, 8, 'BCD TRAVEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-23', 645390.00, 'A'), +(289, 3, 'EMBAJADA ARGENTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '1970-02-02', 749440.00, 'A'), +('CELL3789', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(290, 3, 'EMBAJADA DE BRASIL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-11-16', 811030.00, 'A'), +(293, 8, 'ONU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-19', 584810.00, 'A'), +(299, 1, 'BLANDON GUZMAN JHON JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-01-13', 201740.00, 'A'), +(304, 3, 'COHEN DANIEL DYLAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 286785, '2010-11-17', 184850.00, 'A'), +(306, 1, 'CINDU ANDINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2009-06-11', 899230.00, 'A'), +(31, 1, 'GARRIDO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127662, '2010-09-12', 801450.00, 'A'), +(310, 3, 'CORPORACION CLUB EL NOGAL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2010-08-27', 918760.00, 'A'), +(314, 3, 'CHAWLA AARON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-08', 295840.00, 'A'), +(317, 3, 'BAKER HUGHES', 191821112, 'CRA 25 CALLE 100', '694@hotmail.com', '2011-02-03', 127591, '2011-04-03', 211990.00, 'A'), +(32, 1, 'PAEZ SEGURA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '675@gmail.com', '2011-02-03', 129447, '2011-08-22', 717340.00, 'A'), +(320, 1, 'MORENO PAEZ FREDDY ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-31', 971670.00, 'A'), +(322, 1, 'CALDERON CARDOZO GASTON EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-10-05', 990640.00, 'A'), +(324, 1, 'ARCHILA MERA ALFREDOMANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-06-22', 77200.00, 'A'), +(326, 1, 'MUNOZ AVILA HERNEY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-11-10', 550920.00, 'A'), +(327, 1, 'CHAPARRO CUBILLOS FABIAN ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-15', 685080.00, 'A'), +(329, 1, 'GOMEZ LOPEZ JUAN SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '970@yahoo.com', '2011-02-03', 127591, '2011-03-20', 808070.00, 'A'), +(33, 1, 'MARTINEZ MARINO HENRY HERNAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-04-20', 182370.00, 'A'), +(330, 3, 'MAPSTONE NAOMI LEA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 122035, '2010-02-21', 722380.00, 'A'), +(332, 3, 'ROSSI BURRI NELLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132165, '2010-05-10', 771210.00, 'A'), +(333, 1, 'AVELLANEDA OVIEDO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-25', 293060.00, 'A'), +(334, 1, 'SUZA FLOREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-13', 151650.00, 'A'), +(335, 1, 'ESGUERRA ALVARO ANDRES', 191821112, 'CRA 25 CALLE 100', '11@facebook.com', '2011-02-03', 127591, '2011-09-10', 879080.00, 'A'), +(337, 3, 'DE LA HARPE MARTIN CARAPET WALTER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-27', 64960.00, 'A'), +(339, 1, 'HERNANDEZ ACOSTA SERGIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 129499, '2011-06-22', 322570.00, 'A'), +(340, 3, 'ZARAMA DE LA ESPRIELLA MIGUEL PATRICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-27', 102360.00, 'A'), +(342, 1, 'CABRERA VASQUEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-01', 413440.00, 'A'), +(343, 3, 'RICHARDSON BEN MARRIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2010-05-18', 434890.00, 'A'), +(344, 1, 'OLARTE PINZON MIGUEL FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-30', 934140.00, 'A'), +(345, 1, 'SOLER SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2011-04-20', 366020.00, 'A'), +(346, 1, 'PRIETO JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-07-12', 27690.00, 'A'), +(349, 1, 'BARRERO VELASCO DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-01', 472850.00, 'A'), +(35, 1, 'VELASQUEZ RAMOS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-13', 251940.00, 'A'), +(350, 1, 'RANGEL GARCIA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-03-20', 7880.00, 'A'), +(353, 1, 'ALVAREZ ACEVEDO JOHN FREDDY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-16', 540070.00, 'A'), +(354, 1, 'VILLAMARIN HOME WILMAR ALFREDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-19', 458810.00, 'A'), +(355, 3, 'SLUCHIN NAAMAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 263813, '2010-12-01', 673830.00, 'A'), +(357, 1, 'BULLA BERNAL LUIS ERNESTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-14', 942160.00, 'A'), +(358, 1, 'BRACCIA AVILA GIANCARLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-01', 732620.00, 'A'), +(359, 1, 'RODRIGUEZ PINTO RAUL DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-08-24', 836600.00, 'A'), +(36, 1, 'MALDONADO ALVAREZ JAIRO ASDRUBAL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127300, '2011-06-19', 980270.00, 'A'), +(362, 1, 'POMBO POLANCO JUAN BERNARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-18', 124130.00, 'A'), +(363, 1, 'CARDENAS SUAREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-01', 372920.00, 'A'), +(364, 1, 'RIVERA MAZO JOSE DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-06-10', 492220.00, 'A'), +(365, 1, 'LEDERMAN CORDIKI JONATHAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-12-03', 342340.00, 'A'), +(367, 1, 'BARRERA MARTINEZ LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '35@yahoo.com.mx', '2011-02-03', 127591, '2011-05-24', 148130.00, 'A'), +(368, 1, 'SEPULVEDA RAMIREZ DANIEL MARCELO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-31', 35560.00, 'A'), +(369, 1, 'QUINTERO DIAZ WILSON ASDRUBAL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', 733430.00, 'A'), +(37, 1, 'RESTREPO SUAREZ HENRY BERNARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2011-07-25', 145540.00, 'A'), +(370, 1, 'ROJAS YARA WILLMAR ARLEY', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-12-03', 560450.00, 'A'), +(371, 3, 'CARVER LOUISE EMILY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 286785, '2010-10-07', 601980.00, 'A'), +(372, 3, 'VINCENT DAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2011-03-06', 328540.00, 'A'), +(374, 1, 'GONZALEZ DELGADO MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-18', 198260.00, 'A'), +(375, 1, 'PAEZ SIMON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-06-25', 480970.00, 'A'), +(376, 1, 'CADOSCH DELMAR ELIE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-10-07', 810080.00, 'A'), +(377, 1, 'HERRERA VASQUEZ DANIEL EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-06-30', 607460.00, 'A'), +(378, 1, 'CORREAL ROJAS RONALD', 191821112, 'CRA 25 CALLE 100', '269@facebook.com', '2011-02-03', 127591, '2011-07-16', 607080.00, 'A'), +(379, 1, 'VOIDONNIKOLAS MUNOS PANAGIOTIS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-27', 213010.00, 'A'), +(38, 1, 'CANAL ROJAS MAURICIO HERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-05-29', 786900.00, 'A'), +(380, 1, 'DIAZ ECHEVERRI JUAN DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-20', 243800.00, 'A'), +(381, 1, 'CIFUENTES MARIN HERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-26', 579960.00, 'A'), +(382, 3, 'PAXTON LUCINDA HARRIET', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 107159, '2011-05-23', 168420.00, 'A'), +(384, 3, 'POYNTON BRIAN GEORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 286785, '2011-03-20', 5790.00, 'A'), +(385, 3, 'TERMIGNONI ADRIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-01-14', 722320.00, 'A'), +(386, 3, 'CARDWELL PAULA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-02-17', 594230.00, 'A'), +(389, 1, 'FONCECA MARTINEZ MIGUEL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-25', 778680.00, 'A'), +(39, 1, 'GARCIA SUAREZ WILLIAM ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-25', 497880.00, 'A'), +(390, 1, 'GUERRERO NELSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-12-03', 178650.00, 'A'), +(391, 1, 'VICTORIA PENA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-22', 557200.00, 'A'), +(392, 1, 'VAN HISSENHOVEN FERRERO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-13', 250060.00, 'A'), +(393, 1, 'CACERES ORDUZ JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-28', 578690.00, 'A'), +(394, 1, 'QUINTERO ALVARO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-17', 143270.00, 'A'), +(395, 1, 'ANZOLA PEREZ CARLOSDAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-04', 980300.00, 'A'), +(397, 1, 'LLOREDA ORTIZ CARLOS JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-27', 417470.00, 'A'), +(398, 1, 'GONZALES LONDONO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-19', 672310.00, 'A'), +(4, 1, 'LONDONO DOMINGUEZ ERNESTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-05', 324610.00, 'A'), +(40, 1, 'MORENO ANGULO ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-01', 128690.00, 'A'), +(400, 8, 'TRANSELCA .A', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-04-14', 528930.00, 'A'), +(403, 1, 'VERGARA MURILLO JUAN FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-03-04', 42900.00, 'A'), +(405, 1, 'CAPERA CAPERA HARRINSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127799, '2011-06-12', 961000.00, 'A'), +(407, 1, 'MORENO MORA WILLIAM EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-22', 872780.00, 'A'), +(408, 1, 'HIGUERA ROA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-28', 910430.00, 'A'), +(409, 1, 'FORERO CASTILLO OSCAR ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '988@terra.com.co', '2011-02-03', 127591, '2011-07-23', 933810.00, 'A'), +(410, 1, 'LOPEZ MURCIA JULIAN DANIEL', 191821112, 'CRA 25 CALLE 100', '399@facebook.com', '2011-02-03', 127591, '2011-08-08', 937790.00, 'A'), +(411, 1, 'ALZATE JOHN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-09-09', 887490.00, 'A'), +(412, 1, 'GONZALES GONZALES ORLANDO ANDREY', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-30', 624080.00, 'A'), +(413, 1, 'ESCOLANO VALENTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-05', 457930.00, 'A'), +(414, 1, 'JARAMILLO RODRIGUEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-12', 417420.00, 'A'), +(415, 1, 'GARCIA MUNOZ DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-02', 713300.00, 'A'), +(416, 1, 'PINEROS ARENAS JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-10-17', 314260.00, 'A'), +(417, 1, 'ORTIZ ARROYAVE ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-05-21', 431370.00, 'A'), +(418, 1, 'BAYONA BARRIENTOS JEAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-12', 214090.00, 'A'), +(419, 1, 'AGUDELO VASQUEZ JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-30', 776360.00, 'A'), +(420, 1, 'CALLE DANIEL CJ PRODUCCIONES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-04', 239500.00, 'A'), +(422, 1, 'CANO BETANCUR ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-08-20', 623620.00, 'A'), +(423, 1, 'CALDAS BARRETO LUZ MIREYA', 191821112, 'CRA 25 CALLE 100', '991@facebook.com', '2011-02-03', 127591, '2011-05-22', 512840.00, 'A'), +(424, 1, 'SIMBAQUEBA JOSE ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 693320.00, 'A'), +(425, 1, 'DE SILVESTRE CALERO LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-18', 928110.00, 'A'), +(426, 1, 'ZORRO PERALTA YEZID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-25', 560560.00, 'A'), +(428, 1, 'SUAREZ OIDOR DARWIN LEONARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 131272, '2011-09-05', 410650.00, 'A'), +(429, 1, 'GIRAL CARRILLO LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-13', 997850.00, 'A'), +(43, 1, 'MARULANDA VALENCIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-17', 365550.00, 'A'), +(430, 1, 'CORDOBA GARCES JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-18', 757320.00, 'A'), +(431, 1, 'ARIAS TAMAYO DIEGO MAURICIO', 191821112, 'CRA 25 CALLE 100', '36@yahoo.com', '2011-02-03', 127591, '2011-09-05', 793050.00, 'A'), +(432, 1, 'EICHMANN PERRET MARC WILLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-22', 693270.00, 'A'), +(433, 1, 'DIAZ DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2008-09-18', 87200.00, 'A'), +(435, 1, 'FACCINI GONZALEZ HERMANN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2009-01-08', 519420.00, 'A'), +(436, 1, 'URIBE DUQUE FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-28', 528470.00, 'A'), +(437, 1, 'TAVERA GAONA GABREL LEAL', 191821112, 'CRA 25 CALLE 100', '280@terra.com.co', '2011-02-03', 127591, '2011-04-28', 84120.00, 'A'), +(438, 1, 'ORDONEZ PARIS FERNANDO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-09-26', 835170.00, 'A'), +(439, 1, 'VILLEGAS ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 923520.00, 'A'), +(44, 1, 'MARTINEZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-08-13', 738750.00, 'A'), +(440, 1, 'MARTINEZ RUEDA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '805@hotmail.es', '2011-02-03', 127591, '2011-04-07', 112050.00, 'A'), +(441, 1, 'ROLDAN JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-05-25', 789720.00, 'A'), +(442, 1, 'PEREZ BRANDWAYN ELIYAU MOISES', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-10-20', 612450.00, 'A'), +(443, 1, 'VALLEJO TORO JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128579, '2011-08-16', 693080.00, 'A'), +(444, 1, 'TORRES CABRERA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-03-19', 628070.00, 'A'), +(445, 1, 'MERINO MEJIA GERMAN ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-28', 61100.00, 'A'), +(447, 1, 'GOMEZ GOMEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-08', 923070.00, 'A'), +(448, 1, 'RAUSCH CHEHEBAR STEVEN JOSEPH', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-09-27', 351540.00, 'A'), +(449, 1, 'RESTREPO TRUCCO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-28', 988500.00, 'A'), +(45, 1, 'GUTIERREZ JARAMILLO CARLOS MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-22', 597090.00, 'A'), +(450, 1, 'GOLDSTEIN VAIDA ELI JACK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-11', 887860.00, 'A'), +(451, 1, 'OLEA PINEDA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-08-10', 473800.00, 'A'), +(452, 1, 'JORGE OROZCO', 191821112, 'CRA 25 CALLE 100', '503@hotmail.es', '2011-02-03', 127591, '2011-06-02', 705410.00, 'A'), +(454, 1, 'DE LA TORRE GOMEZ GERMAN ERNESTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-03', 411990.00, 'A'), +(456, 1, 'MADERO ARIAS JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '452@hotmail.es', '2011-02-03', 127591, '2011-08-22', 479090.00, 'A'), +(457, 1, 'GOMEZ MACHUCA ALVARO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-08-12', 166430.00, 'A'), +(458, 1, 'MENDIETA TOBON DANIEL RICARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-08', 394880.00, 'A'), +(459, 1, 'VILLADIEGO CORTINA JAVIER TOMAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-26', 475110.00, 'A'), +(46, 1, 'FERRUCHO ARCINIEGAS JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', 769220.00, 'A'), +(460, 1, 'DERESER HARTUNG ERNESTO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-12-25', 190900.00, 'A'), +(461, 1, 'RAMIREZ PENA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-06-25', 529190.00, 'A'), +(463, 1, 'IREGUI REYES LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 778590.00, 'A'), +(464, 1, 'PINTO GOMEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2010-06-24', 673270.00, 'A'), +(465, 1, 'RAMIREZ RAMIREZ FERNANDO ALONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127799, '2011-10-01', 30570.00, 'A'), +(466, 1, 'BERRIDO TRUJILLO JORGE HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 132775, '2011-10-06', 133040.00, 'A'), +(467, 1, 'RIVERA CARVAJAL RAFAEL HUMBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-07-20', 573500.00, 'A'), +(468, 3, 'FLOREZ PUENTES IVAN ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 145135, '2011-05-08', 468380.00, 'A'), +(469, 1, 'BALLESTEROS FLOREZ IVAN DARIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-02', 621410.00, 'A'), +(47, 1, 'MARIN FLOREZ OMAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-30', 54840.00, 'A'), +(470, 1, 'RODRIGO PENA HERRERA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 237734, '2011-10-04', 701890.00, 'A'), +(471, 1, 'RODRIGUEZ SILVA ROGELIO', 191821112, 'CRA 25 CALLE 100', '163@gmail.com', '2011-02-03', 127591, '2011-05-26', 645210.00, 'A'), +(473, 1, 'VASQUEZ VELANDIA JUAN GABRIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 196234, '2011-05-04', 666330.00, 'A'), +(474, 1, 'ROBLEDO JAIME', 191821112, 'CRA 25 CALLE 100', '409@yahoo.com', '2011-02-03', 127591, '2011-05-31', 970480.00, 'A'), +(475, 1, 'GRIMBERG DIAZ PHILIP', 191821112, 'CRA 25 CALLE 100', '723@yahoo.com', '2011-02-03', 127591, '2011-03-30', 853430.00, 'A'), +(476, 1, 'CHAUSTRE GARCIA JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-26', 355670.00, 'A'), +(477, 1, 'GOMEZ FLOREZ IGNASIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-14', 218090.00, 'A'), +(478, 1, 'LUIS ALBERTO CABRERA PUENTES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-05-26', 23420.00, 'A'), +(479, 1, 'MARTINEZ ZAPATA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '234@gmail.com', '2011-02-03', 127122, '2011-07-01', 462840.00, 'A'), +(48, 1, 'PARRA IBANEZ FABIAN ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-02-01', 966520.00, 'A'), +(480, 3, 'WESTERBERG JAN RICKARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 300701, '2011-02-01', 243940.00, 'A'), +(484, 1, 'RODRIGUEZ VILLALOBOS EDGAR FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-19', 860320.00, 'A'), +(486, 1, 'NAVARRO REYES DIEGO FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-01', 530150.00, 'A'), +(487, 1, 'NOGUERA RICAURTE ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-01-21', 384100.00, 'A'), +(488, 1, 'RUIZ VEJARANO CARLOS DANIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-09-27', 330030.00, 'A'), +(489, 1, 'CORREA PEREZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-12-14', 497860.00, 'A'), +(49, 1, 'FLOREZ PEREZ RUBIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-23', 668090.00, 'A'), +(490, 1, 'REYES GOMEZ LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-26', 499210.00, 'A'), +(491, 3, 'BERNAL LEON ALBERTO JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 150699, '2011-03-29', 2470.00, 'A'), +(492, 1, 'FELIPE JARAMILLO CARO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2009-10-31', 514700.00, 'A'), +(493, 1, 'GOMEZ PARRA GERMAN DARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-01-29', 566100.00, 'A'), +(494, 1, 'VALLEJO RAMIREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-13', 286390.00, 'A'), +(495, 1, 'DIAZ LONDONO HUGO MARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 733670.00, 'A'), +(496, 3, 'VAN BAKERGEM RONALD JAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2008-11-05', 809190.00, 'A'), +(497, 1, 'MENDEZ RAMIREZ JOSE LEONARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-10', 844920.00, 'A'), +(498, 3, 'QUI TANILLA HENRIQUEZ PAUL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-10', 797030.00, 'A'), +(499, 3, 'PELEATO FLOREAL', 191821112, 'CRA 25 CALLE 100', '531@hotmail.com', '2011-02-03', 188640, '2011-04-23', 450370.00, 'A'), +(50, 1, 'SILVA GUZMAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-03-24', 440890.00, 'A'), +(502, 3, 'LEO ULF GORAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 300701, '2010-07-26', 181840.00, 'A'), +(503, 3, 'KARLSSON DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 300701, '2011-07-22', 50680.00, 'A'), +(504, 1, 'JIMENEZ JANER ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '889@hotmail.es', '2011-02-03', 203272, '2011-08-29', 707880.00, 'A'), +(506, 1, 'PABON OCHOA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-14', 813050.00, 'A'), +(507, 1, 'ACHURY CADENA CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-26', 903240.00, 'A'), +(508, 1, 'ECHEVERRY GARZON SEBASTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-23', 77050.00, 'A'), +(509, 1, 'PINEROS PENA LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-07-29', 675550.00, 'A'), +(51, 1, 'CAICEDO URREA JAIME ORLANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127300, '2011-08-17', 200160.00, 'A'), +('CELL3795', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(510, 1, 'MARTINEZ MARTINEZ LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', '586@facebook.com', '2011-02-03', 127591, '2010-08-28', 146600.00, 'A'), +(511, 1, 'MOLANO PENA JESUS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-02-05', 706320.00, 'A'), +(512, 3, 'RUDOLPHY FONTAINE ANDRES', 191821112, 'CRA 25 CALLE 100', '492@yahoo.com', '2011-02-03', 117002, '2011-04-12', 91820.00, 'A'), +(513, 1, 'NEIRA CHAVARRO JOHN JAIRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-05-12', 340120.00, 'A'), +(514, 3, 'MENDEZ VILLALOBOS ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 145135, '2011-03-25', 425160.00, 'A'), +(515, 3, 'HERNANDEZ OLIVA JOSE DE LA CRUZ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 145135, '2011-03-25', 105440.00, 'A'), +(518, 3, 'JANCO NICOLAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-15', 955830.00, 'A'), +(52, 1, 'TAPIA MUNOZ JAIRO RICARDO', 191821112, 'CRA 25 CALLE 100', '920@hotmail.es', '2011-02-03', 127591, '2011-10-05', 678130.00, 'A'), +(520, 1, 'ALVARADO JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-26', 895550.00, 'A'), +(521, 1, 'HUERFANO SOTO JONATHAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-30', 619910.00, 'A'), +(522, 1, 'HUERFANO SOTO JONATHAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-04', 412900.00, 'A'), +(523, 1, 'RODRIGEZ GOMEZ WILMAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-05-14', 204790.00, 'A'), +(525, 1, 'ARROYO BAPTISTE DIEGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-09', 311810.00, 'A'), +(526, 1, 'PULECIO BOEK DANIEL', 191821112, 'CRA 25 CALLE 100', '718@gmail.com', '2011-02-03', 127591, '2011-08-12', 203350.00, 'A'), +(527, 1, 'ESLAVA VELEZ SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-10-08', 81300.00, 'A'), +(528, 1, 'CASTRO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-05-06', 796470.00, 'A'), +(53, 1, 'HINCAPIE MARTINEZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127573, '2011-09-26', 790180.00, 'A'), +(530, 1, 'ZORRILLA PUJANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '312@yahoo.es', '2011-02-03', 127591, '2011-06-06', 302750.00, 'A'), +(531, 1, 'ZORRILLA PUJANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-06', 298440.00, 'A'), +(532, 1, 'PRETEL ARTEAGA MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-09', 583980.00, 'A'), +(533, 1, 'RAMOS VERGARA HUMBERTO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 131105, '2010-05-13', 24560.00, 'A'), +(534, 1, 'BONILLA PINEROS DIEGO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', 370880.00, 'A'), +(535, 1, 'BELTRAN TRIVINO JULIAN DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-11-06', 780710.00, 'A'), +(536, 3, 'BLOD ULF FREDERICK EDWARD', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-06', 790900.00, 'A'), +(537, 1, 'VANEGAS OROZCO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-11-10', 612400.00, 'A'), +(538, 3, 'ORUE VALLE MONICA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 97885, '2011-09-15', 689270.00, 'A'), +(539, 1, 'AGUDELO BEDOYA ANDRES JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2011-05-24', 609160.00, 'A'), +(54, 1, 'DE HOYOS TRESPALACIOS MAURICIO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-21', 916500.00, 'A'), +(540, 3, 'HEIJKENSKJOLD PER JESPER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-06', 977980.00, 'A'), +(541, 3, 'GONZALEZ ALVARADO LUIS RAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-08-27', 62430.00, 'A'), +(543, 1, 'GRUPO SURAMERICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-08-24', 703760.00, 'A'), +(545, 1, 'CORPORACION CONTEXTO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-08', 809570.00, 'A'), +(546, 3, 'LUNDIN JOHAN ERIK ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-29', 895330.00, 'A'), +(548, 3, 'VEGERANO JOSE ', 191821112, 'CRA 25 CALLE 100', '221@facebook.com', '2011-02-03', 190393, '2011-06-05', 553780.00, 'A'), +(549, 3, 'SERRANO MADRID CLAUDIA INES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-27', 625060.00, 'A'), +(55, 1, 'TAFUR GOMEZ ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127300, '2010-09-12', 211980.00, 'A'), +(550, 1, 'MARTINEZ ACEVEDO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-10-06', 463920.00, 'A'), +(551, 1, 'GONZALEZ MORENO PABLO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-07-21', 444450.00, 'A'), +(552, 1, 'MEJIA ROJAS ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-08-02', 830470.00, 'A'), +(553, 3, 'RODRIGUEZ ANTHONY HANSEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-16', 819000.00, 'A'), +(554, 1, 'ABUCHAIBE ANNICCHRICO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-05-31', 603610.00, 'A'), +(555, 3, 'MOYES KIMBERLY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-08', 561020.00, 'A'), +(556, 3, 'MONTINI MARIO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118942, '2010-03-16', 994280.00, 'A'), +(557, 3, 'HOGBERG DANIEL TOBIAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-06-15', 288350.00, 'A'), +(559, 1, 'OROZCO PFEIZER MARTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-10-07', 429520.00, 'A'), +(56, 1, 'NARINO ROJAS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-27', 310390.00, 'A'), +(560, 1, 'GARCIA MONTOYA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-06-02', 770840.00, 'A'), +(562, 1, 'VELASQUEZ PALACIO MANUEL ORLANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-06-23', 515670.00, 'A'), +(563, 1, 'GALLEGO PEREZ DIEGO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-14', 881460.00, 'A'), +(564, 1, 'RUEDA URREGO JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-04', 860270.00, 'A'), +(565, 1, 'RESTREPO DEL TORO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-10', 656960.00, 'A'), +(567, 1, 'TORO VALENCIA FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-08-04', 549090.00, 'A'), +(568, 1, 'VILLEGAS LUIS ALFONSO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-02', 633490.00, 'A'), +(569, 3, 'RIDSTROM CHRISTER ANDERS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 300701, '2011-09-06', 520150.00, 'A'), +(57, 1, 'TOVAR ARANGO JOHN JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127662, '2010-07-03', 916010.00, 'A'), +(570, 3, 'SHEPHERD DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2008-05-11', 700280.00, 'A'), +(573, 3, 'BENGTSSON JOHAN ANDREAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 196830.00, 'A'), +(574, 3, 'PERSSON HANS JONAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-09', 172340.00, 'A'), +(575, 3, 'SYNNEBY BJORN ERIK', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-15', 271210.00, 'A'), +('CELL381', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(577, 3, 'COHEN PAUL KIRTAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 381490.00, 'A'), +(578, 3, 'ROMERO BRAVO FERNANDO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', 390360.00, 'A'), +(579, 3, 'GUTHRIE ROBERT DEAN', 191821112, 'CRA 25 CALLE 100', '794@gmail.com', '2011-02-03', 161705, '2010-07-20', 807350.00, 'A'), +(58, 1, 'TORRES ESCOBAR JAIRO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-06-17', 648860.00, 'A'), +(580, 3, 'ROCASERMENO MONTENEGRO MARIO JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 139844, '2010-12-01', 865650.00, 'A'), +(581, 1, 'COCK JORGE EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2011-08-19', 906210.00, 'A'), +(582, 3, 'REISS ANDREAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2009-01-31', 934120.00, 'A'), +(584, 3, 'ECHEVERRIA CASTILLO GERMAN FRANCISCO', 191821112, 'CRA 25 CALLE 100', '982@yahoo.com', '2011-02-03', 139844, '2011-07-20', 957370.00, 'A'), +(585, 3, 'BRANDT CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-10', 931030.00, 'A'), +(586, 3, 'VEGA NUNEZ GILBERTO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-14', 783010.00, 'A'), +(587, 1, 'BEJAR MUNOZ JORDI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 196234, '2010-10-08', 121990.00, 'A'), +(588, 3, 'WADSO KERSTIN ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-09-17', 260890.00, 'A'), +(59, 1, 'RAMOS FORERO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-06-20', 496300.00, 'A'), +(590, 1, 'RODRIGUEZ BETANCOURT JAVIER AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127538, '2011-05-23', 909850.00, 'A'), +(592, 1, 'ARBOLEDA HALABY RODRIGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 150699, '2009-02-03', 939170.00, 'A'), +(593, 1, 'CURE CURE CARLOS ALFREDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 150699, '2011-07-11', 494600.00, 'A'), +(594, 3, 'VIDELA PEREZ OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-07-13', 655510.00, 'A'), +(595, 1, 'GONZALEZ GAVIRIA NESTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2009-09-28', 793760.00, 'A'), +(596, 3, 'IZQUIERDO DELGADO DIONISIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2009-09-24', 2250.00, 'A'), +(597, 1, 'MORENO DAIRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127300, '2011-06-14', 629990.00, 'A'), +(598, 1, 'RESTREPO FERNNDEZ SOTO JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-08-31', 143210.00, 'A'), +(599, 3, 'YERYES VERGARA MARIA SOLEDAD', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-10-11', 826060.00, 'A'), +(6, 1, 'GUZMAN ESCOBAR JOSE VICENTE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-10', 26390.00, 'A'), +(60, 1, 'ELEJALDE ESCOBAR TOMAS ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-11-09', 534910.00, 'A'), +(601, 1, 'ESCAF ESCAF WILLIAM MIGUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 150699, '2011-07-26', 25190.00, 'A'), +(602, 1, 'CEBALLOS ZULUAGA JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2011-05-03', 23920.00, 'A'), +(603, 1, 'OLIVELLA GUERRERO RAFAEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2010-06-23', 44040.00, 'A'), +(604, 1, 'ESCOBAR GALLO CARLOS HUGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-09', 148420.00, 'A'), +(605, 1, 'ESCORCIA RAMIREZ EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128569, '2011-04-01', 609990.00, 'A'), +(606, 1, 'MELGAREJO MORENO PAULA ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-05', 604700.00, 'A'), +(607, 1, 'TOBON CALLE CARLOS GUILLERMO', 191821112, 'CRA 25 CALLE 100', '689@hotmail.es', '2011-02-03', 128662, '2011-03-16', 193510.00, 'A'), +(608, 3, 'TREVINO NOPHAL SILVANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 110709, '2011-05-27', 153470.00, 'A'), +(609, 1, 'CARDER VELEZ EDWIN JOHN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-04', 186830.00, 'A'), +(61, 1, 'GASCA DAZA VICTOR HERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-09-09', 185660.00, 'A'), +(610, 3, 'DAVIS JOHN BRADLEY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-04-06', 473740.00, 'A'), +(611, 1, 'BAQUERO SLDARRIAGA ALVARO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-09-15', 808210.00, 'A'), +(612, 3, 'SERRACIN ARAUZ YANIRA YAMILET', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 131272, '2011-06-09', 619820.00, 'A'), +(613, 1, 'MORA SOTO ALVARO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-09-20', 674450.00, 'A'), +(614, 1, 'SUAREZ RODRIGUEZ HERNANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 145135, '2011-03-29', 512820.00, 'A'), +(616, 1, 'BAQUERO GARCIA JORGE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2010-07-14', 165160.00, 'A'), +(617, 3, 'ABADI MADURO MOISES SIMON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 131272, '2009-03-31', 203640.00, 'A'), +(62, 3, 'FLOWER LYNDON BRUCE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 231373, '2011-05-16', 323560.00, 'A'), +(624, 8, 'OLARTE LEONARDO', 191821112, 'CRA 25 CALLE 100', '6@hotmail.com', '2011-02-03', 127591, '2011-06-03', 219790.00, 'A'), +(63, 1, 'RUBIO CORTES OSCAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-04-28', 60830.00, 'A'), +(630, 5, 'PROEXPORT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 128662, '2010-08-12', 708320.00, 'A'), +(632, 8, 'SUPER COFFEE ', 191821112, 'CRA 25 CALLE 100', '792@hotmail.es', '2011-02-03', 127591, '2011-08-30', 306460.00, 'A'), +(636, 8, 'NOGAL ASESORIAS FINANCIERAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-04-07', 752150.00, 'A'), +(64, 1, 'GUERRA MARTINEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-24', 333480.00, 'A'), +(645, 8, 'GIZ - PROFIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-08-31', 566330.00, 'A'), +(652, 3, 'QBE DEL ISTMO COMPANIA DE REASEGUROS ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-07-14', 932190.00, 'A'), +(655, 3, 'CORP. CENTRO DE ESTUDIOS DE DERECHO JUSTICIA Y SOCIEDAD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-05-04', 440370.00, 'A'), +(659, 3, 'GOOD YEAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2010-09-24', 993830.00, 'A'), +(660, 3, 'ARCINIEGAS Y VILLAMIZAR', 191821112, 'CRA 25 CALLE 100', '258@yahoo.com', '2011-02-03', 127591, '2010-12-02', 787450.00, 'A'), +(67, 1, 'LOPEZ HOYOS JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127662, '2010-04-13', 665230.00, 'A'), +(670, 8, 'APPLUS NORCONTROL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2011-09-06', 83210.00, 'A'), +(672, 3, 'KERLL SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 287273, '2010-12-19', 501610.00, 'A'), +(673, 1, 'RESTREPO MOLINA RAMIRO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 144215, '2010-12-18', 457290.00, 'A'), +(674, 1, 'PEREZ GIL JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-08-18', 781610.00, 'A'), +('CELL3840', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(676, 1, 'GARCIA LONDONO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-23', 336160.00, 'A'), +(677, 3, 'RIJLAARSDAM KARIN AN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-07-03', 72210.00, 'A'), +(679, 1, 'LIZCANO MONTEALEGRE ARNULFO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127203, '2011-02-01', 546170.00, 'A'), +(68, 1, 'MARTINEZ SILVA EDGAR', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-29', 54250.00, 'A'), +(680, 3, 'OLIVARI MAYER PATRICIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 122642, '2011-08-01', 673170.00, 'A'), +(682, 3, 'CHEVALIER FRANCK PIERRE CHARLES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 263813, '2010-12-01', 617280.00, 'A'), +(683, 3, 'NG WAI WING ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126909, '2011-06-14', 904310.00, 'A'), +(684, 3, 'MULLER DOMINGUEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-05-22', 669700.00, 'A'), +(685, 3, 'MOSQUEDA DOMNGUEZ ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-04-08', 635580.00, 'A'), +(686, 3, 'LARREGUI MARIN LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-04-08', 168800.00, 'A'), +(687, 3, 'VARGAS VERGARA ALEJANDRO BRAULIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 159245, '2011-09-14', 937260.00, 'A'), +(688, 3, 'SKINNER LYNN CHERYL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-12', 179890.00, 'A'), +(689, 1, 'URIBE CORREA LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128662, '2010-07-29', 87680.00, 'A'), +(690, 1, 'TAMAYO JARAMILLO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 128662, '2010-11-10', 898730.00, 'A'), +(691, 3, 'MOTABAN DE BORGES PAULA ELENA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132958, '2010-09-24', 230610.00, 'A'), +(692, 5, 'FERNANDEZ NALDA JOSE MANUEL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-06-28', 456850.00, 'A'), +(693, 1, 'GOMEZ RESTREPO JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-06-28', 592420.00, 'A'), +(694, 1, 'CARDENAS TAMAYO JOSE JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-08-08', 591550.00, 'A'), +(696, 1, 'RESTREPO ARANGO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-03-31', 127820.00, 'A'), +(697, 1, 'ROCABADO PASTRANA ROBERT JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127443, '2011-08-13', 97600.00, 'A'), +(698, 3, 'JARVINEN JOONAS JORI KRISTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 196234, '2011-05-29', 104560.00, 'A'), +(699, 1, 'MORENO PEREZ HERNAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-30', 230000.00, 'A'), +(7, 1, 'PUYANA RAMOS GUILLERMO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-08-27', 331830.00, 'A'), +(70, 1, 'GALINDO MANZANO JAVIER FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-31', 214890.00, 'A'), +(701, 1, 'ROMERO PEREZ ARCESIO JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 132775, '2011-07-13', 491650.00, 'A'), +(703, 1, 'CHAPARRO AGUDELO LEONARDO VIRGILIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 128662, '2011-05-04', 271320.00, 'A'), +(704, 5, 'VASQUEZ YANIS MARIA DEL PILAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-10-13', 508820.00, 'A'), +(705, 3, 'BARBERO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 116511, '2010-09-13', 730170.00, 'A'), +(706, 1, 'CARMONA HERNANDEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2010-11-08', 124380.00, 'A'), +(707, 1, 'PEREZ SUAREZ JORGE ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2011-09-14', 431370.00, 'A'), +(708, 1, 'ROJAS JORGE MARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 130135, '2011-04-01', 783740.00, 'A'), +(71, 1, 'DIAZ JUAN PABLO/JULES JAVIER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-10-01', 247860.00, 'A'), +(711, 3, 'CATALDO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 116773, '2011-06-06', 984810.00, 'A'), +(716, 5, 'MACIAS PIZARRO PATRICIO ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2011-06-07', 376260.00, 'A'), +(717, 1, 'RENDON MAYA DAVID ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 130273, '2010-07-25', 332310.00, 'A'), +(718, 3, 'DE HILDEBRAND E GRISI FILHO CELSO CLAUDIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-11', 532740.00, 'A'), +(719, 3, 'ALLIEL FACUSSE JULIO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-20', 666800.00, 'A'), +(72, 1, 'LOPEZ ROJAS VICTOR DANIEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-07-11', 594640.00, 'A'), +(720, 3, 'CHEMELLO JIMENEZ GAETANO ALBERTO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2010-06-23', 735760.00, 'A'), +(721, 3, 'GARCIA BEZANILLA RODOLFO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 128662, '2010-04-12', 678420.00, 'A'), +(722, 1, 'ARIAS EDWIN', 191821112, 'CRA 25 CALLE 100', '13@terra.com.co', '2011-02-03', 127492, '2008-04-24', 184800.00, 'A'), +(723, 3, 'SOHN JANG WON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-07', 888750.00, 'A'), +(724, 3, 'WILHELM GIOVINE JAIME ROBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 115263, '2011-09-20', 889340.00, 'A'), +(726, 3, 'CASTILLERO DANIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 131272, '2011-05-13', 234270.00, 'A'), +(727, 3, 'PORTUGAL LANGHORST MAX GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-03-13', 829960.00, 'A'), +(729, 3, 'ALFONSO HERRANZ AGUSTIN ALFONSO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-21', 745060.00, 'A'), +(73, 1, 'DAVILA MENDEZ OSCAR DIEGO', 191821112, 'CRA 25 CALLE 100', '991@yahoo.com.mx', '2011-02-03', 128569, '2011-08-31', 229630.00, 'A'), +(730, 3, 'ALFONSO HERRANZ AGUSTIN CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-03-31', 384360.00, 'A'), +(731, 1, 'NOGUERA RAMIREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-07-14', 686610.00, 'A'), +(732, 1, 'ACOSTA PERALTA FABIAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 134030, '2011-06-21', 279960.00, 'A'), +(733, 3, 'MAC LEAN PINA PEDRO SEGUNDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-05-23', 339980.00, 'A'), +(734, 1, 'LEON ARCOS ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-05-04', 860020.00, 'A'), +(736, 3, 'LAMARCA GARCIA GERMAN JULIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-04-29', 820700.00, 'A'), +(737, 1, 'PORTO VELASQUEZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', '321@hotmail.es', '2011-02-03', 133535, '2011-08-17', 263060.00, 'A'), +(738, 1, 'BUENAVENTURA MEDINA ERICK WILSON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-09-18', 853180.00, 'A'), +(739, 1, 'LEVY ARRAZOLA RALPH MARC', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2011-09-27', 476720.00, 'A'), +(74, 1, 'RAMIREZ SORA EDISON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-03', 364220.00, 'A'), +(740, 3, 'MOON HYUNSIK ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 173192, '2011-05-15', 824080.00, 'A'), +(741, 3, 'LHUILLIER TRONCOSO GASTON MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-09-07', 690230.00, 'A'), +(742, 3, 'UNDURRAGA PELLEGRINI GONZALO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 117002, '2010-11-21', 978900.00, 'A'), +(743, 1, 'SOLANO TRIBIN NICOLAS SIMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 134022, '2011-03-16', 823800.00, 'A'), +(744, 1, 'NOGUERA BENAVIDES JACOBO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-06', 182300.00, 'A'), +(745, 1, 'GARCIA LEON MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2008-04-16', 440110.00, 'A'), +(746, 1, 'EMILIANI ROJAS ALEXANDER ALFONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-09-12', 653640.00, 'A'), +(748, 1, 'CARRENO POULSEN HELGEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', 778370.00, 'A'), +(749, 1, 'ALVARADO FANDINO ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2008-11-05', 48280.00, 'A'), +(750, 1, 'DIAZ GRANADOS JUAN PABLO.', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-01-12', 906290.00, 'A'), +(751, 1, 'OVALLE BETANCOURT ALBERTO JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 134022, '2011-08-14', 386620.00, 'A'), +(752, 3, 'GUTIERREZ VERGARA JOSE MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-05-08', 214250.00, 'A'), +(753, 3, 'CHAPARRO GUAIMARAL LIZ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 147467, '2011-03-16', 911350.00, 'A'), +(754, 3, 'CORTES DE SOLMINIHAC PABLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117002, '2011-01-20', 914020.00, 'A'), +(755, 3, 'CHETAIL VINCENT', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 239124, '2010-08-23', 836050.00, 'A'), +(756, 3, 'PERUGORRIA RODRIGUEZ JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2010-10-17', 438210.00, 'A'), +(757, 3, 'GOLLMANN ROBERTO JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 167269, '2011-03-28', 682870.00, 'A'), +(758, 3, 'VARELA SEPULVEDA MARIA PILAR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118777, '2010-07-26', 99730.00, 'A'), +(759, 3, 'MEYER WELIKSON MICHELE JANIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-05-10', 450030.00, 'A'), +(76, 1, 'VANEGAS RODRIGUEZ OSCAR IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', 568310.00, 'A'), +(77, 3, 'GATICA SOTOMAYOR MAURICIO VICENTE', 191821112, 'CRA 25 CALLE 100', '409@terra.com.co', '2011-02-03', 117002, '2010-05-13', 444970.00, 'A'), +(79, 1, 'PENA VALENZUELA DANIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-19', 264790.00, 'A'), +(8, 1, 'NAVARRO PALENCIA HUGO RAFAEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 126968, '2011-05-05', 579980.00, 'A'), +(80, 1, 'BARRIOS CUADRADO DAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-07-29', 764140.00, 'A'), +(802, 3, 'RECK GARRONE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118942, '2009-02-06', 767700.00, 'A'), +(81, 1, 'PARRA QUIROGA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 26330.00, 'A'), +(811, 8, 'FEDERACION NACIONAL DE AVICULTORES ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-04-18', 926010.00, 'A'), +(812, 1, 'ORJUELA VELEZ JAIME ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 257160.00, 'A'), +(813, 1, 'PENA CHACON GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2011-08-27', 507770.00, 'A'), +(814, 1, 'RONDEROS MOJICA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127443, '2011-05-04', 767370.00, 'A'), +(815, 1, 'RICO NINO MARIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127443, '2011-05-18', 313540.00, 'A'), +(817, 3, 'AVILA CHYTIL MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 118471, '2011-07-14', 387300.00, 'A'), +(818, 3, 'JABLONSKI DUARTE SILVEIRA ESTER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 118942, '2010-12-21', 139740.00, 'A'), +(819, 3, 'BUHLER MOSLER XIMENA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-06-20', 536830.00, 'A'), +(82, 1, 'CARRILLO GAMBOA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-06-01', 839240.00, 'A'), +(820, 3, 'FALQUETO DALMIRO ANGELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-06-21', 264910.00, 'A'), +(821, 1, 'RUGER GUSTAVO RODRIGUEZ TAMAYO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2010-04-12', 714080.00, 'A'), +(822, 3, 'JULIO RODRIGUEZ FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 117002, '2011-08-16', 775650.00, 'A'), +(823, 3, 'CIBANIK RODOLFO MOISES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132554, '2011-09-19', 736020.00, 'A'), +(824, 3, 'JIMENEZ FRANCO EMMANUEL ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-17', 353150.00, 'A'), +(825, 3, 'GNECCO TREMEDAD', 191821112, 'CRA 25 CALLE 100', '818@hotmail.com', '2011-02-03', 171072, '2011-03-19', 557700.00, 'A'), +(826, 3, 'VILAR MENDOZA JOSE RAFAEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-29', 729050.00, 'A'), +(827, 3, 'GONZALEZ MOLINA CRISTIAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-06-20', 972160.00, 'A'), +(828, 1, 'GONTOVNIK HOBRECKT CARLOS DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-08-02', 673620.00, 'A'), +(829, 3, 'DIBARRAT URZUA SEBASTIAN RAIMUNDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-28', 451650.00, 'A'), +(830, 3, 'STOCCHERO HATSCHBACH GUILHERME', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 118777, '2010-11-22', 237370.00, 'A'), +(831, 1, 'NAVAS PASSOS NARCISO EVELIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-04-21', 831900.00, 'A'), +(832, 3, 'LUNA SOBENES FAVIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-10-11', 447400.00, 'A'), +(833, 3, 'NUNEZ NOGUEIRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-19', 741290.00, 'A'), +(834, 1, 'CASTRO BELTRAN ARIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 128188, '2011-05-15', 364270.00, 'A'), +(835, 1, 'TURBAY YAMIN MAURICIO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 188640, '2011-03-17', 597490.00, 'A'), +(836, 1, 'GOMEZ BARRAZA RODNEY LORENZO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 894610.00, 'A'), +(837, 1, 'CUELLO LASCANO ROBERTO', 191821112, 'CRA 25 CALLE 100', '221@hotmail.es', '2011-02-03', 133535, '2011-07-11', 680610.00, 'A'), +(838, 1, 'PATERNINA PEINADO JOSE VICENTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-08-23', 719190.00, 'A'), +(839, 1, 'YEPES RUBIANO ALFONSO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-05-16', 554130.00, 'A'), +(84, 1, 'ALVIS RAMIREZ ALFREDO', 191821112, 'CRA 25 CALLE 100', '292@yahoo.com', '2011-02-03', 127662, '2011-09-16', 68190.00, 'A'), +(840, 1, 'ROCA LLANOS GUILLERMO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-08-22', 613060.00, 'A'), +(841, 1, 'RENDON TORRALVO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2011-05-26', 402950.00, 'A'), +(842, 1, 'BLANCO STAND GERMAN ELIECER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-17', 175530.00, 'A'), +(843, 3, 'BERNAL MAYRA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131272, '2010-08-31', 668820.00, 'A'), +(844, 1, 'NAVARRO RUIZ LAZARO GREGORIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 126916, '2008-09-23', 817520.00, 'A'), +(846, 3, 'TUOMINEN OLLI PETTERI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2010-09-01', 953150.00, 'A'), +(847, 1, 'ESPARRAGOZA DE LA ESPRIELLA ENRIQUE ALBERTO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-08-09', 522340.00, 'A'), +(848, 3, 'ARAYA ARIAS JUAN VICENTE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132165, '2011-08-09', 752210.00, 'A'), +(85, 1, 'GARCIA JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-03-01', 989420.00, 'A'), +(850, 1, 'PARDO GOMEZ GERMAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2010-11-25', 713690.00, 'A'), +(851, 1, 'ATIQUE JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2008-03-03', 986250.00, 'A'), +(852, 1, 'HERNANDEZ MEYER EDGARDO DE JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-07-20', 790190.00, 'A'), +(853, 1, 'ZULUAGA DE LEON IVAN JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-07-03', 992210.00, 'A'), +(854, 1, 'VILLARREAL ANGULO ENRIQUE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2011-10-02', 590450.00, 'A'), +(855, 1, 'CELIA MARTINEZ APARICIO GIAN PIERO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 133535, '2011-06-15', 975620.00, 'A'), +(857, 3, 'LIPARI RONALDO LUIS', 191821112, 'CRA 25 CALLE 100', '84@facebook.com', '2011-02-03', 118941, '2010-10-13', 606990.00, 'A'), +(858, 1, 'RAVACHI DAVILA ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2011-05-04', 714620.00, 'A'), +(859, 3, 'PINHEIRO OLIVEIRA LUCIANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 752130.00, 'A'), +(86, 1, 'GOMEZ LIS CARLOS EMILIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2009-12-22', 742520.00, 'A'), +(860, 1, 'PUGLIESE MERCADO LUIGGI ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-08-19', 616780.00, 'A'), +(862, 1, 'JANNA TELLO DANIEL JALIL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 133535, '2010-08-07', 287220.00, 'A'), +(863, 3, 'MATTAR CARLOS HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2009-04-26', 953570.00, 'A'), +(864, 1, 'MOLINA OLIER OSVALDO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132775, '2011-04-18', 906200.00, 'A'), +(865, 1, 'BLANCO MCLIN DAVID ALBERTO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-08-18', 670290.00, 'A'), +(866, 1, 'NARANJO ROMERO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 133535, '2010-08-25', 632860.00, 'A'), +(867, 1, 'SIMANCAS TRUJILLO RICARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-04-07', 153400.00, 'A'), +(868, 1, 'ARENAS USME GERMAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 126881, '2011-10-01', 868430.00, 'A'), +(869, 5, 'DIAZ CORDERO RODRIGO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-11-04', 881950.00, 'A'), +(87, 1, 'CELIS PEREZ HERNANDO ALONSO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-10-05', 744330.00, 'A'), +(870, 3, 'BINDER ZBEDA JONATAHAN JANAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 131083, '2010-04-11', 804460.00, 'A'), +(871, 1, 'HINCAPIE HELLMAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2010-09-15', 376440.00, 'A'), +(872, 3, 'MONTEIRO LANAMAR ALFONSO DE BUSTAMANTE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118942, '2009-03-23', 468820.00, 'A'), +(873, 3, 'AGUDO CARMINATTI REGINA CELIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2011-01-04', 214770.00, 'A'), +(874, 1, 'GONZALEZ VILLALOBOS CRISTIAN MANUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 133535, '2011-09-26', 667400.00, 'A'), +(875, 3, 'GUELL VILLANUEVA ALVARO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2008-04-07', 692670.00, 'A'), +(876, 3, 'GRES ANAIS ROBERTO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2010-12-01', 461180.00, 'A'), +(877, 3, 'GAME MOCOCAIN JUAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-08-07', 227890.00, 'A'), +(878, 1, 'FERRER UCROS FERNANDO LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-06-22', 755900.00, 'A'), +(879, 3, 'HERRERA JAUREGUI CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', '599@facebook.com', '2011-02-03', 131272, '2010-07-22', 95840.00, 'A'), +(880, 3, 'BACALLAO HERNANDEZ ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 126180, '2010-04-21', 211480.00, 'A'), +(881, 1, 'GIJON URBINA JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 144879, '2011-04-03', 769910.00, 'A'), +(882, 3, 'TRUSEN CHRISTOPH WOLFGANG', 191821112, 'CRA 25 CALLE 100', '338@yahoo.com.mx', '2011-02-03', 127591, '2010-10-24', 215100.00, 'A'), +(883, 3, 'ASHOURI ASKANDAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 157861, '2009-03-03', 765760.00, 'A'), +(885, 1, 'ALTAMAR WATTS JAIRO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-08-20', 620170.00, 'A'), +(887, 3, 'QUINTANA BALTIERRA ROBERTO ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 117002, '2011-06-21', 891370.00, 'A'), +(889, 1, 'CARILLO PATINO VICTOR HILARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 130226, '2011-09-06', 354570.00, 'A'), +(89, 1, 'CONTRERAS PULIDO LINA MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-08-06', 237480.00, 'A'), +(890, 1, 'GELVES CANAS GENARO ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-04-02', 355640.00, 'A'), +(891, 3, 'CAGNONI DE MELO PAULA CRISTINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 118777, '2010-12-14', 714490.00, 'A'), +(892, 3, 'MENA AMESTICA PATRICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2011-03-22', 505510.00, 'A'), +(893, 1, 'CAICEDO ROMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-04-07', 384110.00, 'A'), +(894, 1, 'ECHEVERRY TRUJILLO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-06-08', 404010.00, 'A'), +(895, 1, 'CAJIA PEDRAZA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 867700.00, 'A'), +(896, 2, 'PALACIOS OLIVA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-24', 126500.00, 'A'), +(897, 1, 'GUTIERREZ QUINTERO FABIAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2009-10-24', 29380.00, 'A'), +(899, 3, 'COBO GUEVARA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-12-09', 748860.00, 'A'), +(9, 1, 'OSORIO RODRIGUEZ FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2010-09-27', 904420.00, 'A'), +(90, 1, 'LEYTON GONZALEZ FREDY RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-24', 705130.00, 'A'), +(901, 1, 'HERNANDEZ JOSE ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 130266, '2011-05-23', 964010.00, 'A'), +(903, 3, 'GONZALEZ MALDONADO MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 117002, '2010-11-13', 576500.00, 'A'), +(904, 1, 'OCHOA BARRIGA JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 130266, '2011-05-05', 401380.00, 'A'), +('CELL3886', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +(905, 1, 'OSORIO REDONDO JESUS DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127300, '2011-08-11', 277390.00, 'A'), +(906, 1, 'BAYONA BARRIENTOS JEAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-01-25', 182820.00, 'A'), +(907, 1, 'MARTINEZ GOMEZ CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2010-03-11', 81940.00, 'A'), +(908, 1, 'PUELLO LOPEZ GUILLERMO LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-08-12', 861240.00, 'A'), +(909, 1, 'MOGOLLON LONDONO PEDRO LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 132775, '2011-06-22', 60380.00, 'A'), +(91, 1, 'ORTIZ RIOS JAVIER ADOLFO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127591, '2011-05-12', 813200.00, 'A'), +(911, 1, 'HERRERA HOYOS CARLOS FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 132775, '2010-09-12', 409800.00, 'A'), +(912, 3, 'RIM MYUNG HWAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-05-15', 894450.00, 'A'), +(913, 3, 'BIANCO DORIEN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-29', 242820.00, 'A'), +(914, 3, 'FROIMZON WIEN DANIEL', 191821112, 'CRA 25 CALLE 100', '348@yahoo.com', '2011-02-03', 132165, '2010-11-06', 530780.00, 'A'), +(915, 3, 'ALVEZ AZEVEDO JOAO MIGUEL', 191821112, 'CRA 25 CALLE 100', '861@hotmail.es', '2011-02-03', 127591, '2009-06-25', 925420.00, 'A'), +(916, 3, 'CARRASCO DIAZ LUIS ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2011-10-02', 34780.00, 'A'), +(917, 3, 'VIVALLOS MEDINA LEONEL EDMUNDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2010-09-12', 397640.00, 'A'), +(919, 3, 'LASSE ANDRE BARKLIEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 286724, '2011-03-31', 226390.00, 'A'), +(92, 1, 'CUERVO CARDENAS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-09-08', 950630.00, 'A'), +(920, 3, 'BARCELOS PLOTEGHER LILIA MARA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127591, '2011-08-07', 480380.00, 'A'), +(921, 1, 'JARAMILLO ARANGO JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 127559, '2011-06-28', 722700.00, 'A'), +(93, 3, 'RUIZ PRIETO WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 131272, '2011-01-19', 313540.00, 'A'), +(932, 7, 'COMFENALCO ANTIOQUIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 128662, '2011-05-05', 515430.00, 'A'), +(94, 1, 'GALLEGO JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-06-25', 715830.00, 'A'), +(944, 3, 'KARMELIC PAVLOV VESNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 120066, '2010-08-07', 585580.00, 'A'), +(945, 3, 'RAMIREZ BORDON OSCAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 128662, '2010-07-02', 526250.00, 'A'), +(946, 3, 'SORACCO CABEZA RODRIGO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 117002, '2011-07-04', 874490.00, 'A'), +(949, 1, 'GALINDO JORGE ERNESTO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 127300, '2008-07-10', 344110.00, 'A'), +(950, 3, 'DR KNABLE THOMAS ERNST ALBERT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 256231, '2009-11-17', 685430.00, 'A'), +(953, 3, 'VELASQUEZ JANETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-20', 404650.00, 'A'), +(954, 3, 'SOZA REX JOSE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 150903, '2011-05-26', 269790.00, 'A'), +(955, 3, 'FONTANA GAETE JAIME PATRICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 117002, '2011-01-11', 134970.00, 'A'), +(957, 3, 'PEREZ MARTINEZ GRECIA INDIRA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 132958, '2010-08-27', 922610.00, 'A'), +(96, 1, 'FORERO CUBILLOS JORGEARTURO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-07-25', 45020.00, 'A'), +(97, 1, 'SILVA ACOSTA MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-09-19', 309580.00, 'A'), +(978, 3, 'BLUMENTHAL JAIRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 117630, '2010-04-22', 653490.00, 'A'), +(984, 3, 'SUN XIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-01-17', 203630.00, 'A'), +(99, 1, 'CANO GUZMAN ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 127591, '2011-08-23', 135620.00, 'A'), +(999, 1, 'DRAGER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2010-12-22', 882070.00, 'A'), +('CELL1020', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1083', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1153', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL126', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1326', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1329', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL133', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1413', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1426', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1529', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1651', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1760', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1857', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1879', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1902', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1921', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1962', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1992', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2006', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL215', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2307', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2322', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2497', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2641', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2736', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2805', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL281', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2905', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2963', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3029', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3090', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3161', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3302', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3309', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3325', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3372', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3422', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3514', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3562', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3652', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL3661', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4334', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4440', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4547', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4639', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4662', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4698', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL475', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4790', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4838', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4885', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL4939', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5064', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5066', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL51', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5102', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5116', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5192', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5226', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5250', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5282', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL536', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5503', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5506', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL554', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5544', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5595', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5648', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5801', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5821', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6201', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6277', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6288', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6358', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6369', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6408', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6425', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6439', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6509', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6533', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6556', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6731', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6766', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6775', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6802', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6834', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6890', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6953', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6957', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7024', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7216', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL728', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7314', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7431', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7432', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7513', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7522', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7617', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7623', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7708', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7777', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL787', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7907', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7951', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7956', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8004', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8058', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL811', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8136', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8162', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8286', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8300', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8339', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8366', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8389', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8446', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8487', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8546', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8578', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8643', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8774', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8829', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8846', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL8942', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9046', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9110', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL917', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9189', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9241', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9331', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9429', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9434', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9495', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9517', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9558', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9650', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9748', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9830', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9878', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9893', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9945', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('T-Cx200', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx201', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx202', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx203', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx204', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx205', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx206', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx207', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx208', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx209', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx210', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx211', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx212', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx213', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('T-Cx214', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), +('CELL4021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5255', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5730', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2540', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7376', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL5471', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2588', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL570', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2854', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL6683', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL1382', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL2051', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL7086', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9220', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), +('CELL9701', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'); + +-- +-- Data for Name: robots; Type: TABLE DATA; Schema: public; Owner: nanobox +-- + +INSERT INTO robots (id, name, type, year, datetime, text) VALUES +(1, 'Robotina', 'mechanical', 1972, '1972-01-01 00:00:00', 'text'), +(2, 'Astro Boy', 'mechanical', 1952, '1952-01-01 00:00:00', 'text'), +(3, 'Terminator', 'cyborg', 2029, '2029-01-01 00:00:00', 'text'); + +-- +-- Data for Name: robots_parts; Type: TABLE DATA; Schema: public; Owner: nanobox +-- + +INSERT INTO robots_parts (id, robots_id, parts_id) VALUES +(1, 1, 1), +(2, 1, 2), +(3, 1, 3); + +-- +-- Data for Name: subscriptores; Type: TABLE DATA; Schema: public; Owner: nanobox +-- + +INSERT INTO subscriptores (id, email, created_at, status) VALUES +(43, 'fuego@hotmail.com', '2012-04-14 23:30:33', 'P'); + +-- +-- Data for Name: tipo_documento; Type: TABLE DATA; Schema: public; Owner: nanobox +-- + +INSERT INTO tipo_documento (id, detalle) VALUES +(1, 'TIPO'), +(2, 'TIPO'), +(3, 'TIPO'), +(4, 'TIPO'), +(5, 'TIPO'), +(6, 'TIPO'), +(7, 'TIPO'), +(8, 'TIPO'), +(9, 'TIPO'), +(10, 'TIPO'), +(11, 'TIPO'), +(12, 'TIPO'), +(13, 'TIPO'), +(14, 'TIPO'), +(15, 'TIPO'), +(16, 'TIPO'), +(17, 'TIPO'), +(18, 'TIPO'), +(19, 'TIPO'), +(20, 'TIPO'), +(21, 'TIPO'), +(22, 'TIPO'), +(23, 'TIPO'), +(24, 'TIPO'), +(25, 'TIPO'), +(26, 'TIPO'), +(27, 'TIPO'), +(28, 'TIPO'), +(29, 'TIPO'), +(30, 'TIPO'), +(31, 'TIPO'), +(32, 'TIPO'), +(33, 'TIPO'), +(34, 'TIPO'), +(35, 'TIPO'), +(36, 'TIPO'), +(37, 'TIPO'), +(38, 'TIPO'), +(39, 'TIPO'), +(40, 'TIPO'), +(41, 'TIPO'), +(42, 'TIPO'), +(43, 'TIPO'), +(44, 'TIPO'), +(45, 'TIPO'), +(46, 'TIPO'), +(47, 'TIPO'), +(48, 'TIPO'), +(49, 'TIPO'), +(50, 'TIPO'), +(51, 'TIPO'), +(52, 'TIPO'), +(53, 'TIPO'), +(54, 'TIPO'), +(55, 'TIPO'), +(56, 'TIPO'), +(57, 'TIPO'), +(58, 'TIPO'), +(59, 'TIPO'), +(60, 'TIPO'), +(61, 'TIPO'), +(62, 'TIPO'), +(63, 'TIPO'), +(64, 'TIPO'), +(65, 'TIPO'), +(66, 'TIPO'), +(67, 'TIPO'), +(68, 'TIPO'), +(69, 'TIPO'), +(70, 'TIPO'), +(71, 'TIPO'), +(72, 'TIPO'), +(73, 'TIPO'), +(74, 'TIPO'), +(75, 'TIPO'), +(76, 'TIPO'), +(77, 'TIPO'), +(78, 'TIPO'), +(79, 'TIPO'), +(80, 'TIPO'), +(81, 'TIPO'), +(82, 'TIPO'), +(83, 'TIPO'), +(84, 'TIPO'), +(85, 'TIPO'), +(86, 'TIPO'), +(87, 'TIPO'), +(88, 'TIPO'), +(89, 'TIPO'), +(90, 'TIPO'), +(91, 'TIPO'), +(92, 'TIPO'), +(93, 'TIPO'), +(94, 'TIPO'), +(95, 'TIPO'), +(96, 'TIPO'), +(97, 'TIPO'), +(98, 'TIPO'), +(99, 'TIPO'), +(100, 'TIPO'), +(101, 'TIPO'), +(102, 'TIPO'), +(103, 'TIPO'), +(104, 'TIPO'), +(105, 'TIPO'), +(106, 'TIPO'), +(107, 'TIPO'), +(108, 'TIPO'), +(109, 'TIPO'), +(110, 'TIPO'), +(111, 'TIPO'), +(112, 'TIPO'), +(113, 'TIPO'), +(114, 'TIPO'), +(115, 'TIPO'), +(116, 'TIPO'), +(117, 'TIPO'), +(118, 'TIPO'), +(119, 'TIPO'), +(120, 'TIPO'), +(121, 'TIPO'), +(122, 'TIPO'), +(123, 'TIPO'), +(124, 'TIPO'), +(125, 'TIPO'), +(126, 'TIPO'), +(127, 'TIPO'), +(128, 'TIPO'), +(129, 'TIPO'), +(130, 'TIPO'), +(131, 'TIPO'), +(132, 'TIPO'), +(133, 'TIPO'), +(134, 'TIPO'), +(135, 'TIPO'), +(136, 'TIPO'), +(137, 'TIPO'), +(138, 'TIPO'), +(139, 'TIPO'), +(140, 'TIPO'), +(141, 'TIPO'), +(142, 'TIPO'), +(143, 'TIPO'), +(144, 'TIPO'), +(145, 'TIPO'), +(146, 'TIPO'), +(147, 'TIPO'), +(148, 'TIPO'), +(149, 'TIPO'), +(150, 'TIPO'), +(151, 'TIPO'), +(152, 'TIPO'), +(153, 'TIPO'), +(154, 'TIPO'), +(155, 'TIPO'), +(156, 'TIPO'), +(157, 'TIPO'), +(158, 'TIPO'), +(159, 'TIPO'), +(160, 'TIPO'), +(161, 'TIPO'), +(162, 'TIPO'), +(163, 'TIPO'), +(164, 'TIPO'), +(165, 'TIPO'), +(166, 'TIPO'), +(167, 'TIPO'), +(168, 'TIPO'), +(169, 'TIPO'), +(170, 'TIPO'), +(171, 'TIPO'), +(172, 'TIPO'), +(173, 'TIPO'), +(174, 'TIPO'), +(175, 'TIPO'), +(176, 'TIPO'), +(177, 'TIPO'), +(178, 'TIPO'), +(179, 'TIPO'), +(180, 'TIPO'), +(181, 'TIPO'), +(182, 'TIPO'), +(183, 'TIPO'), +(184, 'TIPO'), +(185, 'TIPO'), +(186, 'TIPO'), +(187, 'TIPO'), +(188, 'TIPO'), +(189, 'TIPO'), +(190, 'TIPO'), +(191, 'TIPO'), +(192, 'TIPO'), +(193, 'TIPO'), +(194, 'TIPO'), +(195, 'TIPO'), +(196, 'TIPO'), +(197, 'TIPO'), +(198, 'TIPO'), +(199, 'TIPO'), +(200, 'TIPO'), +(201, 'TIPO'), +(202, 'TIPO'), +(203, 'TIPO'), +(204, 'TIPO'), +(205, 'TIPO'), +(206, 'TIPO'), +(207, 'TIPO'), +(208, 'TIPO'), +(209, 'TIPO'), +(210, 'TIPO'), +(211, 'TIPO'), +(212, 'TIPO'), +(213, 'TIPO'), +(214, 'TIPO'), +(215, 'TIPO'), +(216, 'TIPO'), +(217, 'TIPO'), +(218, 'TIPO'), +(219, 'TIPO'), +(220, 'TIPO'), +(221, 'TIPO'), +(222, 'TIPO'), +(223, 'TIPO'), +(224, 'TIPO'), +(225, 'TIPO'), +(226, 'TIPO'), +(227, 'TIPO'), +(228, 'TIPO'), +(229, 'TIPO'), +(230, 'TIPO'), +(231, 'TIPO'), +(232, 'TIPO'), +(233, 'TIPO'), +(234, 'TIPO'), +(235, 'TIPO'), +(236, 'TIPO'), +(237, 'TIPO'), +(238, 'TIPO'), +(239, 'TIPO'), +(240, 'TIPO'), +(241, 'TIPO'), +(242, 'TIPO'), +(243, 'TIPO'), +(244, 'TIPO'), +(245, 'TIPO'), +(246, 'TIPO'), +(247, 'TIPO'), +(248, 'TIPO'), +(249, 'TIPO'), +(250, 'TIPO'), +(251, 'TIPO'), +(252, 'TIPO'), +(253, 'TIPO'), +(254, 'TIPO'), +(255, 'TIPO'), +(256, 'TIPO'), +(257, 'TIPO'), +(258, 'TIPO'), +(259, 'TIPO'), +(260, 'TIPO'), +(261, 'TIPO'), +(262, 'TIPO'), +(263, 'TIPO'), +(264, 'TIPO'), +(265, 'TIPO'), +(266, 'TIPO'), +(267, 'TIPO'), +(268, 'TIPO'), +(269, 'TIPO'), +(270, 'TIPO'), +(271, 'TIPO'), +(272, 'TIPO'), +(273, 'TIPO'), +(274, 'TIPO'), +(275, 'TIPO'), +(276, 'TIPO'), +(277, 'TIPO'), +(278, 'TIPO'), +(279, 'TIPO'), +(280, 'TIPO'), +(281, 'TIPO'), +(282, 'TIPO'), +(283, 'TIPO'), +(284, 'TIPO'), +(285, 'TIPO'), +(286, 'TIPO'), +(287, 'TIPO'), +(288, 'TIPO'), +(289, 'TIPO'), +(290, 'TIPO'), +(291, 'TIPO'), +(292, 'TIPO'), +(293, 'TIPO'), +(294, 'TIPO'), +(295, 'TIPO'), +(296, 'TIPO'), +(297, 'TIPO'), +(298, 'TIPO'), +(299, 'TIPO'), +(300, 'TIPO'), +(301, 'TIPO'), +(302, 'TIPO'), +(303, 'TIPO'), +(304, 'TIPO'), +(305, 'TIPO'), +(306, 'TIPO'), +(307, 'TIPO'), +(308, 'TIPO'), +(309, 'TIPO'), +(310, 'TIPO'), +(311, 'TIPO'), +(312, 'TIPO'), +(313, 'TIPO'), +(314, 'TIPO'), +(315, 'TIPO'), +(316, 'TIPO'), +(317, 'TIPO'), +(318, 'TIPO'), +(319, 'TIPO'), +(320, 'TIPO'), +(321, 'TIPO'), +(322, 'TIPO'), +(323, 'TIPO'), +(324, 'TIPO'), +(325, 'TIPO'), +(326, 'TIPO'), +(327, 'TIPO'), +(328, 'TIPO'), +(329, 'TIPO'), +(330, 'TIPO'), +(331, 'TIPO'), +(332, 'TIPO'), +(333, 'TIPO'), +(334, 'TIPO'), +(335, 'TIPO'), +(336, 'TIPO'), +(337, 'TIPO'), +(338, 'TIPO'), +(339, 'TIPO'), +(340, 'TIPO'), +(341, 'TIPO'), +(342, 'TIPO'), +(343, 'TIPO'), +(344, 'TIPO'), +(345, 'TIPO'), +(346, 'TIPO'), +(347, 'TIPO'), +(348, 'TIPO'), +(349, 'TIPO'), +(350, 'TIPO'), +(351, 'TIPO'), +(352, 'TIPO'), +(353, 'TIPO'), +(354, 'TIPO'), +(355, 'TIPO'), +(356, 'TIPO'), +(357, 'TIPO'), +(358, 'TIPO'), +(359, 'TIPO'), +(360, 'TIPO'), +(361, 'TIPO'), +(362, 'TIPO'), +(363, 'TIPO'), +(364, 'TIPO'), +(365, 'TIPO'), +(366, 'TIPO'), +(367, 'TIPO'), +(368, 'TIPO'), +(369, 'TIPO'), +(370, 'TIPO'), +(371, 'TIPO'), +(372, 'TIPO'), +(373, 'TIPO'), +(374, 'TIPO'), +(375, 'TIPO'), +(376, 'TIPO'), +(377, 'TIPO'), +(378, 'TIPO'), +(379, 'TIPO'), +(380, 'TIPO'), +(381, 'TIPO'), +(382, 'TIPO'), +(383, 'TIPO'), +(384, 'TIPO'), +(385, 'TIPO'), +(386, 'TIPO'), +(387, 'TIPO'), +(388, 'TIPO'), +(389, 'TIPO'), +(390, 'TIPO'), +(391, 'TIPO'), +(392, 'TIPO'), +(393, 'TIPO'), +(394, 'TIPO'), +(395, 'TIPO'), +(396, 'TIPO'), +(397, 'TIPO'), +(398, 'TIPO'), +(399, 'TIPO'), +(400, 'TIPO'), +(401, 'TIPO'), +(402, 'TIPO'), +(403, 'TIPO'), +(404, 'TIPO'), +(405, 'TIPO'), +(406, 'TIPO'), +(407, 'TIPO'), +(408, 'TIPO'), +(409, 'TIPO'), +(410, 'TIPO'), +(411, 'TIPO'), +(412, 'TIPO'), +(413, 'TIPO'), +(414, 'TIPO'), +(415, 'TIPO'), +(416, 'TIPO'), +(417, 'TIPO'), +(418, 'TIPO'), +(419, 'TIPO'), +(420, 'TIPO'), +(421, 'TIPO'), +(422, 'TIPO'), +(423, 'TIPO'), +(424, 'TIPO'), +(425, 'TIPO'), +(426, 'TIPO'), +(427, 'TIPO'), +(428, 'TIPO'), +(429, 'TIPO'), +(430, 'TIPO'), +(431, 'TIPO'), +(432, 'TIPO'), +(433, 'TIPO'), +(434, 'TIPO'), +(435, 'TIPO'), +(436, 'TIPO'), +(437, 'TIPO'), +(438, 'TIPO'), +(439, 'TIPO'), +(440, 'TIPO'), +(441, 'TIPO'), +(442, 'TIPO'), +(443, 'TIPO'), +(444, 'TIPO'), +(445, 'TIPO'), +(446, 'TIPO'), +(447, 'TIPO'), +(448, 'TIPO'), +(449, 'TIPO'), +(450, 'TIPO'), +(451, 'TIPO'), +(452, 'TIPO'), +(453, 'TIPO'), +(454, 'TIPO'), +(455, 'TIPO'), +(456, 'TIPO'), +(457, 'TIPO'), +(458, 'TIPO'), +(459, 'TIPO'), +(460, 'TIPO'), +(461, 'TIPO'), +(462, 'TIPO'), +(463, 'TIPO'), +(464, 'TIPO'), +(465, 'TIPO'), +(466, 'TIPO'), +(467, 'TIPO'), +(468, 'TIPO'), +(469, 'TIPO'), +(470, 'TIPO'), +(471, 'TIPO'), +(472, 'TIPO'), +(473, 'TIPO'), +(474, 'TIPO'), +(475, 'TIPO'), +(476, 'TIPO'), +(477, 'TIPO'), +(478, 'TIPO'), +(479, 'TIPO'), +(480, 'TIPO'), +(481, 'TIPO'), +(482, 'TIPO'), +(483, 'TIPO'), +(484, 'TIPO'), +(485, 'TIPO'), +(486, 'TIPO'), +(487, 'TIPO'), +(488, 'TIPO'), +(489, 'TIPO'), +(490, 'TIPO'), +(491, 'TIPO'), +(492, 'TIPO'), +(493, 'TIPO'), +(494, 'TIPO'), +(495, 'TIPO'), +(496, 'TIPO'), +(497, 'TIPO'), +(498, 'TIPO'), +(499, 'TIPO'), +(500, 'TIPO'), +(501, 'TIPO'), +(502, 'TIPO'), +(503, 'TIPO'), +(504, 'TIPO'), +(505, 'TIPO'), +(506, 'TIPO'), +(507, 'TIPO'), +(508, 'TIPO'), +(509, 'TIPO'), +(510, 'TIPO'), +(511, 'TIPO'), +(512, 'TIPO'), +(513, 'TIPO'), +(514, 'TIPO'), +(515, 'TIPO'), +(516, 'TIPO'), +(517, 'TIPO'), +(518, 'TIPO'), +(519, 'TIPO'), +(520, 'TIPO'), +(521, 'TIPO'), +(522, 'TIPO'), +(523, 'TIPO'), +(524, 'TIPO'), +(525, 'TIPO'), +(526, 'TIPO'), +(527, 'TIPO'), +(528, 'TIPO'), +(529, 'TIPO'), +(530, 'TIPO'), +(531, 'TIPO'), +(532, 'TIPO'), +(533, 'TIPO'), +(534, 'TIPO'), +(535, 'TIPO'), +(536, 'TIPO'), +(537, 'TIPO'), +(538, 'TIPO'), +(539, 'TIPO'), +(540, 'TIPO'), +(541, 'TIPO'), +(542, 'TIPO'), +(543, 'TIPO'), +(544, 'TIPO'), +(545, 'TIPO'), +(546, 'TIPO'), +(547, 'TIPO'), +(548, 'TIPO'), +(549, 'TIPO'), +(550, 'TIPO'), +(551, 'TIPO'), +(552, 'TIPO'), +(553, 'TIPO'), +(554, 'TIPO'), +(555, 'TIPO'), +(556, 'TIPO'), +(557, 'TIPO'), +(558, 'TIPO'), +(559, 'TIPO'), +(560, 'TIPO'), +(561, 'TIPO'), +(562, 'TIPO'), +(563, 'TIPO'), +(564, 'TIPO'), +(565, 'TIPO'), +(566, 'TIPO'), +(567, 'TIPO'), +(568, 'TIPO'), +(569, 'TIPO'), +(570, 'TIPO'), +(571, 'TIPO'), +(572, 'TIPO'), +(573, 'TIPO'), +(574, 'TIPO'), +(575, 'TIPO'), +(576, 'TIPO'), +(577, 'TIPO'), +(578, 'TIPO'), +(579, 'TIPO'), +(580, 'TIPO'), +(581, 'TIPO'), +(582, 'TIPO'), +(583, 'TIPO'), +(584, 'TIPO'), +(585, 'TIPO'), +(586, 'TIPO'), +(587, 'TIPO'), +(588, 'TIPO'), +(589, 'TIPO'), +(590, 'TIPO'), +(591, 'TIPO'), +(592, 'TIPO'), +(593, 'TIPO'), +(594, 'TIPO'), +(595, 'TIPO'), +(596, 'TIPO'), +(597, 'TIPO'), +(598, 'TIPO'), +(599, 'TIPO'), +(600, 'TIPO'), +(601, 'TIPO'), +(602, 'TIPO'), +(603, 'TIPO'), +(604, 'TIPO'), +(605, 'TIPO'), +(606, 'TIPO'), +(607, 'TIPO'), +(608, 'TIPO'), +(609, 'TIPO'), +(610, 'TIPO'), +(611, 'TIPO'), +(612, 'TIPO'), +(613, 'TIPO'), +(614, 'TIPO'), +(615, 'TIPO'), +(616, 'TIPO'), +(617, 'TIPO'), +(618, 'TIPO'), +(619, 'TIPO'), +(620, 'TIPO'), +(621, 'TIPO'), +(622, 'TIPO'), +(623, 'TIPO'), +(624, 'TIPO'), +(625, 'TIPO'), +(626, 'TIPO'), +(627, 'TIPO'), +(628, 'TIPO'), +(629, 'TIPO'), +(630, 'TIPO'), +(631, 'TIPO'), +(632, 'TIPO'), +(633, 'TIPO'), +(634, 'TIPO'), +(635, 'TIPO'), +(636, 'TIPO'), +(637, 'TIPO'), +(638, 'TIPO'), +(639, 'TIPO'), +(640, 'TIPO'), +(641, 'TIPO'), +(642, 'TIPO'), +(643, 'TIPO'), +(644, 'TIPO'), +(645, 'TIPO'), +(646, 'TIPO'), +(647, 'TIPO'), +(648, 'TIPO'), +(649, 'TIPO'), +(650, 'TIPO'), +(651, 'TIPO'), +(652, 'TIPO'), +(653, 'TIPO'), +(654, 'TIPO'), +(655, 'TIPO'), +(656, 'TIPO'), +(657, 'TIPO'), +(658, 'TIPO'), +(659, 'TIPO'), +(660, 'TIPO'), +(661, 'TIPO'), +(662, 'TIPO'), +(663, 'TIPO'), +(664, 'TIPO'), +(665, 'TIPO'), +(666, 'TIPO'), +(667, 'TIPO'), +(668, 'TIPO'), +(669, 'TIPO'), +(670, 'TIPO'), +(671, 'TIPO'), +(672, 'TIPO'), +(673, 'TIPO'), +(674, 'TIPO'), +(675, 'TIPO'), +(676, 'TIPO'), +(677, 'TIPO'), +(678, 'TIPO'), +(679, 'TIPO'), +(680, 'TIPO'), +(681, 'TIPO'), +(682, 'TIPO'), +(683, 'TIPO'), +(684, 'TIPO'), +(685, 'TIPO'), +(686, 'TIPO'), +(687, 'TIPO'), +(688, 'TIPO'), +(689, 'TIPO'), +(690, 'TIPO'), +(691, 'TIPO'), +(692, 'TIPO'), +(693, 'TIPO'), +(694, 'TIPO'), +(695, 'TIPO'), +(696, 'TIPO'), +(697, 'TIPO'), +(698, 'TIPO'), +(699, 'TIPO'), +(700, 'TIPO'), +(701, 'TIPO'), +(702, 'TIPO'), +(703, 'TIPO'), +(704, 'TIPO'), +(705, 'TIPO'), +(706, 'TIPO'), +(707, 'TIPO'), +(708, 'TIPO'), +(709, 'TIPO'), +(710, 'TIPO'), +(711, 'TIPO'), +(712, 'TIPO'), +(713, 'TIPO'), +(714, 'TIPO'), +(715, 'TIPO'), +(716, 'TIPO'), +(717, 'TIPO'), +(718, 'TIPO'), +(719, 'TIPO'), +(720, 'TIPO'), +(721, 'TIPO'), +(722, 'TIPO'), +(723, 'TIPO'), +(724, 'TIPO'), +(725, 'TIPO'), +(726, 'TIPO'), +(727, 'TIPO'), +(728, 'TIPO'), +(729, 'TIPO'), +(730, 'TIPO'), +(731, 'TIPO'), +(732, 'TIPO'), +(733, 'TIPO'), +(734, 'TIPO'), +(735, 'TIPO'), +(736, 'TIPO'), +(737, 'TIPO'), +(738, 'TIPO'), +(739, 'TIPO'), +(740, 'TIPO'), +(741, 'TIPO'), +(742, 'TIPO'), +(743, 'TIPO'), +(744, 'TIPO'), +(745, 'TIPO'), +(746, 'TIPO'), +(747, 'TIPO'), +(748, 'TIPO'), +(749, 'TIPO'), +(750, 'TIPO'), +(751, 'TIPO'), +(752, 'TIPO'), +(753, 'TIPO'), +(754, 'TIPO'), +(755, 'TIPO'), +(756, 'TIPO'), +(757, 'TIPO'), +(758, 'TIPO'), +(759, 'TIPO'), +(760, 'TIPO'), +(761, 'TIPO'), +(762, 'TIPO'), +(763, 'TIPO'), +(764, 'TIPO'), +(765, 'TIPO'), +(766, 'TIPO'), +(767, 'TIPO'), +(768, 'TIPO'), +(769, 'TIPO'), +(770, 'TIPO'), +(771, 'TIPO'), +(772, 'TIPO'), +(773, 'TIPO'), +(774, 'TIPO'), +(775, 'TIPO'), +(776, 'TIPO'), +(777, 'TIPO'), +(778, 'TIPO'), +(779, 'TIPO'), +(780, 'TIPO'), +(781, 'TIPO'), +(782, 'TIPO'), +(783, 'TIPO'), +(784, 'TIPO'), +(785, 'TIPO'), +(786, 'TIPO'), +(787, 'TIPO'), +(788, 'TIPO'), +(789, 'TIPO'), +(790, 'TIPO'), +(791, 'TIPO'), +(792, 'TIPO'), +(793, 'TIPO'), +(794, 'TIPO'), +(795, 'TIPO'), +(796, 'TIPO'), +(797, 'TIPO'), +(798, 'TIPO'), +(799, 'TIPO'), +(800, 'TIPO'), +(801, 'TIPO'), +(802, 'TIPO'), +(803, 'TIPO'), +(804, 'TIPO'), +(805, 'TIPO'), +(806, 'TIPO'), +(807, 'TIPO'), +(808, 'TIPO'), +(809, 'TIPO'), +(810, 'TIPO'), +(811, 'TIPO'), +(812, 'TIPO'), +(813, 'TIPO'), +(814, 'TIPO'), +(815, 'TIPO'), +(816, 'TIPO'), +(817, 'TIPO'), +(818, 'TIPO'), +(819, 'TIPO'), +(820, 'TIPO'), +(821, 'TIPO'), +(822, 'TIPO'), +(823, 'TIPO'), +(824, 'TIPO'), +(825, 'TIPO'), +(826, 'TIPO'), +(827, 'TIPO'), +(828, 'TIPO'), +(829, 'TIPO'), +(830, 'TIPO'), +(831, 'TIPO'), +(832, 'TIPO'), +(833, 'TIPO'), +(834, 'TIPO'), +(835, 'TIPO'), +(836, 'TIPO'), +(837, 'TIPO'), +(838, 'TIPO'), +(839, 'TIPO'), +(840, 'TIPO'), +(841, 'TIPO'), +(842, 'TIPO'), +(843, 'TIPO'), +(844, 'TIPO'), +(845, 'TIPO'), +(846, 'TIPO'), +(847, 'TIPO'), +(848, 'TIPO'), +(849, 'TIPO'), +(850, 'TIPO'), +(851, 'TIPO'), +(852, 'TIPO'), +(853, 'TIPO'), +(854, 'TIPO'), +(855, 'TIPO'), +(856, 'TIPO'), +(857, 'TIPO'), +(858, 'TIPO'), +(859, 'TIPO'), +(860, 'TIPO'), +(861, 'TIPO'), +(862, 'TIPO'), +(863, 'TIPO'), +(864, 'TIPO'), +(865, 'TIPO'), +(866, 'TIPO'), +(867, 'TIPO'), +(868, 'TIPO'), +(869, 'TIPO'), +(870, 'TIPO'), +(871, 'TIPO'), +(872, 'TIPO'), +(873, 'TIPO'), +(874, 'TIPO'), +(875, 'TIPO'), +(876, 'TIPO'), +(877, 'TIPO'), +(878, 'TIPO'), +(879, 'TIPO'), +(880, 'TIPO'), +(881, 'TIPO'), +(882, 'TIPO'), +(883, 'TIPO'), +(884, 'TIPO'), +(885, 'TIPO'), +(886, 'TIPO'), +(887, 'TIPO'), +(888, 'TIPO'), +(889, 'TIPO'), +(890, 'TIPO'), +(891, 'TIPO'), +(892, 'TIPO'), +(893, 'TIPO'), +(894, 'TIPO'), +(895, 'TIPO'), +(896, 'TIPO'), +(897, 'TIPO'), +(898, 'TIPO'), +(899, 'TIPO'), +(900, 'TIPO'), +(901, 'TIPO'), +(902, 'TIPO'), +(903, 'TIPO'), +(904, 'TIPO'), +(905, 'TIPO'), +(906, 'TIPO'), +(907, 'TIPO'), +(908, 'TIPO'), +(909, 'TIPO'), +(910, 'TIPO'), +(911, 'TIPO'), +(912, 'TIPO'), +(913, 'TIPO'), +(914, 'TIPO'), +(915, 'TIPO'), +(916, 'TIPO'), +(917, 'TIPO'), +(918, 'TIPO'), +(919, 'TIPO'), +(920, 'TIPO'), +(921, 'TIPO'), +(922, 'TIPO'), +(923, 'TIPO'), +(924, 'TIPO'), +(925, 'TIPO'), +(926, 'TIPO'), +(927, 'TIPO'), +(928, 'TIPO'), +(929, 'TIPO'), +(930, 'TIPO'), +(931, 'TIPO'), +(932, 'TIPO'), +(933, 'TIPO'), +(934, 'TIPO'), +(935, 'TIPO'), +(936, 'TIPO'), +(937, 'TIPO'), +(938, 'TIPO'), +(939, 'TIPO'), +(940, 'TIPO'), +(941, 'TIPO'), +(942, 'TIPO'), +(943, 'TIPO'), +(944, 'TIPO'), +(945, 'TIPO'), +(946, 'TIPO'), +(947, 'TIPO'), +(948, 'TIPO'), +(949, 'TIPO'), +(950, 'TIPO'), +(951, 'TIPO'), +(952, 'TIPO'), +(953, 'TIPO'), +(954, 'TIPO'), +(955, 'TIPO'), +(956, 'TIPO'), +(957, 'TIPO'), +(958, 'TIPO'), +(959, 'TIPO'), +(960, 'TIPO'), +(961, 'TIPO'), +(962, 'TIPO'), +(963, 'TIPO'), +(964, 'TIPO'), +(965, 'TIPO'), +(966, 'TIPO'), +(967, 'TIPO'), +(968, 'TIPO'), +(969, 'TIPO'), +(970, 'TIPO'), +(971, 'TIPO'), +(972, 'TIPO'), +(973, 'TIPO'), +(974, 'TIPO'), +(975, 'TIPO'), +(976, 'TIPO'), +(977, 'TIPO'), +(978, 'TIPO'), +(979, 'TIPO'), +(980, 'TIPO'), +(981, 'TIPO'), +(982, 'TIPO'), +(983, 'TIPO'), +(984, 'TIPO'), +(985, 'TIPO'), +(986, 'TIPO'), +(987, 'TIPO'), +(988, 'TIPO'), +(989, 'TIPO'), +(990, 'TIPO'), +(991, 'TIPO'), +(992, 'TIPO'), +(993, 'TIPO'), +(994, 'TIPO'), +(995, 'TIPO'), +(996, 'TIPO'), +(997, 'TIPO'), +(998, 'TIPO'), +(999, 'TIPO'), +(1000, 'TIPO'), +(1001, 'TIPO'), +(1002, 'TIPO'), +(1003, 'TIPO'), +(1004, 'TIPO'), +(1005, 'TIPO'), +(1006, 'TIPO'), +(1007, 'TIPO'), +(1008, 'TIPO'), +(1009, 'TIPO'), +(1010, 'TIPO'), +(1011, 'TIPO'), +(1012, 'TIPO'), +(1013, 'TIPO'), +(1014, 'TIPO'), +(1015, 'TIPO'), +(1016, 'TIPO'), +(1017, 'TIPO'), +(1018, 'TIPO'), +(1019, 'TIPO'), +(1020, 'TIPO'), +(1021, 'TIPO'), +(1022, 'TIPO'), +(1023, 'TIPO'), +(1024, 'TIPO'), +(1025, 'TIPO'), +(1026, 'TIPO'), +(1027, 'TIPO'), +(1028, 'TIPO'), +(1029, 'TIPO'), +(1030, 'TIPO'), +(1031, 'TIPO'), +(1032, 'TIPO'), +(1033, 'TIPO'), +(1034, 'TIPO'), +(1035, 'TIPO'), +(1036, 'TIPO'), +(1037, 'TIPO'), +(1038, 'TIPO'), +(1039, 'TIPO'), +(1040, 'TIPO'), +(1041, 'TIPO'), +(1042, 'TIPO'), +(1043, 'TIPO'), +(1044, 'TIPO'), +(1045, 'TIPO'), +(1046, 'TIPO'), +(1047, 'TIPO'), +(1048, 'TIPO'), +(1049, 'TIPO'), +(1050, 'TIPO'), +(1051, 'TIPO'), +(1052, 'TIPO'), +(1053, 'TIPO'), +(1054, 'TIPO'), +(1055, 'TIPO'), +(1056, 'TIPO'), +(1057, 'TIPO'), +(1058, 'TIPO'), +(1059, 'TIPO'), +(1060, 'TIPO'), +(1061, 'TIPO'), +(1062, 'TIPO'), +(1063, 'TIPO'), +(1064, 'TIPO'), +(1065, 'TIPO'), +(1066, 'TIPO'), +(1067, 'TIPO'), +(1068, 'TIPO'), +(1069, 'TIPO'), +(1070, 'TIPO'), +(1071, 'TIPO'), +(1072, 'TIPO'), +(1073, 'TIPO'), +(1074, 'TIPO'), +(1075, 'TIPO'), +(1076, 'TIPO'), +(1077, 'TIPO'), +(1078, 'TIPO'), +(1079, 'TIPO'), +(1080, 'TIPO'), +(1081, 'TIPO'), +(1082, 'TIPO'), +(1083, 'TIPO'), +(1084, 'TIPO'), +(1085, 'TIPO'), +(1086, 'TIPO'), +(1087, 'TIPO'), +(1088, 'TIPO'), +(1089, 'TIPO'), +(1090, 'TIPO'), +(1091, 'TIPO'), +(1092, 'TIPO'), +(1093, 'TIPO'), +(1094, 'TIPO'), +(1095, 'TIPO'), +(1096, 'TIPO'), +(1097, 'TIPO'), +(1098, 'TIPO'), +(1099, 'TIPO'), +(1100, 'TIPO'), +(1101, 'TIPO'), +(1102, 'TIPO'), +(1103, 'TIPO'), +(1104, 'TIPO'), +(1105, 'TIPO'), +(1106, 'TIPO'), +(1107, 'TIPO'), +(1108, 'TIPO'), +(1109, 'TIPO'), +(1110, 'TIPO'), +(1111, 'TIPO'), +(1112, 'TIPO'), +(1113, 'TIPO'), +(1114, 'TIPO'), +(1115, 'TIPO'), +(1116, 'TIPO'), +(1117, 'TIPO'), +(1118, 'TIPO'), +(1119, 'TIPO'), +(1120, 'TIPO'), +(1121, 'TIPO'), +(1122, 'TIPO'), +(1123, 'TIPO'), +(1124, 'TIPO'), +(1125, 'TIPO'), +(1126, 'TIPO'), +(1127, 'TIPO'), +(1128, 'TIPO'), +(1129, 'TIPO'), +(1130, 'TIPO'), +(1131, 'TIPO'), +(1132, 'TIPO'), +(1133, 'TIPO'), +(1134, 'TIPO'), +(1135, 'TIPO'), +(1136, 'TIPO'), +(1137, 'TIPO'), +(1138, 'TIPO'), +(1139, 'TIPO'), +(1140, 'TIPO'), +(1141, 'TIPO'), +(1142, 'TIPO'), +(1143, 'TIPO'), +(1144, 'TIPO'), +(1145, 'TIPO'), +(1146, 'TIPO'), +(1147, 'TIPO'), +(1148, 'TIPO'), +(1149, 'TIPO'), +(1150, 'TIPO'), +(1151, 'TIPO'), +(1152, 'TIPO'), +(1153, 'TIPO'), +(1154, 'TIPO'), +(1155, 'TIPO'), +(1156, 'TIPO'), +(1157, 'TIPO'), +(1158, 'TIPO'), +(1159, 'TIPO'), +(1160, 'TIPO'), +(1161, 'TIPO'), +(1162, 'TIPO'), +(1163, 'TIPO'), +(1164, 'TIPO'), +(1165, 'TIPO'), +(1166, 'TIPO'), +(1167, 'TIPO'), +(1168, 'TIPO'), +(1169, 'TIPO'), +(1170, 'TIPO'), +(1171, 'TIPO'), +(1172, 'TIPO'), +(1173, 'TIPO'), +(1174, 'TIPO'), +(1175, 'TIPO'), +(1176, 'TIPO'), +(1177, 'TIPO'), +(1178, 'TIPO'), +(1179, 'TIPO'), +(1180, 'TIPO'), +(1181, 'TIPO'), +(1182, 'TIPO'), +(1183, 'TIPO'), +(1184, 'TIPO'), +(1185, 'TIPO'), +(1186, 'TIPO'), +(1187, 'TIPO'), +(1188, 'TIPO'), +(1189, 'TIPO'), +(1190, 'TIPO'), +(1191, 'TIPO'), +(1192, 'TIPO'), +(1193, 'TIPO'), +(1194, 'TIPO'), +(1195, 'TIPO'), +(1196, 'TIPO'), +(1197, 'TIPO'), +(1198, 'TIPO'), +(1199, 'TIPO'), +(1200, 'TIPO'), +(1201, 'TIPO'), +(1202, 'TIPO'), +(1203, 'TIPO'), +(1204, 'TIPO'), +(1205, 'TIPO'), +(1206, 'TIPO'), +(1207, 'TIPO'), +(1208, 'TIPO'), +(1209, 'TIPO'), +(1210, 'TIPO'), +(1211, 'TIPO'), +(1212, 'TIPO'), +(1213, 'TIPO'), +(1214, 'TIPO'), +(1215, 'TIPO'), +(1216, 'TIPO'), +(1217, 'TIPO'), +(1218, 'TIPO'), +(1219, 'TIPO'), +(1220, 'TIPO'), +(1221, 'TIPO'), +(1222, 'TIPO'), +(1223, 'TIPO'), +(1224, 'TIPO'), +(1225, 'TIPO'), +(1226, 'TIPO'), +(1227, 'TIPO'), +(1228, 'TIPO'), +(1229, 'TIPO'), +(1230, 'TIPO'), +(1231, 'TIPO'), +(1232, 'TIPO'), +(1233, 'TIPO'), +(1234, 'TIPO'), +(1235, 'TIPO'), +(1236, 'TIPO'), +(1237, 'TIPO'), +(1238, 'TIPO'), +(1239, 'TIPO'), +(1240, 'TIPO'), +(1241, 'TIPO'), +(1242, 'TIPO'), +(1243, 'TIPO'), +(1244, 'TIPO'), +(1245, 'TIPO'), +(1246, 'TIPO'), +(1247, 'TIPO'), +(1248, 'TIPO'), +(1249, 'TIPO'), +(1250, 'TIPO'), +(1251, 'TIPO'), +(1252, 'TIPO'), +(1253, 'TIPO'), +(1254, 'TIPO'), +(1255, 'TIPO'), +(1256, 'TIPO'), +(1257, 'TIPO'), +(1258, 'TIPO'), +(1259, 'TIPO'), +(1260, 'TIPO'), +(1261, 'TIPO'), +(1262, 'TIPO'), +(1263, 'TIPO'), +(1264, 'TIPO'), +(1265, 'TIPO'), +(1266, 'TIPO'), +(1267, 'TIPO'), +(1268, 'TIPO'), +(1269, 'TIPO'), +(1270, 'TIPO'), +(1271, 'TIPO'), +(1272, 'TIPO'), +(1273, 'TIPO'), +(1274, 'TIPO'), +(1275, 'TIPO'), +(1276, 'TIPO'), +(1277, 'TIPO'), +(1278, 'TIPO'), +(1279, 'TIPO'), +(1280, 'TIPO'), +(1281, 'TIPO'), +(1282, 'TIPO'), +(1283, 'TIPO'), +(1284, 'TIPO'), +(1285, 'TIPO'), +(1286, 'TIPO'), +(1287, 'TIPO'), +(1288, 'TIPO'), +(1289, 'TIPO'), +(1290, 'TIPO'), +(1291, 'TIPO'), +(1292, 'TIPO'), +(1293, 'TIPO'), +(1294, 'TIPO'), +(1295, 'TIPO'), +(1296, 'TIPO'), +(1297, 'TIPO'), +(1298, 'TIPO'), +(1299, 'TIPO'), +(1300, 'TIPO'), +(1301, 'TIPO'), +(1302, 'TIPO'), +(1303, 'TIPO'), +(1304, 'TIPO'), +(1305, 'TIPO'), +(1306, 'TIPO'), +(1307, 'TIPO'), +(1308, 'TIPO'), +(1309, 'TIPO'), +(1310, 'TIPO'), +(1311, 'TIPO'), +(1312, 'TIPO'), +(1313, 'TIPO'), +(1314, 'TIPO'), +(1315, 'TIPO'), +(1316, 'TIPO'), +(1317, 'TIPO'), +(1318, 'TIPO'), +(1319, 'TIPO'), +(1320, 'TIPO'), +(1321, 'TIPO'), +(1322, 'TIPO'), +(1323, 'TIPO'), +(1324, 'TIPO'), +(1325, 'TIPO'), +(1326, 'TIPO'), +(1327, 'TIPO'), +(1328, 'TIPO'), +(1329, 'TIPO'), +(1330, 'TIPO'), +(1331, 'TIPO'), +(1332, 'TIPO'), +(1333, 'TIPO'), +(1334, 'TIPO'), +(1335, 'TIPO'), +(1336, 'TIPO'), +(1337, 'TIPO'), +(1338, 'TIPO'), +(1339, 'TIPO'), +(1340, 'TIPO'), +(1341, 'TIPO'), +(1342, 'TIPO'), +(1343, 'TIPO'), +(1344, 'TIPO'), +(1345, 'TIPO'), +(1346, 'TIPO'), +(1347, 'TIPO'), +(1348, 'TIPO'), +(1349, 'TIPO'), +(1350, 'TIPO'), +(1351, 'TIPO'), +(1352, 'TIPO'), +(1353, 'TIPO'), +(1354, 'TIPO'), +(1355, 'TIPO'), +(1356, 'TIPO'), +(1357, 'TIPO'), +(1358, 'TIPO'), +(1359, 'TIPO'), +(1360, 'TIPO'), +(1361, 'TIPO'), +(1362, 'TIPO'), +(1363, 'TIPO'), +(1364, 'TIPO'), +(1365, 'TIPO'), +(1366, 'TIPO'), +(1367, 'TIPO'), +(1368, 'TIPO'), +(1369, 'TIPO'), +(1370, 'TIPO'), +(1371, 'TIPO'), +(1372, 'TIPO'), +(1373, 'TIPO'), +(1374, 'TIPO'), +(1375, 'TIPO'), +(1376, 'TIPO'), +(1377, 'TIPO'), +(1378, 'TIPO'), +(1379, 'TIPO'), +(1380, 'TIPO'), +(1381, 'TIPO'), +(1382, 'TIPO'), +(1383, 'TIPO'), +(1384, 'TIPO'), +(1385, 'TIPO'), +(1386, 'TIPO'), +(1387, 'TIPO'), +(1388, 'TIPO'), +(1389, 'TIPO'), +(1390, 'TIPO'), +(1391, 'TIPO'), +(1392, 'TIPO'), +(1393, 'TIPO'), +(1394, 'TIPO'), +(1395, 'TIPO'), +(1396, 'TIPO'), +(1397, 'TIPO'), +(1398, 'TIPO'), +(1399, 'TIPO'), +(1400, 'TIPO'), +(1401, 'TIPO'), +(1402, 'TIPO'), +(1403, 'TIPO'), +(1404, 'TIPO'), +(1405, 'TIPO'), +(1406, 'TIPO'), +(1407, 'TIPO'), +(1408, 'TIPO'), +(1409, 'TIPO'), +(1410, 'TIPO'), +(1411, 'TIPO'), +(1412, 'TIPO'), +(1413, 'TIPO'), +(1414, 'TIPO'), +(1415, 'TIPO'), +(1416, 'TIPO'), +(1417, 'TIPO'), +(1418, 'TIPO'), +(1419, 'TIPO'), +(1420, 'TIPO'), +(1421, 'TIPO'), +(1422, 'TIPO'), +(1423, 'TIPO'), +(1424, 'TIPO'), +(1425, 'TIPO'), +(1426, 'TIPO'), +(1427, 'TIPO'), +(1428, 'TIPO'), +(1429, 'TIPO'), +(1430, 'TIPO'), +(1431, 'TIPO'), +(1432, 'TIPO'), +(1433, 'TIPO'), +(1434, 'TIPO'), +(1435, 'TIPO'), +(1436, 'TIPO'), +(1437, 'TIPO'), +(1438, 'TIPO'), +(1439, 'TIPO'), +(1440, 'TIPO'), +(1441, 'TIPO'), +(1442, 'TIPO'), +(1443, 'TIPO'), +(1444, 'TIPO'), +(1445, 'TIPO'), +(1446, 'TIPO'), +(1447, 'TIPO'), +(1448, 'TIPO'), +(1449, 'TIPO'), +(1450, 'TIPO'), +(1451, 'TIPO'), +(1452, 'TIPO'), +(1453, 'TIPO'), +(1454, 'TIPO'), +(1455, 'TIPO'), +(1456, 'TIPO'), +(1457, 'TIPO'), +(1458, 'TIPO'), +(1459, 'TIPO'), +(1460, 'TIPO'), +(1461, 'TIPO'), +(1462, 'TIPO'), +(1463, 'TIPO'), +(1464, 'TIPO'), +(1465, 'TIPO'), +(1466, 'TIPO'), +(1467, 'TIPO'), +(1468, 'TIPO'), +(1469, 'TIPO'), +(1470, 'TIPO'), +(1471, 'TIPO'), +(1472, 'TIPO'), +(1473, 'TIPO'), +(1474, 'TIPO'), +(1475, 'TIPO'), +(1476, 'TIPO'), +(1477, 'TIPO'), +(1478, 'TIPO'), +(1479, 'TIPO'), +(1480, 'TIPO'), +(1481, 'TIPO'), +(1482, 'TIPO'), +(1483, 'TIPO'), +(1484, 'TIPO'), +(1485, 'TIPO'), +(1486, 'TIPO'), +(1487, 'TIPO'), +(1488, 'TIPO'), +(1489, 'TIPO'), +(1490, 'TIPO'), +(1491, 'TIPO'), +(1492, 'TIPO'), +(1493, 'TIPO'), +(1494, 'TIPO'), +(1495, 'TIPO'), +(1496, 'TIPO'), +(1497, 'TIPO'), +(1498, 'TIPO'), +(1499, 'TIPO'), +(1500, 'TIPO'), +(1501, 'TIPO'), +(1502, 'TIPO'), +(1503, 'TIPO'), +(1504, 'TIPO'), +(1505, 'TIPO'), +(1506, 'TIPO'), +(1507, 'TIPO'), +(1508, 'TIPO'), +(1509, 'TIPO'), +(1510, 'TIPO'), +(1511, 'TIPO'), +(1512, 'TIPO'), +(1513, 'TIPO'), +(1514, 'TIPO'), +(1515, 'TIPO'), +(1516, 'TIPO'), +(1517, 'TIPO'), +(1518, 'TIPO'), +(1519, 'TIPO'), +(1520, 'TIPO'), +(1521, 'TIPO'), +(1522, 'TIPO'), +(1523, 'TIPO'), +(1524, 'TIPO'), +(1525, 'TIPO'), +(1526, 'TIPO'), +(1527, 'TIPO'), +(1528, 'TIPO'), +(1529, 'TIPO'), +(1530, 'TIPO'), +(1531, 'TIPO'), +(1532, 'TIPO'), +(1533, 'TIPO'), +(1534, 'TIPO'), +(1535, 'TIPO'), +(1536, 'TIPO'), +(1537, 'TIPO'), +(1538, 'TIPO'), +(1539, 'TIPO'), +(1540, 'TIPO'), +(1541, 'TIPO'), +(1542, 'TIPO'), +(1543, 'TIPO'), +(1544, 'TIPO'), +(1545, 'TIPO'), +(1546, 'TIPO'), +(1547, 'TIPO'), +(1548, 'TIPO'), +(1549, 'TIPO'), +(1550, 'TIPO'), +(1551, 'TIPO'), +(1552, 'TIPO'), +(1553, 'TIPO'), +(1554, 'TIPO'), +(1555, 'TIPO'), +(1556, 'TIPO'), +(1557, 'TIPO'), +(1558, 'TIPO'), +(1559, 'TIPO'), +(1560, 'TIPO'), +(1561, 'TIPO'), +(1562, 'TIPO'), +(1563, 'TIPO'), +(1564, 'TIPO'), +(1565, 'TIPO'), +(1566, 'TIPO'), +(1567, 'TIPO'), +(1568, 'TIPO'), +(1569, 'TIPO'), +(1570, 'TIPO'), +(1571, 'TIPO'), +(1572, 'TIPO'), +(1573, 'TIPO'), +(1574, 'TIPO'), +(1575, 'TIPO'), +(1576, 'TIPO'), +(1577, 'TIPO'), +(1578, 'TIPO'), +(1579, 'TIPO'), +(1580, 'TIPO'), +(1581, 'TIPO'), +(1582, 'TIPO'), +(1583, 'TIPO'), +(1584, 'TIPO'), +(1585, 'TIPO'), +(1586, 'TIPO'), +(1587, 'TIPO'), +(1588, 'TIPO'), +(1589, 'TIPO'), +(1590, 'TIPO'), +(1591, 'TIPO'), +(1592, 'TIPO'), +(1593, 'TIPO'), +(1594, 'TIPO'), +(1595, 'TIPO'), +(1596, 'TIPO'), +(1597, 'TIPO'), +(1598, 'TIPO'), +(1599, 'TIPO'), +(1600, 'TIPO'), +(1601, 'TIPO'), +(1602, 'TIPO'), +(1603, 'TIPO'), +(1604, 'TIPO'), +(1605, 'TIPO'), +(1606, 'TIPO'), +(1607, 'TIPO'), +(1608, 'TIPO'), +(1609, 'TIPO'), +(1610, 'TIPO'), +(1611, 'TIPO'), +(1612, 'TIPO'), +(1613, 'TIPO'), +(1614, 'TIPO'), +(1615, 'TIPO'), +(1616, 'TIPO'), +(1617, 'TIPO'), +(1618, 'TIPO'), +(1619, 'TIPO'), +(1620, 'TIPO'), +(1621, 'TIPO'), +(1622, 'TIPO'), +(1623, 'TIPO'), +(1624, 'TIPO'), +(1625, 'TIPO'), +(1626, 'TIPO'), +(1627, 'TIPO'), +(1628, 'TIPO'), +(1629, 'TIPO'), +(1630, 'TIPO'), +(1631, 'TIPO'), +(1632, 'TIPO'), +(1633, 'TIPO'), +(1634, 'TIPO'), +(1635, 'TIPO'), +(1636, 'TIPO'), +(1637, 'TIPO'), +(1638, 'TIPO'), +(1639, 'TIPO'), +(1640, 'TIPO'), +(1641, 'TIPO'), +(1642, 'TIPO'), +(1643, 'TIPO'), +(1644, 'TIPO'), +(1645, 'TIPO'), +(1646, 'TIPO'), +(1647, 'TIPO'), +(1648, 'TIPO'), +(1649, 'TIPO'), +(1650, 'TIPO'), +(1651, 'TIPO'), +(1652, 'TIPO'), +(1653, 'TIPO'), +(1654, 'TIPO'), +(1655, 'TIPO'), +(1656, 'TIPO'), +(1657, 'TIPO'), +(1658, 'TIPO'), +(1659, 'TIPO'), +(1660, 'TIPO'), +(1661, 'TIPO'), +(1662, 'TIPO'), +(1663, 'TIPO'), +(1664, 'TIPO'), +(1665, 'TIPO'), +(1666, 'TIPO'), +(1667, 'TIPO'), +(1668, 'TIPO'), +(1669, 'TIPO'), +(1670, 'TIPO'), +(1671, 'TIPO'), +(1672, 'TIPO'), +(1673, 'TIPO'), +(1674, 'TIPO'), +(1675, 'TIPO'), +(1676, 'TIPO'), +(1677, 'TIPO'), +(1678, 'TIPO'), +(1679, 'TIPO'), +(1680, 'TIPO'), +(1681, 'TIPO'), +(1682, 'TIPO'), +(1683, 'TIPO'), +(1684, 'TIPO'), +(1685, 'TIPO'), +(1686, 'TIPO'), +(1687, 'TIPO'), +(1688, 'TIPO'), +(1689, 'TIPO'), +(1690, 'TIPO'), +(1691, 'TIPO'), +(1692, 'TIPO'), +(1693, 'TIPO'), +(1694, 'TIPO'), +(1695, 'TIPO'), +(1696, 'TIPO'), +(1697, 'TIPO'), +(1698, 'TIPO'), +(1699, 'TIPO'), +(1700, 'TIPO'), +(1701, 'TIPO'), +(1702, 'TIPO'), +(1703, 'TIPO'), +(1704, 'TIPO'), +(1705, 'TIPO'), +(1706, 'TIPO'), +(1707, 'TIPO'), +(1708, 'TIPO'), +(1709, 'TIPO'), +(1710, 'TIPO'), +(1711, 'TIPO'), +(1712, 'TIPO'), +(1713, 'TIPO'), +(1714, 'TIPO'), +(1715, 'TIPO'), +(1716, 'TIPO'), +(1717, 'TIPO'), +(1718, 'TIPO'), +(1719, 'TIPO'), +(1720, 'TIPO'), +(1721, 'TIPO'), +(1722, 'TIPO'), +(1723, 'TIPO'), +(1724, 'TIPO'), +(1725, 'TIPO'), +(1726, 'TIPO'), +(1727, 'TIPO'), +(1728, 'TIPO'), +(1729, 'TIPO'), +(1730, 'TIPO'), +(1731, 'TIPO'), +(1732, 'TIPO'), +(1733, 'TIPO'), +(1734, 'TIPO'), +(1735, 'TIPO'), +(1736, 'TIPO'), +(1737, 'TIPO'), +(1738, 'TIPO'), +(1739, 'TIPO'), +(1740, 'TIPO'), +(1741, 'TIPO'), +(1742, 'TIPO'), +(1743, 'TIPO'), +(1744, 'TIPO'), +(1745, 'TIPO'), +(1746, 'TIPO'), +(1747, 'TIPO'), +(1748, 'TIPO'), +(1749, 'TIPO'), +(1750, 'TIPO'), +(1751, 'TIPO'), +(1752, 'TIPO'), +(1753, 'TIPO'), +(1754, 'TIPO'), +(1755, 'TIPO'), +(1756, 'TIPO'), +(1757, 'TIPO'), +(1758, 'TIPO'), +(1759, 'TIPO'), +(1760, 'TIPO'), +(1761, 'TIPO'), +(1762, 'TIPO'), +(1763, 'TIPO'), +(1764, 'TIPO'), +(1765, 'TIPO'), +(1766, 'TIPO'), +(1767, 'TIPO'), +(1768, 'TIPO'), +(1769, 'TIPO'), +(1770, 'TIPO'), +(1771, 'TIPO'), +(1772, 'TIPO'), +(1773, 'TIPO'), +(1774, 'TIPO'), +(1775, 'TIPO'), +(1776, 'TIPO'), +(1777, 'TIPO'), +(1778, 'TIPO'), +(1779, 'TIPO'), +(1780, 'TIPO'), +(1781, 'TIPO'), +(1782, 'TIPO'), +(1783, 'TIPO'), +(1784, 'TIPO'), +(1785, 'TIPO'), +(1786, 'TIPO'), +(1787, 'TIPO'), +(1788, 'TIPO'), +(1789, 'TIPO'), +(1790, 'TIPO'), +(1791, 'TIPO'), +(1792, 'TIPO'), +(1793, 'TIPO'), +(1794, 'TIPO'), +(1795, 'TIPO'), +(1796, 'TIPO'), +(1797, 'TIPO'), +(1798, 'TIPO'), +(1799, 'TIPO'), +(1800, 'TIPO'), +(1801, 'TIPO'), +(1802, 'TIPO'), +(1803, 'TIPO'), +(1804, 'TIPO'), +(1805, 'TIPO'), +(1806, 'TIPO'), +(1807, 'TIPO'), +(1808, 'TIPO'), +(1809, 'TIPO'), +(1810, 'TIPO'), +(1811, 'TIPO'), +(1812, 'TIPO'), +(1813, 'TIPO'), +(1814, 'TIPO'), +(1815, 'TIPO'), +(1816, 'TIPO'), +(1817, 'TIPO'), +(1818, 'TIPO'), +(1819, 'TIPO'), +(1820, 'TIPO'), +(1821, 'TIPO'), +(1822, 'TIPO'), +(1823, 'TIPO'), +(1824, 'TIPO'), +(1825, 'TIPO'), +(1826, 'TIPO'), +(1827, 'TIPO'), +(1828, 'TIPO'), +(1829, 'TIPO'), +(1830, 'TIPO'), +(1831, 'TIPO'), +(1832, 'TIPO'), +(1833, 'TIPO'), +(1834, 'TIPO'), +(1835, 'TIPO'), +(1836, 'TIPO'), +(1837, 'TIPO'), +(1838, 'TIPO'), +(1839, 'TIPO'), +(1840, 'TIPO'), +(1841, 'TIPO'), +(1842, 'TIPO'), +(1843, 'TIPO'), +(1844, 'TIPO'), +(1845, 'TIPO'), +(1846, 'TIPO'), +(1847, 'TIPO'), +(1848, 'TIPO'), +(1849, 'TIPO'), +(1850, 'TIPO'), +(1851, 'TIPO'), +(1852, 'TIPO'), +(1853, 'TIPO'), +(1854, 'TIPO'), +(1855, 'TIPO'), +(1856, 'TIPO'), +(1857, 'TIPO'), +(1858, 'TIPO'), +(1859, 'TIPO'), +(1860, 'TIPO'), +(1861, 'TIPO'), +(1862, 'TIPO'), +(1863, 'TIPO'), +(1864, 'TIPO'), +(1865, 'TIPO'), +(1866, 'TIPO'), +(1867, 'TIPO'), +(1868, 'TIPO'), +(1869, 'TIPO'), +(1870, 'TIPO'), +(1871, 'TIPO'), +(1872, 'TIPO'), +(1873, 'TIPO'), +(1874, 'TIPO'), +(1875, 'TIPO'), +(1876, 'TIPO'), +(1877, 'TIPO'), +(1878, 'TIPO'), +(1879, 'TIPO'), +(1880, 'TIPO'), +(1881, 'TIPO'), +(1882, 'TIPO'), +(1883, 'TIPO'), +(1884, 'TIPO'), +(1885, 'TIPO'), +(1886, 'TIPO'), +(1887, 'TIPO'), +(1888, 'TIPO'), +(1889, 'TIPO'), +(1890, 'TIPO'), +(1891, 'TIPO'), +(1892, 'TIPO'), +(1893, 'TIPO'), +(1894, 'TIPO'), +(1895, 'TIPO'), +(1896, 'TIPO'), +(1897, 'TIPO'), +(1898, 'TIPO'), +(1899, 'TIPO'), +(1900, 'TIPO'), +(1901, 'TIPO'), +(1902, 'TIPO'), +(1903, 'TIPO'), +(1904, 'TIPO'), +(1905, 'TIPO'), +(1906, 'TIPO'), +(1907, 'TIPO'), +(1908, 'TIPO'), +(1909, 'TIPO'), +(1910, 'TIPO'), +(1911, 'TIPO'), +(1912, 'TIPO'), +(1913, 'TIPO'), +(1914, 'TIPO'), +(1915, 'TIPO'), +(1916, 'TIPO'), +(1917, 'TIPO'), +(1918, 'TIPO'), +(1919, 'TIPO'), +(1920, 'TIPO'), +(1921, 'TIPO'), +(1922, 'TIPO'), +(1923, 'TIPO'), +(1924, 'TIPO'), +(1925, 'TIPO'), +(1926, 'TIPO'), +(1927, 'TIPO'), +(1928, 'TIPO'), +(1929, 'TIPO'), +(1930, 'TIPO'), +(1931, 'TIPO'), +(1932, 'TIPO'), +(1933, 'TIPO'), +(1934, 'TIPO'), +(1935, 'TIPO'), +(1936, 'TIPO'), +(1937, 'TIPO'), +(1938, 'TIPO'), +(1939, 'TIPO'), +(1940, 'TIPO'), +(1941, 'TIPO'), +(1942, 'TIPO'), +(1943, 'TIPO'), +(1944, 'TIPO'), +(1945, 'TIPO'), +(1946, 'TIPO'), +(1947, 'TIPO'), +(1948, 'TIPO'), +(1949, 'TIPO'), +(1950, 'TIPO'), +(1951, 'TIPO'), +(1952, 'TIPO'), +(1953, 'TIPO'), +(1954, 'TIPO'), +(1955, 'TIPO'), +(1956, 'TIPO'), +(1957, 'TIPO'), +(1958, 'TIPO'), +(1959, 'TIPO'), +(1960, 'TIPO'), +(1961, 'TIPO'), +(1962, 'TIPO'), +(1963, 'TIPO'), +(1964, 'TIPO'), +(1965, 'TIPO'), +(1966, 'TIPO'), +(1967, 'TIPO'), +(1968, 'TIPO'), +(1969, 'TIPO'), +(1970, 'TIPO'), +(1971, 'TIPO'), +(1972, 'TIPO'), +(1973, 'TIPO'), +(1974, 'TIPO'), +(1975, 'TIPO'), +(1976, 'TIPO'), +(1977, 'TIPO'), +(1978, 'TIPO'), +(1979, 'TIPO'), +(1980, 'TIPO'), +(1981, 'TIPO'), +(1982, 'TIPO'), +(1983, 'TIPO'), +(1984, 'TIPO'), +(1985, 'TIPO'), +(1986, 'TIPO'), +(1987, 'TIPO'), +(1988, 'TIPO'), +(1989, 'TIPO'), +(1990, 'TIPO'), +(1991, 'TIPO'), +(1992, 'TIPO'), +(1993, 'TIPO'), +(1994, 'TIPO'), +(1995, 'TIPO'), +(1996, 'TIPO'), +(1997, 'TIPO'), +(1998, 'TIPO'), +(1999, 'TIPO'), +(2000, 'TIPO'); + +-- +-- Name: parts_pkey; Type: CONSTRAINT; Schema: public; Owner: nanobox; Tablespace: +-- + +ALTER TABLE ONLY parts ADD CONSTRAINT parts_pkey PRIMARY KEY (id); + +-- +-- Name: personas_pkey; Type: CONSTRAINT; Schema: public; Owner: nanobox; Tablespace: +-- + +ALTER TABLE ONLY personas ADD CONSTRAINT personas_pkey PRIMARY KEY (cedula); + +-- +-- Name: personnes_pkey; Type: CONSTRAINT; Schema: public; Owner: nanobox; Tablespace: +-- + +ALTER TABLE ONLY personnes ADD CONSTRAINT personnes_pkey PRIMARY KEY (cedula); + +-- +-- Name: prueba_pkey; Type: CONSTRAINT; Schema: public; Owner: nanobox; Tablespace: +-- + +ALTER TABLE ONLY prueba ADD CONSTRAINT prueba_pkey PRIMARY KEY (id); + +-- +-- Name: robots_parts_pkey; Type: CONSTRAINT; Schema: public; Owner: nanobox; Tablespace: +-- + +ALTER TABLE ONLY robots_parts ADD CONSTRAINT robots_parts_pkey PRIMARY KEY (id); + +-- +-- Name: robots_pkey; Type: CONSTRAINT; Schema: public; Owner: nanobox; Tablespace: +-- + +ALTER TABLE ONLY robots ADD CONSTRAINT robots_pkey PRIMARY KEY (id); + +-- +-- Name: subscriptores_pkey; Type: CONSTRAINT; Schema: public; Owner: nanobox; Tablespace: +-- + +ALTER TABLE ONLY subscriptores ADD CONSTRAINT subscriptores_pkey PRIMARY KEY (id); + +-- +-- Name: tipo_documento_pkey; Type: CONSTRAINT; Schema: public; Owner: nanobox; Tablespace: +-- + +ALTER TABLE ONLY tipo_documento ADD CONSTRAINT tipo_documento_pkey PRIMARY KEY (id); + +-- +-- Name: personas_estado_idx; Type: INDEX; Schema: public; Owner: nanobox; Tablespace: +-- + +CREATE INDEX personas_estado_idx ON personas USING btree (estado); + +-- +-- Name: robots_parts_parts_id; Type: INDEX; Schema: public; Owner: nanobox; Tablespace: +-- + +CREATE INDEX robots_parts_parts_id ON robots_parts USING btree (parts_id); + +-- +-- Name: robots_parts_robots_id; Type: INDEX; Schema: public; Owner: nanobox; Tablespace: +-- + +CREATE INDEX robots_parts_robots_id ON robots_parts USING btree (robots_id); + +-- +-- Name: robots_parts_ibfk_1; Type: FK CONSTRAINT; Schema: public; Owner: nanobox +-- + +ALTER TABLE ONLY robots_parts ADD CONSTRAINT robots_parts_ibfk_1 FOREIGN KEY (robots_id) REFERENCES robots(id); + +-- +-- Name: robots_parts_ibfk_2; Type: FK CONSTRAINT; Schema: public; Owner: nanobox +-- + +ALTER TABLE ONLY robots_parts ADD CONSTRAINT robots_parts_ibfk_2 FOREIGN KEY (parts_id) REFERENCES parts(id); + +-- +-- Name: table_with_string_field; Type: TABLE DATA; Schema: public; Owner: nanobox +-- + +DROP TABLE IF EXISTS table_with_string_field; +CREATE TABLE table_with_string_field ( + id integer NOT NULL, + field character varying(70) NOT NULL +); + + + +drop type if exists type_enum_size; +create type type_enum_size as enum +( + 'xs', + 's', + 'm', + 'l', + 'xl' +); + +drop table if exists dialect_table; +create table dialect_table +( + field_primary serial not null + constraint dialect_table_pk + primary key, + field_blob text, + field_bit bit, + field_bit_default bit default B'1'::"bit", + field_bigint bigint, + field_bigint_default bigint default 1, + field_boolean boolean, + field_boolean_default boolean default true, + field_char char(10), + field_char_default char(10) default 'ABC'::bpchar, + field_decimal numeric(10,4), + field_decimal_default numeric(10,4) default 14.5678, + field_enum type_enum_size, + field_integer integer, + field_integer_default integer default 1, + field_json json, + field_float numeric(10,4), + field_float_default numeric(10,4) default 14.5678, + field_date date, + field_date_default date default '2018-10-01':: date, + field_datetime timestamp, + field_datetime_default timestamp default '2018-10-01 12:34:56':: timestamp without time zone, + field_time time, + field_time_default time default '12:34:56':: time without time zone, + field_timestamp timestamp, + field_timestamp_default timestamp default '2018-10-01 12:34:56':: timestamp without time zone, + field_mediumint integer, + field_mediumint_default integer default 1, + field_smallint smallint, + field_smallint_default smallint default 1, + field_tinyint smallint, + field_tinyint_default smallint default 1, + field_longtext text, + field_mediumtext text, + field_tinytext text, + field_text text, + field_varchar varchar(10), + field_varchar_default varchar(10) default 'D':: character varying +); + +alter table public.dialect_table OWNER TO nanobox; + +create index dialect_table_index +on dialect_table (field_bigint); + +create index dialect_table_two_fields +on dialect_table (field_char, field_char_default); + +create unique index dialect_table_unique +on dialect_table (field_integer); + +drop table if exists dialect_table_remote; +create table dialect_table_remote +( + field_primary serial not null + constraint dialect_table_remote_pk + primary key, + field_text varchar(20) +); +alter table public.dialect_table_remote OWNER TO nanobox; + +drop table if exists dialect_table_intermediate; +create table dialect_table_intermediate +( + field_primary_id integer, + field_remote_id integer +); +alter table public.dialect_table_intermediate OWNER TO nanobox; + +alter table only dialect_table_intermediate + add constraint dialect_table_intermediate_primary__fk + foreign key (field_primary_id) + references dialect_table (field_primary) + on update cascade on delete restrict; + +alter table only dialect_table_intermediate + add constraint dialect_table_intermediate_remote__fk + foreign key (field_remote_id) + references dialect_table_remote (field_primary); + +-- +-- Name: public; Type: ACL; Schema: -; Owner: nanobox +-- + +REVOKE ALL ON SCHEMA public FROM PUBLIC; +REVOKE ALL ON SCHEMA public FROM nanobox; +GRANT ALL ON SCHEMA public TO nanobox; +GRANT ALL ON SCHEMA public TO PUBLIC; + +-- +-- PostgreSQL database dump complete +-- diff --git a/tests/_data/schemas/phalcon-schema-sqlite.sql b/tests/_data/assets/db/schemas/sqlite_schema.sql similarity index 100% rename from tests/_data/schemas/phalcon-schema-sqlite.sql rename to tests/_data/assets/db/schemas/sqlite_schema.sql diff --git a/tests/_data/schemas/phalcon-schema-sqlite-translations.sql b/tests/_data/assets/db/schemas/sqlite_translations_schema.sql similarity index 100% rename from tests/_data/schemas/phalcon-schema-sqlite-translations.sql rename to tests/_data/assets/db/schemas/sqlite_translations_schema.sql diff --git a/tests/_data/assets/gs.js b/tests/_data/assets/gs.js deleted file mode 100644 index 596ab51f6c1..00000000000 --- a/tests/_data/assets/gs.js +++ /dev/null @@ -1 +0,0 @@ -var gs; diff --git a/tests/_data/assets/logo.png b/tests/_data/assets/images/logo.png similarity index 100% rename from tests/_data/assets/logo.png rename to tests/_data/assets/images/logo.png diff --git a/tests/_data/assets/phalconphp.jpg b/tests/_data/assets/images/phalconphp.jpg similarity index 100% rename from tests/_data/assets/phalconphp.jpg rename to tests/_data/assets/images/phalconphp.jpg diff --git a/tests/_data/translation/csv/ru_RU.csv b/tests/_data/assets/translation/csv/ru_RU.csv similarity index 100% rename from tests/_data/translation/csv/ru_RU.csv rename to tests/_data/assets/translation/csv/ru_RU.csv diff --git a/tests/_data/translation/gettext/en_US.utf8/LC_MESSAGES/messages.mo b/tests/_data/assets/translation/gettext/en_US.utf8/LC_MESSAGES/messages.mo similarity index 100% rename from tests/_data/translation/gettext/en_US.utf8/LC_MESSAGES/messages.mo rename to tests/_data/assets/translation/gettext/en_US.utf8/LC_MESSAGES/messages.mo diff --git a/tests/_data/translation/gettext/en_US.utf8/LC_MESSAGES/messages.po b/tests/_data/assets/translation/gettext/en_US.utf8/LC_MESSAGES/messages.po similarity index 100% rename from tests/_data/translation/gettext/en_US.utf8/LC_MESSAGES/messages.po rename to tests/_data/assets/translation/gettext/en_US.utf8/LC_MESSAGES/messages.po diff --git a/tests/_data/collections/Bookshelf/Books.php b/tests/_data/collections/Bookshelf/Books.php deleted file mode 100644 index 5d2ce32342d..00000000000 --- a/tests/_data/collections/Bookshelf/Books.php +++ /dev/null @@ -1,17 +0,0 @@ -<?php - -namespace Phalcon\Test\Collections\Bookshelf; - -use Phalcon\Mvc\Collection; - -/** - * Books Collection - * - * @property string title - * @method static Books findFirst($parameters = null) - * - * @package Phalcon\Test\Collections - */ -class Books extends Collection -{ -} diff --git a/tests/_data/collections/Bookshelf/Magazines.php b/tests/_data/collections/Bookshelf/Magazines.php deleted file mode 100644 index b4bc212a084..00000000000 --- a/tests/_data/collections/Bookshelf/Magazines.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php - -namespace Phalcon\Test\Collections\Bookshelf; - -use Phalcon\Mvc\Collection; - -/** - * Books Collection - * - * @property string title - * - * @package Phalcon\Test\Collections - */ -class Magazines extends Collection -{ -} diff --git a/tests/_data/collections/Bookshelf/NotACollection.php b/tests/_data/collections/Bookshelf/NotACollection.php deleted file mode 100644 index 7c38501e814..00000000000 --- a/tests/_data/collections/Bookshelf/NotACollection.php +++ /dev/null @@ -1,7 +0,0 @@ -<?php - -namespace Phalcon\Test\Collections\Bookshelf; - -class NotACollection -{ -} diff --git a/tests/_data/collections/People.php b/tests/_data/collections/People.php deleted file mode 100644 index dd95061f42e..00000000000 --- a/tests/_data/collections/People.php +++ /dev/null @@ -1,70 +0,0 @@ -<?php - -namespace Phalcon\Test\Collections; - -use Phalcon\Mvc\Collection; -use Phalcon\Validation; -use Phalcon\Validation\Validator\Email; -use Phalcon\Validation\Validator\Exclusionin; -use Phalcon\Validation\Validator\Inclusionin; -use Phalcon\Validation\Validator\PresenceOf; -use Phalcon\Validation\Validator\Regex; -use Phalcon\Validation\Validator\StringLength; -use Phalcon\Validation\Validator\Uniqueness; - -class People extends Collection -{ - public function validation() - { - $validator = new Validation(); - - $validator->add( - "created_at", - new PresenceOf() - ); - - $validator->add( - "email", - new StringLength( - [ - 'min' => '7', - 'max' => '50', - ] - ) - ); - - $validator->add( - "email", - new Email() - ); - - $validator->add( - "status", - new Exclusionin( - [ - 'domain' => ['P', 'I', 'w'], - ] - ) - ); - - $validator->add( - "status", - new Inclusionin( - [ - 'domain' => ['A', 'y', 'Z'], - ] - ) - ); - - $validator->add( - "status", - new Regex( - [ - 'pattern' => '/[A-Z]/', - ] - ) - ); - - return $this->validate($validator); - } -} diff --git a/tests/_data/collections/Robots.php b/tests/_data/collections/Robots.php deleted file mode 100644 index 789ff17e80a..00000000000 --- a/tests/_data/collections/Robots.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php -/** - * Created by PhpStorm. - * User: User - * Date: 2017-01-11 - * Time: 17:32 - */ - -namespace Phalcon\Test\Collections; - -use Phalcon\Mvc\Collection; - -/** - * Robots Collection - * - * @method static Robots[] find(array $parameters = null) - * @method static Robots findFirst(array $parameters = null) - * - * @property \MongoId _id - * @property string name - * @property string type - * @property int year - * @property string datetime - * @property string deleted - * @property string text - * - * @package Phalcon\Test\Collections - */ -class Robots extends Collection -{ -} diff --git a/tests/_data/collections/Songs.php b/tests/_data/collections/Songs.php deleted file mode 100644 index 2ac8ee7222d..00000000000 --- a/tests/_data/collections/Songs.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -namespace Phalcon\Test\Collections; - -use Phalcon\Mvc\Collection; - -/** - * Songs Collection - * - * @method static Songs[] find(array $parameters = null) - * @method static Songs findFirst(array $parameters = null) - * - * @property \MongoId _id - * @property string artist - * @property string name - * - * @package Phalcon\Test\Collections - */ -class Songs extends Collection -{ -} diff --git a/tests/_data/collections/Store/Songs.php b/tests/_data/collections/Store/Songs.php deleted file mode 100644 index e3c8b04d3f9..00000000000 --- a/tests/_data/collections/Store/Songs.php +++ /dev/null @@ -1,70 +0,0 @@ -<?php - -namespace Phalcon\Test\Collections\Store; - -class Songs extends \Phalcon\Mvc\Collection -{ - protected function _trace($method) - { - if (!isset($this->trace[$method])) { - $this->trace[$method] = 1; - } else { - $this->trace[$method]++; - } - } - - protected function beforeValidation() - { - $this->_trace(__METHOD__); - } - - protected function beforeValidationOnCreate() - { - $this->_trace(__METHOD__); - } - - protected function afterValidationOnCreate() - { - $this->_trace(__METHOD__); - } - - protected function afterValidationOnUpdate() - { - $this->_trace(__METHOD__); - } - - protected function afterValidation() - { - $this->_trace(__METHOD__); - } - - protected function beforeSave() - { - $this->_trace(__METHOD__); - } - - protected function beforeCreate() - { - $this->_trace(__METHOD__); - } - - protected function beforeUpdate() - { - $this->_trace(__METHOD__); - } - - protected function afterCreate() - { - $this->_trace(__METHOD__); - } - - protected function afterUpdate() - { - $this->_trace(__METHOD__); - } - - protected function afterSave() - { - $this->_trace(__METHOD__); - } -} diff --git a/tests/_data/collections/Subs.php b/tests/_data/collections/Subs.php deleted file mode 100644 index f43772ed216..00000000000 --- a/tests/_data/collections/Subs.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Phalcon\Test\Collections; - -use Phalcon\Mvc\Collection; -use Phalcon\Mvc\Collection\Behavior\SoftDelete; -use Phalcon\Mvc\Collection\Behavior\Timestampable; - -/** - * Subs Collection - * - * @method static Subs[] find(array $parameters = null) - * @method static Subs findFirst(array $parameters = null) - * - * @property \MongoId _id - * @property string email - * @property string status - * @property string created_at - * - * @package Phalcon\Test\Collections - */ -class Subs extends Collection -{ - public function getSource() - { - return 'subs'; - } - - public function initialize() - { - $this->addBehavior(new Timestampable([ - 'beforeCreate' => [ - 'field' => 'created_at', - 'format' => 'Y-m-d H:i:s' - ] - ])); - - $this->addBehavior(new SoftDelete([ - 'field' => 'status', - 'value' => 'D' - ])); - } -} diff --git a/tests/_data/collections/Users.php b/tests/_data/collections/Users.php deleted file mode 100644 index 6ce269bc8a2..00000000000 --- a/tests/_data/collections/Users.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Phalcon\Test\Collections; - -use Phalcon\Mvc\Collection; -use Phalcon\Validation; -use Phalcon\Validation\Validator\Email; -use Phalcon\Validation\Validator\ExclusionIn; -use Phalcon\Validation\Validator\InclusionIn; -use Phalcon\Validation\Validator\PresenceOf; -use Phalcon\Validation\Validator\Regex; -use Phalcon\Validation\Validator\StringLength; -use Phalcon\Validation\Validator\Uniqueness; - -class Users extends Collection -{ - public function validation() - { - $validator = new Validation(); - $validator - ->add('created_at', new PresenceOf()) - - ->add('email', new StringLength(['min' => '7', 'max' => '50'])) - ->add('email', new Email()) - ->add('email', new Uniqueness()) - - ->add('status', new ExclusionIn(['domain' => ['P', 'I', 'w']])) - ->add('status', new InclusionIn(['domain' => ['A', 'y', 'Z']])) - ->add('status', new Regex(['pattern' => '/[A-Z]/'])); - - return $this->validate($validator); - } -} diff --git a/tests/_data/config/callbacks.yml b/tests/_data/config/callbacks.yml deleted file mode 100644 index 80e79faeeed..00000000000 --- a/tests/_data/config/callbacks.yml +++ /dev/null @@ -1,4 +0,0 @@ -application: - controllersDir: !approot /app/controllers/ -database: - password: !decrypt some_decrypted_password_here diff --git a/tests/_data/config/config.php b/tests/_data/config/config.php deleted file mode 100644 index 000314dc65e..00000000000 --- a/tests/_data/config/config.php +++ /dev/null @@ -1,40 +0,0 @@ -<?php - -return [ - "phalcon" => [ - "baseuri" => "/phalcon/" - ], - "models" => [ - "metadata" => "memory" - ], - "database" => [ - "adapter" => "mysql", - "host" => "localhost", - "username" => "user", - "password" => "passwd", - "name" => "demo" - ], - "test" => [ - "parent" => [ - "property" => 1, - "property2" => "yeah" - ], - ], - 'issue-12725' => [ - 'channel' => [ - 'handlers' => [ - 0 => [ - 'name' => 'stream', - 'level' => 'debug', - 'fingersCrossed' => 'info', - 'filename' => 'channel.log' - ], - 1 => [ - 'name' => 'redis', - 'level' => 'debug', - 'fingersCrossed' => 'info' - ] - ] - ] - ] - ]; diff --git a/tests/_data/config/factory.ini b/tests/_data/config/factory.ini deleted file mode 100644 index ee4c5d145c6..00000000000 --- a/tests/_data/config/factory.ini +++ /dev/null @@ -1,57 +0,0 @@ -[annotations] -prefix = annotations -lieftime = 3600 -adapter = apc - -[cache_backend] -prefix = app-data -frontend.adapter = data -frontend.lifetime = 172800 -adapter = apc - -[cache_frontend] -lifetime = 172800 -adapter = data - -[config] -filePath = PATH_DATA"config/config" -filePathExtension = PATH_DATA"config/config.ini" -adapter = ini - -[database] -host = TEST_DB_MYSQL_HOST -username = TEST_DB_MYSQL_USER -password = TEST_DB_MYSQL_PASSWD -dbname = TEST_DB_MYSQL_NAME -port = TEST_DB_MYSQL_PORT -charset = TEST_DB_MYSQL_CHARSET -adapter = mysql - -[image] -file = PATH_DATA"assets/phalconphp.jpg" -adapter = imagick - -[logger] -name = PATH_OUTPUT"tests/logs/factory.log" -adapter = file - -[paginator] -limit = 20 -page = 1 -adapter = queryBuilder - -[session] -uniqueId = my-private-app -host = 127.0.0.1 -port = 11211 -persistent = true -lifetime = 3600 -prefix = my_ -adapter = memcache - -[translate] -locale = en_US.utf8 -defaultDomain = messages -directory = PATH_DATA"translation/gettext" -category = LC_MESSAGES -adapter = gettext diff --git a/tests/_data/controllers/AboutController.php b/tests/_data/controllers/AboutController.php deleted file mode 100644 index e28ab4ca7d4..00000000000 --- a/tests/_data/controllers/AboutController.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -class AboutController -{ - /** - * @Get("/about/team") - */ - public function teamAction() - { - } - - /** - * @Post("/about/team") - */ - public function teamPostAction() - { - } -} diff --git a/tests/_data/controllers/ControllerBase.php b/tests/_data/controllers/ControllerBase.php deleted file mode 100644 index 042d1cf9000..00000000000 --- a/tests/_data/controllers/ControllerBase.php +++ /dev/null @@ -1,9 +0,0 @@ -<?php - -class ControllerBase extends \Phalcon\Mvc\Controller -{ - public function serviceAction() - { - return "hello"; - } -} diff --git a/tests/_data/controllers/FailureController.php b/tests/_data/controllers/FailureController.php deleted file mode 100644 index c2bd3af054b..00000000000 --- a/tests/_data/controllers/FailureController.php +++ /dev/null @@ -1,9 +0,0 @@ -<?php - -class FailureController extends ControllerBase -{ - public function exceptionAction() - { - throw new \Exception('failure by exception'); - } -} diff --git a/tests/_data/controllers/MainController.php b/tests/_data/controllers/MainController.php deleted file mode 100644 index 520b11989a1..00000000000 --- a/tests/_data/controllers/MainController.php +++ /dev/null @@ -1,11 +0,0 @@ -<?php - -class MainController -{ - /** - * @Get("/") - */ - public function indexAction() - { - } -} diff --git a/tests/_data/controllers/NamespacedAnnotationController.php b/tests/_data/controllers/NamespacedAnnotationController.php deleted file mode 100644 index c71aefb8ad8..00000000000 --- a/tests/_data/controllers/NamespacedAnnotationController.php +++ /dev/null @@ -1,13 +0,0 @@ -<?php - -namespace MyNamespace\Controllers; - -class NamespacedAnnotationController -{ - /** - * @Get("/") - */ - public function indexAction() - { - } -} diff --git a/tests/_data/controllers/ProductsController.php b/tests/_data/controllers/ProductsController.php deleted file mode 100644 index 33c1aeb8be1..00000000000 --- a/tests/_data/controllers/ProductsController.php +++ /dev/null @@ -1,26 +0,0 @@ -<?php - -class ProductsController -{ - /** - * @Get("/products") - */ - public function indexAction() - { - } - - /** - * @Get("/products/edit/{id:[0-9]+}", name="edit-product") - * @param int $id - */ - public function editAction($id) - { - } - - /** - * @Route("/products/save", methods={"POST", "PUT"}, name="save-product") - */ - public function saveAction() - { - } -} diff --git a/tests/_data/controllers/RobotsController.php b/tests/_data/controllers/RobotsController.php deleted file mode 100644 index 74b74363ba6..00000000000 --- a/tests/_data/controllers/RobotsController.php +++ /dev/null @@ -1,29 +0,0 @@ -<?php - -/** - * @RoutePrefix("/robots") - */ -class RobotsController -{ - /** - * @Get("/") - */ - public function indexAction() - { - } - - /** - * @Get("/edit/{id:[0-9]+}", name="edit-robot") - * @param int $id - */ - public function editAction($id) - { - } - - /** - * @Route("/save", methods={"POST", "PUT"}, name="save-robot") - */ - public function saveAction() - { - } -} diff --git a/tests/_data/controllers/Test10Controller.php b/tests/_data/controllers/Test10Controller.php deleted file mode 100644 index 40b837c4669..00000000000 --- a/tests/_data/controllers/Test10Controller.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -use Phalcon\Mvc\Controller; -use Phalcon\Test\Models\People; -use Phalcon\Test\Models\Robots; - -class Test10Controller extends Controller -{ - public function viewAction(People $people) - { - return $people; - } - - public function multipleAction(People $people, Robots $robots) - { - return [$people, $robots]; - } -} diff --git a/tests/_data/controllers/Test11Controller.php b/tests/_data/controllers/Test11Controller.php deleted file mode 100644 index 09e3f445209..00000000000 --- a/tests/_data/controllers/Test11Controller.php +++ /dev/null @@ -1,26 +0,0 @@ -<?php - -use Phalcon\Mvc\Controller; -use Phalcon\Mvc\Model\Binder\BindableInterface; -use Phalcon\Mvc\Model; - -class Test11Controller extends Controller implements BindableInterface -{ - public function getModelName() - { - return [ - 'people' => 'Phalcon\Test\Models\People', - 'robots' => 'Phalcon\Test\Models\Robots' - ]; - } - - public function viewAction(Model $people) - { - return $people; - } - - public function multipleAction(Model $people, Model $robots) - { - return [$people, $robots]; - } -} diff --git a/tests/_data/controllers/Test12Controller.php b/tests/_data/controllers/Test12Controller.php deleted file mode 100644 index 1a29163ec2c..00000000000 --- a/tests/_data/controllers/Test12Controller.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -class Test12Controller extends \Phalcon\Mvc\Controller -{ - public function afterBinding() - { - return false; - } - - public function indexAction() - { - return 'test'; - } -} diff --git a/tests/_data/controllers/Test1Controller.php b/tests/_data/controllers/Test1Controller.php deleted file mode 100644 index 4b8e9bf3105..00000000000 --- a/tests/_data/controllers/Test1Controller.php +++ /dev/null @@ -1,5 +0,0 @@ -<?php - -class Test1Controller extends \Phalcon\Mvc\Controller -{ -} diff --git a/tests/_data/controllers/Test2Controller.php b/tests/_data/controllers/Test2Controller.php deleted file mode 100644 index a87cb586a30..00000000000 --- a/tests/_data/controllers/Test2Controller.php +++ /dev/null @@ -1,44 +0,0 @@ -<?php - -class Test2Controller extends Phalcon\Mvc\Controller -{ - public function indexAction() - { - } - - public function otherAction() - { - } - - public function anotherAction() - { - return 100; - } - - public function anotherTwoAction($a, $b) - { - return $a + $b; - } - - public function anotherThreeAction() - { - $this->dispatcher->forward( - [ - 'controller' => 'test2', - 'action' => 'anotherfour' - ] - ); - - return; - } - - public function anotherFourAction() - { - return 120; - } - - public function anotherFiveAction() - { - return $this->dispatcher->getParam('param1') + $this->dispatcher->getParam('param2'); - } -} diff --git a/tests/_data/controllers/Test3Controller.php b/tests/_data/controllers/Test3Controller.php deleted file mode 100644 index 82395272311..00000000000 --- a/tests/_data/controllers/Test3Controller.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -class Test3Controller extends Phalcon\Controller -{ - public function indexAction() - { - } - - public function otherAction() - { - } - - public function anotherAction() - { - return 100; - } - - public function coolvarAction() - { - $this->view->setVar("a_cool_var", "got-the-life"); - } - - public function queryAction() - { - $robot = Robots::findFirst(); - $this->view->setVar("name", $robot->name); - } -} diff --git a/tests/_data/controllers/Test4Controller.php b/tests/_data/controllers/Test4Controller.php deleted file mode 100644 index b2d868cfb44..00000000000 --- a/tests/_data/controllers/Test4Controller.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -class Test4Controller extends Phalcon\Mvc\Controller -{ - public function requestAction() - { - return $this->request->getPost('email', 'email'); - } - - public function viewAction() - { - return $this->view->setParamToView('born', 'this'); - } -} diff --git a/tests/_data/controllers/Test5Controller.php b/tests/_data/controllers/Test5Controller.php deleted file mode 100644 index bbc0303ea64..00000000000 --- a/tests/_data/controllers/Test5Controller.php +++ /dev/null @@ -1,9 +0,0 @@ -<?php - -class Test5Controller extends Phalcon\Mvc\Controller -{ - public function notFoundAction() - { - return 'not-found'; - } -} diff --git a/tests/_data/controllers/Test6Controller.php b/tests/_data/controllers/Test6Controller.php deleted file mode 100644 index 7bfe98cb2d2..00000000000 --- a/tests/_data/controllers/Test6Controller.php +++ /dev/null @@ -1,5 +0,0 @@ -<?php - -class Test6Controller extends Phalcon\Mvc\Controller -{ -} diff --git a/tests/_data/controllers/Test7Controller.php b/tests/_data/controllers/Test7Controller.php deleted file mode 100644 index 4acfaef0e6b..00000000000 --- a/tests/_data/controllers/Test7Controller.php +++ /dev/null @@ -1,5 +0,0 @@ -<?php - -class Test7Controller extends ControllerBase -{ -} diff --git a/tests/_data/controllers/Test8Controller.php b/tests/_data/controllers/Test8Controller.php deleted file mode 100644 index 9303ecffe80..00000000000 --- a/tests/_data/controllers/Test8Controller.php +++ /dev/null @@ -1,9 +0,0 @@ -<?php - -class Test8Controller extends Phalcon\Mvc\Controller -{ - public function buggyAction() - { - throw new Exception("This is an uncaught exception"); - } -} diff --git a/tests/_data/controllers/Test9Controller.php b/tests/_data/controllers/Test9Controller.php deleted file mode 100644 index faabb0d7a2a..00000000000 --- a/tests/_data/controllers/Test9Controller.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -use Phalcon\Mvc\Model; -use Phalcon\Mvc\Controller; -use Phalcon\Mvc\Controller\BindModelInterface; - -class Test9Controller extends Controller implements BindModelInterface -{ - public static function getModelName() - { - return 'Phalcon\Test\Models\People'; - } - - public function viewAction(Model $model) - { - return $model; - } -} diff --git a/tests/_data/db/DateTime.php b/tests/_data/db/DateTime.php deleted file mode 100644 index 9f895724d8a..00000000000 --- a/tests/_data/db/DateTime.php +++ /dev/null @@ -1,11 +0,0 @@ -<?php - -namespace Phalcon\Test\Db; - -class DateTime extends \DateTime -{ - public function __toString() - { - return $this->format('Y-m-d H:i:s'); - } -} diff --git a/tests/_data/debug/ClassProperties.php b/tests/_data/debug/ClassProperties.php deleted file mode 100644 index 8624b7f54c0..00000000000 --- a/tests/_data/debug/ClassProperties.php +++ /dev/null @@ -1,10 +0,0 @@ -<?php - -namespace Phalcon\Test\Debug; - -class ClassProperties -{ - public $foo = 1; - protected $bar = 2; - private $baz = 3; -} diff --git a/tests/_data/di/SomeService.php b/tests/_data/di/SomeService.php deleted file mode 100644 index c0a318a92d2..00000000000 --- a/tests/_data/di/SomeService.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php -/** - * SomeService class - * - * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class SomeService -{ -} diff --git a/tests/_data/fixtures/Acl/TestResourceAware.php b/tests/_data/fixtures/Acl/TestResourceAware.php new file mode 100644 index 00000000000..ee27ac66724 --- /dev/null +++ b/tests/_data/fixtures/Acl/TestResourceAware.php @@ -0,0 +1,53 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Acl; + +use Phalcon\Acl\ResourceAware; + +class TestResourceAware implements ResourceAware +{ + /** + * @var int + */ + protected $user; + + /** + * @var string + */ + protected $resourceName; + + /** + * @param $user + * @param $resourceName + */ + public function __construct($user, $resourceName) + { + $this->user = $user; + $this->resourceName = $resourceName; + } + + /** + * @return int + */ + public function getUser() + { + return $this->user; + } + + /** + * @return string + */ + public function getResourceName(): string + { + return $this->resourceName; + } +} diff --git a/tests/_data/fixtures/Acl/TestRoleAware.php b/tests/_data/fixtures/Acl/TestRoleAware.php new file mode 100644 index 00000000000..9e794c57914 --- /dev/null +++ b/tests/_data/fixtures/Acl/TestRoleAware.php @@ -0,0 +1,53 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Acl; + +use Phalcon\Acl\RoleAware; + +class TestRoleAware implements RoleAware +{ + /** + * @var int + */ + protected $id; + + /** + * @var string + */ + protected $roleName; + + /** + * @param $id + * @param $roleName + */ + public function __construct($id, $roleName) + { + $this->id = $id; + $this->roleName = $roleName; + } + + /** + * @return int + */ + public function getId() + { + return $this->id; + } + + /** + * @return string + */ + public function getRoleName(): string + { + return $this->roleName; + } +} diff --git a/tests/_data/fixtures/Acl/TestRoleResourceAware.php b/tests/_data/fixtures/Acl/TestRoleResourceAware.php new file mode 100644 index 00000000000..f99aa69f6e6 --- /dev/null +++ b/tests/_data/fixtures/Acl/TestRoleResourceAware.php @@ -0,0 +1,69 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Acl; + +use Phalcon\Acl\ResourceAware; +use Phalcon\Acl\RoleAware; + +class TestRoleResourceAware implements RoleAware, ResourceAware +{ + /** + * @var int + */ + protected $user; + + /** + * @var string + */ + protected $resourceName; + + /** + * @var string + */ + protected $roleName; + + /** + * @param $user + * @param $resourceName + * @param $roleName + */ + public function __construct($user, $resourceName, $roleName) + { + $this->user = $user; + $this->resourceName = $resourceName; + $this->roleName = $roleName; + } + + /** + * @return string + */ + public function getResourceName(): string + { + return $this->resourceName; + } + + /** + * @return string + */ + public function getRoleName(): string + { + return $this->roleName; + } + + /** + * @return int + */ + public function getUser() + { + return $this->user; + } +} diff --git a/tests/_data/fixtures/Annotations/TestClass.php b/tests/_data/fixtures/Annotations/TestClass.php new file mode 100644 index 00000000000..cae0abc887c --- /dev/null +++ b/tests/_data/fixtures/Annotations/TestClass.php @@ -0,0 +1,116 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +/** + * TestClass + * + * This is a test class, it's useful to make tests + * + * @Simple + * @SingleParam("Param") + * @MultipleParams("First", Second, 1, 1.1, -10, false, true, null) + * @Params({"key1", "key2", "key3"}); + * @HashParams({"key1": "value", "key2": "value", "key3": "value"}); + * @NamedParams(first=some, second=other); + * @AlternativeNamedParams(first: some, second: other); + * @AlternativeHashParams({key1="value", "key2"=value, "key3"="value"}); + * @RecursiveHash({key1="value", "key2"=value, "key3"=[1, 2, 3, 4]}); + */ +class TestClass +{ + /** + * This is a property string + * + * @var string + * @Simple + * @SingleParam("Param") + * @MultipleParams("First", Second, 1, 1.1, -10, false, true, null) + */ + public $testProp1; + + /** + * + */ + public $testProp2; + + /** + * @Simple @SingleParam("Param") @MultipleParams("First", Second, 1, 1.1, + * -10, false, true, null) + */ + public $testProp3; + + /** + * @Simple @SingleParam( + * "Param") @MultipleParams( "First", + * Second, 1, 1.1 + * ,-10, + * false, true, + * null) + */ + public $testProp4; + + public $testProp5; + + /** + * This is a comment + */ + public $testProp6; + + /** + * This is a property string + * + * @return string + * @Simple + * @SingleParam("Param") + * @MultipleParams("First", Second, 1, 1.1, -10, false, true, null) + * @NamedMultipleParams(first: "First", second: Second) + */ + public function testMethod1() + { + } + + /** + * + */ + public function testMethod2() + { + } + + /** + * @Simple @SingleParam("Param") @MultipleParams("First", Second, 1, 1.1, + * -10, false, true, null) + */ + public function testMethod3() + { + } + + /** + * @Simple @SingleParam( + * "Param") @MultipleParams( "First", + * Second, 1, 1.1 + * ,-10, + * false, true, + * null) + */ + public function testMethod4() + { + } + + /** @Simple a good comment between annotations @SingleParam( + * "Param") this is extra content @MultipleParams( "First", + * Second, 1, 1.1 ,-10, + * false, true, + * null) more content here + */ + public function testMethod5() + { + } +} diff --git a/tests/_data/fixtures/Annotations/TestClassNs.php b/tests/_data/fixtures/Annotations/TestClassNs.php new file mode 100644 index 00000000000..b0c2a5a85e6 --- /dev/null +++ b/tests/_data/fixtures/Annotations/TestClassNs.php @@ -0,0 +1,31 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace User; + +/** + * User\TestClassNs + * + * This class has annotations but it's in a namespace + * + * @Simple + * @SingleParam("Param") + * @MultipleParams("First", Second, 1, 1.1, -10, false, true, null) + * @Params({"key1", "key2", "key3"}); + * @HashParams({"key1": "value", "key2": "value", "key3": "value"}); + * @NamedParams(first=some, second=other); + * @AlternativeNamedParams(first: some, second: other); + * @AlternativeHashParams({key1="value", "key2"=value, "key3"="value"}); + * @RecursiveHash({key1="value", "key2"=value, "key3"=[1, 2, 3, 4]}); + */ +class TestClassNs +{ +} diff --git a/tests/_data/fixtures/Annotations/TestInvalid.php b/tests/_data/fixtures/Annotations/TestInvalid.php new file mode 100644 index 00000000000..956e8969aaf --- /dev/null +++ b/tests/_data/fixtures/Annotations/TestInvalid.php @@ -0,0 +1,17 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +/** + * @Invalid( + */ +class TestInvalid +{ +} diff --git a/tests/_data/fixtures/Assets/TrimFilter.php b/tests/_data/fixtures/Assets/TrimFilter.php new file mode 100644 index 00000000000..b7d42679061 --- /dev/null +++ b/tests/_data/fixtures/Assets/TrimFilter.php @@ -0,0 +1,32 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Assets; + +use Phalcon\Assets\FilterInterface; + +class TrimFilter implements FilterInterface +{ + /** + * Trims the input + * + * @author Nikolaos Dimopoulos <nikos@phalconphp.com> + * @since 2014-10-05 + * + * @param string $content + * + * @return string + */ + public function filter(string $content): string + { + return str_replace(["\n", "\r", " ", "\t"], '', $content); + } +} diff --git a/tests/_data/fixtures/Assets/UppercaseFilter.php b/tests/_data/fixtures/Assets/UppercaseFilter.php new file mode 100644 index 00000000000..fae3aea2982 --- /dev/null +++ b/tests/_data/fixtures/Assets/UppercaseFilter.php @@ -0,0 +1,32 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Assets; + +use Phalcon\Assets\FilterInterface; + +class UppercaseFilter implements FilterInterface +{ + /** + * Converts the input to uppercase + * + * @author Nikolaos Dimopoulos <nikos@phalconphp.com> + * @since 2014-10-05 + * + * @param string $content + * + * @return string + */ + public function filter(string $content): string + { + return strtoupper($content); + } +} diff --git a/tests/_data/fixtures/Db/Profiler.php b/tests/_data/fixtures/Db/Profiler.php new file mode 100644 index 00000000000..1ab37fed4c6 --- /dev/null +++ b/tests/_data/fixtures/Db/Profiler.php @@ -0,0 +1,35 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Db; + +use Phalcon\Db\Profiler as PhalconProfiler; + +class Profiler extends PhalconProfiler +{ + + private $points = 0; + + public function beforeStartProfile($profile) + { + $this->points++; + } + + public function afterEndProfile($profile) + { + $this->points--; + } + + public function getPoints() + { + return $this->points; + } +} diff --git a/tests/_data/fixtures/Db/ProfilerListener.php b/tests/_data/fixtures/Db/ProfilerListener.php new file mode 100644 index 00000000000..5e240f8ca95 --- /dev/null +++ b/tests/_data/fixtures/Db/ProfilerListener.php @@ -0,0 +1,43 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Db; + +class ProfilerListener +{ + + protected $profiler; + + public function __construct() + { + $this->profiler = new Profiler(); + } + + public function beforeQuery($event, $connection) + { + $this->profiler->startProfile( + $connection->getSQLStatement(), + $connection->getSQLVariables(), + $connection->getSQLBindTypes() + ); + } + + public function afterQuery($event, $connection) + { + $this->profiler->stopProfile(); + } + + public function getProfiler() + { + return $this->profiler; + } +} + diff --git a/tests/_fixtures/mysql/example1.sql b/tests/_data/fixtures/Db/mysql/example1.sql similarity index 100% rename from tests/_fixtures/mysql/example1.sql rename to tests/_data/fixtures/Db/mysql/example1.sql diff --git a/tests/_fixtures/mysql/example2.sql b/tests/_data/fixtures/Db/mysql/example2.sql similarity index 100% rename from tests/_fixtures/mysql/example2.sql rename to tests/_data/fixtures/Db/mysql/example2.sql diff --git a/tests/_fixtures/mysql/example3.sql b/tests/_data/fixtures/Db/mysql/example3.sql similarity index 100% rename from tests/_fixtures/mysql/example3.sql rename to tests/_data/fixtures/Db/mysql/example3.sql diff --git a/tests/_fixtures/mysql/example4.sql b/tests/_data/fixtures/Db/mysql/example4.sql similarity index 100% rename from tests/_fixtures/mysql/example4.sql rename to tests/_data/fixtures/Db/mysql/example4.sql diff --git a/tests/_fixtures/mysql/example5.sql b/tests/_data/fixtures/Db/mysql/example5.sql similarity index 100% rename from tests/_fixtures/mysql/example5.sql rename to tests/_data/fixtures/Db/mysql/example5.sql diff --git a/tests/_fixtures/postgresql/example1.sql b/tests/_data/fixtures/Db/postgresql/example1.sql similarity index 100% rename from tests/_fixtures/postgresql/example1.sql rename to tests/_data/fixtures/Db/postgresql/example1.sql diff --git a/tests/_fixtures/postgresql/example2.sql b/tests/_data/fixtures/Db/postgresql/example2.sql similarity index 100% rename from tests/_fixtures/postgresql/example2.sql rename to tests/_data/fixtures/Db/postgresql/example2.sql diff --git a/tests/_fixtures/postgresql/example3.sql b/tests/_data/fixtures/Db/postgresql/example3.sql similarity index 100% rename from tests/_fixtures/postgresql/example3.sql rename to tests/_data/fixtures/Db/postgresql/example3.sql diff --git a/tests/_fixtures/postgresql/example4.sql b/tests/_data/fixtures/Db/postgresql/example4.sql similarity index 100% rename from tests/_fixtures/postgresql/example4.sql rename to tests/_data/fixtures/Db/postgresql/example4.sql diff --git a/tests/_fixtures/postgresql/example5.sql b/tests/_data/fixtures/Db/postgresql/example5.sql similarity index 100% rename from tests/_fixtures/postgresql/example5.sql rename to tests/_data/fixtures/Db/postgresql/example5.sql diff --git a/tests/_fixtures/postgresql/example6.sql b/tests/_data/fixtures/Db/postgresql/example6.sql similarity index 100% rename from tests/_fixtures/postgresql/example6.sql rename to tests/_data/fixtures/Db/postgresql/example6.sql diff --git a/tests/_fixtures/postgresql/example7.sql b/tests/_data/fixtures/Db/postgresql/example7.sql similarity index 100% rename from tests/_fixtures/postgresql/example7.sql rename to tests/_data/fixtures/Db/postgresql/example7.sql diff --git a/tests/_fixtures/postgresql/example8.sql b/tests/_data/fixtures/Db/postgresql/example8.sql similarity index 100% rename from tests/_fixtures/postgresql/example8.sql rename to tests/_data/fixtures/Db/postgresql/example8.sql diff --git a/tests/_fixtures/postgresql/example9.sql b/tests/_data/fixtures/Db/postgresql/example9.sql similarity index 100% rename from tests/_fixtures/postgresql/example9.sql rename to tests/_data/fixtures/Db/postgresql/example9.sql diff --git a/tests/_fixtures/sqlite/example1.sql b/tests/_data/fixtures/Db/sqlite/example1.sql similarity index 100% rename from tests/_fixtures/sqlite/example1.sql rename to tests/_data/fixtures/Db/sqlite/example1.sql diff --git a/tests/_fixtures/sqlite/example2.sql b/tests/_data/fixtures/Db/sqlite/example2.sql similarity index 100% rename from tests/_fixtures/sqlite/example2.sql rename to tests/_data/fixtures/Db/sqlite/example2.sql diff --git a/tests/_fixtures/sqlite/example3.sql b/tests/_data/fixtures/Db/sqlite/example3.sql similarity index 100% rename from tests/_fixtures/sqlite/example3.sql rename to tests/_data/fixtures/Db/sqlite/example3.sql diff --git a/tests/_fixtures/sqlite/example4.sql b/tests/_data/fixtures/Db/sqlite/example4.sql similarity index 100% rename from tests/_fixtures/sqlite/example4.sql rename to tests/_data/fixtures/Db/sqlite/example4.sql diff --git a/tests/_fixtures/sqlite/example5.sql b/tests/_data/fixtures/Db/sqlite/example5.sql similarity index 100% rename from tests/_fixtures/sqlite/example5.sql rename to tests/_data/fixtures/Db/sqlite/example5.sql diff --git a/tests/_fixtures/sqlite/example6.sql b/tests/_data/fixtures/Db/sqlite/example6.sql similarity index 100% rename from tests/_fixtures/sqlite/example6.sql rename to tests/_data/fixtures/Db/sqlite/example6.sql diff --git a/tests/_fixtures/sqlite/example7.sql b/tests/_data/fixtures/Db/sqlite/example7.sql similarity index 100% rename from tests/_fixtures/sqlite/example7.sql rename to tests/_data/fixtures/Db/sqlite/example7.sql diff --git a/tests/_fixtures/sqlite/example8.sql b/tests/_data/fixtures/Db/sqlite/example8.sql similarity index 100% rename from tests/_fixtures/sqlite/example8.sql rename to tests/_data/fixtures/Db/sqlite/example8.sql diff --git a/tests/_data/di/InjectableComponent.php b/tests/_data/fixtures/Di/InjectableComponent.php similarity index 93% rename from tests/_data/di/InjectableComponent.php rename to tests/_data/fixtures/Di/InjectableComponent.php index 6f066d8f76b..ac53ecad52c 100644 --- a/tests/_data/di/InjectableComponent.php +++ b/tests/_data/fixtures/Di/InjectableComponent.php @@ -5,7 +5,7 @@ * @copyright (c) 2011-2017 Phalcon Team * @link http://www.phalconphp.com * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> + * @author Phalcon Team <team@phalconphp.com> * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file LICENSE.txt diff --git a/tests/_data/di/SimpleComponent.php b/tests/_data/fixtures/Di/SimpleComponent.php similarity index 90% rename from tests/_data/di/SimpleComponent.php rename to tests/_data/fixtures/Di/SimpleComponent.php index f597573a033..ec7051afa42 100644 --- a/tests/_data/di/SimpleComponent.php +++ b/tests/_data/fixtures/Di/SimpleComponent.php @@ -5,7 +5,7 @@ * @copyright (c) 2011-2017 Phalcon Team * @link http://www.phalconphp.com * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> + * @author Phalcon Team <team@phalconphp.com> * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file LICENSE.txt diff --git a/tests/_data/di/SomeComponent.php b/tests/_data/fixtures/Di/SomeComponent.php similarity index 92% rename from tests/_data/di/SomeComponent.php rename to tests/_data/fixtures/Di/SomeComponent.php index 14473f91206..0755bfdc0c8 100644 --- a/tests/_data/di/SomeComponent.php +++ b/tests/_data/fixtures/Di/SomeComponent.php @@ -5,7 +5,7 @@ * @copyright (c) 2011-2017 Phalcon Team * @link http://www.phalconphp.com * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> + * @author Phalcon Team <team@phalconphp.com> * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file LICENSE.txt diff --git a/tests/_data/di/SomeServiceProvider.php b/tests/_data/fixtures/Di/SomeServiceProvider.php similarity index 100% rename from tests/_data/di/SomeServiceProvider.php rename to tests/_data/fixtures/Di/SomeServiceProvider.php diff --git a/tests/_data/di/services.php b/tests/_data/fixtures/Di/services.php similarity index 100% rename from tests/_data/di/services.php rename to tests/_data/fixtures/Di/services.php diff --git a/tests/_data/di/services.yml b/tests/_data/fixtures/Di/services.yml similarity index 100% rename from tests/_data/di/services.yml rename to tests/_data/fixtures/Di/services.yml diff --git a/tests/_data/fixtures/Dump/class_properties.txt b/tests/_data/fixtures/Dump/class_properties.txt new file mode 100644 index 00000000000..e120d906e78 --- /dev/null +++ b/tests/_data/fixtures/Dump/class_properties.txt @@ -0,0 +1,7 @@ +Object Phalcon\Test\Unit\Debug\Helper\ClassProperties ( + ->foo (public) = Integer (1) + ->bar (protected) = Integer (2) + ->baz (private) = Integer (3) + Phalcon\Test\Unit\Debug\Helper\ClassProperties methods: (0) ( + ) +) diff --git a/tests/_data/events/ComponentX.php b/tests/_data/fixtures/Events/ComponentX.php similarity index 95% rename from tests/_data/events/ComponentX.php rename to tests/_data/fixtures/Events/ComponentX.php index afafdaee84e..8c04417c1ea 100644 --- a/tests/_data/events/ComponentX.php +++ b/tests/_data/fixtures/Events/ComponentX.php @@ -8,7 +8,7 @@ * @copyright (c) 2011-2017 Phalcon Team * @link https://www.phalconphp.com * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> + * @author Phalcon Team <team@phalconphp.com> * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file LICENSE.txt diff --git a/tests/_data/events/ComponentY.php b/tests/_data/fixtures/Events/ComponentY.php similarity index 94% rename from tests/_data/events/ComponentY.php rename to tests/_data/fixtures/Events/ComponentY.php index 079883fe069..ece815e4ac3 100644 --- a/tests/_data/events/ComponentY.php +++ b/tests/_data/fixtures/Events/ComponentY.php @@ -8,7 +8,7 @@ * @copyright (c) 2011-2017 Phalcon Team * @link https://www.phalconphp.com * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> + * @author Phalcon Team <team@phalconphp.com> * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file LICENSE.txt diff --git a/tests/_data/fixtures/Forms/ContactFormPublicProperties.php b/tests/_data/fixtures/Forms/ContactFormPublicProperties.php new file mode 100644 index 00000000000..6e1e1fceebe --- /dev/null +++ b/tests/_data/fixtures/Forms/ContactFormPublicProperties.php @@ -0,0 +1,18 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Forms; + +class ContactFormPublicProperties +{ + public $telephone = '+44 124 82122'; + public $address = 'Cr. 12 #12-82'; +} diff --git a/tests/_data/fixtures/Forms/ContactFormSettersGetters.php b/tests/_data/fixtures/Forms/ContactFormSettersGetters.php new file mode 100644 index 00000000000..bb09b1b02d8 --- /dev/null +++ b/tests/_data/fixtures/Forms/ContactFormSettersGetters.php @@ -0,0 +1,39 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Forms; + +class ContactFormSettersGetters +{ + private $telephone = '+44 124 82122'; + + private $address = 'Cr. 12 #12-82'; + + public function getTelephone() + { + return $this->telephone; + } + + public function setTelephone($telephone) + { + $this->telephone = $telephone; + } + + public function getAddress() + { + return $this->address; + } + + public function setAddress($address) + { + $this->address = $address; + } +} diff --git a/tests/_data/fixtures/Helpers/TagHelper.php b/tests/_data/fixtures/Helpers/TagHelper.php new file mode 100644 index 00000000000..0fec7df4383 --- /dev/null +++ b/tests/_data/fixtures/Helpers/TagHelper.php @@ -0,0 +1,190 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Helpers; + +use Phalcon\Tag; +use UnitTester; + +class TagHelper extends TagSetup +{ + protected $function = ''; + protected $inputType = ''; + + /** + * Tests Phalcon\Tag :: weekField() - string as a parameter + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagFieldStringParameter(UnitTester $I) + { + $I->wantToTest(sprintf('Tag - %s() - string parameter', $this->function)); + $options = 'x_name'; + $expected = '<input type="' . $this->inputType . '" id="x_name" name="x_name"'; + + $this->testFieldParameter($I, $this->function, $options, $expected); + $this->testFieldParameter($I, $this->function, $options, $expected, true); + } + + /** + * Tests Phalcon\Tag :: weekField() - array as a parameter + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagFieldArrayParameter(UnitTester $I) + { + $I->wantToTest(sprintf('Tag - %s() - array parameter', $this->function)); + $options = [ + 'x_name', + 'class' => 'x_class', + ]; + $expected = '<input type="' . $this->inputType . '" id="x_name" name="x_name" class="x_class"'; + + $this->testFieldParameter($I, $this->function, $options, $expected); + $this->testFieldParameter($I, $this->function, $options, $expected, true); + } + + /** + * Tests Phalcon\Tag :: weekField() - array as a parameters and id in it + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagFieldArrayParameterWithId(UnitTester $I) + { + $I->wantToTest(sprintf('Tag - %s() - array parameter with id', $this->function)); + $options = [ + 'x_name', + 'id' => 'x_id', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = '<input type="' . $this->inputType . '" id="x_id" name="x_name" ' + . 'class="x_class" size="10"'; + + $this->testFieldParameter($I, $this->function, $options, $expected); + $this->testFieldParameter($I, $this->function, $options, $expected, true); + } + + /** + * Tests Phalcon\Tag :: weekField() - name and no id in parameter + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagFieldArrayParameterWithNameNoId(UnitTester $I) + { + $I->wantToTest(sprintf('Tag - %s() - array parameter with name no id', $this->function)); + $options = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = '<input type="' . $this->inputType . '" id="x_name" name="x_other" class="x_class" size="10"'; + + $this->testFieldParameter($I, $this->function, $options, $expected); + $this->testFieldParameter($I, $this->function, $options, $expected, true); + } + + /** + * Tests Phalcon\Tag :: weekField() - setDefault + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagFieldWithSetDefault(UnitTester $I) + { + $I->wantToTest(sprintf('Tag - %s() - setDefault()', $this->function)); + $options = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = '<input type="' . $this->inputType . '" id="x_name" ' + . 'name="x_other" value="x_value" class="x_class" size="10"'; + + $this->testFieldParameter($I, $this->function, $options, $expected, false, 'setDefault'); + $this->testFieldParameter($I, $this->function, $options, $expected, true, 'setDefault'); + } + + /** + * Tests Phalcon\Tag :: weekField() - displayTo + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagFieldWithDisplayTo(UnitTester $I) + { + $I->wantToTest(sprintf('Tag - %s() - string displayTo()', $this->function)); + $options = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = '<input type="' . $this->inputType . '" id="x_name" ' + . 'name="x_other" value="x_value" class="x_class" ' + . 'size="10"'; + + $this->testFieldParameter($I, $this->function, $options, $expected, false, 'displayTo'); + $this->testFieldParameter($I, $this->function, $options, $expected, true, 'displayTo'); + } + + /** + * Tests Phalcon\Tag :: weekField() - setDefault and element not present + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagFieldWithSetDefaultElementNotPresent(UnitTester $I) + { + $I->wantToTest(sprintf('Tag - %s() - setDefault() element not present', $this->function)); + $options = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = '<input type="' . $this->inputType . '" id="x_name" ' + . 'name="x_other" value="x_value" class="x_class" ' + . 'size="10"'; + + $this->testFieldParameter($I, $this->function, $options, $expected, false, 'setDefault'); + $this->testFieldParameter($I, $this->function, $options, $expected, true, 'setDefault'); + } + + /** + * Tests Phalcon\Tag :: weekField() - displayTo and element not present + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagFieldWithDisplayToElementNotPresent(UnitTester $I) + { + $I->wantToTest(sprintf('Tag - %s() - displayTo() element not present', $this->function)); + $options = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = '<input type="' . $this->inputType . '" id="x_name" ' + . 'name="x_other" value="x_value" class="x_class" ' + . 'size="10"'; + + $this->testFieldParameter($I, $this->function, $options, $expected, false, 'displayTo'); + $this->testFieldParameter($I, $this->function, $options, $expected, true, 'displayTo'); + } +} diff --git a/tests/_data/fixtures/Helpers/TagSetup.php b/tests/_data/fixtures/Helpers/TagSetup.php new file mode 100644 index 00000000000..f8d09466ee1 --- /dev/null +++ b/tests/_data/fixtures/Helpers/TagSetup.php @@ -0,0 +1,242 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Helpers; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use UnitTester; + +class TagSetup +{ + use DiTrait; + + protected $doctype = Tag::HTML5; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $this->newDi(); + $this->setDiEscaper(); + $this->setDiUrl(); + Tag::resetInput(); + $this->doctype = $this->docTypeStringToConstant(Tag::getDocType()); + } + + /** + * Converts a doctype code to a string output + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-04 + * + * @param $doctype + * + * @return string + */ + protected function docTypeStringToConstant(string $doctype) + { + $tab = "\t"; + + switch ($doctype) { + case '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">' . PHP_EOL: + return Tag::HTML32; + case '<!DOCTYPE html ' . + 'PUBLIC "-//W3C//DTD HTML 4.01//EN"' . + PHP_EOL . + $tab . + '"http://www.w3.org/TR/html4/strict.dtd">' . PHP_EOL: + return Tag::HTML401_STRICT; + case '<!DOCTYPE html ' . + 'PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"' . + PHP_EOL . + $tab . + '"http://www.w3.org/TR/html4/loose.dtd">' . PHP_EOL: + return Tag::HTML401_TRANSITIONAL; + case '<!DOCTYPE html ' . + 'PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"' . + PHP_EOL . + $tab . + '"http://www.w3.org/TR/html4/frameset.dtd">' . + PHP_EOL: + return Tag::HTML401_FRAMESET; + case '<!DOCTYPE html ' . + 'PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"' . + PHP_EOL . + $tab . + '"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">' . + PHP_EOL: + return Tag::XHTML10_STRICT; + case '<!DOCTYPE html ' . + 'PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"' . + PHP_EOL . + $tab . + '"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">' . + PHP_EOL: + return Tag::XHTML10_TRANSITIONAL; + case '<!DOCTYPE html ' . + 'PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"' . + PHP_EOL . + $tab . + '"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">' . + PHP_EOL: + return Tag::XHTML10_FRAMESET; + case '<!DOCTYPE html ' . + 'PUBLIC "-//W3C//DTD XHTML 1.1//EN"' . + PHP_EOL . + $tab . + '"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">' . + PHP_EOL: + return Tag::XHTML11; + case '<!DOCTYPE html ' . + 'PUBLIC "-//W3C//DTD XHTML 2.0//EN"' . + PHP_EOL . + $tab . + '"http://www.w3.org/MarkUp/DTD/xhtml2.dtd">' . + PHP_EOL: + return Tag::XHTML20; + default: + return Tag::HTML5; + } + } + + /** + * @param UnitTester $I + */ + public function _after(UnitTester $I) + { + Tag::setDocType($this->doctype); + Tag::resetInput(); + } + + /** + * Runs a doctype test, one for each doctype + * + * @param UnitTester $I + * @param int $doctype + */ + protected function runDoctypeTest(UnitTester $I, int $doctype) + { + Tag::resetInput(); + Tag::setDocType($doctype); + + $expected = $this->docTypeToString($doctype); + $actual = Tag::getDocType(); + $I->assertEquals($expected, $actual); + } + + /** + * Converts a doctype code to a string output + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-04 + * + * @param int $doctype + * + * @return string + */ + protected function docTypeToString(int $doctype) + { + $tab = "\t"; + + switch ($doctype) { + case 1: + return '<!DOCTYPE html ' . + 'PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">' . PHP_EOL; + case 2: + return '<!DOCTYPE html ' . + 'PUBLIC "-//W3C//DTD HTML 4.01//EN"' . + PHP_EOL . + $tab . + '"http://www.w3.org/TR/html4/strict.dtd">' . PHP_EOL; + case 3: + return '<!DOCTYPE html ' . + 'PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"' . + PHP_EOL . + $tab . + '"http://www.w3.org/TR/html4/loose.dtd">' . PHP_EOL; + case 4: + return '<!DOCTYPE html ' . + 'PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"' . + PHP_EOL . + $tab . + '"http://www.w3.org/TR/html4/frameset.dtd">' . + PHP_EOL; + case 6: + return '<!DOCTYPE html ' . + 'PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"' . + PHP_EOL . + $tab . + '"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">' . + PHP_EOL; + case 7: + return '<!DOCTYPE html ' . + 'PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"' . + PHP_EOL . + $tab . + '"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">' . + PHP_EOL; + case 8: + return '<!DOCTYPE html ' . + 'PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"' . + PHP_EOL . + $tab . + '"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">' . + PHP_EOL; + case 9: + return '<!DOCTYPE html ' . + 'PUBLIC "-//W3C//DTD XHTML 1.1//EN"' . + PHP_EOL . + $tab . + '"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">' . + PHP_EOL; + case 10: + return '<!DOCTYPE html ' . + 'PUBLIC "-//W3C//DTD XHTML 2.0//EN"' . + PHP_EOL . + $tab . + '"http://www.w3.org/MarkUp/DTD/xhtml2.dtd">' . + PHP_EOL; + default: + return '<!DOCTYPE html>' . PHP_EOL; + } + } + + /** + * Runs the test for a Tag::$function with $options + * + * @param \UnitTester $I + * @param string $function + * @param mixed $options + * @param string $expected + * @param boolean $xhtml + * @param string $set + */ + protected function testFieldParameter(UnitTester $I, $function, $options, $expected, $xhtml = false, $set = '') + { + if ($xhtml) { + Tag::setDocType(Tag::XHTML10_STRICT); + $expected .= ' />'; + } else { + Tag::setDocType(Tag::HTML5); + $expected .= '>'; + } + + if ($set) { + Tag::{$set}('x_name', 'x_value'); + } + + $actual = Tag::$function($options); + + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/_data/fixtures/Helpers/TranslateQueryHelper.php b/tests/_data/fixtures/Helpers/TranslateQueryHelper.php new file mode 100644 index 00000000000..c5d8a73a93a --- /dev/null +++ b/tests/_data/fixtures/Helpers/TranslateQueryHelper.php @@ -0,0 +1,263 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Helpers; + +use Codeception\Example; +use Phalcon\Translate\Adapter\NativeArray; +use Phalcon\Test\Fixtures\Traits\TranslateTrait; +use UnitTester; + +class TranslateQueryHelper +{ + use TranslateTrait; + + protected $function = '_'; + + /** + * Tests Phalcon\Translate\Adapter\NativeArray :: query() + * + * @param UnitTester $I + * @param Example $data + * + * @dataProvider getQueryProvider + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + public function translateAdapterNativearrayQuery(UnitTester $I, Example $data) + { + $I->wantToTest( + sprintf( + 'Translate\Adapter\NativeArray - %s - %s', + $this->function, + $data['language'] + ) + ); + $language = $this->getArrayConfig()[$data['code']]; + $translator = new NativeArray(['content' => $language]); + foreach ($data['tests'] as $key => $expected) { + $actual = $translator->{$this->function}($key); + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Phalcon\Translate\Adapter\NativeArray :: query() - + * variable substitution in string with no variables + * + * @param UnitTester $I + * @param Example $data + * + * @dataProvider getQueryProvider + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-12 + */ + public function translateAdapterNativearrayVariableSubstitutionNoVariables(UnitTester $I, Example $data) + { + $I->wantToTest( + sprintf( + 'Translate\Adapter\NativeArray - variable substitution no variables - %s', + $data['language'] + ) + ); + $language = $this->getArrayConfig()[$data['code']]; + $translator = new NativeArray(['content' => $language]); + foreach ($data['tests'] as $key => $expected) { + $actual = $translator->{$this->function}($key, ['name' => 'my friend']); + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Phalcon\Translate\Adapter\NativeArray :: query() - + * variable substitution in string (one variable) + * + * @param UnitTester $I + * @param Example $data + * + * @dataProvider getQueryOneVariable + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-12 + */ + public function translateAdapterNativearrayVariableSubstitutionOneVariable(UnitTester $I, Example $data) + { + $I->wantToTest( + sprintf( + 'Translate\Adapter\NativeArray - variable substitution one variable - %s', + $data['language'] + ) + ); + $language = $this->getArrayConfig()[$data['code']]; + $translator = new NativeArray(['content' => $language]); + foreach ($data['tests'] as $key => $expected) { + $actual = $translator->{$this->function}($key, ['name' => 'my friend']); + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Phalcon\Translate\Adapter\NativeArray :: query() - + * variable substitution in string (two variables) + * + * @param UnitTester $I + * @param Example $data + * + * @dataProvider getQueryTwoVariables + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-12 + */ + public function translateAdapterNativearrayVariableSubstitutionTwoVariable(UnitTester $I, Example $data) + { + $I->wantToTest( + sprintf( + 'Translate\Adapter\NativeArray - variable substitution two variables - %s', + $data['language'] + ) + ); + $language = $this->getArrayConfig()[$data['code']]; + $translator = new NativeArray(['content' => $language]); + $vars = [ + 'song' => 'Dust in the wind', + 'artist' => 'Kansas', + ]; + foreach ($data['tests'] as $key => $expected) { + $actual = $translator->{$this->function}($key, $vars); + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Phalcon\Translate\Adapter\NativeArray :: query() - array access and UTF8 strings + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-12 + */ + public function testWithArrayAccessAndUTF8Strings(UnitTester $I) + { + $language = $this->getArrayConfig()['ru']; + $translator = new NativeArray(['content' => $language]); + + $vars = [ + 'fname' => 'John', + 'lname' => 'Doe', + 'mname' => 'D.', + ]; + + $expected = 'Привет, John D. Doe!'; + $actual = $translator->{$this->function}('Hello %fname% %mname% %lname%!', $vars); + $I->assertEquals($expected, $actual); + } + + /** + * Data provider for the query tests + * + * @return array + */ + private function getQueryProvider(): array + { + return [ + [ + 'language' => 'English', + 'code' => 'en', + 'tests' => [ + 'hi' => 'Hello', + 'bye' => 'Good Bye', + ], + ], + [ + 'language' => 'Spanish', + 'code' => 'es', + 'tests' => [ + 'hi' => 'Hola', + 'bye' => 'Adiós', + ], + ], + [ + 'language' => 'French', + 'code' => 'fr', + 'tests' => [ + 'hi' => 'Bonjour', + 'bye' => 'Au revoir', + ], + ], + ]; + } + + /** + * Data provider for the query one variable substitution + * + * @return array + */ + private function getQueryOneVariable(): array + { + return [ + [ + 'language' => 'English', + 'code' => 'en', + 'tests' => [ + 'hello-key' => 'Hello my friend', + ], + ], + [ + 'language' => 'Spanish', + 'code' => 'es', + 'tests' => [ + 'hello-key' => 'Hola my friend', + ], + ], + [ + 'language' => 'French', + 'code' => 'fr', + 'tests' => [ + 'hello-key' => 'Bonjour my friend', + ], + ], + ]; + } + + /** + * Data provider for the query one variable substitution + * + * @return array + */ + private function getQueryTwoVariables(): array + { + return [ + [ + 'language' => 'English', + 'code' => 'en', + 'tests' => [ + 'song-key' => 'This song is Dust in the wind (Kansas)', + ], + ], + [ + 'language' => 'Spanish', + 'code' => 'es', + 'tests' => [ + 'song-key' => 'La canción es Dust in the wind (Kansas)', + ], + ], + [ + 'language' => 'French', + 'code' => 'fr', + 'tests' => [ + 'song-key' => 'La chanson est Dust in the wind (Kansas)', + ], + ], + ]; + } +} diff --git a/tests/_support/Helper/Http/PhpStream.php b/tests/_data/fixtures/Http/PhpStream.php similarity index 78% rename from tests/_support/Helper/Http/PhpStream.php rename to tests/_data/fixtures/Http/PhpStream.php index a2baedfe520..8a900b62d74 100644 --- a/tests/_support/Helper/Http/PhpStream.php +++ b/tests/_data/fixtures/Http/PhpStream.php @@ -1,21 +1,30 @@ <?php -namespace Helper\Http; +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Http; /** * Helper\Http\PhpStream * - * @link http://php.net/manual/en/class.streamwrapper.php - * @link http://php.net/manual/en/stream.streamwrapper.example-1.php + * @link http://php.net/manual/en/class.streamwrapper.php + * @link http://php.net/manual/en/stream.streamwrapper.example-1.php * * @codingStandardsIgnoreFile * @package Helper */ class PhpStream { - protected $index = 0; + protected $index = 0; protected $length = 0; - protected $data = ''; + protected $data = ''; public function __construct() { @@ -23,10 +32,15 @@ public function __construct() $this->data = file_get_contents($this->getBufferFilename()); } - $this->index = 0; + $this->index = 0; $this->length = strlen($this->data); } + protected function getBufferFilename() + { + return codecept_output_dir('tests/stream/php_input.txt'); + } + public function stream_open($path, $mode, $options, &$opened_path) { return true; @@ -52,8 +66,8 @@ public function stream_read($count) $this->length = strlen($this->data); } - $length = min($count, $this->length - $this->index); - $data = substr($this->data, $this->index); + $length = min($count, $this->length - $this->index); + $data = substr($this->data, $this->index); $this->index = $this->index + $length; return $data; @@ -108,13 +122,8 @@ public function unlink() unlink($this->getBufferFilename()); } - $this->data = ''; - $this->index = 0; + $this->data = ''; + $this->index = 0; $this->length = 0; } - - protected function getBufferFilename() - { - return codecept_output_dir('tests/stream/php_input.txt'); - } } diff --git a/tests/_data/fixtures/Listener/CustomAuthorizationListener.php b/tests/_data/fixtures/Listener/CustomAuthorizationListener.php new file mode 100644 index 00000000000..2598bd865a0 --- /dev/null +++ b/tests/_data/fixtures/Listener/CustomAuthorizationListener.php @@ -0,0 +1,32 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Listener; + +use Phalcon\Events\Event; +use Phalcon\Http\Request; + +class CustomAuthorizationListener +{ + public function beforeAuthorizationResolve(Event $event, Request $request, array $data) + { + return [ + 'Fired-Before' => $event->getType(), + ]; + } + + public function afterAuthorizationResolve(Event $event, Request $request, array $data) + { + return [ + 'Fired-After' => $event->getType(), + ]; + } +} diff --git a/tests/_data/fixtures/Listener/FirstListener.php b/tests/_data/fixtures/Listener/FirstListener.php new file mode 100644 index 00000000000..6a68e715830 --- /dev/null +++ b/tests/_data/fixtures/Listener/FirstListener.php @@ -0,0 +1,16 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Listener; + +class FirstListener +{ +} diff --git a/tests/_data/fixtures/Listener/NegotiateAuthorizationListener.php b/tests/_data/fixtures/Listener/NegotiateAuthorizationListener.php new file mode 100644 index 00000000000..e137591bb8b --- /dev/null +++ b/tests/_data/fixtures/Listener/NegotiateAuthorizationListener.php @@ -0,0 +1,35 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Listener; + +use Phalcon\Events\Event; +use Phalcon\Http\Request; + +class NegotiateAuthorizationListener +{ + public function afterAuthorizationResolve(Event $event, Request $request, array $data) + { + if (empty($data['server']['CUSTOM_KERBEROS_AUTH'])) { + return false; + } + + list($type,) = explode(' ', $data['server']['CUSTOM_KERBEROS_AUTH'], 2); + + if (!$type || stripos($type, 'negotiate') !== 0) { + return false; + } + + return [ + 'Authorization' => $data['server']['CUSTOM_KERBEROS_AUTH'], + ]; + } +} diff --git a/tests/_data/fixtures/Listener/SecondListener.php b/tests/_data/fixtures/Listener/SecondListener.php new file mode 100644 index 00000000000..9d25c0e8187 --- /dev/null +++ b/tests/_data/fixtures/Listener/SecondListener.php @@ -0,0 +1,16 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Listener; + +class SecondListener +{ +} diff --git a/tests/_data/fixtures/Listener/ThirdListener.php b/tests/_data/fixtures/Listener/ThirdListener.php new file mode 100644 index 00000000000..ce0e3d2eb4d --- /dev/null +++ b/tests/_data/fixtures/Listener/ThirdListener.php @@ -0,0 +1,72 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Listener; + +use ComponentX; +use function dataFolder; +use Phalcon\Events\Event; +use Phalcon\Test\Unit\Events\ManagerCest; +use UnitTester; + +class ThirdListener +{ + /** @var ManagerCest */ + protected $testCase; + + /** @var UnitTester */ + protected $tester; + + protected $before = 0; + + protected $after = 0; + + public function __construct() + { + include_once dataFolder('fixtures/Events/ComponentX.php'); + } + + public function setTestCase(ManagerCest $testCase, UnitTester $tester) + { + $this->testCase = $testCase; + $this->tester = $tester; + } + + public function beforeAction($event, $component, $data) + { + $this->tester->assertInstanceOf(Event::class, $event); + $this->tester->assertInstanceOf(ComponentX::class, $component); + $this->tester->assertEquals($data, 'extra data'); + + $this->before++; + } + + public function afterAction($event, $component) + { + $this->tester->assertInstanceOf(Event::class, $event); + $this->tester->assertInstanceOf(ComponentX::class, $component); + $this->tester->assertEquals($event->getData(), ['extra', 'data']); + + $this->after++; + + $this->testCase->setLastListener($this); + } + + public function getBeforeCount() + { + return $this->before; + } + + public function getAfterCount() + { + return $this->after; + } +} diff --git a/tests/_data/fixtures/Loader/Example/Classes/One.php b/tests/_data/fixtures/Loader/Example/Classes/One.php new file mode 100644 index 00000000000..5bb61a1a469 --- /dev/null +++ b/tests/_data/fixtures/Loader/Example/Classes/One.php @@ -0,0 +1,5 @@ +<?php + +class One +{ +} diff --git a/tests/_data/fixtures/Loader/Example/Classes/Two.php b/tests/_data/fixtures/Loader/Example/Classes/Two.php new file mode 100644 index 00000000000..1ca228cbd6c --- /dev/null +++ b/tests/_data/fixtures/Loader/Example/Classes/Two.php @@ -0,0 +1,5 @@ +<?php + +class Two +{ +} diff --git a/tests/_data/fixtures/Loader/Example/Events/LoaderEvent.php b/tests/_data/fixtures/Loader/Example/Events/LoaderEvent.php new file mode 100644 index 00000000000..31aecce940e --- /dev/null +++ b/tests/_data/fixtures/Loader/Example/Events/LoaderEvent.php @@ -0,0 +1,5 @@ +<?php + +class LoaderEvent +{ +} diff --git a/tests/_data/fixtures/Loader/Example/Folders/Dialects/Sqlite.php b/tests/_data/fixtures/Loader/Example/Folders/Dialects/Sqlite.php new file mode 100644 index 00000000000..a1c88e998e5 --- /dev/null +++ b/tests/_data/fixtures/Loader/Example/Folders/Dialects/Sqlite.php @@ -0,0 +1,5 @@ +<?php + +class Sqlite +{ +} diff --git a/tests/_data/fixtures/Loader/Example/Folders/Types/Integer.php b/tests/_data/fixtures/Loader/Example/Folders/Types/Integer.php new file mode 100644 index 00000000000..bc988d84efb --- /dev/null +++ b/tests/_data/fixtures/Loader/Example/Folders/Types/Integer.php @@ -0,0 +1,5 @@ +<?php + +class Integer +{ +} diff --git a/tests/_data/vendor/Example/Other/NoClass.php b/tests/_data/fixtures/Loader/Example/Functions/FunctionsNoClass.php similarity index 100% rename from tests/_data/vendor/Example/Other/NoClass.php rename to tests/_data/fixtures/Loader/Example/Functions/FunctionsNoClass.php diff --git a/tests/_data/vendor/Example/Other/NoClass1.php b/tests/_data/fixtures/Loader/Example/Functions/FunctionsNoClassOne.php similarity index 100% rename from tests/_data/vendor/Example/Other/NoClass1.php rename to tests/_data/fixtures/Loader/Example/Functions/FunctionsNoClassOne.php diff --git a/tests/_data/vendor/Example/Other/NoClass3.php b/tests/_data/fixtures/Loader/Example/Functions/FunctionsNoClassThree.php similarity index 100% rename from tests/_data/vendor/Example/Other/NoClass3.php rename to tests/_data/fixtures/Loader/Example/Functions/FunctionsNoClassThree.php diff --git a/tests/_data/vendor/Example/Other/NoClass2.php b/tests/_data/fixtures/Loader/Example/Functions/FunctionsNoClassTwo.php similarity index 100% rename from tests/_data/vendor/Example/Other/NoClass2.php rename to tests/_data/fixtures/Loader/Example/Functions/FunctionsNoClassTwo.php diff --git a/tests/_data/fixtures/Loader/Example/Namespaces/Adapter/Blackhole.php b/tests/_data/fixtures/Loader/Example/Namespaces/Adapter/Blackhole.php new file mode 100644 index 00000000000..152ea415c23 --- /dev/null +++ b/tests/_data/fixtures/Loader/Example/Namespaces/Adapter/Blackhole.php @@ -0,0 +1,7 @@ +<?php + +namespace Example\Namespaces\Adapter; + +class Blackhole +{ +} diff --git a/tests/_data/fixtures/Loader/Example/Namespaces/Adapter/File.inc b/tests/_data/fixtures/Loader/Example/Namespaces/Adapter/File.inc new file mode 100644 index 00000000000..e9b375b02f7 --- /dev/null +++ b/tests/_data/fixtures/Loader/Example/Namespaces/Adapter/File.inc @@ -0,0 +1,7 @@ +<?php + +namespace Example\Namespaces\Adapter; + +class File +{ +} diff --git a/tests/_data/fixtures/Loader/Example/Namespaces/Adapter/Memcached.php b/tests/_data/fixtures/Loader/Example/Namespaces/Adapter/Memcached.php new file mode 100644 index 00000000000..4e9a82dc5df --- /dev/null +++ b/tests/_data/fixtures/Loader/Example/Namespaces/Adapter/Memcached.php @@ -0,0 +1,7 @@ +<?php + +namespace Example\Namespaces\Adapter; + +class Memcached +{ +} diff --git a/tests/_data/fixtures/Loader/Example/Namespaces/Adapter/Mongo.php b/tests/_data/fixtures/Loader/Example/Namespaces/Adapter/Mongo.php new file mode 100644 index 00000000000..f7a1cbb5bcf --- /dev/null +++ b/tests/_data/fixtures/Loader/Example/Namespaces/Adapter/Mongo.php @@ -0,0 +1,7 @@ +<?php + +namespace Example\Namespaces\Adapter; + +class Mongo +{ +} diff --git a/tests/_data/fixtures/Loader/Example/Namespaces/Adapter/Redis.php b/tests/_data/fixtures/Loader/Example/Namespaces/Adapter/Redis.php new file mode 100644 index 00000000000..1f6d356ce47 --- /dev/null +++ b/tests/_data/fixtures/Loader/Example/Namespaces/Adapter/Redis.php @@ -0,0 +1,7 @@ +<?php + +namespace Example\Namespaces\Adapter; + +class Redis +{ +} diff --git a/tests/_data/vendor/Example/Base/Any.php b/tests/_data/fixtures/Loader/Example/Namespaces/Base/Any.php similarity index 100% rename from tests/_data/vendor/Example/Base/Any.php rename to tests/_data/fixtures/Loader/Example/Namespaces/Base/Any.php diff --git a/tests/_data/fixtures/Loader/Example/Namespaces/Engines/Alcohol.inc b/tests/_data/fixtures/Loader/Example/Namespaces/Engines/Alcohol.inc new file mode 100644 index 00000000000..1ab821a6cc2 --- /dev/null +++ b/tests/_data/fixtures/Loader/Example/Namespaces/Engines/Alcohol.inc @@ -0,0 +1,11 @@ +<?php + +namespace Example\Namespaces\Engines; + +class Alcohol +{ + public function some() + { + return true; + } +} diff --git a/tests/_data/fixtures/Loader/Example/Namespaces/Engines/Diesel.php b/tests/_data/fixtures/Loader/Example/Namespaces/Engines/Diesel.php new file mode 100644 index 00000000000..d78ca2923fa --- /dev/null +++ b/tests/_data/fixtures/Loader/Example/Namespaces/Engines/Diesel.php @@ -0,0 +1,7 @@ +<?php + +namespace Example\Namespaces\Engines; + +class Diesel +{ +} diff --git a/tests/_data/fixtures/Loader/Example/Namespaces/Engines/Gasoline.php b/tests/_data/fixtures/Loader/Example/Namespaces/Engines/Gasoline.php new file mode 100644 index 00000000000..8a6813b5fcc --- /dev/null +++ b/tests/_data/fixtures/Loader/Example/Namespaces/Engines/Gasoline.php @@ -0,0 +1,7 @@ +<?php + +namespace Example\Namespaces\Engines; + +class Gasoline +{ +} diff --git a/tests/_data/fixtures/Loader/Example/Namespaces/Example/Example.php b/tests/_data/fixtures/Loader/Example/Namespaces/Example/Example.php new file mode 100644 index 00000000000..5506a622d7a --- /dev/null +++ b/tests/_data/fixtures/Loader/Example/Namespaces/Example/Example.php @@ -0,0 +1,7 @@ +<?php + +namespace Example\Namespaces\Example; + +class Example +{ +} diff --git a/tests/_data/fixtures/Loader/Example/Namespaces/Plugin/Another.php b/tests/_data/fixtures/Loader/Example/Namespaces/Plugin/Another.php new file mode 100644 index 00000000000..e5c4fb87eb4 --- /dev/null +++ b/tests/_data/fixtures/Loader/Example/Namespaces/Plugin/Another.php @@ -0,0 +1,7 @@ +<?php + +namespace Example\Namespaces\Adapter; + +class Another +{ +} diff --git a/tests/_data/fixtures/MemorySession.php b/tests/_data/fixtures/MemorySession.php new file mode 100644 index 00000000000..8125b6328f0 --- /dev/null +++ b/tests/_data/fixtures/MemorySession.php @@ -0,0 +1,452 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures; + +use Phalcon\Session\AdapterInterface; + +class MemorySession implements AdapterInterface +{ + /** + * @var string + */ + protected $name; + + /** + * @var array + */ + protected $memory = []; + + /** + * @var array + */ + protected $options = []; + + /** + * @var string + */ + protected $sessionId; + + /** + * @var bool + */ + protected $started = false; + + public function __construct(array $options = null) + { + $this->sessionId = $this->generateId(); + + if (is_array($options)) { + $this->setOptions($options); + } + } + + /** + * @return string + */ + private function generateId() + { + return md5(time()); + } + + /** + * Alias: Gets a session variable from an application context + * + * @param string $index + * + * @return mixed + */ + public function __get($index) + { + return $this->get($index); + } + + /** + * Alias: Sets a session variable in an application context + * + * @param string $index + * @param mixed $value + */ + public function __set($index, $value) + { + $this->set($index, $value); + } + + /** + * @inheritdoc + * + * @param string $index + * @param mixed $defaultValue + * @param bool $remove + * + * @return mixed + */ + public function get(string $index, $defaultValue = null) + { + $key = $this->prepareIndex($index); + + if (!isset($this->memory[$key])) { + return $defaultValue; + } + + $return = $this->memory[$key]; + + return $return; + } + + /** + * @param $index + * + * @return string + */ + private function prepareIndex($index) + { + if ($this->sessionId) { + $key = $this->sessionId . '#' . $index; + } else { + $key = $index; + } + + return $key; + } + + /** + * @inheritdoc + * + * @param string $index + * @param mixed $value + */ + public function set(string $index, $value) + { + $this->memory[$this->prepareIndex($index)] = $value; + } + + /** + * Alias: Check whether a session variable is set in an application context + * + * @param string $index + * + * @return bool + */ + public function __isset($index) + { + return $this->has($index); + } + + /** + * @inheritdoc + * + * @param string $index + * + * @return bool + */ + public function has(string $index): bool + { + return isset($this->memory[$this->prepareIndex($index)]); + } + + /** + * Alias: Removes a session variable from an application context + * + * @param string $index + */ + public function __unset($index) + { + $this->remove($index); + } + + /** + * @inheritdoc + * + * @param string $index + */ + public function remove(string $index) + { + unset($this->memory[$this->prepareIndex($index)]); + } + + /** + * + */ + public function abort() + { + + } + + /** + * + */ + public function clear() + { + + } + + /** + * Called internally from other session methods + */ + public function close() + { + return true; + } + + /** + * + */ + public function commit() + { + + } + + /** + * @param string $data + * + * @return bool + */ + public function decode($data) + { + return true; + } + + /** + * @inheritdoc + * + * @param bool $removeData + * + * @return bool + */ + public function destroy(string $sessionId = null): bool + { + if (!empty($sessionId)) { + foreach ($this->memory as $key => $value) { + if (0 === strpos($key, $sessionId . '#')) { + unset($this->memory[$key]); + } + } + } else { + $this->memory = []; + } + + $this->started = false; + + return true; + } + + /** + * @return string + */ + public function encode() + { + return ''; + } + + public function gc($maxLifeTime) + { + return 0; + } + + /** + * @return array + */ + public function getCookieParams(): array + { + return []; + } + + /** + * @inheritdoc + * + * @return string + */ + public function getId(): string + { + return $this->sessionId; + } + + /** + * @inheritdoc + * + * @return string + */ + public function getName(): string + { + return $this->name; + } + + /** + * @inheritdoc + * + * @param string $name + */ + public function setName(string $name) + { + $this->name = $name; + } + + /** + * @param string $key + * @param null $defaultValue + * + * @return string + */ + public function getOption($key, $defaultValue = null) + { + return ''; + } + + /** + * @inheritdoc + * + * @return array + */ + public function getOptions(): array + { + return $this->options; + } + + /** + * @inheritdoc + * + * @param array $options + */ + public function setOptions(array $options) + { + if (isset($options['uniqueId'])) { + $this->sessionId = $options['uniqueId']; + } + + $this->options = $options; + } + + /** + * @inheritdoc + */ + public function open($savePath, $sessionName) + { + return true; + } + + /** + * @inheritdoc + * + * @param bool $deleteOldSession + * + * @return \Phalcon\Session\AdapterInterface + */ + public function regenerateId(bool $deleteOldSession = null): AdapterInterface + { + $this->sessionId = $this->generateId(); + + return $this; + } + + /** + * @inheritdoc + */ + public function read($sessionId) + { + return ""; + } + + /** + * @param int $lifetime + * @param string $path + * @param string $domain + * @param bool $secure + * @param bool $httpOnly + */ + public function setCookieParams( + $lifetime, + $path, + $domain, + $secure = false, + $httpOnly = false + ) { + } + + /** + * @param string $id + * + * @return string + */ + public function setId($id) + { + $oldId = $this->sessionId; + + $this->sessionId = $id; + + return $oldId; + } + + /** + * @inheritdoc + */ + public function start() + { + if ($this->status() !== PHP_SESSION_ACTIVE) { + $this->memory = []; + $this->started = true; + + return true; + } + + return false; + } + + /** + * Returns the status of the current session + * + * ``` php + * <?php + * if ($session->status() !== PHP_SESSION_ACTIVE) { + * $session->start(); + * } + * ?> + * ``` + * + * @return int + */ + public function status() + { + if ($this->isStarted()) { + return PHP_SESSION_ACTIVE; + } + + return PHP_SESSION_NONE; + } + + /** + * @inheritdoc + * + * @return bool + */ + public function isStarted(): bool + { + return $this->started; + } + + /** + * Dump all session + * + * @return array + */ + public function toArray() + { + return (array) $this->memory; + } + + /** + * @inheritdoc + */ + public function write($sessionId, $data) + { + return true; + } +} diff --git a/tests/_data/fixtures/Micro/MyMiddleware.php b/tests/_data/fixtures/Micro/MyMiddleware.php new file mode 100644 index 00000000000..782f860fcde --- /dev/null +++ b/tests/_data/fixtures/Micro/MyMiddleware.php @@ -0,0 +1,29 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Micro; + +use Phalcon\Mvc\Micro\MiddlewareInterface; + +class MyMiddleware implements MiddlewareInterface +{ + protected $_number = 0; + + public function call(\Phalcon\Mvc\Micro $application) + { + $this->_number++; + } + + public function getNumber() + { + return $this->_number; + } +} diff --git a/tests/_data/fixtures/Micro/MyMiddlewareStop.php b/tests/_data/fixtures/Micro/MyMiddlewareStop.php new file mode 100644 index 00000000000..81f5e42e2e8 --- /dev/null +++ b/tests/_data/fixtures/Micro/MyMiddlewareStop.php @@ -0,0 +1,30 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Micro; + +use Phalcon\Mvc\Micro\MiddlewareInterface; + +class MyMiddlewareStop implements MiddlewareInterface +{ + protected $_number = 0; + + public function call(\Phalcon\Mvc\Micro $application) + { + $application->stop(); + $this->_number++; + } + + public function getNumber() + { + return $this->_number; + } +} diff --git a/tests/_data/fixtures/Micro/RestHandler.php b/tests/_data/fixtures/Micro/RestHandler.php new file mode 100644 index 00000000000..300cb5d2091 --- /dev/null +++ b/tests/_data/fixtures/Micro/RestHandler.php @@ -0,0 +1,49 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Micro; + +class RestHandler +{ + protected $_access = 0; + + protected $_trace = []; + + + + public function find() + { + $this->_access++; + $this->_trace[] = "find"; + } + + public function save() + { + $this->_access++; + $this->_trace[] = "save"; + } + + public function delete() + { + $this->_access++; + $this->_trace[] = "delete"; + } + + public function getNumberAccess() + { + return $this->_access; + } + + public function getTrace() + { + return $this->_trace; + } +} diff --git a/tests/_support/Module/View/AfterRenderListener.php b/tests/_data/fixtures/Mvc/View/AfterRenderListener.php similarity index 77% rename from tests/_support/Module/View/AfterRenderListener.php rename to tests/_data/fixtures/Mvc/View/AfterRenderListener.php index b2c19d58892..29d26e61e66 100644 --- a/tests/_support/Module/View/AfterRenderListener.php +++ b/tests/_data/fixtures/Mvc/View/AfterRenderListener.php @@ -1,6 +1,15 @@ <?php -namespace Phalcon\Test\Module\View; +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Mvc\View; use Phalcon\Mvc\View; use Phalcon\Events\Event; @@ -12,7 +21,7 @@ * @copyright (c) 2011-2017 Phalcon Team * @link http://www.phalconphp.com * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> + * @author Phalcon Team <team@phalconphp.com> * @package Phalcon\Test\Module\View * * The contents of this file are subject to the New BSD License that is diff --git a/tests/_data/fixtures/Mvc/View/Engine/Mustache.php b/tests/_data/fixtures/Mvc/View/Engine/Mustache.php new file mode 100644 index 00000000000..a7d7d5bc9b0 --- /dev/null +++ b/tests/_data/fixtures/Mvc/View/Engine/Mustache.php @@ -0,0 +1,67 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Mvc\View\Engine; + +use Mustache_Engine; +use Phalcon\DiInterface; +use Phalcon\Mvc\View\Engine; +use Phalcon\Mvc\ViewBaseInterface; +use Phalcon\Mvc\View\EngineInterface; + +class Mustache extends Engine implements EngineInterface +{ + /** + * The internal Mustache Engine + * @var Mustache_Engine + */ + protected $mustache; + + /** + * The view params + * @var array + */ + protected $params = []; + + /** + * Mustache constructor. + * + * @param ViewBaseInterface $view + * @param DiInterface|null $dependencyInjector + */ + public function __construct(ViewBaseInterface $view, DiInterface $dependencyInjector = null) + { + $this->mustache = new Mustache_Engine(); + + parent::__construct($view, $dependencyInjector); + } + + /** + * Renders a view using the template engine + * + * @param string $path + * @param mixed $params + * @param bool $mustClean + */ + public function render($path, $params, $mustClean = false) + { + if (!isset($params['content'])) { + $params['content'] = $this->_view->getContent(); + } + + $content = $this->mustache->render(file_get_contents($path), $params); + if ($mustClean) { + $this->_view->setContent($content); + } else { + echo $content; + } + } +} diff --git a/tests/_data/fixtures/Mvc/View/Engine/Twig.php b/tests/_data/fixtures/Mvc/View/Engine/Twig.php new file mode 100644 index 00000000000..ea1d801fee8 --- /dev/null +++ b/tests/_data/fixtures/Mvc/View/Engine/Twig.php @@ -0,0 +1,64 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Mvc\View\Engine; + +use Twig_Environment; +use Phalcon\DiInterface; +use Twig_Loader_Filesystem; +use Phalcon\Mvc\View\Engine; +use Phalcon\Mvc\ViewBaseInterface; +use Phalcon\Mvc\View\EngineInterface; + +class Twig extends Engine implements EngineInterface +{ + protected $twig; + + /** + * Twig constructor. + * + * @param ViewBaseInterface $view + * @param DiInterface|null $dependencyInjector + */ + public function __construct(ViewBaseInterface $view, DiInterface $dependencyInjector = null) + { + $this->twig = new Twig_Environment(new Twig_Loader_Filesystem($view->getViewsDir())); + + parent::__construct($view, $dependencyInjector); + } + + /** + * Renders a view using the template engine + * + * @param string $path + * @param mixed $params + * @param bool $mustClean + */ + public function render($path, $params, $mustClean = false) + { + if (!isset($params['content'])) { + $params['content'] = $this->_view->getContent(); + } + + if (!isset($params['view'])) { + $params['view'] = $this->_view; + } + + $relativePath = str_replace($this->_view->getViewsDir(), '', $path); + $content = $this->twig->render($relativePath, $params); + + if ($mustClean) { + $this->_view->setContent($content); + } else { + echo $content; + } + } +} diff --git a/tests/_data/fixtures/Mvc/View/IteratorObject.php b/tests/_data/fixtures/Mvc/View/IteratorObject.php new file mode 100644 index 00000000000..379070f5417 --- /dev/null +++ b/tests/_data/fixtures/Mvc/View/IteratorObject.php @@ -0,0 +1,60 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Mvc\View; + +class IteratorObject implements \Iterator, \Countable +{ + /** + * @var array + */ + private $data = []; + + /** + * @var int + */ + private $pointer = 0; + + public function __construct($data) + { + $this->data = $data; + } + + public function count() + { + return count($this->data); + } + + public function current() + { + return $this->data[$this->pointer]; + } + + public function key() + { + return $this->pointer; + } + + public function next() + { + ++$this->pointer; + } + + public function rewind() + { + $this->pointer = 0; + } + + public function valid() + { + return $this->pointer < count($this->data); + } +} diff --git a/tests/_data/fixtures/Traits/AssetsTrait.php b/tests/_data/fixtures/Traits/AssetsTrait.php new file mode 100644 index 00000000000..c01640949c1 --- /dev/null +++ b/tests/_data/fixtures/Traits/AssetsTrait.php @@ -0,0 +1,43 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Traits; + +use Phalcon\Assets\ResourceInterface; +use UnitTester; + +trait AssetsTrait +{ + private function resourceGetType(UnitTester $I, ResourceInterface $resource, string $expected) + { + $actual = $resource->getType(); + $I->assertEquals($expected, $actual); + } + + private function resourceGetResourceKey(UnitTester $I, ResourceInterface $resource, string $expected) + { + $actual = $resource->getResourceKey(); + $I->assertEquals($expected, $actual); + } + + private function resourceGetPath(UnitTester $I, ResourceInterface $resource) + { + $expected = 'js/jquery.js'; + $actual = $resource->getPath(); + $I->assertEquals($expected, $actual); + } + + private function resourceGetLocal(UnitTester $I, ResourceInterface $resource) + { + $actual = $resource->getLocal(); + $I->assertTrue($actual); + } +} diff --git a/tests/_data/fixtures/Traits/BeanstalkTrait.php b/tests/_data/fixtures/Traits/BeanstalkTrait.php new file mode 100644 index 00000000000..d355e3c4783 --- /dev/null +++ b/tests/_data/fixtures/Traits/BeanstalkTrait.php @@ -0,0 +1,64 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Traits; + +use Phalcon\Queue\Beanstalk; +use UnitTester; +use function var_dump; + +trait BeanstalkTrait +{ + /** + * @var Beanstalk + */ + protected $client = null; + + /** + * executed before each test + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('yaml'); + + if (!defined('DATA_BEANSTALKD_HOST') || !defined('DATA_BEANSTALKD_PORT')) { + $I->skipTest('DATA_BEANSTALKD_HOST and/or DATA_BEANSTALKD_PORT env variables are not defined'); + } + + $this->client = new Beanstalk( + [ + 'host' => DATA_BEANSTALKD_HOST, + 'port' => DATA_BEANSTALKD_PORT + ] + ); + + try { + @$this->client->connect(); + + /** + * Clean up the tubes + */ + $this->client->choose('beanstalk-test-1'); + while ($job = $this->client->peekReady()) { + echo "."; + $job->delete(); + } + + $this->client->choose('beanstalk-test-2'); + while ($job = $this->client->peekReady()) { + echo "."; + $job->delete(); + } + } catch (\Exception $e) { + $I->skipTest($e->getMessage()); + } + } +} diff --git a/tests/_data/fixtures/Traits/Cache/FileTrait.php b/tests/_data/fixtures/Traits/Cache/FileTrait.php new file mode 100644 index 00000000000..b6e19c5d7ff --- /dev/null +++ b/tests/_data/fixtures/Traits/Cache/FileTrait.php @@ -0,0 +1,35 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Traits\Cache; + +use Phalcon\Cache\Backend\File; +use Phalcon\Cache\Frontend\Data; +use function cacheFolder; + +trait FileTrait +{ + /** + * @var null|File + */ + protected $cache = null; + + public function _before() + { + $frontCache = new Data(); + $this->cache = new File( + $frontCache, + [ + 'cacheDir' => cacheFolder(), + ] + ); + } +} diff --git a/tests/_data/fixtures/Traits/CollectionTrait.php b/tests/_data/fixtures/Traits/CollectionTrait.php new file mode 100644 index 00000000000..338430e3a2a --- /dev/null +++ b/tests/_data/fixtures/Traits/CollectionTrait.php @@ -0,0 +1,56 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Traits; + +use Codeception\Actor; +use Mongo; +use MongoClient; +use Phalcon\Mvc\Collection\Manager; +use PHPUnit\Framework\SkippedTestError; + +/** + * Collection Initializer + * + * @package Helper + */ +trait CollectionTrait +{ + /** + * Executed before each test + * + * @param Actor $I + */ + protected function setupMongo(Actor $I) + { + if (!extension_loaded('mongo')) { + throw new SkippedTestError( + 'Warning: mongo extension is not loaded' + ); + } + + $I->haveServiceInDi('mongo', function () { + $dsn = sprintf('mongodb://%s:%s', DATA_MONGODB_HOST, DATA_MONGODB_PORT); + + if (class_exists('MongoClient')) { + $mongo = new MongoClient($dsn); + } else { + $mongo = new Mongo($dsn); + } + + return $mongo->selectDB(DATA_MONGODB_NAME); + }, true); + + $I->haveServiceInDi('collectionManager', function () { + return new Manager(); + }, true); + } +} diff --git a/tests/_data/fixtures/Traits/ConfigTrait.php b/tests/_data/fixtures/Traits/ConfigTrait.php new file mode 100644 index 00000000000..97beea60f23 --- /dev/null +++ b/tests/_data/fixtures/Traits/ConfigTrait.php @@ -0,0 +1,384 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Traits; + +use function dataFolder; +use Phalcon\Config; +use Phalcon\Config\Adapter\Ini; +use Phalcon\Config\Adapter\Json; +use Phalcon\Config\Adapter\Php; +use Phalcon\Config\Adapter\Yaml; +use UnitTester; + +trait ConfigTrait +{ + /** + * @var array + */ + protected $config = [ + 'phalcon' => [ + 'baseuri' => '/phalcon/', + ], + 'models' => [ + 'metadata' => 'memory', + ], + 'database' => [ + 'adapter' => 'mysql', + 'host' => 'localhost', + 'username' => 'user', + 'password' => 'passwd', + 'name' => 'demo', + ], + 'test' => [ + 'parent' => [ + 'property' => 1, + 'property2' => 'yeah', + ], + ], + 'issue-12725' => [ + 'channel' => [ + 'handlers' => [ + 0 => [ + 'name' => 'stream', + 'level' => 'debug', + 'fingersCrossed' => 'info', + 'filename' => 'channel.log', + ], + 1 => [ + 'name' => 'redis', + 'level' => 'debug', + 'fingersCrossed' => 'info', + ], + ], + ], + ], + ]; + + /** + * Tests Phalcon\Config\Adapter\* :: __construct() + * + * @param UnitTester $I + * @param string $adapter + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + private function checkConstruct(UnitTester $I, string $adapter = '') + { + $I->wantToTest(sprintf($this->getMessage($adapter), 'construct')); + $config = $this->getConfig($adapter); + $this->compareConfig($I, $this->config, $config); + } + + /** + * Returns the message to print out for the test + * + * @param string $adapter + * + * @return string + */ + private function getMessage(string $adapter = ''): string + { + $class = ''; + + if ('' !== $adapter) { + $class = sprintf('\Adapter\%s', $adapter); + } + + return 'Config' . $class . ' - %s'; + } + + /** + * Returns a config object + * + * @param string $adapter + * + * @return Config|Ini|Json|Php|Yaml + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + private function getConfig(string $adapter = '') + { + switch ($adapter) { + case 'Ini': + return new Ini(dataFolder('assets/config/config.ini')); + case 'Json': + return new Json(dataFolder('assets/config/config.json')); + case 'Php': + return new Php(dataFolder('assets/config/config.php')); + case 'Yaml': + return new Yaml(dataFolder('assets/config/config.yml')); + default: + return new Config($this->config); + } + } + + /** + * @param UnitTester $I + * @param array $actual + * @param Config $expected + */ + private function compareConfig(UnitTester $I, array $actual, Config $expected) + { + $I->assertEquals($actual, $expected->toArray()); + + foreach ($actual as $key => $value) { + $I->assertTrue(isset($expected->$key)); + + if (is_array($value)) { + $this->compareConfig($I, $value, $expected->$key); + } + } + } + + /** + * Tests Phalcon\Config\Adapter\* :: count() + * + * @param UnitTester $I + * @param string $adapter + * + * @author Faruk Brbovic <fbrbovic@devstub.com> + * @since 2014-11-03 + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + private function checkCount(UnitTester $I, string $adapter = '') + { + $I->wantToTest(sprintf($this->getMessage($adapter), 'count()')); + $config = $this->getConfig($adapter); + + $expected = 5; + $actual = $config->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Config\Adapter\* :: get() + * + * @param UnitTester $I + * @param string $adapter + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + private function checkGet(UnitTester $I, string $adapter = '') + { + $I->wantToTest(sprintf($this->getMessage($adapter), 'get()')); + $config = $this->getConfig($adapter); + + $expected = 'memory'; + $actual = $config->get('models')->get('metadata'); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Config\Adapter\* :: getPathDelimiter() + * + * @param UnitTester $I + * @param string $adapter + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + private function checkGetPathDelimiter(UnitTester $I, string $adapter = '') + { + $I->wantToTest(sprintf($this->getMessage($adapter), 'getPathDelimiter()')); + $config = $this->getConfig($adapter); + + $existing = $config->getPathDelimiter(); + + $expected = '.'; + $actual = $config->getPathDelimiter(); + $I->assertEquals($expected, $actual); + + $config->setPathDelimiter('/'); + + $expected = '/'; + $actual = $config->getPathDelimiter(); + $I->assertEquals($expected, $actual); + + $config->setPathDelimiter($existing); + } + + /** + * Tests Phalcon\Config\Adapter\* :: offsetExists() + * + * @param UnitTester $I + * @param string $adapter + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + private function checkOffsetExists(UnitTester $I, string $adapter = '') + { + $I->wantToTest(sprintf($this->getMessage($adapter), 'offsetExists()')); + $config = $this->getConfig($adapter); + + $actual = $config->offsetExists('models'); + $I->assertTrue($actual); + } + + /** + * Tests Phalcon\Config\Adapter\* :: offsetGet() + * + * @param UnitTester $I + * @param string $adapter + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + private function checkOffsetGet(UnitTester $I, string $adapter = '') + { + $I->wantToTest(sprintf($this->getMessage($adapter), 'offsetGet()')); + $config = $this->getConfig($adapter); + + $expected = 'memory'; + $actual = $config->offsetGet('models')->offsetGet('metadata'); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Config\Adapter\* :: offsetSet() + * + * @param UnitTester $I + * @param string $adapter + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + private function checkOffsetSet(UnitTester $I, string $adapter = '') + { + $I->wantToTest(sprintf($this->getMessage($adapter), 'offsetSet()')); + $config = $this->getConfig($adapter); + + $config->offsetSet('models', 'something-else'); + + $expected = 'something-else'; + $actual = $config->offsetGet('models'); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Config\Adapter\* :: offsetUnset() + * + * @param UnitTester $I + * @param string $adapter + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + private function checkOffsetUnset(UnitTester $I, string $adapter = '') + { + $I->wantToTest(sprintf($this->getMessage($adapter), 'offsetUnset()')); + $config = $this->getConfig($adapter); + + $actual = $config->offsetExists('database'); + $I->assertTrue($actual); + + $config->offsetUnset('database'); + $actual = $config->offsetGet('database'); + $I->assertNull($actual); + } + + /** + * Tests Phalcon\Config\Adapter\* :: path() + * + * @param UnitTester $I + * @param string $adapter + * + * @author michanismus + * @since 2017-03-29 + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + private function checkPath(UnitTester $I, string $adapter = '') + { + $I->wantToTest(sprintf($this->getMessage($adapter), 'path()')); + $config = $this->getConfig($adapter); + + $expected = 'yeah'; + $actual = $config->path('test.parent.property2'); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Config\Adapter\* :: path() - default + * + * @param UnitTester $I + * @param string $adapter + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + private function checkPathDefault(UnitTester $I, string $adapter = '') + { + $I->wantToTest(sprintf($this->getMessage($adapter), 'path() - default')); + $config = $this->getConfig($adapter); + + $expected = 'Unknown'; + $actual = $config->path('test.parent.property3', 'Unknown'); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Config\Adapter\* :: setPathDelimiter() + * + * @param UnitTester $I + * @param string $adapter + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + private function checkSetPathDelimiter(UnitTester $I, string $adapter = '') + { + $I->wantToTest(sprintf($this->getMessage($adapter), 'setPathDelimiter()')); + $config = $this->getConfig($adapter); + + $existing = $config->getPathDelimiter(); + + $expected = 'yeah'; + $actual = $config->path('test.parent.property2', 'Unknown'); + $I->assertEquals($expected, $actual); + + $config->setPathDelimiter('/'); + + $expected = 'Unknown'; + $actual = $config->path('test.parent.property2', 'Unknown'); + $I->assertEquals($expected, $actual); + + $expected = 'yeah'; + $actual = $config->path('test/parent/property2', 'Unknown'); + $I->assertEquals($expected, $actual); + + $config->setPathDelimiter($existing); + } + + /** + * Tests Phalcon\Config\Adapter\* :: toArray() + * + * @param UnitTester $I + * @param string $adapter + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + private function checkToArray(UnitTester $I, string $adapter = '') + { + $I->wantToTest(sprintf($this->getMessage($adapter), 'toArray()')); + $config = $this->getConfig($adapter); + + $expected = $this->config; + $actual = $config->toArray(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/_data/fixtures/Traits/CookieTrait.php b/tests/_data/fixtures/Traits/CookieTrait.php new file mode 100644 index 00000000000..3354e92a030 --- /dev/null +++ b/tests/_data/fixtures/Traits/CookieTrait.php @@ -0,0 +1,58 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Traits; + +use RuntimeException; + +trait CookieTrait +{ + /** + * Gets a value set with setcookie. + * + * A clean and transparent way to get a value set with setcookie() within + * the same request + * + * @link http://tools.ietf.org/html/rfc6265#section-4.1.1 + * + * @param string $name + * + * @return string|array|null + * + * @throws RuntimeException + */ + protected function getCookie($name) + { + $cookies = []; + + if (PHP_SAPI == 'cli') { + if (!extension_loaded('xdebug')) { + throw new RuntimeException( + 'The xdebug extension is not loaded.' + ); + } + + $headers = xdebug_get_headers(); + } else { + $headers = headers_list(); + } + + foreach ($headers as $header) { + if (strpos($header, 'Set-Cookie: ') === 0) { + $value = str_replace('&', urlencode('&'), substr($header, 12)); + parse_str(current(explode(';', $value, 1)), $pair); + $cookies = array_merge_recursive($cookies, $pair); + } + } + + return $cookies[$name] ?? null; + } +} diff --git a/tests/_data/fixtures/Traits/CryptTrait.php b/tests/_data/fixtures/Traits/CryptTrait.php new file mode 100644 index 00000000000..ee56ccab885 --- /dev/null +++ b/tests/_data/fixtures/Traits/CryptTrait.php @@ -0,0 +1,25 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Traits; + +use UnitTester; + +trait CryptTrait +{ + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('openssl'); + } +} diff --git a/tests/_data/fixtures/Traits/Db/MysqlTrait.php b/tests/_data/fixtures/Traits/Db/MysqlTrait.php new file mode 100644 index 00000000000..c701049661c --- /dev/null +++ b/tests/_data/fixtures/Traits/Db/MysqlTrait.php @@ -0,0 +1,790 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Traits\Db; + +use Phalcon\Db\Column; +use Phalcon\Db\Index; +use Phalcon\Db\Reference; + +trait MysqlTrait +{ + protected $connection = null; + + /** + * Constructor + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-10-26 + */ + public function _before() + { + $this->setNewFactoryDefault(); + $this->setDiMysql(); + + $this->connection = $this->getService('db'); + } + + /** + * @inheritdoc + */ + abstract protected function setNewFactoryDefault(); + + /** + * @inheritdoc + */ + abstract protected function setDiMysql(); + + /** + * Returns the database name + * + * @return string + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-10-26 + */ + protected function getDatabaseName(): string + { + return env('DATA_MYSQL_NAME'); + } + + /** + * Returns the database schema; MySql does not have a schema + * + * @return string + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-10-26 + */ + protected function getSchemaName(): string + { + return env('DATA_MYSQL_NAME'); + } + + /** + * Return the array of columns + * + * @return array + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-10-26 + */ + protected function getColumns(): array + { + return [ + 0 => [ + '_columnName' => 'field_primary', + '_schemaName' => null, + '_type' => Column::TYPE_INTEGER, + '_isNumeric' => true, + '_size' => 11, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => true, + '_primary' => true, + '_first' => true, + '_after' => null, + '_bindType' => Column::BIND_PARAM_INT, + ], + 1 => [ + '_columnName' => 'field_blob', + '_schemaName' => null, + '_type' => Column::TYPE_BLOB, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_primary', + '_bindType' => Column::BIND_PARAM_STR, + ], + 2 => [ + '_columnName' => 'field_bit', + '_schemaName' => null, + '_type' => Column::TYPE_BIT, + '_isNumeric' => false, + '_size' => 1, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_blob', + '_bindType' => Column::BIND_PARAM_INT, + ], + 3 => [ + '_columnName' => 'field_bit_default', + '_schemaName' => null, + '_type' => Column::TYPE_BIT, + '_isNumeric' => false, + '_size' => 1, + '_scale' => 0, + '_default' => "b'1'", + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_bit', + '_bindType' => Column::BIND_PARAM_INT, + ], + 4 => [ + '_columnName' => 'field_bigint', + '_schemaName' => null, + '_type' => Column::TYPE_BIGINTEGER, + '_isNumeric' => true, + '_size' => 20, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_bit_default', + '_bindType' => Column::BIND_PARAM_INT, + ], + 5 => [ + '_columnName' => 'field_bigint_default', + '_schemaName' => null, + '_type' => Column::TYPE_BIGINTEGER, + '_isNumeric' => true, + '_size' => 20, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_bigint', + '_bindType' => Column::BIND_PARAM_INT, + ], + 6 => [ + '_columnName' => 'field_boolean', + '_schemaName' => null, + '_type' => Column::TYPE_BOOLEAN, + '_isNumeric' => true, + '_size' => 1, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_bigint_default', + '_bindType' => Column::BIND_PARAM_BOOL, + ], + 7 => [ + '_columnName' => 'field_boolean_default', + '_schemaName' => null, + '_type' => Column::TYPE_BOOLEAN, + '_isNumeric' => true, + '_size' => 1, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_boolean', + '_bindType' => Column::BIND_PARAM_BOOL, + ], + 8 => [ + '_columnName' => 'field_char', + '_schemaName' => null, + '_type' => Column::TYPE_CHAR, + '_isNumeric' => false, + '_size' => 10, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_boolean_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 9 => [ + '_columnName' => 'field_char_default', + '_schemaName' => null, + '_type' => Column::TYPE_CHAR, + '_isNumeric' => false, + '_size' => 10, + '_scale' => 0, + '_default' => 'ABC', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_char', + '_bindType' => Column::BIND_PARAM_STR, + ], + 10 => [ + '_columnName' => 'field_decimal', + '_schemaName' => null, + '_type' => Column::TYPE_DECIMAL, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 4, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_char_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 11 => [ + '_columnName' => 'field_decimal_default', + '_schemaName' => null, + '_type' => Column::TYPE_DECIMAL, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 4, + '_default' => '14.5678', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_decimal', + '_bindType' => Column::BIND_PARAM_STR, + ], + 12 => [ + '_columnName' => 'field_enum', + '_schemaName' => null, + '_type' => Column::TYPE_ENUM, + '_isNumeric' => false, + '_size' => "'xs','s','m','l','xl'", + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_decimal_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 13 => [ + '_columnName' => 'field_integer', + '_schemaName' => null, + '_type' => Column::TYPE_INTEGER, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_enum', + '_bindType' => Column::BIND_PARAM_INT, + ], + 14 => [ + '_columnName' => 'field_integer_default', + '_schemaName' => null, + '_type' => Column::TYPE_INTEGER, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_integer', + '_bindType' => Column::BIND_PARAM_INT, + ], + 15 => [ + '_columnName' => 'field_json', + '_schemaName' => false, + '_type' => Column::TYPE_JSON, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_integer_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 16 => [ + '_columnName' => 'field_float', + '_schemaName' => null, + '_type' => Column::TYPE_FLOAT, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 4, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_json', + '_bindType' => Column::BIND_PARAM_DECIMAL, + ], + 17 => [ + '_columnName' => 'field_float_default', + '_schemaName' => null, + '_type' => Column::TYPE_FLOAT, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 4, + '_default' => '14.5678', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_float', + '_bindType' => Column::BIND_PARAM_DECIMAL, + ], + 18 => [ + '_columnName' => 'field_date', + '_schemaName' => null, + '_type' => Column::TYPE_DATE, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_float_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 19 => [ + '_columnName' => 'field_date_default', + '_schemaName' => false, + '_type' => Column::TYPE_DATE, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => '2018-10-01', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_date', + '_bindType' => Column::BIND_PARAM_STR, + ], + 20 => [ + '_columnName' => 'field_datetime', + '_schemaName' => null, + '_type' => Column::TYPE_DATETIME, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_date_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 21 => [ + '_columnName' => 'field_datetime_default', + '_schemaName' => false, + '_type' => Column::TYPE_DATETIME, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => '2018-10-01 12:34:56', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_datetime', + '_bindType' => Column::BIND_PARAM_STR, + ], + 22 => [ + '_columnName' => 'field_time', + '_schemaName' => null, + '_type' => Column::TYPE_TIME, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_datetime_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 23 => [ + '_columnName' => 'field_time_default', + '_schemaName' => null, + '_type' => Column::TYPE_TIME, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => '12:34:56', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_time', + '_bindType' => Column::BIND_PARAM_STR, + ], + 24 => [ + '_columnName' => 'field_timestamp', + '_schemaName' => null, + '_type' => Column::TYPE_TIMESTAMP, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_time_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 25 => [ + '_columnName' => 'field_timestamp_default', + '_schemaName' => null, + '_type' => Column::TYPE_TIMESTAMP, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => '2018-10-01 12:34:56', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_timestamp', + '_bindType' => Column::BIND_PARAM_STR, + ], + 26 => [ + '_columnName' => 'field_mediumint', + '_schemaName' => null, + '_type' => Column::TYPE_MEDIUMINTEGER, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_timestamp_default', + '_bindType' => Column::BIND_PARAM_INT, + ], + 27 => [ + '_columnName' => 'field_mediumint_default', + '_schemaName' => null, + '_type' => Column::TYPE_MEDIUMINTEGER, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_mediumint', + '_bindType' => Column::BIND_PARAM_INT, + ], + 28 => [ + '_columnName' => 'field_smallint', + '_schemaName' => null, + '_type' => Column::TYPE_SMALLINTEGER, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_mediumint_default', + '_bindType' => Column::BIND_PARAM_INT, + ], + 29 => [ + '_columnName' => 'field_smallint_default', + '_schemaName' => null, + '_type' => Column::TYPE_SMALLINTEGER, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_smallint', + '_bindType' => Column::BIND_PARAM_INT, + ], + 30 => [ + '_columnName' => 'field_tinyint', + '_schemaName' => null, + '_type' => Column::TYPE_TINYINTEGER, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_smallint_default', + '_bindType' => Column::BIND_PARAM_INT, + ], + 31 => [ + '_columnName' => 'field_tinyint_default', + '_schemaName' => null, + '_type' => Column::TYPE_TINYINTEGER, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_tinyint', + '_bindType' => Column::BIND_PARAM_INT, + ], + 32 => [ + '_columnName' => 'field_longtext', + '_schemaName' => null, + '_type' => Column::TYPE_LONGTEXT, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_tinyint_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 33 => [ + '_columnName' => 'field_mediumtext', + '_schemaName' => null, + '_type' => Column::TYPE_MEDIUMTEXT, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_longtext', + '_bindType' => Column::BIND_PARAM_STR, + ], + 34 => [ + '_columnName' => 'field_tinytext', + '_schemaName' => null, + '_type' => Column::TYPE_TINYTEXT, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_mediumtext', + '_bindType' => Column::BIND_PARAM_STR, + ], + 35 => [ + '_columnName' => 'field_text', + '_schemaName' => null, + '_type' => Column::TYPE_TEXT, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_tinytext', + '_bindType' => Column::BIND_PARAM_STR, + ], + 36 => [ + '_columnName' => 'field_varchar', + '_schemaName' => null, + '_type' => Column::TYPE_VARCHAR, + '_isNumeric' => false, + '_size' => 10, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_text', + '_bindType' => Column::BIND_PARAM_STR, + ], + 37 => [ + '_columnName' => 'field_varchar_default', + '_schemaName' => null, + '_type' => Column::TYPE_VARCHAR, + '_isNumeric' => false, + '_size' => 10, + '_scale' => 0, + '_default' => 'D', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_varchar', + '_bindType' => Column::BIND_PARAM_STR, + ], + ]; + } + + /** + * Return the array of expected columns + * + * @return array + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-10-26 + */ + protected function getExpectedColumns(): array + { + $result = []; + $columns = $this->getColumns(); + foreach ($columns as $index => $array) { + $result[$index] = Column::__set_state($array); + } + + return $result; + } + + /** + * Return the array of expected indexes + * + * @return array + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-10-26 + */ + protected function getExpectedIndexes(): array + { + return [ + 'PRIMARY' => Index::__set_state( + [ + '_name' => 'PRIMARY', + '_columns' => ['field_primary'], + '_type' => 'PRIMARY', + ] + ), + 'dialect_table_unique' => Index::__set_state( + [ + '_name' => 'dialect_table_unique', + '_columns' => ['field_integer'], + '_type' => 'UNIQUE', + ] + ), + 'dialect_table_index' => Index::__set_state( + [ + '_name' => 'dialect_table_index', + '_columns' => ['field_bigint'], + '_type' => '', + ] + ), + 'dialect_table_two_fields' => Index::__set_state( + [ + '_name' => 'dialect_table_two_fields', + '_columns' => ['field_char', 'field_char_default'], + '_type' => '', + ] + ), + ]; + } + + /** + * Return the array of expected references + * + * @return array + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-10-26 + */ + protected function getExpectedReferences(): array + { + return [ + 'dialect_table_intermediate_primary__fk' => Reference::__set_state( + [ + '_referenceName' => 'dialect_table_intermediate_primary__fk', + '_referencedTable' => 'dialect_table', + '_columns' => ['field_primary_id'], + '_referencedColumns' => ['field_primary'], + '_referencedSchema' => $this->getDatabaseName(), + '_onUpdate' => 'RESTRICT', + '_onDelete' => 'RESTRICT' + ] + ), + 'dialect_table_intermediate_remote__fk' => Reference::__set_state( + [ + '_referenceName' => 'dialect_table_intermediate_remote__fk', + '_referencedTable' => 'dialect_table_remote', + '_columns' => ['field_remote_id'], + '_referencedColumns' => ['field_primary'], + '_referencedSchema' => $this->getDatabaseName(), + '_onUpdate' => 'CASCADE', + '_onDelete' => 'SET NULL' + ] + ), + ]; + } +} diff --git a/tests/_data/fixtures/Traits/Db/PostgresqlTrait.php b/tests/_data/fixtures/Traits/Db/PostgresqlTrait.php new file mode 100644 index 00000000000..c7f863a9d78 --- /dev/null +++ b/tests/_data/fixtures/Traits/Db/PostgresqlTrait.php @@ -0,0 +1,786 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Traits\Db; + +trait PostgresqlTrait +{ + protected $connection = null; + + /** + * Constructor + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-10-26 + */ + public function _before() + { + $this->setNewFactoryDefault(); + $this->setDiPostgresql(); + + $this->connection = $this->getService('db'); + } + + /** + * @inheritdoc + */ + abstract protected function setNewFactoryDefault(); + + /** + * @inheritdoc + */ + abstract protected function setDiPostgresql(); + + /** + * Returns the database name + * + * @return string + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-10-26 + */ + protected function getDatabaseName(): string + { + return env('DATA_POSTGRES_NAME'); + } + + /** + * Returns the database schema; + * + * @return string + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-10-26 + */ + protected function getSchemaName(): string + { + return env('DATA_POSTGRES_SCHEMA'); + } + + /** + * Return the array of columns + * + * @return array + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-10-26 + */ + protected function getColumns(): array + { + return [ + 0 => [ + '_columnName' => 'field_primary', + '_schemaName' => null, + '_type' => Column::TYPE_INTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => "nextval('dialect_table_field_primary_seq'::regclass)", + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => true, + '_primary' => true, + '_first' => true, + '_after' => null, + '_bindType' => Column::BIND_PARAM_INT, + ], + 1 => [ + '_columnName' => 'field_blob', + '_schemaName' => null, + '_type' => Column::TYPE_TEXT, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_primary', + '_bindType' => Column::BIND_PARAM_STR, + ], + 2 => [ + '_columnName' => 'field_bit', + '_schemaName' => null, + '_type' => Column::TYPE_BIT, + '_isNumeric' => false, + '_size' => null, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_blob', + '_bindType' => Column::BIND_PARAM_STR, + ], + 3 => [ + '_columnName' => 'field_bit_default', + '_schemaName' => null, + '_type' => Column::TYPE_BIT, + '_isNumeric' => false, + '_size' => null, + '_scale' => 0, + '_default' => "B'1'::\"bit\"", + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_bit', + '_bindType' => Column::BIND_PARAM_STR, + ], + 4 => [ + '_columnName' => 'field_bigint', + '_schemaName' => null, + '_type' => Column::TYPE_BIGINTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_bit_default', + '_bindType' => Column::BIND_PARAM_INT, + ], + 5 => [ + '_columnName' => 'field_bigint_default', + '_schemaName' => null, + '_type' => Column::TYPE_BIGINTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_bigint', + '_bindType' => Column::BIND_PARAM_INT, + ], + 6 => [ + '_columnName' => 'field_boolean', + '_schemaName' => null, + '_type' => Column::TYPE_BOOLEAN, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_bigint_default', + '_bindType' => Column::BIND_PARAM_BOOL, + ], + 7 => [ + '_columnName' => 'field_boolean_default', + '_schemaName' => null, + '_type' => Column::TYPE_BOOLEAN, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => 'true', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_boolean', + '_bindType' => Column::BIND_PARAM_BOOL, + ], + 8 => [ + '_columnName' => 'field_char', + '_schemaName' => null, + '_type' => Column::TYPE_CHAR, + '_isNumeric' => false, + '_size' => 10, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_boolean_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 9 => [ + '_columnName' => 'field_char_default', + '_schemaName' => null, + '_type' => Column::TYPE_CHAR, + '_isNumeric' => false, + '_size' => 10, + '_scale' => 0, + '_default' => 'ABC', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_char', + '_bindType' => Column::BIND_PARAM_STR, + ], + 10 => [ + '_columnName' => 'field_decimal', + '_schemaName' => null, + '_type' => Column::TYPE_DECIMAL, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_char_default', + '_bindType' => Column::BIND_PARAM_DECIMAL, + ], + 11 => [ + '_columnName' => 'field_decimal_default', + '_schemaName' => null, + '_type' => Column::TYPE_DECIMAL, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => '14.5678', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_decimal', + '_bindType' => Column::BIND_PARAM_DECIMAL, + ], + 12 => [ + '_columnName' => 'field_enum', + '_schemaName' => null, + '_type' => Column::TYPE_VARCHAR, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_decimal_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 13 => [ + '_columnName' => 'field_integer', + '_schemaName' => null, + '_type' => Column::TYPE_INTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_enum', + '_bindType' => Column::BIND_PARAM_INT, + ], + 14 => [ + '_columnName' => 'field_integer_default', + '_schemaName' => null, + '_type' => Column::TYPE_INTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_integer', + '_bindType' => Column::BIND_PARAM_INT, + ], + 15 => [ + '_columnName' => 'field_json', + '_schemaName' => false, + '_type' => Column::TYPE_JSON, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_integer_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 16 => [ + '_columnName' => 'field_float', + '_schemaName' => null, + '_type' => Column::TYPE_DECIMAL, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_json', + '_bindType' => Column::BIND_PARAM_DECIMAL, + ], + 17 => [ + '_columnName' => 'field_float_default', + '_schemaName' => null, + '_type' => Column::TYPE_DECIMAL, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => '14.5678', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_float', + '_bindType' => Column::BIND_PARAM_DECIMAL, + ], + 18 => [ + '_columnName' => 'field_date', + '_schemaName' => null, + '_type' => Column::TYPE_DATE, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_float_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 19 => [ + '_columnName' => 'field_date_default', + '_schemaName' => false, + '_type' => Column::TYPE_DATE, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => '2018-10-01', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_date', + '_bindType' => Column::BIND_PARAM_STR, + ], + 20 => [ + '_columnName' => 'field_datetime', + '_schemaName' => null, + '_type' => Column::TYPE_TIMESTAMP, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_date_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 21 => [ + '_columnName' => 'field_datetime_default', + '_schemaName' => false, + '_type' => Column::TYPE_TIMESTAMP, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => '2018-10-01 12:34:56', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_datetime', + '_bindType' => Column::BIND_PARAM_STR, + ], + 22 => [ + '_columnName' => 'field_time', + '_schemaName' => null, + '_type' => Column::TYPE_TIME, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_datetime_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 23 => [ + '_columnName' => 'field_time_default', + '_schemaName' => null, + '_type' => Column::TYPE_TIME, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => '12:34:56', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_time', + '_bindType' => Column::BIND_PARAM_STR, + ], + 24 => [ + '_columnName' => 'field_timestamp', + '_schemaName' => null, + '_type' => Column::TYPE_TIMESTAMP, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_time_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 25 => [ + '_columnName' => 'field_timestamp_default', + '_schemaName' => null, + '_type' => Column::TYPE_TIMESTAMP, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => '2018-10-01 12:34:56', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_timestamp', + '_bindType' => Column::BIND_PARAM_STR, + ], + 26 => [ + '_columnName' => 'field_mediumint', + '_schemaName' => null, + '_type' => Column::TYPE_INTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_timestamp_default', + '_bindType' => Column::BIND_PARAM_INT, + ], + 27 => [ + '_columnName' => 'field_mediumint_default', + '_schemaName' => null, + '_type' => Column::TYPE_INTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_mediumint', + '_bindType' => Column::BIND_PARAM_INT, + ], + 28 => [ + '_columnName' => 'field_smallint', + '_schemaName' => null, + '_type' => Column::TYPE_SMALLINTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_mediumint_default', + '_bindType' => Column::BIND_PARAM_INT, + ], + 29 => [ + '_columnName' => 'field_smallint_default', + '_schemaName' => null, + '_type' => Column::TYPE_SMALLINTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_smallint', + '_bindType' => Column::BIND_PARAM_INT, + ], + 30 => [ + '_columnName' => 'field_tinyint', + '_schemaName' => null, + '_type' => Column::TYPE_SMALLINTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_smallint_default', + '_bindType' => Column::BIND_PARAM_INT, + ], + 31 => [ + '_columnName' => 'field_tinyint_default', + '_schemaName' => null, + '_type' => Column::TYPE_SMALLINTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_tinyint', + '_bindType' => Column::BIND_PARAM_INT, + ], + 32 => [ + '_columnName' => 'field_longtext', + '_schemaName' => null, + '_type' => Column::TYPE_TEXT, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_tinyint_default', + '_bindType' => Column::BIND_PARAM_STR, + ], + 33 => [ + '_columnName' => 'field_mediumtext', + '_schemaName' => null, + '_type' => Column::TYPE_TEXT, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_longtext', + '_bindType' => Column::BIND_PARAM_STR, + ], + 34 => [ + '_columnName' => 'field_tinytext', + '_schemaName' => null, + '_type' => Column::TYPE_TEXT, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_mediumtext', + '_bindType' => Column::BIND_PARAM_STR, + ], + 35 => [ + '_columnName' => 'field_text', + '_schemaName' => null, + '_type' => Column::TYPE_TEXT, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_tinytext', + '_bindType' => Column::BIND_PARAM_STR, + ], + 36 => [ + '_columnName' => 'field_varchar', + '_schemaName' => null, + '_type' => Column::TYPE_VARCHAR, + '_isNumeric' => false, + '_size' => 10, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_text', + '_bindType' => Column::BIND_PARAM_STR, + ], + 37 => [ + '_columnName' => 'field_varchar_default', + '_schemaName' => null, + '_type' => Column::TYPE_VARCHAR, + '_isNumeric' => false, + '_size' => 10, + '_scale' => 0, + '_default' => 'D', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_varchar', + '_bindType' => Column::BIND_PARAM_STR, + ], + ]; + } + + /** + * Return the array of expected columns + * + * @return array + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-10-26 + */ + protected function getExpectedColumns(): array + { + $result = []; + $columns = $this->getColumns(); + foreach ($columns as $index => $array) { + $result[$index] = Column::__set_state($array); + } + + return $result; + } + + /** + * Return the array of expected indexes + * + * @return array + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-10-26 + */ + protected function getExpectedIndexes(): array + { + return [ + 'dialect_table_pk' => Index::__set_state( + [ + '_name' => 'dialect_table_pk', + '_columns' => ['field_primary'], + '_type' => '', + ] + ), + 'dialect_table_unique' => Index::__set_state( + [ + '_name' => 'dialect_table_unique', + '_columns' => ['field_integer'], + '_type' => '', + ] + ), + 'dialect_table_index' => Index::__set_state( + [ + '_name' => 'dialect_table_index', + '_columns' => ['field_bigint'], + '_type' => '', + ] + ), + 'dialect_table_two_fields' => Index::__set_state( + [ + '_name' => 'dialect_table_two_fields', + '_columns' => ['field_char', 'field_char_default'], + '_type' => '', + ] + ), + ]; + } + + /** + * Return the array of expected references + * + * @return array + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-10-26 + */ + protected function getExpectedReferences(): array + { + return [ + 'dialect_table_intermediate_primary__fk' => Reference::__set_state( + [ + '_referenceName' => 'dialect_table_intermediate_primary__fk', + '_referencedTable' => 'dialect_table', + '_columns' => ['field_primary_id'], + '_referencedColumns' => ['field_primary'], + '_referencedSchema' => $this->getDatabaseName(), + '_onUpdate' => 'NO ACTION', + '_onDelete' => 'NO ACTION' + ] + ), + 'dialect_table_intermediate_remote__fk' => Reference::__set_state( + [ + '_referenceName' => 'dialect_table_intermediate_remote__fk', + '_referencedTable' => 'dialect_table_remote', + '_columns' => ['field_remote_id'], + '_referencedColumns' => ['field_primary'], + '_referencedSchema' => $this->getDatabaseName(), + '_onUpdate' => 'NO ACTION', + '_onDelete' => 'NO ACTION' + ] + ), + ]; + } +} diff --git a/tests/_data/fixtures/Traits/DiTrait.php b/tests/_data/fixtures/Traits/DiTrait.php new file mode 100644 index 00000000000..fe7ae3d9fbd --- /dev/null +++ b/tests/_data/fixtures/Traits/DiTrait.php @@ -0,0 +1,321 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Traits; + +use function cacheFolder; +use Phalcon\Cache\Frontend\Data; +use Phalcon\Cache\Backend\File; +use Phalcon\Cache\Backend\Libmemcached; +use Phalcon\Annotations\Adapter\Memory as AnnotationsMemory; +use Phalcon\Cli\Console as CliConsole; +use Phalcon\Crypt; +use Phalcon\Db\Adapter\Pdo\Mysql; +use Phalcon\Db\Adapter\Pdo\Postgresql; +use Phalcon\Db\Adapter\Pdo\Sqlite; +use Phalcon\Di; +use Phalcon\DiInterface; +use Phalcon\Di\FactoryDefault; +use Phalcon\Di\FactoryDefault\Cli as CliFactoryDefault; +use Phalcon\Escaper; +use Phalcon\Events\Manager as EventsManager; +use Phalcon\Filter; +use Phalcon\Http\Request; +use Phalcon\Http\Response; +use Phalcon\Mvc\Models\Manager as ModelsManager; +use Phalcon\Mvc\Models\Metadata\Memory as MetadataMemory; +use Phalcon\Mvc\Url; +use Phalcon\Mvc\View; +use Phalcon\Mvc\View\Simple; +use Phalcon\Session\Adapter\Files as FilesSession; +use function dataFolder; + +trait DiTrait +{ + /** + * @var null|DiInterface + */ + protected $container = null; + + protected function getDi() + { + return $this->container; + } + + protected function getService(string $name) + { + return $this->container->get($name); + } + + protected function getAndSetModelsCacheFile() + { + $cache = new File( + new Data( + [ + 'lifetime' => 3600 + ] + ), + [ + 'cacheDir' => cacheFolder() + ] + ); + $this->container->set('modelsCache', $cache); + + return $cache; + } + + protected function getAndSetModelsCacheFileLibmemcached() + { + $config = [ + 'servers' => [ + [ + 'host' => env('DATA_MEMCACHED_HOST'), + 'port' => env('DATA_MEMCACHED_PORT'), + 'weight' => env('DATA_MEMCACHED_WEIGHT'), + ] + ], + ]; + + $cache = new Libmemcached(new Data(['lifetime' => 3600]), $config); + $this->container->set('modelsCache', $cache); + + return $cache; + } + + protected function newDi() + { + Di::reset(); + $this->container = new Di(); + Di::setDefault($this->container); + } + + protected function setNewFactoryDefault() + { + Di::reset(); + $this->container = $this->newFactoryDefault(); + Di::setDefault($this->container); + } + + protected function setNewCliFactoryDefault() + { + Di::reset(); + $this->container = $this->newCliFactoryDefault(); + Di::setDefault($this->container); + } + + protected function newFactoryDefault() + { + return new FactoryDefault(); + } + + protected function newCliConsole() + { + return new CliConsole(); + } + + protected function newCliFactoryDefault() + { + return new CliFactoryDefault(); + } + + protected function newEventsManager() + { + return new EventsManager(); + } + + protected function newModelsManager() + { + return new ModelsManager(); + } + + protected function resetDi() + { + Di::reset(); + } + + protected function setCliConsole() + { + return $this->container->get('console'); + } + + protected function setDiAnnotations() + { + $this->container->set('annotations', new AnnotationsMemory()); + } + + protected function setDiCrypt() + { + $this->container->set( + 'crypt', + function () { + $crypt = new Crypt(); + $crypt->setKey('cryptkeycryptkey'); + + return $crypt; + } + ); + } + + protected function setDiEscaper() + { + $this->container->set('escaper', Escaper::class); + } + + protected function setDiEventsManager() + { + $this->container->set('eventsManager', EventsManager::class); + } + + protected function setDiFilter() + { + $this->container->set('filter', Filter::class); + } + + protected function setDiModelsManager() + { + $this->container->setShared('modelsManager', ModelsManager::class); + } + + protected function setDiModelsMetadata() + { + $this->container->setShared('modelsMetadata', MetadataMemory::class); + } + + /** + * Set up db service (mysql) + */ + protected function setDiMysql() + { + $this->container->setShared('db', $this->newDiMysql()); + } + + /** + * Set up db service (Postgresql) + */ + protected function setDiPostgresql() + { + $this->container->set('db', $this->newDiPostgresql()); + } + + /** + * Set up db service (mysql) + */ + protected function newDiMysql() + { + $options = [ + 'host' => env('DATA_MYSQL_HOST'), + 'username' => env('DATA_MYSQL_USER'), + 'password' => env('DATA_MYSQL_PASS'), + 'dbname' => env('DATA_MYSQL_NAME'), + 'charset' => env('DATA_MYSQL_CHARSET'), + ]; + + return new Mysql($options); + } + + /** + * Set up db service (Postgresql) + */ + protected function newDiPostgresql() + { + $options = [ + 'host' => env('DATA_POSTGRES_HOST'), + 'username' => env('DATA_POSTGRES_USER'), + 'password' => env('DATA_POSTGRES_PASS'), + 'dbname' => env('DATA_POSTGRES_NAME'), + 'schema' => env('DATA_POSTGRES_SCHEMA'), + ]; + + return new Postgresql($options); + } + + /** + * Set up db service (Sqlite) + */ + protected function newDiSqlite() + { + $options = [ + 'dbname' => env('DATA_SQLITE_NAME'), + ]; + + return new Sqlite($options); + } + + protected function setDiResponse() + { + $this->container->set('response', Response::class); + } + + protected function setDiRequest() + { + $this->container->set('request', Request::class); + } + + protected function setDiSession() + { + $this->container->set('session', FilesSession::class); + } + + /** + * Set up db service (Sqlite) + */ + protected function setDiSqlite() + { + $this->container->set('db', $this->newDiSqlite()); + } + + protected function setDiUrl() + { + $this->container->set( + 'url', + function () { + $url = new Url(); + $url->setBaseUri('/'); + + return $url; + } + ); + } + + protected function setDiView() + { + $this->container->set( + 'view', + function () { + $view = new View(); + $view->setViewsDir(dataFolder('fixtures/views')); + + return $view; + } + ); + } + + protected function setDiViewSimple() + { + $this->container->set( + 'viewSimple', + function () { + $view = new Simple(); + $view->setViewsDir(dataFolder('fixtures/views/')); + + return $view; + } + ); + } + + protected function setupPostgres() + { + $this->setNewFactoryDefault(); + $this->setDiPostgresql(); + + $this->connection = $this->getService('db'); + } +} diff --git a/tests/_data/fixtures/Traits/DialectTrait.php b/tests/_data/fixtures/Traits/DialectTrait.php new file mode 100644 index 00000000000..8d380ceee3d --- /dev/null +++ b/tests/_data/fixtures/Traits/DialectTrait.php @@ -0,0 +1,307 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Traits; + +use Phalcon\Db\Column; +use Phalcon\Db\Dialect\Mysql; +use Phalcon\Db\Dialect\Postgresql; +use Phalcon\Db\Dialect\Sqlite; +use Phalcon\Db\Index; +use Phalcon\Db\Reference; + +trait DialectTrait +{ + /** + * @return Column[] + */ + protected function getColumns() + { + return [ + 'column1' => new Column( + 'column1', + [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + ] + ), + 'column2' => new Column( + 'column2', + [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + ] + ), + 'column3' => new Column( + 'column3', + [ + 'type' => Column::TYPE_DECIMAL, + 'size' => 10, + 'scale' => 2, + 'unsigned' => false, + 'notNull' => true, + ] + ), + 'column4' => new Column( + 'column4', + [ + 'type' => Column::TYPE_CHAR, + 'size' => 100, + 'notNull' => true, + ] + ), + 'column5' => new Column( + 'column5', + [ + 'type' => Column::TYPE_DATE, + 'notNull' => true, + ] + ), + 'column6' => new Column( + 'column6', + [ + 'type' => Column::TYPE_DATETIME, + 'notNull' => true, + ] + ), + 'column7' => new Column( + 'column7', + [ + 'type' => Column::TYPE_TEXT, + 'notNull' => true, + ] + ), + 'column8' => new Column( + 'column8', + [ + 'type' => Column::TYPE_FLOAT, + 'size' => 10, + 'scale' => 2, + 'unsigned' => false, + 'notNull' => true, + ] + ), + 'column9' => new Column( + 'column9', + [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + 'default' => 'column9', + ] + ), + 'column10' => new Column( + 'column10', + [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + 'default' => 10, + ] + ), + 'column11' => new Column( + 'column11', + [ + 'type' => 'BIGINT', + 'typeReference' => Column::TYPE_INTEGER, + 'size' => 20, + 'unsigned' => true, + 'notNull' => false, + ] + ), + 'column12' => new Column( + 'column12', + [ + 'type' => 'ENUM', + 'typeValues' => ['A', 'B', 'C'], + 'notNull' => true, + 'default' => 'A', + 'after' => 'column11', + ] + ), + 'column13' => new Column( + 'column13', + [ + 'type' => Column::TYPE_TIMESTAMP, + 'notNull' => true, + 'default' => 'CURRENT_TIMESTAMP', + ] + ), + 'column14' => new Column( + 'column14', + [ + 'type' => Column::TYPE_TINYBLOB, + 'notNull' => true, + ] + ), + 'column15' => new Column( + 'column15', + [ + 'type' => Column::TYPE_MEDIUMBLOB, + 'notNull' => true, + ] + ), + 'column16' => new Column( + 'column16', + [ + 'type' => Column::TYPE_BLOB, + 'notNull' => true, + ] + ), + 'column17' => new Column( + 'column17', + [ + 'type' => Column::TYPE_LONGBLOB, + 'notNull' => true, + ] + ), + 'column18' => new Column( + 'column18', + [ + 'type' => Column::TYPE_BOOLEAN, + ] + ), + 'column19' => new Column( + 'column19', + [ + 'type' => Column::TYPE_DOUBLE, + ] + ), + 'column20' => new Column( + 'column20', + [ + 'type' => Column::TYPE_DOUBLE, + 'unsigned' => true, + ] + ), + 'column21' => new Column( + 'column21', + [ + 'type' => Column::TYPE_BIGINTEGER, + 'autoIncrement' => true, + ] + ), + 'column22' => new Column( + 'column22', + [ + 'type' => Column::TYPE_BIGINTEGER, + 'autoIncrement' => false, + ] + ), + 'column23' => new Column( + 'column23', + [ + 'type' => Column::TYPE_INTEGER, + 'autoIncrement' => true, + ] + ), + ]; + } + + /** + * Returns the object for the dialect + * + * @return Mysql + */ + protected function getDialectMysql(): Mysql + { + return new Mysql(); + } + + /** + * Returns the object for the dialect + * + * @return Postgresql + */ + protected function getDialectPostgresql(): Postgresql + { + return new Postgresql(); + } + + /** + * Returns the object for the dialect + * + * @return Sqlite + */ + protected function getDialectSqlite(): Sqlite + { + return new Sqlite(); + } + + /** + * @return Index[] + */ + protected function getIndexes() + { + return [ + 'index1' => new Index('index1', ['column1']), + 'index2' => new Index('index2', ['column1', 'column2']), + 'PRIMARY' => new Index('PRIMARY', ['column3']), + 'index4' => new Index('index4', ['column4'], 'UNIQUE'), + 'index5' => new Index('index5', ['column7'], 'FULLTEXT'), + ]; + } + + /** + * @return Reference[] + */ + protected function getReferences() + { + return [ + 'fk1' => new Reference( + 'fk1', + [ + 'referencedTable' => 'ref_table', + 'columns' => ['column1'], + 'referencedColumns' => ['column2'], + ] + ), + 'fk2' => new Reference( + 'fk2', + [ + 'referencedTable' => 'ref_table', + 'columns' => ['column3', 'column4'], + 'referencedColumns' => ['column5', 'column6'], + ] + ), + 'fk3' => new Reference( + 'fk3', + [ + 'referencedTable' => 'ref_table', + 'columns' => ['column1'], + 'referencedColumns' => ['column2'], + 'onDelete' => 'CASCADE', + ] + ), + 'fk4' => new Reference( + 'fk4', + [ + 'referencedTable' => 'ref_table', + 'columns' => ['column1'], + 'referencedColumns' => ['column2'], + 'onUpdate' => 'SET NULL', + ] + ), + 'fk5' => new Reference( + 'fk5', + [ + 'referencedTable' => 'ref_table', + 'columns' => ['column1'], + 'referencedColumns' => ['column2'], + 'onDelete' => 'CASCADE', + 'onUpdate' => 'NO ACTION', + ] + ), + ]; + } +} diff --git a/tests/_data/fixtures/Traits/FactoryTrait.php b/tests/_data/fixtures/Traits/FactoryTrait.php new file mode 100644 index 00000000000..7c431821538 --- /dev/null +++ b/tests/_data/fixtures/Traits/FactoryTrait.php @@ -0,0 +1,32 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Traits; + +use function dataFolder; +use Phalcon\Config\Adapter\Ini; + +trait FactoryTrait +{ + protected $config; + + /** + * @var array + */ + protected $arrayConfig; + + protected function init() + { + $configFile = dataFolder("assets/config/factory.ini"); + $this->config = new Ini($configFile, INI_SCANNER_NORMAL); + $this->arrayConfig = $this->config->toArray(); + } +} diff --git a/tests/_data/fixtures/Traits/RedisTrait.php b/tests/_data/fixtures/Traits/RedisTrait.php new file mode 100644 index 00000000000..c55b6f9682c --- /dev/null +++ b/tests/_data/fixtures/Traits/RedisTrait.php @@ -0,0 +1,30 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Traits; + +use UnitTester; + +trait RedisTrait +{ + protected $options = []; + + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('redis'); + $this->options = [ + 'host' => env('DATA_REDIS_HOST'), + 'port' => env('DATA_REDIS_PORT'), + 'index' => env('DATA_REDIS_NAME'), + 'statsKey' => '_PHCR', + ]; + } +} diff --git a/tests/_support/Helper/Mvc/RouterTrait.php b/tests/_data/fixtures/Traits/RouterTrait.php similarity index 84% rename from tests/_support/Helper/Mvc/RouterTrait.php rename to tests/_data/fixtures/Traits/RouterTrait.php index 8427cae308e..a44a228e409 100644 --- a/tests/_support/Helper/Mvc/RouterTrait.php +++ b/tests/_data/fixtures/Traits/RouterTrait.php @@ -1,22 +1,17 @@ <?php /** - * Trait for Router test + * This file is part of the Phalcon Framework. * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Models + * (c) Phalcon Team <team@phalconphp.com> * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. */ -namespace Helper\Mvc; +namespace Phalcon\Test\Fixtures\Traits; + +use UnitTester; use Phalcon\Di; use Phalcon\Mvc\Router; diff --git a/tests/_data/fixtures/Traits/TranslateTrait.php b/tests/_data/fixtures/Traits/TranslateTrait.php new file mode 100644 index 00000000000..6cdc34dbd08 --- /dev/null +++ b/tests/_data/fixtures/Traits/TranslateTrait.php @@ -0,0 +1,88 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Traits; + +use function dataFolder; +use UnitTester; + +trait TranslateTrait +{ + /** + * Executed before each test + * + * @param UnitTester $I + */ + public function _before(UnitTester $I, $scenario) + { + $I->checkExtensionIsLoaded('gettext'); + + if (!setlocale(LC_ALL, 'en_US.utf8')) { + $scenario->skip("Locale en_US.utf8 not enabled"); + } + } + + /** + * @return array + */ + protected function getArrayConfig(): array + { + return [ + 'en' => [ + 'hi' => 'Hello', + 'bye' => 'Good Bye', + 'hello-key' => 'Hello %name%', + 'song-key' => 'This song is %song% (%artist%)', + ], + 'es' => [ + 'hi' => 'Hola', + 'bye' => 'Adiós', + 'hello-key' => 'Hola %name%', + 'song-key' => 'La canción es %song% (%artist%)', + ], + 'fr' => [ + 'hi' => 'Bonjour', + 'bye' => 'Au revoir', + 'hello-key' => 'Bonjour %name%', + 'song-key' => 'La chanson est %song% (%artist%)', + ], + 'ru' => [ + 'Hello!' => 'Привет!', + 'Hello %fname% %mname% %lname%!' => 'Привет, %fname% %mname% %lname%!', + ], + ]; + } + + /** + * @return array + */ + protected function getCsvConfig(): array + { + return [ + 'ru' => [ + 'content' => dataFolder('assets/translation/csv/ru_RU.csv'), + ], + ]; + } + + /** + * @return array + */ + protected function getGettextConfig(): array + { + return [ + 'locale' => 'en_US.utf8', + 'defaultDomain' => 'messages', + 'directory' => dataFolder('assets/translation/gettext'), + 'category' => LC_MESSAGES, + ]; + } +} diff --git a/tests/_data/fixtures/Traits/ValidationTrait.php b/tests/_data/fixtures/Traits/ValidationTrait.php new file mode 100644 index 00000000000..82fb2626725 --- /dev/null +++ b/tests/_data/fixtures/Traits/ValidationTrait.php @@ -0,0 +1,105 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Traits; + +use Phalcon\Validation\ValidatorInterface; +use IntegrationTester; + +trait ValidationTrait +{ + /** + * Tests Phalcon\Validation\Validator\* :: __construct() + * + * @param IntegrationTester $I + * @param ValidatorInterface $validator + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + private function checkConstruct(IntegrationTester $I, ValidatorInterface $validator) + { + $I->wantToTest($this->getMessage($validator, '__construct()')); + $I->assertInstanceOf(ValidatorInterface::class, $validator); + } + + /** + * Formats a message to be displayed in the tests + * + * @param ValidatorInterface $validator + * @param string $method + * + * @return string + */ + private function getMessage(ValidatorInterface $validator, string $method): string + { + $class = get_class($validator); + + return sprintf(str_replace('Phalcon\\', '', $class) . ' - %s', $method); + } + + /** + * Tests Phalcon\Validation\Validator\* :: getOption() + * + * @param IntegrationTester $I + * @param ValidatorInterface $validator + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + private function checkGetOption(IntegrationTester $I, ValidatorInterface $validator) + { + $I->wantToTest($this->getMessage($validator, 'getOption()')); + $validator->setOption('option', 'value'); + + $expected = 'value'; + $actual = $validator->getOption('option'); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\* :: hasOption() + * + * @param IntegrationTester $I + * @param ValidatorInterface $validator + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + private function checkHasOption(IntegrationTester $I, ValidatorInterface $validator) + { + $I->wantToTest($this->getMessage($validator, 'hasOption()')); + $actual = $validator->hasOption('option'); + $I->assertFalse($actual); + + $actual = $validator->hasOption('message'); + $I->assertTrue($actual); + } + + /** + * Tests Phalcon\Validation\Validator\* :: setOption() + * + * @param IntegrationTester $I + * @param ValidatorInterface $validator + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + private function checkSetOption(IntegrationTester $I, ValidatorInterface $validator) + { + $I->wantToTest($this->getMessage($validator, 'setOption()')); + $validator->setOption('option', 'value'); + + $expected = 'value'; + $actual = $validator->getOption('option'); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/_data/fixtures/Traits/VersionTrait.php b/tests/_data/fixtures/Traits/VersionTrait.php new file mode 100644 index 00000000000..e0d90088dbf --- /dev/null +++ b/tests/_data/fixtures/Traits/VersionTrait.php @@ -0,0 +1,74 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Traits; + +trait VersionTrait +{ + /** + * Translates a number to a special version string (ALPHA, BETA, RC) + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + * + * @param string $number + * + * @return string + */ + protected function numberToSpecial($number): string + { + $special = ''; + + switch ($number) { + case '1': + $special = 'ALPHA'; + break; + case '2': + $special = 'BETA'; + break; + case '3': + $special = 'RC'; + break; + } + + return $special; + } + + /** + * Translates a special version (ALPHA, BETA, RC) to a version number + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + * + * @param string $input + * + * @return string + */ + protected function specialToNumber($input): string + { + switch ($input) { + case 'ALPHA': + $special = '1'; + break; + case 'BETA': + $special = '2'; + break; + case 'RC': + $special = '3'; + break; + default: + $special = '4'; + break; + } + + return $special; + } +} diff --git a/tests/_data/fixtures/Traits/ViewTrait.php b/tests/_data/fixtures/Traits/ViewTrait.php new file mode 100644 index 00000000000..3b82f86e6b8 --- /dev/null +++ b/tests/_data/fixtures/Traits/ViewTrait.php @@ -0,0 +1,92 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Fixtures\Traits; + +use Phalcon\Mvc\View; +use DirectoryIterator; +use Phalcon\Mvc\ViewBaseInterface; + +trait ViewTrait +{ + protected $level; + + /** + * @var View + */ + protected $view; + + /** + * executed before each test + */ + public function _before() + { + $this->level = ob_get_level(); + $this->view = new View(); + } + + /** + * executed after each test + */ + public function _after() + { + while (ob_get_level() > $this->level) { + ob_end_flush(); + } + } + + protected function renderPartialBuffered(ViewBaseInterface $view, $partial, $expectedParams = null) + { + ob_start(); + $view->partial($partial, $expectedParams); + ob_clean(); + } + + /** + * Set params and check expected data after render view + * + * @param string $errorMessage + * @param array $params + * @param View $view + */ + protected function setParamAndCheckData($errorMessage, $params, $view) + { + foreach ($params as $param) { + $view->setParamToView($param['paramToView'][0], $param['paramToView'][1]); + + $view->start(); + $view->setRenderLevel($param['renderLevel']); + $view->render($param['render'][0], $param['render'][1]); + $view->finish(); + + $this->assertEquals( + $view->getContent(), + $param['expected'], + $errorMessage + ); + } + } + + protected function clearCache() + { + if (!file_exists(env('PATH_CACHE'))) { + mkdir(env('PATH_CACHE')); + } + + foreach (new DirectoryIterator(env('PATH_CACHE')) as $item) { + if ($item->isDir()) { + continue; + } + + unlink($item->getPathname()); + } + } +} diff --git a/tests/_data/fixtures/controllers/AboutController.php b/tests/_data/fixtures/controllers/AboutController.php new file mode 100644 index 00000000000..877c88d2466 --- /dev/null +++ b/tests/_data/fixtures/controllers/AboutController.php @@ -0,0 +1,29 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Controllers; + +class AboutController +{ + /** + * @Get("/about/team") + */ + public function teamAction() + { + } + + /** + * @Post("/about/team") + */ + public function teamPostAction() + { + } +} diff --git a/tests/_data/controllers/ExceptionController.php b/tests/_data/fixtures/controllers/ExceptionController.php similarity index 100% rename from tests/_data/controllers/ExceptionController.php rename to tests/_data/fixtures/controllers/ExceptionController.php diff --git a/tests/_data/fixtures/controllers/MainController.php b/tests/_data/fixtures/controllers/MainController.php new file mode 100644 index 00000000000..39012a8bb68 --- /dev/null +++ b/tests/_data/fixtures/controllers/MainController.php @@ -0,0 +1,22 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Controllers; + +class MainController +{ + /** + * @Get("/") + */ + public function indexAction() + { + } +} diff --git a/tests/_data/fixtures/controllers/Micro/Collections/PersonasController.php b/tests/_data/fixtures/controllers/Micro/Collections/PersonasController.php new file mode 100644 index 00000000000..73997904977 --- /dev/null +++ b/tests/_data/fixtures/controllers/Micro/Collections/PersonasController.php @@ -0,0 +1,32 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Controllers\Micro\Collections; + +class PersonasController +{ + protected $entered = 0; + + public function index() + { + $this->entered++; + } + + public function edit($number) + { + $this->entered += $number; + } + + public function getEntered() + { + return $this->entered; + } +} diff --git a/tests/_data/fixtures/controllers/Micro/Collections/PersonasLazyController.php b/tests/_data/fixtures/controllers/Micro/Collections/PersonasLazyController.php new file mode 100644 index 00000000000..53d5acabe16 --- /dev/null +++ b/tests/_data/fixtures/controllers/Micro/Collections/PersonasLazyController.php @@ -0,0 +1,32 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Controllers\Micro\Collections; + +class PersonasLazyController +{ + static protected $entered = 0; + + public static function getEntered() + { + return self::$entered; + } + + public function index() + { + self::$entered++; + } + + public function edit($number) + { + self::$entered += $number; + } +} diff --git a/tests/_data/fixtures/controllers/MicroController.php b/tests/_data/fixtures/controllers/MicroController.php new file mode 100644 index 00000000000..39636cbea4f --- /dev/null +++ b/tests/_data/fixtures/controllers/MicroController.php @@ -0,0 +1,57 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Controllers; + +use Phalcon\Mvc\Controller; + +class MicroController extends Controller +{ + public function indexAction() + { + } + + public function otherAction() + { + } + + public function anotherAction() + { + return 100; + } + + public function anotherTwoAction($a, $b) + { + return $a + $b; + } + + public function anotherThreeAction() + { + $this->dispatcher->forward( + [ + 'controller' => 'micro', + 'action' => 'anotherfour' + ] + ); + + return; + } + + public function anotherFourAction() + { + return 120; + } + + public function anotherFiveAction() + { + return $this->dispatcher->getParam('param1') + $this->dispatcher->getParam('param2'); + } +} diff --git a/tests/_data/fixtures/controllers/NamespacedAnnotationController.php b/tests/_data/fixtures/controllers/NamespacedAnnotationController.php new file mode 100644 index 00000000000..6395fc5a24a --- /dev/null +++ b/tests/_data/fixtures/controllers/NamespacedAnnotationController.php @@ -0,0 +1,22 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace MyNamespace\Controllers; + +class NamespacedAnnotationController +{ + /** + * @Get("/") + */ + public function indexAction() + { + } +} diff --git a/tests/_data/fixtures/controllers/ProductsController.php b/tests/_data/fixtures/controllers/ProductsController.php new file mode 100644 index 00000000000..b10887c279b --- /dev/null +++ b/tests/_data/fixtures/controllers/ProductsController.php @@ -0,0 +1,37 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Controllers; + +class ProductsController +{ + /** + * @Get("/products") + */ + public function indexAction() + { + } + + /** + * @Get("/products/edit/{id:[0-9]+}", name="edit-product") + * @param int $id + */ + public function editAction($id) + { + } + + /** + * @Route("/products/save", methods={"POST", "PUT"}, name="save-product") + */ + public function saveAction() + { + } +} diff --git a/tests/_data/fixtures/controllers/RobotsController.php b/tests/_data/fixtures/controllers/RobotsController.php new file mode 100644 index 00000000000..9dc56eef9b6 --- /dev/null +++ b/tests/_data/fixtures/controllers/RobotsController.php @@ -0,0 +1,40 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Controllers; + +/** + * @RoutePrefix("/robots") + */ +class RobotsController +{ + /** + * @Get("/") + */ + public function indexAction() + { + } + + /** + * @Get("/edit/{id:[0-9]+}", name="edit-robot") + * @param int $id + */ + public function editAction($id) + { + } + + /** + * @Route("/save", methods={"POST", "PUT"}, name="save-robot") + */ + public function saveAction() + { + } +} diff --git a/tests/_data/fixtures/controllers/ViewRequestController.php b/tests/_data/fixtures/controllers/ViewRequestController.php new file mode 100644 index 00000000000..f4024feea6d --- /dev/null +++ b/tests/_data/fixtures/controllers/ViewRequestController.php @@ -0,0 +1,27 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Controllers; + +use Phalcon\Mvc\Controller; + +class ViewRequestController extends Controller +{ + public function requestAction() + { + return $this->request->getPost('email', 'email'); + } + + public function viewAction() + { + return $this->view->setParamToView('born', 'this'); + } +} diff --git a/tests/_fixtures/metadata/robots.php b/tests/_data/fixtures/metadata/robots.php similarity index 100% rename from tests/_fixtures/metadata/robots.php rename to tests/_data/fixtures/metadata/robots.php diff --git a/tests/_data/fixtures/models/Abonnes.php b/tests/_data/fixtures/models/Abonnes.php new file mode 100644 index 00000000000..16160a15acf --- /dev/null +++ b/tests/_data/fixtures/models/Abonnes.php @@ -0,0 +1,103 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; +use Phalcon\Messages\Message; +use Phalcon\Validation; +use Phalcon\Validation\Validator\Email as EmailValidator; +use Phalcon\Validation\Validator\ExclusionIn as ExclusionInValidator; +use Phalcon\Validation\Validator\InclusionIn as InclusionInValidator; +use Phalcon\Validation\Validator\PresenceOf as PresenceOfValidator; +use Phalcon\Validation\Validator\Regex as RegexValidator; +use Phalcon\Validation\Validator\StringLength as StringLengthValidator; +use Phalcon\Validation\Validator\Uniqueness as UniquenessValidator; + +class Abonnes extends Model +{ + + public function getSource(): string + { + return 'subscriptores'; + } + + public function beforeValidation() + { + if ($this->courrierElectronique == 'marina@hotmail.com') { + $this->appendMessage(new Message('Désolé Marina, mais vous n\'êtes pas autorisé ici')); + return false; + } + } + + public function beforeDelete() + { + if ($this->courrierElectronique == 'fuego@hotmail.com') { + //Sorry this cannot be deleted + $this->appendMessage(new Message('Désolé, ce ne peut pas être supprimé')); + return false; + } + } + + public function validation() + { + $validator = new Validation(); + + $validator->add('creeA', new PresenceOfValidator([ + 'message' => "La date de création est nécessaire", + ])); + + $validator->add('courrierElectronique', new EmailValidator([ + 'field' => '', + 'message' => 'Le courrier électronique est invalide', + ])); + + $validator->add('statut', new ExclusionInValidator([ + 'domain' => ['X', 'Z'], + 'message' => 'L\'état ne doit être "X" ou "Z"', + ])); + + $validator->add('statut', new InclusionInValidator([ + 'domain' => ['P', 'I', 'w'], + 'message' => 'L\'état doit être "P", "I" ou "w"', + ])); + + $validator->add('courrierElectronique', new UniquenessValidator([ + 'message' => 'Le courrier électronique doit être unique', + 'model' => $this, + ])); + + $validator->add('statut', new RegexValidator([ + 'pattern' => '/[A-Z]/', + 'message' => "L'état ne correspond pas à l'expression régulière", + ])); + + $validator->add('courrierElectronique', new StringLengthValidator([ + 'min' => '7', + 'max' => '50', + 'messageMinimum' => "Le courrier électronique est trop court", + 'messageMaximum' => "Le courrier électronique est trop long", + ])); + + return $this->validate($validator); + } + + public function columnMap() + { + return [ + 'id' => 'code', + 'email' => 'courrierElectronique', + 'created_at' => 'creeA', + 'status' => 'statut', + ]; + } + +} diff --git a/tests/_data/fixtures/models/AlbumORama/Albums.php b/tests/_data/fixtures/models/AlbumORama/Albums.php new file mode 100644 index 00000000000..beff879d6f2 --- /dev/null +++ b/tests/_data/fixtures/models/AlbumORama/Albums.php @@ -0,0 +1,38 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\AlbumORama; + +use Phalcon\Mvc\Model; + +class Albums extends Model +{ + public function initialize() + { + $this->belongsTo( + 'artists_id', + Artists::class, + 'id', + [ + 'alias' => 'artist', + ] + ); + + $this->hasMany( + 'id', + Songs::class, + 'albums_id', + [ + 'alias' => 'songs', + ] + ); + } +} diff --git a/tests/_data/fixtures/models/AlbumORama/Artists.php b/tests/_data/fixtures/models/AlbumORama/Artists.php new file mode 100644 index 00000000000..28c08cb98b5 --- /dev/null +++ b/tests/_data/fixtures/models/AlbumORama/Artists.php @@ -0,0 +1,29 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\AlbumORama; + +use Phalcon\Mvc\Model; + +class Artists extends Model +{ + public function initialize() + { + $this->hasMany( + 'id', + Albums::class, + 'artists_id', + [ + 'alias' => 'albums', + ] + ); + } +} diff --git a/tests/_data/fixtures/models/AlbumORama/Songs.php b/tests/_data/fixtures/models/AlbumORama/Songs.php new file mode 100644 index 00000000000..a7f8231db70 --- /dev/null +++ b/tests/_data/fixtures/models/AlbumORama/Songs.php @@ -0,0 +1,29 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\AlbumORama; + +use Phalcon\Mvc\Model; + +class Songs extends Model +{ + public function initialize() + { + $this->hasMany( + 'id', + Albums::class, + 'albums_id', + [ + 'alias' => 'album', + ] + ); + } +} diff --git a/tests/_data/models/Annotations/Robot.php b/tests/_data/fixtures/models/Annotations/Robot.php similarity index 87% rename from tests/_data/models/Annotations/Robot.php rename to tests/_data/fixtures/models/Annotations/Robot.php index d4170d364f6..c1c4bab92b4 100644 --- a/tests/_data/models/Annotations/Robot.php +++ b/tests/_data/fixtures/models/Annotations/Robot.php @@ -1,10 +1,18 @@ <?php +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + namespace Phalcon\Test\Models\Annotations; use Phalcon\Mvc\Model; - class Robot extends Model { /** @@ -98,5 +106,4 @@ class Robot extends Model * @Column(type="longblob", nullable=true, skip_on_update=true) */ protected $longblob; - } diff --git a/tests/_data/fixtures/models/BodyParts/Body.php b/tests/_data/fixtures/models/BodyParts/Body.php new file mode 100644 index 00000000000..57413ac87c4 --- /dev/null +++ b/tests/_data/fixtures/models/BodyParts/Body.php @@ -0,0 +1,52 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\BodyParts; + +use Phalcon\Mvc\Model; + +class Body extends Model +{ + public $id; + public $head_1_id; + public $head_2_id; + + public function initialize() + { + $this->setSource('issue12071_body'); + + $this->belongsTo( + 'head_1_id', + Head::class, + 'id', + [ + 'alias' => 'head1', + "foreignKey" => [ + "allowNulls" => true, + "message" => "First head does not exists", + ], + ] + ); + + $this->belongsTo( + 'head_2_id', + Head::class, + 'id', + [ + 'alias' => 'head2', + "foreignKey" => [ + "allowNulls" => true, + "message" => "Second head does not exists", + ], + ] + ); + } +} diff --git a/tests/_data/fixtures/models/BodyParts/Head.php b/tests/_data/fixtures/models/BodyParts/Head.php new file mode 100644 index 00000000000..60dbf17fd1f --- /dev/null +++ b/tests/_data/fixtures/models/BodyParts/Head.php @@ -0,0 +1,24 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\BodyParts; + +use Phalcon\Mvc\Model; + +class Head extends Model +{ + public $id; + + public function initialize() + { + $this->setSource('issue12071_head'); + } +} diff --git a/tests/_data/fixtures/models/Boutique/Robots.php b/tests/_data/fixtures/models/Boutique/Robots.php new file mode 100644 index 00000000000..fe15aefa31f --- /dev/null +++ b/tests/_data/fixtures/models/Boutique/Robots.php @@ -0,0 +1,71 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Boutique; + +use Phalcon\Mvc\Model; + +class Robots extends Model +{ + const setterEpilogue = " setText"; + + /** + * @Primary + * @Identity + * @Column(type="integer", nullable=false) + */ + public $id; + + /** + * @Column(type="string", length=70, nullable=false) + */ + public $name; + + /** + * @Column(type="string", length=32, nullable=false, default='mechanical') + */ + public $type; + + /** + * @Column(type="integer", nullable=false, default=1900) + */ + public $year; + + /** + * @Column(type="datetime", nullable=false) + */ + public $datetime; + + /** + * @Column(type="datetime", nullable=true) + */ + public $deleted; + + /** + * @Column(type="text", nullable=false) + */ + protected $text; + + /** + * Test restriction to not set hidden properties without setters. + */ + protected $serial; + + public function getText() + { + return $this->text; + } + + public function setText($value) + { + return ($this->text = $value . self::setterEpilogue); + } +} diff --git a/tests/_data/fixtures/models/Boutique/Robotters.php b/tests/_data/fixtures/models/Boutique/Robotters.php new file mode 100644 index 00000000000..4c290a12f4e --- /dev/null +++ b/tests/_data/fixtures/models/Boutique/Robotters.php @@ -0,0 +1,44 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Boutique; + +use Phalcon\Mvc\Model; + +class Robotters extends Model +{ + /** + * @Primary + * @Identity + * @Column(type="integer", nullable=false, mappedColumn="id") + */ + public $code; + + /** + * @Column(type="string", length=70, nullable=false, mappedColumn="id") + */ + public $theName; + + /** + * @Column(type="string", length=32, nullable=false, mappedColumn="id") + */ + public $theType; + + /** + * @Column(type="integer", nullable=false, mappedColumn="id") + */ + public $theYear; + + public function getSource(): string + { + return 'robots'; + } +} diff --git a/tests/_data/fixtures/models/Cacheable/Model.php b/tests/_data/fixtures/models/Cacheable/Model.php new file mode 100644 index 00000000000..e970cedad41 --- /dev/null +++ b/tests/_data/fixtures/models/Cacheable/Model.php @@ -0,0 +1,53 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Cacheable; + +use Phalcon\Mvc\Model as PhalconModel; + +class Model extends PhalconModel +{ + public static function findFirst($parameters = null) + { + $parameters = self::getCacheableParams($parameters); + return parent::findFirst($parameters); + } + + public static function getCacheableParams($parameters) + { + if (!$parameters) { + return $parameters; + } + + if (isset($parameters['di'])) { + unset ($parameters['di']); + } + + $key = md5(get_called_class() . serialize($parameters)); + + if (!is_array($parameters)) { + $parameters = [$parameters]; + } + + $parameters['cache'] = [ + 'key' => $key, + 'lifetime' => 3600, + ]; + + return $parameters; + } + + public static function find($parameters = null) + { + $parameters = self::getCacheableParams($parameters); + return parent::find($parameters); + } +} diff --git a/tests/_data/fixtures/models/Cacheable/Parts.php b/tests/_data/fixtures/models/Cacheable/Parts.php new file mode 100644 index 00000000000..fcb0b682566 --- /dev/null +++ b/tests/_data/fixtures/models/Cacheable/Parts.php @@ -0,0 +1,29 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Cacheable; + +use Phalcon\Mvc\Model as PhalconModel; + +class Parts extends PhalconModel +{ + public function initialize() + { + $this->hasMany( + 'id', + RobotsParts::class, + 'robots_id', + [ + 'alias' => 'RobotsParts', + ] + ); + } +} diff --git a/tests/_data/fixtures/models/Cacheable/Robots.php b/tests/_data/fixtures/models/Cacheable/Robots.php new file mode 100644 index 00000000000..e8416c9e1d7 --- /dev/null +++ b/tests/_data/fixtures/models/Cacheable/Robots.php @@ -0,0 +1,29 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Cacheable; + +use Phalcon\Mvc\Model as PhalconModel; + +class Robots extends PhalconModel +{ + public function initialize() + { + $this->hasMany( + 'id', + RobotsParts::class, + 'robots_id', + [ + 'alias' => 'RobotsParts', + ] + ); + } +} diff --git a/tests/_data/fixtures/models/Cacheable/RobotsParts.php b/tests/_data/fixtures/models/Cacheable/RobotsParts.php new file mode 100644 index 00000000000..e9fb1cc134f --- /dev/null +++ b/tests/_data/fixtures/models/Cacheable/RobotsParts.php @@ -0,0 +1,38 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Cacheable; + +use Phalcon\Mvc\Model as PhalconModel; + +class RobotsParts extends PhalconModel +{ + public function initialize() + { + $this->belongsTo( + 'robots_id', + Robots::class, + 'id', + [ + 'alias' => 'Robots', + ] + ); + + $this->belongsTo( + 'parts_id', + Parts::class, + 'id', + [ + 'alias' => 'Parts', + ] + ); + } +} diff --git a/tests/_data/fixtures/models/Childs.php b/tests/_data/fixtures/models/Childs.php new file mode 100644 index 00000000000..f85e4521182 --- /dev/null +++ b/tests/_data/fixtures/models/Childs.php @@ -0,0 +1,29 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class Childs extends Model +{ + public $id; + + public $parent; + + public $source; + + public $transaction; + + public $for; + + public $group; +} diff --git a/tests/_data/fixtures/models/Customers.php b/tests/_data/fixtures/models/Customers.php new file mode 100644 index 00000000000..39174bcdc9f --- /dev/null +++ b/tests/_data/fixtures/models/Customers.php @@ -0,0 +1,43 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; +use Phalcon\Mvc\Model\Resultset\Simple; + +/** + * @method static Simple|Customers[] find($parameters = null) + * @property Simple|Users $user + */ +class Customers extends Model +{ + public $id; + public $document_id; + public $customer_id; + public $first_name; + public $last_name; + public $phone; + public $email; + public $instructions; + public $status; + public $birth_date; + public $credit_line; + public $created_at; + + protected $protected_field; + private $private_field; + + public function initialize() + { + $this->hasOne('customer_id', Users::class, 'id', ['alias' => 'user', 'reusable' => true]); + } +} diff --git a/tests/_data/fixtures/models/Deles.php b/tests/_data/fixtures/models/Deles.php new file mode 100644 index 00000000000..5ae84ec1569 --- /dev/null +++ b/tests/_data/fixtures/models/Deles.php @@ -0,0 +1,41 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class Deles extends Model +{ + + public function getSource(): string + { + return 'parts'; + } + + public function columnMap() + { + return [ + 'id' => 'code', + 'name' => 'theName', + ]; + } + + public function initialize() + { + $this->hasMany('code', RobottersDeles::class, 'delesCode', [ + 'foreignKey' => [ + 'message' => 'Deles cannot be deleted because is referenced by a Robotter', + ], + ]); + } + +} diff --git a/tests/_data/fixtures/models/Dynamic/Personas.php b/tests/_data/fixtures/models/Dynamic/Personas.php new file mode 100644 index 00000000000..99e7f9621be --- /dev/null +++ b/tests/_data/fixtures/models/Dynamic/Personas.php @@ -0,0 +1,37 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Dynamic; + +use Phalcon\Mvc\Model as PhalconModel; + +/** + * @property string $cedula + * @property int $tipo_documento_id + * @property string $nombres + * @property string $telefono + * @property string $direccion + * @property string $email + * @property string $fecha_nacimiento + * @property int $ciudad_id + * @property int $creado_at + * @property float $cupo + * @property string $estado + * + * @method static Personas findFirst($parameters = null) + */ +class Personas extends PhalconModel +{ + public function initialize() + { + $this->useDynamicUpdate(true); + } +} diff --git a/tests/_data/fixtures/models/Dynamic/Personers.php b/tests/_data/fixtures/models/Dynamic/Personers.php new file mode 100644 index 00000000000..f8452c70ed4 --- /dev/null +++ b/tests/_data/fixtures/models/Dynamic/Personers.php @@ -0,0 +1,64 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Dynamic; + +use Phalcon\Mvc\Model\Behavior\SoftDelete; +use Phalcon\Mvc\Model as PhalconModel; + +/** + * @property string $borgerId + * @property int $slagBorgerId + * @property string $navnes + * @property string $telefon + * @property string $adresse + * @property string $elektroniskPost + * @property string $fodtDato + * @property int $fodebyId + * @property int $skabtPa + * @property float $kredit + * @property string $status + * + * @method static Personers findFirst($parameters = null) + */ +class Personers extends PhalconModel +{ + public function initialize() + { + $this->setSource('personas'); + $this->useDynamicUpdate(true); + $this->addBehavior( + new SoftDelete( + [ + 'field' => 'status', + 'value' => 'X', + ] + ) + ); + } + + public function columnMap() + { + return [ + 'cedula' => 'borgerId', + 'tipo_documento_id' => 'slagBorgerId', + 'nombres' => 'navnes', + 'telefono' => 'telefon', + 'direccion' => 'adresse', + 'email' => 'elektroniskPost', + 'fecha_nacimiento' => 'fodtDato', + 'ciudad_id' => 'fodebyId', + 'creado_at' => 'skabtPa', + 'cupo' => 'kredit', + 'estado' => 'status', + ]; + } +} diff --git a/tests/_data/fixtures/models/Dynamic/Robots.php b/tests/_data/fixtures/models/Dynamic/Robots.php new file mode 100644 index 00000000000..c3dfb00a758 --- /dev/null +++ b/tests/_data/fixtures/models/Dynamic/Robots.php @@ -0,0 +1,39 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Dynamic; + +use Phalcon\Mvc\Model as PhalconModel; +use Phalcon\Test\Models\RobotsParts; + +/** + * @property int $id + * @property string $name + * @property string $type + * @property int $year + * @property string $datetime + * @property string $deleted + * @property string $text + * + * @method static Robots findFirst($parameters = null) + * @method static Robots[] find($parameters = null) + */ +class Robots extends PhalconModel +{ + public $year; + + public function initialize() + { + $this->hasMany('id', RobotsParts::class, 'robots_id'); + + $this->useDynamicUpdate(true); + } +} diff --git a/tests/_data/fixtures/models/GossipRobots.php b/tests/_data/fixtures/models/GossipRobots.php new file mode 100644 index 00000000000..aedbc4672f6 --- /dev/null +++ b/tests/_data/fixtures/models/GossipRobots.php @@ -0,0 +1,99 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class GossipRobots extends Model +{ + + public $trace; + + public function getSource(): string + { + return 'robots'; + } + + public function beforeValidation() + { + $this->_talk(__METHOD__); + } + + protected function _talk($completeMethod) + { + $method = explode('::', $completeMethod); + if (!isset($this->trace[$method[1]][get_class($this)])) { + $this->trace[$method[1]][get_class($this)] = 1; + } else { + $this->trace[$method[1]][get_class($this)]++; + } + } + + public function beforeValidationOnUpdate() + { + $this->_talk(__METHOD__); + } + + public function afterValidationOnUpdate() + { + $this->_talk(__METHOD__); + } + + public function validation() + { + $this->_talk(__METHOD__); + } + + public function afterValidation() + { + $this->_talk(__METHOD__); + } + + public function beforeSave() + { + $this->_talk(__METHOD__); + } + + public function beforeUpdate() + { + $this->_talk(__METHOD__); + } + + public function afterUpdate() + { + $this->_talk(__METHOD__); + } + + public function afterSave() + { + $this->_talk(__METHOD__); + } + + public function beforeCreate() + { + $this->_talk(__METHOD__); + return false; + } + + public function beforeDelete() + { + $this->_talk(__METHOD__); + return false; + } + + public function notSaved() + { + $this->_talk(__METHOD__); + return false; + } + +} diff --git a/tests/_data/fixtures/models/I1534.php b/tests/_data/fixtures/models/I1534.php new file mode 100644 index 00000000000..7c5dcf3ebb0 --- /dev/null +++ b/tests/_data/fixtures/models/I1534.php @@ -0,0 +1,18 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class I1534 extends Model +{ +} diff --git a/tests/_data/fixtures/models/Language.php b/tests/_data/fixtures/models/Language.php new file mode 100644 index 00000000000..da945d8f5ba --- /dev/null +++ b/tests/_data/fixtures/models/Language.php @@ -0,0 +1,40 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; +use Phalcon\Mvc\Model\Resultset\Simple; + +/** + * @property string lang + * @property string locale + * @property Simple translations + * @method Simple getTranslations() + * @package Phalcon\Test\Models + */ +class Language extends Model +{ + public function getSource(): string + { + return 'language'; + } + + public function initialize() + { + $this->hasMany( + ['lang', 'locale'], + LanguageI18n::class, + ['from_lang', 'from_locale'], + ['alias' => 'translations'] + ); + } +} diff --git a/tests/_data/fixtures/models/LanguageI18n.php b/tests/_data/fixtures/models/LanguageI18n.php new file mode 100644 index 00000000000..f2168eac8f2 --- /dev/null +++ b/tests/_data/fixtures/models/LanguageI18n.php @@ -0,0 +1,47 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +/** + * @property string from_lang + * @property string from_locale + * @property string lang + * @property string locale + * + * @package Phalcon\Test\Models + */ +class LanguageI18n extends Model +{ + public function getSource(): string + { + return 'languagei18n'; + } + + public function initialize() + { + $this->belongsTo( + ['from_lang', 'from_lang'], + Language::class, + ['lang', 'locale'], + ['alias' => 'Origin'] + ); + + $this->belongsTo( + ['lang', 'locale'], + Language::class, + ['lang', 'locale'], + ['alias' => 'Target'] + ); + } +} diff --git a/tests/_data/fixtures/models/ModelWithStringField.php b/tests/_data/fixtures/models/ModelWithStringField.php new file mode 100644 index 00000000000..cb140c42eac --- /dev/null +++ b/tests/_data/fixtures/models/ModelWithStringField.php @@ -0,0 +1,46 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class ModelWithStringField extends Model +{ + /** + * @var int + */ + public $id; + /** + * @var string + */ + public $field; + + /** + * @return string + */ + public function getSource(): string + { + return 'table_with_string_field'; + } + + public function allowEmptyStringValue() + { + $this->allowEmptyStringValues([ + 'field', + ]); + } + + public function disallowEmptyStringValue() + { + $this->allowEmptyStringValues([]); + } +} diff --git a/tests/_data/fixtures/models/News/Subscribers.php b/tests/_data/fixtures/models/News/Subscribers.php new file mode 100644 index 00000000000..8882ef173b0 --- /dev/null +++ b/tests/_data/fixtures/models/News/Subscribers.php @@ -0,0 +1,41 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\News; + +use Phalcon\Mvc\Model as PhalconModel; +use Phalcon\Mvc\Model\Behavior\SoftDelete; +use Phalcon\Mvc\Model\Behavior\Timestampable; + +class Subscribers extends PhalconModel +{ + + public function getSource(): string + { + return 'subscriptores'; + } + + public function initialize() + { + $this->addBehavior(new Timestampable([ + 'beforeCreate' => [ + 'field' => 'created_at', + 'format' => 'Y-m-d H:i:s', + ], + ])); + + $this->addBehavior(new SoftDelete([ + 'field' => 'status', + 'value' => 'D', + ])); + } + +} diff --git a/tests/_data/fixtures/models/PackageDetails.php b/tests/_data/fixtures/models/PackageDetails.php new file mode 100644 index 00000000000..630a5c98a59 --- /dev/null +++ b/tests/_data/fixtures/models/PackageDetails.php @@ -0,0 +1,25 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class PackageDetails extends Model +{ + public $reference_type_id; + public $reference_id; + public $type; + public $value; + public $created; + public $updated; + public $deleted; +} diff --git a/tests/_data/fixtures/models/Packages.php b/tests/_data/fixtures/models/Packages.php new file mode 100644 index 00000000000..4eb20aa2e8c --- /dev/null +++ b/tests/_data/fixtures/models/Packages.php @@ -0,0 +1,40 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; +use Phalcon\Mvc\Model\Resultset; + +/** + * @method static Packages[] find($parameters = null) + * @method Resultset|PackageDetails getDetails($parameters = null) + * @property Resultset|PackageDetails details + */ +class Packages extends Model +{ + public $reference_type_id; + public $reference_id; + public $title; + public $created; + public $updated; + public $deleted; + + public function initialize() + { + $this->hasMany( + ['reference_id', 'reference_type_id'], + PackageDetails::class, + ['reference_id', 'reference_type_id'], + ['alias' => 'details'] + ); + } +} diff --git a/tests/_data/fixtures/models/Parts.php b/tests/_data/fixtures/models/Parts.php new file mode 100644 index 00000000000..27894163400 --- /dev/null +++ b/tests/_data/fixtures/models/Parts.php @@ -0,0 +1,28 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class Parts extends Model +{ + + public function initialize() + { + $this->hasMany('id', RobotsParts::class, 'parts_id', [ + 'foreignKey' => [ + 'message' => 'Parts cannot be deleted because is referenced by a Robot', + ], + ]); + } + +} diff --git a/tests/_data/fixtures/models/Parts2.php b/tests/_data/fixtures/models/Parts2.php new file mode 100644 index 00000000000..f5032043548 --- /dev/null +++ b/tests/_data/fixtures/models/Parts2.php @@ -0,0 +1,29 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Events\Manager; +use Phalcon\Mvc\Model; + +class Parts2 extends Model +{ + public function initialize() + { + $eventsManager = new Manager(); + + $eventsManager->attach('model', function ($event, $robot) { + return true; + }); + $this->setEventsManager($eventsManager); + $this->setSource('parts'); + } +} diff --git a/tests/_data/fixtures/models/People.php b/tests/_data/fixtures/models/People.php new file mode 100644 index 00000000000..0f05b157a1c --- /dev/null +++ b/tests/_data/fixtures/models/People.php @@ -0,0 +1,22 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class People extends Model +{ + public function getSource(): string + { + return 'personas'; + } +} diff --git a/tests/_data/fixtures/models/Personas.php b/tests/_data/fixtures/models/Personas.php new file mode 100644 index 00000000000..0bc81ed2054 --- /dev/null +++ b/tests/_data/fixtures/models/Personas.php @@ -0,0 +1,19 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class Personas extends Model +{ + +} diff --git a/tests/_data/fixtures/models/Personers.php b/tests/_data/fixtures/models/Personers.php new file mode 100644 index 00000000000..045a105705e --- /dev/null +++ b/tests/_data/fixtures/models/Personers.php @@ -0,0 +1,41 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class Personers extends Model +{ + + public function getSource(): string + { + return 'personas'; + } + + public function columnMap() + { + return [ + 'cedula' => 'borgerId', + 'tipo_documento_id' => 'slagBorgerId', + 'nombres' => 'navnes', + 'telefono' => 'telefon', + 'direccion' => 'adresse', + 'email' => 'elektroniskPost', + 'fecha_nacimiento' => 'fodtDato', + 'ciudad_id' => 'fodebyId', + 'creado_at' => 'skabtPa', + 'cupo' => 'kredit', + 'estado' => 'status', + ]; + } + +} diff --git a/tests/_data/fixtures/models/Personnes.php b/tests/_data/fixtures/models/Personnes.php new file mode 100644 index 00000000000..21eb1b1d418 --- /dev/null +++ b/tests/_data/fixtures/models/Personnes.php @@ -0,0 +1,19 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class Personnes extends Model +{ + +} diff --git a/tests/_data/fixtures/models/Pessoas.php b/tests/_data/fixtures/models/Pessoas.php new file mode 100644 index 00000000000..71030c9a77a --- /dev/null +++ b/tests/_data/fixtures/models/Pessoas.php @@ -0,0 +1,41 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class Pessoas extends Model +{ + + public function getSource(): string + { + return 'personnes'; + } + + public function columnMap() + { + return [ + 'cedula' => 'identificacao', + 'tipo_documento_id' => 'tipoIdentificacao', + 'nombres' => 'nomes', + 'telefono' => 'telefone', + 'direccion' => 'endereco', + 'email' => 'elektroniskPost', + 'fecha_nacimiento' => 'correio', + 'ciudad_id' => 'cidadeId', + 'creado_at' => 'criadoEm', + 'cupo' => 'credito', + 'estado' => 'estado', + ]; + } + +} diff --git a/tests/_data/fixtures/models/Products.php b/tests/_data/fixtures/models/Products.php new file mode 100644 index 00000000000..ca70dd96781 --- /dev/null +++ b/tests/_data/fixtures/models/Products.php @@ -0,0 +1,19 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class Products extends Model +{ + +} diff --git a/tests/_data/fixtures/models/Prueba.php b/tests/_data/fixtures/models/Prueba.php new file mode 100644 index 00000000000..5415ed221c5 --- /dev/null +++ b/tests/_data/fixtures/models/Prueba.php @@ -0,0 +1,19 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class Prueba extends Model +{ + +} diff --git a/tests/_data/fixtures/models/Relations/Deles.php b/tests/_data/fixtures/models/Relations/Deles.php new file mode 100644 index 00000000000..b84bbabb421 --- /dev/null +++ b/tests/_data/fixtures/models/Relations/Deles.php @@ -0,0 +1,40 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Relations; + +use Phalcon\Mvc\Model; + +class Deles extends Model +{ + public function getSource(): string + { + return 'parts'; + } + + public function columnMap() + { + return [ + 'id' => 'code', + 'name' => 'theName', + ]; + } + + public function initialize() + { + $this->hasMany('code', RobottersDeles::class, 'delesCode', [ + 'foreignKey' => [ + 'message' => 'Deles cannot be deleted because is referenced by a Robotter', + ], + ]); + } + +} diff --git a/tests/_data/fixtures/models/Relations/M2MParts.php b/tests/_data/fixtures/models/Relations/M2MParts.php new file mode 100644 index 00000000000..f400c611509 --- /dev/null +++ b/tests/_data/fixtures/models/Relations/M2MParts.php @@ -0,0 +1,22 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Relations; + +use Phalcon\Mvc\Model; + +class M2MParts extends Model +{ + public function getSource(): string + { + return 'm2m_parts'; + } +} diff --git a/tests/_data/fixtures/models/Relations/M2MRobots.php b/tests/_data/fixtures/models/Relations/M2MRobots.php new file mode 100644 index 00000000000..1ed58885084 --- /dev/null +++ b/tests/_data/fixtures/models/Relations/M2MRobots.php @@ -0,0 +1,27 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Relations; + +use Phalcon\Mvc\Model; + +class M2MRobots extends Model +{ + public function initialize() + { + $this->hasManyToMany('id', M2MRobotsParts::class, 'robots_id', 'parts_id', 'M2MParts', 'id'); + } + + public function getSource(): string + { + return 'm2m_robots'; + } +} diff --git a/tests/_data/fixtures/models/Relations/M2MRobotsParts.php b/tests/_data/fixtures/models/Relations/M2MRobotsParts.php new file mode 100644 index 00000000000..6d0a021a1d5 --- /dev/null +++ b/tests/_data/fixtures/models/Relations/M2MRobotsParts.php @@ -0,0 +1,22 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Relations; + +use Phalcon\Mvc\Model; + +class M2MRobotsParts extends Model +{ + public function getSource(): string + { + return 'm2m_robots_parts'; + } +} diff --git a/tests/_data/fixtures/models/Relations/RelationsParts.php b/tests/_data/fixtures/models/Relations/RelationsParts.php new file mode 100644 index 00000000000..814e2bd98d0 --- /dev/null +++ b/tests/_data/fixtures/models/Relations/RelationsParts.php @@ -0,0 +1,31 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Relations; + +use Phalcon\Mvc\Model; + +class RelationsParts extends Model +{ + public function initialize() + { + $this->hasMany('id', RelationsRobotsParts::class, 'parts_id', [ + 'foreignKey' => [ + 'message' => 'Parts cannot be deleted because is referenced by a Robot', + ], + ]); + } + + public function getSource(): string + { + return 'parts'; + } +} diff --git a/tests/_data/fixtures/models/Relations/RelationsRobots.php b/tests/_data/fixtures/models/Relations/RelationsRobots.php new file mode 100644 index 00000000000..1fb16348b98 --- /dev/null +++ b/tests/_data/fixtures/models/Relations/RelationsRobots.php @@ -0,0 +1,37 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Relations; + +use Phalcon\Mvc\Model; + +class RelationsRobots extends Model +{ + public function initialize() + { + $this->hasMany('id', RelationsRobotsParts::class, 'robots_id', [ + 'foreignKey' => true, + ]); + $this->hasManyToMany( + 'id', + RelationsRobotsParts::class, + 'robots_id', + 'parts_id', + RelationsParts::class, + 'id' + ); + } + + public function getSource(): string + { + return 'robots'; + } +} diff --git a/tests/_data/fixtures/models/Relations/RelationsRobotsParts.php b/tests/_data/fixtures/models/Relations/RelationsRobotsParts.php new file mode 100644 index 00000000000..0cfafe34690 --- /dev/null +++ b/tests/_data/fixtures/models/Relations/RelationsRobotsParts.php @@ -0,0 +1,34 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Relations; + +use Phalcon\Mvc\Model; + +class RelationsRobotsParts extends Model +{ + public function initialize() + { + $this->belongsTo('parts_id', RelationsParts::class, 'id', [ + 'foreignKey' => true, + ]); + $this->belongsTo('robots_id', RelationsRobots::class, 'id', [ + 'foreignKey' => [ + 'message' => 'The robot code does not exist', + ], + ]); + } + + public function getSource(): string + { + return 'robots_parts'; + } +} diff --git a/tests/_data/fixtures/models/Relations/Robots.php b/tests/_data/fixtures/models/Relations/Robots.php new file mode 100644 index 00000000000..2b5eeef5af9 --- /dev/null +++ b/tests/_data/fixtures/models/Relations/Robots.php @@ -0,0 +1,18 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Relations; + +use Phalcon\Mvc\Model; + +class Robots extends Model +{ +} diff --git a/tests/_data/fixtures/models/Relations/RobotsParts.php b/tests/_data/fixtures/models/Relations/RobotsParts.php new file mode 100644 index 00000000000..d4f6806420b --- /dev/null +++ b/tests/_data/fixtures/models/Relations/RobotsParts.php @@ -0,0 +1,41 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Relations; + +use Phalcon\Mvc\Model; +use Phalcon\Mvc\Model\Row; + +/** + * Phalcon\Test\Models\Relations\RobotsParts + * + * @method static RobotsParts findFirst($parameters = null) + * @method Row getRobots($parameters = null) + * + * @package Phalcon\Test\Models\Relations + */ +class RobotsParts extends Model +{ + public function initialize() + { + $this->belongsTo( + 'robots_id', + __NAMESPACE__ . '\Robots', + 'id', + [ + 'alias' => 'Robots', + 'params' => [ + 'columns' => 'id,name', + ], + ] + ); + } +} diff --git a/tests/_data/fixtures/models/Relations/Robotters.php b/tests/_data/fixtures/models/Relations/Robotters.php new file mode 100644 index 00000000000..542975a8cbf --- /dev/null +++ b/tests/_data/fixtures/models/Relations/Robotters.php @@ -0,0 +1,42 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Relations; + +use Phalcon\Mvc\Model; + +class Robotters extends Model +{ + public function getSource(): string + { + return 'robots'; + } + + public function columnMap() + { + return [ + 'id' => 'code', + 'name' => 'theName', + 'type' => 'theType', + 'year' => 'theYear', + 'datetime' => 'theDatetime', + 'deleted' => 'theDeleted', + 'text' => 'theText', + ]; + } + + public function initialize() + { + $this->hasMany('code', RobottersDeles::class, 'robottersCode', [ + 'foreignKey' => true, + ]); + } +} diff --git a/tests/_data/fixtures/models/Relations/RobottersDeles.php b/tests/_data/fixtures/models/Relations/RobottersDeles.php new file mode 100644 index 00000000000..a4ee0ae51e4 --- /dev/null +++ b/tests/_data/fixtures/models/Relations/RobottersDeles.php @@ -0,0 +1,46 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Relations; + +use Phalcon\Mvc\Model; + +class RobottersDeles extends Model +{ + + public function getSource(): string + { + return 'robots_parts'; + } + + public function columnMap() + { + return [ + 'id' => 'code', + 'robots_id' => 'robottersCode', + 'parts_id' => 'delesCode', + ]; + } + + public function initialize() + { + + $this->belongsTo('delesCode', Deles::class, 'code', [ + 'foreignKey' => true, + ]); + + $this->belongsTo('robottersCode', Robotters::class, 'code', [ + 'foreignKey' => [ + 'message' => 'The robotters code does not exist', + ], + ]); + } +} diff --git a/tests/_data/fixtures/models/Relations/Some/Deles.php b/tests/_data/fixtures/models/Relations/Some/Deles.php new file mode 100644 index 00000000000..94b2ce854c1 --- /dev/null +++ b/tests/_data/fixtures/models/Relations/Some/Deles.php @@ -0,0 +1,40 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Relations\Some; + +use Phalcon\Mvc\Model; + +class Deles extends Model +{ + public function getSource(): string + { + return 'parts'; + } + + public function columnMap() + { + return [ + 'id' => 'code', + 'name' => 'theName', + ]; + } + + public function initialize() + { + $this->hasMany('code', RobottersDeles::class, 'delesCode', [ + 'foreignKey' => [ + 'message' => 'Deles cannot be deleted because is referenced by a Robotter', + ], + ]); + } + +} diff --git a/tests/_data/fixtures/models/Relations/Some/Parts.php b/tests/_data/fixtures/models/Relations/Some/Parts.php new file mode 100644 index 00000000000..cd27f657f00 --- /dev/null +++ b/tests/_data/fixtures/models/Relations/Some/Parts.php @@ -0,0 +1,33 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Relations\Some; + +use Phalcon\Mvc\Model; + +class Parts extends Model +{ + + public function getSource(): string + { + return 'parts'; + } + + public function initialize() + { + $this->hasMany('id', RobotsParts::class, 'parts_id', [ + 'foreignKey' => [ + 'message' => 'Parts cannot be deleted because is referenced by a Robot', + ], + ]); + } + +} diff --git a/tests/_data/fixtures/models/Relations/Some/Products.php b/tests/_data/fixtures/models/Relations/Some/Products.php new file mode 100644 index 00000000000..854ed39a3f5 --- /dev/null +++ b/tests/_data/fixtures/models/Relations/Some/Products.php @@ -0,0 +1,61 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Relations\Some; + +use Phalcon\Mvc\Model; +use Phalcon\Db\Column; + +class Products extends Model +{ + + public function getSource(): string + { + return 'le_products'; + } + + public function metaData() + { + return [ + MetaData::MODELS_ATTRIBUTES => [ + 'id', 'name', 'type', 'price', + ], + MetaData::MODELS_PRIMARY_KEY => [ + 'id', + ], + MetaData::MODELS_NON_PRIMARY_KEY => [ + 'name', 'type', 'price', + ], + MetaData::MODELS_NOT_NULL => [ + 'id', 'name', 'type', 'price', + ], + MetaData::MODELS_DATA_TYPES => [ + 'id' => Column::TYPE_INTEGER, + 'name' => Column::TYPE_VARCHAR, + 'type' => Column::TYPE_VARCHAR, + 'price' => Column::TYPE_INTEGER, + ], + MetaData::MODELS_DATA_TYPES_NUMERIC => [ + 'id' => true, + 'price' => true, + ], + MetaData::MODELS_IDENTITY_COLUMN => 'id', + MetaData::MODELS_DATA_TYPES_BIND => [ + 'id' => Column::BIND_PARAM_INT, + 'name' => Column::BIND_PARAM_STR, + 'type' => Column::BIND_PARAM_STR, + 'price' => Column::BIND_PARAM_INT, + ], + MetaData::MODELS_AUTOMATIC_DEFAULT_INSERT => [], + MetaData::MODELS_AUTOMATIC_DEFAULT_UPDATE => [], + ]; + } +} diff --git a/tests/_data/fixtures/models/Relations/Some/Robots.php b/tests/_data/fixtures/models/Relations/Some/Robots.php new file mode 100644 index 00000000000..21ea3096c5a --- /dev/null +++ b/tests/_data/fixtures/models/Relations/Some/Robots.php @@ -0,0 +1,35 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Relations\Some; + +use Phalcon\Mvc\Model; + +class Robots extends Model +{ + + public function getSource(): string + { + return 'robots'; + } + + public function initialize() + { + $this->hasMany('id', RobotsParts::class, 'robots_id', [ + 'foreignKey' => true, + ]); + } + + public function getRobotsParts($arguments = null) + { + return $this->getRelated(RobotsParts::class, $arguments); + } +} diff --git a/tests/_data/fixtures/models/Relations/Some/RobotsParts.php b/tests/_data/fixtures/models/Relations/Some/RobotsParts.php new file mode 100644 index 00000000000..1dc90934c7f --- /dev/null +++ b/tests/_data/fixtures/models/Relations/Some/RobotsParts.php @@ -0,0 +1,34 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Relations\Some; + +use Phalcon\Mvc\Model; + +class RobotsParts extends Model +{ + public function getSource(): string + { + return 'robots_parts'; + } + + public function initialize() + { + $this->belongsTo('parts_id', Parts::class, 'id', [ + 'foreignKey' => true, + ]); + $this->belongsTo('robots_id', Robots::class, 'id', [ + 'foreignKey' => [ + 'message' => 'The robot code does not exist', + ], + ]); + } +} diff --git a/tests/_data/fixtures/models/Relations/Some/Robotters.php b/tests/_data/fixtures/models/Relations/Some/Robotters.php new file mode 100644 index 00000000000..9aee1fd39a6 --- /dev/null +++ b/tests/_data/fixtures/models/Relations/Some/Robotters.php @@ -0,0 +1,48 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Relations\Some; + +use Phalcon\Mvc\Model; + +class Robotters extends Model +{ + + public function getSource(): string + { + return 'robots'; + } + + public function columnMap() + { + return [ + 'id' => 'code', + 'name' => 'theName', + 'type' => 'theType', + 'year' => 'theYear', + 'datetime' => 'theDatetime', + 'deleted' => 'theDeleted', + 'text' => 'theText', + ]; + } + + public function initialize() + { + $this->hasMany('code', RobottersDeles::class, 'robottersCode', [ + 'foreignKey' => true, + ]); + } + + public function getRobottersDeles($arguments = null) + { + return $this->getRelated(RobottersDeles::class, $arguments); + } +} diff --git a/tests/_data/fixtures/models/Relations/Some/RobottersDeles.php b/tests/_data/fixtures/models/Relations/Some/RobottersDeles.php new file mode 100644 index 00000000000..cb6d8a1e674 --- /dev/null +++ b/tests/_data/fixtures/models/Relations/Some/RobottersDeles.php @@ -0,0 +1,46 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Relations\Some; + +use Phalcon\Mvc\Model; + +class RobottersDeles extends Model +{ + + public function getSource(): string + { + return 'robots_parts'; + } + + public function columnMap() + { + return [ + 'id' => 'code', + 'robots_id' => 'robottersCode', + 'parts_id' => 'delesCode', + ]; + } + + public function initialize() + { + + $this->belongsTo('delesCode', Deles::class, 'code', [ + 'foreignKey' => true, + ]); + + $this->belongsTo('robottersCode', Robotters::class, 'code', [ + 'foreignKey' => [ + 'message' => 'The robotters code does not exist', + ], + ]); + } +} diff --git a/tests/_data/fixtures/models/Robos.php b/tests/_data/fixtures/models/Robos.php new file mode 100644 index 00000000000..7d58d5ee794 --- /dev/null +++ b/tests/_data/fixtures/models/Robos.php @@ -0,0 +1,30 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +/** + * @author David Napierata + */ +class Robos extends Model +{ + public function getSource(): string + { + return 'robots'; + } + + public function initialize() + { + $this->setConnectionService('dbTwo'); + } +} diff --git a/tests/_data/fixtures/models/Robots.php b/tests/_data/fixtures/models/Robots.php new file mode 100644 index 00000000000..583db691c34 --- /dev/null +++ b/tests/_data/fixtures/models/Robots.php @@ -0,0 +1,29 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class Robots extends Model +{ + public function initialize() + { + $this->hasMany( + 'id', + RobotsParts::class, + 'robots_id', + [ + 'foreignKey' => true, + ] + ); + } +} diff --git a/tests/_data/fixtures/models/Robots2.php b/tests/_data/fixtures/models/Robots2.php new file mode 100644 index 00000000000..9270543acfa --- /dev/null +++ b/tests/_data/fixtures/models/Robots2.php @@ -0,0 +1,42 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class Robots2 extends Model +{ + protected $myname; + + public function getSource(): string + { + return 'robots'; + } + + public function getName() + { + return $this->myname; + } + + public function columnMap() + { + return [ + 'id' => 'id', + 'name' => 'myname', + 'type' => 'type', + 'year' => 'year', + 'datetime' => 'datetime', + 'deleted' => 'deleted', + 'text' => 'text', + ]; + } +} diff --git a/tests/_data/fixtures/models/RobotsParts.php b/tests/_data/fixtures/models/RobotsParts.php new file mode 100644 index 00000000000..968ebfbefba --- /dev/null +++ b/tests/_data/fixtures/models/RobotsParts.php @@ -0,0 +1,31 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class RobotsParts extends Model +{ + + public function initialize() + { + $this->belongsTo('parts_id', Parts::class, 'id', [ + 'foreignKey' => true, + ]); + $this->belongsTo('robots_id', Robots::class, 'id', [ + 'foreignKey' => [ + 'message' => 'The robot code does not exist', + ], + ]); + } + +} diff --git a/tests/_data/fixtures/models/Robotters.php b/tests/_data/fixtures/models/Robotters.php new file mode 100644 index 00000000000..166d2511702 --- /dev/null +++ b/tests/_data/fixtures/models/Robotters.php @@ -0,0 +1,44 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class Robotters extends Model +{ + + public function getSource(): string + { + return 'robots'; + } + + public function columnMap() + { + return [ + 'id' => 'code', + 'name' => 'theName', + 'type' => 'theType', + 'year' => 'theYear', + 'datetime' => 'theDatetime', + 'deleted' => 'theDeleted', + 'text' => 'theText', + ]; + } + + public function initialize() + { + $this->hasMany('code', RobottersDeles::class, 'robottersCode', [ + 'foreignKey' => true, + ]); + } + +} diff --git a/tests/_data/fixtures/models/RobottersDeles.php b/tests/_data/fixtures/models/RobottersDeles.php new file mode 100644 index 00000000000..56359b96a70 --- /dev/null +++ b/tests/_data/fixtures/models/RobottersDeles.php @@ -0,0 +1,46 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class RobottersDeles extends Model +{ + + public function getSource(): string + { + return 'robots_parts'; + } + + public function columnMap() + { + return [ + 'id' => 'code', + 'robots_id' => 'robottersCode', + 'parts_id' => 'delesCode', + ]; + } + + public function initialize() + { + + $this->belongsTo('delesCode', Deles::class, 'code', [ + 'foreignKey' => true, + ]); + + $this->belongsTo('robottersCode', Robotters::class, 'code', [ + 'foreignKey' => [ + 'message' => 'The robotters code does not exist', + ], + ]); + } +} diff --git a/tests/_data/fixtures/models/Robotto.php b/tests/_data/fixtures/models/Robotto.php new file mode 100644 index 00000000000..6f8f1b20bb0 --- /dev/null +++ b/tests/_data/fixtures/models/Robotto.php @@ -0,0 +1,62 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; +use Phalcon\Db\Column; +use Phalcon\Mvc\Model\MetaData; + +class Robotto extends Model +{ + + public function getSource(): string + { + return 'robots'; + } + + public function metaData() + { + return [ + MetaData::MODELS_ATTRIBUTES => [ + 'id', 'name', 'type', 'year', + ], + MetaData::MODELS_PRIMARY_KEY => [ + 'id', + ], + MetaData::MODELS_NON_PRIMARY_KEY => [ + 'name', 'type', 'year', + ], + MetaData::MODELS_NOT_NULL => [ + 'id', 'name', 'type', 'year', + ], + MetaData::MODELS_DATA_TYPES => [ + 'id' => Column::TYPE_INTEGER, + 'name' => Column::TYPE_VARCHAR, + 'type' => Column::TYPE_VARCHAR, + 'year' => Column::TYPE_INTEGER, + ], + MetaData::MODELS_DATA_TYPES_NUMERIC => [ + 'id' => true, + 'year' => true, + ], + MetaData::MODELS_IDENTITY_COLUMN => 'id', + MetaData::MODELS_DATA_TYPES_BIND => [ + 'id' => Column::BIND_PARAM_INT, + 'name' => Column::BIND_PARAM_STR, + 'type' => Column::BIND_PARAM_STR, + 'year' => Column::BIND_PARAM_INT, + ], + MetaData::MODELS_AUTOMATIC_DEFAULT_INSERT => [], + MetaData::MODELS_AUTOMATIC_DEFAULT_UPDATE => [], + ]; + } +} diff --git a/tests/_data/fixtures/models/Select.php b/tests/_data/fixtures/models/Select.php new file mode 100644 index 00000000000..39624ec891c --- /dev/null +++ b/tests/_data/fixtures/models/Select.php @@ -0,0 +1,56 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class Select extends Model +{ + public function initialize() + { + } + + public function getSource(): string + { + return 'ph_select'; + } + + public function getId() + { + return $this->sel_id; + } + + public function getName() + { + return $this->sel_name; + } + + public function getText() + { + return $this->sel_text; + } + + public function setId($id) + { + $this->sel_id = $id; + } + + public function setName($name) + { + $this->sel_name = $name; + } + + public function setText($text) + { + $this->sel_text = $text; + } +} diff --git a/tests/_data/fixtures/models/Snapshot/Parts.php b/tests/_data/fixtures/models/Snapshot/Parts.php new file mode 100644 index 00000000000..a6fd0297b08 --- /dev/null +++ b/tests/_data/fixtures/models/Snapshot/Parts.php @@ -0,0 +1,23 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Snapshot; + +use Phalcon\Mvc\Model; + +class Parts extends Model +{ + public function initialize() + { + $this->hasMany('id', RobotsParts::class, 'robots_id'); + $this->keepSnapshots(true); + } +} diff --git a/tests/_data/fixtures/models/Snapshot/Personas.php b/tests/_data/fixtures/models/Snapshot/Personas.php new file mode 100644 index 00000000000..d022084a95b --- /dev/null +++ b/tests/_data/fixtures/models/Snapshot/Personas.php @@ -0,0 +1,38 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Snapshot; + +use Phalcon\Mvc\Model; + +/** + * @property string $cedula + * @property int $tipo_documento_id + * @property string $nombres + * @property string $telefono + * @property string $direccion + * @property string $email + * @property string $fecha_nacimiento + * @property int $ciudad_id + * @property int $creado_at + * @property float $cupo + * @property string $estado + * + * @method static Personas findFirst($parameters = null) + */ +class Personas extends Model +{ + public function initialize() + { + $this->keepSnapshots(true); + $this->useDynamicUpdate(true); + } +} diff --git a/tests/_data/fixtures/models/Snapshot/Requests.php b/tests/_data/fixtures/models/Snapshot/Requests.php new file mode 100644 index 00000000000..0404562f748 --- /dev/null +++ b/tests/_data/fixtures/models/Snapshot/Requests.php @@ -0,0 +1,39 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Snapshot; + +use Phalcon\Mvc\Model; + +/** + * @property string $method + * @property string $uri + * @property int $count + * + * @method static Requests findFirst($parameters = null) + */ +class Requests extends Model +{ + public function initialize() + { + $this->setSource('identityless_requests'); + $this->keepSnapshots(true); + } + + public function columnMap() + { + return [ + 'method' => 'method', + 'requested_uri' => 'uri', + 'request_count' => 'count', + ]; + } +} diff --git a/tests/_data/fixtures/models/Snapshot/Robots.php b/tests/_data/fixtures/models/Snapshot/Robots.php new file mode 100644 index 00000000000..ef274bbe98c --- /dev/null +++ b/tests/_data/fixtures/models/Snapshot/Robots.php @@ -0,0 +1,23 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Snapshot; + +use Phalcon\Mvc\Model; + +class Robots extends Model +{ + public function initialize() + { + $this->hasMany('id', RobotsParts::class, 'robots_id'); + $this->keepSnapshots(true); + } +} diff --git a/tests/_data/fixtures/models/Snapshot/RobotsParts.php b/tests/_data/fixtures/models/Snapshot/RobotsParts.php new file mode 100644 index 00000000000..bba093288e0 --- /dev/null +++ b/tests/_data/fixtures/models/Snapshot/RobotsParts.php @@ -0,0 +1,24 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Snapshot; + +use Phalcon\Mvc\Model; + +class RobotsParts extends Model +{ + + public function initialize() + { + $this->belongsTo('robots_id', Robots::class, 'id'); + $this->belongsTo('parts_id', Parts::class, 'id'); + } +} diff --git a/tests/_data/fixtures/models/Snapshot/Robotters.php b/tests/_data/fixtures/models/Snapshot/Robotters.php new file mode 100644 index 00000000000..ceedd0427c6 --- /dev/null +++ b/tests/_data/fixtures/models/Snapshot/Robotters.php @@ -0,0 +1,41 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Snapshot; + +use Phalcon\Mvc\Model; + +class Robotters extends Model +{ + public function getSource(): string + { + return 'robots'; + } + + public function columnMap() + { + return [ + 'id' => 'code', + 'name' => 'theName', + 'type' => 'theType', + 'year' => 'theYear', + 'datetime' => 'theDatetime', + 'deleted' => 'theDeleted', + 'text' => 'theText', + ]; + } + + public function initialize() + { + $this->hasMany('code', RobottersDeles::class, 'robottersCode'); + $this->keepSnapshots(true); + } +} diff --git a/tests/_data/fixtures/models/Snapshot/Subscribers.php b/tests/_data/fixtures/models/Snapshot/Subscribers.php new file mode 100644 index 00000000000..2ce451631a2 --- /dev/null +++ b/tests/_data/fixtures/models/Snapshot/Subscribers.php @@ -0,0 +1,47 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Snapshot; + +use Phalcon\Mvc\Model; +use Phalcon\Mvc\Model\Behavior\SoftDelete; +use Phalcon\Mvc\Model\Behavior\Timestampable; + +/** + * @property int $id + * @property string $email + * @property string $status + * @property string $created_at + */ +class Subscribers extends Model +{ + public function getSource(): string + { + return 'subscriptores'; + } + + public function initialize() + { + $this->keepSnapshots(true); + + $this->addBehavior(new Timestampable([ + 'beforeCreate' => [ + 'field' => 'created_at', + 'format' => 'Y-m-d H:i:s', + ], + ])); + + $this->addBehavior(new SoftDelete([ + 'field' => 'status', + 'value' => 'D', + ])); + } +} diff --git a/tests/_data/fixtures/models/Some/Deles.php b/tests/_data/fixtures/models/Some/Deles.php new file mode 100644 index 00000000000..ad96c218d2e --- /dev/null +++ b/tests/_data/fixtures/models/Some/Deles.php @@ -0,0 +1,41 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Some; + +use Phalcon\Mvc\Model; + +class Deles extends Model +{ + + public function getSource(): string + { + return 'parts'; + } + + public function columnMap() + { + return [ + 'id' => 'code', + 'name' => 'theName', + ]; + } + + public function initialize() + { + $this->hasMany('code', RobottersDeles::class, 'delesCode', [ + 'foreignKey' => [ + 'message' => 'Deles cannot be deleted because is referenced by a Robotter', + ], + ]); + } + +} diff --git a/tests/_data/fixtures/models/Some/Parts.php b/tests/_data/fixtures/models/Some/Parts.php new file mode 100644 index 00000000000..77adb7a37d5 --- /dev/null +++ b/tests/_data/fixtures/models/Some/Parts.php @@ -0,0 +1,33 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Some; + +use Phalcon\Mvc\Model; + +class Parts extends Model +{ + + public function getSource(): string + { + return 'parts'; + } + + public function initialize() + { + $this->hasMany('id', RobotsParts::class, 'parts_id', [ + 'foreignKey' => [ + 'message' => 'Parts cannot be deleted because is referenced by a Robot', + ], + ]); + } + +} diff --git a/tests/_data/fixtures/models/Some/Products.php b/tests/_data/fixtures/models/Some/Products.php new file mode 100644 index 00000000000..36b3885e418 --- /dev/null +++ b/tests/_data/fixtures/models/Some/Products.php @@ -0,0 +1,63 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Some; + +use Phalcon\Mvc\Model; +use Phalcon\Db\Column; +use Phalcon\Mvc\Model\MetaData; + +class Products extends Model +{ + + public function getSource(): string + { + return 'le_products'; + } + + public function metaData() + { + return [ + MetaData::MODELS_ATTRIBUTES => [ + 'id', 'name', 'type', 'price', + ], + MetaData::MODELS_PRIMARY_KEY => [ + 'id', + ], + MetaData::MODELS_NON_PRIMARY_KEY => [ + 'name', 'type', 'price', + ], + MetaData::MODELS_NOT_NULL => [ + 'id', 'name', 'type', 'price', + ], + MetaData::MODELS_DATA_TYPES => [ + 'id' => Column::TYPE_INTEGER, + 'name' => Column::TYPE_VARCHAR, + 'type' => Column::TYPE_VARCHAR, + 'price' => Column::TYPE_INTEGER, + ], + MetaData::MODELS_DATA_TYPES_NUMERIC => [ + 'id' => true, + 'price' => true, + ], + MetaData::MODELS_IDENTITY_COLUMN => 'id', + MetaData::MODELS_DATA_TYPES_BIND => [ + 'id' => Column::BIND_PARAM_INT, + 'name' => Column::BIND_PARAM_STR, + 'type' => Column::BIND_PARAM_STR, + 'price' => Column::BIND_PARAM_INT, + ], + MetaData::MODELS_AUTOMATIC_DEFAULT_INSERT => [], + MetaData::MODELS_AUTOMATIC_DEFAULT_UPDATE => [], + ]; + } + +} diff --git a/tests/_data/fixtures/models/Some/Robots.php b/tests/_data/fixtures/models/Some/Robots.php new file mode 100644 index 00000000000..7e07a1ad613 --- /dev/null +++ b/tests/_data/fixtures/models/Some/Robots.php @@ -0,0 +1,40 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Some; + +use Phalcon\Mvc\Model; + +class Robots extends Model +{ + + public function getSource(): string + { + return 'robots'; + } + + public function initialize() + { + $this->hasMany( + 'id', + RobotsParts::class, + 'robots_id', + [ + 'foreignKey' => true, + ] + ); + } + + public function getRobotsParts($arguments = null) + { + return $this->getRelated(RobotsParts::class, $arguments); + } +} diff --git a/tests/_data/fixtures/models/Some/RobotsParts.php b/tests/_data/fixtures/models/Some/RobotsParts.php new file mode 100644 index 00000000000..71ce6676697 --- /dev/null +++ b/tests/_data/fixtures/models/Some/RobotsParts.php @@ -0,0 +1,35 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Some; + +use Phalcon\Mvc\Model; + +class RobotsParts extends Model +{ + + public function getSource(): string + { + return 'robots_parts'; + } + + public function initialize() + { + $this->belongsTo('parts_id', Parts::class, 'id', [ + 'foreignKey' => true, + ]); + $this->belongsTo('robots_id', Robots::class, 'id', [ + 'foreignKey' => [ + 'message' => 'The robot code does not exist', + ], + ]); + } +} diff --git a/tests/_data/fixtures/models/Some/Robotters.php b/tests/_data/fixtures/models/Some/Robotters.php new file mode 100644 index 00000000000..e7fcd0eb58a --- /dev/null +++ b/tests/_data/fixtures/models/Some/Robotters.php @@ -0,0 +1,48 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Some; + +use Phalcon\Mvc\Model; + +class Robotters extends Model +{ + + public function getSource(): string + { + return 'robots'; + } + + public function columnMap() + { + return [ + 'id' => 'code', + 'name' => 'theName', + 'type' => 'theType', + 'year' => 'theYear', + 'datetime' => 'theDatetime', + 'deleted' => 'theDeleted', + 'text' => 'theText', + ]; + } + + public function initialize() + { + $this->hasMany('code', RobottersDeles::class, 'robottersCode', [ + 'foreignKey' => true, + ]); + } + + public function getRobottersDeles($arguments = null) + { + return $this->getRelated(RobottersDeles::class, $arguments); + } +} diff --git a/tests/_data/fixtures/models/Some/RobottersDeles.php b/tests/_data/fixtures/models/Some/RobottersDeles.php new file mode 100644 index 00000000000..3923ba9c04b --- /dev/null +++ b/tests/_data/fixtures/models/Some/RobottersDeles.php @@ -0,0 +1,46 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Some; + +use Phalcon\Mvc\Model; + +class RobottersDeles extends Model +{ + + public function getSource(): string + { + return 'robots_parts'; + } + + public function columnMap() + { + return [ + 'id' => 'code', + 'robots_id' => 'robottersCode', + 'parts_id' => 'delesCode', + ]; + } + + public function initialize() + { + + $this->belongsTo('delesCode', Deles::class, 'code', [ + 'foreignKey' => true, + ]); + + $this->belongsTo('robottersCode', Robotters::class, 'code', [ + 'foreignKey' => [ + 'message' => 'The robotters code does not exist', + ], + ]); + } +} diff --git a/tests/_data/fixtures/models/Statistics/AgeStats.php b/tests/_data/fixtures/models/Statistics/AgeStats.php new file mode 100644 index 00000000000..45abdeb8774 --- /dev/null +++ b/tests/_data/fixtures/models/Statistics/AgeStats.php @@ -0,0 +1,28 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Statistics; + +use Phalcon\Mvc\Model; +use Phalcon\Test\Resultsets\Stats; + +class AgeStats extends Model +{ + public function getSource(): string + { + return 'stats'; + } + + public function getResultsetClass() + { + return Stats::class; + } +} diff --git a/tests/_data/fixtures/models/Statistics/CityStats.php b/tests/_data/fixtures/models/Statistics/CityStats.php new file mode 100644 index 00000000000..0ab48e2e086 --- /dev/null +++ b/tests/_data/fixtures/models/Statistics/CityStats.php @@ -0,0 +1,22 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Statistics; + +use Phalcon\Mvc\Model; + +class CityStats extends Model +{ + public function getSource(): string + { + return 'stats'; + } +} diff --git a/tests/_data/fixtures/models/Statistics/CountryStats.php b/tests/_data/fixtures/models/Statistics/CountryStats.php new file mode 100644 index 00000000000..e76c5573898 --- /dev/null +++ b/tests/_data/fixtures/models/Statistics/CountryStats.php @@ -0,0 +1,27 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Statistics; + +use Phalcon\Mvc\Model; + +class CountryStats extends Model +{ + public function getSource(): string + { + return 'stats'; + } + + public function getResultsetClass() + { + return AgeStats::class; + } +} diff --git a/tests/_data/fixtures/models/Statistics/GenderStats.php b/tests/_data/fixtures/models/Statistics/GenderStats.php new file mode 100644 index 00000000000..3d5b20339ed --- /dev/null +++ b/tests/_data/fixtures/models/Statistics/GenderStats.php @@ -0,0 +1,27 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Statistics; + +use Phalcon\Mvc\Model; + +class GenderStats extends Model +{ + public function getSource(): string + { + return 'stats'; + } + + public function getResultsetClass() + { + return 'Not\Existing\Resultset\Class'; + } +} diff --git a/tests/_data/fixtures/models/Stock.php b/tests/_data/fixtures/models/Stock.php new file mode 100644 index 00000000000..896e218b6bc --- /dev/null +++ b/tests/_data/fixtures/models/Stock.php @@ -0,0 +1,19 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class Stock extends Model +{ + +} diff --git a/tests/_data/fixtures/models/Store/Parts.php b/tests/_data/fixtures/models/Store/Parts.php new file mode 100644 index 00000000000..957d674a57c --- /dev/null +++ b/tests/_data/fixtures/models/Store/Parts.php @@ -0,0 +1,26 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Store; + +use Phalcon\Mvc\Model; + +class Parts extends Model +{ + public function initialize() + { + $this->setConnectionService('dbTwo'); + + $this->hasMany('id', RobotsParts::class, 'parts_id', [ + 'alias' => 'RobotParts', + ]); + } +} diff --git a/tests/_data/fixtures/models/Store/Robots.php b/tests/_data/fixtures/models/Store/Robots.php new file mode 100644 index 00000000000..5aeab5af6a4 --- /dev/null +++ b/tests/_data/fixtures/models/Store/Robots.php @@ -0,0 +1,27 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Store; + +use Phalcon\Mvc\Model; + +class Robots extends Model +{ + public function initialize() + { + + $this->setConnectionService('dbOne'); + + $this->hasMany('id', RobotsParts::class, 'robots_id', [ + 'alias' => 'RobotParts', + ]); + } +} diff --git a/tests/_data/fixtures/models/Store/RobotsParts.php b/tests/_data/fixtures/models/Store/RobotsParts.php new file mode 100644 index 00000000000..2c368102dfe --- /dev/null +++ b/tests/_data/fixtures/models/Store/RobotsParts.php @@ -0,0 +1,29 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Store; + +use Phalcon\Mvc\Model; + +class RobotsParts extends Model +{ + public function initialize() + { + $this->setConnectionService('dbOne'); + + $this->belongsTo('parts_id', Parts::class, 'id', [ + 'alias' => 'Part', + ]); + $this->belongsTo('robots_id', Robots::class, 'id', [ + 'alias' => 'Robot', + ]); + } +} diff --git a/tests/_data/fixtures/models/Subscribers.php b/tests/_data/fixtures/models/Subscribers.php new file mode 100644 index 00000000000..28553fdac09 --- /dev/null +++ b/tests/_data/fixtures/models/Subscribers.php @@ -0,0 +1,24 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class Subscribers extends Model +{ + + public function getSource(): string + { + return 'subscriptores'; + } + +} diff --git a/tests/_data/fixtures/models/Subscriptores.php b/tests/_data/fixtures/models/Subscriptores.php new file mode 100644 index 00000000000..1652bd0828c --- /dev/null +++ b/tests/_data/fixtures/models/Subscriptores.php @@ -0,0 +1,75 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; +use Phalcon\Messages\Message; +use Phalcon\Validation; +use Phalcon\Validation\Validator\Email as EmailValidator; +use Phalcon\Validation\Validator\ExclusionIn as ExclusionInValidator; +use Phalcon\Validation\Validator\InclusionIn as InclusionInValidator; +use Phalcon\Validation\Validator\PresenceOf as PresenceOfValidator; +use Phalcon\Validation\Validator\Regex as RegexValidator; +use Phalcon\Validation\Validator\StringLength as StringLengthValidator; +use Phalcon\Validation\Validator\Uniqueness as UniquenessValidator; + +class Subscriptores extends Model +{ + + public function beforeValidation() + { + if ($this->email == 'marina@hotmail.com') { + $this->appendMessage(new Message('Sorry Marina, but you are not allowed here')); + return false; + } + } + + public function beforeDelete() + { + if ($this->email == 'fuego@hotmail.com') { + $this->appendMessage(new Message('Sorry this cannot be deleted')); + return false; + } + } + + public function validation() + { + $validator = new Validation(); + + $validator->add('created_at', new PresenceOfValidator()); + + $validator->add('email', new StringLengthValidator([ + 'min' => '7', + 'max' => '50', + ])); + + $validator->add('email', new EmailValidator()); + + $validator->add('status', new ExclusionInValidator([ + 'domain' => ['X', 'Z'], + ])); + + $validator->add('status', new InclusionInValidator([ + 'domain' => ['P', 'I', 'w'], + ])); + + $validator->add('email', new UniquenessValidator([ + 'model' => $this, + ])); + + $validator->add('status', new RegexValidator([ + 'pattern' => '/[A-Z]/', + ])); + + return $this->validate($validator); + } +} diff --git a/tests/_data/fixtures/models/Users.php b/tests/_data/fixtures/models/Users.php new file mode 100644 index 00000000000..d2a63cb6145 --- /dev/null +++ b/tests/_data/fixtures/models/Users.php @@ -0,0 +1,20 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models; + +use Phalcon\Mvc\Model; + +class Users extends Model +{ + public $id; + public $name; +} diff --git a/tests/_data/fixtures/models/Validation/Robots.php b/tests/_data/fixtures/models/Validation/Robots.php new file mode 100644 index 00000000000..099529073ca --- /dev/null +++ b/tests/_data/fixtures/models/Validation/Robots.php @@ -0,0 +1,57 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Validation; + +use Phalcon\Mvc\Model; +use Phalcon\Mvc\Model\Resultset\Simple; +use Phalcon\Test\Models\RobotsParts; +use Phalcon\Validation; +use Phalcon\Validation\Validator\StringLength; + +/** + * @method static int countByType(string $type) + * @method static Simple findByType(string $type) + * @method static Robots findFirstById(string | int $id) + */ +class Robots extends Model +{ + public function initialize() + { + $this->hasMany( + 'id', + RobotsParts::class, + 'robots_id', + [ + 'foreignKey' => true, + 'reusable' => false, + 'alias' => 'parts', + ] + ); + } + + public function validation() + { + $validation = new Validation(); + $validation->add( + 'name', + new StringLength( + [ + 'min' => '7', + 'max' => '50', + 'code' => 20, + ] + ) + ); + + return $this->validate($validation); + } +} diff --git a/tests/_data/fixtures/models/Validation/Subscriptores.php b/tests/_data/fixtures/models/Validation/Subscriptores.php new file mode 100644 index 00000000000..918d0069a7f --- /dev/null +++ b/tests/_data/fixtures/models/Validation/Subscriptores.php @@ -0,0 +1,70 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Models\Validation; + +use Phalcon\Messages\Message; +use Phalcon\Mvc\Model; +use Phalcon\Validation; +use Phalcon\Validation\Validator\Email; +use Phalcon\Validation\Validator\ExclusionIn; +use Phalcon\Validation\Validator\InclusionIn; +use Phalcon\Validation\Validator\PresenceOf; +use Phalcon\Validation\Validator\Regex; +use Phalcon\Validation\Validator\StringLength; +use Phalcon\Validation\Validator\Uniqueness; + +/** + * @property int id + * @property string email + * @property string created_at + * @property string status + */ +class Subscriptores extends Model +{ + public function beforeValidation() + { + if ($this->email == 'marina@hotmail.com') { + $this->appendMessage(new Message('Sorry Marina, but you are not allowed here')); + + return false; + } + + return true; + } + + public function beforeDelete() + { + if ($this->email == 'fuego@hotmail.com') { + $this->appendMessage(new Message('Sorry this cannot be deleted')); + + return false; + } + + return true; + } + + public function validation() + { + $validator = new Validation(); + $validator + ->add('created_at', new PresenceOf()) + ->add('email', new StringLength(['min' => '7', 'max' => '50'])) + ->add('email', new Email()) + ->add('email', new Uniqueness()) + ->add('status', new ExclusionIn(['domain' => ['P', 'I', 'w']])) + ->add('status', new InclusionIn(['domain' => ['A', 'y', 'Z']])) + ->add('status', new Regex(['pattern' => '/[A-Z]/'])) + ; + + return $this->validate($validator); + } +} diff --git a/tests/_data/fixtures/modules/backend/Module.php b/tests/_data/fixtures/modules/backend/Module.php new file mode 100644 index 00000000000..00db78b8a28 --- /dev/null +++ b/tests/_data/fixtures/modules/backend/Module.php @@ -0,0 +1,42 @@ +<?php + +namespace Phalcon\Test\Modules\Backend; + +use function dataFolder; +use Phalcon\Mvc\View; +use Phalcon\DiInterface; +use Phalcon\Mvc\ModuleDefinitionInterface; + +/** + * \Phalcon\Test\Modules\Backend\Module + * Backend Module + * + * @copyright (c) 2011-2017 Phalcon Team + * @link http://www.phalconphp.com + * @author Andres Gutierrez <andres@phalconphp.com> + * @author Nikolaos Dimopoulos <nikos@phalconphp.com> + * @package Phalcon\Test\Modules\Backend + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class Module implements ModuleDefinitionInterface +{ + public function registerAutoloaders(DiInterface $di = null) + { + } + + public function registerServices(DiInterface $di) + { + $di->set('view', function () { + $view = new View(); + $view->setViewsDir(dataFolder('fixtures/modules/backend/views/')); + + return $view; + }); + } +} diff --git a/tests/_data/modules/backend/controllers/LoginController.php b/tests/_data/fixtures/modules/backend/controllers/LoginController.php similarity index 100% rename from tests/_data/modules/backend/controllers/LoginController.php rename to tests/_data/fixtures/modules/backend/controllers/LoginController.php diff --git a/tests/_data/modules/backend/views/index.phtml b/tests/_data/fixtures/modules/backend/views/index.phtml similarity index 100% rename from tests/_data/modules/backend/views/index.phtml rename to tests/_data/fixtures/modules/backend/views/index.phtml diff --git a/tests/_data/fixtures/modules/frontend/Module.php b/tests/_data/fixtures/modules/frontend/Module.php new file mode 100644 index 00000000000..3eb6885bb94 --- /dev/null +++ b/tests/_data/fixtures/modules/frontend/Module.php @@ -0,0 +1,42 @@ +<?php + +namespace Phalcon\Test\Modules\Frontend; + +use function dataFolder; +use Phalcon\Mvc\View; +use Phalcon\DiInterface; +use Phalcon\Mvc\ModuleDefinitionInterface; + +/** + * \Phalcon\Test\Modules\Frontend\Module + * Frontend Module + * + * @copyright (c) 2011-2017 Phalcon Team + * @link http://www.phalconphp.com + * @author Andres Gutierrez <andres@phalconphp.com> + * @author Nikolaos Dimopoulos <nikos@phalconphp.com> + * @package Phalcon\Test\Modules\Frontend + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class Module implements ModuleDefinitionInterface +{ + public function registerAutoloaders(DiInterface $di = null) + { + } + + public function registerServices(DiInterface $di) + { + $di->set('view', function () { + $view = new View(); + $view->setViewsDir(dataFolder('fixtures/modules/frontend/views/')); + + return $view; + }); + } +} diff --git a/tests/_data/modules/frontend/controllers/IndexController.php b/tests/_data/fixtures/modules/frontend/controllers/IndexController.php similarity index 100% rename from tests/_data/modules/frontend/controllers/IndexController.php rename to tests/_data/fixtures/modules/frontend/controllers/IndexController.php diff --git a/tests/_data/modules/frontend/views/index/index.phtml b/tests/_data/fixtures/modules/frontend/views/index/index.phtml similarity index 100% rename from tests/_data/modules/frontend/views/index/index.phtml rename to tests/_data/fixtures/modules/frontend/views/index/index.phtml diff --git a/tests/_data/fixtures/resultsets/Stats.php b/tests/_data/fixtures/resultsets/Stats.php new file mode 100644 index 00000000000..a5d50edffb4 --- /dev/null +++ b/tests/_data/fixtures/resultsets/Stats.php @@ -0,0 +1,18 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Resultsets; + +use Phalcon\Mvc\Model; + +use Phalcon\Mvc\Model\Resultset\Simple; + +class Stats extends Simple {} diff --git a/tests/_data/tasks/EchoTask.php b/tests/_data/fixtures/tasks/EchoTask.php similarity index 100% rename from tests/_data/tasks/EchoTask.php rename to tests/_data/fixtures/tasks/EchoTask.php diff --git a/tests/_data/tasks/Issue787Task.php b/tests/_data/fixtures/tasks/Issue787Task.php similarity index 87% rename from tests/_data/tasks/Issue787Task.php rename to tests/_data/fixtures/tasks/Issue787Task.php index 4887f7229c7..bb8bcf309b4 100644 --- a/tests/_data/tasks/Issue787Task.php +++ b/tests/_data/fixtures/tasks/Issue787Task.php @@ -1,6 +1,8 @@ <?php -class Issue787Task extends \Phalcon\CLI\Task +use Phalcon\CLI\Task; + +class Issue787Task extends Task { public static $output = ''; diff --git a/tests/_data/tasks/MainTask.php b/tests/_data/fixtures/tasks/MainTask.php similarity index 100% rename from tests/_data/tasks/MainTask.php rename to tests/_data/fixtures/tasks/MainTask.php diff --git a/tests/_data/tasks/ParamsTask.php b/tests/_data/fixtures/tasks/ParamsTask.php similarity index 100% rename from tests/_data/tasks/ParamsTask.php rename to tests/_data/fixtures/tasks/ParamsTask.php diff --git a/tests/_data/views/test15/index.phtml b/tests/_data/fixtures/views/activerender/index.phtml similarity index 100% rename from tests/_data/views/test15/index.phtml rename to tests/_data/fixtures/views/activerender/index.phtml diff --git a/tests/_data/fixtures/views/builtinfunction/index.volt b/tests/_data/fixtures/views/builtinfunction/index.volt new file mode 100644 index 00000000000..33db4b42894 --- /dev/null +++ b/tests/_data/fixtures/views/builtinfunction/index.volt @@ -0,0 +1,16 @@ +Length Array: {{ arr|length }} +Length Object: {{ obj|length }} +Length String: {{ str|length }} +Length No String: {{ no_str|length }} +Slice Array: {{ arr[0:]|join(',') }} +Slice Array: {{ arr[1:2]|join(',') }} +Slice Array: {{ arr[0:2]|join(',') }} +Slice Object: {{ obj[1:]|join(',') }} +Slice Object: {{ obj[1:2]|join(',') }} +Slice Object: {{ obj[0:1]|join(',') }} +Slice String: {{ "hello"[0:2] }} +Slice String: {{ "hello"[1:2] }} +Slice String: {{ "hello"[2:] }} +Slice No String: {{ 1234[0:2] }} +Slice No String: {{ 1234[1:2] }} +Slice No String: {{ 1234[2:] }} diff --git a/tests/_data/views/test10/.gitignore b/tests/_data/fixtures/views/compiler/.gitignore similarity index 100% rename from tests/_data/views/test10/.gitignore rename to tests/_data/fixtures/views/compiler/.gitignore diff --git a/tests/_data/fixtures/views/compiler/children.extends.volt b/tests/_data/fixtures/views/compiler/children.extends.volt new file mode 100644 index 00000000000..fc941174322 --- /dev/null +++ b/tests/_data/fixtures/views/compiler/children.extends.volt @@ -0,0 +1,7 @@ +{% extends "compiler/parent.volt" %} + +{% block title %}Index{% endblock %} + +{% block head %}<style type="text/css">.important { color: #336699; }</style>{% endblock %} + +{% block content %}<h1>Index</h1><p class="important">Welcome on my awesome homepage.</p>{% endblock %} diff --git a/tests/_data/fixtures/views/compiler/children.volt b/tests/_data/fixtures/views/compiler/children.volt new file mode 100644 index 00000000000..9787b7805fb --- /dev/null +++ b/tests/_data/fixtures/views/compiler/children.volt @@ -0,0 +1,7 @@ +{% extends "tests/_data/fixtures/views/compiler/parent.volt" %} + +{% block title %}Index{% endblock %} + +{% block head %}<style type="text/css">.important { color: #336699; }</style>{% endblock %} + +{% block content %}<h1>Index</h1><p class="important">Welcome on my awesome homepage.</p>{% endblock %} diff --git a/tests/_data/fixtures/views/compiler/children2.volt b/tests/_data/fixtures/views/compiler/children2.volt new file mode 100644 index 00000000000..f25aa84cc96 --- /dev/null +++ b/tests/_data/fixtures/views/compiler/children2.volt @@ -0,0 +1,9 @@ +{% extends "tests/_data/fixtures/views/compiler/parent.volt" %} + +{% block title %}Index{% endblock %} + +{% block head %}<style type="text/css">.important { color: #336699; } </style> {{ super() }} {% endblock %} + +{% block content %}<h1>Index</h1><p class="important">Welcome to my awesome homepage.</p>{% endblock %} + +{% block footer %}{{ super() }}{% endblock %} diff --git a/tests/_data/views/test10/import.volt b/tests/_data/fixtures/views/compiler/import.volt similarity index 100% rename from tests/_data/views/test10/import.volt rename to tests/_data/fixtures/views/compiler/import.volt diff --git a/tests/_data/views/test10/import2.volt b/tests/_data/fixtures/views/compiler/import2.volt similarity index 100% rename from tests/_data/views/test10/import2.volt rename to tests/_data/fixtures/views/compiler/import2.volt diff --git a/tests/_data/views/test10/index.volt b/tests/_data/fixtures/views/compiler/index.volt similarity index 100% rename from tests/_data/views/test10/index.volt rename to tests/_data/fixtures/views/compiler/index.volt diff --git a/tests/_data/views/test10/other.volt b/tests/_data/fixtures/views/compiler/other.volt similarity index 100% rename from tests/_data/views/test10/other.volt rename to tests/_data/fixtures/views/compiler/other.volt diff --git a/tests/_data/views/test10/parent.volt b/tests/_data/fixtures/views/compiler/parent.volt similarity index 100% rename from tests/_data/views/test10/parent.volt rename to tests/_data/fixtures/views/compiler/parent.volt diff --git a/tests/_data/views/test10/partial.volt b/tests/_data/fixtures/views/compiler/partial.volt similarity index 100% rename from tests/_data/views/test10/partial.volt rename to tests/_data/fixtures/views/compiler/partial.volt diff --git a/tests/_data/views/test3/another.phtml b/tests/_data/fixtures/views/currentrender/another.phtml similarity index 100% rename from tests/_data/views/test3/another.phtml rename to tests/_data/fixtures/views/currentrender/another.phtml diff --git a/tests/_data/views/test3/coolVar.phtml b/tests/_data/fixtures/views/currentrender/coolVar.phtml similarity index 100% rename from tests/_data/views/test3/coolVar.phtml rename to tests/_data/fixtures/views/currentrender/coolVar.phtml diff --git a/tests/_data/views/test3/other.phtml b/tests/_data/fixtures/views/currentrender/other.phtml similarity index 100% rename from tests/_data/views/test3/other.phtml rename to tests/_data/fixtures/views/currentrender/other.phtml diff --git a/tests/_data/views/test3/query.phtml b/tests/_data/fixtures/views/currentrender/query.phtml similarity index 100% rename from tests/_data/views/test3/query.phtml rename to tests/_data/fixtures/views/currentrender/query.phtml diff --git a/tests/_data/views/test3/yup.phtml b/tests/_data/fixtures/views/currentrender/yup.phtml similarity index 100% rename from tests/_data/views/test3/yup.phtml rename to tests/_data/fixtures/views/currentrender/yup.phtml diff --git a/tests/_data/fixtures/views/extends/.gitignore b/tests/_data/fixtures/views/extends/.gitignore new file mode 100644 index 00000000000..362dac69f02 --- /dev/null +++ b/tests/_data/fixtures/views/extends/.gitignore @@ -0,0 +1,2 @@ +*.volt.php +*%.php diff --git a/tests/_data/fixtures/views/extends/children.extends.volt b/tests/_data/fixtures/views/extends/children.extends.volt new file mode 100644 index 00000000000..90ee1de0ad0 --- /dev/null +++ b/tests/_data/fixtures/views/extends/children.extends.volt @@ -0,0 +1,7 @@ +{% extends "extends/parent.volt" %} + +{% block title %}Index{% endblock %} + +{% block head %}<style type="text/css">.important { color: #336699; }</style>{% endblock %} + +{% block content %}<h1>Index</h1><p class="important">Welcome on my awesome homepage.</p>{% endblock %} diff --git a/tests/_data/fixtures/views/extends/children.volt b/tests/_data/fixtures/views/extends/children.volt new file mode 100644 index 00000000000..9b5365fe085 --- /dev/null +++ b/tests/_data/fixtures/views/extends/children.volt @@ -0,0 +1,7 @@ +{% extends "tests/_data/fixtures/views/extends/parent.volt" %} + +{% block title %}Index{% endblock %} + +{% block head %}<style type="text/css">.important { color: #336699; }</style>{% endblock %} + +{% block content %}<h1>Index</h1><p class="important">Welcome on my awesome homepage.</p>{% endblock %} diff --git a/tests/_data/fixtures/views/extends/children2.volt b/tests/_data/fixtures/views/extends/children2.volt new file mode 100644 index 00000000000..bc5fc897976 --- /dev/null +++ b/tests/_data/fixtures/views/extends/children2.volt @@ -0,0 +1,9 @@ +{% extends "tests/_data/fixtures/views/extends/parent.volt" %} + +{% block title %}Index{% endblock %} + +{% block head %}<style type="text/css">.important { color: #336699; } </style> {{ super() }} {% endblock %} + +{% block content %}<h1>Index</h1><p class="important">Welcome to my awesome homepage.</p>{% endblock %} + +{% block footer %}{{ super() }}{% endblock %} diff --git a/unit-tests/views/test10/import.volt b/tests/_data/fixtures/views/extends/import.volt similarity index 100% rename from unit-tests/views/test10/import.volt rename to tests/_data/fixtures/views/extends/import.volt diff --git a/unit-tests/views/test10/import2.volt b/tests/_data/fixtures/views/extends/import2.volt similarity index 100% rename from unit-tests/views/test10/import2.volt rename to tests/_data/fixtures/views/extends/import2.volt diff --git a/unit-tests/views/test10/index.volt b/tests/_data/fixtures/views/extends/index.volt similarity index 100% rename from unit-tests/views/test10/index.volt rename to tests/_data/fixtures/views/extends/index.volt diff --git a/unit-tests/views/test10/other.volt b/tests/_data/fixtures/views/extends/other.volt similarity index 100% rename from unit-tests/views/test10/other.volt rename to tests/_data/fixtures/views/extends/other.volt diff --git a/unit-tests/views/test10/parent.volt b/tests/_data/fixtures/views/extends/parent.volt similarity index 100% rename from unit-tests/views/test10/parent.volt rename to tests/_data/fixtures/views/extends/parent.volt diff --git a/unit-tests/views/test10/partial.volt b/tests/_data/fixtures/views/extends/partial.volt similarity index 100% rename from unit-tests/views/test10/partial.volt rename to tests/_data/fixtures/views/extends/partial.volt diff --git a/tests/_data/views/filters/.gitignore b/tests/_data/fixtures/views/filters/.gitignore similarity index 100% rename from tests/_data/views/filters/.gitignore rename to tests/_data/fixtures/views/filters/.gitignore diff --git a/tests/_data/views/filters/default.volt b/tests/_data/fixtures/views/filters/default.volt similarity index 100% rename from tests/_data/views/filters/default.volt rename to tests/_data/fixtures/views/filters/default.volt diff --git a/tests/_data/views/filters/default_json_encode.volt b/tests/_data/fixtures/views/filters/default_json_encode.volt similarity index 100% rename from tests/_data/views/filters/default_json_encode.volt rename to tests/_data/fixtures/views/filters/default_json_encode.volt diff --git a/tests/_data/views/layouts/test10.volt b/tests/_data/fixtures/views/layouts/compiler.volt similarity index 100% rename from tests/_data/views/layouts/test10.volt rename to tests/_data/fixtures/views/layouts/compiler.volt diff --git a/tests/_data/views/layouts/test3.phtml b/tests/_data/fixtures/views/layouts/currentrender.phtml similarity index 100% rename from tests/_data/views/layouts/test3.phtml rename to tests/_data/fixtures/views/layouts/currentrender.phtml diff --git a/tests/_data/fixtures/views/layouts/mustache.mhtml b/tests/_data/fixtures/views/layouts/mustache.mhtml new file mode 100644 index 00000000000..d3fd1e34dcb --- /dev/null +++ b/tests/_data/fixtures/views/layouts/mustache.mhtml @@ -0,0 +1,3 @@ +{{#some_eval}} +Well, this is the view content: {{content}}. +{{/some_eval}} diff --git a/tests/_data/views/layouts/test7.twig b/tests/_data/fixtures/views/layouts/twig.twig similarity index 100% rename from tests/_data/views/layouts/test7.twig rename to tests/_data/fixtures/views/layouts/twig.twig diff --git a/tests/_data/views/layouts/test12.phtml b/tests/_data/fixtures/views/layouts/twigphp.phtml similarity index 100% rename from tests/_data/views/layouts/test12.phtml rename to tests/_data/fixtures/views/layouts/twigphp.phtml diff --git a/tests/_data/views/macro/conditionaldate.volt b/tests/_data/fixtures/views/macro/conditionaldate.volt similarity index 100% rename from tests/_data/views/macro/conditionaldate.volt rename to tests/_data/fixtures/views/macro/conditionaldate.volt diff --git a/tests/_data/views/macro/error_messages.volt b/tests/_data/fixtures/views/macro/error_messages.volt similarity index 100% rename from tests/_data/views/macro/error_messages.volt rename to tests/_data/fixtures/views/macro/error_messages.volt diff --git a/tests/_data/views/macro/form_row.volt b/tests/_data/fixtures/views/macro/form_row.volt similarity index 100% rename from tests/_data/views/macro/form_row.volt rename to tests/_data/fixtures/views/macro/form_row.volt diff --git a/tests/_data/views/macro/hello.volt b/tests/_data/fixtures/views/macro/hello.volt similarity index 100% rename from tests/_data/views/macro/hello.volt rename to tests/_data/fixtures/views/macro/hello.volt diff --git a/tests/_data/views/macro/list.volt b/tests/_data/fixtures/views/macro/list.volt similarity index 100% rename from tests/_data/views/macro/list.volt rename to tests/_data/fixtures/views/macro/list.volt diff --git a/tests/_data/views/macro/my_input.volt b/tests/_data/fixtures/views/macro/my_input.volt similarity index 100% rename from tests/_data/views/macro/my_input.volt rename to tests/_data/fixtures/views/macro/my_input.volt diff --git a/tests/_data/views/macro/related_links.volt b/tests/_data/fixtures/views/macro/related_links.volt similarity index 100% rename from tests/_data/views/macro/related_links.volt rename to tests/_data/fixtures/views/macro/related_links.volt diff --git a/tests/_data/views/macro/strtotime.volt b/tests/_data/fixtures/views/macro/strtotime.volt similarity index 100% rename from tests/_data/views/macro/strtotime.volt rename to tests/_data/fixtures/views/macro/strtotime.volt diff --git a/tests/_data/views/test4/index.mhtml b/tests/_data/fixtures/views/mustache/index.mhtml similarity index 100% rename from tests/_data/views/test4/index.mhtml rename to tests/_data/fixtures/views/mustache/index.mhtml diff --git a/tests/_data/views/partials/footer.volt b/tests/_data/fixtures/views/partials/footer.volt similarity index 100% rename from tests/_data/views/partials/footer.volt rename to tests/_data/fixtures/views/partials/footer.volt diff --git a/unit-tests/views/partials/footer.volt.php b/tests/_data/fixtures/views/partials/footer.volt.php similarity index 100% rename from unit-tests/views/partials/footer.volt.php rename to tests/_data/fixtures/views/partials/footer.volt.php diff --git a/tests/_data/views/partials/header.volt b/tests/_data/fixtures/views/partials/header.volt similarity index 100% rename from tests/_data/views/partials/header.volt rename to tests/_data/fixtures/views/partials/header.volt diff --git a/unit-tests/views/partials/header.volt.php b/tests/_data/fixtures/views/partials/header.volt.php similarity index 100% rename from unit-tests/views/partials/header.volt.php rename to tests/_data/fixtures/views/partials/header.volt.php diff --git a/tests/_data/views/partials/header2.volt b/tests/_data/fixtures/views/partials/header2.volt similarity index 100% rename from tests/_data/views/partials/header2.volt rename to tests/_data/fixtures/views/partials/header2.volt diff --git a/unit-tests/views/partials/header2.volt.php b/tests/_data/fixtures/views/partials/header2.volt.php similarity index 100% rename from unit-tests/views/partials/header2.volt.php rename to tests/_data/fixtures/views/partials/header2.volt.php diff --git a/tests/_data/views/partials/header3.volt b/tests/_data/fixtures/views/partials/header3.volt similarity index 100% rename from tests/_data/views/partials/header3.volt rename to tests/_data/fixtures/views/partials/header3.volt diff --git a/unit-tests/views/partials/header3.volt.php b/tests/_data/fixtures/views/partials/header3.volt.php similarity index 100% rename from unit-tests/views/partials/header3.volt.php rename to tests/_data/fixtures/views/partials/header3.volt.php diff --git a/tests/_data/views/test6/index.mhtml b/tests/_data/fixtures/views/phpmustache/index.mhtml similarity index 100% rename from tests/_data/views/test6/index.mhtml rename to tests/_data/fixtures/views/phpmustache/index.mhtml diff --git a/tests/_data/views/test12/info.phtml b/tests/_data/fixtures/views/phpmustache/info.phtml similarity index 100% rename from tests/_data/views/test12/info.phtml rename to tests/_data/fixtures/views/phpmustache/info.phtml diff --git a/tests/_data/views/test2/index.phtml b/tests/_data/fixtures/views/simple/index.phtml similarity index 100% rename from tests/_data/views/test2/index.phtml rename to tests/_data/fixtures/views/simple/index.phtml diff --git a/tests/_data/views/test2/params.phtml b/tests/_data/fixtures/views/simple/params.phtml similarity index 100% rename from tests/_data/views/test2/params.phtml rename to tests/_data/fixtures/views/simple/params.phtml diff --git a/tests/_data/views/layouts/.gitignore b/tests/_data/fixtures/views/switch-case/.gitignore similarity index 100% rename from tests/_data/views/layouts/.gitignore rename to tests/_data/fixtures/views/switch-case/.gitignore diff --git a/tests/_data/views/switch-case/simple-usage.volt b/tests/_data/fixtures/views/switch-case/simple-usage.volt similarity index 100% rename from tests/_data/views/switch-case/simple-usage.volt rename to tests/_data/fixtures/views/switch-case/simple-usage.volt diff --git a/tests/_data/views/templates/a.volt b/tests/_data/fixtures/views/templates/a.volt similarity index 100% rename from tests/_data/views/templates/a.volt rename to tests/_data/fixtures/views/templates/a.volt diff --git a/tests/_data/fixtures/views/templates/b.volt b/tests/_data/fixtures/views/templates/b.volt new file mode 100644 index 00000000000..b1781289d39 --- /dev/null +++ b/tests/_data/fixtures/views/templates/b.volt @@ -0,0 +1 @@ +{% extends 'tests/_data/fixtures/views/templates/a.volt' %}{% block body %}[B]{% endblock %} diff --git a/tests/_data/fixtures/views/templates/c.volt b/tests/_data/fixtures/views/templates/c.volt new file mode 100644 index 00000000000..99d51b65cad --- /dev/null +++ b/tests/_data/fixtures/views/templates/c.volt @@ -0,0 +1 @@ +{% extends 'tests/_data/fixtures/views/templates/b.volt' %}{% block body %}###{{ super() }}###{% endblock %} diff --git a/tests/_data/views/test7/index.twig b/tests/_data/fixtures/views/twig/index.twig similarity index 100% rename from tests/_data/views/test7/index.twig rename to tests/_data/fixtures/views/twig/index.twig diff --git a/tests/_data/views/test12/index.twig b/tests/_data/fixtures/views/twigphp/index.twig similarity index 100% rename from tests/_data/views/test12/index.twig rename to tests/_data/fixtures/views/twigphp/index.twig diff --git a/tests/_data/views/test6/info.phtml b/tests/_data/fixtures/views/twigphp/info.phtml similarity index 100% rename from tests/_data/views/test6/info.phtml rename to tests/_data/fixtures/views/twigphp/info.phtml diff --git a/tests/_data/listener/CustomAuthorizationListener.php b/tests/_data/listener/CustomAuthorizationListener.php deleted file mode 100644 index 0478bc47da5..00000000000 --- a/tests/_data/listener/CustomAuthorizationListener.php +++ /dev/null @@ -1,39 +0,0 @@ -<?php - -namespace Phalcon\Test\Listener; - -use Phalcon\Events\Event; -use Phalcon\Http\Request; - -/** - * Phalcon\Test\Listener\CustomAuthorizationListener - * - * @copyright (c) 2011-2018 Phalcon Team - * @link https://www.phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @package Phalcon\Test\Listener - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class CustomAuthorizationListener -{ - public function beforeAuthorizationResolve(Event $event, Request $request, array $data) - { - return [ - 'Fired-Before'=> $event->getType(), - ]; - } - - public function afterAuthorizationResolve(Event $event, Request $request, array $data) - { - return [ - 'Fired-After'=> $event->getType(), - ]; - } -} diff --git a/tests/_data/listener/FirstListener.php b/tests/_data/listener/FirstListener.php deleted file mode 100644 index 2b68bca3720..00000000000 --- a/tests/_data/listener/FirstListener.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Phalcon\Test\Listener; - -/** - * Phalcon\Test\Listener\FirstListener - * - * @copyright (c) 2011-2017 Phalcon Team - * @link https://www.phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @package Phalcon\Test\Listener - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FirstListener -{ -} diff --git a/tests/_data/listener/NegotiateAuthorizationListener.php b/tests/_data/listener/NegotiateAuthorizationListener.php deleted file mode 100644 index 93a107cb2ec..00000000000 --- a/tests/_data/listener/NegotiateAuthorizationListener.php +++ /dev/null @@ -1,42 +0,0 @@ -<?php - -namespace Phalcon\Test\Listener; - -use Phalcon\Events\Event; -use Phalcon\Http\Request; - -/** - * Phalcon\Test\Listener\NegotiateAuthorizationListener - * - * @copyright (c) 2011-2018 Phalcon Team - * @link https://www.phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @package Phalcon\Test\Listener - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class NegotiateAuthorizationListener -{ - public function afterAuthorizationResolve(Event $event, Request $request, array $data) - { - if (empty($data['server']['CUSTOM_KERBEROS_AUTH'])) { - return false; - } - - list($type,) = explode(' ', $data['server']['CUSTOM_KERBEROS_AUTH'], 2); - - if (!$type || stripos($type, 'negotiate') !== 0) { - return false; - } - - return [ - 'Authorization'=> $data['server']['CUSTOM_KERBEROS_AUTH'], - ]; - } -} diff --git a/tests/_data/listener/SecondListener.php b/tests/_data/listener/SecondListener.php deleted file mode 100644 index 6ded81c8959..00000000000 --- a/tests/_data/listener/SecondListener.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Phalcon\Test\Listener; - -/** - * Phalcon\Test\Listener\SecondListener - * - * @copyright (c) 2011-2017 Phalcon Team - * @link https://www.phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @package Phalcon\Test\Listener - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class SecondListener -{ -} diff --git a/tests/_data/listener/ThirdListener.php b/tests/_data/listener/ThirdListener.php deleted file mode 100644 index d68d21cb5af..00000000000 --- a/tests/_data/listener/ThirdListener.php +++ /dev/null @@ -1,73 +0,0 @@ -<?php - -namespace Phalcon\Test\Listener; - -use ComponentX; -use Phalcon\Events\Event; -use Phalcon\Test\Unit\Events\ManagerTest; - -/** - * Phalcon\Test\Listener\ThirdListener - * - * @copyright (c) 2011-2017 Phalcon Team - * @link https://www.phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @package Phalcon\Test\Listener - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ThirdListener -{ - /** @var ManagerTest */ - protected $testCase; - - protected $before = 0; - - protected $after = 0; - - public function __construct() - { - include_once PATH_DATA . 'events/ComponentX.php'; - } - - public function setTestCase(ManagerTest $testCase) - { - $this->testCase = $testCase; - } - - public function beforeAction($event, $component, $data) - { - $this->testCase->assertInstanceOf(Event::class, $event); - $this->testCase->assertInstanceOf(ComponentX::class, $component); - $this->testCase->assertEquals($data, 'extra data'); - - $this->before++; - } - - public function afterAction($event, $component) - { - $this->testCase->assertInstanceOf(Event::class, $event); - $this->testCase->assertInstanceOf(ComponentX::class, $component); - $this->testCase->assertEquals($event->getData(), ['extra', 'data']); - - $this->after++; - - $this->testCase->setLastListener($this); - } - - public function getBeforeCount() - { - return $this->before; - } - - public function getAfterCount() - { - return $this->after; - } -} diff --git a/tests/_data/micro/MyMiddleware.php b/tests/_data/micro/MyMiddleware.php deleted file mode 100644 index d597dec2af7..00000000000 --- a/tests/_data/micro/MyMiddleware.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php - -class MyMiddleware implements Phalcon\Mvc\Micro\MiddlewareInterface -{ - protected $_number = 0; - - public function call(\Phalcon\Mvc\Micro $application) - { - $this->_number++; - } - - public function getNumber() - { - return $this->_number; - } -} diff --git a/tests/_data/micro/MyMiddlewareStop.php b/tests/_data/micro/MyMiddlewareStop.php deleted file mode 100644 index dc8a765ddb2..00000000000 --- a/tests/_data/micro/MyMiddlewareStop.php +++ /dev/null @@ -1,17 +0,0 @@ -<?php - -class MyMiddlewareStop implements Phalcon\Mvc\Micro\MiddlewareInterface -{ - protected $_number = 0; - - public function call(\Phalcon\Mvc\Micro $application) - { - $application->stop(); - $this->_number++; - } - - public function getNumber() - { - return $this->_number; - } -} diff --git a/tests/_data/micro/RestHandler.php b/tests/_data/micro/RestHandler.php deleted file mode 100644 index 758bab5f269..00000000000 --- a/tests/_data/micro/RestHandler.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -class RestHandler -{ - protected $_access = 0; - - protected $_trace = []; - - - - public function find() - { - $this->_access++; - $this->_trace[] = "find"; - } - - public function save() - { - $this->_access++; - $this->_trace[] = "save"; - } - - public function delete() - { - $this->_access++; - $this->_trace[] = "delete"; - } - - public function getNumberAccess() - { - return $this->_access; - } - - public function getTrace() - { - return $this->_trace; - } -} diff --git a/tests/_data/models/AlbumORama/Albums.php b/tests/_data/models/AlbumORama/Albums.php deleted file mode 100644 index 41dfa972da3..00000000000 --- a/tests/_data/models/AlbumORama/Albums.php +++ /dev/null @@ -1,40 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\AlbumORama; - -use Phalcon\Mvc\Model; - -/** - * \Phalcon\Test\Models\AlbumORama\Albums - * - * @property Artists $artist - * @property Artists $Artist - * - * @method static Albums findFirst($parameters = null) - * @method static Albums[] find($parameters = null) - * - * @copyright 2011-2017 Phalcon Team - * @link https://www.phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Nikolaos Dimopoulos <nikos@phalconphp.com> - * @package Phalcon\Test\Models\AlbumORama - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Albums extends Model -{ - public function initialize() - { - $this->belongsTo( - 'artists_id', - Artists::class, - 'id', - ['alias' => 'artist'] - ); - } -} diff --git a/tests/_data/models/AlbumORama/Artists.php b/tests/_data/models/AlbumORama/Artists.php deleted file mode 100644 index aed32febfad..00000000000 --- a/tests/_data/models/AlbumORama/Artists.php +++ /dev/null @@ -1,36 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\AlbumORama; - -use Phalcon\Mvc\Model; - -/** - * \Phalcon\Test\Models\AlbumORama\Artists - * - * @property string $name - * - * @copyright 2011-2017 Phalcon Team - * @link https://www.phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Nikolaos Dimopoulos <nikos@phalconphp.com> - * @package Phalcon\Test\Models\AlbumORama\Albums - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Artists extends Model -{ - public function initialize() - { - $this->hasMany( - 'id', - Albums::class, - 'artists_id', - ['alias' => 'albums'] - ); - } -} diff --git a/tests/_data/models/BodyParts/Body.php b/tests/_data/models/BodyParts/Body.php deleted file mode 100644 index d5c6ed16d0c..00000000000 --- a/tests/_data/models/BodyParts/Body.php +++ /dev/null @@ -1,59 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\BodyParts; - -use Phalcon\Mvc\Model; -use Phalcon\Test\Models\BodyParts\Head; - -/** - * \Phalcon\Test\Models\Body - * - * @copyright 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Radek Crlík <radekcrlik@gmail.com> - * @package Phalcon\Test\Models\BodyParts - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Body extends Model -{ - public $id; - public $head_1_id; - public $head_2_id; - - public function initialize() - { - $this->setSource('issue12071_body'); - - $this->belongsTo( - 'head_1_id', - Head::class, - 'id', - [ - 'alias' => 'head1', - "foreignKey" => [ - "allowNulls" => true, - "message" => "First head does not exists" - ] - ] - ); - - $this->belongsTo( - 'head_2_id', - Head::class, - 'id', - [ - 'alias' => 'head2', - "foreignKey" => [ - "allowNulls" => true, - "message" => "Second head does not exists" - ] - ] - ); - } -} diff --git a/tests/_data/models/BodyParts/Head.php b/tests/_data/models/BodyParts/Head.php deleted file mode 100644 index cd343cd8ceb..00000000000 --- a/tests/_data/models/BodyParts/Head.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\BodyParts; - -use Phalcon\Mvc\Model; - -/** - * \Phalcon\Test\Models\Head - * - * @copyright 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Radek Crlík <radekcrlik@gmail.com> - * @package Phalcon\Test\Models\BodyParts - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Head extends Model -{ - public $id; - - public function initialize() - { - $this->setSource('issue12071_head'); - } -} diff --git a/tests/_data/models/Boutique/Robots.php b/tests/_data/models/Boutique/Robots.php deleted file mode 100644 index 34895333592..00000000000 --- a/tests/_data/models/Boutique/Robots.php +++ /dev/null @@ -1,64 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Boutique; - -use Phalcon\Mvc\Model; - -class Robots extends Model -{ - const SETTER_EPILOGUE = " setText"; - - /** - * @Primary - * @Identity - * @Column(type="integer", nullable=false) - */ - public $id; - - /** - * @Column(type="string", length=70, nullable=false) - */ - public $name; - - /** - * @Column(type="string", length=32, nullable=false, default='mechanical') - */ - public $type; - - /** - * @Column(type="integer", nullable=false, default=1900) - */ - public $year; - - /** - * @Column(type="datetime", nullable=false) - */ - public $datetime; - - /** - * @Column(type="datetime", nullable=true) - */ - public $deleted; - - /** - * @Column(type="text", nullable=false) - */ - protected $text; - - /** - * Test restriction to not set hidden properties without setters. - */ - protected $serial; - - public function getText() - { - return $this->text; - } - - public function setText($value) - { - $this->text = $value . self::SETTER_EPILOGUE; - - return $this; - } -} diff --git a/tests/_data/models/Boutique/Robotters.php b/tests/_data/models/Boutique/Robotters.php deleted file mode 100644 index 64a6f0033a2..00000000000 --- a/tests/_data/models/Boutique/Robotters.php +++ /dev/null @@ -1,40 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Boutique; - -use Phalcon\Mvc\Model; - -/** - * Robotters - * - * "robotters" is robots in danish - */ -class Robotters extends Model -{ - /** - * @Primary - * @Identity - * @Column(type="integer", nullable=false, mappedColumn="id") - */ - public $code; - - /** - * @Column(type="string", length=70, nullable=false, mappedColumn="id") - */ - public $theName; - - /** - * @Column(type="string", length=32, nullable=false, mappedColumn="id") - */ - public $theType; - - /** - * @Column(type="integer", nullable=false, mappedColumn="id") - */ - public $theYear; - - public function getSource() - { - return 'robots'; - } -} diff --git a/tests/_data/models/Customers.php b/tests/_data/models/Customers.php deleted file mode 100644 index 2cd72be7ceb..00000000000 --- a/tests/_data/models/Customers.php +++ /dev/null @@ -1,49 +0,0 @@ -<?php - -namespace Phalcon\Test\Models; - -use Phalcon\Mvc\Model; -use Phalcon\Mvc\Model\Resultset\Simple; - -/** - * \Phalcon\Test\Models\Customers - * - * @copyright 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - * - * @method static Simple|Customers[] find($parameters = null) - * @property Simple|Users $user - */ -class Customers extends Model -{ - public $id; - public $document_id; - public $customer_id; - public $first_name; - public $last_name; - public $phone; - public $email; - public $instructions; - public $status; - public $birth_date; - public $credit_line; - public $created_at; - - protected $protected_field; - private $private_field; - - public function initialize() - { - $this->hasOne('customer_id', Users::class, 'id', ['alias' => 'user', 'reusable' => true]); - } -} diff --git a/tests/_data/models/Deles.php b/tests/_data/models/Deles.php deleted file mode 100644 index 30b47ad7770..00000000000 --- a/tests/_data/models/Deles.php +++ /dev/null @@ -1,40 +0,0 @@ -<?php - -namespace Phalcon\Test\Models; - -use Phalcon\Mvc\Model; - -/** - * Deles - * - * Deles is "parts" in danish - */ -class Deles extends Model -{ - public function getSource() - { - return 'parts'; - } - - public function columnMap() - { - return [ - 'id' => 'code', - 'name' => 'theName', - ]; - } - - public function initialize() - { - $this->hasMany( - 'code', - RobottersDeles::class, - 'delesCode', - [ - 'foreignKey' => [ - 'message' => 'Deles cannot be deleted because is referenced by a Robotter' - ] - ] - ); - } -} diff --git a/tests/_data/models/Dynamic/Personas.php b/tests/_data/models/Dynamic/Personas.php deleted file mode 100644 index c9acc7a5fb6..00000000000 --- a/tests/_data/models/Dynamic/Personas.php +++ /dev/null @@ -1,39 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Dynamic; - -use Phalcon\Mvc\Model; - -/** - * Phalcon\Test\Models\Dynamic\Personas - * - * @package Phalcon\Test\Models\Dynamic - * - * @property string $cedula - * @property int $tipo_documento_id - * @property string $nombres - * @property string $telefono - * @property string $direccion - * @property string $email - * @property string $fecha_nacimiento - * @property int $ciudad_id - * @property int $creado_at - * @property float $cupo - * @property string $estado - * - * @method static Personas findFirst($parameters = null) - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Personas extends Model -{ - public function initialize() - { - $this->useDynamicUpdate(true); - } -} diff --git a/tests/_data/models/Dynamic/Personers.php b/tests/_data/models/Dynamic/Personers.php deleted file mode 100644 index 6056a1fe19d..00000000000 --- a/tests/_data/models/Dynamic/Personers.php +++ /dev/null @@ -1,66 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Dynamic; - -use Phalcon\Mvc\Model; - -/** - * Phalcon\Test\Models\Dynamic\Personers - * Personers is people in danish. - * - * @package Phalcon\Test\Models\Dynamic - * - * @property string $borgerId - * @property int $slagBorgerId - * @property string $navnes - * @property string $telefon - * @property string $adresse - * @property string $elektroniskPost - * @property string $fodtDato - * @property int $fodebyId - * @property int $skabtPa - * @property float $kredit - * @property string $status - * - * @method static Personers findFirst($parameters = null) - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Personers extends Model -{ - public function initialize() - { - $this->setSource('personas'); - $this->useDynamicUpdate(true); - $this->addBehavior( - new Model\Behavior\SoftDelete( - [ - 'field' => 'status', - 'value' => 'X', - ] - ) - ); - } - - public function columnMap() - { - return [ - 'cedula' => 'borgerId', - 'tipo_documento_id' => 'slagBorgerId', - 'nombres' => 'navnes', - 'telefono' => 'telefon', - 'direccion' => 'adresse', - 'email' => 'elektroniskPost', - 'fecha_nacimiento' => 'fodtDato', - 'ciudad_id' => 'fodebyId', - 'creado_at' => 'skabtPa', - 'cupo' => 'kredit', - 'estado' => 'status', - ]; - } -} diff --git a/tests/_data/models/Dynamic/Robots.php b/tests/_data/models/Dynamic/Robots.php deleted file mode 100644 index 0ff962c6eb6..00000000000 --- a/tests/_data/models/Dynamic/Robots.php +++ /dev/null @@ -1,45 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Dynamic; - -use Phalcon\Mvc\Model; -use Phalcon\Test\Models\RobotsParts; - -/** - * \Phalcon\Test\Models\Dynamic\Robots - * - * @copyright 2011-2017 Phalcon Team - * @link https://phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @package Phalcon\Test\Models\Dynamic - * - * @property int $id - * @property string $name - * @property string $type - * @property int $year - * @property string $datetime - * @property string $deleted - * @property string $text - * - * @method static Robots findFirst($parameters = null) - * @method static Robots[] find($parameters = null) - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Robots extends Model -{ - public $year; - - public function initialize() - { - $this->hasMany('id', RobotsParts::class, 'robots_id'); - - $this->useDynamicUpdate(true); - } -} diff --git a/tests/_data/models/Language.php b/tests/_data/models/Language.php deleted file mode 100644 index 34fa0de0dca..00000000000 --- a/tests/_data/models/Language.php +++ /dev/null @@ -1,34 +0,0 @@ -<?php - -namespace Phalcon\Test\Models; - -use Phalcon\Mvc\Model; -use Phalcon\Mvc\Model\Resultset\Simple; - -/** - * Phalcon\Test\Models\Language - * - * @property string lang - * @property string locale - * @property Simple translations - * @method Simple getTranslations() - * - * @package Phalcon\Test\Models - */ -class Language extends Model -{ - public function getSource() - { - return 'language'; - } - - public function initialize() - { - $this->hasMany( - ['lang', 'locale'], - LanguageI18n::class, - ['from_lang', 'from_locale'], - ['alias' => 'translations'] - ); - } -} diff --git a/tests/_data/models/LanguageI18n.php b/tests/_data/models/LanguageI18n.php deleted file mode 100644 index 5cc17888d17..00000000000 --- a/tests/_data/models/LanguageI18n.php +++ /dev/null @@ -1,40 +0,0 @@ -<?php - -namespace Phalcon\Test\Models; - -use Phalcon\Mvc\Model; - -/** - * Phalcon\Test\Models\LanguageI18n - * - * @property string from_lang - * @property string from_locale - * @property string lang - * @property string locale - * - * @package Phalcon\Test\Models - */ -class LanguageI18n extends Model -{ - public function getSource() - { - return 'languagei18n'; - } - - public function initialize() - { - $this->belongsTo( - ['from_lang', 'from_lang'], - Language::class, - ['lang', 'locale'], - ['alias' => 'Origin'] - ); - - $this->belongsTo( - ['lang', 'locale'], - Language::class, - ['lang', 'locale'], - ['alias' => 'Target'] - ); - } -} diff --git a/tests/_data/models/ModelWithStringField.php b/tests/_data/models/ModelWithStringField.php deleted file mode 100644 index 7cc0cc5a58d..00000000000 --- a/tests/_data/models/ModelWithStringField.php +++ /dev/null @@ -1,54 +0,0 @@ -<?php - -namespace Phalcon\Test\Models; - - -use Phalcon\Mvc\Model; - -/** - * \Phalcon\Test\Models\ModelWithStringField - * - * - * @copyright 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Nikolay Sumrak <nikolassumrak@gmail.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ModelWithStringField extends Model -{ - /** - * @var int - */ - public $id; - /** - * @var string - */ - public $field; - - /** - * @return string - */ - public function getSource() - { - return 'table_with_string_field'; - } - - public function allowEmptyStringValue() - { - $this->allowEmptyStringValues([ - 'field' - ]); - } - - public function disallowEmptyStringValue() - { - $this->allowEmptyStringValues([]); - } -} \ No newline at end of file diff --git a/tests/_data/models/News/Subscribers.php b/tests/_data/models/News/Subscribers.php deleted file mode 100644 index 5870bd23c09..00000000000 --- a/tests/_data/models/News/Subscribers.php +++ /dev/null @@ -1,51 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\News; - -use Phalcon\Mvc\Model; -use Phalcon\Mvc\Model\Behavior\SoftDelete; -use Phalcon\Mvc\Model\Behavior\Timestampable; - -/** - * \Phalcon\Test\Models\Subscribers - * - * @copyright 2011-2017 Phalcon Team - * @link https://phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @package Phalcon\Test\Models - * - * @property int $id - * @property string $email - * @property string $status - * @property string $created_at - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Subscribers extends Model -{ - public function getSource() - { - return 'subscriptores'; - } - - public function initialize() - { - $this->addBehavior(new Timestampable([ - 'beforeCreate' => [ - 'field' => 'created_at', - 'format' => 'Y-m-d H:i:s' - ] - ])); - - $this->addBehavior(new SoftDelete([ - 'field' => 'status', - 'value' => 'D' - ])); - } -} diff --git a/tests/_data/models/PackageDetails.php b/tests/_data/models/PackageDetails.php deleted file mode 100644 index 798d715b04a..00000000000 --- a/tests/_data/models/PackageDetails.php +++ /dev/null @@ -1,32 +0,0 @@ -<?php - -namespace Phalcon\Test\Models; - -use Phalcon\Mvc\Model; - -/** - * \Phalcon\Test\Models\PackageDetails - * - * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class PackageDetails extends Model -{ - public $reference_type_id; - public $reference_id; - public $type; - public $value; - public $created; - public $updated; - public $deleted; -} diff --git a/tests/_data/models/Packages.php b/tests/_data/models/Packages.php deleted file mode 100644 index c09752947f0..00000000000 --- a/tests/_data/models/Packages.php +++ /dev/null @@ -1,46 +0,0 @@ -<?php - -namespace Phalcon\Test\Models; - -use Phalcon\Mvc\Model; -use Phalcon\Mvc\Model\Resultset; - -/** - * \Phalcon\Test\Models\Packages - * - * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - * - * @method static Packages[] find($parameters = null) - * @method Resultset|PackageDetails getDetails($parameters = null) - * @property Resultset|PackageDetails details - */ -class Packages extends Model -{ - public $reference_type_id; - public $reference_id; - public $title; - public $created; - public $updated; - public $deleted; - - public function initialize() - { - $this->hasMany( - ['reference_id', 'reference_type_id'], - PackageDetails::class, - ['reference_id', 'reference_type_id'], - ['alias' => 'details'] - ); - } -} diff --git a/tests/_data/models/Parts.php b/tests/_data/models/Parts.php deleted file mode 100644 index 7e0e6cf597a..00000000000 --- a/tests/_data/models/Parts.php +++ /dev/null @@ -1,39 +0,0 @@ -<?php - -namespace Phalcon\Test\Models; - -use Phalcon\Mvc\Model; - -/** - * \Phalcon\Test\Models\Parts - * Parts model class - * - * @copyright 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Nikolaos Dimopoulos <nikos@phalconphp.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Parts extends Model -{ - public function initialize() - { - $this->hasMany( - 'id', - RobotsParts::class, - 'parts_id', - [ - 'foreignKey' => [ - 'message' => 'Parts cannot be deleted because is referenced by a Robot' - ] - ] - ); - } -} diff --git a/tests/_data/models/People.php b/tests/_data/models/People.php deleted file mode 100644 index ab1273f9780..00000000000 --- a/tests/_data/models/People.php +++ /dev/null @@ -1,41 +0,0 @@ -<?php - -namespace Phalcon\Test\Models; - -use Phalcon\Mvc\Model; - -/** - * Phalcon\Test\Models\People - * - * @copyright 2011-2017 Phalcon Team - * @link https://phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class People extends Model -{ - public $cedula; - public $tipo_documento_id; - public $nombres; - public $telefono; - public $direccion; - public $email; - public $fecha_nacimiento; - public $ciudad_id; - public $cupo; - public $estado; - public $creado_at; - - public function getSource() - { - return 'personas'; - } -} diff --git a/tests/_data/models/Personas.php b/tests/_data/models/Personas.php deleted file mode 100644 index 309558ca16c..00000000000 --- a/tests/_data/models/Personas.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Phalcon\Test\Models; - -use Phalcon\Mvc\Model; - -/** - * Phalcon\Test\Models\Personas - * - * Personas is people in spanish. - * - * @property string $cedula - * @property int $tipo_documento_id - * @property string $nombres - * @property string $telefono - * @property string $direccion - * @property string $email - * @property string $fecha_nacimiento - * @property int $ciudad_id - * @property int $creado_at - * @property float $cupo - * @property string $estado - * - * @package Phalcon\Test\Models - */ -class Personas extends Model -{ -} diff --git a/tests/_data/models/Personers.php b/tests/_data/models/Personers.php deleted file mode 100644 index f2d7702e2a4..00000000000 --- a/tests/_data/models/Personers.php +++ /dev/null @@ -1,59 +0,0 @@ -<?php - -namespace Phalcon\Test\Models; - -use Phalcon\Mvc\Model; - -/** - * \Phalcon\Test\Models\Personers - * Personers is people in danish. - * - * @copyright 2011-2017 Phalcon Team - * @link https://phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @package Phalcon\Test\Models - * - * @property string $borgerId - * @property int $slagBorgerId - * @property string $navnes - * @property string $telefon - * @property string $adresse - * @property string $elektroniskPost - * @property string $fodtDato - * @property int $fodebyId - * @property string $skabtPa - * @property float $kredit - * @property string $status - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Personers extends Model -{ - public function getSource() - { - return 'personas'; - } - - public function columnMap() - { - return [ - 'cedula' => 'borgerId', - 'tipo_documento_id' => 'slagBorgerId', - 'nombres' => 'navnes', - 'telefono' => 'telefon', - 'direccion' => 'adresse', - 'email' => 'elektroniskPost', - 'fecha_nacimiento' => 'fodtDato', - 'ciudad_id' => 'fodebyId', - 'creado_at' => 'skabtPa', - 'cupo' => 'kredit', - 'estado' => 'status', - ]; - } -} diff --git a/tests/_data/models/Products.php b/tests/_data/models/Products.php deleted file mode 100644 index 15396f7e0ec..00000000000 --- a/tests/_data/models/Products.php +++ /dev/null @@ -1,7 +0,0 @@ -<?php - -namespace Phalcon\Test\Models; - -class Products extends \Phalcon\Mvc\Model -{ -} diff --git a/tests/_data/models/Relations/RelationsParts.php b/tests/_data/models/Relations/RelationsParts.php deleted file mode 100644 index e06eb2672b3..00000000000 --- a/tests/_data/models/Relations/RelationsParts.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Relations; - -use Phalcon\Mvc\Model; - -/** - * Phalcon\Test\Models\Relations\RelationsParts - * - * @package Phalcon\Test\Models\Relations - */ -class RelationsParts extends Model -{ - public function initialize() - { - $this->hasMany( - 'id', - RelationsRobotsParts::class, - 'parts_id', - ['foreignKey' => ['message' => 'Parts cannot be deleted because is referenced by a Robot']] - ); - } - - public function getSource() - { - return 'parts'; - } -} diff --git a/tests/_data/models/Relations/RelationsRobots.php b/tests/_data/models/Relations/RelationsRobots.php deleted file mode 100644 index 85033428a3e..00000000000 --- a/tests/_data/models/Relations/RelationsRobots.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Relations; - -use Phalcon\Mvc\Model; - -/** - * Phalcon\Test\Models\Relations\RelationsRobots - * - * @package Phalcon\Test\Models\Relations - */ -class RelationsRobots extends Model -{ - public function initialize() - { - $this->hasMany( - 'id', - RelationsRobotsParts::class, - 'robots_id', - ['foreignKey' => true] - ); - - $this->hasManyToMany( - 'id', - RelationsRobotsParts::class, - 'robots_id', - 'parts_id', - RelationsParts::class, - 'id' - ); - } - - public function getSource() - { - return 'robots'; - } -} diff --git a/tests/_data/models/Relations/RelationsRobotsParts.php b/tests/_data/models/Relations/RelationsRobotsParts.php deleted file mode 100644 index 5e1a93ab3a1..00000000000 --- a/tests/_data/models/Relations/RelationsRobotsParts.php +++ /dev/null @@ -1,35 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Relations; - -use Phalcon\Mvc\Model; - -/** - * Phalcon\Test\Models\Relations\RelationsRobotsParts - * - * @package Phalcon\Test\Models\Relations - */ -class RelationsRobotsParts extends Model -{ - public function initialize() - { - $this->belongsTo( - 'parts_id', - RelationsParts::class, - 'id', - ['foreignKey' => true] - ); - - $this->belongsTo( - 'robots_id', - RelationsRobots::class, - 'id', - ['foreignKey' => ['message' => 'The robot code does not exist']] - ); - } - - public function getSource() - { - return 'robots_parts'; - } -} diff --git a/tests/_data/models/Relations/Robots.php b/tests/_data/models/Relations/Robots.php deleted file mode 100644 index 0956d547cb8..00000000000 --- a/tests/_data/models/Relations/Robots.php +++ /dev/null @@ -1,9 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Relations; - -use Phalcon\Mvc\Model; - -class Robots extends Model -{ -} diff --git a/tests/_data/models/Relations/RobotsParts.php b/tests/_data/models/Relations/RobotsParts.php deleted file mode 100644 index 99ce12fc427..00000000000 --- a/tests/_data/models/Relations/RobotsParts.php +++ /dev/null @@ -1,32 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Relations; - -use Phalcon\Mvc\Model; -use Phalcon\Mvc\Model\Row; - -/** - * Phalcon\Test\Models\Relations\RobotsParts - * - * @method static RobotsParts findFirst($parameters = null) - * @method Row getRobots($parameters = null) - * - * @package Phalcon\Test\Models\Relations - */ -class RobotsParts extends Model -{ - public function initialize() - { - $this->belongsTo( - 'robots_id', - __NAMESPACE__ . '\Robots', - 'id', - [ - 'alias' => 'Robots', - 'params' => [ - 'columns' => 'id,name' - ] - ] - ); - } -} diff --git a/tests/_data/models/Robos.php b/tests/_data/models/Robos.php deleted file mode 100644 index aa8a5e30c02..00000000000 --- a/tests/_data/models/Robos.php +++ /dev/null @@ -1,27 +0,0 @@ -<?php - -namespace Phalcon\Test\Models; - -use Phalcon\Mvc\Model; - -/** - * Robos - * - * "Robôs" is robots in portuguese - * - * @author David Napierata - * - * @package Phalcon\Test\Models - */ -class Robos extends Model -{ - public function getSource() - { - return 'robots'; - } - - public function initialize() - { - $this->setConnectionService('dbTwo'); - } -} diff --git a/tests/_data/models/Robots.php b/tests/_data/models/Robots.php deleted file mode 100644 index a1d277afd39..00000000000 --- a/tests/_data/models/Robots.php +++ /dev/null @@ -1,63 +0,0 @@ -<?php - -namespace Phalcon\Test\Models; - -use Phalcon\Mvc\Model; -use Phalcon\Mvc\Model\Resultset\Simple; - -/** - * \Phalcon\Test\Models\Robots - * - * @method static int countByType(string $type) - * @method static Simple findByType(string $type) - * @method static Robots findFirstById(string|int $id) - * - * @copyright 2011-2017 Phalcon Team - * @link https://phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Nikolaos Dimopoulos <nikos@phalconphp.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Robots extends Model -{ - /** - * @var bool - */ - public $wasSetterUsed = false; - - /** - * @var string - */ - protected $name; - - public function initialize() - { - $this->keepSnapshots(true); - - $this->hasMany( - 'id', - RobotsParts::class, - 'robots_id', - [ - 'foreignKey' => true, - 'reusable' => false, - 'alias' => 'parts' - ] - ); - } - - public function setName($name) - { - $this->name = $name; - $this->wasSetterUsed = true; - - return $this; - } -} diff --git a/tests/_data/models/RobotsParts.php b/tests/_data/models/RobotsParts.php deleted file mode 100644 index 169dbfe990a..00000000000 --- a/tests/_data/models/RobotsParts.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Phalcon\Test\Models; - -use Phalcon\Mvc\Model; - -/** - * \Phalcon\Test\Models\RobotsParts - * - * @copyright 2011-2017 Phalcon Team - * @link https://phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Nikolaos Dimopoulos <nikos@phalconphp.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class RobotsParts extends Model -{ - public function initialize() - { - $this->belongsTo('parts_id', Parts::class, 'id', ['foreignKey' => true]); - - $this->belongsTo('robots_id', Robots::class, 'id', [ - 'foreignKey' => ['message' => 'The robot code does not exist'] - ]); - } -} diff --git a/tests/_data/models/Robotters.php b/tests/_data/models/Robotters.php deleted file mode 100644 index f2b6c318f85..00000000000 --- a/tests/_data/models/Robotters.php +++ /dev/null @@ -1,50 +0,0 @@ -<?php - -namespace Phalcon\Test\Models; - -use Phalcon\Mvc\Model; -use Phalcon\Mvc\Model\Resultset\Simple; - -/** - * Robotters - * - * "robotters" is robots in danish - * - * @method static int countByTheType(string $type) - * @method static Simple findByTheType(string $type) - * @method static Simple findFirstByCode(string|int $code) - * - * @package Phalcon\Test\Models - */ -class Robotters extends Model -{ - public function getSource() - { - return 'robots'; - } - - public function columnMap() - { - return [ - 'id' => 'code', - 'name' => 'theName', - 'type' => 'theType', - 'year' => 'theYear', - 'datetime' => 'theDatetime', - 'deleted' => 'theDeleted', - 'text' => 'theText', - ]; - } - - public function initialize() - { - $this->hasMany( - 'code', - RobottersDeles::class, - 'robottersCode', - [ - 'foreignKey' => true - ] - ); - } -} diff --git a/tests/_data/models/RobottersDeles.php b/tests/_data/models/RobottersDeles.php deleted file mode 100644 index b89a007f057..00000000000 --- a/tests/_data/models/RobottersDeles.php +++ /dev/null @@ -1,50 +0,0 @@ -<?php - -namespace Phalcon\Test\Models; - -use Phalcon\Mvc\Model; - -/** - * RobottersDeles - * - * This model is an intermediate table for "Robotters" and "Deles" - */ -class RobottersDeles extends Model -{ - public function getSource() - { - return 'robots_parts'; - } - - public function columnMap() - { - return [ - 'id' => 'code', - 'robots_id' => 'robottersCode', - 'parts_id' => 'delesCode', - ]; - } - - public function initialize() - { - $this->belongsTo( - 'delesCode', - Deles::class, - 'code', - [ - 'foreignKey' => true - ] - ); - - $this->belongsTo( - 'robottersCode', - Robotters::class, - 'code', - [ - 'foreignKey' => [ - 'message' => 'The robotters code does not exist' - ] - ] - ); - } -} diff --git a/tests/_data/models/Robotto.php b/tests/_data/models/Robotto.php deleted file mode 100644 index 8a68b0a057c..00000000000 --- a/tests/_data/models/Robotto.php +++ /dev/null @@ -1,54 +0,0 @@ -<?php - -namespace Phalcon\Test\Models; - -use Phalcon\Mvc\Model\MetaData; -use Phalcon\Db\Column; - -/** - * Robotto is the japanese for Robot - */ -class Robotto extends \Phalcon\Mvc\Model -{ - public function getSource() - { - return 'robots'; - } - - public function metaData() - { - return array( - MetaData::MODELS_ATTRIBUTES => array( - 'id', 'name', 'type', 'year' - ), - MetaData::MODELS_PRIMARY_KEY => array( - 'id' - ), - MetaData::MODELS_NON_PRIMARY_KEY => array( - 'name', 'type', 'year' - ), - MetaData::MODELS_NOT_NULL => array( - 'id', 'name', 'type', 'year' - ), - MetaData::MODELS_DATA_TYPES => array( - 'id' => Column::TYPE_INTEGER, - 'name' => Column::TYPE_VARCHAR, - 'type' => Column::TYPE_VARCHAR, - 'year' => Column::TYPE_INTEGER - ), - MetaData::MODELS_DATA_TYPES_NUMERIC => array( - 'id' => true, - 'year' => true, - ), - MetaData::MODELS_IDENTITY_COLUMN => 'id', - MetaData::MODELS_DATA_TYPES_BIND => array( - 'id' => Column::BIND_PARAM_INT, - 'name' => Column::BIND_PARAM_STR, - 'type' => Column::BIND_PARAM_STR, - 'year' => Column::BIND_PARAM_INT, - ), - MetaData::MODELS_AUTOMATIC_DEFAULT_INSERT => array(), - MetaData::MODELS_AUTOMATIC_DEFAULT_UPDATE => array() - ); - } -} diff --git a/tests/_data/models/Select.php b/tests/_data/models/Select.php deleted file mode 100644 index c26aec176fc..00000000000 --- a/tests/_data/models/Select.php +++ /dev/null @@ -1,63 +0,0 @@ -<?php - -namespace Phalcon\Test\Models; - -use Phalcon\Mvc\Model; - -/** - * \Phalcon\Test\Models\Select - * - * @copyright 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Nikolaos Dimopoulos <nikos@phalconphp.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Select extends Model -{ - public function initialize() - { - } - - public function getSource() - { - return 'ph_select'; - } - - public function getId() - { - return $this->sel_id; - } - - public function getName() - { - return $this->sel_name; - } - - public function getText() - { - return $this->sel_text; - } - - public function setId($id) - { - $this->sel_id = $id; - } - - public function setName($name) - { - $this->sel_name = $name; - } - - public function setText($text) - { - $this->sel_text = $text; - } -} diff --git a/tests/_data/models/Snapshot/Parts.php b/tests/_data/models/Snapshot/Parts.php deleted file mode 100644 index f332d69de32..00000000000 --- a/tests/_data/models/Snapshot/Parts.php +++ /dev/null @@ -1,36 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Snapshot; - -use Phalcon\Mvc\Model; - -/** - * \Phalcon\Test\Models\Snapshot\Parts - * - * @copyright 2011-2017 Phalcon Team - * @link https://phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @package Phalcon\Test\Models\Snapshot - * - * @property int $id - * @property sting $name - * - * @method static Parts findFirst($parameters = null) - * @method static Parts[] find($parameters = null) - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Parts extends Model -{ - public function initialize() - { - $this->hasMany('id', RobotsParts::class, 'robots_id'); - $this->keepSnapshots(true); - } -} diff --git a/tests/_data/models/Snapshot/Personas.php b/tests/_data/models/Snapshot/Personas.php deleted file mode 100644 index 0e8686fe6e4..00000000000 --- a/tests/_data/models/Snapshot/Personas.php +++ /dev/null @@ -1,40 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Snapshot; - -use Phalcon\Mvc\Model; - -/** - * Phalcon\Test\Models\Dynamic\Personas - * - * @package Phalcon\Test\Models\Dynamic - * - * @property string $cedula - * @property int $tipo_documento_id - * @property string $nombres - * @property string $telefono - * @property string $direccion - * @property string $email - * @property string $fecha_nacimiento - * @property int $ciudad_id - * @property int $creado_at - * @property float $cupo - * @property string $estado - * - * @method static Personas findFirst($parameters = null) - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Personas extends Model -{ - public function initialize() - { - $this->keepSnapshots(true); - $this->useDynamicUpdate(true); - } -} diff --git a/tests/_data/models/Snapshot/Requests.php b/tests/_data/models/Snapshot/Requests.php deleted file mode 100644 index 26b6c04c6a2..00000000000 --- a/tests/_data/models/Snapshot/Requests.php +++ /dev/null @@ -1,41 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Snapshot; - -use Phalcon\Mvc\Model; - -/** - * Phalcon\Test\Models\Snapshot\Requests - * - * @package Phalcon\Test\Models\Snapshot - * - * @property string $method - * @property string $uri - * @property int $count - * - * @method static Requests findFirst($parameters = null) - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Requests extends Model -{ - public function initialize() - { - $this->setSource('identityless_requests'); - $this->keepSnapshots(true); - } - - public function columnMap() - { - return [ - 'method' => 'method', - 'requested_uri' => 'uri', - 'request_count' => 'count', - ]; - } -} diff --git a/tests/_data/models/Snapshot/Robots.php b/tests/_data/models/Snapshot/Robots.php deleted file mode 100644 index 7b9f40f6bc4..00000000000 --- a/tests/_data/models/Snapshot/Robots.php +++ /dev/null @@ -1,42 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Snapshot; - -use Phalcon\Mvc\Model; - -/** - * \Phalcon\Test\Models\Snapshot\Robots - * - * @copyright 2011-2017 Phalcon Team - * @link https://phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @package Phalcon\Test\Models\Snapshot - * - * @property int $id - * @property sting $name - * @property string $type - * @property int $year - * @property string $datetime - * @property string $deleted - * @property string $text - * - * @method static Robots findFirst($parameters = null) - * @method static Robots[] find($parameters = null) - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Robots extends Model -{ - public function initialize() - { - $this->hasMany('id', RobotsParts::class, 'robots_id'); - - $this->keepSnapshots(true); - } -} diff --git a/tests/_data/models/Snapshot/RobotsParts.php b/tests/_data/models/Snapshot/RobotsParts.php deleted file mode 100644 index 449ed646285..00000000000 --- a/tests/_data/models/Snapshot/RobotsParts.php +++ /dev/null @@ -1,36 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Snapshot; - -use Phalcon\Mvc\Model; - -/** - * \Phalcon\Test\Models\Snapshot\RobotsParts - * - * @copyright 2011-2017 Phalcon Team - * @link https://phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @package Phalcon\Test\Models\Snapshot - * - * @property int $id - * @property int $robots_id - * @property int $parts_id - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class RobotsParts extends Model -{ - public function initialize() - { - $this->belongsTo('robots_id', Robots::class, 'id'); - $this->belongsTo('parts_id', Parts::class, 'id'); - - $this->keepSnapshots(true); - } -} diff --git a/tests/_data/models/Snapshot/Robotters.php b/tests/_data/models/Snapshot/Robotters.php deleted file mode 100644 index e2011845c86..00000000000 --- a/tests/_data/models/Snapshot/Robotters.php +++ /dev/null @@ -1,61 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Snapshot; - -use Phalcon\Mvc\Model; -use Phalcon\Test\Models\RobottersDeles; - -/** - * \Phalcon\Test\Models\Snapshot\Robotters - * - * @copyright 2011-2017 Phalcon Team - * @link https://phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @package Phalcon\Test\Models\Snapshot - * - * @property int $code - * @property sting $theName - * @property string $theType - * @property int $theYear - * @property string $theDatetime - * @property string $theDeleted - * @property string $theText - * - * @method static Robotters findFirst($parameters = null) - * @method static Robotters[] find($parameters = null) - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Robotters extends Model -{ - public function getSource() - { - return 'robots'; - } - - public function columnMap() - { - return [ - 'id' => 'code', - 'name' => 'theName', - 'type' => 'theType', - 'year' => 'theYear', - 'datetime' => 'theDatetime', - 'deleted' => 'theDeleted', - 'text' => 'theText', - ]; - } - - public function initialize() - { - $this->hasMany('code', RobottersDeles::class, 'robottersCode'); - - $this->keepSnapshots(true); - } -} diff --git a/tests/_data/models/Snapshot/Subscribers.php b/tests/_data/models/Snapshot/Subscribers.php deleted file mode 100644 index fed6f77dddd..00000000000 --- a/tests/_data/models/Snapshot/Subscribers.php +++ /dev/null @@ -1,53 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Snapshot; - -use Phalcon\Mvc\Model; -use Phalcon\Mvc\Model\Behavior\SoftDelete; -use Phalcon\Mvc\Model\Behavior\Timestampable; - -/** - * \Phalcon\Test\Models\Subscribers - * - * @copyright 2011-2017 Phalcon Team - * @link https://phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @package Phalcon\Test\Models - * - * @property int $id - * @property string $email - * @property string $status - * @property string $created_at - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Subscribers extends Model -{ - public function getSource() - { - return 'subscriptores'; - } - - public function initialize() - { - $this->keepSnapshots(true); - - $this->addBehavior(new Timestampable([ - 'beforeCreate' => [ - 'field' => 'created_at', - 'format' => 'Y-m-d H:i:s' - ] - ])); - - $this->addBehavior(new SoftDelete([ - 'field' => 'status', - 'value' => 'D' - ])); - } -} diff --git a/tests/_data/models/Some/Deles.php b/tests/_data/models/Some/Deles.php deleted file mode 100644 index 5a34b70eaa5..00000000000 --- a/tests/_data/models/Some/Deles.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Some; - -/** - * Deles - * - * Deles is "parts" in danish - */ -class Deles extends \Phalcon\Mvc\Model -{ - public function getSource() - { - return 'parts'; - } - - public function columnMap() - { - return array( - 'id' => 'code', - 'name' => 'theName', - ); - } - - public function initialize() - { - $this->hasMany('code', RobottersDeles::class, 'delesCode', array( - 'foreignKey' => array( - 'message' => 'Deles cannot be deleted because is referenced by a Robotter' - ) - )); - } -} diff --git a/tests/_data/models/Some/Parts.php b/tests/_data/models/Some/Parts.php deleted file mode 100644 index 440e6e78aa1..00000000000 --- a/tests/_data/models/Some/Parts.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Some; - -class Parts extends \Phalcon\Mvc\Model -{ - public function getSource() - { - return 'parts'; - } - - public function initialize() - { - $this->hasMany('id', \Phalcon\Test\Models\RobotsParts::class, 'parts_id', array( - 'foreignKey' => array( - 'message' => 'Parts cannot be deleted because is referenced by a Robot' - ) - )); - } -} diff --git a/tests/_data/models/Some/Products.php b/tests/_data/models/Some/Products.php deleted file mode 100644 index bbc93b7695d..00000000000 --- a/tests/_data/models/Some/Products.php +++ /dev/null @@ -1,51 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Some; - -use Phalcon\Db\Column; -use Phalcon\Mvc\Model\MetaData; - -class Products extends \Phalcon\Mvc\Model -{ - public function getSource() - { - return 'le_products'; - } - - public function metaData() - { - return array( - MetaData::MODELS_ATTRIBUTES => array( - 'id', 'name', 'type', 'price' - ), - MetaData::MODELS_PRIMARY_KEY => array( - 'id' - ), - MetaData::MODELS_NON_PRIMARY_KEY => array( - 'name', 'type', 'price' - ), - MetaData::MODELS_NOT_NULL => array( - 'id', 'name', 'type', 'price' - ), - MetaData::MODELS_DATA_TYPES => array( - 'id' => Column::TYPE_INTEGER, - 'name' => Column::TYPE_VARCHAR, - 'type' => Column::TYPE_VARCHAR, - 'price' => Column::TYPE_INTEGER - ), - MetaData::MODELS_DATA_TYPES_NUMERIC => array( - 'id' => true, - 'price' => true, - ), - MetaData::MODELS_IDENTITY_COLUMN => 'id', - MetaData::MODELS_DATA_TYPES_BIND => array( - 'id' => Column::BIND_PARAM_INT, - 'name' => Column::BIND_PARAM_STR, - 'type' => Column::BIND_PARAM_STR, - 'price' => Column::BIND_PARAM_INT, - ), - MetaData::MODELS_AUTOMATIC_DEFAULT_INSERT => array(), - MetaData::MODELS_AUTOMATIC_DEFAULT_UPDATE => array() - ); - } -} diff --git a/tests/_data/models/Some/Robots.php b/tests/_data/models/Some/Robots.php deleted file mode 100644 index 3b1753f40d2..00000000000 --- a/tests/_data/models/Some/Robots.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Some; - -class Robots extends \Phalcon\Mvc\Model -{ - public function getSource() - { - return 'robots'; - } - - public function initialize() - { - $this->hasMany('id', RobotsParts::class, 'robots_id', array( - 'foreignKey' => true - )); - } - - public function getRobotsParts($arguments = null) - { - return $this->getRelated(RobotsParts::class, $arguments); - } -} diff --git a/tests/_data/models/Some/RobotsParts.php b/tests/_data/models/Some/RobotsParts.php deleted file mode 100644 index 3ff83ee0fbd..00000000000 --- a/tests/_data/models/Some/RobotsParts.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Some; - -class RobotsParts extends \Phalcon\Mvc\Model -{ - public function getSource() - { - return 'robots_parts'; - } - - public function initialize() - { - $this->belongsTo('parts_id', \Phalcon\Test\Models\Parts::class, 'id', array( - 'foreignKey' => true - )); - $this->belongsTo('robots_id', \Phalcon\Test\Models\Robots::class, 'id', array( - 'foreignKey' => array( - 'message' => 'The robot code does not exist' - ) - )); - } -} diff --git a/tests/_data/models/Some/Robotters.php b/tests/_data/models/Some/Robotters.php deleted file mode 100644 index 3c8949e313d..00000000000 --- a/tests/_data/models/Some/Robotters.php +++ /dev/null @@ -1,41 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Some; - -/** - * Robotters - * - * "robotters" is robots in danish - */ -class Robotters extends \Phalcon\Mvc\Model -{ - public function getSource() - { - return 'robots'; - } - - public function columnMap() - { - return array( - 'id' => 'code', - 'name' => 'theName', - 'type' => 'theType', - 'year' => 'theYear', - 'datetime' => 'theDatetime', - 'deleted' => 'theDeleted', - 'text' => 'theText' - ); - } - - public function initialize() - { - $this->hasMany('code', RobottersDeles::class, 'robottersCode', array( - 'foreignKey' => true - )); - } - - public function getRobottersDeles($arguments = null) - { - return $this->getRelated(RobottersDeles::class, $arguments); - } -} diff --git a/tests/_data/models/Some/RobottersDeles.php b/tests/_data/models/Some/RobottersDeles.php deleted file mode 100644 index 78b4c1db779..00000000000 --- a/tests/_data/models/Some/RobottersDeles.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Some; - -/** - * RobottersDeles - * - * This model is an intermediate table for "Robotters" and "Deles" - */ -class RobottersDeles extends \Phalcon\Mvc\Model -{ - public function getSource() - { - return 'robots_parts'; - } - - public function columnMap() - { - return array( - 'id' => 'code', - 'robots_id' => 'robottersCode', - 'parts_id' => 'delesCode', - ); - } - - public function initialize() - { - $this->belongsTo('delesCode', Deles::class, 'code', array( - 'foreignKey' => true - )); - - $this->belongsTo('robottersCode', Robotters::class, 'code', array( - 'foreignKey' => array( - 'message' => 'The robotters code does not exist' - ) - )); - } -} diff --git a/tests/_data/models/Statistics/AgeStats.php b/tests/_data/models/Statistics/AgeStats.php deleted file mode 100644 index a87571464f2..00000000000 --- a/tests/_data/models/Statistics/AgeStats.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Statistics; - -use Phalcon\Mvc\Model; - -/** - * \Phalcon\Test\Models\Statistics\AgeStats - * - * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Eugene Smirnov <ashpumpkin@gmail.com> - * @package Phalcon\Test\Models\Statistics - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class AgeStats extends Model -{ - public function getSource() - { - return 'stats'; - } - - public function getResultsetClass() - { - return 'Phalcon\Test\Resultsets\Stats'; - } -} diff --git a/tests/_data/models/Statistics/CityStats.php b/tests/_data/models/Statistics/CityStats.php deleted file mode 100644 index 30a00f82313..00000000000 --- a/tests/_data/models/Statistics/CityStats.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Statistics; - -use Phalcon\Mvc\Model; - -/** - * \Phalcon\Test\Models\Statistics\CityStats - * - * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Eugene Smirnov <ashpumpkin@gmail.com> - * @package Phalcon\Test\Models\Statistics - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class CityStats extends Model -{ - public function getSource() - { - return 'stats'; - } -} diff --git a/tests/_data/models/Statistics/CountryStats.php b/tests/_data/models/Statistics/CountryStats.php deleted file mode 100644 index 3dfcb4db1bb..00000000000 --- a/tests/_data/models/Statistics/CountryStats.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Statistics; - -use Phalcon\Mvc\Model; - -/** - * \Phalcon\Test\Models\Statistics\CountryStats - * - * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Eugene Smirnov <ashpumpkin@gmail.com> - * @package Phalcon\Test\Models\Statistics - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class CountryStats extends Model -{ - public function getSource() - { - return 'stats'; - } - - public function getResultsetClass() - { - return 'Phalcon\Test\Models\Statistics\AgeStats'; - } -} diff --git a/tests/_data/models/Statistics/GenderStats.php b/tests/_data/models/Statistics/GenderStats.php deleted file mode 100644 index ed6abe8d426..00000000000 --- a/tests/_data/models/Statistics/GenderStats.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Statistics; - -use Phalcon\Mvc\Model; - -/** - * \Phalcon\Test\Models\Statistics\GenderStats - * - * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Eugene Smirnov <ashpumpkin@gmail.com> - * @package Phalcon\Test\Models\Statistics - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class GenderStats extends Model -{ - public function getSource() - { - return 'stats'; - } - - public function getResultsetClass() - { - return 'Not\Existing\Resultset\Class'; - } -} diff --git a/tests/_data/models/Stock.php b/tests/_data/models/Stock.php deleted file mode 100644 index b129b3cbe9b..00000000000 --- a/tests/_data/models/Stock.php +++ /dev/null @@ -1,27 +0,0 @@ -<?php - -namespace Phalcon\Test\Models; - -use Phalcon\Mvc\Model; - -/** - * \Phalcon\Test\Models\Stock - * - * @copyright 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Nikolaos Dimopoulos <nikos@phalconphp.com> - * @author Wojciech Ślawski <nikos@phalconphp.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Stock extends Model -{ - -} diff --git a/tests/_data/models/Users.php b/tests/_data/models/Users.php deleted file mode 100644 index 54b3f8bd2b6..00000000000 --- a/tests/_data/models/Users.php +++ /dev/null @@ -1,27 +0,0 @@ -<?php - -namespace Phalcon\Test\Models; - -use Phalcon\Mvc\Model; - -/** - * \Phalcon\Test\Models\Users - * - * @copyright 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Users extends Model -{ - public $id; - public $name; -} diff --git a/tests/_data/models/Validation/Robots.php b/tests/_data/models/Validation/Robots.php deleted file mode 100644 index 4e9efb037fe..00000000000 --- a/tests/_data/models/Validation/Robots.php +++ /dev/null @@ -1,63 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Validation; - -use Phalcon\Mvc\Model; -use Phalcon\Mvc\Model\Resultset\Simple; -use Phalcon\Test\Models\RobotsParts; -use Phalcon\Validation; -use Phalcon\Validation\Validator\StringLength; - -/** - * \Phalcon\Test\Models\Validation\Robots - * - * @method static int countByType(string $type) - * @method static Simple findByType(string $type) - * @method static Robots findFirstById(string | int $id) - * - * @copyright 2011-2017 Phalcon Team - * @link https://phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Nikolaos Dimopoulos <nikos@phalconphp.com> - * @package Phalcon\Test\Models\Validation - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Robots extends Model -{ - public function initialize() - { - $this->hasMany( - 'id', - RobotsParts::class, - 'robots_id', - [ - 'foreignKey' => true, - 'reusable' => false, - 'alias' => 'parts', - ] - ); - } - - public function validation() - { - $validation = new Validation(); - $validation->add( - 'name', - new StringLength( - [ - 'min' => '7', - 'max' => '50', - 'code' => 20, - ] - ) - ); - - return $this->validate($validation); - } -} diff --git a/tests/_data/models/Validation/Subscriptores.php b/tests/_data/models/Validation/Subscriptores.php deleted file mode 100644 index 907de9d0fa6..00000000000 --- a/tests/_data/models/Validation/Subscriptores.php +++ /dev/null @@ -1,77 +0,0 @@ -<?php - -namespace Phalcon\Test\Models\Validation; - -use Phalcon\Mvc\Model; -use Phalcon\Validation; -use Phalcon\Messages\Message; -use Phalcon\Validation\Validator\Regex; -use Phalcon\Validation\Validator\Email; -use Phalcon\Validation\Validator\Uniqueness; -use Phalcon\Validation\Validator\PresenceOf; -use Phalcon\Validation\Validator\InclusionIn; -use Phalcon\Validation\Validator\ExclusionIn; -use Phalcon\Validation\Validator\StringLength; - -/** - * \Phalcon\Test\Models\Validation\Subscriptores - * - * @property int id - * @property string email - * @property string created_at - * @property string status - * - * @copyright 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Serghei Iakovlev <serghei@phalconphp.com> - * @package Phalcon\Test\Models\Validation - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Subscriptores extends Model -{ - public function beforeValidation() - { - if ($this->email == 'marina@hotmail.com') { - $this->appendMessage(new Message('Sorry Marina, but you are not allowed here')); - - return false; - } - - return true; - } - - public function beforeDelete() - { - if ($this->email == 'fuego@hotmail.com') { - $this->appendMessage(new Message('Sorry this cannot be deleted')); - - return false; - } - - return true; - } - - public function validation() - { - $validator = new Validation(); - $validator - ->add('created_at', new PresenceOf()) - - ->add('email', new StringLength(['min' => '7', 'max' => '50'])) - ->add('email', new Email()) - ->add('email', new Uniqueness()) - - ->add('status', new ExclusionIn(['domain' => ['P', 'I', 'w']])) - ->add('status', new InclusionIn(['domain' => ['A', 'y', 'Z']])) - ->add('status', new Regex(['pattern' => '/[A-Z]/'])); - - return $this->validate($validator); - } -} diff --git a/tests/_data/modules/backend/Module.php b/tests/_data/modules/backend/Module.php deleted file mode 100644 index 039dc4f46b4..00000000000 --- a/tests/_data/modules/backend/Module.php +++ /dev/null @@ -1,41 +0,0 @@ -<?php - -namespace Phalcon\Test\Modules\Backend; - -use Phalcon\Mvc\View; -use Phalcon\DiInterface; -use Phalcon\Mvc\ModuleDefinitionInterface; - -/** - * \Phalcon\Test\Modules\Backend\Module - * Backend Module - * - * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Nikolaos Dimopoulos <nikos@phalconphp.com> - * @package Phalcon\Test\Modules\Backend - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Module implements ModuleDefinitionInterface -{ - public function registerAutoloaders(DiInterface $di = null) - { - } - - public function registerServices(DiInterface $di) - { - $di->set('view', function () { - $view = new View(); - $view->setViewsDir(PATH_DATA . 'modules/backend/views/'); - - return $view; - }); - } -} diff --git a/tests/_data/modules/frontend/Module.php b/tests/_data/modules/frontend/Module.php deleted file mode 100644 index 3d667e9f675..00000000000 --- a/tests/_data/modules/frontend/Module.php +++ /dev/null @@ -1,41 +0,0 @@ -<?php - -namespace Phalcon\Test\Modules\Frontend; - -use Phalcon\Mvc\View; -use Phalcon\DiInterface; -use Phalcon\Mvc\ModuleDefinitionInterface; - -/** - * \Phalcon\Test\Modules\Frontend\Module - * Frontend Module - * - * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez <andres@phalconphp.com> - * @author Nikolaos Dimopoulos <nikos@phalconphp.com> - * @package Phalcon\Test\Modules\Frontend - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Module implements ModuleDefinitionInterface -{ - public function registerAutoloaders(DiInterface $di = null) - { - } - - public function registerServices(DiInterface $di) - { - $di->set('view', function () { - $view = new View(); - $view->setViewsDir(PATH_DATA . 'modules/frontend/views/'); - - return $view; - }); - } -} diff --git a/tests/_data/objectsets/Mvc/View/IteratorObject.php b/tests/_data/objectsets/Mvc/View/IteratorObject.php deleted file mode 100644 index ac52c6e10ec..00000000000 --- a/tests/_data/objectsets/Mvc/View/IteratorObject.php +++ /dev/null @@ -1,65 +0,0 @@ -<?php - -/* - +------------------------------------------------------------------------+ - | Phalcon Framework | - +------------------------------------------------------------------------+ - | Copyright (c) 2011-present Phalcon Team (https://phalconphp.com) | - +------------------------------------------------------------------------+ - | This source file is subject to the New BSD License that is bundled | - | with this package in the file LICENSE.txt. | - | | - | If you did not receive a copy of the license and are unable to | - | obtain it through the world-wide-web, please send an email | - | to license@phalconphp.com so we can send you a copy immediately. | - +------------------------------------------------------------------------+ - */ - -namespace Phalcon\Test\Objectsets\Mvc\View; - -/** - * Phalcon\Test\Objectsets\Mvc\View\IteratorObject - * - * @package Phalcon\Test\Objectsets\Mvc\View - */ -class IteratorObject implements \Iterator, \Countable -{ - private $_data = array(); - - private $_pointer = 0; - - public function __construct($data) - { - $this->_data = $data; - } - - public function count() - { - return count($this->_data); - } - - public function current() - { - return $this->_data[$this->_pointer]; - } - - public function key() - { - return $this->_pointer; - } - - public function next() - { - ++$this->_pointer; - } - - public function rewind() - { - $this->_pointer = 0; - } - - public function valid() - { - return $this->_pointer < count($this->_data); - } -} diff --git a/tests/_data/resultsets/Stats.php b/tests/_data/resultsets/Stats.php deleted file mode 100644 index a16823617ee..00000000000 --- a/tests/_data/resultsets/Stats.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -namespace Phalcon\Test\Resultsets; - -use Phalcon\Mvc\Model\Resultset\Simple; - -/** - * \Phalcon\Test\Resultsets\Stats - * - * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Eugene Smirnov <ashpumpkin@gmail.com> - * @package Phalcon\Test\Resultsets - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Stats extends Simple {} diff --git a/tests/_data/schemas/phalcon-schema-mysql.sql b/tests/_data/schemas/phalcon-schema-mysql.sql deleted file mode 100644 index 0f95b119c4d..00000000000 --- a/tests/_data/schemas/phalcon-schema-mysql.sql +++ /dev/null @@ -1,433 +0,0 @@ -drop table if exists `albums`; -create table `albums` ( - `id` int(10) unsigned not null auto_increment, - `artists_id` int(10) unsigned not null, - `name` varchar(72) collate utf8_unicode_ci not null, - primary key (`id`), - KEY `artists_id` (`artists_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; -INSERT INTO `albums` VALUES (1,1,'Born to Die'),(2,1,'Born to Die - The Paradise Edition'); - -drop table if exists `artists`; -create table `artists` ( - `id` int(10) unsigned not null auto_increment, - `name` varchar(72) collate utf8_unicode_ci not null, - primary key (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; -INSERT INTO `artists` VALUES (1,'Lana del Rey'),(2,'Radiohead'); - --- -drop table if exists `customers`; -create table `customers` ( - `id` int(10) unsigned not null auto_increment, - `document_id` int(3) unsigned not null, - `customer_id` char(15) collate utf8_unicode_ci not null, - `first_name` varchar(100) collate utf8_unicode_ci default null, - `last_name` varchar(100) collate utf8_unicode_ci default null, - `phone` varchar(20) collate utf8_unicode_ci default null, - `email` varchar(70) collate utf8_unicode_ci not null, - `instructions` varchar(100) collate utf8_unicode_ci default null, - `status` enum('A','I','X') collate utf8_unicode_ci not null, - `birth_date` date DEFAULT '1970-01-01', - `credit_line` decimal(16,2) DEFAULT '0.00', - `created_at` datetime not null, - `created_at_user_id` int(10) unsigned DEFAULT '0', - primary key (`id`), - KEY `customers_document_id_idx` (`document_id`), - KEY `customers_customer_id_idx` (`customer_id`), - KEY `customers_credit_line_idx` (`credit_line`), - KEY `customers_status_idx` (`status`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; -INSERT INTO `customers` (`id`, `document_id`, `customer_id`, `email`, `status`, `created_at`) VALUES - ('1', '1', '1', 'foo@bar.baz', 'A', NOW()), - ('2', '1', '3', 'foo@bar.baz', 'A', NOW()), - ('3', '1', '3', 'foo@bar.baz', 'A', NOW()), - ('4', '1', '3', 'foo@bar.baz', 'I', NOW()), - ('5', '3', '2', 'foo@bar.baz', 'X', NOW()), - ('6', '4', '4', 'foo@bar.baz', 'A', NOW()); - -drop table if exists `m2m_parts`; -create table `m2m_parts` ( - `id` int(10) unsigned not null auto_increment, - `name` varchar(70) not null, - primary key (`id`) -); - -drop table if exists `m2m_robots`; -create table `m2m_robots` ( - `id` int(10) unsigned not null auto_increment, - `name` varchar(70) collate utf8_unicode_ci not null, - primary key (`id`) -); - -drop table if exists `m2m_robots_parts`; -create table `m2m_robots_parts` ( - `robots_id` int(10) unsigned not null, - `parts_id` int(10) unsigned not null, - primary key (`robots_id`, `parts_id`) -); - -drop table if exists `parts`; -create table `parts` ( - `id` int(10) unsigned not null auto_increment, - `name` varchar(70) collate utf8_unicode_ci not null, - primary key (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; -INSERT INTO `parts` VALUES (1,'Head'),(2,'Body'),(3,'Arms'),(4,'Legs'),(5,'CPU'); - -drop table if exists `personas`; -create table `personas` ( - `cedula` char(15) collate utf8_unicode_ci not null, - `tipo_documento_id` int(3) unsigned not null, - `nombres` varchar(100) collate utf8_unicode_ci not null DEFAULT '', - `telefono` varchar(20) collate utf8_unicode_ci default null, - `direccion` varchar(100) collate utf8_unicode_ci default null, - `email` varchar(50) collate utf8_unicode_ci default null, - `fecha_nacimiento` date DEFAULT '1970-01-01', - `ciudad_id` int(10) unsigned DEFAULT '0', - `creado_at` date default null, - `cupo` decimal(16,2) not null, - `estado` enum('A','I','X') collate utf8_unicode_ci not null, - primary key (`cedula`), - KEY `estado` (`estado`), - KEY `ciudad_id` (`ciudad_id`), - KEY `estado_2` (`estado`,`nombres`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; -INSERT INTO `personas` VALUES ('1',3,'HUANG ZHENGQUIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-18','6930.00','I'),('100',1,'USME FERNANDEZ JUAN GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-04-15','439480.00','A'),('1003',8,'SINMON PEREZ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-25','468610.00','A'),('1009',8,'ARCINIEGAS Y VILLAMIZAR','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-08-12','967680.00','A'),('101',1,'CRANE DE NARVAEZ JUAN PABLO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-06-09','790540.00','A'),('1011',8,'EL EVENTO','191821112','CRA 25 CALLE 100','596@terra.com.co','2011-02-03',127591,'2011-05-24','820390.00','A'),('1020',7,'OSPINA YOLANDA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-02','222970.00','A'),('1025',7,'CHEMIPLAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-08','918670.00','A'),('1034',1,'TAXI FILMS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-09-01','962580.00','A'),('104',1,'CASTELLANOS JIMENEZ NOE','191821112','CRA 25 CALLE 100','127@yahoo.es','2011-02-03',127591,'2011-10-05','95230.00','A'),('1046',3,'JACQUET PIERRE MICHEL ALAIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',263489,'2011-07-23','90810.00','A'),('1048',5,'SPOERER VELEZ CARLOS JORGE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-02-03','184920.00','A'),('1049',3,'SIDNEI DA SILVA LUIZ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117630,'2011-07-02','850180.00','A'),('105',1,'HERRERA SEQUERA ALVARO FRANCISCO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-26','77390.00','A'),('1050',3,'CAVALCANTI YUE CARLA HANLI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-31','696130.00','A'),('1052',1,'BARRETO RIVAS ELKIN MARTIN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',131508,'2011-09-19','562160.00','A'),('1053',3,'WANDERLEY ANTONIO ERNESTO THOME','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150617,'2011-01-31','20490.00','A'),('1054',3,'HE SHAN','191821112','CRA 25 CALLE 100','715@yahoo.es','2011-02-03',132958,'2010-10-05','415970.00','A'),('1055',3,'ZHRNG XIM','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-05','18380.00','A'),('1057',3,'NICKEL GEB. STUTZ KARIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-10-08','164850.00','A'),('1058',1,'VELEZ PAREJA IGNACIO ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132775,'2011-06-24','292250.00','A'),('1059',3,'GURKE RALF ERNST','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',287570,'2011-06-15','966700.00','A'),('106',1,'ESTRADA LONDOÑO JUAN SIMON','191821112','CRA 25 CALLE 100','8@terra.com.co','2011-02-03',128579,'2011-03-09','101260.00','A'),('1060',1,'MEDRANO BARRIOS WILSON','191821112','CRA 25 CALLE 100','479@facebook.com','2011-02-03',132775,'2011-06-18','956740.00','A'),('1061',1,'GERDTS PORTO HANS EDUARDO','191821112','CRA 25 CALLE 100','140@gmail.com','2011-02-03',127591,'2011-05-09','883590.00','A'),('1062',1,'BORGE VISBAL JORGE FIDEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132775,'2011-07-14','547750.00','A'),('1063',3,'GUTIERREZ JOSELYN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-06','87960.00','A'),('1064',4,'OVIEDO PINZON MARYI YULEY','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127538,'2011-04-21','796560.00','A'),('1065',1,'VILORA SILVA OMAR ESTEBAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',133535,'2010-06-09','718910.00','A'),('1066',3,'AGUIAR ROMAN RODRIGO HUMBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',126674,'2011-06-28','204890.00','A'),('1067',1,'GOMEZ AGAMEZ ADOLFO DEL CRISTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',131105,'2011-06-15','867730.00','A'),('1068',3,'GARRIDO CECILIA','191821112','CRA 25 CALLE 100','973@yahoo.com.mx','2011-02-03',118777,'2010-08-16','723980.00','A'),('1069',1,'JIMENEZ MANJARRES DAVID RAFAEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132775,'2010-12-17','16680.00','A'),('107',1,'ARANGUREN TEJADA JORGE ENRIQUE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-16','274110.00','A'),('1070',3,'OYARZUN TEJEDA ANDRES FERNANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-26','911490.00','A'),('1071',3,'MARIN BUCK RAFAEL ENRIQUE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',126180,'2011-05-04','507400.00','A'),('1072',3,'VARGAS JOSE ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',126674,'2011-07-28','802540.00','A'),('1073',3,'JUEZ JAIRALA JOSE ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',126180,'2010-04-09','490510.00','A'),('1074',1,'APONTE PENSO HERNAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132879,'2011-05-27','44900.00','A'),('1075',1,'PIÑERES BUSTILLO ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',126916,'2008-10-29','752980.00','A'),('1076',1,'OTERA OMA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-04-29','630210.00','A'),('1077',3,'CONTRERAS CHINCHILLA JUAN DOMINGO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',139844,'2011-06-21','892110.00','A'),('1078',1,'GAMBA LAURENCIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-09-15','569940.00','A'),('108',1,'MUÑOZ ARANGO JUAN CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-01','66770.00','A'),('1080',1,'PRADA ABAUZA CARLOS AUGUSTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-11-15','156870.00','A'),('1081',1,'PAOLA CAROLINA PINTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-27','264350.00','A'),('1082',1,'PALOMINO HERNANDEZ GERMAN JAVIER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',133535,'2011-03-22','851120.00','A'),('1084',1,'URIBE DANIEL ALBERTO','191821112','CRA 25 CALLE 100','602@hotmail.es','2011-02-03',127591,'2011-09-07','759470.00','A'),('1085',1,'ARGUELLO CALDERON ARMANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-24','409660.00','A'),('1087',1,'CARVAJAL HERNANDEZ CHRISTIAN ARMANDO','191821112','CRA 25 CALLE 100','296@yahoo.es','2011-02-03',159432,'2011-06-03','620410.00','A'),('1088',1,'CASTRO BLANCO MANUEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',150512,'2009-10-08','792400.00','A'),('1089',1,'RIBEROS GUTIERREZ GUSTAVO ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-01-27','100800.00','A'),('109',1,'BELTRAN MARIA LUZ DARY','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-06','511510.00','A'),('1091',4,'ORTIZ ORTIZ BENIGNO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127538,'2011-08-05','331540.00','A'),('1092',3,'JOHN CHRISTOPHER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-04-08','277320.00','A'),('1093',1,'PARRA VILLAREAL MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',129499,'2011-08-23','391980.00','A'),('1094',1,'BESGA RODRIGUEZ JUAN JAVIER','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127300,'2011-09-23','127960.00','A'),('1095',1,'ZAPATA MEZA EDGAR FERNANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',129499,'2011-05-19','463840.00','A'),('1096',3,'CORNEJO BRAVO MARCO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2010-11-08','935340.00','A'),('1099',1,'GARCIA PORRAS FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-14','243360.00','A'),('11',1,'HERNANDEZ PARDO ARMANDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-31','197540.00','A'),('110',1,'VANEGAS JULIAN ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-09-06','357260.00','A'),('1101',1,'QUINTERO BURBANO GABRIEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',129499,'2011-08-20','57420.00','A'),('1102',1,'BOHORQUEZ AFANADOR CHRISTIAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-19','214610.00','A'),('1103',1,'MORA VARGAS JULIO ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-29','900790.00','A'),('1104',1,'PINEDA JORGE ARMANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-21','860110.00','A'),('1105',1,'TORO CEBALLOS GONZALO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',129499,'2011-08-18','598180.00','A'),('1106',1,'SCHENIDER TORRES JAIME','191821112','CRA 25 CALLE 100','85@yahoo.com.mx','2011-02-03',127799,'2011-08-11','410590.00','A'),('1107',1,'RUEDA VILLAMIZAR JAIME','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-11-15','258410.00','A'),('1108',1,'RUEDA VILLAMIZAR RICARDO JAIME','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',129499,'2011-03-22','60260.00','A'),('1109',1,'GOMEZ RODRIGUEZ HERNANDO ARTURO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-06-02','526080.00','A'),('111',1,'FRANCISCO EDUARDO JAIME BOTERO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-09-09','251770.00','A'),('1110',1,'HERNÁNDEZ MÉNDEZ EDGAR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',129499,'2011-03-22','449610.00','A'),('1113',1,'LEON HERNANDEZ OSCAR','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',129499,'2011-03-21','992090.00','A'),('1114',1,'LIZARAZO CARREÑO HUGO ARCENIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',133535,'2010-12-10','959490.00','A'),('1115',1,'LIAN BARRERA GABRIEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-05-30','821170.00','A'),('1117',3,'TELLEZ BEZAN FRANCISCO JAVIER ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',117002,'2011-08-21','673430.00','A'),('1118',1,'FUENTES ARIZA DIEGO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-09','684970.00','A'),('1119',1,'MOLINA M. ROBINSON','191821112','CRA 25 CALLE 100','728@hotmail.com','2011-02-03',129447,'2010-09-19','404580.00','A'),('112',1,'PTIÑO PINTO ARIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-10-06','187050.00','A'),('1120',1,'ORTIZ DURAN BENIGNO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127538,'2011-08-05','967970.00','A'),('1121',1,'CARVAJAL ALMEIDA LUIS RAUL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',129499,'2011-06-22','626140.00','A'),('1122',1,'TORRES QUIROGA EDWIN SILVESTRE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',129447,'2011-08-17','226780.00','A'),('1123',1,'VIVIESCAS JAIMES ALVARO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-10','255480.00','A'),('1124',1,'MARTINEZ RUEDA JAVIER EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',129447,'2011-06-23','597040.00','A'),('1125',1,'ANAYA FLORES JORGE ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',129499,'2011-06-04','218790.00','A'),('1126',3,'TORRES MARTINEZ ANTONIO JESUS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',188640,'2010-09-02','302820.00','A'),('1127',3,'CACHO LEVISIER JOSE MANUEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',153276,'2009-06-25','857720.00','A'),('1129',3,'ULLOA VALDIVIESO CRISTIAN ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-06-02','327570.00','A'),('113',1,'HIGUERA CALA JAIME ENRIQUE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-27','179950.00','A'),('1130',1,'ARCINIEGAS WILLIAM','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',126892,'2011-08-05','497420.00','A'),('1131',1,'BAZA ACUÑA JAVIER','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',129447,'2010-12-10','504410.00','A'),('1132',3,'BUIRA ROS CARLOS MARIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-04-27','29750.00','A'),('1133',1,'RODRIGUEZ JAIME','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',129447,'2011-06-10','635560.00','A'),('1134',1,'QUIROGA PEREZ NELSON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',129447,'2011-05-18','88520.00','A'),('1135',1,'TATIANA AYALA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127122,'2011-07-01','535920.00','A'),('1136',1,'OSORIO BENEDETTI FABIAN AUGUSTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132775,'2010-10-23','414060.00','A'),('1139',1,'CELIS PINTO ARMANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2009-02-25','964970.00','A'),('114',1,'VALDERRAMA CUERVO JOSE IGNACIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-02','338590.00','A'),('1140',1,'ORTIZ ARENAS JUAN MANUEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',129499,'2009-10-21','613300.00','A'),('1141',1,'VALDIVIESO ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',134022,'2009-01-13','171590.00','A'),('1144',1,'LOPEZ CASTILLO NELSON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',129499,'2010-09-09','823110.00','A'),('1145',1,'CAVELIER LUIS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',126916,'2008-11-29','389220.00','A'),('1146',1,'CAVELIER OTOYA LUIS EDURDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',126916,'2010-05-25','476770.00','A'),('1147',1,'GARCIA RUEDA JUAN CARLOS','191821112','CRA 25 CALLE 100','111@yahoo.es','2011-02-03',133535,'2010-09-12','216190.00','A'),('1148',1,'LADINO GOMEZ OMAR ORLANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-02','650640.00','A'),('1149',1,'CARREÑO ORTIZ OSCAR JAVIER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-15','604630.00','A'),('115',1,'NARDEI BONILLO BRUNO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-16','153110.00','A'),('1150',1,'MONTOYA BOZZI MAURICIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',129499,'2011-05-12','71240.00','A'),('1152',1,'LORA RICHARD JAVIER','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-09-15','497700.00','A'),('1153',1,'SILVA PINZON MARCO ANTONIO','191821112','CRA 25 CALLE 100','915@hotmail.es','2011-02-03',127591,'2011-06-15','861670.00','A'),('1154',3,'GEORGE J A KHALILIEH','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-20','815260.00','A'),('1155',3,'CHACON MARIN CARLOS MANUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-07-26','491280.00','A'),('1156',3,'OCHOA CHEHAB XAVIER ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',126180,'2011-06-13','10630.00','A'),('1157',3,'ARAYA GARRI GABRIEL ALEXIS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-09-19','579320.00','A'),('1158',3,'MACCHI ARIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',116366,'2010-04-12','864690.00','A'),('116',1,'GONZALEZ FANDIÑO JAIME EDUARDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-10','749800.00','A'),('1160',1,'CAVALIER LUIS EDUARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',126916,'2009-08-27','333390.00','A'),('1161',3,'DOMINGUEZ DE OBREGON ILEANA DEL CARMEN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',139844,'2011-03-06','910490.00','A'),('1162',2,'FALASCA CLAUDIO ARIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',116511,'2011-07-10','552280.00','A'),('1163',3,'MUTABARUKA PATRICK','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',131352,'2011-03-22','29940.00','A'),('1164',1,'DOMINGUEZ ATENCIA JIMMY CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-07-22','492860.00','A'),('1165',4,'LLANO GONZALEZ ALBERTO MARIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127300,'2010-08-21','374490.00','A'),('1166',3,'LOPEZ ROLDAN JOSE MANUEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-07-31','393860.00','A'),('1167',1,'GUTIERREZ DE PIÑERES JALILIE ARISTIDES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2010-12-09','845810.00','A'),('1168',1,'HEYMANS PIERRE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2010-11-08','47470.00','A'),('1169',1,'BOTERO OSORIO RUBEN DARIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2009-05-27','699940.00','A'),('1170',3,'GARNHAM POBLETE ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',116396,'2011-03-27','357270.00','A'),('1172',1,'DAJUD DURAN JOSE RODRIGO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',133535,'2009-12-02','360910.00','A'),('1173',1,'MARTINEZ MERCADO PEDRO PABLO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-07-25','744930.00','A'),('1174',1,'GARCIA AMADOR ANDRES EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',133535,'2011-05-19','641930.00','A'),('1176',1,'VARGAS VARELA LUIS GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',131568,'2011-08-30','948410.00','A'),('1178',1,'GUTIERRES DE PIÑERES ARISTIDES','191821112','CRA 25 CALLE 100','217@hotmail.com','2011-02-03',133535,'2011-05-10','242490.00','A'),('1179',3,'LEIZAOLA POZO JIMENA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',132958,'2011-08-01','759800.00','A'),('118',1,'FERNANDEZ VELOSO PEDRO HERNANDO','191821112','CRA 25 CALLE 100','452@hotmail.es','2011-02-03',128662,'2010-08-06','198830.00','A'),('1180',3,'MARINO PAOLO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-12-24','71520.00','A'),('1181',1,'MOLINA VIZCAINO GUSTAVO JORGE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-04-28','78220.00','A'),('1182',3,'MEDEL GARCIA FABIAN RODRIGO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-04-25','176540.00','A'),('1183',1,'LESMES ARIAS RUBEN DARIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2010-09-09','648020.00','A'),('1184',1,'ALCALA MARTINEZ ALFREDO ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',132775,'2010-07-23','710470.00','A'),('1186',1,'LLAMAS FOLIACO LUIS ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-07','910210.00','A'),('1187',1,'GUARDO DEL RIO LIBARDO FARID','191821112','CRA 25 CALLE 100','73@yahoo.com.mx','2011-02-03',128662,'2011-09-01','726050.00','A'),('1188',3,'JEFFREY ARTHUR DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',115724,'2011-03-21','899630.00','A'),('1189',1,'DAHL VELEZ JULIANA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',126916,'2011-05-23','320020.00','A'),('119',3,'WALESKA DE LIMA ALMEIDA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118942,'2011-05-09','125240.00','A'),('1190',3,'LUIS JOSE MANUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2008-04-04','901210.00','A'),('1192',1,'AZUERO VALENTINA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-14','26310.00','A'),('1193',1,'MARQUEZ GALINDO MAURICIO JAVIER','191821112','CRA 25 CALLE 100','729@yahoo.es','2011-02-03',131105,'2011-05-13','493560.00','A'),('1195',1,'NIETO FRANCO JUAN FELIPE','191821112','CRA 25 CALLE 100','707@yahoo.com','2011-02-03',127591,'2011-07-30','463790.00','A'),('1196',3,'ESTEVES JOAQUIM LUIS FERNANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-04-05','152270.00','A'),('1197',4,'BARRERO KAREN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-12','369990.00','A'),('1198',1,'CORRALES GUZMAN DELIO ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127689,'2011-08-03','393120.00','A'),('1199',1,'CUELLAR TOCO EDGAR','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127531,'2011-09-20','855640.00','A'),('12',1,'MARIN PRIETO FREDY NELSON ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-23','641210.00','A'),('120',1,'LOPEZ JARAMILLO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2009-04-17','29680.00','A'),('1200',3,'SCHULTER ACHIM','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',291002,'2010-05-21','98860.00','A'),('1201',3,'HOWELL LAURENCE ADRIAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',286785,'2011-05-22','927350.00','A'),('1202',3,'ALCAZAR ESCARATE JAIME PATRICIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117002,'2011-08-25','340160.00','A'),('1203',3,'HIDALGO FUENZALIDA GABRIEL RAUL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-05-03','918780.00','A'),('1206',1,'VANEGAS HENAO ORLANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-27','832910.00','A'),('1207',1,'PEÑARANDA ARIAS RICARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-19','832710.00','A'),('1209',1,'LEZAMA CERVERA JUAN CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132775,'2011-09-14','825980.00','A'),('121',1,'PULIDO JIMENEZ OSCAR HUMBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-29','772700.00','A'),('1211',1,'TRUJILLO BOCANEGRA HAROL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127538,'2011-05-27','199260.00','A'),('1212',1,'ALVAREZ TORRES MARIO RICARDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-08-15','589960.00','A'),('1213',1,'CORRALES VARON BELMER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-26','352030.00','A'),('1214',3,'CUEVAS RODRIGUEZ MANUELA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-30','990250.00','A'),('1216',1,'LOPEZ EDICSON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-31','505210.00','A'),('1217',3,'GARCIA PALOMARES JUAN JAVIER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-07-31','840440.00','A'),('1218',1,'ARCINIEGAS NARANJO RICARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127492,'2010-12-17','686610.00','A'),('122',1,'GONZALEZ RIANO LEONARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128031,'2011-08-05','774450.00','A'),('1220',1,'GARCIA GUTIERREZ WILLIAM','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-06-20','498680.00','A'),('1221',3,'GOMEZ DE ALONSO ANGELA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-27','758300.00','A'),('1222',1,'MEDINA QUIROGA JAMES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127538,'2011-01-16','295480.00','A'),('1224',1,'ARCILA CORREA JUAN CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-03-20','125900.00','A'),('1225',1,'QUIJANO REYES CARLOS ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127538,'2010-04-08','22100.00','A'),('1226',1,'VARGAS GALLEGO JAIRO ALONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2009-07-30','732820.00','A'),('1228',3,'NAPANGA MIRENGHI MARTIN','191821112','CRA 25 CALLE 100','153@yahoo.es','2011-02-03',132958,'2011-02-08','790400.00','A'),('123',1,'LAMUS CASTELLANOS ANDRES RICARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-11','554160.00','A'),('1230',1,'RIVEROS PIÑEROS JOSE ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127492,'2011-09-25','422220.00','A'),('1231',3,'ESSER JUAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127327,'2011-04-01','635060.00','A'),('1232',3,'DOMINGUEZ MORA MAURICIO ALFREDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-22','908630.00','A'),('1233',3,'MOLINA FERNANDEZ FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-05-28','637990.00','A'),('1234',3,'BELLO DANIEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',196234,'2010-09-04','464040.00','A'),('1235',3,'BENADAVA GUEVARA DAVID ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-05-18','406240.00','A'),('1236',3,'RODRIGUEZ MATOS ROBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-03-22','639070.00','A'),('1237',3,'TAPIA ALARCON PATRICIO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2010-07-06','976620.00','A'),('1239',3,'VERCHERE ALFONSO CHRISTIAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',117002,'2010-08-23','899600.00','A'),('1241',1,'ESPINEL LUIS FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128206,'2009-03-09','302860.00','A'),('1242',3,'VERGARA FERREIRA PATRICIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-10-03','713310.00','A'),('1243',3,'ZUMARRAGA SIRVENT CRSTINA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-08-24','657950.00','A'),('1244',4,'ESCORCIA VASQUEZ TOMAS','191821112','CRA 25 CALLE 100','354@yahoo.com.mx','2011-02-03',128662,'2011-04-01','149830.00','A'),('1245',4,'PARAMO CUENCA KELLY LORENA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127492,'2011-05-04','775300.00','A'),('1246',4,'PEREZ LOPEZ VERONICA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2011-07-11','426990.00','A'),('1247',4,'CHAPARRO RODRIGUEZ DANIELA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-10-08','809070.00','A'),('1249',4,'DIAZ MARTINEZ MARIA CAROLINA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',133535,'2011-05-30','394740.00','A'),('125',1,'CALDON RODRIGUEZ JAIME ARIEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',126968,'2011-07-29','574780.00','A'),('1250',4,'PINEDA VASQUEZ JUAN PABLO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2010-09-03','680540.00','A'),('1251',5,'MATIZ URIBE ANGELA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-12-25','218470.00','A'),('1253',1,'ZAMUDIO RICAURTE JAIRO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',126892,'2011-08-05','598160.00','A'),('1254',1,'ALJURE FRANCISCO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-07-21','838660.00','A'),('1255',3,'ARMESTO AIRA ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',196234,'2011-01-29','398840.00','A'),('1257',1,'POTES GUEVARA JAIRO MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127858,'2011-03-17','194580.00','A'),('1258',1,'BURBANO QUIROGA RAFAEL','191821112','CRA 25 CALLE 100','767@facebook.com','2011-02-03',127591,'2011-04-07','538220.00','A'),('1259',1,'CARDONA GOMEZ JAVIR','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2011-03-16','107380.00','A'),('126',1,'PULIDO PARDO GUIDO IVAN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-10-05','531550.00','A'),('1260',1,'LOPERA LEDESMA PABLO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2011-09-19','922240.00','A'),('1263',1,'TRIBIN BARRIGA JUAN MANUEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2011-09-02','525330.00','A'),('1264',1,'NAVIA LOPEZ ANDRÉS FELIPE ','191821112','CRA 25 CALLE 100','353@hotmail.es','2011-02-03',127300,'2011-07-15','591190.00','A'),('1265',1,'CARDONA GOMEZ FABIAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2010-11-18','379940.00','A'),('1266',1,'ESCARRIA VILLEGAS ANDRES JULIAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-08-19','126160.00','A'),('1268',1,'CASTRO HERNANDEZ ALVARO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127300,'2011-03-25','76260.00','A'),('127',1,'RODRIGUEZ RODRIGUEZ GIOVANI FRANCISCO','191821112','CRA 25 CALLE 100','662@hotmail.es','2011-02-03',127591,'2011-09-29','933390.00','A'),('1270',1,'LEAL HERNANDEZ MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-24','313610.00','A'),('1272',1,'ORTIZ CARDONA WILLIAM ENRIQUE','191821112','CRA 25 CALLE 100','914@hotmail.com','2011-02-03',128662,'2011-09-13','272150.00','A'),('1273',1,'ROMERO VAN GOMPEL HERNAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-09-07','832960.00','A'),('1274',1,'BERMUDEZ LONDOÑO JHON FREDY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127300,'2011-08-29','348380.00','A'),('1275',1,'URREA ALVAREZ NICOLAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-01','242980.00','A'),('1276',1,'VALENCIA LLANOS RODRIGO AUGUSTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-04-11','169790.00','A'),('1277',1,'PAZ VALENCIA GUILLERMO ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127300,'2011-08-05','120020.00','A'),('1278',1,'MONROY CORREDOR GERARDO ALONSO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127300,'2011-06-25','90700.00','A'),('1279',1,'RIOS MEDINA JAVIER ERMINSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2011-09-12','93440.00','A'),('128',1,'GALLEGO GUZMAN MARIO ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-06-25','72290.00','A'),('1280',1,'GARCIA OSCAR EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127662,'2011-09-30','195090.00','A'),('1282',1,'MURILLO PESELLIN GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2011-06-15','890530.00','A'),('1284',1,'DIAZ ALVAREZ JOHNY','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2011-06-25','164130.00','A'),('1285',1,'GARCES BELTRAN RAUL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2011-08-11','719220.00','A'),('1286',1,'MATERON POVEDA LUIS ALEJANDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-25','103710.00','A'),('1287',1,'VALENCIA ALEXANDER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-10-23','360880.00','A'),('1288',1,'PEÑA AGUDELO JOSE RAMON','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',134022,'2011-05-25','493280.00','A'),('1289',1,'CORREA NUÑEZ JORGE ALEXANDER','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-08-18','383750.00','A'),('129',1,'ALVAREZ RODRIGUEZ IVAN RICARDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2008-01-28','561290.00','A'),('1291',1,'BEJARANO ROSERO FREDDY ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-10-09','43400.00','A'),('1292',1,'CASTILLO BARRIOS GUSTAVO ADOLFO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127300,'2011-06-17','900180.00','A'),('1296',1,'GALVEZ GUTIERREZ JUAN PABLO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127300,'2010-03-28','807090.00','A'),('1297',3,'CRUZ GARCIA MILTON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',139844,'2011-03-21','75630.00','A'),('1298',1,'VILLEGAS GUTIERREZ JOSE RICARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-11','956860.00','A'),('13',1,'VACA MURCIA JESUS ALFREDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-04','613430.00','A'),('1301',3,'BOTTI ALFONSO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',231989,'2011-04-04','910640.00','A'),('1302',3,'COTINO HUESO LORENZO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-02-02','803450.00','A'),('1304',3,'NESPOLI MANTOVANI LUIZ CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-04-18','16230.00','A'),('1307',4,'AVILA GIL PAULA ANDREA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-19','711110.00','A'),('1308',4,'VALLEJO PINEDA ALEJANDRA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-08-12','323490.00','A'),('1312',1,'ROMERO OSCAR EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-04-17','642460.00','A'),('1314',3,'LULLIES CONSTANZE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',245206,'2010-06-03','154970.00','A'),('1315',1,'CHAPARRO GUTIERREZ JORGE ADRIANO','191821112','CRA 25 CALLE 100','284@hotmail.es','2011-02-03',127591,'2010-12-02','325440.00','A'),('1316',1,'BARRANTES DISI RICARDO JOSE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132879,'2011-07-18','162270.00','A'),('1317',3,'VERDES GAGO JOSE ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2010-03-10','835060.00','A'),('1319',3,'MARTIN MARTINEZ GUSTAVO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2010-05-26','937220.00','A'),('1320',3,'MOTTURA MASSIMO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2008-11-10','620640.00','A'),('1321',3,'RUSSELL TIMOTHY JAMES','191821112','CRA 25 CALLE 100','502@hotmail.es','2011-02-03',145135,'2010-04-16','291560.00','A'),('1322',3,'JAIN TARSEM','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',190393,'2011-05-31','595890.00','A'),('1323',3,'ORTEGA CEVALLOS JULIETA ELIZABETH','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-30','104760.00','A'),('1324',3,'MULLER PICHAIDA ANDRES FELIPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-05-17','736130.00','A'),('1325',3,'ALVEAR TELLEZ JULIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-01-23','366390.00','A'),('1327',3,'MOYA LATORRE MARCELA CAROLINA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-05-17','18520.00','A'),('1328',3,'LAMA ZAROR RODRIGO IGNACIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2010-10-27','221990.00','A'),('1329',3,'HERNANDEZ CIFUENTES MAURICE JEANETTE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',139844,'2011-06-22','54410.00','A'),('133',1,'CORDOBA HOYOS JUAN PABLO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-20','966820.00','A'),('1330',2,'HOCHKOFLER NOEMI CONSUELO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-27','606070.00','A'),('1331',4,'RAMIREZ BARRERO DANIELA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',154563,'2011-04-18','867120.00','A'),('1332',4,'DE LEON DURANGO RICARDO JOSE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',131105,'2011-09-08','517400.00','A'),('1333',4,'RODRIGUEZ MACIAS IVAN MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',129447,'2011-05-23','985620.00','A'),('1334',4,'GUTIERREZ DE PIÑERES YANET MARIA ALEJANDRA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',133535,'2011-06-16','375890.00','A'),('1335',4,'GUTIERREZ DE PIÑERES YANET MARIA GABRIELA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-06-16','922600.00','A'),('1336',4,'CABRALES BECHARA JOSE MARIA','191821112','CRA 25 CALLE 100','708@hotmail.com','2011-02-03',131105,'2011-05-13','485330.00','A'),('1337',4,'MEJIA TOBON LUIS DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127662,'2011-08-05','658860.00','A'),('1338',3,'OROS NERCELLES CRISTIAN ANDRE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',144215,'2011-04-26','838310.00','A'),('1339',3,'MORENO BRAVO CAROLINA ANDREA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',190393,'2010-12-08','214950.00','A'),('134',1,'GONZALEZ LOPEZ DANIEL ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-08','178580.00','A'),('1340',3,'FERNANDEZ GARRIDO MARCELO FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-07-08','559820.00','A'),('1342',3,'SUMEGI IMRE ZOLTAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-16','91750.00','A'),('1343',3,'CALDERON FLANDEZ SERGIO','191821112','CRA 25 CALLE 100','108@hotmail.com','2011-02-03',117002,'2010-12-12','996030.00','A'),('1345',3,'CARBONELL ATCHUGARRY GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',116366,'2010-04-12','536390.00','A'),('1346',3,'MONTEALEGRE AGUILAR FEDERICO ','191821112','CRA 25 CALLE 100','448@yahoo.es','2011-02-03',132165,'2011-08-08','567260.00','A'),('1347',1,'HERNANDEZ MANCHEGO CARLOS JULIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-04-28','227130.00','A'),('1348',1,'ARENAS ZARATE FERNEY ARNULFO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127963,'2011-03-26','433860.00','A'),('1349',3,'DELFIM DINIZ PASSOS PINHEIRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',110784,'2010-04-17','487930.00','A'),('135',1,'GARCIA SIMBAQUEBA RUBEN DARIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-25','992420.00','A'),('1350',3,'BRAUN VALENZUELA FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-29','138050.00','A'),('1351',3,'LEVIN FIORELLI ANDRES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',116366,'2011-04-10','226470.00','A'),('1353',3,'BALTODANO ESQUIVEL LAURA CRISTINA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132165,'2011-08-01','911660.00','A'),('1354',4,'ESCOBAR YEPES ANDREA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-05-19','403630.00','A'),('1356',1,'GAGELI OSORIO ALEJANDRO','191821112','CRA 25 CALLE 100','228@yahoo.com.mx','2011-02-03',128662,'2011-07-14','205070.00','A'),('1357',3,'CABAL ALVAREZ RUBEN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-08-14','175770.00','A'),('1359',4,'HUERFANO JUAN DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-04','790970.00','A'),('136',1,'OSORIO RAMIREZ LEONARDO','191821112','CRA 25 CALLE 100','686@yahoo.es','2011-02-03',128662,'2010-05-14','426380.00','A'),('1360',4,'RAMON GARCIA MARIA PAULA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-01','163890.00','A'),('1362',30,'ALVAREZ CLAVIO CARLA ALEJANDRA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127203,'2011-04-18','741020.00','A'),('1363',3,'SERRA DURAN GERARDO ENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-08-03','365490.00','A'),('1364',3,'NORIEGA VALVERDE SILVIA MARCELA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132775,'2011-02-27','604370.00','A'),('1366',1,'JARAMILLO LOPEZ ALEJANDRO','191821112','CRA 25 CALLE 100','269@terra.com.co','2011-02-03',127559,'2010-11-08','813800.00','A'),('1367',1,'MAZO ROLDAN CARLOS ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-05-04','292880.00','A'),('1368',1,'MURIEL ARCILA MAURICIO HERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-29','22970.00','A'),('1369',1,'RAMIREZ CARLOS FERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-14','236230.00','A'),('137',1,'LUNA PEREZ JUAN PABLO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',126881,'2011-08-05','154640.00','A'),('1370',1,'GARCIA GRAJALES PEDRO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128166,'2011-10-09','112230.00','A'),('1372',3,'GARCIA ESCOBAR ANA MARIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2011-03-29','925670.00','A'),('1373',3,'ALVES DIAS CARLOS AUGUSTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-07','70940.00','A'),('1374',3,'MATTOS CHRISTIANE GARCIA CID','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',183024,'2010-08-25','577700.00','A'),('1376',1,'CARVAJAL ROJAS ORLANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-10','645240.00','A'),('1377',3,'MADARIAGA CADIZ CLAUDIO CRISTIAN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2011-10-04','199200.00','A'),('1379',3,'MARIN YANEZ ALICIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-02-20','703870.00','A'),('138',1,'DIAZ AVENDAÑO MARCELO IVAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-22','494080.00','A'),('1381',3,'COSTA VILLEGAS LUIS ALEJANDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117002,'2011-08-21','580670.00','A'),('1382',3,'DAZA PEREZ JOSE LUIS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',122035,'2009-02-23','888000.00','A'),('1385',4,'RIVEROS ARIAS MARIA ALEJANDRA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127492,'2011-09-26','35710.00','A'),('1386',30,'TORO GIRALDO MATEO','191821112','CRA 25 CALLE 100','433@yahoo.com.mx','2011-02-03',127591,'2011-07-17','700730.00','A'),('1387',4,'ROJAS YARA LAURA DANIELA MARIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-31','396530.00','A'),('1388',3,'GALLEGO RODRIGO MARIA PILAR','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2009-04-19','880450.00','A'),('1389',1,'PANTOJA VELASQUEZ JOSE ARMANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127300,'2011-08-05','212660.00','A'),('139',1,'FRANCO GOMEZ HERNÁN EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-01-19','6450.00','A'),('1390',3,'VAN DEN BORNE KEES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2010-01-28','421930.00','A'),('1391',3,'MONDRAGON FLORES JUAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-08-22','471700.00','A'),('1392',3,'BAGELLA MICHELE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-07-27','92720.00','A'),('1393',3,'BISTIANCIC MACHADO ANA INES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',116366,'2010-08-02','48490.00','A'),('1394',3,'BAÑADOS ORTIZ MARIA PILAR','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-08-25','964280.00','A'),('1395',1,'CHINDOY CHINDOY HERNANDO','191821112','CRA 25 CALLE 100','107@terra.com.co','2011-02-03',126892,'2011-08-25','675920.00','A'),('1396',3,'SOTO NUÑEZ ANDRES ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-10-02','486760.00','A'),('1397',1,'DELGADO MARTINEZ LORGE ELIAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-23','406040.00','A'),('1398',1,'LEON GUEVARA JAVIER ANIBAL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',126892,'2011-09-08','569930.00','A'),('1399',1,'ZARAMA BASTIDAS LUIS GABRIEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',126892,'2011-08-05','631540.00','A'),('14',1,'MAGUIN HENNSSEY LUIS FERNANDO','191821112','CRA 25 CALLE 100','714@gmail.com','2011-02-03',127591,'2011-07-11','143540.00','A'),('140',1,'CARRANZA CUY ALEXANDER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-25','550010.00','A'),('1401',3,'REYNA CASTORENA JOSE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',189815,'2011-08-29','344970.00','A'),('1402',1,'GFALLO BOTERO SERGIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-07-14','381100.00','A'),('1403',1,'ARANGO ARAQUE JUAN CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-05-04','870590.00','A'),('1404',3,'LASSNER NORBERTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118942,'2010-02-28','209650.00','A'),('1405',1,'DURANGO MARIN HECTOR LEON','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'1970-02-02','436480.00','A'),('1407',1,'FRANCO CASTAÑO DIEGO MAURICIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-06-28','457770.00','A'),('1408',1,'HERNANDEZ SERGIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-05-29','628550.00','A'),('1409',1,'CASTAÑO DUQUE CARLOS HUGO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-03-23','769410.00','A'),('141',1,'CHAMORRO CHEDRAUI SERGIO ALBERTO','191821112','CRA 25 CALLE 100','922@yahoo.com.mx','2011-02-03',127591,'2011-05-07','730720.00','A'),('1411',1,'RAMIREZ MONTOYA ADAMO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-04-13','498880.00','A'),('1412',1,'GONZALEZ BENJUMEA OSCAR HUMBERTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-11-01','610150.00','A'),('1413',1,'ARANGO ACEVEDO WALTER ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-10-07','554090.00','A'),('1414',1,'ARANGO GALLO HUMBERTO LEON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-02-25','940010.00','A'),('1415',1,'VELASQUEZ LUIS GONZALO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-07-06','37760.00','A'),('1416',1,'MIRA AGUILAR FRANCISCO ALEJANDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-30','368790.00','A'),('1417',1,'RIVERA ARISTIZABAL CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-03-02','730670.00','A'),('1418',1,'ARISTIZABAL ROLDAN ANDRES RICARDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-02','546960.00','A'),('142',1,'LOPEZ ZULETA MAURICIO ALEXANDER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-01','3550.00','A'),('1420',1,'ESCORCIA ARAMBURO JUAN MARIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-04-01','73100.00','A'),('1421',1,'CORREA PARRA RICARDO ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-08-05','737110.00','A'),('1422',1,'RESTREPO NARANJO DANIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-09-15','466240.00','A'),('1423',1,'VELASQUEZ CARLOS JUAN','191821112','CRA 25 CALLE 100','123@yahoo.com','2011-02-03',128662,'2010-06-09','119880.00','A'),('1424',1,'MACIA GONZALEZ ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2010-11-12','200690.00','A'),('1425',1,'BERRIO MEJIA HELBER ANTONIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2010-06-04','643800.00','A'),('1427',1,'GOMEZ GUTIERREZ CARLOS ARIEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-09-08','153320.00','A'),('1428',1,'RESTREPO LOPEZ JOSE ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-12','915770.00','A'),('1429',1,'BARTH TOBAR LUIS FERNANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-02-23','118900.00','A'),('143',1,'MUNERA BEDIYA JUAN CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-09-21','825600.00','A'),('1430',1,'JIMENEZ VELEZ ANDRES EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-02-26','847160.00','A'),('1431',1,'TAKAHASHI GAVIRIA NICOLAS KEIICHIRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-13','879120.00','A'),('1432',1,'ESCOBAR JARAMILLO ESTEBAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2010-06-10','854110.00','A'),('1433',1,'PALACIO NAVARRO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-08-18','633200.00','A'),('1434',1,'LONDOÑO MUÑOZ ADOLFO LEON','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-09-14','603670.00','A'),('1435',1,'PULGARIN JAIME ANDRES','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2009-11-01','118730.00','A'),('1436',1,'FERRERA ZULUAGA LUIS FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-07-10','782630.00','A'),('1437',1,'VASQUEZ VELEZ HABACUC','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-27','557000.00','A'),('1438',1,'HENAO PALOMINO DIEGO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2009-05-06','437080.00','A'),('1439',1,'HURTADO URIBE JUAN GONZALO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-01-11','514400.00','A'),('144',1,'ALDANA RODOLFO AUGUSTO','191821112','CRA 25 CALLE 100','838@yahoo.es','2011-02-03',127591,'2011-08-07','117350.00','A'),('1441',1,'URIBE DANIEL ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',133535,'2010-11-19','760610.00','A'),('1442',1,'PINEDA GALIANO JUAN CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-07-29','20770.00','A'),('1443',1,'DUQUE BETANCOURT FABIO LEON','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-11-26','822030.00','A'),('1444',1,'JARAMILLO TORO HERNAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-04-27','47830.00','A'),('145',1,'VASQUEZ ZAPATA JUAN CARLOS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-09','109940.00','A'),('1450',1,'TOBON FRANCO MARCO ANTONIO','191821112','CRA 25 CALLE 100','545@facebook.com','2011-02-03',127591,'2011-05-03','889540.00','A'),('1454',1,'LOTERO PAVAS CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-05-28','646750.00','A'),('1455',1,'ESTRADA HENAO JAVIER ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128569,'2009-09-07','215460.00','A'),('1456',1,'VALDERRAMA MAXIMILIANO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-23','137030.00','A'),('1457',3,'ESTRADA ALVAREZ GONZALO ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',154903,'2011-05-02','38790.00','A'),('1458',1,'PAUCAR VALLEJO JAIRO ALONSO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-10-15','782860.00','A'),('1459',1,'RESTREPO GIRALDO JHON DARIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-04-04','797930.00','A'),('146',1,'BAQUERO FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2010-03-03','197650.00','A'),('1460',1,'RESTREPO DOMINGUEZ GUSTAVO ADOLFO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2009-05-18','641050.00','A'),('1461',1,'YANOVICH JACKY','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-08-21','811470.00','A'),('1462',1,'HINCAPIE ROLDAN JOSE ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-08-27','134200.00','A'),('1463',3,'ZEA JORGE OLIVER','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',150699,'2011-03-12','236610.00','A'),('1464',1,'OSCAR MAURICIO ECHAVARRIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-11-24','780440.00','A'),('1465',1,'COSSIO GIL JOSE ALEXANDER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-10-01','192380.00','A'),('1466',1,'GOMEZ CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-03-01','620580.00','A'),('1467',1,'VILLALOBOS OCHOA ANDRES GABRIEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-08-18','525740.00','A'),('1470',1,'GARCIA GONZALEZ DAVID DARIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-09-17','986990.00','A'),('1471',1,'RAMIREZ RESTREPO ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-04-03','162250.00','A'),('1472',1,'VASQUEZ GUTIERREZ JUAN ANDRES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-05','850280.00','A'),('1474',1,'ESCOBAR ARANGO DAVID','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2010-11-01','272460.00','A'),('1475',1,'MEJIA TORO JUAN DAVID','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-05-02','68320.00','A'),('1477',1,'ESCOBAR GOMEZ JUAN MANUEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127848,'2011-05-15','416150.00','A'),('1478',1,'BETANCUR WILSON','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2008-02-09','508060.00','A'),('1479',3,'ROMERO ARRAU GONZALO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-10','291880.00','A'),('148',1,'REINA MORENO MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-08','699240.00','A'),('1480',1,'CASTAÑO OSORIO JORGE ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127662,'2011-09-20','935200.00','A'),('1482',1,'LOPEZ LOPERA ROBINSON FREDY','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-09-02','196280.00','A'),('1484',1,'HERNAN DARIO RENDON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-03-18','312520.00','A'),('1485',1,'MARTINEZ ARBOLEDA MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2010-11-03','821760.00','A'),('1486',1,'RODRIGUEZ MORA CARLOS MORA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-09-16','171270.00','A'),('1487',1,'PENAGOS VASQUEZ JOSE DOMINGO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-09-06','391080.00','A'),('1488',1,'UERRA MEJIA DIEGO LEON','191821112','CRA 25 CALLE 100','704@hotmail.com','2011-02-03',144086,'2011-08-06','441570.00','A'),('1491',1,'QUINTERO GUTIERREZ ABEL PASTOR','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2009-11-16','138100.00','A'),('1492',1,'ALARCON YEPES IVAN DARIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',150699,'2010-05-03','145330.00','A'),('1494',1,'HERNANDEZ VALLEJO ANDRES MAURICIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-09','125770.00','A'),('1495',1,'MONTOYA MORENO LUIS MIGUEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-11-09','691770.00','A'),('1497',1,'BARRERA CARLOS ANDRES','191821112','CRA 25 CALLE 100','62@yahoo.es','2011-02-03',127591,'2010-08-24','332550.00','A'),('1498',1,'ARROYAVE FERNANDEZ PABLO EMILIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-05-12','418030.00','A'),('1499',1,'GOMEZ ANGEL FELIPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-05-03','92480.00','A'),('15',1,'AMSILI COHEN JOSEPH','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-07','877400.00','A'),('150',3,'ARDILA GUTIERREZ DANIEL MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-12','506760.00','A'),('1500',1,'GONZALEZ DUQUE PABLO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-04-13','208330.00','A'),('1502',1,'MEJIA BUSTAMANTE JUAN FELIPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-08-09','196000.00','A'),('1506',1,'SUAREZ MONTOYA JUAN PABLO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128569,'2011-09-13','368250.00','A'),('1508',1,'ALVAREZ GONZALEZ JUAN PABLO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-02-15','355190.00','A'),('1509',1,'NIETO CORREA ANDRES FELIPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-03-31','899980.00','A'),('1511',1,'HERNANDEZ GRANADOS JHONATHAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-08-30','471720.00','A'),('1512',1,'CARDONA ALVAREZ DEIBY','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2010-10-05','55590.00','A'),('1513',1,'TORRES MARULANDA JUAN ESTEBAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2010-10-20','862820.00','A'),('1514',1,'RAMIREZ RAMIREZ JHON JAIRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-05-11','147310.00','A'),('1515',1,'MONDRAGON TORO NICOLAS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-01-19','148100.00','A'),('1517',3,'SUIDA DIETER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2008-07-21','48580.00','A'),('1518',3,'LEFTWICH ANDREW PAUL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',211610,'2011-06-07','347170.00','A'),('1519',3,'RENTON ANDREW GEORGE PATRICK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',269033,'2010-12-11','590120.00','A'),('152',1,'BUSTOS MONZON CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-22','335160.00','A'),('1521',3,'JOSE CUSTODIO DO ALTISSIMO NETONETO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',119814,'2011-04-28','775000.00','A'),('1522',3,'GUARACI FRANCO DE PAIVA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',119167,'2011-04-28','147770.00','A'),('1525',4,'MORENO TENORIO MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-20','888750.00','A'),('1527',1,'VELASQUEZ HERNANDEZ JHON EDUARSON','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-07-19','161270.00','A'),('1528',4,'VANEGAS ALEJANDRA','191821112','CRA 25 CALLE 100','185@yahoo.com','2011-02-03',127591,'2011-06-20','109830.00','A'),('1529',3,'BARBABE CLAIRE LAURENCE ANNICK','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-04','65330.00','A'),('153',1,'GONZALEZ TORREZ MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-01','762560.00','A'),('1530',3,'COREA MARTINEZ GUILLERMO JOSE ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',135360,'2011-09-25','997190.00','A'),('1531',3,'PACHECO RODRIGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117002,'2010-03-08','789960.00','A'),('1532',3,'WELCH RICHARD WILLIAM','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',190393,'2010-10-04','958210.00','A'),('1533',3,'FOREMAN CAROLYN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',107159,'2011-05-23','421200.00','A'),('1535',3,'ZAGAL SOTO CLAUDIA PAZ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2008-05-16','893130.00','A'),('1536',3,'ZAGAL SOTO CLAUDIA PAZ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-10-08','771600.00','A'),('1538',3,'BLANCO RODRIGUEZ JUAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',197162,'2011-04-02','578250.00','A'),('154',1,'HENDEZ PUERTO JAVIER ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-25','807310.00','A'),('1540',3,'CONTRERAS BRAIN JAVIER ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-02-22','42420.00','A'),('1541',3,'RONDON HERNANDEZ MARYLIN DEL CARMEN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132958,'2011-09-29','145780.00','A'),('1542',3,'ELJURI RAMIREZ EMIRA ELIZABETH','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132958,'2010-10-13','601670.00','A'),('1544',3,'REYES LE ROY TOMAS FRANCISCO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2009-06-24','49990.00','A'),('1545',3,'GHETEA GAMUZ JENNY','191821112','CRA 25 CALLE 100','675@gmail.com','2011-02-03',150699,'2010-05-29','536940.00','A'),('1546',3,'DUARTE GONZALEZ ROONEY ORLANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-06-20','534720.00','A'),('1548',3,'BIZOT PHILIPPE PIERRE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',263813,'2011-03-02','709760.00','A'),('1549',3,'PELUFFO RUBIO GUILLERMO JUAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',116366,'2011-05-09','360470.00','A'),('1550',3,'AGLIATI YERKOVIC CAROLINA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2010-06-01','673040.00','A'),('1551',3,'SEPULVEDA LEDEZMA HENRY CORNELIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-08-15','283810.00','A'),('1552',3,'CABRERA CARMINE JAIME FRANCO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2008-11-30','399940.00','A'),('1553',3,'ZINNO PEÑA ALVARO ANTONIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',116366,'2010-08-02','148270.00','A'),('1554',3,'ROMERO BUCCICARDI JUAN CRISTOBAL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-08-01','541530.00','A'),('1555',3,'FEFERKORN ABRAHAM','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',159312,'2011-06-12','262840.00','A'),('1556',3,'MASSE CATESSON CAROLINE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',131272,'2011-06-12','689600.00','A'),('1557',3,'CATESSON ALEXANDRA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',131272,'2011-06-12','659470.00','A'),('1558',3,'FUENTES HERNANDEZ RICARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-18','228540.00','A'),('1559',3,'GUEVARA MENJIVAR WILSON ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-18','164310.00','A'),('1560',3,'DANOWSKI NICOLAS JAMES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-02','135920.00','A'),('1561',3,'CASTRO VELASQUEZ ISMAEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',121318,'2011-07-31','186670.00','A'),('1562',3,'RODRIGUEZ CORNEJO CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-18','525590.00','A'),('1563',3,'VANIA CAROLINA FLORES AVILA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-18','67950.00','A'),('1564',3,'ARMERO RAMOS OSCAR ALEXANDER','191821112','CRA 25 CALLE 100','414@hotmail.com','2011-02-03',127591,'2011-09-18','762950.00','A'),('1565',3,'ORELLANA MARTINEZ JUAN CARLOS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-18','610930.00','A'),('1566',3,'BRATT BABONNEAU CARLOS MIGUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-09-14','765800.00','A'),('1567',3,'YANES FERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150728,'2011-04-12','996200.00','A'),('1568',3,'ANGULO TAMAYO SEBASTIAN GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',126674,'2011-05-19','683600.00','A'),('1569',3,'HENRIQUEZ JOSE LUIS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',138329,'2011-08-15','429390.00','A'),('157',1,'ORTIZ RIOS ALEJANDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-12','365330.00','A'),('1570',3,'GARCIA VILLARROEL RAUL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',126189,'2011-06-12','96140.00','A'),('1571',3,'SOLA HERNANDEZ JOSE FRANCISCO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-09-25','192530.00','A'),('1572',3,'PEREZ PASTOR OSWALDO MAGARREY','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',126674,'2011-05-25','674260.00','A'),('1573',3,'MICHAN QUIÑONES FRANCISCO JOSE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-06-21','793680.00','A'),('1574',3,'GARCIA ARANDA OSCAR DAVID','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-08-15','945620.00','A'),('1575',3,'GARCIA RIBAS JORDI','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-07-10','347070.00','A'),('1576',3,'GALVAN ROMERO MARIA INMACULADA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-09-14','898480.00','A'),('1577',3,'BOSH MOLINAS JUAN JOSE ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',198576,'2011-08-22','451190.00','A'),('1578',3,'MARTIN TENA JOSE MARIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-04-24','560520.00','A'),('1579',3,'HAWKINS ROBERT JAMES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-12','449010.00','A'),('1580',3,'GHERARDI ALEJANDRO EMILIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',180063,'2010-11-15','563500.00','A'),('1581',3,'TELLO JUAN EDUARDO','191821112','CRA 25 CALLE 100','192@hotmail.com','2011-02-03',138329,'2011-05-01','470460.00','A'),('1583',3,'GUZMAN VALDIVIA CINTIA TATIANA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',199862,'2011-04-06','897580.00','A'),('1584',3,'STUBBS MERCEDES CARMEN JOSEFINA DEL MILAGRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',199862,'2011-04-06','502510.00','A'),('1585',3,'QUINTEIRO GORIS JOSE ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-17','819840.00','A'),('1587',3,'RIVAS LORIA PRISCILLA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',205636,'2011-05-01','498720.00','A'),('1588',3,'DE LA TORRE AUGUSTO PATRICIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',20404,'2011-08-31','718670.00','A'),('159',1,'ALDANA PATIÑO NORMAN ALEXANDER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2009-10-10','201500.00','A'),('1590',3,'TORRES VILLAR ROBERTO ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2011-08-10','329950.00','A'),('1591',3,'PETRULLI CARMELO MORENO','191821112','CRA 25 CALLE 100','883@yahoo.com.mx','2011-02-03',127591,'2011-06-20','358180.00','A'),('1592',3,'MUSCO ENZO FRANCESCO GIUSEPPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-09-04','801050.00','A'),('1593',3,'RONCUZZI CLAUDIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127134,'2011-10-02','930700.00','A'),('1594',3,'VELANI FRANCESCA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',199862,'2011-08-22','250360.00','A'),('1596',3,'BENARROCH ASSOR DAVID ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-10-06','547310.00','A'),('1597',3,'FLO VILLASECA ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-05-27','357520.00','A'),('1598',3,'FONT RIBAS ANTONI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',196117,'2011-09-21','145660.00','A'),('1599',3,'LOPEZ BARAHONA MONICA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2011-08-03','655740.00','A'),('16',1,'FLOREZ PEREZ GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132572,'2011-03-30','956370.00','A'),('160',1,'GIRALDO MENDIVELSO MARTIN EDISSON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-14','429010.00','A'),('1600',3,'SCATTIATI ALDO ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',215245,'2011-07-10','841730.00','A'),('1601',3,'MARONE CARLO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',101179,'2011-06-14','241420.00','A'),('1602',3,'CHUVASHEVA ELENA ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',190393,'2011-08-21','681900.00','A'),('1603',3,'GIGLIO FRANCISCO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',122035,'2011-09-19','685250.00','A'),('1604',3,'JUSTO AMATE AGUSTIN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',174598,'2011-05-16','380560.00','A'),('1605',3,'GUARDABASSI FABIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',281044,'2011-07-26','847060.00','A'),('1606',3,'CALABRETTA FRAMCESCO ANTONIO MARIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',199862,'2011-08-22','93590.00','A'),('1607',3,'TARTARINI MASSIMO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',196234,'2011-05-10','926800.00','A'),('1608',3,'BOTTI GIAIME','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',231989,'2011-04-04','353210.00','A'),('1610',3,'PILERI ANDREA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',205040,'2011-09-01','868590.00','A'),('1612',3,'MARTIN GRACIA LUIS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-07-27','324320.00','A'),('1613',3,'GRACIA MARTIN LUIS','191821112','CRA 25 CALLE 100','579@facebook.com','2011-02-03',198248,'2011-08-24','463560.00','A'),('1614',3,'SERRAT SESE JUAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',196234,'2011-05-16','344840.00','A'),('1615',3,'DEL LAGO AMPELIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-06-29','333510.00','A'),('1616',3,'PERUGORRIA RODRIGUEZ JORGE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',148511,'2011-06-06','633040.00','A'),('1617',3,'GIRAL CALVO IGNACIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-09-19','164670.00','A'),('1618',3,'ALONSO CEBRIAN JOSE MARIA','191821112','CRA 25 CALLE 100','253@terra.com.co','2011-02-03',188640,'2011-03-23','924240.00','A'),('162',1,'ARIZA PINEDA JOHN ALEXANDER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-11-27','415710.00','A'),('1620',3,'OLMEDO CARDENETE DOMINGO MIGUEL','191821112','CRA 25 CALLE 100','608@terra.com.co','2011-02-03',135397,'2011-09-03','863200.00','A'),('1622',3,'GIMENEZ BALDRES ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',182860,'2011-05-12','82660.00','A'),('1623',3,'NUÑEZ MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-05-23','609950.00','A'),('1624',3,'PEÑATE CASTRO WENCESLAO LORENZO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',153607,'2011-09-13','801750.00','A'),('1626',3,'ESCODA MIGUEL JOAN JOSEP','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-07-18','489310.00','A'),('1628',3,'ESTRADA CAPILLA ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-07-26','81180.00','A'),('163',1,'PERDOMO LOPEZ ANDRES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-05','456910.00','A'),('1630',3,'SUBIRAIS MARIANA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',196234,'2011-09-08','138700.00','A'),('1632',3,'ENSEÑAT VELASCO JAIME LUIS','191821112','CRA 25 CALLE 100','687@gmail.com','2011-02-03',188640,'2011-04-12','904560.00','A'),('1633',3,'DIEZ POLANCO CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-05-24','530410.00','A'),('1636',3,'CUADRA ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-09-04','688400.00','A'),('1637',3,'UBRIC MUÑOZ RAUL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',98790,'2011-05-30','139830.00','A'),('1638',3,'NEDDERMANN GUJO RICARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-07-31','633990.00','A'),('1639',3,'RENEDO ZALBA JAIME','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-03-13','750430.00','A'),('164',1,'JIMENEZ PADILLA JOHAN MARCEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-05','37430.00','A'),('1640',3,'FERNANDEZ MORENO DAVID','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-05-28','850180.00','A'),('1641',3,'VERGARA SERRANO JUAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-06-30','999620.00','A'),('1642',3,'MARTINEZ HUESO LUCAS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',182860,'2011-06-29','447570.00','A'),('1643',3,'FRANCO POBLET JUAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',196234,'2011-10-03','238990.00','A'),('1644',3,'MORA HIDALGO MIGUEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-06','852250.00','A'),('1645',3,'GARCIA COSO EMILIANO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-09-14','544260.00','A'),('1646',3,'GIMENO ESCRIG ENRIQUE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',180124,'2011-09-20','164580.00','A'),('1647',3,'MORCILLO LOPEZ RAMON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127538,'2011-04-16','190090.00','A'),('1648',3,'RUBIO BONET MANUEL','191821112','CRA 25 CALLE 100','252@facebook.com','2011-02-03',196234,'2011-05-25','456740.00','A'),('1649',3,'PRADO ABUIN FERNANDO ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-07-16','713400.00','A'),('165',1,'RAMIREZ PALMA LUIS FELIPE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-10','816420.00','A'),('1650',3,'DE VEGA PUJOL GEMA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-08-01','196780.00','A'),('1651',3,'IBARGUEN ALFREDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2010-12-03','843720.00','A'),('1652',3,'IBARGUEN ALFREDO','191821112','CRA 25 CALLE 100','856@hotmail.com','2011-02-03',188640,'2011-06-18','628250.00','A'),('1654',3,'MATELLANES RODRIGUEZ NURIA PILAR','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-10-05','165770.00','A'),('1656',3,'VIDAURRAZAGA GUISOLA JUAN ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',188640,'2011-08-08','495320.00','A'),('1658',3,'GOMEZ ULLATE MARIA ELENA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-04-12','919090.00','A'),('1659',3,'ALCAIDE ALONSO JUAN MIGUEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-05-02','152430.00','A'),('166',1,'TUSTANOSKI RODOLFO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-12-03','969790.00','A'),('1660',3,'LARROY GARCIA CRISTINA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-09-14','4900.00','A'),('1661',3,'FERNANDEZ POYATO ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-09-10','567180.00','A'),('1662',3,'TREVEJO PARDO JULIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-25','821200.00','A'),('1663',3,'GORGA CASSINELLI VICTOR DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-05-30','404490.00','A'),('1664',3,'MORUECO GONZALEZ JOSE ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-10-09','558820.00','A'),('1665',3,'IRURETA FERNANDEZ PEDRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',214283,'2011-09-14','580650.00','A'),('1667',3,'TREVEJO PARDO JUAN ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-25','392020.00','A'),('1668',3,'BOCOS NUÑEZ MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',196234,'2011-10-08','279710.00','A'),('1669',3,'LUIS CASTILLO JOSE AGUSTIN','191821112','CRA 25 CALLE 100','557@hotmail.es','2011-02-03',168202,'2011-06-16','222500.00','A'),('167',1,'HURTADO BELALCAZAR JOHN JADY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127300,'2011-08-17','399710.00','A'),('1670',3,'REDONDO GUTIERREZ EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-09-14','273350.00','A'),('1671',3,'MADARIAGA ALONSO RAMON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2011-07-26','699240.00','A'),('1673',3,'REY GONZALEZ LUIS JAVIER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-07-26','283190.00','A'),('1676',3,'PEREZ ESTER ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-10-03','274900.00','A'),('1677',3,'GOMEZ-GRACIA HUERTA ALEJANDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-09-22','112260.00','A'),('1678',3,'DAMASO PUENTE DIEGO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-05-25','736600.00','A'),('168',1,'JUAN PABLO MARTINEZ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-08-15','89160.00','A'),('1680',3,'DIEZ GONZALEZ LUIS MIGUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-05-17','521280.00','A'),('1681',3,'LOPEZ LOPEZ JOSE LUIS','191821112','CRA 25 CALLE 100','853@yahoo.com','2011-02-03',196234,'2010-12-13','567760.00','A'),('1682',3,'MIRO LINARES FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133442,'2011-09-03','274930.00','A'),('1683',3,'ROCA PINTADO MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-05-16','671410.00','A'),('1684',3,'GARCIA BARTOLOME HORACIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-09-29','532220.00','A'),('1686',3,'BALMASEDA DE AHUMADA DIEZ JUAN LUIS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',168202,'2011-04-13','637860.00','A'),('1687',3,'FERNANDEZ IMAZ FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-04-10','248580.00','A'),('1688',3,'ELIAS CASTELLS FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-05-19','329300.00','A'),('1689',3,'ANIDO DIAZ DANIEL','191821112','CRA 25 CALLE 100','491@gmail.com','2011-02-03',188640,'2011-04-04','900780.00','A'),('1691',3,'GATELL ARIMONT MARIA CRISTINA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',196234,'2011-09-17','877700.00','A'),('1692',3,'RIVERA MUÑOZ ADONI','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',211705,'2011-04-05','840470.00','A'),('1693',3,'LUNA LOPEZ ALICIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-10-01','569270.00','A'),('1695',3,'HAMMOND ANN ELIZABETH','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118021,'2011-05-17','916770.00','A'),('1698',3,'RODRIGUEZ PARAJA MARIA CRISTINA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-07-15','649080.00','A'),('1699',3,'RUIZ DIAZ JOSE IGNACIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-06-24','359540.00','A'),('17',1,'SUAREZ CUEVAS FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',129499,'2011-08-31','149640.00','A'),('170',1,'MARROQUIN AVILA FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-04','965840.00','A'),('1700',3,'BACCHELLI ORTEGA JOSE MARIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',126180,'2011-06-07','850450.00','A'),('1701',3,'IGLESIAS JOSE IGNACIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2010-09-14','173630.00','A'),('1702',3,'GUTIEZ CUEVAS JULIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2010-09-07','316800.00','A'),('1704',3,'CALDEIRO ZAMORA JESUS CARMELO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-05-09','365230.00','A'),('1705',3,'ARBONA ABASCAL MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-02-27','636760.00','A'),('1706',3,'COHEN AMAR MOISES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196766,'2011-05-20','88120.00','A'),('1708',3,'FERNANDEZ COBOS ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2010-11-09','387220.00','A'),('1709',3,'CANAL VIVES JOAQUIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',196234,'2011-09-27','345150.00','A'),('171',1,'LADINO MORENO JAVIER ORLANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-25','89230.00','A'),('1710',5,'GARCIA BERTRAND HECTOR','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-04-07','564100.00','A'),('1711',1,'CONSTANZA MARÍN ESCOBAR','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127799,'2011-03-24','785060.00','A'),('1712',1,'NUNEZ BATALLA FAUSTINO JORGE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-26','232970.00','A'),('1713',3,'VILORA LAZARO ERICK MARTIN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-26','809690.00','A'),('1715',3,'ELLIOT EDWARD JAMES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-26','318660.00','A'),('1716',3,'ALCALDE ORTEÑO MAURICIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',117002,'2011-07-23','544650.00','A'),('1717',3,'CIARAVELLA STEFANO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',231989,'2011-06-13','767260.00','A'),('1718',3,'URRA GONZALEZ PEDRO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-05-02','202370.00','A'),('172',1,'GUERRERO ERNESTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-15','548610.00','A'),('1720',3,'JIMENEZ RODRIGUEZ ANNET','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-05-25','943140.00','A'),('1721',3,'LESCAY CASTELLANOS ARNALDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-09-14','585570.00','A'),('1722',3,'OCHOA AGUILAR ELIADES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-25','98410.00','A'),('1723',3,'RODRIGUEZ NUÑES JOSE ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-25','735340.00','A'),('1724',3,'OCHOA BUSTAMANTE ELIADES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-25','381480.00','A'),('1725',3,'MARTINEZ NIEVES JOSE ANGEL','191821112','CRA 25 CALLE 100','919@yahoo.es','2011-02-03',127591,'2011-05-25','701360.00','A'),('1727',3,'DRAGONI ALAIN ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-25','707850.00','A'),('1728',3,'FERNANDEZ LOPEZ MARCOS ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-25','452090.00','A'),('1729',3,'MATURELL ROMERO JORGE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-25','136880.00','A'),('173',1,'RUIZ CEBALLOS ALEXANDER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-04','475380.00','A'),('1730',3,'LARA CASTELLANO LENNIS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-25','328150.00','A'),('1731',3,'GRAHAM CRISTOPHER DRAKE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',203079,'2011-06-27','230120.00','A'),('1732',3,'TORRE LUCA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-05-11','166120.00','A'),('1733',3,'OCHOA HIDALGO EGLIS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-25','140250.00','A'),('1734',3,'LOURERIO DELACROIX FERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',116511,'2011-09-28','202900.00','A'),('1736',3,'LEVIN FIORELLI ANDRES','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',116366,'2011-08-07','360110.00','A'),('1739',3,'BERRY R ALBERT','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',216125,'2011-08-16','22170.00','A'),('174',1,'NIETO PARRA SEBASTIAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-05-11','731040.00','A'),('1740',3,'MARSHALL ROBERT SHEPARD','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',150159,'2011-03-09','62860.00','A'),('1741',3,'HENANDEZ ROY CHRISTOPHER JOHN PATRICK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',179614,'2011-09-26','247780.00','A'),('1742',3,'LANDRY GUILLAUME','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',232263,'2011-04-27','50330.00','A'),('1743',3,'VUCETIC ZELJKO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',232263,'2011-07-25','508320.00','A'),('1744',3,'DE JUANA CELASCO MARIA DEL CARMEN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-04-16','390620.00','A'),('1745',3,'LABONTE RONALD','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',269033,'2011-09-28','428120.00','A'),('1746',3,'NEWMAN PHILIP MARK','191821112','CRA 25 CALLE 100','557@gmail.com','2011-02-03',231373,'2011-07-25','968750.00','A'),('1747',3,'GRENIER MARIE PIERRE ','191821112','CRA 25 CALLE 100','409@facebook.com','2011-02-03',244158,'2011-07-03','559370.00','A'),('1749',3,'SHINDER GARY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',244158,'2011-07-25','775000.00','A'),('175',3,'GALLEGOS BASTIDAS CARLOS EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133211,'2011-08-10','229090.00','A'),('1750',3,'LOPEZ DE GOICOCHEA ZABALA FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-09-13','203120.00','A'),('1751',3,'CORRAL BELLON MANUEL','191821112','CRA 25 CALLE 100','538@yahoo.com','2011-02-03',177443,'2011-05-02','690610.00','A'),('1752',3,'DE SOLA SOLVAS JUAN ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-10-02','843700.00','A'),('1753',3,'GARCIA ALCALA DIAZ REGAÑON EVA MARIA','191821112','CRA 25 CALLE 100','398@yahoo.com','2011-02-03',118777,'2010-03-15','146680.00','A'),('1754',3,'BIELA VILIAM','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132958,'2011-08-16','202290.00','A'),('1755',3,'GUIOT CANO JUAN PATRICK','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',232263,'2011-05-23','571390.00','A'),('1756',3,'JIMENEZ DIAZ LUIS MIGUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-03-27','250100.00','A'),('1757',3,'FOX ELEANORE MAE','191821112','CRA 25 CALLE 100','117@yahoo.com','2011-02-03',190393,'2011-05-04','536340.00','A'),('1758',3,'TANG VAN SON','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132958,'2011-05-07','931400.00','A'),('1759',3,'SUTTON PETER RONALD','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',281673,'2011-06-01','47960.00','A'),('176',1,'GOMEZ IVAN','191821112','CRA 25 CALLE 100','438@yahoo.com.mx','2011-02-03',127591,'2008-04-09','952310.00','A'),('1762',3,'STOODY MATTHEW FRANCIS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-21','84320.00','A'),('1763',3,'SEIX MASO ARNAU','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',150699,'2011-05-24','168880.00','A'),('1764',3,'FERNANDEZ REDEL RAQUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-09-14','591440.00','A'),('1765',3,'PORCAR DESCALS VICENNTE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',176745,'2011-04-24','450580.00','A'),('1766',3,'PEREZ DE VILLEGAS TRILLO FIGUEROA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',196234,'2011-05-17','478560.00','A'),('1767',3,'CELDRAN DEGANO ANGEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',196234,'2011-05-17','41040.00','A'),('1768',3,'TERRAGO MARI FERRAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-09-30','769550.00','A'),('1769',3,'SZUCHOVSZKY GERGELY','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',250256,'2011-05-23','724630.00','A'),('177',1,'SEBASTIAN TORO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127443,'2011-07-14','74270.00','A'),('1771',3,'TORIBIO JOSE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',226612,'2011-09-04','398570.00','A'),('1772',3,'JOSE LUIS BAQUERA PEIRONCELLY','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2010-10-19','49360.00','A'),('1773',3,'MADARIAGA VILLANUEVA MIGUEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-04-12','51090.00','A'),('1774',3,'VILLENA BORREGO ANTONIO','191821112','CRA 25 CALLE 100','830@terra.com.co','2011-02-03',188640,'2011-07-19','107400.00','A'),('1776',3,'VILAR VILLALBA JOSE LUIS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',180124,'2011-09-20','596330.00','A'),('1777',3,'CAGIGAL ORTIZ MACARENA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',214283,'2011-09-14','830530.00','A'),('1778',3,'KORBA ATTILA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',250256,'2011-09-27','363650.00','A'),('1779',3,'KORBA-ELIAS BARBARA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',250256,'2011-09-27','326670.00','A'),('178',1,'AMSILI COHEN HANAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2009-08-29','514450.00','A'),('1780',3,'PINDADO GOMEZ JESUS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',189053,'2011-04-26','542400.00','A'),('1781',3,'IBARRONDO GOMEZ GRACIA ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-09-21','731990.00','A'),('1782',3,'MUNGUIRA GONZALEZ JUAN JULIAN','191821112','CRA 25 CALLE 100','54@hotmail.es','2011-02-03',188640,'2011-09-06','32730.00','A'),('1784',3,'LANDMAN PIETER MARINUS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',294861,'2011-09-22','740260.00','A'),('1789',3,'SUAREZ AINARA ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-05-17','503470.00','A'),('179',1,'CARO JUNCO GUIOVANNY','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-03','349420.00','A'),('1790',3,'MARTINEZ CHACON JOSE JOAQUIN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-05-20','592220.00','A'),('1792',3,'MENDEZ DEL RION LUCIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',120639,'2011-06-16','476910.00','A'),('1793',3,'VERHULST LAMBERTUS CORNELIA FRANCISCUS ALPHONSUS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',295420,'2011-07-04','32410.00','A'),('1794',3,'YAÑEZ YAGUE JESUS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-07-10','731290.00','A'),('1796',3,'GOMEZ ZORRILLA AMATE JOSE MARIOA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',188640,'2011-07-12','602380.00','A'),('1797',3,'LAIZ MORENO ENEKO','191821112','CRA 25 CALLE 100','219@gmail.com','2011-02-03',127591,'2011-08-05','334150.00','A'),('1798',3,'MORODO RUIZ RUBEN DAVID','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-09-14','863620.00','A'),('18',1,'GARZON VARGAS GUILLERMO FEDERICO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-29','879110.00','A'),('1800',3,'ALFARO FAUS MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-09-14','987410.00','A'),('1801',3,'MORRALLA VALLVERDU ENRIC','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',194601,'2011-07-18','990070.00','A'),('1802',3,'BALBASTRE TEJEDOR JUAN VICENTE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',182860,'2011-08-24','988120.00','A'),('1803',3,'MINGO REIZ FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',188640,'2010-03-24','970400.00','A'),('1804',3,'IRURETA FERNANDEZ JOSE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',214283,'2011-09-10','887630.00','A'),('1807',3,'NEBRO MELLADO JOSE JUAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',168996,'2011-08-15','278540.00','A'),('1808',3,'ALBERQUILLA OJEDA JOSE DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-09-27','477070.00','A'),('1809',3,'BUENDIA NORTE MARIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',131401,'2011-07-08','549720.00','A'),('181',1,'CASTELLANOS FLORES RODRIGO ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-18','970470.00','A'),('1811',3,'HILBERT ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',196234,'2011-09-08','937830.00','A'),('1812',3,'GONZALES PINTO COTERILLO ADOLFO LORENZO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',214283,'2011-09-10','736970.00','A'),('1813',3,'ARQUES ALVAREZ JOSE RICARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-04-04','871360.00','A'),('1817',3,'CLAUSELL LOW ROBERTO EMILIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132775,'2011-09-28','348770.00','A'),('1818',3,'BELICHON MARTINEZ JESUS ALVARO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-04-12','327010.00','A'),('182',1,'GUZMAN NIETO JOSE MARIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-20','241130.00','A'),('1821',3,'LINATI DE PUIG JORGE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',196234,'2011-05-18','47210.00','A'),('1823',3,'SINBARRERA ROMA ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',196234,'2011-09-08','598380.00','A'),('1826',2,'JUANES GARATE BRUNO ','191821112','CRA 25 CALLE 100','301@gmail.com','2011-02-03',118777,'2011-08-21','877650.00','A'),('1827',3,'BOLOS GIMENO ROGELIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',200247,'2010-11-28','555470.00','A'),('1828',3,'ZABALA ASTIGARRAGA JOSE MARIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',188640,'2011-09-20','144410.00','A'),('1831',3,'MAPELLI CAFFARENA BORJA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',172381,'2011-09-04','58200.00','A'),('1833',3,'LARMONIE LESLIE MARTIN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-30','604840.00','A'),('1834',3,'WILLEMS ROBERT-JAN MICHAEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',288531,'2011-09-05','756530.00','A'),('1835',3,'ANJEMA LAURENS JAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2011-08-29','968140.00','A'),('1836',3,'VERHULST HENRICUS LAMBERTUS MARIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',295420,'2011-04-03','571100.00','A'),('1837',3,'PIERROT JOZEF MARIE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',288733,'2011-05-18','951100.00','A'),('1838',3,'EIKELBOOM HIDDE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-02','42210.00','A'),('1839',3,'TAMBINI GOMEZ DE MUNG','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',180063,'2011-04-24','357740.00','A'),('1840',3,'MAGAÑA PEREZ GERARDO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',135360,'2011-09-28','662060.00','A'),('1841',3,'COURTOISIE BEYHAUT RAFAEL JUAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',116366,'2011-09-05','237070.00','A'),('1842',3,'ROJAS BENJAMIN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-13','199170.00','A'),('1843',3,'GARCIA VICENTE EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',150699,'2011-08-10','284650.00','A'),('1844',3,'CESTTI LOPEZ RAFAEL GUSTAVO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',144215,'2011-09-27','825750.00','A'),('1845',3,'URTECHO LOPEZ ARMANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',139272,'2011-09-28','274800.00','A'),('1846',3,'SEGURA ESPINOZA ARMANDO SEBASTIAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',135360,'2011-09-28','896730.00','A'),('1847',3,'GONZALEZ VEGA LUIS PASTOR','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',135360,'2011-05-18','659240.00','A'),('185',1,'AYALA CARDENAS NELSON MAURICIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-25','855960.00','A'),('1850',3,'ROTZINGER ROA KLAUS ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',116366,'2011-09-12','444250.00','A'),('1851',3,'FRANCO DE LEON SEBASTIAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',116366,'2011-04-26','63840.00','A'),('1852',3,'RIVAS GAGNONI LUIS ARMANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',135360,'2011-05-18','986440.00','A'),('1853',3,'BARRETO VELASQUEZ JOEL FERNANDO','191821112','CRA 25 CALLE 100','104@hotmail.es','2011-02-03',116511,'2011-04-27','740670.00','A'),('1854',3,'SEVILLA AMAYA ORLANDO','191821112','CRA 25 CALLE 100','264@yahoo.com','2011-02-03',136995,'2011-05-18','744020.00','A'),('1855',3,'VALFRE BRALICH ELEONORA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',116366,'2011-06-06','498080.00','A'),('1857',3,'URDANETA DIAMANTES DIEGO ANDRES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-09-23','797590.00','A'),('1858',3,'RAMIREZ ALVARADO ROBERT JESUS','191821112','CRA 25 CALLE 100','290@yahoo.com.mx','2011-02-03',127591,'2011-09-18','212850.00','A'),('1859',3,'GUTTNER DENNIS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-25','671470.00','A'),('186',1,'CARRASCO SUESCUN ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-15','36620.00','A'),('1861',3,'HEGEMANN JOACHIM','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-25','579710.00','A'),('1862',3,'MALCHER INGO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',292243,'2011-06-23','742060.00','A'),('1864',3,'HOFFMEISTER MALTE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128206,'2011-09-06','629770.00','A'),('1865',3,'BOHME ALEXANDRA LUCE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-14','235260.00','A'),('1866',3,'HAMMAN FRANK THOMAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-13','286980.00','A'),('1867',3,'GOPPERT MARKUS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-09-05','729150.00','A'),('1868',3,'BISCARO CAROLINA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-09-16','784790.00','A'),('1869',3,'MASCHAT SEBASTIAN STEPHAN ANDREAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-02-03','736520.00','A'),('1870',3,'WALTHER DANIEL CLAUS PETER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-24','328220.00','A'),('1871',3,'NENTWIG DANIEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',289697,'2011-02-03','431550.00','A'),('1872',3,'KARUTZ ALEX','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127662,'2011-03-17','173090.00','A'),('1875',3,'KAY KUNNE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',289697,'2011-03-18','961400.00','A'),('1876',2,'SCHLUMPF IVANA PATRICIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',245206,'2011-03-28','802690.00','A'),('1877',3,'RODRIGUEZ BUSTILLO CONSUELO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',139067,'2011-03-21','129280.00','A'),('1878',1,'REHWALDT RICHARD ULRICH','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',289697,'2009-10-25','238320.00','A'),('1880',3,'FONSECA BEHRENS MANUELA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',150699,'2011-08-18','303810.00','A'),('1881',3,'VOGEL MIRKO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-09','107790.00','A'),('1882',3,'WU WEI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',289697,'2011-03-04','627520.00','A'),('1884',3,'KADOLSKY ANKE SIGRID','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',289697,'2010-10-07','188560.00','A'),('1885',3,'PFLUCKER PLENGE CARLOS HERNAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',239124,'2011-08-15','500140.00','A'),('1886',3,'PEÑA LAGOS MELENIA PATRICIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-18','935020.00','A'),('1887',3,'CALVANO MARCO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2011-05-02','174690.00','A'),('1888',3,'KUHLEN LOTHAR WILHELM','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',289232,'2011-08-30','68390.00','A'),('1889',3,'QUIJANO RICO SOFIA VICTORIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',221939,'2011-06-13','817890.00','A'),('189',1,'GOMEZ TRUJILLO SERGIO ANDRES','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-17','985980.00','A'),('1890',3,'SCHILBERZ KARIN','191821112','CRA 25 CALLE 100','405@facebook.com','2011-02-03',287570,'2011-06-23','884260.00','A'),('1891',3,'SCHILBERZ SOPHIE CAHRLOTTE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',287570,'2011-06-23','967640.00','A'),('1892',3,'MOLINA MOLINA MILAGRO DE SUYAPA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',139844,'2011-07-26','185410.00','A'),('1893',3,'BARRIENTOS ESCALANTE RAFAEL ALVARO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',139067,'2011-05-18','24110.00','A'),('1895',3,'ENGELS FRANZBERNARD','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',292243,'2011-07-01','749430.00','A'),('1896',3,'FRIEDHOFF SVEN WILHEM','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',289697,'2010-10-31','54090.00','A'),('1897',3,'BARTELS CHRISTIAN JOHAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',133535,'2011-07-25','22160.00','A'),('1898',3,'NILS REMMEL','191821112','CRA 25 CALLE 100','214@gmail.com','2011-02-03',256231,'2011-08-05','948530.00','A'),('1899',3,'DR SCHEIBE MATTHIAS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',252431,'2011-09-26','676150.00','A'),('19',1,'RIAÑO ROMERO ALBERTO ELIAS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2009-12-14','946630.00','A'),('190',1,'LLOREDA ORTIZ FELIPE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-12-20','30860.00','A'),('1900',3,'CARRASCO CATERIANO PEDRO','191821112','CRA 25 CALLE 100','255@hotmail.com','2011-02-03',286578,'2011-05-02','535180.00','A'),('1901',3,'ROSENBER DIRK PETER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-29','647450.00','A'),('1902',3,'LAUBACH JOHANNES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',289697,'2011-05-01','631720.00','A'),('1904',3,'GRUND STEFAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',256231,'2011-08-05','185990.00','A'),('1905',3,'GRUND BEATE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',256231,'2011-08-05','281280.00','A'),('1906',3,'CORZO PAULA MIRIANA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',180063,'2011-08-02','848400.00','A'),('1907',3,'OESTERHAUS CORNELIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',256231,'2011-03-16','398170.00','A'),('1908',1,'JUAN SEBASTIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127300,'2011-05-12','445660.00','A'),('1909',3,'VAN ZIJL CHRISTIAN ANDREAS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',286785,'2011-09-24','33800.00','A'),('191',1,'CASTAÑEDA CABALLERO JUAN MANUEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-28','196370.00','A'),('1910',3,'LORZA RUIZ MYRIAM ESPERANZA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-29','831990.00','A'),('192',1,'ZEA EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-09','889270.00','A'),('193',1,'VELEZ VICTOR MANUEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2010-10-22','857250.00','A'),('194',1,'ARCINIEGAS GOMEZ ISMAEL','191821112','CRA 25 CALLE 100','937@hotmail.com','2011-02-03',127591,'2011-05-18','618450.00','A'),('195',1,'LINAREZ PEDRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-12','520470.00','A'),('1952',3,'BERND ERNST HEINZ SCHUNEMANN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',255673,'2011-09-04','796820.00','A'),('1953',3,'BUCHNER RICHARD ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-17','808430.00','A'),('1954',3,'CHO YONG BEOM','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',173192,'2011-02-07','651670.00','A'),('1955',3,'BERNECKER WALTER LUDWIG','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',256231,'2011-04-03','833080.00','A'),('1956',3,'SCHIERENBECK THOMAS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',256231,'2011-05-03','210380.00','A'),('1957',3,'STEGMANN WOLF DIETER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-08-27','552650.00','A'),('1958',3,'LEBAGE GONZALEZ VALENTINA CECILIA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',131272,'2011-07-29','132130.00','A'),('1959',3,'CABRERA MACCHI JOSE ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',180063,'2011-08-02','2700.00','A'),('196',1,'OTERO BERNAL ALVARO ERNESTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-04-29','747030.00','A'),('1960',3,'KOO BONKI','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-15','617110.00','A'),('1961',3,'JODJAHN DE CARVALHO BEIRAL FLAVIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118942,'2011-07-05','77460.00','A'),('1963',3,'VIEIRA ROCHA MARQUES ELIANE TEREZINHA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118402,'2011-09-13','447430.00','A'),('1965',3,'KELLEN CRISTINA GATTI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',126180,'2011-07-01','804020.00','A'),('1966',3,'CHAVEZ MARLON TENORIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',120773,'2011-07-25','132310.00','A'),('1967',3,'SERGIO COZZI','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',125750,'2011-08-28','249500.00','A'),('1968',3,'REZENDE LIMA JOSE MARCIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-08-23','850570.00','A'),('1969',3,'RAMOS PEDRO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118942,'2011-08-03','504330.00','A'),('1972',3,'ADAMS THOMAS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118942,'2011-08-11','774000.00','A'),('1973',3,'WALESKA NUCINI BOGO ANDREA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-23','859690.00','A'),('1974',3,'GERMANO PAULO BUNN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118439,'2011-08-30','976440.00','A'),('1975',3,'CALDEIRA FILHO RUBENS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118942,'2011-07-18','303120.00','A'),('1976',3,'JOSE CUSTODIO DO ALTISSIMO NETONETO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',119814,'2011-09-08','586290.00','A'),('1977',3,'GAMAS MARIA CRISTINA ALVES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-09-19','22070.00','A'),('1979',3,'PORTO WEBER FERREIRA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-07','691340.00','A'),('1980',3,'FONSECA LAURO PINTO','191821112','CRA 25 CALLE 100','104@hotmail.es','2011-02-03',127591,'2011-08-16','402140.00','A'),('1981',3,'DUARTE ELENA CECILIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-06-15','936710.00','A'),('1983',3,'CECHINEL CRISTIAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118942,'2011-06-12','575530.00','A'),('1984',3,'BATISTA PINHERO JOAO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-04-25','446250.00','A'),('1987',1,'ISRAEL JOSE MAXWELL','191821112','CRA 25 CALLE 100','936@gmail.com','2011-02-03',125894,'2011-07-04','408350.00','A'),('1988',3,'BATISTA CARVALHO RODRIGO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118864,'2011-09-19','488410.00','A'),('1989',3,'RENO DA SILVEIRA EDNEIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118867,'2011-05-03','216990.00','A'),('199',1,'BASTO CORREA FERNANDO ANTONIO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-21','616860.00','A'),('1990',3,'SEIDLER KOHNERT G TEIXEIRA CHRISTINA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',119814,'2011-08-23','619730.00','A'),('1992',3,'GUIMARAES COSTA LEONARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-04-20','379090.00','A'),('1993',3,'BOTTA RODRIGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118777,'2011-09-16','552510.00','A'),('1994',3,'ARAUJO DA SILVA MARCELO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',125666,'2011-08-03','625260.00','A'),('1995',3,'DA SILVA FELIPE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118864,'2011-04-14','468760.00','A'),('1996',3,'MANFIO RODRIGUEZ FERNANDO','191821112','CRA 25 CALLE 100','974@yahoo.com','2011-02-03',118777,'2011-03-23','468040.00','A'),('1997',3,'NEIVA MORENO DE SOUZA CRISTIANE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-09-24','933900.00','A'),('2',3,'CHEEVER MICHAEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-04','560090.00','I'),('2000',3,'ROCHA GUSTAVO ADRIANO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118288,'2011-07-25','830340.00','A'),('2001',3,'DE ANDRADE CARVALHO VIRGINIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118942,'2011-08-11','575760.00','A'),('2002',3,'CAVALCANTI PIERECK GUILHERME','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',180063,'2011-08-01','387770.00','A'),('2004',3,'HOEGEMANN RAMOS CARLOS FERNANDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-04','894550.00','A'),('201',1,'LUIS FERNANDO AREVALO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-17','156730.00','A'),('2010',3,'GOMES BUCHALA JORGE FERNANDO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-09-23','314800.00','A'),('2011',3,'MARTINS SIMAIKA CATIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-06-01','155020.00','A'),('2012',3,'MONICA CASECA BUENO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-05-16','830710.00','A'),('2013',3,'ALBERTAL MARCELO ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118000,'2010-09-10','688480.00','A'),('2015',3,'GOMES CANTARELLI JAIRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118761,'2011-01-11','685940.00','A'),('2016',3,'CADETTI GARBELLINI ENILICE CRISTINA ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-11','578870.00','A'),('2017',3,'SPIELKAMP KLAUS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',150699,'2011-03-28','836540.00','A'),('2019',3,'GARES HENRI PHILIPPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',135190,'2011-04-05','720730.00','A'),('202',1,'LUCIO CHAUSTRE ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-19','179240.00','A'),('2023',3,'GRECO DE RESENDELUIZ ALFREDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',119814,'2011-04-25','647940.00','A'),('2024',3,'CORTINA EVANDRO JOAO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118922,'2011-05-12','153970.00','A'),('2026',3,'BASQUES MOURA GERALDO CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',119814,'2011-09-07','668250.00','A'),('2027',3,'DA SILVA VALDECIR','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-23','863150.00','A'),('2028',3,'CHI MOW YUNG IVAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-21','311000.00','A'),('2029',3,'YUNG MYRA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-21','965570.00','A'),('2030',3,'MARTINS RAMALHO PATRICIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-03-23','894830.00','A'),('2031',3,'DE LEMOS RIBEIRO GILBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118951,'2011-07-29','577430.00','A'),('2032',3,'AIROLDI CLAUDIO','191821112','CRA 25 CALLE 100','973@terra.com.co','2011-02-03',127591,'2011-09-28','202650.00','A'),('2033',3,'ARRUDA MENDES HEILMANN IONE TEREZA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',120773,'2011-09-07','280990.00','A'),('2034',3,'TAVARES DE CARVALHO EDUARDO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118942,'2011-08-03','796980.00','A'),('2036',3,'FERNANDES ALARCON RAFAEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-08-28','318730.00','A'),('2037',3,'SUCHODOLKI SERGIO GUSMAO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',190393,'2011-07-13','167870.00','A'),('2039',3,'ESTEVES MARCAL MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-02-24','912100.00','A'),('2040',3,'CORSI LUIZ ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-03-25','911080.00','A'),('2041',3,'LOPEZ MONICA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118795,'2011-05-03','819090.00','A'),('2042',3,'QUINTANILHA LUIS CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-16','362230.00','A'),('2043',3,'DE CARLI BRUNO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-05-03','353890.00','A'),('2045',3,'MARINO FRANCA MARILIA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-07-04','352060.00','A'),('2048',3,'VOIGT ALPHONSE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118439,'2010-11-22','384150.00','A'),('2049',3,'ALENCAR ARIMA TATIANA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-05-23','408590.00','A'),('2050',3,'LINIS DE ALMEIDA NEILSON','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',125666,'2011-08-03','890480.00','A'),('2051',3,'PINHEIRO DE CASTRO BENETI','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2011-08-09','226640.00','A'),('2052',3,'ALVES DO LAGO HELMANN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118942,'2011-08-01','461770.00','A'),('2053',3,'OLIVO MARCO ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-22','628900.00','A'),('2054',3,'WILLIAM DOMINGUES SERGIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118085,'2011-08-23','759220.00','A'),('2055',3,'DE SOUZA MENEZES KLEBER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-04-25','909400.00','A'),('2056',3,'CABRAL NEIDE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-16','269340.00','A'),('2057',3,'RODRIGUES RENATO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-06-15','618500.00','A'),('2058',3,'SPADALE PEDRO JORGE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118942,'2011-08-03','284490.00','A'),('2059',3,'MARTINS DE ALMEIDA GUSTAVO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118942,'2011-09-28','566920.00','A'),('206',1,'TORRES HEBER MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-01-29','643210.00','A'),('2060',3,'IKUNO CELINA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-06-08','981170.00','A'),('2061',3,'DAL BELLO FABIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',129499,'2011-08-20','205050.00','A'),('2062',3,'BENATES ADRIANA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-23','81770.00','A'),('2063',3,'CARDOSO ALEXANDRE ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-23','793690.00','A'),('2064',3,'ZANIOLO DE SOUZA CARLOS HENRIQUE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-09-19','723130.00','A'),('2065',3,'DA SILVA LUIZ SIDNEI','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-03-30','234590.00','A'),('2066',3,'RUFATO DE SOUZA LUIZ FERNANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-08-29','3560.00','A'),('2067',3,'DE MEDEIROS LUCIANA','191821112','CRA 25 CALLE 100','994@yahoo.com.mx','2011-02-03',118777,'2011-09-10','314020.00','A'),('2068',3,'WOLFF PIAZERA DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118255,'2011-06-15','559430.00','A'),('2069',3,'DA SILVA FORTUNA MARINA CLAUDIA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2011-09-23','855100.00','A'),('2070',3,'PEREIRA BORGES LUCILA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',120773,'2011-07-26','597210.00','A'),('2072',3,'PORROZZI DE ALMEIDA RENATO','191821112','CRA 25 CALLE 100','812@hotmail.es','2011-02-03',127591,'2011-06-13','312120.00','A'),('2073',3,'KALICHSZTEINN RICARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-03-23','298330.00','A'),('2074',3,'OCCHIALINI GUIMARAES ANA PAULA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118777,'2011-08-03','555310.00','A'),('2075',3,'MAZZUCO FONTES LUIZ ROBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-05-23','881570.00','A'),('2078',3,'TRAN DINH VAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-05-07','98560.00','A'),('2079',3,'NGUYEN THI LE YEN','191821112','CRA 25 CALLE 100','249@yahoo.com.mx','2011-02-03',132958,'2011-05-07','298200.00','A'),('208',1,'GOMEZ GONZALEZ JORGE MARIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-12','889010.00','A'),('2080',3,'MILA DE LA ROCA JOHANA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132958,'2011-01-26','195350.00','A'),('2081',3,'RODRIGUEZ DE FLORES LOURDES MARIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-16','82120.00','A'),('2082',3,'FLORES PEREZ FRANCISCO GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-23','824550.00','A'),('2083',3,'FRAGACHAN BETANCOUT FRANCISCO JO SÉ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-07-04','876400.00','A'),('2084',3,'GAFARO MOLINA CARLOS JULIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-03-22','908370.00','A'),('2085',3,'CACERES REYES JORGEANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-08-11','912630.00','A'),('2086',3,'ALVAREZ RODRIGUEZ VICTOR ROGELIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',132958,'2011-05-23','838040.00','A'),('2087',3,'GARCES ALVARADO JHAGEIMA JOSEFINA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132958,'2011-04-29','452320.00','A'),('2089',3,'FAVREAU CHOLLET JEAN PIERRE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132554,'2011-05-27','380470.00','A'),('209',1,'CRUZ RODRIGEZ CARLOS ANDRES','191821112','CRA 25 CALLE 100','316@hotmail.es','2011-02-03',127591,'2011-06-28','953870.00','A'),('2090',3,'GARAY LLUCH URBI ALAIN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-03-13','659870.00','A'),('2091',3,'LETICIA LETICIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-07','157950.00','A'),('2092',3,'VELASQUEZ RODULFO RAMON ARISTIDES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-09-23','810140.00','A'),('2093',3,'PEREZ EDGAR','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-06','576850.00','A'),('2094',3,'PEREZ MARIELA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-07','453840.00','A'),('2095',3,'PETRUZZI MANGIARANO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132958,'2011-03-27','538650.00','A'),('2096',3,'LINARES GORI RICARDO RAMON','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-12','331730.00','A'),('2097',3,'LAIRET OLIVEROS CAROLINE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-09-25','42680.00','A'),('2099',3,'JIMENEZ GARCIA FERNANDO JOSE','191821112','CRA 25 CALLE 100','78@hotmail.es','2011-02-03',132958,'2011-07-21','963110.00','A'),('21',1,'RUBIO ESCOBAR RUBEN DARIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2009-05-21','639240.00','A'),('2100',3,'ZABALA MILAGROS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-20','160860.00','A'),('2101',3,'VASQUEZ CRUZ NICOLEDANIELA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132958,'2011-07-31','914990.00','A'),('2102',3,'REYES FIGUERA RAMON ALEXANDER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',126674,'2011-04-03','92340.00','A'),('2104',3,'RAMIREZ JIMENEZ MARYLIN CAROLINA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132958,'2011-06-14','306760.00','A'),('2105',3,'TELLES GUILLEN INNA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-09-07','383520.00','A'),('2106',3,'ALVAREZ CARMEN MARINA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-07-20','997340.00','A'),('2107',3,'MARTINEZ YRIGOYEN NABUCODONOSOR','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-07-21','836110.00','A'),('2108',5,'FERNANDEZ RUIZ IGNACIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-01','188530.00','A'),('211',1,'RIVEROS GARCIA JORGE IVAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-01','650050.00','A'),('2110',3,'CACERES REYES JORGE ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2011-08-08','606030.00','A'),('2111',3,'GELFI MARCOS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',199862,'2011-05-17','727190.00','A'),('2112',3,'CERDA CASTILLO CARMEN GLORIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-08-21','817870.00','A'),('2113',3,'RANGEL FERNANDEZ LEONARDO JOSE','191821112','CRA 25 CALLE 100','856@hotmail.com','2011-02-03',133211,'2011-05-16','907750.00','A'),('2114',3,'ROTHSCHILD VARGAS MICHAEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132165,'2011-02-05','85170.00','A'),('2115',3,'RUIZ GRATEROL INGRID JOHANNA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132958,'2011-05-16','702600.00','A'),('2116',2,'DEARMAS ALBERTO FERNANDO ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150699,'2011-07-19','257500.00','A'),('2117',3,'BOSCAN ARRIETA ERICK HUMBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132958,'2011-07-12','179680.00','A'),('2118',3,'GUILLEN DE TELLES NENCY JOSEFINA','191821112','CRA 25 CALLE 100','56@facebook.com','2011-02-03',132958,'2011-09-07','125900.00','A'),('212',1,'BUSTAMANTE BUSTAMANTE CARLOS ENRIQUE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-26','943260.00','A'),('2120',2,'MARK ANTHONY STUART','191821112','CRA 25 CALLE 100','661@terra.com.co','2011-02-03',127591,'2011-06-26','74600.00','A'),('2122',3,'SCOCOZZA GIOVANNA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',190526,'2011-09-23','284220.00','A'),('2125',3,'CHAVES MOLINA JULIO FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132165,'2011-09-22','295360.00','A'),('2127',3,'BERNARDES DE SOUZA TONIATI VIRGINIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-30','565090.00','A'),('2129',2,'BRIAN DAVIS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-19','78460.00','A'),('213',1,'PAREJO CARLOS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-11','766120.00','A'),('2131',3,'DE OLIVEIRA LOPES REGINALDO LAZARO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-10-05','404910.00','A'),('2132',3,'DE MELO MING AZEVEDO PAULO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-10-05','440370.00','A'),('2137',3,'SILVA JORGE ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-10-05','230570.00','A'),('214',1,'CADENA RICARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-08','840.00','A'),('2142',3,'VIEIRA VEIGA PEDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-30','85330.00','A'),('2144',3,'ESCRIBANO LEONARDA DEL VALLE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',133535,'2011-03-24','941440.00','A'),('2145',3,'RODRIGUEZ MENENDEZ BERNARDO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',148511,'2011-08-02','588740.00','A'),('2146',3,'GONZALEZ COURET DANIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',148511,'2011-08-09','119380.00','A'),('2147',3,'GARCIA SOTO WILLIAM','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',135360,'2011-05-18','830660.00','A'),('2148',3,'MENESES ORELLANA RICARDO TOMAS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132165,'2011-06-13','795200.00','A'),('2149',3,'GUEVARA JUAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-27','483990.00','A'),('215',1,'BELTRAN PINZON JUAN CARLO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-08','705860.00','A'),('2151',2,'LLANES GARRIDO JAVIER ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-30','719750.00','A'),('2152',3,'CHAVARRIA CHAVES RAFAEL ADRIAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132165,'2011-09-20','495720.00','A'),('2153',2,'MILBERT ANDREASPETER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-10','319370.00','A'),('2154',2,'GOMEZ SILVA LOZANO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127300,'2011-05-30','109670.00','A'),('2156',3,'WINTON ROBERT DOUGLAS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',115551,'2011-08-08','622290.00','A'),('2157',2,'ROMERO PIÑA MANUEL GUSTAVO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-05-05','340650.00','A'),('2158',3,'KARWALSKI MATTHEW REECE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117229,'2011-08-29','836380.00','A'),('2159',2,'KIM JUNG SIK ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-08','159950.00','A'),('216',1,'MARTINEZ VALBUENA JOSE ALEJANDRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-25','526750.00','A'),('2160',3,'AGAR ROBERT ALEXANDER','191821112','CRA 25 CALLE 100','81@hotmail.es','2011-02-03',116862,'2011-06-11','290620.00','A'),('2161',3,'IGLESIAS EDGAR ALEXIS','191821112','CRA 25 CALLE 100','645@facebook.com','2011-02-03',131272,'2011-04-04','973240.00','A'),('2163',2,'NOAIN MORENO CECILIA KARIM ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-22','51950.00','A'),('2164',2,'FIGUEROA HEBEL ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-26','276760.00','A'),('2166',5,'FRANDBERG DAN RICHARD VERNER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',134022,'2011-04-06','309480.00','A'),('2168',2,'CONTRERAS LILLO EDUARDO ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-27','389320.00','A'),('2169',2,'BLANCO VALLE RICARDO ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-07-13','355950.00','A'),('2171',2,'BELTRAN ZAVALA JIMI ALFONSO MIGUEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',126674,'2011-08-22','991000.00','A'),('2172',2,'RAMIRO OREGUI JOSE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2011-04-27','119700.00','A'),('2175',2,'FENG PUYO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',302172,'2011-10-07','965660.00','A'),('2176',3,'CLERICI GUIDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',116366,'2011-08-30','522970.00','A'),('2177',1,'SEIJAS GUNTER LUIS MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-02','717890.00','A'),('2178',2,'SHOSHANI MOSHE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-13','20520.00','A'),('218',3,'HUCHICHALEO ARSENDIGA FRANCISCA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-05','690.00','A'),('2181',2,'DOMINGO BARTOLOME LUIS FERNANDO','191821112','CRA 25 CALLE 100','173@terra.com.co','2011-02-03',127591,'2011-04-18','569030.00','A'),('2182',3,'GONZALEZ RIJO JOSE ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-10-02','795610.00','A'),('2183',2,'ANDROVICH MORENO LIZETH LILIAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127300,'2011-10-10','270970.00','A'),('2184',2,'ARREAZA LUGO JESUS ALFREDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-08','968030.00','A'),('2185',2,'NAVEDA CANELON KATHERINE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132775,'2011-09-14','27250.00','A'),('2189',2,'LUGO BEHRENS DENISE SOFIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-08','253980.00','A'),('2190',2,'ERICA ROSE MOLDENHAUVER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-25','175480.00','A'),('2192',2,'SOLORZANO GARCIA ANDREINA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-25','50790.00','A'),('2193',3,'DE LA COSTE MARIA CAROLINA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-26','907640.00','A'),('2194',2,'MARTINEZ DIAZ JUAN JOSE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-08','385810.00','A'),('2195',2,'GALARRAGA ECHEVERRIA DAYEN ALI','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-13','206150.00','A'),('2196',2,'GUTIERREZ RAMIREZ HECTOR JOSÉ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133211,'2011-06-07','873330.00','A'),('2197',2,'LOPEZ GONZALEZ SILVIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127662,'2011-09-01','748170.00','A'),('2198',2,'SEGARES LUTZ JOSE IGNACIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-07','120880.00','A'),('2199',2,'NADER MARTIN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127538,'2011-08-12','359880.00','A'),('22',1,'CARDOZO AMAYA JORGE HUMBERTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-25','908720.00','A'),('2200',3,'NATERA BERMUDEZ OSWALDO JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2010-10-18','436740.00','A'),('2201',2,'COSTA RICARDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',150699,'2011-09-01','104090.00','A'),('2202',5,'GRUNDY VALENZUELA ALAN PATRICK','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-08','210230.00','A'),('2203',2,'MONTENEGRO DANIEL ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-05-26','738890.00','A'),('2204',2,'TAMAI BUNGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-24','63730.00','A'),('2205',5,'VINHAS FORTUNA EDSON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',133535,'2011-09-23','102010.00','A'),('2206',2,'RUIZ ERBS MARIO ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-07-19','318860.00','A'),('2207',2,'VENTURA TINEO MARCEL ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-08','288240.00','A'),('2210',2,'RAMIREZ GUZMAN RICARDO JAIME','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-28','338740.00','A'),('2211',2,'STERNBERG GABRIEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132958,'2011-09-04','18070.00','A'),('2212',2,'MARTELLO ALEJOS ROGER ADOLFO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127443,'2011-06-20','74120.00','A'),('2213',2,'CASTANEDA RAFAEL ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-25','316410.00','A'),('2214',2,'LIMON MARTINEZ WILBERT DE JESUS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128904,'2011-09-19','359690.00','A'),('2215',2,'PEREZ HERNANDEZ MONICA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133211,'2011-05-23','849240.00','A'),('2216',2,'AWAD LOBATO RICARDO SEBASTIAN','191821112','CRA 25 CALLE 100','853@hotmail.com','2011-02-03',127591,'2011-04-12','167100.00','A'),('2217',2,'CEPEDA VANEGAS ENDER ENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132958,'2011-08-22','287770.00','A'),('2218',2,'PEREZ CHIQUIN HECTOR','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132572,'2011-04-13','937580.00','A'),('2220',5,'FRANCO DELGADILLO RONALD FERNANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132775,'2011-09-16','310190.00','A'),('2222',2,'ALCAIDE ALONSO JUAN MIGUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-05-02','455360.00','A'),('2223',3,'BROWNING BENJAMIN MARK','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-06-09','45230.00','A'),('2225',3,'HARWOO BENJAMIN JOEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-09','164620.00','A'),('2226',3,'HOEY TIMOTHY ROSS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-06-09','242910.00','A'),('2227',3,'FERGUSON GARRY','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-28','720700.00','A'),('2228',3,' NORMAN NEVILLE ROBERT','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',288493,'2011-06-29','874750.00','A'),('2229',3,'KUK HYUN CHAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-03-22','211660.00','A'),('223',1,'PINZON PLAZA MARCOS VINICIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-22','856300.00','A'),('2230',3,'SLIPAK NATALIA ANDREA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-07-27','434070.00','A'),('2231',3,'BONELLI MASSIMO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',170601,'2011-07-11','535340.00','A'),('2233',3,'VUYLSTEKE ALEXANDER ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',284647,'2011-09-11','266530.00','A'),('2234',3,'DRESSE ALAIN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',284272,'2011-04-19','209100.00','A'),('2235',3,'PAIRON JEAN LOUIS MARIE RAIMOND','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',284272,'2011-03-03','245940.00','A'),('2236',3,'DEVIANE ACHIM','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',284272,'2010-11-14','602370.00','A'),('2239',3,'DE CANNIERE LOUIS GEORFES HELE MARIE-JOZEF','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',285511,'2011-09-11','993540.00','A'),('2240',1,'ERGO ROBERT','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-28','278270.00','A'),('2241',3,'MYRTES RODRIGUEZ MORGANA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-09-18','410740.00','A'),('2242',3,'BRECHBUEHL HANSRUDOLF','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',249059,'2011-07-27','218900.00','A'),('2243',3,'IVANA SCHLUMPF','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',245206,'2011-04-08','862270.00','A'),('2244',3,'JESSICA JACCART','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',189512,'2011-08-28','654640.00','A'),('2246',3,'PAUSELLI MARIANO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',210050,'2011-09-26','468090.00','A'),('2247',3,'VOLONTEIRO RICCARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-04-13','281230.00','A'),('2248',3,'HOFFMANN ALVIR ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',120773,'2011-08-23','1900.00','A'),('2249',3,'MANTOVANI DANIEL FERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118942,'2011-08-09','165820.00','A'),('225',1,'DUARTE RUEDA JAVIER ALEXANDER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-29','293110.00','A'),('2250',3,'LIMA DA COSTA BRENO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-03-23','823370.00','A'),('2251',3,'TAMBORIN MACIEL MAGALI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-23','619420.00','A'),('2252',3,'BELLO DE MUORA BIANCA','191821112','CRA 25 CALLE 100','969@gmail.com','2011-02-03',118942,'2011-08-03','626970.00','A'),('2253',3,'VINHAS FORTUNA PIETRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',133535,'2011-09-23','276600.00','A'),('2255',3,'BLUMENTHAL JAIRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',117630,'2011-07-20','680590.00','A'),('2256',3,'DOS REIS FILHO ELPIDIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',120773,'2011-08-07','896720.00','A'),('2257',3,'COIMBRA CARDOSO MUNARI FERNANDA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-09','441830.00','A'),('2258',3,'LAZANHA FLAVIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118942,'2011-06-14','519000.00','A'),('2259',3,'LAZANHA FLAVIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118942,'2011-06-14','269480.00','A'),('226',1,'HUERFANO FLOREZ JOHN FAVER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-29','148340.00','A'),('2260',3,'JOVETTA EDILSON','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118941,'2011-09-19','790430.00','A'),('2261',3,'DE OLIVEIRA ANDRE RICARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2011-07-25','143680.00','A'),('2263',3,'MUNDO TEIXEIRA CARVALHO SILVIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118864,'2011-09-19','304670.00','A'),('2264',3,'FERREIRA CINTRA ADRIANO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-04-08','481910.00','A'),('2265',3,'AUGUSTO DE OLIVEIRA MARCOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118685,'2011-08-09','495530.00','A'),('2266',3,'CHEN ROBERTO LUIZ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-03-15','31920.00','A'),('2268',3,'WROBLESKI DIENSTMANN RAQUEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117630,'2011-05-15','269320.00','A'),('2269',3,'MALAGOLA GEDERSON','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118864,'2011-05-30','327540.00','A'),('227',1,'LOPEZ ESCOBAR CARLOS ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-06','862360.00','A'),('2271',3,'GOMES EVANDRO HENRIQUE','191821112','CRA 25 CALLE 100','199@hotmail.es','2011-02-03',118777,'2011-03-24','166100.00','A'),('2273',3,'LANDEIRA FERNANDEZ JESUS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-21','207990.00','A'),('2274',3,'ROSSI RENATO','191821112','CRA 25 CALLE 100','791@hotmail.es','2011-02-03',118777,'2011-09-19','16170.00','A'),('2275',3,'CALMON RANGEL PATRICIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-23','456890.00','A'),('2277',3,'CIFU NETO ROQUE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-04-27','808940.00','A'),('2278',3,'GONCALVES PRETO FRANCISCO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118942,'2011-07-25','336930.00','A'),('2279',3,'JORGE JUNIOR ROBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-05-09','257840.00','A'),('2281',3,'ELENCIUC DEMETRIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-04-20','618510.00','A'),('2283',3,'CUNHA MENDEZ RAFAEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',119855,'2011-07-18','431190.00','A'),('2286',3,'DIAZ LENICE APARECIDA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-05-03','977840.00','A'),('2288',3,'DE CARVALHO SIGEL TATIANA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118777,'2011-07-04','123920.00','A'),('229',1,'GALARZA GIRALDO SERGIO ALDEMAR','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150699,'2011-09-17','746930.00','A'),('2290',3,'ACHOA MORANDI BORGUES SIBELE MARIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118777,'2011-09-12','553890.00','A'),('2291',3,'EPAMINONDAS DE ALMEIDA DELIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-09-22','14080.00','A'),('2293',3,'REIS CASTRO SHANA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118942,'2011-08-03','1430.00','A'),('2294',3,'BERNARDES JUNIOR ARMANDO','191821112','CRA 25 CALLE 100','678@gmail.com','2011-02-03',127591,'2011-08-30','780930.00','A'),('2295',3,'LEMOS DE SOUZA AGUIAR SERGIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-10-03','900370.00','A'),('2296',3,'CARVALHO ADAMS KARIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118942,'2011-08-11','159040.00','A'),('2297',3,'GALLINA SILVANA BRASILEIRA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-23','94110.00','A'),('23',1,'COLMENARES PEDREROS EDUARDO ADOLFO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-02','625870.00','A'),('2300',3,'TAVEIRA DE SIQUEIRA TANIA APARECIDA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-24','443910.00','A'),('2301',3,'DA SIVA LIMA ANDRE LUIS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-23','165020.00','A'),('2302',3,'GALVAO GUSTAVO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118942,'2011-09-12','493370.00','A'),('2303',3,'DA COSTA CRUZ GABRIELA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-07-27','971800.00','A'),('2304',3,'BERNHARD GOTTFRIED RABER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-04-30','378870.00','A'),('2306',3,'ALDANA URIBE PABLO AXEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-05-08','758160.00','A'),('2308',3,'FLORES ALONSO EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-04-26','995310.00','A'),('2309',3,'MADRIGAL MIER Y TERAN LUIS FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-02-23','414650.00','A'),('231',1,'ZAPATA CEBALLOS JUAN MANUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127662,'2011-08-16','430320.00','A'),('2310',3,'GONZALEZ ALVARO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-05-19','87330.00','A'),('2313',3,'MONTES PORTO ANDREA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145135,'2011-09-01','929180.00','A'),('2314',3,'ROCHA SUSUNAGA SERGIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2010-10-18','541540.00','A'),('2315',3,'VASQUEZ CALERO FEDERICO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-22','920160.00','A'),('2317',3,'GONZALEZ FERNANDEZ YUSSEN ALEJANDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-26','120530.00','A'),('2319',3,'ATTIAS WENGROWSKY DAVID','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',150581,'2011-09-07','8580.00','A'),('232',1,'OSPINA ABUCHAIBE ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-07-14','748960.00','A'),('2320',3,'EFRON TOPOROVSKY INES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',116511,'2011-07-15','20810.00','A'),('2321',3,'LUNA PLA DARIO','191821112','CRA 25 CALLE 100','95@terra.com.co','2011-02-03',145135,'2011-09-07','78320.00','A'),('2322',1,'VAZQUEZ DANIELA','191821112','CRA 25 CALLE 100','190@gmail.com','2011-02-03',145135,'2011-05-19','329170.00','A'),('2323',3,'BALBI BALBI JUAN DE DIOS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-08-23','410880.00','A'),('2324',3,'MARROQUÍN FERNANDEZ GELACIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-03-23','66880.00','A'),('2325',3,'VAZQUEZ ZAVALA ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-04-11','101770.00','A'),('2326',3,'SOTO MARTINEZ MARIA ELENA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-23','308200.00','A'),('2328',3,'HERNANDEZ MURILLO RICARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-08-22','253830.00','A'),('233',1,'HADDAD LINERO YEBRAIL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',130608,'2010-06-17','453830.00','A'),('2330',3,'TERMINEL HERNANDEZ DANIELA PATRICIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',190393,'2011-08-15','48940.00','A'),('2331',3,'MIJARES FERNANDEZ MAGDALENA GUADALUPE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145135,'2011-07-31','558440.00','A'),('2332',3,'GONZALEZ LUNA CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',146258,'2011-04-26','645400.00','A'),('2333',3,'DIAZ TORREJON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-05-03','551690.00','A'),('2335',3,'PADILLA GUTIERREZ JESUS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-22','456120.00','A'),('2336',3,'TORRES CORONA JORGE ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-04-11','813900.00','A'),('2337',3,'CASTRO RAMSES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',150581,'2011-07-04','701120.00','A'),('2338',3,'APARICIO VALLEJO RUSSELL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-03-16','63890.00','A'),('2339',3,'ALBOR FERNANDEZ LUIS ARTURO','191821112','CRA 25 CALLE 100','574@gmail.com','2011-02-03',147467,'2011-05-09','216110.00','A'),('234',1,'DOMINGUEZ GOMEZ JUAN CARLOS','191821112','CRA 25 CALLE 100','942@hotmail.com','2011-02-03',127591,'2010-08-22','22260.00','A'),('2342',3,'REY ALEJANDRO','191821112','CRA 25 CALLE 100','110@facebook.com','2011-02-03',127591,'2011-03-04','313330.00','A'),('2343',3,'MENDOZA GONZALES ADRIANA','191821112','CRA 25 CALLE 100','295@yahoo.com','2011-02-03',127591,'2011-03-23','178720.00','A'),('2344',3,'RODRIGUEZ SEGOVIA JESUS ALONSO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2011-07-26','953590.00','A'),('2345',3,'GONZALEZ PELAEZ EDUARDO DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-26','231790.00','A'),('2347',3,'VILLEDA GARCIA DAVID','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',144939,'2011-05-29','795600.00','A'),('2348',3,'FERRER BURGES EMILIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-04-11','83430.00','A'),('2349',3,'NARRO ROBLES LUIS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-03-16','30330.00','A'),('2350',3,'ZALDIVAR UGALDE CARLOS IGNACIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-06-19','901380.00','A'),('2351',3,'VARGAS RODRIGUEZ VALENTE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',146258,'2011-04-26','415910.00','A'),('2354',3,'DEL PIERO FRANCISCO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-05-09','19890.00','A'),('2355',3,'VILLAREAL ANA CRISTINA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-23','211810.00','A'),('2356',3,'GARRIDO FERRAN JORGE ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-22','999370.00','A'),('2357',3,'PEREZ PRECIADO EDMUNDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-22','361450.00','A'),('2358',3,'AGUIRRE VIGNAU DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',150581,'2011-08-21','809110.00','A'),('2359',3,'LOPEZ SESMA TOMAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',146258,'2011-09-14','961200.00','A'),('236',1,'VENTO BETANCOURT LUIS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-03-19','682230.00','A'),('2360',3,'BERNAL MALDONADO GUILLERMO JAVIER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-09-19','378670.00','A'),('2361',3,'GUZMAN DELGADO ALFREDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-22','9770.00','A'),('2362',3,'GUZMAN DELGADO MARTIN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-22','912850.00','A'),('2363',3,'GUSMAND ELGADO JORGE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-22','534910.00','A'),('2364',3,'RENDON BUICK JORGE JOSE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-07-26','936010.00','A'),('2365',3,'HERNANDEZ HERNANDEZ HERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-22','75340.00','A'),('2366',3,'ALVAREZ PAZ PEDRO RAFAEL ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-01-02','568650.00','A'),('2367',3,'MIJARES DE LA BARREDA FERNANDA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-07-31','617240.00','A'),('2368',3,'MARTINEZ LOPEZ MAURICIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-08-24','380250.00','A'),('2369',3,'GAYTAN MILLAN YANERI','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-23','49520.00','A'),('237',1,'BARGUIL ASSIS DAVID ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117460,'2009-09-03','161770.00','A'),('2370',3,'DURAN HEREDIA FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-04-15','106850.00','A'),('2371',3,'SEGURA MIJARES CRISTOBAL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-07-31','385700.00','A'),('2372',3,'TEPOS VALTIERRA ERIK ARTURO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',116345,'2011-09-01','607930.00','A'),('2373',3,'RODRIGUEZ AGUILAR EDMUNDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-05-04','882570.00','A'),('2374',3,'MYSLABODSKI MICHAEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-03-08','589060.00','A'),('2375',3,'HERNANDEZ MIRELES JATNIEL ELIOENAI','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-26','297600.00','A'),('2376',3,'SNELL FERNANDEZ SYNTYHA ROCIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-22','720830.00','A'),('2378',3,'HERNANDEZ EIVET AARON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-26','394200.00','A'),('2379',3,'LOPEZ GARZA JAIME','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-22','837000.00','A'),('238',1,'GARCIA PINO CARLOS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-10','762140.00','A'),('2381',3,'TOSCANO ESTRADA RUBEN ENRIQUE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-22','500940.00','A'),('2382',3,'RAMIREZ HUDSON ROGER SILVESTER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-22','497550.00','A'),('2383',3,'RAMOS JUAN ANTONIO','191821112','CRA 25 CALLE 100','362@yahoo.es','2011-02-03',127591,'2011-08-22','984940.00','A'),('2384',3,'CORTES CERVANTES ALEJANDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145135,'2011-04-11','432020.00','A'),('2385',3,'POZOS ESQUIVEL DAVID','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-09-27','205310.00','A'),('2387',3,'ESTRADA AGUIRRE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-22','36470.00','A'),('2388',3,'GARCIA RAMIREZ RAMON','191821112','CRA 25 CALLE 100','177@yahoo.es','2011-02-03',127591,'2011-08-22','990910.00','A'),('2389',3,'PRUD HOMME GARCIA CUBAS XAVIER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-05-18','845140.00','A'),('239',1,'PINZON ARDILA GUSTAVO ALFONSO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-01','325400.00','A'),('2390',3,'ELIZABETH OCHOA ROJAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-05-21','252950.00','A'),('2391',3,'MEZA ALVAREZ JOSE ALBERTO','191821112','CRA 25 CALLE 100','646@terra.com.co','2011-02-03',144939,'2011-05-09','729340.00','A'),('2392',3,'HERRERA REYES RENATO ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2010-02-28','887860.00','A'),('2393',3,'MURILLO GARIBAY GILBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-08-20','251280.00','A'),('2394',3,'GARCIA JIMENEZ CARLOS MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-10-09','592830.00','A'),('2395',3,'GUAGNELLI MARTINEZ BLANCA MONICA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145184,'2010-10-05','210320.00','A'),('2397',3,'GARCIA CISNEROS RAUL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-07-04','734530.00','A'),('2398',3,'MIRANDA ROMO FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-22','853340.00','A'),('24',1,'ARREGOCES GARZON NELSON ORLANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127783,'2011-08-12','403190.00','A'),('240',1,'ARCINIEGAS GOMEZ ALBERTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-18','340590.00','A'),('2400',3,'HERRERA ABARCA EDUARDO VICENTE ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-22','755620.00','A'),('2403',3,'CASTRO MONCAYO LUIS ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-07-29','617260.00','A'),('2404',3,'GUZMAN DELGADO OSBALDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-22','56250.00','A'),('2405',3,'GARCIA LOPEZ DAVID','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-22','429500.00','A'),('2406',3,'JIMENEZ GAMEZ RAFAEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',245206,'2011-03-23','978720.00','A'),('2407',3,'BECERRA MARTINEZ JUAN PABLO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-08-23','605130.00','A'),('2408',3,'GARCIA MARTINEZ BERNARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-22','89480.00','A'),('2409',3,'URRUTIA RAYAS BALTAZAR','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-22','632020.00','A'),('241',1,'MEDINA AGUILA NESTOR EDUARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-09','726730.00','A'),('2411',3,'VERGARA MENDOZAVICTOR HUGO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-06-15','562230.00','A'),('2412',3,'MENDOZA MEDINA JORGE IGNACIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-22','136170.00','A'),('2413',3,'CORONADO CASTILLO HUGO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',147529,'2011-05-09','994160.00','A'),('2414',3,'GONZALEZ SOTO DELIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-03-23','562280.00','A'),('2415',3,'HERNANDEZ FLORES STEPHANIE REYNA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-23','828940.00','A'),('2416',3,'ABRAJAN GUERRERO MARIA DE LOS ANGELES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-03-23','457860.00','A'),('2417',3,'HERNANDEZ LOERA ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-23','802490.00','A'),('2418',3,'TARÍN LÓPEZ JOSE CARMEN','191821112','CRA 25 CALLE 100','117@gmail.com','2011-02-03',127591,'2011-03-23','638870.00','A'),('242',1,'JULIO NARVAEZ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-05','611890.00','A'),('2420',3,'BATTA MARQUEZ VICTOR ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-08-23','17820.00','A'),('2423',3,'GONZALEZ REYES JUAN JOSE','191821112','CRA 25 CALLE 100','55@yahoo.es','2011-02-03',127591,'2011-07-26','758070.00','A'),('2425',3,'ALVAREZ RODRIGUEZ HIRAM RAMSES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-23','847420.00','A'),('2426',3,'FEMATT HERNANDEZ JESUS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-03-23','164130.00','A'),('2427',3,'GUTIERRES ORTEGA FRANCISCO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-22','278410.00','A'),('2428',3,'JIMENEZ DIAZ JUAN JORGE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-05-13','899650.00','A'),('2429',3,'VILLANUEVA PÉREZ MIGUEL ANGEL','191821112','CRA 25 CALLE 100','656@yahoo.es','2011-02-03',150449,'2011-03-23','663000.00','A'),('243',1,'GOMEZ REYES ANDRES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',126674,'2009-12-20','879240.00','A'),('2430',3,'CERON GOMEZ JOEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-03-21','616070.00','A'),('2431',3,'LOPEZ LINALDI DEMETRIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-05-09','91360.00','A'),('2432',3,'JOSEPH NATHAN PEDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-05-02','608580.00','A'),('2433',3,'CARREÑO PULIDO RUBEN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',147242,'2011-06-19','768810.00','A'),('2434',3,'AREVALO MERCADO CARLOS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-06-12','18320.00','A'),('2436',3,'RAMIREZ QUEZADA ERIKA BELEM','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-03','870930.00','A'),('2438',3,'TATTO PRIETO MIGUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-05-19','382740.00','A'),('2439',3,'LOPEZ AYALA LUIS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-10-08','916370.00','A'),('244',1,'DEVIS EDGAR JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-10-08','560540.00','A'),('2440',3,'HERNANDEZ TOVAR JORGE ENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',144991,'2011-10-02','433650.00','A'),('2441',3,'COLLIARD LOPEZ PETER GEORGE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-09','419120.00','A'),('2442',3,'FLORES CHALA GARY','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-22','794670.00','A'),('2443',3,'FANDIÑO MUÑOZ ZAMIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-07-19','715970.00','A'),('2444',3,'BARROSO VARGAS DIEGO ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-26','195840.00','A'),('2446',3,'CRUZ RAMIREZ JUAN PEDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',145135,'2011-07-14','569050.00','A'),('2447',3,'TIJERINA ACOSTA SERGIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-26','351280.00','A'),('2449',3,'JASSO BARRERA CARLOS GUSTAVO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-08-24','192560.00','A'),('245',1,'LENCHIG KALEDA SERGIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-09-02','165000.00','A'),('2450',3,'GARRIDO PATRON VICTOR','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-09-27','814970.00','A'),('2451',3,'VELASQUEZ GUERRERO RUBEN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-20','497150.00','A'),('2452',3,'CHOI SUNGKYU','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',209494,'2011-08-16','40860.00','A'),('2453',3,'CONTRERAS LOPEZ SERGIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',145135,'2011-08-05','712830.00','A'),('2454',3,'CHAVEZ BATAA OSCAR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',150699,'2011-06-14','441590.00','A'),('2455',3,'LEE JONG HYUN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',131272,'2011-10-10','69460.00','A'),('2456',3,'MEDINA PADILLA CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',146589,'2011-04-20','22530.00','A'),('2457',3,'FLORES CUEVAS DOTNARA LUZ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',145135,'2011-05-17','904260.00','A'),('2458',3,'LIU YONGCHAO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-10-09','453710.00','A'),('2459',3,'CASTRO FERNANDES PORTOCARRERO JOSE MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',195892,'2011-06-14','555790.00','A'),('246',1,'YAMHURE FONSECAN ERNESTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2009-10-03','143350.00','A'),('2460',3,'DUAN WEI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-06-22','417820.00','A'),('2461',3,'ZHU XUTAO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-18','421740.00','A'),('2462',3,'MEI SHUANNIU','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-10-09','855240.00','A'),('2464',3,'VEGA VACA LUIS ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-06-08','489110.00','A'),('2465',3,'TANG YUMING','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',147578,'2011-03-26','412660.00','A'),('2466',3,'VILLEDA GARCIA DAVID','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',144939,'2011-06-07','595990.00','A'),('2467',3,'GARCIA GARZA BLANCA ARMIDA','191821112','CRA 25 CALLE 100','927@hotmail.com','2011-02-03',145135,'2011-05-20','741940.00','A'),('2468',3,'HERNANDEZ MARTINEZ EMILIO JOAQUIN','191821112','CRA 25 CALLE 100','356@facebook.com','2011-02-03',145135,'2011-06-16','921740.00','A'),('2469',3,'WANG FAN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',185363,'2011-08-20','382860.00','A'),('247',1,'ROJAS RODRIGUEZ ALVARO HERNAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-09','221760.00','A'),('2470',3,'WANG FEI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-10-09','149100.00','A'),('2471',3,'BERNAL MALDONADO GUILLERMO JAVIER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118777,'2011-07-26','596900.00','A'),('2472',3,'GUTIERREZ GOMEZ ARTURO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145184,'2011-07-24','537210.00','A'),('2474',3,'LAN TYANYE ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-06-23','865050.00','A'),('2475',3,'LAN SHUZHEN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-23','639240.00','A'),('2476',3,'RODRIGUEZ GONZALEZ CARLOS ARTURO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',144616,'2011-08-09','601050.00','A'),('2477',3,'HAIBO NI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-20','87540.00','A'),('2479',3,'RUIZ RODRIGUEZ GRACIELA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-05-20','910130.00','A'),('248',1,'GONZALEZ RODRIGUEZ ANDRES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-03','678750.00','A'),('2480',3,'OROZCO MACIAS NORMA LETICIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-09-20','647010.00','A'),('2481',3,'MEZA ALVAREZ JOSE ALBERTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',144939,'2011-06-07','504670.00','A'),('2482',3,'RODRIGUEZ FIGUEROA RODRIGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',146308,'2011-04-27','582290.00','A'),('2483',3,'CARREON GUERRA ANA CECILIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',110709,'2011-05-27','397440.00','A'),('2484',3,'BOTELHO BARRETO CARLOS JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',195892,'2011-08-02','240350.00','A'),('2485',3,'CORONADO CASTILLO HUGO','191821112','CRA 25 CALLE 100','209@yahoo.com.mx','2011-02-03',147529,'2011-06-07','9420.00','A'),('2486',3,'DE FUENTES GARZA MARCELO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-18','326030.00','A'),('2487',3,'GONZALEZ DUHART GUTIERREZ HORACIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-05-17','601920.00','A'),('2488',3,'LOPEZ LINALDI DEMETRIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-06-07','31500.00','A'),('2489',3,'CASTRO MONCAYO JOSE LUIS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-06-15','351720.00','A'),('249',1,'CASTRO RIBEROS JULIAN ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-23','728470.00','A'),('2490',3,'SERRALDE LOPEZ MARIA GUADALUPE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-07-25','664120.00','A'),('2491',3,'GARRIDO PATRON VICTOR','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-09-29','265450.00','A'),('2492',3,'BRAUN JUAN NICOLAS ANTONIE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-28','334880.00','A'),('2493',3,'BANKA RAHUL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',141138,'2011-05-02','878070.00','A'),('2494',1,'GARCIA MARTINEZ MARIA VIRGINIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-04-17','385690.00','A'),('2495',1,'MARIA VIRGINIA','191821112','CRA 25 CALLE 100','298@yahoo.com.mx','2011-02-03',127591,'2011-04-16','294220.00','A'),('2496',3,'GOMEZ ZENDEJAS MARIA ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145184,'2011-06-06','314060.00','A'),('2498',3,'MENDEZ MARTINEZ RAUL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145135,'2011-07-10','496040.00','A'),('2499',3,'CARREON GUERRA ANA CECILIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-07-29','417240.00','A'),('2501',3,'OLIVAR ARIAS ISMAEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-06-06','738850.00','A'),('2502',3,'ABOUMRAD NASTA EMILE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-07-26','899890.00','A'),('2503',3,'RODRIGUEZ JIMENEZ ROBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-05-03','282900.00','A'),('2504',3,'ESTADOS UNIDOS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145135,'2011-07-27','714840.00','A'),('2505',3,'SOTO MUÑOZ MARCO GREGORIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-26','725480.00','A'),('2506',3,'GARCIA MONTER ANA OTILIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-10-05','482880.00','A'),('2507',3,'THIRUKONDA VIGNESH','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',126180,'2011-05-02','237950.00','A'),('2508',3,'RAMIREZ REATIAGA LYDA YOANA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',150699,'2011-06-26','741120.00','A'),('2509',3,'SEPULVEDA RODRIGUEZ JESUS ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-26','991730.00','A'),('251',1,'MEJIA PIZANO ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-10','845000.00','A'),('2510',3,'FRANCISCO MARIA DIAS COSTA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',179111,'2011-07-12','735330.00','A'),('2511',3,'TEIXEIRA REGO DE OLIVEIRA TIAGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',179111,'2011-06-14','701430.00','A'),('2512',3,'PHILLIP JAMES','191821112','CRA 25 CALLE 100','766@terra.com.co','2011-02-03',127591,'2011-09-28','301150.00','A'),('2513',3,'ERXLEBEN ROBERT','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',216125,'2011-04-13','401460.00','A'),('2514',3,'HUGHES CONNORRICHARD','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',269033,'2011-06-22','103880.00','A'),('2515',3,'LEBLANC MICHAEL PAUL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',216125,'2011-08-09','314990.00','A'),('2517',3,'DEVINE CHRISTOPHER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',269033,'2011-06-22','371560.00','A'),('2518',3,'WONG BRIAN TEK FUNG','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',126885,'2011-09-22','67910.00','A'),('2519',3,'BIDWALA IRFAN A','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',154811,'2011-03-28','224840.00','A'),('252',1,'JIMENEZ LARRARTE JUAN GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-01','406770.00','A'),('2520',3,'LEE HO YIN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',147578,'2011-08-29','920470.00','A'),('2521',3,'DE MOURA MARTINS NUNO ALEXANDRE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196094,'2011-10-09','927850.00','A'),('2522',3,'DA COSTA GOMES CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',179111,'2011-08-10','877850.00','A'),('2523',3,'HOOGWAERTS PAUL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-02-11','605690.00','A'),('2524',3,'LOPES MARQUES LUIS JOSE MANUEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118942,'2011-09-20','394910.00','A'),('2525',3,'CORREIA CAVACO JOSE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',178728,'2011-10-09','157470.00','A'),('2526',3,'HALL JOHN WILLIAM','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-09','602620.00','A'),('2527',3,'KNIGHT MARTIN GYLES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',113550,'2011-08-29','540670.00','A'),('2528',3,'HINDS THMAS TRISTAN PELLEW','191821112','CRA 25 CALLE 100','337@yahoo.es','2011-02-03',116862,'2011-08-23','895500.00','A'),('2529',3,'CARTON ALAN JOHN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-07-31','855510.00','A'),('253',1,'AZCUENAGA RAMIREZ NICOLAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',298472,'2011-05-10','498840.00','A'),('2530',3,'GHIM CHEOLL HO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-27','591060.00','A'),('2531',3,'PHILLIPS NADIA SULLIVAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-28','388750.00','A'),('2532',3,'CHANG KUKHYUN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-03-22','170560.00','A'),('2533',3,'KANG SEOUNGHYUN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',173192,'2011-08-24','686540.00','A'),('2534',3,'CHUNG BYANG HOON','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',125744,'2011-03-14','921030.00','A'),('2535',3,'SHIN MIN CHUL ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',173192,'2011-08-24','545510.00','A'),('2536',3,'CHOI JIN SUNG','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-15','964490.00','A'),('2537',3,'CHOI SUNGMIN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-27','185910.00','A'),('2538',3,'PARK JAESER ','191821112','CRA 25 CALLE 100','525@terra.com.co','2011-02-03',127591,'2011-09-03','36090.00','A'),('2539',3,'KIM DAE HOON ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',173192,'2011-08-24','622700.00','A'),('254',1,'AVENDAÑO PABON ROLANDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-05-12','273900.00','A'),('2540',3,'LYNN MARIA CRISTINA NORMA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',116862,'2011-09-21','5220.00','A'),('2541',3,'KIM CHINIL JULIAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',147578,'2011-08-27','158030.00','A'),('2543',3,'HALL JOHN WILLIAM','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-09','398290.00','A'),('2544',3,'YOSUKE PERDOMO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',165600,'2011-07-26','668040.00','A'),('2546',3,'AKAGI KAZAHIKO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-26','722510.00','A'),('2547',3,'NELSON JONATHAN GARY','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-09','176570.00','A'),('2548',3,'DUONG HOP BA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',116862,'2011-09-14','715310.00','A'),('2549',3,'CHAO-VILLEGAS NIKOLE TUK HING','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',180063,'2011-04-05','46830.00','A'),('255',1,'CORREA ALVARO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-27','872990.00','A'),('2551',3,'APPELS LAURENT BERNHARD','191821112','CRA 25 CALLE 100','891@hotmail.es','2011-02-03',135190,'2011-08-16','300620.00','A'),('2552',3,'PLAISIER ERIK JAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',289294,'2011-05-23','238440.00','A'),('2553',3,'BLOK HENDRIK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',288552,'2011-03-27','290350.00','A'),('2554',3,'NETTE ANNA STERRE','191821112','CRA 25 CALLE 100','621@yahoo.com.mx','2011-02-03',185363,'2011-07-30','736400.00','A'),('2555',3,'FRIELING HANS ERIC','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',107469,'2011-07-31','810990.00','A'),('2556',3,'RUTTE CORNELIA JANTINE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',143579,'2011-03-30','845710.00','A'),('2557',3,'WALRAVEN PIETER PAUL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',289294,'2011-07-29','795620.00','A'),('2558',3,'TREBES LAURENS JOHANNES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-11-22','440940.00','A'),('2559',3,'KROESE ROLANDWILLEBRORDUSMARIA','191821112','CRA 25 CALLE 100','188@facebook.com','2011-02-03',110643,'2011-06-09','817860.00','A'),('256',1,'FARIAS GARCIA REINI','191821112','CRA 25 CALLE 100','615@hotmail.com','2011-02-03',127591,'2011-03-05','543220.00','A'),('2560',3,'VAN DER HEIDE HENDRIK','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',291042,'2011-09-04','766460.00','A'),('2561',3,'VAN DEN BERG DONAR ALEXANDER GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',190393,'2011-07-13','378720.00','A'),('2562',3,'GODEFRIDUS JOHANNES ROPS ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127622,'2011-10-02','594240.00','A'),('2564',3,'WAT YOK YIENG','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',287095,'2011-03-22','392370.00','A'),('2565',3,'BUIS JACOBUS NICOLAAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-20','456810.00','A'),('2567',3,'CHIPPER FRANCIUSCUS NICOLAAS ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',291599,'2011-07-28','164300.00','A'),('2568',3,'ONNO ROUKENS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-11-28','500670.00','A'),('2569',3,'PETRUS MARCELLINUS STEPHANUS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',150699,'2011-06-25','10430.00','A'),('2571',3,'VAN VOLLENHOVEN IVO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-08','719370.00','A'),('2572',3,'LAMBOOIJ BART','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-09-20','946480.00','A'),('2573',3,'LANSER MARIANA PAULINE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',289294,'2011-04-09','574270.00','A'),('2575',3,'KLERKEN JOHANNES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',286101,'2011-05-24','436840.00','A'),('2576',3,'KRAS JACOBUS NICOLAAS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',289294,'2011-09-26','88410.00','A'),('2577',3,'FUCHS MICHAEL JOSEPH','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',185363,'2011-07-30','131530.00','A'),('2578',3,'BIJVANK ERIK JAN WILLEM','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-04-11','392410.00','A'),('2579',3,'SCHMIDT FRANC ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',106742,'2011-09-11','567470.00','A'),('258',1,'SOTO GONZALEZ FRANCISCO LAZARO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',116511,'2011-05-07','856050.00','A'),('2580',3,'VAN DER KOOIJ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',291277,'2011-07-10','660130.00','A'),('2581',2,'KRIS ANDRE GEORGES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2011-07-26','598240.00','A'),('2582',3,'HARDING LUIS ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',263813,'2011-05-08','10820.00','A'),('2583',3,'ROLLI GUY JEAN ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-05-31','259370.00','A'),('2584',3,'NIETO PARRA SEBASTIAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',263813,'2011-07-04','264400.00','A'),('2585',3,'LASTRA CHAVEZ PABLO ARMANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',126674,'2011-05-25','543890.00','A'),('2586',1,'ZAIDA MAYERLY','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-05-05','926250.00','A'),('2587',1,'OSWALDO SOLORZANO CONTRERAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-28','999590.00','A'),('2588',3,'ZHOU XUAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-18','219200.00','A'),('2589',3,'HUANG ZHENGQUN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-18','97230.00','A'),('259',1,'GALARZA NARANJO JAIME RENE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-18','988830.00','A'),('2590',3,'HUANG ZHENQUIN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-18','828560.00','A'),('2591',3,'WEIDEN MULLER AMURER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-29','851110.00','A'),('2593',3,'OESTERHAUS CORNELIA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',256231,'2011-03-29','295960.00','A'),('2594',3,'RINTALAHTI JUHA HENRIK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-23','170220.00','A'),('2597',3,'VERWIJNEN JONAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',289697,'2011-02-03','638040.00','A'),('2598',3,'SHAW ROBERT','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',157414,'2011-07-10','273550.00','A'),('2599',3,'MAKINEN TIMO JUHANI','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',196234,'2011-09-13','453600.00','A'),('260',1,'RIVERA CAÑON JOSE EDWARD','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127538,'2011-09-19','375990.00','A'),('2600',3,'HONKANIEMI ARTO OLAVI','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',301387,'2011-09-06','447380.00','A'),('2601',3,'DAGG JAMIE MICHAEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',216125,'2011-08-09','876080.00','A'),('2602',3,'BOLAND PATRICK CHARLES ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',216125,'2011-09-14','38260.00','A'),('2603',2,'ZULEYKA JERRYS RIVERA MENDOZA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',150347,'2011-03-27','563050.00','A'),('2604',3,'DELGADO SEQUIRA FERRAO JOSE PEDRO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188228,'2011-08-16','700460.00','A'),('2605',3,'YORRO LORA EDGAR MANUEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127689,'2011-06-17','813180.00','A'),('2606',3,'CARRASCO RODRIGUEZQCARLOS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127689,'2011-06-17','964520.00','A'),('2607',30,'ORJUELA VELASQUEZ JULIANA MARIA','191821112','CRA 25 CALLE 100','372@terra.com.co','2011-02-03',132775,'2011-09-01','383070.00','A'),('2608',3,'DUQUE DUTRA LUIS EDUARDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118942,'2011-07-12','21780.00','A'),('261',1,'MURCIA MARQUEZ NESTOR JAVIER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-19','913480.00','A'),('2610',3,'NGUYEN HUU KHUONG','191821112','CRA 25 CALLE 100','457@facebook.com','2011-02-03',132958,'2011-05-07','733120.00','A'),('2611',3,'NGUYEN VAN LAP','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-05-07','786510.00','A'),('2612',3,'PHAM HUU THU','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-05-07','733200.00','A'),('2613',3,'DANG MING CUONG','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132958,'2011-05-07','306460.00','A'),('2614',3,'VU THI HONG HANH','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132958,'2011-05-07','332710.00','A'),('2615',3,'CHAU TANG LANG','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-05-07','744190.00','A'),('2616',3,'CHU BAN THING','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132958,'2011-05-07','722800.00','A'),('2617',3,'NGUYEN QUANG THU','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132958,'2011-05-07','381420.00','A'),('2618',3,'TRAN THI KIM OANH','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-05-07','738690.00','A'),('2619',3,'NGUYEN VAN VINH','191821112','CRA 25 CALLE 100','422@yahoo.com.mx','2011-02-03',132958,'2011-05-07','549210.00','A'),('262',1,'ABDULAZIS ELNESER KHALED','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-27','439430.00','A'),('2620',3,'NGUYEN XUAN VY','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132958,'2011-05-07','529950.00','A'),('2621',3,'HA MANH HOA','191821112','CRA 25 CALLE 100','439@gmail.com','2011-02-03',132958,'2011-05-07','2160.00','A'),('2622',3,'ZAFIROPOULO STEVEN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-25','420930.00','A'),('2623',3,'ZAFIROPOULO ANA I','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-25','98170.00','A'),('2624',3,'TEMIGTERRA MASSIMILIANO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',210050,'2011-09-26','228070.00','A'),('2625',3,'CASSES TRINDADE HELGIO HENRIQUE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118402,'2011-09-13','845850.00','A'),('2626',3,'ASCOLI MASTROENI MARCO ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',120773,'2011-09-07','545010.00','A'),('2627',3,'MONTEIRO SOARES MARCOS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',120773,'2011-07-18','187530.00','A'),('2629',3,'HALL ALVARO AUGUSTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',120773,'2011-08-02','950450.00','A'),('2631',3,'ANDRADE CATUNDA RAFAEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',120773,'2011-08-23','370860.00','A'),('2632',3,'MAGALHAES MAYRA ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118767,'2011-08-23','320960.00','A'),('2633',3,'SPREAFICO MIRIAM ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118587,'2011-08-23','492220.00','A'),('2634',3,'GOMES FERREIRA HELIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',125812,'2011-08-23','498220.00','A'),('2635',3,'FERNANDES SENNA PIRES SERGIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-10-05','14460.00','A'),('2636',3,'BALESTRO FLORIANO FABIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',120773,'2011-08-24','577630.00','A'),('2637',3,'CABANA DE QUEIROZ ANDRADE ALAXANDRE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-23','844780.00','A'),('2638',3,'DALBOSCO CARLA','191821112','CRA 25 CALLE 100','380@yahoo.com.mx','2011-02-03',127591,'2011-06-30','491010.00','A'),('264',1,'ROMERO MONTOYA NICOLAY ENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-13','965220.00','A'),('2640',3,'BILLINI CRUZ RICARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',144215,'2011-03-27','130530.00','A'),('2641',3,'VASQUES ARIAS DAVID','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',144509,'2011-08-19','890500.00','A'),('2642',3,'ROJAS VOLQUEZ GLADYS MICHELLE','191821112','CRA 25 CALLE 100','852@gmail.com','2011-02-03',144215,'2011-07-25','60930.00','A'),('2643',3,'LLANEZA GIL JUAN RAFAELMO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',144215,'2011-07-08','633120.00','A'),('2646',3,'AVILA PEROZO IANKEL JACOB','191821112','CRA 25 CALLE 100','318@hotmail.com','2011-02-03',144215,'2011-09-03','125600.00','A'),('2647',3,'REGULAR EDUARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-19','583540.00','A'),('2648',3,'CORONADO BATISTA JOSE ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-19','540910.00','A'),('2649',3,'OLIVIER JOSE VICTOR','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',144509,'2011-08-19','953910.00','A'),('2650',3,'YOO HOE TAEK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',145135,'2011-08-25','146820.00','A'),('266',1,'CUECA RODRIGUEZ CARLOS ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-22','384280.00','A'),('267',1,'NIETO ALVARADO ARMANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2008-04-28','553450.00','A'),('269',1,'LEAL HOLGUIN FRANCISCO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-25','411700.00','A'),('27',1,'MORENO MORENO CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2009-09-15','995620.00','A'),('270',1,'CANO IBAÑES JUAN FELIPE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-03','215260.00','A'),('271',1,'RESTREPO HERRAN ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132775,'2011-04-18','841220.00','A'),('272',3,'RIOS FRANCISCO JOSE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',199862,'2011-03-24','560300.00','A'),('273',1,'MADERO LORENZANA NICOLAS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-03','277850.00','A'),('274',1,'GOMEZ GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-09-24','708350.00','A'),('275',1,'CONSUEGRA ARENAS ANDRES MAURICIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-09','708210.00','A'),('276',1,'HURTADO ROJAS NICOLAS','191821112','CRA 25 CALLE 100','463@yahoo.com.mx','2011-02-03',127591,'2011-09-07','416000.00','A'),('277',1,'MURCIA BAQUERO MARCO ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-02','955370.00','A'),('2773',3,'TAKUBO KAORI','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',165753,'2011-05-12','872390.00','A'),('2774',3,'OKADA MAKOTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',165753,'2011-06-19','921480.00','A'),('2775',3,'TAKEDA AKIO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',21062,'2011-06-19','990250.00','A'),('2776',3,'KOIKE WATARU ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',165753,'2011-06-19','186800.00','A'),('2777',3,'KUBO SHINEI','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',165753,'2011-02-13','963230.00','A'),('2778',3,'KANNO YONEZO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',165600,'2011-07-26','255770.00','A'),('278',3,'PARENT ELOIDE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',267980,'2011-05-01','528840.00','A'),('2781',3,'SUNADA MINORU ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',165753,'2011-06-19','724450.00','A'),('2782',3,'INOUE KASUYA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-22','87150.00','A'),('2783',3,'OTAKE NOBUTOSHI','191821112','CRA 25 CALLE 100','208@facebook.com','2011-02-03',127591,'2011-06-11','262380.00','A'),('2784',3,'MOTOI KEN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',165753,'2011-06-19','50470.00','A'),('2785',3,'TANAKA KIYOTAKA ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',165753,'2011-06-19','465210.00','A'),('2787',3,'YUMIKOPERDOMO','191821112','CRA 25 CALLE 100','600@yahoo.es','2011-02-03',165600,'2011-07-26','477550.00','A'),('2788',3,'FUKUSHIMA KENZO','191821112','CRA 25 CALLE 100','599@gmail.com','2011-02-03',156960,'2011-05-30','863860.00','A'),('2789',3,'GELGIN LEVENT NURI','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-26','886630.00','A'),('279',1,'AVIATUR S. A.','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-02','778110.00','A'),('2791',3,'GELGIN ENIS ENRE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-26','547940.00','A'),('2792',3,'PAZ SOTO LUBRASCA MARIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',143954,'2011-06-27','215000.00','A'),('2794',3,'MOURAD TAOUFIKI','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-13','511000.00','A'),('2796',3,'DASTUS ALAIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',218656,'2011-05-29','774010.00','A'),('2797',3,'MCDONALD MICHAEL LORNE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',269033,'2011-07-19','85820.00','A'),('2799',3,'KLESO MICHAEL QUENTIN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',269033,'2011-07-26','277950.00','A'),('28',1,'GONZALEZ ACUÑA EDGAR MAURICIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-09-19','531710.00','A'),('280',3,'NEME KARIM CHAIBAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',135967,'2010-05-02','304040.00','A'),('2800',3,'CLERK CHARLES ALEXANDER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',244158,'2011-07-26','68490.00','A'),('2801',3,'BURRIS MAURICE STEWARD','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-27','508600.00','A'),('2802',1,'PINCHEN CLAIRE ELAINE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',216125,'2011-04-13','337530.00','A'),('2803',3,'LETTNER EVA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',231224,'2011-09-20','161860.00','A'),('2804',3,'CANUEL LUCIE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',146258,'2011-09-20','796710.00','A'),('2805',3,'IGLESIAS CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',216125,'2011-08-02','497980.00','A'),('2806',3,'PAQUIN JEAN FRANCOIS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',269033,'2011-03-27','99760.00','A'),('2807',3,'FOURNIER DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',228688,'2011-05-19','4860.00','A'),('2808',3,'BILODEAU MARTIN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-13','725030.00','A'),('2809',3,'KELLNER PETER WILLIAM','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',130757,'2011-07-24','610570.00','A'),('2810',3,'ZAZULAK INGRID ROSEMARIE','191821112','CRA 25 CALLE 100','683@facebook.com','2011-02-03',240550,'2011-09-11','877770.00','A'),('2811',3,'RUCCI JHON MARIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',285188,'2011-05-10','557130.00','A'),('2813',3,'JONCAS MARC','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',33265,'2011-03-21','90360.00','A'),('2814',3,'DUCHARME ERICK','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-03-29','994750.00','A'),('2816',3,'BAILLOD THOMAS DAVID ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',239124,'2010-10-20','529130.00','A'),('2817',3,'MARTINEZ SORIA JOSE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',289697,'2011-09-06','537630.00','A'),('2818',3,'TAMARA RABER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-30','100750.00','A'),('2819',3,'BURGI VINCENT EMANUEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',245206,'2011-04-20','890860.00','A'),('282',1,'HUESPED ASISTENTE A LA CONVENCION DE LA DIAN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2009-06-24','17160.00','A'),('2820',3,'ROBLES TORRALBA IVAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',238949,'2011-05-16','152030.00','A'),('2821',3,'CONSUEGRA MARIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-06','87600.00','A'),('2822',3,'CELMA ADROVER LAIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',190393,'2011-03-23','981880.00','A'),('2823',3,'ALVAREZ JUAN PABLO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150699,'2011-06-20','646610.00','A'),('2824',3,'VARGAS WOODROFFE FRANCISCO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',157414,'2011-06-22','287410.00','A'),('2825',3,'GARCIA GUILLEN VICENTE LUIS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',144215,'2011-08-19','497230.00','A'),('2826',3,'GOMEZ GARCIA DIAMANTES PATRICIA MARIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',286785,'2011-09-22','623930.00','A'),('2827',3,'PEREZ IGLESIAS BIBIANA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-09-30','627940.00','A'),('2830',3,'VILLALONGA MORENES MARIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',169679,'2011-05-29','474910.00','A'),('2831',3,'REY LOPEZ DAVID','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',150699,'2011-08-03','7380.00','A'),('2832',3,'HOYO APARICIO JESUS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',116511,'2011-09-19','612180.00','A'),('2836',3,'GOMEZ GARCIA LOPEZ CARLOS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',150699,'2011-09-21','277540.00','A'),('2839',3,'GALIMERTI MARCO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',235197,'2011-08-28','156870.00','A'),('2840',3,'BAROZZI GIUSEPE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',231989,'2011-05-25','609500.00','A'),('2841',3,'MARIAN RENATO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-12','576900.00','A'),('2842',3,'FAENZA CARLO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',126180,'2011-05-19','55990.00','A'),('2843',3,'PESOLILLO CARMINE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',203162,'2011-06-26','549230.00','A'),('2844',3,'CHIODI FRANCESCO MARIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',199862,'2011-09-10','578210.00','A'),('2845',3,'RUTA MARIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-06-19','243350.00','A'),('2846',3,'BAZZONI MARINO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',101518,'2011-05-03','482140.00','A'),('2848',3,'LAGASIO LEONARDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',231989,'2011-05-04','956670.00','A'),('2849',3,'VIERA DA CUNHA PAULO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',190393,'2011-04-05','741520.00','A'),('2850',3,'DAL BEN DENIS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',116511,'2011-05-26','837590.00','A'),('2851',3,'GIANELLI HERIBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',233927,'2011-05-01','963400.00','A'),('2852',3,'JUSTINO DA SILVA DJAMIR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-04-08','304200.00','A'),('2853',3,'DIPASQUUALE GAETANO','191821112','CRA 25 CALLE 100','574@terra.com.co','2011-02-03',172888,'2011-07-11','630830.00','A'),('2855',3,'CURI MAURO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',199862,'2011-06-19','315160.00','A'),('2856',3,'DI DIO MARCO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-20','851210.00','A'),('2857',3,'ROBERTI MENDONCA CAIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-11','310580.00','A'),('2859',3,'RAMOS MORENO DE SOUZA ANDRE ','191821112','CRA 25 CALLE 100','133@facebook.com','2011-02-03',118777,'2011-09-24','64540.00','A'),('286',8,'INEXMODA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-06-21','50150.00','A'),('2860',3,'JODJAHN DE CARVALHO FLAVIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2011-06-27','324950.00','A'),('2862',3,'LAGASIO LEONARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',231989,'2011-07-04','180760.00','A'),('2863',3,'MOON SUNG RIUL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-08','610440.00','A'),('2865',3,'VAIDYANATHAN VIKRAM','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-11','718220.00','A'),('2866',3,'NARAYANASWAMY RAMSUNDAR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',73079,'2011-10-02','61390.00','A'),('2867',3,'VADADA VENKATA RAMESH KUMAR','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-10','152300.00','A'),('2868',3,'RAMA KRISHNAN ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-10','577300.00','A'),('2869',3,'JALAN PRASHANT','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',122035,'2011-05-02','429600.00','A'),('2871',3,'CHANDRASEKAR VENKAT','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',112862,'2011-06-27','791800.00','A'),('2872',3,'CUMBAKONAM SWAMINATHAN SUBRAMANIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-11','710650.00','A'),('288',8,'BCD TRAVEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-23','645390.00','A'),('289',3,'EMBAJADA ARGENTINA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'1970-02-02','749440.00','A'),('290',3,'EMBAJADA DE BRASIL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-11-16','811030.00','A'),('293',8,'ONU','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-09-19','584810.00','A'),('299',1,'BLANDON GUZMAN JHON JAIRO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-01-13','201740.00','A'),('304',3,'COHEN DANIEL DYLAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',286785,'2010-11-17','184850.00','A'),('306',1,'CINDU ANDINA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2009-06-11','899230.00','A'),('31',1,'GARRIDO LEONARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127662,'2010-09-12','801450.00','A'),('310',3,'CORPORACION CLUB EL NOGAL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2010-08-27','918760.00','A'),('314',3,'CHAWLA AARON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-04-08','295840.00','A'),('317',3,'BAKER HUGHES','191821112','CRA 25 CALLE 100','694@hotmail.com','2011-02-03',127591,'2011-04-03','211990.00','A'),('32',1,'PAEZ SEGURA JOSE ANTONIO','191821112','CRA 25 CALLE 100','675@gmail.com','2011-02-03',129447,'2011-08-22','717340.00','A'),('320',1,'MORENO PAEZ FREDDY ALEXANDER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-31','971670.00','A'),('322',1,'CALDERON CARDOZO GASTON EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-10-05','990640.00','A'),('324',1,'ARCHILA MERA ALFREDOMANUEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-22','77200.00','A'),('326',1,'MUÑOZ AVILA HERNEY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-11-10','550920.00','A'),('327',1,'CHAPARRO CUBILLOS FABIAN ANDRES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-15','685080.00','A'),('329',1,'GOMEZ LOPEZ JUAN SEBASTIAN','191821112','CRA 25 CALLE 100','970@yahoo.com','2011-02-03',127591,'2011-03-20','808070.00','A'),('33',1,'MARTINEZ MARIÑO HENRY HERNAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-04-20','182370.00','A'),('330',3,'MAPSTONE NAOMI LEA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',122035,'2010-02-21','722380.00','A'),('332',3,'ROSSI BURRI NELLY','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132165,'2010-05-10','771210.00','A'),('333',1,'AVELLANEDA OVIEDO JUAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-25','293060.00','A'),('334',1,'SUZA FLOREZ JUAN PABLO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-13','151650.00','A'),('335',1,'ESGUERRA ALVARO ANDRES','191821112','CRA 25 CALLE 100','11@facebook.com','2011-02-03',127591,'2011-09-10','879080.00','A'),('337',3,'DE LA HARPE MARTIN CARAPET WALTER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-27','64960.00','A'),('339',1,'HERNANDEZ ACOSTA SERGIO ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',129499,'2011-06-22','322570.00','A'),('340',3,'ZARAMA DE LA ESPRIELLA MIGUEL PATRICIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-27','102360.00','A'),('342',1,'CABRERA VASQUEZ JUAN PABLO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-01','413440.00','A'),('343',3,'RICHARDSON BEN MARRIS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',286785,'2010-05-18','434890.00','A'),('344',1,'OLARTE PINZON MIGUEL FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-30','934140.00','A'),('345',1,'SOLER SEBASTIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2011-04-20','366020.00','A'),('346',1,'PRIETO JUAN ESTEBAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-07-12','27690.00','A'),('349',1,'BARRERO VELASCO DAVID','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-01','472850.00','A'),('35',1,'VELASQUEZ RAMOS JUAN MANUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-13','251940.00','A'),('350',1,'RANGEL GARCIA SERGIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-03-20','7880.00','A'),('353',1,'ALVAREZ ACEVEDO JOHN FREDDY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-16','540070.00','A'),('354',1,'VILLAMARIN HOME WILMAR ALFREDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-09-19','458810.00','A'),('355',3,'SLUCHIN NAAMAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',263813,'2010-12-01','673830.00','A'),('357',1,'BULLA BERNAL LUIS ERNESTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-06-14','942160.00','A'),('358',1,'BRACCIA AVILA GIANCARLO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-01','732620.00','A'),('359',1,'RODRIGUEZ PINTO RAUL DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-24','836600.00','A'),('36',1,'MALDONADO ALVAREZ JAIRO ASDRUBAL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127300,'2011-06-19','980270.00','A'),('362',1,'POMBO POLANCO JUAN BERNARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-18','124130.00','A'),('363',1,'CARDENAS SUAREZ CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127662,'2011-09-01','372920.00','A'),('364',1,'RIVERA MAZO JOSE DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-06-10','492220.00','A'),('365',1,'LEDERMAN CORDIKI JONATHAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-12-03','342340.00','A'),('367',1,'BARRERA MARTINEZ LUIS CARLOS','191821112','CRA 25 CALLE 100','35@yahoo.com.mx','2011-02-03',127591,'2011-05-24','148130.00','A'),('368',1,'SEPULVEDA RAMIREZ DANIEL MARCELO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-31','35560.00','A'),('369',1,'QUINTERO DIAZ WILSON ASDRUBAL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-24','733430.00','A'),('37',1,'RESTREPO SUAREZ HENRY BERNARDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2011-07-25','145540.00','A'),('370',1,'ROJAS YARA WILLMAR ARLEY','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-12-03','560450.00','A'),('371',3,'CARVER LOUISE EMILY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',286785,'2010-10-07','601980.00','A'),('372',3,'VINCENT DAVID','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',286785,'2011-03-06','328540.00','A'),('374',1,'GONZALEZ DELGADO MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-08-18','198260.00','A'),('375',1,'PAEZ SIMON','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-06-25','480970.00','A'),('376',1,'CADOSCH DELMAR ELIE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-10-07','810080.00','A'),('377',1,'HERRERA VASQUEZ DANIEL EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-06-30','607460.00','A'),('378',1,'CORREAL ROJAS RONALD','191821112','CRA 25 CALLE 100','269@facebook.com','2011-02-03',127591,'2011-07-16','607080.00','A'),('379',1,'VOIDONNIKOLAS MUÑOS PANAGIOTIS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-27','213010.00','A'),('38',1,'CANAL ROJAS MAURICIO HERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-05-29','786900.00','A'),('380',1,'DIAZ ECHEVERRI JUAN DAVID ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-20','243800.00','A'),('381',1,'CIFUENTES MARIN HERNANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-26','579960.00','A'),('382',3,'PAXTON LUCINDA HARRIET','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',107159,'2011-05-23','168420.00','A'),('384',3,'POYNTON BRIAN GEORGE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',286785,'2011-03-20','5790.00','A'),('385',3,'TERMIGNONI ADRIANO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-01-14','722320.00','A'),('386',3,'CARDWELL PAULA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-02-17','594230.00','A'),('389',1,'FONCECA MARTINEZ MIGUEL ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-25','778680.00','A'),('39',1,'GARCIA SUAREZ WILLIAM ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-25','497880.00','A'),('390',1,'GUERRERO NELSON','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-12-03','178650.00','A'),('391',1,'VICTORIA PENA FERNANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-22','557200.00','A'),('392',1,'VAN HISSENHOVEN FERRERO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-13','250060.00','A'),('393',1,'CACERES ORDUZ JUAN GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-28','578690.00','A'),('394',1,'QUINTERO ALVARO FELIPE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-17','143270.00','A'),('395',1,'ANZOLA PEREZ CARLOSDAVID','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-04','980300.00','A'),('397',1,'LLOREDA ORTIZ CARLOS JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-27','417470.00','A'),('398',1,'GONZALES LONDOÑO SEBASTIAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-06-19','672310.00','A'),('4',1,'LONDOÑO DOMINGUEZ ERNESTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-05','324610.00','A'),('40',1,'MORENO ANGULO ORLANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-01','128690.00','A'),('400',8,'TRANSELCA .A','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-04-14','528930.00','A'),('403',1,'VERGARA MURILLO JUAN FERNANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-04','42900.00','A'),('405',1,'CAPERA CAPERA HARRINSON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127799,'2011-06-12','961000.00','A'),('407',1,'MORENO MORA WILLIAM EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-22','872780.00','A'),('408',1,'HIGUERA ROA NICOLAS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-03-28','910430.00','A'),('409',1,'FORERO CASTILLO OSCAR ALEJANDRO','191821112','CRA 25 CALLE 100','988@terra.com.co','2011-02-03',127591,'2011-07-23','933810.00','A'),('410',1,'LOPEZ MURCIA JULIAN DANIEL','191821112','CRA 25 CALLE 100','399@facebook.com','2011-02-03',127591,'2011-08-08','937790.00','A'),('411',1,'ALZATE JOHN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-09-09','887490.00','A'),('412',1,'GONZALES GONZALES ORLANDO ANDREY','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-30','624080.00','A'),('413',1,'ESCOLANO VALENTIN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-05','457930.00','A'),('414',1,'JARAMILLO RODRIGUEZ JUAN CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-12','417420.00','A'),('415',1,'GARCIA MUÑOZ DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-10-02','713300.00','A'),('416',1,'PIÑEROS ARENAS JUAN DAVID','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-10-17','314260.00','A'),('417',1,'ORTIZ ARROYAVE ANDRES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-05-21','431370.00','A'),('418',1,'BAYONA BARRIENTOS JEAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-12','214090.00','A'),('419',1,'AGUDELO VASQUEZ JUAN FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-08-30','776360.00','A'),('420',1,'CALLE DANIEL CJ PRODUCCIONES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-11-04','239500.00','A'),('422',1,'CANO BETANCUR ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-08-20','623620.00','A'),('423',1,'CALDAS BARRETO LUZ MIREYA','191821112','CRA 25 CALLE 100','991@facebook.com','2011-02-03',127591,'2011-05-22','512840.00','A'),('424',1,'SIMBAQUEBA JOSE ERNESTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-25','693320.00','A'),('425',1,'DE SILVESTRE CALERO LUIS GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-18','928110.00','A'),('426',1,'ZORRO PERALTA YEZID','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-25','560560.00','A'),('428',1,'SUAREZ OIDOR DARWIN LEONARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',131272,'2011-09-05','410650.00','A'),('429',1,'GIRAL CARRILLO LUIS ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-04-13','997850.00','A'),('43',1,'MARULANDA VALENCIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-17','365550.00','A'),('430',1,'CORDOBA GARCES JUAN PABLO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-18','757320.00','A'),('431',1,'ARIAS TAMAYO DIEGO MAURICIO','191821112','CRA 25 CALLE 100','36@yahoo.com','2011-02-03',127591,'2011-09-05','793050.00','A'),('432',1,'EICHMANN PERRET MARC WILLY','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-22','693270.00','A'),('433',1,'DIAZ DANIEL ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2008-09-18','87200.00','A'),('435',1,'FACCINI GONZALEZ HERMANN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2009-01-08','519420.00','A'),('436',1,'URIBE DUQUE FELIPE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-28','528470.00','A'),('437',1,'TAVERA GAONA GABREL LEAL','191821112','CRA 25 CALLE 100','280@terra.com.co','2011-02-03',127591,'2011-04-28','84120.00','A'),('438',1,'ORDOÑEZ PARIS FERNANDO MAURICIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150699,'2011-09-26','835170.00','A'),('439',1,'VILLEGAS ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-19','923520.00','A'),('44',1,'MARTINEZ PEDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-08-13','738750.00','A'),('440',1,'MARTINEZ RUEDA JUAN CARLOS','191821112','CRA 25 CALLE 100','805@hotmail.es','2011-02-03',127591,'2011-04-07','112050.00','A'),('441',1,'ROLDAN JUAN CARLOS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-05-25','789720.00','A'),('442',1,'PEREZ BRANDWAYN ELIYAU MOISES','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-10-20','612450.00','A'),('443',1,'VALLEJO TORO JUAN DIEGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128579,'2011-08-16','693080.00','A'),('444',1,'TORRES CABRERA EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-03-19','628070.00','A'),('445',1,'MERINO MEJIA GERMAN ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-28','61100.00','A'),('447',1,'GOMEZ GOMEZ JUAN CARLOS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-08','923070.00','A'),('448',1,'RAUSCH CHEHEBAR STEVEN JOSEPH','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-09-27','351540.00','A'),('449',1,'RESTREPO TRUCCO ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-28','988500.00','A'),('45',1,'GUTIERREZ JARAMILLO CARLOS MARIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',150699,'2011-08-22','597090.00','A'),('450',1,'GOLDSTEIN VAIDA ELI JACK','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-11','887860.00','A'),('451',1,'OLEA PINEDA EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-10','473800.00','A'),('452',1,'JORGE OROZCO','191821112','CRA 25 CALLE 100','503@hotmail.es','2011-02-03',127591,'2011-06-02','705410.00','A'),('454',1,'DE LA TORRE GOMEZ GERMAN ERNESTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-03-03','411990.00','A'),('456',1,'MADERO ARIAS JUAN PABLO','191821112','CRA 25 CALLE 100','452@hotmail.es','2011-02-03',127591,'2011-08-22','479090.00','A'),('457',1,'GOMEZ MACHUCA ALVARO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-08-12','166430.00','A'),('458',1,'MENDIETA TOBON DANIEL RICARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-08','394880.00','A'),('459',1,'VILLADIEGO CORTINA JAVIER TOMAS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-26','475110.00','A'),('46',1,'FERRUCHO ARCINIEGAS JUAN CARLOS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-06','769220.00','A'),('460',1,'DERESER HARTUNG ERNESTO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-12-25','190900.00','A'),('461',1,'RAMIREZ PENA ALEJANDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-06-25','529190.00','A'),('463',1,'IREGUI REYES LUIS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-07','778590.00','A'),('464',1,'PINTO GOMEZ MAURICIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132775,'2010-06-24','673270.00','A'),('465',1,'RAMIREZ RAMIREZ FERNANDO ALONSO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127799,'2011-10-01','30570.00','A'),('466',1,'BERRIDO TRUJILLO JORGE HENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132775,'2011-10-06','133040.00','A'),('467',1,'RIVERA CARVAJAL RAFAEL HUMBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-20','573500.00','A'),('468',3,'FLOREZ PUENTES IVAN ALFONSO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-05-08','468380.00','A'),('469',1,'BALLESTEROS FLOREZ IVAN DARIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-06-02','621410.00','A'),('47',1,'MARIN FLOREZ OMAR EDUARDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-30','54840.00','A'),('470',1,'RODRIGO PEÑA HERRERA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',237734,'2011-10-04','701890.00','A'),('471',1,'RODRIGUEZ SILVA ROGELIO','191821112','CRA 25 CALLE 100','163@gmail.com','2011-02-03',127591,'2011-05-26','645210.00','A'),('473',1,'VASQUEZ VELANDIA JUAN GABRIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-05-04','666330.00','A'),('474',1,'ROBLEDO JAIME','191821112','CRA 25 CALLE 100','409@yahoo.com','2011-02-03',127591,'2011-05-31','970480.00','A'),('475',1,'GRIMBERG DIAZ PHILIP','191821112','CRA 25 CALLE 100','723@yahoo.com','2011-02-03',127591,'2011-03-30','853430.00','A'),('476',1,'CHAUSTRE GARCIA JUAN PABLO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-26','355670.00','A'),('477',1,'GOMEZ FLOREZ IGNASIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-09-14','218090.00','A'),('478',1,'LUIS ALBERTO CABRERA PUENTES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2011-05-26','23420.00','A'),('479',1,'MARTINEZ ZAPATA JUAN CARLOS','191821112','CRA 25 CALLE 100','234@gmail.com','2011-02-03',127122,'2011-07-01','462840.00','A'),('48',1,'PARRA IBAÑEZ FABIAN ERNESTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-02-01','966520.00','A'),('480',3,'WESTERBERG JAN RICKARD','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',300701,'2011-02-01','243940.00','A'),('484',1,'RODRIGUEZ VILLALOBOS EDGAR FERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-19','860320.00','A'),('486',1,'NAVARRO REYES DIEGO FELIPE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-01','530150.00','A'),('487',1,'NOGUERA RICAURTE ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-01-21','384100.00','A'),('488',1,'RUIZ VEJARANO CARLOS DANIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-27','330030.00','A'),('489',1,'CORREA PEREZ ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-12-14','497860.00','A'),('49',1,'FLOREZ PEREZ RUBIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-23','668090.00','A'),('490',1,'REYES GOMEZ LUIS ALEJANDRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-26','499210.00','A'),('491',3,'BERNAL LEON ALBERTO JOSE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',150699,'2011-03-29','2470.00','A'),('492',1,'FELIPE JARAMILLO CARO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2009-10-31','514700.00','A'),('493',1,'GOMEZ PARRA GERMAN DARIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-01-29','566100.00','A'),('494',1,'VALLEJO RAMIREZ CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-13','286390.00','A'),('495',1,'DIAZ LONDOÑO HUGO MARIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-04-06','733670.00','A'),('496',3,'VAN BAKERGEM RONALD JAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2008-11-05','809190.00','A'),('497',1,'MENDEZ RAMIREZ JOSE LEONARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-10','844920.00','A'),('498',3,'QUI TANILLA HENRIQUEZ PAUL ANTONIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-10','797030.00','A'),('499',3,'PELEATO FLOREAL','191821112','CRA 25 CALLE 100','531@hotmail.com','2011-02-03',188640,'2011-04-23','450370.00','A'),('50',1,'SILVA GUZMAN MAURICIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-03-24','440890.00','A'),('502',3,'LEO ULF GORAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',300701,'2010-07-26','181840.00','A'),('503',3,'KARLSSON DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',300701,'2011-07-22','50680.00','A'),('504',1,'JIMENEZ JANER ALEJANDRO','191821112','CRA 25 CALLE 100','889@hotmail.es','2011-02-03',203272,'2011-08-29','707880.00','A'),('506',1,'PABON OCHOA ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-14','813050.00','A'),('507',1,'ACHURY CADENA CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-26','903240.00','A'),('508',1,'ECHEVERRY GARZON SEBASTIN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-23','77050.00','A'),('509',1,'PIÑEROS PEÑA LUIS CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-29','675550.00','A'),('51',1,'CAICEDO URREA JAIME ORLANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127300,'2011-08-17','200160.00','A'),('510',1,'MARTINEZ MARTINEZ LUIS EDUARDO','191821112','CRA 25 CALLE 100','586@facebook.com','2011-02-03',127591,'2010-08-28','146600.00','A'),('511',1,'MOLANO PEÑA JESUS ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-02-05','706320.00','A'),('512',3,'RUDOLPHY FONTAINE ANDRES','191821112','CRA 25 CALLE 100','492@yahoo.com','2011-02-03',117002,'2011-04-12','91820.00','A'),('513',1,'NEIRA CHAVARRO JOHN JAIRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-12','340120.00','A'),('514',3,'MENDEZ VILLALOBOS ARMANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',145135,'2011-03-25','425160.00','A'),('515',3,'HERNANDEZ OLIVA JOSE DE LA CRUZ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-03-25','105440.00','A'),('518',3,'JANCO NICOLAS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-15','955830.00','A'),('52',1,'TAPIA MUÑOZ JAIRO RICARDO','191821112','CRA 25 CALLE 100','920@hotmail.es','2011-02-03',127591,'2011-10-05','678130.00','A'),('520',1,'ALVARADO JAVIER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-26','895550.00','A'),('521',1,'HUERFANO SOTO JONATHAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-30','619910.00','A'),('522',1,'HUERFANO SOTO JONATHAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-04','412900.00','A'),('523',1,'RODRIGEZ GOMEZ WILMAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-14','204790.00','A'),('525',1,'ARROYO BAPTISTE DIEGO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-04-09','311810.00','A'),('526',1,'PULECIO BOEK DANIEL','191821112','CRA 25 CALLE 100','718@gmail.com','2011-02-03',127591,'2011-08-12','203350.00','A'),('527',1,'ESLAVA VELEZ SEBASTIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-10-08','81300.00','A'),('528',1,'CASTRO FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-05-06','796470.00','A'),('53',1,'HINCAPIE MARTINEZ RICARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127573,'2011-09-26','790180.00','A'),('530',1,'ZORRILLA PUJANA NICOLAS','191821112','CRA 25 CALLE 100','312@yahoo.es','2011-02-03',127591,'2011-06-06','302750.00','A'),('531',1,'ZORRILLA PUJANA NICOLAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-06','298440.00','A'),('532',1,'PRETEL ARTEAGA MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-09','583980.00','A'),('533',1,'RAMOS VERGARA HUMBERTO CARLOS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',131105,'2010-05-13','24560.00','A'),('534',1,'BONILLA PIÑEROS DIEGO FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-20','370880.00','A'),('535',1,'BELTRAN TRIVIÑO JULIAN DAVID','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-11-06','780710.00','A'),('536',3,'BLOD ULF FREDERICK EDWARD','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-06','790900.00','A'),('537',1,'VANEGAS OROZCO SEBASTIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-11-10','612400.00','A'),('538',3,'ORUE VALLE MONICA CECILIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',97885,'2011-09-15','689270.00','A'),('539',1,'AGUDELO BEDOYA ANDRES JOSE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-05-24','609160.00','A'),('54',1,'DE HOYOS TRESPALACIOS MAURICIO ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-04-21','916500.00','A'),('540',3,'HEIJKENSKJOLD PER JESPER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-04-06','977980.00','A'),('541',3,'GONZALEZ ALVARADO LUIS RAUL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-08-27','62430.00','A'),('543',1,'GRUPO SURAMERICA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-08-24','703760.00','A'),('545',1,'CORPORACION CONTEXTO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-09-08','809570.00','A'),('546',3,'LUNDIN JOHAN ERIK ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-29','895330.00','A'),('548',3,'VEGERANO JOSE ','191821112','CRA 25 CALLE 100','221@facebook.com','2011-02-03',190393,'2011-06-05','553780.00','A'),('549',3,'SERRANO MADRID CLAUDIA INES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-07-27','625060.00','A'),('55',1,'TAFUR GOMEZ ALEXANDER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2010-09-12','211980.00','A'),('550',1,'MARTINEZ ACEVEDO MAURICIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-10-06','463920.00','A'),('551',1,'GONZALEZ MORENO PABLO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-07-21','444450.00','A'),('552',1,'MEJIA ROJAS ANDRES FELIPE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-08-02','830470.00','A'),('553',3,'RODRIGUEZ ANTHONY HANSEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-16','819000.00','A'),('554',1,'ABUCHAIBE ANNICCHRICO JOSE ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-31','603610.00','A'),('555',3,'MOYES KIMBERLY','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-08','561020.00','A'),('556',3,'MONTINI MARIO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118942,'2010-03-16','994280.00','A'),('557',3,'HOGBERG DANIEL TOBIAS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-15','288350.00','A'),('559',1,'OROZCO PFEIZER MARTIN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-10-07','429520.00','A'),('56',1,'NARIÑO ROJAS GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-27','310390.00','A'),('560',1,'GARCIA MONTOYA ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-06-02','770840.00','A'),('562',1,'VELASQUEZ PALACIO MANUEL ORLANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-06-23','515670.00','A'),('563',1,'GALLEGO PEREZ DIEGO ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-04-14','881460.00','A'),('564',1,'RUEDA URREGO JUAN ESTEBAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-05-04','860270.00','A'),('565',1,'RESTREPO DEL TORO MAURICIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-05-10','656960.00','A'),('567',1,'TORO VALENCIA FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-08-04','549090.00','A'),('568',1,'VILLEGAS LUIS ALFONSO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-05-02','633490.00','A'),('569',3,'RIDSTROM CHRISTER ANDERS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',300701,'2011-09-06','520150.00','A'),('57',1,'TOVAR ARANGO JOHN JAIME','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127662,'2010-07-03','916010.00','A'),('570',3,'SHEPHERD DAVID','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2008-05-11','700280.00','A'),('573',3,'BENGTSSON JOHAN ANDREAS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-04-06','196830.00','A'),('574',3,'PERSSON HANS JONAS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-09','172340.00','A'),('575',3,'SYNNEBY BJORN ERIK','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-15','271210.00','A'),('577',3,'COHEN PAUL KIRTAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-25','381490.00','A'),('578',3,'ROMERO BRAVO FERNANDO EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-08-21','390360.00','A'),('579',3,'GUTHRIE ROBERT DEAN','191821112','CRA 25 CALLE 100','794@gmail.com','2011-02-03',161705,'2010-07-20','807350.00','A'),('58',1,'TORRES ESCOBAR JAIRO ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-06-17','648860.00','A'),('580',3,'ROCASERMEÑO MONTENEGRO MARIO JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',139844,'2010-12-01','865650.00','A'),('581',1,'COCK JORGE EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-08-19','906210.00','A'),('582',3,'REISS ANDREAS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2009-01-31','934120.00','A'),('584',3,'ECHEVERRIA CASTILLO GERMAN FRANCISCO','191821112','CRA 25 CALLE 100','982@yahoo.com','2011-02-03',139844,'2011-07-20','957370.00','A'),('585',3,'BRANDT CARLOS GUSTAVO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-10','931030.00','A'),('586',3,'VEGA NUÑEZ GILBERTO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-14','783010.00','A'),('587',1,'BEJAR MUÑOZ JORDI','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',196234,'2010-10-08','121990.00','A'),('588',3,'WADSO KERSTIN ELIZABETH','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-17','260890.00','A'),('59',1,'RAMOS FORERO JAVIER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-20','496300.00','A'),('590',1,'RODRIGUEZ BETANCOURT JAVIER AUGUSTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127538,'2011-05-23','909850.00','A'),('592',1,'ARBOLEDA HALABY RODRIGO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',150699,'2009-02-03','939170.00','A'),('593',1,'CURE CURE CARLOS ALFREDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150699,'2011-07-11','494600.00','A'),('594',3,'VIDELA PEREZ OSCAR EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-07-13','655510.00','A'),('595',1,'GONZALEZ GAVIRIA NESTOR','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2009-09-28','793760.00','A'),('596',3,'IZQUIERDO DELGADO DIONISIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2009-09-24','2250.00','A'),('597',1,'MORENO DAIRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127300,'2011-06-14','629990.00','A'),('598',1,'RESTREPO FERNNDEZ SOTO JOSE MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-08-31','143210.00','A'),('599',3,'YERYES VERGARA MARIA SOLEDAD','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-10-11','826060.00','A'),('6',1,'GUZMAN ESCOBAR JOSE VICENTE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-10','26390.00','A'),('60',1,'ELEJALDE ESCOBAR TOMAS ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-11-09','534910.00','A'),('601',1,'ESCAF ESCAF WILLIAM MIGUEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',150699,'2011-07-26','25190.00','A'),('602',1,'CEBALLOS ZULUAGA JOSE ALEJANDRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-05-03','23920.00','A'),('603',1,'OLIVELLA GUERRERO RAFAEL ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',134022,'2010-06-23','44040.00','A'),('604',1,'ESCOBAR GALLO CARLOS HUGO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-08-09','148420.00','A'),('605',1,'ESCORCIA RAMIREZ EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128569,'2011-04-01','609990.00','A'),('606',1,'MELGAREJO MORENO PAULA ANDREA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-05','604700.00','A'),('607',1,'TOBON CALLE CARLOS GUILLERMO','191821112','CRA 25 CALLE 100','689@hotmail.es','2011-02-03',128662,'2011-03-16','193510.00','A'),('608',3,'TREVIÑO NOPHAL SILVANO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',110709,'2011-05-27','153470.00','A'),('609',1,'CARDER VELEZ EDWIN JOHN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-09-04','186830.00','A'),('61',1,'GASCA DAZA VICTOR HERNANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-09-09','185660.00','A'),('610',3,'DAVIS JOHN BRADLEY','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-04-06','473740.00','A'),('611',1,'BAQUERO SLDARRIAGA ALVARO ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-09-15','808210.00','A'),('612',3,'SERRACIN ARAUZ YANIRA YAMILET','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',131272,'2011-06-09','619820.00','A'),('613',1,'MORA SOTO ALVARO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-09-20','674450.00','A'),('614',1,'SUAREZ RODRIGUEZ HERNANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-03-29','512820.00','A'),('616',1,'BAQUERO GARCIA JORGE LUIS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2010-07-14','165160.00','A'),('617',3,'ABADI MADURO MOISES SIMON','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',131272,'2009-03-31','203640.00','A'),('62',3,'FLOWER LYNDON BRUCE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',231373,'2011-05-16','323560.00','A'),('624',8,'OLARTE LEONARDO','191821112','CRA 25 CALLE 100','6@hotmail.com','2011-02-03',127591,'2011-06-03','219790.00','A'),('63',1,'RUBIO CORTES OSCAR','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-04-28','60830.00','A'),('630',5,'PROEXPORT','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2010-08-12','708320.00','A'),('632',8,'SUPER COFFEE ','191821112','CRA 25 CALLE 100','792@hotmail.es','2011-02-03',127591,'2011-08-30','306460.00','A'),('636',8,'NOGAL ASESORIAS FINANCIERAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-04-07','752150.00','A'),('64',1,'GUERRA MARTINEZ MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-24','333480.00','A'),('645',8,'GIZ - PROFIS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-31','566330.00','A'),('652',3,'QBE DEL ISTMO COMPAÑIA DE REASEGUROS ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-14','932190.00','A'),('655',3,'CORP. CENTRO DE ESTUDIOS DE DERECHO JUSTICIA Y SOCIEDAD','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-05-04','440370.00','A'),('659',3,'GOOD YEAR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2010-09-24','993830.00','A'),('660',3,'ARCINIEGAS Y VILLAMIZAR','191821112','CRA 25 CALLE 100','258@yahoo.com','2011-02-03',127591,'2010-12-02','787450.00','A'),('67',1,'LOPEZ HOYOS JUAN DIEGO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127662,'2010-04-13','665230.00','A'),('670',8,'APPLUS NORCONTROL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2011-09-06','83210.00','A'),('672',3,'KERLL SEBASTIAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',287273,'2010-12-19','501610.00','A'),('673',1,'RESTREPO MOLINA RAMIRO ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',144215,'2010-12-18','457290.00','A'),('674',1,'PEREZ GIL JOSE IGNACIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-08-18','781610.00','A'),('676',1,'GARCIA LONDOÑO FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-08-23','336160.00','A'),('677',3,'RIJLAARSDAM KARIN AN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-07-03','72210.00','A'),('679',1,'LIZCANO MONTEALEGRE ARNULFO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127203,'2011-02-01','546170.00','A'),('68',1,'MARTINEZ SILVA EDGAR','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-29','54250.00','A'),('680',3,'OLIVARI MAYER PATRICIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',122642,'2011-08-01','673170.00','A'),('682',3,'CHEVALIER FRANCK PIERRE CHARLES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',263813,'2010-12-01','617280.00','A'),('683',3,'NG WAI WING ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',126909,'2011-06-14','904310.00','A'),('684',3,'MULLER DOMINGUEZ CARLOS ANDRES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-22','669700.00','A'),('685',3,'MOSQUEDA DOMNGUEZ ANGEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-04-08','635580.00','A'),('686',3,'LARREGUI MARIN LEON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-08','168800.00','A'),('687',3,'VARGAS VERGARA ALEJANDRO BRAULIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',159245,'2011-09-14','937260.00','A'),('688',3,'SKINNER LYNN CHERYL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-12','179890.00','A'),('689',1,'URIBE CORREA LEONARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2010-07-29','87680.00','A'),('690',1,'TAMAYO JARAMILLO FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-11-10','898730.00','A'),('691',3,'MOTABAN DE BORGES PAULA ELENA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132958,'2010-09-24','230610.00','A'),('692',5,'FERNANDEZ NALDA JOSE MANUEL ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-06-28','456850.00','A'),('693',1,'GOMEZ RESTREPO JUAN FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-06-28','592420.00','A'),('694',1,'CARDENAS TAMAYO JOSE JAIME','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-08-08','591550.00','A'),('696',1,'RESTREPO ARANGO ALEJANDRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-03-31','127820.00','A'),('697',1,'ROCABADO PASTRANA ROBERT JAVIER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127443,'2011-08-13','97600.00','A'),('698',3,'JARVINEN JOONAS JORI KRISTIAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',196234,'2011-05-29','104560.00','A'),('699',1,'MORENO PEREZ HERNAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-08-30','230000.00','A'),('7',1,'PUYANA RAMOS GUILLERMO ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-08-27','331830.00','A'),('70',1,'GALINDO MANZANO JAVIER FRANCISCO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-31','214890.00','A'),('701',1,'ROMERO PEREZ ARCESIO JOSE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132775,'2011-07-13','491650.00','A'),('703',1,'CHAPARRO AGUDELO LEONARDO VIRGILIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-05-04','271320.00','A'),('704',5,'VASQUEZ YANIS MARIA DEL PILAR','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-10-13','508820.00','A'),('705',3,'BARBERO JOSE ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',116511,'2010-09-13','730170.00','A'),('706',1,'CARMONA HERNANDEZ MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-11-08','124380.00','A'),('707',1,'PEREZ SUAREZ JORGE ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132775,'2011-09-14','431370.00','A'),('708',1,'ROJAS JORGE MARIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',130135,'2011-04-01','783740.00','A'),('71',1,'DIAZ JUAN PABLO/JULES JAVIER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-10-01','247860.00','A'),('711',3,'CATALDO CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',116773,'2011-06-06','984810.00','A'),('716',5,'MACIAS PIZARRO PATRICIO ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-06-07','376260.00','A'),('717',1,'RENDON MAYA DAVID ALEXANDER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',130273,'2010-07-25','332310.00','A'),('718',3,'DE HILDEBRAND E GRISI FILHO CELSO CLAUDIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-11','532740.00','A'),('719',3,'ALLIEL FACUSSE JULIO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-06-20','666800.00','A'),('72',1,'LOPEZ ROJAS VICTOR DANIEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-11','594640.00','A'),('720',3,'CHEMELLO JIMENEZ GAETANO ALBERTO FRANCISCO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',132958,'2010-06-23','735760.00','A'),('721',3,'GARCIA BEZANILLA RODOLFO EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-04-12','678420.00','A'),('722',1,'ARIAS EDWIN','191821112','CRA 25 CALLE 100','13@terra.com.co','2011-02-03',127492,'2008-04-24','184800.00','A'),('723',3,'SOHN JANG WON','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-06-07','888750.00','A'),('724',3,'WILHELM GIOVINE JAIME ROBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',115263,'2011-09-20','889340.00','A'),('726',3,'CASTILLERO DANIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',131272,'2011-05-13','234270.00','A'),('727',3,'PORTUGAL LANGHORST MAX GUILLERMO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-13','829960.00','A'),('729',3,'ALFONSO HERRANZ AGUSTIN ALFONSO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-07-21','745060.00','A'),('73',1,'DAVILA MENDEZ OSCAR DIEGO','191821112','CRA 25 CALLE 100','991@yahoo.com.mx','2011-02-03',128569,'2011-08-31','229630.00','A'),('730',3,'ALFONSO HERRANZ AGUSTIN CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2010-03-31','384360.00','A'),('731',1,'NOGUERA RAMIREZ CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-14','686610.00','A'),('732',1,'ACOSTA PERALTA FABIAN ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',134030,'2011-06-21','279960.00','A'),('733',3,'MAC LEAN PIÑA PEDRO SEGUNDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-05-23','339980.00','A'),('734',1,'LEÓN ARCOS ALEX','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',133535,'2011-05-04','860020.00','A'),('736',3,'LAMARCA GARCIA GERMAN JULIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-04-29','820700.00','A'),('737',1,'PORTO VELASQUEZ LUIS MIGUEL','191821112','CRA 25 CALLE 100','321@hotmail.es','2011-02-03',133535,'2011-08-17','263060.00','A'),('738',1,'BUENAVENTURA MEDINA ERICK WILSON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',133535,'2011-09-18','853180.00','A'),('739',1,'LEVY ARRAZOLA RALPH MARC','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',133535,'2011-09-27','476720.00','A'),('74',1,'RAMIREZ SORA EDISON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-03','364220.00','A'),('740',3,'MOON HYUNSIK ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',173192,'2011-05-15','824080.00','A'),('741',3,'LHUILLIER TRONCOSO GASTON MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-09-07','690230.00','A'),('742',3,'UNDURRAGA PELLEGRINI GONZALO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2010-11-21','978900.00','A'),('743',1,'SOLANO TRIBIN NICOLAS SIMON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',134022,'2011-03-16','823800.00','A'),('744',1,'NOGUERA BENAVIDES JACOBO ALONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-06','182300.00','A'),('745',1,'GARCIA LEON MARCO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',133535,'2008-04-16','440110.00','A'),('746',1,'EMILIANI ROJAS ALEXANDER ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-09-12','653640.00','A'),('748',1,'CARREÑO POULSEN HELGEN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-06','778370.00','A'),('749',1,'ALVARADO FANDIÑO ANDRES EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2008-11-05','48280.00','A'),('750',1,'DIAZ GRANADOS JUAN PABLO.','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-01-12','906290.00','A'),('751',1,'OVALLE BETANCOURT ALBERTO JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',134022,'2011-08-14','386620.00','A'),('752',3,'GUTIERREZ VERGARA JOSE MIGUEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-08','214250.00','A'),('753',3,'CHAPARRO GUAIMARAL LIZ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',147467,'2011-03-16','911350.00','A'),('754',3,'CORTES DE SOLMINIHAC PABLO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117002,'2011-01-20','914020.00','A'),('755',3,'CHETAIL VINCENT','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',239124,'2010-08-23','836050.00','A'),('756',3,'PERUGORRIA RODRIGUEZ JORGE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2010-10-17','438210.00','A'),('757',3,'GOLLMANN ROBERTO JUAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',167269,'2011-03-28','682870.00','A'),('758',3,'VARELA SEPULVEDA MARIA PILAR','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2010-07-26','99730.00','A'),('759',3,'MEYER WELIKSON MICHELE JANIK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-05-10','450030.00','A'),('76',1,'VANEGAS RODRIGUEZ OSCAR IVAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-20','568310.00','A'),('77',3,'GATICA SOTOMAYOR MAURICIO VICENTE','191821112','CRA 25 CALLE 100','409@terra.com.co','2011-02-03',117002,'2010-05-13','444970.00','A'),('79',1,'PEÑA VALENZUELA DANIEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-19','264790.00','A'),('8',1,'NAVARRO PALENCIA HUGO RAFAEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',126968,'2011-05-05','579980.00','A'),('80',1,'BARRIOS CUADRADO DAVID','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-29','764140.00','A'),('802',3,'RECK GARRONE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118942,'2009-02-06','767700.00','A'),('81',1,'PARRA QUIROGA JOSE ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-18','26330.00','A'),('811',8,'FEDERACION NACIONAL DE AVICULTORES ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-04-18','926010.00','A'),('812',1,'ORJUELA VELEZ JAIME ALFONSO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-22','257160.00','A'),('813',1,'PEÑA CHACON GUSTAVO ADOLFO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-08-27','507770.00','A'),('814',1,'RONDEROS MOJICA ANDRES FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127443,'2011-05-04','767370.00','A'),('815',1,'RICO NIÑO MARIO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127443,'2011-05-18','313540.00','A'),('817',3,'AVILA CHYTIL MANUEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118471,'2011-07-14','387300.00','A'),('818',3,'JABLONSKI DUARTE SILVEIRA ESTER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2010-12-21','139740.00','A'),('819',3,'BUHLER MOSLER XIMENA ALEJANDRA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2011-06-20','536830.00','A'),('82',1,'CARRILLO GAMBOA JUAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-06-01','839240.00','A'),('820',3,'FALQUETO DALMIRO ANGELO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-06-21','264910.00','A'),('821',1,'RUGER GUSTAVO RODRIGUEZ TAMAYO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',133535,'2010-04-12','714080.00','A'),('822',3,'JULIO RODRIGUEZ FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',117002,'2011-08-16','775650.00','A'),('823',3,'CIBANIK RODOLFO MOISES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132554,'2011-09-19','736020.00','A'),('824',3,'JIMENEZ FRANCO EMMANUEL ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-17','353150.00','A'),('825',3,'GNECCO TREMEDAD','191821112','CRA 25 CALLE 100','818@hotmail.com','2011-02-03',171072,'2011-03-19','557700.00','A'),('826',3,'VILAR MENDOZA JOSE RAFAEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-29','729050.00','A'),('827',3,'GONZALEZ MOLINA CRISTIAN MAURICIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-06-20','972160.00','A'),('828',1,'GONTOVNIK HOBRECKT CARLOS DANIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-08-02','673620.00','A'),('829',3,'DIBARRAT URZUA SEBASTIAN RAIMUNDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-28','451650.00','A'),('830',3,'STOCCHERO HATSCHBACH GUILHERME','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118777,'2010-11-22','237370.00','A'),('831',1,'NAVAS PASSOS NARCISO EVELIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-04-21','831900.00','A'),('832',3,'LUNA SOBENES FAVIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-10-11','447400.00','A'),('833',3,'NUÑEZ NOGUEIRA ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2011-03-19','741290.00','A'),('834',1,'CASTRO BELTRAN ARIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128188,'2011-05-15','364270.00','A'),('835',1,'TURBAY YAMIN MAURICIO JOSE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-03-17','597490.00','A'),('836',1,'GOMEZ BARRAZA RODNEY LORENZO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-07','894610.00','A'),('837',1,'CUELLO LASCANO ROBERTO','191821112','CRA 25 CALLE 100','221@hotmail.es','2011-02-03',133535,'2011-07-11','680610.00','A'),('838',1,'PATERNINA PEINADO JOSE VICENTE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',133535,'2011-08-23','719190.00','A'),('839',1,'YEPES RUBIANO ALFONSO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-05-16','554130.00','A'),('84',1,'ALVIS RAMIREZ ALFREDO','191821112','CRA 25 CALLE 100','292@yahoo.com','2011-02-03',127662,'2011-09-16','68190.00','A'),('840',1,'ROCA LLANOS GUILLERMO ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-08-22','613060.00','A'),('841',1,'RENDON TORRALVO ENRIQUE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',133535,'2011-05-26','402950.00','A'),('842',1,'BLANCO STAND GERMAN ELIECER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-07-17','175530.00','A'),('843',3,'BERNAL MAYRA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',131272,'2010-08-31','668820.00','A'),('844',1,'NAVARRO RUIZ LAZARO GREGORIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',126916,'2008-09-23','817520.00','A'),('846',3,'TUOMINEN OLLI PETTERI','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-09-01','953150.00','A'),('847',1,'ESPARRAGOZA DE LA ESPRIELLA ENRIQUE ALBERTO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',133535,'2011-08-09','522340.00','A'),('848',3,'ARAYA ARIAS JUAN VICENTE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',132165,'2011-08-09','752210.00','A'),('85',1,'GARCIA JORGE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-03-01','989420.00','A'),('850',1,'PARDO GOMEZ GERMAN ENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132775,'2010-11-25','713690.00','A'),('851',1,'ATIQUE JOSE MANUEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2008-03-03','986250.00','A'),('852',1,'HERNANDEZ MEYER EDGARDO DE JESUS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-07-20','790190.00','A'),('853',1,'ZULUAGA DE LEON IVAN JESUS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-07-03','992210.00','A'),('854',1,'VILLARREAL ANGULO ENRIQUE ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-10-02','590450.00','A'),('855',1,'CELIA MARTINEZ APARICIO GIAN PIERO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',133535,'2011-06-15','975620.00','A'),('857',3,'LIPARI RONALDO LUIS','191821112','CRA 25 CALLE 100','84@facebook.com','2011-02-03',118941,'2010-10-13','606990.00','A'),('858',1,'RAVACHI DAVILA ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',133535,'2011-05-04','714620.00','A'),('859',3,'PINHEIRO OLIVEIRA LUCIANO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-04-06','752130.00','A'),('86',1,'GOMEZ LIS CARLOS EMILIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2009-12-22','742520.00','A'),('860',1,'PUGLIESE MERCADO LUIGGI ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-08-19','616780.00','A'),('862',1,'JANNA TELLO DANIEL JALIL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',133535,'2010-08-07','287220.00','A'),('863',3,'MATTAR CARLOS HENRIQUE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2009-04-26','953570.00','A'),('864',1,'MOLINA OLIER OSVALDO ENRIQUE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132775,'2011-04-18','906200.00','A'),('865',1,'BLANCO MCLIN DAVID ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-08-18','670290.00','A'),('866',1,'NARANJO ROMERO ALFREDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2010-08-25','632860.00','A'),('867',1,'SIMANCAS TRUJILLO RICARDO ANTONIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-04-07','153400.00','A'),('868',1,'ARENAS USME GERMAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',126881,'2011-10-01','868430.00','A'),('869',5,'DIAZ CORDERO RODRIGO FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-11-04','881950.00','A'),('87',1,'CELIS PEREZ HERNANDO ALONSO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-10-05','744330.00','A'),('870',3,'BINDER ZBEDA JONATAHAN JANAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',131083,'2010-04-11','804460.00','A'),('871',1,'HINCAPIE HELLMAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-09-15','376440.00','A'),('872',3,'MONTEIRO LANAMAR ALFONSO DE BUSTAMANTE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118942,'2009-03-23','468820.00','A'),('873',3,'AGUDO CARMINATTI REGINA CELIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-01-04','214770.00','A'),('874',1,'GONZALEZ VILLALOBOS CRISTIAN MANUEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',133535,'2011-09-26','667400.00','A'),('875',3,'GUELL VILLANUEVA ALVARO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2008-04-07','692670.00','A'),('876',3,'GRES ANAIS ROBERTO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-12-01','461180.00','A'),('877',3,'GAME MOCOCAIN JUAN ENRIQUE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-07','227890.00','A'),('878',1,'FERRER UCROS FERNANDO LEON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-06-22','755900.00','A'),('879',3,'HERRERA JAUREGUI CARLOS GUSTAVO','191821112','CRA 25 CALLE 100','599@facebook.com','2011-02-03',131272,'2010-07-22','95840.00','A'),('880',3,'BACALLAO HERNANDEZ ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',126180,'2010-04-21','211480.00','A'),('881',1,'GIJON URBINA JAIME','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',144879,'2011-04-03','769910.00','A'),('882',3,'TRUSEN CHRISTOPH WOLFGANG','191821112','CRA 25 CALLE 100','338@yahoo.com.mx','2011-02-03',127591,'2010-10-24','215100.00','A'),('883',3,'ASHOURI ASKANDAR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',157861,'2009-03-03','765760.00','A'),('885',1,'ALTAMAR WATTS JAIRO ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-08-20','620170.00','A'),('887',3,'QUINTANA BALTIERRA ROBERTO ALEX','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-06-21','891370.00','A'),('889',1,'CARILLO PATIÑO VICTOR HILARIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',130226,'2011-09-06','354570.00','A'),('89',1,'CONTRERAS PULIDO LINA MARIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-06','237480.00','A'),('890',1,'GELVES CAÑAS GENARO ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-02','355640.00','A'),('891',3,'CAGNONI DE MELO PAULA CRISTINA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2010-12-14','714490.00','A'),('892',3,'MENA AMESTICA PATRICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2011-03-22','505510.00','A'),('893',1,'CAICEDO ROMES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-04-07','384110.00','A'),('894',1,'ECHEVERRY TRUJILLO ARMANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-06-08','404010.00','A'),('895',1,'CAJIA PEDRAZA ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-02','867700.00','A'),('896',2,'PALACIOS OLIVA ANDRES FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-05-24','126500.00','A'),('897',1,'GUTIERREZ QUINTERO FABIAN ESTEBAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2009-10-24','29380.00','A'),('899',3,'COBO GUEVARA LUIS FELIPE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-12-09','748860.00','A'),('9',1,'OSORIO RODRIGUEZ FELIPE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-09-27','904420.00','A'),('90',1,'LEYTON GONZALEZ FREDY RAFAEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-03-24','705130.00','A'),('901',1,'HERNANDEZ JOSE ANGEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',130266,'2011-05-23','964010.00','A'),('903',3,'GONZALEZ MALDONADO MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2010-11-13','576500.00','A'),('904',1,'OCHOA BARRIGA JORGE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',130266,'2011-05-05','401380.00','A'),('905',1,'OSORIO REDONDO JESUS DAVID','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127300,'2011-08-11','277390.00','A'),('906',1,'BAYONA BARRIENTOS JEAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-01-25','182820.00','A'),('907',1,'MARTINEZ GOMEZ CARLOS ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132775,'2010-03-11','81940.00','A'),('908',1,'PUELLO LOPEZ GUILLERMO LEON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-08-12','861240.00','A'),('909',1,'MOGOLLON LONDOÑO PEDRO LUIS CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132775,'2011-06-22','60380.00','A'),('91',1,'ORTIZ RIOS JAVIER ADOLFO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-12','813200.00','A'),('911',1,'HERRERA HOYOS CARLOS FRANCISCO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132775,'2010-09-12','409800.00','A'),('912',3,'RIM MYUNG HWAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-15','894450.00','A'),('913',3,'BIANCO DORIEN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-29','242820.00','A'),('914',3,'FROIMZON WIEN DANIEL','191821112','CRA 25 CALLE 100','348@yahoo.com','2011-02-03',132165,'2010-11-06','530780.00','A'),('915',3,'ALVEZ AZEVEDO JOAO MIGUEL','191821112','CRA 25 CALLE 100','861@hotmail.es','2011-02-03',127591,'2009-06-25','925420.00','A'),('916',3,'CARRASCO DIAZ LUIS ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-10-02','34780.00','A'),('917',3,'VIVALLOS MEDINA LEONEL EDMUNDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2010-09-12','397640.00','A'),('919',3,'LASSE ANDRE BARKLIEN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',286724,'2011-03-31','226390.00','A'),('92',1,'CUERVO CARDENAS ALEJANDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-08','950630.00','A'),('920',3,'BARCELOS PLOTEGHER LILIA MARA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-07','480380.00','A'),('921',1,'JARAMILLO ARANGO JUAN DIEGO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127559,'2011-06-28','722700.00','A'),('93',3,'RUIZ PRIETO WILLIAM','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',131272,'2011-01-19','313540.00','A'),('932',7,'COMFENALCO ANTIOQUIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-05-05','515430.00','A'),('94',1,'GALLEGO JUAN GUILLERMO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-25','715830.00','A'),('944',3,'KARMELIC PAVLOV VESNA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',120066,'2010-08-07','585580.00','A'),('945',3,'RAMIREZ BORDON OSCAR','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-07-02','526250.00','A'),('946',3,'SORACCO CABEZA RODRIGO ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-07-04','874490.00','A'),('949',1,'GALINDO JORGE ERNESTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127300,'2008-07-10','344110.00','A'),('950',3,'DR KNABLE THOMAS ERNST ALBERT','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',256231,'2009-11-17','685430.00','A'),('953',3,'VELASQUEZ JANETH','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-20','404650.00','A'),('954',3,'SOZA REX JOSE FRANCISCO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',150903,'2011-05-26','269790.00','A'),('955',3,'FONTANA GAETE JAIME PATRICIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-01-11','134970.00','A'),('957',3,'PEREZ MARTINEZ GRECIA INDIRA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132958,'2010-08-27','922610.00','A'),('96',1,'FORERO CUBILLOS JORGEARTURO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-25','45020.00','A'),('97',1,'SILVA ACOSTA MARIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-19','309580.00','A'),('978',3,'BLUMENTHAL JAIRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117630,'2010-04-22','653490.00','A'),('984',3,'SUN XIAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-01-17','203630.00','A'),('99',1,'CANO GUZMAN ALEJANDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-23','135620.00','A'),('999',1,' DRAGER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-12-22','882070.00','A'),('CELL1020',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1021',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1083',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1153',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1179',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1183',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL126',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1326',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1329',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL133',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1413',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1426',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1529',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1614',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1651',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1760',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL179',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1857',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1879',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1902',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1921',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1962',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1992',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2006',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL206',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL215',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2187',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2307',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2322',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2497',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2641',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2736',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2805',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL281',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2905',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2963',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3029',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3090',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3161',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3302',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3309',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3325',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3372',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3422',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3514',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3562',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3614',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3652',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3661',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3673',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3789',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3795',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL381',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3840',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3886',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3944',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL396',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL401',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4012',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL411',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4137',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4159',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4183',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4198',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4291',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4308',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4324',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4330',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4334',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4415',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4440',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4547',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4639',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4662',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4698',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL475',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4790',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4838',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4885',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4939',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5064',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5066',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL51',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5102',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5116',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5187',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5192',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5206',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5226',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5250',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5282',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL536',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5401',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5415',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5503',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5506',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL554',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5544',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5595',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5648',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5801',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5821',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6179',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6201',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6277',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6288',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6358',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6369',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6408',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6418',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6425',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6439',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6509',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6533',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6556',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL673',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6731',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6766',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6775',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6802',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6834',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6842',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6890',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6953',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6957',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7024',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7198',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7216',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL728',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7314',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7316',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7418',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7431',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7432',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7513',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7522',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7617',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7623',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7708',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7777',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL787',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7907',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7951',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7956',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8004',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8058',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL811',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8136',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8162',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8187',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8286',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8300',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8316',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8339',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8366',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8389',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8446',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8487',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8546',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8578',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8643',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8774',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8829',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8846',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8942',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9046',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9110',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL917',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9189',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9206',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9241',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9331',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9429',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9434',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9495',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9517',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9558',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9650',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9748',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9830',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9842',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9878',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9893',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9945',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('T-Cx200',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx201',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx202',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx203',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx204',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx205',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx206',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx207',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx208',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx209',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx210',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx211',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx212',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx213',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx214',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'); - -drop table if exists `personnes`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -create table `personnes` ( - `cedula` char(15) character set utf8 collate utf8_unicode_ci not null, - `tipo_documento_id` int(3) unsigned not null, - `nombres` varchar(100) character set utf8 collate utf8_unicode_ci not null DEFAULT '', - `telefono` varchar(20) character set utf8 collate utf8_unicode_ci default null, - `direccion` varchar(100) character set utf8 collate utf8_unicode_ci default null, - `email` varchar(50) character set utf8 collate utf8_unicode_ci default null, - `fecha_nacimiento` date DEFAULT '1970-01-01', - `ciudad_id` int(10) unsigned DEFAULT '0', - `creado_at` date default null, - `cupo` decimal(16,2) not null, - `estado` enum('A','I','X') character set utf8 collate utf8_unicode_ci not null, - primary key (`cedula`), - KEY `ciudad_id` (`ciudad_id`), - KEY `estado` (`estado`), - KEY `cupo` (`cupo`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; -INSERT INTO `personnes` VALUES ('1',3,'HUANG ZHENGQUIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-18','6930.00','I'),('100',1,'USME FERNANDEZ JUAN GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-04-15','439480.00','A'),('1003',8,'SINMON PEREZ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-25','468610.00','A'),('1009',8,'ARCINIEGAS Y VILLAMIZAR','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-08-12','967680.00','A'),('101',1,'CRANE DE NARVAEZ JUAN PABLO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-06-09','790540.00','A'),('1011',8,'EL EVENTO','191821112','CRA 25 CALLE 100','596@terra.com.co','2011-02-03',127591,'2011-05-24','820390.00','A'),('1020',7,'OSPINA YOLANDA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-02','222970.00','A'),('1025',7,'CHEMIPLAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-08','918670.00','A'),('1034',1,'TAXI FILMS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-09-01','962580.00','A'),('104',1,'CASTELLANOS JIMENEZ NOE','191821112','CRA 25 CALLE 100','127@yahoo.es','2011-02-03',127591,'2011-10-05','95230.00','A'),('1046',3,'JACQUET PIERRE MICHEL ALAIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',263489,'2011-07-23','90810.00','A'),('1048',5,'SPOERER VELEZ CARLOS JORGE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-02-03','184920.00','A'),('1049',3,'SIDNEI DA SILVA LUIZ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117630,'2011-07-02','850180.00','A'),('105',1,'HERRERA SEQUERA ALVARO FRANCISCO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-26','77390.00','A'),('1050',3,'CAVALCANTI YUE CARLA HANLI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-31','696130.00','A'),('1052',1,'BARRETO RIVAS ELKIN MARTIN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',131508,'2011-09-19','562160.00','A'),('1053',3,'WANDERLEY ANTONIO ERNESTO THOME','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150617,'2011-01-31','20490.00','A'),('1054',3,'HE SHAN','191821112','CRA 25 CALLE 100','715@yahoo.es','2011-02-03',132958,'2010-10-05','415970.00','A'),('1055',3,'ZHRNG XIM','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-05','18380.00','A'),('1057',3,'NICKEL GEB. STUTZ KARIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-10-08','164850.00','A'),('1058',1,'VELEZ PAREJA IGNACIO ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132775,'2011-06-24','292250.00','A'),('1059',3,'GURKE RALF ERNST','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',287570,'2011-06-15','966700.00','A'),('106',1,'ESTRADA LONDOÑO JUAN SIMON','191821112','CRA 25 CALLE 100','8@terra.com.co','2011-02-03',128579,'2011-03-09','101260.00','A'),('1060',1,'MEDRANO BARRIOS WILSON','191821112','CRA 25 CALLE 100','479@facebook.com','2011-02-03',132775,'2011-06-18','956740.00','A'),('1061',1,'GERDTS PORTO HANS EDUARDO','191821112','CRA 25 CALLE 100','140@gmail.com','2011-02-03',127591,'2011-05-09','883590.00','A'),('1062',1,'BORGE VISBAL JORGE FIDEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132775,'2011-07-14','547750.00','A'),('1063',3,'GUTIERREZ JOSELYN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-06','87960.00','A'),('1064',4,'OVIEDO PINZON MARYI YULEY','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127538,'2011-04-21','796560.00','A'),('1065',1,'VILORA SILVA OMAR ESTEBAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',133535,'2010-06-09','718910.00','A'),('1066',3,'AGUIAR ROMAN RODRIGO HUMBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',126674,'2011-06-28','204890.00','A'),('1067',1,'GOMEZ AGAMEZ ADOLFO DEL CRISTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',131105,'2011-06-15','867730.00','A'),('1068',3,'GARRIDO CECILIA','191821112','CRA 25 CALLE 100','973@yahoo.com.mx','2011-02-03',118777,'2010-08-16','723980.00','A'),('1069',1,'JIMENEZ MANJARRES DAVID RAFAEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132775,'2010-12-17','16680.00','A'),('107',1,'ARANGUREN TEJADA JORGE ENRIQUE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-16','274110.00','A'),('1070',3,'OYARZUN TEJEDA ANDRES FERNANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-26','911490.00','A'),('1071',3,'MARIN BUCK RAFAEL ENRIQUE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',126180,'2011-05-04','507400.00','A'),('1072',3,'VARGAS JOSE ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',126674,'2011-07-28','802540.00','A'),('1073',3,'JUEZ JAIRALA JOSE ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',126180,'2010-04-09','490510.00','A'),('1074',1,'APONTE PENSO HERNAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132879,'2011-05-27','44900.00','A'),('1075',1,'PIÑERES BUSTILLO ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',126916,'2008-10-29','752980.00','A'),('1076',1,'OTERA OMA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-04-29','630210.00','A'),('1077',3,'CONTRERAS CHINCHILLA JUAN DOMINGO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',139844,'2011-06-21','892110.00','A'),('1078',1,'GAMBA LAURENCIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-09-15','569940.00','A'),('108',1,'MUÑOZ ARANGO JUAN CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-01','66770.00','A'),('1080',1,'PRADA ABAUZA CARLOS AUGUSTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-11-15','156870.00','A'),('1081',1,'PAOLA CAROLINA PINTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-27','264350.00','A'),('1082',1,'PALOMINO HERNANDEZ GERMAN JAVIER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',133535,'2011-03-22','851120.00','A'),('1084',1,'URIBE DANIEL ALBERTO','191821112','CRA 25 CALLE 100','602@hotmail.es','2011-02-03',127591,'2011-09-07','759470.00','A'),('1085',1,'ARGUELLO CALDERON ARMANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-24','409660.00','A'),('1087',1,'CARVAJAL HERNANDEZ CHRISTIAN ARMANDO','191821112','CRA 25 CALLE 100','296@yahoo.es','2011-02-03',159432,'2011-06-03','620410.00','A'),('1088',1,'CASTRO BLANCO MANUEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',150512,'2009-10-08','792400.00','A'),('1089',1,'RIBEROS GUTIERREZ GUSTAVO ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-01-27','100800.00','A'),('109',1,'BELTRAN MARIA LUZ DARY','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-06','511510.00','A'),('1091',4,'ORTIZ ORTIZ BENIGNO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127538,'2011-08-05','331540.00','A'),('1092',3,'JOHN CHRISTOPHER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-04-08','277320.00','A'),('1093',1,'PARRA VILLAREAL MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',129499,'2011-08-23','391980.00','A'),('1094',1,'BESGA RODRIGUEZ JUAN JAVIER','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127300,'2011-09-23','127960.00','A'),('1095',1,'ZAPATA MEZA EDGAR FERNANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',129499,'2011-05-19','463840.00','A'),('1096',3,'CORNEJO BRAVO MARCO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2010-11-08','935340.00','A'),('1099',1,'GARCIA PORRAS FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-14','243360.00','A'),('11',1,'HERNANDEZ PARDO ARMANDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-31','197540.00','A'),('110',1,'VANEGAS JULIAN ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-09-06','357260.00','A'),('1101',1,'QUINTERO BURBANO GABRIEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',129499,'2011-08-20','57420.00','A'),('1102',1,'BOHORQUEZ AFANADOR CHRISTIAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-19','214610.00','A'),('1103',1,'MORA VARGAS JULIO ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-29','900790.00','A'),('1104',1,'PINEDA JORGE ARMANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-21','860110.00','A'),('1105',1,'TORO CEBALLOS GONZALO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',129499,'2011-08-18','598180.00','A'),('1106',1,'SCHENIDER TORRES JAIME','191821112','CRA 25 CALLE 100','85@yahoo.com.mx','2011-02-03',127799,'2011-08-11','410590.00','A'),('1107',1,'RUEDA VILLAMIZAR JAIME','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-11-15','258410.00','A'),('1108',1,'RUEDA VILLAMIZAR RICARDO JAIME','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',129499,'2011-03-22','60260.00','A'),('1109',1,'GOMEZ RODRIGUEZ HERNANDO ARTURO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-06-02','526080.00','A'),('111',1,'FRANCISCO EDUARDO JAIME BOTERO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-09-09','251770.00','A'),('1110',1,'HERNÁNDEZ MÉNDEZ EDGAR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',129499,'2011-03-22','449610.00','A'),('1113',1,'LEON HERNANDEZ OSCAR','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',129499,'2011-03-21','992090.00','A'),('1114',1,'LIZARAZO CARREÑO HUGO ARCENIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',133535,'2010-12-10','959490.00','A'),('1115',1,'LIAN BARRERA GABRIEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-05-30','821170.00','A'),('1117',3,'TELLEZ BEZAN FRANCISCO JAVIER ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',117002,'2011-08-21','673430.00','A'),('1118',1,'FUENTES ARIZA DIEGO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-09','684970.00','A'),('1119',1,'MOLINA M. ROBINSON','191821112','CRA 25 CALLE 100','728@hotmail.com','2011-02-03',129447,'2010-09-19','404580.00','A'),('112',1,'PTIÑO PINTO ARIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-10-06','187050.00','A'),('1120',1,'ORTIZ DURAN BENIGNO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127538,'2011-08-05','967970.00','A'),('1121',1,'CARVAJAL ALMEIDA LUIS RAUL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',129499,'2011-06-22','626140.00','A'),('1122',1,'TORRES QUIROGA EDWIN SILVESTRE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',129447,'2011-08-17','226780.00','A'),('1123',1,'VIVIESCAS JAIMES ALVARO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-10','255480.00','A'),('1124',1,'MARTINEZ RUEDA JAVIER EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',129447,'2011-06-23','597040.00','A'),('1125',1,'ANAYA FLORES JORGE ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',129499,'2011-06-04','218790.00','A'),('1126',3,'TORRES MARTINEZ ANTONIO JESUS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',188640,'2010-09-02','302820.00','A'),('1127',3,'CACHO LEVISIER JOSE MANUEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',153276,'2009-06-25','857720.00','A'),('1129',3,'ULLOA VALDIVIESO CRISTIAN ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-06-02','327570.00','A'),('113',1,'HIGUERA CALA JAIME ENRIQUE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-27','179950.00','A'),('1130',1,'ARCINIEGAS WILLIAM','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',126892,'2011-08-05','497420.00','A'),('1131',1,'BAZA ACUÑA JAVIER','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',129447,'2010-12-10','504410.00','A'),('1132',3,'BUIRA ROS CARLOS MARIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-04-27','29750.00','A'),('1133',1,'RODRIGUEZ JAIME','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',129447,'2011-06-10','635560.00','A'),('1134',1,'QUIROGA PEREZ NELSON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',129447,'2011-05-18','88520.00','A'),('1135',1,'TATIANA AYALA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127122,'2011-07-01','535920.00','A'),('1136',1,'OSORIO BENEDETTI FABIAN AUGUSTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132775,'2010-10-23','414060.00','A'),('1139',1,'CELIS PINTO ARMANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2009-02-25','964970.00','A'),('114',1,'VALDERRAMA CUERVO JOSE IGNACIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-02','338590.00','A'),('1140',1,'ORTIZ ARENAS JUAN MANUEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',129499,'2009-10-21','613300.00','A'),('1141',1,'VALDIVIESO ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',134022,'2009-01-13','171590.00','A'),('1144',1,'LOPEZ CASTILLO NELSON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',129499,'2010-09-09','823110.00','A'),('1145',1,'CAVELIER LUIS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',126916,'2008-11-29','389220.00','A'),('1146',1,'CAVELIER OTOYA LUIS EDURDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',126916,'2010-05-25','476770.00','A'),('1147',1,'GARCIA RUEDA JUAN CARLOS','191821112','CRA 25 CALLE 100','111@yahoo.es','2011-02-03',133535,'2010-09-12','216190.00','A'),('1148',1,'LADINO GOMEZ OMAR ORLANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-02','650640.00','A'),('1149',1,'CARREÑO ORTIZ OSCAR JAVIER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-15','604630.00','A'),('115',1,'NARDEI BONILLO BRUNO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-16','153110.00','A'),('1150',1,'MONTOYA BOZZI MAURICIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',129499,'2011-05-12','71240.00','A'),('1152',1,'LORA RICHARD JAVIER','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-09-15','497700.00','A'),('1153',1,'SILVA PINZON MARCO ANTONIO','191821112','CRA 25 CALLE 100','915@hotmail.es','2011-02-03',127591,'2011-06-15','861670.00','A'),('1154',3,'GEORGE J A KHALILIEH','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-20','815260.00','A'),('1155',3,'CHACON MARIN CARLOS MANUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-07-26','491280.00','A'),('1156',3,'OCHOA CHEHAB XAVIER ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',126180,'2011-06-13','10630.00','A'),('1157',3,'ARAYA GARRI GABRIEL ALEXIS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-09-19','579320.00','A'),('1158',3,'MACCHI ARIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',116366,'2010-04-12','864690.00','A'),('116',1,'GONZALEZ FANDIÑO JAIME EDUARDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-10','749800.00','A'),('1160',1,'CAVALIER LUIS EDUARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',126916,'2009-08-27','333390.00','A'),('1161',3,'DOMINGUEZ DE OBREGON ILEANA DEL CARMEN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',139844,'2011-03-06','910490.00','A'),('1162',2,'FALASCA CLAUDIO ARIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',116511,'2011-07-10','552280.00','A'),('1163',3,'MUTABARUKA PATRICK','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',131352,'2011-03-22','29940.00','A'),('1164',1,'DOMINGUEZ ATENCIA JIMMY CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-07-22','492860.00','A'),('1165',4,'LLANO GONZALEZ ALBERTO MARIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127300,'2010-08-21','374490.00','A'),('1166',3,'LOPEZ ROLDAN JOSE MANUEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-07-31','393860.00','A'),('1167',1,'GUTIERREZ DE PIÑERES JALILIE ARISTIDES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2010-12-09','845810.00','A'),('1168',1,'HEYMANS PIERRE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2010-11-08','47470.00','A'),('1169',1,'BOTERO OSORIO RUBEN DARIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2009-05-27','699940.00','A'),('1170',3,'GARNHAM POBLETE ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',116396,'2011-03-27','357270.00','A'),('1172',1,'DAJUD DURAN JOSE RODRIGO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',133535,'2009-12-02','360910.00','A'),('1173',1,'MARTINEZ MERCADO PEDRO PABLO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-07-25','744930.00','A'),('1174',1,'GARCIA AMADOR ANDRES EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',133535,'2011-05-19','641930.00','A'),('1176',1,'VARGAS VARELA LUIS GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',131568,'2011-08-30','948410.00','A'),('1178',1,'GUTIERRES DE PIÑERES ARISTIDES','191821112','CRA 25 CALLE 100','217@hotmail.com','2011-02-03',133535,'2011-05-10','242490.00','A'),('1179',3,'LEIZAOLA POZO JIMENA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',132958,'2011-08-01','759800.00','A'),('118',1,'FERNANDEZ VELOSO PEDRO HERNANDO','191821112','CRA 25 CALLE 100','452@hotmail.es','2011-02-03',128662,'2010-08-06','198830.00','A'),('1180',3,'MARINO PAOLO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-12-24','71520.00','A'),('1181',1,'MOLINA VIZCAINO GUSTAVO JORGE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-04-28','78220.00','A'),('1182',3,'MEDEL GARCIA FABIAN RODRIGO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-04-25','176540.00','A'),('1183',1,'LESMES ARIAS RUBEN DARIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2010-09-09','648020.00','A'),('1184',1,'ALCALA MARTINEZ ALFREDO ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',132775,'2010-07-23','710470.00','A'),('1186',1,'LLAMAS FOLIACO LUIS ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-07','910210.00','A'),('1187',1,'GUARDO DEL RIO LIBARDO FARID','191821112','CRA 25 CALLE 100','73@yahoo.com.mx','2011-02-03',128662,'2011-09-01','726050.00','A'),('1188',3,'JEFFREY ARTHUR DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',115724,'2011-03-21','899630.00','A'),('1189',1,'DAHL VELEZ JULIANA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',126916,'2011-05-23','320020.00','A'),('119',3,'WALESKA DE LIMA ALMEIDA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118942,'2011-05-09','125240.00','A'),('1190',3,'LUIS JOSE MANUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2008-04-04','901210.00','A'),('1192',1,'AZUERO VALENTINA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-14','26310.00','A'),('1193',1,'MARQUEZ GALINDO MAURICIO JAVIER','191821112','CRA 25 CALLE 100','729@yahoo.es','2011-02-03',131105,'2011-05-13','493560.00','A'),('1195',1,'NIETO FRANCO JUAN FELIPE','191821112','CRA 25 CALLE 100','707@yahoo.com','2011-02-03',127591,'2011-07-30','463790.00','A'),('1196',3,'ESTEVES JOAQUIM LUIS FERNANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-04-05','152270.00','A'),('1197',4,'BARRERO KAREN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-12','369990.00','A'),('1198',1,'CORRALES GUZMAN DELIO ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127689,'2011-08-03','393120.00','A'),('1199',1,'CUELLAR TOCO EDGAR','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127531,'2011-09-20','855640.00','A'),('12',1,'MARIN PRIETO FREDY NELSON ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-23','641210.00','A'),('120',1,'LOPEZ JARAMILLO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2009-04-17','29680.00','A'),('1200',3,'SCHULTER ACHIM','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',291002,'2010-05-21','98860.00','A'),('1201',3,'HOWELL LAURENCE ADRIAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',286785,'2011-05-22','927350.00','A'),('1202',3,'ALCAZAR ESCARATE JAIME PATRICIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117002,'2011-08-25','340160.00','A'),('1203',3,'HIDALGO FUENZALIDA GABRIEL RAUL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-05-03','918780.00','A'),('1206',1,'VANEGAS HENAO ORLANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-27','832910.00','A'),('1207',1,'PEÑARANDA ARIAS RICARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-19','832710.00','A'),('1209',1,'LEZAMA CERVERA JUAN CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132775,'2011-09-14','825980.00','A'),('121',1,'PULIDO JIMENEZ OSCAR HUMBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-29','772700.00','A'),('1211',1,'TRUJILLO BOCANEGRA HAROL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127538,'2011-05-27','199260.00','A'),('1212',1,'ALVAREZ TORRES MARIO RICARDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-08-15','589960.00','A'),('1213',1,'CORRALES VARON BELMER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-26','352030.00','A'),('1214',3,'CUEVAS RODRIGUEZ MANUELA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-30','990250.00','A'),('1216',1,'LOPEZ EDICSON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-31','505210.00','A'),('1217',3,'GARCIA PALOMARES JUAN JAVIER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-07-31','840440.00','A'),('1218',1,'ARCINIEGAS NARANJO RICARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127492,'2010-12-17','686610.00','A'),('122',1,'GONZALEZ RIANO LEONARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128031,'2011-08-05','774450.00','A'),('1220',1,'GARCIA GUTIERREZ WILLIAM','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-06-20','498680.00','A'),('1221',3,'GOMEZ DE ALONSO ANGELA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-27','758300.00','A'),('1222',1,'MEDINA QUIROGA JAMES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127538,'2011-01-16','295480.00','A'),('1224',1,'ARCILA CORREA JUAN CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-03-20','125900.00','A'),('1225',1,'QUIJANO REYES CARLOS ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127538,'2010-04-08','22100.00','A'),('1226',1,'VARGAS GALLEGO JAIRO ALONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2009-07-30','732820.00','A'),('1228',3,'NAPANGA MIRENGHI MARTIN','191821112','CRA 25 CALLE 100','153@yahoo.es','2011-02-03',132958,'2011-02-08','790400.00','A'),('123',1,'LAMUS CASTELLANOS ANDRES RICARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-11','554160.00','A'),('1230',1,'RIVEROS PIÑEROS JOSE ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127492,'2011-09-25','422220.00','A'),('1231',3,'ESSER JUAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127327,'2011-04-01','635060.00','A'),('1232',3,'DOMINGUEZ MORA MAURICIO ALFREDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-22','908630.00','A'),('1233',3,'MOLINA FERNANDEZ FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-05-28','637990.00','A'),('1234',3,'BELLO DANIEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',196234,'2010-09-04','464040.00','A'),('1235',3,'BENADAVA GUEVARA DAVID ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-05-18','406240.00','A'),('1236',3,'RODRIGUEZ MATOS ROBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-03-22','639070.00','A'),('1237',3,'TAPIA ALARCON PATRICIO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2010-07-06','976620.00','A'),('1239',3,'VERCHERE ALFONSO CHRISTIAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',117002,'2010-08-23','899600.00','A'),('1241',1,'ESPINEL LUIS FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128206,'2009-03-09','302860.00','A'),('1242',3,'VERGARA FERREIRA PATRICIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-10-03','713310.00','A'),('1243',3,'ZUMARRAGA SIRVENT CRSTINA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-08-24','657950.00','A'),('1244',4,'ESCORCIA VASQUEZ TOMAS','191821112','CRA 25 CALLE 100','354@yahoo.com.mx','2011-02-03',128662,'2011-04-01','149830.00','A'),('1245',4,'PARAMO CUENCA KELLY LORENA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127492,'2011-05-04','775300.00','A'),('1246',4,'PEREZ LOPEZ VERONICA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2011-07-11','426990.00','A'),('1247',4,'CHAPARRO RODRIGUEZ DANIELA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-10-08','809070.00','A'),('1249',4,'DIAZ MARTINEZ MARIA CAROLINA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',133535,'2011-05-30','394740.00','A'),('125',1,'CALDON RODRIGUEZ JAIME ARIEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',126968,'2011-07-29','574780.00','A'),('1250',4,'PINEDA VASQUEZ JUAN PABLO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2010-09-03','680540.00','A'),('1251',5,'MATIZ URIBE ANGELA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-12-25','218470.00','A'),('1253',1,'ZAMUDIO RICAURTE JAIRO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',126892,'2011-08-05','598160.00','A'),('1254',1,'ALJURE FRANCISCO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-07-21','838660.00','A'),('1255',3,'ARMESTO AIRA ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',196234,'2011-01-29','398840.00','A'),('1257',1,'POTES GUEVARA JAIRO MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127858,'2011-03-17','194580.00','A'),('1258',1,'BURBANO QUIROGA RAFAEL','191821112','CRA 25 CALLE 100','767@facebook.com','2011-02-03',127591,'2011-04-07','538220.00','A'),('1259',1,'CARDONA GOMEZ JAVIR','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2011-03-16','107380.00','A'),('126',1,'PULIDO PARDO GUIDO IVAN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-10-05','531550.00','A'),('1260',1,'LOPERA LEDESMA PABLO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2011-09-19','922240.00','A'),('1263',1,'TRIBIN BARRIGA JUAN MANUEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2011-09-02','525330.00','A'),('1264',1,'NAVIA LOPEZ ANDRÉS FELIPE ','191821112','CRA 25 CALLE 100','353@hotmail.es','2011-02-03',127300,'2011-07-15','591190.00','A'),('1265',1,'CARDONA GOMEZ FABIAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2010-11-18','379940.00','A'),('1266',1,'ESCARRIA VILLEGAS ANDRES JULIAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-08-19','126160.00','A'),('1268',1,'CASTRO HERNANDEZ ALVARO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127300,'2011-03-25','76260.00','A'),('127',1,'RODRIGUEZ RODRIGUEZ GIOVANI FRANCISCO','191821112','CRA 25 CALLE 100','662@hotmail.es','2011-02-03',127591,'2011-09-29','933390.00','A'),('1270',1,'LEAL HERNANDEZ MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-24','313610.00','A'),('1272',1,'ORTIZ CARDONA WILLIAM ENRIQUE','191821112','CRA 25 CALLE 100','914@hotmail.com','2011-02-03',128662,'2011-09-13','272150.00','A'),('1273',1,'ROMERO VAN GOMPEL HERNAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-09-07','832960.00','A'),('1274',1,'BERMUDEZ LONDOÑO JHON FREDY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127300,'2011-08-29','348380.00','A'),('1275',1,'URREA ALVAREZ NICOLAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-01','242980.00','A'),('1276',1,'VALENCIA LLANOS RODRIGO AUGUSTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-04-11','169790.00','A'),('1277',1,'PAZ VALENCIA GUILLERMO ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127300,'2011-08-05','120020.00','A'),('1278',1,'MONROY CORREDOR GERARDO ALONSO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127300,'2011-06-25','90700.00','A'),('1279',1,'RIOS MEDINA JAVIER ERMINSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2011-09-12','93440.00','A'),('128',1,'GALLEGO GUZMAN MARIO ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-06-25','72290.00','A'),('1280',1,'GARCIA OSCAR EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127662,'2011-09-30','195090.00','A'),('1282',1,'MURILLO PESELLIN GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2011-06-15','890530.00','A'),('1284',1,'DIAZ ALVAREZ JOHNY','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2011-06-25','164130.00','A'),('1285',1,'GARCES BELTRAN RAUL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2011-08-11','719220.00','A'),('1286',1,'MATERON POVEDA LUIS ALEJANDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-25','103710.00','A'),('1287',1,'VALENCIA ALEXANDER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-10-23','360880.00','A'),('1288',1,'PEÑA AGUDELO JOSE RAMON','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',134022,'2011-05-25','493280.00','A'),('1289',1,'CORREA NUÑEZ JORGE ALEXANDER','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-08-18','383750.00','A'),('129',1,'ALVAREZ RODRIGUEZ IVAN RICARDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2008-01-28','561290.00','A'),('1291',1,'BEJARANO ROSERO FREDDY ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-10-09','43400.00','A'),('1292',1,'CASTILLO BARRIOS GUSTAVO ADOLFO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127300,'2011-06-17','900180.00','A'),('1296',1,'GALVEZ GUTIERREZ JUAN PABLO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127300,'2010-03-28','807090.00','A'),('1297',3,'CRUZ GARCIA MILTON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',139844,'2011-03-21','75630.00','A'),('1298',1,'VILLEGAS GUTIERREZ JOSE RICARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-11','956860.00','A'),('13',1,'VACA MURCIA JESUS ALFREDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-04','613430.00','A'),('1301',3,'BOTTI ALFONSO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',231989,'2011-04-04','910640.00','A'),('1302',3,'COTINO HUESO LORENZO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-02-02','803450.00','A'),('1304',3,'NESPOLI MANTOVANI LUIZ CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-04-18','16230.00','A'),('1307',4,'AVILA GIL PAULA ANDREA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-19','711110.00','A'),('1308',4,'VALLEJO PINEDA ALEJANDRA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-08-12','323490.00','A'),('1312',1,'ROMERO OSCAR EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-04-17','642460.00','A'),('1314',3,'LULLIES CONSTANZE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',245206,'2010-06-03','154970.00','A'),('1315',1,'CHAPARRO GUTIERREZ JORGE ADRIANO','191821112','CRA 25 CALLE 100','284@hotmail.es','2011-02-03',127591,'2010-12-02','325440.00','A'),('1316',1,'BARRANTES DISI RICARDO JOSE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132879,'2011-07-18','162270.00','A'),('1317',3,'VERDES GAGO JOSE ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2010-03-10','835060.00','A'),('1319',3,'MARTIN MARTINEZ GUSTAVO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2010-05-26','937220.00','A'),('1320',3,'MOTTURA MASSIMO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2008-11-10','620640.00','A'),('1321',3,'RUSSELL TIMOTHY JAMES','191821112','CRA 25 CALLE 100','502@hotmail.es','2011-02-03',145135,'2010-04-16','291560.00','A'),('1322',3,'JAIN TARSEM','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',190393,'2011-05-31','595890.00','A'),('1323',3,'ORTEGA CEVALLOS JULIETA ELIZABETH','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-30','104760.00','A'),('1324',3,'MULLER PICHAIDA ANDRES FELIPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-05-17','736130.00','A'),('1325',3,'ALVEAR TELLEZ JULIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-01-23','366390.00','A'),('1327',3,'MOYA LATORRE MARCELA CAROLINA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-05-17','18520.00','A'),('1328',3,'LAMA ZAROR RODRIGO IGNACIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2010-10-27','221990.00','A'),('1329',3,'HERNANDEZ CIFUENTES MAURICE JEANETTE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',139844,'2011-06-22','54410.00','A'),('133',1,'CORDOBA HOYOS JUAN PABLO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-20','966820.00','A'),('1330',2,'HOCHKOFLER NOEMI CONSUELO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-27','606070.00','A'),('1331',4,'RAMIREZ BARRERO DANIELA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',154563,'2011-04-18','867120.00','A'),('1332',4,'DE LEON DURANGO RICARDO JOSE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',131105,'2011-09-08','517400.00','A'),('1333',4,'RODRIGUEZ MACIAS IVAN MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',129447,'2011-05-23','985620.00','A'),('1334',4,'GUTIERREZ DE PIÑERES YANET MARIA ALEJANDRA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',133535,'2011-06-16','375890.00','A'),('1335',4,'GUTIERREZ DE PIÑERES YANET MARIA GABRIELA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-06-16','922600.00','A'),('1336',4,'CABRALES BECHARA JOSE MARIA','191821112','CRA 25 CALLE 100','708@hotmail.com','2011-02-03',131105,'2011-05-13','485330.00','A'),('1337',4,'MEJIA TOBON LUIS DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127662,'2011-08-05','658860.00','A'),('1338',3,'OROS NERCELLES CRISTIAN ANDRE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',144215,'2011-04-26','838310.00','A'),('1339',3,'MORENO BRAVO CAROLINA ANDREA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',190393,'2010-12-08','214950.00','A'),('134',1,'GONZALEZ LOPEZ DANIEL ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-08','178580.00','A'),('1340',3,'FERNANDEZ GARRIDO MARCELO FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-07-08','559820.00','A'),('1342',3,'SUMEGI IMRE ZOLTAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-16','91750.00','A'),('1343',3,'CALDERON FLANDEZ SERGIO','191821112','CRA 25 CALLE 100','108@hotmail.com','2011-02-03',117002,'2010-12-12','996030.00','A'),('1345',3,'CARBONELL ATCHUGARRY GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',116366,'2010-04-12','536390.00','A'),('1346',3,'MONTEALEGRE AGUILAR FEDERICO ','191821112','CRA 25 CALLE 100','448@yahoo.es','2011-02-03',132165,'2011-08-08','567260.00','A'),('1347',1,'HERNANDEZ MANCHEGO CARLOS JULIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-04-28','227130.00','A'),('1348',1,'ARENAS ZARATE FERNEY ARNULFO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127963,'2011-03-26','433860.00','A'),('1349',3,'DELFIM DINIZ PASSOS PINHEIRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',110784,'2010-04-17','487930.00','A'),('135',1,'GARCIA SIMBAQUEBA RUBEN DARIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-25','992420.00','A'),('1350',3,'BRAUN VALENZUELA FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-29','138050.00','A'),('1351',3,'LEVIN FIORELLI ANDRES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',116366,'2011-04-10','226470.00','A'),('1353',3,'BALTODANO ESQUIVEL LAURA CRISTINA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132165,'2011-08-01','911660.00','A'),('1354',4,'ESCOBAR YEPES ANDREA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-05-19','403630.00','A'),('1356',1,'GAGELI OSORIO ALEJANDRO','191821112','CRA 25 CALLE 100','228@yahoo.com.mx','2011-02-03',128662,'2011-07-14','205070.00','A'),('1357',3,'CABAL ALVAREZ RUBEN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-08-14','175770.00','A'),('1359',4,'HUERFANO JUAN DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-04','790970.00','A'),('136',1,'OSORIO RAMIREZ LEONARDO','191821112','CRA 25 CALLE 100','686@yahoo.es','2011-02-03',128662,'2010-05-14','426380.00','A'),('1360',4,'RAMON GARCIA MARIA PAULA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-01','163890.00','A'),('1362',30,'ALVAREZ CLAVIO CARLA ALEJANDRA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127203,'2011-04-18','741020.00','A'),('1363',3,'SERRA DURAN GERARDO ENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-08-03','365490.00','A'),('1364',3,'NORIEGA VALVERDE SILVIA MARCELA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132775,'2011-02-27','604370.00','A'),('1366',1,'JARAMILLO LOPEZ ALEJANDRO','191821112','CRA 25 CALLE 100','269@terra.com.co','2011-02-03',127559,'2010-11-08','813800.00','A'),('1367',1,'MAZO ROLDAN CARLOS ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-05-04','292880.00','A'),('1368',1,'MURIEL ARCILA MAURICIO HERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-29','22970.00','A'),('1369',1,'RAMIREZ CARLOS FERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-14','236230.00','A'),('137',1,'LUNA PEREZ JUAN PABLO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',126881,'2011-08-05','154640.00','A'),('1370',1,'GARCIA GRAJALES PEDRO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128166,'2011-10-09','112230.00','A'),('1372',3,'GARCIA ESCOBAR ANA MARIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2011-03-29','925670.00','A'),('1373',3,'ALVES DIAS CARLOS AUGUSTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-07','70940.00','A'),('1374',3,'MATTOS CHRISTIANE GARCIA CID','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',183024,'2010-08-25','577700.00','A'),('1376',1,'CARVAJAL ROJAS ORLANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-10','645240.00','A'),('1377',3,'MADARIAGA CADIZ CLAUDIO CRISTIAN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2011-10-04','199200.00','A'),('1379',3,'MARIN YANEZ ALICIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-02-20','703870.00','A'),('138',1,'DIAZ AVENDAÑO MARCELO IVAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-22','494080.00','A'),('1381',3,'COSTA VILLEGAS LUIS ALEJANDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117002,'2011-08-21','580670.00','A'),('1382',3,'DAZA PEREZ JOSE LUIS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',122035,'2009-02-23','888000.00','A'),('1385',4,'RIVEROS ARIAS MARIA ALEJANDRA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127492,'2011-09-26','35710.00','A'),('1386',30,'TORO GIRALDO MATEO','191821112','CRA 25 CALLE 100','433@yahoo.com.mx','2011-02-03',127591,'2011-07-17','700730.00','A'),('1387',4,'ROJAS YARA LAURA DANIELA MARIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-31','396530.00','A'),('1388',3,'GALLEGO RODRIGO MARIA PILAR','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2009-04-19','880450.00','A'),('1389',1,'PANTOJA VELASQUEZ JOSE ARMANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127300,'2011-08-05','212660.00','A'),('139',1,'FRANCO GOMEZ HERNÁN EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-01-19','6450.00','A'),('1390',3,'VAN DEN BORNE KEES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2010-01-28','421930.00','A'),('1391',3,'MONDRAGON FLORES JUAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-08-22','471700.00','A'),('1392',3,'BAGELLA MICHELE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-07-27','92720.00','A'),('1393',3,'BISTIANCIC MACHADO ANA INES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',116366,'2010-08-02','48490.00','A'),('1394',3,'BAÑADOS ORTIZ MARIA PILAR','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-08-25','964280.00','A'),('1395',1,'CHINDOY CHINDOY HERNANDO','191821112','CRA 25 CALLE 100','107@terra.com.co','2011-02-03',126892,'2011-08-25','675920.00','A'),('1396',3,'SOTO NUÑEZ ANDRES ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-10-02','486760.00','A'),('1397',1,'DELGADO MARTINEZ LORGE ELIAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-23','406040.00','A'),('1398',1,'LEON GUEVARA JAVIER ANIBAL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',126892,'2011-09-08','569930.00','A'),('1399',1,'ZARAMA BASTIDAS LUIS GABRIEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',126892,'2011-08-05','631540.00','A'),('14',1,'MAGUIN HENNSSEY LUIS FERNANDO','191821112','CRA 25 CALLE 100','714@gmail.com','2011-02-03',127591,'2011-07-11','143540.00','A'),('140',1,'CARRANZA CUY ALEXANDER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-25','550010.00','A'),('1401',3,'REYNA CASTORENA JOSE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',189815,'2011-08-29','344970.00','A'),('1402',1,'GFALLO BOTERO SERGIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-07-14','381100.00','A'),('1403',1,'ARANGO ARAQUE JUAN CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-05-04','870590.00','A'),('1404',3,'LASSNER NORBERTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118942,'2010-02-28','209650.00','A'),('1405',1,'DURANGO MARIN HECTOR LEON','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'1970-02-02','436480.00','A'),('1407',1,'FRANCO CASTAÑO DIEGO MAURICIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-06-28','457770.00','A'),('1408',1,'HERNANDEZ SERGIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-05-29','628550.00','A'),('1409',1,'CASTAÑO DUQUE CARLOS HUGO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-03-23','769410.00','A'),('141',1,'CHAMORRO CHEDRAUI SERGIO ALBERTO','191821112','CRA 25 CALLE 100','922@yahoo.com.mx','2011-02-03',127591,'2011-05-07','730720.00','A'),('1411',1,'RAMIREZ MONTOYA ADAMO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-04-13','498880.00','A'),('1412',1,'GONZALEZ BENJUMEA OSCAR HUMBERTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-11-01','610150.00','A'),('1413',1,'ARANGO ACEVEDO WALTER ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-10-07','554090.00','A'),('1414',1,'ARANGO GALLO HUMBERTO LEON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-02-25','940010.00','A'),('1415',1,'VELASQUEZ LUIS GONZALO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-07-06','37760.00','A'),('1416',1,'MIRA AGUILAR FRANCISCO ALEJANDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-30','368790.00','A'),('1417',1,'RIVERA ARISTIZABAL CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-03-02','730670.00','A'),('1418',1,'ARISTIZABAL ROLDAN ANDRES RICARDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-02','546960.00','A'),('142',1,'LOPEZ ZULETA MAURICIO ALEXANDER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-01','3550.00','A'),('1420',1,'ESCORCIA ARAMBURO JUAN MARIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-04-01','73100.00','A'),('1421',1,'CORREA PARRA RICARDO ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-08-05','737110.00','A'),('1422',1,'RESTREPO NARANJO DANIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-09-15','466240.00','A'),('1423',1,'VELASQUEZ CARLOS JUAN','191821112','CRA 25 CALLE 100','123@yahoo.com','2011-02-03',128662,'2010-06-09','119880.00','A'),('1424',1,'MACIA GONZALEZ ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2010-11-12','200690.00','A'),('1425',1,'BERRIO MEJIA HELBER ANTONIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2010-06-04','643800.00','A'),('1427',1,'GOMEZ GUTIERREZ CARLOS ARIEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-09-08','153320.00','A'),('1428',1,'RESTREPO LOPEZ JOSE ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-12','915770.00','A'),('1429',1,'BARTH TOBAR LUIS FERNANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-02-23','118900.00','A'),('143',1,'MUNERA BEDIYA JUAN CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-09-21','825600.00','A'),('1430',1,'JIMENEZ VELEZ ANDRES EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-02-26','847160.00','A'),('1431',1,'TAKAHASHI GAVIRIA NICOLAS KEIICHIRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-13','879120.00','A'),('1432',1,'ESCOBAR JARAMILLO ESTEBAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2010-06-10','854110.00','A'),('1433',1,'PALACIO NAVARRO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-08-18','633200.00','A'),('1434',1,'LONDOÑO MUÑOZ ADOLFO LEON','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-09-14','603670.00','A'),('1435',1,'PULGARIN JAIME ANDRES','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2009-11-01','118730.00','A'),('1436',1,'FERRERA ZULUAGA LUIS FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-07-10','782630.00','A'),('1437',1,'VASQUEZ VELEZ HABACUC','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-27','557000.00','A'),('1438',1,'HENAO PALOMINO DIEGO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2009-05-06','437080.00','A'),('1439',1,'HURTADO URIBE JUAN GONZALO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-01-11','514400.00','A'),('144',1,'ALDANA RODOLFO AUGUSTO','191821112','CRA 25 CALLE 100','838@yahoo.es','2011-02-03',127591,'2011-08-07','117350.00','A'),('1441',1,'URIBE DANIEL ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',133535,'2010-11-19','760610.00','A'),('1442',1,'PINEDA GALIANO JUAN CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-07-29','20770.00','A'),('1443',1,'DUQUE BETANCOURT FABIO LEON','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-11-26','822030.00','A'),('1444',1,'JARAMILLO TORO HERNAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-04-27','47830.00','A'),('145',1,'VASQUEZ ZAPATA JUAN CARLOS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-09','109940.00','A'),('1450',1,'TOBON FRANCO MARCO ANTONIO','191821112','CRA 25 CALLE 100','545@facebook.com','2011-02-03',127591,'2011-05-03','889540.00','A'),('1454',1,'LOTERO PAVAS CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-05-28','646750.00','A'),('1455',1,'ESTRADA HENAO JAVIER ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128569,'2009-09-07','215460.00','A'),('1456',1,'VALDERRAMA MAXIMILIANO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-23','137030.00','A'),('1457',3,'ESTRADA ALVAREZ GONZALO ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',154903,'2011-05-02','38790.00','A'),('1458',1,'PAUCAR VALLEJO JAIRO ALONSO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-10-15','782860.00','A'),('1459',1,'RESTREPO GIRALDO JHON DARIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-04-04','797930.00','A'),('146',1,'BAQUERO FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2010-03-03','197650.00','A'),('1460',1,'RESTREPO DOMINGUEZ GUSTAVO ADOLFO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2009-05-18','641050.00','A'),('1461',1,'YANOVICH JACKY','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-08-21','811470.00','A'),('1462',1,'HINCAPIE ROLDAN JOSE ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-08-27','134200.00','A'),('1463',3,'ZEA JORGE OLIVER','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',150699,'2011-03-12','236610.00','A'),('1464',1,'OSCAR MAURICIO ECHAVARRIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-11-24','780440.00','A'),('1465',1,'COSSIO GIL JOSE ALEXANDER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-10-01','192380.00','A'),('1466',1,'GOMEZ CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-03-01','620580.00','A'),('1467',1,'VILLALOBOS OCHOA ANDRES GABRIEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-08-18','525740.00','A'),('1470',1,'GARCIA GONZALEZ DAVID DARIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-09-17','986990.00','A'),('1471',1,'RAMIREZ RESTREPO ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-04-03','162250.00','A'),('1472',1,'VASQUEZ GUTIERREZ JUAN ANDRES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-05','850280.00','A'),('1474',1,'ESCOBAR ARANGO DAVID','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2010-11-01','272460.00','A'),('1475',1,'MEJIA TORO JUAN DAVID','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-05-02','68320.00','A'),('1477',1,'ESCOBAR GOMEZ JUAN MANUEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127848,'2011-05-15','416150.00','A'),('1478',1,'BETANCUR WILSON','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2008-02-09','508060.00','A'),('1479',3,'ROMERO ARRAU GONZALO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-10','291880.00','A'),('148',1,'REINA MORENO MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-08','699240.00','A'),('1480',1,'CASTAÑO OSORIO JORGE ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127662,'2011-09-20','935200.00','A'),('1482',1,'LOPEZ LOPERA ROBINSON FREDY','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-09-02','196280.00','A'),('1484',1,'HERNAN DARIO RENDON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-03-18','312520.00','A'),('1485',1,'MARTINEZ ARBOLEDA MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2010-11-03','821760.00','A'),('1486',1,'RODRIGUEZ MORA CARLOS MORA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-09-16','171270.00','A'),('1487',1,'PENAGOS VASQUEZ JOSE DOMINGO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-09-06','391080.00','A'),('1488',1,'UERRA MEJIA DIEGO LEON','191821112','CRA 25 CALLE 100','704@hotmail.com','2011-02-03',144086,'2011-08-06','441570.00','A'),('1491',1,'QUINTERO GUTIERREZ ABEL PASTOR','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2009-11-16','138100.00','A'),('1492',1,'ALARCON YEPES IVAN DARIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',150699,'2010-05-03','145330.00','A'),('1494',1,'HERNANDEZ VALLEJO ANDRES MAURICIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-09','125770.00','A'),('1495',1,'MONTOYA MORENO LUIS MIGUEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-11-09','691770.00','A'),('1497',1,'BARRERA CARLOS ANDRES','191821112','CRA 25 CALLE 100','62@yahoo.es','2011-02-03',127591,'2010-08-24','332550.00','A'),('1498',1,'ARROYAVE FERNANDEZ PABLO EMILIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-05-12','418030.00','A'),('1499',1,'GOMEZ ANGEL FELIPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-05-03','92480.00','A'),('15',1,'AMSILI COHEN JOSEPH','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-07','877400.00','A'),('150',3,'ARDILA GUTIERREZ DANIEL MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-12','506760.00','A'),('1500',1,'GONZALEZ DUQUE PABLO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-04-13','208330.00','A'),('1502',1,'MEJIA BUSTAMANTE JUAN FELIPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-08-09','196000.00','A'),('1506',1,'SUAREZ MONTOYA JUAN PABLO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128569,'2011-09-13','368250.00','A'),('1508',1,'ALVAREZ GONZALEZ JUAN PABLO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-02-15','355190.00','A'),('1509',1,'NIETO CORREA ANDRES FELIPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-03-31','899980.00','A'),('1511',1,'HERNANDEZ GRANADOS JHONATHAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-08-30','471720.00','A'),('1512',1,'CARDONA ALVAREZ DEIBY','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2010-10-05','55590.00','A'),('1513',1,'TORRES MARULANDA JUAN ESTEBAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2010-10-20','862820.00','A'),('1514',1,'RAMIREZ RAMIREZ JHON JAIRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-05-11','147310.00','A'),('1515',1,'MONDRAGON TORO NICOLAS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-01-19','148100.00','A'),('1517',3,'SUIDA DIETER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2008-07-21','48580.00','A'),('1518',3,'LEFTWICH ANDREW PAUL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',211610,'2011-06-07','347170.00','A'),('1519',3,'RENTON ANDREW GEORGE PATRICK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',269033,'2010-12-11','590120.00','A'),('152',1,'BUSTOS MONZON CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-22','335160.00','A'),('1521',3,'JOSE CUSTODIO DO ALTISSIMO NETONETO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',119814,'2011-04-28','775000.00','A'),('1522',3,'GUARACI FRANCO DE PAIVA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',119167,'2011-04-28','147770.00','A'),('1525',4,'MORENO TENORIO MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-20','888750.00','A'),('1527',1,'VELASQUEZ HERNANDEZ JHON EDUARSON','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-07-19','161270.00','A'),('1528',4,'VANEGAS ALEJANDRA','191821112','CRA 25 CALLE 100','185@yahoo.com','2011-02-03',127591,'2011-06-20','109830.00','A'),('1529',3,'BARBABE CLAIRE LAURENCE ANNICK','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-04','65330.00','A'),('153',1,'GONZALEZ TORREZ MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-01','762560.00','A'),('1530',3,'COREA MARTINEZ GUILLERMO JOSE ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',135360,'2011-09-25','997190.00','A'),('1531',3,'PACHECO RODRIGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117002,'2010-03-08','789960.00','A'),('1532',3,'WELCH RICHARD WILLIAM','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',190393,'2010-10-04','958210.00','A'),('1533',3,'FOREMAN CAROLYN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',107159,'2011-05-23','421200.00','A'),('1535',3,'ZAGAL SOTO CLAUDIA PAZ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2008-05-16','893130.00','A'),('1536',3,'ZAGAL SOTO CLAUDIA PAZ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-10-08','771600.00','A'),('1538',3,'BLANCO RODRIGUEZ JUAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',197162,'2011-04-02','578250.00','A'),('154',1,'HENDEZ PUERTO JAVIER ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-25','807310.00','A'),('1540',3,'CONTRERAS BRAIN JAVIER ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-02-22','42420.00','A'),('1541',3,'RONDON HERNANDEZ MARYLIN DEL CARMEN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132958,'2011-09-29','145780.00','A'),('1542',3,'ELJURI RAMIREZ EMIRA ELIZABETH','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132958,'2010-10-13','601670.00','A'),('1544',3,'REYES LE ROY TOMAS FRANCISCO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2009-06-24','49990.00','A'),('1545',3,'GHETEA GAMUZ JENNY','191821112','CRA 25 CALLE 100','675@gmail.com','2011-02-03',150699,'2010-05-29','536940.00','A'),('1546',3,'DUARTE GONZALEZ ROONEY ORLANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-06-20','534720.00','A'),('1548',3,'BIZOT PHILIPPE PIERRE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',263813,'2011-03-02','709760.00','A'),('1549',3,'PELUFFO RUBIO GUILLERMO JUAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',116366,'2011-05-09','360470.00','A'),('1550',3,'AGLIATI YERKOVIC CAROLINA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2010-06-01','673040.00','A'),('1551',3,'SEPULVEDA LEDEZMA HENRY CORNELIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-08-15','283810.00','A'),('1552',3,'CABRERA CARMINE JAIME FRANCO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2008-11-30','399940.00','A'),('1553',3,'ZINNO PEÑA ALVARO ANTONIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',116366,'2010-08-02','148270.00','A'),('1554',3,'ROMERO BUCCICARDI JUAN CRISTOBAL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-08-01','541530.00','A'),('1555',3,'FEFERKORN ABRAHAM','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',159312,'2011-06-12','262840.00','A'),('1556',3,'MASSE CATESSON CAROLINE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',131272,'2011-06-12','689600.00','A'),('1557',3,'CATESSON ALEXANDRA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',131272,'2011-06-12','659470.00','A'),('1558',3,'FUENTES HERNANDEZ RICARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-18','228540.00','A'),('1559',3,'GUEVARA MENJIVAR WILSON ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-18','164310.00','A'),('1560',3,'DANOWSKI NICOLAS JAMES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-02','135920.00','A'),('1561',3,'CASTRO VELASQUEZ ISMAEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',121318,'2011-07-31','186670.00','A'),('1562',3,'RODRIGUEZ CORNEJO CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-18','525590.00','A'),('1563',3,'VANIA CAROLINA FLORES AVILA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-18','67950.00','A'),('1564',3,'ARMERO RAMOS OSCAR ALEXANDER','191821112','CRA 25 CALLE 100','414@hotmail.com','2011-02-03',127591,'2011-09-18','762950.00','A'),('1565',3,'ORELLANA MARTINEZ JUAN CARLOS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-18','610930.00','A'),('1566',3,'BRATT BABONNEAU CARLOS MIGUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-09-14','765800.00','A'),('1567',3,'YANES FERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150728,'2011-04-12','996200.00','A'),('1568',3,'ANGULO TAMAYO SEBASTIAN GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',126674,'2011-05-19','683600.00','A'),('1569',3,'HENRIQUEZ JOSE LUIS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',138329,'2011-08-15','429390.00','A'),('157',1,'ORTIZ RIOS ALEJANDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-12','365330.00','A'),('1570',3,'GARCIA VILLARROEL RAUL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',126189,'2011-06-12','96140.00','A'),('1571',3,'SOLA HERNANDEZ JOSE FRANCISCO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-09-25','192530.00','A'),('1572',3,'PEREZ PASTOR OSWALDO MAGARREY','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',126674,'2011-05-25','674260.00','A'),('1573',3,'MICHAN QUIÑONES FRANCISCO JOSE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-06-21','793680.00','A'),('1574',3,'GARCIA ARANDA OSCAR DAVID','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-08-15','945620.00','A'),('1575',3,'GARCIA RIBAS JORDI','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-07-10','347070.00','A'),('1576',3,'GALVAN ROMERO MARIA INMACULADA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-09-14','898480.00','A'),('1577',3,'BOSH MOLINAS JUAN JOSE ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',198576,'2011-08-22','451190.00','A'),('1578',3,'MARTIN TENA JOSE MARIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-04-24','560520.00','A'),('1579',3,'HAWKINS ROBERT JAMES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-12','449010.00','A'),('1580',3,'GHERARDI ALEJANDRO EMILIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',180063,'2010-11-15','563500.00','A'),('1581',3,'TELLO JUAN EDUARDO','191821112','CRA 25 CALLE 100','192@hotmail.com','2011-02-03',138329,'2011-05-01','470460.00','A'),('1583',3,'GUZMAN VALDIVIA CINTIA TATIANA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',199862,'2011-04-06','897580.00','A'),('1584',3,'STUBBS MERCEDES CARMEN JOSEFINA DEL MILAGRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',199862,'2011-04-06','502510.00','A'),('1585',3,'QUINTEIRO GORIS JOSE ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-17','819840.00','A'),('1587',3,'RIVAS LORIA PRISCILLA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',205636,'2011-05-01','498720.00','A'),('1588',3,'DE LA TORRE AUGUSTO PATRICIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',20404,'2011-08-31','718670.00','A'),('159',1,'ALDANA PATIÑO NORMAN ALEXANDER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2009-10-10','201500.00','A'),('1590',3,'TORRES VILLAR ROBERTO ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2011-08-10','329950.00','A'),('1591',3,'PETRULLI CARMELO MORENO','191821112','CRA 25 CALLE 100','883@yahoo.com.mx','2011-02-03',127591,'2011-06-20','358180.00','A'),('1592',3,'MUSCO ENZO FRANCESCO GIUSEPPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-09-04','801050.00','A'),('1593',3,'RONCUZZI CLAUDIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127134,'2011-10-02','930700.00','A'),('1594',3,'VELANI FRANCESCA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',199862,'2011-08-22','250360.00','A'),('1596',3,'BENARROCH ASSOR DAVID ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-10-06','547310.00','A'),('1597',3,'FLO VILLASECA ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-05-27','357520.00','A'),('1598',3,'FONT RIBAS ANTONI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',196117,'2011-09-21','145660.00','A'),('1599',3,'LOPEZ BARAHONA MONICA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2011-08-03','655740.00','A'),('16',1,'FLOREZ PEREZ GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132572,'2011-03-30','956370.00','A'),('160',1,'GIRALDO MENDIVELSO MARTIN EDISSON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-14','429010.00','A'),('1600',3,'SCATTIATI ALDO ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',215245,'2011-07-10','841730.00','A'),('1601',3,'MARONE CARLO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',101179,'2011-06-14','241420.00','A'),('1602',3,'CHUVASHEVA ELENA ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',190393,'2011-08-21','681900.00','A'),('1603',3,'GIGLIO FRANCISCO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',122035,'2011-09-19','685250.00','A'),('1604',3,'JUSTO AMATE AGUSTIN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',174598,'2011-05-16','380560.00','A'),('1605',3,'GUARDABASSI FABIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',281044,'2011-07-26','847060.00','A'),('1606',3,'CALABRETTA FRAMCESCO ANTONIO MARIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',199862,'2011-08-22','93590.00','A'),('1607',3,'TARTARINI MASSIMO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',196234,'2011-05-10','926800.00','A'),('1608',3,'BOTTI GIAIME','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',231989,'2011-04-04','353210.00','A'),('1610',3,'PILERI ANDREA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',205040,'2011-09-01','868590.00','A'),('1612',3,'MARTIN GRACIA LUIS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-07-27','324320.00','A'),('1613',3,'GRACIA MARTIN LUIS','191821112','CRA 25 CALLE 100','579@facebook.com','2011-02-03',198248,'2011-08-24','463560.00','A'),('1614',3,'SERRAT SESE JUAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',196234,'2011-05-16','344840.00','A'),('1615',3,'DEL LAGO AMPELIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-06-29','333510.00','A'),('1616',3,'PERUGORRIA RODRIGUEZ JORGE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',148511,'2011-06-06','633040.00','A'),('1617',3,'GIRAL CALVO IGNACIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-09-19','164670.00','A'),('1618',3,'ALONSO CEBRIAN JOSE MARIA','191821112','CRA 25 CALLE 100','253@terra.com.co','2011-02-03',188640,'2011-03-23','924240.00','A'),('162',1,'ARIZA PINEDA JOHN ALEXANDER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-11-27','415710.00','A'),('1620',3,'OLMEDO CARDENETE DOMINGO MIGUEL','191821112','CRA 25 CALLE 100','608@terra.com.co','2011-02-03',135397,'2011-09-03','863200.00','A'),('1622',3,'GIMENEZ BALDRES ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',182860,'2011-05-12','82660.00','A'),('1623',3,'NUÑEZ MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-05-23','609950.00','A'),('1624',3,'PEÑATE CASTRO WENCESLAO LORENZO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',153607,'2011-09-13','801750.00','A'),('1626',3,'ESCODA MIGUEL JOAN JOSEP','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-07-18','489310.00','A'),('1628',3,'ESTRADA CAPILLA ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-07-26','81180.00','A'),('163',1,'PERDOMO LOPEZ ANDRES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-05','456910.00','A'),('1630',3,'SUBIRAIS MARIANA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',196234,'2011-09-08','138700.00','A'),('1632',3,'ENSEÑAT VELASCO JAIME LUIS','191821112','CRA 25 CALLE 100','687@gmail.com','2011-02-03',188640,'2011-04-12','904560.00','A'),('1633',3,'DIEZ POLANCO CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-05-24','530410.00','A'),('1636',3,'CUADRA ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-09-04','688400.00','A'),('1637',3,'UBRIC MUÑOZ RAUL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',98790,'2011-05-30','139830.00','A'),('1638',3,'NEDDERMANN GUJO RICARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-07-31','633990.00','A'),('1639',3,'RENEDO ZALBA JAIME','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-03-13','750430.00','A'),('164',1,'JIMENEZ PADILLA JOHAN MARCEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-05','37430.00','A'),('1640',3,'FERNANDEZ MORENO DAVID','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-05-28','850180.00','A'),('1641',3,'VERGARA SERRANO JUAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-06-30','999620.00','A'),('1642',3,'MARTINEZ HUESO LUCAS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',182860,'2011-06-29','447570.00','A'),('1643',3,'FRANCO POBLET JUAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',196234,'2011-10-03','238990.00','A'),('1644',3,'MORA HIDALGO MIGUEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-06','852250.00','A'),('1645',3,'GARCIA COSO EMILIANO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-09-14','544260.00','A'),('1646',3,'GIMENO ESCRIG ENRIQUE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',180124,'2011-09-20','164580.00','A'),('1647',3,'MORCILLO LOPEZ RAMON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127538,'2011-04-16','190090.00','A'),('1648',3,'RUBIO BONET MANUEL','191821112','CRA 25 CALLE 100','252@facebook.com','2011-02-03',196234,'2011-05-25','456740.00','A'),('1649',3,'PRADO ABUIN FERNANDO ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-07-16','713400.00','A'),('165',1,'RAMIREZ PALMA LUIS FELIPE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-10','816420.00','A'),('1650',3,'DE VEGA PUJOL GEMA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-08-01','196780.00','A'),('1651',3,'IBARGUEN ALFREDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2010-12-03','843720.00','A'),('1652',3,'IBARGUEN ALFREDO','191821112','CRA 25 CALLE 100','856@hotmail.com','2011-02-03',188640,'2011-06-18','628250.00','A'),('1654',3,'MATELLANES RODRIGUEZ NURIA PILAR','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-10-05','165770.00','A'),('1656',3,'VIDAURRAZAGA GUISOLA JUAN ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',188640,'2011-08-08','495320.00','A'),('1658',3,'GOMEZ ULLATE MARIA ELENA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-04-12','919090.00','A'),('1659',3,'ALCAIDE ALONSO JUAN MIGUEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-05-02','152430.00','A'),('166',1,'TUSTANOSKI RODOLFO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-12-03','969790.00','A'),('1660',3,'LARROY GARCIA CRISTINA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-09-14','4900.00','A'),('1661',3,'FERNANDEZ POYATO ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-09-10','567180.00','A'),('1662',3,'TREVEJO PARDO JULIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-25','821200.00','A'),('1663',3,'GORGA CASSINELLI VICTOR DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-05-30','404490.00','A'),('1664',3,'MORUECO GONZALEZ JOSE ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-10-09','558820.00','A'),('1665',3,'IRURETA FERNANDEZ PEDRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',214283,'2011-09-14','580650.00','A'),('1667',3,'TREVEJO PARDO JUAN ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-25','392020.00','A'),('1668',3,'BOCOS NUÑEZ MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',196234,'2011-10-08','279710.00','A'),('1669',3,'LUIS CASTILLO JOSE AGUSTIN','191821112','CRA 25 CALLE 100','557@hotmail.es','2011-02-03',168202,'2011-06-16','222500.00','A'),('167',1,'HURTADO BELALCAZAR JOHN JADY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127300,'2011-08-17','399710.00','A'),('1670',3,'REDONDO GUTIERREZ EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-09-14','273350.00','A'),('1671',3,'MADARIAGA ALONSO RAMON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2011-07-26','699240.00','A'),('1673',3,'REY GONZALEZ LUIS JAVIER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-07-26','283190.00','A'),('1676',3,'PEREZ ESTER ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-10-03','274900.00','A'),('1677',3,'GOMEZ-GRACIA HUERTA ALEJANDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-09-22','112260.00','A'),('1678',3,'DAMASO PUENTE DIEGO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-05-25','736600.00','A'),('168',1,'JUAN PABLO MARTINEZ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-08-15','89160.00','A'),('1680',3,'DIEZ GONZALEZ LUIS MIGUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-05-17','521280.00','A'),('1681',3,'LOPEZ LOPEZ JOSE LUIS','191821112','CRA 25 CALLE 100','853@yahoo.com','2011-02-03',196234,'2010-12-13','567760.00','A'),('1682',3,'MIRO LINARES FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133442,'2011-09-03','274930.00','A'),('1683',3,'ROCA PINTADO MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-05-16','671410.00','A'),('1684',3,'GARCIA BARTOLOME HORACIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-09-29','532220.00','A'),('1686',3,'BALMASEDA DE AHUMADA DIEZ JUAN LUIS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',168202,'2011-04-13','637860.00','A'),('1687',3,'FERNANDEZ IMAZ FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-04-10','248580.00','A'),('1688',3,'ELIAS CASTELLS FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-05-19','329300.00','A'),('1689',3,'ANIDO DIAZ DANIEL','191821112','CRA 25 CALLE 100','491@gmail.com','2011-02-03',188640,'2011-04-04','900780.00','A'),('1691',3,'GATELL ARIMONT MARIA CRISTINA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',196234,'2011-09-17','877700.00','A'),('1692',3,'RIVERA MUÑOZ ADONI','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',211705,'2011-04-05','840470.00','A'),('1693',3,'LUNA LOPEZ ALICIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-10-01','569270.00','A'),('1695',3,'HAMMOND ANN ELIZABETH','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118021,'2011-05-17','916770.00','A'),('1698',3,'RODRIGUEZ PARAJA MARIA CRISTINA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-07-15','649080.00','A'),('1699',3,'RUIZ DIAZ JOSE IGNACIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-06-24','359540.00','A'),('17',1,'SUAREZ CUEVAS FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',129499,'2011-08-31','149640.00','A'),('170',1,'MARROQUIN AVILA FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-04','965840.00','A'),('1700',3,'BACCHELLI ORTEGA JOSE MARIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',126180,'2011-06-07','850450.00','A'),('1701',3,'IGLESIAS JOSE IGNACIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2010-09-14','173630.00','A'),('1702',3,'GUTIEZ CUEVAS JULIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2010-09-07','316800.00','A'),('1704',3,'CALDEIRO ZAMORA JESUS CARMELO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-05-09','365230.00','A'),('1705',3,'ARBONA ABASCAL MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-02-27','636760.00','A'),('1706',3,'COHEN AMAR MOISES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196766,'2011-05-20','88120.00','A'),('1708',3,'FERNANDEZ COBOS ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2010-11-09','387220.00','A'),('1709',3,'CANAL VIVES JOAQUIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',196234,'2011-09-27','345150.00','A'),('171',1,'LADINO MORENO JAVIER ORLANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-25','89230.00','A'),('1710',5,'GARCIA BERTRAND HECTOR','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-04-07','564100.00','A'),('1711',1,'CONSTANZA MARÍN ESCOBAR','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127799,'2011-03-24','785060.00','A'),('1712',1,'NUNEZ BATALLA FAUSTINO JORGE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-26','232970.00','A'),('1713',3,'VILORA LAZARO ERICK MARTIN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-26','809690.00','A'),('1715',3,'ELLIOT EDWARD JAMES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-26','318660.00','A'),('1716',3,'ALCALDE ORTEÑO MAURICIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',117002,'2011-07-23','544650.00','A'),('1717',3,'CIARAVELLA STEFANO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',231989,'2011-06-13','767260.00','A'),('1718',3,'URRA GONZALEZ PEDRO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-05-02','202370.00','A'),('172',1,'GUERRERO ERNESTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-15','548610.00','A'),('1720',3,'JIMENEZ RODRIGUEZ ANNET','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-05-25','943140.00','A'),('1721',3,'LESCAY CASTELLANOS ARNALDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-09-14','585570.00','A'),('1722',3,'OCHOA AGUILAR ELIADES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-25','98410.00','A'),('1723',3,'RODRIGUEZ NUÑES JOSE ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-25','735340.00','A'),('1724',3,'OCHOA BUSTAMANTE ELIADES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-25','381480.00','A'),('1725',3,'MARTINEZ NIEVES JOSE ANGEL','191821112','CRA 25 CALLE 100','919@yahoo.es','2011-02-03',127591,'2011-05-25','701360.00','A'),('1727',3,'DRAGONI ALAIN ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-25','707850.00','A'),('1728',3,'FERNANDEZ LOPEZ MARCOS ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-25','452090.00','A'),('1729',3,'MATURELL ROMERO JORGE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-25','136880.00','A'),('173',1,'RUIZ CEBALLOS ALEXANDER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-04','475380.00','A'),('1730',3,'LARA CASTELLANO LENNIS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-25','328150.00','A'),('1731',3,'GRAHAM CRISTOPHER DRAKE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',203079,'2011-06-27','230120.00','A'),('1732',3,'TORRE LUCA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-05-11','166120.00','A'),('1733',3,'OCHOA HIDALGO EGLIS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-25','140250.00','A'),('1734',3,'LOURERIO DELACROIX FERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',116511,'2011-09-28','202900.00','A'),('1736',3,'LEVIN FIORELLI ANDRES','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',116366,'2011-08-07','360110.00','A'),('1739',3,'BERRY R ALBERT','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',216125,'2011-08-16','22170.00','A'),('174',1,'NIETO PARRA SEBASTIAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-05-11','731040.00','A'),('1740',3,'MARSHALL ROBERT SHEPARD','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',150159,'2011-03-09','62860.00','A'),('1741',3,'HENANDEZ ROY CHRISTOPHER JOHN PATRICK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',179614,'2011-09-26','247780.00','A'),('1742',3,'LANDRY GUILLAUME','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',232263,'2011-04-27','50330.00','A'),('1743',3,'VUCETIC ZELJKO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',232263,'2011-07-25','508320.00','A'),('1744',3,'DE JUANA CELASCO MARIA DEL CARMEN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188640,'2011-04-16','390620.00','A'),('1745',3,'LABONTE RONALD','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',269033,'2011-09-28','428120.00','A'),('1746',3,'NEWMAN PHILIP MARK','191821112','CRA 25 CALLE 100','557@gmail.com','2011-02-03',231373,'2011-07-25','968750.00','A'),('1747',3,'GRENIER MARIE PIERRE ','191821112','CRA 25 CALLE 100','409@facebook.com','2011-02-03',244158,'2011-07-03','559370.00','A'),('1749',3,'SHINDER GARY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',244158,'2011-07-25','775000.00','A'),('175',3,'GALLEGOS BASTIDAS CARLOS EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133211,'2011-08-10','229090.00','A'),('1750',3,'LOPEZ DE GOICOCHEA ZABALA FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-09-13','203120.00','A'),('1751',3,'CORRAL BELLON MANUEL','191821112','CRA 25 CALLE 100','538@yahoo.com','2011-02-03',177443,'2011-05-02','690610.00','A'),('1752',3,'DE SOLA SOLVAS JUAN ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-10-02','843700.00','A'),('1753',3,'GARCIA ALCALA DIAZ REGAÑON EVA MARIA','191821112','CRA 25 CALLE 100','398@yahoo.com','2011-02-03',118777,'2010-03-15','146680.00','A'),('1754',3,'BIELA VILIAM','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132958,'2011-08-16','202290.00','A'),('1755',3,'GUIOT CANO JUAN PATRICK','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',232263,'2011-05-23','571390.00','A'),('1756',3,'JIMENEZ DIAZ LUIS MIGUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-03-27','250100.00','A'),('1757',3,'FOX ELEANORE MAE','191821112','CRA 25 CALLE 100','117@yahoo.com','2011-02-03',190393,'2011-05-04','536340.00','A'),('1758',3,'TANG VAN SON','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132958,'2011-05-07','931400.00','A'),('1759',3,'SUTTON PETER RONALD','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',281673,'2011-06-01','47960.00','A'),('176',1,'GOMEZ IVAN','191821112','CRA 25 CALLE 100','438@yahoo.com.mx','2011-02-03',127591,'2008-04-09','952310.00','A'),('1762',3,'STOODY MATTHEW FRANCIS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-21','84320.00','A'),('1763',3,'SEIX MASO ARNAU','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',150699,'2011-05-24','168880.00','A'),('1764',3,'FERNANDEZ REDEL RAQUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-09-14','591440.00','A'),('1765',3,'PORCAR DESCALS VICENNTE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',176745,'2011-04-24','450580.00','A'),('1766',3,'PEREZ DE VILLEGAS TRILLO FIGUEROA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',196234,'2011-05-17','478560.00','A'),('1767',3,'CELDRAN DEGANO ANGEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',196234,'2011-05-17','41040.00','A'),('1768',3,'TERRAGO MARI FERRAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-09-30','769550.00','A'),('1769',3,'SZUCHOVSZKY GERGELY','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',250256,'2011-05-23','724630.00','A'),('177',1,'SEBASTIAN TORO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127443,'2011-07-14','74270.00','A'),('1771',3,'TORIBIO JOSE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',226612,'2011-09-04','398570.00','A'),('1772',3,'JOSE LUIS BAQUERA PEIRONCELLY','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2010-10-19','49360.00','A'),('1773',3,'MADARIAGA VILLANUEVA MIGUEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',188640,'2011-04-12','51090.00','A'),('1774',3,'VILLENA BORREGO ANTONIO','191821112','CRA 25 CALLE 100','830@terra.com.co','2011-02-03',188640,'2011-07-19','107400.00','A'),('1776',3,'VILAR VILLALBA JOSE LUIS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',180124,'2011-09-20','596330.00','A'),('1777',3,'CAGIGAL ORTIZ MACARENA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',214283,'2011-09-14','830530.00','A'),('1778',3,'KORBA ATTILA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',250256,'2011-09-27','363650.00','A'),('1779',3,'KORBA-ELIAS BARBARA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',250256,'2011-09-27','326670.00','A'),('178',1,'AMSILI COHEN HANAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2009-08-29','514450.00','A'),('1780',3,'PINDADO GOMEZ JESUS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',189053,'2011-04-26','542400.00','A'),('1781',3,'IBARRONDO GOMEZ GRACIA ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',188640,'2011-09-21','731990.00','A'),('1782',3,'MUNGUIRA GONZALEZ JUAN JULIAN','191821112','CRA 25 CALLE 100','54@hotmail.es','2011-02-03',188640,'2011-09-06','32730.00','A'),('1784',3,'LANDMAN PIETER MARINUS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',294861,'2011-09-22','740260.00','A'),('1789',3,'SUAREZ AINARA ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-05-17','503470.00','A'),('179',1,'CARO JUNCO GUIOVANNY','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-03','349420.00','A'),('1790',3,'MARTINEZ CHACON JOSE JOAQUIN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-05-20','592220.00','A'),('1792',3,'MENDEZ DEL RION LUCIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',120639,'2011-06-16','476910.00','A'),('1793',3,'VERHULST LAMBERTUS CORNELIA FRANCISCUS ALPHONSUS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',295420,'2011-07-04','32410.00','A'),('1794',3,'YAÑEZ YAGUE JESUS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',188640,'2011-07-10','731290.00','A'),('1796',3,'GOMEZ ZORRILLA AMATE JOSE MARIOA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',188640,'2011-07-12','602380.00','A'),('1797',3,'LAIZ MORENO ENEKO','191821112','CRA 25 CALLE 100','219@gmail.com','2011-02-03',127591,'2011-08-05','334150.00','A'),('1798',3,'MORODO RUIZ RUBEN DAVID','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-09-14','863620.00','A'),('18',1,'GARZON VARGAS GUILLERMO FEDERICO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-29','879110.00','A'),('1800',3,'ALFARO FAUS MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-09-14','987410.00','A'),('1801',3,'MORRALLA VALLVERDU ENRIC','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',194601,'2011-07-18','990070.00','A'),('1802',3,'BALBASTRE TEJEDOR JUAN VICENTE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',182860,'2011-08-24','988120.00','A'),('1803',3,'MINGO REIZ FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',188640,'2010-03-24','970400.00','A'),('1804',3,'IRURETA FERNANDEZ JOSE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',214283,'2011-09-10','887630.00','A'),('1807',3,'NEBRO MELLADO JOSE JUAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',168996,'2011-08-15','278540.00','A'),('1808',3,'ALBERQUILLA OJEDA JOSE DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',188640,'2011-09-27','477070.00','A'),('1809',3,'BUENDIA NORTE MARIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',131401,'2011-07-08','549720.00','A'),('181',1,'CASTELLANOS FLORES RODRIGO ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-18','970470.00','A'),('1811',3,'HILBERT ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',196234,'2011-09-08','937830.00','A'),('1812',3,'GONZALES PINTO COTERILLO ADOLFO LORENZO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',214283,'2011-09-10','736970.00','A'),('1813',3,'ARQUES ALVAREZ JOSE RICARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-04-04','871360.00','A'),('1817',3,'CLAUSELL LOW ROBERTO EMILIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132775,'2011-09-28','348770.00','A'),('1818',3,'BELICHON MARTINEZ JESUS ALVARO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-04-12','327010.00','A'),('182',1,'GUZMAN NIETO JOSE MARIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-20','241130.00','A'),('1821',3,'LINATI DE PUIG JORGE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',196234,'2011-05-18','47210.00','A'),('1823',3,'SINBARRERA ROMA ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',196234,'2011-09-08','598380.00','A'),('1826',2,'JUANES GARATE BRUNO ','191821112','CRA 25 CALLE 100','301@gmail.com','2011-02-03',118777,'2011-08-21','877650.00','A'),('1827',3,'BOLOS GIMENO ROGELIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',200247,'2010-11-28','555470.00','A'),('1828',3,'ZABALA ASTIGARRAGA JOSE MARIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',188640,'2011-09-20','144410.00','A'),('1831',3,'MAPELLI CAFFARENA BORJA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',172381,'2011-09-04','58200.00','A'),('1833',3,'LARMONIE LESLIE MARTIN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-30','604840.00','A'),('1834',3,'WILLEMS ROBERT-JAN MICHAEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',288531,'2011-09-05','756530.00','A'),('1835',3,'ANJEMA LAURENS JAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2011-08-29','968140.00','A'),('1836',3,'VERHULST HENRICUS LAMBERTUS MARIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',295420,'2011-04-03','571100.00','A'),('1837',3,'PIERROT JOZEF MARIE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',288733,'2011-05-18','951100.00','A'),('1838',3,'EIKELBOOM HIDDE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-02','42210.00','A'),('1839',3,'TAMBINI GOMEZ DE MUNG','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',180063,'2011-04-24','357740.00','A'),('1840',3,'MAGAÑA PEREZ GERARDO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',135360,'2011-09-28','662060.00','A'),('1841',3,'COURTOISIE BEYHAUT RAFAEL JUAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',116366,'2011-09-05','237070.00','A'),('1842',3,'ROJAS BENJAMIN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-13','199170.00','A'),('1843',3,'GARCIA VICENTE EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',150699,'2011-08-10','284650.00','A'),('1844',3,'CESTTI LOPEZ RAFAEL GUSTAVO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',144215,'2011-09-27','825750.00','A'),('1845',3,'URTECHO LOPEZ ARMANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',139272,'2011-09-28','274800.00','A'),('1846',3,'SEGURA ESPINOZA ARMANDO SEBASTIAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',135360,'2011-09-28','896730.00','A'),('1847',3,'GONZALEZ VEGA LUIS PASTOR','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',135360,'2011-05-18','659240.00','A'),('185',1,'AYALA CARDENAS NELSON MAURICIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-25','855960.00','A'),('1850',3,'ROTZINGER ROA KLAUS ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',116366,'2011-09-12','444250.00','A'),('1851',3,'FRANCO DE LEON SEBASTIAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',116366,'2011-04-26','63840.00','A'),('1852',3,'RIVAS GAGNONI LUIS ARMANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',135360,'2011-05-18','986440.00','A'),('1853',3,'BARRETO VELASQUEZ JOEL FERNANDO','191821112','CRA 25 CALLE 100','104@hotmail.es','2011-02-03',116511,'2011-04-27','740670.00','A'),('1854',3,'SEVILLA AMAYA ORLANDO','191821112','CRA 25 CALLE 100','264@yahoo.com','2011-02-03',136995,'2011-05-18','744020.00','A'),('1855',3,'VALFRE BRALICH ELEONORA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',116366,'2011-06-06','498080.00','A'),('1857',3,'URDANETA DIAMANTES DIEGO ANDRES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-09-23','797590.00','A'),('1858',3,'RAMIREZ ALVARADO ROBERT JESUS','191821112','CRA 25 CALLE 100','290@yahoo.com.mx','2011-02-03',127591,'2011-09-18','212850.00','A'),('1859',3,'GUTTNER DENNIS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-25','671470.00','A'),('186',1,'CARRASCO SUESCUN ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-15','36620.00','A'),('1861',3,'HEGEMANN JOACHIM','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-25','579710.00','A'),('1862',3,'MALCHER INGO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',292243,'2011-06-23','742060.00','A'),('1864',3,'HOFFMEISTER MALTE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128206,'2011-09-06','629770.00','A'),('1865',3,'BOHME ALEXANDRA LUCE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-14','235260.00','A'),('1866',3,'HAMMAN FRANK THOMAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-13','286980.00','A'),('1867',3,'GOPPERT MARKUS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-09-05','729150.00','A'),('1868',3,'BISCARO CAROLINA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-09-16','784790.00','A'),('1869',3,'MASCHAT SEBASTIAN STEPHAN ANDREAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-02-03','736520.00','A'),('1870',3,'WALTHER DANIEL CLAUS PETER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-24','328220.00','A'),('1871',3,'NENTWIG DANIEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',289697,'2011-02-03','431550.00','A'),('1872',3,'KARUTZ ALEX','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127662,'2011-03-17','173090.00','A'),('1875',3,'KAY KUNNE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',289697,'2011-03-18','961400.00','A'),('1876',2,'SCHLUMPF IVANA PATRICIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',245206,'2011-03-28','802690.00','A'),('1877',3,'RODRIGUEZ BUSTILLO CONSUELO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',139067,'2011-03-21','129280.00','A'),('1878',1,'REHWALDT RICHARD ULRICH','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',289697,'2009-10-25','238320.00','A'),('1880',3,'FONSECA BEHRENS MANUELA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',150699,'2011-08-18','303810.00','A'),('1881',3,'VOGEL MIRKO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-09','107790.00','A'),('1882',3,'WU WEI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',289697,'2011-03-04','627520.00','A'),('1884',3,'KADOLSKY ANKE SIGRID','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',289697,'2010-10-07','188560.00','A'),('1885',3,'PFLUCKER PLENGE CARLOS HERNAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',239124,'2011-08-15','500140.00','A'),('1886',3,'PEÑA LAGOS MELENIA PATRICIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-18','935020.00','A'),('1887',3,'CALVANO MARCO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2011-05-02','174690.00','A'),('1888',3,'KUHLEN LOTHAR WILHELM','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',289232,'2011-08-30','68390.00','A'),('1889',3,'QUIJANO RICO SOFIA VICTORIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',221939,'2011-06-13','817890.00','A'),('189',1,'GOMEZ TRUJILLO SERGIO ANDRES','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-17','985980.00','A'),('1890',3,'SCHILBERZ KARIN','191821112','CRA 25 CALLE 100','405@facebook.com','2011-02-03',287570,'2011-06-23','884260.00','A'),('1891',3,'SCHILBERZ SOPHIE CAHRLOTTE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',287570,'2011-06-23','967640.00','A'),('1892',3,'MOLINA MOLINA MILAGRO DE SUYAPA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',139844,'2011-07-26','185410.00','A'),('1893',3,'BARRIENTOS ESCALANTE RAFAEL ALVARO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',139067,'2011-05-18','24110.00','A'),('1895',3,'ENGELS FRANZBERNARD','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',292243,'2011-07-01','749430.00','A'),('1896',3,'FRIEDHOFF SVEN WILHEM','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',289697,'2010-10-31','54090.00','A'),('1897',3,'BARTELS CHRISTIAN JOHAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',133535,'2011-07-25','22160.00','A'),('1898',3,'NILS REMMEL','191821112','CRA 25 CALLE 100','214@gmail.com','2011-02-03',256231,'2011-08-05','948530.00','A'),('1899',3,'DR SCHEIBE MATTHIAS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',252431,'2011-09-26','676150.00','A'),('19',1,'RIAÑO ROMERO ALBERTO ELIAS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2009-12-14','946630.00','A'),('190',1,'LLOREDA ORTIZ FELIPE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-12-20','30860.00','A'),('1900',3,'CARRASCO CATERIANO PEDRO','191821112','CRA 25 CALLE 100','255@hotmail.com','2011-02-03',286578,'2011-05-02','535180.00','A'),('1901',3,'ROSENBER DIRK PETER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-29','647450.00','A'),('1902',3,'LAUBACH JOHANNES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',289697,'2011-05-01','631720.00','A'),('1904',3,'GRUND STEFAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',256231,'2011-08-05','185990.00','A'),('1905',3,'GRUND BEATE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',256231,'2011-08-05','281280.00','A'),('1906',3,'CORZO PAULA MIRIANA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',180063,'2011-08-02','848400.00','A'),('1907',3,'OESTERHAUS CORNELIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',256231,'2011-03-16','398170.00','A'),('1908',1,'JUAN SEBASTIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127300,'2011-05-12','445660.00','A'),('1909',3,'VAN ZIJL CHRISTIAN ANDREAS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',286785,'2011-09-24','33800.00','A'),('191',1,'CASTAÑEDA CABALLERO JUAN MANUEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-28','196370.00','A'),('1910',3,'LORZA RUIZ MYRIAM ESPERANZA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-29','831990.00','A'),('192',1,'ZEA EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-09','889270.00','A'),('193',1,'VELEZ VICTOR MANUEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2010-10-22','857250.00','A'),('194',1,'ARCINIEGAS GOMEZ ISMAEL','191821112','CRA 25 CALLE 100','937@hotmail.com','2011-02-03',127591,'2011-05-18','618450.00','A'),('195',1,'LINAREZ PEDRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-12','520470.00','A'),('1952',3,'BERND ERNST HEINZ SCHUNEMANN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',255673,'2011-09-04','796820.00','A'),('1953',3,'BUCHNER RICHARD ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-17','808430.00','A'),('1954',3,'CHO YONG BEOM','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',173192,'2011-02-07','651670.00','A'),('1955',3,'BERNECKER WALTER LUDWIG','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',256231,'2011-04-03','833080.00','A'),('1956',3,'SCHIERENBECK THOMAS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',256231,'2011-05-03','210380.00','A'),('1957',3,'STEGMANN WOLF DIETER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-08-27','552650.00','A'),('1958',3,'LEBAGE GONZALEZ VALENTINA CECILIA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',131272,'2011-07-29','132130.00','A'),('1959',3,'CABRERA MACCHI JOSE ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',180063,'2011-08-02','2700.00','A'),('196',1,'OTERO BERNAL ALVARO ERNESTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-04-29','747030.00','A'),('1960',3,'KOO BONKI','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-15','617110.00','A'),('1961',3,'JODJAHN DE CARVALHO BEIRAL FLAVIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118942,'2011-07-05','77460.00','A'),('1963',3,'VIEIRA ROCHA MARQUES ELIANE TEREZINHA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118402,'2011-09-13','447430.00','A'),('1965',3,'KELLEN CRISTINA GATTI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',126180,'2011-07-01','804020.00','A'),('1966',3,'CHAVEZ MARLON TENORIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',120773,'2011-07-25','132310.00','A'),('1967',3,'SERGIO COZZI','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',125750,'2011-08-28','249500.00','A'),('1968',3,'REZENDE LIMA JOSE MARCIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-08-23','850570.00','A'),('1969',3,'RAMOS PEDRO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118942,'2011-08-03','504330.00','A'),('1972',3,'ADAMS THOMAS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118942,'2011-08-11','774000.00','A'),('1973',3,'WALESKA NUCINI BOGO ANDREA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-23','859690.00','A'),('1974',3,'GERMANO PAULO BUNN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118439,'2011-08-30','976440.00','A'),('1975',3,'CALDEIRA FILHO RUBENS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118942,'2011-07-18','303120.00','A'),('1976',3,'JOSE CUSTODIO DO ALTISSIMO NETONETO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',119814,'2011-09-08','586290.00','A'),('1977',3,'GAMAS MARIA CRISTINA ALVES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-09-19','22070.00','A'),('1979',3,'PORTO WEBER FERREIRA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-07','691340.00','A'),('1980',3,'FONSECA LAURO PINTO','191821112','CRA 25 CALLE 100','104@hotmail.es','2011-02-03',127591,'2011-08-16','402140.00','A'),('1981',3,'DUARTE ELENA CECILIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-06-15','936710.00','A'),('1983',3,'CECHINEL CRISTIAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118942,'2011-06-12','575530.00','A'),('1984',3,'BATISTA PINHERO JOAO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-04-25','446250.00','A'),('1987',1,'ISRAEL JOSE MAXWELL','191821112','CRA 25 CALLE 100','936@gmail.com','2011-02-03',125894,'2011-07-04','408350.00','A'),('1988',3,'BATISTA CARVALHO RODRIGO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118864,'2011-09-19','488410.00','A'),('1989',3,'RENO DA SILVEIRA EDNEIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118867,'2011-05-03','216990.00','A'),('199',1,'BASTO CORREA FERNANDO ANTONIO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-21','616860.00','A'),('1990',3,'SEIDLER KOHNERT G TEIXEIRA CHRISTINA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',119814,'2011-08-23','619730.00','A'),('1992',3,'GUIMARAES COSTA LEONARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-04-20','379090.00','A'),('1993',3,'BOTTA RODRIGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118777,'2011-09-16','552510.00','A'),('1994',3,'ARAUJO DA SILVA MARCELO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',125666,'2011-08-03','625260.00','A'),('1995',3,'DA SILVA FELIPE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118864,'2011-04-14','468760.00','A'),('1996',3,'MANFIO RODRIGUEZ FERNANDO','191821112','CRA 25 CALLE 100','974@yahoo.com','2011-02-03',118777,'2011-03-23','468040.00','A'),('1997',3,'NEIVA MORENO DE SOUZA CRISTIANE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-09-24','933900.00','A'),('2',3,'CHEEVER MICHAEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-04','560090.00','I'),('2000',3,'ROCHA GUSTAVO ADRIANO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118288,'2011-07-25','830340.00','A'),('2001',3,'DE ANDRADE CARVALHO VIRGINIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118942,'2011-08-11','575760.00','A'),('2002',3,'CAVALCANTI PIERECK GUILHERME','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',180063,'2011-08-01','387770.00','A'),('2004',3,'HOEGEMANN RAMOS CARLOS FERNANDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-04','894550.00','A'),('201',1,'LUIS FERNANDO AREVALO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-17','156730.00','A'),('2010',3,'GOMES BUCHALA JORGE FERNANDO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-09-23','314800.00','A'),('2011',3,'MARTINS SIMAIKA CATIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-06-01','155020.00','A'),('2012',3,'MONICA CASECA BUENO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-05-16','830710.00','A'),('2013',3,'ALBERTAL MARCELO ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118000,'2010-09-10','688480.00','A'),('2015',3,'GOMES CANTARELLI JAIRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118761,'2011-01-11','685940.00','A'),('2016',3,'CADETTI GARBELLINI ENILICE CRISTINA ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-11','578870.00','A'),('2017',3,'SPIELKAMP KLAUS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',150699,'2011-03-28','836540.00','A'),('2019',3,'GARES HENRI PHILIPPE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',135190,'2011-04-05','720730.00','A'),('202',1,'LUCIO CHAUSTRE ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-19','179240.00','A'),('2023',3,'GRECO DE RESENDELUIZ ALFREDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',119814,'2011-04-25','647940.00','A'),('2024',3,'CORTINA EVANDRO JOAO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118922,'2011-05-12','153970.00','A'),('2026',3,'BASQUES MOURA GERALDO CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',119814,'2011-09-07','668250.00','A'),('2027',3,'DA SILVA VALDECIR','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-23','863150.00','A'),('2028',3,'CHI MOW YUNG IVAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-21','311000.00','A'),('2029',3,'YUNG MYRA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-21','965570.00','A'),('2030',3,'MARTINS RAMALHO PATRICIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-03-23','894830.00','A'),('2031',3,'DE LEMOS RIBEIRO GILBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118951,'2011-07-29','577430.00','A'),('2032',3,'AIROLDI CLAUDIO','191821112','CRA 25 CALLE 100','973@terra.com.co','2011-02-03',127591,'2011-09-28','202650.00','A'),('2033',3,'ARRUDA MENDES HEILMANN IONE TEREZA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',120773,'2011-09-07','280990.00','A'),('2034',3,'TAVARES DE CARVALHO EDUARDO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118942,'2011-08-03','796980.00','A'),('2036',3,'FERNANDES ALARCON RAFAEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-08-28','318730.00','A'),('2037',3,'SUCHODOLKI SERGIO GUSMAO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',190393,'2011-07-13','167870.00','A'),('2039',3,'ESTEVES MARCAL MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-02-24','912100.00','A'),('2040',3,'CORSI LUIZ ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-03-25','911080.00','A'),('2041',3,'LOPEZ MONICA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118795,'2011-05-03','819090.00','A'),('2042',3,'QUINTANILHA LUIS CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-16','362230.00','A'),('2043',3,'DE CARLI BRUNO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-05-03','353890.00','A'),('2045',3,'MARINO FRANCA MARILIA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-07-04','352060.00','A'),('2048',3,'VOIGT ALPHONSE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118439,'2010-11-22','384150.00','A'),('2049',3,'ALENCAR ARIMA TATIANA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-05-23','408590.00','A'),('2050',3,'LINIS DE ALMEIDA NEILSON','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',125666,'2011-08-03','890480.00','A'),('2051',3,'PINHEIRO DE CASTRO BENETI','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2011-08-09','226640.00','A'),('2052',3,'ALVES DO LAGO HELMANN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118942,'2011-08-01','461770.00','A'),('2053',3,'OLIVO MARCO ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-22','628900.00','A'),('2054',3,'WILLIAM DOMINGUES SERGIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118085,'2011-08-23','759220.00','A'),('2055',3,'DE SOUZA MENEZES KLEBER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-04-25','909400.00','A'),('2056',3,'CABRAL NEIDE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-16','269340.00','A'),('2057',3,'RODRIGUES RENATO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-06-15','618500.00','A'),('2058',3,'SPADALE PEDRO JORGE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118942,'2011-08-03','284490.00','A'),('2059',3,'MARTINS DE ALMEIDA GUSTAVO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118942,'2011-09-28','566920.00','A'),('206',1,'TORRES HEBER MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-01-29','643210.00','A'),('2060',3,'IKUNO CELINA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-06-08','981170.00','A'),('2061',3,'DAL BELLO FABIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',129499,'2011-08-20','205050.00','A'),('2062',3,'BENATES ADRIANA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-23','81770.00','A'),('2063',3,'CARDOSO ALEXANDRE ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-23','793690.00','A'),('2064',3,'ZANIOLO DE SOUZA CARLOS HENRIQUE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-09-19','723130.00','A'),('2065',3,'DA SILVA LUIZ SIDNEI','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-03-30','234590.00','A'),('2066',3,'RUFATO DE SOUZA LUIZ FERNANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-08-29','3560.00','A'),('2067',3,'DE MEDEIROS LUCIANA','191821112','CRA 25 CALLE 100','994@yahoo.com.mx','2011-02-03',118777,'2011-09-10','314020.00','A'),('2068',3,'WOLFF PIAZERA DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118255,'2011-06-15','559430.00','A'),('2069',3,'DA SILVA FORTUNA MARINA CLAUDIA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2011-09-23','855100.00','A'),('2070',3,'PEREIRA BORGES LUCILA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',120773,'2011-07-26','597210.00','A'),('2072',3,'PORROZZI DE ALMEIDA RENATO','191821112','CRA 25 CALLE 100','812@hotmail.es','2011-02-03',127591,'2011-06-13','312120.00','A'),('2073',3,'KALICHSZTEINN RICARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-03-23','298330.00','A'),('2074',3,'OCCHIALINI GUIMARAES ANA PAULA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118777,'2011-08-03','555310.00','A'),('2075',3,'MAZZUCO FONTES LUIZ ROBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-05-23','881570.00','A'),('2078',3,'TRAN DINH VAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-05-07','98560.00','A'),('2079',3,'NGUYEN THI LE YEN','191821112','CRA 25 CALLE 100','249@yahoo.com.mx','2011-02-03',132958,'2011-05-07','298200.00','A'),('208',1,'GOMEZ GONZALEZ JORGE MARIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-12','889010.00','A'),('2080',3,'MILA DE LA ROCA JOHANA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132958,'2011-01-26','195350.00','A'),('2081',3,'RODRIGUEZ DE FLORES LOURDES MARIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-16','82120.00','A'),('2082',3,'FLORES PEREZ FRANCISCO GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-23','824550.00','A'),('2083',3,'FRAGACHAN BETANCOUT FRANCISCO JO SÉ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-07-04','876400.00','A'),('2084',3,'GAFARO MOLINA CARLOS JULIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-03-22','908370.00','A'),('2085',3,'CACERES REYES JORGEANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-08-11','912630.00','A'),('2086',3,'ALVAREZ RODRIGUEZ VICTOR ROGELIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',132958,'2011-05-23','838040.00','A'),('2087',3,'GARCES ALVARADO JHAGEIMA JOSEFINA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132958,'2011-04-29','452320.00','A'),('2089',3,'FAVREAU CHOLLET JEAN PIERRE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132554,'2011-05-27','380470.00','A'),('209',1,'CRUZ RODRIGEZ CARLOS ANDRES','191821112','CRA 25 CALLE 100','316@hotmail.es','2011-02-03',127591,'2011-06-28','953870.00','A'),('2090',3,'GARAY LLUCH URBI ALAIN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-03-13','659870.00','A'),('2091',3,'LETICIA LETICIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-07','157950.00','A'),('2092',3,'VELASQUEZ RODULFO RAMON ARISTIDES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-09-23','810140.00','A'),('2093',3,'PEREZ EDGAR','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-06','576850.00','A'),('2094',3,'PEREZ MARIELA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-07','453840.00','A'),('2095',3,'PETRUZZI MANGIARANO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132958,'2011-03-27','538650.00','A'),('2096',3,'LINARES GORI RICARDO RAMON','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-12','331730.00','A'),('2097',3,'LAIRET OLIVEROS CAROLINE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-09-25','42680.00','A'),('2099',3,'JIMENEZ GARCIA FERNANDO JOSE','191821112','CRA 25 CALLE 100','78@hotmail.es','2011-02-03',132958,'2011-07-21','963110.00','A'),('21',1,'RUBIO ESCOBAR RUBEN DARIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2009-05-21','639240.00','A'),('2100',3,'ZABALA MILAGROS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-20','160860.00','A'),('2101',3,'VASQUEZ CRUZ NICOLEDANIELA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132958,'2011-07-31','914990.00','A'),('2102',3,'REYES FIGUERA RAMON ALEXANDER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',126674,'2011-04-03','92340.00','A'),('2104',3,'RAMIREZ JIMENEZ MARYLIN CAROLINA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132958,'2011-06-14','306760.00','A'),('2105',3,'TELLES GUILLEN INNA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-09-07','383520.00','A'),('2106',3,'ALVAREZ CARMEN MARINA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-07-20','997340.00','A'),('2107',3,'MARTINEZ YRIGOYEN NABUCODONOSOR','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-07-21','836110.00','A'),('2108',5,'FERNANDEZ RUIZ IGNACIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-01','188530.00','A'),('211',1,'RIVEROS GARCIA JORGE IVAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-01','650050.00','A'),('2110',3,'CACERES REYES JORGE ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2011-08-08','606030.00','A'),('2111',3,'GELFI MARCOS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',199862,'2011-05-17','727190.00','A'),('2112',3,'CERDA CASTILLO CARMEN GLORIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-08-21','817870.00','A'),('2113',3,'RANGEL FERNANDEZ LEONARDO JOSE','191821112','CRA 25 CALLE 100','856@hotmail.com','2011-02-03',133211,'2011-05-16','907750.00','A'),('2114',3,'ROTHSCHILD VARGAS MICHAEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132165,'2011-02-05','85170.00','A'),('2115',3,'RUIZ GRATEROL INGRID JOHANNA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132958,'2011-05-16','702600.00','A'),('2116',2,'DEARMAS ALBERTO FERNANDO ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150699,'2011-07-19','257500.00','A'),('2117',3,'BOSCAN ARRIETA ERICK HUMBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132958,'2011-07-12','179680.00','A'),('2118',3,'GUILLEN DE TELLES NENCY JOSEFINA','191821112','CRA 25 CALLE 100','56@facebook.com','2011-02-03',132958,'2011-09-07','125900.00','A'),('212',1,'BUSTAMANTE BUSTAMANTE CARLOS ENRIQUE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-26','943260.00','A'),('2120',2,'MARK ANTHONY STUART','191821112','CRA 25 CALLE 100','661@terra.com.co','2011-02-03',127591,'2011-06-26','74600.00','A'),('2122',3,'SCOCOZZA GIOVANNA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',190526,'2011-09-23','284220.00','A'),('2125',3,'CHAVES MOLINA JULIO FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132165,'2011-09-22','295360.00','A'),('2127',3,'BERNARDES DE SOUZA TONIATI VIRGINIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-30','565090.00','A'),('2129',2,'BRIAN DAVIS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-19','78460.00','A'),('213',1,'PAREJO CARLOS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-11','766120.00','A'),('2131',3,'DE OLIVEIRA LOPES REGINALDO LAZARO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-10-05','404910.00','A'),('2132',3,'DE MELO MING AZEVEDO PAULO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-10-05','440370.00','A'),('2137',3,'SILVA JORGE ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-10-05','230570.00','A'),('214',1,'CADENA RICARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-08','840.00','A'),('2142',3,'VIEIRA VEIGA PEDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-30','85330.00','A'),('2144',3,'ESCRIBANO LEONARDA DEL VALLE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',133535,'2011-03-24','941440.00','A'),('2145',3,'RODRIGUEZ MENENDEZ BERNARDO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',148511,'2011-08-02','588740.00','A'),('2146',3,'GONZALEZ COURET DANIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',148511,'2011-08-09','119380.00','A'),('2147',3,'GARCIA SOTO WILLIAM','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',135360,'2011-05-18','830660.00','A'),('2148',3,'MENESES ORELLANA RICARDO TOMAS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132165,'2011-06-13','795200.00','A'),('2149',3,'GUEVARA JUAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-27','483990.00','A'),('215',1,'BELTRAN PINZON JUAN CARLO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-08','705860.00','A'),('2151',2,'LLANES GARRIDO JAVIER ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-30','719750.00','A'),('2152',3,'CHAVARRIA CHAVES RAFAEL ADRIAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132165,'2011-09-20','495720.00','A'),('2153',2,'MILBERT ANDREASPETER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-10','319370.00','A'),('2154',2,'GOMEZ SILVA LOZANO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127300,'2011-05-30','109670.00','A'),('2156',3,'WINTON ROBERT DOUGLAS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',115551,'2011-08-08','622290.00','A'),('2157',2,'ROMERO PIÑA MANUEL GUSTAVO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-05-05','340650.00','A'),('2158',3,'KARWALSKI MATTHEW REECE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117229,'2011-08-29','836380.00','A'),('2159',2,'KIM JUNG SIK ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-08','159950.00','A'),('216',1,'MARTINEZ VALBUENA JOSE ALEJANDRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-25','526750.00','A'),('2160',3,'AGAR ROBERT ALEXANDER','191821112','CRA 25 CALLE 100','81@hotmail.es','2011-02-03',116862,'2011-06-11','290620.00','A'),('2161',3,'IGLESIAS EDGAR ALEXIS','191821112','CRA 25 CALLE 100','645@facebook.com','2011-02-03',131272,'2011-04-04','973240.00','A'),('2163',2,'NOAIN MORENO CECILIA KARIM ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-22','51950.00','A'),('2164',2,'FIGUEROA HEBEL ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-26','276760.00','A'),('2166',5,'FRANDBERG DAN RICHARD VERNER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',134022,'2011-04-06','309480.00','A'),('2168',2,'CONTRERAS LILLO EDUARDO ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-27','389320.00','A'),('2169',2,'BLANCO VALLE RICARDO ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-07-13','355950.00','A'),('2171',2,'BELTRAN ZAVALA JIMI ALFONSO MIGUEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',126674,'2011-08-22','991000.00','A'),('2172',2,'RAMIRO OREGUI JOSE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2011-04-27','119700.00','A'),('2175',2,'FENG PUYO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',302172,'2011-10-07','965660.00','A'),('2176',3,'CLERICI GUIDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',116366,'2011-08-30','522970.00','A'),('2177',1,'SEIJAS GUNTER LUIS MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-02','717890.00','A'),('2178',2,'SHOSHANI MOSHE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-13','20520.00','A'),('218',3,'HUCHICHALEO ARSENDIGA FRANCISCA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-05','690.00','A'),('2181',2,'DOMINGO BARTOLOME LUIS FERNANDO','191821112','CRA 25 CALLE 100','173@terra.com.co','2011-02-03',127591,'2011-04-18','569030.00','A'),('2182',3,'GONZALEZ RIJO JOSE ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-10-02','795610.00','A'),('2183',2,'ANDROVICH MORENO LIZETH LILIAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127300,'2011-10-10','270970.00','A'),('2184',2,'ARREAZA LUGO JESUS ALFREDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-08','968030.00','A'),('2185',2,'NAVEDA CANELON KATHERINE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132775,'2011-09-14','27250.00','A'),('2189',2,'LUGO BEHRENS DENISE SOFIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-08','253980.00','A'),('2190',2,'ERICA ROSE MOLDENHAUVER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-25','175480.00','A'),('2192',2,'SOLORZANO GARCIA ANDREINA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-25','50790.00','A'),('2193',3,'DE LA COSTE MARIA CAROLINA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-26','907640.00','A'),('2194',2,'MARTINEZ DIAZ JUAN JOSE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-08','385810.00','A'),('2195',2,'GALARRAGA ECHEVERRIA DAYEN ALI','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-13','206150.00','A'),('2196',2,'GUTIERREZ RAMIREZ HECTOR JOSÉ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133211,'2011-06-07','873330.00','A'),('2197',2,'LOPEZ GONZALEZ SILVIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127662,'2011-09-01','748170.00','A'),('2198',2,'SEGARES LUTZ JOSE IGNACIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-07','120880.00','A'),('2199',2,'NADER MARTIN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127538,'2011-08-12','359880.00','A'),('22',1,'CARDOZO AMAYA JORGE HUMBERTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-25','908720.00','A'),('2200',3,'NATERA BERMUDEZ OSWALDO JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2010-10-18','436740.00','A'),('2201',2,'COSTA RICARDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',150699,'2011-09-01','104090.00','A'),('2202',5,'GRUNDY VALENZUELA ALAN PATRICK','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-08','210230.00','A'),('2203',2,'MONTENEGRO DANIEL ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-05-26','738890.00','A'),('2204',2,'TAMAI BUNGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-24','63730.00','A'),('2205',5,'VINHAS FORTUNA EDSON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',133535,'2011-09-23','102010.00','A'),('2206',2,'RUIZ ERBS MARIO ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-07-19','318860.00','A'),('2207',2,'VENTURA TINEO MARCEL ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-08','288240.00','A'),('2210',2,'RAMIREZ GUZMAN RICARDO JAIME','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-28','338740.00','A'),('2211',2,'STERNBERG GABRIEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132958,'2011-09-04','18070.00','A'),('2212',2,'MARTELLO ALEJOS ROGER ADOLFO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127443,'2011-06-20','74120.00','A'),('2213',2,'CASTANEDA RAFAEL ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-25','316410.00','A'),('2214',2,'LIMON MARTINEZ WILBERT DE JESUS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128904,'2011-09-19','359690.00','A'),('2215',2,'PEREZ HERNANDEZ MONICA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133211,'2011-05-23','849240.00','A'),('2216',2,'AWAD LOBATO RICARDO SEBASTIAN','191821112','CRA 25 CALLE 100','853@hotmail.com','2011-02-03',127591,'2011-04-12','167100.00','A'),('2217',2,'CEPEDA VANEGAS ENDER ENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132958,'2011-08-22','287770.00','A'),('2218',2,'PEREZ CHIQUIN HECTOR','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',132572,'2011-04-13','937580.00','A'),('2220',5,'FRANCO DELGADILLO RONALD FERNANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132775,'2011-09-16','310190.00','A'),('2222',2,'ALCAIDE ALONSO JUAN MIGUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-05-02','455360.00','A'),('2223',3,'BROWNING BENJAMIN MARK','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-06-09','45230.00','A'),('2225',3,'HARWOO BENJAMIN JOEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-09','164620.00','A'),('2226',3,'HOEY TIMOTHY ROSS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-06-09','242910.00','A'),('2227',3,'FERGUSON GARRY','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-28','720700.00','A'),('2228',3,' NORMAN NEVILLE ROBERT','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',288493,'2011-06-29','874750.00','A'),('2229',3,'KUK HYUN CHAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-03-22','211660.00','A'),('223',1,'PINZON PLAZA MARCOS VINICIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-22','856300.00','A'),('2230',3,'SLIPAK NATALIA ANDREA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-07-27','434070.00','A'),('2231',3,'BONELLI MASSIMO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',170601,'2011-07-11','535340.00','A'),('2233',3,'VUYLSTEKE ALEXANDER ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',284647,'2011-09-11','266530.00','A'),('2234',3,'DRESSE ALAIN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',284272,'2011-04-19','209100.00','A'),('2235',3,'PAIRON JEAN LOUIS MARIE RAIMOND','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',284272,'2011-03-03','245940.00','A'),('2236',3,'DEVIANE ACHIM','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',284272,'2010-11-14','602370.00','A'),('2239',3,'DE CANNIERE LOUIS GEORFES HELE MARIE-JOZEF','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',285511,'2011-09-11','993540.00','A'),('2240',1,'ERGO ROBERT','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-28','278270.00','A'),('2241',3,'MYRTES RODRIGUEZ MORGANA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-09-18','410740.00','A'),('2242',3,'BRECHBUEHL HANSRUDOLF','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',249059,'2011-07-27','218900.00','A'),('2243',3,'IVANA SCHLUMPF','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',245206,'2011-04-08','862270.00','A'),('2244',3,'JESSICA JACCART','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',189512,'2011-08-28','654640.00','A'),('2246',3,'PAUSELLI MARIANO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',210050,'2011-09-26','468090.00','A'),('2247',3,'VOLONTEIRO RICCARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-04-13','281230.00','A'),('2248',3,'HOFFMANN ALVIR ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',120773,'2011-08-23','1900.00','A'),('2249',3,'MANTOVANI DANIEL FERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118942,'2011-08-09','165820.00','A'),('225',1,'DUARTE RUEDA JAVIER ALEXANDER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-29','293110.00','A'),('2250',3,'LIMA DA COSTA BRENO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-03-23','823370.00','A'),('2251',3,'TAMBORIN MACIEL MAGALI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-23','619420.00','A'),('2252',3,'BELLO DE MUORA BIANCA','191821112','CRA 25 CALLE 100','969@gmail.com','2011-02-03',118942,'2011-08-03','626970.00','A'),('2253',3,'VINHAS FORTUNA PIETRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',133535,'2011-09-23','276600.00','A'),('2255',3,'BLUMENTHAL JAIRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',117630,'2011-07-20','680590.00','A'),('2256',3,'DOS REIS FILHO ELPIDIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',120773,'2011-08-07','896720.00','A'),('2257',3,'COIMBRA CARDOSO MUNARI FERNANDA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-09','441830.00','A'),('2258',3,'LAZANHA FLAVIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118942,'2011-06-14','519000.00','A'),('2259',3,'LAZANHA FLAVIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118942,'2011-06-14','269480.00','A'),('226',1,'HUERFANO FLOREZ JOHN FAVER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-29','148340.00','A'),('2260',3,'JOVETTA EDILSON','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118941,'2011-09-19','790430.00','A'),('2261',3,'DE OLIVEIRA ANDRE RICARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2011-07-25','143680.00','A'),('2263',3,'MUNDO TEIXEIRA CARVALHO SILVIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118864,'2011-09-19','304670.00','A'),('2264',3,'FERREIRA CINTRA ADRIANO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-04-08','481910.00','A'),('2265',3,'AUGUSTO DE OLIVEIRA MARCOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118685,'2011-08-09','495530.00','A'),('2266',3,'CHEN ROBERTO LUIZ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-03-15','31920.00','A'),('2268',3,'WROBLESKI DIENSTMANN RAQUEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117630,'2011-05-15','269320.00','A'),('2269',3,'MALAGOLA GEDERSON','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118864,'2011-05-30','327540.00','A'),('227',1,'LOPEZ ESCOBAR CARLOS ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-06','862360.00','A'),('2271',3,'GOMES EVANDRO HENRIQUE','191821112','CRA 25 CALLE 100','199@hotmail.es','2011-02-03',118777,'2011-03-24','166100.00','A'),('2273',3,'LANDEIRA FERNANDEZ JESUS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-21','207990.00','A'),('2274',3,'ROSSI RENATO','191821112','CRA 25 CALLE 100','791@hotmail.es','2011-02-03',118777,'2011-09-19','16170.00','A'),('2275',3,'CALMON RANGEL PATRICIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-23','456890.00','A'),('2277',3,'CIFU NETO ROQUE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-04-27','808940.00','A'),('2278',3,'GONCALVES PRETO FRANCISCO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118942,'2011-07-25','336930.00','A'),('2279',3,'JORGE JUNIOR ROBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118777,'2011-05-09','257840.00','A'),('2281',3,'ELENCIUC DEMETRIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',118777,'2011-04-20','618510.00','A'),('2283',3,'CUNHA MENDEZ RAFAEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',119855,'2011-07-18','431190.00','A'),('2286',3,'DIAZ LENICE APARECIDA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-05-03','977840.00','A'),('2288',3,'DE CARVALHO SIGEL TATIANA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118777,'2011-07-04','123920.00','A'),('229',1,'GALARZA GIRALDO SERGIO ALDEMAR','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150699,'2011-09-17','746930.00','A'),('2290',3,'ACHOA MORANDI BORGUES SIBELE MARIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118777,'2011-09-12','553890.00','A'),('2291',3,'EPAMINONDAS DE ALMEIDA DELIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-09-22','14080.00','A'),('2293',3,'REIS CASTRO SHANA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118942,'2011-08-03','1430.00','A'),('2294',3,'BERNARDES JUNIOR ARMANDO','191821112','CRA 25 CALLE 100','678@gmail.com','2011-02-03',127591,'2011-08-30','780930.00','A'),('2295',3,'LEMOS DE SOUZA AGUIAR SERGIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118777,'2011-10-03','900370.00','A'),('2296',3,'CARVALHO ADAMS KARIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118942,'2011-08-11','159040.00','A'),('2297',3,'GALLINA SILVANA BRASILEIRA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-23','94110.00','A'),('23',1,'COLMENARES PEDREROS EDUARDO ADOLFO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-02','625870.00','A'),('2300',3,'TAVEIRA DE SIQUEIRA TANIA APARECIDA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-24','443910.00','A'),('2301',3,'DA SIVA LIMA ANDRE LUIS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-23','165020.00','A'),('2302',3,'GALVAO GUSTAVO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118942,'2011-09-12','493370.00','A'),('2303',3,'DA COSTA CRUZ GABRIELA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-07-27','971800.00','A'),('2304',3,'BERNHARD GOTTFRIED RABER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-04-30','378870.00','A'),('2306',3,'ALDANA URIBE PABLO AXEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-05-08','758160.00','A'),('2308',3,'FLORES ALONSO EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-04-26','995310.00','A'),('2309',3,'MADRIGAL MIER Y TERAN LUIS FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-02-23','414650.00','A'),('231',1,'ZAPATA CEBALLOS JUAN MANUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127662,'2011-08-16','430320.00','A'),('2310',3,'GONZALEZ ALVARO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-05-19','87330.00','A'),('2313',3,'MONTES PORTO ANDREA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145135,'2011-09-01','929180.00','A'),('2314',3,'ROCHA SUSUNAGA SERGIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2010-10-18','541540.00','A'),('2315',3,'VASQUEZ CALERO FEDERICO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-22','920160.00','A'),('2317',3,'GONZALEZ FERNANDEZ YUSSEN ALEJANDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-26','120530.00','A'),('2319',3,'ATTIAS WENGROWSKY DAVID','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',150581,'2011-09-07','8580.00','A'),('232',1,'OSPINA ABUCHAIBE ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-07-14','748960.00','A'),('2320',3,'EFRON TOPOROVSKY INES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',116511,'2011-07-15','20810.00','A'),('2321',3,'LUNA PLA DARIO','191821112','CRA 25 CALLE 100','95@terra.com.co','2011-02-03',145135,'2011-09-07','78320.00','A'),('2322',1,'VAZQUEZ DANIELA','191821112','CRA 25 CALLE 100','190@gmail.com','2011-02-03',145135,'2011-05-19','329170.00','A'),('2323',3,'BALBI BALBI JUAN DE DIOS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-08-23','410880.00','A'),('2324',3,'MARROQUÍN FERNANDEZ GELACIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-03-23','66880.00','A'),('2325',3,'VAZQUEZ ZAVALA ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-04-11','101770.00','A'),('2326',3,'SOTO MARTINEZ MARIA ELENA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-23','308200.00','A'),('2328',3,'HERNANDEZ MURILLO RICARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-08-22','253830.00','A'),('233',1,'HADDAD LINERO YEBRAIL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',130608,'2010-06-17','453830.00','A'),('2330',3,'TERMINEL HERNANDEZ DANIELA PATRICIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',190393,'2011-08-15','48940.00','A'),('2331',3,'MIJARES FERNANDEZ MAGDALENA GUADALUPE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145135,'2011-07-31','558440.00','A'),('2332',3,'GONZALEZ LUNA CARLOS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',146258,'2011-04-26','645400.00','A'),('2333',3,'DIAZ TORREJON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-05-03','551690.00','A'),('2335',3,'PADILLA GUTIERREZ JESUS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-22','456120.00','A'),('2336',3,'TORRES CORONA JORGE ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-04-11','813900.00','A'),('2337',3,'CASTRO RAMSES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',150581,'2011-07-04','701120.00','A'),('2338',3,'APARICIO VALLEJO RUSSELL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-03-16','63890.00','A'),('2339',3,'ALBOR FERNANDEZ LUIS ARTURO','191821112','CRA 25 CALLE 100','574@gmail.com','2011-02-03',147467,'2011-05-09','216110.00','A'),('234',1,'DOMINGUEZ GOMEZ JUAN CARLOS','191821112','CRA 25 CALLE 100','942@hotmail.com','2011-02-03',127591,'2010-08-22','22260.00','A'),('2342',3,'REY ALEJANDRO','191821112','CRA 25 CALLE 100','110@facebook.com','2011-02-03',127591,'2011-03-04','313330.00','A'),('2343',3,'MENDOZA GONZALES ADRIANA','191821112','CRA 25 CALLE 100','295@yahoo.com','2011-02-03',127591,'2011-03-23','178720.00','A'),('2344',3,'RODRIGUEZ SEGOVIA JESUS ALONSO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2011-07-26','953590.00','A'),('2345',3,'GONZALEZ PELAEZ EDUARDO DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-26','231790.00','A'),('2347',3,'VILLEDA GARCIA DAVID','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',144939,'2011-05-29','795600.00','A'),('2348',3,'FERRER BURGES EMILIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-04-11','83430.00','A'),('2349',3,'NARRO ROBLES LUIS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-03-16','30330.00','A'),('2350',3,'ZALDIVAR UGALDE CARLOS IGNACIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-06-19','901380.00','A'),('2351',3,'VARGAS RODRIGUEZ VALENTE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',146258,'2011-04-26','415910.00','A'),('2354',3,'DEL PIERO FRANCISCO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-05-09','19890.00','A'),('2355',3,'VILLAREAL ANA CRISTINA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-23','211810.00','A'),('2356',3,'GARRIDO FERRAN JORGE ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-22','999370.00','A'),('2357',3,'PEREZ PRECIADO EDMUNDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-22','361450.00','A'),('2358',3,'AGUIRRE VIGNAU DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',150581,'2011-08-21','809110.00','A'),('2359',3,'LOPEZ SESMA TOMAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',146258,'2011-09-14','961200.00','A'),('236',1,'VENTO BETANCOURT LUIS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-03-19','682230.00','A'),('2360',3,'BERNAL MALDONADO GUILLERMO JAVIER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2011-09-19','378670.00','A'),('2361',3,'GUZMAN DELGADO ALFREDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-22','9770.00','A'),('2362',3,'GUZMAN DELGADO MARTIN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-22','912850.00','A'),('2363',3,'GUSMAND ELGADO JORGE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-22','534910.00','A'),('2364',3,'RENDON BUICK JORGE JOSE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-07-26','936010.00','A'),('2365',3,'HERNANDEZ HERNANDEZ HERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-22','75340.00','A'),('2366',3,'ALVAREZ PAZ PEDRO RAFAEL ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-01-02','568650.00','A'),('2367',3,'MIJARES DE LA BARREDA FERNANDA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-07-31','617240.00','A'),('2368',3,'MARTINEZ LOPEZ MAURICIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-08-24','380250.00','A'),('2369',3,'GAYTAN MILLAN YANERI','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-23','49520.00','A'),('237',1,'BARGUIL ASSIS DAVID ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117460,'2009-09-03','161770.00','A'),('2370',3,'DURAN HEREDIA FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-04-15','106850.00','A'),('2371',3,'SEGURA MIJARES CRISTOBAL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-07-31','385700.00','A'),('2372',3,'TEPOS VALTIERRA ERIK ARTURO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',116345,'2011-09-01','607930.00','A'),('2373',3,'RODRIGUEZ AGUILAR EDMUNDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-05-04','882570.00','A'),('2374',3,'MYSLABODSKI MICHAEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-03-08','589060.00','A'),('2375',3,'HERNANDEZ MIRELES JATNIEL ELIOENAI','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-26','297600.00','A'),('2376',3,'SNELL FERNANDEZ SYNTYHA ROCIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-22','720830.00','A'),('2378',3,'HERNANDEZ EIVET AARON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-26','394200.00','A'),('2379',3,'LOPEZ GARZA JAIME','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-22','837000.00','A'),('238',1,'GARCIA PINO CARLOS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-10','762140.00','A'),('2381',3,'TOSCANO ESTRADA RUBEN ENRIQUE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-22','500940.00','A'),('2382',3,'RAMIREZ HUDSON ROGER SILVESTER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-22','497550.00','A'),('2383',3,'RAMOS JUAN ANTONIO','191821112','CRA 25 CALLE 100','362@yahoo.es','2011-02-03',127591,'2011-08-22','984940.00','A'),('2384',3,'CORTES CERVANTES ALEJANDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145135,'2011-04-11','432020.00','A'),('2385',3,'POZOS ESQUIVEL DAVID','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-09-27','205310.00','A'),('2387',3,'ESTRADA AGUIRRE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-22','36470.00','A'),('2388',3,'GARCIA RAMIREZ RAMON','191821112','CRA 25 CALLE 100','177@yahoo.es','2011-02-03',127591,'2011-08-22','990910.00','A'),('2389',3,'PRUD HOMME GARCIA CUBAS XAVIER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-05-18','845140.00','A'),('239',1,'PINZON ARDILA GUSTAVO ALFONSO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-01','325400.00','A'),('2390',3,'ELIZABETH OCHOA ROJAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-05-21','252950.00','A'),('2391',3,'MEZA ALVAREZ JOSE ALBERTO','191821112','CRA 25 CALLE 100','646@terra.com.co','2011-02-03',144939,'2011-05-09','729340.00','A'),('2392',3,'HERRERA REYES RENATO ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2010-02-28','887860.00','A'),('2393',3,'MURILLO GARIBAY GILBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-08-20','251280.00','A'),('2394',3,'GARCIA JIMENEZ CARLOS MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-10-09','592830.00','A'),('2395',3,'GUAGNELLI MARTINEZ BLANCA MONICA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145184,'2010-10-05','210320.00','A'),('2397',3,'GARCIA CISNEROS RAUL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-07-04','734530.00','A'),('2398',3,'MIRANDA ROMO FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-22','853340.00','A'),('24',1,'ARREGOCES GARZON NELSON ORLANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127783,'2011-08-12','403190.00','A'),('240',1,'ARCINIEGAS GOMEZ ALBERTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-18','340590.00','A'),('2400',3,'HERRERA ABARCA EDUARDO VICENTE ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-22','755620.00','A'),('2403',3,'CASTRO MONCAYO LUIS ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-07-29','617260.00','A'),('2404',3,'GUZMAN DELGADO OSBALDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-22','56250.00','A'),('2405',3,'GARCIA LOPEZ DAVID','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-22','429500.00','A'),('2406',3,'JIMENEZ GAMEZ RAFAEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',245206,'2011-03-23','978720.00','A'),('2407',3,'BECERRA MARTINEZ JUAN PABLO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-08-23','605130.00','A'),('2408',3,'GARCIA MARTINEZ BERNARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-22','89480.00','A'),('2409',3,'URRUTIA RAYAS BALTAZAR','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-22','632020.00','A'),('241',1,'MEDINA AGUILA NESTOR EDUARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-09','726730.00','A'),('2411',3,'VERGARA MENDOZAVICTOR HUGO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-06-15','562230.00','A'),('2412',3,'MENDOZA MEDINA JORGE IGNACIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-22','136170.00','A'),('2413',3,'CORONADO CASTILLO HUGO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',147529,'2011-05-09','994160.00','A'),('2414',3,'GONZALEZ SOTO DELIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-03-23','562280.00','A'),('2415',3,'HERNANDEZ FLORES STEPHANIE REYNA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-23','828940.00','A'),('2416',3,'ABRAJAN GUERRERO MARIA DE LOS ANGELES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-03-23','457860.00','A'),('2417',3,'HERNANDEZ LOERA ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-23','802490.00','A'),('2418',3,'TARÍN LÓPEZ JOSE CARMEN','191821112','CRA 25 CALLE 100','117@gmail.com','2011-02-03',127591,'2011-03-23','638870.00','A'),('242',1,'JULIO NARVAEZ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-05','611890.00','A'),('2420',3,'BATTA MARQUEZ VICTOR ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-08-23','17820.00','A'),('2423',3,'GONZALEZ REYES JUAN JOSE','191821112','CRA 25 CALLE 100','55@yahoo.es','2011-02-03',127591,'2011-07-26','758070.00','A'),('2425',3,'ALVAREZ RODRIGUEZ HIRAM RAMSES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-23','847420.00','A'),('2426',3,'FEMATT HERNANDEZ JESUS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-03-23','164130.00','A'),('2427',3,'GUTIERRES ORTEGA FRANCISCO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-22','278410.00','A'),('2428',3,'JIMENEZ DIAZ JUAN JORGE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-05-13','899650.00','A'),('2429',3,'VILLANUEVA PÉREZ MIGUEL ANGEL','191821112','CRA 25 CALLE 100','656@yahoo.es','2011-02-03',150449,'2011-03-23','663000.00','A'),('243',1,'GOMEZ REYES ANDRES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',126674,'2009-12-20','879240.00','A'),('2430',3,'CERON GOMEZ JOEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-03-21','616070.00','A'),('2431',3,'LOPEZ LINALDI DEMETRIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-05-09','91360.00','A'),('2432',3,'JOSEPH NATHAN PEDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-05-02','608580.00','A'),('2433',3,'CARREÑO PULIDO RUBEN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',147242,'2011-06-19','768810.00','A'),('2434',3,'AREVALO MERCADO CARLOS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-06-12','18320.00','A'),('2436',3,'RAMIREZ QUEZADA ERIKA BELEM','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-03','870930.00','A'),('2438',3,'TATTO PRIETO MIGUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-05-19','382740.00','A'),('2439',3,'LOPEZ AYALA LUIS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-10-08','916370.00','A'),('244',1,'DEVIS EDGAR JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-10-08','560540.00','A'),('2440',3,'HERNANDEZ TOVAR JORGE ENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',144991,'2011-10-02','433650.00','A'),('2441',3,'COLLIARD LOPEZ PETER GEORGE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-09','419120.00','A'),('2442',3,'FLORES CHALA GARY','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-22','794670.00','A'),('2443',3,'FANDIÑO MUÑOZ ZAMIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-07-19','715970.00','A'),('2444',3,'BARROSO VARGAS DIEGO ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-26','195840.00','A'),('2446',3,'CRUZ RAMIREZ JUAN PEDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',145135,'2011-07-14','569050.00','A'),('2447',3,'TIJERINA ACOSTA SERGIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-26','351280.00','A'),('2449',3,'JASSO BARRERA CARLOS GUSTAVO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-08-24','192560.00','A'),('245',1,'LENCHIG KALEDA SERGIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-09-02','165000.00','A'),('2450',3,'GARRIDO PATRON VICTOR','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-09-27','814970.00','A'),('2451',3,'VELASQUEZ GUERRERO RUBEN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-20','497150.00','A'),('2452',3,'CHOI SUNGKYU','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',209494,'2011-08-16','40860.00','A'),('2453',3,'CONTRERAS LOPEZ SERGIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',145135,'2011-08-05','712830.00','A'),('2454',3,'CHAVEZ BATAA OSCAR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',150699,'2011-06-14','441590.00','A'),('2455',3,'LEE JONG HYUN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',131272,'2011-10-10','69460.00','A'),('2456',3,'MEDINA PADILLA CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',146589,'2011-04-20','22530.00','A'),('2457',3,'FLORES CUEVAS DOTNARA LUZ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',145135,'2011-05-17','904260.00','A'),('2458',3,'LIU YONGCHAO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-10-09','453710.00','A'),('2459',3,'CASTRO FERNANDES PORTOCARRERO JOSE MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',195892,'2011-06-14','555790.00','A'),('246',1,'YAMHURE FONSECAN ERNESTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2009-10-03','143350.00','A'),('2460',3,'DUAN WEI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-06-22','417820.00','A'),('2461',3,'ZHU XUTAO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-18','421740.00','A'),('2462',3,'MEI SHUANNIU','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-10-09','855240.00','A'),('2464',3,'VEGA VACA LUIS ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-06-08','489110.00','A'),('2465',3,'TANG YUMING','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',147578,'2011-03-26','412660.00','A'),('2466',3,'VILLEDA GARCIA DAVID','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',144939,'2011-06-07','595990.00','A'),('2467',3,'GARCIA GARZA BLANCA ARMIDA','191821112','CRA 25 CALLE 100','927@hotmail.com','2011-02-03',145135,'2011-05-20','741940.00','A'),('2468',3,'HERNANDEZ MARTINEZ EMILIO JOAQUIN','191821112','CRA 25 CALLE 100','356@facebook.com','2011-02-03',145135,'2011-06-16','921740.00','A'),('2469',3,'WANG FAN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',185363,'2011-08-20','382860.00','A'),('247',1,'ROJAS RODRIGUEZ ALVARO HERNAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-09','221760.00','A'),('2470',3,'WANG FEI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-10-09','149100.00','A'),('2471',3,'BERNAL MALDONADO GUILLERMO JAVIER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118777,'2011-07-26','596900.00','A'),('2472',3,'GUTIERREZ GOMEZ ARTURO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145184,'2011-07-24','537210.00','A'),('2474',3,'LAN TYANYE ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-06-23','865050.00','A'),('2475',3,'LAN SHUZHEN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-23','639240.00','A'),('2476',3,'RODRIGUEZ GONZALEZ CARLOS ARTURO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',144616,'2011-08-09','601050.00','A'),('2477',3,'HAIBO NI','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-20','87540.00','A'),('2479',3,'RUIZ RODRIGUEZ GRACIELA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-05-20','910130.00','A'),('248',1,'GONZALEZ RODRIGUEZ ANDRES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-03','678750.00','A'),('2480',3,'OROZCO MACIAS NORMA LETICIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-09-20','647010.00','A'),('2481',3,'MEZA ALVAREZ JOSE ALBERTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',144939,'2011-06-07','504670.00','A'),('2482',3,'RODRIGUEZ FIGUEROA RODRIGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',146308,'2011-04-27','582290.00','A'),('2483',3,'CARREON GUERRA ANA CECILIA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',110709,'2011-05-27','397440.00','A'),('2484',3,'BOTELHO BARRETO CARLOS JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',195892,'2011-08-02','240350.00','A'),('2485',3,'CORONADO CASTILLO HUGO','191821112','CRA 25 CALLE 100','209@yahoo.com.mx','2011-02-03',147529,'2011-06-07','9420.00','A'),('2486',3,'DE FUENTES GARZA MARCELO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-18','326030.00','A'),('2487',3,'GONZALEZ DUHART GUTIERREZ HORACIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-05-17','601920.00','A'),('2488',3,'LOPEZ LINALDI DEMETRIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-06-07','31500.00','A'),('2489',3,'CASTRO MONCAYO JOSE LUIS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-06-15','351720.00','A'),('249',1,'CASTRO RIBEROS JULIAN ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-23','728470.00','A'),('2490',3,'SERRALDE LOPEZ MARIA GUADALUPE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-07-25','664120.00','A'),('2491',3,'GARRIDO PATRON VICTOR','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-09-29','265450.00','A'),('2492',3,'BRAUN JUAN NICOLAS ANTONIE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-28','334880.00','A'),('2493',3,'BANKA RAHUL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',141138,'2011-05-02','878070.00','A'),('2494',1,'GARCIA MARTINEZ MARIA VIRGINIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-04-17','385690.00','A'),('2495',1,'MARIA VIRGINIA','191821112','CRA 25 CALLE 100','298@yahoo.com.mx','2011-02-03',127591,'2011-04-16','294220.00','A'),('2496',3,'GOMEZ ZENDEJAS MARIA ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145184,'2011-06-06','314060.00','A'),('2498',3,'MENDEZ MARTINEZ RAUL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145135,'2011-07-10','496040.00','A'),('2499',3,'CARREON GUERRA ANA CECILIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-07-29','417240.00','A'),('2501',3,'OLIVAR ARIAS ISMAEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-06-06','738850.00','A'),('2502',3,'ABOUMRAD NASTA EMILE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',145135,'2011-07-26','899890.00','A'),('2503',3,'RODRIGUEZ JIMENEZ ROBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-05-03','282900.00','A'),('2504',3,'ESTADOS UNIDOS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',145135,'2011-07-27','714840.00','A'),('2505',3,'SOTO MUÑOZ MARCO GREGORIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-26','725480.00','A'),('2506',3,'GARCIA MONTER ANA OTILIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',145135,'2011-10-05','482880.00','A'),('2507',3,'THIRUKONDA VIGNESH','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',126180,'2011-05-02','237950.00','A'),('2508',3,'RAMIREZ REATIAGA LYDA YOANA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',150699,'2011-06-26','741120.00','A'),('2509',3,'SEPULVEDA RODRIGUEZ JESUS ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-26','991730.00','A'),('251',1,'MEJIA PIZANO ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-10','845000.00','A'),('2510',3,'FRANCISCO MARIA DIAS COSTA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',179111,'2011-07-12','735330.00','A'),('2511',3,'TEIXEIRA REGO DE OLIVEIRA TIAGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',179111,'2011-06-14','701430.00','A'),('2512',3,'PHILLIP JAMES','191821112','CRA 25 CALLE 100','766@terra.com.co','2011-02-03',127591,'2011-09-28','301150.00','A'),('2513',3,'ERXLEBEN ROBERT','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',216125,'2011-04-13','401460.00','A'),('2514',3,'HUGHES CONNORRICHARD','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',269033,'2011-06-22','103880.00','A'),('2515',3,'LEBLANC MICHAEL PAUL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',216125,'2011-08-09','314990.00','A'),('2517',3,'DEVINE CHRISTOPHER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',269033,'2011-06-22','371560.00','A'),('2518',3,'WONG BRIAN TEK FUNG','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',126885,'2011-09-22','67910.00','A'),('2519',3,'BIDWALA IRFAN A','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',154811,'2011-03-28','224840.00','A'),('252',1,'JIMENEZ LARRARTE JUAN GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-01','406770.00','A'),('2520',3,'LEE HO YIN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',147578,'2011-08-29','920470.00','A'),('2521',3,'DE MOURA MARTINS NUNO ALEXANDRE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196094,'2011-10-09','927850.00','A'),('2522',3,'DA COSTA GOMES CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',179111,'2011-08-10','877850.00','A'),('2523',3,'HOOGWAERTS PAUL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118777,'2011-02-11','605690.00','A'),('2524',3,'LOPES MARQUES LUIS JOSE MANUEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118942,'2011-09-20','394910.00','A'),('2525',3,'CORREIA CAVACO JOSE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',178728,'2011-10-09','157470.00','A'),('2526',3,'HALL JOHN WILLIAM','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-09','602620.00','A'),('2527',3,'KNIGHT MARTIN GYLES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',113550,'2011-08-29','540670.00','A'),('2528',3,'HINDS THMAS TRISTAN PELLEW','191821112','CRA 25 CALLE 100','337@yahoo.es','2011-02-03',116862,'2011-08-23','895500.00','A'),('2529',3,'CARTON ALAN JOHN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-07-31','855510.00','A'),('253',1,'AZCUENAGA RAMIREZ NICOLAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',298472,'2011-05-10','498840.00','A'),('2530',3,'GHIM CHEOLL HO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-27','591060.00','A'),('2531',3,'PHILLIPS NADIA SULLIVAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-28','388750.00','A'),('2532',3,'CHANG KUKHYUN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-03-22','170560.00','A'),('2533',3,'KANG SEOUNGHYUN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',173192,'2011-08-24','686540.00','A'),('2534',3,'CHUNG BYANG HOON','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',125744,'2011-03-14','921030.00','A'),('2535',3,'SHIN MIN CHUL ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',173192,'2011-08-24','545510.00','A'),('2536',3,'CHOI JIN SUNG','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-15','964490.00','A'),('2537',3,'CHOI SUNGMIN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-27','185910.00','A'),('2538',3,'PARK JAESER ','191821112','CRA 25 CALLE 100','525@terra.com.co','2011-02-03',127591,'2011-09-03','36090.00','A'),('2539',3,'KIM DAE HOON ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',173192,'2011-08-24','622700.00','A'),('254',1,'AVENDAÑO PABON ROLANDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-05-12','273900.00','A'),('2540',3,'LYNN MARIA CRISTINA NORMA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',116862,'2011-09-21','5220.00','A'),('2541',3,'KIM CHINIL JULIAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',147578,'2011-08-27','158030.00','A'),('2543',3,'HALL JOHN WILLIAM','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-09','398290.00','A'),('2544',3,'YOSUKE PERDOMO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',165600,'2011-07-26','668040.00','A'),('2546',3,'AKAGI KAZAHIKO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-26','722510.00','A'),('2547',3,'NELSON JONATHAN GARY','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-09','176570.00','A'),('2548',3,'DUONG HOP BA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',116862,'2011-09-14','715310.00','A'),('2549',3,'CHAO-VILLEGAS NIKOLE TUK HING','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',180063,'2011-04-05','46830.00','A'),('255',1,'CORREA ALVARO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-27','872990.00','A'),('2551',3,'APPELS LAURENT BERNHARD','191821112','CRA 25 CALLE 100','891@hotmail.es','2011-02-03',135190,'2011-08-16','300620.00','A'),('2552',3,'PLAISIER ERIK JAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',289294,'2011-05-23','238440.00','A'),('2553',3,'BLOK HENDRIK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',288552,'2011-03-27','290350.00','A'),('2554',3,'NETTE ANNA STERRE','191821112','CRA 25 CALLE 100','621@yahoo.com.mx','2011-02-03',185363,'2011-07-30','736400.00','A'),('2555',3,'FRIELING HANS ERIC','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',107469,'2011-07-31','810990.00','A'),('2556',3,'RUTTE CORNELIA JANTINE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',143579,'2011-03-30','845710.00','A'),('2557',3,'WALRAVEN PIETER PAUL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',289294,'2011-07-29','795620.00','A'),('2558',3,'TREBES LAURENS JOHANNES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-11-22','440940.00','A'),('2559',3,'KROESE ROLANDWILLEBRORDUSMARIA','191821112','CRA 25 CALLE 100','188@facebook.com','2011-02-03',110643,'2011-06-09','817860.00','A'),('256',1,'FARIAS GARCIA REINI','191821112','CRA 25 CALLE 100','615@hotmail.com','2011-02-03',127591,'2011-03-05','543220.00','A'),('2560',3,'VAN DER HEIDE HENDRIK','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',291042,'2011-09-04','766460.00','A'),('2561',3,'VAN DEN BERG DONAR ALEXANDER GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',190393,'2011-07-13','378720.00','A'),('2562',3,'GODEFRIDUS JOHANNES ROPS ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127622,'2011-10-02','594240.00','A'),('2564',3,'WAT YOK YIENG','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',287095,'2011-03-22','392370.00','A'),('2565',3,'BUIS JACOBUS NICOLAAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-20','456810.00','A'),('2567',3,'CHIPPER FRANCIUSCUS NICOLAAS ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',291599,'2011-07-28','164300.00','A'),('2568',3,'ONNO ROUKENS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-11-28','500670.00','A'),('2569',3,'PETRUS MARCELLINUS STEPHANUS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',150699,'2011-06-25','10430.00','A'),('2571',3,'VAN VOLLENHOVEN IVO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-08','719370.00','A'),('2572',3,'LAMBOOIJ BART','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-09-20','946480.00','A'),('2573',3,'LANSER MARIANA PAULINE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',289294,'2011-04-09','574270.00','A'),('2575',3,'KLERKEN JOHANNES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',286101,'2011-05-24','436840.00','A'),('2576',3,'KRAS JACOBUS NICOLAAS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',289294,'2011-09-26','88410.00','A'),('2577',3,'FUCHS MICHAEL JOSEPH','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',185363,'2011-07-30','131530.00','A'),('2578',3,'BIJVANK ERIK JAN WILLEM','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-04-11','392410.00','A'),('2579',3,'SCHMIDT FRANC ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',106742,'2011-09-11','567470.00','A'),('258',1,'SOTO GONZALEZ FRANCISCO LAZARO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',116511,'2011-05-07','856050.00','A'),('2580',3,'VAN DER KOOIJ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',291277,'2011-07-10','660130.00','A'),('2581',2,'KRIS ANDRE GEORGES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127300,'2011-07-26','598240.00','A'),('2582',3,'HARDING LUIS ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',263813,'2011-05-08','10820.00','A'),('2583',3,'ROLLI GUY JEAN ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',145135,'2011-05-31','259370.00','A'),('2584',3,'NIETO PARRA SEBASTIAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',263813,'2011-07-04','264400.00','A'),('2585',3,'LASTRA CHAVEZ PABLO ARMANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',126674,'2011-05-25','543890.00','A'),('2586',1,'ZAIDA MAYERLY','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-05-05','926250.00','A'),('2587',1,'OSWALDO SOLORZANO CONTRERAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-28','999590.00','A'),('2588',3,'ZHOU XUAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-18','219200.00','A'),('2589',3,'HUANG ZHENGQUN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-18','97230.00','A'),('259',1,'GALARZA NARANJO JAIME RENE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-18','988830.00','A'),('2590',3,'HUANG ZHENQUIN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-18','828560.00','A'),('2591',3,'WEIDEN MULLER AMURER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-29','851110.00','A'),('2593',3,'OESTERHAUS CORNELIA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',256231,'2011-03-29','295960.00','A'),('2594',3,'RINTALAHTI JUHA HENRIK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-23','170220.00','A'),('2597',3,'VERWIJNEN JONAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',289697,'2011-02-03','638040.00','A'),('2598',3,'SHAW ROBERT','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',157414,'2011-07-10','273550.00','A'),('2599',3,'MAKINEN TIMO JUHANI','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',196234,'2011-09-13','453600.00','A'),('260',1,'RIVERA CAÑON JOSE EDWARD','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127538,'2011-09-19','375990.00','A'),('2600',3,'HONKANIEMI ARTO OLAVI','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',301387,'2011-09-06','447380.00','A'),('2601',3,'DAGG JAMIE MICHAEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',216125,'2011-08-09','876080.00','A'),('2602',3,'BOLAND PATRICK CHARLES ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',216125,'2011-09-14','38260.00','A'),('2603',2,'ZULEYKA JERRYS RIVERA MENDOZA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',150347,'2011-03-27','563050.00','A'),('2604',3,'DELGADO SEQUIRA FERRAO JOSE PEDRO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',188228,'2011-08-16','700460.00','A'),('2605',3,'YORRO LORA EDGAR MANUEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127689,'2011-06-17','813180.00','A'),('2606',3,'CARRASCO RODRIGUEZQCARLOS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127689,'2011-06-17','964520.00','A'),('2607',30,'ORJUELA VELASQUEZ JULIANA MARIA','191821112','CRA 25 CALLE 100','372@terra.com.co','2011-02-03',132775,'2011-09-01','383070.00','A'),('2608',3,'DUQUE DUTRA LUIS EDUARDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',118942,'2011-07-12','21780.00','A'),('261',1,'MURCIA MARQUEZ NESTOR JAVIER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-19','913480.00','A'),('2610',3,'NGUYEN HUU KHUONG','191821112','CRA 25 CALLE 100','457@facebook.com','2011-02-03',132958,'2011-05-07','733120.00','A'),('2611',3,'NGUYEN VAN LAP','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-05-07','786510.00','A'),('2612',3,'PHAM HUU THU','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132958,'2011-05-07','733200.00','A'),('2613',3,'DANG MING CUONG','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132958,'2011-05-07','306460.00','A'),('2614',3,'VU THI HONG HANH','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132958,'2011-05-07','332710.00','A'),('2615',3,'CHAU TANG LANG','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-05-07','744190.00','A'),('2616',3,'CHU BAN THING','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132958,'2011-05-07','722800.00','A'),('2617',3,'NGUYEN QUANG THU','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132958,'2011-05-07','381420.00','A'),('2618',3,'TRAN THI KIM OANH','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-05-07','738690.00','A'),('2619',3,'NGUYEN VAN VINH','191821112','CRA 25 CALLE 100','422@yahoo.com.mx','2011-02-03',132958,'2011-05-07','549210.00','A'),('262',1,'ABDULAZIS ELNESER KHALED','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-27','439430.00','A'),('2620',3,'NGUYEN XUAN VY','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132958,'2011-05-07','529950.00','A'),('2621',3,'HA MANH HOA','191821112','CRA 25 CALLE 100','439@gmail.com','2011-02-03',132958,'2011-05-07','2160.00','A'),('2622',3,'ZAFIROPOULO STEVEN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-25','420930.00','A'),('2623',3,'ZAFIROPOULO ANA I','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-25','98170.00','A'),('2624',3,'TEMIGTERRA MASSIMILIANO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',210050,'2011-09-26','228070.00','A'),('2625',3,'CASSES TRINDADE HELGIO HENRIQUE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118402,'2011-09-13','845850.00','A'),('2626',3,'ASCOLI MASTROENI MARCO ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',120773,'2011-09-07','545010.00','A'),('2627',3,'MONTEIRO SOARES MARCOS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',120773,'2011-07-18','187530.00','A'),('2629',3,'HALL ALVARO AUGUSTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',120773,'2011-08-02','950450.00','A'),('2631',3,'ANDRADE CATUNDA RAFAEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',120773,'2011-08-23','370860.00','A'),('2632',3,'MAGALHAES MAYRA ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118767,'2011-08-23','320960.00','A'),('2633',3,'SPREAFICO MIRIAM ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118587,'2011-08-23','492220.00','A'),('2634',3,'GOMES FERREIRA HELIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',125812,'2011-08-23','498220.00','A'),('2635',3,'FERNANDES SENNA PIRES SERGIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-10-05','14460.00','A'),('2636',3,'BALESTRO FLORIANO FABIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',120773,'2011-08-24','577630.00','A'),('2637',3,'CABANA DE QUEIROZ ANDRADE ALAXANDRE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-23','844780.00','A'),('2638',3,'DALBOSCO CARLA','191821112','CRA 25 CALLE 100','380@yahoo.com.mx','2011-02-03',127591,'2011-06-30','491010.00','A'),('264',1,'ROMERO MONTOYA NICOLAY ENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-13','965220.00','A'),('2640',3,'BILLINI CRUZ RICARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',144215,'2011-03-27','130530.00','A'),('2641',3,'VASQUES ARIAS DAVID','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',144509,'2011-08-19','890500.00','A'),('2642',3,'ROJAS VOLQUEZ GLADYS MICHELLE','191821112','CRA 25 CALLE 100','852@gmail.com','2011-02-03',144215,'2011-07-25','60930.00','A'),('2643',3,'LLANEZA GIL JUAN RAFAELMO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',144215,'2011-07-08','633120.00','A'),('2646',3,'AVILA PEROZO IANKEL JACOB','191821112','CRA 25 CALLE 100','318@hotmail.com','2011-02-03',144215,'2011-09-03','125600.00','A'),('2647',3,'REGULAR EDUARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-19','583540.00','A'),('2648',3,'CORONADO BATISTA JOSE ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-19','540910.00','A'),('2649',3,'OLIVIER JOSE VICTOR','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',144509,'2011-08-19','953910.00','A'),('2650',3,'YOO HOE TAEK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',145135,'2011-08-25','146820.00','A'),('266',1,'CUECA RODRIGUEZ CARLOS ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-22','384280.00','A'),('267',1,'NIETO ALVARADO ARMANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2008-04-28','553450.00','A'),('269',1,'LEAL HOLGUIN FRANCISCO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-25','411700.00','A'),('27',1,'MORENO MORENO CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2009-09-15','995620.00','A'),('270',1,'CANO IBAÑES JUAN FELIPE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-03','215260.00','A'),('271',1,'RESTREPO HERRAN ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132775,'2011-04-18','841220.00','A'),('272',3,'RIOS FRANCISCO JOSE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',199862,'2011-03-24','560300.00','A'),('273',1,'MADERO LORENZANA NICOLAS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-03','277850.00','A'),('274',1,'GOMEZ GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-09-24','708350.00','A'),('275',1,'CONSUEGRA ARENAS ANDRES MAURICIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-09-09','708210.00','A'),('276',1,'HURTADO ROJAS NICOLAS','191821112','CRA 25 CALLE 100','463@yahoo.com.mx','2011-02-03',127591,'2011-09-07','416000.00','A'),('277',1,'MURCIA BAQUERO MARCO ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-02','955370.00','A'),('2773',3,'TAKUBO KAORI','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',165753,'2011-05-12','872390.00','A'),('2774',3,'OKADA MAKOTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',165753,'2011-06-19','921480.00','A'),('2775',3,'TAKEDA AKIO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',21062,'2011-06-19','990250.00','A'),('2776',3,'KOIKE WATARU ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',165753,'2011-06-19','186800.00','A'),('2777',3,'KUBO SHINEI','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',165753,'2011-02-13','963230.00','A'),('2778',3,'KANNO YONEZO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',165600,'2011-07-26','255770.00','A'),('278',3,'PARENT ELOIDE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',267980,'2011-05-01','528840.00','A'),('2781',3,'SUNADA MINORU ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',165753,'2011-06-19','724450.00','A'),('2782',3,'INOUE KASUYA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-22','87150.00','A'),('2783',3,'OTAKE NOBUTOSHI','191821112','CRA 25 CALLE 100','208@facebook.com','2011-02-03',127591,'2011-06-11','262380.00','A'),('2784',3,'MOTOI KEN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',165753,'2011-06-19','50470.00','A'),('2785',3,'TANAKA KIYOTAKA ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',165753,'2011-06-19','465210.00','A'),('2787',3,'YUMIKOPERDOMO','191821112','CRA 25 CALLE 100','600@yahoo.es','2011-02-03',165600,'2011-07-26','477550.00','A'),('2788',3,'FUKUSHIMA KENZO','191821112','CRA 25 CALLE 100','599@gmail.com','2011-02-03',156960,'2011-05-30','863860.00','A'),('2789',3,'GELGIN LEVENT NURI','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-26','886630.00','A'),('279',1,'AVIATUR S. A.','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-02','778110.00','A'),('2791',3,'GELGIN ENIS ENRE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-26','547940.00','A'),('2792',3,'PAZ SOTO LUBRASCA MARIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',143954,'2011-06-27','215000.00','A'),('2794',3,'MOURAD TAOUFIKI','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-13','511000.00','A'),('2796',3,'DASTUS ALAIN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',218656,'2011-05-29','774010.00','A'),('2797',3,'MCDONALD MICHAEL LORNE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',269033,'2011-07-19','85820.00','A'),('2799',3,'KLESO MICHAEL QUENTIN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',269033,'2011-07-26','277950.00','A'),('28',1,'GONZALEZ ACUÑA EDGAR MAURICIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-09-19','531710.00','A'),('280',3,'NEME KARIM CHAIBAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',135967,'2010-05-02','304040.00','A'),('2800',3,'CLERK CHARLES ALEXANDER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',244158,'2011-07-26','68490.00','A'),('2801',3,'BURRIS MAURICE STEWARD','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-27','508600.00','A'),('2802',1,'PINCHEN CLAIRE ELAINE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',216125,'2011-04-13','337530.00','A'),('2803',3,'LETTNER EVA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',231224,'2011-09-20','161860.00','A'),('2804',3,'CANUEL LUCIE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',146258,'2011-09-20','796710.00','A'),('2805',3,'IGLESIAS CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',216125,'2011-08-02','497980.00','A'),('2806',3,'PAQUIN JEAN FRANCOIS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',269033,'2011-03-27','99760.00','A'),('2807',3,'FOURNIER DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',228688,'2011-05-19','4860.00','A'),('2808',3,'BILODEAU MARTIN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-13','725030.00','A'),('2809',3,'KELLNER PETER WILLIAM','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',130757,'2011-07-24','610570.00','A'),('2810',3,'ZAZULAK INGRID ROSEMARIE','191821112','CRA 25 CALLE 100','683@facebook.com','2011-02-03',240550,'2011-09-11','877770.00','A'),('2811',3,'RUCCI JHON MARIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',285188,'2011-05-10','557130.00','A'),('2813',3,'JONCAS MARC','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',33265,'2011-03-21','90360.00','A'),('2814',3,'DUCHARME ERICK','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-03-29','994750.00','A'),('2816',3,'BAILLOD THOMAS DAVID ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',239124,'2010-10-20','529130.00','A'),('2817',3,'MARTINEZ SORIA JOSE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',289697,'2011-09-06','537630.00','A'),('2818',3,'TAMARA RABER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-04-30','100750.00','A'),('2819',3,'BURGI VINCENT EMANUEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',245206,'2011-04-20','890860.00','A'),('282',1,'HUESPED ASISTENTE A LA CONVENCION DE LA DIAN','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2009-06-24','17160.00','A'),('2820',3,'ROBLES TORRALBA IVAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',238949,'2011-05-16','152030.00','A'),('2821',3,'CONSUEGRA MARIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-06','87600.00','A'),('2822',3,'CELMA ADROVER LAIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',190393,'2011-03-23','981880.00','A'),('2823',3,'ALVAREZ JUAN PABLO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150699,'2011-06-20','646610.00','A'),('2824',3,'VARGAS WOODROFFE FRANCISCO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',157414,'2011-06-22','287410.00','A'),('2825',3,'GARCIA GUILLEN VICENTE LUIS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',144215,'2011-08-19','497230.00','A'),('2826',3,'GOMEZ GARCIA DIAMANTES PATRICIA MARIA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',286785,'2011-09-22','623930.00','A'),('2827',3,'PEREZ IGLESIAS BIBIANA','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',132958,'2011-09-30','627940.00','A'),('2830',3,'VILLALONGA MORENES MARIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',169679,'2011-05-29','474910.00','A'),('2831',3,'REY LOPEZ DAVID','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',150699,'2011-08-03','7380.00','A'),('2832',3,'HOYO APARICIO JESUS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',116511,'2011-09-19','612180.00','A'),('2836',3,'GOMEZ GARCIA LOPEZ CARLOS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',150699,'2011-09-21','277540.00','A'),('2839',3,'GALIMERTI MARCO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',235197,'2011-08-28','156870.00','A'),('2840',3,'BAROZZI GIUSEPE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',231989,'2011-05-25','609500.00','A'),('2841',3,'MARIAN RENATO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-12','576900.00','A'),('2842',3,'FAENZA CARLO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',126180,'2011-05-19','55990.00','A'),('2843',3,'PESOLILLO CARMINE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',203162,'2011-06-26','549230.00','A'),('2844',3,'CHIODI FRANCESCO MARIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',199862,'2011-09-10','578210.00','A'),('2845',3,'RUTA MARIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-06-19','243350.00','A'),('2846',3,'BAZZONI MARINO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',101518,'2011-05-03','482140.00','A'),('2848',3,'LAGASIO LEONARDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',231989,'2011-05-04','956670.00','A'),('2849',3,'VIERA DA CUNHA PAULO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',190393,'2011-04-05','741520.00','A'),('2850',3,'DAL BEN DENIS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',116511,'2011-05-26','837590.00','A'),('2851',3,'GIANELLI HERIBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',233927,'2011-05-01','963400.00','A'),('2852',3,'JUSTINO DA SILVA DJAMIR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-04-08','304200.00','A'),('2853',3,'DIPASQUUALE GAETANO','191821112','CRA 25 CALLE 100','574@terra.com.co','2011-02-03',172888,'2011-07-11','630830.00','A'),('2855',3,'CURI MAURO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',199862,'2011-06-19','315160.00','A'),('2856',3,'DI DIO MARCO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-20','851210.00','A'),('2857',3,'ROBERTI MENDONCA CAIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-11','310580.00','A'),('2859',3,'RAMOS MORENO DE SOUZA ANDRE ','191821112','CRA 25 CALLE 100','133@facebook.com','2011-02-03',118777,'2011-09-24','64540.00','A'),('286',8,'INEXMODA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-06-21','50150.00','A'),('2860',3,'JODJAHN DE CARVALHO FLAVIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2011-06-27','324950.00','A'),('2862',3,'LAGASIO LEONARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',231989,'2011-07-04','180760.00','A'),('2863',3,'MOON SUNG RIUL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-08','610440.00','A'),('2865',3,'VAIDYANATHAN VIKRAM','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-11','718220.00','A'),('2866',3,'NARAYANASWAMY RAMSUNDAR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',73079,'2011-10-02','61390.00','A'),('2867',3,'VADADA VENKATA RAMESH KUMAR','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-10','152300.00','A'),('2868',3,'RAMA KRISHNAN ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-10','577300.00','A'),('2869',3,'JALAN PRASHANT','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',122035,'2011-05-02','429600.00','A'),('2871',3,'CHANDRASEKAR VENKAT','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',112862,'2011-06-27','791800.00','A'),('2872',3,'CUMBAKONAM SWAMINATHAN SUBRAMANIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-11','710650.00','A'),('288',8,'BCD TRAVEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-23','645390.00','A'),('289',3,'EMBAJADA ARGENTINA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'1970-02-02','749440.00','A'),('290',3,'EMBAJADA DE BRASIL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-11-16','811030.00','A'),('293',8,'ONU','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-09-19','584810.00','A'),('299',1,'BLANDON GUZMAN JHON JAIRO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-01-13','201740.00','A'),('304',3,'COHEN DANIEL DYLAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',286785,'2010-11-17','184850.00','A'),('306',1,'CINDU ANDINA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2009-06-11','899230.00','A'),('31',1,'GARRIDO LEONARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127662,'2010-09-12','801450.00','A'),('310',3,'CORPORACION CLUB EL NOGAL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2010-08-27','918760.00','A'),('314',3,'CHAWLA AARON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-04-08','295840.00','A'),('317',3,'BAKER HUGHES','191821112','CRA 25 CALLE 100','694@hotmail.com','2011-02-03',127591,'2011-04-03','211990.00','A'),('32',1,'PAEZ SEGURA JOSE ANTONIO','191821112','CRA 25 CALLE 100','675@gmail.com','2011-02-03',129447,'2011-08-22','717340.00','A'),('320',1,'MORENO PAEZ FREDDY ALEXANDER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-31','971670.00','A'),('322',1,'CALDERON CARDOZO GASTON EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-10-05','990640.00','A'),('324',1,'ARCHILA MERA ALFREDOMANUEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-06-22','77200.00','A'),('326',1,'MUÑOZ AVILA HERNEY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-11-10','550920.00','A'),('327',1,'CHAPARRO CUBILLOS FABIAN ANDRES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-15','685080.00','A'),('329',1,'GOMEZ LOPEZ JUAN SEBASTIAN','191821112','CRA 25 CALLE 100','970@yahoo.com','2011-02-03',127591,'2011-03-20','808070.00','A'),('33',1,'MARTINEZ MARIÑO HENRY HERNAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-04-20','182370.00','A'),('330',3,'MAPSTONE NAOMI LEA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',122035,'2010-02-21','722380.00','A'),('332',3,'ROSSI BURRI NELLY','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132165,'2010-05-10','771210.00','A'),('333',1,'AVELLANEDA OVIEDO JUAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-25','293060.00','A'),('334',1,'SUZA FLOREZ JUAN PABLO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-13','151650.00','A'),('335',1,'ESGUERRA ALVARO ANDRES','191821112','CRA 25 CALLE 100','11@facebook.com','2011-02-03',127591,'2011-09-10','879080.00','A'),('337',3,'DE LA HARPE MARTIN CARAPET WALTER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-27','64960.00','A'),('339',1,'HERNANDEZ ACOSTA SERGIO ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',129499,'2011-06-22','322570.00','A'),('340',3,'ZARAMA DE LA ESPRIELLA MIGUEL PATRICIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-27','102360.00','A'),('342',1,'CABRERA VASQUEZ JUAN PABLO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-01','413440.00','A'),('343',3,'RICHARDSON BEN MARRIS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',286785,'2010-05-18','434890.00','A'),('344',1,'OLARTE PINZON MIGUEL FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-30','934140.00','A'),('345',1,'SOLER SEBASTIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2011-04-20','366020.00','A'),('346',1,'PRIETO JUAN ESTEBAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-07-12','27690.00','A'),('349',1,'BARRERO VELASCO DAVID','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-01','472850.00','A'),('35',1,'VELASQUEZ RAMOS JUAN MANUEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-13','251940.00','A'),('350',1,'RANGEL GARCIA SERGIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-03-20','7880.00','A'),('353',1,'ALVAREZ ACEVEDO JOHN FREDDY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-16','540070.00','A'),('354',1,'VILLAMARIN HOME WILMAR ALFREDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-09-19','458810.00','A'),('355',3,'SLUCHIN NAAMAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',263813,'2010-12-01','673830.00','A'),('357',1,'BULLA BERNAL LUIS ERNESTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-06-14','942160.00','A'),('358',1,'BRACCIA AVILA GIANCARLO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-01','732620.00','A'),('359',1,'RODRIGUEZ PINTO RAUL DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-08-24','836600.00','A'),('36',1,'MALDONADO ALVAREZ JAIRO ASDRUBAL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127300,'2011-06-19','980270.00','A'),('362',1,'POMBO POLANCO JUAN BERNARDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-18','124130.00','A'),('363',1,'CARDENAS SUAREZ CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127662,'2011-09-01','372920.00','A'),('364',1,'RIVERA MAZO JOSE DAVID','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-06-10','492220.00','A'),('365',1,'LEDERMAN CORDIKI JONATHAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-12-03','342340.00','A'),('367',1,'BARRERA MARTINEZ LUIS CARLOS','191821112','CRA 25 CALLE 100','35@yahoo.com.mx','2011-02-03',127591,'2011-05-24','148130.00','A'),('368',1,'SEPULVEDA RAMIREZ DANIEL MARCELO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-31','35560.00','A'),('369',1,'QUINTERO DIAZ WILSON ASDRUBAL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-07-24','733430.00','A'),('37',1,'RESTREPO SUAREZ HENRY BERNARDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2011-07-25','145540.00','A'),('370',1,'ROJAS YARA WILLMAR ARLEY','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-12-03','560450.00','A'),('371',3,'CARVER LOUISE EMILY','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',286785,'2010-10-07','601980.00','A'),('372',3,'VINCENT DAVID','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',286785,'2011-03-06','328540.00','A'),('374',1,'GONZALEZ DELGADO MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-08-18','198260.00','A'),('375',1,'PAEZ SIMON','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-06-25','480970.00','A'),('376',1,'CADOSCH DELMAR ELIE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-10-07','810080.00','A'),('377',1,'HERRERA VASQUEZ DANIEL EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-06-30','607460.00','A'),('378',1,'CORREAL ROJAS RONALD','191821112','CRA 25 CALLE 100','269@facebook.com','2011-02-03',127591,'2011-07-16','607080.00','A'),('379',1,'VOIDONNIKOLAS MUÑOS PANAGIOTIS','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-27','213010.00','A'),('38',1,'CANAL ROJAS MAURICIO HERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-05-29','786900.00','A'),('380',1,'DIAZ ECHEVERRI JUAN DAVID ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-20','243800.00','A'),('381',1,'CIFUENTES MARIN HERNANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-26','579960.00','A'),('382',3,'PAXTON LUCINDA HARRIET','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',107159,'2011-05-23','168420.00','A'),('384',3,'POYNTON BRIAN GEORGE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',286785,'2011-03-20','5790.00','A'),('385',3,'TERMIGNONI ADRIANO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-01-14','722320.00','A'),('386',3,'CARDWELL PAULA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-02-17','594230.00','A'),('389',1,'FONCECA MARTINEZ MIGUEL ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-25','778680.00','A'),('39',1,'GARCIA SUAREZ WILLIAM ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-25','497880.00','A'),('390',1,'GUERRERO NELSON','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-12-03','178650.00','A'),('391',1,'VICTORIA PENA FERNANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-22','557200.00','A'),('392',1,'VAN HISSENHOVEN FERRERO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-13','250060.00','A'),('393',1,'CACERES ORDUZ JUAN GUILLERMO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-28','578690.00','A'),('394',1,'QUINTERO ALVARO FELIPE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-17','143270.00','A'),('395',1,'ANZOLA PEREZ CARLOSDAVID','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-04','980300.00','A'),('397',1,'LLOREDA ORTIZ CARLOS JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-27','417470.00','A'),('398',1,'GONZALES LONDOÑO SEBASTIAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-06-19','672310.00','A'),('4',1,'LONDOÑO DOMINGUEZ ERNESTO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-05','324610.00','A'),('40',1,'MORENO ANGULO ORLANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-01','128690.00','A'),('400',8,'TRANSELCA .A','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-04-14','528930.00','A'),('403',1,'VERGARA MURILLO JUAN FERNANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-03-04','42900.00','A'),('405',1,'CAPERA CAPERA HARRINSON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127799,'2011-06-12','961000.00','A'),('407',1,'MORENO MORA WILLIAM EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-22','872780.00','A'),('408',1,'HIGUERA ROA NICOLAS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-03-28','910430.00','A'),('409',1,'FORERO CASTILLO OSCAR ALEJANDRO','191821112','CRA 25 CALLE 100','988@terra.com.co','2011-02-03',127591,'2011-07-23','933810.00','A'),('410',1,'LOPEZ MURCIA JULIAN DANIEL','191821112','CRA 25 CALLE 100','399@facebook.com','2011-02-03',127591,'2011-08-08','937790.00','A'),('411',1,'ALZATE JOHN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-09-09','887490.00','A'),('412',1,'GONZALES GONZALES ORLANDO ANDREY','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-30','624080.00','A'),('413',1,'ESCOLANO VALENTIN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-08-05','457930.00','A'),('414',1,'JARAMILLO RODRIGUEZ JUAN CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-12','417420.00','A'),('415',1,'GARCIA MUÑOZ DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-10-02','713300.00','A'),('416',1,'PIÑEROS ARENAS JUAN DAVID','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-10-17','314260.00','A'),('417',1,'ORTIZ ARROYAVE ANDRES','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-05-21','431370.00','A'),('418',1,'BAYONA BARRIENTOS JEAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-12','214090.00','A'),('419',1,'AGUDELO VASQUEZ JUAN FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-08-30','776360.00','A'),('420',1,'CALLE DANIEL CJ PRODUCCIONES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-11-04','239500.00','A'),('422',1,'CANO BETANCUR ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-08-20','623620.00','A'),('423',1,'CALDAS BARRETO LUZ MIREYA','191821112','CRA 25 CALLE 100','991@facebook.com','2011-02-03',127591,'2011-05-22','512840.00','A'),('424',1,'SIMBAQUEBA JOSE ERNESTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-25','693320.00','A'),('425',1,'DE SILVESTRE CALERO LUIS GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-18','928110.00','A'),('426',1,'ZORRO PERALTA YEZID','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-25','560560.00','A'),('428',1,'SUAREZ OIDOR DARWIN LEONARDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',131272,'2011-09-05','410650.00','A'),('429',1,'GIRAL CARRILLO LUIS ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-04-13','997850.00','A'),('43',1,'MARULANDA VALENCIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-17','365550.00','A'),('430',1,'CORDOBA GARCES JUAN PABLO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-18','757320.00','A'),('431',1,'ARIAS TAMAYO DIEGO MAURICIO','191821112','CRA 25 CALLE 100','36@yahoo.com','2011-02-03',127591,'2011-09-05','793050.00','A'),('432',1,'EICHMANN PERRET MARC WILLY','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-22','693270.00','A'),('433',1,'DIAZ DANIEL ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2008-09-18','87200.00','A'),('435',1,'FACCINI GONZALEZ HERMANN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2009-01-08','519420.00','A'),('436',1,'URIBE DUQUE FELIPE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-28','528470.00','A'),('437',1,'TAVERA GAONA GABREL LEAL','191821112','CRA 25 CALLE 100','280@terra.com.co','2011-02-03',127591,'2011-04-28','84120.00','A'),('438',1,'ORDOÑEZ PARIS FERNANDO MAURICIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150699,'2011-09-26','835170.00','A'),('439',1,'VILLEGAS ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-19','923520.00','A'),('44',1,'MARTINEZ PEDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-08-13','738750.00','A'),('440',1,'MARTINEZ RUEDA JUAN CARLOS','191821112','CRA 25 CALLE 100','805@hotmail.es','2011-02-03',127591,'2011-04-07','112050.00','A'),('441',1,'ROLDAN JUAN CARLOS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-05-25','789720.00','A'),('442',1,'PEREZ BRANDWAYN ELIYAU MOISES','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-10-20','612450.00','A'),('443',1,'VALLEJO TORO JUAN DIEGO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128579,'2011-08-16','693080.00','A'),('444',1,'TORRES CABRERA EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-03-19','628070.00','A'),('445',1,'MERINO MEJIA GERMAN ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-28','61100.00','A'),('447',1,'GOMEZ GOMEZ JUAN CARLOS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-08','923070.00','A'),('448',1,'RAUSCH CHEHEBAR STEVEN JOSEPH','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-09-27','351540.00','A'),('449',1,'RESTREPO TRUCCO ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-28','988500.00','A'),('45',1,'GUTIERREZ JARAMILLO CARLOS MARIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',150699,'2011-08-22','597090.00','A'),('450',1,'GOLDSTEIN VAIDA ELI JACK','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-11','887860.00','A'),('451',1,'OLEA PINEDA EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-08-10','473800.00','A'),('452',1,'JORGE OROZCO','191821112','CRA 25 CALLE 100','503@hotmail.es','2011-02-03',127591,'2011-06-02','705410.00','A'),('454',1,'DE LA TORRE GOMEZ GERMAN ERNESTO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-03-03','411990.00','A'),('456',1,'MADERO ARIAS JUAN PABLO','191821112','CRA 25 CALLE 100','452@hotmail.es','2011-02-03',127591,'2011-08-22','479090.00','A'),('457',1,'GOMEZ MACHUCA ALVARO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-08-12','166430.00','A'),('458',1,'MENDIETA TOBON DANIEL RICARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-08','394880.00','A'),('459',1,'VILLADIEGO CORTINA JAVIER TOMAS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-26','475110.00','A'),('46',1,'FERRUCHO ARCINIEGAS JUAN CARLOS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-06','769220.00','A'),('460',1,'DERESER HARTUNG ERNESTO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-12-25','190900.00','A'),('461',1,'RAMIREZ PENA ALEJANDRO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-06-25','529190.00','A'),('463',1,'IREGUI REYES LUIS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-07','778590.00','A'),('464',1,'PINTO GOMEZ MAURICIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132775,'2010-06-24','673270.00','A'),('465',1,'RAMIREZ RAMIREZ FERNANDO ALONSO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127799,'2011-10-01','30570.00','A'),('466',1,'BERRIDO TRUJILLO JORGE HENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',132775,'2011-10-06','133040.00','A'),('467',1,'RIVERA CARVAJAL RAFAEL HUMBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-07-20','573500.00','A'),('468',3,'FLOREZ PUENTES IVAN ALFONSO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',145135,'2011-05-08','468380.00','A'),('469',1,'BALLESTEROS FLOREZ IVAN DARIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-06-02','621410.00','A'),('47',1,'MARIN FLOREZ OMAR EDUARDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-30','54840.00','A'),('470',1,'RODRIGO PEÑA HERRERA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',237734,'2011-10-04','701890.00','A'),('471',1,'RODRIGUEZ SILVA ROGELIO','191821112','CRA 25 CALLE 100','163@gmail.com','2011-02-03',127591,'2011-05-26','645210.00','A'),('473',1,'VASQUEZ VELANDIA JUAN GABRIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',196234,'2011-05-04','666330.00','A'),('474',1,'ROBLEDO JAIME','191821112','CRA 25 CALLE 100','409@yahoo.com','2011-02-03',127591,'2011-05-31','970480.00','A'),('475',1,'GRIMBERG DIAZ PHILIP','191821112','CRA 25 CALLE 100','723@yahoo.com','2011-02-03',127591,'2011-03-30','853430.00','A'),('476',1,'CHAUSTRE GARCIA JUAN PABLO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-26','355670.00','A'),('477',1,'GOMEZ FLOREZ IGNASIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-09-14','218090.00','A'),('478',1,'LUIS ALBERTO CABRERA PUENTES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2011-05-26','23420.00','A'),('479',1,'MARTINEZ ZAPATA JUAN CARLOS','191821112','CRA 25 CALLE 100','234@gmail.com','2011-02-03',127122,'2011-07-01','462840.00','A'),('48',1,'PARRA IBAÑEZ FABIAN ERNESTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-02-01','966520.00','A'),('480',3,'WESTERBERG JAN RICKARD','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',300701,'2011-02-01','243940.00','A'),('484',1,'RODRIGUEZ VILLALOBOS EDGAR FERNANDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-19','860320.00','A'),('486',1,'NAVARRO REYES DIEGO FELIPE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-01','530150.00','A'),('487',1,'NOGUERA RICAURTE ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-01-21','384100.00','A'),('488',1,'RUIZ VEJARANO CARLOS DANIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-09-27','330030.00','A'),('489',1,'CORREA PEREZ ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-12-14','497860.00','A'),('49',1,'FLOREZ PEREZ RUBIEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-23','668090.00','A'),('490',1,'REYES GOMEZ LUIS ALEJANDRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-26','499210.00','A'),('491',3,'BERNAL LEON ALBERTO JOSE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',150699,'2011-03-29','2470.00','A'),('492',1,'FELIPE JARAMILLO CARO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2009-10-31','514700.00','A'),('493',1,'GOMEZ PARRA GERMAN DARIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-01-29','566100.00','A'),('494',1,'VALLEJO RAMIREZ CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-13','286390.00','A'),('495',1,'DIAZ LONDOÑO HUGO MARIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-04-06','733670.00','A'),('496',3,'VAN BAKERGEM RONALD JAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2008-11-05','809190.00','A'),('497',1,'MENDEZ RAMIREZ JOSE LEONARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-10','844920.00','A'),('498',3,'QUI TANILLA HENRIQUEZ PAUL ANTONIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-10','797030.00','A'),('499',3,'PELEATO FLOREAL','191821112','CRA 25 CALLE 100','531@hotmail.com','2011-02-03',188640,'2011-04-23','450370.00','A'),('50',1,'SILVA GUZMAN MAURICIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-03-24','440890.00','A'),('502',3,'LEO ULF GORAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',300701,'2010-07-26','181840.00','A'),('503',3,'KARLSSON DANIEL','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',300701,'2011-07-22','50680.00','A'),('504',1,'JIMENEZ JANER ALEJANDRO','191821112','CRA 25 CALLE 100','889@hotmail.es','2011-02-03',203272,'2011-08-29','707880.00','A'),('506',1,'PABON OCHOA ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-14','813050.00','A'),('507',1,'ACHURY CADENA CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-26','903240.00','A'),('508',1,'ECHEVERRY GARZON SEBASTIN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-23','77050.00','A'),('509',1,'PIÑEROS PEÑA LUIS CARLOS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-07-29','675550.00','A'),('51',1,'CAICEDO URREA JAIME ORLANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127300,'2011-08-17','200160.00','A'),('510',1,'MARTINEZ MARTINEZ LUIS EDUARDO','191821112','CRA 25 CALLE 100','586@facebook.com','2011-02-03',127591,'2010-08-28','146600.00','A'),('511',1,'MOLANO PEÑA JESUS ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-02-05','706320.00','A'),('512',3,'RUDOLPHY FONTAINE ANDRES','191821112','CRA 25 CALLE 100','492@yahoo.com','2011-02-03',117002,'2011-04-12','91820.00','A'),('513',1,'NEIRA CHAVARRO JOHN JAIRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-05-12','340120.00','A'),('514',3,'MENDEZ VILLALOBOS ARMANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',145135,'2011-03-25','425160.00','A'),('515',3,'HERNANDEZ OLIVA JOSE DE LA CRUZ','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',145135,'2011-03-25','105440.00','A'),('518',3,'JANCO NICOLAS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-15','955830.00','A'),('52',1,'TAPIA MUÑOZ JAIRO RICARDO','191821112','CRA 25 CALLE 100','920@hotmail.es','2011-02-03',127591,'2011-10-05','678130.00','A'),('520',1,'ALVARADO JAVIER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-26','895550.00','A'),('521',1,'HUERFANO SOTO JONATHAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-30','619910.00','A'),('522',1,'HUERFANO SOTO JONATHAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-04','412900.00','A'),('523',1,'RODRIGEZ GOMEZ WILMAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-05-14','204790.00','A'),('525',1,'ARROYO BAPTISTE DIEGO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-04-09','311810.00','A'),('526',1,'PULECIO BOEK DANIEL','191821112','CRA 25 CALLE 100','718@gmail.com','2011-02-03',127591,'2011-08-12','203350.00','A'),('527',1,'ESLAVA VELEZ SEBASTIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-10-08','81300.00','A'),('528',1,'CASTRO FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-05-06','796470.00','A'),('53',1,'HINCAPIE MARTINEZ RICARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127573,'2011-09-26','790180.00','A'),('530',1,'ZORRILLA PUJANA NICOLAS','191821112','CRA 25 CALLE 100','312@yahoo.es','2011-02-03',127591,'2011-06-06','302750.00','A'),('531',1,'ZORRILLA PUJANA NICOLAS','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-06','298440.00','A'),('532',1,'PRETEL ARTEAGA MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-09','583980.00','A'),('533',1,'RAMOS VERGARA HUMBERTO CARLOS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',131105,'2010-05-13','24560.00','A'),('534',1,'BONILLA PIÑEROS DIEGO FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-09-20','370880.00','A'),('535',1,'BELTRAN TRIVIÑO JULIAN DAVID','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-11-06','780710.00','A'),('536',3,'BLOD ULF FREDERICK EDWARD','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-06','790900.00','A'),('537',1,'VANEGAS OROZCO SEBASTIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-11-10','612400.00','A'),('538',3,'ORUE VALLE MONICA CECILIA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',97885,'2011-09-15','689270.00','A'),('539',1,'AGUDELO BEDOYA ANDRES JOSE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2011-05-24','609160.00','A'),('54',1,'DE HOYOS TRESPALACIOS MAURICIO ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-04-21','916500.00','A'),('540',3,'HEIJKENSKJOLD PER JESPER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-04-06','977980.00','A'),('541',3,'GONZALEZ ALVARADO LUIS RAUL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-08-27','62430.00','A'),('543',1,'GRUPO SURAMERICA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-08-24','703760.00','A'),('545',1,'CORPORACION CONTEXTO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-09-08','809570.00','A'),('546',3,'LUNDIN JOHAN ERIK ','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-29','895330.00','A'),('548',3,'VEGERANO JOSE ','191821112','CRA 25 CALLE 100','221@facebook.com','2011-02-03',190393,'2011-06-05','553780.00','A'),('549',3,'SERRANO MADRID CLAUDIA INES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-07-27','625060.00','A'),('55',1,'TAFUR GOMEZ ALEXANDER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127300,'2010-09-12','211980.00','A'),('550',1,'MARTINEZ ACEVEDO MAURICIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-10-06','463920.00','A'),('551',1,'GONZALEZ MORENO PABLO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-07-21','444450.00','A'),('552',1,'MEJIA ROJAS ANDRES FELIPE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-08-02','830470.00','A'),('553',3,'RODRIGUEZ ANTHONY HANSEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-16','819000.00','A'),('554',1,'ABUCHAIBE ANNICCHRICO JOSE ANTONIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-05-31','603610.00','A'),('555',3,'MOYES KIMBERLY','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-08','561020.00','A'),('556',3,'MONTINI MARIO JOSE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118942,'2010-03-16','994280.00','A'),('557',3,'HOGBERG DANIEL TOBIAS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-06-15','288350.00','A'),('559',1,'OROZCO PFEIZER MARTIN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-10-07','429520.00','A'),('56',1,'NARIÑO ROJAS GABRIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-27','310390.00','A'),('560',1,'GARCIA MONTOYA ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-06-02','770840.00','A'),('562',1,'VELASQUEZ PALACIO MANUEL ORLANDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-06-23','515670.00','A'),('563',1,'GALLEGO PEREZ DIEGO ALEJANDRO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-04-14','881460.00','A'),('564',1,'RUEDA URREGO JUAN ESTEBAN','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-05-04','860270.00','A'),('565',1,'RESTREPO DEL TORO MAURICIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-05-10','656960.00','A'),('567',1,'TORO VALENCIA FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-08-04','549090.00','A'),('568',1,'VILLEGAS LUIS ALFONSO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-05-02','633490.00','A'),('569',3,'RIDSTROM CHRISTER ANDERS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',300701,'2011-09-06','520150.00','A'),('57',1,'TOVAR ARANGO JOHN JAIME','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127662,'2010-07-03','916010.00','A'),('570',3,'SHEPHERD DAVID','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2008-05-11','700280.00','A'),('573',3,'BENGTSSON JOHAN ANDREAS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-04-06','196830.00','A'),('574',3,'PERSSON HANS JONAS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-09','172340.00','A'),('575',3,'SYNNEBY BJORN ERIK','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-06-15','271210.00','A'),('577',3,'COHEN PAUL KIRTAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-25','381490.00','A'),('578',3,'ROMERO BRAVO FERNANDO EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-08-21','390360.00','A'),('579',3,'GUTHRIE ROBERT DEAN','191821112','CRA 25 CALLE 100','794@gmail.com','2011-02-03',161705,'2010-07-20','807350.00','A'),('58',1,'TORRES ESCOBAR JAIRO ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-06-17','648860.00','A'),('580',3,'ROCASERMEÑO MONTENEGRO MARIO JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',139844,'2010-12-01','865650.00','A'),('581',1,'COCK JORGE EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2011-08-19','906210.00','A'),('582',3,'REISS ANDREAS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2009-01-31','934120.00','A'),('584',3,'ECHEVERRIA CASTILLO GERMAN FRANCISCO','191821112','CRA 25 CALLE 100','982@yahoo.com','2011-02-03',139844,'2011-07-20','957370.00','A'),('585',3,'BRANDT CARLOS GUSTAVO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-10','931030.00','A'),('586',3,'VEGA NUÑEZ GILBERTO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-14','783010.00','A'),('587',1,'BEJAR MUÑOZ JORDI','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',196234,'2010-10-08','121990.00','A'),('588',3,'WADSO KERSTIN ELIZABETH','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-09-17','260890.00','A'),('59',1,'RAMOS FORERO JAVIER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-06-20','496300.00','A'),('590',1,'RODRIGUEZ BETANCOURT JAVIER AUGUSTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127538,'2011-05-23','909850.00','A'),('592',1,'ARBOLEDA HALABY RODRIGO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',150699,'2009-02-03','939170.00','A'),('593',1,'CURE CURE CARLOS ALFREDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',150699,'2011-07-11','494600.00','A'),('594',3,'VIDELA PEREZ OSCAR EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-07-13','655510.00','A'),('595',1,'GONZALEZ GAVIRIA NESTOR','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2009-09-28','793760.00','A'),('596',3,'IZQUIERDO DELGADO DIONISIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2009-09-24','2250.00','A'),('597',1,'MORENO DAIRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127300,'2011-06-14','629990.00','A'),('598',1,'RESTREPO FERNNDEZ SOTO JOSE MANUEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-08-31','143210.00','A'),('599',3,'YERYES VERGARA MARIA SOLEDAD','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-10-11','826060.00','A'),('6',1,'GUZMAN ESCOBAR JOSE VICENTE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-10','26390.00','A'),('60',1,'ELEJALDE ESCOBAR TOMAS ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-11-09','534910.00','A'),('601',1,'ESCAF ESCAF WILLIAM MIGUEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',150699,'2011-07-26','25190.00','A'),('602',1,'CEBALLOS ZULUAGA JOSE ALEJANDRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2011-05-03','23920.00','A'),('603',1,'OLIVELLA GUERRERO RAFAEL ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',134022,'2010-06-23','44040.00','A'),('604',1,'ESCOBAR GALLO CARLOS HUGO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-08-09','148420.00','A'),('605',1,'ESCORCIA RAMIREZ EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128569,'2011-04-01','609990.00','A'),('606',1,'MELGAREJO MORENO PAULA ANDREA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-05','604700.00','A'),('607',1,'TOBON CALLE CARLOS GUILLERMO','191821112','CRA 25 CALLE 100','689@hotmail.es','2011-02-03',128662,'2011-03-16','193510.00','A'),('608',3,'TREVIÑO NOPHAL SILVANO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',110709,'2011-05-27','153470.00','A'),('609',1,'CARDER VELEZ EDWIN JOHN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-09-04','186830.00','A'),('61',1,'GASCA DAZA VICTOR HERNANDO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-09-09','185660.00','A'),('610',3,'DAVIS JOHN BRADLEY','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-04-06','473740.00','A'),('611',1,'BAQUERO SLDARRIAGA ALVARO ALEJANDRO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-09-15','808210.00','A'),('612',3,'SERRACIN ARAUZ YANIRA YAMILET','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',131272,'2011-06-09','619820.00','A'),('613',1,'MORA SOTO ALVARO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-09-20','674450.00','A'),('614',1,'SUAREZ RODRIGUEZ HERNANDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',145135,'2011-03-29','512820.00','A'),('616',1,'BAQUERO GARCIA JORGE LUIS','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2010-07-14','165160.00','A'),('617',3,'ABADI MADURO MOISES SIMON','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',131272,'2009-03-31','203640.00','A'),('62',3,'FLOWER LYNDON BRUCE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',231373,'2011-05-16','323560.00','A'),('624',8,'OLARTE LEONARDO','191821112','CRA 25 CALLE 100','6@hotmail.com','2011-02-03',127591,'2011-06-03','219790.00','A'),('63',1,'RUBIO CORTES OSCAR','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-04-28','60830.00','A'),('630',5,'PROEXPORT','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',128662,'2010-08-12','708320.00','A'),('632',8,'SUPER COFFEE ','191821112','CRA 25 CALLE 100','792@hotmail.es','2011-02-03',127591,'2011-08-30','306460.00','A'),('636',8,'NOGAL ASESORIAS FINANCIERAS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-04-07','752150.00','A'),('64',1,'GUERRA MARTINEZ MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-24','333480.00','A'),('645',8,'GIZ - PROFIS','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-08-31','566330.00','A'),('652',3,'QBE DEL ISTMO COMPAÑIA DE REASEGUROS ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-07-14','932190.00','A'),('655',3,'CORP. CENTRO DE ESTUDIOS DE DERECHO JUSTICIA Y SOCIEDAD','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-05-04','440370.00','A'),('659',3,'GOOD YEAR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2010-09-24','993830.00','A'),('660',3,'ARCINIEGAS Y VILLAMIZAR','191821112','CRA 25 CALLE 100','258@yahoo.com','2011-02-03',127591,'2010-12-02','787450.00','A'),('67',1,'LOPEZ HOYOS JUAN DIEGO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127662,'2010-04-13','665230.00','A'),('670',8,'APPLUS NORCONTROL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2011-09-06','83210.00','A'),('672',3,'KERLL SEBASTIAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',287273,'2010-12-19','501610.00','A'),('673',1,'RESTREPO MOLINA RAMIRO ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',144215,'2010-12-18','457290.00','A'),('674',1,'PEREZ GIL JOSE IGNACIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-08-18','781610.00','A'),('676',1,'GARCIA LONDOÑO FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-08-23','336160.00','A'),('677',3,'RIJLAARSDAM KARIN AN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-07-03','72210.00','A'),('679',1,'LIZCANO MONTEALEGRE ARNULFO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127203,'2011-02-01','546170.00','A'),('68',1,'MARTINEZ SILVA EDGAR','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-29','54250.00','A'),('680',3,'OLIVARI MAYER PATRICIA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',122642,'2011-08-01','673170.00','A'),('682',3,'CHEVALIER FRANCK PIERRE CHARLES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',263813,'2010-12-01','617280.00','A'),('683',3,'NG WAI WING ','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',126909,'2011-06-14','904310.00','A'),('684',3,'MULLER DOMINGUEZ CARLOS ANDRES','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-05-22','669700.00','A'),('685',3,'MOSQUEDA DOMNGUEZ ANGEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-04-08','635580.00','A'),('686',3,'LARREGUI MARIN LEON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-04-08','168800.00','A'),('687',3,'VARGAS VERGARA ALEJANDRO BRAULIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',159245,'2011-09-14','937260.00','A'),('688',3,'SKINNER LYNN CHERYL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-12','179890.00','A'),('689',1,'URIBE CORREA LEONARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128662,'2010-07-29','87680.00','A'),('690',1,'TAMAYO JARAMILLO FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',128662,'2010-11-10','898730.00','A'),('691',3,'MOTABAN DE BORGES PAULA ELENA','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132958,'2010-09-24','230610.00','A'),('692',5,'FERNANDEZ NALDA JOSE MANUEL ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-06-28','456850.00','A'),('693',1,'GOMEZ RESTREPO JUAN FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-06-28','592420.00','A'),('694',1,'CARDENAS TAMAYO JOSE JAIME','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-08-08','591550.00','A'),('696',1,'RESTREPO ARANGO ALEJANDRO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-03-31','127820.00','A'),('697',1,'ROCABADO PASTRANA ROBERT JAVIER','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127443,'2011-08-13','97600.00','A'),('698',3,'JARVINEN JOONAS JORI KRISTIAN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',196234,'2011-05-29','104560.00','A'),('699',1,'MORENO PEREZ HERNAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',128662,'2011-08-30','230000.00','A'),('7',1,'PUYANA RAMOS GUILLERMO ALBERTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-08-27','331830.00','A'),('70',1,'GALINDO MANZANO JAVIER FRANCISCO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-31','214890.00','A'),('701',1,'ROMERO PEREZ ARCESIO JOSE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',132775,'2011-07-13','491650.00','A'),('703',1,'CHAPARRO AGUDELO LEONARDO VIRGILIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',128662,'2011-05-04','271320.00','A'),('704',5,'VASQUEZ YANIS MARIA DEL PILAR','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-10-13','508820.00','A'),('705',3,'BARBERO JOSE ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',116511,'2010-09-13','730170.00','A'),('706',1,'CARMONA HERNANDEZ MIGUEL ANGEL','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2010-11-08','124380.00','A'),('707',1,'PEREZ SUAREZ JORGE ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132775,'2011-09-14','431370.00','A'),('708',1,'ROJAS JORGE MARIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',130135,'2011-04-01','783740.00','A'),('71',1,'DIAZ JUAN PABLO/JULES JAVIER','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-10-01','247860.00','A'),('711',3,'CATALDO CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',116773,'2011-06-06','984810.00','A'),('716',5,'MACIAS PIZARRO PATRICIO ','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2011-06-07','376260.00','A'),('717',1,'RENDON MAYA DAVID ALEXANDER','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',130273,'2010-07-25','332310.00','A'),('718',3,'DE HILDEBRAND E GRISI FILHO CELSO CLAUDIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-11','532740.00','A'),('719',3,'ALLIEL FACUSSE JULIO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-06-20','666800.00','A'),('72',1,'LOPEZ ROJAS VICTOR DANIEL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-07-11','594640.00','A'),('720',3,'CHEMELLO JIMENEZ GAETANO ALBERTO FRANCISCO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',132958,'2010-06-23','735760.00','A'),('721',3,'GARCIA BEZANILLA RODOLFO EDUARDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',128662,'2010-04-12','678420.00','A'),('722',1,'ARIAS EDWIN','191821112','CRA 25 CALLE 100','13@terra.com.co','2011-02-03',127492,'2008-04-24','184800.00','A'),('723',3,'SOHN JANG WON','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-06-07','888750.00','A'),('724',3,'WILHELM GIOVINE JAIME ROBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',115263,'2011-09-20','889340.00','A'),('726',3,'CASTILLERO DANIA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',131272,'2011-05-13','234270.00','A'),('727',3,'PORTUGAL LANGHORST MAX GUILLERMO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-03-13','829960.00','A'),('729',3,'ALFONSO HERRANZ AGUSTIN ALFONSO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-07-21','745060.00','A'),('73',1,'DAVILA MENDEZ OSCAR DIEGO','191821112','CRA 25 CALLE 100','991@yahoo.com.mx','2011-02-03',128569,'2011-08-31','229630.00','A'),('730',3,'ALFONSO HERRANZ AGUSTIN CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2010-03-31','384360.00','A'),('731',1,'NOGUERA RAMIREZ CARLOS ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-07-14','686610.00','A'),('732',1,'ACOSTA PERALTA FABIAN ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',134030,'2011-06-21','279960.00','A'),('733',3,'MAC LEAN PIÑA PEDRO SEGUNDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-05-23','339980.00','A'),('734',1,'LEÓN ARCOS ALEX','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',133535,'2011-05-04','860020.00','A'),('736',3,'LAMARCA GARCIA GERMAN JULIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-04-29','820700.00','A'),('737',1,'PORTO VELASQUEZ LUIS MIGUEL','191821112','CRA 25 CALLE 100','321@hotmail.es','2011-02-03',133535,'2011-08-17','263060.00','A'),('738',1,'BUENAVENTURA MEDINA ERICK WILSON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',133535,'2011-09-18','853180.00','A'),('739',1,'LEVY ARRAZOLA RALPH MARC','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',133535,'2011-09-27','476720.00','A'),('74',1,'RAMIREZ SORA EDISON','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-03','364220.00','A'),('740',3,'MOON HYUNSIK ','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',173192,'2011-05-15','824080.00','A'),('741',3,'LHUILLIER TRONCOSO GASTON MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-09-07','690230.00','A'),('742',3,'UNDURRAGA PELLEGRINI GONZALO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',117002,'2010-11-21','978900.00','A'),('743',1,'SOLANO TRIBIN NICOLAS SIMON','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',134022,'2011-03-16','823800.00','A'),('744',1,'NOGUERA BENAVIDES JACOBO ALONSO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2010-10-06','182300.00','A'),('745',1,'GARCIA LEON MARCO ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',133535,'2008-04-16','440110.00','A'),('746',1,'EMILIANI ROJAS ALEXANDER ALFONSO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-09-12','653640.00','A'),('748',1,'CARREÑO POULSEN HELGEN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-05-06','778370.00','A'),('749',1,'ALVARADO FANDIÑO ANDRES EDUARDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2008-11-05','48280.00','A'),('750',1,'DIAZ GRANADOS JUAN PABLO.','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-01-12','906290.00','A'),('751',1,'OVALLE BETANCOURT ALBERTO JOSE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',134022,'2011-08-14','386620.00','A'),('752',3,'GUTIERREZ VERGARA JOSE MIGUEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-05-08','214250.00','A'),('753',3,'CHAPARRO GUAIMARAL LIZ','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',147467,'2011-03-16','911350.00','A'),('754',3,'CORTES DE SOLMINIHAC PABLO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117002,'2011-01-20','914020.00','A'),('755',3,'CHETAIL VINCENT','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',239124,'2010-08-23','836050.00','A'),('756',3,'PERUGORRIA RODRIGUEZ JORGE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2010-10-17','438210.00','A'),('757',3,'GOLLMANN ROBERTO JUAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',167269,'2011-03-28','682870.00','A'),('758',3,'VARELA SEPULVEDA MARIA PILAR','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',118777,'2010-07-26','99730.00','A'),('759',3,'MEYER WELIKSON MICHELE JANIK','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-05-10','450030.00','A'),('76',1,'VANEGAS RODRIGUEZ OSCAR IVAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-06-20','568310.00','A'),('77',3,'GATICA SOTOMAYOR MAURICIO VICENTE','191821112','CRA 25 CALLE 100','409@terra.com.co','2011-02-03',117002,'2010-05-13','444970.00','A'),('79',1,'PEÑA VALENZUELA DANIEL','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-19','264790.00','A'),('8',1,'NAVARRO PALENCIA HUGO RAFAEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',126968,'2011-05-05','579980.00','A'),('80',1,'BARRIOS CUADRADO DAVID','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-07-29','764140.00','A'),('802',3,'RECK GARRONE','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118942,'2009-02-06','767700.00','A'),('81',1,'PARRA QUIROGA JOSE ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-18','26330.00','A'),('811',8,'FEDERACION NACIONAL DE AVICULTORES ','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-04-18','926010.00','A'),('812',1,'ORJUELA VELEZ JAIME ALFONSO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-06-22','257160.00','A'),('813',1,'PEÑA CHACON GUSTAVO ADOLFO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2011-08-27','507770.00','A'),('814',1,'RONDEROS MOJICA ANDRES FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127443,'2011-05-04','767370.00','A'),('815',1,'RICO NIÑO MARIO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127443,'2011-05-18','313540.00','A'),('817',3,'AVILA CHYTIL MANUEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',118471,'2011-07-14','387300.00','A'),('818',3,'JABLONSKI DUARTE SILVEIRA ESTER','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',118942,'2010-12-21','139740.00','A'),('819',3,'BUHLER MOSLER XIMENA ALEJANDRA','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2011-06-20','536830.00','A'),('82',1,'CARRILLO GAMBOA JUAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-06-01','839240.00','A'),('820',3,'FALQUETO DALMIRO ANGELO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-06-21','264910.00','A'),('821',1,'RUGER GUSTAVO RODRIGUEZ TAMAYO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',133535,'2010-04-12','714080.00','A'),('822',3,'JULIO RODRIGUEZ FRANCISCO JAVIER','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',117002,'2011-08-16','775650.00','A'),('823',3,'CIBANIK RODOLFO MOISES','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132554,'2011-09-19','736020.00','A'),('824',3,'JIMENEZ FRANCO EMMANUEL ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-03-17','353150.00','A'),('825',3,'GNECCO TREMEDAD','191821112','CRA 25 CALLE 100','818@hotmail.com','2011-02-03',171072,'2011-03-19','557700.00','A'),('826',3,'VILAR MENDOZA JOSE RAFAEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-29','729050.00','A'),('827',3,'GONZALEZ MOLINA CRISTIAN MAURICIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-06-20','972160.00','A'),('828',1,'GONTOVNIK HOBRECKT CARLOS DANIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-08-02','673620.00','A'),('829',3,'DIBARRAT URZUA SEBASTIAN RAIMUNDO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-28','451650.00','A'),('830',3,'STOCCHERO HATSCHBACH GUILHERME','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',118777,'2010-11-22','237370.00','A'),('831',1,'NAVAS PASSOS NARCISO EVELIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-04-21','831900.00','A'),('832',3,'LUNA SOBENES FAVIAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-10-11','447400.00','A'),('833',3,'NUÑEZ NOGUEIRA ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',188640,'2011-03-19','741290.00','A'),('834',1,'CASTRO BELTRAN ARIEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',128188,'2011-05-15','364270.00','A'),('835',1,'TURBAY YAMIN MAURICIO JOSE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',188640,'2011-03-17','597490.00','A'),('836',1,'GOMEZ BARRAZA RODNEY LORENZO','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-10-07','894610.00','A'),('837',1,'CUELLO LASCANO ROBERTO','191821112','CRA 25 CALLE 100','221@hotmail.es','2011-02-03',133535,'2011-07-11','680610.00','A'),('838',1,'PATERNINA PEINADO JOSE VICENTE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',133535,'2011-08-23','719190.00','A'),('839',1,'YEPES RUBIANO ALFONSO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-05-16','554130.00','A'),('84',1,'ALVIS RAMIREZ ALFREDO','191821112','CRA 25 CALLE 100','292@yahoo.com','2011-02-03',127662,'2011-09-16','68190.00','A'),('840',1,'ROCA LLANOS GUILLERMO ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-08-22','613060.00','A'),('841',1,'RENDON TORRALVO ENRIQUE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',133535,'2011-05-26','402950.00','A'),('842',1,'BLANCO STAND GERMAN ELIECER','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-07-17','175530.00','A'),('843',3,'BERNAL MAYRA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',131272,'2010-08-31','668820.00','A'),('844',1,'NAVARRO RUIZ LAZARO GREGORIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',126916,'2008-09-23','817520.00','A'),('846',3,'TUOMINEN OLLI PETTERI','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2010-09-01','953150.00','A'),('847',1,'ESPARRAGOZA DE LA ESPRIELLA ENRIQUE ALBERTO ','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',133535,'2011-08-09','522340.00','A'),('848',3,'ARAYA ARIAS JUAN VICENTE','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',132165,'2011-08-09','752210.00','A'),('85',1,'GARCIA JORGE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-03-01','989420.00','A'),('850',1,'PARDO GOMEZ GERMAN ENRIQUE','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132775,'2010-11-25','713690.00','A'),('851',1,'ATIQUE JOSE MANUEL','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2008-03-03','986250.00','A'),('852',1,'HERNANDEZ MEYER EDGARDO DE JESUS','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-07-20','790190.00','A'),('853',1,'ZULUAGA DE LEON IVAN JESUS','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-07-03','992210.00','A'),('854',1,'VILLARREAL ANGULO ENRIQUE ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',133535,'2011-10-02','590450.00','A'),('855',1,'CELIA MARTINEZ APARICIO GIAN PIERO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',133535,'2011-06-15','975620.00','A'),('857',3,'LIPARI RONALDO LUIS','191821112','CRA 25 CALLE 100','84@facebook.com','2011-02-03',118941,'2010-10-13','606990.00','A'),('858',1,'RAVACHI DAVILA ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',133535,'2011-05-04','714620.00','A'),('859',3,'PINHEIRO OLIVEIRA LUCIANO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-04-06','752130.00','A'),('86',1,'GOMEZ LIS CARLOS EMILIO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2009-12-22','742520.00','A'),('860',1,'PUGLIESE MERCADO LUIGGI ALBERTO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-08-19','616780.00','A'),('862',1,'JANNA TELLO DANIEL JALIL','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',133535,'2010-08-07','287220.00','A'),('863',3,'MATTAR CARLOS HENRIQUE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2009-04-26','953570.00','A'),('864',1,'MOLINA OLIER OSVALDO ENRIQUE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132775,'2011-04-18','906200.00','A'),('865',1,'BLANCO MCLIN DAVID ALBERTO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2010-08-18','670290.00','A'),('866',1,'NARANJO ROMERO ALFREDO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',133535,'2010-08-25','632860.00','A'),('867',1,'SIMANCAS TRUJILLO RICARDO ANTONIO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-04-07','153400.00','A'),('868',1,'ARENAS USME GERMAN','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',126881,'2011-10-01','868430.00','A'),('869',5,'DIAZ CORDERO RODRIGO FERNANDO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-11-04','881950.00','A'),('87',1,'CELIS PEREZ HERNANDO ALONSO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-10-05','744330.00','A'),('870',3,'BINDER ZBEDA JONATAHAN JANAN','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',131083,'2010-04-11','804460.00','A'),('871',1,'HINCAPIE HELLMAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2010-09-15','376440.00','A'),('872',3,'MONTEIRO LANAMAR ALFONSO DE BUSTAMANTE','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',118942,'2009-03-23','468820.00','A'),('873',3,'AGUDO CARMINATTI REGINA CELIA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2011-01-04','214770.00','A'),('874',1,'GONZALEZ VILLALOBOS CRISTIAN MANUEL','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',133535,'2011-09-26','667400.00','A'),('875',3,'GUELL VILLANUEVA ALVARO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2008-04-07','692670.00','A'),('876',3,'GRES ANAIS ROBERTO ANDRES','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2010-12-01','461180.00','A'),('877',3,'GAME MOCOCAIN JUAN ENRIQUE','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-08-07','227890.00','A'),('878',1,'FERRER UCROS FERNANDO LEON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-06-22','755900.00','A'),('879',3,'HERRERA JAUREGUI CARLOS GUSTAVO','191821112','CRA 25 CALLE 100','599@facebook.com','2011-02-03',131272,'2010-07-22','95840.00','A'),('880',3,'BACALLAO HERNANDEZ ANTONIO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',126180,'2010-04-21','211480.00','A'),('881',1,'GIJON URBINA JAIME','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',144879,'2011-04-03','769910.00','A'),('882',3,'TRUSEN CHRISTOPH WOLFGANG','191821112','CRA 25 CALLE 100','338@yahoo.com.mx','2011-02-03',127591,'2010-10-24','215100.00','A'),('883',3,'ASHOURI ASKANDAR','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',157861,'2009-03-03','765760.00','A'),('885',1,'ALTAMAR WATTS JAIRO ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-08-20','620170.00','A'),('887',3,'QUINTANA BALTIERRA ROBERTO ALEX','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',117002,'2011-06-21','891370.00','A'),('889',1,'CARILLO PATIÑO VICTOR HILARIO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',130226,'2011-09-06','354570.00','A'),('89',1,'CONTRERAS PULIDO LINA MARIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-08-06','237480.00','A'),('890',1,'GELVES CAÑAS GENARO ALBERTO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-04-02','355640.00','A'),('891',3,'CAGNONI DE MELO PAULA CRISTINA','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',118777,'2010-12-14','714490.00','A'),('892',3,'MENA AMESTICA PATRICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2011-03-22','505510.00','A'),('893',1,'CAICEDO ROMES','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-04-07','384110.00','A'),('894',1,'ECHEVERRY TRUJILLO ARMANDO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-06-08','404010.00','A'),('895',1,'CAJIA PEDRAZA ANTONIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2011-09-02','867700.00','A'),('896',2,'PALACIOS OLIVA ANDRES FELIPE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',117002,'2011-05-24','126500.00','A'),('897',1,'GUTIERREZ QUINTERO FABIAN ESTEBAN','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2009-10-24','29380.00','A'),('899',3,'COBO GUEVARA LUIS FELIPE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-12-09','748860.00','A'),('9',1,'OSORIO RODRIGUEZ FELIPE','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2010-09-27','904420.00','A'),('90',1,'LEYTON GONZALEZ FREDY RAFAEL','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-03-24','705130.00','A'),('901',1,'HERNANDEZ JOSE ANGEL','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',130266,'2011-05-23','964010.00','A'),('903',3,'GONZALEZ MALDONADO MAURICIO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',117002,'2010-11-13','576500.00','A'),('904',1,'OCHOA BARRIGA JORGE','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',130266,'2011-05-05','401380.00','A'),('905',1,'OSORIO REDONDO JESUS DAVID','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127300,'2011-08-11','277390.00','A'),('906',1,'BAYONA BARRIENTOS JEAN CARLOS','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-01-25','182820.00','A'),('907',1,'MARTINEZ GOMEZ CARLOS ENRIQUE','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132775,'2010-03-11','81940.00','A'),('908',1,'PUELLO LOPEZ GUILLERMO LEON','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',133535,'2011-08-12','861240.00','A'),('909',1,'MOGOLLON LONDOÑO PEDRO LUIS CARLOS','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',132775,'2011-06-22','60380.00','A'),('91',1,'ORTIZ RIOS JAVIER ADOLFO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127591,'2011-05-12','813200.00','A'),('911',1,'HERRERA HOYOS CARLOS FRANCISCO','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',132775,'2010-09-12','409800.00','A'),('912',3,'RIM MYUNG HWAN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-05-15','894450.00','A'),('913',3,'BIANCO DORIEN','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-29','242820.00','A'),('914',3,'FROIMZON WIEN DANIEL','191821112','CRA 25 CALLE 100','348@yahoo.com','2011-02-03',132165,'2010-11-06','530780.00','A'),('915',3,'ALVEZ AZEVEDO JOAO MIGUEL','191821112','CRA 25 CALLE 100','861@hotmail.es','2011-02-03',127591,'2009-06-25','925420.00','A'),('916',3,'CARRASCO DIAZ LUIS ANTONIO','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',127591,'2011-10-02','34780.00','A'),('917',3,'VIVALLOS MEDINA LEONEL EDMUNDO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2010-09-12','397640.00','A'),('919',3,'LASSE ANDRE BARKLIEN','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',286724,'2011-03-31','226390.00','A'),('92',1,'CUERVO CARDENAS ALEJANDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-09-08','950630.00','A'),('920',3,'BARCELOS PLOTEGHER LILIA MARA','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127591,'2011-08-07','480380.00','A'),('921',1,'JARAMILLO ARANGO JUAN DIEGO','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',127559,'2011-06-28','722700.00','A'),('93',3,'RUIZ PRIETO WILLIAM','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',131272,'2011-01-19','313540.00','A'),('932',7,'COMFENALCO ANTIOQUIA','191821112','CRA 25 CALLE 100','@facebook.com','2011-02-03',128662,'2011-05-05','515430.00','A'),('94',1,'GALLEGO JUAN GUILLERMO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-06-25','715830.00','A'),('944',3,'KARMELIC PAVLOV VESNA','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',120066,'2010-08-07','585580.00','A'),('945',3,'RAMIREZ BORDON OSCAR','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',128662,'2010-07-02','526250.00','A'),('946',3,'SORACCO CABEZA RODRIGO ANDRES','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',117002,'2011-07-04','874490.00','A'),('949',1,'GALINDO JORGE ERNESTO','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',127300,'2008-07-10','344110.00','A'),('950',3,'DR KNABLE THOMAS ERNST ALBERT','191821112','CRA 25 CALLE 100','@terra.com.co','2011-02-03',256231,'2009-11-17','685430.00','A'),('953',3,'VELASQUEZ JANETH','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-20','404650.00','A'),('954',3,'SOZA REX JOSE FRANCISCO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',150903,'2011-05-26','269790.00','A'),('955',3,'FONTANA GAETE JAIME PATRICIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',117002,'2011-01-11','134970.00','A'),('957',3,'PEREZ MARTINEZ GRECIA INDIRA','191821112','CRA 25 CALLE 100','@hotmail.es','2011-02-03',132958,'2010-08-27','922610.00','A'),('96',1,'FORERO CUBILLOS JORGEARTURO','191821112','CRA 25 CALLE 100','@hotmail.com','2011-02-03',127591,'2011-07-25','45020.00','A'),('97',1,'SILVA ACOSTA MARIO','191821112','CRA 25 CALLE 100','@yahoo.es','2011-02-03',127591,'2011-09-19','309580.00','A'),('978',3,'BLUMENTHAL JAIRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',117630,'2010-04-22','653490.00','A'),('984',3,'SUN XIAN','191821112','CRA 25 CALLE 100','@yahoo.com.mx','2011-02-03',127591,'2011-01-17','203630.00','A'),('99',1,'CANO GUZMAN ALEJANDRO','191821112','CRA 25 CALLE 100','@gmail.com','2011-02-03',127591,'2011-08-23','135620.00','A'),('999',1,' DRAGER','191821112','CRA 25 CALLE 100','@yahoo.com','2011-02-03',127591,'2010-12-22','882070.00','A'),('CELL1020',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1021',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1083',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1153',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1179',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1183',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL126',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1326',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1329',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL133',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1413',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1426',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1529',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1614',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1651',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1760',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL179',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1857',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1879',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1902',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1921',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1962',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL1992',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2006',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL206',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL215',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2187',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2307',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2322',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2497',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2641',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2736',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2805',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL281',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2905',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL2963',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3029',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3090',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3161',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3302',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3309',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3325',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3372',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3422',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3514',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3562',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3614',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3652',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3661',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3673',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3789',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3795',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL381',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3840',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3886',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL3944',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL396',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL401',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4012',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL411',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4137',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4159',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4183',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4198',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4291',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4308',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4324',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4330',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4334',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4415',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4440',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4547',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4639',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4662',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4698',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL475',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4790',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4838',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4885',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL4939',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5064',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5066',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL51',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5102',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5116',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5187',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5192',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5206',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5226',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5250',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5282',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL536',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5401',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5415',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5503',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5506',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL554',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5544',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5595',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5648',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5801',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL5821',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6179',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6201',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6277',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6288',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6358',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6369',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6408',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6418',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6425',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6439',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6509',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6533',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6556',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL673',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6731',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6766',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6775',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6802',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6834',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6842',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6890',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6953',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL6957',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7024',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7198',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7216',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL728',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7314',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7316',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7418',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7431',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7432',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7513',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7522',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7617',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7623',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7708',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7777',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL787',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7907',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7951',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL7956',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8004',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8058',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL811',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8136',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8162',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8187',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8286',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8300',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8316',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8339',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8366',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8389',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8446',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8487',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8546',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8578',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8643',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8774',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8829',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8846',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL8942',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9046',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9110',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL917',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9189',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9206',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9241',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9331',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9429',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9434',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9495',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9517',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9558',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9650',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9748',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9830',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9842',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9878',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9893',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('CELL9945',1,'LOST','1',NULL,NULL,NULL,NULL,NULL,'20000.00','A'),('T-Cx200',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx201',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx202',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx203',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx204',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx205',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx206',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx207',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx208',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx209',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx210',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx211',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx212',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx213',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'),('T-Cx214',1,'LOST LOST','1',NULL,NULL,NULL,NULL,NULL,'0.00','A'); - -drop table if exists `prueba`; -create table `prueba` ( - `id` int(10) unsigned not null auto_increment, - `nombre` varchar(120) collate utf8_unicode_ci not null, - `estado` char(1) collate utf8_unicode_ci not null, - primary key (`id`), - KEY `estado` (`estado`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; - -drop table if exists `robots`; -create table `robots` ( - `id` int(10) unsigned not null auto_increment, - `name` varchar(70) collate utf8_unicode_ci not null, - `type` varchar(32) collate utf8_unicode_ci not null default 'mechanical', - `year` int(11) not null default 1900, - `datetime` datetime not null, - `deleted` datetime default null, - `text` text not null, - primary key (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; -INSERT INTO `robots` VALUES (1,'Robotina','mechanical',1972,'1972/01/01 00:00:00', null, 'text'), - (2,'Astro Boy','mechanical',1952,'1952/01/01 00:00:00', null, 'text'), - (3,'Terminator','cyborg',2029,'2029/01/01 00:00:00', null, 'text'); - -drop table if exists `identityless_requests`; -create table `identityless_requests` ( - `method` ENUM('GET', 'POST', 'PUT', 'DELETE', 'OPTIONS', 'HEAD', 'PATCH', 'PURGE', 'TRACE', 'CONNECT'), - `requested_uri` VARCHAR(255), - `request_count` int(10) unsigned not null -) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; - -drop table if exists `robots_parts`; -create table `robots_parts` ( - `id` int(10) unsigned not null auto_increment, - `robots_id` int(10) unsigned not null, - `parts_id` int(10) unsigned not null, - primary key (`id`), - KEY `robots_id` (`robots_id`), - KEY `parts_id` (`parts_id`), - CONSTRAINT `robots_parts_ibfk_1` FOREIGN KEY (`robots_id`) REFERENCES `robots` (`id`), - CONSTRAINT `robots_parts_ibfk_2` FOREIGN KEY (`parts_id`) REFERENCES `parts` (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; -INSERT INTO `robots_parts` VALUES (1,1,1),(2,1,2),(3,1,3); - -drop table if exists `songs`; -create table `songs` ( - `id` int(10) unsigned not null auto_increment, - `albums_id` int(10) unsigned not null, - `name` varchar(72) collate utf8_unicode_ci not null, - primary key (`id`), - KEY `albums_id` (`albums_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; -INSERT INTO `songs` VALUES (1,1,'Born to Die'),(2,1,'Off to Races'),(3,1,'Blue Jeans'),(4,1,'Video Games'),(5,1,'Diet Mountain Dew'),(6,1,'National Anthem'),(7,1,'Dark Paradise'); - -drop table if exists `subscriptores`; -create table `subscriptores` ( - `id` int(10) unsigned not null auto_increment, - `email` varchar(70) collate utf8_unicode_ci not null, - `created_at` datetime default null, - `status` char(1) collate utf8_unicode_ci not null, - primary key (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; -INSERT INTO `subscriptores` VALUES (43,'fuego@hotmail.com','2012-04-14 23:30:33','P'); - -drop table if exists `tipo_documento`; -create table `tipo_documento` ( - `id` int(10) unsigned not null auto_increment, - `detalle` varchar(32) collate utf8_unicode_ci not null, - primary key (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; -INSERT INTO `tipo_documento` VALUES (1,'TIPO 0'),(2,'TIPO 1'),(3,'TIPO 2'),(4,'TIPO 3'),(5,'TIPO 4'),(6,'TIPO 5'),(7,'TIPO 6'),(8,'TIPO 7'),(9,'TIPO 8'),(10,'TIPO 9'),(11,'TIPO 10'),(12,'TIPO 11'),(13,'TIPO 12'),(14,'TIPO 13'),(15,'TIPO 14'),(16,'TIPO 15'),(17,'TIPO 16'),(18,'TIPO 17'),(19,'TIPO 18'),(20,'TIPO 19'),(21,'TIPO 20'),(22,'TIPO 21'),(23,'TIPO 22'),(24,'TIPO 23'),(25,'TIPO 24'),(26,'TIPO 25'),(27,'TIPO 26'),(28,'TIPO 27'),(29,'TIPO 28'),(30,'TIPO 29'),(31,'TIPO 30'),(32,'TIPO 31'),(33,'TIPO 32'),(34,'TIPO 33'),(35,'TIPO 34'),(36,'TIPO 35'),(37,'TIPO 36'),(38,'TIPO 37'),(39,'TIPO 38'),(40,'TIPO 39'),(41,'TIPO 40'),(42,'TIPO 41'),(43,'TIPO 42'),(44,'TIPO 43'),(45,'TIPO 44'),(46,'TIPO 45'),(47,'TIPO 46'),(48,'TIPO 47'),(49,'TIPO 48'),(50,'TIPO 49'),(51,'TIPO 50'),(52,'TIPO 51'),(53,'TIPO 52'),(54,'TIPO 53'),(55,'TIPO 54'),(56,'TIPO 55'),(57,'TIPO 56'),(58,'TIPO 57'),(59,'TIPO 58'),(60,'TIPO 59'),(61,'TIPO 60'),(62,'TIPO 61'),(63,'TIPO 62'),(64,'TIPO 63'),(65,'TIPO 64'),(66,'TIPO 65'),(67,'TIPO 66'),(68,'TIPO 67'),(69,'TIPO 68'),(70,'TIPO 69'),(71,'TIPO 70'),(72,'TIPO 71'),(73,'TIPO 72'),(74,'TIPO 73'),(75,'TIPO 74'),(76,'TIPO 75'),(77,'TIPO 76'),(78,'TIPO 77'),(79,'TIPO 78'),(80,'TIPO 79'),(81,'TIPO 80'),(82,'TIPO 81'),(83,'TIPO 82'),(84,'TIPO 83'),(85,'TIPO 84'),(86,'TIPO 85'),(87,'TIPO 86'),(88,'TIPO 87'),(89,'TIPO 88'),(90,'TIPO 89'),(91,'TIPO 90'),(92,'TIPO 91'),(93,'TIPO 92'),(94,'TIPO 93'),(95,'TIPO 94'),(96,'TIPO 95'),(97,'TIPO 96'),(98,'TIPO 97'),(99,'TIPO 98'),(100,'TIPO 99'),(101,'TIPO 100'),(102,'TIPO 101'),(103,'TIPO 102'),(104,'TIPO 103'),(105,'TIPO 104'),(106,'TIPO 105'),(107,'TIPO 106'),(108,'TIPO 107'),(109,'TIPO 108'),(110,'TIPO 109'),(111,'TIPO 110'),(112,'TIPO 111'),(113,'TIPO 112'),(114,'TIPO 113'),(115,'TIPO 114'),(116,'TIPO 115'),(117,'TIPO 116'),(118,'TIPO 117'),(119,'TIPO 118'),(120,'TIPO 119'),(121,'TIPO 120'),(122,'TIPO 121'),(123,'TIPO 122'),(124,'TIPO 123'),(125,'TIPO 124'),(126,'TIPO 125'),(127,'TIPO 126'),(128,'TIPO 127'),(129,'TIPO 128'),(130,'TIPO 129'),(131,'TIPO 130'),(132,'TIPO 131'),(133,'TIPO 132'),(134,'TIPO 133'),(135,'TIPO 134'),(136,'TIPO 135'),(137,'TIPO 136'),(138,'TIPO 137'),(139,'TIPO 138'),(140,'TIPO 139'),(141,'TIPO 140'),(142,'TIPO 141'),(143,'TIPO 142'),(144,'TIPO 143'),(145,'TIPO 144'),(146,'TIPO 145'),(147,'TIPO 146'),(148,'TIPO 147'),(149,'TIPO 148'),(150,'TIPO 149'),(151,'TIPO 150'),(152,'TIPO 151'),(153,'TIPO 152'),(154,'TIPO 153'),(155,'TIPO 154'),(156,'TIPO 155'),(157,'TIPO 156'),(158,'TIPO 157'),(159,'TIPO 158'),(160,'TIPO 159'),(161,'TIPO 160'),(162,'TIPO 161'),(163,'TIPO 162'),(164,'TIPO 163'),(165,'TIPO 164'),(166,'TIPO 165'),(167,'TIPO 166'),(168,'TIPO 167'),(169,'TIPO 168'),(170,'TIPO 169'),(171,'TIPO 170'),(172,'TIPO 171'),(173,'TIPO 172'),(174,'TIPO 173'),(175,'TIPO 174'),(176,'TIPO 175'),(177,'TIPO 176'),(178,'TIPO 177'),(179,'TIPO 178'),(180,'TIPO 179'),(181,'TIPO 180'),(182,'TIPO 181'),(183,'TIPO 182'),(184,'TIPO 183'),(185,'TIPO 184'),(186,'TIPO 185'),(187,'TIPO 186'),(188,'TIPO 187'),(189,'TIPO 188'),(190,'TIPO 189'),(191,'TIPO 190'),(192,'TIPO 191'),(193,'TIPO 192'),(194,'TIPO 193'),(195,'TIPO 194'),(196,'TIPO 195'),(197,'TIPO 196'),(198,'TIPO 197'),(199,'TIPO 198'),(200,'TIPO 199'),(201,'TIPO 200'),(202,'TIPO 201'),(203,'TIPO 202'),(204,'TIPO 203'),(205,'TIPO 204'),(206,'TIPO 205'),(207,'TIPO 206'),(208,'TIPO 207'),(209,'TIPO 208'),(210,'TIPO 209'),(211,'TIPO 210'),(212,'TIPO 211'),(213,'TIPO 212'),(214,'TIPO 213'),(215,'TIPO 214'),(216,'TIPO 215'),(217,'TIPO 216'),(218,'TIPO 217'),(219,'TIPO 218'),(220,'TIPO 219'),(221,'TIPO 220'),(222,'TIPO 221'),(223,'TIPO 222'),(224,'TIPO 223'),(225,'TIPO 224'),(226,'TIPO 225'),(227,'TIPO 226'),(228,'TIPO 227'),(229,'TIPO 228'),(230,'TIPO 229'),(231,'TIPO 230'),(232,'TIPO 231'),(233,'TIPO 232'),(234,'TIPO 233'),(235,'TIPO 234'),(236,'TIPO 235'),(237,'TIPO 236'),(238,'TIPO 237'),(239,'TIPO 238'),(240,'TIPO 239'),(241,'TIPO 240'),(242,'TIPO 241'),(243,'TIPO 242'),(244,'TIPO 243'),(245,'TIPO 244'),(246,'TIPO 245'),(247,'TIPO 246'),(248,'TIPO 247'),(249,'TIPO 248'),(250,'TIPO 249'),(251,'TIPO 250'),(252,'TIPO 251'),(253,'TIPO 252'),(254,'TIPO 253'),(255,'TIPO 254'),(256,'TIPO 255'),(257,'TIPO 256'),(258,'TIPO 257'),(259,'TIPO 258'),(260,'TIPO 259'),(261,'TIPO 260'),(262,'TIPO 261'),(263,'TIPO 262'),(264,'TIPO 263'),(265,'TIPO 264'),(266,'TIPO 265'),(267,'TIPO 266'),(268,'TIPO 267'),(269,'TIPO 268'),(270,'TIPO 269'),(271,'TIPO 270'),(272,'TIPO 271'),(273,'TIPO 272'),(274,'TIPO 273'),(275,'TIPO 274'),(276,'TIPO 275'),(277,'TIPO 276'),(278,'TIPO 277'),(279,'TIPO 278'),(280,'TIPO 279'),(281,'TIPO 280'),(282,'TIPO 281'),(283,'TIPO 282'),(284,'TIPO 283'),(285,'TIPO 284'),(286,'TIPO 285'),(287,'TIPO 286'),(288,'TIPO 287'),(289,'TIPO 288'),(290,'TIPO 289'),(291,'TIPO 290'),(292,'TIPO 291'),(293,'TIPO 292'),(294,'TIPO 293'),(295,'TIPO 294'),(296,'TIPO 295'),(297,'TIPO 296'),(298,'TIPO 297'),(299,'TIPO 298'),(300,'TIPO 299'),(301,'TIPO 300'),(302,'TIPO 301'),(303,'TIPO 302'),(304,'TIPO 303'),(305,'TIPO 304'),(306,'TIPO 305'),(307,'TIPO 306'),(308,'TIPO 307'),(309,'TIPO 308'),(310,'TIPO 309'),(311,'TIPO 310'),(312,'TIPO 311'),(313,'TIPO 312'),(314,'TIPO 313'),(315,'TIPO 314'),(316,'TIPO 315'),(317,'TIPO 316'),(318,'TIPO 317'),(319,'TIPO 318'),(320,'TIPO 319'),(321,'TIPO 320'),(322,'TIPO 321'),(323,'TIPO 322'),(324,'TIPO 323'),(325,'TIPO 324'),(326,'TIPO 325'),(327,'TIPO 326'),(328,'TIPO 327'),(329,'TIPO 328'),(330,'TIPO 329'),(331,'TIPO 330'),(332,'TIPO 331'),(333,'TIPO 332'),(334,'TIPO 333'),(335,'TIPO 334'),(336,'TIPO 335'),(337,'TIPO 336'),(338,'TIPO 337'),(339,'TIPO 338'),(340,'TIPO 339'),(341,'TIPO 340'),(342,'TIPO 341'),(343,'TIPO 342'),(344,'TIPO 343'),(345,'TIPO 344'),(346,'TIPO 345'),(347,'TIPO 346'),(348,'TIPO 347'),(349,'TIPO 348'),(350,'TIPO 349'),(351,'TIPO 350'),(352,'TIPO 351'),(353,'TIPO 352'),(354,'TIPO 353'),(355,'TIPO 354'),(356,'TIPO 355'),(357,'TIPO 356'),(358,'TIPO 357'),(359,'TIPO 358'),(360,'TIPO 359'),(361,'TIPO 360'),(362,'TIPO 361'),(363,'TIPO 362'),(364,'TIPO 363'),(365,'TIPO 364'),(366,'TIPO 365'),(367,'TIPO 366'),(368,'TIPO 367'),(369,'TIPO 368'),(370,'TIPO 369'),(371,'TIPO 370'),(372,'TIPO 371'),(373,'TIPO 372'),(374,'TIPO 373'),(375,'TIPO 374'),(376,'TIPO 375'),(377,'TIPO 376'),(378,'TIPO 377'),(379,'TIPO 378'),(380,'TIPO 379'),(381,'TIPO 380'),(382,'TIPO 381'),(383,'TIPO 382'),(384,'TIPO 383'),(385,'TIPO 384'),(386,'TIPO 385'),(387,'TIPO 386'),(388,'TIPO 387'),(389,'TIPO 388'),(390,'TIPO 389'),(391,'TIPO 390'),(392,'TIPO 391'),(393,'TIPO 392'),(394,'TIPO 393'),(395,'TIPO 394'),(396,'TIPO 395'),(397,'TIPO 396'),(398,'TIPO 397'),(399,'TIPO 398'),(400,'TIPO 399'),(401,'TIPO 400'),(402,'TIPO 401'),(403,'TIPO 402'),(404,'TIPO 403'),(405,'TIPO 404'),(406,'TIPO 405'),(407,'TIPO 406'),(408,'TIPO 407'),(409,'TIPO 408'),(410,'TIPO 409'),(411,'TIPO 410'),(412,'TIPO 411'),(413,'TIPO 412'),(414,'TIPO 413'),(415,'TIPO 414'),(416,'TIPO 415'),(417,'TIPO 416'),(418,'TIPO 417'),(419,'TIPO 418'),(420,'TIPO 419'),(421,'TIPO 420'),(422,'TIPO 421'),(423,'TIPO 422'),(424,'TIPO 423'),(425,'TIPO 424'),(426,'TIPO 425'),(427,'TIPO 426'),(428,'TIPO 427'),(429,'TIPO 428'),(430,'TIPO 429'),(431,'TIPO 430'),(432,'TIPO 431'),(433,'TIPO 432'),(434,'TIPO 433'),(435,'TIPO 434'),(436,'TIPO 435'),(437,'TIPO 436'),(438,'TIPO 437'),(439,'TIPO 438'),(440,'TIPO 439'),(441,'TIPO 440'),(442,'TIPO 441'),(443,'TIPO 442'),(444,'TIPO 443'),(445,'TIPO 444'),(446,'TIPO 445'),(447,'TIPO 446'),(448,'TIPO 447'),(449,'TIPO 448'),(450,'TIPO 449'),(451,'TIPO 450'),(452,'TIPO 451'),(453,'TIPO 452'),(454,'TIPO 453'),(455,'TIPO 454'),(456,'TIPO 455'),(457,'TIPO 456'),(458,'TIPO 457'),(459,'TIPO 458'),(460,'TIPO 459'),(461,'TIPO 460'),(462,'TIPO 461'),(463,'TIPO 462'),(464,'TIPO 463'),(465,'TIPO 464'),(466,'TIPO 465'),(467,'TIPO 466'),(468,'TIPO 467'),(469,'TIPO 468'),(470,'TIPO 469'),(471,'TIPO 470'),(472,'TIPO 471'),(473,'TIPO 472'),(474,'TIPO 473'),(475,'TIPO 474'),(476,'TIPO 475'),(477,'TIPO 476'),(478,'TIPO 477'),(479,'TIPO 478'),(480,'TIPO 479'),(481,'TIPO 480'),(482,'TIPO 481'),(483,'TIPO 482'),(484,'TIPO 483'),(485,'TIPO 484'),(486,'TIPO 485'),(487,'TIPO 486'),(488,'TIPO 487'),(489,'TIPO 488'),(490,'TIPO 489'),(491,'TIPO 490'),(492,'TIPO 491'),(493,'TIPO 492'),(494,'TIPO 493'),(495,'TIPO 494'),(496,'TIPO 495'),(497,'TIPO 496'),(498,'TIPO 497'),(499,'TIPO 498'),(500,'TIPO 499'),(501,'TIPO 500'),(502,'TIPO 501'),(503,'TIPO 502'),(504,'TIPO 503'),(505,'TIPO 504'),(506,'TIPO 505'),(507,'TIPO 506'),(508,'TIPO 507'),(509,'TIPO 508'),(510,'TIPO 509'),(511,'TIPO 510'),(512,'TIPO 511'),(513,'TIPO 512'),(514,'TIPO 513'),(515,'TIPO 514'),(516,'TIPO 515'),(517,'TIPO 516'),(518,'TIPO 517'),(519,'TIPO 518'),(520,'TIPO 519'),(521,'TIPO 520'),(522,'TIPO 521'),(523,'TIPO 522'),(524,'TIPO 523'),(525,'TIPO 524'),(526,'TIPO 525'),(527,'TIPO 526'),(528,'TIPO 527'),(529,'TIPO 528'),(530,'TIPO 529'),(531,'TIPO 530'),(532,'TIPO 531'),(533,'TIPO 532'),(534,'TIPO 533'),(535,'TIPO 534'),(536,'TIPO 535'),(537,'TIPO 536'),(538,'TIPO 537'),(539,'TIPO 538'),(540,'TIPO 539'),(541,'TIPO 540'),(542,'TIPO 541'),(543,'TIPO 542'),(544,'TIPO 543'),(545,'TIPO 544'),(546,'TIPO 545'),(547,'TIPO 546'),(548,'TIPO 547'),(549,'TIPO 548'),(550,'TIPO 549'),(551,'TIPO 550'),(552,'TIPO 551'),(553,'TIPO 552'),(554,'TIPO 553'),(555,'TIPO 554'),(556,'TIPO 555'),(557,'TIPO 556'),(558,'TIPO 557'),(559,'TIPO 558'),(560,'TIPO 559'),(561,'TIPO 560'),(562,'TIPO 561'),(563,'TIPO 562'),(564,'TIPO 563'),(565,'TIPO 564'),(566,'TIPO 565'),(567,'TIPO 566'),(568,'TIPO 567'),(569,'TIPO 568'),(570,'TIPO 569'),(571,'TIPO 570'),(572,'TIPO 571'),(573,'TIPO 572'),(574,'TIPO 573'),(575,'TIPO 574'),(576,'TIPO 575'),(577,'TIPO 576'),(578,'TIPO 577'),(579,'TIPO 578'),(580,'TIPO 579'),(581,'TIPO 580'),(582,'TIPO 581'),(583,'TIPO 582'),(584,'TIPO 583'),(585,'TIPO 584'),(586,'TIPO 585'),(587,'TIPO 586'),(588,'TIPO 587'),(589,'TIPO 588'),(590,'TIPO 589'),(591,'TIPO 590'),(592,'TIPO 591'),(593,'TIPO 592'),(594,'TIPO 593'),(595,'TIPO 594'),(596,'TIPO 595'),(597,'TIPO 596'),(598,'TIPO 597'),(599,'TIPO 598'),(600,'TIPO 599'),(601,'TIPO 600'),(602,'TIPO 601'),(603,'TIPO 602'),(604,'TIPO 603'),(605,'TIPO 604'),(606,'TIPO 605'),(607,'TIPO 606'),(608,'TIPO 607'),(609,'TIPO 608'),(610,'TIPO 609'),(611,'TIPO 610'),(612,'TIPO 611'),(613,'TIPO 612'),(614,'TIPO 613'),(615,'TIPO 614'),(616,'TIPO 615'),(617,'TIPO 616'),(618,'TIPO 617'),(619,'TIPO 618'),(620,'TIPO 619'),(621,'TIPO 620'),(622,'TIPO 621'),(623,'TIPO 622'),(624,'TIPO 623'),(625,'TIPO 624'),(626,'TIPO 625'),(627,'TIPO 626'),(628,'TIPO 627'),(629,'TIPO 628'),(630,'TIPO 629'),(631,'TIPO 630'),(632,'TIPO 631'),(633,'TIPO 632'),(634,'TIPO 633'),(635,'TIPO 634'),(636,'TIPO 635'),(637,'TIPO 636'),(638,'TIPO 637'),(639,'TIPO 638'),(640,'TIPO 639'),(641,'TIPO 640'),(642,'TIPO 641'),(643,'TIPO 642'),(644,'TIPO 643'),(645,'TIPO 644'),(646,'TIPO 645'),(647,'TIPO 646'),(648,'TIPO 647'),(649,'TIPO 648'),(650,'TIPO 649'),(651,'TIPO 650'),(652,'TIPO 651'),(653,'TIPO 652'),(654,'TIPO 653'),(655,'TIPO 654'),(656,'TIPO 655'),(657,'TIPO 656'),(658,'TIPO 657'),(659,'TIPO 658'),(660,'TIPO 659'),(661,'TIPO 660'),(662,'TIPO 661'),(663,'TIPO 662'),(664,'TIPO 663'),(665,'TIPO 664'),(666,'TIPO 665'),(667,'TIPO 666'),(668,'TIPO 667'),(669,'TIPO 668'),(670,'TIPO 669'),(671,'TIPO 670'),(672,'TIPO 671'),(673,'TIPO 672'),(674,'TIPO 673'),(675,'TIPO 674'),(676,'TIPO 675'),(677,'TIPO 676'),(678,'TIPO 677'),(679,'TIPO 678'),(680,'TIPO 679'),(681,'TIPO 680'),(682,'TIPO 681'),(683,'TIPO 682'),(684,'TIPO 683'),(685,'TIPO 684'),(686,'TIPO 685'),(687,'TIPO 686'),(688,'TIPO 687'),(689,'TIPO 688'),(690,'TIPO 689'),(691,'TIPO 690'),(692,'TIPO 691'),(693,'TIPO 692'),(694,'TIPO 693'),(695,'TIPO 694'),(696,'TIPO 695'),(697,'TIPO 696'),(698,'TIPO 697'),(699,'TIPO 698'),(700,'TIPO 699'),(701,'TIPO 700'),(702,'TIPO 701'),(703,'TIPO 702'),(704,'TIPO 703'),(705,'TIPO 704'),(706,'TIPO 705'),(707,'TIPO 706'),(708,'TIPO 707'),(709,'TIPO 708'),(710,'TIPO 709'),(711,'TIPO 710'),(712,'TIPO 711'),(713,'TIPO 712'),(714,'TIPO 713'),(715,'TIPO 714'),(716,'TIPO 715'),(717,'TIPO 716'),(718,'TIPO 717'),(719,'TIPO 718'),(720,'TIPO 719'),(721,'TIPO 720'),(722,'TIPO 721'),(723,'TIPO 722'),(724,'TIPO 723'),(725,'TIPO 724'),(726,'TIPO 725'),(727,'TIPO 726'),(728,'TIPO 727'),(729,'TIPO 728'),(730,'TIPO 729'),(731,'TIPO 730'),(732,'TIPO 731'),(733,'TIPO 732'),(734,'TIPO 733'),(735,'TIPO 734'),(736,'TIPO 735'),(737,'TIPO 736'),(738,'TIPO 737'),(739,'TIPO 738'),(740,'TIPO 739'),(741,'TIPO 740'),(742,'TIPO 741'),(743,'TIPO 742'),(744,'TIPO 743'),(745,'TIPO 744'),(746,'TIPO 745'),(747,'TIPO 746'),(748,'TIPO 747'),(749,'TIPO 748'),(750,'TIPO 749'),(751,'TIPO 750'),(752,'TIPO 751'),(753,'TIPO 752'),(754,'TIPO 753'),(755,'TIPO 754'),(756,'TIPO 755'),(757,'TIPO 756'),(758,'TIPO 757'),(759,'TIPO 758'),(760,'TIPO 759'),(761,'TIPO 760'),(762,'TIPO 761'),(763,'TIPO 762'),(764,'TIPO 763'),(765,'TIPO 764'),(766,'TIPO 765'),(767,'TIPO 766'),(768,'TIPO 767'),(769,'TIPO 768'),(770,'TIPO 769'),(771,'TIPO 770'),(772,'TIPO 771'),(773,'TIPO 772'),(774,'TIPO 773'),(775,'TIPO 774'),(776,'TIPO 775'),(777,'TIPO 776'),(778,'TIPO 777'),(779,'TIPO 778'),(780,'TIPO 779'),(781,'TIPO 780'),(782,'TIPO 781'),(783,'TIPO 782'),(784,'TIPO 783'),(785,'TIPO 784'),(786,'TIPO 785'),(787,'TIPO 786'),(788,'TIPO 787'),(789,'TIPO 788'),(790,'TIPO 789'),(791,'TIPO 790'),(792,'TIPO 791'),(793,'TIPO 792'),(794,'TIPO 793'),(795,'TIPO 794'),(796,'TIPO 795'),(797,'TIPO 796'),(798,'TIPO 797'),(799,'TIPO 798'),(800,'TIPO 799'),(801,'TIPO 800'),(802,'TIPO 801'),(803,'TIPO 802'),(804,'TIPO 803'),(805,'TIPO 804'),(806,'TIPO 805'),(807,'TIPO 806'),(808,'TIPO 807'),(809,'TIPO 808'),(810,'TIPO 809'),(811,'TIPO 810'),(812,'TIPO 811'),(813,'TIPO 812'),(814,'TIPO 813'),(815,'TIPO 814'),(816,'TIPO 815'),(817,'TIPO 816'),(818,'TIPO 817'),(819,'TIPO 818'),(820,'TIPO 819'),(821,'TIPO 820'),(822,'TIPO 821'),(823,'TIPO 822'),(824,'TIPO 823'),(825,'TIPO 824'),(826,'TIPO 825'),(827,'TIPO 826'),(828,'TIPO 827'),(829,'TIPO 828'),(830,'TIPO 829'),(831,'TIPO 830'),(832,'TIPO 831'),(833,'TIPO 832'),(834,'TIPO 833'),(835,'TIPO 834'),(836,'TIPO 835'),(837,'TIPO 836'),(838,'TIPO 837'),(839,'TIPO 838'),(840,'TIPO 839'),(841,'TIPO 840'),(842,'TIPO 841'),(843,'TIPO 842'),(844,'TIPO 843'),(845,'TIPO 844'),(846,'TIPO 845'),(847,'TIPO 846'),(848,'TIPO 847'),(849,'TIPO 848'),(850,'TIPO 849'),(851,'TIPO 850'),(852,'TIPO 851'),(853,'TIPO 852'),(854,'TIPO 853'),(855,'TIPO 854'),(856,'TIPO 855'),(857,'TIPO 856'),(858,'TIPO 857'),(859,'TIPO 858'),(860,'TIPO 859'),(861,'TIPO 860'),(862,'TIPO 861'),(863,'TIPO 862'),(864,'TIPO 863'),(865,'TIPO 864'),(866,'TIPO 865'),(867,'TIPO 866'),(868,'TIPO 867'),(869,'TIPO 868'),(870,'TIPO 869'),(871,'TIPO 870'),(872,'TIPO 871'),(873,'TIPO 872'),(874,'TIPO 873'),(875,'TIPO 874'),(876,'TIPO 875'),(877,'TIPO 876'),(878,'TIPO 877'),(879,'TIPO 878'),(880,'TIPO 879'),(881,'TIPO 880'),(882,'TIPO 881'),(883,'TIPO 882'),(884,'TIPO 883'),(885,'TIPO 884'),(886,'TIPO 885'),(887,'TIPO 886'),(888,'TIPO 887'),(889,'TIPO 888'),(890,'TIPO 889'),(891,'TIPO 890'),(892,'TIPO 891'),(893,'TIPO 892'),(894,'TIPO 893'),(895,'TIPO 894'),(896,'TIPO 895'),(897,'TIPO 896'),(898,'TIPO 897'),(899,'TIPO 898'),(900,'TIPO 899'),(901,'TIPO 900'),(902,'TIPO 901'),(903,'TIPO 902'),(904,'TIPO 903'),(905,'TIPO 904'),(906,'TIPO 905'),(907,'TIPO 906'),(908,'TIPO 907'),(909,'TIPO 908'),(910,'TIPO 909'),(911,'TIPO 910'),(912,'TIPO 911'),(913,'TIPO 912'),(914,'TIPO 913'),(915,'TIPO 914'),(916,'TIPO 915'),(917,'TIPO 916'),(918,'TIPO 917'),(919,'TIPO 918'),(920,'TIPO 919'),(921,'TIPO 920'),(922,'TIPO 921'),(923,'TIPO 922'),(924,'TIPO 923'),(925,'TIPO 924'),(926,'TIPO 925'),(927,'TIPO 926'),(928,'TIPO 927'),(929,'TIPO 928'),(930,'TIPO 929'),(931,'TIPO 930'),(932,'TIPO 931'),(933,'TIPO 932'),(934,'TIPO 933'),(935,'TIPO 934'),(936,'TIPO 935'),(937,'TIPO 936'),(938,'TIPO 937'),(939,'TIPO 938'),(940,'TIPO 939'),(941,'TIPO 940'),(942,'TIPO 941'),(943,'TIPO 942'),(944,'TIPO 943'),(945,'TIPO 944'),(946,'TIPO 945'),(947,'TIPO 946'),(948,'TIPO 947'),(949,'TIPO 948'),(950,'TIPO 949'),(951,'TIPO 950'),(952,'TIPO 951'),(953,'TIPO 952'),(954,'TIPO 953'),(955,'TIPO 954'),(956,'TIPO 955'),(957,'TIPO 956'),(958,'TIPO 957'),(959,'TIPO 958'),(960,'TIPO 959'),(961,'TIPO 960'),(962,'TIPO 961'),(963,'TIPO 962'),(964,'TIPO 963'),(965,'TIPO 964'),(966,'TIPO 965'),(967,'TIPO 966'),(968,'TIPO 967'),(969,'TIPO 968'),(970,'TIPO 969'),(971,'TIPO 970'),(972,'TIPO 971'),(973,'TIPO 972'),(974,'TIPO 973'),(975,'TIPO 974'),(976,'TIPO 975'),(977,'TIPO 976'),(978,'TIPO 977'),(979,'TIPO 978'),(980,'TIPO 979'),(981,'TIPO 980'),(982,'TIPO 981'),(983,'TIPO 982'),(984,'TIPO 983'),(985,'TIPO 984'),(986,'TIPO 985'),(987,'TIPO 986'),(988,'TIPO 987'),(989,'TIPO 988'),(990,'TIPO 989'),(991,'TIPO 990'),(992,'TIPO 991'),(993,'TIPO 992'),(994,'TIPO 993'),(995,'TIPO 994'),(996,'TIPO 995'),(997,'TIPO 996'),(998,'TIPO 997'),(999,'TIPO 998'),(1000,'TIPO 999'),(1001,'TIPO 1000'),(1002,'TIPO 1001'),(1003,'TIPO 1002'),(1004,'TIPO 1003'),(1005,'TIPO 1004'),(1006,'TIPO 1005'),(1007,'TIPO 1006'),(1008,'TIPO 1007'),(1009,'TIPO 1008'),(1010,'TIPO 1009'),(1011,'TIPO 1010'),(1012,'TIPO 1011'),(1013,'TIPO 1012'),(1014,'TIPO 1013'),(1015,'TIPO 1014'),(1016,'TIPO 1015'),(1017,'TIPO 1016'),(1018,'TIPO 1017'),(1019,'TIPO 1018'),(1020,'TIPO 1019'),(1021,'TIPO 1020'),(1022,'TIPO 1021'),(1023,'TIPO 1022'),(1024,'TIPO 1023'),(1025,'TIPO 1024'),(1026,'TIPO 1025'),(1027,'TIPO 1026'),(1028,'TIPO 1027'),(1029,'TIPO 1028'),(1030,'TIPO 1029'),(1031,'TIPO 1030'),(1032,'TIPO 1031'),(1033,'TIPO 1032'),(1034,'TIPO 1033'),(1035,'TIPO 1034'),(1036,'TIPO 1035'),(1037,'TIPO 1036'),(1038,'TIPO 1037'),(1039,'TIPO 1038'),(1040,'TIPO 1039'),(1041,'TIPO 1040'),(1042,'TIPO 1041'),(1043,'TIPO 1042'),(1044,'TIPO 1043'),(1045,'TIPO 1044'),(1046,'TIPO 1045'),(1047,'TIPO 1046'),(1048,'TIPO 1047'),(1049,'TIPO 1048'),(1050,'TIPO 1049'),(1051,'TIPO 1050'),(1052,'TIPO 1051'),(1053,'TIPO 1052'),(1054,'TIPO 1053'),(1055,'TIPO 1054'),(1056,'TIPO 1055'),(1057,'TIPO 1056'),(1058,'TIPO 1057'),(1059,'TIPO 1058'),(1060,'TIPO 1059'),(1061,'TIPO 1060'),(1062,'TIPO 1061'),(1063,'TIPO 1062'),(1064,'TIPO 1063'),(1065,'TIPO 1064'),(1066,'TIPO 1065'),(1067,'TIPO 1066'),(1068,'TIPO 1067'),(1069,'TIPO 1068'),(1070,'TIPO 1069'),(1071,'TIPO 1070'),(1072,'TIPO 1071'),(1073,'TIPO 1072'),(1074,'TIPO 1073'),(1075,'TIPO 1074'),(1076,'TIPO 1075'),(1077,'TIPO 1076'),(1078,'TIPO 1077'),(1079,'TIPO 1078'),(1080,'TIPO 1079'),(1081,'TIPO 1080'),(1082,'TIPO 1081'),(1083,'TIPO 1082'),(1084,'TIPO 1083'),(1085,'TIPO 1084'),(1086,'TIPO 1085'),(1087,'TIPO 1086'),(1088,'TIPO 1087'),(1089,'TIPO 1088'),(1090,'TIPO 1089'),(1091,'TIPO 1090'),(1092,'TIPO 1091'),(1093,'TIPO 1092'),(1094,'TIPO 1093'),(1095,'TIPO 1094'),(1096,'TIPO 1095'),(1097,'TIPO 1096'),(1098,'TIPO 1097'),(1099,'TIPO 1098'),(1100,'TIPO 1099'),(1101,'TIPO 1100'),(1102,'TIPO 1101'),(1103,'TIPO 1102'),(1104,'TIPO 1103'),(1105,'TIPO 1104'),(1106,'TIPO 1105'),(1107,'TIPO 1106'),(1108,'TIPO 1107'),(1109,'TIPO 1108'),(1110,'TIPO 1109'),(1111,'TIPO 1110'),(1112,'TIPO 1111'),(1113,'TIPO 1112'),(1114,'TIPO 1113'),(1115,'TIPO 1114'),(1116,'TIPO 1115'),(1117,'TIPO 1116'),(1118,'TIPO 1117'),(1119,'TIPO 1118'),(1120,'TIPO 1119'),(1121,'TIPO 1120'),(1122,'TIPO 1121'),(1123,'TIPO 1122'),(1124,'TIPO 1123'),(1125,'TIPO 1124'),(1126,'TIPO 1125'),(1127,'TIPO 1126'),(1128,'TIPO 1127'),(1129,'TIPO 1128'),(1130,'TIPO 1129'),(1131,'TIPO 1130'),(1132,'TIPO 1131'),(1133,'TIPO 1132'),(1134,'TIPO 1133'),(1135,'TIPO 1134'),(1136,'TIPO 1135'),(1137,'TIPO 1136'),(1138,'TIPO 1137'),(1139,'TIPO 1138'),(1140,'TIPO 1139'),(1141,'TIPO 1140'),(1142,'TIPO 1141'),(1143,'TIPO 1142'),(1144,'TIPO 1143'),(1145,'TIPO 1144'),(1146,'TIPO 1145'),(1147,'TIPO 1146'),(1148,'TIPO 1147'),(1149,'TIPO 1148'),(1150,'TIPO 1149'),(1151,'TIPO 1150'),(1152,'TIPO 1151'),(1153,'TIPO 1152'),(1154,'TIPO 1153'),(1155,'TIPO 1154'),(1156,'TIPO 1155'),(1157,'TIPO 1156'),(1158,'TIPO 1157'),(1159,'TIPO 1158'),(1160,'TIPO 1159'),(1161,'TIPO 1160'),(1162,'TIPO 1161'),(1163,'TIPO 1162'),(1164,'TIPO 1163'),(1165,'TIPO 1164'),(1166,'TIPO 1165'),(1167,'TIPO 1166'),(1168,'TIPO 1167'),(1169,'TIPO 1168'),(1170,'TIPO 1169'),(1171,'TIPO 1170'),(1172,'TIPO 1171'),(1173,'TIPO 1172'),(1174,'TIPO 1173'),(1175,'TIPO 1174'),(1176,'TIPO 1175'),(1177,'TIPO 1176'),(1178,'TIPO 1177'),(1179,'TIPO 1178'),(1180,'TIPO 1179'),(1181,'TIPO 1180'),(1182,'TIPO 1181'),(1183,'TIPO 1182'),(1184,'TIPO 1183'),(1185,'TIPO 1184'),(1186,'TIPO 1185'),(1187,'TIPO 1186'),(1188,'TIPO 1187'),(1189,'TIPO 1188'),(1190,'TIPO 1189'),(1191,'TIPO 1190'),(1192,'TIPO 1191'),(1193,'TIPO 1192'),(1194,'TIPO 1193'),(1195,'TIPO 1194'),(1196,'TIPO 1195'),(1197,'TIPO 1196'),(1198,'TIPO 1197'),(1199,'TIPO 1198'),(1200,'TIPO 1199'),(1201,'TIPO 1200'),(1202,'TIPO 1201'),(1203,'TIPO 1202'),(1204,'TIPO 1203'),(1205,'TIPO 1204'),(1206,'TIPO 1205'),(1207,'TIPO 1206'),(1208,'TIPO 1207'),(1209,'TIPO 1208'),(1210,'TIPO 1209'),(1211,'TIPO 1210'),(1212,'TIPO 1211'),(1213,'TIPO 1212'),(1214,'TIPO 1213'),(1215,'TIPO 1214'),(1216,'TIPO 1215'),(1217,'TIPO 1216'),(1218,'TIPO 1217'),(1219,'TIPO 1218'),(1220,'TIPO 1219'),(1221,'TIPO 1220'),(1222,'TIPO 1221'),(1223,'TIPO 1222'),(1224,'TIPO 1223'),(1225,'TIPO 1224'),(1226,'TIPO 1225'),(1227,'TIPO 1226'),(1228,'TIPO 1227'),(1229,'TIPO 1228'),(1230,'TIPO 1229'),(1231,'TIPO 1230'),(1232,'TIPO 1231'),(1233,'TIPO 1232'),(1234,'TIPO 1233'),(1235,'TIPO 1234'),(1236,'TIPO 1235'),(1237,'TIPO 1236'),(1238,'TIPO 1237'),(1239,'TIPO 1238'),(1240,'TIPO 1239'),(1241,'TIPO 1240'),(1242,'TIPO 1241'),(1243,'TIPO 1242'),(1244,'TIPO 1243'),(1245,'TIPO 1244'),(1246,'TIPO 1245'),(1247,'TIPO 1246'),(1248,'TIPO 1247'),(1249,'TIPO 1248'),(1250,'TIPO 1249'),(1251,'TIPO 1250'),(1252,'TIPO 1251'),(1253,'TIPO 1252'),(1254,'TIPO 1253'),(1255,'TIPO 1254'),(1256,'TIPO 1255'),(1257,'TIPO 1256'),(1258,'TIPO 1257'),(1259,'TIPO 1258'),(1260,'TIPO 1259'),(1261,'TIPO 1260'),(1262,'TIPO 1261'),(1263,'TIPO 1262'),(1264,'TIPO 1263'),(1265,'TIPO 1264'),(1266,'TIPO 1265'),(1267,'TIPO 1266'),(1268,'TIPO 1267'),(1269,'TIPO 1268'),(1270,'TIPO 1269'),(1271,'TIPO 1270'),(1272,'TIPO 1271'),(1273,'TIPO 1272'),(1274,'TIPO 1273'),(1275,'TIPO 1274'),(1276,'TIPO 1275'),(1277,'TIPO 1276'),(1278,'TIPO 1277'),(1279,'TIPO 1278'),(1280,'TIPO 1279'),(1281,'TIPO 1280'),(1282,'TIPO 1281'),(1283,'TIPO 1282'),(1284,'TIPO 1283'),(1285,'TIPO 1284'),(1286,'TIPO 1285'),(1287,'TIPO 1286'),(1288,'TIPO 1287'),(1289,'TIPO 1288'),(1290,'TIPO 1289'),(1291,'TIPO 1290'),(1292,'TIPO 1291'),(1293,'TIPO 1292'),(1294,'TIPO 1293'),(1295,'TIPO 1294'),(1296,'TIPO 1295'),(1297,'TIPO 1296'),(1298,'TIPO 1297'),(1299,'TIPO 1298'),(1300,'TIPO 1299'),(1301,'TIPO 1300'),(1302,'TIPO 1301'),(1303,'TIPO 1302'),(1304,'TIPO 1303'),(1305,'TIPO 1304'),(1306,'TIPO 1305'),(1307,'TIPO 1306'),(1308,'TIPO 1307'),(1309,'TIPO 1308'),(1310,'TIPO 1309'),(1311,'TIPO 1310'),(1312,'TIPO 1311'),(1313,'TIPO 1312'),(1314,'TIPO 1313'),(1315,'TIPO 1314'),(1316,'TIPO 1315'),(1317,'TIPO 1316'),(1318,'TIPO 1317'),(1319,'TIPO 1318'),(1320,'TIPO 1319'),(1321,'TIPO 1320'),(1322,'TIPO 1321'),(1323,'TIPO 1322'),(1324,'TIPO 1323'),(1325,'TIPO 1324'),(1326,'TIPO 1325'),(1327,'TIPO 1326'),(1328,'TIPO 1327'),(1329,'TIPO 1328'),(1330,'TIPO 1329'),(1331,'TIPO 1330'),(1332,'TIPO 1331'),(1333,'TIPO 1332'),(1334,'TIPO 1333'),(1335,'TIPO 1334'),(1336,'TIPO 1335'),(1337,'TIPO 1336'),(1338,'TIPO 1337'),(1339,'TIPO 1338'),(1340,'TIPO 1339'),(1341,'TIPO 1340'),(1342,'TIPO 1341'),(1343,'TIPO 1342'),(1344,'TIPO 1343'),(1345,'TIPO 1344'),(1346,'TIPO 1345'),(1347,'TIPO 1346'),(1348,'TIPO 1347'),(1349,'TIPO 1348'),(1350,'TIPO 1349'),(1351,'TIPO 1350'),(1352,'TIPO 1351'),(1353,'TIPO 1352'),(1354,'TIPO 1353'),(1355,'TIPO 1354'),(1356,'TIPO 1355'),(1357,'TIPO 1356'),(1358,'TIPO 1357'),(1359,'TIPO 1358'),(1360,'TIPO 1359'),(1361,'TIPO 1360'),(1362,'TIPO 1361'),(1363,'TIPO 1362'),(1364,'TIPO 1363'),(1365,'TIPO 1364'),(1366,'TIPO 1365'),(1367,'TIPO 1366'),(1368,'TIPO 1367'),(1369,'TIPO 1368'),(1370,'TIPO 1369'),(1371,'TIPO 1370'),(1372,'TIPO 1371'),(1373,'TIPO 1372'),(1374,'TIPO 1373'),(1375,'TIPO 1374'),(1376,'TIPO 1375'),(1377,'TIPO 1376'),(1378,'TIPO 1377'),(1379,'TIPO 1378'),(1380,'TIPO 1379'),(1381,'TIPO 1380'),(1382,'TIPO 1381'),(1383,'TIPO 1382'),(1384,'TIPO 1383'),(1385,'TIPO 1384'),(1386,'TIPO 1385'),(1387,'TIPO 1386'),(1388,'TIPO 1387'),(1389,'TIPO 1388'),(1390,'TIPO 1389'),(1391,'TIPO 1390'),(1392,'TIPO 1391'),(1393,'TIPO 1392'),(1394,'TIPO 1393'),(1395,'TIPO 1394'),(1396,'TIPO 1395'),(1397,'TIPO 1396'),(1398,'TIPO 1397'),(1399,'TIPO 1398'),(1400,'TIPO 1399'),(1401,'TIPO 1400'),(1402,'TIPO 1401'),(1403,'TIPO 1402'),(1404,'TIPO 1403'),(1405,'TIPO 1404'),(1406,'TIPO 1405'),(1407,'TIPO 1406'),(1408,'TIPO 1407'),(1409,'TIPO 1408'),(1410,'TIPO 1409'),(1411,'TIPO 1410'),(1412,'TIPO 1411'),(1413,'TIPO 1412'),(1414,'TIPO 1413'),(1415,'TIPO 1414'),(1416,'TIPO 1415'),(1417,'TIPO 1416'),(1418,'TIPO 1417'),(1419,'TIPO 1418'),(1420,'TIPO 1419'),(1421,'TIPO 1420'),(1422,'TIPO 1421'),(1423,'TIPO 1422'),(1424,'TIPO 1423'),(1425,'TIPO 1424'),(1426,'TIPO 1425'),(1427,'TIPO 1426'),(1428,'TIPO 1427'),(1429,'TIPO 1428'),(1430,'TIPO 1429'),(1431,'TIPO 1430'),(1432,'TIPO 1431'),(1433,'TIPO 1432'),(1434,'TIPO 1433'),(1435,'TIPO 1434'),(1436,'TIPO 1435'),(1437,'TIPO 1436'),(1438,'TIPO 1437'),(1439,'TIPO 1438'),(1440,'TIPO 1439'),(1441,'TIPO 1440'),(1442,'TIPO 1441'),(1443,'TIPO 1442'),(1444,'TIPO 1443'),(1445,'TIPO 1444'),(1446,'TIPO 1445'),(1447,'TIPO 1446'),(1448,'TIPO 1447'),(1449,'TIPO 1448'),(1450,'TIPO 1449'),(1451,'TIPO 1450'),(1452,'TIPO 1451'),(1453,'TIPO 1452'),(1454,'TIPO 1453'),(1455,'TIPO 1454'),(1456,'TIPO 1455'),(1457,'TIPO 1456'),(1458,'TIPO 1457'),(1459,'TIPO 1458'),(1460,'TIPO 1459'),(1461,'TIPO 1460'),(1462,'TIPO 1461'),(1463,'TIPO 1462'),(1464,'TIPO 1463'),(1465,'TIPO 1464'),(1466,'TIPO 1465'),(1467,'TIPO 1466'),(1468,'TIPO 1467'),(1469,'TIPO 1468'),(1470,'TIPO 1469'),(1471,'TIPO 1470'),(1472,'TIPO 1471'),(1473,'TIPO 1472'),(1474,'TIPO 1473'),(1475,'TIPO 1474'),(1476,'TIPO 1475'),(1477,'TIPO 1476'),(1478,'TIPO 1477'),(1479,'TIPO 1478'),(1480,'TIPO 1479'),(1481,'TIPO 1480'),(1482,'TIPO 1481'),(1483,'TIPO 1482'),(1484,'TIPO 1483'),(1485,'TIPO 1484'),(1486,'TIPO 1485'),(1487,'TIPO 1486'),(1488,'TIPO 1487'),(1489,'TIPO 1488'),(1490,'TIPO 1489'),(1491,'TIPO 1490'),(1492,'TIPO 1491'),(1493,'TIPO 1492'),(1494,'TIPO 1493'),(1495,'TIPO 1494'),(1496,'TIPO 1495'),(1497,'TIPO 1496'),(1498,'TIPO 1497'),(1499,'TIPO 1498'),(1500,'TIPO 1499'),(1501,'TIPO 1500'),(1502,'TIPO 1501'),(1503,'TIPO 1502'),(1504,'TIPO 1503'),(1505,'TIPO 1504'),(1506,'TIPO 1505'),(1507,'TIPO 1506'),(1508,'TIPO 1507'),(1509,'TIPO 1508'),(1510,'TIPO 1509'),(1511,'TIPO 1510'),(1512,'TIPO 1511'),(1513,'TIPO 1512'),(1514,'TIPO 1513'),(1515,'TIPO 1514'),(1516,'TIPO 1515'),(1517,'TIPO 1516'),(1518,'TIPO 1517'),(1519,'TIPO 1518'),(1520,'TIPO 1519'),(1521,'TIPO 1520'),(1522,'TIPO 1521'),(1523,'TIPO 1522'),(1524,'TIPO 1523'),(1525,'TIPO 1524'),(1526,'TIPO 1525'),(1527,'TIPO 1526'),(1528,'TIPO 1527'),(1529,'TIPO 1528'),(1530,'TIPO 1529'),(1531,'TIPO 1530'),(1532,'TIPO 1531'),(1533,'TIPO 1532'),(1534,'TIPO 1533'),(1535,'TIPO 1534'),(1536,'TIPO 1535'),(1537,'TIPO 1536'),(1538,'TIPO 1537'),(1539,'TIPO 1538'),(1540,'TIPO 1539'),(1541,'TIPO 1540'),(1542,'TIPO 1541'),(1543,'TIPO 1542'),(1544,'TIPO 1543'),(1545,'TIPO 1544'),(1546,'TIPO 1545'),(1547,'TIPO 1546'),(1548,'TIPO 1547'),(1549,'TIPO 1548'),(1550,'TIPO 1549'),(1551,'TIPO 1550'),(1552,'TIPO 1551'),(1553,'TIPO 1552'),(1554,'TIPO 1553'),(1555,'TIPO 1554'),(1556,'TIPO 1555'),(1557,'TIPO 1556'),(1558,'TIPO 1557'),(1559,'TIPO 1558'),(1560,'TIPO 1559'),(1561,'TIPO 1560'),(1562,'TIPO 1561'),(1563,'TIPO 1562'),(1564,'TIPO 1563'),(1565,'TIPO 1564'),(1566,'TIPO 1565'),(1567,'TIPO 1566'),(1568,'TIPO 1567'),(1569,'TIPO 1568'),(1570,'TIPO 1569'),(1571,'TIPO 1570'),(1572,'TIPO 1571'),(1573,'TIPO 1572'),(1574,'TIPO 1573'),(1575,'TIPO 1574'),(1576,'TIPO 1575'),(1577,'TIPO 1576'),(1578,'TIPO 1577'),(1579,'TIPO 1578'),(1580,'TIPO 1579'),(1581,'TIPO 1580'),(1582,'TIPO 1581'),(1583,'TIPO 1582'),(1584,'TIPO 1583'),(1585,'TIPO 1584'),(1586,'TIPO 1585'),(1587,'TIPO 1586'),(1588,'TIPO 1587'),(1589,'TIPO 1588'),(1590,'TIPO 1589'),(1591,'TIPO 1590'),(1592,'TIPO 1591'),(1593,'TIPO 1592'),(1594,'TIPO 1593'),(1595,'TIPO 1594'),(1596,'TIPO 1595'),(1597,'TIPO 1596'),(1598,'TIPO 1597'),(1599,'TIPO 1598'),(1600,'TIPO 1599'),(1601,'TIPO 1600'),(1602,'TIPO 1601'),(1603,'TIPO 1602'),(1604,'TIPO 1603'),(1605,'TIPO 1604'),(1606,'TIPO 1605'),(1607,'TIPO 1606'),(1608,'TIPO 1607'),(1609,'TIPO 1608'),(1610,'TIPO 1609'),(1611,'TIPO 1610'),(1612,'TIPO 1611'),(1613,'TIPO 1612'),(1614,'TIPO 1613'),(1615,'TIPO 1614'),(1616,'TIPO 1615'),(1617,'TIPO 1616'),(1618,'TIPO 1617'),(1619,'TIPO 1618'),(1620,'TIPO 1619'),(1621,'TIPO 1620'),(1622,'TIPO 1621'),(1623,'TIPO 1622'),(1624,'TIPO 1623'),(1625,'TIPO 1624'),(1626,'TIPO 1625'),(1627,'TIPO 1626'),(1628,'TIPO 1627'),(1629,'TIPO 1628'),(1630,'TIPO 1629'),(1631,'TIPO 1630'),(1632,'TIPO 1631'),(1633,'TIPO 1632'),(1634,'TIPO 1633'),(1635,'TIPO 1634'),(1636,'TIPO 1635'),(1637,'TIPO 1636'),(1638,'TIPO 1637'),(1639,'TIPO 1638'),(1640,'TIPO 1639'),(1641,'TIPO 1640'),(1642,'TIPO 1641'),(1643,'TIPO 1642'),(1644,'TIPO 1643'),(1645,'TIPO 1644'),(1646,'TIPO 1645'),(1647,'TIPO 1646'),(1648,'TIPO 1647'),(1649,'TIPO 1648'),(1650,'TIPO 1649'),(1651,'TIPO 1650'),(1652,'TIPO 1651'),(1653,'TIPO 1652'),(1654,'TIPO 1653'),(1655,'TIPO 1654'),(1656,'TIPO 1655'),(1657,'TIPO 1656'),(1658,'TIPO 1657'),(1659,'TIPO 1658'),(1660,'TIPO 1659'),(1661,'TIPO 1660'),(1662,'TIPO 1661'),(1663,'TIPO 1662'),(1664,'TIPO 1663'),(1665,'TIPO 1664'),(1666,'TIPO 1665'),(1667,'TIPO 1666'),(1668,'TIPO 1667'),(1669,'TIPO 1668'),(1670,'TIPO 1669'),(1671,'TIPO 1670'),(1672,'TIPO 1671'),(1673,'TIPO 1672'),(1674,'TIPO 1673'),(1675,'TIPO 1674'),(1676,'TIPO 1675'),(1677,'TIPO 1676'),(1678,'TIPO 1677'),(1679,'TIPO 1678'),(1680,'TIPO 1679'),(1681,'TIPO 1680'),(1682,'TIPO 1681'),(1683,'TIPO 1682'),(1684,'TIPO 1683'),(1685,'TIPO 1684'),(1686,'TIPO 1685'),(1687,'TIPO 1686'),(1688,'TIPO 1687'),(1689,'TIPO 1688'),(1690,'TIPO 1689'),(1691,'TIPO 1690'),(1692,'TIPO 1691'),(1693,'TIPO 1692'),(1694,'TIPO 1693'),(1695,'TIPO 1694'),(1696,'TIPO 1695'),(1697,'TIPO 1696'),(1698,'TIPO 1697'),(1699,'TIPO 1698'),(1700,'TIPO 1699'),(1701,'TIPO 1700'),(1702,'TIPO 1701'),(1703,'TIPO 1702'),(1704,'TIPO 1703'),(1705,'TIPO 1704'),(1706,'TIPO 1705'),(1707,'TIPO 1706'),(1708,'TIPO 1707'),(1709,'TIPO 1708'),(1710,'TIPO 1709'),(1711,'TIPO 1710'),(1712,'TIPO 1711'),(1713,'TIPO 1712'),(1714,'TIPO 1713'),(1715,'TIPO 1714'),(1716,'TIPO 1715'),(1717,'TIPO 1716'),(1718,'TIPO 1717'),(1719,'TIPO 1718'),(1720,'TIPO 1719'),(1721,'TIPO 1720'),(1722,'TIPO 1721'),(1723,'TIPO 1722'),(1724,'TIPO 1723'),(1725,'TIPO 1724'),(1726,'TIPO 1725'),(1727,'TIPO 1726'),(1728,'TIPO 1727'),(1729,'TIPO 1728'),(1730,'TIPO 1729'),(1731,'TIPO 1730'),(1732,'TIPO 1731'),(1733,'TIPO 1732'),(1734,'TIPO 1733'),(1735,'TIPO 1734'),(1736,'TIPO 1735'),(1737,'TIPO 1736'),(1738,'TIPO 1737'),(1739,'TIPO 1738'),(1740,'TIPO 1739'),(1741,'TIPO 1740'),(1742,'TIPO 1741'),(1743,'TIPO 1742'),(1744,'TIPO 1743'),(1745,'TIPO 1744'),(1746,'TIPO 1745'),(1747,'TIPO 1746'),(1748,'TIPO 1747'),(1749,'TIPO 1748'),(1750,'TIPO 1749'),(1751,'TIPO 1750'),(1752,'TIPO 1751'),(1753,'TIPO 1752'),(1754,'TIPO 1753'),(1755,'TIPO 1754'),(1756,'TIPO 1755'),(1757,'TIPO 1756'),(1758,'TIPO 1757'),(1759,'TIPO 1758'),(1760,'TIPO 1759'),(1761,'TIPO 1760'),(1762,'TIPO 1761'),(1763,'TIPO 1762'),(1764,'TIPO 1763'),(1765,'TIPO 1764'),(1766,'TIPO 1765'),(1767,'TIPO 1766'),(1768,'TIPO 1767'),(1769,'TIPO 1768'),(1770,'TIPO 1769'),(1771,'TIPO 1770'),(1772,'TIPO 1771'),(1773,'TIPO 1772'),(1774,'TIPO 1773'),(1775,'TIPO 1774'),(1776,'TIPO 1775'),(1777,'TIPO 1776'),(1778,'TIPO 1777'),(1779,'TIPO 1778'),(1780,'TIPO 1779'),(1781,'TIPO 1780'),(1782,'TIPO 1781'),(1783,'TIPO 1782'),(1784,'TIPO 1783'),(1785,'TIPO 1784'),(1786,'TIPO 1785'),(1787,'TIPO 1786'),(1788,'TIPO 1787'),(1789,'TIPO 1788'),(1790,'TIPO 1789'),(1791,'TIPO 1790'),(1792,'TIPO 1791'),(1793,'TIPO 1792'),(1794,'TIPO 1793'),(1795,'TIPO 1794'),(1796,'TIPO 1795'),(1797,'TIPO 1796'),(1798,'TIPO 1797'),(1799,'TIPO 1798'),(1800,'TIPO 1799'),(1801,'TIPO 1800'),(1802,'TIPO 1801'),(1803,'TIPO 1802'),(1804,'TIPO 1803'),(1805,'TIPO 1804'),(1806,'TIPO 1805'),(1807,'TIPO 1806'),(1808,'TIPO 1807'),(1809,'TIPO 1808'),(1810,'TIPO 1809'),(1811,'TIPO 1810'),(1812,'TIPO 1811'),(1813,'TIPO 1812'),(1814,'TIPO 1813'),(1815,'TIPO 1814'),(1816,'TIPO 1815'),(1817,'TIPO 1816'),(1818,'TIPO 1817'),(1819,'TIPO 1818'),(1820,'TIPO 1819'),(1821,'TIPO 1820'),(1822,'TIPO 1821'),(1823,'TIPO 1822'),(1824,'TIPO 1823'),(1825,'TIPO 1824'),(1826,'TIPO 1825'),(1827,'TIPO 1826'),(1828,'TIPO 1827'),(1829,'TIPO 1828'),(1830,'TIPO 1829'),(1831,'TIPO 1830'),(1832,'TIPO 1831'),(1833,'TIPO 1832'),(1834,'TIPO 1833'),(1835,'TIPO 1834'),(1836,'TIPO 1835'),(1837,'TIPO 1836'),(1838,'TIPO 1837'),(1839,'TIPO 1838'),(1840,'TIPO 1839'),(1841,'TIPO 1840'),(1842,'TIPO 1841'),(1843,'TIPO 1842'),(1844,'TIPO 1843'),(1845,'TIPO 1844'),(1846,'TIPO 1845'),(1847,'TIPO 1846'),(1848,'TIPO 1847'),(1849,'TIPO 1848'),(1850,'TIPO 1849'),(1851,'TIPO 1850'),(1852,'TIPO 1851'),(1853,'TIPO 1852'),(1854,'TIPO 1853'),(1855,'TIPO 1854'),(1856,'TIPO 1855'),(1857,'TIPO 1856'),(1858,'TIPO 1857'),(1859,'TIPO 1858'),(1860,'TIPO 1859'),(1861,'TIPO 1860'),(1862,'TIPO 1861'),(1863,'TIPO 1862'),(1864,'TIPO 1863'),(1865,'TIPO 1864'),(1866,'TIPO 1865'),(1867,'TIPO 1866'),(1868,'TIPO 1867'),(1869,'TIPO 1868'),(1870,'TIPO 1869'),(1871,'TIPO 1870'),(1872,'TIPO 1871'),(1873,'TIPO 1872'),(1874,'TIPO 1873'),(1875,'TIPO 1874'),(1876,'TIPO 1875'),(1877,'TIPO 1876'),(1878,'TIPO 1877'),(1879,'TIPO 1878'),(1880,'TIPO 1879'),(1881,'TIPO 1880'),(1882,'TIPO 1881'),(1883,'TIPO 1882'),(1884,'TIPO 1883'),(1885,'TIPO 1884'),(1886,'TIPO 1885'),(1887,'TIPO 1886'),(1888,'TIPO 1887'),(1889,'TIPO 1888'),(1890,'TIPO 1889'),(1891,'TIPO 1890'),(1892,'TIPO 1891'),(1893,'TIPO 1892'),(1894,'TIPO 1893'),(1895,'TIPO 1894'),(1896,'TIPO 1895'),(1897,'TIPO 1896'),(1898,'TIPO 1897'),(1899,'TIPO 1898'),(1900,'TIPO 1899'),(1901,'TIPO 1900'),(1902,'TIPO 1901'),(1903,'TIPO 1902'),(1904,'TIPO 1903'),(1905,'TIPO 1904'),(1906,'TIPO 1905'),(1907,'TIPO 1906'),(1908,'TIPO 1907'),(1909,'TIPO 1908'),(1910,'TIPO 1909'),(1911,'TIPO 1910'),(1912,'TIPO 1911'),(1913,'TIPO 1912'),(1914,'TIPO 1913'),(1915,'TIPO 1914'),(1916,'TIPO 1915'),(1917,'TIPO 1916'),(1918,'TIPO 1917'),(1919,'TIPO 1918'),(1920,'TIPO 1919'),(1921,'TIPO 1920'),(1922,'TIPO 1921'),(1923,'TIPO 1922'),(1924,'TIPO 1923'),(1925,'TIPO 1924'),(1926,'TIPO 1925'),(1927,'TIPO 1926'),(1928,'TIPO 1927'),(1929,'TIPO 1928'),(1930,'TIPO 1929'),(1931,'TIPO 1930'),(1932,'TIPO 1931'),(1933,'TIPO 1932'),(1934,'TIPO 1933'),(1935,'TIPO 1934'),(1936,'TIPO 1935'),(1937,'TIPO 1936'),(1938,'TIPO 1937'),(1939,'TIPO 1938'),(1940,'TIPO 1939'),(1941,'TIPO 1940'),(1942,'TIPO 1941'),(1943,'TIPO 1942'),(1944,'TIPO 1943'),(1945,'TIPO 1944'),(1946,'TIPO 1945'),(1947,'TIPO 1946'),(1948,'TIPO 1947'),(1949,'TIPO 1948'),(1950,'TIPO 1949'),(1951,'TIPO 1950'),(1952,'TIPO 1951'),(1953,'TIPO 1952'),(1954,'TIPO 1953'),(1955,'TIPO 1954'),(1956,'TIPO 1955'),(1957,'TIPO 1956'),(1958,'TIPO 1957'),(1959,'TIPO 1958'),(1960,'TIPO 1959'),(1961,'TIPO 1960'),(1962,'TIPO 1961'),(1963,'TIPO 1962'),(1964,'TIPO 1963'),(1965,'TIPO 1964'),(1966,'TIPO 1965'),(1967,'TIPO 1966'),(1968,'TIPO 1967'),(1969,'TIPO 1968'),(1970,'TIPO 1969'),(1971,'TIPO 1970'),(1972,'TIPO 1971'),(1973,'TIPO 1972'),(1974,'TIPO 1973'),(1975,'TIPO 1974'),(1976,'TIPO 1975'),(1977,'TIPO 1976'),(1978,'TIPO 1977'),(1979,'TIPO 1978'),(1980,'TIPO 1979'),(1981,'TIPO 1980'),(1982,'TIPO 1981'),(1983,'TIPO 1982'),(1984,'TIPO 1983'),(1985,'TIPO 1984'),(1986,'TIPO 1985'),(1987,'TIPO 1986'),(1988,'TIPO 1987'),(1989,'TIPO 1988'),(1990,'TIPO 1989'),(1991,'TIPO 1990'),(1992,'TIPO 1991'),(1993,'TIPO 1992'),(1994,'TIPO 1993'),(1995,'TIPO 1994'),(1996,'TIPO 1995'),(1997,'TIPO 1996'),(1998,'TIPO 1997'),(1999,'TIPO 1998'),(2000,'TIPO 1999'); - -drop table if exists `issue_1534`; -create table `issue_1534` ( - `id` smallint(6) unsigned not null auto_increment, - `language` varchar(2) collate utf8_unicode_ci not null DEFAULT 'bb', - `name` varchar(255) collate utf8_unicode_ci not null, - `slug` varchar(20) collate utf8_unicode_ci not null, - `brand` varchar(100) collate utf8_unicode_ci default null, - `sort` tinyint(3) unsigned not null DEFAULT '0', - `language2` varchar(2) collate utf8_unicode_ci not null DEFAULT 'bb', - primary key (`id`,`language`), - UNIQUE KEY `slug` (`slug`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; - -drop table if exists `issue_2019`; -create table IF NOT EXISTS `issue_2019` ( - `id` int(10) not null auto_increment, - `column` varchar(100) collate utf8_unicode_ci not null, - primary key (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; - -drop table if exists `ph_select`; -create table IF NOT EXISTS `ph_select` ( - `sel_id` int(11) unsigned not null auto_increment, - `sel_name` varchar(16) collate utf8_unicode_ci not null, - `sel_text` varchar(32) collate utf8_unicode_ci default null, - primary key (`sel_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; -INSERT INTO `ph_select` (`sel_id`, `sel_name`, `sel_text`) VALUES - (1, 'Sun', 'The one and only'), - (2, 'Mercury', 'Cold and hot'), - (3, 'Venus', 'Yeah baby she''s got it'), - (4, 'Earth', 'Home'), - (5, 'Mars', 'The God of War'), - (6, 'Jupiter', NULL), - (7, 'Saturn', 'A car'), - (8, 'Uranus', 'Loads of jokes for this one'); - -drop table if exists `issue_11036`; -create table `issue_11036` ( - `id` int(11) unsigned not null auto_increment, - `token` varchar(100) not null, - primary key (`id`), - UNIQUE KEY `issue_11036_token_UNIQUE` (`token`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - -drop table if exists `packages`; -create table `packages` ( - `reference_type_id` int(11) not null, - `reference_id` int(10) unsigned not null, - `title` varchar(100) collate utf8_unicode_ci not null, - `created` int(10) unsigned not null, - `updated` int(10) unsigned not null, - `deleted` int(10) unsigned default null, - primary key (`reference_type_id`,`reference_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; -INSERT INTO `packages` (`reference_type_id`, `reference_id`, `title`, `created`, `updated`, `deleted`) VALUES - (1, 1, 'Private Package #1', 0, 0, NULL), - (1, 2, 'Private Package #2', 0, 0, NULL), - (2, 1, 'Public Package #1', 0, 0, NULL); - -drop table if exists `package_details`; -create table `package_details` ( - `reference_type_id` int(11) not null, - `reference_id` int(10) unsigned not null, - `type` varchar(50) collate utf8_unicode_ci not null, - `value` text collate utf8_unicode_ci not null, - `created` int(10) unsigned not null, - `updated` int(10) unsigned not null, - `deleted` int(10) unsigned default null, - primary key (`reference_type_id`,`reference_id`,`type`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; - -INSERT INTO `package_details` (`reference_type_id`, `reference_id`, `type`, `value`, `created`, `updated`, `deleted`) VALUES - (1, 1, 'detail', 'private package #1 - detail', 0, 0, NULL), - (1, 1, 'option', 'private package #1 - option', 0, 0, NULL), - (1, 2, 'detail', 'private package #2 - detail', 0, 0, NULL), - (1, 2, 'option', 'private package #2 - option', 0, 0, NULL), - (2, 1, 'coupon', 'public package #1 - coupon', 0, 0, NULL), - (2, 1, 'detail', 'public package #1 - detail', 0, 0, NULL), - (2, 1, 'option', 'public package #1 - option', 0, 0, NULL); - -drop table if exists `childs`; -create table `childs` ( - `id` INT not null auto_increment, - `parent` INT default null, - `source` VARCHAR(20) default null, - `transaction` VARCHAR(20) default null, - `for` INT default null, - `group` INT default null, - primary key (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - -drop table if exists `users`; -create table `users` ( - `id` int(11) not null auto_increment, - `name` VARCHAR(128) not null, - primary key (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; -INSERT INTO `users` (`id`, `name`) VALUES - (1, 'Andres Gutierrez'), - (2, 'Serghei Iakovlev'), - (3, 'Nikolaos Dimopoulos'), - (4, 'Eduar Carvajal'); - -drop table if exists `issue12071_head`; -create table `issue12071_head` ( - `id` INT not null auto_increment, - primary key (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -INSERT INTO `issue12071_head` VALUES (1); -INSERT INTO `issue12071_head` VALUES (2); - -drop table if exists `issue12071_body`; -create table `issue12071_body` ( - `id` INT not null auto_increment, - `head_1_id` INT, - `head_2_id` INT, - primary key (`id`), - CONSTRAINT `issue12071_body_head_1_fkey` FOREIGN KEY (`head_1_id`) REFERENCES `issue12071_head` (`id`), - CONSTRAINT `issue12071_body_head_2_fkey` FOREIGN KEY (`head_2_id`) REFERENCES `issue12071_head` (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - -drop table if exists `stats`; -create table `stats` ( - `date` TIMESTAMP not null DEFAULT CURRENT_TIMESTAMP, - `type` TINYINT(3) UNSIGNED not null, - `value` BIGINT(20) UNSIGNED not null, - primary key (`date`, `type`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 collate=utf8_unicode_ci; -INSERT INTO `stats` (`date`, `type`, `value`) VALUES - ('2016-02-12 00:00:00', 1, 10), - ('2016-02-12 00:01:00', 2, 100), - ('2016-02-12 00:02:00', 3, 100); - -drop table if exists `stock`; -create table `stock` ( - `id` int(11) auto_increment primary key, - `name` varchar(32) not null, - `stock` int(11) not null -) ENGINE=InnoDB DEFAULT CHARSET=latin1; -INSERT INTO `stock` (`id`, `name`, `stock`) VALUES -(1, 'Apple', 2), -(2, 'Carrot', 6), -(3, 'pear', 0); - -drop table if exists `foreign_key_parent`; -create table `foreign_key_parent` ( - `id` int(10) unsigned not null auto_increment, - `name` VARCHAR(32) not null, - `refer_int` INT(10) not null, - primary key (`id`), - KEY (`refer_int`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - -drop table if exists `foreign_key_child`; -create table `foreign_key_child` ( - `id` INT(10) UNSIGNED not null auto_increment, - `name` VARCHAR(32) not null, - `child_int` INT(10) not null, - primary key (`id`), - KEY (`child_int`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - -drop table if exists `table_with_string_field`; -create table `table_with_string_field` ( - `id` INT(10) UNSIGNED not null auto_increment, - `field` VARCHAR(70) not null, - primary key (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -INSERT INTO `table_with_string_field` VALUES - (1,'String one'), - (2,'String two'), - (3,'Another one string'); - -drop table if exists `dialect_table`; -create table dialect_table -( - field_primary int auto_increment - primary key, - field_blob blob null, - field_bit bit null, - field_bit_default bit default b'1' null, - field_bigint bigint null, - field_bigint_default bigint default 1 null, - field_boolean tinyint(1) null, - field_boolean_default tinyint(1) default 1 null, - field_char char(10) null, - field_char_default char(10) default 'ABC' null, - field_decimal decimal(10,4) null, - field_decimal_default decimal(10,4) default 14.5678 null, - field_enum enum('xs', 's', 'm', 'l', 'xl') null, - field_integer int(10) null, - field_integer_default int(10) default 1 null, - field_json json null, - field_float float(10,4) null, - field_float_default float(10,4) default 14.5678 null, - field_date date null, - field_date_default date default '2018-10-01' null, - field_datetime datetime null, - field_datetime_default datetime default '2018-10-01 12:34:56' null, - field_time time null, - field_time_default time default '12:34:56' null, - field_timestamp timestamp null, - field_timestamp_default timestamp default '2018-10-01 12:34:56' null, - field_mediumint mediumint(10) null, - field_mediumint_default mediumint(10) default 1 null, - field_smallint smallint(10) null, - field_smallint_default smallint(10) default 1 null, - field_tinyint tinyint(10) null, - field_tinyint_default tinyint(10) default 1 null, - field_longtext longtext null, - field_mediumtext mediumtext null, - field_tinytext tinytext null, - field_text text null, - field_varchar varchar(10) null, - field_varchar_default varchar(10) default 'D' null, - unique key dialect_table_unique (field_integer), - key dialect_table_index (field_bigint), - key dialect_table_two_fields (field_char, field_char_default) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - -drop table if exists `dialect_table_remote`; -create table dialect_table_remote -( - field_primary int auto_increment - primary key, - field_text varchar(20) null -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - - -drop table if exists `dialect_table_intermediate`; -create table dialect_table_intermediate -( - field_primary_id int null, - field_remote_id int null, - constraint dialect_table_intermediate_primary__fk - foreign key (field_primary_id) references dialect_table (field_primary), - constraint dialect_table_intermediate_remote__fk - foreign key (field_remote_id) references dialect_table_remote (field_primary) - on update cascade on delete set null -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - diff --git a/tests/_data/schemas/phalcon-schema-postgresql.sql b/tests/_data/schemas/phalcon-schema-postgresql.sql deleted file mode 100644 index 24b5341f12f..00000000000 --- a/tests/_data/schemas/phalcon-schema-postgresql.sql +++ /dev/null @@ -1,11082 +0,0 @@ --- --- PostgreSQL database dump --- - -SET statement_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SET check_function_bodies = false; -SET client_min_messages = warning; - --- --- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: --- - -CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; - --- --- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: --- - -COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; - -SET search_path = public, pg_catalog; -SET default_tablespace = ''; -SET default_with_oids = false; - --- --- Name: customers; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS customers; -CREATE TABLE customers -( - id SERIAL, - document_id integer NOT NULL, - customer_id char(15) NOT NULL, - first_name varchar(100) DEFAULT NULL, - last_name varchar(100) DEFAULT NULL, - phone varchar(20) DEFAULT NULL, - email varchar(70) NOT NULL, - instructions varchar(100) DEFAULT NULL, - status CHAR(1) NOT NULL, - birth_date date DEFAULT '1970-01-01', - credit_line decimal(16,2) DEFAULT '0.00', - created_at timestamp NOT NULL, - created_at_user_id integer DEFAULT '0', - PRIMARY KEY (id) -); - -CREATE INDEX customers_document_id_idx ON customers (document_id); -CREATE INDEX customers_customer_id_idx ON customers (customer_id); -CREATE INDEX customers_credit_line_idx ON customers (credit_line); -CREATE INDEX customers_status_idx ON customers (status); - -ALTER TABLE public.customers OWNER TO postgres; - --- --- Name: parts; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS parts CASCADE; -CREATE TABLE parts -( - id integer NOT NULL, - name character varying(70) NOT NULL -); - -ALTER TABLE public.parts OWNER TO postgres; - --- --- Name: images; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS images; -CREATE TABLE images -( - id BIGSERIAL, - base64 TEXT -); - -ALTER TABLE public.images OWNER TO postgres; - --- --- Name: personas; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS personas; -CREATE TABLE personas -( - cedula character(15) NOT NULL, - tipo_documento_id integer NOT NULL, - nombres character varying(100) DEFAULT '':: character varying NOT NULL, - telefono character varying(20) DEFAULT NULL:: character varying, - direccion character varying(100) DEFAULT NULL:: character varying, - email character varying(50) DEFAULT NULL:: character varying, - fecha_nacimiento date DEFAULT '1970-01-01':: date, - ciudad_id integer DEFAULT 0, - creado_at date, - cupo numeric(16,2) NOT NULL, - estado character(1) NOT NULL -); - -ALTER TABLE public.personas OWNER TO postgres; - --- --- Name: personnes; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS personnes; -CREATE TABLE personnes -( - cedula character(15) NOT NULL, - tipo_documento_id integer NOT NULL, - nombres character varying(100) DEFAULT '':: character varying NOT NULL, - telefono character varying(20) DEFAULT NULL:: character varying, - direccion character varying(100) DEFAULT NULL:: character varying, - email character varying(50) DEFAULT NULL:: character varying, - fecha_nacimiento date DEFAULT '1970-01-01':: date, - ciudad_id integer DEFAULT 0, - creado_at date, - cupo numeric(16,2) NOT NULL, - estado character(1) NOT NULL -); - -ALTER TABLE public.personnes OWNER TO postgres; - --- --- Name: prueba; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS prueba; -CREATE TABLE prueba -( - id integer NOT NULL, - nombre character varying(120) NOT NULL, - estado character(1) NOT NULL -); - -ALTER TABLE public.prueba OWNER TO postgres; - --- --- Name: prueba_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -DROP SEQUENCE IF EXISTS prueba_id_seq; -CREATE SEQUENCE prueba_id_seq -START WITH 1 -INCREMENT BY 1 -NO MINVALUE -NO MAXVALUE -CACHE 1; - -ALTER TABLE public.prueba_id_seq OWNER TO postgres; - --- --- Name: prueba_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE prueba_id_seq OWNED BY prueba.id; - --- --- Name: prueba_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('prueba_id_seq', 636, true); - --- --- Name: robots; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS robots CASCADE; -CREATE TABLE robots -( - id integer NOT NULL, - name character varying(70) NOT NULL, - type character varying(32) DEFAULT 'mechanical':: character varying NOT NULL, - year integer DEFAULT 1900 NOT NULL, - datetime timestamp NOT NULL, - deleted timestamp DEFAULT NULL, - text text NOT NULL -); - -ALTER TABLE public.robots OWNER TO postgres; - --- --- Name: robots_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -DROP SEQUENCE IF EXISTS robots_id_seq; -CREATE SEQUENCE robots_id_seq -START WITH 1 -INCREMENT BY 1 -NO MINVALUE -NO MAXVALUE -CACHE 1; - -ALTER TABLE public.robots_id_seq OWNER TO postgres; - --- --- Name: robots_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE robots_id_seq OWNED BY robots.id; - --- --- Name: robots_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('robots_id_seq', 1, false); - --- --- Name: robots_parts; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS robots_parts; -CREATE TABLE robots_parts -( - id integer NOT NULL, - robots_id integer NOT NULL, - parts_id integer NOT NULL -); - -ALTER TABLE public.robots_parts OWNER TO postgres; - --- --- Name: robots_parts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -DROP SEQUENCE IF EXISTS robots_parts_id_seq; -CREATE SEQUENCE robots_parts_id_seq -START WITH 1 -INCREMENT BY 1 -NO MINVALUE -NO MAXVALUE -CACHE 1; - -ALTER TABLE public.robots_parts_id_seq OWNER TO postgres; - --- --- Name: robots_parts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE robots_parts_id_seq OWNED BY robots_parts.id; - --- --- Name: robots_parts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('robots_parts_id_seq', 1, false); - --- --- Name: subscriptores; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS subscriptores; -CREATE TABLE subscriptores -( - id integer NOT NULL, - email character varying(70) NOT NULL, - created_at timestamp without time zone, - status character(1) NOT NULL -); - -ALTER TABLE public.subscriptores OWNER TO postgres; - --- --- Name: subscriptores_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -DROP SEQUENCE IF EXISTS subscriptores_id_seq; -CREATE SEQUENCE subscriptores_id_seq -START WITH 1 -INCREMENT BY 1 -NO MINVALUE -NO MAXVALUE -CACHE 1; - -ALTER TABLE public.subscriptores_id_seq OWNER TO postgres; - --- --- Name: subscriptores_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE subscriptores_id_seq OWNED BY subscriptores.id; - --- --- Name: subscriptores_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('subscriptores_id_seq', 1, false); - --- --- Name: tipo_documento; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS tipo_documento; -CREATE TABLE tipo_documento -( - id integer NOT NULL, - detalle character varying(32) NOT NULL -); - -ALTER TABLE public.tipo_documento OWNER TO postgres; - --- --- Name: tipo_documento_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -DROP SEQUENCE IF EXISTS tipo_documento_id_seq; -CREATE SEQUENCE tipo_documento_id_seq -START WITH 1 -INCREMENT BY 1 -NO MINVALUE -NO MAXVALUE -CACHE 1; - --- --- Name: foreign_key_parent; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS foreign_key_parent; -CREATE TABLE foreign_key_parent -( - id SERIAL, - name character varying(70) NOT NULL, - refer_int integer NOT NULL, - PRIMARY KEY (id), - UNIQUE (refer_int) -); - -ALTER TABLE public.foreign_key_parent OWNER TO postgres; - --- --- Name: ph_select; Type: TABLE TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS ph_select; -CREATE TABLE ph_select -( - sel_id SERIAL, - sel_name character varying(16) NOT NULL, - sel_text character varying(32) DEFAULT NULL, - PRIMARY KEY (sel_id) -); - -INSERT INTO ph_select (sel_id, sel_name, sel_text) -VALUES - (1, 'Sun', 'The one and only'), - (2, 'Mercury', 'Cold and hot'), - (3, 'Venus', 'Yeah baby she''s got it'), - (4, 'Earth', 'Home'), - (5, 'Mars', 'The God of War'), - (6, 'Jupiter', NULL), - (7, 'Saturn', 'A car'), - (8, 'Uranus', 'Loads of jokes for this one'); - -ALTER TABLE public.ph_select OWNER TO postgres; - --- --- Name: foreign_key_child; Type: TABLE; Schema: public; Owner: postgres; Tablespace: --- - -DROP TABLE IF EXISTS foreign_key_child; -CREATE TABLE foreign_key_child -( - id SERIAL, - name character varying(70) NOT NULL, - child_int integer NOT NULL, - PRIMARY KEY (id), - UNIQUE (child_int) -); - -ALTER TABLE public.foreign_key_child OWNER TO postgres; -ALTER TABLE public.tipo_documento_id_seq OWNER TO postgres; - -ALTER TABLE foreign_key_child - ADD CONSTRAINT test_describeReferences - FOREIGN KEY (child_int) - REFERENCES foreign_key_parent (refer_int) - ON UPDATE CASCADE ON DELETE RESTRICT; - --- --- Name: tipo_documento_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE tipo_documento_id_seq OWNED BY tipo_documento.id; - --- --- Name: tipo_documento_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('tipo_documento_id_seq', 1, false); - --- --- Name: id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY prueba ALTER COLUMN id SET DEFAULT nextval('prueba_id_seq'::regclass); - --- --- Name: id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY robots ALTER COLUMN id SET DEFAULT nextval('robots_id_seq'::regclass); - --- --- Name: id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY robots_parts ALTER COLUMN id SET DEFAULT nextval('robots_parts_id_seq'::regclass); - --- --- Name: id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY subscriptores ALTER COLUMN id SET DEFAULT nextval('subscriptores_id_seq'::regclass); - --- --- Name: id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY tipo_documento ALTER COLUMN id SET DEFAULT nextval('tipo_documento_id_seq'::regclass); - --- --- Data for Name: parts; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO parts (id, name) -VALUES - (1, 'Head'), - (2, 'Body'), - (3, 'Arms'), - (4, 'Legs'), - (5, 'CPU'); - --- --- Data for Name: personas; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO personas (cedula, tipo_documento_id, nombres, telefono, direccion, - email, fecha_nacimiento, ciudad_id, creado_at, cupo, - estado) -VALUES -(1, 3, 'HUANG ZHENGQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-05-18', 6930.00, 'I'), -(100, 1, 'USME FERNANDEZ JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2010-04-15', 439480.00, 'A'), -(1003, 8, 'SINMON PEREZ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-08-25', 468610.00, 'A'), -(1009, 8, 'ARCINIEGAS Y VILLAMIZAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2010-08-12', 967680.00, 'A'), -(101, 1, 'CRANE DE NARVAEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-06-09', 790540.00, 'A'), -(1011, 8, 'EL EVENTO', 191821112, 'CRA 25 CALLE 100', '596@terra.com.co', - '2011-02-03', 127591, '2011-05-24', 820390.00, 'A'), -(1020, 7, 'OSPINA YOLANDA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-05-02', 222970.00, 'A'), -(1025, 7, 'CHEMIPLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-08-08', 918670.00, 'A'), -(1034, 1, 'TAXI FILMS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2010-09-01', 962580.00, 'A'), -(104, 1, 'CASTELLANOS JIMENEZ NOE', 191821112, 'CRA 25 CALLE 100', - '127@yahoo.es', '2011-02-03', 127591, '2011-10-05', 95230.00, 'A'), -(1046, 3, 'JACQUET PIERRE MICHEL ALAIN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 263489, '2011-07-23', 90810.00, 'A'), -(1048, 5, 'SPOERER VELEZ CARLOS JORGE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-02-03', 184920.00, 'A'), -(1049, 3, 'SIDNEI DA SILVA LUIZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 117630, '2011-07-02', 850180.00, 'A'), -(105, 1, 'HERRERA SEQUERA ALVARO FRANCISCO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-04-26', 77390.00, 'A'), -(1050, 3, 'CAVALCANTI YUE CARLA HANLI', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-08-31', 696130.00, 'A'), -(1052, 1, 'BARRETO RIVAS ELKIN MARTIN', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 131508, '2011-09-19', 562160.00, 'A'), -(1053, 3, 'WANDERLEY ANTONIO ERNESTO THOME', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 150617, '2011-01-31', 20490.00, 'A'), -(1054, 3, 'HE SHAN', 191821112, 'CRA 25 CALLE 100', '715@yahoo.es', - '2011-02-03', 132958, '2010-10-05', 415970.00, 'A'), -(1055, 3, 'ZHRNG XIM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2010-10-05', 18380.00, 'A'), -(1057, 3, 'NICKEL GEB. STUTZ KARIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2010-10-08', 164850.00, 'A'), -(1058, 1, 'VELEZ PAREJA IGNACIO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 132775, '2011-06-24', 292250.00, 'A'), -(1059, 3, 'GURKE RALF ERNST', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 287570, '2011-06-15', 966700.00, 'A'), -(106, 1, 'ESTRADA LONDONO JUAN SIMON', 191821112, 'CRA 25 CALLE 100', - '8@terra.com.co', '2011-02-03', 128579, '2011-03-09', 101260.00, 'A'), -(1060, 1, 'MEDRANO BARRIOS WILSON', 191821112, 'CRA 25 CALLE 100', - '479@facebook.com', '2011-02-03', 132775, '2011-06-18', 956740.00, 'A'), -(1061, 1, 'GERDTS PORTO HANS EDUARDO', 191821112, 'CRA 25 CALLE 100', - '140@gmail.com', '2011-02-03', 127591, '2011-05-09', 883590.00, 'A'), -(1062, 1, 'BORGE VISBAL JORGE FIDEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 132775, '2011-07-14', 547750.00, 'A'), -(1063, 3, 'GUTIERREZ JOSELYN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-06-06', 87960.00, 'A'), -(1064, 4, 'OVIEDO PINZON MARYI YULEY', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127538, '2011-04-21', 796560.00, 'A'), -(1065, 1, 'VILORA SILVA OMAR ESTEBAN', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 133535, '2010-06-09', 718910.00, 'A'), -(1066, 3, 'AGUIAR ROMAN RODRIGO HUMBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 126674, '2011-06-28', 204890.00, 'A'), -(1067, 1, 'GOMEZ AGAMEZ ADOLFO DEL CRISTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 131105, '2011-06-15', 867730.00, 'A'), -(1068, 3, 'GARRIDO CECILIA', 191821112, 'CRA 25 CALLE 100', '973@yahoo.com.mx', - '2011-02-03', 118777, '2010-08-16', 723980.00, 'A'), -(1069, 1, 'JIMENEZ MANJARRES DAVID RAFAEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 132775, '2010-12-17', 16680.00, 'A'), -(107, 1, 'ARANGUREN TEJADA JORGE ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-16', 274110.00, 'A'), -(1070, 3, 'OYARZUN TEJEDA ANDRES FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-05-26', 911490.00, 'A'), -(1071, 3, 'MARIN BUCK RAFAEL ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 126180, '2011-05-04', 507400.00, 'A'), -(1072, 3, 'VARGAS JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 126674, '2011-07-28', 802540.00, 'A'), -(1073, 3, 'JUEZ JAIRALA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 126180, '2010-04-09', 490510.00, 'A'), -(1074, 1, 'APONTE PENSO HERNAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 132879, '2011-05-27', 44900.00, 'A'), -(1075, 1, 'PINERES BUSTILLO ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 126916, '2008-10-29', 752980.00, 'A'), -(1076, 1, 'OTERA OMA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 128662, '2011-04-29', 630210.00, 'A'), -(1077, 3, 'CONTRERAS CHINCHILLA JUAN DOMINGO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 139844, '2011-06-21', 892110.00, 'A'), -(1078, 1, 'GAMBA LAURENCIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2010-09-15', 569940.00, 'A'), -(108, 1, 'MUNOZ ARANGO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-08-01', 66770.00, 'A'), -(1080, 1, 'PRADA ABAUZA CARLOS AUGUSTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2010-11-15', 156870.00, 'A'), -(1081, 1, 'PAOLA CAROLINA PINTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-08-27', 264350.00, 'A'), -(1082, 1, 'PALOMINO HERNANDEZ GERMAN JAVIER', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 133535, '2011-03-22', 851120.00, 'A'), -(1084, 1, 'URIBE DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', - '602@hotmail.es', '2011-02-03', 127591, '2011-09-07', 759470.00, 'A'), -(1085, 1, 'ARGUELLO CALDERON ARMANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-07-24', 409660.00, 'A'), -(1087, 1, 'CARVAJAL HERNANDEZ CHRISTIAN ARMANDO', 191821112, 'CRA 25 CALLE 100', - '296@yahoo.es', '2011-02-03', 159432, '2011-06-03', 620410.00, 'A'), -(1088, 1, 'CASTRO BLANCO MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 150512, '2009-10-08', 792400.00, 'A'), -(1089, 1, 'RIBEROS GUTIERREZ GUSTAVO ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-01-27', 100800.00, 'A'), -(109, 1, 'BELTRAN MARIA LUZ DARY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-09-06', 511510.00, 'A'), -(1091, 4, 'ORTIZ ORTIZ BENIGNO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127538, '2011-08-05', 331540.00, 'A'), -(1092, 3, 'JOHN CHRISTOPHER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-04-08', 277320.00, 'A'), -(1093, 1, 'PARRA VILLAREAL MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 129499, '2011-08-23', 391980.00, 'A'), -(1094, 1, 'BESGA RODRIGUEZ JUAN JAVIER', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127300, '2011-09-23', 127960.00, 'A'), -(1095, 1, 'ZAPATA MEZA EDGAR FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 129499, '2011-05-19', 463840.00, 'A'), -(1096, 3, 'CORNEJO BRAVO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 117002, '2010-11-08', 935340.00, 'A'), -('CELL3944', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(1099, 1, 'GARCIA PORRAS FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-14', 243360.00, 'A'), -(11, 1, 'HERNANDEZ PARDO ARMANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-31', 197540.00, 'A'), -(110, 1, 'VANEGAS JULIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-09-06', 357260.00, 'A'), -(1101, 1, 'QUINTERO BURBANO GABRIEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 129499, '2011-08-20', 57420.00, 'A'), -(1102, 1, 'BOHORQUEZ AFANADOR CHRISTIAN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 214610.00, 'A'), -(1103, 1, 'MORA VARGAS JULIO ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-08-29', 900790.00, 'A'), -(1104, 1, 'PINEDA JORGE ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-06-21', 860110.00, 'A'), -(1105, 1, 'TORO CEBALLOS GONZALO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 129499, '2011-08-18', 598180.00, 'A'), -(1106, 1, 'SCHENIDER TORRES JAIME', 191821112, 'CRA 25 CALLE 100', - '85@yahoo.com.mx', '2011-02-03', 127799, '2011-08-11', 410590.00, 'A'), -(1107, 1, 'RUEDA VILLAMIZAR JAIME', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2010-11-15', 258410.00, 'A'), -(1108, 1, 'RUEDA VILLAMIZAR RICARDO JAIME', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 129499, '2011-03-22', 60260.00, 'A'), -(1109, 1, 'GOMEZ RODRIGUEZ HERNANDO ARTURO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2010-06-02', 526080.00, 'A'), -(111, 1, 'FRANCISCO EDUARDO JAIME BOTERO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2010-09-09', 251770.00, 'A'), -(1110, 1, 'HERNANDEZ MENDEZ EDGAR', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 129499, '2011-03-22', 449610.00, 'A'), -(1113, 1, 'LEON HERNANDEZ OSCAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 129499, '2011-03-21', 992090.00, 'A'), -(1114, 1, 'LIZARAZO CARRENO HUGO ARCENIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 133535, '2010-12-10', 959490.00, 'A'), -(1115, 1, 'LIAN BARRERA GABRIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2010-05-30', 821170.00, 'A'), -(1117, 3, 'TELLEZ BEZAN FRANCISCO JAVIER ', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 117002, '2011-08-21', 673430.00, 'A'), -(1118, 1, 'FUENTES ARIZA DIEGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-06-09', 684970.00, 'A'), -(1119, 1, 'MOLINA M. ROBINSON', 191821112, 'CRA 25 CALLE 100', - '728@hotmail.com', '2011-02-03', 129447, '2010-09-19', 404580.00, 'A'), -(112, 1, 'PATINO PINTO ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-10-06', 187050.00, 'A'), -(1120, 1, 'ORTIZ DURAN BENIGNO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127538, '2011-08-05', 967970.00, 'A'), -(1121, 1, 'CARVAJAL ALMEIDA LUIS RAUL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 129499, '2011-06-22', 626140.00, 'A'), -(1122, 1, 'TORRES QUIROGA EDWIN SILVESTRE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 129447, '2011-08-17', 226780.00, 'A'), -(1123, 1, 'VIVIESCAS JAIMES ALVARO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-10', 255480.00, 'A'), -(1124, 1, 'MARTINEZ RUEDA JAVIER EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 129447, '2011-06-23', 597040.00, 'A'), -(1125, 1, 'ANAYA FLORES JORGE ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 129499, '2011-06-04', 218790.00, 'A'), -(1126, 3, 'TORRES MARTINEZ ANTONIO JESUS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 188640, '2010-09-02', 302820.00, 'A'), -(1127, 3, 'CACHO LEVISIER JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 153276, '2009-06-25', 857720.00, 'A'), -(1129, 3, 'ULLOA VALDIVIESO CRISTIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 117002, '2011-06-02', 327570.00, 'A'), -(113, 1, 'HIGUERA CALA JAIME ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-07-27', 179950.00, 'A'), -(1130, 1, 'ARCINIEGAS WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 126892, '2011-08-05', 497420.00, 'A'), -(1131, 1, 'BAZA ACUNA JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 129447, '2010-12-10', 504410.00, 'A'), -(1132, 3, 'BUIRA ROS CARLOS MARIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2010-04-27', 29750.00, 'A'), -(1133, 1, 'RODRIGUEZ JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 129447, '2011-06-10', 635560.00, 'A'), -(1134, 1, 'QUIROGA PEREZ NELSON', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 129447, '2011-05-18', 88520.00, 'A'), -(1135, 1, 'TATIANA AYALA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127122, '2011-07-01', 535920.00, 'A'), -(1136, 1, 'OSORIO BENEDETTI FABIAN AUGUSTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 132775, '2010-10-23', 414060.00, 'A'), -(1139, 1, 'CELIS PINTO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2009-02-25', 964970.00, 'A'), -(114, 1, 'VALDERRAMA CUERVO JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-09-02', 338590.00, 'A'), -(1140, 1, 'ORTIZ ARENAS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 129499, '2009-10-21', 613300.00, 'A'), -(1141, 1, 'VALDIVIESO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 134022, '2009-01-13', 171590.00, 'A'), -(1144, 1, 'LOPEZ CASTILLO NELSON', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 129499, '2010-09-09', 823110.00, 'A'), -(1145, 1, 'CAVELIER LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 126916, '2008-11-29', 389220.00, 'A'), -(1146, 1, 'CAVELIER OTOYA LUIS EDURDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 126916, '2010-05-25', 476770.00, 'A'), -(1147, 1, 'GARCIA RUEDA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '111@yahoo.es', '2011-02-03', 133535, '2010-09-12', 216190.00, 'A'), -(1148, 1, 'LADINO GOMEZ OMAR ORLANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-05-02', 650640.00, 'A'), -(1149, 1, 'CARRENO ORTIZ OSCAR JAVIER', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-03-15', 604630.00, 'A'), -(115, 1, 'NARDEI BONILLO BRUNO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-04-16', 153110.00, 'A'), -(1150, 1, 'MONTOYA BOZZI MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 129499, '2011-05-12', 71240.00, 'A'), -(1152, 1, 'LORA RICHARD JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2010-09-15', 497700.00, 'A'), -(1153, 1, 'SILVA PINZON MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '915@hotmail.es', '2011-02-03', 127591, '2011-06-15', 861670.00, 'A'), -(1154, 3, 'GEORGE J A KHALILIEH', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-20', 815260.00, 'A'), -(1155, 3, 'CHACON MARIN CARLOS MANUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-07-26', 491280.00, 'A'), -(1156, 3, 'OCHOA CHEHAB XAVIER ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 126180, '2011-06-13', 10630.00, 'A'), -(1157, 3, 'ARAYA GARRI GABRIEL ALEXIS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 117002, '2011-09-19', 579320.00, 'A'), -(1158, 3, 'MACCHI ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 116366, '2010-04-12', 864690.00, 'A'), -(116, 1, 'GONZALEZ FANDINO JAIME EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-05-10', 749800.00, 'A'), -(1160, 1, 'CAVALIER LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 126916, '2009-08-27', 333390.00, 'A'), -('CELL396', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(1161, 3, 'DOMINGUEZ DE OBREGON ILEANA DEL CARMEN', 191821112, - 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 139844, '2011-03-06', - 910490.00, 'A'), -(1162, 2, 'FALASCA CLAUDIO ARIEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 116511, '2011-07-10', 552280.00, 'A'), -(1163, 3, 'MUTABARUKA PATRICK', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 131352, '2011-03-22', 29940.00, 'A'), -(1164, 1, 'DOMINGUEZ ATENCIA JIMMY CARLOS', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-07-22', 492860.00, 'A'), -(1165, 4, 'LLANO GONZALEZ ALBERTO MARIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127300, '2010-08-21', 374490.00, 'A'), -(1166, 3, 'LOPEZ ROLDAN JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 188640, '2011-07-31', 393860.00, 'A'), -(1167, 1, 'GUTIERREZ DE PINERES JALILIE ARISTIDES', 191821112, - 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2010-12-09', 845810.00, - 'A'), -(1168, 1, 'HEYMANS PIERRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 128662, '2010-11-08', 47470.00, 'A'), -(1169, 1, 'BOTERO OSORIO RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2009-05-27', 699940.00, 'A'), -(1170, 3, 'GARNHAM POBLETE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 116396, '2011-03-27', 357270.00, 'A'), -(1172, 1, 'DAJUD DURAN JOSE RODRIGO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 133535, '2009-12-02', 360910.00, 'A'), -(1173, 1, 'MARTINEZ MERCADO PEDRO PABLO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2011-07-25', 744930.00, 'A'), -(1174, 1, 'GARCIA AMADOR ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 133535, '2011-05-19', 641930.00, 'A'), -(1176, 1, 'VARGAS VARELA LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 131568, '2011-08-30', 948410.00, 'A'), -(1178, 1, 'GUTIERRES DE PINERES ARISTIDES', 191821112, 'CRA 25 CALLE 100', - '217@hotmail.com', '2011-02-03', 133535, '2011-05-10', 242490.00, 'A'), -(1179, 3, 'LEIZAOLA POZO JIMENA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 132958, '2011-08-01', 759800.00, 'A'), -(118, 1, 'FERNANDEZ VELOSO PEDRO HERNANDO', 191821112, 'CRA 25 CALLE 100', - '452@hotmail.es', '2011-02-03', 128662, '2010-08-06', 198830.00, 'A'), -(1180, 3, 'MARINO PAOLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2010-12-24', 71520.00, 'A'), -(1181, 1, 'MOLINA VIZCAINO GUSTAVO JORGE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-28', 78220.00, 'A'), -(1182, 3, 'MEDEL GARCIA FABIAN RODRIGO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 117002, '2011-04-25', 176540.00, 'A'), -(1183, 1, 'LESMES ARIAS RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2010-09-09', 648020.00, 'A'), -(1184, 1, 'ALCALA MARTINEZ ALFREDO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 132775, '2010-07-23', 710470.00, 'A'), -(1186, 1, 'LLAMAS FOLIACO LUIS ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-09-07', 910210.00, 'A'), -(1187, 1, 'GUARDO DEL RIO LIBARDO FARID', 191821112, 'CRA 25 CALLE 100', - '73@yahoo.com.mx', '2011-02-03', 128662, '2011-09-01', 726050.00, 'A'), -(1188, 3, 'JEFFREY ARTHUR DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 115724, '2011-03-21', 899630.00, 'A'), -(1189, 1, 'DAHL VELEZ JULIANA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 126916, '2011-05-23', 320020.00, 'A'), -(119, 3, 'WALESKA DE LIMA ALMEIDA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 118942, '2011-05-09', 125240.00, 'A'), -(1190, 3, 'LUIS JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 118777, '2008-04-04', 901210.00, 'A'), -(1192, 1, 'AZUERO VALENTINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-04-14', 26310.00, 'A'), -(1193, 1, 'MARQUEZ GALINDO MAURICIO JAVIER', 191821112, 'CRA 25 CALLE 100', - '729@yahoo.es', '2011-02-03', 131105, '2011-05-13', 493560.00, 'A'), -(1195, 1, 'NIETO FRANCO JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', - '707@yahoo.com', '2011-02-03', 127591, '2011-07-30', 463790.00, 'A'), -(1196, 3, 'ESTEVES JOAQUIM LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-04-05', 152270.00, 'A'), -(1197, 4, 'BARRERO KAREN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-06-12', 369990.00, 'A'), -(1198, 1, 'CORRALES GUZMAN DELIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127689, '2011-08-03', 393120.00, 'A'), -(1199, 1, 'CUELLAR TOCO EDGAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127531, '2011-09-20', 855640.00, 'A'), -(12, 1, 'MARIN PRIETO FREDY NELSON ', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-23', 641210.00, 'A'), -(120, 1, 'LOPEZ JARAMILLO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2009-04-17', 29680.00, 'A'), -(1200, 3, 'SCHULTER ACHIM', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 291002, '2010-05-21', 98860.00, 'A'), -(1201, 3, 'HOWELL LAURENCE ADRIAN', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 286785, '2011-05-22', 927350.00, 'A'), -(1202, 3, 'ALCAZAR ESCARATE JAIME PATRICIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 117002, '2011-08-25', 340160.00, 'A'), -(1203, 3, 'HIDALGO FUENZALIDA GABRIEL RAUL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-03', 918780.00, 'A'), -(1206, 1, 'VANEGAS HENAO ORLANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-09-27', 832910.00, 'A'), -(1207, 1, 'PENARANDA ARIAS RICARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-07-19', 832710.00, 'A'), -(1209, 1, 'LEZAMA CERVERA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 132775, '2011-09-14', 825980.00, 'A'), -(121, 1, 'PULIDO JIMENEZ OSCAR HUMBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-08-29', 772700.00, 'A'), -(1211, 1, 'TRUJILLO BOCANEGRA HAROL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127538, '2011-05-27', 199260.00, 'A'), -(1212, 1, 'ALVAREZ TORRES MARIO RICARDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-08-15', 589960.00, 'A'), -(1213, 1, 'CORRALES VARON BELMER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-26', 352030.00, 'A'), -(1214, 3, 'CUEVAS RODRIGUEZ MANUELA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-09-30', 990250.00, 'A'), -(1216, 1, 'LOPEZ EDICSON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-08-31', 505210.00, 'A'), -(1217, 3, 'GARCIA PALOMARES JUAN JAVIER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 188640, '2011-07-31', 840440.00, 'A'), -(1218, 1, 'ARCINIEGAS NARANJO RICARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127492, '2010-12-17', 686610.00, 'A'), -(122, 1, 'GONZALEZ RIANO LEONARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128031, '2011-08-05', 774450.00, 'A'), -(1220, 1, 'GARCIA GUTIERREZ WILLIAM', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-06-20', 498680.00, 'A'), -(1221, 3, 'GOMEZ DE ALONSO ANGELA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-27', 758300.00, 'A'), -(1222, 1, 'MEDINA QUIROGA JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127538, '2011-01-16', 295480.00, 'A'), -(1224, 1, 'ARCILA CORREA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2011-03-20', 125900.00, 'A'), -(1225, 1, 'QUIJANO REYES CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127538, '2010-04-08', 22100.00, 'A'), -(157, 1, 'ORTIZ RIOS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-05-12', 365330.00, 'A'), -(1226, 1, 'VARGAS GALLEGO JAIRO ALONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127300, '2009-07-30', 732820.00, 'A'), -(1228, 3, 'NAPANGA MIRENGHI MARTIN', 191821112, 'CRA 25 CALLE 100', - '153@yahoo.es', '2011-02-03', 132958, '2011-02-08', 790400.00, 'A'), -(123, 1, 'LAMUS CASTELLANOS ANDRES RICARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-05-11', 554160.00, 'A'), -(1230, 1, 'RIVEROS PINEROS JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127492, '2011-09-25', 422220.00, 'A'), -(1231, 3, 'ESSER JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127327, '2011-04-01', 635060.00, 'A'), -(1232, 3, 'DOMINGUEZ MORA MAURICIO ALFREDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-22', 908630.00, 'A'), -(1233, 3, 'MOLINA FERNANDEZ FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2010-05-28', 637990.00, 'A'), -(1234, 3, 'BELLO DANIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 196234, '2010-09-04', 464040.00, 'A'), -(1235, 3, 'BENADAVA GUEVARA DAVID ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2011-05-18', 406240.00, 'A'), -(1236, 3, 'RODRIGUEZ MATOS ROBERTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-03-22', 639070.00, 'A'), -(1237, 3, 'TAPIA ALARCON PATRICIO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 117002, '2010-07-06', 976620.00, 'A'), -(1239, 3, 'VERCHERE ALFONSO CHRISTIAN', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 117002, '2010-08-23', 899600.00, 'A'), -(1241, 1, 'ESPINEL LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 128206, '2009-03-09', 302860.00, 'A'), -(1242, 3, 'VERGARA FERREIRA PATRICIA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-10-03', 713310.00, 'A'), -(1243, 3, 'ZUMARRAGA SIRVENT CRSTINA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 188640, '2011-08-24', 657950.00, 'A'), -(1244, 4, 'ESCORCIA VASQUEZ TOMAS', 191821112, 'CRA 25 CALLE 100', - '354@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', 149830.00, 'A'), -(1245, 4, 'PARAMO CUENCA KELLY LORENA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127492, '2011-05-04', 775300.00, 'A'), -(1246, 4, 'PEREZ LOPEZ VERONICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 128662, '2011-07-11', 426990.00, 'A'), -(1247, 4, 'CHAPARRO RODRIGUEZ DANIELA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-10-08', 809070.00, 'A'), -(1249, 4, 'DIAZ MARTINEZ MARIA CAROLINA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 133535, '2011-05-30', 394740.00, 'A'), -(125, 1, 'CALDON RODRIGUEZ JAIME ARIEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 126968, '2011-07-29', 574780.00, 'A'), -(1250, 4, 'PINEDA VASQUEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 128662, '2010-09-03', 680540.00, 'A'), -(1251, 5, 'MATIZ URIBE ANGELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2010-12-25', 218470.00, 'A'), -(1253, 1, 'ZAMUDIO RICAURTE JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 126892, '2011-08-05', 598160.00, 'A'), -(1254, 1, 'ALJURE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2010-07-21', 838660.00, 'A'), -(1255, 3, 'ARMESTO AIRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 196234, '2011-01-29', 398840.00, 'A'), -(1257, 1, 'POTES GUEVARA JAIRO MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127858, '2011-03-17', 194580.00, 'A'), -(1258, 1, 'BURBANO QUIROGA RAFAEL', 191821112, 'CRA 25 CALLE 100', - '767@facebook.com', '2011-02-03', 127591, '2011-04-07', 538220.00, 'A'), -(1259, 1, 'CARDONA GOMEZ JAVIR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127300, '2011-03-16', 107380.00, 'A'), -(126, 1, 'PULIDO PARDO GUIDO IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-10-05', 531550.00, 'A'), -(1260, 1, 'LOPERA LEDESMA PABLO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-19', 922240.00, 'A'), -(1263, 1, 'TRIBIN BARRIGA JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127300, '2011-09-02', 525330.00, 'A'), -(1264, 1, 'NAVIA LOPEZ ANDRES FELIPE ', 191821112, 'CRA 25 CALLE 100', - '353@hotmail.es', '2011-02-03', 127300, '2011-07-15', 591190.00, 'A'), -(1265, 1, 'CARDONA GOMEZ FABIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127300, '2010-11-18', 379940.00, 'A'), -(1266, 1, 'ESCARRIA VILLEGAS ANDRES JULIAN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-08-19', 126160.00, 'A'), -(1268, 1, 'CASTRO HERNANDEZ ALVARO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127300, '2011-03-25', 76260.00, 'A'), -(127, 1, 'RODRIGUEZ RODRIGUEZ GIOVANI FRANCISCO', 191821112, 'CRA 25 CALLE 100', - '662@hotmail.es', '2011-02-03', 127591, '2011-09-29', 933390.00, 'A'), -(1270, 1, 'LEAL HERNANDEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', 313610.00, 'A'), -(1272, 1, 'ORTIZ CARDONA WILLIAM ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '914@hotmail.com', '2011-02-03', 128662, '2011-09-13', 272150.00, 'A'), -(1273, 1, 'ROMERO VAN GOMPEL HERNAN', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2010-09-07', 832960.00, 'A'), -(1274, 1, 'BERMUDEZ LONDONO JHON FREDY', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127300, '2011-08-29', 348380.00, 'A'), -(1275, 1, 'URREA ALVAREZ NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-09-01', 242980.00, 'A'), -(1276, 1, 'VALENCIA LLANOS RODRIGO AUGUSTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2010-04-11', 169790.00, 'A'), -(1277, 1, 'PAZ VALENCIA GUILLERMO ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127300, '2011-08-05', 120020.00, 'A'), -(1278, 1, 'MONROY CORREDOR GERARDO ALONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127300, '2011-06-25', 90700.00, 'A'), -(1279, 1, 'RIOS MEDINA JAVIER ERMINSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-12', 93440.00, 'A'), -(128, 1, 'GALLEGO GUZMAN MARIO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-06-25', 72290.00, 'A'), -(1280, 1, 'GARCIA OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-30', 195090.00, 'A'), -(1282, 1, 'MURILLO PESELLIN GABRIEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127300, '2011-06-15', 890530.00, 'A'), -(1284, 1, 'DIAZ ALVAREZ JOHNY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127300, '2011-06-25', 164130.00, 'A'), -(1285, 1, 'GARCES BELTRAN RAUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127300, '2011-08-11', 719220.00, 'A'), -(1286, 1, 'MATERON POVEDA LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-25', 103710.00, 'A'), -(1287, 1, 'VALENCIA ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2010-10-23', 360880.00, 'A'), -(1288, 1, 'PENA AGUDELO JOSE RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 134022, '2011-05-25', 493280.00, 'A'), -(1289, 1, 'CORREA NUNEZ JORGE ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2010-08-18', 383750.00, 'A'), -(129, 1, 'ALVAREZ RODRIGUEZ IVAN RICARDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2008-01-28', 561290.00, 'A'), -(1291, 1, 'BEJARANO ROSERO FREDDY ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-10-09', 43400.00, 'A'), -(1292, 1, 'CASTILLO BARRIOS GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127300, '2011-06-17', 900180.00, 'A'), -('CELL401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(1296, 1, 'GALVEZ GUTIERREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127300, '2010-03-28', 807090.00, 'A'), -(1297, 3, 'CRUZ GARCIA MILTON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 139844, '2011-03-21', 75630.00, 'A'), -(1298, 1, 'VILLEGAS GUTIERREZ JOSE RICARDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-04-11', 956860.00, 'A'), -(13, 1, 'VACA MURCIA JESUS ALFREDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-04', 613430.00, 'A'), -(1301, 3, 'BOTTI ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 231989, '2011-04-04', 910640.00, 'A'), -(1302, 3, 'COTINO HUESO LORENZO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2010-02-02', 803450.00, 'A'), -(1304, 3, 'NESPOLI MANTOVANI LUIZ CARLOS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-04-18', 16230.00, 'A'), -(1307, 4, 'AVILA GIL PAULA ANDREA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-04-19', 711110.00, 'A'), -(1308, 4, 'VALLEJO PINEDA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-12', 323490.00, 'A'), -(1312, 1, 'ROMERO OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-04-17', 642460.00, 'A'), -(1314, 3, 'LULLIES CONSTANZE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 245206, '2010-06-03', 154970.00, 'A'), -(1315, 1, 'CHAPARRO GUTIERREZ JORGE ADRIANO', 191821112, 'CRA 25 CALLE 100', - '284@hotmail.es', '2011-02-03', 127591, '2010-12-02', 325440.00, 'A'), -(1316, 1, 'BARRANTES DISI RICARDO JOSE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 132879, '2011-07-18', 162270.00, 'A'), -(1317, 3, 'VERDES GAGO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 188640, '2010-03-10', 835060.00, 'A'), -(1319, 3, 'MARTIN MARTINEZ GUSTAVO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 188640, '2010-05-26', 937220.00, 'A'), -(1320, 3, 'MOTTURA MASSIMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 118777, '2008-11-10', 620640.00, 'A'), -(1321, 3, 'RUSSELL TIMOTHY JAMES', 191821112, 'CRA 25 CALLE 100', - '502@hotmail.es', '2011-02-03', 145135, '2010-04-16', 291560.00, 'A'), -(1322, 3, 'JAIN TARSEM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 190393, '2011-05-31', 595890.00, 'A'), -(1323, 3, 'ORTEGA CEVALLOS JULIETA ELIZABETH', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-06-30', 104760.00, 'A'), -(1324, 3, 'MULLER PICHAIDA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 117002, '2011-05-17', 736130.00, 'A'), -(1325, 3, 'ALVEAR TELLEZ JULIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 117002, '2011-01-23', 366390.00, 'A'), -(1327, 3, 'MOYA LATORRE MARCELA CAROLINA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 117002, '2011-05-17', 18520.00, 'A'), -(1328, 3, 'LAMA ZAROR RODRIGO IGNACIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 117002, '2010-10-27', 221990.00, 'A'), -(1329, 3, 'HERNANDEZ CIFUENTES MAURICE JEANETTE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 139844, '2011-06-22', 54410.00, 'A'), -(133, 1, 'CORDOBA HOYOS JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-09-20', 966820.00, 'A'), -(1330, 2, 'HOCHKOFLER NOEMI CONSUELO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-08-27', 606070.00, 'A'), -(1331, 4, 'RAMIREZ BARRERO DANIELA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 154563, '2011-04-18', 867120.00, 'A'), -(1332, 4, 'DE LEON DURANGO RICARDO JOSE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 131105, '2011-09-08', 517400.00, 'A'), -(1333, 4, 'RODRIGUEZ MACIAS IVAN MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 129447, '2011-05-23', 985620.00, 'A'), -(1334, 4, 'GUTIERREZ DE PINERES YANET MARIA ALEJANDRA', 191821112, - 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-06-16', - 375890.00, 'A'), -(1335, 4, 'GUTIERREZ DE PINERES YANET MARIA GABRIELA', 191821112, - 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-06-16', - 922600.00, 'A'), -(1336, 4, 'CABRALES BECHARA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', - '708@hotmail.com', '2011-02-03', 131105, '2011-05-13', 485330.00, 'A'), -(1337, 4, 'MEJIA TOBON LUIS DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127662, '2011-08-05', 658860.00, 'A'), -(1338, 3, 'OROS NERCELLES CRISTIAN ANDRE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 144215, '2011-04-26', 838310.00, 'A'), -(1339, 3, 'MORENO BRAVO CAROLINA ANDREA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 190393, '2010-12-08', 214950.00, 'A'), -(134, 1, 'GONZALEZ LOPEZ DANIEL ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-08', 178580.00, 'A'), -(1340, 3, 'FERNANDEZ GARRIDO MARCELO FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2010-07-08', 559820.00, 'A'), -(1342, 3, 'SUMEGI IMRE ZOLTAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-07-16', 91750.00, 'A'), -(1343, 3, 'CALDERON FLANDEZ SERGIO', 191821112, 'CRA 25 CALLE 100', - '108@hotmail.com', '2011-02-03', 117002, '2010-12-12', 996030.00, 'A'), -(1345, 3, 'CARBONELL ATCHUGARRY GUILLERMO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 116366, '2010-04-12', 536390.00, 'A'), -(1346, 3, 'MONTEALEGRE AGUILAR FEDERICO ', 191821112, 'CRA 25 CALLE 100', - '448@yahoo.es', '2011-02-03', 132165, '2011-08-08', 567260.00, 'A'), -(1347, 1, 'HERNANDEZ MANCHEGO CARLOS JULIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2010-04-28', 227130.00, 'A'), -(1348, 1, 'ARENAS ZARATE FERNEY ARNULFO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127963, '2011-03-26', 433860.00, 'A'), -(1349, 3, 'DELFIM DINIZ PASSOS PINHEIRO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 110784, '2010-04-17', 487930.00, 'A'), -(135, 1, 'GARCIA SIMBAQUEBA RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 992420.00, 'A'), -(1350, 3, 'BRAUN VALENZUELA FELIPE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-07-29', 138050.00, 'A'), -(1351, 3, 'LEVIN FIORELLI ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 116366, '2011-04-10', 226470.00, 'A'), -(1353, 3, 'BALTODANO ESQUIVEL LAURA CRISTINA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 132165, '2011-08-01', 911660.00, 'A'), -(1354, 4, 'ESCOBAR YEPES ANDREA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2011-05-19', 403630.00, 'A'), -(1356, 1, 'GAGELI OSORIO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '228@yahoo.com.mx', '2011-02-03', 128662, '2011-07-14', 205070.00, 'A'), -(1357, 3, 'CABAL ALVAREZ RUBEN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 188640, '2011-08-14', 175770.00, 'A'), -(1359, 4, 'HUERFANO JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-06-04', 790970.00, 'A'), -(136, 1, 'OSORIO RAMIREZ LEONARDO', 191821112, 'CRA 25 CALLE 100', - '686@yahoo.es', '2011-02-03', 128662, '2010-05-14', 426380.00, 'A'), -(1360, 4, 'RAMON GARCIA MARIA PAULA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-07-01', 163890.00, 'A'), -(1362, 30, 'ALVAREZ CLAVIO CARLA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127203, '2011-04-18', 741020.00, 'A'), -(1363, 3, 'SERRA DURAN GERARDO ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-03', 365490.00, 'A'), -(1364, 3, 'NORIEGA VALVERDE SILVIA MARCELA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 132775, '2011-02-27', 604370.00, 'A'), -(1366, 1, 'JARAMILLO LOPEZ ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '269@terra.com.co', '2011-02-03', 127559, '2010-11-08', 813800.00, 'A'), -(1367, 1, 'MAZO ROLDAN CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-04', 292880.00, 'A'), -(1368, 1, 'MURIEL ARCILA MAURICIO HERNANDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-06-29', 22970.00, 'A'), -(1369, 1, 'RAMIREZ CARLOS FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-07-14', 236230.00, 'A'), -(137, 1, 'LUNA PEREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 126881, '2011-08-05', 154640.00, 'A'), -(1370, 1, 'GARCIA GRAJALES PEDRO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128166, '2011-10-09', 112230.00, 'A'), -(1372, 3, 'GARCIA ESCOBAR ANA MARIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-29', 925670.00, 'A'), -(1373, 3, 'ALVES DIAS CARLOS AUGUSTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-08-07', 70940.00, 'A'), -(1374, 3, 'MATTOS CHRISTIANE GARCIA CID', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 183024, '2010-08-25', 577700.00, 'A'), -(1376, 1, 'CARVAJAL ROJAS ORLANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-08-10', 645240.00, 'A'), -(1377, 3, 'MADARIAGA CADIZ CLAUDIO CRISTIAN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 117002, '2011-10-04', 199200.00, 'A'), -(1379, 3, 'MARIN YANEZ ALICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 188640, '2011-02-20', 703870.00, 'A'), -(138, 1, 'DIAZ AVENDANO MARCELO IVAN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-05-22', 494080.00, 'A'), -(1381, 3, 'COSTA VILLEGAS LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 117002, '2011-08-21', 580670.00, 'A'), -(1382, 3, 'DAZA PEREZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 122035, '2009-02-23', 888000.00, 'A'), -(1385, 4, 'RIVEROS ARIAS MARIA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127492, '2011-09-26', 35710.00, 'A'), -(1386, 30, 'TORO GIRALDO MATEO', 191821112, 'CRA 25 CALLE 100', - '433@yahoo.com.mx', '2011-02-03', 127591, '2011-07-17', 700730.00, 'A'), -(1387, 4, 'ROJAS YARA LAURA DANIELA MARIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-31', 396530.00, 'A'), -(1388, 3, 'GALLEGO RODRIGO MARIA PILAR', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 188640, '2009-04-19', 880450.00, 'A'), -(1389, 1, 'PANTOJA VELASQUEZ JOSE ARMANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127300, '2011-08-05', 212660.00, 'A'), -(139, 1, 'RANCO GOMEZ HERNÁN EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-01-19', 6450.00, 'A'), -(1390, 3, 'VAN DEN BORNE KEES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 132958, '2010-01-28', 421930.00, 'A'), -(1391, 3, 'MONDRAGON FLORES JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 118777, '2011-08-22', 471700.00, 'A'), -(1392, 3, 'BAGELLA MICHELE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2010-07-27', 92720.00, 'A'), -(1393, 3, 'BISTIANCIC MACHADO ANA INES', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 116366, '2010-08-02', 48490.00, 'A'), -(1394, 3, 'BANADOS ORTIZ MARIA PILAR', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2011-08-25', 964280.00, 'A'), -(1395, 1, 'CHINDOY CHINDOY HERNANDO', 191821112, 'CRA 25 CALLE 100', - '107@terra.com.co', '2011-02-03', 126892, '2011-08-25', 675920.00, 'A'), -(1396, 3, 'SOTO NUNEZ ANDRES ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 117002, '2011-10-02', 486760.00, 'A'), -(1397, 1, 'DELGADO MARTINEZ LORGE ELIAS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-05-23', 406040.00, 'A'), -(1398, 1, 'LEON GUEVARA JAVIER ANIBAL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 126892, '2011-09-08', 569930.00, 'A'), -(1399, 1, 'ZARAMA BASTIDAS LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 126892, '2011-08-05', 631540.00, 'A'), -(14, 1, 'MAGUIN HENNSSEY LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', - '714@gmail.com', '2011-02-03', 127591, '2011-07-11', 143540.00, 'A'), -(140, 1, 'CARRANZA CUY ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-25', 550010.00, 'A'), -(1401, 3, 'REYNA CASTORENA JOSE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 189815, '2011-08-29', 344970.00, 'A'), -(1402, 1, 'GFALLO BOTERO SERGIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2011-07-14', 381100.00, 'A'), -(1403, 1, 'ARANGO ARAQUE JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2011-05-04', 870590.00, 'A'), -(1404, 3, 'LASSNER NORBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 118942, '2010-02-28', 209650.00, 'A'), -(1405, 1, 'DURANGO MARIN HECTOR LEON', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '1970-02-02', 436480.00, 'A'), -(1407, 1, 'FRANCO CASTANO DIEGO MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2010-06-28', 457770.00, 'A'), -(1408, 1, 'HERNANDEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 128662, '2011-05-29', 628550.00, 'A'), -(1409, 1, 'CASTANO DUQUE CARLOS HUGO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2011-03-23', 769410.00, 'A'), -(141, 1, 'CHAMORRO CHEDRAUI SERGIO ALBERTO', 191821112, 'CRA 25 CALLE 100', - '922@yahoo.com.mx', '2011-02-03', 127591, '2011-05-07', 730720.00, 'A'), -(1411, 1, 'RAMIREZ MONTOYA ADAMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2011-04-13', 498880.00, 'A'), -(1412, 1, 'GONZALEZ BENJUMEA OSCAR HUMBERTO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-11-01', 610150.00, 'A'), -(1413, 1, 'ARANGO ACEVEDO WALTER ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2010-10-07', 554090.00, 'A'), -(1414, 1, 'ARANGO GALLO HUMBERTO LEON', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-02-25', 940010.00, 'A'), -(1415, 1, 'VELASQUEZ LUIS GONZALO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2011-07-06', 37760.00, 'A'), -(1416, 1, 'MIRA AGUILAR FRANCISCO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-08-30', 368790.00, 'A'), -(1417, 1, 'RIVERA ARISTIZABAL CARLOS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2011-03-02', 730670.00, 'A'), -(1418, 1, 'ARISTIZABAL ROLDAN ANDRES RICARDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-05-02', 546960.00, 'A'), -(142, 1, 'LOPEZ ZULETA MAURICIO ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-09-01', 3550.00, 'A'), -(1420, 1, 'ESCORCIA ARAMBURO JUAN MARIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', 73100.00, 'A'), -(1421, 1, 'CORREA PARRA RICARDO ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-08-05', 737110.00, 'A'), -(1422, 1, 'RESTREPO NARANJO DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 128662, '2011-09-15', 466240.00, 'A'), -(1423, 1, 'VELASQUEZ CARLOS JUAN', 191821112, 'CRA 25 CALLE 100', - '123@yahoo.com', '2011-02-03', 128662, '2010-06-09', 119880.00, 'A'), -(1424, 1, 'MACIA GONZALEZ ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 128662, '2010-11-12', 200690.00, 'A'), -(1425, 1, 'BERRIO MEJIA HELBER ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2010-06-04', 643800.00, 'A'), -(1427, 1, 'GOMEZ GUTIERREZ CARLOS ARIEL', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2011-09-08', 153320.00, 'A'), -(1428, 1, 'RESTREPO LOPEZ JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-09-12', 915770.00, 'A'), -('CELL4012', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(1429, 1, 'BARTH TOBAR LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2011-02-23', 118900.00, 'A'), -(143, 1, 'MUNERA BEDIYA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2010-09-21', 825600.00, 'A'), -(1430, 1, 'JIMENEZ VELEZ ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2010-02-26', 847160.00, 'A'), -(1431, 1, 'TAKAHASHI GAVIRIA NICOLAS KEIICHIRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-07-13', 879120.00, 'A'), -(1432, 1, 'ESCOBAR JARAMILLO ESTEBAN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2010-06-10', 854110.00, 'A'), -(1433, 1, 'PALACIO NAVARRO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2010-08-18', 633200.00, 'A'), -(1434, 1, 'LONDONO MUNOZ ADOLFO LEON', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2010-09-14', 603670.00, 'A'), -(1435, 1, 'PULGARIN JAIME ANDRES', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 128662, '2009-11-01', 118730.00, 'A'), -(1436, 1, 'FERRERA ZULUAGA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2010-07-10', 782630.00, 'A'), -(1437, 1, 'VASQUEZ VELEZ HABACUC', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-09-27', 557000.00, 'A'), -(1438, 1, 'HENAO PALOMINO DIEGO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2009-05-06', 437080.00, 'A'), -(1439, 1, 'HURTADO URIBE JUAN GONZALO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2011-01-11', 514400.00, 'A'), -(144, 1, 'ALDANA RODOLFO AUGUSTO', 191821112, 'CRA 25 CALLE 100', - '838@yahoo.es', '2011-02-03', 127591, '2011-08-07', 117350.00, 'A'), -(1441, 1, 'URIBE DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 133535, '2010-11-19', 760610.00, 'A'), -(1442, 1, 'PINEDA GALIANO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2010-07-29', 20770.00, 'A'), -(1443, 1, 'DUQUE BETANCOURT FABIO LEON', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2010-11-26', 822030.00, 'A'), -(1444, 1, 'JARAMILLO TORO HERNAN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2011-04-27', 47830.00, 'A'), -(145, 1, 'VASQUEZ ZAPATA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-05-09', 109940.00, 'A'), -(1450, 1, 'TOBON FRANCO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '545@facebook.com', '2011-02-03', 127591, '2011-05-03', 889540.00, 'A'), -(1454, 1, 'LOTERO PAVAS CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-28', 646750.00, 'A'), -(1455, 1, 'ESTRADA HENAO JAVIER ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128569, '2009-09-07', 215460.00, 'A'), -(1456, 1, 'VALDERRAMA MAXIMILIANO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-03-23', 137030.00, 'A'), -(1457, 3, 'ESTRADA ALVAREZ GONZALO ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 154903, '2011-05-02', 38790.00, 'A'), -(1458, 1, 'PAUCAR VALLEJO JAIRO ALONSO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-10-15', 782860.00, 'A'), -(1459, 1, 'RESTREPO GIRALDO JHON DARIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 128662, '2011-04-04', 797930.00, 'A'), -(146, 1, 'BAQUERO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 128662, '2010-03-03', 197650.00, 'A'), -(1460, 1, 'RESTREPO DOMINGUEZ GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2009-05-18', 641050.00, 'A'), -(1461, 1, 'YANOVICH JACKY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 128662, '2010-08-21', 811470.00, 'A'), -(1462, 1, 'HINCAPIE ROLDAN JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2011-08-27', 134200.00, 'A'), -(1463, 3, 'ZEA JORGE OLIVER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 150699, '2011-03-12', 236610.00, 'A'), -(1464, 1, 'OSCAR MAURICIO ECHAVARRIA', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2010-11-24', 780440.00, 'A'), -(1465, 1, 'COSSIO GIL JOSE ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2011-10-01', 192380.00, 'A'), -(1466, 1, 'GOMEZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-03-01', 620580.00, 'A'), -(1467, 1, 'VILLALOBOS OCHOA ANDRES GABRIEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2010-08-18', 525740.00, 'A'), -(1470, 1, 'GARCIA GONZALEZ DAVID DARIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 128662, '2011-09-17', 986990.00, 'A'), -(1471, 1, 'RAMIREZ RESTREPO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-03', 162250.00, 'A'), -(1472, 1, 'VASQUEZ GUTIERREZ JUAN ANDRES', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-04-05', 850280.00, 'A'), -(1474, 1, 'ESCOBAR ARANGO DAVID', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2010-11-01', 272460.00, 'A'), -(1475, 1, 'MEJIA TORO JUAN DAVID', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 128662, '2011-05-02', 68320.00, 'A'), -(1477, 1, 'ESCOBAR GOMEZ JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127848, '2011-05-15', 416150.00, 'A'), -(1478, 1, 'BETANCUR WILSON', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2008-02-09', 508060.00, 'A'), -(1479, 3, 'ROMERO ARRAU GONZALO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-06-10', 291880.00, 'A'), -(148, 1, 'REINA MORENO MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-08', 699240.00, 'A'), -(1480, 1, 'CASTANO OSORIO JORGE ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127662, '2011-09-20', 935200.00, 'A'), -(1482, 1, 'LOPEZ LOPERA ROBINSON FREDY', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2011-09-02', 196280.00, 'A'), -(1484, 1, 'HERNAN DARIO RENDON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 128662, '2011-03-18', 312520.00, 'A'), -(1485, 1, 'MARTINEZ ARBOLEDA MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2010-11-03', 821760.00, 'A'), -(1486, 1, 'RODRIGUEZ MORA CARLOS MORA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2011-09-16', 171270.00, 'A'), -(1487, 1, 'PENAGOS VASQUEZ JOSE DOMINGO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2011-09-06', 391080.00, 'A'), -(1488, 1, 'UERRA MEJIA DIEGO LEON', 191821112, 'CRA 25 CALLE 100', - '704@hotmail.com', '2011-02-03', 144086, '2011-08-06', 441570.00, 'A'), -(1491, 1, 'QUINTERO GUTIERREZ ABEL PASTOR', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2009-11-16', 138100.00, 'A'), -(1492, 1, 'ALARCON YEPES IVAN DARIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 150699, '2010-05-03', 145330.00, 'A'), -(1494, 1, 'HERNANDEZ VALLEJO ANDRES MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-05-09', 125770.00, 'A'), -(1495, 1, 'MONTOYA MORENO LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2010-11-09', 691770.00, 'A'), -(1497, 1, 'BARRERA CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '62@yahoo.es', - '2011-02-03', 127591, '2010-08-24', 332550.00, 'A'), -(1498, 1, 'ARROYAVE FERNANDEZ PABLO EMILIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2011-05-12', 418030.00, 'A'), -(1499, 1, 'GOMEZ ANGEL FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 128662, '2011-05-03', 92480.00, 'A'), -(15, 1, 'AMSILI COHEN JOSEPH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-10-07', 877400.00, 'A'), -('CELL411', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(150, 3, 'ARDILA GUTIERREZ DANIEL MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-12', 506760.00, 'A'), -(1500, 1, 'GONZALEZ DUQUE PABLO JOSE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2010-04-13', 208330.00, 'A'), -(1502, 1, 'MEJIA BUSTAMANTE JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2010-08-09', 196000.00, 'A'), -(1506, 1, 'SUAREZ MONTOYA JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128569, '2011-09-13', 368250.00, 'A'), -(1508, 1, 'ALVAREZ GONZALEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-02-15', 355190.00, 'A'), -(1509, 1, 'NIETO CORREA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-03-31', 899980.00, 'A'), -(1511, 1, 'HERNANDEZ GRANADOS JHONATHAN', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 128662, '2011-08-30', 471720.00, 'A'), -(1512, 1, 'CARDONA ALVAREZ DEIBY', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 128662, '2010-10-05', 55590.00, 'A'), -(1513, 1, 'TORRES MARULANDA JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2010-10-20', 862820.00, 'A'), -(1514, 1, 'RAMIREZ RAMIREZ JHON JAIRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2011-05-11', 147310.00, 'A'), -(1515, 1, 'MONDRAGON TORO NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-01-19', 148100.00, 'A'), -(1517, 3, 'SUIDA DIETER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 118942, '2008-07-21', 48580.00, 'A'), -(1518, 3, 'LEFTWICH ANDREW PAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 211610, '2011-06-07', 347170.00, 'A'), -(1519, 3, 'RENTON ANDREW GEORGE PATRICK', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 269033, '2010-12-11', 590120.00, 'A'), -(152, 1, 'BUSTOS MONZON CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-22', 335160.00, 'A'), -(1521, 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 119814, '2011-04-28', 775000.00, 'A'), -(1522, 3, 'GUARACI FRANCO DE PAIVA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 119167, '2011-04-28', 147770.00, 'A'), -(1525, 4, 'MORENO TENORIO MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-06-20', 888750.00, 'A'), -(1527, 1, 'VELASQUEZ HERNANDEZ JHON EDUARSON', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-07-19', 161270.00, 'A'), -(1528, 4, 'VANEGAS ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '185@yahoo.com', - '2011-02-03', 127591, '2011-06-20', 109830.00, 'A'), -(1529, 3, 'BARBABE CLAIRE LAURENCE ANNICK', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-04-04', 65330.00, 'A'), -(153, 1, 'GONZALEZ TORREZ MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-06-01', 762560.00, 'A'), -(1530, 3, 'COREA MARTINEZ GUILLERMO JOSE ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 135360, '2011-09-25', 997190.00, 'A'), -(1531, 3, 'PACHECO RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 117002, '2010-03-08', 789960.00, 'A'), -(1532, 3, 'WELCH RICHARD WILLIAM', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 190393, '2010-10-04', 958210.00, 'A'), -(1533, 3, 'FOREMAN CAROLYN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 107159, '2011-05-23', 421200.00, 'A'), -(1535, 3, 'ZAGAL SOTO CLAUDIA PAZ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 117002, '2008-05-16', 893130.00, 'A'), -(1536, 3, 'ZAGAL SOTO CLAUDIA PAZ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 117002, '2011-10-08', 771600.00, 'A'), -(1538, 3, 'BLANCO RODRIGUEZ JUAN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 197162, '2011-04-02', 578250.00, 'A'), -(154, 1, 'HENDEZ PUERTO JAVIER ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 807310.00, 'A'), -(1540, 3, 'CONTRERAS BRAIN JAVIER ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2011-02-22', 42420.00, 'A'), -(1541, 3, 'RONDON HERNANDEZ MARYLIN DEL CARMEN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 132958, '2011-09-29', 145780.00, 'A'), -(1542, 3, 'ELJURI RAMIREZ EMIRA ELIZABETH', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 132958, '2010-10-13', 601670.00, 'A'), -(1544, 3, 'REYES LE ROY TOMAS FRANCISCO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2009-06-24', 49990.00, 'A'), -(1545, 3, 'GHETEA GAMUZ JENNY', 191821112, 'CRA 25 CALLE 100', '675@gmail.com', - '2011-02-03', 150699, '2010-05-29', 536940.00, 'A'), -(1546, 3, 'DUARTE GONZALEZ ROONEY ORLANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 117002, '2011-06-20', 534720.00, 'A'), -(1548, 3, 'BIZOT PHILIPPE PIERRE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 263813, '2011-03-02', 709760.00, 'A'), -(1549, 3, 'PELUFFO RUBIO GUILLERMO JUAN', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 116366, '2011-05-09', 360470.00, 'A'), -(1550, 3, 'AGLIATI YERKOVIC CAROLINA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2010-06-01', 673040.00, 'A'), -(1551, 3, 'SEPULVEDA LEDEZMA HENRY CORNELIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2010-08-15', 283810.00, 'A'), -(1552, 3, 'CABRERA CARMINE JAIME FRANCO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 117002, '2008-11-30', 399940.00, 'A'), -(1553, 3, 'ZINNO PENA ALVARO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 116366, '2010-08-02', 148270.00, 'A'), -(1554, 3, 'ROMERO BUCCICARDI JUAN CRISTOBAL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 117002, '2011-08-01', 541530.00, 'A'), -(1555, 3, 'FEFERKORN ABRAHAM', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 159312, '2011-06-12', 262840.00, 'A'), -(1556, 3, 'MASSE CATESSON CAROLINE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 131272, '2011-06-12', 689600.00, 'A'), -(1557, 3, 'CATESSON ALEXANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 131272, '2011-06-12', 659470.00, 'A'), -(1558, 3, 'FUENTES HERNANDEZ RICARDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-09-18', 228540.00, 'A'), -(1559, 3, 'GUEVARA MENJIVAR WILSON ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-09-18', 164310.00, 'A'), -(1560, 3, 'DANOWSKI NICOLAS JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-05-02', 135920.00, 'A'), -(1561, 3, 'CASTRO VELASQUEZ ISMAEL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 121318, '2011-07-31', 186670.00, 'A'), -(1562, 3, 'RODRIGUEZ CORNEJO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 525590.00, 'A'), -(1563, 3, 'VANIA CAROLINA FLORES AVILA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-09-18', 67950.00, 'A'), -(1564, 3, 'ARMERO RAMOS OSCAR ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '414@hotmail.com', '2011-02-03', 127591, '2011-09-18', 762950.00, 'A'), -(1565, 3, 'ORELLANA MARTINEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-09-18', 610930.00, 'A'), -(1566, 3, 'BRATT BABONNEAU CARLOS MIGUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', 765800.00, 'A'), -(1567, 3, 'YANES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 150728, '2011-04-12', 996200.00, 'A'), -(1568, 3, 'ANGULO TAMAYO SEBASTIAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 126674, '2011-05-19', 683600.00, 'A'), -(1569, 3, 'HENRIQUEZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 138329, '2011-08-15', 429390.00, 'A'), -('CELL4137', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(1570, 3, 'GARCIA VILLARROEL RAUL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 126189, '2011-06-12', 96140.00, 'A'), -(1571, 3, 'SOLA HERNANDEZ JOSE FRANCISCO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 188640, '2011-09-25', 192530.00, 'A'), -(1572, 3, 'PEREZ PASTOR OSWALDO MAGARREY', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 126674, '2011-05-25', 674260.00, 'A'), -(1573, 3, 'MICHAN QUINONES FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 188640, '2011-06-21', 793680.00, 'A'), -(1574, 3, 'GARCIA ARANDA OSCAR DAVID', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 188640, '2011-08-15', 945620.00, 'A'), -(1575, 3, 'GARCIA RIBAS JORDI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 188640, '2011-07-10', 347070.00, 'A'), -(1576, 3, 'GALVAN ROMERO MARIA INMACULADA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 145135, '2011-09-14', 898480.00, 'A'), -(1577, 3, 'BOSH MOLINAS JUAN JOSE ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 198576, '2011-08-22', 451190.00, 'A'), -(1578, 3, 'MARTIN TENA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 188640, '2011-04-24', 560520.00, 'A'), -(1579, 3, 'HAWKINS ROBERT JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-09-12', 449010.00, 'A'), -(1580, 3, 'GHERARDI ALEJANDRO EMILIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 180063, '2010-11-15', 563500.00, 'A'), -(1581, 3, 'TELLO JUAN EDUARDO', 191821112, 'CRA 25 CALLE 100', - '192@hotmail.com', '2011-02-03', 138329, '2011-05-01', 470460.00, 'A'), -(1583, 3, 'GUZMAN VALDIVIA CINTIA TATIANA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 199862, '2011-04-06', 897580.00, 'A'), -(1584, 3, 'STUBBS MERCEDES CARMEN JOSEFINA DEL MILAGRO', 191821112, - 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 199862, '2011-04-06', - 502510.00, 'A'), -(1585, 3, 'QUINTEIRO GORIS JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-08-17', 819840.00, 'A'), -(1587, 3, 'RIVAS LORIA PRISCILLA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 205636, '2011-05-01', 498720.00, 'A'), -(1588, 3, 'DE LA TORRE AUGUSTO PATRICIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 20404, '2011-08-31', 718670.00, 'A'), -(159, 1, 'ALDANA PATINO NORMAN ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2009-10-10', 201500.00, 'A'), -(1590, 3, 'TORRES VILLAR ROBERTO ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2011-08-10', 329950.00, 'A'), -(1591, 3, 'PETRULLI CARMELO MORENO', 191821112, 'CRA 25 CALLE 100', - '883@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', 358180.00, 'A'), -(1592, 3, 'MUSCO ENZO FRANCESCO GIUSEPPE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-09-04', 801050.00, 'A'), -(1593, 3, 'RONCUZZI CLAUDIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127134, '2011-10-02', 930700.00, 'A'), -(1594, 3, 'VELANI FRANCESCA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 199862, '2011-08-22', 250360.00, 'A'), -(1596, 3, 'BENARROCH ASSOR DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-10-06', 547310.00, 'A'), -(1597, 3, 'FLO VILLASECA ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 188640, '2011-05-27', 357520.00, 'A'), -(1598, 3, 'FONT RIBAS ANTONI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 196117, '2011-09-21', 145660.00, 'A'), -(1599, 3, 'LOPEZ BARAHONA MONICA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 188640, '2011-08-03', 655740.00, 'A'), -(16, 1, 'FLOREZ PEREZ GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 132572, '2011-03-30', 956370.00, 'A'), -(160, 1, 'GIRALDO MENDIVELSO MARTIN EDISSON', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-07-14', 429010.00, 'A'), -(1600, 3, 'SCATTIATI ALDO ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 215245, '2011-07-10', 841730.00, 'A'), -(1601, 3, 'MARONE CARLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 101179, '2011-06-14', 241420.00, 'A'), -(1602, 3, 'CHUVASHEVA ELENA ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 190393, '2011-08-21', 681900.00, 'A'), -(1603, 3, 'GIGLIO FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 122035, '2011-09-19', 685250.00, 'A'), -(1604, 3, 'JUSTO AMATE AGUSTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 174598, '2011-05-16', 380560.00, 'A'), -(1605, 3, 'GUARDABASSI FABIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 281044, '2011-07-26', 847060.00, 'A'), -(1606, 3, 'CALABRETTA FRAMCESCO ANTONIO MARIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 199862, '2011-08-22', 93590.00, 'A'), -(1607, 3, 'TARTARINI MASSIMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 196234, '2011-05-10', 926800.00, 'A'), -(1608, 3, 'BOTTI GIAIME', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 231989, '2011-04-04', 353210.00, 'A'), -(1610, 3, 'PILERI ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 205040, '2011-09-01', 868590.00, 'A'), -(1612, 3, 'MARTIN GRACIA LUIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 128662, '2011-07-27', 324320.00, 'A'), -(1613, 3, 'GRACIA MARTIN LUIS', 191821112, 'CRA 25 CALLE 100', - '579@facebook.com', '2011-02-03', 198248, '2011-08-24', 463560.00, 'A'), -(1614, 3, 'SERRAT SESE JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 196234, '2011-05-16', 344840.00, 'A'), -(1615, 3, 'DEL LAGO AMPELIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 145135, '2011-06-29', 333510.00, 'A'), -(1616, 3, 'PERUGORRIA RODRIGUEZ JORGE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 148511, '2011-06-06', 633040.00, 'A'), -(1617, 3, 'GIRAL CALVO IGNACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 196234, '2011-09-19', 164670.00, 'A'), -(1618, 3, 'ALONSO CEBRIAN JOSE MARIA', 191821112, 'CRA 25 CALLE 100', - '253@terra.com.co', '2011-02-03', 188640, '2011-03-23', 924240.00, 'A'), -(162, 1, 'ARIZA PINEDA JOHN ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2010-11-27', 415710.00, 'A'), -(1620, 3, 'OLMEDO CARDENETE DOMINGO MIGUEL', 191821112, 'CRA 25 CALLE 100', - '608@terra.com.co', '2011-02-03', 135397, '2011-09-03', 863200.00, 'A'), -(1622, 3, 'GIMENEZ BALDRES ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 182860, '2011-05-12', 82660.00, 'A'), -(1623, 3, 'NUNEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 128662, '2011-05-23', 609950.00, 'A'), -(1624, 3, 'PENATE CASTRO WENCESLAO LORENZO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 153607, '2011-09-13', 801750.00, 'A'), -(1626, 3, 'ESCODA MIGUEL JOAN JOSEP', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 188640, '2011-07-18', 489310.00, 'A'), -(1628, 3, 'ESTRADA CAPILLA ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 188640, '2011-07-26', 81180.00, 'A'), -(163, 1, 'PERDOMO LOPEZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-09-05', 456910.00, 'A'), -(1630, 3, 'SUBIRAIS MARIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 196234, '2011-09-08', 138700.00, 'A'), -(1632, 3, 'ENSENAT VELASCO JAIME LUIS', 191821112, 'CRA 25 CALLE 100', - '687@gmail.com', '2011-02-03', 188640, '2011-04-12', 904560.00, 'A'), -(1633, 3, 'DIEZ POLANCO CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 188640, '2011-05-24', 530410.00, 'A'), -(1636, 3, 'CUADRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 188640, '2011-09-04', 688400.00, 'A'), -(1637, 3, 'UBRIC MUNOZ RAUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 98790, '2011-05-30', 139830.00, 'A'), -('CELL4159', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(1638, 3, 'NEDDERMANN GUJO RICARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 188640, '2011-07-31', 633990.00, 'A'), -(1639, 3, 'RENEDO ZALBA JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 188640, '2011-03-13', 750430.00, 'A'), -(164, 1, 'JIMENEZ PADILLA JOHAN MARCEL', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-09-05', 37430.00, 'A'), -(1640, 3, 'FERNANDEZ MORENO DAVID', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 188640, '2011-05-28', 850180.00, 'A'), -(1641, 3, 'VERGARA SERRANO JUAN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 196234, '2011-06-30', 999620.00, 'A'), -(1642, 3, 'MARTINEZ HUESO LUCAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 182860, '2011-06-29', 447570.00, 'A'), -(1643, 3, 'FRANCO POBLET JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 196234, '2011-10-03', 238990.00, 'A'), -(1644, 3, 'MORA HIDALGO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-09-06', 852250.00, 'A'), -(1645, 3, 'GARCIA COSO EMILIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 188640, '2011-09-14', 544260.00, 'A'), -(1646, 3, 'GIMENO ESCRIG ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 180124, '2011-09-20', 164580.00, 'A'), -(1647, 3, 'MORCILLO LOPEZ RAMON', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127538, '2011-04-16', 190090.00, 'A'), -(1648, 3, 'RUBIO BONET MANUEL', 191821112, 'CRA 25 CALLE 100', - '252@facebook.com', '2011-02-03', 196234, '2011-05-25', 456740.00, 'A'), -(1649, 3, 'PRADO ABUIN FERNANDO ', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 188640, '2011-07-16', 713400.00, 'A'), -(165, 1, 'RAMIREZ PALMA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-07-10', 816420.00, 'A'), -(1650, 3, 'DE VEGA PUJOL GEMA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 196234, '2011-08-01', 196780.00, 'A'), -(1651, 3, 'IBARGUEN ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 188640, '2010-12-03', 843720.00, 'A'), -(1652, 3, 'IBARGUEN ALFREDO', 191821112, 'CRA 25 CALLE 100', '856@hotmail.com', - '2011-02-03', 188640, '2011-06-18', 628250.00, 'A'), -(1654, 3, 'MATELLANES RODRIGUEZ NURIA PILAR', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 188640, '2011-10-05', 165770.00, 'A'), -(1656, 3, 'VIDAURRAZAGA GUISOLA JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 188640, '2011-08-08', 495320.00, 'A'), -(1658, 3, 'GOMEZ ULLATE MARIA ELENA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 188640, '2011-04-12', 919090.00, 'A'), -(1659, 3, 'ALCAIDE ALONSO JUAN MIGUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2011-05-02', 152430.00, 'A'), -(166, 1, 'TUSTANOSKI RODOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2010-12-03', 969790.00, 'A'), -(1660, 3, 'LARROY GARCIA CRISTINA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 188640, '2011-09-14', 4900.00, 'A'), -(1661, 3, 'FERNANDEZ POYATO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 188640, '2011-09-10', 567180.00, 'A'), -(1662, 3, 'TREVEJO PARDO JULIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-09-25', 821200.00, 'A'), -(1663, 3, 'GORGA CASSINELLI VICTOR DANIEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 188640, '2011-05-30', 404490.00, 'A'), -(1664, 3, 'MORUECO GONZALEZ JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 188640, '2011-10-09', 558820.00, 'A'), -(1665, 3, 'IRURETA FERNANDEZ PEDRO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 214283, '2011-09-14', 580650.00, 'A'), -(1667, 3, 'TREVEJO PARDO JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-25', 392020.00, 'A'), -(1668, 3, 'BOCOS NUNEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 196234, '2011-10-08', 279710.00, 'A'), -(1669, 3, 'LUIS CASTILLO JOSE AGUSTIN', 191821112, 'CRA 25 CALLE 100', - '557@hotmail.es', '2011-02-03', 168202, '2011-06-16', 222500.00, 'A'), -(167, 1, 'HURTADO BELALCAZAR JOHN JADY', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127300, '2011-08-17', 399710.00, 'A'), -(1670, 3, 'REDONDO GUTIERREZ EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145135, '2011-09-14', 273350.00, 'A'), -(1671, 3, 'MADARIAGA ALONSO RAMON', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 188640, '2011-07-26', 699240.00, 'A'), -(1673, 3, 'REY GONZALEZ LUIS JAVIER', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 188640, '2011-07-26', 283190.00, 'A'), -(1676, 3, 'PEREZ ESTER ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-10-03', 274900.00, 'A'), -(1677, 3, 'GOMEZ-GRACIA HUERTA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 188640, '2011-09-22', 112260.00, 'A'), -(1678, 3, 'DAMASO PUENTE DIEGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 188640, '2011-05-25', 736600.00, 'A'), -(168, 1, 'JUAN PABLO MARTINEZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2010-08-15', 89160.00, 'A'), -(1680, 3, 'DIEZ GONZALEZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-17', 521280.00, 'A'), -(1681, 3, 'LOPEZ LOPEZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', - '853@yahoo.com', '2011-02-03', 196234, '2010-12-13', 567760.00, 'A'), -(1682, 3, 'MIRO LINARES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 133442, '2011-09-03', 274930.00, 'A'), -(1683, 3, 'ROCA PINTADO MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 196234, '2011-05-16', 671410.00, 'A'), -(1684, 3, 'GARCIA BARTOLOME HORACIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 196234, '2011-09-29', 532220.00, 'A'), -(1686, 3, 'BALMASEDA DE AHUMADA DIEZ JUAN LUIS', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 168202, '2011-04-13', 637860.00, 'A'), -(1687, 3, 'FERNANDEZ IMAZ FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 188640, '2011-04-10', 248580.00, 'A'), -(1688, 3, 'ELIAS CASTELLS FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2011-05-19', 329300.00, 'A'), -(1689, 3, 'ANIDO DIAZ DANIEL', 191821112, 'CRA 25 CALLE 100', '491@gmail.com', - '2011-02-03', 188640, '2011-04-04', 900780.00, 'A'), -(1691, 3, 'GATELL ARIMONT MARIA CRISTINA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-17', 877700.00, 'A'), -(1692, 3, 'RIVERA MUNOZ ADONI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 211705, '2011-04-05', 840470.00, 'A'), -(1693, 3, 'LUNA LOPEZ ALICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 188640, '2011-10-01', 569270.00, 'A'), -(1695, 3, 'HAMMOND ANN ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 118021, '2011-05-17', 916770.00, 'A'), -(1698, 3, 'RODRIGUEZ PARAJA MARIA CRISTINA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 188640, '2011-07-15', 649080.00, 'A'), -(1699, 3, 'RUIZ DIAZ JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 188640, '2011-06-24', 359540.00, 'A'), -(17, 1, 'SUAREZ CUEVAS FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 129499, '2011-08-31', 149640.00, 'A'), -(170, 1, 'MARROQUIN AVILA FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-06-04', 965840.00, 'A'), -(1700, 3, 'BACCHELLI ORTEGA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 126180, '2011-06-07', 850450.00, 'A'), -(1701, 3, 'IGLESIAS JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 188640, '2010-09-14', 173630.00, 'A'), -(1702, 3, 'GUTIEZ CUEVAS JULIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 188640, '2010-09-07', 316800.00, 'A'), -('CELL4183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(1704, 3, 'CALDEIRO ZAMORA JESUS CARMELO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 188640, '2011-05-09', 365230.00, 'A'), -(1705, 3, 'ARBONA ABASCAL MANUEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 188640, '2011-02-27', 636760.00, 'A'), -(1706, 3, 'COHEN AMAR MOISES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 196766, '2011-05-20', 88120.00, 'A'), -(1708, 3, 'FERNANDEZ COBOS ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 188640, '2010-11-09', 387220.00, 'A'), -(1709, 3, 'CANAL VIVES JOAQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 196234, '2011-09-27', 345150.00, 'A'), -(171, 1, 'LADINO MORENO JAVIER ORLANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-07-25', 89230.00, 'A'), -(1710, 5, 'GARCIA BERTRAND HECTOR', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 188640, '2011-04-07', 564100.00, 'A'), -(1711, 1, 'CONSTANZA MARIN ESCOBAR', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127799, '2011-03-24', 785060.00, 'A'), -(1712, 1, 'NUNEZ BATALLA FAUSTINO JORGE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-07-26', 232970.00, 'A'), -(1713, 3, 'VILORA LAZARO ERICK MARTIN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-04-26', 809690.00, 'A'), -(1715, 3, 'ELLIOT EDWARD JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-09-26', 318660.00, 'A'), -(1716, 3, 'ALCALDE ORTENO MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 117002, '2011-07-23', 544650.00, 'A'), -(1717, 3, 'CIARAVELLA STEFANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 231989, '2011-06-13', 767260.00, 'A'), -(1718, 3, 'URRA GONZALEZ PEDRO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 118777, '2011-05-02', 202370.00, 'A'), -(172, 1, 'GUERRERO ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-07-15', 548610.00, 'A'), -(1720, 3, 'JIMENEZ RODRIGUEZ ANNET', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 188640, '2011-05-25', 943140.00, 'A'), -(1721, 3, 'LESCAY CASTELLANOS ARNALDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', 585570.00, 'A'), -(1722, 3, 'OCHOA AGUILAR ELIADES', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-05-25', 98410.00, 'A'), -(1723, 3, 'RODRIGUEZ NUNES JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 735340.00, 'A'), -(1724, 3, 'OCHOA BUSTAMANTE ELIADES', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-05-25', 381480.00, 'A'), -(1725, 3, 'MARTINEZ NIEVES JOSE ANGEL', 191821112, 'CRA 25 CALLE 100', - '919@yahoo.es', '2011-02-03', 127591, '2011-05-25', 701360.00, 'A'), -(1727, 3, 'DRAGONI ALAIN ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-05-25', 707850.00, 'A'), -(1728, 3, 'FERNANDEZ LOPEZ MARCOS ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-25', 452090.00, 'A'), -(1729, 3, 'MATURELL ROMERO JORGE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-05-25', 136880.00, 'A'), -(173, 1, 'RUIZ CEBALLOS ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-08-04', 475380.00, 'A'), -(1730, 3, 'LARA CASTELLANO LENNIS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-05-25', 328150.00, 'A'), -(1731, 3, 'GRAHAM CRISTOPHER DRAKE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 203079, '2011-06-27', 230120.00, 'A'), -(1732, 3, 'TORRE LUCA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 188640, '2011-05-11', 166120.00, 'A'), -(1733, 3, 'OCHOA HIDALGO EGLIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-05-25', 140250.00, 'A'), -(1734, 3, 'LOURERIO DELACROIX FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 116511, '2011-09-28', 202900.00, 'A'), -(1736, 3, 'LEVIN FIORELLI ANDRES', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 116366, '2011-08-07', 360110.00, 'A'), -(1739, 3, 'BERRY R ALBERT', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 216125, '2011-08-16', 22170.00, 'A'), -(174, 1, 'NIETO PARRA SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2010-05-11', 731040.00, 'A'), -(1740, 3, 'MARSHALL ROBERT SHEPARD', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 150159, '2011-03-09', 62860.00, 'A'), -(1741, 3, 'HENANDEZ ROY CHRISTOPHER JOHN PATRICK', 191821112, - 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 179614, '2011-09-26', - 247780.00, 'A'), -(1742, 3, 'LANDRY GUILLAUME', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 232263, '2011-04-27', 50330.00, 'A'), -(1743, 3, 'VUCETIC ZELJKO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 232263, '2011-07-25', 508320.00, 'A'), -(1744, 3, 'DE JUANA CELASCO MARIA DEL CARMEN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 188640, '2011-04-16', 390620.00, 'A'), -(1745, 3, 'LABONTE RONALD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 269033, '2011-09-28', 428120.00, 'A'), -(1746, 3, 'NEWMAN PHILIP MARK', 191821112, 'CRA 25 CALLE 100', '557@gmail.com', - '2011-02-03', 231373, '2011-07-25', 968750.00, 'A'), -(1747, 3, 'GRENIER MARIE PIERRE ', 191821112, 'CRA 25 CALLE 100', - '409@facebook.com', '2011-02-03', 244158, '2011-07-03', 559370.00, 'A'), -(1749, 3, 'SHINDER GARY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 244158, '2011-07-25', 775000.00, 'A'), -(175, 3, 'GALLEGOS BASTIDAS CARLOS EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 133211, '2011-08-10', 229090.00, 'A'), -(1750, 3, 'LOPEZ DE GOICOCHEA ZABALA FRANCISCO JAVIER', 191821112, - 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-13', - 203120.00, 'A'), -(1751, 3, 'CORRAL BELLON MANUEL', 191821112, 'CRA 25 CALLE 100', - '538@yahoo.com', '2011-02-03', 177443, '2011-05-02', 690610.00, 'A'), -(1752, 3, 'DE SOLA SOLVAS JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 188640, '2011-10-02', 843700.00, 'A'), -(1753, 3, 'GARCIA ALCALA DIAZ REGANON EVA MARIA', 191821112, 'CRA 25 CALLE 100', - '398@yahoo.com', '2011-02-03', 118777, '2010-03-15', 146680.00, 'A'), -(1754, 3, 'BIELA VILIAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 132958, '2011-08-16', 202290.00, 'A'), -(1755, 3, 'GUIOT CANO JUAN PATRICK', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 232263, '2011-05-23', 571390.00, 'A'), -(1756, 3, 'JIMENEZ DIAZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 188640, '2011-03-27', 250100.00, 'A'), -(1757, 3, 'FOX ELEANORE MAE', 191821112, 'CRA 25 CALLE 100', '117@yahoo.com', - '2011-02-03', 190393, '2011-05-04', 536340.00, 'A'), -(1758, 3, 'TANG VAN SON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 132958, '2011-05-07', 931400.00, 'A'), -(1759, 3, 'SUTTON PETER RONALD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 281673, '2011-06-01', 47960.00, 'A'), -(176, 1, 'GOMEZ IVAN', 191821112, 'CRA 25 CALLE 100', '438@yahoo.com.mx', - '2011-02-03', 127591, '2008-04-09', 952310.00, 'A'), -(1762, 3, 'STOODY MATTHEW FRANCIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-07-21', 84320.00, 'A'), -(1763, 3, 'SEIX MASO ARNAU', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 150699, '2011-05-24', 168880.00, 'A'), -(1764, 3, 'FERNANDEZ REDEL RAQUEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 145135, '2011-09-14', 591440.00, 'A'), -(1765, 3, 'PORCAR DESCALS VICENNTE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 176745, '2011-04-24', 450580.00, 'A'), -(1766, 3, 'PEREZ DE VILLEGAS TRILLO FIGUEROA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 196234, '2011-05-17', 478560.00, 'A'), -('CELL4198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(1767, 3, 'CELDRAN DEGANO ANGEL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 196234, '2011-05-17', 41040.00, 'A'), -(1768, 3, 'TERRAGO MARI FERRAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 188640, '2011-09-30', 769550.00, 'A'), -(1769, 3, 'SZUCHOVSZKY GERGELY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 250256, '2011-05-23', 724630.00, 'A'), -(177, 1, 'SEBASTIAN TORO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127443, '2011-07-14', 74270.00, 'A'), -(1771, 3, 'TORIBIO JOSE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 226612, '2011-09-04', 398570.00, 'A'), -(1772, 3, 'JOSE LUIS BAQUERA PEIRONCELLY', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 133535, '2010-10-19', 49360.00, 'A'), -(1773, 3, 'MADARIAGA VILLANUEVA MIGUEL', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 188640, '2011-04-12', 51090.00, 'A'), -(1774, 3, 'VILLENA BORREGO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '830@terra.com.co', '2011-02-03', 188640, '2011-07-19', 107400.00, 'A'), -(1776, 3, 'VILAR VILLALBA JOSE LUIS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 180124, '2011-09-20', 596330.00, 'A'), -(1777, 3, 'CAGIGAL ORTIZ MACARENA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 214283, '2011-09-14', 830530.00, 'A'), -(1778, 3, 'KORBA ATTILA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 250256, '2011-09-27', 363650.00, 'A'), -(1779, 3, 'KORBA-ELIAS BARBARA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 250256, '2011-09-27', 326670.00, 'A'), -(178, 1, 'AMSILI COHEN HANAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2009-08-29', 514450.00, 'A'), -(1780, 3, 'PINDADO GOMEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 189053, '2011-04-26', 542400.00, 'A'), -(1781, 3, 'IBARRONDO GOMEZ GRACIA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 188640, '2011-09-21', 731990.00, 'A'), -(1782, 3, 'MUNGUIRA GONZALEZ JUAN JULIAN', 191821112, 'CRA 25 CALLE 100', - '54@hotmail.es', '2011-02-03', 188640, '2011-09-06', 32730.00, 'A'), -(1784, 3, 'LANDMAN PIETER MARINUS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 294861, '2011-09-22', 740260.00, 'A'), -(1789, 3, 'SUAREZ AINARA ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 188640, '2011-05-17', 503470.00, 'A'), -(179, 1, 'CARO JUNCO GUIOVANNY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-07-03', 349420.00, 'A'), -(1790, 3, 'MARTINEZ CHACON JOSE JOAQUIN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 188640, '2011-05-20', 592220.00, 'A'), -(1792, 3, 'MENDEZ DEL RION LUCIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 120639, '2011-06-16', 476910.00, 'A'), -(1793, 3, 'VERHULST LAMBERTUS CORNELIA FRANCISCUS ALPHONSUS', 191821112, - 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 295420, '2011-07-04', - 32410.00, 'A'), -(1794, 3, 'YANEZ YAGUE JESUS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 188640, '2011-07-10', 731290.00, 'A'), -(1796, 3, 'GOMEZ ZORRILLA AMATE JOSE MARIOA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 188640, '2011-07-12', 602380.00, 'A'), -(1797, 3, 'LAIZ MORENO ENEKO', 191821112, 'CRA 25 CALLE 100', '219@gmail.com', - '2011-02-03', 127591, '2011-08-05', 334150.00, 'A'), -(1798, 3, 'MORODO RUIZ RUBEN DAVID', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145135, '2011-09-14', 863620.00, 'A'), -(18, 1, 'GARZON VARGAS GUILLERMO FEDERICO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-08-29', 879110.00, 'A'), -(1800, 3, 'ALFARO FAUS MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 196234, '2011-09-14', 987410.00, 'A'), -(1801, 3, 'MORRALLA VALLVERDU ENRIC', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 194601, '2011-07-18', 990070.00, 'A'), -(1802, 3, 'BALBASTRE TEJEDOR JUAN VICENTE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 182860, '2011-08-24', 988120.00, 'A'), -(1803, 3, 'MINGO REIZ FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 188640, '2010-03-24', 970400.00, 'A'), -(1804, 3, 'IRURETA FERNANDEZ JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 214283, '2011-09-10', 887630.00, 'A'), -(1807, 3, 'NEBRO MELLADO JOSE JUAN', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 168996, '2011-08-15', 278540.00, 'A'), -(1808, 3, 'ALBERQUILLA OJEDA JOSE DANIEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 188640, '2011-09-27', 477070.00, 'A'), -(1809, 3, 'BUENDIA NORTE MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 131401, '2011-07-08', 549720.00, 'A'), -(181, 1, 'CASTELLANOS FLORES RODRIGO ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-18', 970470.00, 'A'), -(1811, 3, 'HILBERT ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 196234, '2011-09-08', 937830.00, 'A'), -(1812, 3, 'GONZALES PINTO COTERILLO ADOLFO LORENZO', 191821112, - 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 214283, '2011-09-10', - 736970.00, 'A'), -(1813, 3, 'ARQUES ALVAREZ JOSE RICARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145135, '2011-04-04', 871360.00, 'A'), -(1817, 3, 'CLAUSELL LOW ROBERTO EMILIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 132775, '2011-09-28', 348770.00, 'A'), -(1818, 3, 'BELICHON MARTINEZ JESUS ALVARO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 188640, '2011-04-12', 327010.00, 'A'), -(182, 1, 'GUZMAN NIETO JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-09-20', 241130.00, 'A'), -(1821, 3, 'LINATI DE PUIG JORGE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 196234, '2011-05-18', 47210.00, 'A'), -(1823, 3, 'SINBARRERA ROMA ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 196234, '2011-09-08', 598380.00, 'A'), -(1826, 2, 'JUANES GARATE BRUNO ', 191821112, 'CRA 25 CALLE 100', - '301@gmail.com', '2011-02-03', 118777, '2011-08-21', 877650.00, 'A'), -(1827, 3, 'BOLOS GIMENO ROGELIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 200247, '2010-11-28', 555470.00, 'A'), -(1828, 3, 'ZABALA ASTIGARRAGA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 188640, '2011-09-20', 144410.00, 'A'), -(1831, 3, 'MAPELLI CAFFARENA BORJA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 172381, '2011-09-04', 58200.00, 'A'), -(1833, 3, 'LARMONIE LESLIE MARTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-05-30', 604840.00, 'A'), -(1834, 3, 'WILLEMS ROBERT-JAN MICHAEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 288531, '2011-09-05', 756530.00, 'A'), -(1835, 3, 'ANJEMA LAURENS JAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 128662, '2011-08-29', 968140.00, 'A'), -(1836, 3, 'VERHULST HENRICUS LAMBERTUS MARIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 295420, '2011-04-03', 571100.00, 'A'), -(1837, 3, 'PIERROT JOZEF MARIE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 288733, '2011-05-18', 951100.00, 'A'), -(1838, 3, 'EIKELBOOM HIDDE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-09-02', 42210.00, 'A'), -(1839, 3, 'TAMBINI GOMEZ DE MUNG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 180063, '2011-04-24', 357740.00, 'A'), -(1840, 3, 'MAGANA PEREZ GERARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 135360, '2011-09-28', 662060.00, 'A'), -(1841, 3, 'COURTOISIE BEYHAUT RAFAEL JUAN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 116366, '2011-09-05', 237070.00, 'A'), -(1842, 3, 'ROJAS BENJAMIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-06-13', 199170.00, 'A'), -(1843, 3, 'GARCIA VICENTE EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 150699, '2011-08-10', 284650.00, 'A'), -('CELL4291', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(1844, 3, 'CESTTI LOPEZ RAFAEL GUSTAVO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 144215, '2011-09-27', 825750.00, 'A'), -(1845, 3, 'URTECHO LOPEZ ARMANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 139272, '2011-09-28', 274800.00, 'A'), -(1846, 3, 'SEGURA ESPINOZA ARMANDO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 135360, '2011-09-28', 896730.00, 'A'), -(1847, 3, 'GONZALEZ VEGA LUIS PASTOR', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 135360, '2011-05-18', 659240.00, 'A'), -(185, 1, 'AYALA CARDENAS NELSON MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 855960.00, 'A'), -(1850, 3, 'ROTZINGER ROA KLAUS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 116366, '2011-09-12', 444250.00, 'A'), -(1851, 3, 'FRANCO DE LEON SEBASTIAN', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 116366, '2011-04-26', 63840.00, 'A'), -(1852, 3, 'RIVAS GAGNONI LUIS ARMANDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 135360, '2011-05-18', 986440.00, 'A'), -(1853, 3, 'BARRETO VELASQUEZ JOEL FERNANDO', 191821112, 'CRA 25 CALLE 100', - '104@hotmail.es', '2011-02-03', 116511, '2011-04-27', 740670.00, 'A'), -(1854, 3, 'SEVILLA AMAYA ORLANDO', 191821112, 'CRA 25 CALLE 100', - '264@yahoo.com', '2011-02-03', 136995, '2011-05-18', 744020.00, 'A'), -(1855, 3, 'VALFRE BRALICH ELEONORA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 116366, '2011-06-06', 498080.00, 'A'), -(1857, 3, 'URDANETA DIAMANTES DIEGO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 132958, '2011-09-23', 797590.00, 'A'), -(1858, 3, 'RAMIREZ ALVARADO ROBERT JESUS', 191821112, 'CRA 25 CALLE 100', - '290@yahoo.com.mx', '2011-02-03', 127591, '2011-09-18', 212850.00, 'A'), -(1859, 3, 'GUTTNER DENNIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-06-25', 671470.00, 'A'), -(186, 1, 'CARRASCO SUESCUN ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-15', 36620.00, 'A'), -(1861, 3, 'HEGEMANN JOACHIM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-06-25', 579710.00, 'A'), -(1862, 3, 'MALCHER INGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 292243, '2011-06-23', 742060.00, 'A'), -(1864, 3, 'HOFFMEISTER MALTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 128206, '2011-09-06', 629770.00, 'A'), -(1865, 3, 'BOHME ALEXANDRA LUCE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-09-14', 235260.00, 'A'), -(1866, 3, 'HAMMAN FRANK THOMAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-08-13', 286980.00, 'A'), -(1867, 3, 'GOPPERT MARKUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 145135, '2011-09-05', 729150.00, 'A'), -(1868, 3, 'BISCARO CAROLINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 118777, '2011-09-16', 784790.00, 'A'), -(1869, 3, 'MASCHAT SEBASTIAN STEPHAN ANDREAS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-02-03', 736520.00, 'A'), -(1870, 3, 'WALTHER DANIEL CLAUS PETER', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-03-24', 328220.00, 'A'), -(1871, 3, 'NENTWIG DANIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 289697, '2011-02-03', 431550.00, 'A'), -(1872, 3, 'KARUTZ ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127662, '2011-03-17', 173090.00, 'A'), -(1875, 3, 'KAY KUNNE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 289697, '2011-03-18', 961400.00, 'A'), -(1876, 2, 'SCHLUMPF IVANA PATRICIA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 245206, '2011-03-28', 802690.00, 'A'), -(1877, 3, 'RODRIGUEZ BUSTILLO CONSUELO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 139067, '2011-03-21', 129280.00, 'A'), -(1878, 1, 'REHWALDT RICHARD ULRICH', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 289697, '2009-10-25', 238320.00, 'A'), -(1880, 3, 'FONSECA BEHRENS MANUELA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-18', 303810.00, 'A'), -(1881, 3, 'VOGEL MIRKO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-06-09', 107790.00, 'A'), -(1882, 3, 'WU WEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', - 289697, '2011-03-04', 627520.00, 'A'), -(1884, 3, 'KADOLSKY ANKE SIGRID', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 289697, '2010-10-07', 188560.00, 'A'), -(1885, 3, 'PFLUCKER PLENGE CARLOS HERNAN', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 239124, '2011-08-15', 500140.00, 'A'), -(1886, 3, 'PENA LAGOS MELENIA PATRICIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 935020.00, 'A'), -(1887, 3, 'CALVANO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 118942, '2011-05-02', 174690.00, 'A'), -(1888, 3, 'KUHLEN LOTHAR WILHELM', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 289232, '2011-08-30', 68390.00, 'A'), -(1889, 3, 'QUIJANO RICO SOFIA VICTORIA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 221939, '2011-06-13', 817890.00, 'A'), -(189, 1, 'GOMEZ TRUJILLO SERGIO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-08-17', 985980.00, 'A'), -(1890, 3, 'SCHILBERZ KARIN', 191821112, 'CRA 25 CALLE 100', '405@facebook.com', - '2011-02-03', 287570, '2011-06-23', 884260.00, 'A'), -(1891, 3, 'SCHILBERZ SOPHIE CAHRLOTTE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 287570, '2011-06-23', 967640.00, 'A'), -(1892, 3, 'MOLINA MOLINA MILAGRO DE SUYAPA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 139844, '2011-07-26', 185410.00, 'A'), -(1893, 3, 'BARRIENTOS ESCALANTE RAFAEL ALVARO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 139067, '2011-05-18', 24110.00, 'A'), -(1895, 3, 'ENGELS FRANZBERNARD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 292243, '2011-07-01', 749430.00, 'A'), -(1896, 3, 'FRIEDHOFF SVEN WILHEM', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 289697, '2010-10-31', 54090.00, 'A'), -(1897, 3, 'BARTELS CHRISTIAN JOHAN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 133535, '2011-07-25', 22160.00, 'A'), -(1898, 3, 'NILS REMMEL', 191821112, 'CRA 25 CALLE 100', '214@gmail.com', - '2011-02-03', 256231, '2011-08-05', 948530.00, 'A'), -(1899, 3, 'DR SCHEIBE MATTHIAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 252431, '2011-09-26', 676150.00, 'A'), -(19, 1, 'RIANO ROMERO ALBERTO ELIAS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2009-12-14', 946630.00, 'A'), -(190, 1, 'LLOREDA ORTIZ FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2010-12-20', 30860.00, 'A'), -(1900, 3, 'CARRASCO CATERIANO PEDRO', 191821112, 'CRA 25 CALLE 100', - '255@hotmail.com', '2011-02-03', 286578, '2011-05-02', 535180.00, 'A'), -(1901, 3, 'ROSENBER DIRK PETER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-09-29', 647450.00, 'A'), -(1902, 3, 'LAUBACH JOHANNES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 289697, '2011-05-01', 631720.00, 'A'), -(1904, 3, 'GRUND STEFAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 256231, '2011-08-05', 185990.00, 'A'), -(1905, 3, 'GRUND BEATE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 256231, '2011-08-05', 281280.00, 'A'), -(1906, 3, 'CORZO PAULA MIRIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 180063, '2011-08-02', 848400.00, 'A'), -(1907, 3, 'OESTERHAUS CORNELIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 256231, '2011-03-16', 398170.00, 'A'), -(1908, 1, 'JUAN SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127300, '2011-05-12', 445660.00, 'A'), -(1909, 3, 'VAN ZIJL CHRISTIAN ANDREAS', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 286785, '2011-09-24', 33800.00, 'A'), -(191, 1, 'CASTANEDA CABALLERO JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-09-28', 196370.00, 'A'), -(1910, 3, 'LORZA RUIZ MYRIAM ESPERANZA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-04-29', 831990.00, 'A'), -(192, 1, 'ZEA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-09-09', 889270.00, 'A'), -(193, 1, 'VELEZ VICTOR MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 128662, '2010-10-22', 857250.00, 'A'), -(194, 1, 'ARCINIEGAS GOMEZ ISMAEL', 191821112, 'CRA 25 CALLE 100', - '937@hotmail.com', '2011-02-03', 127591, '2011-05-18', 618450.00, 'A'), -(195, 1, 'LINAREZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-09-12', 520470.00, 'A'), -(1952, 3, 'BERND ERNST HEINZ SCHUNEMANN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 255673, '2011-09-04', 796820.00, 'A'), -(1953, 3, 'BUCHNER RICHARD ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-09-17', 808430.00, 'A'), -(1954, 3, 'CHO YONG BEOM', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 173192, '2011-02-07', 651670.00, 'A'), -(1955, 3, 'BERNECKER WALTER LUDWIG', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 256231, '2011-04-03', 833080.00, 'A'), -(1956, 3, 'SCHIERENBECK THOMAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 256231, '2011-05-03', 210380.00, 'A'), -(1957, 3, 'STEGMANN WOLF DIETER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 128662, '2011-08-27', 552650.00, 'A'), -(1958, 3, 'LEBAGE GONZALEZ VALENTINA CECILIA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 131272, '2011-07-29', 132130.00, 'A'), -(1959, 3, 'CABRERA MACCHI JOSE ', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 180063, '2011-08-02', 2700.00, 'A'), -(196, 1, 'OTERO BERNAL ALVARO ERNESTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2010-04-29', 747030.00, 'A'), -(1960, 3, 'KOO BONKI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', - 127591, '2011-05-15', 617110.00, 'A'), -(1961, 3, 'JODJAHN DE CARVALHO BEIRAL FLAVIA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 118942, '2011-07-05', 77460.00, 'A'), -(1963, 3, 'VIEIRA ROCHA MARQUES ELIANE TEREZINHA', 191821112, - 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118402, '2011-09-13', - 447430.00, 'A'), -(1965, 3, 'KELLEN CRISTINA GATTI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 126180, '2011-07-01', 804020.00, 'A'), -(1966, 3, 'CHAVEZ MARLON TENORIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-25', 132310.00, 'A'), -(1967, 3, 'SERGIO COZZI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 125750, '2011-08-28', 249500.00, 'A'), -(1968, 3, 'REZENDE LIMA JOSE MARCIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 118777, '2011-08-23', 850570.00, 'A'), -(1969, 3, 'RAMOS PEDRO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 118942, '2011-08-03', 504330.00, 'A'), -(1972, 3, 'ADAMS THOMAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 118942, '2011-08-11', 774000.00, 'A'), -(1973, 3, 'WALESKA NUCINI BOGO ANDREA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-23', 859690.00, 'A'), -(1974, 3, 'GERMANO PAULO BUNN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 118439, '2011-08-30', 976440.00, 'A'), -(1975, 3, 'CALDEIRA FILHO RUBENS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 118942, '2011-07-18', 303120.00, 'A'), -(1976, 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 119814, '2011-09-08', 586290.00, 'A'), -(1977, 3, 'GAMAS MARIA CRISTINA ALVES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 118777, '2011-09-19', 22070.00, 'A'), -(1979, 3, 'PORTO WEBER FERREIRA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-07', 691340.00, 'A'), -(1980, 3, 'FONSECA LAURO PINTO', 191821112, 'CRA 25 CALLE 100', - '104@hotmail.es', '2011-02-03', 127591, '2011-08-16', 402140.00, 'A'), -(1981, 3, 'DUARTE ELENA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 118777, '2011-06-15', 936710.00, 'A'), -(1983, 3, 'CECHINEL CRISTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 118942, '2011-06-12', 575530.00, 'A'), -(1984, 3, 'BATISTA PINHERO JOAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 118777, '2011-04-25', 446250.00, 'A'), -(1987, 1, 'ISRAEL JOSE MAXWELL', 191821112, 'CRA 25 CALLE 100', '936@gmail.com', - '2011-02-03', 125894, '2011-07-04', 408350.00, 'A'), -(1988, 3, 'BATISTA CARVALHO RODRIGO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 118864, '2011-09-19', 488410.00, 'A'), -(1989, 3, 'RENO DA SILVEIRA EDNEIA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 118867, '2011-05-03', 216990.00, 'A'), -(199, 1, 'BASTO CORREA FERNANDO ANTONIO ', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-21', 616860.00, 'A'), -(1990, 3, 'SEIDLER KOHNERT G TEIXEIRA CHRISTINA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 119814, '2011-08-23', 619730.00, 'A'), -(1992, 3, 'GUIMARAES COSTA LEONARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 133535, '2011-04-20', 379090.00, 'A'), -(1993, 3, 'BOTTA RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 118777, '2011-09-16', 552510.00, 'A'), -(1994, 3, 'ARAUJO DA SILVA MARCELO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 125666, '2011-08-03', 625260.00, 'A'), -(1995, 3, 'DA SILVA FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 118864, '2011-04-14', 468760.00, 'A'), -(1996, 3, 'MANFIO RODRIGUEZ FERNANDO', 191821112, 'CRA 25 CALLE 100', - '974@yahoo.com', '2011-02-03', 118777, '2011-03-23', 468040.00, 'A'), -(1997, 3, 'NEIVA MORENO DE SOUZA CRISTIANE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-24', 933900.00, 'A'), -(2, 3, 'CHEEVER MICHAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-07-04', 560090.00, 'I'), -(2000, 3, 'ROCHA GUSTAVO ADRIANO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 118288, '2011-07-25', 830340.00, 'A'), -(2001, 3, 'DE ANDRADE CARVALHO VIRGINIA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 118942, '2011-08-11', 575760.00, 'A'), -(2002, 3, 'CAVALCANTI PIERECK GUILHERME', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 180063, '2011-08-01', 387770.00, 'A'), -(2004, 3, 'HOEGEMANN RAMOS CARLOS FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-05-04', 894550.00, 'A'), -(201, 1, 'LUIS FERNANDO AREVALO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-06-17', 156730.00, 'A'), -(2010, 3, 'GOMES BUCHALA JORGE FERNANDO ', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-23', 314800.00, 'A'), -(2011, 3, 'MARTINS SIMAIKA CATIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 118777, '2011-06-01', 155020.00, 'A'), -(2012, 3, 'MONICA CASECA BUENO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 118777, '2011-05-16', 830710.00, 'A'), -(2013, 3, 'ALBERTAL MARCELO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 118000, '2010-09-10', 688480.00, 'A'), -(2015, 3, 'GOMES CANTARELLI JAIRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 118761, '2011-01-11', 685940.00, 'A'), -(2016, 3, 'CADETTI GARBELLINI ENILICE CRISTINA ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-07-11', 578870.00, 'A'), -(2017, 3, 'SPIELKAMP KLAUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 150699, '2011-03-28', 836540.00, 'A'), -(2019, 3, 'GARES HENRI PHILIPPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 135190, '2011-04-05', 720730.00, 'A'), -('CELL4308', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(202, 1, 'LUCIO CHAUSTRE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-05-19', 179240.00, 'A'), -(2023, 3, 'GRECO DE RESENDELUIZ ALFREDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 119814, '2011-04-25', 647940.00, 'A'), -(2024, 3, 'CORTINA EVANDRO JOAO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 118922, '2011-05-12', 153970.00, 'A'), -(2026, 3, 'BASQUES MOURA GERALDO CARLOS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 119814, '2011-09-07', 668250.00, 'A'), -(2027, 3, 'DA SILVA VALDECIR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-08-23', 863150.00, 'A'), -(2028, 3, 'CHI MOW YUNG IVAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-08-21', 311000.00, 'A'), -(2029, 3, 'YUNG MYRA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-08-21', 965570.00, 'A'), -(2030, 3, 'MARTINS RAMALHO PATRICIA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 118777, '2011-03-23', 894830.00, 'A'), -(2031, 3, 'DE LEMOS RIBEIRO GILBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 118951, '2011-07-29', 577430.00, 'A'), -(2032, 3, 'AIROLDI CLAUDIO', 191821112, 'CRA 25 CALLE 100', '973@terra.com.co', - '2011-02-03', 127591, '2011-09-28', 202650.00, 'A'), -(2033, 3, 'ARRUDA MENDES HEILMANN IONE TEREZA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 120773, '2011-09-07', 280990.00, 'A'), -(2034, 3, 'TAVARES DE CARVALHO EDUARDO JOSE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 118942, '2011-08-03', 796980.00, 'A'), -(2036, 3, 'FERNANDES ALARCON RAFAEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 118777, '2011-08-28', 318730.00, 'A'), -(2037, 3, 'SUCHODOLKI SERGIO GUSMAO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 190393, '2011-07-13', 167870.00, 'A'), -(2039, 3, 'ESTEVES MARCAL MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-02-24', 912100.00, 'A'), -(2040, 3, 'CORSI LUIZ ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 118777, '2011-03-25', 911080.00, 'A'), -(2041, 3, 'LOPEZ MONICA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 118795, '2011-05-03', 819090.00, 'A'), -(2042, 3, 'QUINTANILHA LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-05-16', 362230.00, 'A'), -(2043, 3, 'DE CARLI BRUNO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 118777, '2011-05-03', 353890.00, 'A'), -(2045, 3, 'MARINO FRANCA MARILIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 118777, '2011-07-04', 352060.00, 'A'), -(2048, 3, 'VOIGT ALPHONSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 118439, '2010-11-22', 384150.00, 'A'), -(2049, 3, 'ALENCAR ARIMA TATIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 118777, '2011-05-23', 408590.00, 'A'), -(2050, 3, 'LINIS DE ALMEIDA NEILSON', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 125666, '2011-08-03', 890480.00, 'A'), -(2051, 3, 'PINHEIRO DE CASTRO BENETI', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 118942, '2011-08-09', 226640.00, 'A'), -(2052, 3, 'ALVES DO LAGO HELMANN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 118942, '2011-08-01', 461770.00, 'A'), -(2053, 3, 'OLIVO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-03-22', 628900.00, 'A'), -(2054, 3, 'WILLIAM DOMINGUES SERGIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 118085, '2011-08-23', 759220.00, 'A'), -(2055, 3, 'DE SOUZA MENEZES KLEBER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 118777, '2011-04-25', 909400.00, 'A'), -(2056, 3, 'CABRAL NEIDE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-09-16', 269340.00, 'A'), -(2057, 3, 'RODRIGUES RENATO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 118777, '2011-06-15', 618500.00, 'A'), -(2058, 3, 'SPADALE PEDRO JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 118942, '2011-08-03', 284490.00, 'A'), -(2059, 3, 'MARTINS DE ALMEIDA GUSTAVO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 118942, '2011-09-28', 566920.00, 'A'), -(206, 1, 'TORRES HEBER MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 128662, '2011-01-29', 643210.00, 'A'), -(2060, 3, 'IKUNO CELINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 118777, '2011-06-08', 981170.00, 'A'), -(2061, 3, 'DAL BELLO FABIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 129499, '2011-08-20', 205050.00, 'A'), -(2062, 3, 'BENATES ADRIANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-08-23', 81770.00, 'A'), -(2063, 3, 'CARDOSO ALEXANDRE ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-08-23', 793690.00, 'A'), -(2064, 3, 'ZANIOLO DE SOUZA CARLOS HENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 118777, '2011-09-19', 723130.00, 'A'), -(2065, 3, 'DA SILVA LUIZ SIDNEI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 118777, '2011-03-30', 234590.00, 'A'), -(2066, 3, 'RUFATO DE SOUZA LUIZ FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 118777, '2011-08-29', 3560.00, 'A'), -(2067, 3, 'DE MEDEIROS LUCIANA', 191821112, 'CRA 25 CALLE 100', - '994@yahoo.com.mx', '2011-02-03', 118777, '2011-09-10', 314020.00, 'A'), -(2068, 3, 'WOLFF PIAZERA DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 118255, '2011-06-15', 559430.00, 'A'), -(2069, 3, 'DA SILVA FORTUNA MARINA CLAUDIA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 133535, '2011-09-23', 855100.00, 'A'), -(2070, 3, 'PEREIRA BORGES LUCILA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-26', 597210.00, 'A'), -(2072, 3, 'PORROZZI DE ALMEIDA RENATO', 191821112, 'CRA 25 CALLE 100', - '812@hotmail.es', '2011-02-03', 127591, '2011-06-13', 312120.00, 'A'), -(2073, 3, 'KALICHSZTEINN RICARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 118777, '2011-03-23', 298330.00, 'A'), -(2074, 3, 'OCCHIALINI GUIMARAES ANA PAULA', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 118777, '2011-08-03', 555310.00, 'A'), -(2075, 3, 'MAZZUCO FONTES LUIZ ROBERTO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 118777, '2011-05-23', 881570.00, 'A'), -(2078, 3, 'TRAN DINH VAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 132958, '2011-05-07', 98560.00, 'A'), -(2079, 3, 'NGUYEN THI LE YEN', 191821112, 'CRA 25 CALLE 100', - '249@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 298200.00, 'A'), -(208, 1, 'GOMEZ GONZALEZ JORGE MARIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-12', 889010.00, 'A'), -(2080, 3, 'MILA DE LA ROCA JOHANA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 132958, '2011-01-26', 195350.00, 'A'), -(2081, 3, 'RODRIGUEZ DE FLORES LOURDES MARIA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-06-16', 82120.00, 'A'), -(2082, 3, 'FLORES PEREZ FRANCISCO GUILLERMO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-06-23', 824550.00, 'A'), -(2083, 3, 'FRAGACHAN BETANCOUT FRANCISCO JO SE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 132958, '2011-07-04', 876400.00, 'A'), -(2084, 3, 'GAFARO MOLINA CARLOS JULIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-03-22', 908370.00, 'A'), -(2085, 3, 'CACERES REYES JORGEANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 117002, '2011-08-11', 912630.00, 'A'), -(2086, 3, 'ALVAREZ RODRIGUEZ VICTOR ROGELIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 132958, '2011-05-23', 838040.00, 'A'), -(2087, 3, 'GARCES ALVARADO JHAGEIMA JOSEFINA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 132958, '2011-04-29', 452320.00, 'A'), -('CELL4324', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(2089, 3, 'FAVREAU CHOLLET JEAN PIERRE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 132554, '2011-05-27', 380470.00, 'A'), -(209, 1, 'CRUZ RODRIGEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', - '316@hotmail.es', '2011-02-03', 127591, '2011-06-28', 953870.00, 'A'), -(2090, 3, 'GARAY LLUCH URBI ALAIN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 132958, '2011-03-13', 659870.00, 'A'), -(2091, 3, 'LETICIA LETICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-06-07', 157950.00, 'A'), -(2092, 3, 'VELASQUEZ RODULFO RAMON ARISTIDES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-23', 810140.00, 'A'), -(2093, 3, 'PEREZ EDGAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-06-06', 576850.00, 'A'), -(2094, 3, 'PEREZ MARIELA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-06-07', 453840.00, 'A'), -(2095, 3, 'PETRUZZI MANGIARANO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 132958, '2011-03-27', 538650.00, 'A'), -(2096, 3, 'LINARES GORI RICARDO RAMON', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-05-12', 331730.00, 'A'), -(2097, 3, 'LAIRET OLIVEROS CAROLINE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-25', 42680.00, 'A'), -(2099, 3, 'JIMENEZ GARCIA FERNANDO JOSE', 191821112, 'CRA 25 CALLE 100', - '78@hotmail.es', '2011-02-03', 132958, '2011-07-21', 963110.00, 'A'), -(21, 1, 'RUBIO ESCOBAR RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2009-05-21', 639240.00, 'A'), -(2100, 3, 'ZABALA MILAGROS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-07-20', 160860.00, 'A'), -(2101, 3, 'VASQUEZ CRUZ NICOLEDANIELA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 132958, '2011-07-31', 914990.00, 'A'), -(2102, 3, 'REYES FIGUERA RAMON ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 126674, '2011-04-03', 92340.00, 'A'), -(2104, 3, 'RAMIREZ JIMENEZ MARYLIN CAROLINA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 132958, '2011-06-14', 306760.00, 'A'), -(2105, 3, 'TELLES GUILLEN INNA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 132958, '2011-09-07', 383520.00, 'A'), -(2106, 3, 'ALVAREZ CARMEN MARINA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 128662, '2011-07-20', 997340.00, 'A'), -(2107, 3, 'MARTINEZ YRIGOYEN NABUCODONOSOR', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 132958, '2011-07-21', 836110.00, 'A'), -(2108, 5, 'FERNANDEZ RUIZ IGNACIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-09-01', 188530.00, 'A'), -(211, 1, 'RIVEROS GARCIA JORGE IVAN', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-09-01', 650050.00, 'A'), -(2110, 3, 'CACERES REYES JORGE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 117002, '2011-08-08', 606030.00, 'A'), -(2111, 3, 'GELFI MARCOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 199862, '2011-05-17', 727190.00, 'A'), -(2112, 3, 'CERDA CASTILLO CARMEN GLORIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', 817870.00, 'A'), -(2113, 3, 'RANGEL FERNANDEZ LEONARDO JOSE', 191821112, 'CRA 25 CALLE 100', - '856@hotmail.com', '2011-02-03', 133211, '2011-05-16', 907750.00, 'A'), -(2114, 3, 'ROTHSCHILD VARGAS MICHAEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 132165, '2011-02-05', 85170.00, 'A'), -(2115, 3, 'RUIZ GRATEROL INGRID JOHANNA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 132958, '2011-05-16', 702600.00, 'A'), -(2116, 2, 'DEARMAS ALBERTO FERNANDO ', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 150699, '2011-07-19', 257500.00, 'A'), -(2117, 3, 'BOSCAN ARRIETA ERICK HUMBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 132958, '2011-07-12', 179680.00, 'A'), -(2118, 3, 'GUILLEN DE TELLES NENCY JOSEFINA', 191821112, 'CRA 25 CALLE 100', - '56@facebook.com', '2011-02-03', 132958, '2011-09-07', 125900.00, 'A'), -(212, 1, 'BUSTAMANTE BUSTAMANTE CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-26', 943260.00, 'A'), -(2120, 2, 'MARK ANTHONY STUART', 191821112, 'CRA 25 CALLE 100', - '661@terra.com.co', '2011-02-03', 127591, '2011-06-26', 74600.00, 'A'), -(2122, 3, 'SCOCOZZA GIOVANNA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 190526, '2011-09-23', 284220.00, 'A'), -(2125, 3, 'CHAVES MOLINA JULIO FELIPE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 132165, '2011-09-22', 295360.00, 'A'), -(2127, 3, 'BERNARDES DE SOUZA TONIATI VIRGINIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-06-30', 565090.00, 'A'), -(2129, 2, 'BRIAN DAVIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-03-19', 78460.00, 'A'), -(213, 1, 'PAREJO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-08-11', 766120.00, 'A'), -(2131, 3, 'DE OLIVEIRA LOPES REGINALDO LAZARO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-10-05', 404910.00, 'A'), -(2132, 3, 'DE MELO MING AZEVEDO PAULO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-10-05', 440370.00, 'A'), -(2137, 3, 'SILVA JORGE ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-10-05', 230570.00, 'A'), -(214, 1, 'CADENA RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-08-08', 840.00, 'A'), -(2142, 3, 'VIEIRA VEIGA PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-06-30', 85330.00, 'A'), -(2144, 3, 'ESCRIBANO LEONARDA DEL VALLE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 133535, '2011-03-24', 941440.00, 'A'), -(2145, 3, 'RODRIGUEZ MENENDEZ BERNARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 148511, '2011-08-02', 588740.00, 'A'), -(2146, 3, 'GONZALEZ COURET DANIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 148511, '2011-08-09', 119380.00, 'A'), -(2147, 3, 'GARCIA SOTO WILLIAM', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 135360, '2011-05-18', 830660.00, 'A'), -(2148, 3, 'MENESES ORELLANA RICARDO TOMAS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 132165, '2011-06-13', 795200.00, 'A'), -(2149, 3, 'GUEVARA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-06-27', 483990.00, 'A'), -(215, 1, 'BELTRAN PINZON JUAN CARLO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-08-08', 705860.00, 'A'), -(2151, 2, 'LLANES GARRIDO JAVIER ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-08-30', 719750.00, 'A'), -(2152, 3, 'CHAVARRIA CHAVES RAFAEL ADRIAN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 132165, '2011-09-20', 495720.00, 'A'), -(2153, 2, 'MILBERT ANDREASPETER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-08-10', 319370.00, 'A'), -(2154, 2, 'GOMEZ SILVA LOZANO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127300, '2011-05-30', 109670.00, 'A'), -(2156, 3, 'WINTON ROBERT DOUGLAS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 115551, '2011-08-08', 622290.00, 'A'), -(2157, 2, 'ROMERO PINA MANUEL GUSTAVO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2011-05-05', 340650.00, 'A'), -(2158, 3, 'KARWALSKI MATTHEW REECE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 117229, '2011-08-29', 836380.00, 'A'), -(2159, 2, 'KIM JUNG SIK ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-07-08', 159950.00, 'A'), -(216, 1, 'MARTINEZ VALBUENA JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 526750.00, 'A'), -(2160, 3, 'AGAR ROBERT ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '81@hotmail.es', '2011-02-03', 116862, '2011-06-11', 290620.00, 'A'), -(2161, 3, 'IGLESIAS EDGAR ALEXIS', 191821112, 'CRA 25 CALLE 100', - '645@facebook.com', '2011-02-03', 131272, '2011-04-04', 973240.00, 'A'), -(2163, 2, 'NOAIN MORENO CECILIA KARIM ', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-06-22', 51950.00, 'A'), -(2164, 2, 'FIGUEROA HEBEL ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-04-26', 276760.00, 'A'), -(2166, 5, 'FRANDBERG DAN RICHARD VERNER', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 134022, '2011-04-06', 309480.00, 'A'), -(2168, 2, 'CONTRERAS LILLO EDUARDO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-04-27', 389320.00, 'A'), -(2169, 2, 'BLANCO VALLE RICARDO ', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2011-07-13', 355950.00, 'A'), -(2171, 2, 'BELTRAN ZAVALA JIMI ALFONSO MIGUEL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 126674, '2011-08-22', 991000.00, 'A'), -(2172, 2, 'RAMIRO OREGUI JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 133535, '2011-04-27', 119700.00, 'A'), -(2175, 2, 'FENG PUYO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 302172, '2011-10-07', 965660.00, 'A'), -(2176, 3, 'CLERICI GUIDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 116366, '2011-08-30', 522970.00, 'A'), -(2177, 1, 'SEIJAS GUNTER LUIS MANUEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-09-02', 717890.00, 'A'), -(2178, 2, 'SHOSHANI MOSHE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-06-13', 20520.00, 'A'), -(218, 3, 'HUCHICHALEO ARSENDIGA FRANCISCA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-05-05', 690.00, 'A'), -(2181, 2, 'DOMINGO BARTOLOME LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', - '173@terra.com.co', '2011-02-03', 127591, '2011-04-18', 569030.00, 'A'), -(2182, 3, 'GONZALEZ RIJO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-10-02', 795610.00, 'A'), -(2183, 2, 'ANDROVICH MORENO LIZETH LILIAN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127300, '2011-10-10', 270970.00, 'A'), -(2184, 2, 'ARREAZA LUGO JESUS ALFREDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-08-08', 968030.00, 'A'), -(2185, 2, 'NAVEDA CANELON KATHERINE', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 132775, '2011-09-14', 27250.00, 'A'), -(2189, 2, 'LUGO BEHRENS DENISE SOFIA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-08', 253980.00, 'A'), -(2190, 2, 'ERICA ROSE MOLDENHAUVER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-06-25', 175480.00, 'A'), -(2192, 2, 'SOLORZANO GARCIA ANDREINA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 50790.00, 'A'), -(2193, 3, 'DE LA COSTE MARIA CAROLINA', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-07-26', 907640.00, 'A'), -(2194, 2, 'MARTINEZ DIAZ JUAN JOSE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-04-08', 385810.00, 'A'), -(2195, 2, 'GALARRAGA ECHEVERRIA DAYEN ALI', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-07-13', 206150.00, 'A'), -(2196, 2, 'GUTIERREZ RAMIREZ HECTOR JOSE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 133211, '2011-06-07', 873330.00, 'A'), -(2197, 2, 'LOPEZ GONZALEZ SILVIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127662, '2011-09-01', 748170.00, 'A'), -(2198, 2, 'SEGARES LUTZ JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-08-07', 120880.00, 'A'), -(2199, 2, 'NADER MARTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127538, '2011-08-12', 359880.00, 'A'), -(22, 1, 'CARDOZO AMAYA JORGE HUMBERTO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-07-25', 908720.00, 'A'), -(2200, 3, 'NATERA BERMUDEZ OSWALDO JOSE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2010-10-18', 436740.00, 'A'), -(2201, 2, 'COSTA RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 150699, '2011-09-01', 104090.00, 'A'), -(2202, 5, 'GRUNDY VALENZUELA ALAN PATRICK', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-09-08', 210230.00, 'A'), -(2203, 2, 'MONTENEGRO DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2011-05-26', 738890.00, 'A'), -(2204, 2, 'TAMAI BUNGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-08-24', 63730.00, 'A'), -(2205, 5, 'VINHAS FORTUNA EDSON', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 133535, '2011-09-23', 102010.00, 'A'), -(2206, 2, 'RUIZ ERBS MARIO ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-07-19', 318860.00, 'A'), -(2207, 2, 'VENTURA TINEO MARCEL ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-08-08', 288240.00, 'A'), -(2210, 2, 'RAMIREZ GUZMAN RICARDO JAIME', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-04-28', 338740.00, 'A'), -(2211, 2, 'STERNBERG GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 132958, '2011-09-04', 18070.00, 'A'), -(2212, 2, 'MARTELLO ALEJOS ROGER ADOLFO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127443, '2011-06-20', 74120.00, 'A'), -(2213, 2, 'CASTANEDA RAFAEL ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 316410.00, 'A'), -(2214, 2, 'LIMON MARTINEZ WILBERT DE JESUS', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128904, '2011-09-19', 359690.00, 'A'), -(2215, 2, 'PEREZ HERNANDEZ MONICA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 133211, '2011-05-23', 849240.00, 'A'), -(2216, 2, 'AWAD LOBATO RICARDO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', - '853@hotmail.com', '2011-02-03', 127591, '2011-04-12', 167100.00, 'A'), -(2217, 2, 'CEPEDA VANEGAS ENDER ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 132958, '2011-08-22', 287770.00, 'A'), -(2218, 2, 'PEREZ CHIQUIN HECTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 132572, '2011-04-13', 937580.00, 'A'), -(2220, 5, 'FRANCO DELGADILLO RONALD FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 132775, '2011-09-16', 310190.00, 'A'), -(2222, 2, 'ALCAIDE ALONSO JUAN MIGUEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2011-05-02', 455360.00, 'A'), -(2223, 3, 'BROWNING BENJAMIN MARK', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-06-09', 45230.00, 'A'), -(2225, 3, 'HARWOO BENJAMIN JOEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 164620.00, 'A'), -(2226, 3, 'HOEY TIMOTHY ROSS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-06-09', 242910.00, 'A'), -(2227, 3, 'FERGUSON GARRY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-07-28', 720700.00, 'A'), -(2228, 3, 'NORMAN NEVILLE ROBERT', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 288493, '2011-06-29', 874750.00, 'A'), -(2229, 3, 'KUK HYUN CHAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 128662, '2011-03-22', 211660.00, 'A'), -(223, 1, 'PINZON PLAZA MARCOS VINICIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 856300.00, 'A'), -(2230, 3, 'SLIPAK NATALIA ANDREA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-07-27', 434070.00, 'A'), -(2231, 3, 'BONELLI MASSIMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 170601, '2011-07-11', 535340.00, 'A'), -(2233, 3, 'VUYLSTEKE ALEXANDER ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 284647, '2011-09-11', 266530.00, 'A'), -(2234, 3, 'DRESSE ALAIN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 284272, '2011-04-19', 209100.00, 'A'), -(2235, 3, 'PAIRON JEAN LOUIS MARIE RAIMOND', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 284272, '2011-03-03', 245940.00, 'A'), -(2236, 3, 'DEVIANE ACHIM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 284272, '2010-11-14', 602370.00, 'A'), -(2239, 3, 'DE CANNIERE LOUIS GEORFES HELE MARIE-JOZEF', 191821112, - 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 285511, '2011-09-11', - 993540.00, 'A'), -(2240, 1, 'ERGO ROBERT', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-09-28', 278270.00, 'A'), -(2241, 3, 'MYRTES RODRIGUEZ MORGANA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 118777, '2011-09-18', 410740.00, 'A'), -(2242, 3, 'BRECHBUEHL HANSRUDOLF', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 249059, '2011-07-27', 218900.00, 'A'), -(2243, 3, 'IVANA SCHLUMPF', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 245206, '2011-04-08', 862270.00, 'A'), -(2244, 3, 'JESSICA JACCART', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 189512, '2011-08-28', 654640.00, 'A'), -(2246, 3, 'PAUSELLI MARIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 210050, '2011-09-26', 468090.00, 'A'), -(2247, 3, 'VOLONTEIRO RICCARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 118777, '2011-04-13', 281230.00, 'A'), -(2248, 3, 'HOFFMANN ALVIR ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 120773, '2011-08-23', 1900.00, 'A'), -(2249, 3, 'MANTOVANI DANIEL FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 118942, '2011-08-09', 165820.00, 'A'), -(225, 1, 'DUARTE RUEDA JAVIER ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-29', 293110.00, 'A'), -(2250, 3, 'LIMA DA COSTA BRENO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 118777, '2011-03-23', 823370.00, 'A'), -(2251, 3, 'TAMBORIN MACIEL MAGALI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-08-23', 619420.00, 'A'), -(2252, 3, 'BELLO DE MUORA BIANCA', 191821112, 'CRA 25 CALLE 100', - '969@gmail.com', '2011-02-03', 118942, '2011-08-03', 626970.00, 'A'), -(2253, 3, 'VINHAS FORTUNA PIETRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 133535, '2011-09-23', 276600.00, 'A'), -(2255, 3, 'BLUMENTHAL JAIRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 117630, '2011-07-20', 680590.00, 'A'), -(2256, 3, 'DOS REIS FILHO ELPIDIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 120773, '2011-08-07', 896720.00, 'A'), -(2257, 3, 'COIMBRA CARDOSO MUNARI FERNANDA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-09', 441830.00, 'A'), -(2258, 3, 'LAZANHA FLAVIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 118942, '2011-06-14', 519000.00, 'A'), -(2259, 3, 'LAZANHA FLAVIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 118942, '2011-06-14', 269480.00, 'A'), -(226, 1, 'HUERFANO FLOREZ JOHN FAVER', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-07-29', 148340.00, 'A'), -(2260, 3, 'JOVETTA EDILSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 118941, '2011-09-19', 790430.00, 'A'), -(2261, 3, 'DE OLIVEIRA ANDRE RICARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 118942, '2011-07-25', 143680.00, 'A'), -(2263, 3, 'MUNDO TEIXEIRA CARVALHO SILVIA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 118864, '2011-09-19', 304670.00, 'A'), -(2264, 3, 'FERREIRA CINTRA ADRIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 128662, '2011-04-08', 481910.00, 'A'), -(2265, 3, 'AUGUSTO DE OLIVEIRA MARCOS', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 118685, '2011-08-09', 495530.00, 'A'), -(2266, 3, 'CHEN ROBERTO LUIZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 118777, '2011-03-15', 31920.00, 'A'), -(2268, 3, 'WROBLESKI DIENSTMANN RAQUEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 117630, '2011-05-15', 269320.00, 'A'), -(2269, 3, 'MALAGOLA GEDERSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 118864, '2011-05-30', 327540.00, 'A'), -(227, 1, 'LOPEZ ESCOBAR CARLOS ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-06', 862360.00, 'A'), -(2271, 3, 'GOMES EVANDRO HENRIQUE', 191821112, 'CRA 25 CALLE 100', - '199@hotmail.es', '2011-02-03', 118777, '2011-03-24', 166100.00, 'A'), -(2273, 3, 'LANDEIRA FERNANDEZ JESUS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-06-21', 207990.00, 'A'), -(2274, 3, 'ROSSI RENATO', 191821112, 'CRA 25 CALLE 100', '791@hotmail.es', - '2011-02-03', 118777, '2011-09-19', 16170.00, 'A'), -(2275, 3, 'CALMON RANGEL PATRICIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-08-23', 456890.00, 'A'), -(2277, 3, 'CIFU NETO ROQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 118777, '2011-04-27', 808940.00, 'A'), -(2278, 3, 'GONCALVES PRETO FRANCISCO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 118942, '2011-07-25', 336930.00, 'A'), -(2279, 3, 'JORGE JUNIOR ROBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 118777, '2011-05-09', 257840.00, 'A'), -(2281, 3, 'ELENCIUC DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 118777, '2011-04-20', 618510.00, 'A'), -(2283, 3, 'CUNHA MENDEZ RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 119855, '2011-07-18', 431190.00, 'A'), -(2286, 3, 'DIAZ LENICE APARECIDA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-03', 977840.00, 'A'), -(2288, 3, 'DE CARVALHO SIGEL TATIANA', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 118777, '2011-07-04', 123920.00, 'A'), -(229, 1, 'GALARZA GIRALDO SERGIO ALDEMAR', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 150699, '2011-09-17', 746930.00, 'A'), -(2290, 3, 'ACHOA MORANDI BORGUES SIBELE MARIA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 118777, '2011-09-12', 553890.00, 'A'), -(2291, 3, 'EPAMINONDAS DE ALMEIDA DELIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 118777, '2011-09-22', 14080.00, 'A'), -(2293, 3, 'REIS CASTRO SHANA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 118942, '2011-08-03', 1430.00, 'A'), -(2294, 3, 'BERNARDES JUNIOR ARMANDO', 191821112, 'CRA 25 CALLE 100', - '678@gmail.com', '2011-02-03', 127591, '2011-08-30', 780930.00, 'A'), -(2295, 3, 'LEMOS DE SOUZA AGUIAR SERGIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 118777, '2011-10-03', 900370.00, 'A'), -(2296, 3, 'CARVALHO ADAMS KARIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 118942, '2011-08-11', 159040.00, 'A'), -(2297, 3, 'GALLINA SILVANA BRASILEIRA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 94110.00, 'A'), -(23, 1, 'COLMENARES PEDREROS EDUARDO ADOLFO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 625870.00, 'A'), -(2300, 3, 'TAVEIRA DE SIQUEIRA TANIA APARECIDA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-24', 443910.00, 'A'), -(2301, 3, 'DA SIVA LIMA ANDRE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-08-23', 165020.00, 'A'), -(2302, 3, 'GALVAO GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 118942, '2011-09-12', 493370.00, 'A'), -(2303, 3, 'DA COSTA CRUZ GABRIELA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 118777, '2011-07-27', 971800.00, 'A'), -(2304, 3, 'BERNHARD GOTTFRIED RABER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-04-30', 378870.00, 'A'), -(2306, 3, 'ALDANA URIBE PABLO AXEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 145135, '2011-05-08', 758160.00, 'A'), -(2308, 3, 'FLORES ALONSO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 145135, '2011-04-26', 995310.00, 'A'), -('CELL4330', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(2309, 3, 'MADRIGAL MIER Y TERAN LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 145135, '2011-02-23', 414650.00, 'A'), -(231, 1, 'ZAPATA CEBALLOS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127662, '2011-08-16', 430320.00, 'A'), -(2310, 3, 'GONZALEZ ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 145135, '2011-05-19', 87330.00, 'A'), -(2313, 3, 'MONTES PORTO ANDREA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 145135, '2011-09-01', 929180.00, 'A'), -(2314, 3, 'ROCHA SUSUNAGA SERGIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2010-10-18', 541540.00, 'A'), -(2315, 3, 'VASQUEZ CALERO FEDERICO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 920160.00, 'A'), -(2317, 3, 'GONZALEZ FERNANDEZ YUSSEN ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-26', 120530.00, 'A'), -(2319, 3, 'ATTIAS WENGROWSKY DAVID', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 150581, '2011-09-07', 8580.00, 'A'), -(232, 1, 'OSPINA ABUCHAIBE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 133535, '2011-07-14', 748960.00, 'A'), -(2320, 3, 'EFRON TOPOROVSKY INES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 116511, '2011-07-15', 20810.00, 'A'), -(2321, 3, 'LUNA PLA DARIO', 191821112, 'CRA 25 CALLE 100', '95@terra.com.co', - '2011-02-03', 145135, '2011-09-07', 78320.00, 'A'), -(2322, 1, 'VAZQUEZ DANIELA', 191821112, 'CRA 25 CALLE 100', '190@gmail.com', - '2011-02-03', 145135, '2011-05-19', 329170.00, 'A'), -(2323, 3, 'BALBI BALBI JUAN DE DIOS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-23', 410880.00, 'A'), -(2324, 3, 'MARROQUIN FERNANDEZ GELACIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-03-23', 66880.00, 'A'), -(2325, 3, 'VAZQUEZ ZAVALA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 145135, '2011-04-11', 101770.00, 'A'), -(2326, 3, 'SOTO MARTINEZ MARIA ELENA', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-03-23', 308200.00, 'A'), -(2328, 3, 'HERNANDEZ MURILLO RICARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-22', 253830.00, 'A'), -(233, 1, 'HADDAD LINERO YEBRAIL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 130608, '2010-06-17', 453830.00, 'A'), -(2330, 3, 'TERMINEL HERNANDEZ DANIELA PATRICIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 190393, '2011-08-15', 48940.00, 'A'), -(2331, 3, 'MIJARES FERNANDEZ MAGDALENA GUADALUPE', 191821112, - 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-31', - 558440.00, 'A'), -(2332, 3, 'GONZALEZ LUNA CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 146258, '2011-04-26', 645400.00, 'A'), -(2333, 3, 'DIAZ TORREJON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 145135, '2011-05-03', 551690.00, 'A'), -(2335, 3, 'PADILLA GUTIERREZ JESUS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 456120.00, 'A'), -(2336, 3, 'TORRES CORONA JORGE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', 813900.00, 'A'), -(2337, 3, 'CASTRO RAMSES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 150581, '2011-07-04', 701120.00, 'A'), -(2338, 3, 'APARICIO VALLEJO RUSSELL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2011-03-16', 63890.00, 'A'), -(2339, 3, 'ALBOR FERNANDEZ LUIS ARTURO', 191821112, 'CRA 25 CALLE 100', - '574@gmail.com', '2011-02-03', 147467, '2011-05-09', 216110.00, 'A'), -(234, 1, 'DOMINGUEZ GOMEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '942@hotmail.com', '2011-02-03', 127591, '2010-08-22', 22260.00, 'A'), -(2342, 3, 'REY ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '110@facebook.com', - '2011-02-03', 127591, '2011-03-04', 313330.00, 'A'), -(2343, 3, 'MENDOZA GONZALES ADRIANA', 191821112, 'CRA 25 CALLE 100', - '295@yahoo.com', '2011-02-03', 127591, '2011-03-23', 178720.00, 'A'), -(2344, 3, 'RODRIGUEZ SEGOVIA JESUS ALONSO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2011-07-26', 953590.00, 'A'), -(2345, 3, 'GONZALEZ PELAEZ EDUARDO DAVID', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 231790.00, 'A'), -(2347, 3, 'VILLEDA GARCIA DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 144939, '2011-05-29', 795600.00, 'A'), -(2348, 3, 'FERRER BURGES EMILIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', 83430.00, 'A'), -(2349, 3, 'NARRO ROBLES LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 145135, '2011-03-16', 30330.00, 'A'), -(2350, 3, 'ZALDIVAR UGALDE CARLOS IGNACIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145135, '2011-06-19', 901380.00, 'A'), -(2351, 3, 'VARGAS RODRIGUEZ VALENTE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 146258, '2011-04-26', 415910.00, 'A'), -(2354, 3, 'DEL PIERO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 145135, '2011-05-09', 19890.00, 'A'), -(2355, 3, 'VILLAREAL ANA CRISTINA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-03-23', 211810.00, 'A'), -(2356, 3, 'GARRIDO FERRAN JORGE ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 999370.00, 'A'), -(2357, 3, 'PEREZ PRECIADO EDMUNDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-22', 361450.00, 'A'), -(2358, 3, 'AGUIRRE VIGNAU DANIEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 150581, '2011-08-21', 809110.00, 'A'), -(2359, 3, 'LOPEZ SESMA TOMAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 146258, '2011-09-14', 961200.00, 'A'), -(236, 1, 'VENTO BETANCOURT LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-03-19', 682230.00, 'A'), -(2360, 3, 'BERNAL MALDONADO GUILLERMO JAVIER', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 118777, '2011-09-19', 378670.00, 'A'), -(2361, 3, 'GUZMAN DELGADO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-08-22', 9770.00, 'A'), -(2362, 3, 'GUZMAN DELGADO MARTIN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 912850.00, 'A'), -(2363, 3, 'GUSMAND ELGADO JORGE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-08-22', 534910.00, 'A'), -(2364, 3, 'RENDON BUICK JORGE JOSE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 145135, '2011-07-26', 936010.00, 'A'), -(2365, 3, 'HERNANDEZ HERNANDEZ HERNANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 75340.00, 'A'), -(2366, 3, 'ALVAREZ PAZ PEDRO RAFAEL ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145135, '2011-01-02', 568650.00, 'A'), -(2367, 3, 'MIJARES DE LA BARREDA FERNANDA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 145135, '2011-07-31', 617240.00, 'A'), -(2368, 3, 'MARTINEZ LOPEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145135, '2011-08-24', 380250.00, 'A'), -(2369, 3, 'GAYTAN MILLAN YANERI', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 49520.00, 'A'), -(237, 1, 'BARGUIL ASSIS DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 117460, '2009-09-03', 161770.00, 'A'), -(2370, 3, 'DURAN HEREDIA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 145135, '2011-04-15', 106850.00, 'A'), -(2371, 3, 'SEGURA MIJARES CRISTOBAL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 145135, '2011-07-31', 385700.00, 'A'), -(2372, 3, 'TEPOS VALTIERRA ERIK ARTURO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 116345, '2011-09-01', 607930.00, 'A'), -(2373, 3, 'RODRIGUEZ AGUILAR EDMUNDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 145135, '2011-05-04', 882570.00, 'A'), -(2374, 3, 'MYSLABODSKI MICHAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 145135, '2011-03-08', 589060.00, 'A'), -(2375, 3, 'HERNANDEZ MIRELES JATNIEL ELIOENAI', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', 297600.00, 'A'), -(2376, 3, 'SNELL FERNANDEZ SYNTYHA ROCIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 720830.00, 'A'), -(2378, 3, 'HERNANDEZ EIVET AARON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-07-26', 394200.00, 'A'), -(2379, 3, 'LOPEZ GARZA JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-08-22', 837000.00, 'A'), -(238, 1, 'GARCIA PINO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-05-10', 762140.00, 'A'), -(2381, 3, 'TOSCANO ESTRADA RUBEN ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-08-22', 500940.00, 'A'), -(2382, 3, 'RAMIREZ HUDSON ROGER SILVESTER', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-22', 497550.00, 'A'), -(2383, 3, 'RAMOS JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '362@yahoo.es', - '2011-02-03', 127591, '2011-08-22', 984940.00, 'A'), -(2384, 3, 'CORTES CERVANTES ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 145135, '2011-04-11', 432020.00, 'A'), -(2385, 3, 'POZOS ESQUIVEL DAVID', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-27', 205310.00, 'A'), -(2387, 3, 'ESTRADA AGUIRRE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-08-22', 36470.00, 'A'), -(2388, 3, 'GARCIA RAMIREZ RAMON', 191821112, 'CRA 25 CALLE 100', '177@yahoo.es', - '2011-02-03', 127591, '2011-08-22', 990910.00, 'A'), -(2389, 3, 'PRUD HOMME GARCIA CUBAS XAVIER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-18', 845140.00, 'A'), -(239, 1, 'PINZON ARDILA GUSTAVO ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-06-01', 325400.00, 'A'), -(2390, 3, 'ELIZABETH OCHOA ROJAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 145135, '2011-05-21', 252950.00, 'A'), -(2391, 3, 'MEZA ALVAREZ JOSE ALBERTO', 191821112, 'CRA 25 CALLE 100', - '646@terra.com.co', '2011-02-03', 144939, '2011-05-09', 729340.00, 'A'), -(2392, 3, 'HERRERA REYES RENATO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2010-02-28', 887860.00, 'A'), -(2393, 3, 'MURILLO GARIBAY GILBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145135, '2011-08-20', 251280.00, 'A'), -(2394, 3, 'GARCIA JIMENEZ CARLOS MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-10-09', 592830.00, 'A'), -(2395, 3, 'GUAGNELLI MARTINEZ BLANCA MONICA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 145184, '2010-10-05', 210320.00, 'A'), -(2397, 3, 'GARCIA CISNEROS RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 128662, '2011-07-04', 734530.00, 'A'), -(2398, 3, 'MIRANDA ROMO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 853340.00, 'A'), -(24, 1, 'ARREGOCES GARZON NELSON ORLANDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127783, '2011-08-12', 403190.00, 'A'), -(240, 1, 'ARCINIEGAS GOMEZ ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-05-18', 340590.00, 'A'), -(2400, 3, 'HERRERA ABARCA EDUARDO VICENTE ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 755620.00, 'A'), -(2403, 3, 'CASTRO MONCAYO LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 145135, '2011-07-29', 617260.00, 'A'), -(2404, 3, 'GUZMAN DELGADO OSBALDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 56250.00, 'A'), -(2405, 3, 'GARCIA LOPEZ DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-08-22', 429500.00, 'A'), -(2406, 3, 'JIMENEZ GAMEZ RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 245206, '2011-03-23', 978720.00, 'A'), -(2407, 3, 'BECERRA MARTINEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 145135, '2011-08-23', 605130.00, 'A'), -(2408, 3, 'GARCIA MARTINEZ BERNARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 89480.00, 'A'), -(2409, 3, 'URRUTIA RAYAS BALTAZAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-08-22', 632020.00, 'A'), -(241, 1, 'MEDINA AGUILA NESTOR EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-09-09', 726730.00, 'A'), -(2411, 3, 'VERGARA MENDOZAVICTOR HUGO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 145135, '2011-06-15', 562230.00, 'A'), -(2412, 3, 'MENDOZA MEDINA JORGE IGNACIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 136170.00, 'A'), -(2413, 3, 'CORONADO CASTILLO HUGO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 147529, '2011-05-09', 994160.00, 'A'), -(2414, 3, 'GONZALEZ SOTO DELIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-03-23', 562280.00, 'A'), -(2415, 3, 'HERNANDEZ FLORES STEPHANIE REYNA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 828940.00, 'A'), -(2416, 3, 'ABRAJAN GUERRERO MARIA DE LOS ANGELES', 191821112, - 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-23', 457860.00, - 'A'), -(2417, 3, 'HERNANDEZ LOERA ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 802490.00, 'A'), -(2418, 3, 'TARIN LOPEZ JOSE CARMEN', 191821112, 'CRA 25 CALLE 100', - '117@gmail.com', '2011-02-03', 127591, '2011-03-23', 638870.00, 'A'), -(242, 1, 'JULIO NARVAEZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-07-05', 611890.00, 'A'), -(2420, 3, 'BATTA MARQUEZ VICTOR ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 145135, '2011-08-23', 17820.00, 'A'), -(2423, 3, 'GONZALEZ REYES JUAN JOSE', 191821112, 'CRA 25 CALLE 100', - '55@yahoo.es', '2011-02-03', 127591, '2011-07-26', 758070.00, 'A'), -(2425, 3, 'ALVAREZ RODRIGUEZ HIRAM RAMSES', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-03-23', 847420.00, 'A'), -(2426, 3, 'FEMATT HERNANDEZ JESUS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 145135, '2011-03-23', 164130.00, 'A'), -(2427, 3, 'GUTIERRES ORTEGA FRANCISCO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 278410.00, 'A'), -(2428, 3, 'JIMENEZ DIAZ JUAN JORGE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145135, '2011-05-13', 899650.00, 'A'), -(2429, 3, 'VILLANUEVA PEREZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', - '656@yahoo.es', '2011-02-03', 150449, '2011-03-23', 663000.00, 'A'), -(243, 1, 'GOMEZ REYES ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 126674, '2009-12-20', 879240.00, 'A'), -(2430, 3, 'CERON GOMEZ JOEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 145135, '2011-03-21', 616070.00, 'A'), -(2431, 3, 'LOPEZ LINALDI DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 145135, '2011-05-09', 91360.00, 'A'), -(2432, 3, 'JOSEPH NATHAN PEDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 145135, '2011-05-02', 608580.00, 'A'), -(2433, 3, 'CARRENO PULIDO RUBEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 147242, '2011-06-19', 768810.00, 'A'), -(2434, 3, 'AREVALO MERCADO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 145135, '2011-06-12', 18320.00, 'A'), -(2436, 3, 'RAMIREZ QUEZADA ERIKA BELEM', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-05-03', 870930.00, 'A'), -(2438, 3, 'TATTO PRIETO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 145135, '2011-05-19', 382740.00, 'A'), -(2439, 3, 'LOPEZ AYALA LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 145135, '2011-10-08', 916370.00, 'A'), -(244, 1, 'DEVIS EDGAR JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2010-10-08', 560540.00, 'A'), -(2440, 3, 'HERNANDEZ TOVAR JORGE ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 144991, '2011-10-02', 433650.00, 'A'), -(2441, 3, 'COLLIARD LOPEZ PETER GEORGE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 419120.00, 'A'), -(2442, 3, 'FLORES CHALA GARY', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-08-22', 794670.00, 'A'), -(2443, 3, 'FANDINO MUNOZ ZAMIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 145135, '2011-07-19', 715970.00, 'A'), -(2444, 3, 'BARROSO VARGAS DIEGO ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-26', 195840.00, 'A'), -(2446, 3, 'CRUZ RAMIREZ JUAN PEDRO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 145135, '2011-07-14', 569050.00, 'A'), -(2447, 3, 'TIJERINA ACOSTA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-07-26', 351280.00, 'A'), -(2449, 3, 'JASSO BARRERA CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 145135, '2011-08-24', 192560.00, 'A'), -(245, 1, 'LENCHIG KALEDA SERGIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-02', 165000.00, 'A'), -(2450, 3, 'GARRIDO PATRON VICTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 145135, '2011-09-27', 814970.00, 'A'), -(2451, 3, 'VELASQUEZ GUERRERO RUBEN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', 497150.00, 'A'), -(2452, 3, 'CHOI SUNGKYU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 209494, '2011-08-16', 40860.00, 'A'), -(2453, 3, 'CONTRERAS LOPEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 145135, '2011-08-05', 712830.00, 'A'), -(2454, 3, 'CHAVEZ BATAA OSCAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 150699, '2011-06-14', 441590.00, 'A'), -(2455, 3, 'LEE JONG HYUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 131272, '2011-10-10', 69460.00, 'A'), -(2456, 3, 'MEDINA PADILLA CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 146589, '2011-04-20', 22530.00, 'A'), -(2457, 3, 'FLORES CUEVAS DOTNARA LUZ', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 145135, '2011-05-17', 904260.00, 'A'), -(2458, 3, 'LIU YONGCHAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-10-09', 453710.00, 'A'), -(2459, 3, 'CASTRO FERNANDES PORTOCARRERO JOSE MANUEL', 191821112, - 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 195892, '2011-06-14', - 555790.00, 'A'), -(246, 1, 'YAMHURE FONSECAN ERNESTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2009-10-03', 143350.00, 'A'), -(2460, 3, 'DUAN WEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', - 128662, '2011-06-22', 417820.00, 'A'), -(2461, 3, 'ZHU XUTAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-05-18', 421740.00, 'A'), -(2462, 3, 'MEI SHUANNIU', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-10-09', 855240.00, 'A'), -(2464, 3, 'VEGA VACA LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 145135, '2011-06-08', 489110.00, 'A'), -(2465, 3, 'TANG YUMING', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 147578, '2011-03-26', 412660.00, 'A'), -(2466, 3, 'VILLEDA GARCIA DAVID', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 144939, '2011-06-07', 595990.00, 'A'), -(2467, 3, 'GARCIA GARZA BLANCA ARMIDA', 191821112, 'CRA 25 CALLE 100', - '927@hotmail.com', '2011-02-03', 145135, '2011-05-20', 741940.00, 'A'), -(2468, 3, 'HERNANDEZ MARTINEZ EMILIO JOAQUIN', 191821112, 'CRA 25 CALLE 100', - '356@facebook.com', '2011-02-03', 145135, '2011-06-16', 921740.00, 'A'), -(2469, 3, 'WANG FAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', - 185363, '2011-08-20', 382860.00, 'A'), -(247, 1, 'ROJAS RODRIGUEZ ALVARO HERNAN', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-05-09', 221760.00, 'A'), -(2470, 3, 'WANG FEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', - 127591, '2011-10-09', 149100.00, 'A'), -(2471, 3, 'BERNAL MALDONADO GUILLERMO JAVIER', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 118777, '2011-07-26', 596900.00, 'A'), -(2472, 3, 'GUTIERREZ GOMEZ ARTURO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 145184, '2011-07-24', 537210.00, 'A'), -(2474, 3, 'LAN TYANYE ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-06-23', 865050.00, 'A'), -(2475, 3, 'LAN SHUZHEN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-06-23', 639240.00, 'A'), -(2476, 3, 'RODRIGUEZ GONZALEZ CARLOS ARTURO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 144616, '2011-08-09', 601050.00, 'A'), -(2477, 3, 'HAIBO NI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', - 127591, '2011-08-20', 87540.00, 'A'), -(2479, 3, 'RUIZ RODRIGUEZ GRACIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 145135, '2011-05-20', 910130.00, 'A'), -(248, 1, 'GONZALEZ RODRIGUEZ ANDRES', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-03', 678750.00, 'A'), -(2480, 3, 'OROZCO MACIAS NORMA LETICIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-20', 647010.00, 'A'), -(2481, 3, 'MEZA ALVAREZ JOSE ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 144939, '2011-06-07', 504670.00, 'A'), -(2482, 3, 'RODRIGUEZ FIGUEROA RODRIGO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 146308, '2011-04-27', 582290.00, 'A'), -(2483, 3, 'CARREON GUERRA ANA CECILIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 110709, '2011-05-27', 397440.00, 'A'), -(2484, 3, 'BOTELHO BARRETO CARLOS JOSE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 195892, '2011-08-02', 240350.00, 'A'), -(2485, 3, 'CORONADO CASTILLO HUGO', 191821112, 'CRA 25 CALLE 100', - '209@yahoo.com.mx', '2011-02-03', 147529, '2011-06-07', 9420.00, 'A'), -(2486, 3, 'DE FUENTES GARZA MARCELO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-18', 326030.00, 'A'), -(2487, 3, 'GONZALEZ DUHART GUTIERREZ HORACIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145135, '2011-05-17', 601920.00, 'A'), -(2488, 3, 'LOPEZ LINALDI DEMETRIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-06-07', 31500.00, 'A'), -(2489, 3, 'CASTRO MONCAYO JOSE LUIS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 145135, '2011-06-15', 351720.00, 'A'), -(249, 1, 'CASTRO RIBEROS JULIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-08-23', 728470.00, 'A'), -(2490, 3, 'SERRALDE LOPEZ MARIA GUADALUPE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 145135, '2011-07-25', 664120.00, 'A'), -(2491, 3, 'GARRIDO PATRON VICTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 145135, '2011-09-29', 265450.00, 'A'), -(2492, 3, 'BRAUN JUAN NICOLAS ANTONIE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-28', 334880.00, 'A'), -(2493, 3, 'BANKA RAHUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 141138, '2011-05-02', 878070.00, 'A'), -(2494, 1, 'GARCIA MARTINEZ MARIA VIRGINIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-04-17', 385690.00, 'A'), -(2495, 1, 'MARIA VIRGINIA', 191821112, 'CRA 25 CALLE 100', '298@yahoo.com.mx', - '2011-02-03', 127591, '2011-04-16', 294220.00, 'A'), -(2496, 3, 'GOMEZ ZENDEJAS MARIA ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145184, '2011-06-06', 314060.00, 'A'), -(2498, 3, 'MENDEZ MARTINEZ RAUL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 145135, '2011-07-10', 496040.00, 'A'), -(2623, 3, 'ZAFIROPOULO ANA I', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-05-25', 98170.00, 'A'), -(2499, 3, 'CARREON GUERRA ANA CECILIA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 145135, '2011-07-29', 417240.00, 'A'), -(2501, 3, 'OLIVAR ARIAS ISMAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 145135, '2011-06-06', 738850.00, 'A'), -(2502, 3, 'ABOUMRAD NASTA EMILE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 145135, '2011-07-26', 899890.00, 'A'), -(2503, 3, 'RODRIGUEZ JIMENEZ ROBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 145135, '2011-05-03', 282900.00, 'A'), -(2504, 3, 'ESTADOS UNIDOS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 145135, '2011-07-27', 714840.00, 'A'), -(2505, 3, 'SOTO MUNOZ MARCO GREGORIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-26', 725480.00, 'A'), -(2506, 3, 'GARCIA MONTER ANA OTILIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-10-05', 482880.00, 'A'), -(2507, 3, 'THIRUKONDA VIGNESH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 126180, '2011-05-02', 237950.00, 'A'), -(2508, 3, 'RAMIREZ REATIAGA LYDA YOANA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 150699, '2011-06-26', 741120.00, 'A'), -(2509, 3, 'SEPULVEDA RODRIGUEZ JESUS ', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', 991730.00, 'A'), -(251, 1, 'MEJIA PIZANO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-07-10', 845000.00, 'A'), -(2510, 3, 'FRANCISCO MARIA DIAS COSTA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 179111, '2011-07-12', 735330.00, 'A'), -(2511, 3, 'TEIXEIRA REGO DE OLIVEIRA TIAGO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 179111, '2011-06-14', 701430.00, 'A'), -(2512, 3, 'PHILLIP JAMES', 191821112, 'CRA 25 CALLE 100', '766@terra.com.co', - '2011-02-03', 127591, '2011-09-28', 301150.00, 'A'), -(2513, 3, 'ERXLEBEN ROBERT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 216125, '2011-04-13', 401460.00, 'A'), -(2514, 3, 'HUGHES CONNORRICHARD', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 269033, '2011-06-22', 103880.00, 'A'), -(2515, 3, 'LEBLANC MICHAEL PAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 216125, '2011-08-09', 314990.00, 'A'), -(2517, 3, 'DEVINE CHRISTOPHER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 269033, '2011-06-22', 371560.00, 'A'), -(2518, 3, 'WONG BRIAN TEK FUNG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 126885, '2011-09-22', 67910.00, 'A'), -(2519, 3, 'BIDWALA IRFAN A', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 154811, '2011-03-28', 224840.00, 'A'), -(252, 1, 'JIMENEZ LARRARTE JUAN GABRIEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-05-01', 406770.00, 'A'), -(2520, 3, 'LEE HO YIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 147578, '2011-08-29', 920470.00, 'A'), -(2521, 3, 'DE MOURA MARTINS NUNO ALEXANDRE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 196094, '2011-10-09', 927850.00, 'A'), -(2522, 3, 'DA COSTA GOMES CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 179111, '2011-08-10', 877850.00, 'A'), -(2523, 3, 'HOOGWAERTS PAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 118777, '2011-02-11', 605690.00, 'A'), -(2524, 3, 'LOPES MARQUES LUIS JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 118942, '2011-09-20', 394910.00, 'A'), -(2525, 3, 'CORREIA CAVACO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 178728, '2011-10-09', 157470.00, 'A'), -(2526, 3, 'HALL JOHN WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-06-09', 602620.00, 'A'), -(2527, 3, 'KNIGHT MARTIN GYLES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 113550, '2011-08-29', 540670.00, 'A'), -(2528, 3, 'HINDS THMAS TRISTAN PELLEW', 191821112, 'CRA 25 CALLE 100', - '337@yahoo.es', '2011-02-03', 116862, '2011-08-23', 895500.00, 'A'), -(2529, 3, 'CARTON ALAN JOHN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 117002, '2011-07-31', 855510.00, 'A'), -(253, 1, 'AZCUENAGA RAMIREZ NICOLAS', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 298472, '2011-05-10', 498840.00, 'A'), -(2530, 3, 'GHIM CHEOLL HO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-08-27', 591060.00, 'A'), -(2531, 3, 'PHILLIPS NADIA SULLIVAN', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-09-28', 388750.00, 'A'), -(2532, 3, 'CHANG KUKHYUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-03-22', 170560.00, 'A'), -(2533, 3, 'KANG SEOUNGHYUN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 173192, '2011-08-24', 686540.00, 'A'), -(2534, 3, 'CHUNG BYANG HOON', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 125744, '2011-03-14', 921030.00, 'A'), -(2535, 3, 'SHIN MIN CHUL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 173192, '2011-08-24', 545510.00, 'A'), -(2536, 3, 'CHOI JIN SUNG', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-05-15', 964490.00, 'A'), -(2537, 3, 'CHOI SUNGMIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-08-27', 185910.00, 'A'), -(2538, 3, 'PARK JAESER ', 191821112, 'CRA 25 CALLE 100', '525@terra.com.co', - '2011-02-03', 127591, '2011-09-03', 36090.00, 'A'), -(2539, 3, 'KIM DAE HOON ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 173192, '2011-08-24', 622700.00, 'A'), -(254, 1, 'AVENDANO PABON ROLANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-05-12', 273900.00, 'A'), -(2540, 3, 'LYNN MARIA CRISTINA NORMA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 116862, '2011-09-21', 5220.00, 'A'), -(2541, 3, 'KIM CHINIL JULIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 147578, '2011-08-27', 158030.00, 'A'), -(2543, 3, 'HALL JOHN WILLIAM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-06-09', 398290.00, 'A'), -(2544, 3, 'YOSUKE PERDOMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 165600, '2011-07-26', 668040.00, 'A'), -(2546, 3, 'AKAGI KAZAHIKO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-08-26', 722510.00, 'A'), -(2547, 3, 'NELSON JONATHAN GARY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-06-09', 176570.00, 'A'), -(2548, 3, 'DUONG HOP BA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 116862, '2011-09-14', 715310.00, 'A'), -(2549, 3, 'CHAO-VILLEGAS NIKOLE TUK HING', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 180063, '2011-04-05', 46830.00, 'A'), -(255, 1, 'CORREA ALVARO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-05-27', 872990.00, 'A'), -(2551, 3, 'APPELS LAURENT BERNHARD', 191821112, 'CRA 25 CALLE 100', - '891@hotmail.es', '2011-02-03', 135190, '2011-08-16', 300620.00, 'A'), -(2552, 3, 'PLAISIER ERIK JAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 289294, '2011-05-23', 238440.00, 'A'), -(2553, 3, 'BLOK HENDRIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 288552, '2011-03-27', 290350.00, 'A'), -(2554, 3, 'NETTE ANNA STERRE', 191821112, 'CRA 25 CALLE 100', - '621@yahoo.com.mx', '2011-02-03', 185363, '2011-07-30', 736400.00, 'A'), -(2555, 3, 'FRIELING HANS ERIC', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 107469, '2011-07-31', 810990.00, 'A'), -(2556, 3, 'RUTTE CORNELIA JANTINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 143579, '2011-03-30', 845710.00, 'A'), -(2557, 3, 'WALRAVEN PIETER PAUL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 289294, '2011-07-29', 795620.00, 'A'), -(2558, 3, 'TREBES LAURENS JOHANNES', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2010-11-22', 440940.00, 'A'), -(2559, 3, 'KROESE ROLANDWILLEBRORDUSMARIA', 191821112, 'CRA 25 CALLE 100', - '188@facebook.com', '2011-02-03', 110643, '2011-06-09', 817860.00, 'A'), -(256, 1, 'FARIAS GARCIA REINI', 191821112, 'CRA 25 CALLE 100', - '615@hotmail.com', '2011-02-03', 127591, '2011-03-05', 543220.00, 'A'), -(2560, 3, 'VAN DER HEIDE HENDRIK', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 291042, '2011-09-04', 766460.00, 'A'), -(2561, 3, 'VAN DEN BERG DONAR ALEXANDER GABRIEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 190393, '2011-07-13', 378720.00, 'A'), -(2562, 3, 'GODEFRIDUS JOHANNES ROPS ', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127622, '2011-10-02', 594240.00, 'A'), -(2564, 3, 'WAT YOK YIENG', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 287095, '2011-03-22', 392370.00, 'A'), -(2565, 3, 'BUIS JACOBUS NICOLAAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-09-20', 456810.00, 'A'), -(2567, 3, 'CHIPPER FRANCIUSCUS NICOLAAS ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 291599, '2011-07-28', 164300.00, 'A'), -(2568, 3, 'ONNO ROUKENS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2010-11-28', 500670.00, 'A'), -(2569, 3, 'PETRUS MARCELLINUS STEPHANUS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 150699, '2011-06-25', 10430.00, 'A'), -(2571, 3, 'VAN VOLLENHOVEN IVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-08-08', 719370.00, 'A'), -(2572, 3, 'LAMBOOIJ BART', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2011-09-20', 946480.00, 'A'), -(2573, 3, 'LANSER MARIANA PAULINE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 289294, '2011-04-09', 574270.00, 'A'), -(2575, 3, 'KLERKEN JOHANNES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 286101, '2011-05-24', 436840.00, 'A'), -(2576, 3, 'KRAS JACOBUS NICOLAAS', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 289294, '2011-09-26', 88410.00, 'A'), -(2577, 3, 'FUCHS MICHAEL JOSEPH', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 185363, '2011-07-30', 131530.00, 'A'), -(2578, 3, 'BIJVANK ERIK JAN WILLEM', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-04-11', 392410.00, 'A'), -(2579, 3, 'SCHMIDT FRANC ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 106742, '2011-09-11', 567470.00, 'A'), -(258, 1, 'SOTO GONZALEZ FRANCISCO LAZARO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 116511, '2011-05-07', 856050.00, 'A'), -(2580, 3, 'VAN DER KOOIJ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 291277, '2011-07-10', 660130.00, 'A'), -(2581, 2, 'KRIS ANDRE GEORGES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127300, '2011-07-26', 598240.00, 'A'), -(2582, 3, 'HARDING LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 263813, '2011-05-08', 10820.00, 'A'), -(2583, 3, 'ROLLI GUY JEAN ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 145135, '2011-05-31', 259370.00, 'A'), -(2584, 3, 'NIETO PARRA SEBASTIAN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 263813, '2011-07-04', 264400.00, 'A'), -(2585, 3, 'LASTRA CHAVEZ PABLO ARMANDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 126674, '2011-05-25', 543890.00, 'A'), -(2586, 1, 'ZAIDA MAYERLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 132958, '2011-05-05', 926250.00, 'A'), -(2587, 1, 'OSWALDO SOLORZANO CONTRERAS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-09-28', 999590.00, 'A'), -(2588, 3, 'ZHOU XUAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-05-18', 219200.00, 'A'), -(2589, 3, 'HUANG ZHENGQUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-05-18', 97230.00, 'A'), -(259, 1, 'GALARZA NARANJO JAIME RENE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 988830.00, 'A'), -(2590, 3, 'HUANG ZHENQUIN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-05-18', 828560.00, 'A'), -(2591, 3, 'WEIDEN MULLER AMURER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-03-29', 851110.00, 'A'), -(2593, 3, 'OESTERHAUS CORNELIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 256231, '2011-03-29', 295960.00, 'A'), -(2594, 3, 'RINTALAHTI JUHA HENRIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-08-23', 170220.00, 'A'), -(2597, 3, 'VERWIJNEN JONAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 289697, '2011-02-03', 638040.00, 'A'), -(2598, 3, 'SHAW ROBERT', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 157414, '2011-07-10', 273550.00, 'A'), -(2599, 3, 'MAKINEN TIMO JUHANI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 196234, '2011-09-13', 453600.00, 'A'), -(260, 1, 'RIVERA CANON JOSE EDWARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127538, '2011-09-19', 375990.00, 'A'), -(2600, 3, 'HONKANIEMI ARTO OLAVI', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 301387, '2011-09-06', 447380.00, 'A'), -(2601, 3, 'DAGG JAMIE MICHAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 216125, '2011-08-09', 876080.00, 'A'), -(2602, 3, 'BOLAND PATRICK CHARLES ', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 216125, '2011-09-14', 38260.00, 'A'), -(2603, 2, 'ZULEYKA JERRYS RIVERA MENDOZA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 150347, '2011-03-27', 563050.00, 'A'), -(2604, 3, 'DELGADO SEQUIRA FERRAO JOSE PEDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 188228, '2011-08-16', 700460.00, 'A'), -(2605, 3, 'YORRO LORA EDGAR MANUEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127689, '2011-06-17', 813180.00, 'A'), -(2606, 3, 'CARRASCO RODRIGUEZQCARLOS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127689, '2011-06-17', 964520.00, 'A'), -(2607, 30, 'ORJUELA VELASQUEZ JULIANA MARIA', 191821112, 'CRA 25 CALLE 100', - '372@terra.com.co', '2011-02-03', 132775, '2011-09-01', 383070.00, 'A'), -(2608, 3, 'DUQUE DUTRA LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 118942, '2011-07-12', 21780.00, 'A'), -(261, 1, 'MURCIA MARQUEZ NESTOR JAVIER', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-09-19', 913480.00, 'A'), -(2610, 3, 'NGUYEN HUU KHUONG', 191821112, 'CRA 25 CALLE 100', - '457@facebook.com', '2011-02-03', 132958, '2011-05-07', 733120.00, 'A'), -(2611, 3, 'NGUYEN VAN LAP', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 132958, '2011-05-07', 786510.00, 'A'), -(2612, 3, 'PHAM HUU THU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 132958, '2011-05-07', 733200.00, 'A'), -(2613, 3, 'DANG MING CUONG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 132958, '2011-05-07', 306460.00, 'A'), -(2614, 3, 'VU THI HONG HANH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 132958, '2011-05-07', 332710.00, 'A'), -(2615, 3, 'CHAU TANG LANG', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 132958, '2011-05-07', 744190.00, 'A'), -(2616, 3, 'CHU BAN THING', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 132958, '2011-05-07', 722800.00, 'A'), -(2617, 3, 'NGUYEN QUANG THU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 132958, '2011-05-07', 381420.00, 'A'), -(2618, 3, 'TRAN THI KIM OANH', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 132958, '2011-05-07', 738690.00, 'A'), -(2619, 3, 'NGUYEN VAN VINH', 191821112, 'CRA 25 CALLE 100', '422@yahoo.com.mx', - '2011-02-03', 132958, '2011-05-07', 549210.00, 'A'), -(262, 1, 'ABDULAZIS ELNESER KHALED', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-09-27', 439430.00, 'A'), -(2620, 3, 'NGUYEN XUAN VY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 132958, '2011-05-07', 529950.00, 'A'), -(2621, 3, 'HA MANH HOA', 191821112, 'CRA 25 CALLE 100', '439@gmail.com', - '2011-02-03', 132958, '2011-05-07', 2160.00, 'A'), -(2622, 3, 'ZAFIROPOULO STEVEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-05-25', 420930.00, 'A'), -(2624, 3, 'TEMIGTERRA MASSIMILIANO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 210050, '2011-09-26', 228070.00, 'A'), -(2625, 3, 'CASSES TRINDADE HELGIO HENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 118402, '2011-09-13', 845850.00, 'A'), -(2626, 3, 'ASCOLI MASTROENI MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 120773, '2011-09-07', 545010.00, 'A'), -(2627, 3, 'MONTEIRO SOARES MARCOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 120773, '2011-07-18', 187530.00, 'A'), -(2629, 3, 'HALL ALVARO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 120773, '2011-08-02', 950450.00, 'A'), -(2631, 3, 'ANDRADE CATUNDA RAFAEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 120773, '2011-08-23', 370860.00, 'A'), -(2632, 3, 'MAGALHAES MAYRA ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 118767, '2011-08-23', 320960.00, 'A'), -(2633, 3, 'SPREAFICO MIRIAM ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 118587, '2011-08-23', 492220.00, 'A'), -(2634, 3, 'GOMES FERREIRA HELIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 125812, '2011-08-23', 498220.00, 'A'), -(2635, 3, 'FERNANDES SENNA PIRES SERGIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-10-05', 14460.00, 'A'), -(2636, 3, 'BALESTRO FLORIANO FABIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 120773, '2011-08-24', 577630.00, 'A'), -(2637, 3, 'CABANA DE QUEIROZ ANDRADE ALAXANDRE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-23', 844780.00, 'A'), -(2638, 3, 'DALBOSCO CARLA', 191821112, 'CRA 25 CALLE 100', '380@yahoo.com.mx', - '2011-02-03', 127591, '2011-06-30', 491010.00, 'A'), -(264, 1, 'ROMERO MONTOYA NICOLAY ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-13', 965220.00, 'A'), -(2640, 3, 'BILLINI CRUZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 144215, '2011-03-27', 130530.00, 'A'), -(2641, 3, 'VASQUES ARIAS DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 144509, '2011-08-19', 890500.00, 'A'), -(2642, 3, 'ROJAS VOLQUEZ GLADYS MICHELLE', 191821112, 'CRA 25 CALLE 100', - '852@gmail.com', '2011-02-03', 144215, '2011-07-25', 60930.00, 'A'), -(2643, 3, 'LLANEZA GIL JUAN RAFAELMO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 144215, '2011-07-08', 633120.00, 'A'), -(2646, 3, 'AVILA PEROZO IANKEL JACOB', 191821112, 'CRA 25 CALLE 100', - '318@hotmail.com', '2011-02-03', 144215, '2011-09-03', 125600.00, 'A'), -(2647, 3, 'REGULAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-08-19', 583540.00, 'A'), -(2648, 3, 'CORONADO BATISTA JOSE ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-08-19', 540910.00, 'A'), -(2649, 3, 'OLIVIER JOSE VICTOR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 144509, '2011-08-19', 953910.00, 'A'), -(2650, 3, 'YOO HOE TAEK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 145135, '2011-08-25', 146820.00, 'A'), -(266, 1, 'CUECA RODRIGUEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-22', 384280.00, 'A'), -(267, 1, 'NIETO ALVARADO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2008-04-28', 553450.00, 'A'), -(269, 1, 'LEAL HOLGUIN FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-07-25', 411700.00, 'A'), -(27, 1, 'MORENO MORENO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2009-09-15', 995620.00, 'A'), -(270, 1, 'CANO IBANES JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-06-03', 215260.00, 'A'), -(271, 1, 'RESTREPO HERRAN ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 132775, '2011-04-18', 841220.00, 'A'), -(272, 3, 'RIOS FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 199862, '2011-03-24', 560300.00, 'A'), -(273, 1, 'MADERO LORENZANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-08-03', 277850.00, 'A'), -(274, 1, 'GOMEZ GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2010-09-24', 708350.00, 'A'), -(275, 1, 'CONSUEGRA ARENAS ANDRES MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-09-09', 708210.00, 'A'), -(276, 1, 'HURTADO ROJAS NICOLAS', 191821112, 'CRA 25 CALLE 100', - '463@yahoo.com.mx', '2011-02-03', 127591, '2011-09-07', 416000.00, 'A'), -(277, 1, 'MURCIA BAQUERO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-02', 955370.00, 'A'), -(2773, 3, 'TAKUBO KAORI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 165753, '2011-05-12', 872390.00, 'A'), -(2774, 3, 'OKADA MAKOTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 165753, '2011-06-19', 921480.00, 'A'), -(2775, 3, 'TAKEDA AKIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 21062, '2011-06-19', 990250.00, 'A'), -(2776, 3, 'KOIKE WATARU ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 165753, '2011-06-19', 186800.00, 'A'), -(2777, 3, 'KUBO SHINEI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 165753, '2011-02-13', 963230.00, 'A'), -(2778, 3, 'KANNO YONEZO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 165600, '2011-07-26', 255770.00, 'A'), -(278, 3, 'PARENT ELOIDE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 267980, '2011-05-01', 528840.00, 'A'), -(2781, 3, 'SUNADA MINORU ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 165753, '2011-06-19', 724450.00, 'A'), -(2782, 3, 'INOUE KASUYA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-06-22', 87150.00, 'A'), -(2783, 3, 'OTAKE NOBUTOSHI', 191821112, 'CRA 25 CALLE 100', '208@facebook.com', - '2011-02-03', 127591, '2011-06-11', 262380.00, 'A'), -(2784, 3, 'MOTOI KEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 165753, '2011-06-19', 50470.00, 'A'), -(2785, 3, 'TANAKA KIYOTAKA ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 165753, '2011-06-19', 465210.00, 'A'), -(2787, 3, 'YUMIKOPERDOMO', 191821112, 'CRA 25 CALLE 100', '600@yahoo.es', - '2011-02-03', 165600, '2011-07-26', 477550.00, 'A'), -(2788, 3, 'FUKUSHIMA KENZO', 191821112, 'CRA 25 CALLE 100', '599@gmail.com', - '2011-02-03', 156960, '2011-05-30', 863860.00, 'A'), -(2789, 3, 'GELGIN LEVENT NURI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-05-26', 886630.00, 'A'), -(279, 1, 'AVIATUR S. A.', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-05-02', 778110.00, 'A'), -(2791, 3, 'GELGIN ENIS ENRE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-05-26', 547940.00, 'A'), -(2792, 3, 'PAZ SOTO LUBRASCA MARIA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 143954, '2011-06-27', 215000.00, 'A'), -(2794, 3, 'MOURAD TAOUFIKI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-04-13', 511000.00, 'A'), -(2796, 3, 'DASTUS ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 218656, '2011-05-29', 774010.00, 'A'), -(2797, 3, 'MCDONALD MICHAEL LORNE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 269033, '2011-07-19', 85820.00, 'A'), -(2799, 3, 'KLESO MICHAEL QUENTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 269033, '2011-07-26', 277950.00, 'A'), -(28, 1, 'GONZALEZ ACUNA EDGAR MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-09-19', 531710.00, 'A'), -(280, 3, 'NEME KARIM CHAIBAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 135967, '2010-05-02', 304040.00, 'A'), -(2800, 3, 'CLERK CHARLES ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 244158, '2011-07-26', 68490.00, 'A'), -('CELL3673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(2801, 3, 'BURRIS MAURICE STEWARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-09-27', 508600.00, 'A'), -(2802, 1, 'PINCHEN CLAIRE ELAINE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 216125, '2011-04-13', 337530.00, 'A'), -(2803, 3, 'LETTNER EVA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 231224, '2011-09-20', 161860.00, 'A'), -(2804, 3, 'CANUEL LUCIE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 146258, '2011-09-20', 796710.00, 'A'), -(2805, 3, 'IGLESIAS CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 216125, '2011-08-02', 497980.00, 'A'), -(2806, 3, 'PAQUIN JEAN FRANCOIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 269033, '2011-03-27', 99760.00, 'A'), -(2807, 3, 'FOURNIER DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 228688, '2011-05-19', 4860.00, 'A'), -(2808, 3, 'BILODEAU MARTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-09-13', 725030.00, 'A'), -(2809, 3, 'KELLNER PETER WILLIAM', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 130757, '2011-07-24', 610570.00, 'A'), -(2810, 3, 'ZAZULAK INGRID ROSEMARIE', 191821112, 'CRA 25 CALLE 100', - '683@facebook.com', '2011-02-03', 240550, '2011-09-11', 877770.00, 'A'), -(2811, 3, 'RUCCI JHON MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 285188, '2011-05-10', 557130.00, 'A'), -(2813, 3, 'JONCAS MARC', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 33265, '2011-03-21', 90360.00, 'A'), -(2814, 3, 'DUCHARME ERICK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-03-29', 994750.00, 'A'), -(2816, 3, 'BAILLOD THOMAS DAVID ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 239124, '2010-10-20', 529130.00, 'A'), -(2817, 3, 'MARTINEZ SORIA JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 289697, '2011-09-06', 537630.00, 'A'), -(2818, 3, 'TAMARA RABER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-04-30', 100750.00, 'A'), -(2819, 3, 'BURGI VINCENT EMANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 245206, '2011-04-20', 890860.00, 'A'), -(282, 1, 'HUESPED ASISTENTE A LA CONVENCION DE LA DIAN', 191821112, - 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2009-06-24', 17160.00, - 'A'), -(2820, 3, 'ROBLES TORRALBA IVAN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 238949, '2011-05-16', 152030.00, 'A'), -(2821, 3, 'CONSUEGRA MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-06-06', 87600.00, 'A'), -(2822, 3, 'CELMA ADROVER LAIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 190393, '2011-03-23', 981880.00, 'A'), -(2823, 3, 'ALVAREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 150699, '2011-06-20', 646610.00, 'A'), -(2824, 3, 'VARGAS WOODROFFE FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 157414, '2011-06-22', 287410.00, 'A'), -(2825, 3, 'GARCIA GUILLEN VICENTE LUIS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 144215, '2011-08-19', 497230.00, 'A'), -(2826, 3, 'GOMEZ GARCIA DIAMANTES PATRICIA MARIA', 191821112, - 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2011-09-22', - 623930.00, 'A'), -(2827, 3, 'PEREZ IGLESIAS BIBIANA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 132958, '2011-09-30', 627940.00, 'A'), -(2830, 3, 'VILLALONGA MORENES MARIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 169679, '2011-05-29', 474910.00, 'A'), -(2831, 3, 'REY LOPEZ DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 150699, '2011-08-03', 7380.00, 'A'), -(2832, 3, 'HOYO APARICIO JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 116511, '2011-09-19', 612180.00, 'A'), -(2836, 3, 'GOMEZ GARCIA LOPEZ CARLOS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 150699, '2011-09-21', 277540.00, 'A'), -(2839, 3, 'GALIMERTI MARCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 235197, '2011-08-28', 156870.00, 'A'), -(2840, 3, 'BAROZZI GIUSEPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 231989, '2011-05-25', 609500.00, 'A'), -(2841, 3, 'MARIAN RENATO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-06-12', 576900.00, 'A'), -(2842, 3, 'FAENZA CARLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 126180, '2011-05-19', 55990.00, 'A'), -(2843, 3, 'PESOLILLO CARMINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 203162, '2011-06-26', 549230.00, 'A'), -(2844, 3, 'CHIODI FRANCESCO MARIA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 199862, '2011-09-10', 578210.00, 'A'), -(2845, 3, 'RUTA MARIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2011-06-19', 243350.00, 'A'), -(2846, 3, 'BAZZONI MARINO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 101518, '2011-05-03', 482140.00, 'A'), -(2848, 3, 'LAGASIO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 231989, '2011-05-04', 956670.00, 'A'), -(2849, 3, 'VIERA DA CUNHA PAULO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 190393, '2011-04-05', 741520.00, 'A'), -(2850, 3, 'DAL BEN DENIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 116511, '2011-05-26', 837590.00, 'A'), -(2851, 3, 'GIANELLI HERIBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 233927, '2011-05-01', 963400.00, 'A'), -(2852, 3, 'JUSTINO DA SILVA DJAMIR', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-04-08', 304200.00, 'A'), -(2853, 3, 'DIPASQUUALE GAETANO', 191821112, 'CRA 25 CALLE 100', - '574@terra.com.co', '2011-02-03', 172888, '2011-07-11', 630830.00, 'A'), -(2855, 3, 'CURI MAURO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 199862, '2011-06-19', 315160.00, 'A'), -(2856, 3, 'DI DIO MARCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-08-20', 851210.00, 'A'), -(2857, 3, 'ROBERTI MENDONCA CAIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-05-11', 310580.00, 'A'), -(2859, 3, 'RAMOS MORENO DE SOUZA ANDRE ', 191821112, 'CRA 25 CALLE 100', - '133@facebook.com', '2011-02-03', 118777, '2011-09-24', 64540.00, 'A'), -(286, 8, 'INEXMODA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 128662, '2011-06-21', 50150.00, 'A'), -(2860, 3, 'JODJAHN DE CARVALHO FLAVIA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 118942, '2011-06-27', 324950.00, 'A'), -(2862, 3, 'LAGASIO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 231989, '2011-07-04', 180760.00, 'A'), -(2863, 3, 'MOON SUNG RIUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-04-08', 610440.00, 'A'), -(2865, 3, 'VAIDYANATHAN VIKRAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-05-11', 718220.00, 'A'), -(2866, 3, 'NARAYANASWAMY RAMSUNDAR', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 73079, '2011-10-02', 61390.00, 'A'), -(2867, 3, 'VADADA VENKATA RAMESH KUMAR', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-09-10', 152300.00, 'A'), -(2868, 3, 'RAMA KRISHNAN ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-09-10', 577300.00, 'A'), -(2869, 3, 'JALAN PRASHANT', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 122035, '2011-05-02', 429600.00, 'A'), -(2871, 3, 'CHANDRASEKAR VENKAT', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 112862, '2011-06-27', 791800.00, 'A'), -(2872, 3, 'CUMBAKONAM SWAMINATHAN SUBRAMANIAN', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-09-11', 710650.00, 'A'), -(288, 8, 'BCD TRAVEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-07-23', 645390.00, 'A'), -(289, 3, 'EMBAJADA ARGENTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '1970-02-02', 749440.00, 'A'), -('CELL3789', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(290, 3, 'EMBAJADA DE BRASIL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 128662, '2010-11-16', 811030.00, 'A'), -(293, 8, 'ONU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', - 127591, '2010-09-19', 584810.00, 'A'), -(299, 1, 'BLANDON GUZMAN JHON JAIRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-01-13', 201740.00, 'A'), -(304, 3, 'COHEN DANIEL DYLAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 286785, '2010-11-17', 184850.00, 'A'), -(306, 1, 'CINDU ANDINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2009-06-11', 899230.00, 'A'), -(31, 1, 'GARRIDO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127662, '2010-09-12', 801450.00, 'A'), -(310, 3, 'CORPORACION CLUB EL NOGAL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2010-08-27', 918760.00, 'A'), -(314, 3, 'CHAWLA AARON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-04-08', 295840.00, 'A'), -(317, 3, 'BAKER HUGHES', 191821112, 'CRA 25 CALLE 100', '694@hotmail.com', - '2011-02-03', 127591, '2011-04-03', 211990.00, 'A'), -(32, 1, 'PAEZ SEGURA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '675@gmail.com', '2011-02-03', 129447, '2011-08-22', 717340.00, 'A'), -(320, 1, 'MORENO PAEZ FREDDY ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-31', 971670.00, 'A'), -(322, 1, 'CALDERON CARDOZO GASTON EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-10-05', 990640.00, 'A'), -(324, 1, 'ARCHILA MERA ALFREDOMANUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-06-22', 77200.00, 'A'), -(326, 1, 'MUNOZ AVILA HERNEY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2010-11-10', 550920.00, 'A'), -(327, 1, 'CHAPARRO CUBILLOS FABIAN ANDRES', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-08-15', 685080.00, 'A'), -(329, 1, 'GOMEZ LOPEZ JUAN SEBASTIAN', 191821112, 'CRA 25 CALLE 100', - '970@yahoo.com', '2011-02-03', 127591, '2011-03-20', 808070.00, 'A'), -(33, 1, 'MARTINEZ MARINO HENRY HERNAN', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-04-20', 182370.00, 'A'), -(330, 3, 'MAPSTONE NAOMI LEA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 122035, '2010-02-21', 722380.00, 'A'), -(332, 3, 'ROSSI BURRI NELLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 132165, '2010-05-10', 771210.00, 'A'), -(333, 1, 'AVELLANEDA OVIEDO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-07-25', 293060.00, 'A'), -(334, 1, 'SUZA FLOREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-05-13', 151650.00, 'A'), -(335, 1, 'ESGUERRA ALVARO ANDRES', 191821112, 'CRA 25 CALLE 100', - '11@facebook.com', '2011-02-03', 127591, '2011-09-10', 879080.00, 'A'), -(337, 3, 'DE LA HARPE MARTIN CARAPET WALTER', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-09-27', 64960.00, 'A'), -(339, 1, 'HERNANDEZ ACOSTA SERGIO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 129499, '2011-06-22', 322570.00, 'A'), -(340, 3, 'ZARAMA DE LA ESPRIELLA MIGUEL PATRICIO', 191821112, - 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-27', - 102360.00, 'A'), -(342, 1, 'CABRERA VASQUEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-05-01', 413440.00, 'A'), -(343, 3, 'RICHARDSON BEN MARRIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 286785, '2010-05-18', 434890.00, 'A'), -(344, 1, 'OLARTE PINZON MIGUEL FELIPE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-08-30', 934140.00, 'A'), -(345, 1, 'SOLER SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 128662, '2011-04-20', 366020.00, 'A'), -(346, 1, 'PRIETO JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2010-07-12', 27690.00, 'A'), -(349, 1, 'BARRERO VELASCO DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-05-01', 472850.00, 'A'), -(35, 1, 'VELASQUEZ RAMOS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-13', 251940.00, 'A'), -(350, 1, 'RANGEL GARCIA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-03-20', 7880.00, 'A'), -(353, 1, 'ALVAREZ ACEVEDO JOHN FREDDY', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-07-16', 540070.00, 'A'), -(354, 1, 'VILLAMARIN HOME WILMAR ALFREDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-09-19', 458810.00, 'A'), -(355, 3, 'SLUCHIN NAAMAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 263813, '2010-12-01', 673830.00, 'A'), -(357, 1, 'BULLA BERNAL LUIS ERNESTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-06-14', 942160.00, 'A'), -(358, 1, 'BRACCIA AVILA GIANCARLO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-01', 732620.00, 'A'), -(359, 1, 'RODRIGUEZ PINTO RAUL DAVID', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-08-24', 836600.00, 'A'), -(36, 1, 'MALDONADO ALVAREZ JAIRO ASDRUBAL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127300, '2011-06-19', 980270.00, 'A'), -(362, 1, 'POMBO POLANCO JUAN BERNARDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-09-18', 124130.00, 'A'), -(363, 1, 'CARDENAS SUAREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-01', 372920.00, 'A'), -(364, 1, 'RIVERA MAZO JOSE DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 128662, '2010-06-10', 492220.00, 'A'), -(365, 1, 'LEDERMAN CORDIKI JONATHAN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2010-12-03', 342340.00, 'A'), -(367, 1, 'BARRERA MARTINEZ LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', - '35@yahoo.com.mx', '2011-02-03', 127591, '2011-05-24', 148130.00, 'A'), -(368, 1, 'SEPULVEDA RAMIREZ DANIEL MARCELO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-31', 35560.00, 'A'), -(369, 1, 'QUINTERO DIAZ WILSON ASDRUBAL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', 733430.00, 'A'), -(37, 1, 'RESTREPO SUAREZ HENRY BERNARDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127300, '2011-07-25', 145540.00, 'A'), -(370, 1, 'ROJAS YARA WILLMAR ARLEY', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2010-12-03', 560450.00, 'A'), -(371, 3, 'CARVER LOUISE EMILY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 286785, '2010-10-07', 601980.00, 'A'), -(372, 3, 'VINCENT DAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 286785, '2011-03-06', 328540.00, 'A'), -(374, 1, 'GONZALEZ DELGADO MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-08-18', 198260.00, 'A'), -(375, 1, 'PAEZ SIMON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-06-25', 480970.00, 'A'), -(376, 1, 'CADOSCH DELMAR ELIE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-10-07', 810080.00, 'A'), -(377, 1, 'HERRERA VASQUEZ DANIEL EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2010-06-30', 607460.00, 'A'), -(378, 1, 'CORREAL ROJAS RONALD', 191821112, 'CRA 25 CALLE 100', - '269@facebook.com', '2011-02-03', 127591, '2011-07-16', 607080.00, 'A'), -(379, 1, 'VOIDONNIKOLAS MUNOS PANAGIOTIS', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-27', 213010.00, 'A'), -(38, 1, 'CANAL ROJAS MAURICIO HERNANDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-05-29', 786900.00, 'A'), -(380, 1, 'DIAZ ECHEVERRI JUAN DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-08-20', 243800.00, 'A'), -(381, 1, 'CIFUENTES MARIN HERNANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-05-26', 579960.00, 'A'), -(382, 3, 'PAXTON LUCINDA HARRIET', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 107159, '2011-05-23', 168420.00, 'A'), -(384, 3, 'POYNTON BRIAN GEORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 286785, '2011-03-20', 5790.00, 'A'), -(385, 3, 'TERMIGNONI ADRIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-01-14', 722320.00, 'A'), -(386, 3, 'CARDWELL PAULA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-02-17', 594230.00, 'A'), -(389, 1, 'FONCECA MARTINEZ MIGUEL ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-25', 778680.00, 'A'), -(39, 1, 'GARCIA SUAREZ WILLIAM ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-07-25', 497880.00, 'A'), -(390, 1, 'GUERRERO NELSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2010-12-03', 178650.00, 'A'), -(391, 1, 'VICTORIA PENA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-06-22', 557200.00, 'A'), -(392, 1, 'VAN HISSENHOVEN FERRERO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-04-13', 250060.00, 'A'), -(393, 1, 'CACERES ORDUZ JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-06-28', 578690.00, 'A'), -(394, 1, 'QUINTERO ALVARO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-08-17', 143270.00, 'A'), -(395, 1, 'ANZOLA PEREZ CARLOSDAVID', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-08-04', 980300.00, 'A'), -(397, 1, 'LLOREDA ORTIZ CARLOS JOSE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-27', 417470.00, 'A'), -(398, 1, 'GONZALES LONDONO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-06-19', 672310.00, 'A'), -(4, 1, 'LONDONO DOMINGUEZ ERNESTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-09-05', 324610.00, 'A'), -(40, 1, 'MORENO ANGULO ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-06-01', 128690.00, 'A'), -(400, 8, 'TRANSELCA .A', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 133535, '2011-04-14', 528930.00, 'A'), -(403, 1, 'VERGARA MURILLO JUAN FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-03-04', 42900.00, 'A'), -(405, 1, 'CAPERA CAPERA HARRINSON', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127799, '2011-06-12', 961000.00, 'A'), -(407, 1, 'MORENO MORA WILLIAM EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-22', 872780.00, 'A'), -(408, 1, 'HIGUERA ROA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-03-28', 910430.00, 'A'), -(409, 1, 'FORERO CASTILLO OSCAR ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '988@terra.com.co', '2011-02-03', 127591, '2011-07-23', 933810.00, 'A'), -(410, 1, 'LOPEZ MURCIA JULIAN DANIEL', 191821112, 'CRA 25 CALLE 100', - '399@facebook.com', '2011-02-03', 127591, '2011-08-08', 937790.00, 'A'), -(411, 1, 'ALZATE JOHN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 128662, '2011-09-09', 887490.00, 'A'), -(412, 1, 'GONZALES GONZALES ORLANDO ANDREY', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-30', 624080.00, 'A'), -(413, 1, 'ESCOLANO VALENTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-08-05', 457930.00, 'A'), -(414, 1, 'JARAMILLO RODRIGUEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-09-12', 417420.00, 'A'), -(415, 1, 'GARCIA MUNOZ DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-10-02', 713300.00, 'A'), -(416, 1, 'PINEROS ARENAS JUAN DAVID', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2010-10-17', 314260.00, 'A'), -(417, 1, 'ORTIZ ARROYAVE ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2011-05-21', 431370.00, 'A'), -(418, 1, 'BAYONA BARRIENTOS JEAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-07-12', 214090.00, 'A'), -(419, 1, 'AGUDELO VASQUEZ JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2011-08-30', 776360.00, 'A'), -(420, 1, 'CALLE DANIEL CJ PRODUCCIONES', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2010-11-04', 239500.00, 'A'), -(422, 1, 'CANO BETANCUR ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 128662, '2011-08-20', 623620.00, 'A'), -(423, 1, 'CALDAS BARRETO LUZ MIREYA', 191821112, 'CRA 25 CALLE 100', - '991@facebook.com', '2011-02-03', 127591, '2011-05-22', 512840.00, 'A'), -(424, 1, 'SIMBAQUEBA JOSE ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-07-25', 693320.00, 'A'), -(425, 1, 'DE SILVESTRE CALERO LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-09-18', 928110.00, 'A'), -(426, 1, 'ZORRO PERALTA YEZID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-07-25', 560560.00, 'A'), -(428, 1, 'SUAREZ OIDOR DARWIN LEONARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 131272, '2011-09-05', 410650.00, 'A'), -(429, 1, 'GIRAL CARRILLO LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-13', 997850.00, 'A'), -(43, 1, 'MARULANDA VALENCIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-09-17', 365550.00, 'A'), -(430, 1, 'CORDOBA GARCES JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-18', 757320.00, 'A'), -(431, 1, 'ARIAS TAMAYO DIEGO MAURICIO', 191821112, 'CRA 25 CALLE 100', - '36@yahoo.com', '2011-02-03', 127591, '2011-09-05', 793050.00, 'A'), -(432, 1, 'EICHMANN PERRET MARC WILLY', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-22', 693270.00, 'A'), -(433, 1, 'DIAZ DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2008-09-18', 87200.00, 'A'), -(435, 1, 'FACCINI GONZALEZ HERMANN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2009-01-08', 519420.00, 'A'), -(436, 1, 'URIBE DUQUE FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-06-28', 528470.00, 'A'), -(437, 1, 'TAVERA GAONA GABREL LEAL', 191821112, 'CRA 25 CALLE 100', - '280@terra.com.co', '2011-02-03', 127591, '2011-04-28', 84120.00, 'A'), -(438, 1, 'ORDONEZ PARIS FERNANDO MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 150699, '2011-09-26', 835170.00, 'A'), -(439, 1, 'VILLEGAS ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-03-19', 923520.00, 'A'), -(44, 1, 'MARTINEZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 128662, '2011-08-13', 738750.00, 'A'), -(440, 1, 'MARTINEZ RUEDA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '805@hotmail.es', '2011-02-03', 127591, '2011-04-07', 112050.00, 'A'), -(441, 1, 'ROLDAN JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2010-05-25', 789720.00, 'A'), -(442, 1, 'PEREZ BRANDWAYN ELIYAU MOISES', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2010-10-20', 612450.00, 'A'), -(443, 1, 'VALLEJO TORO JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128579, '2011-08-16', 693080.00, 'A'), -(444, 1, 'TORRES CABRERA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-03-19', 628070.00, 'A'), -(445, 1, 'MERINO MEJIA GERMAN ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-07-28', 61100.00, 'A'), -(447, 1, 'GOMEZ GOMEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-09-08', 923070.00, 'A'), -(448, 1, 'RAUSCH CHEHEBAR STEVEN JOSEPH', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 133535, '2011-09-27', 351540.00, 'A'), -(449, 1, 'RESTREPO TRUCCO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-07-28', 988500.00, 'A'), -(45, 1, 'GUTIERREZ JARAMILLO CARLOS MARIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-22', 597090.00, 'A'), -(450, 1, 'GOLDSTEIN VAIDA ELI JACK', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-11', 887860.00, 'A'), -(451, 1, 'OLEA PINEDA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-08-10', 473800.00, 'A'), -(452, 1, 'JORGE OROZCO', 191821112, 'CRA 25 CALLE 100', '503@hotmail.es', - '2011-02-03', 127591, '2011-06-02', 705410.00, 'A'), -(454, 1, 'DE LA TORRE GOMEZ GERMAN ERNESTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-03-03', 411990.00, 'A'), -(456, 1, 'MADERO ARIAS JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '452@hotmail.es', '2011-02-03', 127591, '2011-08-22', 479090.00, 'A'), -(457, 1, 'GOMEZ MACHUCA ALVARO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2010-08-12', 166430.00, 'A'), -(458, 1, 'MENDIETA TOBON DANIEL RICARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-09-08', 394880.00, 'A'), -(459, 1, 'VILLADIEGO CORTINA JAVIER TOMAS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-07-26', 475110.00, 'A'), -(46, 1, 'FERRUCHO ARCINIEGAS JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', 769220.00, 'A'), -(460, 1, 'DERESER HARTUNG ERNESTO JOSE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2010-12-25', 190900.00, 'A'), -(461, 1, 'RAMIREZ PENA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2011-06-25', 529190.00, 'A'), -(463, 1, 'IREGUI REYES LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-10-07', 778590.00, 'A'), -(464, 1, 'PINTO GOMEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 132775, '2010-06-24', 673270.00, 'A'), -(465, 1, 'RAMIREZ RAMIREZ FERNANDO ALONSO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127799, '2011-10-01', 30570.00, 'A'), -(466, 1, 'BERRIDO TRUJILLO JORGE HENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 132775, '2011-10-06', 133040.00, 'A'), -(467, 1, 'RIVERA CARVAJAL RAFAEL HUMBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-07-20', 573500.00, 'A'), -(468, 3, 'FLOREZ PUENTES IVAN ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145135, '2011-05-08', 468380.00, 'A'), -(469, 1, 'BALLESTEROS FLOREZ IVAN DARIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-06-02', 621410.00, 'A'), -(47, 1, 'MARIN FLOREZ OMAR EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-30', 54840.00, 'A'), -(470, 1, 'RODRIGO PENA HERRERA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 237734, '2011-10-04', 701890.00, 'A'), -(471, 1, 'RODRIGUEZ SILVA ROGELIO', 191821112, 'CRA 25 CALLE 100', - '163@gmail.com', '2011-02-03', 127591, '2011-05-26', 645210.00, 'A'), -(473, 1, 'VASQUEZ VELANDIA JUAN GABRIEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 196234, '2011-05-04', 666330.00, 'A'), -(474, 1, 'ROBLEDO JAIME', 191821112, 'CRA 25 CALLE 100', '409@yahoo.com', - '2011-02-03', 127591, '2011-05-31', 970480.00, 'A'), -(475, 1, 'GRIMBERG DIAZ PHILIP', 191821112, 'CRA 25 CALLE 100', '723@yahoo.com', - '2011-02-03', 127591, '2011-03-30', 853430.00, 'A'), -(476, 1, 'CHAUSTRE GARCIA JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-26', 355670.00, 'A'), -(477, 1, 'GOMEZ FLOREZ IGNASIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2010-09-14', 218090.00, 'A'), -(478, 1, 'LUIS ALBERTO CABRERA PUENTES', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 133535, '2011-05-26', 23420.00, 'A'), -(479, 1, 'MARTINEZ ZAPATA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '234@gmail.com', '2011-02-03', 127122, '2011-07-01', 462840.00, 'A'), -(48, 1, 'PARRA IBANEZ FABIAN ERNESTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-02-01', 966520.00, 'A'), -(480, 3, 'WESTERBERG JAN RICKARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 300701, '2011-02-01', 243940.00, 'A'), -(484, 1, 'RODRIGUEZ VILLALOBOS EDGAR FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-05-19', 860320.00, 'A'), -(486, 1, 'NAVARRO REYES DIEGO FELIPE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-06-01', 530150.00, 'A'), -(487, 1, 'NOGUERA RICAURTE ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-01-21', 384100.00, 'A'), -(488, 1, 'RUIZ VEJARANO CARLOS DANIEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-09-27', 330030.00, 'A'), -(489, 1, 'CORREA PEREZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2010-12-14', 497860.00, 'A'), -(49, 1, 'FLOREZ PEREZ RUBIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-05-23', 668090.00, 'A'), -(490, 1, 'REYES GOMEZ LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-05-26', 499210.00, 'A'), -(491, 3, 'BERNAL LEON ALBERTO JOSE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 150699, '2011-03-29', 2470.00, 'A'), -(492, 1, 'FELIPE JARAMILLO CARO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2009-10-31', 514700.00, 'A'), -(493, 1, 'GOMEZ PARRA GERMAN DARIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2010-01-29', 566100.00, 'A'), -(494, 1, 'VALLEJO RAMIREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-05-13', 286390.00, 'A'), -(495, 1, 'DIAZ LONDONO HUGO MARIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 733670.00, 'A'), -(496, 3, 'VAN BAKERGEM RONALD JAN', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 145135, '2008-11-05', 809190.00, 'A'), -(497, 1, 'MENDEZ RAMIREZ JOSE LEONARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-08-10', 844920.00, 'A'), -(498, 3, 'QUI TANILLA HENRIQUEZ PAUL ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-07-10', 797030.00, 'A'), -(499, 3, 'PELEATO FLOREAL', 191821112, 'CRA 25 CALLE 100', '531@hotmail.com', - '2011-02-03', 188640, '2011-04-23', 450370.00, 'A'), -(50, 1, 'SILVA GUZMAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-03-24', 440890.00, 'A'), -(502, 3, 'LEO ULF GORAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 300701, '2010-07-26', 181840.00, 'A'), -(503, 3, 'KARLSSON DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 300701, '2011-07-22', 50680.00, 'A'), -(504, 1, 'JIMENEZ JANER ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '889@hotmail.es', '2011-02-03', 203272, '2011-08-29', 707880.00, 'A'), -(506, 1, 'PABON OCHOA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-14', 813050.00, 'A'), -(507, 1, 'ACHURY CADENA CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-06-26', 903240.00, 'A'), -(508, 1, 'ECHEVERRY GARZON SEBASTIN', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-06-23', 77050.00, 'A'), -(509, 1, 'PINEROS PENA LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-07-29', 675550.00, 'A'), -(51, 1, 'CAICEDO URREA JAIME ORLANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127300, '2011-08-17', 200160.00, 'A'), -('CELL3795', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(510, 1, 'MARTINEZ MARTINEZ LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', - '586@facebook.com', '2011-02-03', 127591, '2010-08-28', 146600.00, 'A'), -(511, 1, 'MOLANO PENA JESUS ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-02-05', 706320.00, 'A'), -(512, 3, 'RUDOLPHY FONTAINE ANDRES', 191821112, 'CRA 25 CALLE 100', - '492@yahoo.com', '2011-02-03', 117002, '2011-04-12', 91820.00, 'A'), -(513, 1, 'NEIRA CHAVARRO JOHN JAIRO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-05-12', 340120.00, 'A'), -(514, 3, 'MENDEZ VILLALOBOS ARMANDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 145135, '2011-03-25', 425160.00, 'A'), -(515, 3, 'HERNANDEZ OLIVA JOSE DE LA CRUZ', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 145135, '2011-03-25', 105440.00, 'A'), -(518, 3, 'JANCO NICOLAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-06-15', 955830.00, 'A'), -(52, 1, 'TAPIA MUNOZ JAIRO RICARDO', 191821112, 'CRA 25 CALLE 100', - '920@hotmail.es', '2011-02-03', 127591, '2011-10-05', 678130.00, 'A'), -(520, 1, 'ALVARADO JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-05-26', 895550.00, 'A'), -(521, 1, 'HUERFANO SOTO JONATHAN', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-05-30', 619910.00, 'A'), -(522, 1, 'HUERFANO SOTO JONATHAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-06-04', 412900.00, 'A'), -(523, 1, 'RODRIGEZ GOMEZ WILMAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-05-14', 204790.00, 'A'), -(525, 1, 'ARROYO BAPTISTE DIEGO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-09', 311810.00, 'A'), -(526, 1, 'PULECIO BOEK DANIEL', 191821112, 'CRA 25 CALLE 100', '718@gmail.com', - '2011-02-03', 127591, '2011-08-12', 203350.00, 'A'), -(527, 1, 'ESLAVA VELEZ SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2010-10-08', 81300.00, 'A'), -(528, 1, 'CASTRO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2010-05-06', 796470.00, 'A'), -(53, 1, 'HINCAPIE MARTINEZ RICARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127573, '2011-09-26', 790180.00, 'A'), -(530, 1, 'ZORRILLA PUJANA NICOLAS', 191821112, 'CRA 25 CALLE 100', - '312@yahoo.es', '2011-02-03', 127591, '2011-06-06', 302750.00, 'A'), -(531, 1, 'ZORRILLA PUJANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-06-06', 298440.00, 'A'), -(532, 1, 'PRETEL ARTEAGA MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-05-09', 583980.00, 'A'), -(533, 1, 'RAMOS VERGARA HUMBERTO CARLOS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 131105, '2010-05-13', 24560.00, 'A'), -(534, 1, 'BONILLA PINEROS DIEGO FELIPE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', 370880.00, 'A'), -(535, 1, 'BELTRAN TRIVINO JULIAN DAVID', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2010-11-06', 780710.00, 'A'), -(536, 3, 'BLOD ULF FREDERICK EDWARD', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-04-06', 790900.00, 'A'), -(537, 1, 'VANEGAS OROZCO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2010-11-10', 612400.00, 'A'), -(538, 3, 'ORUE VALLE MONICA CECILIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 97885, '2011-09-15', 689270.00, 'A'), -(539, 1, 'AGUDELO BEDOYA ANDRES JOSE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 128662, '2011-05-24', 609160.00, 'A'), -(54, 1, 'DE HOYOS TRESPALACIOS MAURICIO ALEJANDRO', 191821112, - 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-21', - 916500.00, 'A'), -(540, 3, 'HEIJKENSKJOLD PER JESPER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-06', 977980.00, 'A'), -(541, 3, 'GONZALEZ ALVARADO LUIS RAUL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 117002, '2011-08-27', 62430.00, 'A'), -(543, 1, 'GRUPO SURAMERICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 128662, '2011-08-24', 703760.00, 'A'), -(545, 1, 'CORPORACION CONTEXTO ', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-08', 809570.00, 'A'), -(546, 3, 'LUNDIN JOHAN ERIK ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-07-29', 895330.00, 'A'), -(548, 3, 'VEGERANO JOSE ', 191821112, 'CRA 25 CALLE 100', '221@facebook.com', - '2011-02-03', 190393, '2011-06-05', 553780.00, 'A'), -(549, 3, 'SERRANO MADRID CLAUDIA INES', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2011-07-27', 625060.00, 'A'), -(55, 1, 'TAFUR GOMEZ ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127300, '2010-09-12', 211980.00, 'A'), -(550, 1, 'MARTINEZ ACEVEDO MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-10-06', 463920.00, 'A'), -(551, 1, 'GONZALEZ MORENO PABLO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2011-07-21', 444450.00, 'A'), -(552, 1, 'MEJIA ROJAS ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-08-02', 830470.00, 'A'), -(553, 3, 'RODRIGUEZ ANTHONY HANSEL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-16', 819000.00, 'A'), -(554, 1, 'ABUCHAIBE ANNICCHRICO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-05-31', 603610.00, 'A'), -(555, 3, 'MOYES KIMBERLY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-04-08', 561020.00, 'A'), -(556, 3, 'MONTINI MARIO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 118942, '2010-03-16', 994280.00, 'A'), -(557, 3, 'HOGBERG DANIEL TOBIAS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-06-15', 288350.00, 'A'), -(559, 1, 'OROZCO PFEIZER MARTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2010-10-07', 429520.00, 'A'), -(56, 1, 'NARINO ROJAS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-09-27', 310390.00, 'A'), -(560, 1, 'GARCIA MONTOYA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 128662, '2011-06-02', 770840.00, 'A'), -(562, 1, 'VELASQUEZ PALACIO MANUEL ORLANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2011-06-23', 515670.00, 'A'), -(563, 1, 'GALLEGO PEREZ DIEGO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-14', 881460.00, 'A'), -(564, 1, 'RUEDA URREGO JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2011-05-04', 860270.00, 'A'), -(565, 1, 'RESTREPO DEL TORO MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2011-05-10', 656960.00, 'A'), -(567, 1, 'TORO VALENCIA FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2010-08-04', 549090.00, 'A'), -(568, 1, 'VILLEGAS LUIS ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2011-05-02', 633490.00, 'A'), -(569, 3, 'RIDSTROM CHRISTER ANDERS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 300701, '2011-09-06', 520150.00, 'A'), -(57, 1, 'TOVAR ARANGO JOHN JAIME', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127662, '2010-07-03', 916010.00, 'A'), -(570, 3, 'SHEPHERD DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2008-05-11', 700280.00, 'A'), -(573, 3, 'BENGTSSON JOHAN ANDREAS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 196830.00, 'A'), -(574, 3, 'PERSSON HANS JONAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-06-09', 172340.00, 'A'), -(575, 3, 'SYNNEBY BJORN ERIK', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-06-15', 271210.00, 'A'), -('CELL381', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(577, 3, 'COHEN PAUL KIRTAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-05-25', 381490.00, 'A'), -(578, 3, 'ROMERO BRAVO FERNANDO EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', 390360.00, 'A'), -(579, 3, 'GUTHRIE ROBERT DEAN', 191821112, 'CRA 25 CALLE 100', '794@gmail.com', - '2011-02-03', 161705, '2010-07-20', 807350.00, 'A'), -(58, 1, 'TORRES ESCOBAR JAIRO ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-06-17', 648860.00, 'A'), -(580, 3, 'ROCASERMENO MONTENEGRO MARIO JOSE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 139844, '2010-12-01', 865650.00, 'A'), -(581, 1, 'COCK JORGE EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 128662, '2011-08-19', 906210.00, 'A'), -(582, 3, 'REISS ANDREAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2009-01-31', 934120.00, 'A'), -(584, 3, 'ECHEVERRIA CASTILLO GERMAN FRANCISCO', 191821112, 'CRA 25 CALLE 100', - '982@yahoo.com', '2011-02-03', 139844, '2011-07-20', 957370.00, 'A'), -(585, 3, 'BRANDT CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-10', 931030.00, 'A'), -(586, 3, 'VEGA NUNEZ GILBERTO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-07-14', 783010.00, 'A'), -(587, 1, 'BEJAR MUNOZ JORDI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 196234, '2010-10-08', 121990.00, 'A'), -(588, 3, 'WADSO KERSTIN ELIZABETH', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-09-17', 260890.00, 'A'), -(59, 1, 'RAMOS FORERO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-06-20', 496300.00, 'A'), -(590, 1, 'RODRIGUEZ BETANCOURT JAVIER AUGUSTO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127538, '2011-05-23', 909850.00, 'A'), -(592, 1, 'ARBOLEDA HALABY RODRIGO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 150699, '2009-02-03', 939170.00, 'A'), -(593, 1, 'CURE CURE CARLOS ALFREDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 150699, '2011-07-11', 494600.00, 'A'), -(594, 3, 'VIDELA PEREZ OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 117002, '2011-07-13', 655510.00, 'A'), -(595, 1, 'GONZALEZ GAVIRIA NESTOR', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2009-09-28', 793760.00, 'A'), -(596, 3, 'IZQUIERDO DELGADO DIONISIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 188640, '2009-09-24', 2250.00, 'A'), -(597, 1, 'MORENO DAIRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127300, '2011-06-14', 629990.00, 'A'), -(598, 1, 'RESTREPO FERNNDEZ SOTO JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2011-08-31', 143210.00, 'A'), -(599, 3, 'YERYES VERGARA MARIA SOLEDAD', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-10-11', 826060.00, 'A'), -(6, 1, 'GUZMAN ESCOBAR JOSE VICENTE', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-08-10', 26390.00, 'A'), -(60, 1, 'ELEJALDE ESCOBAR TOMAS ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2010-11-09', 534910.00, 'A'), -(601, 1, 'ESCAF ESCAF WILLIAM MIGUEL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 150699, '2011-07-26', 25190.00, 'A'), -(602, 1, 'CEBALLOS ZULUAGA JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2011-05-03', 23920.00, 'A'), -(603, 1, 'OLIVELLA GUERRERO RAFAEL ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 134022, '2010-06-23', 44040.00, 'A'), -(604, 1, 'ESCOBAR GALLO CARLOS HUGO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-09', 148420.00, 'A'), -(605, 1, 'ESCORCIA RAMIREZ EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128569, '2011-04-01', 609990.00, 'A'), -(606, 1, 'MELGAREJO MORENO PAULA ANDREA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-05', 604700.00, 'A'), -(607, 1, 'TOBON CALLE CARLOS GUILLERMO', 191821112, 'CRA 25 CALLE 100', - '689@hotmail.es', '2011-02-03', 128662, '2011-03-16', 193510.00, 'A'), -(608, 3, 'TREVINO NOPHAL SILVANO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 110709, '2011-05-27', 153470.00, 'A'), -(609, 1, 'CARDER VELEZ EDWIN JOHN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-04', 186830.00, 'A'), -(61, 1, 'GASCA DAZA VICTOR HERNANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-09-09', 185660.00, 'A'), -(610, 3, 'DAVIS JOHN BRADLEY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-04-06', 473740.00, 'A'), -(611, 1, 'BAQUERO SLDARRIAGA ALVARO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 128662, '2011-09-15', 808210.00, 'A'), -(612, 3, 'SERRACIN ARAUZ YANIRA YAMILET', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 131272, '2011-06-09', 619820.00, 'A'), -(613, 1, 'MORA SOTO ALVARO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 128662, '2011-09-20', 674450.00, 'A'), -(614, 1, 'SUAREZ RODRIGUEZ HERNANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 145135, '2011-03-29', 512820.00, 'A'), -(616, 1, 'BAQUERO GARCIA JORGE LUIS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2010-07-14', 165160.00, 'A'), -(617, 3, 'ABADI MADURO MOISES SIMON', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 131272, '2009-03-31', 203640.00, 'A'), -(62, 3, 'FLOWER LYNDON BRUCE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 231373, '2011-05-16', 323560.00, 'A'), -(624, 8, 'OLARTE LEONARDO', 191821112, 'CRA 25 CALLE 100', '6@hotmail.com', - '2011-02-03', 127591, '2011-06-03', 219790.00, 'A'), -(63, 1, 'RUBIO CORTES OSCAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2011-04-28', 60830.00, 'A'), -(630, 5, 'PROEXPORT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 128662, '2010-08-12', 708320.00, 'A'), -(632, 8, 'SUPER COFFEE ', 191821112, 'CRA 25 CALLE 100', '792@hotmail.es', - '2011-02-03', 127591, '2011-08-30', 306460.00, 'A'), -(636, 8, 'NOGAL ASESORIAS FINANCIERAS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2010-04-07', 752150.00, 'A'), -(64, 1, 'GUERRA MARTINEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-09-24', 333480.00, 'A'), -(645, 8, 'GIZ - PROFIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-08-31', 566330.00, 'A'), -(652, 3, 'QBE DEL ISTMO COMPANIA DE REASEGUROS ', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-07-14', 932190.00, 'A'), -(655, 3, 'CORP. CENTRO DE ESTUDIOS DE DERECHO JUSTICIA Y SOCIEDAD', 191821112, - 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-05-04', - 440370.00, 'A'), -(659, 3, 'GOOD YEAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 128662, '2010-09-24', 993830.00, 'A'), -(660, 3, 'ARCINIEGAS Y VILLAMIZAR', 191821112, 'CRA 25 CALLE 100', - '258@yahoo.com', '2011-02-03', 127591, '2010-12-02', 787450.00, 'A'), -(67, 1, 'LOPEZ HOYOS JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127662, '2010-04-13', 665230.00, 'A'), -(670, 8, 'APPLUS NORCONTROL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 133535, '2011-09-06', 83210.00, 'A'), -(672, 3, 'KERLL SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 287273, '2010-12-19', 501610.00, 'A'), -(673, 1, 'RESTREPO MOLINA RAMIRO ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 144215, '2010-12-18', 457290.00, 'A'), -(674, 1, 'PEREZ GIL JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2011-08-18', 781610.00, 'A'), -('CELL3840', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(676, 1, 'GARCIA LONDONO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-23', 336160.00, 'A'), -(677, 3, 'RIJLAARSDAM KARIN AN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2010-07-03', 72210.00, 'A'), -(679, 1, 'LIZCANO MONTEALEGRE ARNULFO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127203, '2011-02-01', 546170.00, 'A'), -(68, 1, 'MARTINEZ SILVA EDGAR', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-08-29', 54250.00, 'A'), -(680, 3, 'OLIVARI MAYER PATRICIA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 122642, '2011-08-01', 673170.00, 'A'), -(682, 3, 'CHEVALIER FRANCK PIERRE CHARLES', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 263813, '2010-12-01', 617280.00, 'A'), -(683, 3, 'NG WAI WING ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 126909, '2011-06-14', 904310.00, 'A'), -(684, 3, 'MULLER DOMINGUEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-05-22', 669700.00, 'A'), -(685, 3, 'MOSQUEDA DOMNGUEZ ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-04-08', 635580.00, 'A'), -(686, 3, 'LARREGUI MARIN LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-04-08', 168800.00, 'A'), -(687, 3, 'VARGAS VERGARA ALEJANDRO BRAULIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 159245, '2011-09-14', 937260.00, 'A'), -(688, 3, 'SKINNER LYNN CHERYL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-06-12', 179890.00, 'A'), -(689, 1, 'URIBE CORREA LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 128662, '2010-07-29', 87680.00, 'A'), -(690, 1, 'TAMAYO JARAMILLO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2010-11-10', 898730.00, 'A'), -(691, 3, 'MOTABAN DE BORGES PAULA ELENA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 132958, '2010-09-24', 230610.00, 'A'), -(692, 5, 'FERNANDEZ NALDA JOSE MANUEL ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 117002, '2011-06-28', 456850.00, 'A'), -(693, 1, 'GOMEZ RESTREPO JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2010-06-28', 592420.00, 'A'), -(694, 1, 'CARDENAS TAMAYO JOSE JAIME', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2011-08-08', 591550.00, 'A'), -(696, 1, 'RESTREPO ARANGO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-03-31', 127820.00, 'A'), -(697, 1, 'ROCABADO PASTRANA ROBERT JAVIER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127443, '2011-08-13', 97600.00, 'A'), -(698, 3, 'JARVINEN JOONAS JORI KRISTIAN', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 196234, '2011-05-29', 104560.00, 'A'), -(699, 1, 'MORENO PEREZ HERNAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 128662, '2011-08-30', 230000.00, 'A'), -(7, 1, 'PUYANA RAMOS GUILLERMO ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-08-27', 331830.00, 'A'), -(70, 1, 'GALINDO MANZANO JAVIER FRANCISCO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-31', 214890.00, 'A'), -(701, 1, 'ROMERO PEREZ ARCESIO JOSE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 132775, '2011-07-13', 491650.00, 'A'), -(703, 1, 'CHAPARRO AGUDELO LEONARDO VIRGILIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 128662, '2011-05-04', 271320.00, 'A'), -(704, 5, 'VASQUEZ YANIS MARIA DEL PILAR', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-10-13', 508820.00, 'A'), -(705, 3, 'BARBERO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 116511, '2010-09-13', 730170.00, 'A'), -(706, 1, 'CARMONA HERNANDEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-11-08', 124380.00, 'A'), -(707, 1, 'PEREZ SUAREZ JORGE ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 132775, '2011-09-14', 431370.00, 'A'), -(708, 1, 'ROJAS JORGE MARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 130135, '2011-04-01', 783740.00, 'A'), -(71, 1, 'DIAZ JUAN PABLO/JULES JAVIER', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2011-10-01', 247860.00, 'A'), -(711, 3, 'CATALDO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 116773, '2011-06-06', 984810.00, 'A'), -(716, 5, 'MACIAS PIZARRO PATRICIO ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 117002, '2011-06-07', 376260.00, 'A'), -(717, 1, 'RENDON MAYA DAVID ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 130273, '2010-07-25', 332310.00, 'A'), -(718, 3, 'DE HILDEBRAND E GRISI FILHO CELSO CLAUDIO', 191821112, - 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-11', - 532740.00, 'A'), -(719, 3, 'ALLIEL FACUSSE JULIO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 117002, '2011-06-20', 666800.00, 'A'), -(72, 1, 'LOPEZ ROJAS VICTOR DANIEL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-11', 594640.00, 'A'), -(720, 3, 'CHEMELLO JIMENEZ GAETANO ALBERTO FRANCISCO', 191821112, - 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2010-06-23', - 735760.00, 'A'), -(721, 3, 'GARCIA BEZANILLA RODOLFO EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2010-04-12', 678420.00, 'A'), -(722, 1, 'ARIAS EDWIN', 191821112, 'CRA 25 CALLE 100', '13@terra.com.co', - '2011-02-03', 127492, '2008-04-24', 184800.00, 'A'), -(723, 3, 'SOHN JANG WON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2010-06-07', 888750.00, 'A'), -(724, 3, 'WILHELM GIOVINE JAIME ROBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 115263, '2011-09-20', 889340.00, 'A'), -(726, 3, 'CASTILLERO DANIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 131272, '2011-05-13', 234270.00, 'A'), -(727, 3, 'PORTUGAL LANGHORST MAX GUILLERMO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-03-13', 829960.00, 'A'), -(729, 3, 'ALFONSO HERRANZ AGUSTIN ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2011-07-21', 745060.00, 'A'), -(73, 1, 'DAVILA MENDEZ OSCAR DIEGO', 191821112, 'CRA 25 CALLE 100', - '991@yahoo.com.mx', '2011-02-03', 128569, '2011-08-31', 229630.00, 'A'), -(730, 3, 'ALFONSO HERRANZ AGUSTIN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2010-03-31', 384360.00, 'A'), -(731, 1, 'NOGUERA RAMIREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-07-14', 686610.00, 'A'), -(732, 1, 'ACOSTA PERALTA FABIAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 134030, '2011-06-21', 279960.00, 'A'), -(733, 3, 'MAC LEAN PINA PEDRO SEGUNDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 117002, '2011-05-23', 339980.00, 'A'), -(734, 1, 'LEON ARCOS ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 133535, '2011-05-04', 860020.00, 'A'), -(736, 3, 'LAMARCA GARCIA GERMAN JULIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2010-04-29', 820700.00, 'A'), -(737, 1, 'PORTO VELASQUEZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', - '321@hotmail.es', '2011-02-03', 133535, '2011-08-17', 263060.00, 'A'), -(738, 1, 'BUENAVENTURA MEDINA ERICK WILSON', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 133535, '2011-09-18', 853180.00, 'A'), -(739, 1, 'LEVY ARRAZOLA RALPH MARC', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 133535, '2011-09-27', 476720.00, 'A'), -(74, 1, 'RAMIREZ SORA EDISON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-10-03', 364220.00, 'A'), -(740, 3, 'MOON HYUNSIK ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 173192, '2011-05-15', 824080.00, 'A'), -(741, 3, 'LHUILLIER TRONCOSO GASTON MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 117002, '2011-09-07', 690230.00, 'A'), -(742, 3, 'UNDURRAGA PELLEGRINI GONZALO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 117002, '2010-11-21', 978900.00, 'A'), -(743, 1, 'SOLANO TRIBIN NICOLAS SIMON', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 134022, '2011-03-16', 823800.00, 'A'), -(744, 1, 'NOGUERA BENAVIDES JACOBO ALONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-06', 182300.00, 'A'), -(745, 1, 'GARCIA LEON MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 133535, '2008-04-16', 440110.00, 'A'), -(746, 1, 'EMILIANI ROJAS ALEXANDER ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 133535, '2011-09-12', 653640.00, 'A'), -(748, 1, 'CARRENO POULSEN HELGEN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', 778370.00, 'A'), -(749, 1, 'ALVARADO FANDINO ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 133535, '2008-11-05', 48280.00, 'A'), -(750, 1, 'DIAZ GRANADOS JUAN PABLO.', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-01-12', 906290.00, 'A'), -(751, 1, 'OVALLE BETANCOURT ALBERTO JOSE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 134022, '2011-08-14', 386620.00, 'A'), -(752, 3, 'GUTIERREZ VERGARA JOSE MIGUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-05-08', 214250.00, 'A'), -(753, 3, 'CHAPARRO GUAIMARAL LIZ', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 147467, '2011-03-16', 911350.00, 'A'), -(754, 3, 'CORTES DE SOLMINIHAC PABLO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 117002, '2011-01-20', 914020.00, 'A'), -(755, 3, 'CHETAIL VINCENT', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 239124, '2010-08-23', 836050.00, 'A'), -(756, 3, 'PERUGORRIA RODRIGUEZ JORGE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 188640, '2010-10-17', 438210.00, 'A'), -(757, 3, 'GOLLMANN ROBERTO JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 167269, '2011-03-28', 682870.00, 'A'), -(758, 3, 'VARELA SEPULVEDA MARIA PILAR', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 118777, '2010-07-26', 99730.00, 'A'), -(759, 3, 'MEYER WELIKSON MICHELE JANIK', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-05-10', 450030.00, 'A'), -(76, 1, 'VANEGAS RODRIGUEZ OSCAR IVAN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', 568310.00, 'A'), -(77, 3, 'GATICA SOTOMAYOR MAURICIO VICENTE', 191821112, 'CRA 25 CALLE 100', - '409@terra.com.co', '2011-02-03', 117002, '2010-05-13', 444970.00, 'A'), -(79, 1, 'PENA VALENZUELA DANIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-07-19', 264790.00, 'A'), -(8, 1, 'NAVARRO PALENCIA HUGO RAFAEL', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 126968, '2011-05-05', 579980.00, 'A'), -(80, 1, 'BARRIOS CUADRADO DAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-07-29', 764140.00, 'A'), -(802, 3, 'RECK GARRONE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 118942, '2009-02-06', 767700.00, 'A'), -(81, 1, 'PARRA QUIROGA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 26330.00, 'A'), -(811, 8, 'FEDERACION NACIONAL DE AVICULTORES ', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2011-04-18', 926010.00, 'A'), -(812, 1, 'ORJUELA VELEZ JAIME ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 257160.00, 'A'), -(813, 1, 'PENA CHACON GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2011-08-27', 507770.00, 'A'), -(814, 1, 'RONDEROS MOJICA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127443, '2011-05-04', 767370.00, 'A'), -(815, 1, 'RICO NINO MARIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127443, '2011-05-18', 313540.00, 'A'), -(817, 3, 'AVILA CHYTIL MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 118471, '2011-07-14', 387300.00, 'A'), -(818, 3, 'JABLONSKI DUARTE SILVEIRA ESTER', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 118942, '2010-12-21', 139740.00, 'A'), -(819, 3, 'BUHLER MOSLER XIMENA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 117002, '2011-06-20', 536830.00, 'A'), -(82, 1, 'CARRILLO GAMBOA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2010-06-01', 839240.00, 'A'), -(820, 3, 'FALQUETO DALMIRO ANGELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2010-06-21', 264910.00, 'A'), -(821, 1, 'RUGER GUSTAVO RODRIGUEZ TAMAYO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 133535, '2010-04-12', 714080.00, 'A'), -(822, 3, 'JULIO RODRIGUEZ FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 117002, '2011-08-16', 775650.00, 'A'), -(823, 3, 'CIBANIK RODOLFO MOISES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 132554, '2011-09-19', 736020.00, 'A'), -(824, 3, 'JIMENEZ FRANCO EMMANUEL ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-17', 353150.00, 'A'), -(825, 3, 'GNECCO TREMEDAD', 191821112, 'CRA 25 CALLE 100', '818@hotmail.com', - '2011-02-03', 171072, '2011-03-19', 557700.00, 'A'), -(826, 3, 'VILAR MENDOZA JOSE RAFAEL', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-06-29', 729050.00, 'A'), -(827, 3, 'GONZALEZ MOLINA CRISTIAN MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2011-06-20', 972160.00, 'A'), -(828, 1, 'GONTOVNIK HOBRECKT CARLOS DANIEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 133535, '2011-08-02', 673620.00, 'A'), -(829, 3, 'DIBARRAT URZUA SEBASTIAN RAIMUNDO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-28', 451650.00, 'A'), -(830, 3, 'STOCCHERO HATSCHBACH GUILHERME', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 118777, '2010-11-22', 237370.00, 'A'), -(831, 1, 'NAVAS PASSOS NARCISO EVELIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 133535, '2011-04-21', 831900.00, 'A'), -(832, 3, 'LUNA SOBENES FAVIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2010-10-11', 447400.00, 'A'), -(833, 3, 'NUNEZ NOGUEIRA ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-19', 741290.00, 'A'), -(834, 1, 'CASTRO BELTRAN ARIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 128188, '2011-05-15', 364270.00, 'A'), -(835, 1, 'TURBAY YAMIN MAURICIO JOSE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 188640, '2011-03-17', 597490.00, 'A'), -(836, 1, 'GOMEZ BARRAZA RODNEY LORENZO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 894610.00, 'A'), -(837, 1, 'CUELLO LASCANO ROBERTO', 191821112, 'CRA 25 CALLE 100', - '221@hotmail.es', '2011-02-03', 133535, '2011-07-11', 680610.00, 'A'), -(838, 1, 'PATERNINA PEINADO JOSE VICENTE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 133535, '2011-08-23', 719190.00, 'A'), -(839, 1, 'YEPES RUBIANO ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 133535, '2011-05-16', 554130.00, 'A'), -(84, 1, 'ALVIS RAMIREZ ALFREDO', 191821112, 'CRA 25 CALLE 100', '292@yahoo.com', - '2011-02-03', 127662, '2011-09-16', 68190.00, 'A'), -(840, 1, 'ROCA LLANOS GUILLERMO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 133535, '2011-08-22', 613060.00, 'A'), -(841, 1, 'RENDON TORRALVO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 133535, '2011-05-26', 402950.00, 'A'), -(842, 1, 'BLANCO STAND GERMAN ELIECER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 133535, '2011-07-17', 175530.00, 'A'), -(843, 3, 'BERNAL MAYRA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 131272, '2010-08-31', 668820.00, 'A'), -(844, 1, 'NAVARRO RUIZ LAZARO GREGORIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 126916, '2008-09-23', 817520.00, 'A'), -(846, 3, 'TUOMINEN OLLI PETTERI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2010-09-01', 953150.00, 'A'), -(847, 1, 'ESPARRAGOZA DE LA ESPRIELLA ENRIQUE ALBERTO ', 191821112, - 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-08-09', - 522340.00, 'A'), -(848, 3, 'ARAYA ARIAS JUAN VICENTE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 132165, '2011-08-09', 752210.00, 'A'), -(85, 1, 'GARCIA JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-03-01', 989420.00, 'A'), -(850, 1, 'PARDO GOMEZ GERMAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 132775, '2010-11-25', 713690.00, 'A'), -(851, 1, 'ATIQUE JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 133535, '2008-03-03', 986250.00, 'A'), -(852, 1, 'HERNANDEZ MEYER EDGARDO DE JESUS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 133535, '2011-07-20', 790190.00, 'A'), -(853, 1, 'ZULUAGA DE LEON IVAN JESUS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2010-07-03', 992210.00, 'A'), -(854, 1, 'VILLARREAL ANGULO ENRIQUE ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 133535, '2011-10-02', 590450.00, 'A'), -(855, 1, 'CELIA MARTINEZ APARICIO GIAN PIERO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 133535, '2011-06-15', 975620.00, 'A'), -(857, 3, 'LIPARI RONALDO LUIS', 191821112, 'CRA 25 CALLE 100', - '84@facebook.com', '2011-02-03', 118941, '2010-10-13', 606990.00, 'A'), -(858, 1, 'RAVACHI DAVILA ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 133535, '2011-05-04', 714620.00, 'A'), -(859, 3, 'PINHEIRO OLIVEIRA LUCIANO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 752130.00, 'A'), -(86, 1, 'GOMEZ LIS CARLOS EMILIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2009-12-22', 742520.00, 'A'), -(860, 1, 'PUGLIESE MERCADO LUIGGI ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2010-08-19', 616780.00, 'A'), -(862, 1, 'JANNA TELLO DANIEL JALIL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 133535, '2010-08-07', 287220.00, 'A'), -(863, 3, 'MATTAR CARLOS HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2009-04-26', 953570.00, 'A'), -(864, 1, 'MOLINA OLIER OSVALDO ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 132775, '2011-04-18', 906200.00, 'A'), -(865, 1, 'BLANCO MCLIN DAVID ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2010-08-18', 670290.00, 'A'), -(866, 1, 'NARANJO ROMERO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 133535, '2010-08-25', 632860.00, 'A'), -(867, 1, 'SIMANCAS TRUJILLO RICARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 133535, '2011-04-07', 153400.00, 'A'), -(868, 1, 'ARENAS USME GERMAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 126881, '2011-10-01', 868430.00, 'A'), -(869, 5, 'DIAZ CORDERO RODRIGO FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2010-11-04', 881950.00, 'A'), -(87, 1, 'CELIS PEREZ HERNANDO ALONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-10-05', 744330.00, 'A'), -(870, 3, 'BINDER ZBEDA JONATAHAN JANAN', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 131083, '2010-04-11', 804460.00, 'A'), -(871, 1, 'HINCAPIE HELLMAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2010-09-15', 376440.00, 'A'), -(872, 3, 'MONTEIRO LANAMAR ALFONSO DE BUSTAMANTE', 191821112, - 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118942, '2009-03-23', - 468820.00, 'A'), -(873, 3, 'AGUDO CARMINATTI REGINA CELIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 118777, '2011-01-04', 214770.00, 'A'), -(874, 1, 'GONZALEZ VILLALOBOS CRISTIAN MANUEL', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 133535, '2011-09-26', 667400.00, 'A'), -(875, 3, 'GUELL VILLANUEVA ALVARO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2008-04-07', 692670.00, 'A'), -(876, 3, 'GRES ANAIS ROBERTO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2010-12-01', 461180.00, 'A'), -(877, 3, 'GAME MOCOCAIN JUAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-08-07', 227890.00, 'A'), -(878, 1, 'FERRER UCROS FERNANDO LEON', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 133535, '2011-06-22', 755900.00, 'A'), -(879, 3, 'HERRERA JAUREGUI CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', - '599@facebook.com', '2011-02-03', 131272, '2010-07-22', 95840.00, 'A'), -(880, 3, 'BACALLAO HERNANDEZ ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 126180, '2010-04-21', 211480.00, 'A'), -(881, 1, 'GIJON URBINA JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 144879, '2011-04-03', 769910.00, 'A'), -(882, 3, 'TRUSEN CHRISTOPH WOLFGANG', 191821112, 'CRA 25 CALLE 100', - '338@yahoo.com.mx', '2011-02-03', 127591, '2010-10-24', 215100.00, 'A'), -(883, 3, 'ASHOURI ASKANDAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 157861, '2009-03-03', 765760.00, 'A'), -(885, 1, 'ALTAMAR WATTS JAIRO ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 133535, '2011-08-20', 620170.00, 'A'), -(887, 3, 'QUINTANA BALTIERRA ROBERTO ALEX', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 117002, '2011-06-21', 891370.00, 'A'), -(889, 1, 'CARILLO PATINO VICTOR HILARIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 130226, '2011-09-06', 354570.00, 'A'), -(89, 1, 'CONTRERAS PULIDO LINA MARIA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-06', 237480.00, 'A'), -(890, 1, 'GELVES CANAS GENARO ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-04-02', 355640.00, 'A'), -(891, 3, 'CAGNONI DE MELO PAULA CRISTINA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 118777, '2010-12-14', 714490.00, 'A'), -(892, 3, 'MENA AMESTICA PATRICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 117002, '2011-03-22', 505510.00, 'A'), -(893, 1, 'CAICEDO ROMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-04-07', 384110.00, 'A'), -(894, 1, 'ECHEVERRY TRUJILLO ARMANDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-06-08', 404010.00, 'A'), -(895, 1, 'CAJIA PEDRAZA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-09-02', 867700.00, 'A'), -(896, 2, 'PALACIOS OLIVA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-24', 126500.00, 'A'), -(897, 1, 'GUTIERREZ QUINTERO FABIAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2009-10-24', 29380.00, 'A'), -(899, 3, 'COBO GUEVARA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-12-09', 748860.00, 'A'), -(9, 1, 'OSORIO RODRIGUEZ FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2010-09-27', 904420.00, 'A'), -(90, 1, 'LEYTON GONZALEZ FREDY RAFAEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-03-24', 705130.00, 'A'), -(901, 1, 'HERNANDEZ JOSE ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 130266, '2011-05-23', 964010.00, 'A'), -(903, 3, 'GONZALEZ MALDONADO MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 117002, '2010-11-13', 576500.00, 'A'), -(904, 1, 'OCHOA BARRIGA JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 130266, '2011-05-05', 401380.00, 'A'), -('CELL3886', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(905, 1, 'OSORIO REDONDO JESUS DAVID', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127300, '2011-08-11', 277390.00, 'A'), -(906, 1, 'BAYONA BARRIENTOS JEAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-01-25', 182820.00, 'A'), -(907, 1, 'MARTINEZ GOMEZ CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 132775, '2010-03-11', 81940.00, 'A'), -(908, 1, 'PUELLO LOPEZ GUILLERMO LEON', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 133535, '2011-08-12', 861240.00, 'A'), -(909, 1, 'MOGOLLON LONDONO PEDRO LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 132775, '2011-06-22', 60380.00, 'A'), -(91, 1, 'ORTIZ RIOS JAVIER ADOLFO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-05-12', 813200.00, 'A'), -(911, 1, 'HERRERA HOYOS CARLOS FRANCISCO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 132775, '2010-09-12', 409800.00, 'A'), -(912, 3, 'RIM MYUNG HWAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-05-15', 894450.00, 'A'), -(913, 3, 'BIANCO DORIEN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-09-29', 242820.00, 'A'), -(914, 3, 'FROIMZON WIEN DANIEL', 191821112, 'CRA 25 CALLE 100', '348@yahoo.com', - '2011-02-03', 132165, '2010-11-06', 530780.00, 'A'), -(915, 3, 'ALVEZ AZEVEDO JOAO MIGUEL', 191821112, 'CRA 25 CALLE 100', - '861@hotmail.es', '2011-02-03', 127591, '2009-06-25', 925420.00, 'A'), -(916, 3, 'CARRASCO DIAZ LUIS ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-10-02', 34780.00, 'A'), -(917, 3, 'VIVALLOS MEDINA LEONEL EDMUNDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2010-09-12', 397640.00, 'A'), -(919, 3, 'LASSE ANDRE BARKLIEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 286724, '2011-03-31', 226390.00, 'A'), -(92, 1, 'CUERVO CARDENAS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-09-08', 950630.00, 'A'), -(920, 3, 'BARCELOS PLOTEGHER LILIA MARA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-07', 480380.00, 'A'), -(921, 1, 'JARAMILLO ARANGO JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127559, '2011-06-28', 722700.00, 'A'), -(93, 3, 'RUIZ PRIETO WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 131272, '2011-01-19', 313540.00, 'A'), -(932, 7, 'COMFENALCO ANTIOQUIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 128662, '2011-05-05', 515430.00, 'A'), -(94, 1, 'GALLEGO JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-06-25', 715830.00, 'A'), -(944, 3, 'KARMELIC PAVLOV VESNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 120066, '2010-08-07', 585580.00, 'A'), -(945, 3, 'RAMIREZ BORDON OSCAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2010-07-02', 526250.00, 'A'), -(946, 3, 'SORACCO CABEZA RODRIGO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2011-07-04', 874490.00, 'A'), -(949, 1, 'GALINDO JORGE ERNESTO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127300, '2008-07-10', 344110.00, 'A'), -(950, 3, 'DR KNABLE THOMAS ERNST ALBERT', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 256231, '2009-11-17', 685430.00, 'A'), -(953, 3, 'VELASQUEZ JANETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-07-20', 404650.00, 'A'), -(954, 3, 'SOZA REX JOSE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 150903, '2011-05-26', 269790.00, 'A'), -(955, 3, 'FONTANA GAETE JAIME PATRICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 117002, '2011-01-11', 134970.00, 'A'), -(957, 3, 'PEREZ MARTINEZ GRECIA INDIRA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 132958, '2010-08-27', 922610.00, 'A'), -(96, 1, 'FORERO CUBILLOS JORGEARTURO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-07-25', 45020.00, 'A'), -(97, 1, 'SILVA ACOSTA MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-09-19', 309580.00, 'A'), -(978, 3, 'BLUMENTHAL JAIRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 117630, '2010-04-22', 653490.00, 'A'), -(984, 3, 'SUN XIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-01-17', 203630.00, 'A'), -(99, 1, 'CANO GUZMAN ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-08-23', 135620.00, 'A'), -(999, 1, 'DRAGER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', - 127591, '2010-12-22', 882070.00, 'A'), -('CELL1020', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1083', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1153', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL126', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1326', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1329', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL133', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1413', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1426', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1529', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1651', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1760', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1857', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1879', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1902', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1921', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1962', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1992', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2006', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL215', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2307', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2322', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2497', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2641', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2736', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2805', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL281', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2905', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2963', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3029', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3090', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3161', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3302', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3309', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3325', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3372', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3422', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3514', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3562', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3652', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3661', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4334', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4440', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4547', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4639', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4662', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4698', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL475', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4790', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4838', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4885', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4939', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5064', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5066', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL51', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5102', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5116', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5192', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5226', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5250', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5282', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL536', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5503', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5506', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL554', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5544', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5595', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5648', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5801', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5821', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6201', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6277', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6288', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6358', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6369', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6408', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6425', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6439', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6509', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6533', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6556', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6731', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6766', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6775', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6802', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6834', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6890', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6953', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6957', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7024', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7216', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL728', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7314', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7431', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7432', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7513', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7522', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7617', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7623', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7708', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7777', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL787', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7907', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7951', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7956', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8004', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8058', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL811', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8136', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8162', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8286', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8300', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8339', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8366', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8389', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8446', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8487', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8546', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8578', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8643', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8774', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8829', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8846', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8942', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9046', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9110', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL917', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9189', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9241', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9331', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9429', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9434', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9495', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9517', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9558', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9650', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9748', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9830', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9878', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9893', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9945', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('T-Cx200', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx201', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx202', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx203', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx204', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx205', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx206', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx207', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx208', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx209', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx210', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx211', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx212', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx213', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx214', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('CELL4021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5255', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5730', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2540', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7376', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5471', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2588', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL570', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2854', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6683', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1382', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2051', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7086', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9220', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9701', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'); - --- --- Data for Name: personnes; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO personnes (cedula, tipo_documento_id, nombres, telefono, direccion, - email, fecha_nacimiento, ciudad_id, creado_at, cupo, - estado) -VALUES -(1, 3, 'HUANG ZHENGQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-05-18', 6930.00, 'I'), -(100, 1, 'USME FERNANDEZ JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2010-04-15', 439480.00, 'A'), -(1003, 8, 'SINMON PEREZ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-08-25', 468610.00, 'A'), -(1009, 8, 'ARCINIEGAS Y VILLAMIZAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2010-08-12', 967680.00, 'A'), -(101, 1, 'CRANE DE NARVAEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-06-09', 790540.00, 'A'), -(1011, 8, 'EL EVENTO', 191821112, 'CRA 25 CALLE 100', '596@terra.com.co', - '2011-02-03', 127591, '2011-05-24', 820390.00, 'A'), -(1020, 7, 'OSPINA YOLANDA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-05-02', 222970.00, 'A'), -(1025, 7, 'CHEMIPLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-08-08', 918670.00, 'A'), -(1034, 1, 'TAXI FILMS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2010-09-01', 962580.00, 'A'), -(104, 1, 'CASTELLANOS JIMENEZ NOE', 191821112, 'CRA 25 CALLE 100', - '127@yahoo.es', '2011-02-03', 127591, '2011-10-05', 95230.00, 'A'), -(1046, 3, 'JACQUET PIERRE MICHEL ALAIN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 263489, '2011-07-23', 90810.00, 'A'), -(1048, 5, 'SPOERER VELEZ CARLOS JORGE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-02-03', 184920.00, 'A'), -(1049, 3, 'SIDNEI DA SILVA LUIZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 117630, '2011-07-02', 850180.00, 'A'), -(105, 1, 'HERRERA SEQUERA ALVARO FRANCISCO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-04-26', 77390.00, 'A'), -(1050, 3, 'CAVALCANTI YUE CARLA HANLI', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-08-31', 696130.00, 'A'), -(1052, 1, 'BARRETO RIVAS ELKIN MARTIN', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 131508, '2011-09-19', 562160.00, 'A'), -(1053, 3, 'WANDERLEY ANTONIO ERNESTO THOME', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 150617, '2011-01-31', 20490.00, 'A'), -(1054, 3, 'HE SHAN', 191821112, 'CRA 25 CALLE 100', '715@yahoo.es', - '2011-02-03', 132958, '2010-10-05', 415970.00, 'A'), -(1055, 3, 'ZHRNG XIM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2010-10-05', 18380.00, 'A'), -(1057, 3, 'NICKEL GEB. STUTZ KARIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2010-10-08', 164850.00, 'A'), -(1058, 1, 'VELEZ PAREJA IGNACIO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 132775, '2011-06-24', 292250.00, 'A'), -(1059, 3, 'GURKE RALF ERNST', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 287570, '2011-06-15', 966700.00, 'A'), -(106, 1, 'ESTRADA LONDONO JUAN SIMON', 191821112, 'CRA 25 CALLE 100', - '8@terra.com.co', '2011-02-03', 128579, '2011-03-09', 101260.00, 'A'), -(1060, 1, 'MEDRANO BARRIOS WILSON', 191821112, 'CRA 25 CALLE 100', - '479@facebook.com', '2011-02-03', 132775, '2011-06-18', 956740.00, 'A'), -(1061, 1, 'GERDTS PORTO HANS EDUARDO', 191821112, 'CRA 25 CALLE 100', - '140@gmail.com', '2011-02-03', 127591, '2011-05-09', 883590.00, 'A'), -(1062, 1, 'BORGE VISBAL JORGE FIDEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 132775, '2011-07-14', 547750.00, 'A'), -(1063, 3, 'GUTIERREZ JOSELYN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-06-06', 87960.00, 'A'), -(1064, 4, 'OVIEDO PINZON MARYI YULEY', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127538, '2011-04-21', 796560.00, 'A'), -(1065, 1, 'VILORA SILVA OMAR ESTEBAN', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 133535, '2010-06-09', 718910.00, 'A'), -(1066, 3, 'AGUIAR ROMAN RODRIGO HUMBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 126674, '2011-06-28', 204890.00, 'A'), -(1067, 1, 'GOMEZ AGAMEZ ADOLFO DEL CRISTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 131105, '2011-06-15', 867730.00, 'A'), -(1068, 3, 'GARRIDO CECILIA', 191821112, 'CRA 25 CALLE 100', '973@yahoo.com.mx', - '2011-02-03', 118777, '2010-08-16', 723980.00, 'A'), -(1069, 1, 'JIMENEZ MANJARRES DAVID RAFAEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 132775, '2010-12-17', 16680.00, 'A'), -(107, 1, 'ARANGUREN TEJADA JORGE ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-16', 274110.00, 'A'), -(1070, 3, 'OYARZUN TEJEDA ANDRES FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-05-26', 911490.00, 'A'), -(1071, 3, 'MARIN BUCK RAFAEL ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 126180, '2011-05-04', 507400.00, 'A'), -(1072, 3, 'VARGAS JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 126674, '2011-07-28', 802540.00, 'A'), -(1073, 3, 'JUEZ JAIRALA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 126180, '2010-04-09', 490510.00, 'A'), -(1074, 1, 'APONTE PENSO HERNAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 132879, '2011-05-27', 44900.00, 'A'), -(1075, 1, 'PINERES BUSTILLO ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 126916, '2008-10-29', 752980.00, 'A'), -(1076, 1, 'OTERA OMA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 128662, '2011-04-29', 630210.00, 'A'), -(1077, 3, 'CONTRERAS CHINCHILLA JUAN DOMINGO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 139844, '2011-06-21', 892110.00, 'A'), -(1078, 1, 'GAMBA LAURENCIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2010-09-15', 569940.00, 'A'), -(108, 1, 'MUNOZ ARANGO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-08-01', 66770.00, 'A'), -(1080, 1, 'PRADA ABAUZA CARLOS AUGUSTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2010-11-15', 156870.00, 'A'), -(1081, 1, 'PAOLA CAROLINA PINTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-08-27', 264350.00, 'A'), -(1082, 1, 'PALOMINO HERNANDEZ GERMAN JAVIER', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 133535, '2011-03-22', 851120.00, 'A'), -(1084, 1, 'URIBE DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', - '602@hotmail.es', '2011-02-03', 127591, '2011-09-07', 759470.00, 'A'), -(1085, 1, 'ARGUELLO CALDERON ARMANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-07-24', 409660.00, 'A'), -(1087, 1, 'CARVAJAL HERNANDEZ CHRISTIAN ARMANDO', 191821112, 'CRA 25 CALLE 100', - '296@yahoo.es', '2011-02-03', 159432, '2011-06-03', 620410.00, 'A'), -(1088, 1, 'CASTRO BLANCO MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 150512, '2009-10-08', 792400.00, 'A'), -(1089, 1, 'RIBEROS GUTIERREZ GUSTAVO ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-01-27', 100800.00, 'A'), -(109, 1, 'BELTRAN MARIA LUZ DARY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-09-06', 511510.00, 'A'), -(1091, 4, 'ORTIZ ORTIZ BENIGNO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127538, '2011-08-05', 331540.00, 'A'), -(1092, 3, 'JOHN CHRISTOPHER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-04-08', 277320.00, 'A'), -(1093, 1, 'PARRA VILLAREAL MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 129499, '2011-08-23', 391980.00, 'A'), -(1094, 1, 'BESGA RODRIGUEZ JUAN JAVIER', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127300, '2011-09-23', 127960.00, 'A'), -(1095, 1, 'ZAPATA MEZA EDGAR FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 129499, '2011-05-19', 463840.00, 'A'), -(1096, 3, 'CORNEJO BRAVO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 117002, '2010-11-08', 935340.00, 'A'), -('CELL3944', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(1099, 1, 'GARCIA PORRAS FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-14', 243360.00, 'A'), -(11, 1, 'HERNANDEZ PARDO ARMANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-31', 197540.00, 'A'), -(110, 1, 'VANEGAS JULIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-09-06', 357260.00, 'A'), -(1101, 1, 'QUINTERO BURBANO GABRIEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 129499, '2011-08-20', 57420.00, 'A'), -(1102, 1, 'BOHORQUEZ AFANADOR CHRISTIAN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-03-19', 214610.00, 'A'), -(1103, 1, 'MORA VARGAS JULIO ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-08-29', 900790.00, 'A'), -(1104, 1, 'PINEDA JORGE ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-06-21', 860110.00, 'A'), -(1105, 1, 'TORO CEBALLOS GONZALO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 129499, '2011-08-18', 598180.00, 'A'), -(1106, 1, 'SCHENIDER TORRES JAIME', 191821112, 'CRA 25 CALLE 100', - '85@yahoo.com.mx', '2011-02-03', 127799, '2011-08-11', 410590.00, 'A'), -(1107, 1, 'RUEDA VILLAMIZAR JAIME', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2010-11-15', 258410.00, 'A'), -(1108, 1, 'RUEDA VILLAMIZAR RICARDO JAIME', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 129499, '2011-03-22', 60260.00, 'A'), -(1109, 1, 'GOMEZ RODRIGUEZ HERNANDO ARTURO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2010-06-02', 526080.00, 'A'), -(111, 1, 'FRANCISCO EDUARDO JAIME BOTERO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2010-09-09', 251770.00, 'A'), -(1110, 1, 'HERNANDEZ MENDEZ EDGAR', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 129499, '2011-03-22', 449610.00, 'A'), -(1113, 1, 'LEON HERNANDEZ OSCAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 129499, '2011-03-21', 992090.00, 'A'), -(1114, 1, 'LIZARAZO CARRENO HUGO ARCENIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 133535, '2010-12-10', 959490.00, 'A'), -(1115, 1, 'LIAN BARRERA GABRIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2010-05-30', 821170.00, 'A'), -(1117, 3, 'TELLEZ BEZAN FRANCISCO JAVIER ', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 117002, '2011-08-21', 673430.00, 'A'), -(1118, 1, 'FUENTES ARIZA DIEGO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-06-09', 684970.00, 'A'), -(1119, 1, 'MOLINA M. ROBINSON', 191821112, 'CRA 25 CALLE 100', - '728@hotmail.com', '2011-02-03', 129447, '2010-09-19', 404580.00, 'A'), -(112, 1, 'PATINO PINTO ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-10-06', 187050.00, 'A'), -(1120, 1, 'ORTIZ DURAN BENIGNO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127538, '2011-08-05', 967970.00, 'A'), -(1121, 1, 'CARVAJAL ALMEIDA LUIS RAUL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 129499, '2011-06-22', 626140.00, 'A'), -(1122, 1, 'TORRES QUIROGA EDWIN SILVESTRE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 129447, '2011-08-17', 226780.00, 'A'), -(1123, 1, 'VIVIESCAS JAIMES ALVARO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-10', 255480.00, 'A'), -(1124, 1, 'MARTINEZ RUEDA JAVIER EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 129447, '2011-06-23', 597040.00, 'A'), -(1125, 1, 'ANAYA FLORES JORGE ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 129499, '2011-06-04', 218790.00, 'A'), -(1126, 3, 'TORRES MARTINEZ ANTONIO JESUS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 188640, '2010-09-02', 302820.00, 'A'), -(1127, 3, 'CACHO LEVISIER JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 153276, '2009-06-25', 857720.00, 'A'), -(1129, 3, 'ULLOA VALDIVIESO CRISTIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 117002, '2011-06-02', 327570.00, 'A'), -(113, 1, 'HIGUERA CALA JAIME ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-07-27', 179950.00, 'A'), -(1130, 1, 'ARCINIEGAS WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 126892, '2011-08-05', 497420.00, 'A'), -(1131, 1, 'BAZA ACUNA JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 129447, '2010-12-10', 504410.00, 'A'), -(1132, 3, 'BUIRA ROS CARLOS MARIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2010-04-27', 29750.00, 'A'), -(1133, 1, 'RODRIGUEZ JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 129447, '2011-06-10', 635560.00, 'A'), -(1134, 1, 'QUIROGA PEREZ NELSON', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 129447, '2011-05-18', 88520.00, 'A'), -(1135, 1, 'TATIANA AYALA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127122, '2011-07-01', 535920.00, 'A'), -(1136, 1, 'OSORIO BENEDETTI FABIAN AUGUSTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 132775, '2010-10-23', 414060.00, 'A'), -(1139, 1, 'CELIS PINTO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2009-02-25', 964970.00, 'A'), -(114, 1, 'VALDERRAMA CUERVO JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-09-02', 338590.00, 'A'), -(1140, 1, 'ORTIZ ARENAS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 129499, '2009-10-21', 613300.00, 'A'), -(1141, 1, 'VALDIVIESO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 134022, '2009-01-13', 171590.00, 'A'), -(1144, 1, 'LOPEZ CASTILLO NELSON', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 129499, '2010-09-09', 823110.00, 'A'), -(1145, 1, 'CAVELIER LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 126916, '2008-11-29', 389220.00, 'A'), -(1146, 1, 'CAVELIER OTOYA LUIS EDURDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 126916, '2010-05-25', 476770.00, 'A'), -(1147, 1, 'GARCIA RUEDA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '111@yahoo.es', '2011-02-03', 133535, '2010-09-12', 216190.00, 'A'), -(1148, 1, 'LADINO GOMEZ OMAR ORLANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-05-02', 650640.00, 'A'), -(1149, 1, 'CARRENO ORTIZ OSCAR JAVIER', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-03-15', 604630.00, 'A'), -(115, 1, 'NARDEI BONILLO BRUNO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-04-16', 153110.00, 'A'), -(1150, 1, 'MONTOYA BOZZI MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 129499, '2011-05-12', 71240.00, 'A'), -(1152, 1, 'LORA RICHARD JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2010-09-15', 497700.00, 'A'), -(1153, 1, 'SILVA PINZON MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '915@hotmail.es', '2011-02-03', 127591, '2011-06-15', 861670.00, 'A'), -(1154, 3, 'GEORGE J A KHALILIEH', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-20', 815260.00, 'A'), -(1155, 3, 'CHACON MARIN CARLOS MANUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-07-26', 491280.00, 'A'), -(1156, 3, 'OCHOA CHEHAB XAVIER ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 126180, '2011-06-13', 10630.00, 'A'), -(1157, 3, 'ARAYA GARRI GABRIEL ALEXIS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 117002, '2011-09-19', 579320.00, 'A'), -(1158, 3, 'MACCHI ARIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 116366, '2010-04-12', 864690.00, 'A'), -(116, 1, 'GONZALEZ FANDINO JAIME EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-05-10', 749800.00, 'A'), -(1160, 1, 'CAVALIER LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 126916, '2009-08-27', 333390.00, 'A'), -('CELL396', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(1161, 3, 'DOMINGUEZ DE OBREGON ILEANA DEL CARMEN', 191821112, - 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 139844, '2011-03-06', - 910490.00, 'A'), -(1162, 2, 'FALASCA CLAUDIO ARIEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 116511, '2011-07-10', 552280.00, 'A'), -(1163, 3, 'MUTABARUKA PATRICK', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 131352, '2011-03-22', 29940.00, 'A'), -(1164, 1, 'DOMINGUEZ ATENCIA JIMMY CARLOS', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-07-22', 492860.00, 'A'), -(1165, 4, 'LLANO GONZALEZ ALBERTO MARIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127300, '2010-08-21', 374490.00, 'A'), -(1166, 3, 'LOPEZ ROLDAN JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 188640, '2011-07-31', 393860.00, 'A'), -(1167, 1, 'GUTIERREZ DE PINERES JALILIE ARISTIDES', 191821112, - 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 133535, '2010-12-09', 845810.00, - 'A'), -(1168, 1, 'HEYMANS PIERRE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 128662, '2010-11-08', 47470.00, 'A'), -(1169, 1, 'BOTERO OSORIO RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2009-05-27', 699940.00, 'A'), -(1170, 3, 'GARNHAM POBLETE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 116396, '2011-03-27', 357270.00, 'A'), -(1172, 1, 'DAJUD DURAN JOSE RODRIGO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 133535, '2009-12-02', 360910.00, 'A'), -(1173, 1, 'MARTINEZ MERCADO PEDRO PABLO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2011-07-25', 744930.00, 'A'), -(1174, 1, 'GARCIA AMADOR ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 133535, '2011-05-19', 641930.00, 'A'), -(1176, 1, 'VARGAS VARELA LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 131568, '2011-08-30', 948410.00, 'A'), -(1178, 1, 'GUTIERRES DE PINERES ARISTIDES', 191821112, 'CRA 25 CALLE 100', - '217@hotmail.com', '2011-02-03', 133535, '2011-05-10', 242490.00, 'A'), -(1179, 3, 'LEIZAOLA POZO JIMENA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 132958, '2011-08-01', 759800.00, 'A'), -(118, 1, 'FERNANDEZ VELOSO PEDRO HERNANDO', 191821112, 'CRA 25 CALLE 100', - '452@hotmail.es', '2011-02-03', 128662, '2010-08-06', 198830.00, 'A'), -(1180, 3, 'MARINO PAOLO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2010-12-24', 71520.00, 'A'), -(1181, 1, 'MOLINA VIZCAINO GUSTAVO JORGE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-28', 78220.00, 'A'), -(1182, 3, 'MEDEL GARCIA FABIAN RODRIGO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 117002, '2011-04-25', 176540.00, 'A'), -(1183, 1, 'LESMES ARIAS RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2010-09-09', 648020.00, 'A'), -(1184, 1, 'ALCALA MARTINEZ ALFREDO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 132775, '2010-07-23', 710470.00, 'A'), -(1186, 1, 'LLAMAS FOLIACO LUIS ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-09-07', 910210.00, 'A'), -(1187, 1, 'GUARDO DEL RIO LIBARDO FARID', 191821112, 'CRA 25 CALLE 100', - '73@yahoo.com.mx', '2011-02-03', 128662, '2011-09-01', 726050.00, 'A'), -(1188, 3, 'JEFFREY ARTHUR DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 115724, '2011-03-21', 899630.00, 'A'), -(1189, 1, 'DAHL VELEZ JULIANA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 126916, '2011-05-23', 320020.00, 'A'), -(119, 3, 'WALESKA DE LIMA ALMEIDA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 118942, '2011-05-09', 125240.00, 'A'), -(1190, 3, 'LUIS JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 118777, '2008-04-04', 901210.00, 'A'), -(1192, 1, 'AZUERO VALENTINA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-04-14', 26310.00, 'A'), -(1193, 1, 'MARQUEZ GALINDO MAURICIO JAVIER', 191821112, 'CRA 25 CALLE 100', - '729@yahoo.es', '2011-02-03', 131105, '2011-05-13', 493560.00, 'A'), -(1195, 1, 'NIETO FRANCO JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', - '707@yahoo.com', '2011-02-03', 127591, '2011-07-30', 463790.00, 'A'), -(1196, 3, 'ESTEVES JOAQUIM LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-04-05', 152270.00, 'A'), -(1197, 4, 'BARRERO KAREN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-06-12', 369990.00, 'A'), -(1198, 1, 'CORRALES GUZMAN DELIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127689, '2011-08-03', 393120.00, 'A'), -(1199, 1, 'CUELLAR TOCO EDGAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127531, '2011-09-20', 855640.00, 'A'), -(12, 1, 'MARIN PRIETO FREDY NELSON ', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-23', 641210.00, 'A'), -(120, 1, 'LOPEZ JARAMILLO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2009-04-17', 29680.00, 'A'), -(1200, 3, 'SCHULTER ACHIM', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 291002, '2010-05-21', 98860.00, 'A'), -(1201, 3, 'HOWELL LAURENCE ADRIAN', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 286785, '2011-05-22', 927350.00, 'A'), -(1202, 3, 'ALCAZAR ESCARATE JAIME PATRICIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 117002, '2011-08-25', 340160.00, 'A'), -(1203, 3, 'HIDALGO FUENZALIDA GABRIEL RAUL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-03', 918780.00, 'A'), -(1206, 1, 'VANEGAS HENAO ORLANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-09-27', 832910.00, 'A'), -(1207, 1, 'PENARANDA ARIAS RICARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-07-19', 832710.00, 'A'), -(1209, 1, 'LEZAMA CERVERA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 132775, '2011-09-14', 825980.00, 'A'), -(121, 1, 'PULIDO JIMENEZ OSCAR HUMBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-08-29', 772700.00, 'A'), -(1211, 1, 'TRUJILLO BOCANEGRA HAROL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127538, '2011-05-27', 199260.00, 'A'), -(1212, 1, 'ALVAREZ TORRES MARIO RICARDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-08-15', 589960.00, 'A'), -(1213, 1, 'CORRALES VARON BELMER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-26', 352030.00, 'A'), -(1214, 3, 'CUEVAS RODRIGUEZ MANUELA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-09-30', 990250.00, 'A'), -(1216, 1, 'LOPEZ EDICSON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-08-31', 505210.00, 'A'), -(1217, 3, 'GARCIA PALOMARES JUAN JAVIER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 188640, '2011-07-31', 840440.00, 'A'), -(1218, 1, 'ARCINIEGAS NARANJO RICARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127492, '2010-12-17', 686610.00, 'A'), -(122, 1, 'GONZALEZ RIANO LEONARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128031, '2011-08-05', 774450.00, 'A'), -(1220, 1, 'GARCIA GUTIERREZ WILLIAM', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-06-20', 498680.00, 'A'), -(1221, 3, 'GOMEZ DE ALONSO ANGELA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-27', 758300.00, 'A'), -(1222, 1, 'MEDINA QUIROGA JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127538, '2011-01-16', 295480.00, 'A'), -(1224, 1, 'ARCILA CORREA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2011-03-20', 125900.00, 'A'), -(1225, 1, 'QUIJANO REYES CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127538, '2010-04-08', 22100.00, 'A'), -(157, 1, 'ORTIZ RIOS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-05-12', 365330.00, 'A'), -(1226, 1, 'VARGAS GALLEGO JAIRO ALONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127300, '2009-07-30', 732820.00, 'A'), -(1228, 3, 'NAPANGA MIRENGHI MARTIN', 191821112, 'CRA 25 CALLE 100', - '153@yahoo.es', '2011-02-03', 132958, '2011-02-08', 790400.00, 'A'), -(123, 1, 'LAMUS CASTELLANOS ANDRES RICARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-05-11', 554160.00, 'A'), -(1230, 1, 'RIVEROS PINEROS JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127492, '2011-09-25', 422220.00, 'A'), -(1231, 3, 'ESSER JUAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127327, '2011-04-01', 635060.00, 'A'), -(1232, 3, 'DOMINGUEZ MORA MAURICIO ALFREDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-22', 908630.00, 'A'), -(1233, 3, 'MOLINA FERNANDEZ FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2010-05-28', 637990.00, 'A'), -(1234, 3, 'BELLO DANIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 196234, '2010-09-04', 464040.00, 'A'), -(1235, 3, 'BENADAVA GUEVARA DAVID ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2011-05-18', 406240.00, 'A'), -(1236, 3, 'RODRIGUEZ MATOS ROBERTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-03-22', 639070.00, 'A'), -(1237, 3, 'TAPIA ALARCON PATRICIO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 117002, '2010-07-06', 976620.00, 'A'), -(1239, 3, 'VERCHERE ALFONSO CHRISTIAN', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 117002, '2010-08-23', 899600.00, 'A'), -(1241, 1, 'ESPINEL LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 128206, '2009-03-09', 302860.00, 'A'), -(1242, 3, 'VERGARA FERREIRA PATRICIA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-10-03', 713310.00, 'A'), -(1243, 3, 'ZUMARRAGA SIRVENT CRSTINA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 188640, '2011-08-24', 657950.00, 'A'), -(1244, 4, 'ESCORCIA VASQUEZ TOMAS', 191821112, 'CRA 25 CALLE 100', - '354@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', 149830.00, 'A'), -(1245, 4, 'PARAMO CUENCA KELLY LORENA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127492, '2011-05-04', 775300.00, 'A'), -(1246, 4, 'PEREZ LOPEZ VERONICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 128662, '2011-07-11', 426990.00, 'A'), -(1247, 4, 'CHAPARRO RODRIGUEZ DANIELA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-10-08', 809070.00, 'A'), -(1249, 4, 'DIAZ MARTINEZ MARIA CAROLINA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 133535, '2011-05-30', 394740.00, 'A'), -(125, 1, 'CALDON RODRIGUEZ JAIME ARIEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 126968, '2011-07-29', 574780.00, 'A'), -(1250, 4, 'PINEDA VASQUEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 128662, '2010-09-03', 680540.00, 'A'), -(1251, 5, 'MATIZ URIBE ANGELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2010-12-25', 218470.00, 'A'), -(1253, 1, 'ZAMUDIO RICAURTE JAIRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 126892, '2011-08-05', 598160.00, 'A'), -(1254, 1, 'ALJURE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2010-07-21', 838660.00, 'A'), -(1255, 3, 'ARMESTO AIRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 196234, '2011-01-29', 398840.00, 'A'), -(1257, 1, 'POTES GUEVARA JAIRO MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127858, '2011-03-17', 194580.00, 'A'), -(1258, 1, 'BURBANO QUIROGA RAFAEL', 191821112, 'CRA 25 CALLE 100', - '767@facebook.com', '2011-02-03', 127591, '2011-04-07', 538220.00, 'A'), -(1259, 1, 'CARDONA GOMEZ JAVIR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127300, '2011-03-16', 107380.00, 'A'), -(126, 1, 'PULIDO PARDO GUIDO IVAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-10-05', 531550.00, 'A'), -(1260, 1, 'LOPERA LEDESMA PABLO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-19', 922240.00, 'A'), -(1263, 1, 'TRIBIN BARRIGA JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127300, '2011-09-02', 525330.00, 'A'), -(1264, 1, 'NAVIA LOPEZ ANDRES FELIPE ', 191821112, 'CRA 25 CALLE 100', - '353@hotmail.es', '2011-02-03', 127300, '2011-07-15', 591190.00, 'A'), -(1265, 1, 'CARDONA GOMEZ FABIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127300, '2010-11-18', 379940.00, 'A'), -(1266, 1, 'ESCARRIA VILLEGAS ANDRES JULIAN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-08-19', 126160.00, 'A'), -(1268, 1, 'CASTRO HERNANDEZ ALVARO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127300, '2011-03-25', 76260.00, 'A'), -(127, 1, 'RODRIGUEZ RODRIGUEZ GIOVANI FRANCISCO', 191821112, 'CRA 25 CALLE 100', - '662@hotmail.es', '2011-02-03', 127591, '2011-09-29', 933390.00, 'A'), -(1270, 1, 'LEAL HERNANDEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', 313610.00, 'A'), -(1272, 1, 'ORTIZ CARDONA WILLIAM ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '914@hotmail.com', '2011-02-03', 128662, '2011-09-13', 272150.00, 'A'), -(1273, 1, 'ROMERO VAN GOMPEL HERNAN', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2010-09-07', 832960.00, 'A'), -(1274, 1, 'BERMUDEZ LONDONO JHON FREDY', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127300, '2011-08-29', 348380.00, 'A'), -(1275, 1, 'URREA ALVAREZ NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-09-01', 242980.00, 'A'), -(1276, 1, 'VALENCIA LLANOS RODRIGO AUGUSTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2010-04-11', 169790.00, 'A'), -(1277, 1, 'PAZ VALENCIA GUILLERMO ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127300, '2011-08-05', 120020.00, 'A'), -(1278, 1, 'MONROY CORREDOR GERARDO ALONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127300, '2011-06-25', 90700.00, 'A'), -(1279, 1, 'RIOS MEDINA JAVIER ERMINSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127300, '2011-09-12', 93440.00, 'A'), -(128, 1, 'GALLEGO GUZMAN MARIO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-06-25', 72290.00, 'A'), -(1280, 1, 'GARCIA OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-30', 195090.00, 'A'), -(1282, 1, 'MURILLO PESELLIN GABRIEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127300, '2011-06-15', 890530.00, 'A'), -(1284, 1, 'DIAZ ALVAREZ JOHNY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127300, '2011-06-25', 164130.00, 'A'), -(1285, 1, 'GARCES BELTRAN RAUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127300, '2011-08-11', 719220.00, 'A'), -(1286, 1, 'MATERON POVEDA LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-25', 103710.00, 'A'), -(1287, 1, 'VALENCIA ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2010-10-23', 360880.00, 'A'), -(1288, 1, 'PENA AGUDELO JOSE RAMON', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 134022, '2011-05-25', 493280.00, 'A'), -(1289, 1, 'CORREA NUNEZ JORGE ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2010-08-18', 383750.00, 'A'), -(129, 1, 'ALVAREZ RODRIGUEZ IVAN RICARDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2008-01-28', 561290.00, 'A'), -(1291, 1, 'BEJARANO ROSERO FREDDY ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-10-09', 43400.00, 'A'), -(1292, 1, 'CASTILLO BARRIOS GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127300, '2011-06-17', 900180.00, 'A'), -('CELL401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(1296, 1, 'GALVEZ GUTIERREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127300, '2010-03-28', 807090.00, 'A'), -(1297, 3, 'CRUZ GARCIA MILTON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 139844, '2011-03-21', 75630.00, 'A'), -(1298, 1, 'VILLEGAS GUTIERREZ JOSE RICARDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-04-11', 956860.00, 'A'), -(13, 1, 'VACA MURCIA JESUS ALFREDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-04', 613430.00, 'A'), -(1301, 3, 'BOTTI ALFONSO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 231989, '2011-04-04', 910640.00, 'A'), -(1302, 3, 'COTINO HUESO LORENZO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2010-02-02', 803450.00, 'A'), -(1304, 3, 'NESPOLI MANTOVANI LUIZ CARLOS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-04-18', 16230.00, 'A'), -(1307, 4, 'AVILA GIL PAULA ANDREA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-04-19', 711110.00, 'A'), -(1308, 4, 'VALLEJO PINEDA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-12', 323490.00, 'A'), -(1312, 1, 'ROMERO OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-04-17', 642460.00, 'A'), -(1314, 3, 'LULLIES CONSTANZE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 245206, '2010-06-03', 154970.00, 'A'), -(1315, 1, 'CHAPARRO GUTIERREZ JORGE ADRIANO', 191821112, 'CRA 25 CALLE 100', - '284@hotmail.es', '2011-02-03', 127591, '2010-12-02', 325440.00, 'A'), -(1316, 1, 'BARRANTES DISI RICARDO JOSE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 132879, '2011-07-18', 162270.00, 'A'), -(1317, 3, 'VERDES GAGO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 188640, '2010-03-10', 835060.00, 'A'), -(1319, 3, 'MARTIN MARTINEZ GUSTAVO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 188640, '2010-05-26', 937220.00, 'A'), -(1320, 3, 'MOTTURA MASSIMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 118777, '2008-11-10', 620640.00, 'A'), -(1321, 3, 'RUSSELL TIMOTHY JAMES', 191821112, 'CRA 25 CALLE 100', - '502@hotmail.es', '2011-02-03', 145135, '2010-04-16', 291560.00, 'A'), -(1322, 3, 'JAIN TARSEM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 190393, '2011-05-31', 595890.00, 'A'), -(1323, 3, 'ORTEGA CEVALLOS JULIETA ELIZABETH', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-06-30', 104760.00, 'A'), -(1324, 3, 'MULLER PICHAIDA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 117002, '2011-05-17', 736130.00, 'A'), -(1325, 3, 'ALVEAR TELLEZ JULIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 117002, '2011-01-23', 366390.00, 'A'), -(1327, 3, 'MOYA LATORRE MARCELA CAROLINA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 117002, '2011-05-17', 18520.00, 'A'), -(1328, 3, 'LAMA ZAROR RODRIGO IGNACIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 117002, '2010-10-27', 221990.00, 'A'), -(1329, 3, 'HERNANDEZ CIFUENTES MAURICE JEANETTE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 139844, '2011-06-22', 54410.00, 'A'), -(133, 1, 'CORDOBA HOYOS JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-09-20', 966820.00, 'A'), -(1330, 2, 'HOCHKOFLER NOEMI CONSUELO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-08-27', 606070.00, 'A'), -(1331, 4, 'RAMIREZ BARRERO DANIELA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 154563, '2011-04-18', 867120.00, 'A'), -(1332, 4, 'DE LEON DURANGO RICARDO JOSE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 131105, '2011-09-08', 517400.00, 'A'), -(1333, 4, 'RODRIGUEZ MACIAS IVAN MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 129447, '2011-05-23', 985620.00, 'A'), -(1334, 4, 'GUTIERREZ DE PINERES YANET MARIA ALEJANDRA', 191821112, - 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 133535, '2011-06-16', - 375890.00, 'A'), -(1335, 4, 'GUTIERREZ DE PINERES YANET MARIA GABRIELA', 191821112, - 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 133535, '2011-06-16', - 922600.00, 'A'), -(1336, 4, 'CABRALES BECHARA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', - '708@hotmail.com', '2011-02-03', 131105, '2011-05-13', 485330.00, 'A'), -(1337, 4, 'MEJIA TOBON LUIS DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127662, '2011-08-05', 658860.00, 'A'), -(1338, 3, 'OROS NERCELLES CRISTIAN ANDRE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 144215, '2011-04-26', 838310.00, 'A'), -(1339, 3, 'MORENO BRAVO CAROLINA ANDREA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 190393, '2010-12-08', 214950.00, 'A'), -(134, 1, 'GONZALEZ LOPEZ DANIEL ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-08', 178580.00, 'A'), -(1340, 3, 'FERNANDEZ GARRIDO MARCELO FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2010-07-08', 559820.00, 'A'), -(1342, 3, 'SUMEGI IMRE ZOLTAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-07-16', 91750.00, 'A'), -(1343, 3, 'CALDERON FLANDEZ SERGIO', 191821112, 'CRA 25 CALLE 100', - '108@hotmail.com', '2011-02-03', 117002, '2010-12-12', 996030.00, 'A'), -(1345, 3, 'CARBONELL ATCHUGARRY GUILLERMO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 116366, '2010-04-12', 536390.00, 'A'), -(1346, 3, 'MONTEALEGRE AGUILAR FEDERICO ', 191821112, 'CRA 25 CALLE 100', - '448@yahoo.es', '2011-02-03', 132165, '2011-08-08', 567260.00, 'A'), -(1347, 1, 'HERNANDEZ MANCHEGO CARLOS JULIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2010-04-28', 227130.00, 'A'), -(1348, 1, 'ARENAS ZARATE FERNEY ARNULFO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127963, '2011-03-26', 433860.00, 'A'), -(1349, 3, 'DELFIM DINIZ PASSOS PINHEIRO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 110784, '2010-04-17', 487930.00, 'A'), -(135, 1, 'GARCIA SIMBAQUEBA RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 992420.00, 'A'), -(1350, 3, 'BRAUN VALENZUELA FELIPE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-07-29', 138050.00, 'A'), -(1351, 3, 'LEVIN FIORELLI ANDRES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 116366, '2011-04-10', 226470.00, 'A'), -(1353, 3, 'BALTODANO ESQUIVEL LAURA CRISTINA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 132165, '2011-08-01', 911660.00, 'A'), -(1354, 4, 'ESCOBAR YEPES ANDREA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2011-05-19', 403630.00, 'A'), -(1356, 1, 'GAGELI OSORIO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '228@yahoo.com.mx', '2011-02-03', 128662, '2011-07-14', 205070.00, 'A'), -(1357, 3, 'CABAL ALVAREZ RUBEN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 188640, '2011-08-14', 175770.00, 'A'), -(1359, 4, 'HUERFANO JUAN DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-06-04', 790970.00, 'A'), -(136, 1, 'OSORIO RAMIREZ LEONARDO', 191821112, 'CRA 25 CALLE 100', - '686@yahoo.es', '2011-02-03', 128662, '2010-05-14', 426380.00, 'A'), -(1360, 4, 'RAMON GARCIA MARIA PAULA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-07-01', 163890.00, 'A'), -(1362, 30, 'ALVAREZ CLAVIO CARLA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127203, '2011-04-18', 741020.00, 'A'), -(1363, 3, 'SERRA DURAN GERARDO ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-03', 365490.00, 'A'), -(1364, 3, 'NORIEGA VALVERDE SILVIA MARCELA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 132775, '2011-02-27', 604370.00, 'A'), -(1366, 1, 'JARAMILLO LOPEZ ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '269@terra.com.co', '2011-02-03', 127559, '2010-11-08', 813800.00, 'A'), -(1367, 1, 'MAZO ROLDAN CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-04', 292880.00, 'A'), -(1368, 1, 'MURIEL ARCILA MAURICIO HERNANDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-06-29', 22970.00, 'A'), -(1369, 1, 'RAMIREZ CARLOS FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-07-14', 236230.00, 'A'), -(137, 1, 'LUNA PEREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 126881, '2011-08-05', 154640.00, 'A'), -(1370, 1, 'GARCIA GRAJALES PEDRO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128166, '2011-10-09', 112230.00, 'A'), -(1372, 3, 'GARCIA ESCOBAR ANA MARIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-29', 925670.00, 'A'), -(1373, 3, 'ALVES DIAS CARLOS AUGUSTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-08-07', 70940.00, 'A'), -(1374, 3, 'MATTOS CHRISTIANE GARCIA CID', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 183024, '2010-08-25', 577700.00, 'A'), -(1376, 1, 'CARVAJAL ROJAS ORLANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-08-10', 645240.00, 'A'), -(1377, 3, 'MADARIAGA CADIZ CLAUDIO CRISTIAN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 117002, '2011-10-04', 199200.00, 'A'), -(1379, 3, 'MARIN YANEZ ALICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 188640, '2011-02-20', 703870.00, 'A'), -(138, 1, 'DIAZ AVENDANO MARCELO IVAN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-05-22', 494080.00, 'A'), -(1381, 3, 'COSTA VILLEGAS LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 117002, '2011-08-21', 580670.00, 'A'), -(1382, 3, 'DAZA PEREZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 122035, '2009-02-23', 888000.00, 'A'), -(1385, 4, 'RIVEROS ARIAS MARIA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127492, '2011-09-26', 35710.00, 'A'), -(1386, 30, 'TORO GIRALDO MATEO', 191821112, 'CRA 25 CALLE 100', - '433@yahoo.com.mx', '2011-02-03', 127591, '2011-07-17', 700730.00, 'A'), -(1387, 4, 'ROJAS YARA LAURA DANIELA MARIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-31', 396530.00, 'A'), -(1388, 3, 'GALLEGO RODRIGO MARIA PILAR', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 188640, '2009-04-19', 880450.00, 'A'), -(1389, 1, 'PANTOJA VELASQUEZ JOSE ARMANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127300, '2011-08-05', 212660.00, 'A'), -(139, 1, 'RANCO GOMEZ HERNÁN EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-01-19', 6450.00, 'A'), -(1390, 3, 'VAN DEN BORNE KEES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 132958, '2010-01-28', 421930.00, 'A'), -(1391, 3, 'MONDRAGON FLORES JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 118777, '2011-08-22', 471700.00, 'A'), -(1392, 3, 'BAGELLA MICHELE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2010-07-27', 92720.00, 'A'), -(1393, 3, 'BISTIANCIC MACHADO ANA INES', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 116366, '2010-08-02', 48490.00, 'A'), -(1394, 3, 'BANADOS ORTIZ MARIA PILAR', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2011-08-25', 964280.00, 'A'), -(1395, 1, 'CHINDOY CHINDOY HERNANDO', 191821112, 'CRA 25 CALLE 100', - '107@terra.com.co', '2011-02-03', 126892, '2011-08-25', 675920.00, 'A'), -(1396, 3, 'SOTO NUNEZ ANDRES ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 117002, '2011-10-02', 486760.00, 'A'), -(1397, 1, 'DELGADO MARTINEZ LORGE ELIAS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-05-23', 406040.00, 'A'), -(1398, 1, 'LEON GUEVARA JAVIER ANIBAL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 126892, '2011-09-08', 569930.00, 'A'), -(1399, 1, 'ZARAMA BASTIDAS LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 126892, '2011-08-05', 631540.00, 'A'), -(14, 1, 'MAGUIN HENNSSEY LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', - '714@gmail.com', '2011-02-03', 127591, '2011-07-11', 143540.00, 'A'), -(140, 1, 'CARRANZA CUY ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-25', 550010.00, 'A'), -(1401, 3, 'REYNA CASTORENA JOSE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 189815, '2011-08-29', 344970.00, 'A'), -(1402, 1, 'GFALLO BOTERO SERGIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2011-07-14', 381100.00, 'A'), -(1403, 1, 'ARANGO ARAQUE JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2011-05-04', 870590.00, 'A'), -(1404, 3, 'LASSNER NORBERTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 118942, '2010-02-28', 209650.00, 'A'), -(1405, 1, 'DURANGO MARIN HECTOR LEON', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '1970-02-02', 436480.00, 'A'), -(1407, 1, 'FRANCO CASTANO DIEGO MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2010-06-28', 457770.00, 'A'), -(1408, 1, 'HERNANDEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 128662, '2011-05-29', 628550.00, 'A'), -(1409, 1, 'CASTANO DUQUE CARLOS HUGO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2011-03-23', 769410.00, 'A'), -(141, 1, 'CHAMORRO CHEDRAUI SERGIO ALBERTO', 191821112, 'CRA 25 CALLE 100', - '922@yahoo.com.mx', '2011-02-03', 127591, '2011-05-07', 730720.00, 'A'), -(1411, 1, 'RAMIREZ MONTOYA ADAMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2011-04-13', 498880.00, 'A'), -(1412, 1, 'GONZALEZ BENJUMEA OSCAR HUMBERTO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-11-01', 610150.00, 'A'), -(1413, 1, 'ARANGO ACEVEDO WALTER ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2010-10-07', 554090.00, 'A'), -(1414, 1, 'ARANGO GALLO HUMBERTO LEON', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-02-25', 940010.00, 'A'), -(1415, 1, 'VELASQUEZ LUIS GONZALO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2011-07-06', 37760.00, 'A'), -(1416, 1, 'MIRA AGUILAR FRANCISCO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-08-30', 368790.00, 'A'), -(1417, 1, 'RIVERA ARISTIZABAL CARLOS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2011-03-02', 730670.00, 'A'), -(1418, 1, 'ARISTIZABAL ROLDAN ANDRES RICARDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-05-02', 546960.00, 'A'), -(142, 1, 'LOPEZ ZULETA MAURICIO ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-09-01', 3550.00, 'A'), -(1420, 1, 'ESCORCIA ARAMBURO JUAN MARIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-01', 73100.00, 'A'), -(1421, 1, 'CORREA PARRA RICARDO ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-08-05', 737110.00, 'A'), -(1422, 1, 'RESTREPO NARANJO DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 128662, '2011-09-15', 466240.00, 'A'), -(1423, 1, 'VELASQUEZ CARLOS JUAN', 191821112, 'CRA 25 CALLE 100', - '123@yahoo.com', '2011-02-03', 128662, '2010-06-09', 119880.00, 'A'), -(1424, 1, 'MACIA GONZALEZ ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 128662, '2010-11-12', 200690.00, 'A'), -(1425, 1, 'BERRIO MEJIA HELBER ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2010-06-04', 643800.00, 'A'), -(1427, 1, 'GOMEZ GUTIERREZ CARLOS ARIEL', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2011-09-08', 153320.00, 'A'), -(1428, 1, 'RESTREPO LOPEZ JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-09-12', 915770.00, 'A'), -('CELL4012', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(1429, 1, 'BARTH TOBAR LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2011-02-23', 118900.00, 'A'), -(143, 1, 'MUNERA BEDIYA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2010-09-21', 825600.00, 'A'), -(1430, 1, 'JIMENEZ VELEZ ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2010-02-26', 847160.00, 'A'), -(1431, 1, 'TAKAHASHI GAVIRIA NICOLAS KEIICHIRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-07-13', 879120.00, 'A'), -(1432, 1, 'ESCOBAR JARAMILLO ESTEBAN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2010-06-10', 854110.00, 'A'), -(1433, 1, 'PALACIO NAVARRO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2010-08-18', 633200.00, 'A'), -(1434, 1, 'LONDONO MUNOZ ADOLFO LEON', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2010-09-14', 603670.00, 'A'), -(1435, 1, 'PULGARIN JAIME ANDRES', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 128662, '2009-11-01', 118730.00, 'A'), -(1436, 1, 'FERRERA ZULUAGA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2010-07-10', 782630.00, 'A'), -(1437, 1, 'VASQUEZ VELEZ HABACUC', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-09-27', 557000.00, 'A'), -(1438, 1, 'HENAO PALOMINO DIEGO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2009-05-06', 437080.00, 'A'), -(1439, 1, 'HURTADO URIBE JUAN GONZALO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2011-01-11', 514400.00, 'A'), -(144, 1, 'ALDANA RODOLFO AUGUSTO', 191821112, 'CRA 25 CALLE 100', - '838@yahoo.es', '2011-02-03', 127591, '2011-08-07', 117350.00, 'A'), -(1441, 1, 'URIBE DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 133535, '2010-11-19', 760610.00, 'A'), -(1442, 1, 'PINEDA GALIANO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2010-07-29', 20770.00, 'A'), -(1443, 1, 'DUQUE BETANCOURT FABIO LEON', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2010-11-26', 822030.00, 'A'), -(1444, 1, 'JARAMILLO TORO HERNAN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2011-04-27', 47830.00, 'A'), -(145, 1, 'VASQUEZ ZAPATA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-05-09', 109940.00, 'A'), -(1450, 1, 'TOBON FRANCO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '545@facebook.com', '2011-02-03', 127591, '2011-05-03', 889540.00, 'A'), -(1454, 1, 'LOTERO PAVAS CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-05-28', 646750.00, 'A'), -(1455, 1, 'ESTRADA HENAO JAVIER ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128569, '2009-09-07', 215460.00, 'A'), -(1456, 1, 'VALDERRAMA MAXIMILIANO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-03-23', 137030.00, 'A'), -(1457, 3, 'ESTRADA ALVAREZ GONZALO ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 154903, '2011-05-02', 38790.00, 'A'), -(1458, 1, 'PAUCAR VALLEJO JAIRO ALONSO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-10-15', 782860.00, 'A'), -(1459, 1, 'RESTREPO GIRALDO JHON DARIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 128662, '2011-04-04', 797930.00, 'A'), -(146, 1, 'BAQUERO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 128662, '2010-03-03', 197650.00, 'A'), -(1460, 1, 'RESTREPO DOMINGUEZ GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2009-05-18', 641050.00, 'A'), -(1461, 1, 'YANOVICH JACKY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 128662, '2010-08-21', 811470.00, 'A'), -(1462, 1, 'HINCAPIE ROLDAN JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2011-08-27', 134200.00, 'A'), -(1463, 3, 'ZEA JORGE OLIVER', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 150699, '2011-03-12', 236610.00, 'A'), -(1464, 1, 'OSCAR MAURICIO ECHAVARRIA', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2010-11-24', 780440.00, 'A'), -(1465, 1, 'COSSIO GIL JOSE ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2011-10-01', 192380.00, 'A'), -(1466, 1, 'GOMEZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-03-01', 620580.00, 'A'), -(1467, 1, 'VILLALOBOS OCHOA ANDRES GABRIEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2010-08-18', 525740.00, 'A'), -(1470, 1, 'GARCIA GONZALEZ DAVID DARIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 128662, '2011-09-17', 986990.00, 'A'), -(1471, 1, 'RAMIREZ RESTREPO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-03', 162250.00, 'A'), -(1472, 1, 'VASQUEZ GUTIERREZ JUAN ANDRES', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-04-05', 850280.00, 'A'), -(1474, 1, 'ESCOBAR ARANGO DAVID', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2010-11-01', 272460.00, 'A'), -(1475, 1, 'MEJIA TORO JUAN DAVID', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 128662, '2011-05-02', 68320.00, 'A'), -(1477, 1, 'ESCOBAR GOMEZ JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127848, '2011-05-15', 416150.00, 'A'), -(1478, 1, 'BETANCUR WILSON', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2008-02-09', 508060.00, 'A'), -(1479, 3, 'ROMERO ARRAU GONZALO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-06-10', 291880.00, 'A'), -(148, 1, 'REINA MORENO MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-08', 699240.00, 'A'), -(1480, 1, 'CASTANO OSORIO JORGE ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127662, '2011-09-20', 935200.00, 'A'), -(1482, 1, 'LOPEZ LOPERA ROBINSON FREDY', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2011-09-02', 196280.00, 'A'), -(1484, 1, 'HERNAN DARIO RENDON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 128662, '2011-03-18', 312520.00, 'A'), -(1485, 1, 'MARTINEZ ARBOLEDA MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2010-11-03', 821760.00, 'A'), -(1486, 1, 'RODRIGUEZ MORA CARLOS MORA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2011-09-16', 171270.00, 'A'), -(1487, 1, 'PENAGOS VASQUEZ JOSE DOMINGO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2011-09-06', 391080.00, 'A'), -(1488, 1, 'UERRA MEJIA DIEGO LEON', 191821112, 'CRA 25 CALLE 100', - '704@hotmail.com', '2011-02-03', 144086, '2011-08-06', 441570.00, 'A'), -(1491, 1, 'QUINTERO GUTIERREZ ABEL PASTOR', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2009-11-16', 138100.00, 'A'), -(1492, 1, 'ALARCON YEPES IVAN DARIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 150699, '2010-05-03', 145330.00, 'A'), -(1494, 1, 'HERNANDEZ VALLEJO ANDRES MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-05-09', 125770.00, 'A'), -(1495, 1, 'MONTOYA MORENO LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2010-11-09', 691770.00, 'A'), -(1497, 1, 'BARRERA CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', '62@yahoo.es', - '2011-02-03', 127591, '2010-08-24', 332550.00, 'A'), -(1498, 1, 'ARROYAVE FERNANDEZ PABLO EMILIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2011-05-12', 418030.00, 'A'), -(1499, 1, 'GOMEZ ANGEL FELIPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 128662, '2011-05-03', 92480.00, 'A'), -(15, 1, 'AMSILI COHEN JOSEPH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-10-07', 877400.00, 'A'), -('CELL411', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(150, 3, 'ARDILA GUTIERREZ DANIEL MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-12', 506760.00, 'A'), -(1500, 1, 'GONZALEZ DUQUE PABLO JOSE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2010-04-13', 208330.00, 'A'), -(1502, 1, 'MEJIA BUSTAMANTE JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2010-08-09', 196000.00, 'A'), -(1506, 1, 'SUAREZ MONTOYA JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128569, '2011-09-13', 368250.00, 'A'), -(1508, 1, 'ALVAREZ GONZALEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-02-15', 355190.00, 'A'), -(1509, 1, 'NIETO CORREA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-03-31', 899980.00, 'A'), -(1511, 1, 'HERNANDEZ GRANADOS JHONATHAN', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 128662, '2011-08-30', 471720.00, 'A'), -(1512, 1, 'CARDONA ALVAREZ DEIBY', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 128662, '2010-10-05', 55590.00, 'A'), -(1513, 1, 'TORRES MARULANDA JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2010-10-20', 862820.00, 'A'), -(1514, 1, 'RAMIREZ RAMIREZ JHON JAIRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2011-05-11', 147310.00, 'A'), -(1515, 1, 'MONDRAGON TORO NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-01-19', 148100.00, 'A'), -(1517, 3, 'SUIDA DIETER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 118942, '2008-07-21', 48580.00, 'A'), -(1518, 3, 'LEFTWICH ANDREW PAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 211610, '2011-06-07', 347170.00, 'A'), -(1519, 3, 'RENTON ANDREW GEORGE PATRICK', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 269033, '2010-12-11', 590120.00, 'A'), -(152, 1, 'BUSTOS MONZON CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-22', 335160.00, 'A'), -(1521, 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 119814, '2011-04-28', 775000.00, 'A'), -(1522, 3, 'GUARACI FRANCO DE PAIVA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 119167, '2011-04-28', 147770.00, 'A'), -(1525, 4, 'MORENO TENORIO MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-06-20', 888750.00, 'A'), -(1527, 1, 'VELASQUEZ HERNANDEZ JHON EDUARSON', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-07-19', 161270.00, 'A'), -(1528, 4, 'VANEGAS ALEJANDRA', 191821112, 'CRA 25 CALLE 100', '185@yahoo.com', - '2011-02-03', 127591, '2011-06-20', 109830.00, 'A'), -(1529, 3, 'BARBABE CLAIRE LAURENCE ANNICK', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-04-04', 65330.00, 'A'), -(153, 1, 'GONZALEZ TORREZ MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-06-01', 762560.00, 'A'), -(1530, 3, 'COREA MARTINEZ GUILLERMO JOSE ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 135360, '2011-09-25', 997190.00, 'A'), -(1531, 3, 'PACHECO RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 117002, '2010-03-08', 789960.00, 'A'), -(1532, 3, 'WELCH RICHARD WILLIAM', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 190393, '2010-10-04', 958210.00, 'A'), -(1533, 3, 'FOREMAN CAROLYN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 107159, '2011-05-23', 421200.00, 'A'), -(1535, 3, 'ZAGAL SOTO CLAUDIA PAZ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 117002, '2008-05-16', 893130.00, 'A'), -(1536, 3, 'ZAGAL SOTO CLAUDIA PAZ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 117002, '2011-10-08', 771600.00, 'A'), -(1538, 3, 'BLANCO RODRIGUEZ JUAN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 197162, '2011-04-02', 578250.00, 'A'), -(154, 1, 'HENDEZ PUERTO JAVIER ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 807310.00, 'A'), -(1540, 3, 'CONTRERAS BRAIN JAVIER ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2011-02-22', 42420.00, 'A'), -(1541, 3, 'RONDON HERNANDEZ MARYLIN DEL CARMEN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 132958, '2011-09-29', 145780.00, 'A'), -(1542, 3, 'ELJURI RAMIREZ EMIRA ELIZABETH', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 132958, '2010-10-13', 601670.00, 'A'), -(1544, 3, 'REYES LE ROY TOMAS FRANCISCO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2009-06-24', 49990.00, 'A'), -(1545, 3, 'GHETEA GAMUZ JENNY', 191821112, 'CRA 25 CALLE 100', '675@gmail.com', - '2011-02-03', 150699, '2010-05-29', 536940.00, 'A'), -(1546, 3, 'DUARTE GONZALEZ ROONEY ORLANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 117002, '2011-06-20', 534720.00, 'A'), -(1548, 3, 'BIZOT PHILIPPE PIERRE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 263813, '2011-03-02', 709760.00, 'A'), -(1549, 3, 'PELUFFO RUBIO GUILLERMO JUAN', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 116366, '2011-05-09', 360470.00, 'A'), -(1550, 3, 'AGLIATI YERKOVIC CAROLINA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2010-06-01', 673040.00, 'A'), -(1551, 3, 'SEPULVEDA LEDEZMA HENRY CORNELIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2010-08-15', 283810.00, 'A'), -(1552, 3, 'CABRERA CARMINE JAIME FRANCO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 117002, '2008-11-30', 399940.00, 'A'), -(1553, 3, 'ZINNO PENA ALVARO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 116366, '2010-08-02', 148270.00, 'A'), -(1554, 3, 'ROMERO BUCCICARDI JUAN CRISTOBAL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 117002, '2011-08-01', 541530.00, 'A'), -(1555, 3, 'FEFERKORN ABRAHAM', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 159312, '2011-06-12', 262840.00, 'A'), -(1556, 3, 'MASSE CATESSON CAROLINE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 131272, '2011-06-12', 689600.00, 'A'), -(1557, 3, 'CATESSON ALEXANDRA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 131272, '2011-06-12', 659470.00, 'A'), -(1558, 3, 'FUENTES HERNANDEZ RICARDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-09-18', 228540.00, 'A'), -(1559, 3, 'GUEVARA MENJIVAR WILSON ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-09-18', 164310.00, 'A'), -(1560, 3, 'DANOWSKI NICOLAS JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-05-02', 135920.00, 'A'), -(1561, 3, 'CASTRO VELASQUEZ ISMAEL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 121318, '2011-07-31', 186670.00, 'A'), -(1562, 3, 'RODRIGUEZ CORNEJO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 525590.00, 'A'), -(1563, 3, 'VANIA CAROLINA FLORES AVILA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-09-18', 67950.00, 'A'), -(1564, 3, 'ARMERO RAMOS OSCAR ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '414@hotmail.com', '2011-02-03', 127591, '2011-09-18', 762950.00, 'A'), -(1565, 3, 'ORELLANA MARTINEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-09-18', 610930.00, 'A'), -(1566, 3, 'BRATT BABONNEAU CARLOS MIGUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', 765800.00, 'A'), -(1567, 3, 'YANES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 150728, '2011-04-12', 996200.00, 'A'), -(1568, 3, 'ANGULO TAMAYO SEBASTIAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 126674, '2011-05-19', 683600.00, 'A'), -(1569, 3, 'HENRIQUEZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 138329, '2011-08-15', 429390.00, 'A'), -('CELL4137', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(1570, 3, 'GARCIA VILLARROEL RAUL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 126189, '2011-06-12', 96140.00, 'A'), -(1571, 3, 'SOLA HERNANDEZ JOSE FRANCISCO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 188640, '2011-09-25', 192530.00, 'A'), -(1572, 3, 'PEREZ PASTOR OSWALDO MAGARREY', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 126674, '2011-05-25', 674260.00, 'A'), -(1573, 3, 'MICHAN QUINONES FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 188640, '2011-06-21', 793680.00, 'A'), -(1574, 3, 'GARCIA ARANDA OSCAR DAVID', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 188640, '2011-08-15', 945620.00, 'A'), -(1575, 3, 'GARCIA RIBAS JORDI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 188640, '2011-07-10', 347070.00, 'A'), -(1576, 3, 'GALVAN ROMERO MARIA INMACULADA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 145135, '2011-09-14', 898480.00, 'A'), -(1577, 3, 'BOSH MOLINAS JUAN JOSE ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 198576, '2011-08-22', 451190.00, 'A'), -(1578, 3, 'MARTIN TENA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 188640, '2011-04-24', 560520.00, 'A'), -(1579, 3, 'HAWKINS ROBERT JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-09-12', 449010.00, 'A'), -(1580, 3, 'GHERARDI ALEJANDRO EMILIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 180063, '2010-11-15', 563500.00, 'A'), -(1581, 3, 'TELLO JUAN EDUARDO', 191821112, 'CRA 25 CALLE 100', - '192@hotmail.com', '2011-02-03', 138329, '2011-05-01', 470460.00, 'A'), -(1583, 3, 'GUZMAN VALDIVIA CINTIA TATIANA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 199862, '2011-04-06', 897580.00, 'A'), -(1584, 3, 'STUBBS MERCEDES CARMEN JOSEFINA DEL MILAGRO', 191821112, - 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 199862, '2011-04-06', - 502510.00, 'A'), -(1585, 3, 'QUINTEIRO GORIS JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-08-17', 819840.00, 'A'), -(1587, 3, 'RIVAS LORIA PRISCILLA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 205636, '2011-05-01', 498720.00, 'A'), -(1588, 3, 'DE LA TORRE AUGUSTO PATRICIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 20404, '2011-08-31', 718670.00, 'A'), -(159, 1, 'ALDANA PATINO NORMAN ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2009-10-10', 201500.00, 'A'), -(1590, 3, 'TORRES VILLAR ROBERTO ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2011-08-10', 329950.00, 'A'), -(1591, 3, 'PETRULLI CARMELO MORENO', 191821112, 'CRA 25 CALLE 100', - '883@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', 358180.00, 'A'), -(1592, 3, 'MUSCO ENZO FRANCESCO GIUSEPPE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-09-04', 801050.00, 'A'), -(1593, 3, 'RONCUZZI CLAUDIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127134, '2011-10-02', 930700.00, 'A'), -(1594, 3, 'VELANI FRANCESCA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 199862, '2011-08-22', 250360.00, 'A'), -(1596, 3, 'BENARROCH ASSOR DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-10-06', 547310.00, 'A'), -(1597, 3, 'FLO VILLASECA ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 188640, '2011-05-27', 357520.00, 'A'), -(1598, 3, 'FONT RIBAS ANTONI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 196117, '2011-09-21', 145660.00, 'A'), -(1599, 3, 'LOPEZ BARAHONA MONICA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 188640, '2011-08-03', 655740.00, 'A'), -(16, 1, 'FLOREZ PEREZ GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 132572, '2011-03-30', 956370.00, 'A'), -(160, 1, 'GIRALDO MENDIVELSO MARTIN EDISSON', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-07-14', 429010.00, 'A'), -(1600, 3, 'SCATTIATI ALDO ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 215245, '2011-07-10', 841730.00, 'A'), -(1601, 3, 'MARONE CARLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 101179, '2011-06-14', 241420.00, 'A'), -(1602, 3, 'CHUVASHEVA ELENA ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 190393, '2011-08-21', 681900.00, 'A'), -(1603, 3, 'GIGLIO FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 122035, '2011-09-19', 685250.00, 'A'), -(1604, 3, 'JUSTO AMATE AGUSTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 174598, '2011-05-16', 380560.00, 'A'), -(1605, 3, 'GUARDABASSI FABIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 281044, '2011-07-26', 847060.00, 'A'), -(1606, 3, 'CALABRETTA FRAMCESCO ANTONIO MARIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 199862, '2011-08-22', 93590.00, 'A'), -(1607, 3, 'TARTARINI MASSIMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 196234, '2011-05-10', 926800.00, 'A'), -(1608, 3, 'BOTTI GIAIME', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 231989, '2011-04-04', 353210.00, 'A'), -(1610, 3, 'PILERI ANDREA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 205040, '2011-09-01', 868590.00, 'A'), -(1612, 3, 'MARTIN GRACIA LUIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 128662, '2011-07-27', 324320.00, 'A'), -(1613, 3, 'GRACIA MARTIN LUIS', 191821112, 'CRA 25 CALLE 100', - '579@facebook.com', '2011-02-03', 198248, '2011-08-24', 463560.00, 'A'), -(1614, 3, 'SERRAT SESE JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 196234, '2011-05-16', 344840.00, 'A'), -(1615, 3, 'DEL LAGO AMPELIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 145135, '2011-06-29', 333510.00, 'A'), -(1616, 3, 'PERUGORRIA RODRIGUEZ JORGE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 148511, '2011-06-06', 633040.00, 'A'), -(1617, 3, 'GIRAL CALVO IGNACIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 196234, '2011-09-19', 164670.00, 'A'), -(1618, 3, 'ALONSO CEBRIAN JOSE MARIA', 191821112, 'CRA 25 CALLE 100', - '253@terra.com.co', '2011-02-03', 188640, '2011-03-23', 924240.00, 'A'), -(162, 1, 'ARIZA PINEDA JOHN ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2010-11-27', 415710.00, 'A'), -(1620, 3, 'OLMEDO CARDENETE DOMINGO MIGUEL', 191821112, 'CRA 25 CALLE 100', - '608@terra.com.co', '2011-02-03', 135397, '2011-09-03', 863200.00, 'A'), -(1622, 3, 'GIMENEZ BALDRES ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 182860, '2011-05-12', 82660.00, 'A'), -(1623, 3, 'NUNEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 128662, '2011-05-23', 609950.00, 'A'), -(1624, 3, 'PENATE CASTRO WENCESLAO LORENZO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 153607, '2011-09-13', 801750.00, 'A'), -(1626, 3, 'ESCODA MIGUEL JOAN JOSEP', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 188640, '2011-07-18', 489310.00, 'A'), -(1628, 3, 'ESTRADA CAPILLA ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 188640, '2011-07-26', 81180.00, 'A'), -(163, 1, 'PERDOMO LOPEZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-09-05', 456910.00, 'A'), -(1630, 3, 'SUBIRAIS MARIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 196234, '2011-09-08', 138700.00, 'A'), -(1632, 3, 'ENSENAT VELASCO JAIME LUIS', 191821112, 'CRA 25 CALLE 100', - '687@gmail.com', '2011-02-03', 188640, '2011-04-12', 904560.00, 'A'), -(1633, 3, 'DIEZ POLANCO CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 188640, '2011-05-24', 530410.00, 'A'), -(1636, 3, 'CUADRA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 188640, '2011-09-04', 688400.00, 'A'), -(1637, 3, 'UBRIC MUNOZ RAUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 98790, '2011-05-30', 139830.00, 'A'), -('CELL4159', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(1638, 3, 'NEDDERMANN GUJO RICARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 188640, '2011-07-31', 633990.00, 'A'), -(1639, 3, 'RENEDO ZALBA JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 188640, '2011-03-13', 750430.00, 'A'), -(164, 1, 'JIMENEZ PADILLA JOHAN MARCEL', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-09-05', 37430.00, 'A'), -(1640, 3, 'FERNANDEZ MORENO DAVID', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 188640, '2011-05-28', 850180.00, 'A'), -(1641, 3, 'VERGARA SERRANO JUAN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 196234, '2011-06-30', 999620.00, 'A'), -(1642, 3, 'MARTINEZ HUESO LUCAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 182860, '2011-06-29', 447570.00, 'A'), -(1643, 3, 'FRANCO POBLET JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 196234, '2011-10-03', 238990.00, 'A'), -(1644, 3, 'MORA HIDALGO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-09-06', 852250.00, 'A'), -(1645, 3, 'GARCIA COSO EMILIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 188640, '2011-09-14', 544260.00, 'A'), -(1646, 3, 'GIMENO ESCRIG ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 180124, '2011-09-20', 164580.00, 'A'), -(1647, 3, 'MORCILLO LOPEZ RAMON', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127538, '2011-04-16', 190090.00, 'A'), -(1648, 3, 'RUBIO BONET MANUEL', 191821112, 'CRA 25 CALLE 100', - '252@facebook.com', '2011-02-03', 196234, '2011-05-25', 456740.00, 'A'), -(1649, 3, 'PRADO ABUIN FERNANDO ', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 188640, '2011-07-16', 713400.00, 'A'), -(165, 1, 'RAMIREZ PALMA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-07-10', 816420.00, 'A'), -(1650, 3, 'DE VEGA PUJOL GEMA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 196234, '2011-08-01', 196780.00, 'A'), -(1651, 3, 'IBARGUEN ALFREDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 188640, '2010-12-03', 843720.00, 'A'), -(1652, 3, 'IBARGUEN ALFREDO', 191821112, 'CRA 25 CALLE 100', '856@hotmail.com', - '2011-02-03', 188640, '2011-06-18', 628250.00, 'A'), -(1654, 3, 'MATELLANES RODRIGUEZ NURIA PILAR', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 188640, '2011-10-05', 165770.00, 'A'), -(1656, 3, 'VIDAURRAZAGA GUISOLA JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 188640, '2011-08-08', 495320.00, 'A'), -(1658, 3, 'GOMEZ ULLATE MARIA ELENA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 188640, '2011-04-12', 919090.00, 'A'), -(1659, 3, 'ALCAIDE ALONSO JUAN MIGUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2011-05-02', 152430.00, 'A'), -(166, 1, 'TUSTANOSKI RODOLFO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2010-12-03', 969790.00, 'A'), -(1660, 3, 'LARROY GARCIA CRISTINA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 188640, '2011-09-14', 4900.00, 'A'), -(1661, 3, 'FERNANDEZ POYATO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 188640, '2011-09-10', 567180.00, 'A'), -(1662, 3, 'TREVEJO PARDO JULIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-09-25', 821200.00, 'A'), -(1663, 3, 'GORGA CASSINELLI VICTOR DANIEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 188640, '2011-05-30', 404490.00, 'A'), -(1664, 3, 'MORUECO GONZALEZ JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 188640, '2011-10-09', 558820.00, 'A'), -(1665, 3, 'IRURETA FERNANDEZ PEDRO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 214283, '2011-09-14', 580650.00, 'A'), -(1667, 3, 'TREVEJO PARDO JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-25', 392020.00, 'A'), -(1668, 3, 'BOCOS NUNEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 196234, '2011-10-08', 279710.00, 'A'), -(1669, 3, 'LUIS CASTILLO JOSE AGUSTIN', 191821112, 'CRA 25 CALLE 100', - '557@hotmail.es', '2011-02-03', 168202, '2011-06-16', 222500.00, 'A'), -(167, 1, 'HURTADO BELALCAZAR JOHN JADY', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127300, '2011-08-17', 399710.00, 'A'), -(1670, 3, 'REDONDO GUTIERREZ EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145135, '2011-09-14', 273350.00, 'A'), -(1671, 3, 'MADARIAGA ALONSO RAMON', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 188640, '2011-07-26', 699240.00, 'A'), -(1673, 3, 'REY GONZALEZ LUIS JAVIER', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 188640, '2011-07-26', 283190.00, 'A'), -(1676, 3, 'PEREZ ESTER ', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-10-03', 274900.00, 'A'), -(1677, 3, 'GOMEZ-GRACIA HUERTA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 188640, '2011-09-22', 112260.00, 'A'), -(1678, 3, 'DAMASO PUENTE DIEGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 188640, '2011-05-25', 736600.00, 'A'), -(168, 1, 'JUAN PABLO MARTINEZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2010-08-15', 89160.00, 'A'), -(1680, 3, 'DIEZ GONZALEZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-17', 521280.00, 'A'), -(1681, 3, 'LOPEZ LOPEZ JOSE LUIS', 191821112, 'CRA 25 CALLE 100', - '853@yahoo.com', '2011-02-03', 196234, '2010-12-13', 567760.00, 'A'), -(1682, 3, 'MIRO LINARES FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 133442, '2011-09-03', 274930.00, 'A'), -(1683, 3, 'ROCA PINTADO MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 196234, '2011-05-16', 671410.00, 'A'), -(1684, 3, 'GARCIA BARTOLOME HORACIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 196234, '2011-09-29', 532220.00, 'A'), -(1686, 3, 'BALMASEDA DE AHUMADA DIEZ JUAN LUIS', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 168202, '2011-04-13', 637860.00, 'A'), -(1687, 3, 'FERNANDEZ IMAZ FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 188640, '2011-04-10', 248580.00, 'A'), -(1688, 3, 'ELIAS CASTELLS FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2011-05-19', 329300.00, 'A'), -(1689, 3, 'ANIDO DIAZ DANIEL', 191821112, 'CRA 25 CALLE 100', '491@gmail.com', - '2011-02-03', 188640, '2011-04-04', 900780.00, 'A'), -(1691, 3, 'GATELL ARIMONT MARIA CRISTINA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 196234, '2011-09-17', 877700.00, 'A'), -(1692, 3, 'RIVERA MUNOZ ADONI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 211705, '2011-04-05', 840470.00, 'A'), -(1693, 3, 'LUNA LOPEZ ALICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 188640, '2011-10-01', 569270.00, 'A'), -(1695, 3, 'HAMMOND ANN ELIZABETH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 118021, '2011-05-17', 916770.00, 'A'), -(1698, 3, 'RODRIGUEZ PARAJA MARIA CRISTINA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 188640, '2011-07-15', 649080.00, 'A'), -(1699, 3, 'RUIZ DIAZ JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 188640, '2011-06-24', 359540.00, 'A'), -(17, 1, 'SUAREZ CUEVAS FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 129499, '2011-08-31', 149640.00, 'A'), -(170, 1, 'MARROQUIN AVILA FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-06-04', 965840.00, 'A'), -(1700, 3, 'BACCHELLI ORTEGA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 126180, '2011-06-07', 850450.00, 'A'), -(1701, 3, 'IGLESIAS JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 188640, '2010-09-14', 173630.00, 'A'), -(1702, 3, 'GUTIEZ CUEVAS JULIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 188640, '2010-09-07', 316800.00, 'A'), -('CELL4183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(1704, 3, 'CALDEIRO ZAMORA JESUS CARMELO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 188640, '2011-05-09', 365230.00, 'A'), -(1705, 3, 'ARBONA ABASCAL MANUEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 188640, '2011-02-27', 636760.00, 'A'), -(1706, 3, 'COHEN AMAR MOISES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 196766, '2011-05-20', 88120.00, 'A'), -(1708, 3, 'FERNANDEZ COBOS ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 188640, '2010-11-09', 387220.00, 'A'), -(1709, 3, 'CANAL VIVES JOAQUIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 196234, '2011-09-27', 345150.00, 'A'), -(171, 1, 'LADINO MORENO JAVIER ORLANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-07-25', 89230.00, 'A'), -(1710, 5, 'GARCIA BERTRAND HECTOR', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 188640, '2011-04-07', 564100.00, 'A'), -(1711, 1, 'CONSTANZA MARIN ESCOBAR', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127799, '2011-03-24', 785060.00, 'A'), -(1712, 1, 'NUNEZ BATALLA FAUSTINO JORGE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-07-26', 232970.00, 'A'), -(1713, 3, 'VILORA LAZARO ERICK MARTIN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-04-26', 809690.00, 'A'), -(1715, 3, 'ELLIOT EDWARD JAMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-09-26', 318660.00, 'A'), -(1716, 3, 'ALCALDE ORTENO MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 117002, '2011-07-23', 544650.00, 'A'), -(1717, 3, 'CIARAVELLA STEFANO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 231989, '2011-06-13', 767260.00, 'A'), -(1718, 3, 'URRA GONZALEZ PEDRO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 118777, '2011-05-02', 202370.00, 'A'), -(172, 1, 'GUERRERO ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-07-15', 548610.00, 'A'), -(1720, 3, 'JIMENEZ RODRIGUEZ ANNET', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 188640, '2011-05-25', 943140.00, 'A'), -(1721, 3, 'LESCAY CASTELLANOS ARNALDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-14', 585570.00, 'A'), -(1722, 3, 'OCHOA AGUILAR ELIADES', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-05-25', 98410.00, 'A'), -(1723, 3, 'RODRIGUEZ NUNES JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-05-25', 735340.00, 'A'), -(1724, 3, 'OCHOA BUSTAMANTE ELIADES', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-05-25', 381480.00, 'A'), -(1725, 3, 'MARTINEZ NIEVES JOSE ANGEL', 191821112, 'CRA 25 CALLE 100', - '919@yahoo.es', '2011-02-03', 127591, '2011-05-25', 701360.00, 'A'), -(1727, 3, 'DRAGONI ALAIN ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-05-25', 707850.00, 'A'), -(1728, 3, 'FERNANDEZ LOPEZ MARCOS ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-25', 452090.00, 'A'), -(1729, 3, 'MATURELL ROMERO JORGE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-05-25', 136880.00, 'A'), -(173, 1, 'RUIZ CEBALLOS ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-08-04', 475380.00, 'A'), -(1730, 3, 'LARA CASTELLANO LENNIS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-05-25', 328150.00, 'A'), -(1731, 3, 'GRAHAM CRISTOPHER DRAKE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 203079, '2011-06-27', 230120.00, 'A'), -(1732, 3, 'TORRE LUCA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 188640, '2011-05-11', 166120.00, 'A'), -(1733, 3, 'OCHOA HIDALGO EGLIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-05-25', 140250.00, 'A'), -(1734, 3, 'LOURERIO DELACROIX FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 116511, '2011-09-28', 202900.00, 'A'), -(1736, 3, 'LEVIN FIORELLI ANDRES', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 116366, '2011-08-07', 360110.00, 'A'), -(1739, 3, 'BERRY R ALBERT', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 216125, '2011-08-16', 22170.00, 'A'), -(174, 1, 'NIETO PARRA SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2010-05-11', 731040.00, 'A'), -(1740, 3, 'MARSHALL ROBERT SHEPARD', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 150159, '2011-03-09', 62860.00, 'A'), -(1741, 3, 'HENANDEZ ROY CHRISTOPHER JOHN PATRICK', 191821112, - 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 179614, '2011-09-26', - 247780.00, 'A'), -(1742, 3, 'LANDRY GUILLAUME', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 232263, '2011-04-27', 50330.00, 'A'), -(1743, 3, 'VUCETIC ZELJKO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 232263, '2011-07-25', 508320.00, 'A'), -(1744, 3, 'DE JUANA CELASCO MARIA DEL CARMEN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 188640, '2011-04-16', 390620.00, 'A'), -(1745, 3, 'LABONTE RONALD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 269033, '2011-09-28', 428120.00, 'A'), -(1746, 3, 'NEWMAN PHILIP MARK', 191821112, 'CRA 25 CALLE 100', '557@gmail.com', - '2011-02-03', 231373, '2011-07-25', 968750.00, 'A'), -(1747, 3, 'GRENIER MARIE PIERRE ', 191821112, 'CRA 25 CALLE 100', - '409@facebook.com', '2011-02-03', 244158, '2011-07-03', 559370.00, 'A'), -(1749, 3, 'SHINDER GARY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 244158, '2011-07-25', 775000.00, 'A'), -(175, 3, 'GALLEGOS BASTIDAS CARLOS EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 133211, '2011-08-10', 229090.00, 'A'), -(1750, 3, 'LOPEZ DE GOICOCHEA ZABALA FRANCISCO JAVIER', 191821112, - 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 188640, '2011-09-13', - 203120.00, 'A'), -(1751, 3, 'CORRAL BELLON MANUEL', 191821112, 'CRA 25 CALLE 100', - '538@yahoo.com', '2011-02-03', 177443, '2011-05-02', 690610.00, 'A'), -(1752, 3, 'DE SOLA SOLVAS JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 188640, '2011-10-02', 843700.00, 'A'), -(1753, 3, 'GARCIA ALCALA DIAZ REGANON EVA MARIA', 191821112, 'CRA 25 CALLE 100', - '398@yahoo.com', '2011-02-03', 118777, '2010-03-15', 146680.00, 'A'), -(1754, 3, 'BIELA VILIAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 132958, '2011-08-16', 202290.00, 'A'), -(1755, 3, 'GUIOT CANO JUAN PATRICK', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 232263, '2011-05-23', 571390.00, 'A'), -(1756, 3, 'JIMENEZ DIAZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 188640, '2011-03-27', 250100.00, 'A'), -(1757, 3, 'FOX ELEANORE MAE', 191821112, 'CRA 25 CALLE 100', '117@yahoo.com', - '2011-02-03', 190393, '2011-05-04', 536340.00, 'A'), -(1758, 3, 'TANG VAN SON', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 132958, '2011-05-07', 931400.00, 'A'), -(1759, 3, 'SUTTON PETER RONALD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 281673, '2011-06-01', 47960.00, 'A'), -(176, 1, 'GOMEZ IVAN', 191821112, 'CRA 25 CALLE 100', '438@yahoo.com.mx', - '2011-02-03', 127591, '2008-04-09', 952310.00, 'A'), -(1762, 3, 'STOODY MATTHEW FRANCIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-07-21', 84320.00, 'A'), -(1763, 3, 'SEIX MASO ARNAU', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 150699, '2011-05-24', 168880.00, 'A'), -(1764, 3, 'FERNANDEZ REDEL RAQUEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 145135, '2011-09-14', 591440.00, 'A'), -(1765, 3, 'PORCAR DESCALS VICENNTE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 176745, '2011-04-24', 450580.00, 'A'), -(1766, 3, 'PEREZ DE VILLEGAS TRILLO FIGUEROA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 196234, '2011-05-17', 478560.00, 'A'), -('CELL4198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(1767, 3, 'CELDRAN DEGANO ANGEL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 196234, '2011-05-17', 41040.00, 'A'), -(1768, 3, 'TERRAGO MARI FERRAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 188640, '2011-09-30', 769550.00, 'A'), -(1769, 3, 'SZUCHOVSZKY GERGELY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 250256, '2011-05-23', 724630.00, 'A'), -(177, 1, 'SEBASTIAN TORO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127443, '2011-07-14', 74270.00, 'A'), -(1771, 3, 'TORIBIO JOSE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 226612, '2011-09-04', 398570.00, 'A'), -(1772, 3, 'JOSE LUIS BAQUERA PEIRONCELLY', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 133535, '2010-10-19', 49360.00, 'A'), -(1773, 3, 'MADARIAGA VILLANUEVA MIGUEL', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 188640, '2011-04-12', 51090.00, 'A'), -(1774, 3, 'VILLENA BORREGO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '830@terra.com.co', '2011-02-03', 188640, '2011-07-19', 107400.00, 'A'), -(1776, 3, 'VILAR VILLALBA JOSE LUIS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 180124, '2011-09-20', 596330.00, 'A'), -(1777, 3, 'CAGIGAL ORTIZ MACARENA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 214283, '2011-09-14', 830530.00, 'A'), -(1778, 3, 'KORBA ATTILA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 250256, '2011-09-27', 363650.00, 'A'), -(1779, 3, 'KORBA-ELIAS BARBARA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 250256, '2011-09-27', 326670.00, 'A'), -(178, 1, 'AMSILI COHEN HANAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2009-08-29', 514450.00, 'A'), -(1780, 3, 'PINDADO GOMEZ JESUS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 189053, '2011-04-26', 542400.00, 'A'), -(1781, 3, 'IBARRONDO GOMEZ GRACIA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 188640, '2011-09-21', 731990.00, 'A'), -(1782, 3, 'MUNGUIRA GONZALEZ JUAN JULIAN', 191821112, 'CRA 25 CALLE 100', - '54@hotmail.es', '2011-02-03', 188640, '2011-09-06', 32730.00, 'A'), -(1784, 3, 'LANDMAN PIETER MARINUS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 294861, '2011-09-22', 740260.00, 'A'), -(1789, 3, 'SUAREZ AINARA ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 188640, '2011-05-17', 503470.00, 'A'), -(179, 1, 'CARO JUNCO GUIOVANNY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-07-03', 349420.00, 'A'), -(1790, 3, 'MARTINEZ CHACON JOSE JOAQUIN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 188640, '2011-05-20', 592220.00, 'A'), -(1792, 3, 'MENDEZ DEL RION LUCIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 120639, '2011-06-16', 476910.00, 'A'), -(1793, 3, 'VERHULST LAMBERTUS CORNELIA FRANCISCUS ALPHONSUS', 191821112, - 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 295420, '2011-07-04', - 32410.00, 'A'), -(1794, 3, 'YANEZ YAGUE JESUS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 188640, '2011-07-10', 731290.00, 'A'), -(1796, 3, 'GOMEZ ZORRILLA AMATE JOSE MARIOA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 188640, '2011-07-12', 602380.00, 'A'), -(1797, 3, 'LAIZ MORENO ENEKO', 191821112, 'CRA 25 CALLE 100', '219@gmail.com', - '2011-02-03', 127591, '2011-08-05', 334150.00, 'A'), -(1798, 3, 'MORODO RUIZ RUBEN DAVID', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145135, '2011-09-14', 863620.00, 'A'), -(18, 1, 'GARZON VARGAS GUILLERMO FEDERICO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-08-29', 879110.00, 'A'), -(1800, 3, 'ALFARO FAUS MANUEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 196234, '2011-09-14', 987410.00, 'A'), -(1801, 3, 'MORRALLA VALLVERDU ENRIC', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 194601, '2011-07-18', 990070.00, 'A'), -(1802, 3, 'BALBASTRE TEJEDOR JUAN VICENTE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 182860, '2011-08-24', 988120.00, 'A'), -(1803, 3, 'MINGO REIZ FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 188640, '2010-03-24', 970400.00, 'A'), -(1804, 3, 'IRURETA FERNANDEZ JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 214283, '2011-09-10', 887630.00, 'A'), -(1807, 3, 'NEBRO MELLADO JOSE JUAN', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 168996, '2011-08-15', 278540.00, 'A'), -(1808, 3, 'ALBERQUILLA OJEDA JOSE DANIEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 188640, '2011-09-27', 477070.00, 'A'), -(1809, 3, 'BUENDIA NORTE MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 131401, '2011-07-08', 549720.00, 'A'), -(181, 1, 'CASTELLANOS FLORES RODRIGO ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-18', 970470.00, 'A'), -(1811, 3, 'HILBERT ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 196234, '2011-09-08', 937830.00, 'A'), -(1812, 3, 'GONZALES PINTO COTERILLO ADOLFO LORENZO', 191821112, - 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 214283, '2011-09-10', - 736970.00, 'A'), -(1813, 3, 'ARQUES ALVAREZ JOSE RICARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145135, '2011-04-04', 871360.00, 'A'), -(1817, 3, 'CLAUSELL LOW ROBERTO EMILIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 132775, '2011-09-28', 348770.00, 'A'), -(1818, 3, 'BELICHON MARTINEZ JESUS ALVARO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 188640, '2011-04-12', 327010.00, 'A'), -(182, 1, 'GUZMAN NIETO JOSE MARIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-09-20', 241130.00, 'A'), -(1821, 3, 'LINATI DE PUIG JORGE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 196234, '2011-05-18', 47210.00, 'A'), -(1823, 3, 'SINBARRERA ROMA ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 196234, '2011-09-08', 598380.00, 'A'), -(1826, 2, 'JUANES GARATE BRUNO ', 191821112, 'CRA 25 CALLE 100', - '301@gmail.com', '2011-02-03', 118777, '2011-08-21', 877650.00, 'A'), -(1827, 3, 'BOLOS GIMENO ROGELIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 200247, '2010-11-28', 555470.00, 'A'), -(1828, 3, 'ZABALA ASTIGARRAGA JOSE MARIA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 188640, '2011-09-20', 144410.00, 'A'), -(1831, 3, 'MAPELLI CAFFARENA BORJA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 172381, '2011-09-04', 58200.00, 'A'), -(1833, 3, 'LARMONIE LESLIE MARTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-05-30', 604840.00, 'A'), -(1834, 3, 'WILLEMS ROBERT-JAN MICHAEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 288531, '2011-09-05', 756530.00, 'A'), -(1835, 3, 'ANJEMA LAURENS JAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 128662, '2011-08-29', 968140.00, 'A'), -(1836, 3, 'VERHULST HENRICUS LAMBERTUS MARIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 295420, '2011-04-03', 571100.00, 'A'), -(1837, 3, 'PIERROT JOZEF MARIE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 288733, '2011-05-18', 951100.00, 'A'), -(1838, 3, 'EIKELBOOM HIDDE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-09-02', 42210.00, 'A'), -(1839, 3, 'TAMBINI GOMEZ DE MUNG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 180063, '2011-04-24', 357740.00, 'A'), -(1840, 3, 'MAGANA PEREZ GERARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 135360, '2011-09-28', 662060.00, 'A'), -(1841, 3, 'COURTOISIE BEYHAUT RAFAEL JUAN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 116366, '2011-09-05', 237070.00, 'A'), -(1842, 3, 'ROJAS BENJAMIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-06-13', 199170.00, 'A'), -(1843, 3, 'GARCIA VICENTE EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 150699, '2011-08-10', 284650.00, 'A'), -('CELL4291', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(1844, 3, 'CESTTI LOPEZ RAFAEL GUSTAVO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 144215, '2011-09-27', 825750.00, 'A'), -(1845, 3, 'URTECHO LOPEZ ARMANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 139272, '2011-09-28', 274800.00, 'A'), -(1846, 3, 'SEGURA ESPINOZA ARMANDO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 135360, '2011-09-28', 896730.00, 'A'), -(1847, 3, 'GONZALEZ VEGA LUIS PASTOR', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 135360, '2011-05-18', 659240.00, 'A'), -(185, 1, 'AYALA CARDENAS NELSON MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 855960.00, 'A'), -(1850, 3, 'ROTZINGER ROA KLAUS ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 116366, '2011-09-12', 444250.00, 'A'), -(1851, 3, 'FRANCO DE LEON SEBASTIAN', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 116366, '2011-04-26', 63840.00, 'A'), -(1852, 3, 'RIVAS GAGNONI LUIS ARMANDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 135360, '2011-05-18', 986440.00, 'A'), -(1853, 3, 'BARRETO VELASQUEZ JOEL FERNANDO', 191821112, 'CRA 25 CALLE 100', - '104@hotmail.es', '2011-02-03', 116511, '2011-04-27', 740670.00, 'A'), -(1854, 3, 'SEVILLA AMAYA ORLANDO', 191821112, 'CRA 25 CALLE 100', - '264@yahoo.com', '2011-02-03', 136995, '2011-05-18', 744020.00, 'A'), -(1855, 3, 'VALFRE BRALICH ELEONORA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 116366, '2011-06-06', 498080.00, 'A'), -(1857, 3, 'URDANETA DIAMANTES DIEGO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 132958, '2011-09-23', 797590.00, 'A'), -(1858, 3, 'RAMIREZ ALVARADO ROBERT JESUS', 191821112, 'CRA 25 CALLE 100', - '290@yahoo.com.mx', '2011-02-03', 127591, '2011-09-18', 212850.00, 'A'), -(1859, 3, 'GUTTNER DENNIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-06-25', 671470.00, 'A'), -(186, 1, 'CARRASCO SUESCUN ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-15', 36620.00, 'A'), -(1861, 3, 'HEGEMANN JOACHIM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-06-25', 579710.00, 'A'), -(1862, 3, 'MALCHER INGO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 292243, '2011-06-23', 742060.00, 'A'), -(1864, 3, 'HOFFMEISTER MALTE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 128206, '2011-09-06', 629770.00, 'A'), -(1865, 3, 'BOHME ALEXANDRA LUCE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-09-14', 235260.00, 'A'), -(1866, 3, 'HAMMAN FRANK THOMAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-08-13', 286980.00, 'A'), -(1867, 3, 'GOPPERT MARKUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 145135, '2011-09-05', 729150.00, 'A'), -(1868, 3, 'BISCARO CAROLINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 118777, '2011-09-16', 784790.00, 'A'), -(1869, 3, 'MASCHAT SEBASTIAN STEPHAN ANDREAS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-02-03', 736520.00, 'A'), -(1870, 3, 'WALTHER DANIEL CLAUS PETER', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-03-24', 328220.00, 'A'), -(1871, 3, 'NENTWIG DANIEL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 289697, '2011-02-03', 431550.00, 'A'), -(1872, 3, 'KARUTZ ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127662, '2011-03-17', 173090.00, 'A'), -(1875, 3, 'KAY KUNNE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 289697, '2011-03-18', 961400.00, 'A'), -(1876, 2, 'SCHLUMPF IVANA PATRICIA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 245206, '2011-03-28', 802690.00, 'A'), -(1877, 3, 'RODRIGUEZ BUSTILLO CONSUELO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 139067, '2011-03-21', 129280.00, 'A'), -(1878, 1, 'REHWALDT RICHARD ULRICH', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 289697, '2009-10-25', 238320.00, 'A'), -(1880, 3, 'FONSECA BEHRENS MANUELA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-18', 303810.00, 'A'), -(1881, 3, 'VOGEL MIRKO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-06-09', 107790.00, 'A'), -(1882, 3, 'WU WEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', - 289697, '2011-03-04', 627520.00, 'A'), -(1884, 3, 'KADOLSKY ANKE SIGRID', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 289697, '2010-10-07', 188560.00, 'A'), -(1885, 3, 'PFLUCKER PLENGE CARLOS HERNAN', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 239124, '2011-08-15', 500140.00, 'A'), -(1886, 3, 'PENA LAGOS MELENIA PATRICIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 935020.00, 'A'), -(1887, 3, 'CALVANO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 118942, '2011-05-02', 174690.00, 'A'), -(1888, 3, 'KUHLEN LOTHAR WILHELM', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 289232, '2011-08-30', 68390.00, 'A'), -(1889, 3, 'QUIJANO RICO SOFIA VICTORIA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 221939, '2011-06-13', 817890.00, 'A'), -(189, 1, 'GOMEZ TRUJILLO SERGIO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-08-17', 985980.00, 'A'), -(1890, 3, 'SCHILBERZ KARIN', 191821112, 'CRA 25 CALLE 100', '405@facebook.com', - '2011-02-03', 287570, '2011-06-23', 884260.00, 'A'), -(1891, 3, 'SCHILBERZ SOPHIE CAHRLOTTE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 287570, '2011-06-23', 967640.00, 'A'), -(1892, 3, 'MOLINA MOLINA MILAGRO DE SUYAPA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 139844, '2011-07-26', 185410.00, 'A'), -(1893, 3, 'BARRIENTOS ESCALANTE RAFAEL ALVARO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 139067, '2011-05-18', 24110.00, 'A'), -(1895, 3, 'ENGELS FRANZBERNARD', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 292243, '2011-07-01', 749430.00, 'A'), -(1896, 3, 'FRIEDHOFF SVEN WILHEM', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 289697, '2010-10-31', 54090.00, 'A'), -(1897, 3, 'BARTELS CHRISTIAN JOHAN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 133535, '2011-07-25', 22160.00, 'A'), -(1898, 3, 'NILS REMMEL', 191821112, 'CRA 25 CALLE 100', '214@gmail.com', - '2011-02-03', 256231, '2011-08-05', 948530.00, 'A'), -(1899, 3, 'DR SCHEIBE MATTHIAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 252431, '2011-09-26', 676150.00, 'A'), -(19, 1, 'RIANO ROMERO ALBERTO ELIAS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2009-12-14', 946630.00, 'A'), -(190, 1, 'LLOREDA ORTIZ FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2010-12-20', 30860.00, 'A'), -(1900, 3, 'CARRASCO CATERIANO PEDRO', 191821112, 'CRA 25 CALLE 100', - '255@hotmail.com', '2011-02-03', 286578, '2011-05-02', 535180.00, 'A'), -(1901, 3, 'ROSENBER DIRK PETER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-09-29', 647450.00, 'A'), -(1902, 3, 'LAUBACH JOHANNES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 289697, '2011-05-01', 631720.00, 'A'), -(1904, 3, 'GRUND STEFAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 256231, '2011-08-05', 185990.00, 'A'), -(1905, 3, 'GRUND BEATE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 256231, '2011-08-05', 281280.00, 'A'), -(1906, 3, 'CORZO PAULA MIRIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 180063, '2011-08-02', 848400.00, 'A'), -(1907, 3, 'OESTERHAUS CORNELIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 256231, '2011-03-16', 398170.00, 'A'), -(1908, 1, 'JUAN SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127300, '2011-05-12', 445660.00, 'A'), -(1909, 3, 'VAN ZIJL CHRISTIAN ANDREAS', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 286785, '2011-09-24', 33800.00, 'A'), -(191, 1, 'CASTANEDA CABALLERO JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-09-28', 196370.00, 'A'), -(1910, 3, 'LORZA RUIZ MYRIAM ESPERANZA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-04-29', 831990.00, 'A'), -(192, 1, 'ZEA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-09-09', 889270.00, 'A'), -(193, 1, 'VELEZ VICTOR MANUEL', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 128662, '2010-10-22', 857250.00, 'A'), -(194, 1, 'ARCINIEGAS GOMEZ ISMAEL', 191821112, 'CRA 25 CALLE 100', - '937@hotmail.com', '2011-02-03', 127591, '2011-05-18', 618450.00, 'A'), -(195, 1, 'LINAREZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-09-12', 520470.00, 'A'), -(1952, 3, 'BERND ERNST HEINZ SCHUNEMANN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 255673, '2011-09-04', 796820.00, 'A'), -(1953, 3, 'BUCHNER RICHARD ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-09-17', 808430.00, 'A'), -(1954, 3, 'CHO YONG BEOM', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 173192, '2011-02-07', 651670.00, 'A'), -(1955, 3, 'BERNECKER WALTER LUDWIG', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 256231, '2011-04-03', 833080.00, 'A'), -(1956, 3, 'SCHIERENBECK THOMAS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 256231, '2011-05-03', 210380.00, 'A'), -(1957, 3, 'STEGMANN WOLF DIETER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 128662, '2011-08-27', 552650.00, 'A'), -(1958, 3, 'LEBAGE GONZALEZ VALENTINA CECILIA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 131272, '2011-07-29', 132130.00, 'A'), -(1959, 3, 'CABRERA MACCHI JOSE ', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 180063, '2011-08-02', 2700.00, 'A'), -(196, 1, 'OTERO BERNAL ALVARO ERNESTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2010-04-29', 747030.00, 'A'), -(1960, 3, 'KOO BONKI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', - 127591, '2011-05-15', 617110.00, 'A'), -(1961, 3, 'JODJAHN DE CARVALHO BEIRAL FLAVIA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 118942, '2011-07-05', 77460.00, 'A'), -(1963, 3, 'VIEIRA ROCHA MARQUES ELIANE TEREZINHA', 191821112, - 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 118402, '2011-09-13', - 447430.00, 'A'), -(1965, 3, 'KELLEN CRISTINA GATTI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 126180, '2011-07-01', 804020.00, 'A'), -(1966, 3, 'CHAVEZ MARLON TENORIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-25', 132310.00, 'A'), -(1967, 3, 'SERGIO COZZI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 125750, '2011-08-28', 249500.00, 'A'), -(1968, 3, 'REZENDE LIMA JOSE MARCIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 118777, '2011-08-23', 850570.00, 'A'), -(1969, 3, 'RAMOS PEDRO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 118942, '2011-08-03', 504330.00, 'A'), -(1972, 3, 'ADAMS THOMAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 118942, '2011-08-11', 774000.00, 'A'), -(1973, 3, 'WALESKA NUCINI BOGO ANDREA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-23', 859690.00, 'A'), -(1974, 3, 'GERMANO PAULO BUNN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 118439, '2011-08-30', 976440.00, 'A'), -(1975, 3, 'CALDEIRA FILHO RUBENS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 118942, '2011-07-18', 303120.00, 'A'), -(1976, 3, 'JOSE CUSTODIO DO ALTISSIMO NETONETO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 119814, '2011-09-08', 586290.00, 'A'), -(1977, 3, 'GAMAS MARIA CRISTINA ALVES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 118777, '2011-09-19', 22070.00, 'A'), -(1979, 3, 'PORTO WEBER FERREIRA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-07', 691340.00, 'A'), -(1980, 3, 'FONSECA LAURO PINTO', 191821112, 'CRA 25 CALLE 100', - '104@hotmail.es', '2011-02-03', 127591, '2011-08-16', 402140.00, 'A'), -(1981, 3, 'DUARTE ELENA CECILIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 118777, '2011-06-15', 936710.00, 'A'), -(1983, 3, 'CECHINEL CRISTIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 118942, '2011-06-12', 575530.00, 'A'), -(1984, 3, 'BATISTA PINHERO JOAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 118777, '2011-04-25', 446250.00, 'A'), -(1987, 1, 'ISRAEL JOSE MAXWELL', 191821112, 'CRA 25 CALLE 100', '936@gmail.com', - '2011-02-03', 125894, '2011-07-04', 408350.00, 'A'), -(1988, 3, 'BATISTA CARVALHO RODRIGO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 118864, '2011-09-19', 488410.00, 'A'), -(1989, 3, 'RENO DA SILVEIRA EDNEIA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 118867, '2011-05-03', 216990.00, 'A'), -(199, 1, 'BASTO CORREA FERNANDO ANTONIO ', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-21', 616860.00, 'A'), -(1990, 3, 'SEIDLER KOHNERT G TEIXEIRA CHRISTINA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 119814, '2011-08-23', 619730.00, 'A'), -(1992, 3, 'GUIMARAES COSTA LEONARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 133535, '2011-04-20', 379090.00, 'A'), -(1993, 3, 'BOTTA RODRIGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 118777, '2011-09-16', 552510.00, 'A'), -(1994, 3, 'ARAUJO DA SILVA MARCELO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 125666, '2011-08-03', 625260.00, 'A'), -(1995, 3, 'DA SILVA FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 118864, '2011-04-14', 468760.00, 'A'), -(1996, 3, 'MANFIO RODRIGUEZ FERNANDO', 191821112, 'CRA 25 CALLE 100', - '974@yahoo.com', '2011-02-03', 118777, '2011-03-23', 468040.00, 'A'), -(1997, 3, 'NEIVA MORENO DE SOUZA CRISTIANE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-24', 933900.00, 'A'), -(2, 3, 'CHEEVER MICHAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-07-04', 560090.00, 'I'), -(2000, 3, 'ROCHA GUSTAVO ADRIANO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 118288, '2011-07-25', 830340.00, 'A'), -(2001, 3, 'DE ANDRADE CARVALHO VIRGINIA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 118942, '2011-08-11', 575760.00, 'A'), -(2002, 3, 'CAVALCANTI PIERECK GUILHERME', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 180063, '2011-08-01', 387770.00, 'A'), -(2004, 3, 'HOEGEMANN RAMOS CARLOS FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-05-04', 894550.00, 'A'), -(201, 1, 'LUIS FERNANDO AREVALO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-06-17', 156730.00, 'A'), -(2010, 3, 'GOMES BUCHALA JORGE FERNANDO ', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 118777, '2011-09-23', 314800.00, 'A'), -(2011, 3, 'MARTINS SIMAIKA CATIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 118777, '2011-06-01', 155020.00, 'A'), -(2012, 3, 'MONICA CASECA BUENO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 118777, '2011-05-16', 830710.00, 'A'), -(2013, 3, 'ALBERTAL MARCELO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 118000, '2010-09-10', 688480.00, 'A'), -(2015, 3, 'GOMES CANTARELLI JAIRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 118761, '2011-01-11', 685940.00, 'A'), -(2016, 3, 'CADETTI GARBELLINI ENILICE CRISTINA ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-07-11', 578870.00, 'A'), -(2017, 3, 'SPIELKAMP KLAUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 150699, '2011-03-28', 836540.00, 'A'), -(2019, 3, 'GARES HENRI PHILIPPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 135190, '2011-04-05', 720730.00, 'A'), -('CELL4308', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(202, 1, 'LUCIO CHAUSTRE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-05-19', 179240.00, 'A'), -(2023, 3, 'GRECO DE RESENDELUIZ ALFREDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 119814, '2011-04-25', 647940.00, 'A'), -(2024, 3, 'CORTINA EVANDRO JOAO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 118922, '2011-05-12', 153970.00, 'A'), -(2026, 3, 'BASQUES MOURA GERALDO CARLOS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 119814, '2011-09-07', 668250.00, 'A'), -(2027, 3, 'DA SILVA VALDECIR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-08-23', 863150.00, 'A'), -(2028, 3, 'CHI MOW YUNG IVAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-08-21', 311000.00, 'A'), -(2029, 3, 'YUNG MYRA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-08-21', 965570.00, 'A'), -(2030, 3, 'MARTINS RAMALHO PATRICIA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 118777, '2011-03-23', 894830.00, 'A'), -(2031, 3, 'DE LEMOS RIBEIRO GILBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 118951, '2011-07-29', 577430.00, 'A'), -(2032, 3, 'AIROLDI CLAUDIO', 191821112, 'CRA 25 CALLE 100', '973@terra.com.co', - '2011-02-03', 127591, '2011-09-28', 202650.00, 'A'), -(2033, 3, 'ARRUDA MENDES HEILMANN IONE TEREZA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 120773, '2011-09-07', 280990.00, 'A'), -(2034, 3, 'TAVARES DE CARVALHO EDUARDO JOSE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 118942, '2011-08-03', 796980.00, 'A'), -(2036, 3, 'FERNANDES ALARCON RAFAEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 118777, '2011-08-28', 318730.00, 'A'), -(2037, 3, 'SUCHODOLKI SERGIO GUSMAO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 190393, '2011-07-13', 167870.00, 'A'), -(2039, 3, 'ESTEVES MARCAL MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-02-24', 912100.00, 'A'), -(2040, 3, 'CORSI LUIZ ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 118777, '2011-03-25', 911080.00, 'A'), -(2041, 3, 'LOPEZ MONICA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 118795, '2011-05-03', 819090.00, 'A'), -(2042, 3, 'QUINTANILHA LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-05-16', 362230.00, 'A'), -(2043, 3, 'DE CARLI BRUNO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 118777, '2011-05-03', 353890.00, 'A'), -(2045, 3, 'MARINO FRANCA MARILIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 118777, '2011-07-04', 352060.00, 'A'), -(2048, 3, 'VOIGT ALPHONSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 118439, '2010-11-22', 384150.00, 'A'), -(2049, 3, 'ALENCAR ARIMA TATIANA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 118777, '2011-05-23', 408590.00, 'A'), -(2050, 3, 'LINIS DE ALMEIDA NEILSON', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 125666, '2011-08-03', 890480.00, 'A'), -(2051, 3, 'PINHEIRO DE CASTRO BENETI', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 118942, '2011-08-09', 226640.00, 'A'), -(2052, 3, 'ALVES DO LAGO HELMANN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 118942, '2011-08-01', 461770.00, 'A'), -(2053, 3, 'OLIVO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-03-22', 628900.00, 'A'), -(2054, 3, 'WILLIAM DOMINGUES SERGIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 118085, '2011-08-23', 759220.00, 'A'), -(2055, 3, 'DE SOUZA MENEZES KLEBER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 118777, '2011-04-25', 909400.00, 'A'), -(2056, 3, 'CABRAL NEIDE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-09-16', 269340.00, 'A'), -(2057, 3, 'RODRIGUES RENATO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 118777, '2011-06-15', 618500.00, 'A'), -(2058, 3, 'SPADALE PEDRO JORGE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 118942, '2011-08-03', 284490.00, 'A'), -(2059, 3, 'MARTINS DE ALMEIDA GUSTAVO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 118942, '2011-09-28', 566920.00, 'A'), -(206, 1, 'TORRES HEBER MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 128662, '2011-01-29', 643210.00, 'A'), -(2060, 3, 'IKUNO CELINA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 118777, '2011-06-08', 981170.00, 'A'), -(2061, 3, 'DAL BELLO FABIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 129499, '2011-08-20', 205050.00, 'A'), -(2062, 3, 'BENATES ADRIANA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-08-23', 81770.00, 'A'), -(2063, 3, 'CARDOSO ALEXANDRE ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-08-23', 793690.00, 'A'), -(2064, 3, 'ZANIOLO DE SOUZA CARLOS HENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 118777, '2011-09-19', 723130.00, 'A'), -(2065, 3, 'DA SILVA LUIZ SIDNEI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 118777, '2011-03-30', 234590.00, 'A'), -(2066, 3, 'RUFATO DE SOUZA LUIZ FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 118777, '2011-08-29', 3560.00, 'A'), -(2067, 3, 'DE MEDEIROS LUCIANA', 191821112, 'CRA 25 CALLE 100', - '994@yahoo.com.mx', '2011-02-03', 118777, '2011-09-10', 314020.00, 'A'), -(2068, 3, 'WOLFF PIAZERA DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 118255, '2011-06-15', 559430.00, 'A'), -(2069, 3, 'DA SILVA FORTUNA MARINA CLAUDIA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 133535, '2011-09-23', 855100.00, 'A'), -(2070, 3, 'PEREIRA BORGES LUCILA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 120773, '2011-07-26', 597210.00, 'A'), -(2072, 3, 'PORROZZI DE ALMEIDA RENATO', 191821112, 'CRA 25 CALLE 100', - '812@hotmail.es', '2011-02-03', 127591, '2011-06-13', 312120.00, 'A'), -(2073, 3, 'KALICHSZTEINN RICARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 118777, '2011-03-23', 298330.00, 'A'), -(2074, 3, 'OCCHIALINI GUIMARAES ANA PAULA', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 118777, '2011-08-03', 555310.00, 'A'), -(2075, 3, 'MAZZUCO FONTES LUIZ ROBERTO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 118777, '2011-05-23', 881570.00, 'A'), -(2078, 3, 'TRAN DINH VAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 132958, '2011-05-07', 98560.00, 'A'), -(2079, 3, 'NGUYEN THI LE YEN', 191821112, 'CRA 25 CALLE 100', - '249@yahoo.com.mx', '2011-02-03', 132958, '2011-05-07', 298200.00, 'A'), -(208, 1, 'GOMEZ GONZALEZ JORGE MARIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-12', 889010.00, 'A'), -(2080, 3, 'MILA DE LA ROCA JOHANA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 132958, '2011-01-26', 195350.00, 'A'), -(2081, 3, 'RODRIGUEZ DE FLORES LOURDES MARIA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-06-16', 82120.00, 'A'), -(2082, 3, 'FLORES PEREZ FRANCISCO GUILLERMO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-06-23', 824550.00, 'A'), -(2083, 3, 'FRAGACHAN BETANCOUT FRANCISCO JO SE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 132958, '2011-07-04', 876400.00, 'A'), -(2084, 3, 'GAFARO MOLINA CARLOS JULIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-03-22', 908370.00, 'A'), -(2085, 3, 'CACERES REYES JORGEANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 117002, '2011-08-11', 912630.00, 'A'), -(2086, 3, 'ALVAREZ RODRIGUEZ VICTOR ROGELIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 132958, '2011-05-23', 838040.00, 'A'), -(2087, 3, 'GARCES ALVARADO JHAGEIMA JOSEFINA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 132958, '2011-04-29', 452320.00, 'A'), -('CELL4324', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(2089, 3, 'FAVREAU CHOLLET JEAN PIERRE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 132554, '2011-05-27', 380470.00, 'A'), -(209, 1, 'CRUZ RODRIGEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', - '316@hotmail.es', '2011-02-03', 127591, '2011-06-28', 953870.00, 'A'), -(2090, 3, 'GARAY LLUCH URBI ALAIN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 132958, '2011-03-13', 659870.00, 'A'), -(2091, 3, 'LETICIA LETICIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-06-07', 157950.00, 'A'), -(2092, 3, 'VELASQUEZ RODULFO RAMON ARISTIDES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-23', 810140.00, 'A'), -(2093, 3, 'PEREZ EDGAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-06-06', 576850.00, 'A'), -(2094, 3, 'PEREZ MARIELA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-06-07', 453840.00, 'A'), -(2095, 3, 'PETRUZZI MANGIARANO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 132958, '2011-03-27', 538650.00, 'A'), -(2096, 3, 'LINARES GORI RICARDO RAMON', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-05-12', 331730.00, 'A'), -(2097, 3, 'LAIRET OLIVEROS CAROLINE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 132958, '2011-09-25', 42680.00, 'A'), -(2099, 3, 'JIMENEZ GARCIA FERNANDO JOSE', 191821112, 'CRA 25 CALLE 100', - '78@hotmail.es', '2011-02-03', 132958, '2011-07-21', 963110.00, 'A'), -(21, 1, 'RUBIO ESCOBAR RUBEN DARIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2009-05-21', 639240.00, 'A'), -(2100, 3, 'ZABALA MILAGROS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-07-20', 160860.00, 'A'), -(2101, 3, 'VASQUEZ CRUZ NICOLEDANIELA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 132958, '2011-07-31', 914990.00, 'A'), -(2102, 3, 'REYES FIGUERA RAMON ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 126674, '2011-04-03', 92340.00, 'A'), -(2104, 3, 'RAMIREZ JIMENEZ MARYLIN CAROLINA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 132958, '2011-06-14', 306760.00, 'A'), -(2105, 3, 'TELLES GUILLEN INNA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 132958, '2011-09-07', 383520.00, 'A'), -(2106, 3, 'ALVAREZ CARMEN MARINA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 128662, '2011-07-20', 997340.00, 'A'), -(2107, 3, 'MARTINEZ YRIGOYEN NABUCODONOSOR', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 132958, '2011-07-21', 836110.00, 'A'), -(2108, 5, 'FERNANDEZ RUIZ IGNACIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-09-01', 188530.00, 'A'), -(211, 1, 'RIVEROS GARCIA JORGE IVAN', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-09-01', 650050.00, 'A'), -(2110, 3, 'CACERES REYES JORGE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 117002, '2011-08-08', 606030.00, 'A'), -(2111, 3, 'GELFI MARCOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 199862, '2011-05-17', 727190.00, 'A'), -(2112, 3, 'CERDA CASTILLO CARMEN GLORIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', 817870.00, 'A'), -(2113, 3, 'RANGEL FERNANDEZ LEONARDO JOSE', 191821112, 'CRA 25 CALLE 100', - '856@hotmail.com', '2011-02-03', 133211, '2011-05-16', 907750.00, 'A'), -(2114, 3, 'ROTHSCHILD VARGAS MICHAEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 132165, '2011-02-05', 85170.00, 'A'), -(2115, 3, 'RUIZ GRATEROL INGRID JOHANNA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 132958, '2011-05-16', 702600.00, 'A'), -(2116, 2, 'DEARMAS ALBERTO FERNANDO ', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 150699, '2011-07-19', 257500.00, 'A'), -(2117, 3, 'BOSCAN ARRIETA ERICK HUMBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 132958, '2011-07-12', 179680.00, 'A'), -(2118, 3, 'GUILLEN DE TELLES NENCY JOSEFINA', 191821112, 'CRA 25 CALLE 100', - '56@facebook.com', '2011-02-03', 132958, '2011-09-07', 125900.00, 'A'), -(212, 1, 'BUSTAMANTE BUSTAMANTE CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-26', 943260.00, 'A'), -(2120, 2, 'MARK ANTHONY STUART', 191821112, 'CRA 25 CALLE 100', - '661@terra.com.co', '2011-02-03', 127591, '2011-06-26', 74600.00, 'A'), -(2122, 3, 'SCOCOZZA GIOVANNA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 190526, '2011-09-23', 284220.00, 'A'), -(2125, 3, 'CHAVES MOLINA JULIO FELIPE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 132165, '2011-09-22', 295360.00, 'A'), -(2127, 3, 'BERNARDES DE SOUZA TONIATI VIRGINIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-06-30', 565090.00, 'A'), -(2129, 2, 'BRIAN DAVIS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-03-19', 78460.00, 'A'), -(213, 1, 'PAREJO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-08-11', 766120.00, 'A'), -(2131, 3, 'DE OLIVEIRA LOPES REGINALDO LAZARO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-10-05', 404910.00, 'A'), -(2132, 3, 'DE MELO MING AZEVEDO PAULO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-10-05', 440370.00, 'A'), -(2137, 3, 'SILVA JORGE ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-10-05', 230570.00, 'A'), -(214, 1, 'CADENA RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-08-08', 840.00, 'A'), -(2142, 3, 'VIEIRA VEIGA PEDRO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-06-30', 85330.00, 'A'), -(2144, 3, 'ESCRIBANO LEONARDA DEL VALLE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 133535, '2011-03-24', 941440.00, 'A'), -(2145, 3, 'RODRIGUEZ MENENDEZ BERNARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 148511, '2011-08-02', 588740.00, 'A'), -(2146, 3, 'GONZALEZ COURET DANIA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 148511, '2011-08-09', 119380.00, 'A'), -(2147, 3, 'GARCIA SOTO WILLIAM', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 135360, '2011-05-18', 830660.00, 'A'), -(2148, 3, 'MENESES ORELLANA RICARDO TOMAS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 132165, '2011-06-13', 795200.00, 'A'), -(2149, 3, 'GUEVARA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-06-27', 483990.00, 'A'), -(215, 1, 'BELTRAN PINZON JUAN CARLO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-08-08', 705860.00, 'A'), -(2151, 2, 'LLANES GARRIDO JAVIER ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-08-30', 719750.00, 'A'), -(2152, 3, 'CHAVARRIA CHAVES RAFAEL ADRIAN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 132165, '2011-09-20', 495720.00, 'A'), -(2153, 2, 'MILBERT ANDREASPETER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-08-10', 319370.00, 'A'), -(2154, 2, 'GOMEZ SILVA LOZANO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127300, '2011-05-30', 109670.00, 'A'), -(2156, 3, 'WINTON ROBERT DOUGLAS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 115551, '2011-08-08', 622290.00, 'A'), -(2157, 2, 'ROMERO PINA MANUEL GUSTAVO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2011-05-05', 340650.00, 'A'), -(2158, 3, 'KARWALSKI MATTHEW REECE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 117229, '2011-08-29', 836380.00, 'A'), -(2159, 2, 'KIM JUNG SIK ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-07-08', 159950.00, 'A'), -(216, 1, 'MARTINEZ VALBUENA JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-07-25', 526750.00, 'A'), -(2160, 3, 'AGAR ROBERT ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '81@hotmail.es', '2011-02-03', 116862, '2011-06-11', 290620.00, 'A'), -(2161, 3, 'IGLESIAS EDGAR ALEXIS', 191821112, 'CRA 25 CALLE 100', - '645@facebook.com', '2011-02-03', 131272, '2011-04-04', 973240.00, 'A'), -(2163, 2, 'NOAIN MORENO CECILIA KARIM ', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-06-22', 51950.00, 'A'), -(2164, 2, 'FIGUEROA HEBEL ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-04-26', 276760.00, 'A'), -(2166, 5, 'FRANDBERG DAN RICHARD VERNER', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 134022, '2011-04-06', 309480.00, 'A'), -(2168, 2, 'CONTRERAS LILLO EDUARDO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-04-27', 389320.00, 'A'), -(2169, 2, 'BLANCO VALLE RICARDO ', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2011-07-13', 355950.00, 'A'), -(2171, 2, 'BELTRAN ZAVALA JIMI ALFONSO MIGUEL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 126674, '2011-08-22', 991000.00, 'A'), -(2172, 2, 'RAMIRO OREGUI JOSE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 133535, '2011-04-27', 119700.00, 'A'), -(2175, 2, 'FENG PUYO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 302172, '2011-10-07', 965660.00, 'A'), -(2176, 3, 'CLERICI GUIDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 116366, '2011-08-30', 522970.00, 'A'), -(2177, 1, 'SEIJAS GUNTER LUIS MANUEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-09-02', 717890.00, 'A'), -(2178, 2, 'SHOSHANI MOSHE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-06-13', 20520.00, 'A'), -(218, 3, 'HUCHICHALEO ARSENDIGA FRANCISCA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-05-05', 690.00, 'A'), -(2181, 2, 'DOMINGO BARTOLOME LUIS FERNANDO', 191821112, 'CRA 25 CALLE 100', - '173@terra.com.co', '2011-02-03', 127591, '2011-04-18', 569030.00, 'A'), -(2182, 3, 'GONZALEZ RIJO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-10-02', 795610.00, 'A'), -(2183, 2, 'ANDROVICH MORENO LIZETH LILIAN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127300, '2011-10-10', 270970.00, 'A'), -(2184, 2, 'ARREAZA LUGO JESUS ALFREDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-08-08', 968030.00, 'A'), -(2185, 2, 'NAVEDA CANELON KATHERINE', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 132775, '2011-09-14', 27250.00, 'A'), -(2189, 2, 'LUGO BEHRENS DENISE SOFIA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-08', 253980.00, 'A'), -(2190, 2, 'ERICA ROSE MOLDENHAUVER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-06-25', 175480.00, 'A'), -(2192, 2, 'SOLORZANO GARCIA ANDREINA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-07-25', 50790.00, 'A'), -(2193, 3, 'DE LA COSTE MARIA CAROLINA', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-07-26', 907640.00, 'A'), -(2194, 2, 'MARTINEZ DIAZ JUAN JOSE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-04-08', 385810.00, 'A'), -(2195, 2, 'GALARRAGA ECHEVERRIA DAYEN ALI', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-07-13', 206150.00, 'A'), -(2196, 2, 'GUTIERREZ RAMIREZ HECTOR JOSE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 133211, '2011-06-07', 873330.00, 'A'), -(2197, 2, 'LOPEZ GONZALEZ SILVIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127662, '2011-09-01', 748170.00, 'A'), -(2198, 2, 'SEGARES LUTZ JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-08-07', 120880.00, 'A'), -(2199, 2, 'NADER MARTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127538, '2011-08-12', 359880.00, 'A'), -(22, 1, 'CARDOZO AMAYA JORGE HUMBERTO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-07-25', 908720.00, 'A'), -(2200, 3, 'NATERA BERMUDEZ OSWALDO JOSE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2010-10-18', 436740.00, 'A'), -(2201, 2, 'COSTA RICARDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 150699, '2011-09-01', 104090.00, 'A'), -(2202, 5, 'GRUNDY VALENZUELA ALAN PATRICK', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-09-08', 210230.00, 'A'), -(2203, 2, 'MONTENEGRO DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2011-05-26', 738890.00, 'A'), -(2204, 2, 'TAMAI BUNGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-08-24', 63730.00, 'A'), -(2205, 5, 'VINHAS FORTUNA EDSON', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 133535, '2011-09-23', 102010.00, 'A'), -(2206, 2, 'RUIZ ERBS MARIO ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-07-19', 318860.00, 'A'), -(2207, 2, 'VENTURA TINEO MARCEL ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-08-08', 288240.00, 'A'), -(2210, 2, 'RAMIREZ GUZMAN RICARDO JAIME', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-04-28', 338740.00, 'A'), -(2211, 2, 'STERNBERG GABRIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 132958, '2011-09-04', 18070.00, 'A'), -(2212, 2, 'MARTELLO ALEJOS ROGER ADOLFO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127443, '2011-06-20', 74120.00, 'A'), -(2213, 2, 'CASTANEDA RAFAEL ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-05-25', 316410.00, 'A'), -(2214, 2, 'LIMON MARTINEZ WILBERT DE JESUS', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128904, '2011-09-19', 359690.00, 'A'), -(2215, 2, 'PEREZ HERNANDEZ MONICA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 133211, '2011-05-23', 849240.00, 'A'), -(2216, 2, 'AWAD LOBATO RICARDO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', - '853@hotmail.com', '2011-02-03', 127591, '2011-04-12', 167100.00, 'A'), -(2217, 2, 'CEPEDA VANEGAS ENDER ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 132958, '2011-08-22', 287770.00, 'A'), -(2218, 2, 'PEREZ CHIQUIN HECTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 132572, '2011-04-13', 937580.00, 'A'), -(2220, 5, 'FRANCO DELGADILLO RONALD FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 132775, '2011-09-16', 310190.00, 'A'), -(2222, 2, 'ALCAIDE ALONSO JUAN MIGUEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2011-05-02', 455360.00, 'A'), -(2223, 3, 'BROWNING BENJAMIN MARK', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-06-09', 45230.00, 'A'), -(2225, 3, 'HARWOO BENJAMIN JOEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 164620.00, 'A'), -(2226, 3, 'HOEY TIMOTHY ROSS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-06-09', 242910.00, 'A'), -(2227, 3, 'FERGUSON GARRY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-07-28', 720700.00, 'A'), -(2228, 3, 'NORMAN NEVILLE ROBERT', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 288493, '2011-06-29', 874750.00, 'A'), -(2229, 3, 'KUK HYUN CHAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 128662, '2011-03-22', 211660.00, 'A'), -(223, 1, 'PINZON PLAZA MARCOS VINICIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 856300.00, 'A'), -(2230, 3, 'SLIPAK NATALIA ANDREA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-07-27', 434070.00, 'A'), -(2231, 3, 'BONELLI MASSIMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 170601, '2011-07-11', 535340.00, 'A'), -(2233, 3, 'VUYLSTEKE ALEXANDER ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 284647, '2011-09-11', 266530.00, 'A'), -(2234, 3, 'DRESSE ALAIN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 284272, '2011-04-19', 209100.00, 'A'), -(2235, 3, 'PAIRON JEAN LOUIS MARIE RAIMOND', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 284272, '2011-03-03', 245940.00, 'A'), -(2236, 3, 'DEVIANE ACHIM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 284272, '2010-11-14', 602370.00, 'A'), -(2239, 3, 'DE CANNIERE LOUIS GEORFES HELE MARIE-JOZEF', 191821112, - 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 285511, '2011-09-11', - 993540.00, 'A'), -(2240, 1, 'ERGO ROBERT', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-09-28', 278270.00, 'A'), -(2241, 3, 'MYRTES RODRIGUEZ MORGANA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 118777, '2011-09-18', 410740.00, 'A'), -(2242, 3, 'BRECHBUEHL HANSRUDOLF', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 249059, '2011-07-27', 218900.00, 'A'), -(2243, 3, 'IVANA SCHLUMPF', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 245206, '2011-04-08', 862270.00, 'A'), -(2244, 3, 'JESSICA JACCART', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 189512, '2011-08-28', 654640.00, 'A'), -(2246, 3, 'PAUSELLI MARIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 210050, '2011-09-26', 468090.00, 'A'), -(2247, 3, 'VOLONTEIRO RICCARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 118777, '2011-04-13', 281230.00, 'A'), -(2248, 3, 'HOFFMANN ALVIR ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 120773, '2011-08-23', 1900.00, 'A'), -(2249, 3, 'MANTOVANI DANIEL FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 118942, '2011-08-09', 165820.00, 'A'), -(225, 1, 'DUARTE RUEDA JAVIER ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-29', 293110.00, 'A'), -(2250, 3, 'LIMA DA COSTA BRENO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 118777, '2011-03-23', 823370.00, 'A'), -(2251, 3, 'TAMBORIN MACIEL MAGALI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-08-23', 619420.00, 'A'), -(2252, 3, 'BELLO DE MUORA BIANCA', 191821112, 'CRA 25 CALLE 100', - '969@gmail.com', '2011-02-03', 118942, '2011-08-03', 626970.00, 'A'), -(2253, 3, 'VINHAS FORTUNA PIETRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 133535, '2011-09-23', 276600.00, 'A'), -(2255, 3, 'BLUMENTHAL JAIRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 117630, '2011-07-20', 680590.00, 'A'), -(2256, 3, 'DOS REIS FILHO ELPIDIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 120773, '2011-08-07', 896720.00, 'A'), -(2257, 3, 'COIMBRA CARDOSO MUNARI FERNANDA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-09', 441830.00, 'A'), -(2258, 3, 'LAZANHA FLAVIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 118942, '2011-06-14', 519000.00, 'A'), -(2259, 3, 'LAZANHA FLAVIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 118942, '2011-06-14', 269480.00, 'A'), -(226, 1, 'HUERFANO FLOREZ JOHN FAVER', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-07-29', 148340.00, 'A'), -(2260, 3, 'JOVETTA EDILSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 118941, '2011-09-19', 790430.00, 'A'), -(2261, 3, 'DE OLIVEIRA ANDRE RICARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 118942, '2011-07-25', 143680.00, 'A'), -(2263, 3, 'MUNDO TEIXEIRA CARVALHO SILVIA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 118864, '2011-09-19', 304670.00, 'A'), -(2264, 3, 'FERREIRA CINTRA ADRIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 128662, '2011-04-08', 481910.00, 'A'), -(2265, 3, 'AUGUSTO DE OLIVEIRA MARCOS', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 118685, '2011-08-09', 495530.00, 'A'), -(2266, 3, 'CHEN ROBERTO LUIZ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 118777, '2011-03-15', 31920.00, 'A'), -(2268, 3, 'WROBLESKI DIENSTMANN RAQUEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 117630, '2011-05-15', 269320.00, 'A'), -(2269, 3, 'MALAGOLA GEDERSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 118864, '2011-05-30', 327540.00, 'A'), -(227, 1, 'LOPEZ ESCOBAR CARLOS ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-06', 862360.00, 'A'), -(2271, 3, 'GOMES EVANDRO HENRIQUE', 191821112, 'CRA 25 CALLE 100', - '199@hotmail.es', '2011-02-03', 118777, '2011-03-24', 166100.00, 'A'), -(2273, 3, 'LANDEIRA FERNANDEZ JESUS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-06-21', 207990.00, 'A'), -(2274, 3, 'ROSSI RENATO', 191821112, 'CRA 25 CALLE 100', '791@hotmail.es', - '2011-02-03', 118777, '2011-09-19', 16170.00, 'A'), -(2275, 3, 'CALMON RANGEL PATRICIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-08-23', 456890.00, 'A'), -(2277, 3, 'CIFU NETO ROQUE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 118777, '2011-04-27', 808940.00, 'A'), -(2278, 3, 'GONCALVES PRETO FRANCISCO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 118942, '2011-07-25', 336930.00, 'A'), -(2279, 3, 'JORGE JUNIOR ROBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 118777, '2011-05-09', 257840.00, 'A'), -(2281, 3, 'ELENCIUC DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 118777, '2011-04-20', 618510.00, 'A'), -(2283, 3, 'CUNHA MENDEZ RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 119855, '2011-07-18', 431190.00, 'A'), -(2286, 3, 'DIAZ LENICE APARECIDA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 118777, '2011-05-03', 977840.00, 'A'), -(2288, 3, 'DE CARVALHO SIGEL TATIANA', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 118777, '2011-07-04', 123920.00, 'A'), -(229, 1, 'GALARZA GIRALDO SERGIO ALDEMAR', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 150699, '2011-09-17', 746930.00, 'A'), -(2290, 3, 'ACHOA MORANDI BORGUES SIBELE MARIA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 118777, '2011-09-12', 553890.00, 'A'), -(2291, 3, 'EPAMINONDAS DE ALMEIDA DELIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 118777, '2011-09-22', 14080.00, 'A'), -(2293, 3, 'REIS CASTRO SHANA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 118942, '2011-08-03', 1430.00, 'A'), -(2294, 3, 'BERNARDES JUNIOR ARMANDO', 191821112, 'CRA 25 CALLE 100', - '678@gmail.com', '2011-02-03', 127591, '2011-08-30', 780930.00, 'A'), -(2295, 3, 'LEMOS DE SOUZA AGUIAR SERGIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 118777, '2011-10-03', 900370.00, 'A'), -(2296, 3, 'CARVALHO ADAMS KARIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 118942, '2011-08-11', 159040.00, 'A'), -(2297, 3, 'GALLINA SILVANA BRASILEIRA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-23', 94110.00, 'A'), -(23, 1, 'COLMENARES PEDREROS EDUARDO ADOLFO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-09-02', 625870.00, 'A'), -(2300, 3, 'TAVEIRA DE SIQUEIRA TANIA APARECIDA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-24', 443910.00, 'A'), -(2301, 3, 'DA SIVA LIMA ANDRE LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-08-23', 165020.00, 'A'), -(2302, 3, 'GALVAO GUSTAVO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 118942, '2011-09-12', 493370.00, 'A'), -(2303, 3, 'DA COSTA CRUZ GABRIELA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 118777, '2011-07-27', 971800.00, 'A'), -(2304, 3, 'BERNHARD GOTTFRIED RABER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-04-30', 378870.00, 'A'), -(2306, 3, 'ALDANA URIBE PABLO AXEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 145135, '2011-05-08', 758160.00, 'A'), -(2308, 3, 'FLORES ALONSO EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 145135, '2011-04-26', 995310.00, 'A'), -('CELL4330', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(2309, 3, 'MADRIGAL MIER Y TERAN LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 145135, '2011-02-23', 414650.00, 'A'), -(231, 1, 'ZAPATA CEBALLOS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127662, '2011-08-16', 430320.00, 'A'), -(2310, 3, 'GONZALEZ ALVARO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 145135, '2011-05-19', 87330.00, 'A'), -(2313, 3, 'MONTES PORTO ANDREA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 145135, '2011-09-01', 929180.00, 'A'), -(2314, 3, 'ROCHA SUSUNAGA SERGIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2010-10-18', 541540.00, 'A'), -(2315, 3, 'VASQUEZ CALERO FEDERICO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 920160.00, 'A'), -(2317, 3, 'GONZALEZ FERNANDEZ YUSSEN ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-26', 120530.00, 'A'), -(2319, 3, 'ATTIAS WENGROWSKY DAVID', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 150581, '2011-09-07', 8580.00, 'A'), -(232, 1, 'OSPINA ABUCHAIBE ALBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 133535, '2011-07-14', 748960.00, 'A'), -(2320, 3, 'EFRON TOPOROVSKY INES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 116511, '2011-07-15', 20810.00, 'A'), -(2321, 3, 'LUNA PLA DARIO', 191821112, 'CRA 25 CALLE 100', '95@terra.com.co', - '2011-02-03', 145135, '2011-09-07', 78320.00, 'A'), -(2322, 1, 'VAZQUEZ DANIELA', 191821112, 'CRA 25 CALLE 100', '190@gmail.com', - '2011-02-03', 145135, '2011-05-19', 329170.00, 'A'), -(2323, 3, 'BALBI BALBI JUAN DE DIOS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-23', 410880.00, 'A'), -(2324, 3, 'MARROQUIN FERNANDEZ GELACIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-03-23', 66880.00, 'A'), -(2325, 3, 'VAZQUEZ ZAVALA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 145135, '2011-04-11', 101770.00, 'A'), -(2326, 3, 'SOTO MARTINEZ MARIA ELENA', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-03-23', 308200.00, 'A'), -(2328, 3, 'HERNANDEZ MURILLO RICARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-08-22', 253830.00, 'A'), -(233, 1, 'HADDAD LINERO YEBRAIL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 130608, '2010-06-17', 453830.00, 'A'), -(2330, 3, 'TERMINEL HERNANDEZ DANIELA PATRICIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 190393, '2011-08-15', 48940.00, 'A'), -(2331, 3, 'MIJARES FERNANDEZ MAGDALENA GUADALUPE', 191821112, - 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 145135, '2011-07-31', - 558440.00, 'A'), -(2332, 3, 'GONZALEZ LUNA CARLOS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 146258, '2011-04-26', 645400.00, 'A'), -(2333, 3, 'DIAZ TORREJON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 145135, '2011-05-03', 551690.00, 'A'), -(2335, 3, 'PADILLA GUTIERREZ JESUS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 456120.00, 'A'), -(2336, 3, 'TORRES CORONA JORGE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', 813900.00, 'A'), -(2337, 3, 'CASTRO RAMSES', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 150581, '2011-07-04', 701120.00, 'A'), -(2338, 3, 'APARICIO VALLEJO RUSSELL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2011-03-16', 63890.00, 'A'), -(2339, 3, 'ALBOR FERNANDEZ LUIS ARTURO', 191821112, 'CRA 25 CALLE 100', - '574@gmail.com', '2011-02-03', 147467, '2011-05-09', 216110.00, 'A'), -(234, 1, 'DOMINGUEZ GOMEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '942@hotmail.com', '2011-02-03', 127591, '2010-08-22', 22260.00, 'A'), -(2342, 3, 'REY ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '110@facebook.com', - '2011-02-03', 127591, '2011-03-04', 313330.00, 'A'), -(2343, 3, 'MENDOZA GONZALES ADRIANA', 191821112, 'CRA 25 CALLE 100', - '295@yahoo.com', '2011-02-03', 127591, '2011-03-23', 178720.00, 'A'), -(2344, 3, 'RODRIGUEZ SEGOVIA JESUS ALONSO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2011-07-26', 953590.00, 'A'), -(2345, 3, 'GONZALEZ PELAEZ EDUARDO DAVID', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-07-26', 231790.00, 'A'), -(2347, 3, 'VILLEDA GARCIA DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 144939, '2011-05-29', 795600.00, 'A'), -(2348, 3, 'FERRER BURGES EMILIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-04-11', 83430.00, 'A'), -(2349, 3, 'NARRO ROBLES LUIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 145135, '2011-03-16', 30330.00, 'A'), -(2350, 3, 'ZALDIVAR UGALDE CARLOS IGNACIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145135, '2011-06-19', 901380.00, 'A'), -(2351, 3, 'VARGAS RODRIGUEZ VALENTE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 146258, '2011-04-26', 415910.00, 'A'), -(2354, 3, 'DEL PIERO FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 145135, '2011-05-09', 19890.00, 'A'), -(2355, 3, 'VILLAREAL ANA CRISTINA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-03-23', 211810.00, 'A'), -(2356, 3, 'GARRIDO FERRAN JORGE ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 999370.00, 'A'), -(2357, 3, 'PEREZ PRECIADO EDMUNDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-22', 361450.00, 'A'), -(2358, 3, 'AGUIRRE VIGNAU DANIEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 150581, '2011-08-21', 809110.00, 'A'), -(2359, 3, 'LOPEZ SESMA TOMAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 146258, '2011-09-14', 961200.00, 'A'), -(236, 1, 'VENTO BETANCOURT LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-03-19', 682230.00, 'A'), -(2360, 3, 'BERNAL MALDONADO GUILLERMO JAVIER', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 118777, '2011-09-19', 378670.00, 'A'), -(2361, 3, 'GUZMAN DELGADO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-08-22', 9770.00, 'A'), -(2362, 3, 'GUZMAN DELGADO MARTIN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 912850.00, 'A'), -(2363, 3, 'GUSMAND ELGADO JORGE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-08-22', 534910.00, 'A'), -(2364, 3, 'RENDON BUICK JORGE JOSE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 145135, '2011-07-26', 936010.00, 'A'), -(2365, 3, 'HERNANDEZ HERNANDEZ HERNANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-08-22', 75340.00, 'A'), -(2366, 3, 'ALVAREZ PAZ PEDRO RAFAEL ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145135, '2011-01-02', 568650.00, 'A'), -(2367, 3, 'MIJARES DE LA BARREDA FERNANDA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 145135, '2011-07-31', 617240.00, 'A'), -(2368, 3, 'MARTINEZ LOPEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145135, '2011-08-24', 380250.00, 'A'), -(2369, 3, 'GAYTAN MILLAN YANERI', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 49520.00, 'A'), -(237, 1, 'BARGUIL ASSIS DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 117460, '2009-09-03', 161770.00, 'A'), -(2370, 3, 'DURAN HEREDIA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 145135, '2011-04-15', 106850.00, 'A'), -(2371, 3, 'SEGURA MIJARES CRISTOBAL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 145135, '2011-07-31', 385700.00, 'A'), -(2372, 3, 'TEPOS VALTIERRA ERIK ARTURO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 116345, '2011-09-01', 607930.00, 'A'), -(2373, 3, 'RODRIGUEZ AGUILAR EDMUNDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 145135, '2011-05-04', 882570.00, 'A'), -(2374, 3, 'MYSLABODSKI MICHAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 145135, '2011-03-08', 589060.00, 'A'), -(2375, 3, 'HERNANDEZ MIRELES JATNIEL ELIOENAI', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', 297600.00, 'A'), -(2376, 3, 'SNELL FERNANDEZ SYNTYHA ROCIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 720830.00, 'A'), -(2378, 3, 'HERNANDEZ EIVET AARON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-07-26', 394200.00, 'A'), -(2379, 3, 'LOPEZ GARZA JAIME', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-08-22', 837000.00, 'A'), -(238, 1, 'GARCIA PINO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-05-10', 762140.00, 'A'), -(2381, 3, 'TOSCANO ESTRADA RUBEN ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-08-22', 500940.00, 'A'), -(2382, 3, 'RAMIREZ HUDSON ROGER SILVESTER', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-22', 497550.00, 'A'), -(2383, 3, 'RAMOS JUAN ANTONIO', 191821112, 'CRA 25 CALLE 100', '362@yahoo.es', - '2011-02-03', 127591, '2011-08-22', 984940.00, 'A'), -(2384, 3, 'CORTES CERVANTES ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 145135, '2011-04-11', 432020.00, 'A'), -(2385, 3, 'POZOS ESQUIVEL DAVID', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-27', 205310.00, 'A'), -(2387, 3, 'ESTRADA AGUIRRE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-08-22', 36470.00, 'A'), -(2388, 3, 'GARCIA RAMIREZ RAMON', 191821112, 'CRA 25 CALLE 100', '177@yahoo.es', - '2011-02-03', 127591, '2011-08-22', 990910.00, 'A'), -(2389, 3, 'PRUD HOMME GARCIA CUBAS XAVIER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-05-18', 845140.00, 'A'), -(239, 1, 'PINZON ARDILA GUSTAVO ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-06-01', 325400.00, 'A'), -(2390, 3, 'ELIZABETH OCHOA ROJAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 145135, '2011-05-21', 252950.00, 'A'), -(2391, 3, 'MEZA ALVAREZ JOSE ALBERTO', 191821112, 'CRA 25 CALLE 100', - '646@terra.com.co', '2011-02-03', 144939, '2011-05-09', 729340.00, 'A'), -(2392, 3, 'HERRERA REYES RENATO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2010-02-28', 887860.00, 'A'), -(2393, 3, 'MURILLO GARIBAY GILBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145135, '2011-08-20', 251280.00, 'A'), -(2394, 3, 'GARCIA JIMENEZ CARLOS MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-10-09', 592830.00, 'A'), -(2395, 3, 'GUAGNELLI MARTINEZ BLANCA MONICA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 145184, '2010-10-05', 210320.00, 'A'), -(2397, 3, 'GARCIA CISNEROS RAUL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 128662, '2011-07-04', 734530.00, 'A'), -(2398, 3, 'MIRANDA ROMO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 853340.00, 'A'), -(24, 1, 'ARREGOCES GARZON NELSON ORLANDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127783, '2011-08-12', 403190.00, 'A'), -(240, 1, 'ARCINIEGAS GOMEZ ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-05-18', 340590.00, 'A'), -(2400, 3, 'HERRERA ABARCA EDUARDO VICENTE ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 755620.00, 'A'), -(2403, 3, 'CASTRO MONCAYO LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 145135, '2011-07-29', 617260.00, 'A'), -(2404, 3, 'GUZMAN DELGADO OSBALDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 56250.00, 'A'), -(2405, 3, 'GARCIA LOPEZ DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-08-22', 429500.00, 'A'), -(2406, 3, 'JIMENEZ GAMEZ RAFAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 245206, '2011-03-23', 978720.00, 'A'), -(2407, 3, 'BECERRA MARTINEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 145135, '2011-08-23', 605130.00, 'A'), -(2408, 3, 'GARCIA MARTINEZ BERNARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-08-22', 89480.00, 'A'), -(2409, 3, 'URRUTIA RAYAS BALTAZAR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-08-22', 632020.00, 'A'), -(241, 1, 'MEDINA AGUILA NESTOR EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-09-09', 726730.00, 'A'), -(2411, 3, 'VERGARA MENDOZAVICTOR HUGO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 145135, '2011-06-15', 562230.00, 'A'), -(2412, 3, 'MENDOZA MEDINA JORGE IGNACIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-08-22', 136170.00, 'A'), -(2413, 3, 'CORONADO CASTILLO HUGO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 147529, '2011-05-09', 994160.00, 'A'), -(2414, 3, 'GONZALEZ SOTO DELIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-03-23', 562280.00, 'A'), -(2415, 3, 'HERNANDEZ FLORES STEPHANIE REYNA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 828940.00, 'A'), -(2416, 3, 'ABRAJAN GUERRERO MARIA DE LOS ANGELES', 191821112, - 'CRA 25 CALLE 100', '@yahoo.es', '2011-02-03', 127591, '2011-03-23', 457860.00, - 'A'), -(2417, 3, 'HERNANDEZ LOERA ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-23', 802490.00, 'A'), -(2418, 3, 'TARIN LOPEZ JOSE CARMEN', 191821112, 'CRA 25 CALLE 100', - '117@gmail.com', '2011-02-03', 127591, '2011-03-23', 638870.00, 'A'), -(242, 1, 'JULIO NARVAEZ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-07-05', 611890.00, 'A'), -(2420, 3, 'BATTA MARQUEZ VICTOR ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 145135, '2011-08-23', 17820.00, 'A'), -(2423, 3, 'GONZALEZ REYES JUAN JOSE', 191821112, 'CRA 25 CALLE 100', - '55@yahoo.es', '2011-02-03', 127591, '2011-07-26', 758070.00, 'A'), -(2425, 3, 'ALVAREZ RODRIGUEZ HIRAM RAMSES', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-03-23', 847420.00, 'A'), -(2426, 3, 'FEMATT HERNANDEZ JESUS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 145135, '2011-03-23', 164130.00, 'A'), -(2427, 3, 'GUTIERRES ORTEGA FRANCISCO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-22', 278410.00, 'A'), -(2428, 3, 'JIMENEZ DIAZ JUAN JORGE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145135, '2011-05-13', 899650.00, 'A'), -(2429, 3, 'VILLANUEVA PEREZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', - '656@yahoo.es', '2011-02-03', 150449, '2011-03-23', 663000.00, 'A'), -(243, 1, 'GOMEZ REYES ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 126674, '2009-12-20', 879240.00, 'A'), -(2430, 3, 'CERON GOMEZ JOEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 145135, '2011-03-21', 616070.00, 'A'), -(2431, 3, 'LOPEZ LINALDI DEMETRIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 145135, '2011-05-09', 91360.00, 'A'), -(2432, 3, 'JOSEPH NATHAN PEDRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 145135, '2011-05-02', 608580.00, 'A'), -(2433, 3, 'CARRENO PULIDO RUBEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 147242, '2011-06-19', 768810.00, 'A'), -(2434, 3, 'AREVALO MERCADO CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 145135, '2011-06-12', 18320.00, 'A'), -(2436, 3, 'RAMIREZ QUEZADA ERIKA BELEM', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-05-03', 870930.00, 'A'), -(2438, 3, 'TATTO PRIETO MIGUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 145135, '2011-05-19', 382740.00, 'A'), -(2439, 3, 'LOPEZ AYALA LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 145135, '2011-10-08', 916370.00, 'A'), -(244, 1, 'DEVIS EDGAR JOSE', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2010-10-08', 560540.00, 'A'), -(2440, 3, 'HERNANDEZ TOVAR JORGE ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 144991, '2011-10-02', 433650.00, 'A'), -(2441, 3, 'COLLIARD LOPEZ PETER GEORGE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-06-09', 419120.00, 'A'), -(2442, 3, 'FLORES CHALA GARY', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-08-22', 794670.00, 'A'), -(2443, 3, 'FANDINO MUNOZ ZAMIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 145135, '2011-07-19', 715970.00, 'A'), -(2444, 3, 'BARROSO VARGAS DIEGO ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-26', 195840.00, 'A'), -(2446, 3, 'CRUZ RAMIREZ JUAN PEDRO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 145135, '2011-07-14', 569050.00, 'A'), -(2447, 3, 'TIJERINA ACOSTA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-07-26', 351280.00, 'A'), -(2449, 3, 'JASSO BARRERA CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 145135, '2011-08-24', 192560.00, 'A'), -(245, 1, 'LENCHIG KALEDA SERGIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-09-02', 165000.00, 'A'), -(2450, 3, 'GARRIDO PATRON VICTOR', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 145135, '2011-09-27', 814970.00, 'A'), -(2451, 3, 'VELASQUEZ GUERRERO RUBEN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', 497150.00, 'A'), -(2452, 3, 'CHOI SUNGKYU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 209494, '2011-08-16', 40860.00, 'A'), -(2453, 3, 'CONTRERAS LOPEZ SERGIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 145135, '2011-08-05', 712830.00, 'A'), -(2454, 3, 'CHAVEZ BATAA OSCAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 150699, '2011-06-14', 441590.00, 'A'), -(2455, 3, 'LEE JONG HYUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 131272, '2011-10-10', 69460.00, 'A'), -(2456, 3, 'MEDINA PADILLA CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 146589, '2011-04-20', 22530.00, 'A'), -(2457, 3, 'FLORES CUEVAS DOTNARA LUZ', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 145135, '2011-05-17', 904260.00, 'A'), -(2458, 3, 'LIU YONGCHAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-10-09', 453710.00, 'A'), -(2459, 3, 'CASTRO FERNANDES PORTOCARRERO JOSE MANUEL', 191821112, - 'CRA 25 CALLE 100', '@terra.com.co', '2011-02-03', 195892, '2011-06-14', - 555790.00, 'A'), -(246, 1, 'YAMHURE FONSECAN ERNESTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2009-10-03', 143350.00, 'A'), -(2460, 3, 'DUAN WEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', - 128662, '2011-06-22', 417820.00, 'A'), -(2461, 3, 'ZHU XUTAO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-05-18', 421740.00, 'A'), -(2462, 3, 'MEI SHUANNIU', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-10-09', 855240.00, 'A'), -(2464, 3, 'VEGA VACA LUIS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 145135, '2011-06-08', 489110.00, 'A'), -(2465, 3, 'TANG YUMING', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 147578, '2011-03-26', 412660.00, 'A'), -(2466, 3, 'VILLEDA GARCIA DAVID', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 144939, '2011-06-07', 595990.00, 'A'), -(2467, 3, 'GARCIA GARZA BLANCA ARMIDA', 191821112, 'CRA 25 CALLE 100', - '927@hotmail.com', '2011-02-03', 145135, '2011-05-20', 741940.00, 'A'), -(2468, 3, 'HERNANDEZ MARTINEZ EMILIO JOAQUIN', 191821112, 'CRA 25 CALLE 100', - '356@facebook.com', '2011-02-03', 145135, '2011-06-16', 921740.00, 'A'), -(2469, 3, 'WANG FAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', - 185363, '2011-08-20', 382860.00, 'A'), -(247, 1, 'ROJAS RODRIGUEZ ALVARO HERNAN', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-05-09', 221760.00, 'A'), -(2470, 3, 'WANG FEI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', - 127591, '2011-10-09', 149100.00, 'A'), -(2471, 3, 'BERNAL MALDONADO GUILLERMO JAVIER', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 118777, '2011-07-26', 596900.00, 'A'), -(2472, 3, 'GUTIERREZ GOMEZ ARTURO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 145184, '2011-07-24', 537210.00, 'A'), -(2474, 3, 'LAN TYANYE ', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-06-23', 865050.00, 'A'), -(2475, 3, 'LAN SHUZHEN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-06-23', 639240.00, 'A'), -(2476, 3, 'RODRIGUEZ GONZALEZ CARLOS ARTURO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 144616, '2011-08-09', 601050.00, 'A'), -(2477, 3, 'HAIBO NI', 191821112, 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', - 127591, '2011-08-20', 87540.00, 'A'), -(2479, 3, 'RUIZ RODRIGUEZ GRACIELA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 145135, '2011-05-20', 910130.00, 'A'), -(248, 1, 'GONZALEZ RODRIGUEZ ANDRES', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-03', 678750.00, 'A'), -(2480, 3, 'OROZCO MACIAS NORMA LETICIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-09-20', 647010.00, 'A'), -(2481, 3, 'MEZA ALVAREZ JOSE ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 144939, '2011-06-07', 504670.00, 'A'), -(2482, 3, 'RODRIGUEZ FIGUEROA RODRIGO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 146308, '2011-04-27', 582290.00, 'A'), -(2483, 3, 'CARREON GUERRA ANA CECILIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 110709, '2011-05-27', 397440.00, 'A'), -(2484, 3, 'BOTELHO BARRETO CARLOS JOSE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 195892, '2011-08-02', 240350.00, 'A'), -(2485, 3, 'CORONADO CASTILLO HUGO', 191821112, 'CRA 25 CALLE 100', - '209@yahoo.com.mx', '2011-02-03', 147529, '2011-06-07', 9420.00, 'A'), -(2486, 3, 'DE FUENTES GARZA MARCELO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-18', 326030.00, 'A'), -(2487, 3, 'GONZALEZ DUHART GUTIERREZ HORACIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145135, '2011-05-17', 601920.00, 'A'), -(2488, 3, 'LOPEZ LINALDI DEMETRIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-06-07', 31500.00, 'A'), -(2489, 3, 'CASTRO MONCAYO JOSE LUIS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 145135, '2011-06-15', 351720.00, 'A'), -(249, 1, 'CASTRO RIBEROS JULIAN ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-08-23', 728470.00, 'A'), -(2490, 3, 'SERRALDE LOPEZ MARIA GUADALUPE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 145135, '2011-07-25', 664120.00, 'A'), -(2491, 3, 'GARRIDO PATRON VICTOR', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 145135, '2011-09-29', 265450.00, 'A'), -(2492, 3, 'BRAUN JUAN NICOLAS ANTONIE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-28', 334880.00, 'A'), -(2493, 3, 'BANKA RAHUL', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 141138, '2011-05-02', 878070.00, 'A'), -(2494, 1, 'GARCIA MARTINEZ MARIA VIRGINIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-04-17', 385690.00, 'A'), -(2495, 1, 'MARIA VIRGINIA', 191821112, 'CRA 25 CALLE 100', '298@yahoo.com.mx', - '2011-02-03', 127591, '2011-04-16', 294220.00, 'A'), -(2496, 3, 'GOMEZ ZENDEJAS MARIA ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145184, '2011-06-06', 314060.00, 'A'), -(2498, 3, 'MENDEZ MARTINEZ RAUL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 145135, '2011-07-10', 496040.00, 'A'), -(2623, 3, 'ZAFIROPOULO ANA I', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-05-25', 98170.00, 'A'), -(2499, 3, 'CARREON GUERRA ANA CECILIA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 145135, '2011-07-29', 417240.00, 'A'), -(2501, 3, 'OLIVAR ARIAS ISMAEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 145135, '2011-06-06', 738850.00, 'A'), -(2502, 3, 'ABOUMRAD NASTA EMILE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 145135, '2011-07-26', 899890.00, 'A'), -(2503, 3, 'RODRIGUEZ JIMENEZ ROBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 145135, '2011-05-03', 282900.00, 'A'), -(2504, 3, 'ESTADOS UNIDOS', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 145135, '2011-07-27', 714840.00, 'A'), -(2505, 3, 'SOTO MUNOZ MARCO GREGORIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-26', 725480.00, 'A'), -(2506, 3, 'GARCIA MONTER ANA OTILIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 145135, '2011-10-05', 482880.00, 'A'), -(2507, 3, 'THIRUKONDA VIGNESH', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 126180, '2011-05-02', 237950.00, 'A'), -(2508, 3, 'RAMIREZ REATIAGA LYDA YOANA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 150699, '2011-06-26', 741120.00, 'A'), -(2509, 3, 'SEPULVEDA RODRIGUEZ JESUS ', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-26', 991730.00, 'A'), -(251, 1, 'MEJIA PIZANO ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-07-10', 845000.00, 'A'), -(2510, 3, 'FRANCISCO MARIA DIAS COSTA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 179111, '2011-07-12', 735330.00, 'A'), -(2511, 3, 'TEIXEIRA REGO DE OLIVEIRA TIAGO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 179111, '2011-06-14', 701430.00, 'A'), -(2512, 3, 'PHILLIP JAMES', 191821112, 'CRA 25 CALLE 100', '766@terra.com.co', - '2011-02-03', 127591, '2011-09-28', 301150.00, 'A'), -(2513, 3, 'ERXLEBEN ROBERT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 216125, '2011-04-13', 401460.00, 'A'), -(2514, 3, 'HUGHES CONNORRICHARD', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 269033, '2011-06-22', 103880.00, 'A'), -(2515, 3, 'LEBLANC MICHAEL PAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 216125, '2011-08-09', 314990.00, 'A'), -(2517, 3, 'DEVINE CHRISTOPHER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 269033, '2011-06-22', 371560.00, 'A'), -(2518, 3, 'WONG BRIAN TEK FUNG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 126885, '2011-09-22', 67910.00, 'A'), -(2519, 3, 'BIDWALA IRFAN A', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 154811, '2011-03-28', 224840.00, 'A'), -(252, 1, 'JIMENEZ LARRARTE JUAN GABRIEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-05-01', 406770.00, 'A'), -(2520, 3, 'LEE HO YIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 147578, '2011-08-29', 920470.00, 'A'), -(2521, 3, 'DE MOURA MARTINS NUNO ALEXANDRE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 196094, '2011-10-09', 927850.00, 'A'), -(2522, 3, 'DA COSTA GOMES CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 179111, '2011-08-10', 877850.00, 'A'), -(2523, 3, 'HOOGWAERTS PAUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 118777, '2011-02-11', 605690.00, 'A'), -(2524, 3, 'LOPES MARQUES LUIS JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 118942, '2011-09-20', 394910.00, 'A'), -(2525, 3, 'CORREIA CAVACO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 178728, '2011-10-09', 157470.00, 'A'), -(2526, 3, 'HALL JOHN WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-06-09', 602620.00, 'A'), -(2527, 3, 'KNIGHT MARTIN GYLES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 113550, '2011-08-29', 540670.00, 'A'), -(2528, 3, 'HINDS THMAS TRISTAN PELLEW', 191821112, 'CRA 25 CALLE 100', - '337@yahoo.es', '2011-02-03', 116862, '2011-08-23', 895500.00, 'A'), -(2529, 3, 'CARTON ALAN JOHN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 117002, '2011-07-31', 855510.00, 'A'), -(253, 1, 'AZCUENAGA RAMIREZ NICOLAS', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 298472, '2011-05-10', 498840.00, 'A'), -(2530, 3, 'GHIM CHEOLL HO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-08-27', 591060.00, 'A'), -(2531, 3, 'PHILLIPS NADIA SULLIVAN', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-09-28', 388750.00, 'A'), -(2532, 3, 'CHANG KUKHYUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-03-22', 170560.00, 'A'), -(2533, 3, 'KANG SEOUNGHYUN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 173192, '2011-08-24', 686540.00, 'A'), -(2534, 3, 'CHUNG BYANG HOON', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 125744, '2011-03-14', 921030.00, 'A'), -(2535, 3, 'SHIN MIN CHUL ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 173192, '2011-08-24', 545510.00, 'A'), -(2536, 3, 'CHOI JIN SUNG', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-05-15', 964490.00, 'A'), -(2537, 3, 'CHOI SUNGMIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-08-27', 185910.00, 'A'), -(2538, 3, 'PARK JAESER ', 191821112, 'CRA 25 CALLE 100', '525@terra.com.co', - '2011-02-03', 127591, '2011-09-03', 36090.00, 'A'), -(2539, 3, 'KIM DAE HOON ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 173192, '2011-08-24', 622700.00, 'A'), -(254, 1, 'AVENDANO PABON ROLANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-05-12', 273900.00, 'A'), -(2540, 3, 'LYNN MARIA CRISTINA NORMA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 116862, '2011-09-21', 5220.00, 'A'), -(2541, 3, 'KIM CHINIL JULIAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 147578, '2011-08-27', 158030.00, 'A'), -(2543, 3, 'HALL JOHN WILLIAM', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-06-09', 398290.00, 'A'), -(2544, 3, 'YOSUKE PERDOMO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 165600, '2011-07-26', 668040.00, 'A'), -(2546, 3, 'AKAGI KAZAHIKO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-08-26', 722510.00, 'A'), -(2547, 3, 'NELSON JONATHAN GARY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-06-09', 176570.00, 'A'), -(2548, 3, 'DUONG HOP BA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 116862, '2011-09-14', 715310.00, 'A'), -(2549, 3, 'CHAO-VILLEGAS NIKOLE TUK HING', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 180063, '2011-04-05', 46830.00, 'A'), -(255, 1, 'CORREA ALVARO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-05-27', 872990.00, 'A'), -(2551, 3, 'APPELS LAURENT BERNHARD', 191821112, 'CRA 25 CALLE 100', - '891@hotmail.es', '2011-02-03', 135190, '2011-08-16', 300620.00, 'A'), -(2552, 3, 'PLAISIER ERIK JAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 289294, '2011-05-23', 238440.00, 'A'), -(2553, 3, 'BLOK HENDRIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 288552, '2011-03-27', 290350.00, 'A'), -(2554, 3, 'NETTE ANNA STERRE', 191821112, 'CRA 25 CALLE 100', - '621@yahoo.com.mx', '2011-02-03', 185363, '2011-07-30', 736400.00, 'A'), -(2555, 3, 'FRIELING HANS ERIC', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 107469, '2011-07-31', 810990.00, 'A'), -(2556, 3, 'RUTTE CORNELIA JANTINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 143579, '2011-03-30', 845710.00, 'A'), -(2557, 3, 'WALRAVEN PIETER PAUL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 289294, '2011-07-29', 795620.00, 'A'), -(2558, 3, 'TREBES LAURENS JOHANNES', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2010-11-22', 440940.00, 'A'), -(2559, 3, 'KROESE ROLANDWILLEBRORDUSMARIA', 191821112, 'CRA 25 CALLE 100', - '188@facebook.com', '2011-02-03', 110643, '2011-06-09', 817860.00, 'A'), -(256, 1, 'FARIAS GARCIA REINI', 191821112, 'CRA 25 CALLE 100', - '615@hotmail.com', '2011-02-03', 127591, '2011-03-05', 543220.00, 'A'), -(2560, 3, 'VAN DER HEIDE HENDRIK', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 291042, '2011-09-04', 766460.00, 'A'), -(2561, 3, 'VAN DEN BERG DONAR ALEXANDER GABRIEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 190393, '2011-07-13', 378720.00, 'A'), -(2562, 3, 'GODEFRIDUS JOHANNES ROPS ', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127622, '2011-10-02', 594240.00, 'A'), -(2564, 3, 'WAT YOK YIENG', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 287095, '2011-03-22', 392370.00, 'A'), -(2565, 3, 'BUIS JACOBUS NICOLAAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-09-20', 456810.00, 'A'), -(2567, 3, 'CHIPPER FRANCIUSCUS NICOLAAS ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 291599, '2011-07-28', 164300.00, 'A'), -(2568, 3, 'ONNO ROUKENS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2010-11-28', 500670.00, 'A'), -(2569, 3, 'PETRUS MARCELLINUS STEPHANUS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 150699, '2011-06-25', 10430.00, 'A'), -(2571, 3, 'VAN VOLLENHOVEN IVO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-08-08', 719370.00, 'A'), -(2572, 3, 'LAMBOOIJ BART', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2011-09-20', 946480.00, 'A'), -(2573, 3, 'LANSER MARIANA PAULINE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 289294, '2011-04-09', 574270.00, 'A'), -(2575, 3, 'KLERKEN JOHANNES', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 286101, '2011-05-24', 436840.00, 'A'), -(2576, 3, 'KRAS JACOBUS NICOLAAS', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 289294, '2011-09-26', 88410.00, 'A'), -(2577, 3, 'FUCHS MICHAEL JOSEPH', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 185363, '2011-07-30', 131530.00, 'A'), -(2578, 3, 'BIJVANK ERIK JAN WILLEM', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-04-11', 392410.00, 'A'), -(2579, 3, 'SCHMIDT FRANC ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 106742, '2011-09-11', 567470.00, 'A'), -(258, 1, 'SOTO GONZALEZ FRANCISCO LAZARO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 116511, '2011-05-07', 856050.00, 'A'), -(2580, 3, 'VAN DER KOOIJ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 291277, '2011-07-10', 660130.00, 'A'), -(2581, 2, 'KRIS ANDRE GEORGES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127300, '2011-07-26', 598240.00, 'A'), -(2582, 3, 'HARDING LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 263813, '2011-05-08', 10820.00, 'A'), -(2583, 3, 'ROLLI GUY JEAN ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 145135, '2011-05-31', 259370.00, 'A'), -(2584, 3, 'NIETO PARRA SEBASTIAN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 263813, '2011-07-04', 264400.00, 'A'), -(2585, 3, 'LASTRA CHAVEZ PABLO ARMANDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 126674, '2011-05-25', 543890.00, 'A'), -(2586, 1, 'ZAIDA MAYERLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 132958, '2011-05-05', 926250.00, 'A'), -(2587, 1, 'OSWALDO SOLORZANO CONTRERAS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-09-28', 999590.00, 'A'), -(2588, 3, 'ZHOU XUAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-05-18', 219200.00, 'A'), -(2589, 3, 'HUANG ZHENGQUN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-05-18', 97230.00, 'A'), -(259, 1, 'GALARZA NARANJO JAIME RENE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 988830.00, 'A'), -(2590, 3, 'HUANG ZHENQUIN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-05-18', 828560.00, 'A'), -(2591, 3, 'WEIDEN MULLER AMURER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-03-29', 851110.00, 'A'), -(2593, 3, 'OESTERHAUS CORNELIA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 256231, '2011-03-29', 295960.00, 'A'), -(2594, 3, 'RINTALAHTI JUHA HENRIK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-08-23', 170220.00, 'A'), -(2597, 3, 'VERWIJNEN JONAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 289697, '2011-02-03', 638040.00, 'A'), -(2598, 3, 'SHAW ROBERT', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 157414, '2011-07-10', 273550.00, 'A'), -(2599, 3, 'MAKINEN TIMO JUHANI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 196234, '2011-09-13', 453600.00, 'A'), -(260, 1, 'RIVERA CANON JOSE EDWARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127538, '2011-09-19', 375990.00, 'A'), -(2600, 3, 'HONKANIEMI ARTO OLAVI', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 301387, '2011-09-06', 447380.00, 'A'), -(2601, 3, 'DAGG JAMIE MICHAEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 216125, '2011-08-09', 876080.00, 'A'), -(2602, 3, 'BOLAND PATRICK CHARLES ', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 216125, '2011-09-14', 38260.00, 'A'), -(2603, 2, 'ZULEYKA JERRYS RIVERA MENDOZA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 150347, '2011-03-27', 563050.00, 'A'), -(2604, 3, 'DELGADO SEQUIRA FERRAO JOSE PEDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 188228, '2011-08-16', 700460.00, 'A'), -(2605, 3, 'YORRO LORA EDGAR MANUEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127689, '2011-06-17', 813180.00, 'A'), -(2606, 3, 'CARRASCO RODRIGUEZQCARLOS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127689, '2011-06-17', 964520.00, 'A'), -(2607, 30, 'ORJUELA VELASQUEZ JULIANA MARIA', 191821112, 'CRA 25 CALLE 100', - '372@terra.com.co', '2011-02-03', 132775, '2011-09-01', 383070.00, 'A'), -(2608, 3, 'DUQUE DUTRA LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 118942, '2011-07-12', 21780.00, 'A'), -(261, 1, 'MURCIA MARQUEZ NESTOR JAVIER', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-09-19', 913480.00, 'A'), -(2610, 3, 'NGUYEN HUU KHUONG', 191821112, 'CRA 25 CALLE 100', - '457@facebook.com', '2011-02-03', 132958, '2011-05-07', 733120.00, 'A'), -(2611, 3, 'NGUYEN VAN LAP', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 132958, '2011-05-07', 786510.00, 'A'), -(2612, 3, 'PHAM HUU THU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 132958, '2011-05-07', 733200.00, 'A'), -(2613, 3, 'DANG MING CUONG', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 132958, '2011-05-07', 306460.00, 'A'), -(2614, 3, 'VU THI HONG HANH', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 132958, '2011-05-07', 332710.00, 'A'), -(2615, 3, 'CHAU TANG LANG', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 132958, '2011-05-07', 744190.00, 'A'), -(2616, 3, 'CHU BAN THING', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 132958, '2011-05-07', 722800.00, 'A'), -(2617, 3, 'NGUYEN QUANG THU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 132958, '2011-05-07', 381420.00, 'A'), -(2618, 3, 'TRAN THI KIM OANH', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 132958, '2011-05-07', 738690.00, 'A'), -(2619, 3, 'NGUYEN VAN VINH', 191821112, 'CRA 25 CALLE 100', '422@yahoo.com.mx', - '2011-02-03', 132958, '2011-05-07', 549210.00, 'A'), -(262, 1, 'ABDULAZIS ELNESER KHALED', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-09-27', 439430.00, 'A'), -(2620, 3, 'NGUYEN XUAN VY', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 132958, '2011-05-07', 529950.00, 'A'), -(2621, 3, 'HA MANH HOA', 191821112, 'CRA 25 CALLE 100', '439@gmail.com', - '2011-02-03', 132958, '2011-05-07', 2160.00, 'A'), -(2622, 3, 'ZAFIROPOULO STEVEN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-05-25', 420930.00, 'A'), -(2624, 3, 'TEMIGTERRA MASSIMILIANO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 210050, '2011-09-26', 228070.00, 'A'), -(2625, 3, 'CASSES TRINDADE HELGIO HENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 118402, '2011-09-13', 845850.00, 'A'), -(2626, 3, 'ASCOLI MASTROENI MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 120773, '2011-09-07', 545010.00, 'A'), -(2627, 3, 'MONTEIRO SOARES MARCOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 120773, '2011-07-18', 187530.00, 'A'), -(2629, 3, 'HALL ALVARO AUGUSTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 120773, '2011-08-02', 950450.00, 'A'), -(2631, 3, 'ANDRADE CATUNDA RAFAEL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 120773, '2011-08-23', 370860.00, 'A'), -(2632, 3, 'MAGALHAES MAYRA ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 118767, '2011-08-23', 320960.00, 'A'), -(2633, 3, 'SPREAFICO MIRIAM ', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 118587, '2011-08-23', 492220.00, 'A'), -(2634, 3, 'GOMES FERREIRA HELIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 125812, '2011-08-23', 498220.00, 'A'), -(2635, 3, 'FERNANDES SENNA PIRES SERGIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-10-05', 14460.00, 'A'), -(2636, 3, 'BALESTRO FLORIANO FABIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 120773, '2011-08-24', 577630.00, 'A'), -(2637, 3, 'CABANA DE QUEIROZ ANDRADE ALAXANDRE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-23', 844780.00, 'A'), -(2638, 3, 'DALBOSCO CARLA', 191821112, 'CRA 25 CALLE 100', '380@yahoo.com.mx', - '2011-02-03', 127591, '2011-06-30', 491010.00, 'A'), -(264, 1, 'ROMERO MONTOYA NICOLAY ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-13', 965220.00, 'A'), -(2640, 3, 'BILLINI CRUZ RICARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 144215, '2011-03-27', 130530.00, 'A'), -(2641, 3, 'VASQUES ARIAS DAVID', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 144509, '2011-08-19', 890500.00, 'A'), -(2642, 3, 'ROJAS VOLQUEZ GLADYS MICHELLE', 191821112, 'CRA 25 CALLE 100', - '852@gmail.com', '2011-02-03', 144215, '2011-07-25', 60930.00, 'A'), -(2643, 3, 'LLANEZA GIL JUAN RAFAELMO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 144215, '2011-07-08', 633120.00, 'A'), -(2646, 3, 'AVILA PEROZO IANKEL JACOB', 191821112, 'CRA 25 CALLE 100', - '318@hotmail.com', '2011-02-03', 144215, '2011-09-03', 125600.00, 'A'), -(2647, 3, 'REGULAR EDUARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-08-19', 583540.00, 'A'), -(2648, 3, 'CORONADO BATISTA JOSE ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-08-19', 540910.00, 'A'), -(2649, 3, 'OLIVIER JOSE VICTOR', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 144509, '2011-08-19', 953910.00, 'A'), -(2650, 3, 'YOO HOE TAEK', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 145135, '2011-08-25', 146820.00, 'A'), -(266, 1, 'CUECA RODRIGUEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-22', 384280.00, 'A'), -(267, 1, 'NIETO ALVARADO ARMANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2008-04-28', 553450.00, 'A'), -(269, 1, 'LEAL HOLGUIN FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-07-25', 411700.00, 'A'), -(27, 1, 'MORENO MORENO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2009-09-15', 995620.00, 'A'), -(270, 1, 'CANO IBANES JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-06-03', 215260.00, 'A'), -(271, 1, 'RESTREPO HERRAN ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 132775, '2011-04-18', 841220.00, 'A'), -(272, 3, 'RIOS FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 199862, '2011-03-24', 560300.00, 'A'), -(273, 1, 'MADERO LORENZANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-08-03', 277850.00, 'A'), -(274, 1, 'GOMEZ GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2010-09-24', 708350.00, 'A'), -(275, 1, 'CONSUEGRA ARENAS ANDRES MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-09-09', 708210.00, 'A'), -(276, 1, 'HURTADO ROJAS NICOLAS', 191821112, 'CRA 25 CALLE 100', - '463@yahoo.com.mx', '2011-02-03', 127591, '2011-09-07', 416000.00, 'A'), -(277, 1, 'MURCIA BAQUERO MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-08-02', 955370.00, 'A'), -(2773, 3, 'TAKUBO KAORI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 165753, '2011-05-12', 872390.00, 'A'), -(2774, 3, 'OKADA MAKOTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 165753, '2011-06-19', 921480.00, 'A'), -(2775, 3, 'TAKEDA AKIO ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 21062, '2011-06-19', 990250.00, 'A'), -(2776, 3, 'KOIKE WATARU ', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 165753, '2011-06-19', 186800.00, 'A'), -(2777, 3, 'KUBO SHINEI', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 165753, '2011-02-13', 963230.00, 'A'), -(2778, 3, 'KANNO YONEZO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 165600, '2011-07-26', 255770.00, 'A'), -(278, 3, 'PARENT ELOIDE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 267980, '2011-05-01', 528840.00, 'A'), -(2781, 3, 'SUNADA MINORU ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 165753, '2011-06-19', 724450.00, 'A'), -(2782, 3, 'INOUE KASUYA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-06-22', 87150.00, 'A'), -(2783, 3, 'OTAKE NOBUTOSHI', 191821112, 'CRA 25 CALLE 100', '208@facebook.com', - '2011-02-03', 127591, '2011-06-11', 262380.00, 'A'), -(2784, 3, 'MOTOI KEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 165753, '2011-06-19', 50470.00, 'A'), -(2785, 3, 'TANAKA KIYOTAKA ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 165753, '2011-06-19', 465210.00, 'A'), -(2787, 3, 'YUMIKOPERDOMO', 191821112, 'CRA 25 CALLE 100', '600@yahoo.es', - '2011-02-03', 165600, '2011-07-26', 477550.00, 'A'), -(2788, 3, 'FUKUSHIMA KENZO', 191821112, 'CRA 25 CALLE 100', '599@gmail.com', - '2011-02-03', 156960, '2011-05-30', 863860.00, 'A'), -(2789, 3, 'GELGIN LEVENT NURI', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-05-26', 886630.00, 'A'), -(279, 1, 'AVIATUR S. A.', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-05-02', 778110.00, 'A'), -(2791, 3, 'GELGIN ENIS ENRE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-05-26', 547940.00, 'A'), -(2792, 3, 'PAZ SOTO LUBRASCA MARIA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 143954, '2011-06-27', 215000.00, 'A'), -(2794, 3, 'MOURAD TAOUFIKI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-04-13', 511000.00, 'A'), -(2796, 3, 'DASTUS ALAIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 218656, '2011-05-29', 774010.00, 'A'), -(2797, 3, 'MCDONALD MICHAEL LORNE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 269033, '2011-07-19', 85820.00, 'A'), -(2799, 3, 'KLESO MICHAEL QUENTIN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 269033, '2011-07-26', 277950.00, 'A'), -(28, 1, 'GONZALEZ ACUNA EDGAR MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-09-19', 531710.00, 'A'), -(280, 3, 'NEME KARIM CHAIBAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 135967, '2010-05-02', 304040.00, 'A'), -(2800, 3, 'CLERK CHARLES ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 244158, '2011-07-26', 68490.00, 'A'), -('CELL3673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(2801, 3, 'BURRIS MAURICE STEWARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-09-27', 508600.00, 'A'), -(2802, 1, 'PINCHEN CLAIRE ELAINE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 216125, '2011-04-13', 337530.00, 'A'), -(2803, 3, 'LETTNER EVA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 231224, '2011-09-20', 161860.00, 'A'), -(2804, 3, 'CANUEL LUCIE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 146258, '2011-09-20', 796710.00, 'A'), -(2805, 3, 'IGLESIAS CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 216125, '2011-08-02', 497980.00, 'A'), -(2806, 3, 'PAQUIN JEAN FRANCOIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 269033, '2011-03-27', 99760.00, 'A'), -(2807, 3, 'FOURNIER DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 228688, '2011-05-19', 4860.00, 'A'), -(2808, 3, 'BILODEAU MARTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-09-13', 725030.00, 'A'), -(2809, 3, 'KELLNER PETER WILLIAM', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 130757, '2011-07-24', 610570.00, 'A'), -(2810, 3, 'ZAZULAK INGRID ROSEMARIE', 191821112, 'CRA 25 CALLE 100', - '683@facebook.com', '2011-02-03', 240550, '2011-09-11', 877770.00, 'A'), -(2811, 3, 'RUCCI JHON MARIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 285188, '2011-05-10', 557130.00, 'A'), -(2813, 3, 'JONCAS MARC', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 33265, '2011-03-21', 90360.00, 'A'), -(2814, 3, 'DUCHARME ERICK', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-03-29', 994750.00, 'A'), -(2816, 3, 'BAILLOD THOMAS DAVID ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 239124, '2010-10-20', 529130.00, 'A'), -(2817, 3, 'MARTINEZ SORIA JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 289697, '2011-09-06', 537630.00, 'A'), -(2818, 3, 'TAMARA RABER', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-04-30', 100750.00, 'A'), -(2819, 3, 'BURGI VINCENT EMANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 245206, '2011-04-20', 890860.00, 'A'), -(282, 1, 'HUESPED ASISTENTE A LA CONVENCION DE LA DIAN', 191821112, - 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', 127591, '2009-06-24', 17160.00, - 'A'), -(2820, 3, 'ROBLES TORRALBA IVAN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 238949, '2011-05-16', 152030.00, 'A'), -(2821, 3, 'CONSUEGRA MARIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-06-06', 87600.00, 'A'), -(2822, 3, 'CELMA ADROVER LAIA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 190393, '2011-03-23', 981880.00, 'A'), -(2823, 3, 'ALVAREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 150699, '2011-06-20', 646610.00, 'A'), -(2824, 3, 'VARGAS WOODROFFE FRANCISCO JOSE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 157414, '2011-06-22', 287410.00, 'A'), -(2825, 3, 'GARCIA GUILLEN VICENTE LUIS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 144215, '2011-08-19', 497230.00, 'A'), -(2826, 3, 'GOMEZ GARCIA DIAMANTES PATRICIA MARIA', 191821112, - 'CRA 25 CALLE 100', '@gmail.com', '2011-02-03', 286785, '2011-09-22', - 623930.00, 'A'), -(2827, 3, 'PEREZ IGLESIAS BIBIANA', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 132958, '2011-09-30', 627940.00, 'A'), -(2830, 3, 'VILLALONGA MORENES MARIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 169679, '2011-05-29', 474910.00, 'A'), -(2831, 3, 'REY LOPEZ DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 150699, '2011-08-03', 7380.00, 'A'), -(2832, 3, 'HOYO APARICIO JESUS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 116511, '2011-09-19', 612180.00, 'A'), -(2836, 3, 'GOMEZ GARCIA LOPEZ CARLOS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 150699, '2011-09-21', 277540.00, 'A'), -(2839, 3, 'GALIMERTI MARCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 235197, '2011-08-28', 156870.00, 'A'), -(2840, 3, 'BAROZZI GIUSEPE', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 231989, '2011-05-25', 609500.00, 'A'), -(2841, 3, 'MARIAN RENATO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-06-12', 576900.00, 'A'), -(2842, 3, 'FAENZA CARLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 126180, '2011-05-19', 55990.00, 'A'), -(2843, 3, 'PESOLILLO CARMINE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 203162, '2011-06-26', 549230.00, 'A'), -(2844, 3, 'CHIODI FRANCESCO MARIA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 199862, '2011-09-10', 578210.00, 'A'), -(2845, 3, 'RUTA MARIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2011-06-19', 243350.00, 'A'), -(2846, 3, 'BAZZONI MARINO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 101518, '2011-05-03', 482140.00, 'A'), -(2848, 3, 'LAGASIO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 231989, '2011-05-04', 956670.00, 'A'), -(2849, 3, 'VIERA DA CUNHA PAULO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 190393, '2011-04-05', 741520.00, 'A'), -(2850, 3, 'DAL BEN DENIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 116511, '2011-05-26', 837590.00, 'A'), -(2851, 3, 'GIANELLI HERIBERTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 233927, '2011-05-01', 963400.00, 'A'), -(2852, 3, 'JUSTINO DA SILVA DJAMIR', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-04-08', 304200.00, 'A'), -(2853, 3, 'DIPASQUUALE GAETANO', 191821112, 'CRA 25 CALLE 100', - '574@terra.com.co', '2011-02-03', 172888, '2011-07-11', 630830.00, 'A'), -(2855, 3, 'CURI MAURO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 199862, '2011-06-19', 315160.00, 'A'), -(2856, 3, 'DI DIO MARCO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-08-20', 851210.00, 'A'), -(2857, 3, 'ROBERTI MENDONCA CAIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-05-11', 310580.00, 'A'), -(2859, 3, 'RAMOS MORENO DE SOUZA ANDRE ', 191821112, 'CRA 25 CALLE 100', - '133@facebook.com', '2011-02-03', 118777, '2011-09-24', 64540.00, 'A'), -(286, 8, 'INEXMODA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 128662, '2011-06-21', 50150.00, 'A'), -(2860, 3, 'JODJAHN DE CARVALHO FLAVIA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 118942, '2011-06-27', 324950.00, 'A'), -(2862, 3, 'LAGASIO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 231989, '2011-07-04', 180760.00, 'A'), -(2863, 3, 'MOON SUNG RIUL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-04-08', 610440.00, 'A'), -(2865, 3, 'VAIDYANATHAN VIKRAM', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-05-11', 718220.00, 'A'), -(2866, 3, 'NARAYANASWAMY RAMSUNDAR', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 73079, '2011-10-02', 61390.00, 'A'), -(2867, 3, 'VADADA VENKATA RAMESH KUMAR', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-09-10', 152300.00, 'A'), -(2868, 3, 'RAMA KRISHNAN ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-09-10', 577300.00, 'A'), -(2869, 3, 'JALAN PRASHANT', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 122035, '2011-05-02', 429600.00, 'A'), -(2871, 3, 'CHANDRASEKAR VENKAT', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 112862, '2011-06-27', 791800.00, 'A'), -(2872, 3, 'CUMBAKONAM SWAMINATHAN SUBRAMANIAN', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-09-11', 710650.00, 'A'), -(288, 8, 'BCD TRAVEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-07-23', 645390.00, 'A'), -(289, 3, 'EMBAJADA ARGENTINA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '1970-02-02', 749440.00, 'A'), -('CELL3789', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(290, 3, 'EMBAJADA DE BRASIL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 128662, '2010-11-16', 811030.00, 'A'), -(293, 8, 'ONU', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', - 127591, '2010-09-19', 584810.00, 'A'), -(299, 1, 'BLANDON GUZMAN JHON JAIRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-01-13', 201740.00, 'A'), -(304, 3, 'COHEN DANIEL DYLAN', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 286785, '2010-11-17', 184850.00, 'A'), -(306, 1, 'CINDU ANDINA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2009-06-11', 899230.00, 'A'), -(31, 1, 'GARRIDO LEONARDO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127662, '2010-09-12', 801450.00, 'A'), -(310, 3, 'CORPORACION CLUB EL NOGAL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2010-08-27', 918760.00, 'A'), -(314, 3, 'CHAWLA AARON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-04-08', 295840.00, 'A'), -(317, 3, 'BAKER HUGHES', 191821112, 'CRA 25 CALLE 100', '694@hotmail.com', - '2011-02-03', 127591, '2011-04-03', 211990.00, 'A'), -(32, 1, 'PAEZ SEGURA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '675@gmail.com', '2011-02-03', 129447, '2011-08-22', 717340.00, 'A'), -(320, 1, 'MORENO PAEZ FREDDY ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-31', 971670.00, 'A'), -(322, 1, 'CALDERON CARDOZO GASTON EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-10-05', 990640.00, 'A'), -(324, 1, 'ARCHILA MERA ALFREDOMANUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-06-22', 77200.00, 'A'), -(326, 1, 'MUNOZ AVILA HERNEY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2010-11-10', 550920.00, 'A'), -(327, 1, 'CHAPARRO CUBILLOS FABIAN ANDRES', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-08-15', 685080.00, 'A'), -(329, 1, 'GOMEZ LOPEZ JUAN SEBASTIAN', 191821112, 'CRA 25 CALLE 100', - '970@yahoo.com', '2011-02-03', 127591, '2011-03-20', 808070.00, 'A'), -(33, 1, 'MARTINEZ MARINO HENRY HERNAN', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-04-20', 182370.00, 'A'), -(330, 3, 'MAPSTONE NAOMI LEA', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 122035, '2010-02-21', 722380.00, 'A'), -(332, 3, 'ROSSI BURRI NELLY', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 132165, '2010-05-10', 771210.00, 'A'), -(333, 1, 'AVELLANEDA OVIEDO JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-07-25', 293060.00, 'A'), -(334, 1, 'SUZA FLOREZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-05-13', 151650.00, 'A'), -(335, 1, 'ESGUERRA ALVARO ANDRES', 191821112, 'CRA 25 CALLE 100', - '11@facebook.com', '2011-02-03', 127591, '2011-09-10', 879080.00, 'A'), -(337, 3, 'DE LA HARPE MARTIN CARAPET WALTER', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-09-27', 64960.00, 'A'), -(339, 1, 'HERNANDEZ ACOSTA SERGIO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 129499, '2011-06-22', 322570.00, 'A'), -(340, 3, 'ZARAMA DE LA ESPRIELLA MIGUEL PATRICIO', 191821112, - 'CRA 25 CALLE 100', '@hotmail.com', '2011-02-03', 127591, '2011-06-27', - 102360.00, 'A'), -(342, 1, 'CABRERA VASQUEZ JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-05-01', 413440.00, 'A'), -(343, 3, 'RICHARDSON BEN MARRIS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 286785, '2010-05-18', 434890.00, 'A'), -(344, 1, 'OLARTE PINZON MIGUEL FELIPE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-08-30', 934140.00, 'A'), -(345, 1, 'SOLER SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 128662, '2011-04-20', 366020.00, 'A'), -(346, 1, 'PRIETO JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2010-07-12', 27690.00, 'A'), -(349, 1, 'BARRERO VELASCO DAVID', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-05-01', 472850.00, 'A'), -(35, 1, 'VELASQUEZ RAMOS JUAN MANUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-13', 251940.00, 'A'), -(350, 1, 'RANGEL GARCIA SERGIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-03-20', 7880.00, 'A'), -(353, 1, 'ALVAREZ ACEVEDO JOHN FREDDY', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-07-16', 540070.00, 'A'), -(354, 1, 'VILLAMARIN HOME WILMAR ALFREDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-09-19', 458810.00, 'A'), -(355, 3, 'SLUCHIN NAAMAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 263813, '2010-12-01', 673830.00, 'A'), -(357, 1, 'BULLA BERNAL LUIS ERNESTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-06-14', 942160.00, 'A'), -(358, 1, 'BRACCIA AVILA GIANCARLO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-01', 732620.00, 'A'), -(359, 1, 'RODRIGUEZ PINTO RAUL DAVID', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-08-24', 836600.00, 'A'), -(36, 1, 'MALDONADO ALVAREZ JAIRO ASDRUBAL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127300, '2011-06-19', 980270.00, 'A'), -(362, 1, 'POMBO POLANCO JUAN BERNARDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-09-18', 124130.00, 'A'), -(363, 1, 'CARDENAS SUAREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127662, '2011-09-01', 372920.00, 'A'), -(364, 1, 'RIVERA MAZO JOSE DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 128662, '2010-06-10', 492220.00, 'A'), -(365, 1, 'LEDERMAN CORDIKI JONATHAN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2010-12-03', 342340.00, 'A'), -(367, 1, 'BARRERA MARTINEZ LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', - '35@yahoo.com.mx', '2011-02-03', 127591, '2011-05-24', 148130.00, 'A'), -(368, 1, 'SEPULVEDA RAMIREZ DANIEL MARCELO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-31', 35560.00, 'A'), -(369, 1, 'QUINTERO DIAZ WILSON ASDRUBAL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-07-24', 733430.00, 'A'), -(37, 1, 'RESTREPO SUAREZ HENRY BERNARDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127300, '2011-07-25', 145540.00, 'A'), -(370, 1, 'ROJAS YARA WILLMAR ARLEY', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2010-12-03', 560450.00, 'A'), -(371, 3, 'CARVER LOUISE EMILY', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 286785, '2010-10-07', 601980.00, 'A'), -(372, 3, 'VINCENT DAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 286785, '2011-03-06', 328540.00, 'A'), -(374, 1, 'GONZALEZ DELGADO MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-08-18', 198260.00, 'A'), -(375, 1, 'PAEZ SIMON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-06-25', 480970.00, 'A'), -(376, 1, 'CADOSCH DELMAR ELIE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-10-07', 810080.00, 'A'), -(377, 1, 'HERRERA VASQUEZ DANIEL EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2010-06-30', 607460.00, 'A'), -(378, 1, 'CORREAL ROJAS RONALD', 191821112, 'CRA 25 CALLE 100', - '269@facebook.com', '2011-02-03', 127591, '2011-07-16', 607080.00, 'A'), -(379, 1, 'VOIDONNIKOLAS MUNOS PANAGIOTIS', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-27', 213010.00, 'A'), -(38, 1, 'CANAL ROJAS MAURICIO HERNANDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-05-29', 786900.00, 'A'), -(380, 1, 'DIAZ ECHEVERRI JUAN DAVID ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-08-20', 243800.00, 'A'), -(381, 1, 'CIFUENTES MARIN HERNANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-05-26', 579960.00, 'A'), -(382, 3, 'PAXTON LUCINDA HARRIET', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 107159, '2011-05-23', 168420.00, 'A'), -(384, 3, 'POYNTON BRIAN GEORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 286785, '2011-03-20', 5790.00, 'A'), -(385, 3, 'TERMIGNONI ADRIANO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-01-14', 722320.00, 'A'), -(386, 3, 'CARDWELL PAULA', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-02-17', 594230.00, 'A'), -(389, 1, 'FONCECA MARTINEZ MIGUEL ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-25', 778680.00, 'A'), -(39, 1, 'GARCIA SUAREZ WILLIAM ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-07-25', 497880.00, 'A'), -(390, 1, 'GUERRERO NELSON', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2010-12-03', 178650.00, 'A'), -(391, 1, 'VICTORIA PENA FERNANDO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-06-22', 557200.00, 'A'), -(392, 1, 'VAN HISSENHOVEN FERRERO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-04-13', 250060.00, 'A'), -(393, 1, 'CACERES ORDUZ JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-06-28', 578690.00, 'A'), -(394, 1, 'QUINTERO ALVARO FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-08-17', 143270.00, 'A'), -(395, 1, 'ANZOLA PEREZ CARLOSDAVID', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-08-04', 980300.00, 'A'), -(397, 1, 'LLOREDA ORTIZ CARLOS JOSE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-27', 417470.00, 'A'), -(398, 1, 'GONZALES LONDONO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-06-19', 672310.00, 'A'), -(4, 1, 'LONDONO DOMINGUEZ ERNESTO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-09-05', 324610.00, 'A'), -(40, 1, 'MORENO ANGULO ORLANDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-06-01', 128690.00, 'A'), -(400, 8, 'TRANSELCA .A', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 133535, '2011-04-14', 528930.00, 'A'), -(403, 1, 'VERGARA MURILLO JUAN FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-03-04', 42900.00, 'A'), -(405, 1, 'CAPERA CAPERA HARRINSON', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127799, '2011-06-12', 961000.00, 'A'), -(407, 1, 'MORENO MORA WILLIAM EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-22', 872780.00, 'A'), -(408, 1, 'HIGUERA ROA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-03-28', 910430.00, 'A'), -(409, 1, 'FORERO CASTILLO OSCAR ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '988@terra.com.co', '2011-02-03', 127591, '2011-07-23', 933810.00, 'A'), -(410, 1, 'LOPEZ MURCIA JULIAN DANIEL', 191821112, 'CRA 25 CALLE 100', - '399@facebook.com', '2011-02-03', 127591, '2011-08-08', 937790.00, 'A'), -(411, 1, 'ALZATE JOHN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 128662, '2011-09-09', 887490.00, 'A'), -(412, 1, 'GONZALES GONZALES ORLANDO ANDREY', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-30', 624080.00, 'A'), -(413, 1, 'ESCOLANO VALENTIN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-08-05', 457930.00, 'A'), -(414, 1, 'JARAMILLO RODRIGUEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-09-12', 417420.00, 'A'), -(415, 1, 'GARCIA MUNOZ DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-10-02', 713300.00, 'A'), -(416, 1, 'PINEROS ARENAS JUAN DAVID', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2010-10-17', 314260.00, 'A'), -(417, 1, 'ORTIZ ARROYAVE ANDRES', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2011-05-21', 431370.00, 'A'), -(418, 1, 'BAYONA BARRIENTOS JEAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-07-12', 214090.00, 'A'), -(419, 1, 'AGUDELO VASQUEZ JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2011-08-30', 776360.00, 'A'), -(420, 1, 'CALLE DANIEL CJ PRODUCCIONES', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2010-11-04', 239500.00, 'A'), -(422, 1, 'CANO BETANCUR ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 128662, '2011-08-20', 623620.00, 'A'), -(423, 1, 'CALDAS BARRETO LUZ MIREYA', 191821112, 'CRA 25 CALLE 100', - '991@facebook.com', '2011-02-03', 127591, '2011-05-22', 512840.00, 'A'), -(424, 1, 'SIMBAQUEBA JOSE ERNESTO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-07-25', 693320.00, 'A'), -(425, 1, 'DE SILVESTRE CALERO LUIS GABRIEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-09-18', 928110.00, 'A'), -(426, 1, 'ZORRO PERALTA YEZID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-07-25', 560560.00, 'A'), -(428, 1, 'SUAREZ OIDOR DARWIN LEONARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 131272, '2011-09-05', 410650.00, 'A'), -(429, 1, 'GIRAL CARRILLO LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-13', 997850.00, 'A'), -(43, 1, 'MARULANDA VALENCIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-09-17', 365550.00, 'A'), -(430, 1, 'CORDOBA GARCES JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-18', 757320.00, 'A'), -(431, 1, 'ARIAS TAMAYO DIEGO MAURICIO', 191821112, 'CRA 25 CALLE 100', - '36@yahoo.com', '2011-02-03', 127591, '2011-09-05', 793050.00, 'A'), -(432, 1, 'EICHMANN PERRET MARC WILLY', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-22', 693270.00, 'A'), -(433, 1, 'DIAZ DANIEL ALBERTO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2008-09-18', 87200.00, 'A'), -(435, 1, 'FACCINI GONZALEZ HERMANN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2009-01-08', 519420.00, 'A'), -(436, 1, 'URIBE DUQUE FELIPE', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-06-28', 528470.00, 'A'), -(437, 1, 'TAVERA GAONA GABREL LEAL', 191821112, 'CRA 25 CALLE 100', - '280@terra.com.co', '2011-02-03', 127591, '2011-04-28', 84120.00, 'A'), -(438, 1, 'ORDONEZ PARIS FERNANDO MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 150699, '2011-09-26', 835170.00, 'A'), -(439, 1, 'VILLEGAS ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-03-19', 923520.00, 'A'), -(44, 1, 'MARTINEZ PEDRO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 128662, '2011-08-13', 738750.00, 'A'), -(440, 1, 'MARTINEZ RUEDA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '805@hotmail.es', '2011-02-03', 127591, '2011-04-07', 112050.00, 'A'), -(441, 1, 'ROLDAN JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2010-05-25', 789720.00, 'A'), -(442, 1, 'PEREZ BRANDWAYN ELIYAU MOISES', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2010-10-20', 612450.00, 'A'), -(443, 1, 'VALLEJO TORO JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128579, '2011-08-16', 693080.00, 'A'), -(444, 1, 'TORRES CABRERA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-03-19', 628070.00, 'A'), -(445, 1, 'MERINO MEJIA GERMAN ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-07-28', 61100.00, 'A'), -(447, 1, 'GOMEZ GOMEZ JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-09-08', 923070.00, 'A'), -(448, 1, 'RAUSCH CHEHEBAR STEVEN JOSEPH', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 133535, '2011-09-27', 351540.00, 'A'), -(449, 1, 'RESTREPO TRUCCO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-07-28', 988500.00, 'A'), -(45, 1, 'GUTIERREZ JARAMILLO CARLOS MARIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 150699, '2011-08-22', 597090.00, 'A'), -(450, 1, 'GOLDSTEIN VAIDA ELI JACK', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-11', 887860.00, 'A'), -(451, 1, 'OLEA PINEDA EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-08-10', 473800.00, 'A'), -(452, 1, 'JORGE OROZCO', 191821112, 'CRA 25 CALLE 100', '503@hotmail.es', - '2011-02-03', 127591, '2011-06-02', 705410.00, 'A'), -(454, 1, 'DE LA TORRE GOMEZ GERMAN ERNESTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-03-03', 411990.00, 'A'), -(456, 1, 'MADERO ARIAS JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '452@hotmail.es', '2011-02-03', 127591, '2011-08-22', 479090.00, 'A'), -(457, 1, 'GOMEZ MACHUCA ALVARO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2010-08-12', 166430.00, 'A'), -(458, 1, 'MENDIETA TOBON DANIEL RICARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-09-08', 394880.00, 'A'), -(459, 1, 'VILLADIEGO CORTINA JAVIER TOMAS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-07-26', 475110.00, 'A'), -(46, 1, 'FERRUCHO ARCINIEGAS JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', 769220.00, 'A'), -(460, 1, 'DERESER HARTUNG ERNESTO JOSE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2010-12-25', 190900.00, 'A'), -(461, 1, 'RAMIREZ PENA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2011-06-25', 529190.00, 'A'), -(463, 1, 'IREGUI REYES LUIS', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-10-07', 778590.00, 'A'), -(464, 1, 'PINTO GOMEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 132775, '2010-06-24', 673270.00, 'A'), -(465, 1, 'RAMIREZ RAMIREZ FERNANDO ALONSO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127799, '2011-10-01', 30570.00, 'A'), -(466, 1, 'BERRIDO TRUJILLO JORGE HENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 132775, '2011-10-06', 133040.00, 'A'), -(467, 1, 'RIVERA CARVAJAL RAFAEL HUMBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-07-20', 573500.00, 'A'), -(468, 3, 'FLOREZ PUENTES IVAN ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 145135, '2011-05-08', 468380.00, 'A'), -(469, 1, 'BALLESTEROS FLOREZ IVAN DARIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-06-02', 621410.00, 'A'), -(47, 1, 'MARIN FLOREZ OMAR EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-30', 54840.00, 'A'), -(470, 1, 'RODRIGO PENA HERRERA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 237734, '2011-10-04', 701890.00, 'A'), -(471, 1, 'RODRIGUEZ SILVA ROGELIO', 191821112, 'CRA 25 CALLE 100', - '163@gmail.com', '2011-02-03', 127591, '2011-05-26', 645210.00, 'A'), -(473, 1, 'VASQUEZ VELANDIA JUAN GABRIEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 196234, '2011-05-04', 666330.00, 'A'), -(474, 1, 'ROBLEDO JAIME', 191821112, 'CRA 25 CALLE 100', '409@yahoo.com', - '2011-02-03', 127591, '2011-05-31', 970480.00, 'A'), -(475, 1, 'GRIMBERG DIAZ PHILIP', 191821112, 'CRA 25 CALLE 100', '723@yahoo.com', - '2011-02-03', 127591, '2011-03-30', 853430.00, 'A'), -(476, 1, 'CHAUSTRE GARCIA JUAN PABLO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-26', 355670.00, 'A'), -(477, 1, 'GOMEZ FLOREZ IGNASIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2010-09-14', 218090.00, 'A'), -(478, 1, 'LUIS ALBERTO CABRERA PUENTES', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 133535, '2011-05-26', 23420.00, 'A'), -(479, 1, 'MARTINEZ ZAPATA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '234@gmail.com', '2011-02-03', 127122, '2011-07-01', 462840.00, 'A'), -(48, 1, 'PARRA IBANEZ FABIAN ERNESTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-02-01', 966520.00, 'A'), -(480, 3, 'WESTERBERG JAN RICKARD', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 300701, '2011-02-01', 243940.00, 'A'), -(484, 1, 'RODRIGUEZ VILLALOBOS EDGAR FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-05-19', 860320.00, 'A'), -(486, 1, 'NAVARRO REYES DIEGO FELIPE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-06-01', 530150.00, 'A'), -(487, 1, 'NOGUERA RICAURTE ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-01-21', 384100.00, 'A'), -(488, 1, 'RUIZ VEJARANO CARLOS DANIEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-09-27', 330030.00, 'A'), -(489, 1, 'CORREA PEREZ ANDRES', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2010-12-14', 497860.00, 'A'), -(49, 1, 'FLOREZ PEREZ RUBIEL', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-05-23', 668090.00, 'A'), -(490, 1, 'REYES GOMEZ LUIS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-05-26', 499210.00, 'A'), -(491, 3, 'BERNAL LEON ALBERTO JOSE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 150699, '2011-03-29', 2470.00, 'A'), -(492, 1, 'FELIPE JARAMILLO CARO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2009-10-31', 514700.00, 'A'), -(493, 1, 'GOMEZ PARRA GERMAN DARIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2010-01-29', 566100.00, 'A'), -(494, 1, 'VALLEJO RAMIREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-05-13', 286390.00, 'A'), -(495, 1, 'DIAZ LONDONO HUGO MARIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 733670.00, 'A'), -(496, 3, 'VAN BAKERGEM RONALD JAN', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 145135, '2008-11-05', 809190.00, 'A'), -(497, 1, 'MENDEZ RAMIREZ JOSE LEONARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-08-10', 844920.00, 'A'), -(498, 3, 'QUI TANILLA HENRIQUEZ PAUL ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-07-10', 797030.00, 'A'), -(499, 3, 'PELEATO FLOREAL', 191821112, 'CRA 25 CALLE 100', '531@hotmail.com', - '2011-02-03', 188640, '2011-04-23', 450370.00, 'A'), -(50, 1, 'SILVA GUZMAN MAURICIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-03-24', 440890.00, 'A'), -(502, 3, 'LEO ULF GORAN', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 300701, '2010-07-26', 181840.00, 'A'), -(503, 3, 'KARLSSON DANIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 300701, '2011-07-22', 50680.00, 'A'), -(504, 1, 'JIMENEZ JANER ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '889@hotmail.es', '2011-02-03', 203272, '2011-08-29', 707880.00, 'A'), -(506, 1, 'PABON OCHOA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-14', 813050.00, 'A'), -(507, 1, 'ACHURY CADENA CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-06-26', 903240.00, 'A'), -(508, 1, 'ECHEVERRY GARZON SEBASTIN', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-06-23', 77050.00, 'A'), -(509, 1, 'PINEROS PENA LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-07-29', 675550.00, 'A'), -(51, 1, 'CAICEDO URREA JAIME ORLANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127300, '2011-08-17', 200160.00, 'A'), -('CELL3795', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(510, 1, 'MARTINEZ MARTINEZ LUIS EDUARDO', 191821112, 'CRA 25 CALLE 100', - '586@facebook.com', '2011-02-03', 127591, '2010-08-28', 146600.00, 'A'), -(511, 1, 'MOLANO PENA JESUS ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-02-05', 706320.00, 'A'), -(512, 3, 'RUDOLPHY FONTAINE ANDRES', 191821112, 'CRA 25 CALLE 100', - '492@yahoo.com', '2011-02-03', 117002, '2011-04-12', 91820.00, 'A'), -(513, 1, 'NEIRA CHAVARRO JOHN JAIRO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-05-12', 340120.00, 'A'), -(514, 3, 'MENDEZ VILLALOBOS ARMANDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 145135, '2011-03-25', 425160.00, 'A'), -(515, 3, 'HERNANDEZ OLIVA JOSE DE LA CRUZ', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 145135, '2011-03-25', 105440.00, 'A'), -(518, 3, 'JANCO NICOLAS', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-06-15', 955830.00, 'A'), -(52, 1, 'TAPIA MUNOZ JAIRO RICARDO', 191821112, 'CRA 25 CALLE 100', - '920@hotmail.es', '2011-02-03', 127591, '2011-10-05', 678130.00, 'A'), -(520, 1, 'ALVARADO JAVIER', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-05-26', 895550.00, 'A'), -(521, 1, 'HUERFANO SOTO JONATHAN', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-05-30', 619910.00, 'A'), -(522, 1, 'HUERFANO SOTO JONATHAN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-06-04', 412900.00, 'A'), -(523, 1, 'RODRIGEZ GOMEZ WILMAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-05-14', 204790.00, 'A'), -(525, 1, 'ARROYO BAPTISTE DIEGO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-09', 311810.00, 'A'), -(526, 1, 'PULECIO BOEK DANIEL', 191821112, 'CRA 25 CALLE 100', '718@gmail.com', - '2011-02-03', 127591, '2011-08-12', 203350.00, 'A'), -(527, 1, 'ESLAVA VELEZ SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2010-10-08', 81300.00, 'A'), -(528, 1, 'CASTRO FERNANDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2010-05-06', 796470.00, 'A'), -(53, 1, 'HINCAPIE MARTINEZ RICARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127573, '2011-09-26', 790180.00, 'A'), -(530, 1, 'ZORRILLA PUJANA NICOLAS', 191821112, 'CRA 25 CALLE 100', - '312@yahoo.es', '2011-02-03', 127591, '2011-06-06', 302750.00, 'A'), -(531, 1, 'ZORRILLA PUJANA NICOLAS', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-06-06', 298440.00, 'A'), -(532, 1, 'PRETEL ARTEAGA MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-05-09', 583980.00, 'A'), -(533, 1, 'RAMOS VERGARA HUMBERTO CARLOS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 131105, '2010-05-13', 24560.00, 'A'), -(534, 1, 'BONILLA PINEROS DIEGO FELIPE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-09-20', 370880.00, 'A'), -(535, 1, 'BELTRAN TRIVINO JULIAN DAVID', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2010-11-06', 780710.00, 'A'), -(536, 3, 'BLOD ULF FREDERICK EDWARD', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-04-06', 790900.00, 'A'), -(537, 1, 'VANEGAS OROZCO SEBASTIAN', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2010-11-10', 612400.00, 'A'), -(538, 3, 'ORUE VALLE MONICA CECILIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 97885, '2011-09-15', 689270.00, 'A'), -(539, 1, 'AGUDELO BEDOYA ANDRES JOSE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 128662, '2011-05-24', 609160.00, 'A'), -(54, 1, 'DE HOYOS TRESPALACIOS MAURICIO ALEJANDRO', 191821112, - 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2010-04-21', - 916500.00, 'A'), -(540, 3, 'HEIJKENSKJOLD PER JESPER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-04-06', 977980.00, 'A'), -(541, 3, 'GONZALEZ ALVARADO LUIS RAUL', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 117002, '2011-08-27', 62430.00, 'A'), -(543, 1, 'GRUPO SURAMERICA', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 128662, '2011-08-24', 703760.00, 'A'), -(545, 1, 'CORPORACION CONTEXTO ', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-08', 809570.00, 'A'), -(546, 3, 'LUNDIN JOHAN ERIK ', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-07-29', 895330.00, 'A'), -(548, 3, 'VEGERANO JOSE ', 191821112, 'CRA 25 CALLE 100', '221@facebook.com', - '2011-02-03', 190393, '2011-06-05', 553780.00, 'A'), -(549, 3, 'SERRANO MADRID CLAUDIA INES', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2011-07-27', 625060.00, 'A'), -(55, 1, 'TAFUR GOMEZ ALEXANDER', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127300, '2010-09-12', 211980.00, 'A'), -(550, 1, 'MARTINEZ ACEVEDO MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-10-06', 463920.00, 'A'), -(551, 1, 'GONZALEZ MORENO PABLO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2011-07-21', 444450.00, 'A'), -(552, 1, 'MEJIA ROJAS ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-08-02', 830470.00, 'A'), -(553, 3, 'RODRIGUEZ ANTHONY HANSEL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-16', 819000.00, 'A'), -(554, 1, 'ABUCHAIBE ANNICCHRICO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-05-31', 603610.00, 'A'), -(555, 3, 'MOYES KIMBERLY', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-04-08', 561020.00, 'A'), -(556, 3, 'MONTINI MARIO JOSE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 118942, '2010-03-16', 994280.00, 'A'), -(557, 3, 'HOGBERG DANIEL TOBIAS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-06-15', 288350.00, 'A'), -(559, 1, 'OROZCO PFEIZER MARTIN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2010-10-07', 429520.00, 'A'), -(56, 1, 'NARINO ROJAS GABRIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-09-27', 310390.00, 'A'), -(560, 1, 'GARCIA MONTOYA ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 128662, '2011-06-02', 770840.00, 'A'), -(562, 1, 'VELASQUEZ PALACIO MANUEL ORLANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2011-06-23', 515670.00, 'A'), -(563, 1, 'GALLEGO PEREZ DIEGO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-04-14', 881460.00, 'A'), -(564, 1, 'RUEDA URREGO JUAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2011-05-04', 860270.00, 'A'), -(565, 1, 'RESTREPO DEL TORO MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2011-05-10', 656960.00, 'A'), -(567, 1, 'TORO VALENCIA FELIPE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2010-08-04', 549090.00, 'A'), -(568, 1, 'VILLEGAS LUIS ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2011-05-02', 633490.00, 'A'), -(569, 3, 'RIDSTROM CHRISTER ANDERS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 300701, '2011-09-06', 520150.00, 'A'), -(57, 1, 'TOVAR ARANGO JOHN JAIME', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127662, '2010-07-03', 916010.00, 'A'), -(570, 3, 'SHEPHERD DAVID', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2008-05-11', 700280.00, 'A'), -(573, 3, 'BENGTSSON JOHAN ANDREAS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 196830.00, 'A'), -(574, 3, 'PERSSON HANS JONAS', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-06-09', 172340.00, 'A'), -(575, 3, 'SYNNEBY BJORN ERIK', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-06-15', 271210.00, 'A'), -('CELL381', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(577, 3, 'COHEN PAUL KIRTAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-05-25', 381490.00, 'A'), -(578, 3, 'ROMERO BRAVO FERNANDO EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 117002, '2011-08-21', 390360.00, 'A'), -(579, 3, 'GUTHRIE ROBERT DEAN', 191821112, 'CRA 25 CALLE 100', '794@gmail.com', - '2011-02-03', 161705, '2010-07-20', 807350.00, 'A'), -(58, 1, 'TORRES ESCOBAR JAIRO ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-06-17', 648860.00, 'A'), -(580, 3, 'ROCASERMENO MONTENEGRO MARIO JOSE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 139844, '2010-12-01', 865650.00, 'A'), -(581, 1, 'COCK JORGE EDUARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 128662, '2011-08-19', 906210.00, 'A'), -(582, 3, 'REISS ANDREAS', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2009-01-31', 934120.00, 'A'), -(584, 3, 'ECHEVERRIA CASTILLO GERMAN FRANCISCO', 191821112, 'CRA 25 CALLE 100', - '982@yahoo.com', '2011-02-03', 139844, '2011-07-20', 957370.00, 'A'), -(585, 3, 'BRANDT CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-10', 931030.00, 'A'), -(586, 3, 'VEGA NUNEZ GILBERTO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-07-14', 783010.00, 'A'), -(587, 1, 'BEJAR MUNOZ JORDI', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 196234, '2010-10-08', 121990.00, 'A'), -(588, 3, 'WADSO KERSTIN ELIZABETH', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-09-17', 260890.00, 'A'), -(59, 1, 'RAMOS FORERO JAVIER', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-06-20', 496300.00, 'A'), -(590, 1, 'RODRIGUEZ BETANCOURT JAVIER AUGUSTO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127538, '2011-05-23', 909850.00, 'A'), -(592, 1, 'ARBOLEDA HALABY RODRIGO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 150699, '2009-02-03', 939170.00, 'A'), -(593, 1, 'CURE CURE CARLOS ALFREDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 150699, '2011-07-11', 494600.00, 'A'), -(594, 3, 'VIDELA PEREZ OSCAR EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 117002, '2011-07-13', 655510.00, 'A'), -(595, 1, 'GONZALEZ GAVIRIA NESTOR', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2009-09-28', 793760.00, 'A'), -(596, 3, 'IZQUIERDO DELGADO DIONISIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 188640, '2009-09-24', 2250.00, 'A'), -(597, 1, 'MORENO DAIRO', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127300, '2011-06-14', 629990.00, 'A'), -(598, 1, 'RESTREPO FERNNDEZ SOTO JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2011-08-31', 143210.00, 'A'), -(599, 3, 'YERYES VERGARA MARIA SOLEDAD', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-10-11', 826060.00, 'A'), -(6, 1, 'GUZMAN ESCOBAR JOSE VICENTE', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-08-10', 26390.00, 'A'), -(60, 1, 'ELEJALDE ESCOBAR TOMAS ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2010-11-09', 534910.00, 'A'), -(601, 1, 'ESCAF ESCAF WILLIAM MIGUEL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 150699, '2011-07-26', 25190.00, 'A'), -(602, 1, 'CEBALLOS ZULUAGA JOSE ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 128662, '2011-05-03', 23920.00, 'A'), -(603, 1, 'OLIVELLA GUERRERO RAFAEL ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 134022, '2010-06-23', 44040.00, 'A'), -(604, 1, 'ESCOBAR GALLO CARLOS HUGO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-09', 148420.00, 'A'), -(605, 1, 'ESCORCIA RAMIREZ EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128569, '2011-04-01', 609990.00, 'A'), -(606, 1, 'MELGAREJO MORENO PAULA ANDREA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-05', 604700.00, 'A'), -(607, 1, 'TOBON CALLE CARLOS GUILLERMO', 191821112, 'CRA 25 CALLE 100', - '689@hotmail.es', '2011-02-03', 128662, '2011-03-16', 193510.00, 'A'), -(608, 3, 'TREVINO NOPHAL SILVANO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 110709, '2011-05-27', 153470.00, 'A'), -(609, 1, 'CARDER VELEZ EDWIN JOHN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-09-04', 186830.00, 'A'), -(61, 1, 'GASCA DAZA VICTOR HERNANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-09-09', 185660.00, 'A'), -(610, 3, 'DAVIS JOHN BRADLEY', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-04-06', 473740.00, 'A'), -(611, 1, 'BAQUERO SLDARRIAGA ALVARO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 128662, '2011-09-15', 808210.00, 'A'), -(612, 3, 'SERRACIN ARAUZ YANIRA YAMILET', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 131272, '2011-06-09', 619820.00, 'A'), -(613, 1, 'MORA SOTO ALVARO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 128662, '2011-09-20', 674450.00, 'A'), -(614, 1, 'SUAREZ RODRIGUEZ HERNANDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 145135, '2011-03-29', 512820.00, 'A'), -(616, 1, 'BAQUERO GARCIA JORGE LUIS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2010-07-14', 165160.00, 'A'), -(617, 3, 'ABADI MADURO MOISES SIMON', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 131272, '2009-03-31', 203640.00, 'A'), -(62, 3, 'FLOWER LYNDON BRUCE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 231373, '2011-05-16', 323560.00, 'A'), -(624, 8, 'OLARTE LEONARDO', 191821112, 'CRA 25 CALLE 100', '6@hotmail.com', - '2011-02-03', 127591, '2011-06-03', 219790.00, 'A'), -(63, 1, 'RUBIO CORTES OSCAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2011-04-28', 60830.00, 'A'), -(630, 5, 'PROEXPORT', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 128662, '2010-08-12', 708320.00, 'A'), -(632, 8, 'SUPER COFFEE ', 191821112, 'CRA 25 CALLE 100', '792@hotmail.es', - '2011-02-03', 127591, '2011-08-30', 306460.00, 'A'), -(636, 8, 'NOGAL ASESORIAS FINANCIERAS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2010-04-07', 752150.00, 'A'), -(64, 1, 'GUERRA MARTINEZ MAURICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-09-24', 333480.00, 'A'), -(645, 8, 'GIZ - PROFIS', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-08-31', 566330.00, 'A'), -(652, 3, 'QBE DEL ISTMO COMPANIA DE REASEGUROS ', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-07-14', 932190.00, 'A'), -(655, 3, 'CORP. CENTRO DE ESTUDIOS DE DERECHO JUSTICIA Y SOCIEDAD', 191821112, - 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 127591, '2010-05-04', - 440370.00, 'A'), -(659, 3, 'GOOD YEAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 128662, '2010-09-24', 993830.00, 'A'), -(660, 3, 'ARCINIEGAS Y VILLAMIZAR', 191821112, 'CRA 25 CALLE 100', - '258@yahoo.com', '2011-02-03', 127591, '2010-12-02', 787450.00, 'A'), -(67, 1, 'LOPEZ HOYOS JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127662, '2010-04-13', 665230.00, 'A'), -(670, 8, 'APPLUS NORCONTROL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 133535, '2011-09-06', 83210.00, 'A'), -(672, 3, 'KERLL SEBASTIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 287273, '2010-12-19', 501610.00, 'A'), -(673, 1, 'RESTREPO MOLINA RAMIRO ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 144215, '2010-12-18', 457290.00, 'A'), -(674, 1, 'PEREZ GIL JOSE IGNACIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2011-08-18', 781610.00, 'A'), -('CELL3840', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(676, 1, 'GARCIA LONDONO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 128662, '2011-08-23', 336160.00, 'A'), -(677, 3, 'RIJLAARSDAM KARIN AN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2010-07-03', 72210.00, 'A'), -(679, 1, 'LIZCANO MONTEALEGRE ARNULFO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127203, '2011-02-01', 546170.00, 'A'), -(68, 1, 'MARTINEZ SILVA EDGAR', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 127591, '2011-08-29', 54250.00, 'A'), -(680, 3, 'OLIVARI MAYER PATRICIA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 122642, '2011-08-01', 673170.00, 'A'), -(682, 3, 'CHEVALIER FRANCK PIERRE CHARLES', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 263813, '2010-12-01', 617280.00, 'A'), -(683, 3, 'NG WAI WING ', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 126909, '2011-06-14', 904310.00, 'A'), -(684, 3, 'MULLER DOMINGUEZ CARLOS ANDRES', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-05-22', 669700.00, 'A'), -(685, 3, 'MOSQUEDA DOMNGUEZ ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-04-08', 635580.00, 'A'), -(686, 3, 'LARREGUI MARIN LEON', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 127591, '2011-04-08', 168800.00, 'A'), -(687, 3, 'VARGAS VERGARA ALEJANDRO BRAULIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 159245, '2011-09-14', 937260.00, 'A'), -(688, 3, 'SKINNER LYNN CHERYL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2011-06-12', 179890.00, 'A'), -(689, 1, 'URIBE CORREA LEONARDO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 128662, '2010-07-29', 87680.00, 'A'), -(690, 1, 'TAMAYO JARAMILLO FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 128662, '2010-11-10', 898730.00, 'A'), -(691, 3, 'MOTABAN DE BORGES PAULA ELENA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 132958, '2010-09-24', 230610.00, 'A'), -(692, 5, 'FERNANDEZ NALDA JOSE MANUEL ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 117002, '2011-06-28', 456850.00, 'A'), -(693, 1, 'GOMEZ RESTREPO JUAN FELIPE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2010-06-28', 592420.00, 'A'), -(694, 1, 'CARDENAS TAMAYO JOSE JAIME', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 128662, '2011-08-08', 591550.00, 'A'), -(696, 1, 'RESTREPO ARANGO ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-03-31', 127820.00, 'A'), -(697, 1, 'ROCABADO PASTRANA ROBERT JAVIER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127443, '2011-08-13', 97600.00, 'A'), -(698, 3, 'JARVINEN JOONAS JORI KRISTIAN', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 196234, '2011-05-29', 104560.00, 'A'), -(699, 1, 'MORENO PEREZ HERNAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 128662, '2011-08-30', 230000.00, 'A'), -(7, 1, 'PUYANA RAMOS GUILLERMO ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-08-27', 331830.00, 'A'), -(70, 1, 'GALINDO MANZANO JAVIER FRANCISCO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-31', 214890.00, 'A'), -(701, 1, 'ROMERO PEREZ ARCESIO JOSE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 132775, '2011-07-13', 491650.00, 'A'), -(703, 1, 'CHAPARRO AGUDELO LEONARDO VIRGILIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 128662, '2011-05-04', 271320.00, 'A'), -(704, 5, 'VASQUEZ YANIS MARIA DEL PILAR', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-10-13', 508820.00, 'A'), -(705, 3, 'BARBERO JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 116511, '2010-09-13', 730170.00, 'A'), -(706, 1, 'CARMONA HERNANDEZ MIGUEL ANGEL', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2010-11-08', 124380.00, 'A'), -(707, 1, 'PEREZ SUAREZ JORGE ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 132775, '2011-09-14', 431370.00, 'A'), -(708, 1, 'ROJAS JORGE MARIO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 130135, '2011-04-01', 783740.00, 'A'), -(71, 1, 'DIAZ JUAN PABLO/JULES JAVIER', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2011-10-01', 247860.00, 'A'), -(711, 3, 'CATALDO CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 116773, '2011-06-06', 984810.00, 'A'), -(716, 5, 'MACIAS PIZARRO PATRICIO ', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 117002, '2011-06-07', 376260.00, 'A'), -(717, 1, 'RENDON MAYA DAVID ALEXANDER', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 130273, '2010-07-25', 332310.00, 'A'), -(718, 3, 'DE HILDEBRAND E GRISI FILHO CELSO CLAUDIO', 191821112, - 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-11', - 532740.00, 'A'), -(719, 3, 'ALLIEL FACUSSE JULIO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 117002, '2011-06-20', 666800.00, 'A'), -(72, 1, 'LOPEZ ROJAS VICTOR DANIEL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-07-11', 594640.00, 'A'), -(720, 3, 'CHEMELLO JIMENEZ GAETANO ALBERTO FRANCISCO', 191821112, - 'CRA 25 CALLE 100', '@facebook.com', '2011-02-03', 132958, '2010-06-23', - 735760.00, 'A'), -(721, 3, 'GARCIA BEZANILLA RODOLFO EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 128662, '2010-04-12', 678420.00, 'A'), -(722, 1, 'ARIAS EDWIN', 191821112, 'CRA 25 CALLE 100', '13@terra.com.co', - '2011-02-03', 127492, '2008-04-24', 184800.00, 'A'), -(723, 3, 'SOHN JANG WON', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2010-06-07', 888750.00, 'A'), -(724, 3, 'WILHELM GIOVINE JAIME ROBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 115263, '2011-09-20', 889340.00, 'A'), -(726, 3, 'CASTILLERO DANIA', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 131272, '2011-05-13', 234270.00, 'A'), -(727, 3, 'PORTUGAL LANGHORST MAX GUILLERMO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-03-13', 829960.00, 'A'), -(729, 3, 'ALFONSO HERRANZ AGUSTIN ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2011-07-21', 745060.00, 'A'), -(73, 1, 'DAVILA MENDEZ OSCAR DIEGO', 191821112, 'CRA 25 CALLE 100', - '991@yahoo.com.mx', '2011-02-03', 128569, '2011-08-31', 229630.00, 'A'), -(730, 3, 'ALFONSO HERRANZ AGUSTIN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2010-03-31', 384360.00, 'A'), -(731, 1, 'NOGUERA RAMIREZ CARLOS ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-07-14', 686610.00, 'A'), -(732, 1, 'ACOSTA PERALTA FABIAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 134030, '2011-06-21', 279960.00, 'A'), -(733, 3, 'MAC LEAN PINA PEDRO SEGUNDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 117002, '2011-05-23', 339980.00, 'A'), -(734, 1, 'LEON ARCOS ALEX', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 133535, '2011-05-04', 860020.00, 'A'), -(736, 3, 'LAMARCA GARCIA GERMAN JULIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2010-04-29', 820700.00, 'A'), -(737, 1, 'PORTO VELASQUEZ LUIS MIGUEL', 191821112, 'CRA 25 CALLE 100', - '321@hotmail.es', '2011-02-03', 133535, '2011-08-17', 263060.00, 'A'), -(738, 1, 'BUENAVENTURA MEDINA ERICK WILSON', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 133535, '2011-09-18', 853180.00, 'A'), -(739, 1, 'LEVY ARRAZOLA RALPH MARC', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 133535, '2011-09-27', 476720.00, 'A'), -(74, 1, 'RAMIREZ SORA EDISON', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-10-03', 364220.00, 'A'), -(740, 3, 'MOON HYUNSIK ', 191821112, 'CRA 25 CALLE 100', '@terra.com.co', - '2011-02-03', 173192, '2011-05-15', 824080.00, 'A'), -(741, 3, 'LHUILLIER TRONCOSO GASTON MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 117002, '2011-09-07', 690230.00, 'A'), -(742, 3, 'UNDURRAGA PELLEGRINI GONZALO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 117002, '2010-11-21', 978900.00, 'A'), -(743, 1, 'SOLANO TRIBIN NICOLAS SIMON', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 134022, '2011-03-16', 823800.00, 'A'), -(744, 1, 'NOGUERA BENAVIDES JACOBO ALONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2010-10-06', 182300.00, 'A'), -(745, 1, 'GARCIA LEON MARCO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 133535, '2008-04-16', 440110.00, 'A'), -(746, 1, 'EMILIANI ROJAS ALEXANDER ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 133535, '2011-09-12', 653640.00, 'A'), -(748, 1, 'CARRENO POULSEN HELGEN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-05-06', 778370.00, 'A'), -(749, 1, 'ALVARADO FANDINO ANDRES EDUARDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 133535, '2008-11-05', 48280.00, 'A'), -(750, 1, 'DIAZ GRANADOS JUAN PABLO.', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-01-12', 906290.00, 'A'), -(751, 1, 'OVALLE BETANCOURT ALBERTO JOSE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 134022, '2011-08-14', 386620.00, 'A'), -(752, 3, 'GUTIERREZ VERGARA JOSE MIGUEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-05-08', 214250.00, 'A'), -(753, 3, 'CHAPARRO GUAIMARAL LIZ', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 147467, '2011-03-16', 911350.00, 'A'), -(754, 3, 'CORTES DE SOLMINIHAC PABLO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 117002, '2011-01-20', 914020.00, 'A'), -(755, 3, 'CHETAIL VINCENT', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 239124, '2010-08-23', 836050.00, 'A'), -(756, 3, 'PERUGORRIA RODRIGUEZ JORGE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 188640, '2010-10-17', 438210.00, 'A'), -(757, 3, 'GOLLMANN ROBERTO JUAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 167269, '2011-03-28', 682870.00, 'A'), -(758, 3, 'VARELA SEPULVEDA MARIA PILAR', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 118777, '2010-07-26', 99730.00, 'A'), -(759, 3, 'MEYER WELIKSON MICHELE JANIK', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-05-10', 450030.00, 'A'), -(76, 1, 'VANEGAS RODRIGUEZ OSCAR IVAN', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-06-20', 568310.00, 'A'), -(77, 3, 'GATICA SOTOMAYOR MAURICIO VICENTE', 191821112, 'CRA 25 CALLE 100', - '409@terra.com.co', '2011-02-03', 117002, '2010-05-13', 444970.00, 'A'), -(79, 1, 'PENA VALENZUELA DANIEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-07-19', 264790.00, 'A'), -(8, 1, 'NAVARRO PALENCIA HUGO RAFAEL', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 126968, '2011-05-05', 579980.00, 'A'), -(80, 1, 'BARRIOS CUADRADO DAVID', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-07-29', 764140.00, 'A'), -(802, 3, 'RECK GARRONE', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 118942, '2009-02-06', 767700.00, 'A'), -(81, 1, 'PARRA QUIROGA JOSE ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-09-18', 26330.00, 'A'), -(811, 8, 'FEDERACION NACIONAL DE AVICULTORES ', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2011-04-18', 926010.00, 'A'), -(812, 1, 'ORJUELA VELEZ JAIME ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-06-22', 257160.00, 'A'), -(813, 1, 'PENA CHACON GUSTAVO ADOLFO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 128662, '2011-08-27', 507770.00, 'A'), -(814, 1, 'RONDEROS MOJICA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127443, '2011-05-04', 767370.00, 'A'), -(815, 1, 'RICO NINO MARIO ANDRES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127443, '2011-05-18', 313540.00, 'A'), -(817, 3, 'AVILA CHYTIL MANUEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 118471, '2011-07-14', 387300.00, 'A'), -(818, 3, 'JABLONSKI DUARTE SILVEIRA ESTER', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 118942, '2010-12-21', 139740.00, 'A'), -(819, 3, 'BUHLER MOSLER XIMENA ALEJANDRA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 117002, '2011-06-20', 536830.00, 'A'), -(82, 1, 'CARRILLO GAMBOA JUAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2010-06-01', 839240.00, 'A'), -(820, 3, 'FALQUETO DALMIRO ANGELO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2010-06-21', 264910.00, 'A'), -(821, 1, 'RUGER GUSTAVO RODRIGUEZ TAMAYO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 133535, '2010-04-12', 714080.00, 'A'), -(822, 3, 'JULIO RODRIGUEZ FRANCISCO JAVIER', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 117002, '2011-08-16', 775650.00, 'A'), -(823, 3, 'CIBANIK RODOLFO MOISES', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 132554, '2011-09-19', 736020.00, 'A'), -(824, 3, 'JIMENEZ FRANCO EMMANUEL ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-03-17', 353150.00, 'A'), -(825, 3, 'GNECCO TREMEDAD', 191821112, 'CRA 25 CALLE 100', '818@hotmail.com', - '2011-02-03', 171072, '2011-03-19', 557700.00, 'A'), -(826, 3, 'VILAR MENDOZA JOSE RAFAEL', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-06-29', 729050.00, 'A'), -(827, 3, 'GONZALEZ MOLINA CRISTIAN MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2011-06-20', 972160.00, 'A'), -(828, 1, 'GONTOVNIK HOBRECKT CARLOS DANIEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 133535, '2011-08-02', 673620.00, 'A'), -(829, 3, 'DIBARRAT URZUA SEBASTIAN RAIMUNDO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-28', 451650.00, 'A'), -(830, 3, 'STOCCHERO HATSCHBACH GUILHERME', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 118777, '2010-11-22', 237370.00, 'A'), -(831, 1, 'NAVAS PASSOS NARCISO EVELIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 133535, '2011-04-21', 831900.00, 'A'), -(832, 3, 'LUNA SOBENES FAVIAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2010-10-11', 447400.00, 'A'), -(833, 3, 'NUNEZ NOGUEIRA ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 188640, '2011-03-19', 741290.00, 'A'), -(834, 1, 'CASTRO BELTRAN ARIEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 128188, '2011-05-15', 364270.00, 'A'), -(835, 1, 'TURBAY YAMIN MAURICIO JOSE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 188640, '2011-03-17', 597490.00, 'A'), -(836, 1, 'GOMEZ BARRAZA RODNEY LORENZO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 127591, '2011-10-07', 894610.00, 'A'), -(837, 1, 'CUELLO LASCANO ROBERTO', 191821112, 'CRA 25 CALLE 100', - '221@hotmail.es', '2011-02-03', 133535, '2011-07-11', 680610.00, 'A'), -(838, 1, 'PATERNINA PEINADO JOSE VICENTE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 133535, '2011-08-23', 719190.00, 'A'), -(839, 1, 'YEPES RUBIANO ALFONSO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 133535, '2011-05-16', 554130.00, 'A'), -(84, 1, 'ALVIS RAMIREZ ALFREDO', 191821112, 'CRA 25 CALLE 100', '292@yahoo.com', - '2011-02-03', 127662, '2011-09-16', 68190.00, 'A'), -(840, 1, 'ROCA LLANOS GUILLERMO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 133535, '2011-08-22', 613060.00, 'A'), -(841, 1, 'RENDON TORRALVO ENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 133535, '2011-05-26', 402950.00, 'A'), -(842, 1, 'BLANCO STAND GERMAN ELIECER', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 133535, '2011-07-17', 175530.00, 'A'), -(843, 3, 'BERNAL MAYRA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 131272, '2010-08-31', 668820.00, 'A'), -(844, 1, 'NAVARRO RUIZ LAZARO GREGORIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 126916, '2008-09-23', 817520.00, 'A'), -(846, 3, 'TUOMINEN OLLI PETTERI', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 127591, '2010-09-01', 953150.00, 'A'), -(847, 1, 'ESPARRAGOZA DE LA ESPRIELLA ENRIQUE ALBERTO ', 191821112, - 'CRA 25 CALLE 100', '@yahoo.com.mx', '2011-02-03', 133535, '2011-08-09', - 522340.00, 'A'), -(848, 3, 'ARAYA ARIAS JUAN VICENTE', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 132165, '2011-08-09', 752210.00, 'A'), -(85, 1, 'GARCIA JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-03-01', 989420.00, 'A'), -(850, 1, 'PARDO GOMEZ GERMAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 132775, '2010-11-25', 713690.00, 'A'), -(851, 1, 'ATIQUE JOSE MANUEL', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 133535, '2008-03-03', 986250.00, 'A'), -(852, 1, 'HERNANDEZ MEYER EDGARDO DE JESUS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 133535, '2011-07-20', 790190.00, 'A'), -(853, 1, 'ZULUAGA DE LEON IVAN JESUS', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2010-07-03', 992210.00, 'A'), -(854, 1, 'VILLARREAL ANGULO ENRIQUE ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 133535, '2011-10-02', 590450.00, 'A'), -(855, 1, 'CELIA MARTINEZ APARICIO GIAN PIERO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 133535, '2011-06-15', 975620.00, 'A'), -(857, 3, 'LIPARI RONALDO LUIS', 191821112, 'CRA 25 CALLE 100', - '84@facebook.com', '2011-02-03', 118941, '2010-10-13', 606990.00, 'A'), -(858, 1, 'RAVACHI DAVILA ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 133535, '2011-05-04', 714620.00, 'A'), -(859, 3, 'PINHEIRO OLIVEIRA LUCIANO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-04-06', 752130.00, 'A'), -(86, 1, 'GOMEZ LIS CARLOS EMILIO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2009-12-22', 742520.00, 'A'), -(860, 1, 'PUGLIESE MERCADO LUIGGI ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2010-08-19', 616780.00, 'A'), -(862, 1, 'JANNA TELLO DANIEL JALIL', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 133535, '2010-08-07', 287220.00, 'A'), -(863, 3, 'MATTAR CARLOS HENRIQUE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2009-04-26', 953570.00, 'A'), -(864, 1, 'MOLINA OLIER OSVALDO ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 132775, '2011-04-18', 906200.00, 'A'), -(865, 1, 'BLANCO MCLIN DAVID ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2010-08-18', 670290.00, 'A'), -(866, 1, 'NARANJO ROMERO ALFREDO', 191821112, 'CRA 25 CALLE 100', '@hotmail.es', - '2011-02-03', 133535, '2010-08-25', 632860.00, 'A'), -(867, 1, 'SIMANCAS TRUJILLO RICARDO ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 133535, '2011-04-07', 153400.00, 'A'), -(868, 1, 'ARENAS USME GERMAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 126881, '2011-10-01', 868430.00, 'A'), -(869, 5, 'DIAZ CORDERO RODRIGO FERNANDO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2010-11-04', 881950.00, 'A'), -(87, 1, 'CELIS PEREZ HERNANDO ALONSO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 127591, '2011-10-05', 744330.00, 'A'), -(870, 3, 'BINDER ZBEDA JONATAHAN JANAN', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 131083, '2010-04-11', 804460.00, 'A'), -(871, 1, 'HINCAPIE HELLMAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2010-09-15', 376440.00, 'A'), -(872, 3, 'MONTEIRO LANAMAR ALFONSO DE BUSTAMANTE', 191821112, - 'CRA 25 CALLE 100', '@hotmail.es', '2011-02-03', 118942, '2009-03-23', - 468820.00, 'A'), -(873, 3, 'AGUDO CARMINATTI REGINA CELIA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 118777, '2011-01-04', 214770.00, 'A'), -(874, 1, 'GONZALEZ VILLALOBOS CRISTIAN MANUEL', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 133535, '2011-09-26', 667400.00, 'A'), -(875, 3, 'GUELL VILLANUEVA ALVARO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2008-04-07', 692670.00, 'A'), -(876, 3, 'GRES ANAIS ROBERTO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2010-12-01', 461180.00, 'A'), -(877, 3, 'GAME MOCOCAIN JUAN ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-08-07', 227890.00, 'A'), -(878, 1, 'FERRER UCROS FERNANDO LEON', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 133535, '2011-06-22', 755900.00, 'A'), -(879, 3, 'HERRERA JAUREGUI CARLOS GUSTAVO', 191821112, 'CRA 25 CALLE 100', - '599@facebook.com', '2011-02-03', 131272, '2010-07-22', 95840.00, 'A'), -(880, 3, 'BACALLAO HERNANDEZ ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 126180, '2010-04-21', 211480.00, 'A'), -(881, 1, 'GIJON URBINA JAIME', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 144879, '2011-04-03', 769910.00, 'A'), -(882, 3, 'TRUSEN CHRISTOPH WOLFGANG', 191821112, 'CRA 25 CALLE 100', - '338@yahoo.com.mx', '2011-02-03', 127591, '2010-10-24', 215100.00, 'A'), -(883, 3, 'ASHOURI ASKANDAR', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 157861, '2009-03-03', 765760.00, 'A'), -(885, 1, 'ALTAMAR WATTS JAIRO ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 133535, '2011-08-20', 620170.00, 'A'), -(887, 3, 'QUINTANA BALTIERRA ROBERTO ALEX', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 117002, '2011-06-21', 891370.00, 'A'), -(889, 1, 'CARILLO PATINO VICTOR HILARIO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 130226, '2011-09-06', 354570.00, 'A'), -(89, 1, 'CONTRERAS PULIDO LINA MARIA', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-08-06', 237480.00, 'A'), -(890, 1, 'GELVES CANAS GENARO ALBERTO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-04-02', 355640.00, 'A'), -(891, 3, 'CAGNONI DE MELO PAULA CRISTINA', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 118777, '2010-12-14', 714490.00, 'A'), -(892, 3, 'MENA AMESTICA PATRICIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 117002, '2011-03-22', 505510.00, 'A'), -(893, 1, 'CAICEDO ROMES', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-04-07', 384110.00, 'A'), -(894, 1, 'ECHEVERRY TRUJILLO ARMANDO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-06-08', 404010.00, 'A'), -(895, 1, 'CAJIA PEDRAZA ANTONIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 127591, '2011-09-02', 867700.00, 'A'), -(896, 2, 'PALACIOS OLIVA ANDRES FELIPE', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com.mx', '2011-02-03', 117002, '2011-05-24', 126500.00, 'A'), -(897, 1, 'GUTIERREZ QUINTERO FABIAN ESTEBAN', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2009-10-24', 29380.00, 'A'), -(899, 3, 'COBO GUEVARA LUIS FELIPE', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2010-12-09', 748860.00, 'A'), -(9, 1, 'OSORIO RODRIGUEZ FELIPE', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2010-09-27', 904420.00, 'A'), -(90, 1, 'LEYTON GONZALEZ FREDY RAFAEL', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127591, '2011-03-24', 705130.00, 'A'), -(901, 1, 'HERNANDEZ JOSE ANGEL', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 130266, '2011-05-23', 964010.00, 'A'), -(903, 3, 'GONZALEZ MALDONADO MAURICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 117002, '2010-11-13', 576500.00, 'A'), -(904, 1, 'OCHOA BARRIGA JORGE', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 130266, '2011-05-05', 401380.00, 'A'), -('CELL3886', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -(905, 1, 'OSORIO REDONDO JESUS DAVID', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 127300, '2011-08-11', 277390.00, 'A'), -(906, 1, 'BAYONA BARRIENTOS JEAN CARLOS', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-01-25', 182820.00, 'A'), -(907, 1, 'MARTINEZ GOMEZ CARLOS ENRIQUE', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 132775, '2010-03-11', 81940.00, 'A'), -(908, 1, 'PUELLO LOPEZ GUILLERMO LEON', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 133535, '2011-08-12', 861240.00, 'A'), -(909, 1, 'MOGOLLON LONDONO PEDRO LUIS CARLOS', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 132775, '2011-06-22', 60380.00, 'A'), -(91, 1, 'ORTIZ RIOS JAVIER ADOLFO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127591, '2011-05-12', 813200.00, 'A'), -(911, 1, 'HERRERA HOYOS CARLOS FRANCISCO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.com', '2011-02-03', 132775, '2010-09-12', 409800.00, 'A'), -(912, 3, 'RIM MYUNG HWAN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-05-15', 894450.00, 'A'), -(913, 3, 'BIANCO DORIEN', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-09-29', 242820.00, 'A'), -(914, 3, 'FROIMZON WIEN DANIEL', 191821112, 'CRA 25 CALLE 100', '348@yahoo.com', - '2011-02-03', 132165, '2010-11-06', 530780.00, 'A'), -(915, 3, 'ALVEZ AZEVEDO JOAO MIGUEL', 191821112, 'CRA 25 CALLE 100', - '861@hotmail.es', '2011-02-03', 127591, '2009-06-25', 925420.00, 'A'), -(916, 3, 'CARRASCO DIAZ LUIS ANTONIO', 191821112, 'CRA 25 CALLE 100', - '@facebook.com', '2011-02-03', 127591, '2011-10-02', 34780.00, 'A'), -(917, 3, 'VIVALLOS MEDINA LEONEL EDMUNDO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2010-09-12', 397640.00, 'A'), -(919, 3, 'LASSE ANDRE BARKLIEN', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 286724, '2011-03-31', 226390.00, 'A'), -(92, 1, 'CUERVO CARDENAS ALEJANDRO', 191821112, 'CRA 25 CALLE 100', - '@gmail.com', '2011-02-03', 127591, '2011-09-08', 950630.00, 'A'), -(920, 3, 'BARCELOS PLOTEGHER LILIA MARA', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127591, '2011-08-07', 480380.00, 'A'), -(921, 1, 'JARAMILLO ARANGO JUAN DIEGO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 127559, '2011-06-28', 722700.00, 'A'), -(93, 3, 'RUIZ PRIETO WILLIAM', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', - '2011-02-03', 131272, '2011-01-19', 313540.00, 'A'), -(932, 7, 'COMFENALCO ANTIOQUIA', 191821112, 'CRA 25 CALLE 100', '@facebook.com', - '2011-02-03', 128662, '2011-05-05', 515430.00, 'A'), -(94, 1, 'GALLEGO JUAN GUILLERMO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-06-25', 715830.00, 'A'), -(944, 3, 'KARMELIC PAVLOV VESNA', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 120066, '2010-08-07', 585580.00, 'A'), -(945, 3, 'RAMIREZ BORDON OSCAR', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 128662, '2010-07-02', 526250.00, 'A'), -(946, 3, 'SORACCO CABEZA RODRIGO ANDRES', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 117002, '2011-07-04', 874490.00, 'A'), -(949, 1, 'GALINDO JORGE ERNESTO', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 127300, '2008-07-10', 344110.00, 'A'), -(950, 3, 'DR KNABLE THOMAS ERNST ALBERT', 191821112, 'CRA 25 CALLE 100', - '@terra.com.co', '2011-02-03', 256231, '2009-11-17', 685430.00, 'A'), -(953, 3, 'VELASQUEZ JANETH', 191821112, 'CRA 25 CALLE 100', '@hotmail.com', - '2011-02-03', 127591, '2011-07-20', 404650.00, 'A'), -(954, 3, 'SOZA REX JOSE FRANCISCO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 150903, '2011-05-26', 269790.00, 'A'), -(955, 3, 'FONTANA GAETE JAIME PATRICIO', 191821112, 'CRA 25 CALLE 100', - '@yahoo.es', '2011-02-03', 117002, '2011-01-11', 134970.00, 'A'), -(957, 3, 'PEREZ MARTINEZ GRECIA INDIRA', 191821112, 'CRA 25 CALLE 100', - '@hotmail.es', '2011-02-03', 132958, '2010-08-27', 922610.00, 'A'), -(96, 1, 'FORERO CUBILLOS JORGEARTURO', 191821112, 'CRA 25 CALLE 100', - '@hotmail.com', '2011-02-03', 127591, '2011-07-25', 45020.00, 'A'), -(97, 1, 'SILVA ACOSTA MARIO', 191821112, 'CRA 25 CALLE 100', '@yahoo.es', - '2011-02-03', 127591, '2011-09-19', 309580.00, 'A'), -(978, 3, 'BLUMENTHAL JAIRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 117630, '2010-04-22', 653490.00, 'A'), -(984, 3, 'SUN XIAN', 191821112, 'CRA 25 CALLE 100', '@yahoo.com.mx', - '2011-02-03', 127591, '2011-01-17', 203630.00, 'A'), -(99, 1, 'CANO GUZMAN ALEJANDRO', 191821112, 'CRA 25 CALLE 100', '@gmail.com', - '2011-02-03', 127591, '2011-08-23', 135620.00, 'A'), -(999, 1, 'DRAGER', 191821112, 'CRA 25 CALLE 100', '@yahoo.com', '2011-02-03', - 127591, '2010-12-22', 882070.00, 'A'), -('CELL1020', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1083', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1153', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1183', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL126', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1326', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1329', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL133', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1413', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1426', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1529', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1651', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1760', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1857', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1879', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1902', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1921', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1962', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1992', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2006', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL215', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2307', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2322', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2497', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2641', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2736', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2805', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL281', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2905', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2963', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3029', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3090', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3161', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3302', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3309', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3325', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3372', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3422', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3514', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3562', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3652', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL3661', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4334', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4440', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4547', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4639', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4662', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4698', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL475', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4790', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4838', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4885', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL4939', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5064', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5066', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL51', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5102', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5116', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5192', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5226', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5250', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5282', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL536', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5401', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5415', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5503', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5506', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL554', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5544', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5595', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5648', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5801', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5821', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6179', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6201', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6277', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6288', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6358', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6369', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6408', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6425', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6439', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6509', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6533', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6556', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL673', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6731', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6766', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6775', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6802', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6834', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6890', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6953', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6957', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7024', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7198', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7216', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL728', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7314', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7418', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7431', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7432', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7513', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7522', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7617', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7623', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7708', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7777', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL787', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7907', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7951', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7956', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8004', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8058', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL811', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8136', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8162', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8187', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8286', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8300', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8316', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8339', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8366', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8389', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8446', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8487', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8546', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8578', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8643', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8774', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8829', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8846', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL8942', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9046', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9110', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL917', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9189', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9206', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9241', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9331', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9429', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9434', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9495', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9517', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9558', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9650', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9748', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9830', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9842', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9878', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9893', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9945', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('T-Cx200', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx201', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx202', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx203', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx204', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx205', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx206', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx207', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx208', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx209', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx210', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx211', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx212', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx213', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('T-Cx214', 1, 'LOST LOST', '1', NULL, NULL, NULL, NULL, NULL, 0.00, 'A'), -('CELL4021', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5255', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5730', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2540', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7376', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2614', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL5471', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2588', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL570', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2854', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL6683', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL1382', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL2051', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL7086', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9220', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'), -('CELL9701', 1, 'LOST', '1', NULL, NULL, NULL, NULL, NULL, 20000.00, 'A'); - --- --- Data for Name: robots; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO robots (id, name, type, year, datetime, text) -VALUES -(1, 'Robotina', 'mechanical', 1972, '1972-01-01 00:00:00', 'text'), -(2, 'Astro Boy', 'mechanical', 1952, '1952-01-01 00:00:00', 'text'), -(3, 'Terminator', 'cyborg', 2029, '2029-01-01 00:00:00', 'text'); - --- --- Data for Name: robots_parts; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO robots_parts (id, robots_id, parts_id) -VALUES - (1, 1, 1), - (2, 1, 2), - (3, 1, 3); - --- --- Data for Name: subscriptores; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO subscriptores (id, email, created_at, status) -VALUES -(43, 'fuego@hotmail.com', '2012-04-14 23:30:33', 'P'); - --- --- Data for Name: tipo_documento; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO tipo_documento (id, detalle) -VALUES - (1, 'TIPO'), - (2, 'TIPO'), - (3, 'TIPO'), - (4, 'TIPO'), - (5, 'TIPO'), - (6, 'TIPO'), - (7, 'TIPO'), - (8, 'TIPO'), - (9, 'TIPO'), - (10, 'TIPO'), - (11, 'TIPO'), - (12, 'TIPO'), - (13, 'TIPO'), - (14, 'TIPO'), - (15, 'TIPO'), - (16, 'TIPO'), - (17, 'TIPO'), - (18, 'TIPO'), - (19, 'TIPO'), - (20, 'TIPO'), - (21, 'TIPO'), - (22, 'TIPO'), - (23, 'TIPO'), - (24, 'TIPO'), - (25, 'TIPO'), - (26, 'TIPO'), - (27, 'TIPO'), - (28, 'TIPO'), - (29, 'TIPO'), - (30, 'TIPO'), - (31, 'TIPO'), - (32, 'TIPO'), - (33, 'TIPO'), - (34, 'TIPO'), - (35, 'TIPO'), - (36, 'TIPO'), - (37, 'TIPO'), - (38, 'TIPO'), - (39, 'TIPO'), - (40, 'TIPO'), - (41, 'TIPO'), - (42, 'TIPO'), - (43, 'TIPO'), - (44, 'TIPO'), - (45, 'TIPO'), - (46, 'TIPO'), - (47, 'TIPO'), - (48, 'TIPO'), - (49, 'TIPO'), - (50, 'TIPO'), - (51, 'TIPO'), - (52, 'TIPO'), - (53, 'TIPO'), - (54, 'TIPO'), - (55, 'TIPO'), - (56, 'TIPO'), - (57, 'TIPO'), - (58, 'TIPO'), - (59, 'TIPO'), - (60, 'TIPO'), - (61, 'TIPO'), - (62, 'TIPO'), - (63, 'TIPO'), - (64, 'TIPO'), - (65, 'TIPO'), - (66, 'TIPO'), - (67, 'TIPO'), - (68, 'TIPO'), - (69, 'TIPO'), - (70, 'TIPO'), - (71, 'TIPO'), - (72, 'TIPO'), - (73, 'TIPO'), - (74, 'TIPO'), - (75, 'TIPO'), - (76, 'TIPO'), - (77, 'TIPO'), - (78, 'TIPO'), - (79, 'TIPO'), - (80, 'TIPO'), - (81, 'TIPO'), - (82, 'TIPO'), - (83, 'TIPO'), - (84, 'TIPO'), - (85, 'TIPO'), - (86, 'TIPO'), - (87, 'TIPO'), - (88, 'TIPO'), - (89, 'TIPO'), - (90, 'TIPO'), - (91, 'TIPO'), - (92, 'TIPO'), - (93, 'TIPO'), - (94, 'TIPO'), - (95, 'TIPO'), - (96, 'TIPO'), - (97, 'TIPO'), - (98, 'TIPO'), - (99, 'TIPO'), - (100, 'TIPO'), - (101, 'TIPO'), - (102, 'TIPO'), - (103, 'TIPO'), - (104, 'TIPO'), - (105, 'TIPO'), - (106, 'TIPO'), - (107, 'TIPO'), - (108, 'TIPO'), - (109, 'TIPO'), - (110, 'TIPO'), - (111, 'TIPO'), - (112, 'TIPO'), - (113, 'TIPO'), - (114, 'TIPO'), - (115, 'TIPO'), - (116, 'TIPO'), - (117, 'TIPO'), - (118, 'TIPO'), - (119, 'TIPO'), - (120, 'TIPO'), - (121, 'TIPO'), - (122, 'TIPO'), - (123, 'TIPO'), - (124, 'TIPO'), - (125, 'TIPO'), - (126, 'TIPO'), - (127, 'TIPO'), - (128, 'TIPO'), - (129, 'TIPO'), - (130, 'TIPO'), - (131, 'TIPO'), - (132, 'TIPO'), - (133, 'TIPO'), - (134, 'TIPO'), - (135, 'TIPO'), - (136, 'TIPO'), - (137, 'TIPO'), - (138, 'TIPO'), - (139, 'TIPO'), - (140, 'TIPO'), - (141, 'TIPO'), - (142, 'TIPO'), - (143, 'TIPO'), - (144, 'TIPO'), - (145, 'TIPO'), - (146, 'TIPO'), - (147, 'TIPO'), - (148, 'TIPO'), - (149, 'TIPO'), - (150, 'TIPO'), - (151, 'TIPO'), - (152, 'TIPO'), - (153, 'TIPO'), - (154, 'TIPO'), - (155, 'TIPO'), - (156, 'TIPO'), - (157, 'TIPO'), - (158, 'TIPO'), - (159, 'TIPO'), - (160, 'TIPO'), - (161, 'TIPO'), - (162, 'TIPO'), - (163, 'TIPO'), - (164, 'TIPO'), - (165, 'TIPO'), - (166, 'TIPO'), - (167, 'TIPO'), - (168, 'TIPO'), - (169, 'TIPO'), - (170, 'TIPO'), - (171, 'TIPO'), - (172, 'TIPO'), - (173, 'TIPO'), - (174, 'TIPO'), - (175, 'TIPO'), - (176, 'TIPO'), - (177, 'TIPO'), - (178, 'TIPO'), - (179, 'TIPO'), - (180, 'TIPO'), - (181, 'TIPO'), - (182, 'TIPO'), - (183, 'TIPO'), - (184, 'TIPO'), - (185, 'TIPO'), - (186, 'TIPO'), - (187, 'TIPO'), - (188, 'TIPO'), - (189, 'TIPO'), - (190, 'TIPO'), - (191, 'TIPO'), - (192, 'TIPO'), - (193, 'TIPO'), - (194, 'TIPO'), - (195, 'TIPO'), - (196, 'TIPO'), - (197, 'TIPO'), - (198, 'TIPO'), - (199, 'TIPO'), - (200, 'TIPO'), - (201, 'TIPO'), - (202, 'TIPO'), - (203, 'TIPO'), - (204, 'TIPO'), - (205, 'TIPO'), - (206, 'TIPO'), - (207, 'TIPO'), - (208, 'TIPO'), - (209, 'TIPO'), - (210, 'TIPO'), - (211, 'TIPO'), - (212, 'TIPO'), - (213, 'TIPO'), - (214, 'TIPO'), - (215, 'TIPO'), - (216, 'TIPO'), - (217, 'TIPO'), - (218, 'TIPO'), - (219, 'TIPO'), - (220, 'TIPO'), - (221, 'TIPO'), - (222, 'TIPO'), - (223, 'TIPO'), - (224, 'TIPO'), - (225, 'TIPO'), - (226, 'TIPO'), - (227, 'TIPO'), - (228, 'TIPO'), - (229, 'TIPO'), - (230, 'TIPO'), - (231, 'TIPO'), - (232, 'TIPO'), - (233, 'TIPO'), - (234, 'TIPO'), - (235, 'TIPO'), - (236, 'TIPO'), - (237, 'TIPO'), - (238, 'TIPO'), - (239, 'TIPO'), - (240, 'TIPO'), - (241, 'TIPO'), - (242, 'TIPO'), - (243, 'TIPO'), - (244, 'TIPO'), - (245, 'TIPO'), - (246, 'TIPO'), - (247, 'TIPO'), - (248, 'TIPO'), - (249, 'TIPO'), - (250, 'TIPO'), - (251, 'TIPO'), - (252, 'TIPO'), - (253, 'TIPO'), - (254, 'TIPO'), - (255, 'TIPO'), - (256, 'TIPO'), - (257, 'TIPO'), - (258, 'TIPO'), - (259, 'TIPO'), - (260, 'TIPO'), - (261, 'TIPO'), - (262, 'TIPO'), - (263, 'TIPO'), - (264, 'TIPO'), - (265, 'TIPO'), - (266, 'TIPO'), - (267, 'TIPO'), - (268, 'TIPO'), - (269, 'TIPO'), - (270, 'TIPO'), - (271, 'TIPO'), - (272, 'TIPO'), - (273, 'TIPO'), - (274, 'TIPO'), - (275, 'TIPO'), - (276, 'TIPO'), - (277, 'TIPO'), - (278, 'TIPO'), - (279, 'TIPO'), - (280, 'TIPO'), - (281, 'TIPO'), - (282, 'TIPO'), - (283, 'TIPO'), - (284, 'TIPO'), - (285, 'TIPO'), - (286, 'TIPO'), - (287, 'TIPO'), - (288, 'TIPO'), - (289, 'TIPO'), - (290, 'TIPO'), - (291, 'TIPO'), - (292, 'TIPO'), - (293, 'TIPO'), - (294, 'TIPO'), - (295, 'TIPO'), - (296, 'TIPO'), - (297, 'TIPO'), - (298, 'TIPO'), - (299, 'TIPO'), - (300, 'TIPO'), - (301, 'TIPO'), - (302, 'TIPO'), - (303, 'TIPO'), - (304, 'TIPO'), - (305, 'TIPO'), - (306, 'TIPO'), - (307, 'TIPO'), - (308, 'TIPO'), - (309, 'TIPO'), - (310, 'TIPO'), - (311, 'TIPO'), - (312, 'TIPO'), - (313, 'TIPO'), - (314, 'TIPO'), - (315, 'TIPO'), - (316, 'TIPO'), - (317, 'TIPO'), - (318, 'TIPO'), - (319, 'TIPO'), - (320, 'TIPO'), - (321, 'TIPO'), - (322, 'TIPO'), - (323, 'TIPO'), - (324, 'TIPO'), - (325, 'TIPO'), - (326, 'TIPO'), - (327, 'TIPO'), - (328, 'TIPO'), - (329, 'TIPO'), - (330, 'TIPO'), - (331, 'TIPO'), - (332, 'TIPO'), - (333, 'TIPO'), - (334, 'TIPO'), - (335, 'TIPO'), - (336, 'TIPO'), - (337, 'TIPO'), - (338, 'TIPO'), - (339, 'TIPO'), - (340, 'TIPO'), - (341, 'TIPO'), - (342, 'TIPO'), - (343, 'TIPO'), - (344, 'TIPO'), - (345, 'TIPO'), - (346, 'TIPO'), - (347, 'TIPO'), - (348, 'TIPO'), - (349, 'TIPO'), - (350, 'TIPO'), - (351, 'TIPO'), - (352, 'TIPO'), - (353, 'TIPO'), - (354, 'TIPO'), - (355, 'TIPO'), - (356, 'TIPO'), - (357, 'TIPO'), - (358, 'TIPO'), - (359, 'TIPO'), - (360, 'TIPO'), - (361, 'TIPO'), - (362, 'TIPO'), - (363, 'TIPO'), - (364, 'TIPO'), - (365, 'TIPO'), - (366, 'TIPO'), - (367, 'TIPO'), - (368, 'TIPO'), - (369, 'TIPO'), - (370, 'TIPO'), - (371, 'TIPO'), - (372, 'TIPO'), - (373, 'TIPO'), - (374, 'TIPO'), - (375, 'TIPO'), - (376, 'TIPO'), - (377, 'TIPO'), - (378, 'TIPO'), - (379, 'TIPO'), - (380, 'TIPO'), - (381, 'TIPO'), - (382, 'TIPO'), - (383, 'TIPO'), - (384, 'TIPO'), - (385, 'TIPO'), - (386, 'TIPO'), - (387, 'TIPO'), - (388, 'TIPO'), - (389, 'TIPO'), - (390, 'TIPO'), - (391, 'TIPO'), - (392, 'TIPO'), - (393, 'TIPO'), - (394, 'TIPO'), - (395, 'TIPO'), - (396, 'TIPO'), - (397, 'TIPO'), - (398, 'TIPO'), - (399, 'TIPO'), - (400, 'TIPO'), - (401, 'TIPO'), - (402, 'TIPO'), - (403, 'TIPO'), - (404, 'TIPO'), - (405, 'TIPO'), - (406, 'TIPO'), - (407, 'TIPO'), - (408, 'TIPO'), - (409, 'TIPO'), - (410, 'TIPO'), - (411, 'TIPO'), - (412, 'TIPO'), - (413, 'TIPO'), - (414, 'TIPO'), - (415, 'TIPO'), - (416, 'TIPO'), - (417, 'TIPO'), - (418, 'TIPO'), - (419, 'TIPO'), - (420, 'TIPO'), - (421, 'TIPO'), - (422, 'TIPO'), - (423, 'TIPO'), - (424, 'TIPO'), - (425, 'TIPO'), - (426, 'TIPO'), - (427, 'TIPO'), - (428, 'TIPO'), - (429, 'TIPO'), - (430, 'TIPO'), - (431, 'TIPO'), - (432, 'TIPO'), - (433, 'TIPO'), - (434, 'TIPO'), - (435, 'TIPO'), - (436, 'TIPO'), - (437, 'TIPO'), - (438, 'TIPO'), - (439, 'TIPO'), - (440, 'TIPO'), - (441, 'TIPO'), - (442, 'TIPO'), - (443, 'TIPO'), - (444, 'TIPO'), - (445, 'TIPO'), - (446, 'TIPO'), - (447, 'TIPO'), - (448, 'TIPO'), - (449, 'TIPO'), - (450, 'TIPO'), - (451, 'TIPO'), - (452, 'TIPO'), - (453, 'TIPO'), - (454, 'TIPO'), - (455, 'TIPO'), - (456, 'TIPO'), - (457, 'TIPO'), - (458, 'TIPO'), - (459, 'TIPO'), - (460, 'TIPO'), - (461, 'TIPO'), - (462, 'TIPO'), - (463, 'TIPO'), - (464, 'TIPO'), - (465, 'TIPO'), - (466, 'TIPO'), - (467, 'TIPO'), - (468, 'TIPO'), - (469, 'TIPO'), - (470, 'TIPO'), - (471, 'TIPO'), - (472, 'TIPO'), - (473, 'TIPO'), - (474, 'TIPO'), - (475, 'TIPO'), - (476, 'TIPO'), - (477, 'TIPO'), - (478, 'TIPO'), - (479, 'TIPO'), - (480, 'TIPO'), - (481, 'TIPO'), - (482, 'TIPO'), - (483, 'TIPO'), - (484, 'TIPO'), - (485, 'TIPO'), - (486, 'TIPO'), - (487, 'TIPO'), - (488, 'TIPO'), - (489, 'TIPO'), - (490, 'TIPO'), - (491, 'TIPO'), - (492, 'TIPO'), - (493, 'TIPO'), - (494, 'TIPO'), - (495, 'TIPO'), - (496, 'TIPO'), - (497, 'TIPO'), - (498, 'TIPO'), - (499, 'TIPO'), - (500, 'TIPO'), - (501, 'TIPO'), - (502, 'TIPO'), - (503, 'TIPO'), - (504, 'TIPO'), - (505, 'TIPO'), - (506, 'TIPO'), - (507, 'TIPO'), - (508, 'TIPO'), - (509, 'TIPO'), - (510, 'TIPO'), - (511, 'TIPO'), - (512, 'TIPO'), - (513, 'TIPO'), - (514, 'TIPO'), - (515, 'TIPO'), - (516, 'TIPO'), - (517, 'TIPO'), - (518, 'TIPO'), - (519, 'TIPO'), - (520, 'TIPO'), - (521, 'TIPO'), - (522, 'TIPO'), - (523, 'TIPO'), - (524, 'TIPO'), - (525, 'TIPO'), - (526, 'TIPO'), - (527, 'TIPO'), - (528, 'TIPO'), - (529, 'TIPO'), - (530, 'TIPO'), - (531, 'TIPO'), - (532, 'TIPO'), - (533, 'TIPO'), - (534, 'TIPO'), - (535, 'TIPO'), - (536, 'TIPO'), - (537, 'TIPO'), - (538, 'TIPO'), - (539, 'TIPO'), - (540, 'TIPO'), - (541, 'TIPO'), - (542, 'TIPO'), - (543, 'TIPO'), - (544, 'TIPO'), - (545, 'TIPO'), - (546, 'TIPO'), - (547, 'TIPO'), - (548, 'TIPO'), - (549, 'TIPO'), - (550, 'TIPO'), - (551, 'TIPO'), - (552, 'TIPO'), - (553, 'TIPO'), - (554, 'TIPO'), - (555, 'TIPO'), - (556, 'TIPO'), - (557, 'TIPO'), - (558, 'TIPO'), - (559, 'TIPO'), - (560, 'TIPO'), - (561, 'TIPO'), - (562, 'TIPO'), - (563, 'TIPO'), - (564, 'TIPO'), - (565, 'TIPO'), - (566, 'TIPO'), - (567, 'TIPO'), - (568, 'TIPO'), - (569, 'TIPO'), - (570, 'TIPO'), - (571, 'TIPO'), - (572, 'TIPO'), - (573, 'TIPO'), - (574, 'TIPO'), - (575, 'TIPO'), - (576, 'TIPO'), - (577, 'TIPO'), - (578, 'TIPO'), - (579, 'TIPO'), - (580, 'TIPO'), - (581, 'TIPO'), - (582, 'TIPO'), - (583, 'TIPO'), - (584, 'TIPO'), - (585, 'TIPO'), - (586, 'TIPO'), - (587, 'TIPO'), - (588, 'TIPO'), - (589, 'TIPO'), - (590, 'TIPO'), - (591, 'TIPO'), - (592, 'TIPO'), - (593, 'TIPO'), - (594, 'TIPO'), - (595, 'TIPO'), - (596, 'TIPO'), - (597, 'TIPO'), - (598, 'TIPO'), - (599, 'TIPO'), - (600, 'TIPO'), - (601, 'TIPO'), - (602, 'TIPO'), - (603, 'TIPO'), - (604, 'TIPO'), - (605, 'TIPO'), - (606, 'TIPO'), - (607, 'TIPO'), - (608, 'TIPO'), - (609, 'TIPO'), - (610, 'TIPO'), - (611, 'TIPO'), - (612, 'TIPO'), - (613, 'TIPO'), - (614, 'TIPO'), - (615, 'TIPO'), - (616, 'TIPO'), - (617, 'TIPO'), - (618, 'TIPO'), - (619, 'TIPO'), - (620, 'TIPO'), - (621, 'TIPO'), - (622, 'TIPO'), - (623, 'TIPO'), - (624, 'TIPO'), - (625, 'TIPO'), - (626, 'TIPO'), - (627, 'TIPO'), - (628, 'TIPO'), - (629, 'TIPO'), - (630, 'TIPO'), - (631, 'TIPO'), - (632, 'TIPO'), - (633, 'TIPO'), - (634, 'TIPO'), - (635, 'TIPO'), - (636, 'TIPO'), - (637, 'TIPO'), - (638, 'TIPO'), - (639, 'TIPO'), - (640, 'TIPO'), - (641, 'TIPO'), - (642, 'TIPO'), - (643, 'TIPO'), - (644, 'TIPO'), - (645, 'TIPO'), - (646, 'TIPO'), - (647, 'TIPO'), - (648, 'TIPO'), - (649, 'TIPO'), - (650, 'TIPO'), - (651, 'TIPO'), - (652, 'TIPO'), - (653, 'TIPO'), - (654, 'TIPO'), - (655, 'TIPO'), - (656, 'TIPO'), - (657, 'TIPO'), - (658, 'TIPO'), - (659, 'TIPO'), - (660, 'TIPO'), - (661, 'TIPO'), - (662, 'TIPO'), - (663, 'TIPO'), - (664, 'TIPO'), - (665, 'TIPO'), - (666, 'TIPO'), - (667, 'TIPO'), - (668, 'TIPO'), - (669, 'TIPO'), - (670, 'TIPO'), - (671, 'TIPO'), - (672, 'TIPO'), - (673, 'TIPO'), - (674, 'TIPO'), - (675, 'TIPO'), - (676, 'TIPO'), - (677, 'TIPO'), - (678, 'TIPO'), - (679, 'TIPO'), - (680, 'TIPO'), - (681, 'TIPO'), - (682, 'TIPO'), - (683, 'TIPO'), - (684, 'TIPO'), - (685, 'TIPO'), - (686, 'TIPO'), - (687, 'TIPO'), - (688, 'TIPO'), - (689, 'TIPO'), - (690, 'TIPO'), - (691, 'TIPO'), - (692, 'TIPO'), - (693, 'TIPO'), - (694, 'TIPO'), - (695, 'TIPO'), - (696, 'TIPO'), - (697, 'TIPO'), - (698, 'TIPO'), - (699, 'TIPO'), - (700, 'TIPO'), - (701, 'TIPO'), - (702, 'TIPO'), - (703, 'TIPO'), - (704, 'TIPO'), - (705, 'TIPO'), - (706, 'TIPO'), - (707, 'TIPO'), - (708, 'TIPO'), - (709, 'TIPO'), - (710, 'TIPO'), - (711, 'TIPO'), - (712, 'TIPO'), - (713, 'TIPO'), - (714, 'TIPO'), - (715, 'TIPO'), - (716, 'TIPO'), - (717, 'TIPO'), - (718, 'TIPO'), - (719, 'TIPO'), - (720, 'TIPO'), - (721, 'TIPO'), - (722, 'TIPO'), - (723, 'TIPO'), - (724, 'TIPO'), - (725, 'TIPO'), - (726, 'TIPO'), - (727, 'TIPO'), - (728, 'TIPO'), - (729, 'TIPO'), - (730, 'TIPO'), - (731, 'TIPO'), - (732, 'TIPO'), - (733, 'TIPO'), - (734, 'TIPO'), - (735, 'TIPO'), - (736, 'TIPO'), - (737, 'TIPO'), - (738, 'TIPO'), - (739, 'TIPO'), - (740, 'TIPO'), - (741, 'TIPO'), - (742, 'TIPO'), - (743, 'TIPO'), - (744, 'TIPO'), - (745, 'TIPO'), - (746, 'TIPO'), - (747, 'TIPO'), - (748, 'TIPO'), - (749, 'TIPO'), - (750, 'TIPO'), - (751, 'TIPO'), - (752, 'TIPO'), - (753, 'TIPO'), - (754, 'TIPO'), - (755, 'TIPO'), - (756, 'TIPO'), - (757, 'TIPO'), - (758, 'TIPO'), - (759, 'TIPO'), - (760, 'TIPO'), - (761, 'TIPO'), - (762, 'TIPO'), - (763, 'TIPO'), - (764, 'TIPO'), - (765, 'TIPO'), - (766, 'TIPO'), - (767, 'TIPO'), - (768, 'TIPO'), - (769, 'TIPO'), - (770, 'TIPO'), - (771, 'TIPO'), - (772, 'TIPO'), - (773, 'TIPO'), - (774, 'TIPO'), - (775, 'TIPO'), - (776, 'TIPO'), - (777, 'TIPO'), - (778, 'TIPO'), - (779, 'TIPO'), - (780, 'TIPO'), - (781, 'TIPO'), - (782, 'TIPO'), - (783, 'TIPO'), - (784, 'TIPO'), - (785, 'TIPO'), - (786, 'TIPO'), - (787, 'TIPO'), - (788, 'TIPO'), - (789, 'TIPO'), - (790, 'TIPO'), - (791, 'TIPO'), - (792, 'TIPO'), - (793, 'TIPO'), - (794, 'TIPO'), - (795, 'TIPO'), - (796, 'TIPO'), - (797, 'TIPO'), - (798, 'TIPO'), - (799, 'TIPO'), - (800, 'TIPO'), - (801, 'TIPO'), - (802, 'TIPO'), - (803, 'TIPO'), - (804, 'TIPO'), - (805, 'TIPO'), - (806, 'TIPO'), - (807, 'TIPO'), - (808, 'TIPO'), - (809, 'TIPO'), - (810, 'TIPO'), - (811, 'TIPO'), - (812, 'TIPO'), - (813, 'TIPO'), - (814, 'TIPO'), - (815, 'TIPO'), - (816, 'TIPO'), - (817, 'TIPO'), - (818, 'TIPO'), - (819, 'TIPO'), - (820, 'TIPO'), - (821, 'TIPO'), - (822, 'TIPO'), - (823, 'TIPO'), - (824, 'TIPO'), - (825, 'TIPO'), - (826, 'TIPO'), - (827, 'TIPO'), - (828, 'TIPO'), - (829, 'TIPO'), - (830, 'TIPO'), - (831, 'TIPO'), - (832, 'TIPO'), - (833, 'TIPO'), - (834, 'TIPO'), - (835, 'TIPO'), - (836, 'TIPO'), - (837, 'TIPO'), - (838, 'TIPO'), - (839, 'TIPO'), - (840, 'TIPO'), - (841, 'TIPO'), - (842, 'TIPO'), - (843, 'TIPO'), - (844, 'TIPO'), - (845, 'TIPO'), - (846, 'TIPO'), - (847, 'TIPO'), - (848, 'TIPO'), - (849, 'TIPO'), - (850, 'TIPO'), - (851, 'TIPO'), - (852, 'TIPO'), - (853, 'TIPO'), - (854, 'TIPO'), - (855, 'TIPO'), - (856, 'TIPO'), - (857, 'TIPO'), - (858, 'TIPO'), - (859, 'TIPO'), - (860, 'TIPO'), - (861, 'TIPO'), - (862, 'TIPO'), - (863, 'TIPO'), - (864, 'TIPO'), - (865, 'TIPO'), - (866, 'TIPO'), - (867, 'TIPO'), - (868, 'TIPO'), - (869, 'TIPO'), - (870, 'TIPO'), - (871, 'TIPO'), - (872, 'TIPO'), - (873, 'TIPO'), - (874, 'TIPO'), - (875, 'TIPO'), - (876, 'TIPO'), - (877, 'TIPO'), - (878, 'TIPO'), - (879, 'TIPO'), - (880, 'TIPO'), - (881, 'TIPO'), - (882, 'TIPO'), - (883, 'TIPO'), - (884, 'TIPO'), - (885, 'TIPO'), - (886, 'TIPO'), - (887, 'TIPO'), - (888, 'TIPO'), - (889, 'TIPO'), - (890, 'TIPO'), - (891, 'TIPO'), - (892, 'TIPO'), - (893, 'TIPO'), - (894, 'TIPO'), - (895, 'TIPO'), - (896, 'TIPO'), - (897, 'TIPO'), - (898, 'TIPO'), - (899, 'TIPO'), - (900, 'TIPO'), - (901, 'TIPO'), - (902, 'TIPO'), - (903, 'TIPO'), - (904, 'TIPO'), - (905, 'TIPO'), - (906, 'TIPO'), - (907, 'TIPO'), - (908, 'TIPO'), - (909, 'TIPO'), - (910, 'TIPO'), - (911, 'TIPO'), - (912, 'TIPO'), - (913, 'TIPO'), - (914, 'TIPO'), - (915, 'TIPO'), - (916, 'TIPO'), - (917, 'TIPO'), - (918, 'TIPO'), - (919, 'TIPO'), - (920, 'TIPO'), - (921, 'TIPO'), - (922, 'TIPO'), - (923, 'TIPO'), - (924, 'TIPO'), - (925, 'TIPO'), - (926, 'TIPO'), - (927, 'TIPO'), - (928, 'TIPO'), - (929, 'TIPO'), - (930, 'TIPO'), - (931, 'TIPO'), - (932, 'TIPO'), - (933, 'TIPO'), - (934, 'TIPO'), - (935, 'TIPO'), - (936, 'TIPO'), - (937, 'TIPO'), - (938, 'TIPO'), - (939, 'TIPO'), - (940, 'TIPO'), - (941, 'TIPO'), - (942, 'TIPO'), - (943, 'TIPO'), - (944, 'TIPO'), - (945, 'TIPO'), - (946, 'TIPO'), - (947, 'TIPO'), - (948, 'TIPO'), - (949, 'TIPO'), - (950, 'TIPO'), - (951, 'TIPO'), - (952, 'TIPO'), - (953, 'TIPO'), - (954, 'TIPO'), - (955, 'TIPO'), - (956, 'TIPO'), - (957, 'TIPO'), - (958, 'TIPO'), - (959, 'TIPO'), - (960, 'TIPO'), - (961, 'TIPO'), - (962, 'TIPO'), - (963, 'TIPO'), - (964, 'TIPO'), - (965, 'TIPO'), - (966, 'TIPO'), - (967, 'TIPO'), - (968, 'TIPO'), - (969, 'TIPO'), - (970, 'TIPO'), - (971, 'TIPO'), - (972, 'TIPO'), - (973, 'TIPO'), - (974, 'TIPO'), - (975, 'TIPO'), - (976, 'TIPO'), - (977, 'TIPO'), - (978, 'TIPO'), - (979, 'TIPO'), - (980, 'TIPO'), - (981, 'TIPO'), - (982, 'TIPO'), - (983, 'TIPO'), - (984, 'TIPO'), - (985, 'TIPO'), - (986, 'TIPO'), - (987, 'TIPO'), - (988, 'TIPO'), - (989, 'TIPO'), - (990, 'TIPO'), - (991, 'TIPO'), - (992, 'TIPO'), - (993, 'TIPO'), - (994, 'TIPO'), - (995, 'TIPO'), - (996, 'TIPO'), - (997, 'TIPO'), - (998, 'TIPO'), - (999, 'TIPO'), - (1000, 'TIPO'), - (1001, 'TIPO'), - (1002, 'TIPO'), - (1003, 'TIPO'), - (1004, 'TIPO'), - (1005, 'TIPO'), - (1006, 'TIPO'), - (1007, 'TIPO'), - (1008, 'TIPO'), - (1009, 'TIPO'), - (1010, 'TIPO'), - (1011, 'TIPO'), - (1012, 'TIPO'), - (1013, 'TIPO'), - (1014, 'TIPO'), - (1015, 'TIPO'), - (1016, 'TIPO'), - (1017, 'TIPO'), - (1018, 'TIPO'), - (1019, 'TIPO'), - (1020, 'TIPO'), - (1021, 'TIPO'), - (1022, 'TIPO'), - (1023, 'TIPO'), - (1024, 'TIPO'), - (1025, 'TIPO'), - (1026, 'TIPO'), - (1027, 'TIPO'), - (1028, 'TIPO'), - (1029, 'TIPO'), - (1030, 'TIPO'), - (1031, 'TIPO'), - (1032, 'TIPO'), - (1033, 'TIPO'), - (1034, 'TIPO'), - (1035, 'TIPO'), - (1036, 'TIPO'), - (1037, 'TIPO'), - (1038, 'TIPO'), - (1039, 'TIPO'), - (1040, 'TIPO'), - (1041, 'TIPO'), - (1042, 'TIPO'), - (1043, 'TIPO'), - (1044, 'TIPO'), - (1045, 'TIPO'), - (1046, 'TIPO'), - (1047, 'TIPO'), - (1048, 'TIPO'), - (1049, 'TIPO'), - (1050, 'TIPO'), - (1051, 'TIPO'), - (1052, 'TIPO'), - (1053, 'TIPO'), - (1054, 'TIPO'), - (1055, 'TIPO'), - (1056, 'TIPO'), - (1057, 'TIPO'), - (1058, 'TIPO'), - (1059, 'TIPO'), - (1060, 'TIPO'), - (1061, 'TIPO'), - (1062, 'TIPO'), - (1063, 'TIPO'), - (1064, 'TIPO'), - (1065, 'TIPO'), - (1066, 'TIPO'), - (1067, 'TIPO'), - (1068, 'TIPO'), - (1069, 'TIPO'), - (1070, 'TIPO'), - (1071, 'TIPO'), - (1072, 'TIPO'), - (1073, 'TIPO'), - (1074, 'TIPO'), - (1075, 'TIPO'), - (1076, 'TIPO'), - (1077, 'TIPO'), - (1078, 'TIPO'), - (1079, 'TIPO'), - (1080, 'TIPO'), - (1081, 'TIPO'), - (1082, 'TIPO'), - (1083, 'TIPO'), - (1084, 'TIPO'), - (1085, 'TIPO'), - (1086, 'TIPO'), - (1087, 'TIPO'), - (1088, 'TIPO'), - (1089, 'TIPO'), - (1090, 'TIPO'), - (1091, 'TIPO'), - (1092, 'TIPO'), - (1093, 'TIPO'), - (1094, 'TIPO'), - (1095, 'TIPO'), - (1096, 'TIPO'), - (1097, 'TIPO'), - (1098, 'TIPO'), - (1099, 'TIPO'), - (1100, 'TIPO'), - (1101, 'TIPO'), - (1102, 'TIPO'), - (1103, 'TIPO'), - (1104, 'TIPO'), - (1105, 'TIPO'), - (1106, 'TIPO'), - (1107, 'TIPO'), - (1108, 'TIPO'), - (1109, 'TIPO'), - (1110, 'TIPO'), - (1111, 'TIPO'), - (1112, 'TIPO'), - (1113, 'TIPO'), - (1114, 'TIPO'), - (1115, 'TIPO'), - (1116, 'TIPO'), - (1117, 'TIPO'), - (1118, 'TIPO'), - (1119, 'TIPO'), - (1120, 'TIPO'), - (1121, 'TIPO'), - (1122, 'TIPO'), - (1123, 'TIPO'), - (1124, 'TIPO'), - (1125, 'TIPO'), - (1126, 'TIPO'), - (1127, 'TIPO'), - (1128, 'TIPO'), - (1129, 'TIPO'), - (1130, 'TIPO'), - (1131, 'TIPO'), - (1132, 'TIPO'), - (1133, 'TIPO'), - (1134, 'TIPO'), - (1135, 'TIPO'), - (1136, 'TIPO'), - (1137, 'TIPO'), - (1138, 'TIPO'), - (1139, 'TIPO'), - (1140, 'TIPO'), - (1141, 'TIPO'), - (1142, 'TIPO'), - (1143, 'TIPO'), - (1144, 'TIPO'), - (1145, 'TIPO'), - (1146, 'TIPO'), - (1147, 'TIPO'), - (1148, 'TIPO'), - (1149, 'TIPO'), - (1150, 'TIPO'), - (1151, 'TIPO'), - (1152, 'TIPO'), - (1153, 'TIPO'), - (1154, 'TIPO'), - (1155, 'TIPO'), - (1156, 'TIPO'), - (1157, 'TIPO'), - (1158, 'TIPO'), - (1159, 'TIPO'), - (1160, 'TIPO'), - (1161, 'TIPO'), - (1162, 'TIPO'), - (1163, 'TIPO'), - (1164, 'TIPO'), - (1165, 'TIPO'), - (1166, 'TIPO'), - (1167, 'TIPO'), - (1168, 'TIPO'), - (1169, 'TIPO'), - (1170, 'TIPO'), - (1171, 'TIPO'), - (1172, 'TIPO'), - (1173, 'TIPO'), - (1174, 'TIPO'), - (1175, 'TIPO'), - (1176, 'TIPO'), - (1177, 'TIPO'), - (1178, 'TIPO'), - (1179, 'TIPO'), - (1180, 'TIPO'), - (1181, 'TIPO'), - (1182, 'TIPO'), - (1183, 'TIPO'), - (1184, 'TIPO'), - (1185, 'TIPO'), - (1186, 'TIPO'), - (1187, 'TIPO'), - (1188, 'TIPO'), - (1189, 'TIPO'), - (1190, 'TIPO'), - (1191, 'TIPO'), - (1192, 'TIPO'), - (1193, 'TIPO'), - (1194, 'TIPO'), - (1195, 'TIPO'), - (1196, 'TIPO'), - (1197, 'TIPO'), - (1198, 'TIPO'), - (1199, 'TIPO'), - (1200, 'TIPO'), - (1201, 'TIPO'), - (1202, 'TIPO'), - (1203, 'TIPO'), - (1204, 'TIPO'), - (1205, 'TIPO'), - (1206, 'TIPO'), - (1207, 'TIPO'), - (1208, 'TIPO'), - (1209, 'TIPO'), - (1210, 'TIPO'), - (1211, 'TIPO'), - (1212, 'TIPO'), - (1213, 'TIPO'), - (1214, 'TIPO'), - (1215, 'TIPO'), - (1216, 'TIPO'), - (1217, 'TIPO'), - (1218, 'TIPO'), - (1219, 'TIPO'), - (1220, 'TIPO'), - (1221, 'TIPO'), - (1222, 'TIPO'), - (1223, 'TIPO'), - (1224, 'TIPO'), - (1225, 'TIPO'), - (1226, 'TIPO'), - (1227, 'TIPO'), - (1228, 'TIPO'), - (1229, 'TIPO'), - (1230, 'TIPO'), - (1231, 'TIPO'), - (1232, 'TIPO'), - (1233, 'TIPO'), - (1234, 'TIPO'), - (1235, 'TIPO'), - (1236, 'TIPO'), - (1237, 'TIPO'), - (1238, 'TIPO'), - (1239, 'TIPO'), - (1240, 'TIPO'), - (1241, 'TIPO'), - (1242, 'TIPO'), - (1243, 'TIPO'), - (1244, 'TIPO'), - (1245, 'TIPO'), - (1246, 'TIPO'), - (1247, 'TIPO'), - (1248, 'TIPO'), - (1249, 'TIPO'), - (1250, 'TIPO'), - (1251, 'TIPO'), - (1252, 'TIPO'), - (1253, 'TIPO'), - (1254, 'TIPO'), - (1255, 'TIPO'), - (1256, 'TIPO'), - (1257, 'TIPO'), - (1258, 'TIPO'), - (1259, 'TIPO'), - (1260, 'TIPO'), - (1261, 'TIPO'), - (1262, 'TIPO'), - (1263, 'TIPO'), - (1264, 'TIPO'), - (1265, 'TIPO'), - (1266, 'TIPO'), - (1267, 'TIPO'), - (1268, 'TIPO'), - (1269, 'TIPO'), - (1270, 'TIPO'), - (1271, 'TIPO'), - (1272, 'TIPO'), - (1273, 'TIPO'), - (1274, 'TIPO'), - (1275, 'TIPO'), - (1276, 'TIPO'), - (1277, 'TIPO'), - (1278, 'TIPO'), - (1279, 'TIPO'), - (1280, 'TIPO'), - (1281, 'TIPO'), - (1282, 'TIPO'), - (1283, 'TIPO'), - (1284, 'TIPO'), - (1285, 'TIPO'), - (1286, 'TIPO'), - (1287, 'TIPO'), - (1288, 'TIPO'), - (1289, 'TIPO'), - (1290, 'TIPO'), - (1291, 'TIPO'), - (1292, 'TIPO'), - (1293, 'TIPO'), - (1294, 'TIPO'), - (1295, 'TIPO'), - (1296, 'TIPO'), - (1297, 'TIPO'), - (1298, 'TIPO'), - (1299, 'TIPO'), - (1300, 'TIPO'), - (1301, 'TIPO'), - (1302, 'TIPO'), - (1303, 'TIPO'), - (1304, 'TIPO'), - (1305, 'TIPO'), - (1306, 'TIPO'), - (1307, 'TIPO'), - (1308, 'TIPO'), - (1309, 'TIPO'), - (1310, 'TIPO'), - (1311, 'TIPO'), - (1312, 'TIPO'), - (1313, 'TIPO'), - (1314, 'TIPO'), - (1315, 'TIPO'), - (1316, 'TIPO'), - (1317, 'TIPO'), - (1318, 'TIPO'), - (1319, 'TIPO'), - (1320, 'TIPO'), - (1321, 'TIPO'), - (1322, 'TIPO'), - (1323, 'TIPO'), - (1324, 'TIPO'), - (1325, 'TIPO'), - (1326, 'TIPO'), - (1327, 'TIPO'), - (1328, 'TIPO'), - (1329, 'TIPO'), - (1330, 'TIPO'), - (1331, 'TIPO'), - (1332, 'TIPO'), - (1333, 'TIPO'), - (1334, 'TIPO'), - (1335, 'TIPO'), - (1336, 'TIPO'), - (1337, 'TIPO'), - (1338, 'TIPO'), - (1339, 'TIPO'), - (1340, 'TIPO'), - (1341, 'TIPO'), - (1342, 'TIPO'), - (1343, 'TIPO'), - (1344, 'TIPO'), - (1345, 'TIPO'), - (1346, 'TIPO'), - (1347, 'TIPO'), - (1348, 'TIPO'), - (1349, 'TIPO'), - (1350, 'TIPO'), - (1351, 'TIPO'), - (1352, 'TIPO'), - (1353, 'TIPO'), - (1354, 'TIPO'), - (1355, 'TIPO'), - (1356, 'TIPO'), - (1357, 'TIPO'), - (1358, 'TIPO'), - (1359, 'TIPO'), - (1360, 'TIPO'), - (1361, 'TIPO'), - (1362, 'TIPO'), - (1363, 'TIPO'), - (1364, 'TIPO'), - (1365, 'TIPO'), - (1366, 'TIPO'), - (1367, 'TIPO'), - (1368, 'TIPO'), - (1369, 'TIPO'), - (1370, 'TIPO'), - (1371, 'TIPO'), - (1372, 'TIPO'), - (1373, 'TIPO'), - (1374, 'TIPO'), - (1375, 'TIPO'), - (1376, 'TIPO'), - (1377, 'TIPO'), - (1378, 'TIPO'), - (1379, 'TIPO'), - (1380, 'TIPO'), - (1381, 'TIPO'), - (1382, 'TIPO'), - (1383, 'TIPO'), - (1384, 'TIPO'), - (1385, 'TIPO'), - (1386, 'TIPO'), - (1387, 'TIPO'), - (1388, 'TIPO'), - (1389, 'TIPO'), - (1390, 'TIPO'), - (1391, 'TIPO'), - (1392, 'TIPO'), - (1393, 'TIPO'), - (1394, 'TIPO'), - (1395, 'TIPO'), - (1396, 'TIPO'), - (1397, 'TIPO'), - (1398, 'TIPO'), - (1399, 'TIPO'), - (1400, 'TIPO'), - (1401, 'TIPO'), - (1402, 'TIPO'), - (1403, 'TIPO'), - (1404, 'TIPO'), - (1405, 'TIPO'), - (1406, 'TIPO'), - (1407, 'TIPO'), - (1408, 'TIPO'), - (1409, 'TIPO'), - (1410, 'TIPO'), - (1411, 'TIPO'), - (1412, 'TIPO'), - (1413, 'TIPO'), - (1414, 'TIPO'), - (1415, 'TIPO'), - (1416, 'TIPO'), - (1417, 'TIPO'), - (1418, 'TIPO'), - (1419, 'TIPO'), - (1420, 'TIPO'), - (1421, 'TIPO'), - (1422, 'TIPO'), - (1423, 'TIPO'), - (1424, 'TIPO'), - (1425, 'TIPO'), - (1426, 'TIPO'), - (1427, 'TIPO'), - (1428, 'TIPO'), - (1429, 'TIPO'), - (1430, 'TIPO'), - (1431, 'TIPO'), - (1432, 'TIPO'), - (1433, 'TIPO'), - (1434, 'TIPO'), - (1435, 'TIPO'), - (1436, 'TIPO'), - (1437, 'TIPO'), - (1438, 'TIPO'), - (1439, 'TIPO'), - (1440, 'TIPO'), - (1441, 'TIPO'), - (1442, 'TIPO'), - (1443, 'TIPO'), - (1444, 'TIPO'), - (1445, 'TIPO'), - (1446, 'TIPO'), - (1447, 'TIPO'), - (1448, 'TIPO'), - (1449, 'TIPO'), - (1450, 'TIPO'), - (1451, 'TIPO'), - (1452, 'TIPO'), - (1453, 'TIPO'), - (1454, 'TIPO'), - (1455, 'TIPO'), - (1456, 'TIPO'), - (1457, 'TIPO'), - (1458, 'TIPO'), - (1459, 'TIPO'), - (1460, 'TIPO'), - (1461, 'TIPO'), - (1462, 'TIPO'), - (1463, 'TIPO'), - (1464, 'TIPO'), - (1465, 'TIPO'), - (1466, 'TIPO'), - (1467, 'TIPO'), - (1468, 'TIPO'), - (1469, 'TIPO'), - (1470, 'TIPO'), - (1471, 'TIPO'), - (1472, 'TIPO'), - (1473, 'TIPO'), - (1474, 'TIPO'), - (1475, 'TIPO'), - (1476, 'TIPO'), - (1477, 'TIPO'), - (1478, 'TIPO'), - (1479, 'TIPO'), - (1480, 'TIPO'), - (1481, 'TIPO'), - (1482, 'TIPO'), - (1483, 'TIPO'), - (1484, 'TIPO'), - (1485, 'TIPO'), - (1486, 'TIPO'), - (1487, 'TIPO'), - (1488, 'TIPO'), - (1489, 'TIPO'), - (1490, 'TIPO'), - (1491, 'TIPO'), - (1492, 'TIPO'), - (1493, 'TIPO'), - (1494, 'TIPO'), - (1495, 'TIPO'), - (1496, 'TIPO'), - (1497, 'TIPO'), - (1498, 'TIPO'), - (1499, 'TIPO'), - (1500, 'TIPO'), - (1501, 'TIPO'), - (1502, 'TIPO'), - (1503, 'TIPO'), - (1504, 'TIPO'), - (1505, 'TIPO'), - (1506, 'TIPO'), - (1507, 'TIPO'), - (1508, 'TIPO'), - (1509, 'TIPO'), - (1510, 'TIPO'), - (1511, 'TIPO'), - (1512, 'TIPO'), - (1513, 'TIPO'), - (1514, 'TIPO'), - (1515, 'TIPO'), - (1516, 'TIPO'), - (1517, 'TIPO'), - (1518, 'TIPO'), - (1519, 'TIPO'), - (1520, 'TIPO'), - (1521, 'TIPO'), - (1522, 'TIPO'), - (1523, 'TIPO'), - (1524, 'TIPO'), - (1525, 'TIPO'), - (1526, 'TIPO'), - (1527, 'TIPO'), - (1528, 'TIPO'), - (1529, 'TIPO'), - (1530, 'TIPO'), - (1531, 'TIPO'), - (1532, 'TIPO'), - (1533, 'TIPO'), - (1534, 'TIPO'), - (1535, 'TIPO'), - (1536, 'TIPO'), - (1537, 'TIPO'), - (1538, 'TIPO'), - (1539, 'TIPO'), - (1540, 'TIPO'), - (1541, 'TIPO'), - (1542, 'TIPO'), - (1543, 'TIPO'), - (1544, 'TIPO'), - (1545, 'TIPO'), - (1546, 'TIPO'), - (1547, 'TIPO'), - (1548, 'TIPO'), - (1549, 'TIPO'), - (1550, 'TIPO'), - (1551, 'TIPO'), - (1552, 'TIPO'), - (1553, 'TIPO'), - (1554, 'TIPO'), - (1555, 'TIPO'), - (1556, 'TIPO'), - (1557, 'TIPO'), - (1558, 'TIPO'), - (1559, 'TIPO'), - (1560, 'TIPO'), - (1561, 'TIPO'), - (1562, 'TIPO'), - (1563, 'TIPO'), - (1564, 'TIPO'), - (1565, 'TIPO'), - (1566, 'TIPO'), - (1567, 'TIPO'), - (1568, 'TIPO'), - (1569, 'TIPO'), - (1570, 'TIPO'), - (1571, 'TIPO'), - (1572, 'TIPO'), - (1573, 'TIPO'), - (1574, 'TIPO'), - (1575, 'TIPO'), - (1576, 'TIPO'), - (1577, 'TIPO'), - (1578, 'TIPO'), - (1579, 'TIPO'), - (1580, 'TIPO'), - (1581, 'TIPO'), - (1582, 'TIPO'), - (1583, 'TIPO'), - (1584, 'TIPO'), - (1585, 'TIPO'), - (1586, 'TIPO'), - (1587, 'TIPO'), - (1588, 'TIPO'), - (1589, 'TIPO'), - (1590, 'TIPO'), - (1591, 'TIPO'), - (1592, 'TIPO'), - (1593, 'TIPO'), - (1594, 'TIPO'), - (1595, 'TIPO'), - (1596, 'TIPO'), - (1597, 'TIPO'), - (1598, 'TIPO'), - (1599, 'TIPO'), - (1600, 'TIPO'), - (1601, 'TIPO'), - (1602, 'TIPO'), - (1603, 'TIPO'), - (1604, 'TIPO'), - (1605, 'TIPO'), - (1606, 'TIPO'), - (1607, 'TIPO'), - (1608, 'TIPO'), - (1609, 'TIPO'), - (1610, 'TIPO'), - (1611, 'TIPO'), - (1612, 'TIPO'), - (1613, 'TIPO'), - (1614, 'TIPO'), - (1615, 'TIPO'), - (1616, 'TIPO'), - (1617, 'TIPO'), - (1618, 'TIPO'), - (1619, 'TIPO'), - (1620, 'TIPO'), - (1621, 'TIPO'), - (1622, 'TIPO'), - (1623, 'TIPO'), - (1624, 'TIPO'), - (1625, 'TIPO'), - (1626, 'TIPO'), - (1627, 'TIPO'), - (1628, 'TIPO'), - (1629, 'TIPO'), - (1630, 'TIPO'), - (1631, 'TIPO'), - (1632, 'TIPO'), - (1633, 'TIPO'), - (1634, 'TIPO'), - (1635, 'TIPO'), - (1636, 'TIPO'), - (1637, 'TIPO'), - (1638, 'TIPO'), - (1639, 'TIPO'), - (1640, 'TIPO'), - (1641, 'TIPO'), - (1642, 'TIPO'), - (1643, 'TIPO'), - (1644, 'TIPO'), - (1645, 'TIPO'), - (1646, 'TIPO'), - (1647, 'TIPO'), - (1648, 'TIPO'), - (1649, 'TIPO'), - (1650, 'TIPO'), - (1651, 'TIPO'), - (1652, 'TIPO'), - (1653, 'TIPO'), - (1654, 'TIPO'), - (1655, 'TIPO'), - (1656, 'TIPO'), - (1657, 'TIPO'), - (1658, 'TIPO'), - (1659, 'TIPO'), - (1660, 'TIPO'), - (1661, 'TIPO'), - (1662, 'TIPO'), - (1663, 'TIPO'), - (1664, 'TIPO'), - (1665, 'TIPO'), - (1666, 'TIPO'), - (1667, 'TIPO'), - (1668, 'TIPO'), - (1669, 'TIPO'), - (1670, 'TIPO'), - (1671, 'TIPO'), - (1672, 'TIPO'), - (1673, 'TIPO'), - (1674, 'TIPO'), - (1675, 'TIPO'), - (1676, 'TIPO'), - (1677, 'TIPO'), - (1678, 'TIPO'), - (1679, 'TIPO'), - (1680, 'TIPO'), - (1681, 'TIPO'), - (1682, 'TIPO'), - (1683, 'TIPO'), - (1684, 'TIPO'), - (1685, 'TIPO'), - (1686, 'TIPO'), - (1687, 'TIPO'), - (1688, 'TIPO'), - (1689, 'TIPO'), - (1690, 'TIPO'), - (1691, 'TIPO'), - (1692, 'TIPO'), - (1693, 'TIPO'), - (1694, 'TIPO'), - (1695, 'TIPO'), - (1696, 'TIPO'), - (1697, 'TIPO'), - (1698, 'TIPO'), - (1699, 'TIPO'), - (1700, 'TIPO'), - (1701, 'TIPO'), - (1702, 'TIPO'), - (1703, 'TIPO'), - (1704, 'TIPO'), - (1705, 'TIPO'), - (1706, 'TIPO'), - (1707, 'TIPO'), - (1708, 'TIPO'), - (1709, 'TIPO'), - (1710, 'TIPO'), - (1711, 'TIPO'), - (1712, 'TIPO'), - (1713, 'TIPO'), - (1714, 'TIPO'), - (1715, 'TIPO'), - (1716, 'TIPO'), - (1717, 'TIPO'), - (1718, 'TIPO'), - (1719, 'TIPO'), - (1720, 'TIPO'), - (1721, 'TIPO'), - (1722, 'TIPO'), - (1723, 'TIPO'), - (1724, 'TIPO'), - (1725, 'TIPO'), - (1726, 'TIPO'), - (1727, 'TIPO'), - (1728, 'TIPO'), - (1729, 'TIPO'), - (1730, 'TIPO'), - (1731, 'TIPO'), - (1732, 'TIPO'), - (1733, 'TIPO'), - (1734, 'TIPO'), - (1735, 'TIPO'), - (1736, 'TIPO'), - (1737, 'TIPO'), - (1738, 'TIPO'), - (1739, 'TIPO'), - (1740, 'TIPO'), - (1741, 'TIPO'), - (1742, 'TIPO'), - (1743, 'TIPO'), - (1744, 'TIPO'), - (1745, 'TIPO'), - (1746, 'TIPO'), - (1747, 'TIPO'), - (1748, 'TIPO'), - (1749, 'TIPO'), - (1750, 'TIPO'), - (1751, 'TIPO'), - (1752, 'TIPO'), - (1753, 'TIPO'), - (1754, 'TIPO'), - (1755, 'TIPO'), - (1756, 'TIPO'), - (1757, 'TIPO'), - (1758, 'TIPO'), - (1759, 'TIPO'), - (1760, 'TIPO'), - (1761, 'TIPO'), - (1762, 'TIPO'), - (1763, 'TIPO'), - (1764, 'TIPO'), - (1765, 'TIPO'), - (1766, 'TIPO'), - (1767, 'TIPO'), - (1768, 'TIPO'), - (1769, 'TIPO'), - (1770, 'TIPO'), - (1771, 'TIPO'), - (1772, 'TIPO'), - (1773, 'TIPO'), - (1774, 'TIPO'), - (1775, 'TIPO'), - (1776, 'TIPO'), - (1777, 'TIPO'), - (1778, 'TIPO'), - (1779, 'TIPO'), - (1780, 'TIPO'), - (1781, 'TIPO'), - (1782, 'TIPO'), - (1783, 'TIPO'), - (1784, 'TIPO'), - (1785, 'TIPO'), - (1786, 'TIPO'), - (1787, 'TIPO'), - (1788, 'TIPO'), - (1789, 'TIPO'), - (1790, 'TIPO'), - (1791, 'TIPO'), - (1792, 'TIPO'), - (1793, 'TIPO'), - (1794, 'TIPO'), - (1795, 'TIPO'), - (1796, 'TIPO'), - (1797, 'TIPO'), - (1798, 'TIPO'), - (1799, 'TIPO'), - (1800, 'TIPO'), - (1801, 'TIPO'), - (1802, 'TIPO'), - (1803, 'TIPO'), - (1804, 'TIPO'), - (1805, 'TIPO'), - (1806, 'TIPO'), - (1807, 'TIPO'), - (1808, 'TIPO'), - (1809, 'TIPO'), - (1810, 'TIPO'), - (1811, 'TIPO'), - (1812, 'TIPO'), - (1813, 'TIPO'), - (1814, 'TIPO'), - (1815, 'TIPO'), - (1816, 'TIPO'), - (1817, 'TIPO'), - (1818, 'TIPO'), - (1819, 'TIPO'), - (1820, 'TIPO'), - (1821, 'TIPO'), - (1822, 'TIPO'), - (1823, 'TIPO'), - (1824, 'TIPO'), - (1825, 'TIPO'), - (1826, 'TIPO'), - (1827, 'TIPO'), - (1828, 'TIPO'), - (1829, 'TIPO'), - (1830, 'TIPO'), - (1831, 'TIPO'), - (1832, 'TIPO'), - (1833, 'TIPO'), - (1834, 'TIPO'), - (1835, 'TIPO'), - (1836, 'TIPO'), - (1837, 'TIPO'), - (1838, 'TIPO'), - (1839, 'TIPO'), - (1840, 'TIPO'), - (1841, 'TIPO'), - (1842, 'TIPO'), - (1843, 'TIPO'), - (1844, 'TIPO'), - (1845, 'TIPO'), - (1846, 'TIPO'), - (1847, 'TIPO'), - (1848, 'TIPO'), - (1849, 'TIPO'), - (1850, 'TIPO'), - (1851, 'TIPO'), - (1852, 'TIPO'), - (1853, 'TIPO'), - (1854, 'TIPO'), - (1855, 'TIPO'), - (1856, 'TIPO'), - (1857, 'TIPO'), - (1858, 'TIPO'), - (1859, 'TIPO'), - (1860, 'TIPO'), - (1861, 'TIPO'), - (1862, 'TIPO'), - (1863, 'TIPO'), - (1864, 'TIPO'), - (1865, 'TIPO'), - (1866, 'TIPO'), - (1867, 'TIPO'), - (1868, 'TIPO'), - (1869, 'TIPO'), - (1870, 'TIPO'), - (1871, 'TIPO'), - (1872, 'TIPO'), - (1873, 'TIPO'), - (1874, 'TIPO'), - (1875, 'TIPO'), - (1876, 'TIPO'), - (1877, 'TIPO'), - (1878, 'TIPO'), - (1879, 'TIPO'), - (1880, 'TIPO'), - (1881, 'TIPO'), - (1882, 'TIPO'), - (1883, 'TIPO'), - (1884, 'TIPO'), - (1885, 'TIPO'), - (1886, 'TIPO'), - (1887, 'TIPO'), - (1888, 'TIPO'), - (1889, 'TIPO'), - (1890, 'TIPO'), - (1891, 'TIPO'), - (1892, 'TIPO'), - (1893, 'TIPO'), - (1894, 'TIPO'), - (1895, 'TIPO'), - (1896, 'TIPO'), - (1897, 'TIPO'), - (1898, 'TIPO'), - (1899, 'TIPO'), - (1900, 'TIPO'), - (1901, 'TIPO'), - (1902, 'TIPO'), - (1903, 'TIPO'), - (1904, 'TIPO'), - (1905, 'TIPO'), - (1906, 'TIPO'), - (1907, 'TIPO'), - (1908, 'TIPO'), - (1909, 'TIPO'), - (1910, 'TIPO'), - (1911, 'TIPO'), - (1912, 'TIPO'), - (1913, 'TIPO'), - (1914, 'TIPO'), - (1915, 'TIPO'), - (1916, 'TIPO'), - (1917, 'TIPO'), - (1918, 'TIPO'), - (1919, 'TIPO'), - (1920, 'TIPO'), - (1921, 'TIPO'), - (1922, 'TIPO'), - (1923, 'TIPO'), - (1924, 'TIPO'), - (1925, 'TIPO'), - (1926, 'TIPO'), - (1927, 'TIPO'), - (1928, 'TIPO'), - (1929, 'TIPO'), - (1930, 'TIPO'), - (1931, 'TIPO'), - (1932, 'TIPO'), - (1933, 'TIPO'), - (1934, 'TIPO'), - (1935, 'TIPO'), - (1936, 'TIPO'), - (1937, 'TIPO'), - (1938, 'TIPO'), - (1939, 'TIPO'), - (1940, 'TIPO'), - (1941, 'TIPO'), - (1942, 'TIPO'), - (1943, 'TIPO'), - (1944, 'TIPO'), - (1945, 'TIPO'), - (1946, 'TIPO'), - (1947, 'TIPO'), - (1948, 'TIPO'), - (1949, 'TIPO'), - (1950, 'TIPO'), - (1951, 'TIPO'), - (1952, 'TIPO'), - (1953, 'TIPO'), - (1954, 'TIPO'), - (1955, 'TIPO'), - (1956, 'TIPO'), - (1957, 'TIPO'), - (1958, 'TIPO'), - (1959, 'TIPO'), - (1960, 'TIPO'), - (1961, 'TIPO'), - (1962, 'TIPO'), - (1963, 'TIPO'), - (1964, 'TIPO'), - (1965, 'TIPO'), - (1966, 'TIPO'), - (1967, 'TIPO'), - (1968, 'TIPO'), - (1969, 'TIPO'), - (1970, 'TIPO'), - (1971, 'TIPO'), - (1972, 'TIPO'), - (1973, 'TIPO'), - (1974, 'TIPO'), - (1975, 'TIPO'), - (1976, 'TIPO'), - (1977, 'TIPO'), - (1978, 'TIPO'), - (1979, 'TIPO'), - (1980, 'TIPO'), - (1981, 'TIPO'), - (1982, 'TIPO'), - (1983, 'TIPO'), - (1984, 'TIPO'), - (1985, 'TIPO'), - (1986, 'TIPO'), - (1987, 'TIPO'), - (1988, 'TIPO'), - (1989, 'TIPO'), - (1990, 'TIPO'), - (1991, 'TIPO'), - (1992, 'TIPO'), - (1993, 'TIPO'), - (1994, 'TIPO'), - (1995, 'TIPO'), - (1996, 'TIPO'), - (1997, 'TIPO'), - (1998, 'TIPO'), - (1999, 'TIPO'), - (2000, 'TIPO'); - --- --- Name: parts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: --- - -ALTER TABLE ONLY parts ADD CONSTRAINT parts_pkey PRIMARY KEY (id); - --- --- Name: personas_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: --- - -ALTER TABLE ONLY personas ADD CONSTRAINT personas_pkey PRIMARY KEY (cedula); - --- --- Name: personnes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: --- - -ALTER TABLE ONLY personnes ADD CONSTRAINT personnes_pkey PRIMARY KEY (cedula); - --- --- Name: prueba_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: --- - -ALTER TABLE ONLY prueba ADD CONSTRAINT prueba_pkey PRIMARY KEY (id); - --- --- Name: robots_parts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: --- - -ALTER TABLE ONLY robots_parts ADD CONSTRAINT robots_parts_pkey PRIMARY KEY (id); - --- --- Name: robots_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: --- - -ALTER TABLE ONLY robots ADD CONSTRAINT robots_pkey PRIMARY KEY (id); - --- --- Name: subscriptores_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: --- - -ALTER TABLE ONLY subscriptores ADD CONSTRAINT subscriptores_pkey PRIMARY KEY (id); - --- --- Name: tipo_documento_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: --- - -ALTER TABLE ONLY tipo_documento ADD CONSTRAINT tipo_documento_pkey PRIMARY KEY (id); - --- --- Name: personas_estado_idx; Type: INDEX; Schema: public; Owner: postgres; Tablespace: --- - -CREATE INDEX personas_estado_idx ON personas USING btree (estado); - --- --- Name: robots_parts_parts_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace: --- - -CREATE INDEX robots_parts_parts_id ON robots_parts USING btree (parts_id); - --- --- Name: robots_parts_robots_id; Type: INDEX; Schema: public; Owner: postgres; Tablespace: --- - -CREATE INDEX robots_parts_robots_id ON robots_parts USING btree (robots_id); - --- --- Name: robots_parts_ibfk_1; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY robots_parts ADD CONSTRAINT robots_parts_ibfk_1 FOREIGN KEY (robots_id) REFERENCES robots(id); - --- --- Name: robots_parts_ibfk_2; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY robots_parts ADD CONSTRAINT robots_parts_ibfk_2 FOREIGN KEY (parts_id) REFERENCES parts(id); - --- --- Name: table_with_string_field; Type: TABLE DATA; Schema: public; Owner: postgres --- - -DROP TABLE IF EXISTS table_with_string_field; -CREATE TABLE table_with_string_field -( - id integer NOT NULL, - field character varying(70) NOT NULL -); - - - -drop type if exists type_enum_size; -create type type_enum_size as enum -( - 'xs', - 's', - 'm', - 'l', - 'xl' -); - -drop table if exists dialect_table; -create table dialect_table -( - field_primary serial not null - constraint dialect_table_pk - primary key, - field_blob text, - field_bit bit, - field_bit_default bit default B'1'::"bit", - field_bigint bigint, - field_bigint_default bigint default 1, - field_boolean boolean, - field_boolean_default boolean default true, - field_char char(10), - field_char_default char(10) default 'ABC'::bpchar, - field_decimal numeric(10,4), - field_decimal_default numeric(10,4) default 14.5678, - field_enum type_enum_size, - field_integer integer, - field_integer_default integer default 1, - field_json json, - field_float numeric(10,4), - field_float_default numeric(10,4) default 14.5678, - field_date date, - field_date_default date default '2018-10-01':: date, - field_datetime timestamp, - field_datetime_default timestamp default '2018-10-01 12:34:56':: timestamp without time zone, - field_time time, - field_time_default time default '12:34:56':: time without time zone, - field_timestamp timestamp, - field_timestamp_default timestamp default '2018-10-01 12:34:56':: timestamp without time zone, - field_mediumint integer, - field_mediumint_default integer default 1, - field_smallint smallint, - field_smallint_default smallint default 1, - field_tinyint smallint, - field_tinyint_default smallint default 1, - field_longtext text, - field_mediumtext text, - field_tinytext text, - field_text text, - field_varchar varchar(10), - field_varchar_default varchar(10) default 'D':: character varying -); - -alter table public.dialect_table OWNER TO postgres; - -create index dialect_table_index -on dialect_table (field_bigint); - -create index dialect_table_two_fields -on dialect_table (field_char, field_char_default); - -create unique index dialect_table_unique -on dialect_table (field_integer); - -drop table if exists dialect_table_remote; -create table dialect_table_remote -( - field_primary serial not null - constraint dialect_table_remote_pk - primary key, - field_text varchar(20) -); -alter table public.dialect_table_remote OWNER TO postgres; - -drop table if exists dialect_table_intermediate; -create table dialect_table_intermediate -( - field_primary_id integer, - field_remote_id integer -); -alter table public.dialect_table_intermediate OWNER TO postgres; - -alter table only dialect_table_intermediate - add constraint dialect_table_intermediate_primary__fk - foreign key (field_primary_id); - references dialect_table (field_primary) - on update cascade on delete restrict; - -alter table only dialect_table_intermediate - add constraint dialect_table_intermediate_remote__fk - foreign key (field_remote_id); - references dialect_table_remote (field_primary); - --- --- Name: public; Type: ACL; Schema: -; Owner: postgres --- - -REVOKE ALL ON SCHEMA public FROM PUBLIC; -REVOKE ALL ON SCHEMA public FROM postgres; -GRANT ALL ON SCHEMA public TO postgres; -GRANT ALL ON SCHEMA public TO PUBLIC; diff --git a/tests/_data/vendor/Example/Adapter/LeAnotherSome.inc b/tests/_data/vendor/Example/Adapter/LeAnotherSome.inc deleted file mode 100644 index d380db58fa4..00000000000 --- a/tests/_data/vendor/Example/Adapter/LeAnotherSome.inc +++ /dev/null @@ -1,7 +0,0 @@ -<?php - -namespace Example\Adapter; - -class LeAnotherSome -{ -} diff --git a/tests/_data/vendor/Example/Adapter/LeCoolSome.php b/tests/_data/vendor/Example/Adapter/LeCoolSome.php deleted file mode 100644 index 84eb4d9322c..00000000000 --- a/tests/_data/vendor/Example/Adapter/LeCoolSome.php +++ /dev/null @@ -1,7 +0,0 @@ -<?php - -namespace Example\Adapter; - -class LeCoolSome -{ -} diff --git a/tests/_data/vendor/Example/Adapter/LeSome.php b/tests/_data/vendor/Example/Adapter/LeSome.php deleted file mode 100644 index 3f615ee24d1..00000000000 --- a/tests/_data/vendor/Example/Adapter/LeSome.php +++ /dev/null @@ -1,7 +0,0 @@ -<?php - -namespace Example\Adapter; - -class LeSome -{ -} diff --git a/tests/_data/vendor/Example/Adapter/Some.php b/tests/_data/vendor/Example/Adapter/Some.php deleted file mode 100644 index e933baad8f3..00000000000 --- a/tests/_data/vendor/Example/Adapter/Some.php +++ /dev/null @@ -1,7 +0,0 @@ -<?php - -namespace Example\Adapter; - -class Some -{ -} diff --git a/tests/_data/vendor/Example/Adapter/SomeCool.php b/tests/_data/vendor/Example/Adapter/SomeCool.php deleted file mode 100644 index 342a8814a0f..00000000000 --- a/tests/_data/vendor/Example/Adapter/SomeCool.php +++ /dev/null @@ -1,7 +0,0 @@ -<?php - -namespace Example\Adapter; - -class SomeCool -{ -} diff --git a/tests/_data/vendor/Example/Adapter2/Another.php b/tests/_data/vendor/Example/Adapter2/Another.php deleted file mode 100644 index d6e37a35a17..00000000000 --- a/tests/_data/vendor/Example/Adapter2/Another.php +++ /dev/null @@ -1,7 +0,0 @@ -<?php - -namespace Example\Adapter; - -class Another -{ -} diff --git a/tests/_data/vendor/Example/Dialects/LeDialect.php b/tests/_data/vendor/Example/Dialects/LeDialect.php deleted file mode 100644 index a1b85fe4542..00000000000 --- a/tests/_data/vendor/Example/Dialects/LeDialect.php +++ /dev/null @@ -1,5 +0,0 @@ -<?php - -class LeDialect -{ -} diff --git a/tests/_data/vendor/Example/Engines/LeEngine.php b/tests/_data/vendor/Example/Engines/LeEngine.php deleted file mode 100644 index fe345438cf7..00000000000 --- a/tests/_data/vendor/Example/Engines/LeEngine.php +++ /dev/null @@ -1,7 +0,0 @@ -<?php - -namespace Example\Engines; - -class LeEngine -{ -} diff --git a/tests/_data/vendor/Example/Engines/LeEngine2.php b/tests/_data/vendor/Example/Engines/LeEngine2.php deleted file mode 100644 index f9e70b40426..00000000000 --- a/tests/_data/vendor/Example/Engines/LeEngine2.php +++ /dev/null @@ -1,7 +0,0 @@ -<?php - -namespace Example\Engines; - -class LeEngine2 -{ -} diff --git a/tests/_data/vendor/Example/Engines/LeOtherEngine.inc b/tests/_data/vendor/Example/Engines/LeOtherEngine.inc deleted file mode 100644 index 0143f969ec8..00000000000 --- a/tests/_data/vendor/Example/Engines/LeOtherEngine.inc +++ /dev/null @@ -1,11 +0,0 @@ -<?php - -namespace Example\Engines; - -class LeOtherEngine -{ - public function some() - { - return true; - } -} diff --git a/tests/_data/vendor/Example/Example/Example.php b/tests/_data/vendor/Example/Example/Example.php deleted file mode 100644 index 25a0c446ad4..00000000000 --- a/tests/_data/vendor/Example/Example/Example.php +++ /dev/null @@ -1,7 +0,0 @@ -<?php - -namespace Example\Example; - -class Example -{ -} diff --git a/tests/_data/vendor/Example/Other/VousTest.php b/tests/_data/vendor/Example/Other/VousTest.php deleted file mode 100644 index 4e130572d39..00000000000 --- a/tests/_data/vendor/Example/Other/VousTest.php +++ /dev/null @@ -1,5 +0,0 @@ -<?php - -class VousTest -{ -} diff --git a/tests/_data/vendor/Example/Test/LeTest.php b/tests/_data/vendor/Example/Test/LeTest.php deleted file mode 100644 index b475021c822..00000000000 --- a/tests/_data/vendor/Example/Test/LeTest.php +++ /dev/null @@ -1,5 +0,0 @@ -<?php - -class LeTest -{ -} diff --git a/tests/_data/vendor/Example/Test/MoiTest.php b/tests/_data/vendor/Example/Test/MoiTest.php deleted file mode 100644 index 7f9aa2e2d6c..00000000000 --- a/tests/_data/vendor/Example/Test/MoiTest.php +++ /dev/null @@ -1,5 +0,0 @@ -<?php - -class MoiTest -{ -} diff --git a/tests/_data/vendor/Example/Types/SomeType.php b/tests/_data/vendor/Example/Types/SomeType.php deleted file mode 100644 index 98b0ed9f314..00000000000 --- a/tests/_data/vendor/Example/Types/SomeType.php +++ /dev/null @@ -1,5 +0,0 @@ -<?php - -class SomeType -{ -} diff --git a/tests/_data/views/exception/index.phtml b/tests/_data/views/exception/index.phtml deleted file mode 100644 index b63bb379ad1..00000000000 --- a/tests/_data/views/exception/index.phtml +++ /dev/null @@ -1,3 +0,0 @@ -<?php - -echo "We are in index"; diff --git a/tests/_data/views/exception/second.phtml b/tests/_data/views/exception/second.phtml deleted file mode 100644 index bfc1356fa7b..00000000000 --- a/tests/_data/views/exception/second.phtml +++ /dev/null @@ -1,3 +0,0 @@ -<?php - -echo "We are in second"; diff --git a/tests/_data/views/html5.phtml b/tests/_data/views/html5.phtml deleted file mode 100644 index 09833136aff..00000000000 --- a/tests/_data/views/html5.phtml +++ /dev/null @@ -1 +0,0 @@ -<!DOCTYPE html><html><?php echo $this->getContent() ?></html> diff --git a/tests/_data/views/index.phtml b/tests/_data/views/index.phtml deleted file mode 100644 index 293d2f3c073..00000000000 --- a/tests/_data/views/index.phtml +++ /dev/null @@ -1 +0,0 @@ -<html><?php echo $this->getContent() ?></html> diff --git a/tests/_data/views/layouts/after.phtml b/tests/_data/views/layouts/after.phtml deleted file mode 100644 index 62a6fc9633b..00000000000 --- a/tests/_data/views/layouts/after.phtml +++ /dev/null @@ -1 +0,0 @@ -<div class="after-layout"><?php echo $this->getContent(); ?></div> \ No newline at end of file diff --git a/tests/_data/views/layouts/before.phtml b/tests/_data/views/layouts/before.phtml deleted file mode 100644 index 2e247d9a4bf..00000000000 --- a/tests/_data/views/layouts/before.phtml +++ /dev/null @@ -1 +0,0 @@ -<div class="before-layout"><?php echo $this->getContent(); ?></div> \ No newline at end of file diff --git a/tests/_data/views/layouts/test.phtml b/tests/_data/views/layouts/test.phtml deleted file mode 100644 index fc4c8ae5637..00000000000 --- a/tests/_data/views/layouts/test.phtml +++ /dev/null @@ -1 +0,0 @@ -<?php echo 'zup'; ?><?php echo $this->getContent(); ?> diff --git a/tests/_data/views/layouts/test13.phtml b/tests/_data/views/layouts/test13.phtml deleted file mode 100644 index 1b8c3a2bde0..00000000000 --- a/tests/_data/views/layouts/test13.phtml +++ /dev/null @@ -1 +0,0 @@ -<div class="controller-layout"><?php echo $this->getContent(); ?></div> \ No newline at end of file diff --git a/tests/_data/views/layouts/test4.mhtml b/tests/_data/views/layouts/test4.mhtml deleted file mode 100644 index 071a331d396..00000000000 --- a/tests/_data/views/layouts/test4.mhtml +++ /dev/null @@ -1,3 +0,0 @@ -{{#some_eval}} -Well, this is the view content: {{content}}. -{{/some_eval}} \ No newline at end of file diff --git a/tests/_data/views/layouts/test6.phtml b/tests/_data/views/layouts/test6.phtml deleted file mode 100644 index 8d6dd04fb4d..00000000000 --- a/tests/_data/views/layouts/test6.phtml +++ /dev/null @@ -1 +0,0 @@ -Well, this is the view content: <?php echo $this->getContent(); ?>. \ No newline at end of file diff --git a/tests/_data/views/partials/.gitignore b/tests/_data/views/partials/.gitignore deleted file mode 100644 index 6f1e0530302..00000000000 --- a/tests/_data/views/partials/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.volt.php diff --git a/tests/_data/views/partials/_partial1.phtml b/tests/_data/views/partials/_partial1.phtml deleted file mode 100644 index 0fdc338517d..00000000000 --- a/tests/_data/views/partials/_partial1.phtml +++ /dev/null @@ -1 +0,0 @@ -Hey, this is a partial, also <?php echo $cool_var; ?> \ No newline at end of file diff --git a/tests/_data/views/partials/_partial2.phtml b/tests/_data/views/partials/_partial2.phtml deleted file mode 100644 index 86d1ef0be49..00000000000 --- a/tests/_data/views/partials/_partial2.phtml +++ /dev/null @@ -1 +0,0 @@ -Hey, this is a second partial, also <?php echo $cool_var; ?> \ No newline at end of file diff --git a/tests/_data/views/partials/_partial3.phtml b/tests/_data/views/partials/_partial3.phtml deleted file mode 100644 index e1dca77b60a..00000000000 --- a/tests/_data/views/partials/_partial3.phtml +++ /dev/null @@ -1 +0,0 @@ -Including <?php $this->partial('partials/_partial1') ?> diff --git a/tests/_data/views/partials/header.mhtml b/tests/_data/views/partials/header.mhtml deleted file mode 100644 index d7732488b5a..00000000000 --- a/tests/_data/views/partials/header.mhtml +++ /dev/null @@ -1 +0,0 @@ -Hello {{ name }} \ No newline at end of file diff --git a/tests/_data/views/partials/header.twig b/tests/_data/views/partials/header.twig deleted file mode 100644 index d7732488b5a..00000000000 --- a/tests/_data/views/partials/header.twig +++ /dev/null @@ -1 +0,0 @@ -Hello {{ name }} \ No newline at end of file diff --git a/tests/_data/views/switch-case/.gitignore b/tests/_data/views/switch-case/.gitignore deleted file mode 100644 index 6f1e0530302..00000000000 --- a/tests/_data/views/switch-case/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.volt.php diff --git a/tests/_data/views/templates/b.volt b/tests/_data/views/templates/b.volt deleted file mode 100644 index 46d04d551fd..00000000000 --- a/tests/_data/views/templates/b.volt +++ /dev/null @@ -1 +0,0 @@ -{% extends 'tests/_data/views/templates/a.volt' %}{% block body %}[B]{% endblock %} diff --git a/tests/_data/views/templates/c.volt b/tests/_data/views/templates/c.volt deleted file mode 100644 index c7c5e0a5090..00000000000 --- a/tests/_data/views/templates/c.volt +++ /dev/null @@ -1 +0,0 @@ -{% extends 'tests/_data/views/templates/b.volt' %}{% block body %}###{{ super() }}###{% endblock %} diff --git a/tests/_data/views/test10/children.extends.volt b/tests/_data/views/test10/children.extends.volt deleted file mode 100644 index 1f2e0873bd7..00000000000 --- a/tests/_data/views/test10/children.extends.volt +++ /dev/null @@ -1,7 +0,0 @@ -{% extends "test10/parent.volt" %} - -{% block title %}Index{% endblock %} - -{% block head %}<style type="text/css">.important { color: #336699; }</style>{% endblock %} - -{% block content %}<h1>Index</h1><p class="important">Welcome on my awesome homepage.</p>{% endblock %} \ No newline at end of file diff --git a/tests/_data/views/test10/children.volt b/tests/_data/views/test10/children.volt deleted file mode 100644 index 41c3bd27077..00000000000 --- a/tests/_data/views/test10/children.volt +++ /dev/null @@ -1,7 +0,0 @@ -{% extends "tests/_data/views/test10/parent.volt" %} - -{% block title %}Index{% endblock %} - -{% block head %}<style type="text/css">.important { color: #336699; }</style>{% endblock %} - -{% block content %}<h1>Index</h1><p class="important">Welcome on my awesome homepage.</p>{% endblock %} diff --git a/tests/_data/views/test10/children2.volt b/tests/_data/views/test10/children2.volt deleted file mode 100644 index 4f073e3d203..00000000000 --- a/tests/_data/views/test10/children2.volt +++ /dev/null @@ -1,9 +0,0 @@ -{% extends "tests/_data/views/test10/parent.volt" %} - -{% block title %}Index{% endblock %} - -{% block head %}<style type="text/css">.important { color: #336699; } </style> {{ super() }} {% endblock %} - -{% block content %}<h1>Index</h1><p class="important">Welcome to my awesome homepage.</p>{% endblock %} - -{% block footer %}{{ super() }}{% endblock %} diff --git a/tests/_data/views/test11/.gitignore b/tests/_data/views/test11/.gitignore deleted file mode 100644 index 6f1e0530302..00000000000 --- a/tests/_data/views/test11/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.volt.php diff --git a/tests/_data/views/test11/index.volt b/tests/_data/views/test11/index.volt deleted file mode 100644 index e92d3643155..00000000000 --- a/tests/_data/views/test11/index.volt +++ /dev/null @@ -1,16 +0,0 @@ -Length Array: {{ arr|length }} -Length Object: {{ obj|length }} -Length String: {{ str|length }} -Length No String: {{ no_str|length }} -Slice Array: {{ arr[0:]|join(',') }} -Slice Array: {{ arr[1:2]|join(',') }} -Slice Array: {{ arr[:2]|join(',') }} -Slice Object: {{ obj[1:]|join(',') }} -Slice Object: {{ obj[1:2]|join(',') }} -Slice Object: {{ obj[:1]|join(',') }} -Slice String: {{ "hello"[:2] }} -Slice String: {{ "hello"[1:2] }} -Slice String: {{ "hello"[2:] }} -Slice No String: {{ 1234[:2] }} -Slice No String: {{ 1234[1:2] }} -Slice No String: {{ 1234[2:] }} \ No newline at end of file diff --git a/tests/_data/views/test13/index.phtml b/tests/_data/views/test13/index.phtml deleted file mode 100644 index b0c57c97820..00000000000 --- a/tests/_data/views/test13/index.phtml +++ /dev/null @@ -1 +0,0 @@ -<div class="action">Action</div> \ No newline at end of file diff --git a/tests/_data/views/test14/loop1.volt b/tests/_data/views/test14/loop1.volt deleted file mode 100644 index b33a5685c4a..00000000000 --- a/tests/_data/views/test14/loop1.volt +++ /dev/null @@ -1,6 +0,0 @@ -{% for item in [5, 6, 7, 8] %} -Index={{ loop.index }} -IndexO={{ loop.index0 }} -RevIndex={{ loop.revindex }} -RevIndexO={{ loop.revindex0 }} -{% endfor %} \ No newline at end of file diff --git a/tests/_data/views/test16/index.phtml b/tests/_data/views/test16/index.phtml deleted file mode 100644 index 65653e49f92..00000000000 --- a/tests/_data/views/test16/index.phtml +++ /dev/null @@ -1 +0,0 @@ -<?php echo isset($this->getView()->set_param); ?> \ No newline at end of file diff --git a/tests/_data/views/test5/index.phtml b/tests/_data/views/test5/index.phtml deleted file mode 100644 index d59462bb0e5..00000000000 --- a/tests/_data/views/test5/index.phtml +++ /dev/null @@ -1,3 +0,0 @@ -<?php - -echo $this->partial('partials/_partial1'); diff --git a/tests/_data/views/test5/missing.phtml b/tests/_data/views/test5/missing.phtml deleted file mode 100644 index c395635afae..00000000000 --- a/tests/_data/views/test5/missing.phtml +++ /dev/null @@ -1,3 +0,0 @@ -<?php - -echo $this->partial('partials/missing'); diff --git a/tests/_data/views/test5/subpartial.phtml b/tests/_data/views/test5/subpartial.phtml deleted file mode 100644 index 0af2364b511..00000000000 --- a/tests/_data/views/test5/subpartial.phtml +++ /dev/null @@ -1,3 +0,0 @@ -<?php - -echo $this->partial('partials/_partial3'); diff --git a/tests/_data/views/test8/index.phtml b/tests/_data/views/test8/index.phtml deleted file mode 100644 index e70417c4346..00000000000 --- a/tests/_data/views/test8/index.phtml +++ /dev/null @@ -1 +0,0 @@ -<?php echo $date; ?> \ No newline at end of file diff --git a/tests/_data/views/test8/leother.phtml b/tests/_data/views/test8/leother.phtml deleted file mode 100644 index e70417c4346..00000000000 --- a/tests/_data/views/test8/leother.phtml +++ /dev/null @@ -1 +0,0 @@ -<?php echo $date; ?> \ No newline at end of file diff --git a/tests/_data/views/test8/other.phtml b/tests/_data/views/test8/other.phtml deleted file mode 100644 index e70417c4346..00000000000 --- a/tests/_data/views/test8/other.phtml +++ /dev/null @@ -1 +0,0 @@ -<?php echo $date; ?> \ No newline at end of file diff --git a/tests/_data/views/test9/index.phtml b/tests/_data/views/test9/index.phtml deleted file mode 100644 index b9fdd260d9f..00000000000 --- a/tests/_data/views/test9/index.phtml +++ /dev/null @@ -1,4 +0,0 @@ -<?php -echo $this->partial('partials/_partial1'); -echo '<br />'; -echo $this->partial('partials/_partial2'); diff --git a/tests/_fixtures/dump/class_properties.txt b/tests/_fixtures/dump/class_properties.txt deleted file mode 100644 index b0366813731..00000000000 --- a/tests/_fixtures/dump/class_properties.txt +++ /dev/null @@ -1,7 +0,0 @@ -Object Phalcon\Test\Debug\ClassProperties ( - ->foo (public) = Integer (1) - ->bar (protected) = Integer (2) - ->baz (private) = Integer (3) - Phalcon\Test\Debug\ClassProperties methods: (0) ( - ) -) diff --git a/tests/_fixtures/metadata/test_describereference.php b/tests/_fixtures/metadata/test_describereference.php deleted file mode 100644 index 0e7c2508deb..00000000000 --- a/tests/_fixtures/metadata/test_describereference.php +++ /dev/null @@ -1,29 +0,0 @@ -<?php - -use Phalcon\Db\Reference; - -/** - * Fixture for Reference method - * - * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.sviridenko@gmail.com> - * @package Helper\Dialect\PostgresqlTrait - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return - new Reference('test_describereferences', [ - 'referencedTable' => 'foreign_key_parent', - 'referencedSchema' => 'phalcon_test', - 'columns' => ['child_int'], - 'referencedColumns' => ['refer_int'], - 'onUpdate' => 'CASCADE', - 'onDelete' => 'RESTRICT', - ]); diff --git a/tests/_fixtures/mvc/model/criteria_test/limit_offset_provider.php b/tests/_fixtures/mvc/model/criteria_test/limit_offset_provider.php deleted file mode 100644 index d0b24edfce4..00000000000 --- a/tests/_fixtures/mvc/model/criteria_test/limit_offset_provider.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -/** - * Fixture for Criteria test - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Unit\Mvc\Model - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [-7, null, 7 ], - ["-7234", null, 7234 ], - ["18", null, 18 ], - ["18", 2, ['number' => 18, 'offset' => 2] ], - ["-1000", -200, ['number' => 1000, 'offset' => 200]], - ["1000", "-200", ['number' => 1000, 'offset' => 200]], - ["0", "-200", null ], - ["%3CMETA%20HTTP-EQUIV%3D%22refresh%22%20CONT ENT%3D%220%3Burl%3Djavascript%3Aqss%3D7%22%3E", 50, null], -]; diff --git a/tests/_fixtures/mvc/model/query_test/data_to_delete_parsing.php b/tests/_fixtures/mvc/model/query_test/data_to_delete_parsing.php deleted file mode 100644 index 67b2633464b..00000000000 --- a/tests/_fixtures/mvc/model/query_test/data_to_delete_parsing.php +++ /dev/null @@ -1,141 +0,0 @@ -<?php - -/** - * Fixture for Query test - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Unit\Mvc\Model - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -use Phalcon\Test\Models\Robots; - -return [ - [ - [ - 'query' => 'DELETE FROM ' . Robots::class, - ], - [ - 'tables' => ['robots',], - 'models' => [Robots::class,], - ], - ], - [ - [ - 'query' => 'DELETE FROM ' . Robots::class . ' AS r WHERE r.id > 100', - ], - [ - 'tables' => [ - ['robots', null, 'r',], - ], - 'models' => [Robots::class,], - 'where' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => ['type' => 'literal', 'value' => '100',], - ], - ], - ], - [ - [ - 'query' => 'DELETE FROM ' . Robots::class . ' as r WHERE r.id > 100', - ], - [ - 'tables' => [ - ['robots', null, 'r',], - ], - 'models' => [Robots::class,], - 'where' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => ['type' => 'literal', 'value' => '100',], - ], - ], - ], - [ - [ - 'query' => 'DELETE FROM ' . Robots::class . ' r LIMIT 10', - ], - [ - 'tables' => [ - ['robots', null, 'r',], - ], - 'models' => array( - Robots::class, - ), - 'limit' => [ - 'number' => ['type' => 'literal', 'value' => '10',], - ], - ], - ], - [ - [ - 'query' => 'DELETE FROM ' . Robots::class . ' r WHERE r.id > 100 LIMIT 10', - ], - [ - 'tables' => [ - ['robots', null, 'r',], - ], - 'models' => [Robots::class,], - 'where' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => ['type' => 'literal', 'value' => '100',], - ], - 'limit' => [ - 'number' => ['type' => 'literal', 'value' => '10',], - ], - ], - ], - // Issue 1011 - [ - [ - 'query' => 'DELETE FROM ' . Robots::class . ' r WHERE r.id > 100 LIMIT :limit:', - ], - [ - 'tables' => [ - ['robots', null, 'r',], - ], - 'models' => [Robots::class,], - 'where' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => ['type' => 'literal', 'value' => '100',], - ], - 'limit' => [ - 'number' => ['type' => 'placeholder', 'value' => ':limit',], - ], - ], - ], -]; diff --git a/tests/_fixtures/mvc/model/query_test/data_to_insert_parsing.php b/tests/_fixtures/mvc/model/query_test/data_to_insert_parsing.php deleted file mode 100644 index 57643f6d885..00000000000 --- a/tests/_fixtures/mvc/model/query_test/data_to_insert_parsing.php +++ /dev/null @@ -1,283 +0,0 @@ -<?php - -/** - * Fixture for Query test - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Unit\Mvc\Model - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -use Phalcon\Test\Models\Robots; -use Phalcon\Test\Models\Some\Products as SomeProducts; -use Phalcon\Test\Models\Robotters; - -return [ - [ - [ - 'query' => 'INSERT INTO ' . Robots::class . ' VALUES (NULL, \'some robot\', 1945)', - ], - [ - 'model' => Robots::class, - 'table' => 'robots', - 'values' => [ - [ - 'type' => 322, - 'value' => ['type' => 'literal', 'value' => 'NULL',], - ], - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'some robot',], - ], - [ - 'type' => 258, - 'value' => ['type' => 'literal', 'value' => '1945',], - ], - ], - ], - ], - [ - [ - 'query' => 'insert into ' . strtolower(Robots::class) . ' values (null, \'some robot\', 1945)', - ], - [ - 'model' => strtolower(Robots::class), - 'table' => 'robots', - 'values' => [ - [ - 'type' => 322, - 'value' => ['type' => 'literal', 'value' => 'NULL',], - ], - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'some robot',], - ], - [ - 'type' => 258, - 'value' => ['type' => 'literal', 'value' => '1945',], - ], - ], - ], - ], - [ - [ - 'query' => 'INSERT INTO ' . SomeProducts::class . ' VALUES ("Some name", 100.15, current_date(), now())', - ], - [ - 'model' => SomeProducts::class, - 'table' => 'le_products', - 'values' => [ - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'Some name',], - ], - [ - 'type' => 259, - 'value' => ['type' => 'literal', 'value' => '100.15',], - ], - [ - 'type' => 350, - 'value' => ['type' => 'functionCall', 'name' => 'current_date',], - ], - [ - 'type' => 350, - 'value' => ['type' => 'functionCall', 'name' => 'now',], - ], - ], - ], - ], - [ - [ - 'query' => 'INSERT INTO ' . Robots::class . ' VALUES ((1+1000*:le_id:), CONCAT(\'some\', \'robot\'), 2011)', - ], - [ - 'model' => Robots::class, - 'table' => 'robots', - 'values' => [ - [ - 'type' => 356, - 'value' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '*', - 'left' => [ - 'type' => 'binary-op', - 'op' => '+', - 'left' => ['type' => 'literal', 'value' => '1',], - 'right' => ['type' => 'literal', 'value' => '1000',], - ], - 'right' => [ - 'type' => 'placeholder', - 'value' => ':le_id', - ], - ], - ], - ], - [ - 'type' => 350, - 'value' => [ - 'type' => 'functionCall', - 'name' => 'CONCAT', - 'arguments' => [ - ['type' => 'literal', 'value' => '\'some\'',], - ['type' => 'literal', 'value' => '\'robot\'',], - ], - ], - ], - [ - 'type' => 258, - 'value' => ['type' => 'literal', 'value' => '2011',], - ], - ], - ], - ], - [ - [ - 'query' => 'INSERT INTO ' . Robots::class . ' (name, type, year) VALUES (\'a name\', \'virtual\', ?0)', - ], - [ - 'model' => Robots::class, - 'table' => 'robots', - 'fields' => ['name', 'type', 'year',], - 'values' => [ - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'a name',], - ], - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'virtual',], - ], - [ - 'type' => 273, - 'value' => ['type' => 'placeholder', 'value' => ':0',], - ], - ], - ], - ], - [ - [ - 'query' => 'INSERT INTO ' . Robotters::class . ' VALUES (NULL, \'some robot\', 1945)', - ], - [ - 'model' => Robotters::class, - 'table' => 'robots', - 'values' => [ - [ - 'type' => 322, - 'value' => ['type' => 'literal', 'value' => 'NULL',], - ], - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'some robot',], - ], - [ - 'type' => 258, - 'value' => ['type' => 'literal', 'value' => '1945',], - ], - ], - ], - ], - [ - [ - 'query' => 'insert into ' . strtolower(Robotters::class) . ' values (null, \'some robot\', 1945)', - ], - [ - 'model' => strtolower(Robotters::class), - 'table' => 'robots', - 'values' => [ - [ - 'type' => 322, - 'value' => ['type' => 'literal', 'value' => 'NULL',], - ], - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'some robot',], - ], - [ - 'type' => 258, - 'value' => ['type' => 'literal', 'value' => '1945',], - ], - ], - ], - ], - [ - [ - 'query' => 'INSERT INTO ' . Robotters::class . ' VALUES ((1+1000*:le_id:), CONCAT(\'some\', \'robot\'), 2011)', - ], - [ - 'model' => Robotters::class, - 'table' => 'robots', - 'values' => [ - [ - 'type' => 356, - 'value' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '*', - 'left' => [ - 'type' => 'binary-op', - 'op' => '+', - 'left' => ['type' => 'literal', 'value' => '1',], - 'right' => ['type' => 'literal', 'value' => '1000',], - ], - 'right' => ['type' => 'placeholder', 'value' => ':le_id',], - ], - ], - ], - [ - 'type' => 350, - 'value' => [ - 'type' => 'functionCall', - 'name' => 'CONCAT', - 'arguments' => [ - ['type' => 'literal', 'value' => '\'some\'',], - ['type' => 'literal', 'value' => '\'robot\'',], - ], - ], - ], - [ - 'type' => 258, - 'value' => ['type' => 'literal', 'value' => '2011',], - ], - ], - ], - ], - [ - [ - 'query' => 'INSERT INTO ' . Robotters::class . ' (theName, theType, theYear) VALUES (\'a name\', \'virtual\', ?0)', - ], - [ - 'model' => Robotters::class, - 'table' => 'robots', - 'fields' => [ - 'theName', - 'theType', - 'theYear', - ], - 'values' => [ - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'a name',], - ], - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'virtual',], - ], - [ - 'type' => 273, - 'value' => ['type' => 'placeholder', 'value' => ':0',], - ], - ], - ], - ], -]; diff --git a/tests/_fixtures/mvc/model/query_test/data_to_update_parsing.php b/tests/_fixtures/mvc/model/query_test/data_to_update_parsing.php deleted file mode 100644 index 47110d0c3d4..00000000000 --- a/tests/_fixtures/mvc/model/query_test/data_to_update_parsing.php +++ /dev/null @@ -1,519 +0,0 @@ -<?php - -/** - * Fixture for Query test - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Unit\Mvc\Model - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -use Phalcon\Test\Models\Robots; -use Phalcon\Test\Models\Some\Products as SomeProducts; - -return [ - [ - [ - 'query' => 'UPDATE ' . Robots::class . ' SET name = \'some name\'', - ], - [ - 'tables' => ['robots',], - 'models' => [Robots::class,], - 'fields' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'values' => [ - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'some name',], - ], - ], - ], - ], - [ - [ - 'query' => 'UPDATE ' . Robots::class . ' SET ' . Robots::class . '.name = \'some name\'', - ], - [ - 'tables' => ['robots',], - 'models' => [Robots::class,], - 'fields' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'values' => [ - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'some name',], - ], - ], - ], - ], - [ - [ - 'query' => 'UPDATE ' . SomeProducts::class . ' SET ' . SomeProducts::class . '.name = "some name"', - ], - [ - 'tables' => ['le_products',], - 'models' => [SomeProducts::class,], - 'fields' => [ - [ - 'type' => 'qualified', - 'domain' => 'le_products', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'values' => [ - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'some name',], - ], - ], - ], - ], - [ - [ - 'query' => 'UPDATE ' . SomeProducts::class . ' p SET p.name = "some name"', - ], - [ - 'tables' => [ - ['le_products', null, 'p',], - ], - 'models' => [SomeProducts::class,], - 'fields' => [ - [ - 'type' => 'qualified', - 'domain' => 'p', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'values' => [ - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'some name',], - ], - ], - ], - ], - [ - [ - 'query' => 'UPDATE ' . Robots::class . ' SET ' . Robots::class . '.name = \'some name\', ' . Robots::class . '.year = 1990', - ], - [ - 'tables' => ['robots',], - 'models' => [Robots::class,], - 'fields' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'year', - 'balias' => 'year', - ], - ], - 'values' => [ - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'some name',], - ], - [ - 'type' => 258, - 'value' => ['type' => 'literal', 'value' => '1990',], - ], - ], - ], - ], - [ - [ - 'query' => 'UPDATE ' . SomeProducts::class . ' p SET p.name = "some name", p.year = 1990', - ], - [ - 'tables' => [ - ['le_products', null, 'p',], - ], - 'models' => [SomeProducts::class,], - 'fields' => [ - [ - 'type' => 'qualified', - 'domain' => 'p', - 'name' => 'name', - 'balias' => 'name', - ], - [ - 'type' => 'qualified', - 'domain' => 'p', - 'name' => 'year', - 'balias' => 'year', - ], - ], - 'values' => [ - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'some name',], - ], - [ - 'type' => 258, - 'value' => ['type' => 'literal', 'value' => '1990',], - ], - ], - ], - ], - [ - [ - 'query' => 'UPDATE ' . Robots::class . ' SET ' . Robots::class . '.name = \'some name\', ' . Robots::class . '.year = YEAR(current_date()) + ' . Robots::class . '.year', - ], - [ - 'tables' => ['robots',], - 'models' => [Robots::class,], - 'fields' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'year', - 'balias' => 'year', - ], - ], - 'values' => [ - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'some name',], - ], - [ - 'type' => 43, - 'value' => [ - 'type' => 'binary-op', - 'op' => '+', - 'left' => [ - 'type' => 'functionCall', - 'name' => 'YEAR', - 'arguments' => [ - ['type' => 'functionCall', 'name' => 'current_date',], - ], - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'year', - 'balias' => 'year', - ], - ], - ], - ], - ], - ], - [ - [ - 'query' => 'UPDATE ' . Robots::class . ' AS r SET r.name = \'some name\', r.year = YEAR(current_date()) + r.year', - ], - [ - 'tables' => [ - ['robots', null, 'r',], - ], - 'models' => [Robots::class,], - 'fields' => [ - [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'name', - ], - [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'year', - 'balias' => 'year', - ], - ], - 'values' => [ - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'some name',], - ], - [ - 'type' => 43, - 'value' => [ - 'type' => 'binary-op', - 'op' => '+', - 'left' => [ - 'type' => 'functionCall', - 'name' => 'YEAR', - 'arguments' => [ - ['type' => 'functionCall', 'name' => 'current_date',], - ], - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'year', - 'balias' => 'year', - ], - ], - ], - ], - ], - ], - [ - [ - 'query' => 'UPDATE ' . Robots::class . ' AS r SET r.name = \'some name\' WHERE r.id > 100', - ], - [ - 'tables' => [ - ['robots', null, 'r',], - ], - 'models' => [Robots::class,], - 'fields' => [ - [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'values' => [ - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'some name',], - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => ['type' => 'literal', 'value' => '100',], - ], - ], - ], - [ - [ - 'query' => 'UPDATE ' . Robots::class . ' as r set r.name = \'some name\', r.year = r.year*2 where r.id > 100 and r.id <= 200', - ], - [ - 'tables' => [ - ['robots', null, 'r',], - ], - 'models' => [Robots::class,], - 'fields' => [ - [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'name', - ], - [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'year', - 'balias' => 'year', - ], - ], - 'values' => [ - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'some name',], - ], - [ - 'type' => 42, - 'value' => [ - 'type' => 'binary-op', - 'op' => '*', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'year', - 'balias' => 'year', - ], - 'right' => ['type' => 'literal', 'value' => '2',], - ], - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '<=', - 'left' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'binary-op', - 'op' => 'AND', - 'left' => [ - 'type' => 'literal', - 'value' => '100', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - ], - ], - 'right' => ['type' => 'literal', 'value' => '200',], - ], - ], - ], - [ - [ - 'query' => 'update ' . strtolower(Robots::class) . ' as r set r.name = \'some name\' LIMIT 10', - ], - [ - 'tables' => [ - ['robots', null, 'r',], - ], - 'models' => [strtolower(Robots::class),], - 'fields' => [ - [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'values' => [ - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'some name',], - ], - ], - 'limit' => [ - 'number' => ['type' => 'literal', 'value' => '10',], - ], - ], - ], - [ - [ - 'query' => 'UPDATE ' . Robots::class . ' r SET r.name = \'some name\' LIMIT 10', - ], - [ - 'tables' => [ - ['robots', null, 'r',], - ], - 'models' => [Robots::class,], - 'fields' => [ - [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'values' => [ - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'some name',], - ], - ], - 'limit' => [ - 'number' => ['type' => 'literal', 'value' => '10',], - ], - ], - ], - [ - [ - 'query' => 'UPDATE ' . Robots::class . ' AS r SET r.name = \'some name\' WHERE r.id > 100 LIMIT 10', - ], - [ - 'tables' => [ - ['robots', null, 'r',], - ], - 'models' => [Robots::class,], - 'fields' => [ - [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'values' => [ - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'some name',], - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => ['type' => 'literal', 'value' => '100',], - ], - 'limit' => [ - 'number' => ['type' => 'literal', 'value' => '10',], - ], - ], - ], - // Issue 1011 - [ - [ - 'query' => 'UPDATE ' . Robots::class . ' r SET r.name = \'some name\' LIMIT ?1', - ], - [ - 'tables' => [ - ['robots', null, 'r', - ], - ], - 'models' => [Robots::class,], - 'fields' => [ - [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'values' => [ - [ - 'type' => 260, - 'value' => ['type' => 'literal', 'value' => 'some name',], - ], - ], - 'limit' => [ - 'number' => ['type' => 'placeholder', 'value' => ':1',], - ], - ], - ], -]; diff --git a/tests/_fixtures/mvc/router_test/data_to_regex_router_host_port.php b/tests/_fixtures/mvc/router_test/data_to_regex_router_host_port.php deleted file mode 100644 index 937302a9d01..00000000000 --- a/tests/_fixtures/mvc/router_test/data_to_regex_router_host_port.php +++ /dev/null @@ -1,56 +0,0 @@ -<?php - -/** - * Fixture for Router test - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [ - 'methodName' => 'add', - '/edit', - [ - 'controller' => 'posts3', - 'action' => 'edit3' - ], - 'hostname' => '', - ], - [ - 'methodName' => 'add', - '/edit', - [ - 'controller' => 'posts', - 'action' => 'edit' - ], - 'hostname' => '', - ], - [ - 'methodName' => 'add', - '/edit', - [ - 'controller' => 'posts2', - 'action' => 'edit2' - ], - 'hostname' => '', - ], - [ - 'methodName' => 'add', - '/edit', - [ - 'controller' => 'posts4', - 'action' => 'edit2' - ], - 'hostname' => '', - ], -]; diff --git a/tests/_fixtures/mvc/router_test/data_to_router.php b/tests/_fixtures/mvc/router_test/data_to_router.php deleted file mode 100644 index 8af01434f86..00000000000 --- a/tests/_fixtures/mvc/router_test/data_to_router.php +++ /dev/null @@ -1,113 +0,0 @@ -<?php - -/** - * Fixture for Router test - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [ - 'methodName' => 'add', - '/', - [ - 'controller' => 'index', - 'action' => 'index' - ], - ], - [ - 'methodName'=> 'add', - '/system/:controller/a/:action/:params', - [ - 'controller' => 1, - 'action' => 2, - 'params' => 3, - ] - ], - [ - 'methodName'=> 'add', - '/([a-z]{2})/:controller', - [ - 'controller' => 2, - 'action' => 'index', - 'language' => 1 - ] - ], - [ - 'methodName'=> 'add', - '/admin/:controller/:action/:int', - [ - 'controller' => 1, - 'action' => 2, - 'id' => 3 - ] - ], - [ - 'methodName'=> 'add', - '/posts/([0-9]{4})/([0-9]{2})/([0-9]{2})/:params', - [ - 'controller' => 'posts', - 'action' => 'show', - 'year' => 1, - 'month' => 2, - 'day' => 3, - 'params' => 4, - ] - ], - [ - 'methodName'=> 'add', - '/manual/([a-z]{2})/([a-z\.]+)\.html', - [ - 'controller' => 'manual', - 'action' => 'show', - 'language' => 1, - 'file' => 2 - ] - ], - [ - 'methodName'=> 'add', - '/named-manual/{language:([a-z]{2})}/{file:[a-z\.]+}\.html', - [ - 'controller' => 'manual', - 'action' => 'show', - ] - ], - [ - 'methodName'=> 'add', - '/very/static/route', - [ - 'controller' => 'static', - 'action' => 'route' - ] - ], - [ - 'methodName'=> 'add', - '/feed/{lang:[a-z]+}/blog/{blog:[a-z\-]+}\.{type:[a-z\-]+}', - 'Feed::get' - ], - [ - 'methodName'=> 'add', - '/posts/{year:[0-9]+}/s/{title:[a-z\-]+}', - 'Posts::show' - ], - [ - 'methodName'=> 'add', - '/posts/delete/{id}', - 'Posts::delete' - ], - [ - 'methodName'=> 'add', - '/show/{id:video([0-9]+)}/{title:[a-z\-]+}', - 'Videos::show' - ], -]; diff --git a/tests/_fixtures/mvc/router_test/data_to_router_host_name.php b/tests/_fixtures/mvc/router_test/data_to_router_host_name.php deleted file mode 100644 index c7f8feb004b..00000000000 --- a/tests/_fixtures/mvc/router_test/data_to_router_host_name.php +++ /dev/null @@ -1,46 +0,0 @@ -<?php - -/** - * Fixture for Router test - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [ - 'methodName' => 'add', - '/edit', - [ - 'controller' => 'posts3', - 'action' => 'edit3' - ], - ], - [ - 'methodName' => 'add', - '/edit', - [ - 'controller' => 'posts', - 'action' => 'edit' - ], - 'hostname' => 'my.phalconphp.com', - ], - [ - 'methodName' => 'add', - '/edit', - [ - 'controller' => 'posts2', - 'action' => 'edit2' - ], - 'hostname' => 'my2.phalconphp.com', - ], -]; diff --git a/tests/_fixtures/mvc/router_test/data_to_router_http.php b/tests/_fixtures/mvc/router_test/data_to_router_http.php deleted file mode 100644 index 5aba7bd09bd..00000000000 --- a/tests/_fixtures/mvc/router_test/data_to_router_http.php +++ /dev/null @@ -1,100 +0,0 @@ -<?php - -/** - * Fixture for Router test - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [ - 'methodName' => 'add', - '/docs/index', - [ - 'controller' => 'documentation2222', - 'action' => 'index' - ], - ], - [ - 'methodName' => 'addPost', - '/docs/index', - [ - 'controller' => 'documentation3', - 'action' => 'index' - ], - ], - [ - 'methodName' => 'addGet', - '/docs/index', - [ - 'controller' => 'documentation4', - 'action' => 'index' - ], - ], - [ - 'methodName' => 'addPut', - '/docs/index', - [ - 'controller' => 'documentation5', - 'action' => 'index' - ], - ], - [ - 'methodName' => 'addDelete', - '/docs/index', - [ - 'controller' => 'documentation6', - 'action' => 'index' - ], - ], - [ - 'methodName' => 'addOptions', - '/docs/index', - [ - 'controller' => 'documentation7', - 'action' => 'index' - ], - ], - [ - 'methodName' => 'addHead', - '/docs/index', - [ - 'controller' => 'documentation8', - 'action' => 'index' - ], - ], - [ - 'methodName' => 'addPurge', - '/docs/index', - [ - 'controller' => 'documentation9', - 'action' => 'index' - ], - ], - [ - 'methodName' => 'addTrace', - '/docs/index', - [ - 'controller' => 'documentation10', - 'action' => 'index' - ], - ], - [ - 'methodName' => 'addConnect', - '/docs/index', - [ - 'controller' => 'documentation11', - 'action' => 'index' - ], - ], -]; diff --git a/tests/_fixtures/mvc/router_test/data_to_router_param.php b/tests/_fixtures/mvc/router_test/data_to_router_param.php deleted file mode 100644 index 145f0c16bbe..00000000000 --- a/tests/_fixtures/mvc/router_test/data_to_router_param.php +++ /dev/null @@ -1,32 +0,0 @@ -<?php - -/** - * Fixture for Router test - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [ - 'methodName' => 'add', - '/some/{name}', - ], - [ - 'methodName' => 'add', - '/some/{name}/{id:[0-9]+}', - ], - [ - 'methodName' => 'add', - '/some/{name}/{id:[0-9]+}/{date}', - ], -]; diff --git a/tests/_fixtures/mvc/router_test/data_to_router_with_hostname.php b/tests/_fixtures/mvc/router_test/data_to_router_with_hostname.php deleted file mode 100644 index 50cbbe70251..00000000000 --- a/tests/_fixtures/mvc/router_test/data_to_router_with_hostname.php +++ /dev/null @@ -1,55 +0,0 @@ -<?php - -/** - * Fixture for Router test - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [ - 'methodName' => 'add', - '/edit', - [ - 'controller' => 'posts3', - 'action' => 'edit3' - ] - ], - [ - 'methodName' => 'add', - '/edit', - [ - 'controller' => 'posts', - 'action' => 'edit' - ], - 'hostname' => '([a-z]+).phalconphp.com', - ], - [ - 'methodName' => 'add', - '/edit', - [ - 'controller' => 'posts2', - 'action' => 'edit2' - ], - 'hostname' => 'mail.([a-z]+).com', - ], - [ - 'methodName' => 'add', - '/edit', - [ - 'controller' => 'posts4', - 'action' => 'edit2' - ], - 'hostname' => '([a-z]+).([a-z]+).net', - ], -]; diff --git a/tests/_fixtures/mvc/router_test/matching_with_converted.php b/tests/_fixtures/mvc/router_test/matching_with_converted.php deleted file mode 100644 index f63f6fb13f1..00000000000 --- a/tests/_fixtures/mvc/router_test/matching_with_converted.php +++ /dev/null @@ -1,36 +0,0 @@ -<?php - -/** - * Fixture for Router test - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [ - '/some-controller/my-action-name/this-is-a-country', - [ - 'controller' => 'somecontroller', - 'action' => 'myactionname', - 'params' => ['this-is-a-country'] - ] - ], - [ - '/BINARY/1101', - [ - 'controller' => 'binary', - 'action' => 'index', - 'params' => [1011] - ] - ] -]; diff --git a/tests/_fixtures/mvc/router_test/matching_with_extra_slashes.php b/tests/_fixtures/mvc/router_test/matching_with_extra_slashes.php deleted file mode 100644 index a2044ce15a2..00000000000 --- a/tests/_fixtures/mvc/router_test/matching_with_extra_slashes.php +++ /dev/null @@ -1,41 +0,0 @@ -<?php - -/** - * Fixture for Router test - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [ - '/index/', - [ - 'controller' => 'index', - 'action' => '', - ] - ], - [ - '/session/start/', - [ - 'controller' => 'session', - 'action' => 'start' - ] - ], - [ - '/users/edit/100/', - [ - 'controller' => 'users', - 'action' => 'edit' - ] - ] -]; diff --git a/tests/_fixtures/mvc/router_test/matching_with_got_router.php b/tests/_fixtures/mvc/router_test/matching_with_got_router.php deleted file mode 100644 index 1388b8cb0bf..00000000000 --- a/tests/_fixtures/mvc/router_test/matching_with_got_router.php +++ /dev/null @@ -1,44 +0,0 @@ -<?php - -/** - * Fixture for Router test - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [ - [ - 'uri' => '/some/hattie', - 'controller' => '', - 'action' => '', - 'params' => ['name' => 'hattie'], - ] - ], - [ - [ - 'uri' => '/some/hattie/100', - 'controller' => '', - 'action' => '', - 'params' => ['name' => 'hattie', 'id' => 100], - ] - ], - [ - [ - 'uri' => '/some/hattie/100/2011-01-02', - 'controller' => '', - 'action' => '', - 'params' => ['name' => 'hattie', 'id' => 100, 'date' => '2011-01-02'], - ] - ], -]; diff --git a/tests/_fixtures/mvc/router_test/matching_with_host_name.php b/tests/_fixtures/mvc/router_test/matching_with_host_name.php deleted file mode 100644 index c2810948cf9..00000000000 --- a/tests/_fixtures/mvc/router_test/matching_with_host_name.php +++ /dev/null @@ -1,48 +0,0 @@ -<?php - -/** - * Fixture for Router test - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [ - [ - 'hostname' => 'localhost', - 'handle' => '/edit' - ], - 'posts3', - ], - [ - [ - 'hostname' => null, - 'handle' => '/edit' - ], - 'posts3', - ], - [ - [ - 'hostname' => 'my.phalconphp.com', - 'handle' => '/edit' - ], - 'posts', - ], - [ - [ - 'hostname' => 'my2.phalconphp.com', - 'handle' => '/edit' - ], - 'posts2', - ], -]; diff --git a/tests/_fixtures/mvc/router_test/matching_with_hostname_regex.php b/tests/_fixtures/mvc/router_test/matching_with_hostname_regex.php deleted file mode 100644 index cd7d46f729e..00000000000 --- a/tests/_fixtures/mvc/router_test/matching_with_hostname_regex.php +++ /dev/null @@ -1,26 +0,0 @@ -<?php - -/** - * Fixture for Router test - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - ['posts3', '/edit', 'localhost'], - ['posts', '/edit', 'my.phalconphp.com'], - ['posts3', '/edit', null], - ['posts2', '/edit', 'mail.example.com'], - ['posts3', '/edit', 'some-domain.com'], - ['posts4', '/edit', 'some.domain.net'], -]; diff --git a/tests/_fixtures/mvc/router_test/matching_with_path_provider.php b/tests/_fixtures/mvc/router_test/matching_with_path_provider.php deleted file mode 100644 index bfe5ecc3d0b..00000000000 --- a/tests/_fixtures/mvc/router_test/matching_with_path_provider.php +++ /dev/null @@ -1,79 +0,0 @@ -<?php - -/** - * Fixture for Router test - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [ - '/route0', - 'Feed', - [ - 'controller' => 'feed' - ] - ], - [ - '/route1', - 'Feed::get', - [ - 'controller' => 'feed', - 'action' => 'get', - ] - ], - [ - '/route2', - 'News::Posts::show', - [ - 'module' => 'News', - 'controller' => 'posts', - 'action' => 'show', - ] - ], - [ - '/route3', - 'MyApp\Controllers\Posts::show', - [ - 'namespace' => 'MyApp\Controllers', - 'controller' => 'posts', - 'action' => 'show', - ] - ], - [ - '/route3', - 'MyApp\Controllers\::show', - [ - 'controller' => '', - 'action' => 'show', - ] - ], - [ - '/route3', - 'News::MyApp\Controllers\Posts::show', - [ - 'module' => 'News', - 'namespace' => 'MyApp\\Controllers', - 'controller' => 'posts', - 'action' => 'show', - ] - ], - [ - '/route3', - '\Posts::show', - [ - 'controller' => 'posts', - 'action' => 'show', - ] - ], -]; diff --git a/tests/_fixtures/mvc/router_test/matching_with_regex_router_host_port.php b/tests/_fixtures/mvc/router_test/matching_with_regex_router_host_port.php deleted file mode 100644 index fce4e6ddd11..00000000000 --- a/tests/_fixtures/mvc/router_test/matching_with_regex_router_host_port.php +++ /dev/null @@ -1,76 +0,0 @@ -<?php - -/** - * Fixture for Router test - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [ - [ - 'hostname' => 'localhost', - 'port' => null, - 'handle' => '/edit', - ], - 'posts3' - ], - [ - [ - 'hostname' => 'my.phalconphp.com', - 'port' => 80, - 'handle' => '/edit', - ], - 'posts' - ], - [ - [ - 'hostname' => 'my.phalconphp.com', - 'port' => 8080, - 'handle' => '/edit', - ], - 'posts' - ], - [ - [ - 'hostname' => null, - 'port' => 8080, - 'handle' => '/edit', - ], - 'posts3' - ], - [ - [ - 'hostname' => 'mail.example.com', - 'port' => 9090, - 'handle' => '/edit', - ], - 'posts2' - ], - [ - [ - 'hostname' => 'some-domain.com', - 'port' => 9000, - 'handle' => '/edit', - ], - 'posts3' - ], - [ - [ - 'hostname' => 'some.domain.net', - 'port' => 0, - 'handle' => '/edit', - ], - 'posts4' - ], -]; diff --git a/tests/_fixtures/mvc/router_test/matching_with_router.php b/tests/_fixtures/mvc/router_test/matching_with_router.php deleted file mode 100644 index 95c5451165e..00000000000 --- a/tests/_fixtures/mvc/router_test/matching_with_router.php +++ /dev/null @@ -1,156 +0,0 @@ -<?php - -/** - * Fixture for Router test - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [ - [ - 'uri' => '', - 'controller' => null, - 'action' => null, - 'params' => [] - ] - ], - [ - [ - 'uri' => '/', - 'controller' => 'index', - 'action' => 'index', - 'params' => [] - ] - ], - [ - [ - 'uri' => '/documentation/index/hellao/aaadpqñda/bbbAdld/cc-ccc', - 'controller' => 'documentation', - 'action' => 'index', - 'params' => ['hellao', 'aaadpqñda', 'bbbAdld', 'cc-ccc'] - ] - ], - [ - [ - 'uri' => '/documentation/index/', - 'controller' => 'documentation', - 'action' => 'index', - 'params' => [] - ] - ], - [ - [ - 'uri' => '/documentation/index', - 'controller' => 'documentation', - 'action' => 'index', - 'params' => [] - ] - ], - [ - [ - 'uri' => '/documentation/', - 'controller' => 'documentation', - 'action' => null, - 'params' => [] - ] - ], - [ - [ - 'uri' => '/documentation', - 'controller' => 'documentation', - 'action' => null, - 'params' => [] - ] - ], - [ - [ - 'uri' => '/system/admin/a/edit/hellao/aaadp', - 'controller' => 'admin', - 'action' => 'edit', - 'params' => ['hellao', 'aaadp'] - ] - ], - [ - [ - 'uri' => '/es/news', - 'controller' => 'news', - 'action' => 'index', - 'params' => ['language' => 'es'] - ] - ], - [ - [ - 'uri' => '/admin/posts/edit/100', - 'controller' => 'posts', - 'action' => 'edit', - 'params' => ['id' => 100] - ] - ], - [ - [ - 'uri' => '/posts/2010/02/10/title/content', - 'controller' => 'posts', - 'action' => 'show', - 'params' => ['year' => '2010', 'month' => '02', 'day' => '10', 0 => 'title', 1 => 'content'] - ] - ], - [ - [ - 'uri' => '/manual/en/translate.adapter.html', - 'controller' => 'manual', - 'action' => 'show', - 'params' => ['language' => 'en', 'file' => 'translate.adapter'] - ] - ], - [ - [ - 'uri' => '/named-manual/en/translate.adapter.html', - 'controller' => 'manual', - 'action' => 'show', - 'params' => ['language' => 'en', 'file' => 'translate.adapter'] - ] - ], - [ - [ - 'uri' => '/posts/1999/s/le-nice-title', - 'controller' => 'posts', - 'action' => 'show', - 'params' => ['year' => '1999', 'title' => 'le-nice-title'] - ] - ], - [ - [ - 'uri' => '/feed/fr/blog/diaporema.json', - 'controller' => 'feed', - 'action' => 'get', - 'params' => ['lang' => 'fr', 'blog' => 'diaporema', 'type' => 'json'] - ] - ], - [ - [ - 'uri' => '/posts/delete/150', - 'controller' => 'posts', - 'action' => 'delete', - 'params' => ['id' => '150'] - ] - ], - [ - [ - 'uri' => '/very/static/route', - 'controller' => 'static', - 'action' => 'route', - 'params' => [] - ] - ], -]; diff --git a/tests/_fixtures/mvc/router_test/matching_with_router_http.php b/tests/_fixtures/mvc/router_test/matching_with_router_http.php deleted file mode 100644 index d9978eb7cfa..00000000000 --- a/tests/_fixtures/mvc/router_test/matching_with_router_http.php +++ /dev/null @@ -1,109 +0,0 @@ -<?php - -/** - * Fixture for Router test - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [ - [ - 'method' => null, - 'uri' => '/documentation/index/hello', - 'controller' => 'documentation', - 'action' => 'index', - 'params' => ['hello'] - ] - ], - [ - [ - 'method' => 'POST', - 'uri' => '/docs/index', - 'controller' => 'documentation3', - 'action' => 'index', - 'params' => []] - ], - [ - [ - 'method' => 'GET', - 'uri' => '/docs/index', - 'controller' => 'documentation4', - 'action' => 'index', - 'params' => [] - ] - ], - [ - [ - 'method' => 'PUT', - 'uri' => '/docs/index', - 'controller' => 'documentation5', - 'action' => 'index', - 'params' => [] - ] - ], - [ - [ - 'method' => 'DELETE', - 'uri' => '/docs/index', - 'controller' => 'documentation6', - 'action' => 'index', - 'params' => [] - ] - ], - [ - [ - 'method' => 'OPTIONS', - 'uri' => '/docs/index', - 'controller' => 'documentation7', - 'action' => 'index', - 'params' => [] - ] - ], - [ - [ - 'method' => 'HEAD', - 'uri' => '/docs/index', - 'controller' => 'documentation8', - 'action' => 'index', - 'params' => [] - ] - ], - [ - [ - 'method' => 'PURGE', - 'uri' => '/docs/index', - 'controller' => 'documentation9', - 'action' => 'index', - 'params' => [] - ] - ], - [ - [ - 'method' => 'TRACE', - 'uri' => '/docs/index', - 'controller' => 'documentation10', - 'action' => 'index', - 'params' => [] - ] - ], - [ - [ - 'method' => 'CONNECT', - 'uri' => '/docs/index', - 'controller' => 'documentation11', - 'action' => 'index', - 'params' => [] - ] - ], -]; diff --git a/tests/_fixtures/mvc/url_test/data_to_set_di.php b/tests/_fixtures/mvc/url_test/data_to_set_di.php deleted file mode 100644 index 5f536897301..00000000000 --- a/tests/_fixtures/mvc/url_test/data_to_set_di.php +++ /dev/null @@ -1,64 +0,0 @@ -<?php - -/** - * Fixture for URL tests - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [ - '/admin/:controller/p/:action', - [ - 'controller' => 1, - 'action' => 2, - ], - 'methodName' => 'add', - 'setname' => 'adminProducts', - ], - [ - '/api/classes/{class}', - 'methodName' => 'add', - 'setname' => 'classApi', - ], - [ - '/{year}/{month}/{title}', - 'methodName' => 'add', - 'setname' => 'blogPost', - ], - [ - '/wiki/{article:[a-z]+}', - 'methodName' => 'add', - 'setname' => 'wikipedia', - ], - [ - '/news/{country:[a-z]{2}}/([a-z+])/([a-z\-+])/{page}', - [ - 'section' => 2, - 'article' => 3, - ], - 'methodName' => 'add', - 'setname' => 'news', - ], - [ - '/([a-z]{2})/([a-zA-Z0-9_-]+)(/|)', - [ - 'lang' => 1, - 'module' => 'main', - 'controller' => 2, - 'action' => 'index', - ], - 'methodName' => 'add', - 'setname' => 'lang-controller', - ], -]; diff --git a/tests/_fixtures/mvc/url_test/url_to_set_base_uri.php b/tests/_fixtures/mvc/url_test/url_to_set_base_uri.php deleted file mode 100644 index 9b0ccfeb270..00000000000 --- a/tests/_fixtures/mvc/url_test/url_to_set_base_uri.php +++ /dev/null @@ -1,79 +0,0 @@ -<?php - -/** - * Fixture for URL tests - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - //Tests the url with a controller and action - [ - [ - 'base_url' => '/', - 'param' => [ - 'for' => 'adminProducts', - 'controller' => 'products', - 'action' => 'index', - ], - ], - '/admin/products/p/index', - ], - //Tests the url with a controller - [ - [ - 'base_url' => '/', - 'param' => [ - 'for' => 'classApi', - 'class' => 'Some', - ], - ], - '/api/classes/Some', - ], - //Tests the url with a year/month/title - [ - [ - 'base_url' => '/', - 'param' => [ - 'for' => 'lang-controller', - 'lang' => 'de', - 'controller' => 'index', - ], - ], - '/de/index', - ], - //Tests the url for a different language - [ - [ - 'base_url' => '/', - 'param' => [ - 'for' => 'blogPost', - 'year' => '2010', - 'month' => '10', - 'title' => 'cloudflare-anade-recursos-a-tu-servidor', - ], - ], - '/2010/10/cloudflare-anade-recursos-a-tu-servidor', - ], - //Tests the url with external website - [ - [ - 'base_url' => '/', - 'param' => [ - 'for' => 'wikipedia', - 'article' => 'Television_news', - ], - ], - '/wiki/Television_news' - ] -]; diff --git a/tests/_fixtures/mvc/url_test/url_to_set_server.php b/tests/_fixtures/mvc/url_test/url_to_set_server.php deleted file mode 100644 index 440e4d82d83..00000000000 --- a/tests/_fixtures/mvc/url_test/url_to_set_server.php +++ /dev/null @@ -1,36 +0,0 @@ -<?php - -/** - * Fixture for URL tests - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - //Tests the base url - [ - [ - 'server_php_self' => '/index.php', - 'get' => null, - ], - '/', - ], - //Tests a different url - [ - [ - 'server_php_self' => '/index.php', - 'get' => 'classes/api/Some', - ], - '/classes/api/Some', - ], -]; diff --git a/tests/_fixtures/mvc/url_test/url_to_set_without_di.php b/tests/_fixtures/mvc/url_test/url_to_set_without_di.php deleted file mode 100644 index 8be9d535b2d..00000000000 --- a/tests/_fixtures/mvc/url_test/url_to_set_without_di.php +++ /dev/null @@ -1,70 +0,0 @@ -<?php - -/** - * Fixture for URL tests - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [ - [ - 'base_url' => 'http://www.test.com', - 'get' => '', - ], - 'http://www.test.com', - ], - [ - [ - 'base_url' => 'http://www.test.com', - 'get' => '/', - ], - 'http://www.test.com/', - ], - [ - [ - 'base_url' => 'http://www.test.com', - 'get' => '/path', - ], - 'http://www.test.com/path', - ], - //Test urls that contains colons in schema definition and as parameter - [ - [ - 'base_url' => 'http://www.test.com', - 'get' => '/controller/action/param/colon:param', - ], - 'http://www.test.com/controller/action/param/colon:param', - ], - [ - [ - 'base_url' => 'base_url\' => \'http://www.test.com', - 'get' => 'http://www.example.com', - ], - 'http://www.example.com', - ], - [ - [ - 'base_url' => 'base_url\' => \'http://www.test.com', - 'get' => '//www.example.com', - ], - '//www.example.com', - ], - [ - [ - 'base_url' => 'base_url\' => \'http://www.test.com', - 'get' => 'schema:example.com', - ], - 'schema:example.com', - ], -]; diff --git a/tests/_fixtures/mvc/url_test/url_to_set_without_di_two_param.php b/tests/_fixtures/mvc/url_test/url_to_set_without_di_two_param.php deleted file mode 100644 index a128c98787f..00000000000 --- a/tests/_fixtures/mvc/url_test/url_to_set_without_di_two_param.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -/** - * Fixture for URL tests - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.svyrydenko@gmail.com> - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [ - [ - 'base_url' => 'http://www.test.com/?_url=/', - 'get' => 'path', - 'second_get' => ['params' => 'one'], - ], - 'http://www.test.com/?_url=/path¶ms=one', - ], -]; diff --git a/tests/_fixtures/mvc/view/engine/mustache.php b/tests/_fixtures/mvc/view/engine/mustache.php deleted file mode 100644 index 9a2e42dd0b4..00000000000 --- a/tests/_fixtures/mvc/view/engine/mustache.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -use Phalcon\Mvc\View; -use Phalcon\Test\Module\View\Engine\Mustache; - -return [ - [ - 'errorMessage' => 'Engine mustache does not work', - 'engine' => ['.mhtml' => Mustache::class], - 'params' => [ - [ - 'paramToView' => ['name', 'Sonny'], - 'renderLevel' => View::LEVEL_ACTION_VIEW, - 'render' => ['test4', 'index'], - 'expected' => 'Hello Sonny', - ], - [ - 'paramToView' => ['some_eval', true], - 'renderLevel' => View::LEVEL_LAYOUT, - 'render' => ['test4', 'index'], - 'expected' => "Well, this is the view content: Hello Sonny.\n", - ], - ], - ], -]; diff --git a/tests/_fixtures/mvc/view/engine/twig.php b/tests/_fixtures/mvc/view/engine/twig.php deleted file mode 100644 index 48096cef4a0..00000000000 --- a/tests/_fixtures/mvc/view/engine/twig.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -use Phalcon\Mvc\View; -use Phalcon\Test\Module\View\Engine\Twig; - -return [ - [ - 'errorMessage' => 'Engine twig does not work', - 'engine' => ['.twig' => Twig::class], - 'params' => [ - [ - 'paramToView' => ['song', 'Rock n roll'], - 'renderLevel' => View::LEVEL_ACTION_VIEW, - 'render' => ['test7', 'index'], - 'expected' => 'Hello Rock n roll!', - ], - [ - 'paramToView' => ['some_eval', true], - 'renderLevel' => View::LEVEL_LAYOUT, - 'render' => ['test7', 'index'], - 'expected' => "Clearly, the song is: Hello Rock n roll!.\n", - ], - ], - ], -]; diff --git a/tests/_fixtures/mvc/view/engine/volt/compiler_files_test/volt_compile_file_extends_multiple.php b/tests/_fixtures/mvc/view/engine/volt/compiler_files_test/volt_compile_file_extends_multiple.php deleted file mode 100644 index 0b665853299..00000000000 --- a/tests/_fixtures/mvc/view/engine/volt/compiler_files_test/volt_compile_file_extends_multiple.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -/** - * Fixture for Compiler test - * - * @copyright (c) 2011-present Phalcon Team - * @link http://www.phalconphp.com - * @author Sergii Svyrydenko <sergey.v.sviridenko@gmail.com> - * @package Phalcon\Test\Unit\Mvc\View\Engine\Volt - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [ - [ - 'removeFiles' => [ - PATH_DATA . 'views/test10/children2.volt.php', - PATH_DATA . 'views/test10/parent.volt%%e%%.php', - ], - 'compileFile' => PATH_DATA . 'views/test10/children2.volt', - 'contentPath' => PATH_DATA . 'views/test10/children2.volt.php', - ], - '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"><html lang="en"><html xmlns="http://www.w3.org/1999/xhtml"><head><style type="text/css">.important { color: #336699; } </style> <link rel="stylesheet" href="style.css" /> <title>Index - My Webpage

Index

Welcome to my awesome homepage.

', - ], -]; diff --git a/tests/_fixtures/mvc/view/engine/volt/compiler_files_test/volt_compiler_extends_block.php b/tests/_fixtures/mvc/view/engine/volt/compiler_files_test/volt_compiler_extends_block.php deleted file mode 100644 index bb1dc56ab87..00000000000 --- a/tests/_fixtures/mvc/view/engine/volt/compiler_files_test/volt_compiler_extends_block.php +++ /dev/null @@ -1,27 +0,0 @@ - - * @package Phalcon\Test\Unit\Mvc\View\Engine\Volt - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - 'removeFiles' => [ - PATH_DATA . 'views/test10/children.volt.php', - PATH_DATA . 'views/test10/parent.volt%%e%%.php', - ], - 'compileFile' => PATH_DATA . 'views/test10/children.volt', - 'contentPath' => PATH_DATA . 'views/test10/children.volt.php', - 'expected' => 'Index - My Webpage

Index

Welcome on my awesome homepage.

', -]; diff --git a/tests/_fixtures/mvc/view/engine/volt/compiler_files_test/volt_compiler_file.php b/tests/_fixtures/mvc/view/engine/volt/compiler_files_test/volt_compiler_file.php deleted file mode 100644 index 1a0f45ea617..00000000000 --- a/tests/_fixtures/mvc/view/engine/volt/compiler_files_test/volt_compiler_file.php +++ /dev/null @@ -1,35 +0,0 @@ - - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [ - [ - 'removeFiles' => [ - PATH_DATA . 'views/layouts/test10.volt.php' - ], - 'compileFiles' => [ - PATH_DATA . 'views/layouts/test10.volt', - PATH_DATA . 'views/layouts/test10.volt.php', - ], - 'contentPath' => PATH_DATA . 'views/layouts/test10.volt.php', - ], - ' -Clearly, the song is: getContent() ?>. -', - ], -]; diff --git a/tests/_fixtures/mvc/view_engines_test/view_built_in_function.php b/tests/_fixtures/mvc/view_engines_test/view_built_in_function.php deleted file mode 100644 index 3e20eee7c20..00000000000 --- a/tests/_fixtures/mvc/view_engines_test/view_built_in_function.php +++ /dev/null @@ -1,38 +0,0 @@ - - * @package Phalcon\Test\Unit\Mvc - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -use Phalcon\Test\Objectsets\Mvc\View\IteratorObject; - -return [ - [ - [ - 'engines' => [ - '.volt' => 'Phalcon\Mvc\View\Engine\Volt' - ], - 'setVar' => [ - ['arr', [1, 2, 3, 4]], - ['obj', new IteratorObject([1, 2, 3, 4])], - ['str', 'hello'], - ['no_str', 1234], - ], - 'render' => ['test11', 'index'], - 'removeFiles' => [], - ], - 'Length Array: 4Length Object: 4Length String: 5Length No String: 4Slice Array: 1,2,3,4Slice Array: 2,3Slice Array: 1,2,3Slice Object: 2,3,4Slice Object: 2,3Slice Object: 1,2Slice String: helSlice String: elSlice String: lloSlice No String: 123Slice No String: 23Slice No String: 34', - ], -]; diff --git a/tests/_fixtures/mvc/view_engines_test/view_register_engines.php b/tests/_fixtures/mvc/view_engines_test/view_register_engines.php deleted file mode 100644 index 2e745927b55..00000000000 --- a/tests/_fixtures/mvc/view_engines_test/view_register_engines.php +++ /dev/null @@ -1,29 +0,0 @@ - - * @package Phalcon\Test\Unit\Mvc - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [ - [ - '.mhtml' => MustacheEngine::class, - '.phtml' => PhpEngine::class, - '.twig' => TwigEngine::class, - '.volt' => VoltEngine::class, - ], - - ], -]; diff --git a/tests/_fixtures/mvc/view_engines_test/view_set_php_mustache.php b/tests/_fixtures/mvc/view_engines_test/view_set_php_mustache.php deleted file mode 100644 index bd9e899f2c5..00000000000 --- a/tests/_fixtures/mvc/view_engines_test/view_set_php_mustache.php +++ /dev/null @@ -1,39 +0,0 @@ - - * @package Phalcon\Test\Unit\Mvc - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -use Phalcon\Mvc\View; -use Phalcon\Test\Module\View\Engine\Mustache as MustacheEngine; -use Phalcon\Mvc\View\Engine\Php as PhpEngine; - -return [ - [ - 'errorMessage' => 'Mix PHP with Mustache does not work', - 'engines' => [ - '.mhtml' => MustacheEngine::class, - '.phtml' => PhpEngine::class, - ], - 'params' => [ - [ - 'paramToView' => ['name', 'Sonny'], - 'renderLevel' => View::LEVEL_LAYOUT, - 'render' => ['test6', 'index'], - 'expected' => 'Well, this is the view content: Hello Sonny.', - ], - ], - ], -]; diff --git a/tests/_fixtures/mvc/view_engines_test/view_set_php_mustache_partial.php b/tests/_fixtures/mvc/view_engines_test/view_set_php_mustache_partial.php deleted file mode 100644 index 499bb6950b8..00000000000 --- a/tests/_fixtures/mvc/view_engines_test/view_set_php_mustache_partial.php +++ /dev/null @@ -1,39 +0,0 @@ - - * @package Phalcon\Test\Unit\Mvc - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -use Phalcon\Mvc\View; -use Phalcon\Test\Module\View\Engine\Mustache as MustacheEngine; -use Phalcon\Mvc\View\Engine\Php as PhpEngine; - -return [ - [ - 'errorMessage' => 'Mix PHP with Mustache partial does not work', - 'engines' => [ - '.mhtml' => MustacheEngine::class, - '.phtml' => PhpEngine::class, - ], - 'params' => [ - [ - 'paramToView' => ['name', 'Sonny'], - 'renderLevel' => View::LEVEL_LAYOUT, - 'render' => ['test6', 'info'], - 'expected' => 'Well, this is the view content: Hello Sonny.', - ], - ], - ], -]; diff --git a/tests/_fixtures/mvc/view_engines_test/view_set_php_twig.php b/tests/_fixtures/mvc/view_engines_test/view_set_php_twig.php deleted file mode 100644 index f435ff56cf1..00000000000 --- a/tests/_fixtures/mvc/view_engines_test/view_set_php_twig.php +++ /dev/null @@ -1,39 +0,0 @@ - - * @package Phalcon\Test\Unit\Mvc - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -use Phalcon\Mvc\View; -use Phalcon\Test\Module\View\Engine\Twig as TwigEngine; -use Phalcon\Mvc\View\Engine\Php as PhpEngine; - -return [ - [ - 'errorMessage' => 'Mix PHP with Twig does nor work', - 'engines' => [ - '.twig' => TwigEngine::class, - '.phtml' => PhpEngine::class, - ], - 'params' => [ - [ - 'paramToView' => ['name', 'Sonny'], - 'renderLevel' => View::LEVEL_LAYOUT, - 'render' => ['test12', 'index'], - 'expected' => 'Well, this is the view content: Hello Sonny.', - ], - ], - ], -]; diff --git a/tests/_fixtures/mvc/view_engines_test/view_set_php_twig_partial.php b/tests/_fixtures/mvc/view_engines_test/view_set_php_twig_partial.php deleted file mode 100644 index f751608c0cc..00000000000 --- a/tests/_fixtures/mvc/view_engines_test/view_set_php_twig_partial.php +++ /dev/null @@ -1,39 +0,0 @@ - - * @package Phalcon\Test\Unit\Mvc - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -use Phalcon\Mvc\View; -use Phalcon\Test\Module\View\Engine\Twig as TwigEngine; -use Phalcon\Mvc\View\Engine\Php as PhpEngine; - -return [ - [ - 'errorMessage' => 'Mix PHP with Twig partial does not work', - 'engines' => [ - '.twig' => TwigEngine::class, - '.phtml' => PhpEngine::class, - ], - 'params' => [ - [ - 'paramToView' => ['name', 'Sonny'], - 'renderLevel' => View::LEVEL_LAYOUT, - 'render' => ['test12', 'info'], - 'expected' => 'Well, this is the view content: Hello Sonny.', - ], - ], - ], -]; diff --git a/tests/_fixtures/query/select_parsing.php b/tests/_fixtures/query/select_parsing.php deleted file mode 100644 index 15ff1a1629c..00000000000 --- a/tests/_fixtures/query/select_parsing.php +++ /dev/null @@ -1,6915 +0,0 @@ - 'SELECT * FROM ' . Robots::class, - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - ], - ], - [ - "phql" => 'SELECT * FROM ' . SomeProducts::class, - "expected" => [ - 'models' => [ - SomeProducts::class, - ], - 'tables' => [ - 'le_products', - ], - 'columns' => [ - lcfirst(SomeProducts::class) => [ - 'type' => 'object', - 'model' => SomeProducts::class, - 'column' => 'le_products', - 'balias' => lcfirst(SomeProducts::class), - ], - ], - ] - ], - [ - "phql" => 'SELECT ' . SomeProducts::class . '.* FROM ' . SomeProducts::class, - "expected" => [ - 'models' => [ - SomeProducts::class, - ], - 'tables' => [ - 'le_products', - ], - 'columns' => [ - lcfirst(SomeProducts::class) => [ - 'type' => 'object', - 'model' => SomeProducts::class, - 'column' => 'le_products', - 'balias' => lcfirst(SomeProducts::class), - ], - ], - ] - ], - [ - "phql" => 'SELECT p.* FROM ' . SomeProducts::class . ' p', - "expected" => [ - 'models' => [ - SomeProducts::class, - ], - 'tables' => [ - [ - 'le_products', - null, - 'p', - ], - ], - 'columns' => [ - 'p' => [ - 'type' => 'object', - 'model' => SomeProducts::class, - 'column' => 'p', - 'balias' => 'p', - ], - ], - ] - ], - [ - "phql" => 'SELECT ' . Robots::class . '.* FROM ' . Robots::class, - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - ] - ], - [ - "phql" => 'SELECT r.* FROM ' . Robots::class . ' r', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - 'r' => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'r', - 'balias' => 'r', - ], - ], - ] - ], - [ - "phql" => 'SELECT r.* FROM ' . Robots::class . ' AS r', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - 'r' => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'r', - 'balias' => 'r', - ], - ], - ] - ], - [ - "phql" => 'SELECT id, name FROM ' . Robots::class, - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - 'id' => [ - 'type' => 'scalar', - 'balias' => 'id', - 'sqlAlias' => 'id', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - ], - 'name' => [ - 'type' => 'scalar', - 'balias' => 'name', - 'sqlAlias' => 'name', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT r.id, r.name FROM ' . Robots::class . ' AS r', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - 'id' => [ - 'type' => 'scalar', - 'balias' => 'id', - 'sqlAlias' => 'id', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - ], - 'name' => [ - 'type' => 'scalar', - 'balias' => 'name', - 'sqlAlias' => 'name', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'name', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT r.id AS le_id, r.name AS le_name FROM ' . Robots::class . ' AS r', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - 'le_id' => [ - 'type' => 'scalar', - 'balias' => 'le_id', - 'sqlAlias' => 'le_id', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - ], - 'le_name' => [ - 'type' => 'scalar', - 'balias' => 'le_name', - 'sqlAlias' => 'le_name', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'name', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT ' . Robots::class . '.id AS le_id, ' . Robots::class . '.name AS le_name FROM ' . Robots::class, - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - 'le_id' => [ - 'type' => 'scalar', - 'balias' => 'le_id', - 'sqlAlias' => 'le_id', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - ], - 'le_name' => [ - 'type' => 'scalar', - 'balias' => 'le_name', - 'sqlAlias' => 'le_name', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT \'\' empty_str, 10.5 double_number, 1000 AS long_number FROM ' . Robots::class, - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - 'empty_str' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'literal', - 'value' => '\'\'', - ], - 'balias' => 'empty_str', - 'sqlAlias' => 'empty_str', - ], - 'double_number' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'literal', - 'value' => '10.5', - ], - 'balias' => 'double_number', - 'sqlAlias' => 'double_number', - ], - 'long_number' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'literal', - 'value' => '1000', - ], - 'balias' => 'long_number', - 'sqlAlias' => 'long_number', - ], - ], - ] - ], - [ - "phql" => 'SELECT ' . People::class . '.cedula FROM ' . People::class, - "expected" => [ - 'models' => [ - People::class, - ], - 'tables' => [ - 'personas', - ], - 'columns' => [ - 'cedula' => [ - 'type' => 'scalar', - 'balias' => 'cedula', - 'sqlAlias' => 'cedula', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'personas', - 'name' => 'cedula', - 'balias' => 'cedula', - ], - ], - ], - ] - ], - [ - "phql" => 'select ' . strtolower(People::class) . '.cedula from ' . strtolower(People::class), - "expected" => [ - 'models' => [ - strtolower(People::class), - ], - 'tables' => [ - 'personas', - ], - 'columns' => [ - 'cedula' => [ - 'type' => 'scalar', - 'balias' => 'cedula', - 'sqlAlias' => 'cedula', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'personas', - 'name' => 'cedula', - 'balias' => 'cedula', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT p.cedula AS cedula FROM ' . People::class . ' p', - "expected" => [ - 'models' => [ - People::class, - ], - 'tables' => [ - [ - 'personas', - null, - 'p', - ], - ], - 'columns' => [ - 'cedula' => [ - 'type' => 'scalar', - 'balias' => 'cedula', - 'sqlAlias' => 'cedula', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'p', - 'name' => 'cedula', - 'balias' => 'cedula', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT CONCAT(cedula,\'-\',nombres) AS nombre FROM ' . People::class, - "expected" => [ - 'models' => [ - People::class, - ], - 'tables' => [ - 'personas', - ], - 'columns' => [ - 'nombre' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'functionCall', - 'name' => 'CONCAT', - 'arguments' => [ - [ - 'type' => 'qualified', - 'domain' => 'personas', - 'name' => 'cedula', - 'balias' => 'cedula', - ], - [ - 'type' => 'literal', - 'value' => '\'-\'', - ], - [ - 'type' => 'qualified', - 'domain' => 'personas', - 'name' => 'nombres', - 'balias' => 'nombres', - ], - ], - ], - 'balias' => 'nombre', - 'sqlAlias' => 'nombre', - ], - ], - ] - ], - [ - "phql" => 'SELECT CONCAT(' . People::class . '.cedula,\'-\',' . People::class . '.nombres) AS nombre FROM ' . People::class, - "expected" => [ - 'models' => [ - People::class, - ], - 'tables' => [ - 'personas', - ], - 'columns' => [ - 'nombre' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'functionCall', - 'name' => 'CONCAT', - 'arguments' => [ - [ - 'type' => 'qualified', - 'domain' => 'personas', - 'name' => 'cedula', - 'balias' => 'cedula', - ], - [ - 'type' => 'literal', - 'value' => '\'-\'', - ], - [ - 'type' => 'qualified', - 'domain' => 'personas', - 'name' => 'nombres', - 'balias' => 'nombres', - ], - ], - ], - 'balias' => 'nombre', - 'sqlAlias' => 'nombre', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' JOIN ' . RobotsParts::class, - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - lcfirst(RobotsParts::class) => [ - 'type' => 'object', - 'model' => RobotsParts::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobotsParts::class), - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'robots_parts', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robots_id', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' CROSS JOIN ' . RobotsParts::class, - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - lcfirst(RobotsParts::class) => [ - 'type' => 'object', - 'model' => RobotsParts::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobotsParts::class), - ], - ], - 'joins' => [ - [ - 'type' => 'CROSS', - 'source' => [ - 'robots_parts', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robots_id', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' LEFT JOIN ' . RobotsParts::class . ' RIGHT JOIN ' . Parts::class, - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(RobotsParts::class) => [ - 'type' => 'object', - 'model' => RobotsParts::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobotsParts::class), - ], - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - lcfirst(Parts::class) => [ - 'type' => 'object', - 'model' => Parts::class, - 'column' => 'parts', - 'balias' => lcfirst(Parts::class), - ], - ], - 'joins' => [ - [ - 'type' => 'LEFT', - 'source' => [ - 'robots_parts', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robots_id', - ], - ], - ], - ], - [ - 'type' => 'RIGHT', - 'source' => [ - 'parts', - null, - ], - 'conditions' => [ - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . RobotsParts::class . ' LEFT OUTER JOIN ' . Robots::class . ' RIGHT OUTER JOIN ' . Parts::class, - "expected" => [ - 'models' => [ - RobotsParts::class, - ], - 'tables' => [ - 'robots_parts', - ], - 'columns' => [ - lcfirst(RobotsParts::class) => [ - 'type' => 'object', - 'model' => RobotsParts::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobotsParts::class), - ], - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - lcfirst(Parts::class) => [ - 'type' => 'object', - 'model' => Parts::class, - 'column' => 'parts', - 'balias' => lcfirst(Parts::class), - ], - ], - 'joins' => [ - [ - 'type' => 'LEFT', - 'source' => [ - 'robots', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robots_id', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - ], - ], - ], - [ - 'type' => 'RIGHT', - 'source' => [ - 'parts', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'parts_id', - 'balias' => 'parts_id', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'parts', - 'name' => 'id', - 'balias' => 'id', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' JOIN ' . RobotsParts::class . ' ON ' . Robots::class . '.id = ' . RobotsParts::class . '.robots_id', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - lcfirst(RobotsParts::class) => [ - 'type' => 'object', - 'model' => RobotsParts::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobotsParts::class), - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'robots_parts', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robots_id', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' LEFT OUTER JOIN ' . RobotsParts::class . ' ON ' . Robots::class . '.id = ' . RobotsParts::class . '.robots_id AND ' . RobotsParts::class . '.robots_id = ' . Robots::class . '.id WHERE ' . Robots::class . '.id IS NULL', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - lcfirst(RobotsParts::class) => [ - 'type' => 'object', - 'model' => RobotsParts::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobotsParts::class), - ], - ], - 'joins' => [ - [ - 'type' => 'LEFT', - 'source' => [ - 'robots_parts', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'binary-op', - 'op' => 'AND', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robots_id', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robots_id', - ], - ], - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - ], - ], - ], - ], - 'where' => [ - 'type' => 'unary-op', - 'op' => ' IS NULL', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' RIGHT OUTER JOIN ' . RobotsParts::class . ' ON ' . Robots::class . '.id = ' . RobotsParts::class . '.robots_id AND ' . RobotsParts::class . '.robots_id = ' . Robots::class . '.id WHERE ' . RobotsParts::class . '.robots_id IS NOT NULL', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - lcfirst(RobotsParts::class) => [ - 'type' => 'object', - 'model' => RobotsParts::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobotsParts::class), - ], - ], - 'joins' => [ - [ - 'type' => 'RIGHT', - 'source' => [ - 'robots_parts', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'binary-op', - 'op' => 'AND', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robots_id', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robots_id', - ], - ], - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - ], - ], - ], - ], - 'where' => [ - 'type' => 'unary-op', - 'op' => ' IS NOT NULL', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robots_id', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' FULL OUTER JOIN ' . RobotsParts::class, - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - lcfirst(RobotsParts::class) => [ - 'type' => 'object', - 'model' => RobotsParts::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobotsParts::class), - ], - ], - 'joins' => [ - [ - 'type' => 'FULL OUTER', - 'source' => [ - 'robots_parts', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robots_id', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . RobotsParts::class . ' JOIN ' . Robots::class, - "expected" => [ - 'models' => [ - RobotsParts::class, - ], - 'tables' => [ - 'robots_parts', - ], - 'columns' => [ - lcfirst(RobotsParts::class) => [ - 'type' => 'object', - 'model' => RobotsParts::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobotsParts::class), - ], - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'robots', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robots_id', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT r.*, p.* FROM ' . Robots::class . ' AS r JOIN ' . RobotsParts::class . ' AS p', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - 'r' => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'r', - 'balias' => 'r', - ], - 'p' => [ - 'type' => 'object', - 'model' => RobotsParts::class, - 'column' => 'p', - 'balias' => 'p', - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'robots_parts', - null, - 'p', - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'p', - 'name' => 'robots_id', - 'balias' => 'robots_id', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' AS r JOIN ' . RobotsParts::class . ' AS p', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'r', - 'balias' => lcfirst(Robots::class), - ], - lcfirst(RobotsParts::class) => [ - 'type' => 'object', - 'model' => RobotsParts::class, - 'column' => 'p', - 'balias' => lcfirst(RobotsParts::class), - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'robots_parts', - null, - 'p', - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'p', - 'name' => 'robots_id', - 'balias' => 'robots_id', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT r.* FROM ' . Robots::class . ' r INNER JOIN ' . RobotsParts::class, - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - 'r' => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'r', - 'balias' => 'r', - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'robots_parts', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robots_id', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT ( ' . People::class . '.cupo + 100) / (' . Products::class . '.price * 0.15) FROM ' . People::class . ' JOIN ' . Products::class, - "expected" => [ - 'models' => [ - People::class, - ], - 'tables' => [ - 'personas', - ], - 'columns' => [ - '_0' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'binary-op', - 'op' => '/', - 'left' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '+', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'personas', - 'name' => 'cupo', - 'balias' => 'cupo', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - ], - 'right' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '*', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'products', - 'name' => 'price', - 'balias' => 'price', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '0.15', - ], - ], - ], - ], - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'products', - null, - ], - 'conditions' => [ - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT ( ' . People::class . '.cupo + 100) / (' . SomeProducts::class . '.price * 0.15) AS price FROM ' . People::class . ' JOIN ' . SomeProducts::class, - "expected" => [ - 'models' => [ - People::class, - ], - 'tables' => [ - 'personas', - ], - 'columns' => [ - 'price' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'binary-op', - 'op' => '/', - 'left' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '+', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'personas', - 'name' => 'cupo', - 'balias' => 'cupo', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - ], - 'right' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '*', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'le_products', - 'name' => 'price', - 'balias' => 'price', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '0.15', - ], - ], - ], - ], - 'balias' => 'price', - 'sqlAlias' => 'price', - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'le_products', - null, - ], - 'conditions' => [ - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT (p.cupo + 100) / (s.price * 0.15) AS price FROM ' . People::class . ' AS p JOIN ' . SomeProducts::class . ' AS s', - "expected" => [ - 'models' => [ - People::class, - ], - 'tables' => [ - [ - 'personas', - null, - 'p', - ], - ], - 'columns' => [ - 'price' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'binary-op', - 'op' => '/', - 'left' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '+', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'p', - 'name' => 'cupo', - 'balias' => 'cupo', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - ], - 'right' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '*', - 'left' => [ - 'type' => 'qualified', - 'domain' => 's', - 'name' => 'price', - 'balias' => 'price', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '0.15', - ], - ], - ], - ], - 'balias' => 'price', - 'sqlAlias' => 'price', - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'le_products', - null, - 's', - ], - 'conditions' => [ - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ', ' . RobotsParts::class, - "expected" => [ - 'models' => [ - Robots::class, - RobotsParts::class, - ], - 'tables' => [ - 'robots', - 'robots_parts', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - lcfirst(RobotsParts::class) => [ - 'type' => 'object', - 'model' => RobotsParts::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobotsParts::class), - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' r, ' . RobotsParts::class . ' p', - "expected" => [ - 'models' => [ - Robots::class, - RobotsParts::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - [ - 'robots_parts', - null, - 'p', - ], - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'r', - 'balias' => lcfirst(Robots::class), - ], - lcfirst(RobotsParts::class) => [ - 'type' => 'object', - 'model' => RobotsParts::class, - 'column' => 'p', - 'balias' => lcfirst(RobotsParts::class), - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' AS r, ' . RobotsParts::class . ' AS p', - "expected" => [ - 'models' => [ - Robots::class, - RobotsParts::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - [ - 'robots_parts', - null, - 'p', - ], - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'r', - 'balias' => lcfirst(Robots::class), - ], - lcfirst(RobotsParts::class) => [ - 'type' => 'object', - 'model' => RobotsParts::class, - 'column' => 'p', - 'balias' => lcfirst(RobotsParts::class), - ], - ], - ] - ], - [ - "phql" => 'SELECT name, parts_id FROM ' . Robots::class . ' AS r, ' . RobotsParts::class . ' AS p', - "expected" => [ - 'models' => [ - Robots::class, - RobotsParts::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - [ - 'robots_parts', - null, - 'p', - ], - ], - 'columns' => [ - 'name' => [ - 'type' => 'scalar', - 'balias' => 'name', - 'sqlAlias' => 'name', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'parts_id' => [ - 'type' => 'scalar', - 'balias' => 'parts_id', - 'sqlAlias' => 'parts_id', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'p', - 'name' => 'parts_id', - 'balias' => 'parts_id', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' AS r, ' . RobotsParts::class . ' AS p WHERE r.id = p.robots_id', - "expected" => [ - 'models' => [ - Robots::class, - RobotsParts::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - [ - 'robots_parts', - null, - 'p', - ], - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'r', - 'balias' => lcfirst(Robots::class), - ], - lcfirst(RobotsParts::class) => [ - 'type' => 'object', - 'model' => RobotsParts::class, - 'column' => 'p', - 'balias' => lcfirst(RobotsParts::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'p', - 'name' => 'robots_id', - 'balias' => 'robots_id', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ', ' . RobotsParts::class . ' WHERE ' . Robots::class . '.id = ' . RobotsParts::class . '.robots_id', - "expected" => [ - 'models' => [ - Robots::class, - RobotsParts::class, - ], - 'tables' => [ - 'robots', - 'robots_parts', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - lcfirst(RobotsParts::class) => [ - 'type' => 'object', - 'model' => RobotsParts::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobotsParts::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robots_id', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id = 100', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id != 100', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '<>', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id > 100', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id < 100', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '<', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id >= 100', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '>=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id <= 100', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '<=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.name LIKE \'as%\'', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => 'LIKE', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'as%\'', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.name NOT LIKE \'as%\'', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => 'NOT LIKE', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'as%\'', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.name BETWEEN \'john\' AND \'mike\'', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => 'BETWEEN', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - 'right' => [ - 'type' => 'binary-op', - 'op' => 'AND', - 'left' => [ - 'type' => 'literal', - 'value' => '\'john\'', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'mike\'', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . SomeProducts::class . ' WHERE DATE(' . SomeProducts::class . '.created_at) = "2010-10-02"', - "expected" => [ - 'models' => [ - SomeProducts::class, - ], - 'tables' => [ - 'le_products', - ], - 'columns' => [ - lcfirst(SomeProducts::class) => [ - 'type' => 'object', - 'model' => SomeProducts::class, - 'column' => 'le_products', - 'balias' => lcfirst(SomeProducts::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'functionCall', - 'name' => 'DATE', - 'arguments' => [ - [ - 'type' => 'qualified', - 'domain' => 'le_products', - 'name' => 'created_at', - 'balias' => 'created_at', - ], - ], - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'2010-10-02\'', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . SomeProducts::class . ' WHERE ' . SomeProducts::class . '.created_at < now()', - "expected" => [ - 'models' => [ - SomeProducts::class, - ], - 'tables' => [ - 'le_products', - ], - 'columns' => [ - lcfirst(SomeProducts::class) => [ - 'type' => 'object', - 'model' => SomeProducts::class, - 'column' => 'le_products', - 'balias' => lcfirst(SomeProducts::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '<', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'le_products', - 'name' => 'created_at', - 'balias' => 'created_at', - ], - 'right' => [ - 'type' => 'functionCall', - 'name' => 'now', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id IN (1)', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => 'IN', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'list', - [ - [ - 'type' => 'literal', - 'value' => '1', - ] - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id IN (1, 2, 3, 4)', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => 'IN', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'list', - [ - [ - 'type' => 'literal', - 'value' => '1', - ], - [ - 'type' => 'literal', - 'value' => '2', - ], - [ - 'type' => 'literal', - 'value' => '3', - ], - [ - 'type' => 'literal', - 'value' => '4', - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' r WHERE r.id IN (r.id+1, r.id+2)', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'r', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => 'IN', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'list', - [ - [ - 'type' => 'binary-op', - 'op' => '+', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '1', - ], - ], - [ - 'type' => 'binary-op', - 'op' => '+', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '2', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.name = :name:', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - 'right' => [ - 'type' => 'placeholder', - 'value' => ':name', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.name = ?0', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - 'right' => [ - 'type' => 'placeholder', - 'value' => ':0', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.name = \'R2D2\' OR ' . Robots::class . '.name <> \'C3PO\'', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '<>', - 'left' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - 'right' => [ - 'type' => 'binary-op', - 'op' => 'OR', - 'left' => [ - 'type' => 'literal', - 'value' => '\'R2D2\'', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'C3PO\'', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.name = \'R2D2\' AND ' . Robots::class . '.name <> \'C3PO\'', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '<>', - 'left' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - 'right' => [ - 'type' => 'binary-op', - 'op' => 'AND', - 'left' => [ - 'type' => 'literal', - 'value' => '\'R2D2\'', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'C3PO\'', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.name = :first_name: AND ' . Robots::class . '.name <> :second_name:', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '<>', - 'left' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - 'right' => [ - 'type' => 'binary-op', - 'op' => 'AND', - 'left' => [ - 'type' => 'placeholder', - 'value' => ':first_name', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - ], - 'right' => [ - 'type' => 'placeholder', - 'value' => ':second_name', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.name = \'R2D2\' AND ' . Robots::class . '.name <> \'C3PO\' AND ' . Robots::class . '.id > 100', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'binary-op', - 'op' => '<>', - 'left' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - 'right' => [ - 'type' => 'binary-op', - 'op' => 'AND', - 'left' => [ - 'type' => 'literal', - 'value' => '\'R2D2\'', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - ], - 'right' => [ - 'type' => 'binary-op', - 'op' => 'AND', - 'left' => [ - 'type' => 'literal', - 'value' => '\'C3PO\'', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - ], - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE (' . Robots::class . '.name = \'R2D2\' AND ' . Robots::class . '.name <> \'C3PO\') OR ' . Robots::class . '.id > 100', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'binary-op', - 'op' => 'OR', - 'left' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '<>', - 'left' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - 'right' => [ - 'type' => 'binary-op', - 'op' => 'AND', - 'left' => [ - 'type' => 'literal', - 'value' => '\'R2D2\'', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'C3PO\'', - ], - ], - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE (' . Robots::class . '.name = \'R2D2\' AND ' . Robots::class . '.name <> \'C3PO\') OR (' . Robots::class . '.id > 100 AND ' . Robots::class . '.id <= 150)', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => 'OR', - 'left' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '<>', - 'left' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - 'right' => [ - 'type' => 'binary-op', - 'op' => 'AND', - 'left' => [ - 'type' => 'literal', - 'value' => '\'R2D2\'', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'C3PO\'', - ], - ], - ], - 'right' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '<=', - 'left' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'binary-op', - 'op' => 'AND', - 'left' => [ - 'type' => 'literal', - 'value' => '100', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - ], - ], - 'right' => [ - 'type' => 'literal', - 'value' => '150', - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' r WHERE r.id NOT IN (r.id+1, r.id+2)', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'r', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => 'NOT IN', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'list', - [ - [ - 'type' => 'binary-op', - 'op' => '+', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '1', - ], - ], - [ - 'type' => 'binary-op', - 'op' => '+', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '2', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' r LIMIT 100', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'r', - 'balias' => lcfirst(Robots::class), - ], - ], - 'limit' => [ - 'number' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' r LIMIT 10,100', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'r', - 'balias' => lcfirst(Robots::class), - ], - ], - 'limit' => [ - 'number' => [ - 'type' => 'literal', - 'value' => '100', - ], - 'offset' => [ - 'type' => 'literal', - 'value' => '10', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' r LIMIT 100 OFFSET 10', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'r', - 'balias' => lcfirst(Robots::class), - ], - ], - 'limit' => [ - 'number' => [ - 'type' => 'literal', - 'value' => '100', - ], - 'offset' => [ - 'type' => 'literal', - 'value' => '10', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . SomeProducts::class . ' p WHERE p.name = "Artichoke" LIMIT 100', - "expected" => [ - 'models' => [ - SomeProducts::class, - ], - 'tables' => [ - [ - 'le_products', - null, - 'p', - ], - ], - 'columns' => [ - lcfirst(SomeProducts::class) => [ - 'type' => 'object', - 'model' => SomeProducts::class, - 'column' => 'p', - 'balias' => lcfirst(SomeProducts::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'p', - 'name' => 'name', - 'balias' => 'name', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'Artichoke\'', - ], - ], - 'limit' => [ - 'number' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . SomeProducts::class . ' p ORDER BY p.name', - "expected" => [ - 'models' => [ - SomeProducts::class, - ], - 'tables' => [ - [ - 'le_products', - null, - 'p', - ], - ], - 'columns' => [ - lcfirst(SomeProducts::class) => [ - 'type' => 'object', - 'model' => SomeProducts::class, - 'column' => 'p', - 'balias' => lcfirst(SomeProducts::class), - ], - ], - 'order' => [ - [ - [ - 'type' => 'qualified', - 'domain' => 'p', - 'name' => 'name', - 'balias' => 'name', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . SomeProducts::class . ' ORDER BY ' . SomeProducts::class . '.name', - "expected" => [ - 'models' => [ - SomeProducts::class, - ], - 'tables' => [ - 'le_products', - ], - 'columns' => [ - lcfirst(SomeProducts::class) => [ - 'type' => 'object', - 'model' => SomeProducts::class, - 'column' => 'le_products', - 'balias' => lcfirst(SomeProducts::class), - ], - ], - 'order' => [ - [ - [ - 'type' => 'qualified', - 'domain' => 'le_products', - 'name' => 'name', - 'balias' => 'name', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . SomeProducts::class . ' ORDER BY id, ' . SomeProducts::class . '.name, 3', - "expected" => [ - 'models' => [ - SomeProducts::class, - ], - 'tables' => [ - 'le_products', - ], - 'columns' => [ - lcfirst(SomeProducts::class) => [ - 'type' => 'object', - 'model' => SomeProducts::class, - 'column' => 'le_products', - 'balias' => lcfirst(SomeProducts::class), - ], - ], - 'order' => [ - [ - [ - 'type' => 'qualified', - 'domain' => 'le_products', - 'name' => 'id', - 'balias' => 'id', - ], - ], - [ - [ - 'type' => 'qualified', - 'domain' => 'le_products', - 'name' => 'name', - 'balias' => 'name', - ], - ], - [ - [ - 'type' => 'literal', - 'value' => '3', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' r WHERE NOT (r.name = "shaggy") ORDER BY 1, r.name', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'r', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'unary-op', - 'op' => 'NOT ', - 'right' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'name', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'shaggy\'', - ], - ], - ], - ], - 'order' => [ - [ - [ - 'type' => 'literal', - 'value' => '1', - ], - ], - [ - [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'name', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' r WHERE NOT (r.name = "shaggy") ORDER BY 1 DESC, r.name', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'r', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'unary-op', - 'op' => 'NOT ', - 'right' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'name', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'shaggy\'', - ], - ], - ], - ], - 'order' => [ - [ - [ - 'type' => 'literal', - 'value' => '1', - ], - 'DESC', - ], - [ - [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'name', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' r WHERE NOT (r.name = "shaggy") ORDER BY 1, r.name', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'r', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'unary-op', - 'op' => 'NOT ', - 'right' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'name', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'shaggy\'', - ], - ], - ], - ], - 'order' => [ - [ - [ - 'type' => 'literal', - 'value' => '1', - ], - ], - [ - [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'name', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' r WHERE r.name <> "shaggy" ORDER BY 1, 2 LIMIT 5', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'r', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '<>', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'name', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'shaggy\'', - ], - ], - 'order' => [ - [ - [ - 'type' => 'literal', - 'value' => '1', - ], - ], - [ - [ - 'type' => 'literal', - 'value' => '2', - ], - ], - ], - 'limit' => [ - 'number' => [ - 'type' => 'literal', - 'value' => '5', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' r WHERE r.name <> "shaggy" ORDER BY 1 ASC, 2 DESC LIMIT 5', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'r', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '<>', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'name', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'shaggy\'', - ], - ], - 'order' => [ - [ - [ - 'type' => 'literal', - 'value' => '1', - ], - 'ASC', - ], - [ - [ - 'type' => 'literal', - 'value' => '2', - ], - 'DESC', - ], - ], - 'limit' => [ - 'number' => [ - 'type' => 'literal', - 'value' => '5', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' GROUP BY ' . Robots::class . '.name', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'group' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' GROUP BY ' . Robots::class . '.name, ' . Robots::class . '.id', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'group' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - ], - ] - ], - [ - "phql" => 'SELECT ' . Robots::class . '.name, SUM(' . Robots::class . '.price) AS summatory FROM ' . Robots::class . ' GROUP BY ' . Robots::class . '.name', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - 'name' => [ - 'type' => 'scalar', - 'balias' => 'name', - 'sqlAlias' => 'name', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'summatory' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'functionCall', - 'name' => 'SUM', - 'arguments' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'price', - 'balias' => 'price', - ], - ], - ], - 'balias' => 'summatory', - 'sqlAlias' => 'summatory', - ], - ], - 'group' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - ] - ], - [ - "phql" => 'SELECT r.id, r.name, SUM(r.price) AS summatory, MIN(r.price) FROM ' . Robots::class . ' r GROUP BY r.id, r.name', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - 'id' => [ - 'type' => 'scalar', - 'balias' => 'id', - 'sqlAlias' => 'id', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - ], - 'name' => [ - 'type' => 'scalar', - 'balias' => 'name', - 'sqlAlias' => 'name', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'summatory' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'functionCall', - 'name' => 'SUM', - 'arguments' => [ - [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'price', - 'balias' => 'price', - ], - ], - ], - 'balias' => 'summatory', - 'sqlAlias' => 'summatory', - ], - '_3' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'functionCall', - 'name' => 'MIN', - 'arguments' => [ - [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'price', - 'balias' => 'price', - ], - ], - ], - ], - ], - 'group' => [ - [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'id', - ], - [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'name', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id > 5 GROUP BY ' . Robots::class . '.name', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '5', - ], - ], - 'group' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id > 5 GROUP BY ' . Robots::class . '.name LIMIT 10', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '5', - ], - ], - 'group' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'limit' => [ - 'number' => [ - 'type' => 'literal', - 'value' => '10', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id > 5 GROUP BY ' . Robots::class . '.name ORDER BY ' . Robots::class . '.id LIMIT 10', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '5', - ], - ], - 'group' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'order' => [ - [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - ], - ], - 'limit' => [ - 'number' => [ - 'type' => 'literal', - 'value' => '10', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' GROUP BY ' . Robots::class . '.name ORDER BY ' . Robots::class . '.id', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'group' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'order' => [ - [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id != 10 GROUP BY ' . Robots::class . '.name ORDER BY ' . Robots::class . '.id', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '<>', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '10', - ], - ], - 'group' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'order' => [ - [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - ], - ], - ] - ], - [ - - "phql" => 'SELECT ' . Robots::class . '.name, COUNT(*) FROM ' . Robots::class . ' GROUP BY ' . Robots::class . '.name HAVING COUNT(*)>100', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - 'name' => [ - 'type' => 'scalar', - 'balias' => 'name', - 'sqlAlias' => 'name', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - '_1' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'functionCall', - 'name' => 'COUNT', - 'arguments' => [ - [ - 'type' => 'all', - ], - ], - ], - ], - ], - 'group' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'having' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'functionCall', - 'name' => 'COUNT', - 'arguments' => [ - [ - 'type' => 'all', - ], - ], - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - ] - ], - [ - "phql" => 'SELECT ' . SomeProducts::class . '.type, SUM(' . SomeProducts::class . '.price) AS price FROM ' . SomeProducts::class . ' GROUP BY ' . SomeProducts::class . '.type HAVING SUM(' . SomeProducts::class . '.price)<100', - "expected" => [ - 'models' => [ - SomeProducts::class, - ], - 'tables' => [ - 'le_products', - ], - 'columns' => [ - 'type' => [ - 'type' => 'scalar', - 'balias' => 'type', - 'sqlAlias' => 'type', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'le_products', - 'name' => 'type', - 'balias' => 'type', - ], - ], - 'price' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'functionCall', - 'name' => 'SUM', - 'arguments' => [ - [ - 'type' => 'qualified', - 'domain' => 'le_products', - 'name' => 'price', - 'balias' => 'price', - ], - ], - ], - 'balias' => 'price', - 'sqlAlias' => 'price', - ], - ], - 'group' => [ - [ - 'type' => 'qualified', - 'domain' => 'le_products', - 'name' => 'type', - 'balias' => 'type', - ], - ], - 'having' => [ - 'type' => 'binary-op', - 'op' => '<', - 'left' => [ - 'type' => 'functionCall', - 'name' => 'SUM', - 'arguments' => [ - [ - 'type' => 'qualified', - 'name' => 'price', - 'domain' => 'le_products', - 'balias' => 'price', - ], - ], - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - ] - ], - [ - "phql" => 'SELECT type, SUM(price) AS price FROM ' . SomeProducts::class . ' GROUP BY 1 HAVING SUM(price)<100', - "expected" => [ - 'models' => [ - SomeProducts::class, - ], - 'tables' => [ - 'le_products', - ], - 'columns' => [ - 'type' => [ - 'type' => 'scalar', - 'balias' => 'type', - 'sqlAlias' => 'type', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'le_products', - 'name' => 'type', - 'balias' => 'type', - ], - ], - 'price' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'functionCall', - 'name' => 'SUM', - 'arguments' => [ - [ - 'type' => 'qualified', - 'domain' => 'le_products', - 'name' => 'price', - 'balias' => 'price', - ], - ], - ], - 'balias' => 'price', - 'sqlAlias' => 'price', - ], - ], - 'group' => [ - [ - 'type' => 'literal', - 'value' => '1', - ], - ], - 'having' => [ - 'type' => 'binary-op', - 'op' => '<', - 'left' => [ - 'type' => 'functionCall', - 'name' => 'SUM', - 'arguments' => [ - [ - 'type' => 'qualified', - 'name' => 'price', - ], - ], - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - ] - ], - [ - "phql" => 'SELECT COUNT(DISTINCT ' . SomeProducts::class . '.type) AS price FROM ' . SomeProducts::class, - "expected" => [ - 'models' => [ - SomeProducts::class, - ], - 'tables' => [ - 'le_products', - ], - 'columns' => [ - 'price' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'functionCall', - 'name' => 'COUNT', - 'arguments' => [ - [ - 'type' => 'qualified', - 'domain' => 'le_products', - 'name' => 'type', - 'balias' => 'type', - ], - ], - 'distinct' => 1, - ], - 'balias' => 'price', - 'sqlAlias' => 'price', - ], - ], - ] - ], - [ - "phql" => 'SELECT COUNT(DISTINCT ' . SomeProducts::class . '.type) price FROM ' . SomeProducts::class, - "expected" => [ - 'models' => [ - SomeProducts::class, - ], - 'tables' => [ - 'le_products', - ], - 'columns' => [ - 'price' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'functionCall', - 'name' => 'COUNT', - 'arguments' => [ - [ - 'type' => 'qualified', - 'domain' => 'le_products', - 'name' => 'type', - 'balias' => 'type', - ], - ], - 'distinct' => 1, - ], - 'balias' => 'price', - 'sqlAlias' => 'price', - ], - ], - ] - ], - [ - "phql" => 'SELECT ' . Robots::class . '.name, COUNT(*) FROM ' . Robots::class . ' WHERE ' . Robots::class . '.type = "virtual" GROUP BY ' . Robots::class . '.name HAVING COUNT(*)>100', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - 'name' => [ - 'type' => 'scalar', - 'balias' => 'name', - 'sqlAlias' => 'name', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - '_1' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'functionCall', - 'name' => 'COUNT', - 'arguments' => [ - [ - 'type' => 'all', - ], - ], - ], - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'type', - 'balias' => 'type', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'virtual\'', - ], - ], - 'group' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'having' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'functionCall', - 'name' => 'COUNT', - 'arguments' => [ - [ - 'type' => 'all', - ], - ], - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - ] - ], - [ - "phql" => 'SELECT ' . Robots::class . '.name, COUNT(*) FROM ' . Robots::class . ' WHERE ' . Robots::class . '.type = "virtual" GROUP BY ' . Robots::class . '.name HAVING COUNT(*)>100 ORDER BY 2', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - 'name' => [ - 'type' => 'scalar', - 'balias' => 'name', - 'sqlAlias' => 'name', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - '_1' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'functionCall', - 'name' => 'COUNT', - 'arguments' => [ - [ - 'type' => 'all', - ], - ], - ], - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'type', - 'balias' => 'type', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'virtual\'', - ], - ], - 'group' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'having' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'functionCall', - 'name' => 'COUNT', - 'arguments' => [ - [ - 'type' => 'all', - ], - ], - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - 'order' => [ - [ - [ - 'type' => 'literal', - 'value' => '2', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT ' . Robots::class . '.name, COUNT(*) FROM ' . Robots::class . ' WHERE ' . Robots::class . '.type = "virtual" GROUP BY ' . Robots::class . '.name HAVING COUNT(*)>100 ORDER BY 2 LIMIT 15', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - 'name' => [ - 'type' => 'scalar', - 'balias' => 'name', - 'sqlAlias' => 'name', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - '_1' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'functionCall', - 'name' => 'COUNT', - 'arguments' => [ - [ - 'type' => 'all', - ], - ], - ], - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'type', - 'balias' => 'type', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'virtual\'', - ], - ], - 'group' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'having' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'functionCall', - 'name' => 'COUNT', - 'arguments' => [ - [ - 'type' => 'all', - ], - ], - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - 'order' => [ - [ - [ - 'type' => 'literal', - 'value' => '2', - ], - ], - ], - 'limit' => [ - 'number' => [ - 'type' => 'literal', - 'value' => '15', - ], - ], - ] - ], - [ - "phql" => 'SELECT ' . Robots::class . '.name, COUNT(*) FROM ' . Robots::class . ' GROUP BY ' . Robots::class . '.name HAVING COUNT(*)>100 ORDER BY 2 LIMIT 15', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - 'name' => [ - 'type' => 'scalar', - 'balias' => 'name', - 'sqlAlias' => 'name', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - '_1' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'functionCall', - 'name' => 'COUNT', - 'arguments' => [ - [ - 'type' => 'all', - ], - ], - ], - ], - ], - 'group' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'having' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'functionCall', - 'name' => 'COUNT', - 'arguments' => [ - [ - 'type' => 'all', - ], - ], - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - 'order' => [ - [ - [ - 'type' => 'literal', - 'value' => '2', - ], - ], - ], - 'limit' => [ - 'number' => [ - 'type' => 'literal', - 'value' => '15', - ], - ], - ] - ], - [ - "phql" => 'SELECT name, COUNT(*) FROM ' . Robots::class . ' WHERE type = "virtual" GROUP BY name HAVING COUNT(*)>100 LIMIT 15', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - 'name' => [ - 'type' => 'scalar', - 'balias' => 'name', - 'sqlAlias' => 'name', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - '_1' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'functionCall', - 'name' => 'COUNT', - 'arguments' => [ - [ - 'type' => 'all', - ], - ], - ], - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'type', - 'balias' => 'type', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'virtual\'', - ], - ], - 'group' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'having' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'functionCall', - 'name' => 'COUNT', - 'arguments' => [ - [ - 'type' => 'all', - ], - ], - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - 'limit' => [ - 'number' => [ - 'type' => 'literal', - 'value' => '15', - ], - ], - ] - ], - [ - "phql" => 'SELECT ' . Robots::class . '.name, COUNT(*) FROM ' . Robots::class . ' WHERE ' . Robots::class . '.type = "virtual" GROUP BY ' . Robots::class . '.name HAVING COUNT(*)>100 LIMIT 15', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - 'name' => [ - 'type' => 'scalar', - 'balias' => 'name', - 'sqlAlias' => 'name', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - '_1' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'functionCall', - 'name' => 'COUNT', - 'arguments' => [ - [ - 'type' => 'all', - ], - ], - ], - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'type', - 'balias' => 'type', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'virtual\'', - ], - ], - 'group' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'having' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'functionCall', - 'name' => 'COUNT', - 'arguments' => [ - [ - 'type' => 'all', - ], - ], - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - 'limit' => [ - 'number' => [ - 'type' => 'literal', - 'value' => '15', - ], - ], - ] - ], - [ - "phql" => 'SELECT ' . Robots::class . '.name, COUNT(*) FROM ' . Robots::class . ' GROUP BY ' . Robots::class . '.name HAVING COUNT(*)>100 LIMIT 15', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - 'name' => [ - 'type' => 'scalar', - 'balias' => 'name', - 'sqlAlias' => 'name', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - '_1' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'functionCall', - 'name' => 'COUNT', - 'arguments' => [ - [ - 'type' => 'all', - ], - ], - ], - ], - ], - 'group' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - 'having' => [ - 'type' => 'binary-op', - 'op' => '>', - 'left' => [ - 'type' => 'functionCall', - 'name' => 'COUNT', - 'arguments' => [ - [ - 'type' => 'all', - ], - ], - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - 'limit' => [ - 'number' => [ - 'type' => 'literal', - 'value' => '15', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class, - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'robots', - 'balias' => lcfirst(Robotters::class), - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . SomeRobotters::class, - "expected" => [ - 'models' => [ - SomeRobotters::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(SomeRobotters::class) => [ - 'type' => 'object', - 'model' => SomeRobotters::class, - 'column' => 'robots', - 'balias' => lcfirst(SomeRobotters::class), - ], - ], - ] - ], - [ - "phql" => 'SELECT ' . SomeRobotters::class . '.* FROM ' . SomeRobotters::class, - "expected" => [ - 'models' => [ - SomeRobotters::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(SomeRobotters::class) => [ - 'type' => 'object', - 'model' => SomeRobotters::class, - 'column' => 'robots', - 'balias' => lcfirst(SomeRobotters::class), - ], - ], - ] - ], - [ - "phql" => 'SELECT r.* FROM ' . SomeRobotters::class . ' r', - "expected" => [ - 'models' => [ - SomeRobotters::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - 'r' => [ - 'type' => 'object', - 'model' => SomeRobotters::class, - 'column' => 'r', - 'balias' => 'r', - ], - ], - ] - ], - [ - "phql" => 'SELECT ' . Robotters::class . '.* FROM ' . Robotters::class, - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'robots', - 'balias' => lcfirst(Robotters::class), - ], - ], - ] - ], - [ - "phql" => 'SELECT r.* FROM ' . Robotters::class . ' r', - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - 'r' => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'r', - 'balias' => 'r', - ], - ], - ] - ], - [ - "phql" => 'SELECT r.* FROM ' . Robotters::class . ' AS r', - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - 'r' => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'r', - 'balias' => 'r', - ], - ], - ] - ], - [ - "phql" => 'SELECT code, theName FROM ' . Robotters::class, - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - 'code' => [ - 'type' => 'scalar', - 'balias' => 'code', - 'sqlAlias' => 'code', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'code', - ], - ], - 'theName' => [ - 'type' => 'scalar', - 'balias' => 'theName', - 'sqlAlias' => 'theName', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'theName', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT r.code, r.theName FROM ' . Robotters::class . ' AS r', - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - 'code' => [ - 'type' => 'scalar', - 'balias' => 'code', - 'sqlAlias' => 'code', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'code', - ], - ], - 'theName' => [ - 'type' => 'scalar', - 'balias' => 'theName', - 'sqlAlias' => 'theName', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'theName', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT r.code AS le_id, r.theName AS le_name FROM ' . Robotters::class . ' AS r', - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - 'le_id' => [ - 'type' => 'scalar', - 'balias' => 'le_id', - 'sqlAlias' => 'le_id', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'code', - ], - ], - 'le_name' => [ - 'type' => 'scalar', - 'balias' => 'le_name', - 'sqlAlias' => 'le_name', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'theName', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT ' . Robotters::class . '.code AS le_id, ' . Robotters::class . '.theName AS le_name FROM ' . Robotters::class, - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - 'le_id' => [ - 'type' => 'scalar', - 'balias' => 'le_id', - 'sqlAlias' => 'le_id', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'code', - ], - ], - 'le_name' => [ - 'type' => 'scalar', - 'balias' => 'le_name', - 'sqlAlias' => 'le_name', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'theName', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT \'\' empty_str, 10.5 double_number, 1000 AS long_number FROM ' . Robotters::class, - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - 'empty_str' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'literal', - 'value' => '\'\'', - ], - 'balias' => 'empty_str', - 'sqlAlias' => 'empty_str', - ], - 'double_number' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'literal', - 'value' => '10.5', - ], - 'balias' => 'double_number', - 'sqlAlias' => 'double_number', - ], - 'long_number' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'literal', - 'value' => '1000', - ], - 'balias' => 'long_number', - 'sqlAlias' => 'long_number', - ], - ], - ] - ], - [ - "phql" => 'SELECT ' . Personers::class . '.borgerId FROM ' . Personers::class, - "expected" => [ - 'models' => [ - Personers::class, - ], - 'tables' => [ - 'personas', - ], - 'columns' => [ - 'borgerId' => [ - 'type' => 'scalar', - 'balias' => 'borgerId', - 'sqlAlias' => 'borgerId', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'personas', - 'name' => 'cedula', - 'balias' => 'borgerId', - ], - ], - ], - ] - ], - [ - "phql" => 'select ' . strtolower(Personers::class) . '.borgerId from ' . strtolower(Personers::class), - "expected" => [ - 'models' => [ - strtolower(Personers::class), - ], - 'tables' => [ - 'personas', - ], - 'columns' => [ - 'borgerId' => [ - 'type' => 'scalar', - 'balias' => 'borgerId', - 'sqlAlias' => 'borgerId', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'personas', - 'name' => 'cedula', - 'balias' => 'borgerId', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT p.borgerId AS cedula FROM ' . Personers::class . ' p', - "expected" => [ - 'models' => [ - Personers::class, - ], - 'tables' => [ - [ - 'personas', - null, - 'p', - ], - ], - 'columns' => [ - 'cedula' => [ - 'type' => 'scalar', - 'balias' => 'cedula', - 'sqlAlias' => 'cedula', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'p', - 'name' => 'cedula', - 'balias' => 'borgerId', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT CONCAT(' . Personers::class . '.borgerId,\'-\',' . Personers::class . '.navnes) AS navne FROM ' . Personers::class, - "expected" => [ - 'models' => [ - Personers::class, - ], - 'tables' => [ - 'personas', - ], - 'columns' => [ - 'navne' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'functionCall', - 'name' => 'CONCAT', - 'arguments' => [ - [ - 'type' => 'qualified', - 'domain' => 'personas', - 'name' => 'cedula', - 'balias' => 'borgerId', - ], - [ - 'type' => 'literal', - 'value' => '\'-\'', - ], - [ - 'type' => 'qualified', - 'domain' => 'personas', - 'name' => 'nombres', - 'balias' => 'navnes', - ], - ], - ], - 'balias' => 'navne', - 'sqlAlias' => 'navne', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class . ' JOIN ' . RobottersDeles::class, - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'robots', - 'balias' => lcfirst(Robotters::class), - ], - lcfirst(RobottersDeles::class) => [ - 'type' => 'object', - 'model' => RobottersDeles::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobottersDeles::class), - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'robots_parts', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'code', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robottersCode', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class . ' CROSS JOIN ' . RobottersDeles::class, - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'robots', - 'balias' => lcfirst(Robotters::class), - ], - lcfirst(RobottersDeles::class) => [ - 'type' => 'object', - 'model' => RobottersDeles::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobottersDeles::class), - ], - ], - 'joins' => [ - [ - 'type' => 'CROSS', - 'source' => [ - 'robots_parts', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'code', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robottersCode', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class . ' LEFT JOIN ' . RobottersDeles::class . ' RIGHT JOIN ' . Deles::class, - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'robots', - 'balias' => lcfirst(Robotters::class), - ], - lcfirst(RobottersDeles::class) => [ - 'type' => 'object', - 'model' => RobottersDeles::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobottersDeles::class), - ], - lcfirst(Deles::class) => [ - 'type' => 'object', - 'model' => Deles::class, - 'column' => 'parts', - 'balias' => lcfirst(Deles::class), - ], - ], - 'joins' => [ - [ - 'type' => 'LEFT', - 'source' => [ - 'robots_parts', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'code', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robottersCode', - ], - ], - ], - ], - [ - 'type' => 'RIGHT', - 'source' => [ - 'parts', - null, - ], - 'conditions' => [ - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . RobottersDeles::class . ' LEFT OUTER JOIN ' . Robotters::class . ' RIGHT OUTER JOIN ' . Deles::class, - "expected" => [ - 'models' => [ - RobottersDeles::class, - ], - 'tables' => [ - 'robots_parts', - ], - 'columns' => [ - lcfirst(RobottersDeles::class) => [ - 'type' => 'object', - 'model' => RobottersDeles::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobottersDeles::class), - ], - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'robots', - 'balias' => lcfirst(Robotters::class), - ], - lcfirst(Deles::class) => [ - 'type' => 'object', - 'model' => Deles::class, - 'column' => 'parts', - 'balias' => lcfirst(Deles::class), - ], - ], - 'joins' => [ - [ - 'type' => 'LEFT', - 'source' => [ - 'robots', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robottersCode', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'code', - ], - ], - ], - ], - [ - 'type' => 'RIGHT', - 'source' => [ - 'parts', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'parts_id', - 'balias' => 'delesCode', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'parts', - 'name' => 'id', - 'balias' => 'code', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class . ' JOIN ' . RobottersDeles::class . ' ON ' . Robotters::class . '.code = ' . RobottersDeles::class . '.robottersCode', - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'robots', - 'balias' => lcfirst(Robotters::class), - ], - lcfirst(RobottersDeles::class) => [ - 'type' => 'object', - 'model' => RobottersDeles::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobottersDeles::class), - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'robots_parts', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'code', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robottersCode', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class . ' LEFT OUTER JOIN ' . RobottersDeles::class . ' ON ' . Robotters::class . '.code = ' . RobottersDeles::class . '.robottersCode AND ' . RobottersDeles::class . '.robottersCode = ' . Robotters::class . '.code WHERE ' . Robotters::class . '.code IS NULL', - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'robots', - 'balias' => lcfirst(Robotters::class), - ], - lcfirst(RobottersDeles::class) => [ - 'type' => 'object', - 'model' => RobottersDeles::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobottersDeles::class), - ], - ], - 'joins' => [ - [ - 'type' => 'LEFT', - 'source' => [ - 'robots_parts', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'code', - ], - 'right' => [ - 'type' => 'binary-op', - 'op' => 'AND', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robottersCode', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robottersCode', - ], - ], - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'code', - ], - ], - ], - ], - ], - 'where' => [ - 'type' => 'unary-op', - 'op' => ' IS NULL', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'code', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class . ' RIGHT OUTER JOIN ' . RobottersDeles::class . ' ON ' . Robotters::class . '.code = ' . RobottersDeles::class . '.robottersCode AND ' . RobottersDeles::class . '.robottersCode = ' . Robotters::class . '.code WHERE ' . RobottersDeles::class . '.robottersCode IS NOT NULL', - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'robots', - 'balias' => lcfirst(Robotters::class), - ], - lcfirst(RobottersDeles::class) => [ - 'type' => 'object', - 'model' => RobottersDeles::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobottersDeles::class), - ], - ], - 'joins' => [ - [ - 'type' => 'RIGHT', - 'source' => [ - 'robots_parts', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'code', - ], - 'right' => [ - 'type' => 'binary-op', - 'op' => 'AND', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robottersCode', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robottersCode', - ], - ], - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'code', - ], - ], - ], - ], - ], - 'where' => [ - 'type' => 'unary-op', - 'op' => ' IS NOT NULL', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robottersCode', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class . ' FULL OUTER JOIN ' . RobottersDeles::class, - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'robots', - 'balias' => lcfirst(Robotters::class), - ], - lcfirst(RobottersDeles::class) => [ - 'type' => 'object', - 'model' => RobottersDeles::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobottersDeles::class), - ], - ], - 'joins' => [ - [ - 'type' => 'FULL OUTER', - 'source' => [ - 'robots_parts', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'code', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robottersCode', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . RobottersDeles::class . ' JOIN ' . Robotters::class, - "expected" => [ - 'models' => [ - RobottersDeles::class, - ], - 'tables' => [ - 'robots_parts', - ], - 'columns' => [ - lcfirst(RobottersDeles::class) => [ - 'type' => 'object', - 'model' => RobottersDeles::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobottersDeles::class), - ], - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'robots', - 'balias' => lcfirst(Robotters::class), - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'robots', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robottersCode', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'code', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT r.*, p.* FROM ' . Robotters::class . ' AS r JOIN ' . RobottersDeles::class . ' AS p', - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - 'r' => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'r', - 'balias' => 'r', - ], - 'p' => [ - 'type' => 'object', - 'model' => RobottersDeles::class, - 'column' => 'p', - 'balias' => 'p', - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'robots_parts', - null, - 'p', - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'code', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'p', - 'name' => 'robots_id', - 'balias' => 'robottersCode', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class . ' AS r JOIN ' . RobottersDeles::class . ' AS p', - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'r', - 'balias' => lcfirst(Robotters::class), - ], - lcfirst(RobottersDeles::class) => [ - 'type' => 'object', - 'model' => RobottersDeles::class, - 'column' => 'p', - 'balias' => lcfirst(RobottersDeles::class), - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'robots_parts', - null, - 'p', - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'code', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'p', - 'name' => 'robots_id', - 'balias' => 'robottersCode', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT r.* FROM ' . Robotters::class . ' r INNER JOIN ' . RobottersDeles::class, - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - 'r' => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'r', - 'balias' => 'r', - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'robots_parts', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'code', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robottersCode', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . RobottersDeles::class . ' JOIN ' . Robotters::class, - "expected" => [ - 'models' => [ - RobottersDeles::class, - ], - 'tables' => [ - 'robots_parts', - ], - 'columns' => [ - lcfirst(RobottersDeles::class) => [ - 'type' => 'object', - 'model' => RobottersDeles::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobottersDeles::class), - ], - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'robots', - 'balias' => lcfirst(Robotters::class), - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'robots', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robottersCode', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'code', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT r.*, p.* FROM ' . Robotters::class . ' AS r JOIN ' . RobottersDeles::class . ' AS p', - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - 'r' => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'r', - 'balias' => 'r', - ], - 'p' => [ - 'type' => 'object', - 'model' => RobottersDeles::class, - 'column' => 'p', - 'balias' => 'p', - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'robots_parts', - null, - 'p', - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'code', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'p', - 'name' => 'robots_id', - 'balias' => 'robottersCode', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class . ' AS r JOIN ' . RobottersDeles::class . ' AS p', - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'r', - 'balias' => lcfirst(Robotters::class), - ], - lcfirst(RobottersDeles::class) => [ - 'type' => 'object', - 'model' => RobottersDeles::class, - 'column' => 'p', - 'balias' => lcfirst(RobottersDeles::class), - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'robots_parts', - null, - 'p', - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'code', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'p', - 'name' => 'robots_id', - 'balias' => 'robottersCode', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT r.* FROM ' . Robotters::class . ' r INNER JOIN ' . RobottersDeles::class, - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - 'r' => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'r', - 'balias' => 'r', - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'robots_parts', - null, - ], - 'conditions' => [ - [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'code', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robottersCode', - ], - ], - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT ( ' . Personers::class . '.kredit + 100) / (' . Products::class . '.price * 0.15) FROM ' . Personers::class . ' JOIN ' . Products::class, - "expected" => [ - 'models' => [ - Personers::class, - ], - 'tables' => [ - 'personas', - ], - 'columns' => [ - '_0' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'binary-op', - 'op' => '/', - 'left' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '+', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'personas', - 'name' => 'cupo', - 'balias' => 'kredit', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - ], - 'right' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '*', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'products', - 'name' => 'price', - 'balias' => 'price', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '0.15', - ], - ], - ], - ], - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'products', - null, - ], - 'conditions' => [ - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT ( ' . Personers::class . '.kredit + 100) / (' . SomeProducts::class . '.price * 0.15) AS price FROM ' . Personers::class . ' JOIN ' . SomeProducts::class, - "expected" => [ - 'models' => [ - Personers::class, - ], - 'tables' => [ - 'personas', - ], - 'columns' => [ - 'price' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'binary-op', - 'op' => '/', - 'left' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '+', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'personas', - 'name' => 'cupo', - 'balias' => 'kredit', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - ], - 'right' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '*', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'le_products', - 'name' => 'price', - 'balias' => 'price', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '0.15', - ], - ], - ], - ], - 'balias' => 'price', - 'sqlAlias' => 'price', - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'le_products', - null, - ], - 'conditions' => [ - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT (p.kredit + 100) / (s.price * 0.15) AS price FROM ' . Personers::class . ' AS p JOIN ' . SomeProducts::class . ' AS s', - "expected" => [ - 'models' => [ - Personers::class, - ], - 'tables' => [ - [ - 'personas', - null, - 'p', - ], - ], - 'columns' => [ - 'price' => [ - 'type' => 'scalar', - 'column' => [ - 'type' => 'binary-op', - 'op' => '/', - 'left' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '+', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'p', - 'name' => 'cupo', - 'balias' => 'kredit', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '100', - ], - ], - ], - 'right' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '*', - 'left' => [ - 'type' => 'qualified', - 'domain' => 's', - 'name' => 'price', - 'balias' => 'price', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '0.15', - ], - ], - ], - ], - 'balias' => 'price', - 'sqlAlias' => 'price', - ], - ], - 'joins' => [ - [ - 'type' => 'INNER', - 'source' => [ - 'le_products', - null, - 's', - ], - 'conditions' => [ - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class . ', ' . RobottersDeles::class, - "expected" => [ - 'models' => [ - Robotters::class, - RobottersDeles::class, - ], - 'tables' => [ - 'robots', - 'robots_parts', - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'robots', - 'balias' => lcfirst(Robotters::class), - ], - lcfirst(RobottersDeles::class) => [ - 'type' => 'object', - 'model' => RobottersDeles::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobottersDeles::class), - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class . ' r, ' . RobottersDeles::class . ' p', - "expected" => [ - 'models' => [ - Robotters::class, - RobottersDeles::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - [ - 'robots_parts', - null, - 'p', - ], - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'r', - 'balias' => lcfirst(Robotters::class), - ], - lcfirst(RobottersDeles::class) => [ - 'type' => 'object', - 'model' => RobottersDeles::class, - 'column' => 'p', - 'balias' => lcfirst(RobottersDeles::class), - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class . ' AS r, ' . RobottersDeles::class . ' AS p', - "expected" => [ - 'models' => [ - Robotters::class, - RobottersDeles::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - [ - 'robots_parts', - null, - 'p', - ], - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'r', - 'balias' => lcfirst(Robotters::class), - ], - lcfirst(RobottersDeles::class) => [ - 'type' => 'object', - 'model' => RobottersDeles::class, - 'column' => 'p', - 'balias' => lcfirst(RobottersDeles::class), - ], - ], - ] - ], - [ - "phql" => 'SELECT theName, delesCode FROM ' . Robotters::class . ' AS r, ' . RobottersDeles::class . ' AS p', - "expected" => [ - 'models' => [ - Robotters::class, - RobottersDeles::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - [ - 'robots_parts', - null, - 'p', - ], - ], - 'columns' => [ - 'theName' => [ - 'type' => 'scalar', - 'balias' => 'theName', - 'sqlAlias' => 'theName', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'theName', - ], - ], - 'delesCode' => [ - 'type' => 'scalar', - 'balias' => 'delesCode', - 'sqlAlias' => 'delesCode', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'p', - 'name' => 'parts_id', - 'balias' => 'delesCode', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class . ' AS r, ' . RobottersDeles::class . ' AS p WHERE r.code = p.robottersCode', - "expected" => [ - 'models' => [ - Robotters::class, - RobottersDeles::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - [ - 'robots_parts', - null, - 'p', - ], - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'r', - 'balias' => lcfirst(Robotters::class), - ], - lcfirst(RobottersDeles::class) => [ - 'type' => 'object', - 'model' => RobottersDeles::class, - 'column' => 'p', - 'balias' => lcfirst(RobottersDeles::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'id', - 'balias' => 'code', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'p', - 'name' => 'robots_id', - 'balias' => 'robottersCode', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class . ', ' . RobottersDeles::class . ' WHERE ' . Robotters::class . '.code = ' . RobottersDeles::class . '.robottersCode', - "expected" => [ - 'models' => [ - Robotters::class, - RobottersDeles::class, - ], - 'tables' => [ - 'robots', - 'robots_parts', - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'robots', - 'balias' => lcfirst(Robotters::class), - ], - lcfirst(RobottersDeles::class) => [ - 'type' => 'object', - 'model' => RobottersDeles::class, - 'column' => 'robots_parts', - 'balias' => lcfirst(RobottersDeles::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'code', - ], - 'right' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robottersCode', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class . ' r WHERE NOT (r.theName = "shaggy") ORDER BY 1, r.theName', - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'r', - 'balias' => lcfirst(Robotters::class), - ], - ], - 'where' => [ - 'type' => 'unary-op', - 'op' => 'NOT ', - 'right' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'theName', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'shaggy\'', - ], - ], - ], - ], - 'order' => [ - [ - [ - 'type' => 'literal', - 'value' => '1', - ], - ], - [ - [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'theName', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class . ' r WHERE NOT (r.theName = "shaggy") ORDER BY 1 DESC, r.theName', - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'r', - 'balias' => lcfirst(Robotters::class), - ], - ], - 'where' => [ - 'type' => 'unary-op', - 'op' => 'NOT ', - 'right' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'theName', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'shaggy\'', - ], - ], - ], - ], - 'order' => [ - [ - [ - 'type' => 'literal', - 'value' => '1', - ], - 'DESC', - ], - [ - [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'theName', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class . ' r WHERE NOT (r.theName = "shaggy") ORDER BY 1, r.theName', - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'r', - 'balias' => lcfirst(Robotters::class), - ], - ], - 'where' => [ - 'type' => 'unary-op', - 'op' => 'NOT ', - 'right' => [ - 'type' => 'parentheses', - 'left' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'theName', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'shaggy\'', - ], - ], - ], - ], - 'order' => [ - [ - [ - 'type' => 'literal', - 'value' => '1', - ], - ], - [ - [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'theName', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class . ' r WHERE r.theName <> "shaggy" ORDER BY 1, 2 LIMIT 5', - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'r', - 'balias' => lcfirst(Robotters::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '<>', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'theName', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'shaggy\'', - ], - ], - 'order' => [ - [ - [ - 'type' => 'literal', - 'value' => '1', - ], - ], - [ - [ - 'type' => 'literal', - 'value' => '2', - ], - ], - ], - 'limit' => [ - 'number' => [ - 'type' => 'literal', - 'value' => '5', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class . ' r WHERE r.theName <> "shaggy" ORDER BY 1 ASC, 2 DESC LIMIT 5', - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'r', - 'balias' => lcfirst(Robotters::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '<>', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'r', - 'name' => 'name', - 'balias' => 'theName', - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'shaggy\'', - ], - ], - 'order' => [ - [ - [ - 'type' => 'literal', - 'value' => '1', - ], - 'ASC', - ], - [ - [ - 'type' => 'literal', - 'value' => '2', - ], - 'DESC', - ], - ], - 'limit' => [ - 'number' => [ - 'type' => 'literal', - 'value' => '5', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class . ' GROUP BY ' . Robotters::class . '.theName', - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'robots', - 'balias' => lcfirst(Robotters::class), - ], - ], - 'group' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'theName', - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robotters::class . ' GROUP BY ' . Robotters::class . '.theName, ' . Robotters::class . '.code', - "expected" => [ - 'models' => [ - Robotters::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robotters::class) => [ - 'type' => 'object', - 'model' => Robotters::class, - 'column' => 'robots', - 'balias' => lcfirst(Robotters::class), - ], - ], - 'group' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'theName', - ], - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'code', - ], - ], - ] - ], - [ - // Issue 1011 - "phql" => 'SELECT * FROM ' . Robots::class . ' r LIMIT ?1,:limit:', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - [ - 'robots', - null, - 'r', - ], - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'r', - 'balias' => lcfirst(Robots::class), - ], - ], - 'limit' => [ - 'number' => [ - 'type' => 'placeholder', - 'value' => ':limit', - ], - 'offset' => [ - 'type' => 'placeholder', - 'value' => ':1', - ], - ], - ] - ], - [ - // SELECT DISTINCT - "phql" => 'SELECT DISTINCT id, name FROM ' . Robots::class, - "expected" => [ - 'distinct' => 1, - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - 'id' => [ - 'type' => 'scalar', - 'balias' => 'id', - 'sqlAlias' => 'id', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - ], - 'name' => [ - 'type' => 'scalar', - 'balias' => 'name', - 'sqlAlias' => 'name', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - ], - ] - ], - [ - // SELECT ALL - "phql" => 'SELECT ALL id, name FROM ' . Robots::class, - "expected" => [ - 'distinct' => 0, - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - 'id' => [ - 'type' => 'scalar', - 'balias' => 'id', - 'sqlAlias' => 'id', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - ], - 'name' => [ - 'type' => 'scalar', - 'balias' => 'name', - 'sqlAlias' => 'name', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name', - ], - ], - ], - ] - ], - [ - "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE id IN (SELECT robots_id FROM ' . RobotsParts::class . ')', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots', - ], - 'columns' => [ - lcfirst(Robots::class) => [ - 'type' => 'object', - 'model' => Robots::class, - 'column' => 'robots', - 'balias' => lcfirst(Robots::class), - ], - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => 'IN', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'id', - 'balias' => 'id', - ], - 'right' => [ - 'type' => 'select', - 'value' => [ - 'models' => [ - RobotsParts::class, - ], - 'tables' => [ - 'robots_parts', - ], - 'columns' => [ - 'robots_id' => [ - 'type' => 'scalar', - 'balias' => 'robots_id', - 'sqlAlias' => 'robots_id', - 'column' => [ - 'type' => 'qualified', - 'domain' => 'robots_parts', - 'name' => 'robots_id', - 'balias' => 'robots_id', - ], - ], - ], - ], - ], - ], - ] - ], - [ - // PR #13124, ISSUE #12971 - "phql" => 'SELECT UPPER('. Robots::class . '.name) AS name FROM ' . Robots::class . ' WHERE ' . Robots::class .'.name = "Robotina"', - "expected" => [ - 'models' => [ - Robots::class, - ], - 'tables' => [ - 'robots' - ], - 'columns' => [ - 'name' => [ - 'type' => 'scalar', - 'balias' => 'name', - 'sqlAlias' => 'name', - 'column' => [ - 'type' => 'functionCall', - 'name' => 'UPPER', - 'arguments' => [ - [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name' - ] - ], - ], - ] - ], - 'where' => [ - 'type' => 'binary-op', - 'op' => '=', - 'left' => [ - 'type' => 'qualified', - 'domain' => 'robots', - 'name' => 'name', - 'balias' => 'name' - ], - 'right' => [ - 'type' => 'literal', - 'value' => '\'Robotina\'' - ] - ] - ] - ], -]; diff --git a/tests/_fixtures/volt/compilerExceptionsTest/volt_compile_string.php b/tests/_fixtures/volt/compilerExceptionsTest/volt_compile_string.php deleted file mode 100644 index 522a94fcbae..00000000000 --- a/tests/_fixtures/volt/compilerExceptionsTest/volt_compile_string.php +++ /dev/null @@ -1,23 +0,0 @@ - - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - ['{{ "hello"|unknown }}', 'Unknown filter "unknown" in eval code on line 1'], - ['{{ "hello"|unknown(1, 2, 3) }}', 'Unknown filter "unknown" in eval code on line 1'], - ['{{ "hello"|(a-1) }}', 'Unknown filter type in eval code on line 1'], -]; diff --git a/tests/_fixtures/volt/compilerExceptionsTest/volt_extends_error.php b/tests/_fixtures/volt/compilerExceptionsTest/volt_extends_error.php deleted file mode 100644 index 9fcd0a5018e..00000000000 --- a/tests/_fixtures/volt/compilerExceptionsTest/volt_extends_error.php +++ /dev/null @@ -1,35 +0,0 @@ - - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - [ - '{{ "hello"}}{% extends "some/file.volt" %}', - 'Extends statement must be placed at the first line in the template in eval code on line 1' - ], - [ - '
{% extends "some/file.volt" %}{% set a = 1 %}
', - 'Extends statement must be placed at the first line in the template in eval code on line 1' - ], - ['{% extends "some/file.volt" %}{{ "hello"}}', 'Child templates only may contain blocks in eval code on line 1'], - [ - '{% extends "some/file.volt" %}{{% if true %}} {%endif%}', - 'Child templates only may contain blocks in eval code on line 1' - ], - ['{% extends "some/file.volt" %}{{% set a = 1 %}', 'Child templates only may contain blocks in eval code on line 1'], - ['{% extends "some/file.volt" %}{{% set a = 1 %}', 'Child templates only may contain blocks in eval code on line 1'], -]; diff --git a/tests/_fixtures/volt/compilerExceptionsTest/volt_syntax_error.php b/tests/_fixtures/volt/compilerExceptionsTest/volt_syntax_error.php deleted file mode 100644 index 53f1d4d660b..00000000000 --- a/tests/_fixtures/volt/compilerExceptionsTest/volt_syntax_error.php +++ /dev/null @@ -1,71 +0,0 @@ - - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - ['{{', 'Syntax error, unexpected EOF in eval code'], - ['{{ }}', 'Syntax error, unexpected EOF in eval code'], - ['{{ ++v }}', 'Syntax error, unexpected token ++ in eval code on line 1'], - [ - '{{ - ++v }}', - 'Syntax error, unexpected token ++ in eval code on line 2' - ], - [ - '{{ - - - if - for }}', - 'Syntax error, unexpected token IF in eval code on line 4' - ], - [ - '{% block some %} - {% for x in y %} - {{ ."hello".y }} - {% endfor %} - {% endblock %}', - 'Syntax error, unexpected token DOT in eval code on line 3' - ], - [ - '{# - - This is a multi-line comment - - #}{% block some %} - {# This is a single-line comment #} - {% for x in y %} - {{ "hello"++y }} - {% endfor %} - {% endblock %}', - 'Syntax error, unexpected token IDENTIFIER(y) in eval code on line 8' - ], - [ - '{# Hello #} - - {% for robot in robots %} - {{ link_to("hello", robot.id ~ ~ robot.name) }} - {% endfor %} - - ', - 'Syntax error, unexpected token ~ in eval code on line 4' - ], - [ - '\'{{ link_to("album/" ~ album.id ~ "/" ~ $album.uri, "\""") }}\'', - "Scanning error before 'album.uri, \" - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - ['', 0], - //Comments - ['{# hello #}', 0], - ['{# hello #}{# other comment #}', 0], - //Common Expressions - ['hello', 1], - ['{{ 1 }}', 1], - ['{{ 1.2 }}', 1], - ['{{ false }}', 1], - ['{{ true }}', 1], - ['{{ null }}', 1], - ['{{ "hello" }}', 1], - ['{{ "\'hello\'" }}', 1], - ['{{ "hello" }}{{ "hello" }}', 2], - ['{{ "hello" }}-{{ "hello" }}', 3], - ['-{{ "hello" }}{{ "hello" }}-', 4], - ['-{{ "hello" }}-{{ "hello" }}-', 5], - ['Some = {{ 100+50 }}', 2], - ['Some = {{ 100-50 }}', 2], - ['Some = {{ 100*50 }}', 2], - ['Some = {{ 100/50 }}', 2], - ['Some = {{ 100%50 }}', 2], - ['Some = {{ 100~50 }}', 2], - ['{{ a[0 ]}}', 1], - ['{{ a[0 ][1]}}', 1], - ['{{ a[0]["hello"] }}', 1], - ['{{ a[0][1.2][false][true] }}', 1], - ['{{ a[0][1.2][false][true][b] }}', 1], - //Attribute access - ['{{ a.b }}', 1], - ['{{ a.b.c }}', 1], - ['{{ (a.b).c }}', 1], - ['{{ a.(b.c) }}', 1], - //Ranges - ['{{ 1..100 }}', 1], - ['{{ "Z".."A" }}', 1], - ["{{ 'a'..'z' }}", 1], - ["{{ 'a' .. 'z' }}", 1], - //Unary operators - ['{{ -10 }}', 1], - ['{{ !10 }}', 1], - ['{{ !a }}', 1], - ['{{ not a }}', 1], - ['{{ 10-- }}', 1], - ['{{ !!10 }}', 1], - //Calling functions - ['{{ contents() }}', 1], - ["{{ link_to('hello', 'some-link') }}", 1], - ["{{ form('action': 'save/products', 'method': 'post') }}", 1], - ["{{ form('action': 'save/products', 'method': other_func(1, 2, 3)) }}", 1], - ["{{ partial('hello/x') }}", 1], - ['{{ dump(a) }}', 1], - ["{{ date('Y-m-d', time()) }}", 1], - ['{{ flash.outputMessages() }}', 1], - ["{{ session.get('hello') }}", 1], - ["{{ user.session.get('hello') }}", 1], - ["{{ user.session.get(request.getPost('token')) }}", 1], - ["{{ a[0]('hello') }}", 1], - ["{{ [a[0]('hello').name]|keys }}", 1], - //Arrays - ['{{ [1, 2, 3, 4] }}', 1], - ['{{ ["hello", 2, 1.3, false, true, null] }}', 1], - ['{{ ["hello", 2, 3, false, true, null, [1, 2, "hola"]] }}', 1], - ["{{ ['first': 1, 'second': 2, 'third': 3] }}", 1], - //Filters - ['{{ "hello"|e }}', 1], - ['{{ ("hello" ~ "lol")|e|length }}', 1], - ['{{ (("hello" ~ "lol")|e|length)|trim }}', 1], - ['{{ "a".."z"|join(",") }}', 1], - ['{{ "My real name is %s"|format(name) }}', 1], - ['{{ robot.price|default(10.0) }}', 1], - //if statement - ['{% if a==b %} hello {% endif %}', 1], - ['{% if a!=b %} hello {% endif %}', 1], - ['{% if a!=b %} hello {% endif %}', 1], - ['{% if ab %} hello {% endif %}', 1], - ['{% if a<=b %} hello {% endif %}', 1], - ['{% if a>=b %} hello {% endif %}', 1], - ['{% if a===b %} hello {% endif %}', 1], - ['{% if a!==b %} hello {% endif %}', 1], - ['{% if a and b %} hello {% endif %}', 1], - ['{% if a or b %} hello {% endif %}', 1], - ['{% if a is defined %} hello {% endif %}', 1], - ['{% if a is not defined %} hello {% endif %}', 1], - ['{% if a is 100 %} hello {% endif %}', 1], - ['{% if a is not 100 %} hello {% endif %}', 1], - ['{% if a==b and c==d %} hello {% endif %}', 1], - ['{% if a==b or c==d %} hello {% endif %}', 1], - ['{% if a==b %} hello {% else %} not hello {% endif %}', 1], - ['{% if a==b %} {% if c==d %} hello {% endif %} {% else %} not hello {% endif %}', 1], - ['{% if a==b %} hello {% else %} {% if c==d %} not hello {% endif %} {% endif %}', 1], - //for statement - ['{% for a in b %} hello {% endfor %}', 1], - ['{% for a in b[0] %} hello {% endfor %}', 1], - ['{% for a in b.c %} hello {% endfor %}', 1], - ['{% for a in 1..10 %} hello {% endfor %}', 1], - ['{% for a in 1..10 if a < 5 and a > 7 %} hello {% endfor %}', 1], - ['{% for a in 1..10 %} {% for b in 1..10 %} hello {% endfor %} {% endfor %}', 1], - ['{% for k, v in [1, 2, 3] %} hello {% endfor %}', 1], - ['{% for k, v in [1, 2, 3] if v is odd %} hello {% endfor %}', 1], - ['{% for v in [1, 2, 3] %} {% break %} {% endfor %}', 1], - ['{% for v in [1, 2] %} {% continue %} {% endfor %}', 1], - //set statement - ['{% set a = 1 %}', 1], - ['{% set a = b %}', 1], - ['{% set a = 1.2 %}', 1], - ['{% set a = 1.2+1*(20/b) and c %}', 1], - ['{% set a[0] = 1 %}', 1], - ['{% set a[0][1] = 1 %}', 1], - ['{% set a.y = 1 %}', 1], - ['{% set a.y.x = 1 %}', 1], - ['{% set a[0].y = 1 %}', 1], - ['{% set a.y[0] = 1 %}', 1], - ['{% do 1 %}', 1], - ['{% do a + b %}', 1], - ['{% do a - 1.2 %}', 1], - ['{% do 1.2 + 1 * (20 / b) and c %}', 1], - ['{% do super()|e %}', 1], - //Autoescape - ['{% autoescape true %} {% endautoescape %}', 1], - ['{% autoescape false %} {% endautoescape %}', 1], - //Blocks - ['{% block hello %} {% endblock %}', 1], - ['{% block hello %}{% endblock %}', 1], - //Extends - ['{% extends "some/file.volt" %}', 1], - //Include - ['{% include "some/file.volt" %}', 1], - //Cache - ['{% cache sidebar %} hello {% endcache %}', 1], - ['{% cache sidebar 500 %} hello {% endcache %}', 1], - //Mixed - ['{# some comment #}{{ "hello" }}{# other comment }}', 1], -]; diff --git a/tests/_fixtures/volt/compilerTest/volt_closure_filter.php b/tests/_fixtures/volt/compilerTest/volt_closure_filter.php deleted file mode 100644 index 99dc5418744..00000000000 --- a/tests/_fixtures/volt/compilerTest/volt_closure_filter.php +++ /dev/null @@ -1,21 +0,0 @@ - - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - ['separate', 'explode', '{{ "1,2,3,4"|separate }}', ''], -]; diff --git a/tests/_fixtures/volt/compilerTest/volt_compile_string_autoescape.php b/tests/_fixtures/volt/compilerTest/volt_compile_string_autoescape.php deleted file mode 100644 index 39ceea81e0e..00000000000 --- a/tests/_fixtures/volt/compilerTest/volt_compile_string_autoescape.php +++ /dev/null @@ -1,32 +0,0 @@ - - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -/*return [ - [ - '{{ "hello" }}{% autoescape true %}{{ "hello" }}{% autoescape false %}{{ "hello" }}{% endautoescape %}{{ "hello" }}{% endautoescape %}{{ "hello" }}', - "escaper->escapeHtml('hello') ?>escaper->escapeHtml('hello') ?>escaper->escapeHtml('hello') ?>escaper->escapeHtml('hello') ?>", - ], -];*/ - - -return [ - [ - '{{ "hello" }}{% autoescape true %}{{ "hello" }}{% autoescape false %}{{ "hello" }}{% endautoescape %}{{ "hello" }}{% endautoescape %}{{ "hello" }}', - "escaper->escapeHtml('hello') ?>escaper->escapeHtml('hello') ?>escaper->escapeHtml('hello') ?>escaper->escapeHtml('hello') ?>", - ], -]; diff --git a/tests/_fixtures/volt/compilerTest/volt_compile_string_equals.php b/tests/_fixtures/volt/compilerTest/volt_compile_string_equals.php deleted file mode 100644 index 7dd3451cad6..00000000000 --- a/tests/_fixtures/volt/compilerTest/volt_compile_string_equals.php +++ /dev/null @@ -1,214 +0,0 @@ - - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - ['', ''], - //Comments - ['{# hello #}', ''], - ['{# hello #}{# other comment #}', ''], - //Common Expressions - ['hello', 'hello'], - ['{{ "hello" }}', ""], - ['{{ "hello" }}{{ "hello" }}', ""], - ['{{ "hello" }}-{{ "hello" }}', "-"], - ['-{{ "hello" }}{{ "hello" }}-', "--"], - ['-{{ "hello" }}-{{ "hello" }}-', "---"], - ['Some = {{ 100+50 }}', "Some = "], - ['Some = {{ 100-50 }}', "Some = "], - ['Some = {{ 100*50 }}', "Some = "], - ['Some = {{ 100/50 }}', "Some = "], - ['Some = {{ 100%50 }}', "Some = "], - ['Some = {{ 100~50 }}', "Some = "], - //Unary operators - ['{{ -10 }}', ""], - ['{{ !10 }}', ""], - ['{{ !a }}', ''], - ['{{ not a }}', ''], - //Arrays - ['{% set a = [1, 2, 3, 4] %}', ''], - ['{% set a = ["hello", 2, 1.3, false, true, null] %}', ''], - [ - '{% set a = ["hello", 2, 3, false, true, null, [1, 2, "hola"]] %}', - '' - ], - [ - "{% set a = ['first': 1, 'second': 2, 'third': 3] %}", - ' 1, \'second\' => 2, \'third\' => 3]; ?>' - ], - //Array access - ['{{ a[0 ]}}', ''], - ['{{ a[0 ] [ 1]}}', ''], - ['{{ a[0] [ "hello"] }}', ''], - ['{{ a[0] [1.2] [false] [true] }}', ''], - //Attribute access - ['{{ a.b }}', 'b ?>'], - ['{{ a.b.c }}', 'b->c ?>'], - //Ranges - ['{{ 1..100 }}', ''], - ['{{ "Z".."A" }}', ''], - ["{{ 'a'..'z' }}", ''], - ["{{ 'a' .. 'z' }}", ''], - //Calling functions - ['{{ content() }}', 'getContent() ?>'], - ['{{ get_content() }}', 'getContent() ?>'], - ["{{ partial('hello/x') }}", 'partial(\'hello/x\') ?>'], - ['{{ dump(a) }}', ''], - ["{{ date('Y-m-d', time()) }}", ''], - ['{{ robots.getPart(a) }}', 'getPart($a) ?>'], - //Phalcon\Tag helpers - ["{{ link_to('hello', 'some-link') }}", 'tag->linkTo([\'hello\', \'some-link\']) ?>'], - [ - "{{ form('action': 'save/products', 'method': 'post') }}", - 'tag->form([\'action\' => \'save/products\', \'method\' => \'post\']) ?>' - ], - [ - '{{ stylesheet_link(config.cdn.css.bootstrap, config.cdn.local) }}', - 'tag->stylesheetLink($config->cdn->css->bootstrap, $config->cdn->local) ?>' - ], - ["{{ javascript_include('js/some.js') }}", 'tag->javascriptInclude(\'js/some.js\') ?>'], - ["{{ image('img/logo.png', 'width': 80) }}", "tag->image(['img/logo.png', 'width' => 80]) ?>"], - [ - "{{ email_field('email', 'class': 'form-control', 'placeholder': 'Email Address') }}", - "tag->emailField(['email', 'class' => 'form-control', 'placeholder' => 'Email Address']) ?>" - ], - //Filters - ['{{ "hello"|e }}', 'escaper->escapeHtml(\'hello\') ?>'], - ['{{ "hello"|escape }}', 'escaper->escapeHtml(\'hello\') ?>'], - ['{{ "hello"|trim }}', ''], - ['{{ "hello"|striptags }}', ''], - ['{{ "hello"|json_encode }}', ''], - ['{{ "hello"|url_encode }}', ''], - ['{{ "hello"|uppercase }}', ''], - ['{{ "hello"|lowercase }}', ''], - ['{{ ("hello" ~ "lol")|e|length }}', 'length($this->escaper->escapeHtml((\'hello\' . \'lol\'))) ?>'], - //Filters with parameters - ['{{ "My name is %s, %s"|format(name, "thanks") }}', ""], - [ - '{{ "some name"|convert_encoding("utf-8", "latin1") }}', - "convertEncoding('some name', 'utf-8', 'latin1') ?>" - ], - //if statement - ['{% if a==b %} hello {% endif %}', ' hello '], - ['{% if a!=b %} hello {% endif %}', ' hello '], - ['{% if a is not b %} hello {% endif %}', ' hello '], - ['{% if a hello '], - ['{% if a>b %} hello {% endif %}', ' $b) { ?> hello '], - ['{% if a>=b %} hello {% endif %}', '= $b) { ?> hello '], - ['{% if a<=b %} hello {% endif %}', ' hello '], - ['{% if a===b %} hello {% endif %}', ' hello '], - ['{% if a!==b %} hello {% endif %}', ' hello '], - ['{% if a==b and c==d %} hello {% endif %}', ' hello '], - ['{% if a==b or c==d %} hello {% endif %}', ' hello '], - ['{% if a is odd %} hello {% endif %}', ' hello '], - ['{% if a is even %} hello {% endif %}', ' hello '], - ['{% if a is empty %} hello {% endif %}', ' hello '], - ['{% if a is not empty %} hello {% endif %}', ' hello '], - ['{% if a is numeric %} hello {% endif %}', ' hello '], - ['{% if a is not numeric %} hello {% endif %}', ' hello '], - ['{% if a is scalar %} hello {% endif %}', ' hello '], - ['{% if a is not scalar %} hello {% endif %}', ' hello '], - [ - '{% if a is iterable %} hello {% endif %}', - ' hello ' - ], - [ - '{% if a is not iterable %} hello {% endif %}', - ' hello ' - ], - ['{% if a is sameas(false) %} hello {% endif %}', ' hello '], - ['{% if a is sameas(b) %} hello {% endif %}', ' hello '], - ['{% if a is divisibleby(3) %} hello {% endif %}', ' hello '], - ['{% if a is divisibleby(b) %} hello {% endif %}', ' hello '], - ['{% if a is defined %} hello {% endif %}', ' hello '], - ['{% if a is not defined %} hello {% endif %}', ' hello '], - [ - '{% if a==b %} hello {% else %} not hello {% endif %}', - ' hello not hello ' - ], - [ - '{% if a==b %} {% if c==d %} hello {% endif %} {% else %} not hello {% endif %}', - ' hello not hello ' - ], - [ - '{% if a==b %} {% if c==d %} hello {% else %} not hello {% endif %}{% endif %}', - ' hello not hello ' - ], - [ - '{% if a==b %} hello {% else %} {% if c==d %} not hello {% endif %} {% endif %}', - ' hello not hello ' - ], - [ - '{% if a is empty or a is defined %} hello {% else %} not hello {% endif %}', - ' hello not hello ' - ], - [ - '{% if a is even or b is odd %} hello {% else %} not hello {% endif %}', - ' hello not hello ' - ], - //for statement - ['{% for a in b %} hello {% endfor %}', ' hello '], - ['{% for a in b[0] %} hello {% endfor %}', ' hello '], - ['{% for a in b.c %} hello {% endfor %}', 'c as $a) { ?> hello '], - [ - '{% for key, value in [0, 1, 3, 5, 4] %} hello {% endfor %}', - ' $value) { ?> hello ' - ], - [ - '{% for key, value in [0, 1, 3, 5, 4] if key!=3 %} hello {% endfor %}', - ' $value) { if ($key != 3) { ?> hello ' - ], - ['{% for a in 1..10 %} hello {% endfor %}', ' hello '], - [ - '{% for a in 1..10 if a is even %} hello {% endfor %}', - ' hello ' - ], - [ - '{% for a in 1..10 %} {% for b in 1..10 %} hello {% endfor %} {% endfor %}', - ' hello ' - ], - ['{% for a in 1..10 %}{% break %}{% endfor %}', ''], - [ - '{% for a in 1..10 %}{% continue %}{% endfor %}', - '' - ], - //set statement - ['{% set a = 1 %}', ''], - ['{% set a = a-1 %}', ''], - ['{% set a = 1.2 %}', ''], - ['{% set a = 1.2+1*(20/b) and c %}', ''], - // Cache statement - [ - '{% cache somekey %} hello {% endcache %}', - 'di->get(\'viewCache\'); $_cacheKey[$somekey] = $_cache[$somekey]->start($somekey); if ($_cacheKey[$somekey] === null) { ?> hello save($somekey); } else { echo $_cacheKey[$somekey]; } ?>' - ], - [ - '{% set lifetime = 500 %}{% cache somekey lifetime %} hello {% endcache %}', - 'di->get(\'viewCache\'); $_cacheKey[$somekey] = $_cache[$somekey]->start($somekey, $lifetime); if ($_cacheKey[$somekey] === null) { ?> hello save($somekey, null, $lifetime); } else { echo $_cacheKey[$somekey]; } ?>' - ], - [ - '{% cache somekey 500 %} hello {% endcache %}', - 'di->get(\'viewCache\'); $_cacheKey[$somekey] = $_cache[$somekey]->start($somekey, 500); if ($_cacheKey[$somekey] === null) { ?> hello save($somekey, null, 500); } else { echo $_cacheKey[$somekey]; } ?>' - ], - //Autoescape mode - [ - '{{ "hello" }}{% autoescape true %}{{ "hello" }}{% autoescape false %}{{ "hello" }}{% endautoescape %}{{ "hello" }}{% endautoescape %}{{ "hello" }}', - "escaper->escapeHtml('hello') ?>escaper->escapeHtml('hello') ?>" - ], - //Mixed - ['{# some comment #}{{ "hello" }}{# other comment }}', ""], -]; diff --git a/tests/_fixtures/volt/compilerTest/volt_single_filter.php b/tests/_fixtures/volt/compilerTest/volt_single_filter.php deleted file mode 100644 index 95461f31f75..00000000000 --- a/tests/_fixtures/volt/compilerTest/volt_single_filter.php +++ /dev/null @@ -1,21 +0,0 @@ - - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - ['reverse', 'strrev', '{{ "hello"|reverse }}', ''], -]; diff --git a/tests/_fixtures/volt/compilerTest/volt_users_function_with_closure.php b/tests/_fixtures/volt/compilerTest/volt_users_function_with_closure.php deleted file mode 100644 index cb00661cc65..00000000000 --- a/tests/_fixtures/volt/compilerTest/volt_users_function_with_closure.php +++ /dev/null @@ -1,21 +0,0 @@ - - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - ['shuffle', 'str_shuffle', '{{ shuffle("hello") }}', ''] -]; diff --git a/tests/_fixtures/volt/compilerTest/volt_users_single_string_function.php b/tests/_fixtures/volt/compilerTest/volt_users_single_string_function.php deleted file mode 100644 index 941facb8f3f..00000000000 --- a/tests/_fixtures/volt/compilerTest/volt_users_single_string_function.php +++ /dev/null @@ -1,22 +0,0 @@ - - * @package Phalcon\Test\Models - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -return [ - ['random', 'mt_rand', '{{ random() }}', ''], - ['strtotime', 'strtotime', '{{ strtotime("now") }}', ""], -]; diff --git a/tests/_output/.gitignore b/tests/_output/.gitignore index a782617fe6d..c96a04f008e 100644 --- a/tests/_output/.gitignore +++ b/tests/_output/.gitignore @@ -1,2 +1,2 @@ -/failed -phalcon_test.sqlite +* +!.gitignore \ No newline at end of file diff --git a/tests/_output/tests/annotations/.gitignore b/tests/_output/tests/annotations/.gitignore deleted file mode 100644 index d6b7ef32c84..00000000000 --- a/tests/_output/tests/annotations/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/tests/_output/tests/assets/.gitignore b/tests/_output/tests/assets/.gitignore deleted file mode 100644 index d6b7ef32c84..00000000000 --- a/tests/_output/tests/assets/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/tests/_output/tests/cache/.gitignore b/tests/_output/tests/cache/.gitignore deleted file mode 100644 index d6b7ef32c84..00000000000 --- a/tests/_output/tests/cache/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/tests/_output/tests/image/gd/.gitignore b/tests/_output/tests/image/gd/.gitignore deleted file mode 100644 index d6b7ef32c84..00000000000 --- a/tests/_output/tests/image/gd/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/tests/_output/tests/image/imagick/.gitignore b/tests/_output/tests/image/imagick/.gitignore deleted file mode 100644 index d6b7ef32c84..00000000000 --- a/tests/_output/tests/image/imagick/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/tests/_output/tests/logs/.gitignore b/tests/_output/tests/logs/.gitignore deleted file mode 100644 index d6b7ef32c84..00000000000 --- a/tests/_output/tests/logs/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/tests/_output/tests/session/.gitignore b/tests/_output/tests/session/.gitignore deleted file mode 100644 index d6b7ef32c84..00000000000 --- a/tests/_output/tests/session/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/tests/_output/tests/stream/.gitignore b/tests/_output/tests/stream/.gitignore deleted file mode 100644 index d6b7ef32c84..00000000000 --- a/tests/_output/tests/stream/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/tests/_support/AcceptanceTester.php b/tests/_support/AcceptanceTester.php new file mode 100644 index 00000000000..566a1d93faf --- /dev/null +++ b/tests/_support/AcceptanceTester.php @@ -0,0 +1,26 @@ +haveServiceInDi('mongo', function () { - $dsn = sprintf('mongodb://%s:%s', TEST_DB_MONGO_HOST, TEST_DB_MONGO_PORT); - - if (class_exists('MongoClient')) { - $mongo = new MongoClient($dsn); - } else { - $mongo = new Mongo($dsn); - } - - return $mongo->selectDB(TEST_DB_MONGO_NAME); - }, true); - - $I->haveServiceInDi('collectionManager', function () { - return new Manager(); - }, true); - } -} diff --git a/tests/_support/Helper/ConnectionCheckerTrait.php b/tests/_support/Helper/ConnectionCheckerTrait.php deleted file mode 100644 index 76f493538df..00000000000 --- a/tests/_support/Helper/ConnectionCheckerTrait.php +++ /dev/null @@ -1,31 +0,0 @@ -getShared('db'); - } catch (\PDOException $e) { - $di->setShared('db', $old_conn); - throw new SkippedTestError("Unable to connect to the database: " . $e->getMessage()); - } - } -} diff --git a/tests/_support/Helper/CookieAwareTrait.php b/tests/_support/Helper/CookieAwareTrait.php deleted file mode 100644 index 9ddfe8e79ef..00000000000 --- a/tests/_support/Helper/CookieAwareTrait.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Helper\Db\Adapter\Pdo; - -use Phalcon\Db\Adapter\Pdo\Mysql; - -trait MysqlTrait -{ - /** - * @var Mysql - */ - protected $connection; - - public function _before(\UnitTester $I) - { - try { - $this->connection = new Mysql([ - 'host' => TEST_DB_MYSQL_HOST, - 'username' => TEST_DB_MYSQL_USER, - 'password' => TEST_DB_MYSQL_PASSWD, - 'dbname' => TEST_DB_MYSQL_NAME, - 'port' => TEST_DB_MYSQL_PORT, - 'charset' => TEST_DB_MYSQL_CHARSET, - ]); - } catch (\PDOException $e) { - throw new SkippedTestError("Unable to connect to the database: " . $e->getMessage()); - } - } - - /** - * Returns the database name - * - * @return string - */ - protected function getDatabaseName(): string - { - return TEST_DB_MYSQL_NAME; - } - - /** - * Returns the database schema; MySql does not have a schema - * - * @return string - */ - protected function getSchemaName(): string - { - return TEST_DB_MYSQL_NAME; - } -} diff --git a/tests/_support/Helper/Db/Adapter/Pdo/PostgresqlTrait.php b/tests/_support/Helper/Db/Adapter/Pdo/PostgresqlTrait.php deleted file mode 100644 index c91f192d20d..00000000000 --- a/tests/_support/Helper/Db/Adapter/Pdo/PostgresqlTrait.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Helper\Db\Adapter\Pdo; - -use Phalcon\Db\Adapter\Pdo\Postgresql; - -trait PostgresqlTrait -{ - /** - * @var Postgresql - */ - protected $connection; - - public function _before(\UnitTester $I) - { - try { - $this->connection = new Postgresql([ - 'host' => TEST_DB_POSTGRESQL_HOST, - 'username' => TEST_DB_POSTGRESQL_USER, - 'password' => TEST_DB_POSTGRESQL_PASSWD, - 'dbname' => TEST_DB_POSTGRESQL_NAME, - 'port' => TEST_DB_POSTGRESQL_PORT, - 'schema' => TEST_DB_POSTGRESQL_SCHEMA - ]); - } catch (\PDOException $e) { - throw new SkippedTestError("Unable to connect to the database: " . $e->getMessage()); - } - } - - /** - * Returns the database name - * - * @return string - */ - protected function getDatabaseName(): string - { - return TEST_DB_POSTGRESQL_NAME; - } - - /** - * Returns the database schema; - * - * @return string - */ - protected function getSchemaName(): string - { - return TEST_DB_POSTGRESQL_SCHEMA; - } -} diff --git a/tests/_support/Helper/Db/Connection/AbstractFactory.php b/tests/_support/Helper/Db/Connection/AbstractFactory.php deleted file mode 100644 index 3bf5a76f4b9..00000000000 --- a/tests/_support/Helper/Db/Connection/AbstractFactory.php +++ /dev/null @@ -1,18 +0,0 @@ - env('TEST_DB_MYSQL_HOST', '127.0.0.1'), - 'username' => env('TEST_DB_MYSQL_USER', 'root'), - 'password' => env('TEST_DB_MYSQL_PASSWD', ''), - 'dbname' => env('TEST_DB_MYSQL_NAME', 'phalcon_test'), - 'port' => env('TEST_DB_MYSQL_PORT', 3306), - 'charset' => env('TEST_DB_MYSQL_CHARSET', 'utf8'), - ]); - } -} diff --git a/tests/_support/Helper/Db/Connection/PostgresqlFactory.php b/tests/_support/Helper/Db/Connection/PostgresqlFactory.php deleted file mode 100644 index 7924c9c1d55..00000000000 --- a/tests/_support/Helper/Db/Connection/PostgresqlFactory.php +++ /dev/null @@ -1,30 +0,0 @@ - env('TEST_DB_POSTGRESQL_HOST', '127.0.0.1'), - 'username' => env('TEST_DB_POSTGRESQL_USER', 'postgres'), - 'password' => env('TEST_DB_POSTGRESQL_PASSWD', ''), - 'dbname' => env('TEST_DB_POSTGRESQL_NAME', 'phalcon_test'), - 'port' => env('TEST_DB_POSTGRESQL_PORT', 5432), - 'schema' => env('TEST_DB_POSTGRESQL_SCHEMA', 'public') - ]); - } -} diff --git a/tests/_support/Helper/Db/Connection/SqliteFactory.php b/tests/_support/Helper/Db/Connection/SqliteFactory.php deleted file mode 100644 index 45e2ee8dee3..00000000000 --- a/tests/_support/Helper/Db/Connection/SqliteFactory.php +++ /dev/null @@ -1,23 +0,0 @@ - env('TEST_DB_SQLITE_NAME', PATH_OUTPUT . 'phalcon_test.sqlite')]); - } -} diff --git a/tests/_support/Helper/Db/Connection/SqliteTranslationsFactory.php b/tests/_support/Helper/Db/Connection/SqliteTranslationsFactory.php deleted file mode 100644 index fe0c59b93c0..00000000000 --- a/tests/_support/Helper/Db/Connection/SqliteTranslationsFactory.php +++ /dev/null @@ -1,25 +0,0 @@ - env('TEST_DB_I18N_SQLITE_NAME', PATH_OUTPUT . 'translations.sqlite')] - ); - } -} diff --git a/tests/_support/Helper/Dialect/MysqlTrait.php b/tests/_support/Helper/Dialect/MysqlTrait.php deleted file mode 100644 index 4a084f0df9e..00000000000 --- a/tests/_support/Helper/Dialect/MysqlTrait.php +++ /dev/null @@ -1,698 +0,0 @@ - - * @author Serghei Iakovlev - * @package Helper\Dialect - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -trait MysqlTrait -{ - protected function getModifyColumn() - { - return [ - [ - null, - 'column1', - 'ALTER TABLE `table` MODIFY `column1` VARCHAR(10)' - ], - [ - 'schema', - 'column1', - 'ALTER TABLE `schema`.`table` MODIFY `column1` VARCHAR(10)' - ], - [ - null, - 'column2', - 'ALTER TABLE `table` MODIFY `column2` INT(18) UNSIGNED' - ], - [ - 'schema', - 'column2', - 'ALTER TABLE `schema`.`table` MODIFY `column2` INT(18) UNSIGNED' - ], - [ - null, - 'column3', - 'ALTER TABLE `table` MODIFY `column3` DECIMAL(10,2) NOT NULL' - ], - [ - 'schema', - 'column3', - 'ALTER TABLE `schema`.`table` MODIFY `column3` DECIMAL(10,2) NOT NULL' - ], - [ - null, - 'column4', - 'ALTER TABLE `table` MODIFY `column4` CHAR(100) NOT NULL' - ], - [ - 'schema', - 'column4', - 'ALTER TABLE `schema`.`table` MODIFY `column4` CHAR(100) NOT NULL' - ], - [ - null, - 'column5', - 'ALTER TABLE `table` MODIFY `column5` DATE NOT NULL' - ], - [ - 'schema', - 'column5', - 'ALTER TABLE `schema`.`table` MODIFY `column5` DATE NOT NULL' - ], - [ - null, - 'column6', - 'ALTER TABLE `table` MODIFY `column6` DATETIME NOT NULL' - ], - [ - 'schema', - 'column6', - 'ALTER TABLE `schema`.`table` MODIFY `column6` DATETIME NOT NULL' - ], - [ - null, - 'column7', - 'ALTER TABLE `table` MODIFY `column7` TEXT NOT NULL' - ], - [ - 'schema', - 'column7', - 'ALTER TABLE `schema`.`table` MODIFY `column7` TEXT NOT NULL' - ], - [ - null, - 'column8', - 'ALTER TABLE `table` MODIFY `column8` FLOAT(10,2) NOT NULL' - ], - [ - 'schema', - 'column8', - 'ALTER TABLE `schema`.`table` MODIFY `column8` FLOAT(10,2) NOT NULL' - ], - [ - null, - 'column9', - 'ALTER TABLE `table` MODIFY `column9` VARCHAR(10) DEFAULT "column9"' - ], - [ - 'schema', - 'column9', - 'ALTER TABLE `schema`.`table` MODIFY `column9` VARCHAR(10) DEFAULT "column9"' - ], - [ - null, - 'column10', - 'ALTER TABLE `table` MODIFY `column10` INT(18) UNSIGNED DEFAULT "10"' - ], - [ - 'schema', - 'column10', - 'ALTER TABLE `schema`.`table` MODIFY `column10` INT(18) UNSIGNED DEFAULT "10"' - ], - [ - null, - 'column11', - 'ALTER TABLE `table` MODIFY `column11` BIGINT(20) UNSIGNED' - ], - [ - 'schema', - 'column11', - 'ALTER TABLE `schema`.`table` MODIFY `column11` BIGINT(20) UNSIGNED' - ], - [ - null, - 'column12', - 'ALTER TABLE `table` MODIFY `column12` ENUM("A", "B", "C") DEFAULT "A" NOT NULL AFTER `column11`' - ], - [ - 'schema', - 'column12', - 'ALTER TABLE `schema`.`table` MODIFY `column12` ENUM("A", "B", "C") DEFAULT "A" NOT NULL AFTER `column11`' - ], - [ - null, - 'column13', - 'ALTER TABLE `table` MODIFY `column13` TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL' - ], - [ - 'schema', - 'column13', - 'ALTER TABLE `schema`.`table` MODIFY `column13` TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL' - ], - ]; - } - - protected function getAddIndex() - { - return [ - [null, 'index1', 'ALTER TABLE `table` ADD INDEX `index1` (`column1`)'], - ['schema', 'index1', 'ALTER TABLE `schema`.`table` ADD INDEX `index1` (`column1`)'], - [null, 'index2', 'ALTER TABLE `table` ADD INDEX `index2` (`column1`, `column2`)'], - ['schema', 'index2', 'ALTER TABLE `schema`.`table` ADD INDEX `index2` (`column1`, `column2`)'], - [null, 'PRIMARY', 'ALTER TABLE `table` ADD INDEX `PRIMARY` (`column3`)'], - ['schema', 'PRIMARY', 'ALTER TABLE `schema`.`table` ADD INDEX `PRIMARY` (`column3`)'], - [null, 'index4', 'ALTER TABLE `table` ADD UNIQUE INDEX `index4` (`column4`)'], - ['schema', 'index4', 'ALTER TABLE `schema`.`table` ADD UNIQUE INDEX `index4` (`column4`)'], - ]; - } - - protected function getDropColumn() - { - return [ - [null, 'column1', 'ALTER TABLE `table` DROP COLUMN `column1`'], - ['schema', 'column1', 'ALTER TABLE `schema`.`table` DROP COLUMN `column1`'], - ]; - } - - protected function getDropTable() - { - return [ - [null, true, 'DROP TABLE IF EXISTS `table`'], - ['schema', true, 'DROP TABLE IF EXISTS `schema`.`table`'], - [null, false, 'DROP TABLE `table`'], - ['schema', false, 'DROP TABLE `schema`.`table`'], - ]; - } - - protected function getTruncateTable() - { - return [ - [null, 'TRUNCATE TABLE `table`'], - ['schema', 'TRUNCATE TABLE `schema`.`table`'], - ]; - } - - protected function getAddColumns() - { - return [ - [ - null, - 'column1', - 'ALTER TABLE `table` ADD `column1` VARCHAR(10)' - ], - [ - 'schema', - 'column1', - 'ALTER TABLE `schema`.`table` ADD `column1` VARCHAR(10)' - ], - [ - null, - 'column2', - 'ALTER TABLE `table` ADD `column2` INT(18) UNSIGNED' - ], - [ - 'schema', - 'column2', - 'ALTER TABLE `schema`.`table` ADD `column2` INT(18) UNSIGNED' - ], - [ - null, - 'column3', - 'ALTER TABLE `table` ADD `column3` DECIMAL(10,2) NOT NULL' - ], - [ - 'schema', - 'column3', - 'ALTER TABLE `schema`.`table` ADD `column3` DECIMAL(10,2) NOT NULL' - ], - [ - null, - 'column4', - 'ALTER TABLE `table` ADD `column4` CHAR(100) NOT NULL' - ], - [ - 'schema', - 'column4', - 'ALTER TABLE `schema`.`table` ADD `column4` CHAR(100) NOT NULL' - ], - [ - null, - 'column5', - 'ALTER TABLE `table` ADD `column5` DATE NOT NULL' - ], - [ - 'schema', - 'column5', - 'ALTER TABLE `schema`.`table` ADD `column5` DATE NOT NULL' - ], - [ - null, - 'column6', - 'ALTER TABLE `table` ADD `column6` DATETIME NOT NULL' - ], - [ - 'schema', - 'column6', - 'ALTER TABLE `schema`.`table` ADD `column6` DATETIME NOT NULL' - ], - [ - null, - 'column7', - 'ALTER TABLE `table` ADD `column7` TEXT NOT NULL' - ], - [ - 'schema', - 'column7', - 'ALTER TABLE `schema`.`table` ADD `column7` TEXT NOT NULL' - ], - [ - null, - 'column8', - 'ALTER TABLE `table` ADD `column8` FLOAT(10,2) NOT NULL' - ], - [ - 'schema', - 'column8', - 'ALTER TABLE `schema`.`table` ADD `column8` FLOAT(10,2) NOT NULL' - ], - [ - null, - 'column9', - 'ALTER TABLE `table` ADD `column9` VARCHAR(10) DEFAULT "column9"' - ], - [ - 'schema', - 'column9', - 'ALTER TABLE `schema`.`table` ADD `column9` VARCHAR(10) DEFAULT "column9"' - ], - [ - null, - 'column10', - 'ALTER TABLE `table` ADD `column10` INT(18) UNSIGNED DEFAULT "10"' - ], - [ - 'schema', - 'column10', - 'ALTER TABLE `schema`.`table` ADD `column10` INT(18) UNSIGNED DEFAULT "10"' - ], - [ - null, - 'column11', - 'ALTER TABLE `table` ADD `column11` BIGINT(20) UNSIGNED' - ], - [ - 'schema', - 'column11', - 'ALTER TABLE `schema`.`table` ADD `column11` BIGINT(20) UNSIGNED' - ], - [ - null, - 'column12', - 'ALTER TABLE `table` ADD `column12` ENUM("A", "B", "C") DEFAULT "A" NOT NULL AFTER `column11`' - ], - [ - 'schema', - 'column12', - 'ALTER TABLE `schema`.`table` ADD `column12` ENUM("A", "B", "C") DEFAULT "A" NOT NULL AFTER `column11`' - ], - [ - null, - 'column13', - 'ALTER TABLE `table` ADD `column13` TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL' - ], - [ - 'schema', - 'column13', - 'ALTER TABLE `schema`.`table` ADD `column13` TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL' - ], - ]; - } - - protected function getColumnDefinition() - { - return [ - ['column1', 'VARCHAR(10)'], - ['column2', 'INT(18) UNSIGNED'], - ['column3', 'DECIMAL(10,2)'], - ['column4', 'CHAR(100)'], - ['column5', 'DATE'], - ['column6', 'DATETIME'], - ['column7', 'TEXT'], - ['column8', 'FLOAT(10,2)'], - ['column9', 'VARCHAR(10)'], - ['column10', 'INT(18) UNSIGNED'], - ['column11', 'BIGINT(20) UNSIGNED'], - ['column12', 'ENUM("A", "B", "C")'], - ['column13', 'TIMESTAMP'], - ]; - } - - protected function getColumnList() - { - return [ - [['column1', 'column2', 'column3'], '`column1`, `column2`, `column3`'], - [['foo'], '`foo`'], - ]; - } - - protected function getDropIndex() - { - return [ - [null, 'index1', 'ALTER TABLE `table` DROP INDEX `index1`'], - ['schema', 'index1', 'ALTER TABLE `schema`.`table` DROP INDEX `index1`'], - ]; - } - - protected function getAddPrimaryKey() - { - return [ - [null, 'PRIMARY', 'ALTER TABLE `table` ADD PRIMARY KEY (`column3`)'], - ['schema', 'PRIMARY', 'ALTER TABLE `schema`.`table` ADD PRIMARY KEY (`column3`)'], - ]; - } - - protected function getDropPrimaryKey() - { - return [ - [null, 'ALTER TABLE `table` DROP PRIMARY KEY'], - ['schema', 'ALTER TABLE `schema`.`table` DROP PRIMARY KEY'], - ]; - } - - protected function getAddForeignKey() - { - return [ - [ - null, - 'fk1', - 'ALTER TABLE `table` ADD CONSTRAINT `fk1` FOREIGN KEY (`column1`) REFERENCES `ref_table`(`column2`)' - ], - [ - 'schema', - 'fk1', - 'ALTER TABLE `schema`.`table` ADD CONSTRAINT `fk1` FOREIGN KEY (`column1`) REFERENCES `ref_table`(`column2`)' - ], - [ - null, - 'fk2', - 'ALTER TABLE `table` ADD CONSTRAINT `fk2` FOREIGN KEY (`column3`, `column4`) REFERENCES `ref_table`(`column5`, `column6`)' - ], - [ - 'schema', - 'fk2', - 'ALTER TABLE `schema`.`table` ADD CONSTRAINT `fk2` FOREIGN KEY (`column3`, `column4`) REFERENCES `ref_table`(`column5`, `column6`)' - ], - [ - null, - 'fk3', - 'ALTER TABLE `table` ADD CONSTRAINT `fk3` FOREIGN KEY (`column1`) REFERENCES `ref_table`(`column2`) ON DELETE CASCADE' - ], - [ - 'schema', - 'fk3', - 'ALTER TABLE `schema`.`table` ADD CONSTRAINT `fk3` FOREIGN KEY (`column1`) REFERENCES `ref_table`(`column2`) ON DELETE CASCADE' - ], - [ - null, - 'fk4', - 'ALTER TABLE `table` ADD CONSTRAINT `fk4` FOREIGN KEY (`column1`) REFERENCES `ref_table`(`column2`) ON UPDATE SET NULL' - ], - [ - 'schema', - 'fk4', - 'ALTER TABLE `schema`.`table` ADD CONSTRAINT `fk4` FOREIGN KEY (`column1`) REFERENCES `ref_table`(`column2`) ON UPDATE SET NULL' - ], - [ - null, - 'fk5', - 'ALTER TABLE `table` ADD CONSTRAINT `fk5` FOREIGN KEY (`column1`) REFERENCES `ref_table`(`column2`) ON DELETE CASCADE ON UPDATE NO ACTION' - ], - [ - 'schema', - 'fk5', - 'ALTER TABLE `schema`.`table` ADD CONSTRAINT `fk5` FOREIGN KEY (`column1`) REFERENCES `ref_table`(`column2`) ON DELETE CASCADE ON UPDATE NO ACTION' - ], - ]; - } - - protected function addForeignKey($foreignKeyName = '', $onUpdate = '', $onDelete = '') - { - $sql = 'ALTER TABLE `foreign_key_child` ADD'; - if ($foreignKeyName) { - $sql .= ' CONSTRAINT `' . $foreignKeyName . '`'; - } - $sql .= ' FOREIGN KEY (`child_int`) REFERENCES `foreign_key_parent`(`refer_int`)'; - - if ($onDelete) { - $sql .= ' ON DELETE ' . $onDelete; - } - if ($onUpdate) { - $sql .= ' ON UPDATE ' . $onUpdate; - } - - return $sql; - } - - protected function getForeignKey($foreignKeyName) - { - $sql = "SELECT - COUNT(`CONSTRAINT_NAME`) - FROM information_schema.REFERENTIAL_CONSTRAINTS - WHERE TABLE_NAME = 'foreign_key_child' AND - `UPDATE_RULE` = 'CASCADE' AND - `DELETE_RULE` = 'RESTRICT' AND - `CONSTRAINT_NAME` = '$foreignKeyName'"; - - return $sql; - } - - protected function dropForeignKey($foreignKeyName) - { - $sql = "ALTER TABLE `foreign_key_child` DROP FOREIGN KEY $foreignKeyName"; - - return $sql; - } - - protected function getDropForeignKey() - { - return [ - [null, 'fk1', 'ALTER TABLE `table` DROP FOREIGN KEY `fk1`'], - ['schema', 'fk1', 'ALTER TABLE `schema`.`table` DROP FOREIGN KEY `fk1`'], - ]; - } - - protected function getCreateView() - { - return [ - [['sql' => 'SELECT 1'], null, 'CREATE VIEW `test_view` AS SELECT 1'], - [['sql' => 'SELECT 1'], 'schema', 'CREATE VIEW `schema`.`test_view` AS SELECT 1'], - ]; - } - - protected function getDropView() - { - return [ - [null, false, 'DROP VIEW `test_view`'], - [null, true, 'DROP VIEW IF EXISTS `test_view`'], - ['schema', false, 'DROP VIEW `schema`.`test_view`'], - ['schema', true, 'DROP VIEW IF EXISTS `schema`.`test_view`'], - ]; - } - - protected function getViewExists() - { - return [ - [ - null, - "SELECT IF(COUNT(*) > 0, 1, 0) FROM `INFORMATION_SCHEMA`.`VIEWS` WHERE `TABLE_NAME`='view' AND `TABLE_SCHEMA` = DATABASE()" - ], - [ - 'schema', - "SELECT IF(COUNT(*) > 0, 1, 0) FROM `INFORMATION_SCHEMA`.`VIEWS` WHERE `TABLE_NAME`= 'view' AND `TABLE_SCHEMA`='schema'" - ] - ]; - } - - protected function getListViews() - { - return [ - [null, 'SELECT `TABLE_NAME` AS view_name FROM `INFORMATION_SCHEMA`.`VIEWS` WHERE `TABLE_SCHEMA` = DATABASE() ORDER BY view_name'], - ['schema', "SELECT `TABLE_NAME` AS view_name FROM `INFORMATION_SCHEMA`.`VIEWS` WHERE `TABLE_SCHEMA` = 'schema' ORDER BY view_name"], - ]; - } - - protected function getDescribeColumns() - { - return [ - [ - 'schema.name.with.dots', - 'DESCRIBE `schema.name.with.dots`.`table`' - ], - [ - null, - 'DESCRIBE `table`' - ], - [ - 'schema', - 'DESCRIBE `schema`.`table`' - ], - ]; - } - - protected function getDescribeReferences() - { - return [ - [ - null, - "SELECT DISTINCT KCU.TABLE_NAME, KCU.COLUMN_NAME, KCU.CONSTRAINT_NAME, KCU.REFERENCED_TABLE_SCHEMA, KCU.REFERENCED_TABLE_NAME, KCU.REFERENCED_COLUMN_NAME, RC.UPDATE_RULE, RC.DELETE_RULE FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE AS KCU LEFT JOIN INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS AS RC ON RC.CONSTRAINT_NAME = KCU.CONSTRAINT_NAME AND RC.CONSTRAINT_SCHEMA = KCU.CONSTRAINT_SCHEMA WHERE KCU.REFERENCED_TABLE_NAME IS NOT NULL AND KCU.CONSTRAINT_SCHEMA = DATABASE() AND KCU.TABLE_NAME = 'table'" - ], - [ - 'schema', - "SELECT DISTINCT KCU.TABLE_NAME, KCU.COLUMN_NAME, KCU.CONSTRAINT_NAME, KCU.REFERENCED_TABLE_SCHEMA, KCU.REFERENCED_TABLE_NAME, KCU.REFERENCED_COLUMN_NAME, RC.UPDATE_RULE, RC.DELETE_RULE FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE AS KCU LEFT JOIN INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS AS RC ON RC.CONSTRAINT_NAME = KCU.CONSTRAINT_NAME AND RC.CONSTRAINT_SCHEMA = KCU.CONSTRAINT_SCHEMA WHERE KCU.REFERENCED_TABLE_NAME IS NOT NULL AND KCU.CONSTRAINT_SCHEMA = 'schema' AND KCU.TABLE_NAME = 'table'" - ] - ]; - } - - protected function getCreateTable() - { - return [ - 'example1' => [ - null, - [ - 'columns' => [ - new Column('column1', [ - 'type' => Column::TYPE_VARCHAR, - 'size' => 10 - ]), - new Column('column2', [ - 'type' => Column::TYPE_INTEGER, - 'size' => 18, - 'unsigned' => true, - 'notNull' => false - ]), - ] - ], - rtrim(file_get_contents(PATH_FIXTURES . 'mysql/example1.sql')), - ], - 'example2' => [ - null, - [ - 'columns' => [ - new Column('column2', [ - 'type' => Column::TYPE_INTEGER, - 'size' => 18, - 'unsigned' => true, - 'notNull' => false - ]), - new Column('column3', [ - 'type' => Column::TYPE_DECIMAL, - 'size' => 10, - 'scale' => 2, - 'unsigned' => false, - 'notNull' => true - ]), - new Column('column1', [ - 'type' => Column::TYPE_VARCHAR, - 'size' => 10 - ]), - ], - 'indexes' => [ - new Index('PRIMARY', ['column3']), - ] - ], - rtrim(file_get_contents(PATH_FIXTURES . 'mysql/example2.sql')), - ], - 'example3' => [ - null, - [ - 'columns' => [ - new Column('column2', [ - 'type' => Column::TYPE_INTEGER, - 'size' => 18, - 'unsigned' => true, - 'notNull' => false - ]), - new Column('column3', [ - 'type' => Column::TYPE_DECIMAL, - 'size' => 10, - 'scale' => 2, - 'unsigned' => false, - 'notNull' => true - ]), - new Column('column1', [ - 'type' => Column::TYPE_VARCHAR, - 'size' => 10 - ]), - ], - 'indexes' => [ - new Index('PRIMARY', ['column3']), - ], - 'references' => [ - new Reference('fk3', [ - 'referencedTable' => 'ref_table', - 'columns' => ['column1'], - 'referencedColumns' => ['column2'], - 'onDelete' => 'CASCADE', - ]), - ], - ], - rtrim(file_get_contents(PATH_FIXTURES . 'mysql/example3.sql')), - ], - 'example4' => [ - null, - [ - 'columns' => [ - new Column('column9', [ - 'type' => Column::TYPE_VARCHAR, - 'size' => 10, - 'default' => 'column9' - ]), - new Column('column10', [ - 'type' => Column::TYPE_INTEGER, - 'size' => 18, - 'unsigned' => true, - 'notNull' => false, - 'default' => 10, - ]), - ], - ], - rtrim(file_get_contents(PATH_FIXTURES . 'mysql/example4.sql')), - ], - 'example5' => [ - null, - [ - 'columns' => [ - new Column('column11', [ - 'type' => 'BIGINT', - 'typeReference' => Column::TYPE_INTEGER, - 'size' => 20, - 'unsigned' => true, - 'notNull' => false - ]), - new Column('column12', [ - 'type' => 'ENUM', - 'typeValues' => ['A', 'B', 'C'], - 'notNull' => true, - 'default' => 'A', - 'after' => 'column11' - ]), - new Column('column13', [ - 'type' => Column::TYPE_TIMESTAMP, - 'notNull' => true, - 'default' => 'CURRENT_TIMESTAMP', - ]), - ], - ], - rtrim(file_get_contents(PATH_FIXTURES . 'mysql/example5.sql')), - ], - ]; - } -} diff --git a/tests/_support/Helper/Dialect/PostgresqlTrait.php b/tests/_support/Helper/Dialect/PostgresqlTrait.php deleted file mode 100644 index e0e610e9f76..00000000000 --- a/tests/_support/Helper/Dialect/PostgresqlTrait.php +++ /dev/null @@ -1,781 +0,0 @@ - - * @author Serghei Iakovlev - * @package Helper\Dialect - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -trait PostgresqlTrait -{ - protected function getModifyColumn() - { - return [ - [ - null, - 'column1', - 'column2', - 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column1";ALTER TABLE "table" ALTER COLUMN "column1" TYPE CHARACTER VARYING(10);' - ], - [ - 'schema', - 'column1', - 'column2', - 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column1";ALTER TABLE "schema"."table" ALTER COLUMN "column1" TYPE CHARACTER VARYING(10);' - ], - [ - null, - 'column2', - 'column1', - 'ALTER TABLE "table" RENAME COLUMN "column1" TO "column2";ALTER TABLE "table" ALTER COLUMN "column2" TYPE INT;' - ], - [ - 'schema', - 'column2', - 'column1', - 'ALTER TABLE "schema"."table" RENAME COLUMN "column1" TO "column2";ALTER TABLE "schema"."table" ALTER COLUMN "column2" TYPE INT;' - ], - [ - null, - 'column3', - 'column2', - 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column3";ALTER TABLE "table" ALTER COLUMN "column3" TYPE NUMERIC(10,2);ALTER TABLE "table" ALTER COLUMN "column3" SET NOT NULL;' - ], - [ - 'schema', - 'column3', - 'column2', - 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column3";ALTER TABLE "schema"."table" ALTER COLUMN "column3" TYPE NUMERIC(10,2);ALTER TABLE "schema"."table" ALTER COLUMN "column3" SET NOT NULL;' - ], - [ - null, - 'column4', - 'column2', - 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column4";ALTER TABLE "table" ALTER COLUMN "column4" TYPE CHARACTER(100);ALTER TABLE "table" ALTER COLUMN "column4" SET NOT NULL;' - ], - [ - 'schema', - 'column4', - 'column2', - 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column4";ALTER TABLE "schema"."table" ALTER COLUMN "column4" TYPE CHARACTER(100);ALTER TABLE "schema"."table" ALTER COLUMN "column4" SET NOT NULL;' - ], - [ - null, - 'column5', - 'column2', - 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column5";ALTER TABLE "table" ALTER COLUMN "column5" TYPE DATE;ALTER TABLE "table" ALTER COLUMN "column5" SET NOT NULL;' - ], - [ - 'schema', - 'column5', - 'column2', - 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column5";ALTER TABLE "schema"."table" ALTER COLUMN "column5" TYPE DATE;ALTER TABLE "schema"."table" ALTER COLUMN "column5" SET NOT NULL;' - ], - [ - null, - 'column6', - 'column2', - 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column6";ALTER TABLE "table" ALTER COLUMN "column6" TYPE TIMESTAMP;ALTER TABLE "table" ALTER COLUMN "column6" SET NOT NULL;' - ], - [ - 'schema', - 'column6', - 'column2', - 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column6";ALTER TABLE "schema"."table" ALTER COLUMN "column6" TYPE TIMESTAMP;ALTER TABLE "schema"."table" ALTER COLUMN "column6" SET NOT NULL;' - ], - [ - null, - 'column7', - 'column2', - 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column7";ALTER TABLE "table" ALTER COLUMN "column7" TYPE TEXT;ALTER TABLE "table" ALTER COLUMN "column7" SET NOT NULL;' - ], - [ - 'schema', - 'column7', - 'column2', - 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column7";ALTER TABLE "schema"."table" ALTER COLUMN "column7" TYPE TEXT;ALTER TABLE "schema"."table" ALTER COLUMN "column7" SET NOT NULL;' - ], - [ - null, - 'column8', - 'column2', - 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column8";ALTER TABLE "table" ALTER COLUMN "column8" TYPE FLOAT;ALTER TABLE "table" ALTER COLUMN "column8" SET NOT NULL;' - ], - [ - 'schema', - 'column8', - 'column2', - 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column8";ALTER TABLE "schema"."table" ALTER COLUMN "column8" TYPE FLOAT;ALTER TABLE "schema"."table" ALTER COLUMN "column8" SET NOT NULL;' - ], - [ - null, - 'column9', - 'column2', - 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column9";ALTER TABLE "table" ALTER COLUMN "column9" TYPE CHARACTER VARYING(10);ALTER TABLE "table" ALTER COLUMN "column9" SET DEFAULT \'column9\'' - ], - [ - 'schema', - 'column9', - 'column2', - 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column9";ALTER TABLE "schema"."table" ALTER COLUMN "column9" TYPE CHARACTER VARYING(10);ALTER TABLE "schema"."table" ALTER COLUMN "column9" SET DEFAULT \'column9\'' - ], - [ - null, - 'column10', - 'column2', - 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column10";ALTER TABLE "table" ALTER COLUMN "column10" SET DEFAULT 10' - ], - [ - 'schema', - 'column10', - 'column2', - 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column10";ALTER TABLE "schema"."table" ALTER COLUMN "column10" SET DEFAULT 10' - ], - [ - null, - 'column11', - 'column2', - 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column11";ALTER TABLE "table" ALTER COLUMN "column11" TYPE BIGINT;' - ], - [ - 'schema', - 'column11', - 'column2', - 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column11";ALTER TABLE "schema"."table" ALTER COLUMN "column11" TYPE BIGINT;' - ], - [ - null, - 'column12', - 'column2', - 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column12";ALTER TABLE "table" ALTER COLUMN "column12" TYPE ENUM(\'A\', \'B\', \'C\');ALTER TABLE "table" ALTER COLUMN "column12" SET NOT NULL;ALTER TABLE "table" ALTER COLUMN "column12" SET DEFAULT \'A\'' - ], - [ - 'schema', - 'column12', - 'column2', - 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column12";ALTER TABLE "schema"."table" ALTER COLUMN "column12" TYPE ENUM(\'A\', \'B\', \'C\');ALTER TABLE "schema"."table" ALTER COLUMN "column12" SET NOT NULL;ALTER TABLE "schema"."table" ALTER COLUMN "column12" SET DEFAULT \'A\'' - ], - [ - null, - 'column13', - 'column2', - 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column13";ALTER TABLE "table" ALTER COLUMN "column13" TYPE TIMESTAMP;ALTER TABLE "table" ALTER COLUMN "column13" SET NOT NULL;ALTER TABLE "table" ALTER COLUMN "column13" SET DEFAULT CURRENT_TIMESTAMP' - ], - [ - 'schema', - 'column13', - 'column2', - 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column13";ALTER TABLE "schema"."table" ALTER COLUMN "column13" TYPE TIMESTAMP;ALTER TABLE "schema"."table" ALTER COLUMN "column13" SET NOT NULL;ALTER TABLE "schema"."table" ALTER COLUMN "column13" SET DEFAULT CURRENT_TIMESTAMP' - ], - ]; - } - - protected function getAddIndex() - { - return [ - [null, 'index1', 'CREATE INDEX "index1" ON "table" ("column1")'], - ['schema', 'index1', 'CREATE INDEX "index1" ON "schema"."table" ("column1")'], - [null, 'index2', 'CREATE INDEX "index2" ON "table" ("column1", "column2")'], - ['schema', 'index2', 'CREATE INDEX "index2" ON "schema"."table" ("column1", "column2")'], - [null, 'PRIMARY', 'ALTER TABLE "table" ADD CONSTRAINT "PRIMARY" PRIMARY KEY ("column3")'], - ['schema', 'PRIMARY', 'ALTER TABLE "schema"."table" ADD CONSTRAINT "PRIMARY" PRIMARY KEY ("column3")'], - [null, 'index4', 'CREATE UNIQUE INDEX "index4" ON "table" ("column4")'], - ['schema', 'index4', 'CREATE UNIQUE INDEX "index4" ON "schema"."table" ("column4")'], - ]; - } - - protected function getDropColumn() - { - return [ - [null, 'column1', 'ALTER TABLE "table" DROP COLUMN "column1"'], - ['schema', 'column1', 'ALTER TABLE "schema"."table" DROP COLUMN "column1"'], - ]; - } - - protected function getDropTable() - { - return [ - [null, true, 'DROP TABLE IF EXISTS "table"'], - ['schema', true, 'DROP TABLE IF EXISTS "schema"."table"'], - [null, false, 'DROP TABLE "table"'], - ['schema', false, 'DROP TABLE "schema"."table"'], - ]; - } - - protected function getTruncateTable() - { - return [ - [null, 'TRUNCATE TABLE table'], - ['schema', 'TRUNCATE TABLE schema.table'], - ]; - } - - protected function getAddColumns() - { - return [ - [ - null, - 'column1', - 'ALTER TABLE "table" ADD COLUMN "column1" CHARACTER VARYING(10)' - ], - [ - 'schema', - 'column1', - 'ALTER TABLE "schema"."table" ADD COLUMN "column1" CHARACTER VARYING(10)' - ], - [ - null, - 'column2', - 'ALTER TABLE "table" ADD COLUMN "column2" INT' - ], - [ - 'schema', - 'column2', - 'ALTER TABLE "schema"."table" ADD COLUMN "column2" INT' - ], - [ - null, - 'column3', - 'ALTER TABLE "table" ADD COLUMN "column3" NUMERIC(10,2) NOT NULL' - ], - [ - 'schema', - 'column3', - 'ALTER TABLE "schema"."table" ADD COLUMN "column3" NUMERIC(10,2) NOT NULL' - ], - [ - null, - 'column4', - 'ALTER TABLE "table" ADD COLUMN "column4" CHARACTER(100) NOT NULL' - ], - [ - 'schema', - 'column4', - 'ALTER TABLE "schema"."table" ADD COLUMN "column4" CHARACTER(100) NOT NULL' - ], - [ - null, - 'column5', - 'ALTER TABLE "table" ADD COLUMN "column5" DATE NOT NULL' - ], - [ - 'schema', - 'column5', - 'ALTER TABLE "schema"."table" ADD COLUMN "column5" DATE NOT NULL' - ], - [ - null, - 'column6', - 'ALTER TABLE "table" ADD COLUMN "column6" TIMESTAMP NOT NULL' - ], - [ - 'schema', - 'column6', - 'ALTER TABLE "schema"."table" ADD COLUMN "column6" TIMESTAMP NOT NULL' - ], - [ - null, - 'column7', - 'ALTER TABLE "table" ADD COLUMN "column7" TEXT NOT NULL' - ], - [ - 'schema', - 'column7', - 'ALTER TABLE "schema"."table" ADD COLUMN "column7" TEXT NOT NULL' - ], - [ - null, - 'column8', - 'ALTER TABLE "table" ADD COLUMN "column8" FLOAT NOT NULL' - ], - [ - 'schema', - 'column8', - 'ALTER TABLE "schema"."table" ADD COLUMN "column8" FLOAT NOT NULL' - ], - [ - null, - 'column9', - 'ALTER TABLE "table" ADD COLUMN "column9" CHARACTER VARYING(10) DEFAULT \'column9\'' - ], - [ - 'schema', - 'column9', - 'ALTER TABLE "schema"."table" ADD COLUMN "column9" CHARACTER VARYING(10) DEFAULT \'column9\'' - ], - [ - null, - 'column10', - 'ALTER TABLE "table" ADD COLUMN "column10" INT DEFAULT 10' - ], - [ - 'schema', - 'column10', - 'ALTER TABLE "schema"."table" ADD COLUMN "column10" INT DEFAULT 10' - ], - [ - null, - 'column11', - 'ALTER TABLE "table" ADD COLUMN "column11" BIGINT' - ], - [ - 'schema', - 'column11', - 'ALTER TABLE "schema"."table" ADD COLUMN "column11" BIGINT' - ], - [ - null, - 'column12', - 'ALTER TABLE "table" ADD COLUMN "column12" ENUM(\'A\', \'B\', \'C\') DEFAULT \'A\' NOT NULL' - ], - [ - 'schema', - 'column12', - 'ALTER TABLE "schema"."table" ADD COLUMN "column12" ENUM(\'A\', \'B\', \'C\') DEFAULT \'A\' NOT NULL' - ], - [ - null, - 'column13', - 'ALTER TABLE "table" ADD COLUMN "column13" TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL' - ], - [ - 'schema', - 'column13', - 'ALTER TABLE "schema"."table" ADD COLUMN "column13" TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL' - ], - ]; - } - - protected function getColumnDefinition() - { - return [ - ['column1', 'CHARACTER VARYING(10)'], - ['column2', 'INT'], - ['column3', 'NUMERIC(10,2)'], - ['column4', 'CHARACTER(100)'], - ['column5', 'DATE'], - ['column6', 'TIMESTAMP'], - ['column7', 'TEXT'], - ['column8', 'FLOAT'], - ['column9', 'CHARACTER VARYING(10)'], - ['column10', 'INT'], - ['column11', 'BIGINT'], - ['column12', "ENUM('A', 'B', 'C')"], - ['column13', 'TIMESTAMP'], - ['column21', 'BIGSERIAL'], - ['column22', 'BIGINT'], - ['column23', 'SERIAL'], - ]; - } - - protected function getColumnList() - { - return [ - [['column1', 'column2', 'column3'], '"column1", "column2", "column3"'], - [['foo'], '"foo"'], - ]; - } - - protected function getDropIndex() - { - return [ - [null, 'index1', 'DROP INDEX "index1"'], - ['schema', 'index1', 'DROP INDEX "index1"'], - ]; - } - - protected function getAddPrimaryKey() - { - return [ - [null, 'PRIMARY', 'ALTER TABLE "table" ADD CONSTRAINT "PRIMARY" PRIMARY KEY ("column3")'], - ['schema', 'PRIMARY', 'ALTER TABLE "schema"."table" ADD CONSTRAINT "PRIMARY" PRIMARY KEY ("column3")'], - ]; - } - - protected function getDropPrimaryKey() - { - return [ - [null, 'ALTER TABLE "table" DROP CONSTRAINT "PRIMARY"'], - ['schema', 'ALTER TABLE "schema"."table" DROP CONSTRAINT "PRIMARY"'], - ]; - } - - protected function getAddForeignKey() - { - return [ - [ - null, - 'fk1', - 'ALTER TABLE "table" ADD CONSTRAINT "fk1" FOREIGN KEY ("column1") REFERENCES "ref_table" ("column2")' - ], - [ - 'schema', - 'fk1', - 'ALTER TABLE "schema"."table" ADD CONSTRAINT "fk1" FOREIGN KEY ("column1") REFERENCES "ref_table" ("column2")' - ], - [ - null, - 'fk2', - 'ALTER TABLE "table" ADD CONSTRAINT "fk2" FOREIGN KEY ("column3", "column4") REFERENCES "ref_table" ("column5", "column6")' - ], - [ - 'schema', - 'fk2', - 'ALTER TABLE "schema"."table" ADD CONSTRAINT "fk2" FOREIGN KEY ("column3", "column4") REFERENCES "ref_table" ("column5", "column6")' - ], - [ - null, - 'fk3', - 'ALTER TABLE "table" ADD CONSTRAINT "fk3" FOREIGN KEY ("column1") REFERENCES "ref_table" ("column2") ON DELETE CASCADE' - ], - [ - 'schema', - 'fk3', - 'ALTER TABLE "schema"."table" ADD CONSTRAINT "fk3" FOREIGN KEY ("column1") REFERENCES "ref_table" ("column2") ON DELETE CASCADE' - ], - [ - null, - 'fk4', - 'ALTER TABLE "table" ADD CONSTRAINT "fk4" FOREIGN KEY ("column1") REFERENCES "ref_table" ("column2") ON UPDATE SET NULL' - ], - [ - 'schema', - 'fk4', - 'ALTER TABLE "schema"."table" ADD CONSTRAINT "fk4" FOREIGN KEY ("column1") REFERENCES "ref_table" ("column2") ON UPDATE SET NULL' - ], - [ - null, - 'fk5', - 'ALTER TABLE "table" ADD CONSTRAINT "fk5" FOREIGN KEY ("column1") REFERENCES "ref_table" ("column2") ON DELETE CASCADE ON UPDATE NO ACTION' - ], - [ - 'schema', - 'fk5', - 'ALTER TABLE "schema"."table" ADD CONSTRAINT "fk5" FOREIGN KEY ("column1") REFERENCES "ref_table" ("column2") ON DELETE CASCADE ON UPDATE NO ACTION' - ], - ]; - } - - protected function getDropForeignKey() - { - return [ - [null, 'fk1', 'ALTER TABLE "table" DROP CONSTRAINT "fk1"'], - ['schema', 'fk1', 'ALTER TABLE "schema"."table" DROP CONSTRAINT "fk1"'], - ]; - } - - protected function getReferenceAddForeignKey() - { - return [ - 'fk1' => new Reference('fk1', [ - 'referencedTable' => 'foreign_key_parent', - 'columns' => ['child_int'], - 'referencedColumns' => ['refer_int'], - 'onDelete' => 'CASCADE', - 'onUpdate' => 'RESTRICT', - ]), - 'fk2' => new Reference('', [ - 'referencedTable' => 'foreign_key_parent', - 'columns' => ['child_int'], - 'referencedColumns' => ['refer_int'] - ]) - ]; - } - - protected function getForeignKey($foreignKeyName) - { - $sql = rtrim(file_get_contents(PATH_FIXTURES . 'postgresql/example9.sql')); - str_replace('%_FK_%', $foreignKeyName, $sql); - - return $sql; - } - - protected function getReferenceDropForeignKey() - { - return [ - 'fk1' => new Reference('fk1', [ - 'referencedTable' => 'foreign_key_parent', - 'columns' => ['child_int'], - 'referencedColumns' => ['refer_int'], - 'onDelete' => 'CASCADE', - 'onUpdate' => 'RESTRICT', - ]), - 'fk2' => new Reference('', [ - 'referencedTable' => 'foreign_key_parent', - 'columns' => ['child_int'], - 'referencedColumns' => ['refer_int'], - 'onDelete' => 'CASCADE', - 'onUpdate' => 'RESTRICT', - ]) - ]; - } - - protected function getCreateView() - { - return [ - [['sql' => 'SELECT 1'], null, 'CREATE VIEW "test_view" AS SELECT 1'], - [['sql' => 'SELECT 1'], 'schema', 'CREATE VIEW "schema"."test_view" AS SELECT 1'], - ]; - } - - protected function getDropView() - { - return [ - [null, false, 'DROP VIEW "test_view"'], - [null, true, 'DROP VIEW IF EXISTS "test_view"'], - ['schema', false, 'DROP VIEW "schema"."test_view"'], - ['schema', true, 'DROP VIEW IF EXISTS "schema"."test_view"'], - ]; - } - - protected function getViewExists() - { - return [ - [ - null, - "SELECT CASE WHEN COUNT(*) > 0 THEN 1 ELSE 0 END FROM pg_views WHERE viewname='view' AND schemaname='public'" - ], - [ - 'schema', - "SELECT CASE WHEN COUNT(*) > 0 THEN 1 ELSE 0 END FROM pg_views WHERE viewname='view' AND schemaname='schema'" - ] - ]; - } - - protected function getListViews() - { - return [ - [null, "SELECT viewname AS view_name FROM pg_views WHERE schemaname = 'public' ORDER BY view_name"], - ['schema', "SELECT viewname AS view_name FROM pg_views WHERE schemaname = 'schema' ORDER BY view_name"], - ]; - } - - protected function getDescribeColumns() - { - return [ - [ - 'schema.name.with.dots', - "SELECT DISTINCT c.column_name AS Field, c.data_type AS Type, c.character_maximum_length AS Size, c.numeric_precision AS NumericSize, c.numeric_scale AS NumericScale, c.is_nullable AS Null, CASE WHEN pkc.column_name NOTNULL THEN 'PRI' ELSE '' END AS Key, CASE WHEN c.data_type LIKE '%int%' AND c.column_default LIKE '%nextval%' THEN 'auto_increment' ELSE '' END AS Extra, c.ordinal_position AS Position, c.column_default FROM information_schema.columns c LEFT JOIN ( SELECT kcu.column_name, kcu.table_name, kcu.table_schema FROM information_schema.table_constraints tc INNER JOIN information_schema.key_column_usage kcu on (kcu.constraint_name = tc.constraint_name and kcu.table_name=tc.table_name and kcu.table_schema=tc.table_schema) WHERE tc.constraint_type='PRIMARY KEY') pkc ON (c.column_name=pkc.column_name AND c.table_schema = pkc.table_schema AND c.table_name=pkc.table_name) WHERE c.table_schema='schema.name.with.dots' AND c.table_name='table' ORDER BY c.ordinal_position" - ], - [ - null, - "SELECT DISTINCT c.column_name AS Field, c.data_type AS Type, c.character_maximum_length AS Size, c.numeric_precision AS NumericSize, c.numeric_scale AS NumericScale, c.is_nullable AS Null, CASE WHEN pkc.column_name NOTNULL THEN 'PRI' ELSE '' END AS Key, CASE WHEN c.data_type LIKE '%int%' AND c.column_default LIKE '%nextval%' THEN 'auto_increment' ELSE '' END AS Extra, c.ordinal_position AS Position, c.column_default FROM information_schema.columns c LEFT JOIN ( SELECT kcu.column_name, kcu.table_name, kcu.table_schema FROM information_schema.table_constraints tc INNER JOIN information_schema.key_column_usage kcu on (kcu.constraint_name = tc.constraint_name and kcu.table_name=tc.table_name and kcu.table_schema=tc.table_schema) WHERE tc.constraint_type='PRIMARY KEY') pkc ON (c.column_name=pkc.column_name AND c.table_schema = pkc.table_schema AND c.table_name=pkc.table_name) WHERE c.table_schema='public' AND c.table_name='table' ORDER BY c.ordinal_position" - ], - [ - 'schema', - "SELECT DISTINCT c.column_name AS Field, c.data_type AS Type, c.character_maximum_length AS Size, c.numeric_precision AS NumericSize, c.numeric_scale AS NumericScale, c.is_nullable AS Null, CASE WHEN pkc.column_name NOTNULL THEN 'PRI' ELSE '' END AS Key, CASE WHEN c.data_type LIKE '%int%' AND c.column_default LIKE '%nextval%' THEN 'auto_increment' ELSE '' END AS Extra, c.ordinal_position AS Position, c.column_default FROM information_schema.columns c LEFT JOIN ( SELECT kcu.column_name, kcu.table_name, kcu.table_schema FROM information_schema.table_constraints tc INNER JOIN information_schema.key_column_usage kcu on (kcu.constraint_name = tc.constraint_name and kcu.table_name=tc.table_name and kcu.table_schema=tc.table_schema) WHERE tc.constraint_type='PRIMARY KEY') pkc ON (c.column_name=pkc.column_name AND c.table_schema = pkc.table_schema AND c.table_name=pkc.table_name) WHERE c.table_schema='schema' AND c.table_name='table' ORDER BY c.ordinal_position" - ], - ]; - } - - protected function getDescribeReferences() - { - return [ - [ - null, - rtrim(file_get_contents(PATH_FIXTURES . 'postgresql/example7.sql')) - ], - [ - 'schema', - rtrim(file_get_contents(PATH_FIXTURES . 'postgresql/example8.sql')) - ] - ]; - } - - protected function getCreateTable() - { - return [ - 'example1' => [ - null, - [ - 'columns' => [ - new Column('column1', [ - 'type' => Column::TYPE_VARCHAR, - 'size' => 10 - ]), - new Column('column2', [ - 'type' => Column::TYPE_INTEGER, - 'size' => 18, - 'unsigned' => true, - 'notNull' => false - ]), - ] - ], - rtrim(file_get_contents(PATH_FIXTURES . 'postgresql/example1.sql')), - ], - 'example2' => [ - null, - [ - 'columns' => [ - new Column('column2', [ - 'type' => Column::TYPE_INTEGER, - 'size' => 18, - 'unsigned' => true, - 'notNull' => false - ]), - new Column('column3', [ - 'type' => Column::TYPE_DECIMAL, - 'size' => 10, - 'scale' => 2, - 'unsigned' => false, - 'notNull' => true - ]), - new Column('column1', [ - 'type' => Column::TYPE_VARCHAR, - 'size' => 10 - ]), - ], - 'indexes' => [ - new Index('PRIMARY', ['column3']), - ] - ], - rtrim(file_get_contents(PATH_FIXTURES . 'postgresql/example2.sql')), - ], - 'example3' => [ - null, - [ - 'columns' => [ - new Column('column2', [ - 'type' => Column::TYPE_INTEGER, - 'size' => 18, - 'unsigned' => true, - 'notNull' => false - ]), - new Column('column3', [ - 'type' => Column::TYPE_DECIMAL, - 'size' => 10, - 'scale' => 2, - 'unsigned' => false, - 'notNull' => true - ]), - new Column('column1', [ - 'type' => Column::TYPE_VARCHAR, - 'size' => 10 - ]), - ], - 'indexes' => [ - new Index('PRIMARY', ['column3']), - ], - 'references' => [ - new Reference('fk3', [ - 'referencedTable' => 'ref_table', - 'columns' => ['column1'], - 'referencedColumns' => ['column2'], - 'onDelete' => 'CASCADE', - ]), - ], - ], - rtrim(file_get_contents(PATH_FIXTURES . 'postgresql/example3.sql')), - ], - 'example4' => [ - null, - [ - 'columns' => [ - new Column('column9', [ - 'type' => Column::TYPE_VARCHAR, - 'size' => 10, - 'default' => 'column9' - ]), - new Column('column10', [ - 'type' => Column::TYPE_INTEGER, - 'size' => 18, - 'unsigned' => true, - 'notNull' => false, - 'default' => 10, - ]), - ], - ], - rtrim(file_get_contents(PATH_FIXTURES . 'postgresql/example4.sql')), - ], - 'example5' => [ - null, - [ - 'columns' => [ - new Column('column11', [ - 'type' => 'BIGINT', - 'typeReference' => Column::TYPE_INTEGER, - 'size' => 20, - 'unsigned' => true, - 'notNull' => false - ]), - new Column('column12', [ - 'type' => 'ENUM', - 'typeValues' => ['A', 'B', 'C'], - 'notNull' => true, - 'default' => 'A', - 'after' => 'column11' - ]), - new Column('column13', [ - 'type' => Column::TYPE_TIMESTAMP, - 'notNull' => true, - 'default' => 'CURRENT_TIMESTAMP', - ]), - ], - ], - rtrim(file_get_contents(PATH_FIXTURES . 'postgresql/example5.sql')), - ], - 'example6' => [ - null, - [ - 'columns' => [ - new Column('column14', [ - 'type' => Column::TYPE_INTEGER, - 'notNull' => true, - 'autoIncrement' => true, - 'first' => true - ]), - new Column('column15', [ - 'type' => Column::TYPE_INTEGER, - 'default' => 5, - 'notNull' => true, - 'after' => 'user_id' - ]), - new Column('column16', [ - 'type' => Column::TYPE_VARCHAR, - 'size' => 10, - 'default' => 'column16' - ]), - new Column('column17', [ - 'type' => Column::TYPE_BOOLEAN, - 'default' => "false", - 'notNull' => true, - 'after' => 'track_id' - ]), - new Column('column18', [ - 'type' => Column::TYPE_BOOLEAN, - 'default' => "true", - 'notNull' => true, - 'after' => 'like' - ]), - ], - ], - rtrim(file_get_contents(PATH_FIXTURES . 'postgresql/example6.sql')), - ], - ]; - } - - protected function getReferenceObject() - { - return [ - [ - ['test_describereferences' => require PATH_FIXTURES . 'metadata/test_describereference.php'] - ] - ]; - } -} diff --git a/tests/_support/Helper/Dialect/SqliteTrait.php b/tests/_support/Helper/Dialect/SqliteTrait.php deleted file mode 100644 index f12bd36235b..00000000000 --- a/tests/_support/Helper/Dialect/SqliteTrait.php +++ /dev/null @@ -1,507 +0,0 @@ - - * @author Serghei Iakovlev - * @package Helper\Dialect - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -trait SqliteTrait -{ - protected function getAddIndex() - { - return [ - [null, 'index1', 'CREATE INDEX "index1" ON "table" ("column1")'], - ['schema', 'index1', 'CREATE INDEX "schema"."index1" ON "table" ("column1")'], - [null, 'index2', 'CREATE INDEX "index2" ON "table" ("column1", "column2")'], - ['schema', 'index2', 'CREATE INDEX "schema"."index2" ON "table" ("column1", "column2")'], - ]; - } - - protected function getDropTable() - { - return [ - [null, true, 'DROP TABLE IF EXISTS "table"'], - ['schema', true, 'DROP TABLE IF EXISTS "schema"."table"'], - [null, false, 'DROP TABLE "table"'], - ['schema', false, 'DROP TABLE "schema"."table"'], - ]; - } - - protected function getTruncateTable() - { - return [ - [null, 'DELETE FROM "table"'], - ['schema', 'DELETE FROM "schema"."table"'], - ]; - } - - protected function getAddColumns() - { - return [ - [ - null, - 'column1', - 'ALTER TABLE "table" ADD COLUMN "column1" VARCHAR(10)' - ], - [ - 'schema', - 'column1', - 'ALTER TABLE "schema"."table" ADD COLUMN "column1" VARCHAR(10)' - ], - [ - null, - 'column2', - 'ALTER TABLE "table" ADD COLUMN "column2" INTEGER' - ], - [ - 'schema', - 'column2', - 'ALTER TABLE "schema"."table" ADD COLUMN "column2" INTEGER' - ], - [ - null, - 'column3', - 'ALTER TABLE "table" ADD COLUMN "column3" NUMERIC(10,2) NOT NULL' - ], - [ - 'schema', - 'column3', - 'ALTER TABLE "schema"."table" ADD COLUMN "column3" NUMERIC(10,2) NOT NULL' - ], - [ - null, - 'column4', - 'ALTER TABLE "table" ADD COLUMN "column4" CHARACTER(100) NOT NULL' - ], - [ - 'schema', - 'column4', - 'ALTER TABLE "schema"."table" ADD COLUMN "column4" CHARACTER(100) NOT NULL' - ], - [ - null, - 'column5', - 'ALTER TABLE "table" ADD COLUMN "column5" DATE NOT NULL' - ], - [ - 'schema', - 'column5', - 'ALTER TABLE "schema"."table" ADD COLUMN "column5" DATE NOT NULL' - ], - [ - null, - 'column6', - 'ALTER TABLE "table" ADD COLUMN "column6" DATETIME NOT NULL' - ], - [ - 'schema', - 'column6', - 'ALTER TABLE "schema"."table" ADD COLUMN "column6" DATETIME NOT NULL' - ], - [ - null, - 'column7', - 'ALTER TABLE "table" ADD COLUMN "column7" TEXT NOT NULL' - ], - [ - 'schema', - 'column7', - 'ALTER TABLE "schema"."table" ADD COLUMN "column7" TEXT NOT NULL' - ], - [ - null, - 'column8', - 'ALTER TABLE "table" ADD COLUMN "column8" FLOAT NOT NULL' - ], - [ - 'schema', - 'column8', - 'ALTER TABLE "schema"."table" ADD COLUMN "column8" FLOAT NOT NULL' - ], - [ - null, - 'column9', - 'ALTER TABLE "table" ADD COLUMN "column9" VARCHAR(10) DEFAULT "column9"' - ], - [ - 'schema', - 'column9', - 'ALTER TABLE "schema"."table" ADD COLUMN "column9" VARCHAR(10) DEFAULT "column9"' - ], - [ - null, - 'column10', - 'ALTER TABLE "table" ADD COLUMN "column10" INTEGER DEFAULT "10"' - ], - [ - 'schema', - 'column10', - 'ALTER TABLE "schema"."table" ADD COLUMN "column10" INTEGER DEFAULT "10"' - ], - [ - null, - 'column13', - 'ALTER TABLE "table" ADD COLUMN "column13" TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL' - ], - [ - 'schema', - 'column13', - 'ALTER TABLE "schema"."table" ADD COLUMN "column13" TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL' - ], - [ - null, - 'column14', - 'ALTER TABLE "table" ADD COLUMN "column14" TINYBLOB NOT NULL' - ], - [ - 'schema', - 'column14', - 'ALTER TABLE "schema"."table" ADD COLUMN "column14" TINYBLOB NOT NULL' - ], - [ - null, - 'column15', - 'ALTER TABLE "table" ADD COLUMN "column15" MEDIUMBLOB NOT NULL' - ], - [ - 'schema', - 'column15', - 'ALTER TABLE "schema"."table" ADD COLUMN "column15" MEDIUMBLOB NOT NULL' - ], - [ - null, - 'column16', - 'ALTER TABLE "table" ADD COLUMN "column16" BLOB NOT NULL' - ], - [ - 'schema', - 'column16', - 'ALTER TABLE "schema"."table" ADD COLUMN "column16" BLOB NOT NULL' - ], - [ - null, - 'column17', - 'ALTER TABLE "table" ADD COLUMN "column17" LONGBLOB NOT NULL' - ], - [ - 'schema', - 'column17', - 'ALTER TABLE "schema"."table" ADD COLUMN "column17" LONGBLOB NOT NULL' - ], - [ - null, - 'column18', - 'ALTER TABLE "table" ADD COLUMN "column18" TINYINT' - ], - [ - 'schema', - 'column18', - 'ALTER TABLE "schema"."table" ADD COLUMN "column18" TINYINT' - ], - [ - null, - 'column19', - 'ALTER TABLE "table" ADD COLUMN "column19" DOUBLE' - ], - [ - 'schema', - 'column19', - 'ALTER TABLE "schema"."table" ADD COLUMN "column19" DOUBLE' - ], - [ - null, - 'column20', - 'ALTER TABLE "table" ADD COLUMN "column20" DOUBLE UNSIGNED' - ], - [ - 'schema', - 'column20', - 'ALTER TABLE "schema"."table" ADD COLUMN "column20" DOUBLE UNSIGNED' - ], - ]; - } - - protected function getColumnDefinition() - { - return [ - ['column1', 'VARCHAR(10)'], - ['column2', 'INTEGER'], - ['column3', 'NUMERIC(10,2)'], - ['column4', 'CHARACTER(100)'], - ['column5', 'DATE'], - ['column6', 'DATETIME'], - ['column7', 'TEXT'], - ['column8', 'FLOAT'], - ['column9', 'VARCHAR(10)'], - ['column10', 'INTEGER'], - ['column13', 'TIMESTAMP'], - ['column14', 'TINYBLOB'], - ['column15', 'MEDIUMBLOB'], - ['column16', 'BLOB'], - ['column17', 'LONGBLOB'], - ['column18', 'TINYINT'], - ['column19', 'DOUBLE'], - ['column20', 'DOUBLE UNSIGNED'], - ]; - } - - protected function getColumnList() - { - return [ - [['column1', 'column2', 'column3', 'column13'], '"column1", "column2", "column3", "column13"'], - [['foo'], '"foo"'], - ]; - } - - protected function getDropIndex() - { - return [ - [null, 'index1', 'DROP INDEX "index1"'], - ['schema', 'index1', 'DROP INDEX "schema"."index1"'], - ]; - } - - protected function getCreateView() - { - return [ - [['sql' => 'SELECT 1'], null, 'CREATE VIEW "test_view" AS SELECT 1'], - [['sql' => 'SELECT 1'], 'schema', 'CREATE VIEW "schema"."test_view" AS SELECT 1'], - ]; - } - - protected function getDropView() - { - return [ - [null, false, 'DROP VIEW "test_view"'], - [null, true, 'DROP VIEW IF EXISTS "test_view"'], - ['schema', false, 'DROP VIEW "schema"."test_view"'], - ['schema', true, 'DROP VIEW IF EXISTS "schema"."test_view"'], - ]; - } - - protected function getListViews() - { - return [ - [null, "SELECT tbl_name FROM sqlite_master WHERE type = 'view' ORDER BY tbl_name"], - ['schema', "SELECT tbl_name FROM sqlite_master WHERE type = 'view' ORDER BY tbl_name"], - ]; - } - - protected function getViewExists() - { - return [ - [ - null, - "SELECT CASE WHEN COUNT(*) > 0 THEN 1 ELSE 0 END FROM sqlite_master WHERE type='view' AND tbl_name='view'" - ], - [ - 'schema', - "SELECT CASE WHEN COUNT(*) > 0 THEN 1 ELSE 0 END FROM sqlite_master WHERE type='view' AND tbl_name='view'" - ] - ]; - } - - protected function getDescribeColumns() - { - return [ - ['schema.name.with.dots', "PRAGMA table_info('table')"], - [null, "PRAGMA table_info('table')"], - ['schema', "PRAGMA table_info('table')"], - ]; - } - - protected function getDescribeReferences() - { - return [ - [ null, "PRAGMA foreign_key_list('table')"], - ['schema', "PRAGMA foreign_key_list('table')"], - ]; - } - - protected function getCreateTable() - { - return [ - 'example1' => [ - null, - [ - 'columns' => [ - new Column('column1', [ - 'type' => Column::TYPE_VARCHAR, - 'size' => 10 - ]), - new Column('column2', [ - 'type' => Column::TYPE_INTEGER, - 'size' => 18, - 'unsigned' => true, - 'notNull' => false - ]), - ] - ], - rtrim(file_get_contents(PATH_FIXTURES . 'sqlite/example1.sql')), - ], - 'example2' => [ - null, - [ - 'columns' => [ - new Column('column2', [ - 'type' => Column::TYPE_INTEGER, - 'size' => 18, - 'unsigned' => true, - 'notNull' => false - ]), - new Column('column3', [ - 'type' => Column::TYPE_DECIMAL, - 'size' => 10, - 'scale' => 2, - 'unsigned' => false, - 'notNull' => true - ]), - new Column('column1', [ - 'type' => Column::TYPE_VARCHAR, - 'size' => 10 - ]), - ], - 'indexes' => [ - new Index('PRIMARY', ['column3']), - ] - ], - rtrim(file_get_contents(PATH_FIXTURES . 'sqlite/example2.sql')), - ], - 'example3' => [ - null, - [ - 'columns' => [ - new Column('column2', [ - 'type' => Column::TYPE_INTEGER, - 'size' => 18, - 'unsigned' => true, - 'notNull' => false - ]), - new Column('column3', [ - 'type' => Column::TYPE_DECIMAL, - 'size' => 10, - 'scale' => 2, - 'unsigned' => false, - 'notNull' => true - ]), - new Column('column1', [ - 'type' => Column::TYPE_VARCHAR, - 'size' => 10 - ]), - ], - 'indexes' => [ - new Index('PRIMARY', ['column3']), - ], - 'references' => [ - new Reference('fk3', [ - 'referencedTable' => 'ref_table', - 'columns' => ['column1'], - 'referencedColumns' => ['column2'], - 'onDelete' => 'CASCADE', - ]), - ], - ], - rtrim(file_get_contents(PATH_FIXTURES . 'sqlite/example3.sql')), - ], - 'example4' => [ - null, - [ - 'columns' => [ - new Column('column9', [ - 'type' => Column::TYPE_VARCHAR, - 'size' => 10, - 'default' => 'column9' - ]), - new Column('column10', [ - 'type' => Column::TYPE_INTEGER, - 'size' => 18, - 'unsigned' => true, - 'notNull' => false, - 'default' => 10, - ]), - ], - ], - rtrim(file_get_contents(PATH_FIXTURES . 'sqlite/example4.sql')), - ], - 'example5' => [ - null, - [ - 'columns' => [ - new Column('column11', [ - 'type' => 'BIGINT', - 'typeReference' => Column::TYPE_INTEGER, - 'size' => 20, - 'unsigned' => true, - 'notNull' => false - ]), - new Column('column13', [ - 'type' => Column::TYPE_TIMESTAMP, - 'notNull' => true, - 'default' => 'CURRENT_TIMESTAMP', - ]), - ], - ], - rtrim(file_get_contents(PATH_FIXTURES . 'sqlite/example5.sql')), - ], - 'example6' => [ - null, - [ - 'columns' => [ - new Column('column14', [ - 'type' => Column::TYPE_TINYBLOB, - 'notNull' => true - ]), - new Column('column16', [ - 'type' => Column::TYPE_BLOB, - 'notNull' => true - ]), - ], - ], - rtrim(file_get_contents(PATH_FIXTURES . 'sqlite/example6.sql')), - ], - 'example7' => [ - null, - [ - 'columns' => [ - new Column('column18', [ - 'type' => Column::TYPE_BOOLEAN, - ]), - ], - ], - rtrim(file_get_contents(PATH_FIXTURES . 'sqlite/example7.sql')), - ], - 'example8' => [ - null, - [ - 'columns' => [ - new Column('column19', [ - 'type' => Column::TYPE_DOUBLE, - ]), - new Column('column20', [ - 'type' => Column::TYPE_DOUBLE, - 'unsigned' => true - ]), - ], - ], - rtrim(file_get_contents(PATH_FIXTURES . 'sqlite/example8.sql')), - ], - ]; - } -} diff --git a/tests/_support/Helper/DialectTrait.php b/tests/_support/Helper/DialectTrait.php deleted file mode 100644 index f566caa4ed9..00000000000 --- a/tests/_support/Helper/DialectTrait.php +++ /dev/null @@ -1,197 +0,0 @@ - - * @author Serghei Iakovlev - * @package Helper - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -trait DialectTrait -{ - /** - * @return Column[] - */ - protected function getColumns() - { - return [ - 'column1' => new Column('column1', [ - 'type' => Column::TYPE_VARCHAR, - 'size' => 10 - ]), - 'column2' => new Column('column2', [ - 'type' => Column::TYPE_INTEGER, - 'size' => 18, - 'unsigned' => true, - 'notNull' => false - ]), - 'column3' => new Column('column3', [ - 'type' => Column::TYPE_DECIMAL, - 'size' => 10, - 'scale' => 2, - 'unsigned' => false, - 'notNull' => true - ]), - 'column4' => new Column('column4', [ - 'type' => Column::TYPE_CHAR, - 'size' => 100, - 'notNull' => true - ]), - 'column5' => new Column('column5', [ - 'type' => Column::TYPE_DATE, - 'notNull' => true - ]), - 'column6' => new Column('column6', [ - 'type' => Column::TYPE_DATETIME, - 'notNull' => true - ]), - 'column7' => new Column('column7', [ - 'type' => Column::TYPE_TEXT, - 'notNull' => true - ]), - 'column8' => new Column('column8', [ - 'type' => Column::TYPE_FLOAT, - 'size' => 10, - 'scale' => 2, - 'unsigned' => false, - 'notNull' => true - ]), - 'column9' => new Column('column9', [ - 'type' => Column::TYPE_VARCHAR, - 'size' => 10, - 'default' => 'column9' - ]), - 'column10' => new Column('column10', [ - 'type' => Column::TYPE_INTEGER, - 'size' => 18, - 'unsigned' => true, - 'notNull' => false, - 'default' => 10, - ]), - 'column11' => new Column('column11', [ - 'type' => 'BIGINT', - 'typeReference' => Column::TYPE_INTEGER, - 'size' => 20, - 'unsigned' => true, - 'notNull' => false - ]), - 'column12' => new Column('column12', [ - 'type' => 'ENUM', - 'typeValues' => ['A', 'B', 'C'], - 'notNull' => true, - 'default' => 'A', - 'after' => 'column11' - ]), - 'column13' => new Column('column13', [ - 'type' => Column::TYPE_TIMESTAMP, - 'notNull' => true, - 'default' => 'CURRENT_TIMESTAMP', - ]), - 'column14' => new Column('column14', [ - 'type' => Column::TYPE_TINYBLOB, - 'notNull' => true - ]), - 'column15' => new Column('column15', [ - 'type' => Column::TYPE_MEDIUMBLOB, - 'notNull' => true - ]), - 'column16' => new Column('column16', [ - 'type' => Column::TYPE_BLOB, - 'notNull' => true - ]), - 'column17' => new Column('column17', [ - 'type' => Column::TYPE_LONGBLOB, - 'notNull' => true - ]), - 'column18' => new Column('column18', [ - 'type' => Column::TYPE_BOOLEAN, - ]), - 'column19' => new Column('column19', [ - 'type' => Column::TYPE_DOUBLE, - ]), - 'column20' => new Column('column20', [ - 'type' => Column::TYPE_DOUBLE, - 'unsigned' => true - ]), - 'column21' => new Column('column21', [ - 'type' => Column::TYPE_BIGINTEGER, - 'autoIncrement' => true, - ]), - 'column22' => new Column('column22', [ - 'type' => Column::TYPE_BIGINTEGER, - 'autoIncrement' => false, - ]), - 'column23' => new Column('column23', [ - 'type' => Column::TYPE_INTEGER, - 'autoIncrement' => true, - ]), - ]; - } - - /** - * @return Index[] - */ - protected function getIndexes() - { - return [ - 'index1' => new Index('index1', ['column1']), - 'index2' => new Index('index2', ['column1', 'column2']), - 'PRIMARY' => new Index('PRIMARY', ['column3']), - 'index4' => new Index('index4', ['column4'], 'UNIQUE'), - 'index5' => new Index('index5', ['column7'], 'FULLTEXT'), - ]; - } - - /** - * @return Reference[] - */ - protected function getReferences() - { - return [ - 'fk1' => new Reference('fk1', [ - 'referencedTable' => 'ref_table', - 'columns' => ['column1'], - 'referencedColumns' => ['column2'] - ]), - 'fk2' => new Reference('fk2', [ - 'referencedTable' => 'ref_table', - 'columns' => ['column3', 'column4'], - 'referencedColumns' => ['column5', 'column6'] - ]), - 'fk3' => new Reference('fk3', [ - 'referencedTable' => 'ref_table', - 'columns' => ['column1'], - 'referencedColumns' => ['column2'], - 'onDelete' => 'CASCADE', - ]), - 'fk4' => new Reference('fk4', [ - 'referencedTable' => 'ref_table', - 'columns' => ['column1'], - 'referencedColumns' => ['column2'], - 'onUpdate' => 'SET NULL', - ]), - 'fk5' => new Reference('fk5', [ - 'referencedTable' => 'ref_table', - 'columns' => ['column1'], - 'referencedColumns' => ['column2'], - 'onDelete' => 'CASCADE', - 'onUpdate' => 'NO ACTION', - ]), - ]; - } -} diff --git a/tests/_support/Helper/Functional.php b/tests/_support/Helper/Functional.php new file mode 100644 index 00000000000..ec29a4bbeeb --- /dev/null +++ b/tests/_support/Helper/Functional.php @@ -0,0 +1,11 @@ + - * @author Serghei Iakovlev - * @author Wojciech Ślawski - * @package Phalcon\Test\Unit\Mvc - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -trait ModelTrait -{ - /** - * @param Pdo|null $connection - * @return Manager - */ - protected function setUpModelsManager(Pdo $connection = null) - { - $di = Di::getDefault(); - $connection = $connection ?: $di->getShared('db'); - - Di::reset(); - - $di = new Di(); - - $manager = new Manager(); - $manager->setDI($di); - - $di->setShared('db', $connection); - $di->setShared('modelsManager', $manager); - $di->setShared('modelsMetadata', Memory::class); - - Di::setDefault($di); - - return $manager; - } - - /** - * @return TransactionManager - */ - protected function setUpTransactionManager() - { - $di = Di::getDefault(); - $db = $di->getShared('db'); - - Di::reset(); - - $di = new Di(); - - $transactionManager = new TransactionManager($di); - $manager = new Manager(); - $manager->setDI($di); - $di->setShared('db', $db); - $di->setShared('transactionManager', $transactionManager); - $di->setShared('modelsManager', $manager); - $di->setShared('modelsMetadata', Memory::class); - - Di::setDefault($di); - - return $transactionManager; - } -} diff --git a/tests/_support/Helper/PhalconCacheFile.php b/tests/_support/Helper/PhalconCacheFile.php new file mode 100644 index 00000000000..46017b8e9e6 --- /dev/null +++ b/tests/_support/Helper/PhalconCacheFile.php @@ -0,0 +1,317 @@ + Data::class, + 'backend' => FileBackend::class, + 'prefix' => 'data_', + 'lifetime' => 10, + 'cache_dir' => cacheFolder(), + ]; + + $this->projectPath = Configuration::projectDir(); + $this->config = array_merge($defaults, $config); + + parent::__construct($container); + } + + /** + * {@inheritdoc} + */ + public function _initialize() + { + $this->initializeCachePath($this->config['cache_dir']); + $this->initializeFrontend($this->config['frontend']); + $this->initializeBackend($this->config['backend']); + } + + /** + * ```php + * haveFrontendAdapter(Data::class); + * $I->haveFrontendAdapter(Data::class, ['prefix' => 'my_prefix_']); + * ?> + * ``` + * + * @param string $className + * @param array $config + */ + public function haveFrontendAdapter($className, array $config = null) + { + $defaults = [ + 'frontend' => $className, + 'backend' => $this->config['backend'], + ]; + + $config = array_merge($defaults, $config); + + $this->_reconfigure($config); + $this->debugSection('Frontend', get_class($this->frontend)); + } + + public function dontSeeCacheStarted() + { + $this->assertFalse($this->backend->isStarted()); + } + + public function seeCacheStarted() + { + $this->assertTrue($this->backend->isStarted()); + } + + /** + * Stores an item `$value` with `$key` on the cache backend. + * + * @param string $key + * @param string $content + * @param int $lifetime + * @param boolean $stopBuffer + */ + public function haveInCacheStorage($key, $content = null, $lifetime = null, $stopBuffer = true) + { + $this->assertTrue($this->backend->save($key, $content, $lifetime, $stopBuffer)); + } + + /** + * @param int|string $keyName + */ + public function deleteCacheData($keyName) + { + $this->assertTrue($this->backend->delete($keyName)); + } + + /** + * {@inheritdoc} + * + * @param string $filename + * @param string $path + */ + public function dontSeeCacheFound($filename, $path = '') + { + $filename = $this->config['prefix'] . $this->backend->getKey($filename); + + parent::dontSeeFileFound($filename, $path); + } + + /** + * Checks item in the cache backend exists and the same as expected. + * + * Examples: + * + * ``` php + * seeInCacheStorage('users_count'); + * + * // Checks a 'users_count' exists and has the value 200 + * $I->seeInCacheStorage('users_count', 200); + * ?> + * ``` + * + * @param string $key + * @param mixed $value + * @param int $lifetime + */ + public function seeInCacheStorage($key, $value = null, $lifetime = null) + { + $this->assertTrue($this->backend->exists($key, $lifetime)); + $this->amInPath($this->config['cache_dir']); + $this->seeFileFound($this->config['prefix'] . $this->backend->getKey($key)); + + $actual = $this->backend->get($key, $lifetime); + + $this->debugSection('Value', $actual); + + $serializeCallback = $this->serializeCallback; + if (null === $value || !is_callable($serializeCallback)) { + return; + } + + $serialized = call_user_func_array($serializeCallback, [$value]); + + $this->assertEquals($serialized, $this->file); + $this->assertEquals($serialized, $this->frontend->beforeStore($value)); + } + + /** + * {@inheritdoc} + * + * @throws ModuleConfigException + */ + protected function onReconfigure() + { + $this->_initialize(); + } + + /** + * @param $className + * + * @throws ModuleConfigException + */ + protected function initializeFrontend($className) + { + if (!class_exists($className)) { + throw new ModuleConfigException( + __CLASS__, + "The 'frontend' parameter should be a fully qualified class name of the frontend adapter." + ); + } + + $supportedFrontends = $this->getSupportedFrontends(); + $this->assertArrayHasKey($className, $supportedFrontends); + + if (isset($supportedFrontends[$className]['validate_cb'])) { + call_user_func($supportedFrontends[$className]['validate_cb']); + } + + if (isset($supportedFrontends[$className]['serialize_cb'])) { + $this->serializeCallback = $supportedFrontends[$className]['serialize_cb']; + } + + if (isset($supportedFrontends[$className]['unserialize_cb'])) { + $this->unserializeCallback = $supportedFrontends[$className]['unserialize_cb']; + } + + $adapter = new $className(['lifetime' => $this->config['lifetime']]); + + $this->config['frontend'] = $className; + $this->frontend = $adapter; + } + + protected function initializeBackend($className) + { + $adapter = new FileBackend($this->frontend, [ + 'cacheDir' => $this->config['cache_dir'], + 'prefix' => $this->config['prefix'], + ]); + + $this->config['backend'] = $className; + $this->backend = $adapter; + } + + /** + * @param string $dir + * + * @throws ModuleConfigException + */ + protected function initializeCachePath($dir) + { + $cacheDir = $this->absolutizePath($dir); + + if (is_file($cacheDir) || !is_dir($cacheDir) || !is_writable($cacheDir)) { + throw new ModuleConfigException( + __CLASS__, + "The 'cache_dir' parameter should be a writable path to the cache directory." + ); + } + + $this->config['cache_dir'] = $cacheDir; + } + + protected function getSupportedFrontends() + { + return [ + Data::class => [ + 'validate_cb' => function () { + return true; + }, + 'serialize_cb' => function ($data) { + return serialize($data); + }, + 'unserialize_cb' => function ($data) { + return unserialize($data); + }, + ], + Igbinary::class => [ + 'validate_cb' => function () { + if (!extension_loaded('igbinary')) { + throw new SkippedTestError( + "The 'igbinary' extension is not loaded." + ); + } + }, + 'serialize_cb' => function ($data) { + return igbinary_serialize($data); + }, + 'unserialize_cb' => function ($data) { + return is_numeric($data) ? $data : igbinary_unserialize($data); + }, + ], + ]; + } +} diff --git a/tests/_support/Helper/PhalconLibmemcached.php b/tests/_support/Helper/PhalconLibmemcached.php new file mode 100644 index 00000000000..f4ea7ca311e --- /dev/null +++ b/tests/_support/Helper/PhalconLibmemcached.php @@ -0,0 +1,234 @@ + + * @author Phalcon Team + * @package Phalcon\Test\Module + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class PhalconLibmemcached extends Module +{ + /** + * @var \Memcached + */ + public $memcached; + + /** + * {@inheritdoc} + */ + protected $config = []; + + /** + * Triggered after module is created and configuration is loaded, + * + * @throws ModuleException + */ + public function _initialize() + { + if (!class_exists('\Memcached')) { + throw new ModuleException(__CLASS__, 'The memcached extension is not loaded'); + } + + $this->config = [ + 'host' => env('DATA_MEMCACHED_HOST', '127.0.0.1'), + 'port' => env('DATA_MEMCACHED_PORT', 11211), + 'weight' => env('DATA_MEMCACHED_WEIGHT', 0), + 'persistent_id' => 'phalcon_cache', + ]; + } + + /** + * Code to run after each test. + * + * @param TestInterface $test + */ + public function _after(TestInterface $test) + { + $this->_cleanup(); + } + + public function _cleanup() + { + if (!$this->memcached) { + $this->connect(); + } + + $this->memcached->flush(); + $this->memcached->quit(); + } + + /** + * Grabs value from memcached by key. + * + * + * $users_count = $I->grabValueFromLibmemcached('users_count'); + * + * + * @param mixed $key + * @return mixed + */ + public function grabValueFromLibmemcached($key) + { + if (!$this->memcached) { + $this->connect(); + } + + $value = $this->memcached->get($key); + + if ($this->memcached->getResultCode() !== \Memcached::RES_SUCCESS) { + $this->fail("Cannot find key '$key' in the Memcached"); + } + + $this->debugSection('Value', $value); + + return $value; + } + + /** + * Checks item in Memcached exists and the same as expected. + * + * + * // With only one argument, only checks the key exists + * $I->seeInLibmemcached('users_count'); + * + * // Checks a 'users_count' exists and has the value 200 + * $I->seeInLibmemcached('users_count', 200); + * + * + * @param mixed $key + * @param mixed $value + */ + public function seeInLibmemcached($key, $value = null) + { + if (!$this->memcached) { + $this->connect(); + } + + $actual = $this->memcached->get($key); + $this->debugSection('Value', $actual); + + if ($this->memcached->getResultCode() !== \Memcached::RES_SUCCESS) { + $this->fail("Cannot find key '$key' in the Memcached"); + } + + if ($value !== null) { + $this->assertEquals($value, $actual, "Cannot find key '$key' in the Memcached with the provided value"); + } + } + + /** + * Checks item in Memcached doesn't exist or is the same as expected. + * + * + * // With only one argument, only checks the key does not exist + * $I->dontSeeInLibmemcached('users_count'); + * + * // Checks a 'users_count' exists does not exist or its value is not the one provided + * $I->dontSeeInLibmemcached('users_count', 200); + * + * + * @param mixed $key + * @param mixed $value + */ + public function dontSeeInLibmemcached($key, $value = null) + { + if (!$this->memcached) { + $this->connect(); + } + + $actual = $this->memcached->get($key); + $this->debugSection('Value', $actual); + + if ($value === null) { + if ($this->memcached->getResultCode() !== \Memcached::RES_NOTFOUND) { + $this->fail("The key '$key' exists in the Memcached"); + } + + return; + } + + if ($this->memcached->getResultCode() !== \Memcached::RES_SUCCESS) { + $this->fail("Cannot find key '$key' in the Memcached"); + } + + $this->assertEquals($value, $actual, "The key '$key' exists in Memcached with the provided value"); + } + + /** + * Stores an item `$value` with `$key` on the Memcached server. + * + * + * $I->haveInLibmemcached('users_count', 200); + * + * + * @param string $key + * @param mixed $value + * @param int $expiration + */ + public function haveInLibmemcached($key, $value, $expiration = null) + { + if (!$this->memcached) { + $this->connect(); + } + + $this->memcached->set($key, $value, $expiration); + + if ($this->memcached->getResultCode() !== \Memcached::RES_SUCCESS) { + $this->fail("[{$this->memcached->getResultCode()}] Unable to store the '$key' in the Memcached"); + } + } + + /** + * Flushes all Memcached data. + */ + public function clearMemcache() + { + if (!$this->memcached) { + $this->connect(); + } + + $this->memcached->flush(); + } + + /** + * Connect to the Memcached. + * + * @throws ModuleException + */ + protected function connect() + { + $this->memcached = new \Memcached($this->config['persistent_id']); + + // Persistent memcached pools need to be reconnected if getServerList() is empty + if (empty($this->memcached->getServerList())) { + $connect = $this->memcached->addServer( + $this->config['host'], + $this->config['port'], + $this->config['weight'] + ); + + if (!$connect) { + throw new ModuleException(__CLASS__, 'Cannot connect to the Memcached server'); + } + } + } +} diff --git a/tests/_support/Helper/ResultsetHelperTrait.php b/tests/_support/Helper/ResultsetHelperTrait.php deleted file mode 100644 index 36c8da360c7..00000000000 --- a/tests/_support/Helper/ResultsetHelperTrait.php +++ /dev/null @@ -1,121 +0,0 @@ - - * @author Serghei Iakovlev - * @author Wojciech Ślawski - * @package Phalcon\Test\Unit\Mvc - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -trait ResultsetHelperTrait -{ - protected function setUpEnvironment() - { - Di::reset(); - - $di = new Di(); - - $di->set('modelsManager', Manager::class); - $di->set('modelsMetadata', Memory::class); - - $di->set('db', function () { - return new Mysql([ - 'host' => env('TEST_DB_MYSQL_HOST', '127.0.0.1'), - 'username' => env('TEST_DB_MYSQL_USER', 'root'), - 'password' => env('TEST_DB_MYSQL_PASSWD', ''), - 'dbname' => env('TEST_DB_MYSQL_NAME', 'phalcon_test'), - 'port' => env('TEST_DB_MYSQL_PORT', 3306), - 'charset' => env('TEST_DB_MYSQL_CHARSET', 'utf8'), - ]); - }); - - Di::setDefault($di); - } - - protected function setUpModelsCache(BackendInterface $driver) - { - $di = Di::getDefault(); - - $di->set('modelsCache', $driver); - } - - protected function getFileCache() - { - $di = Di::getDefault(); - $cache = new File(new Data(['lifetime' => 3600]), ['cacheDir' => PATH_CACHE]); - - $di->set('modelsCache', $cache); - - return $cache; - } - - protected function getMemcacheCache() - { - if (!extension_loaded('memcache')) { - throw new SkippedTestError( - 'Warning: memcache extension is not loaded' - ); - } - - $config = [ - 'host' => env('TEST_MC_HOST', '127.0.0.1'), - 'port' => env('TEST_MC_PORT', 11211), - ]; - - $cache = new Memcache(new Data(['lifetime' => 3600]), $config); - - $di = Di::getDefault(); - $di->set('modelsCache', $cache); - - return $cache; - } - - protected function getLibmemcachedCache() - { - if (!extension_loaded('memcached')) { - throw new SkippedTestError( - 'Warning: memcached extension is not loaded' - ); - } - - $config = [ - 'servers' => [ - [ - 'host' => env('TEST_MC_HOST', '127.0.0.1'), - 'port' => env('TEST_MC_PORT', 11211), - 'weight' => env('TEST_MC_WEIGHT', 1), - ] - ], - ]; - - $cache = new Libmemcached(new Data(['lifetime' => 3600]), $config); - - $di = Di::getDefault(); - $di->set('modelsCache', $cache); - - return $cache; - } -} diff --git a/tests/_support/Helper/Unit.php b/tests/_support/Helper/Unit.php index a8b11c2636f..f26ab1fc81a 100644 --- a/tests/_support/Helper/Unit.php +++ b/tests/_support/Helper/Unit.php @@ -2,62 +2,23 @@ namespace Helper; -use Phalcon\Tag; +use function file_exists; +use function is_file; +use PHPUnit\Framework\SkippedTestError; use ReflectionClass; -use Codeception\Module; -use Codeception\TestInterface; - -/** - * Unit Helper - * - * Here you can define custom actions - * all public methods declared in helper class will be available in $I - * - * @package Helper - */ -class Unit extends Module -{ - /** - * @var TestInterface - */ - protected $test; - - /** - * Executed before each test. - * - * @param TestInterface $test - */ - public function _before(TestInterface $test) - { - $this->test = $test; - } +use function unlink; - public function getProtectedProperty($obj, $prop) - { - $reflection = new ReflectionClass($obj); - - $property = $reflection->getProperty($prop); - $property->setAccessible(true); - - return $property->getValue($obj); - } - - public function setProtectedProperty($obj, $prop, $value) - { - $reflection = new ReflectionClass($obj); - - $property = $reflection->getProperty($prop); - $property->setAccessible(true); - $property->setValue($obj, $value); - - $this->assertEquals($value, $property->getValue($obj)); - } +// here you can define custom actions +// all public methods declared in helper class will be available in $I +class Unit extends \Codeception\Module +{ /** * Calls private or protected method. * * @param string|object $obj - * @param mixed $method,... Method with a variable number of arguments + * @param mixed $method,... Method with a variable number of + * arguments * * @return mixed * @throws \ReflectionException @@ -80,6 +41,30 @@ public function callProtectedMethod($obj, $method) return call_user_func_array([$reflectionMethod, 'invoke'], $args); } + /** + * Checks if an extension is loaded and if not, skips the test + * + * @param string $extension The extension to check + */ + public function checkExtensionIsLoaded(string $extension) + { + if (true !== extension_loaded($extension)) { + $this->skipTest( + sprintf("Extension '%s' is not loaded. Skipping test", $extension) + ); + } + } + + /** + * Throws the SkippedTestError exception to skip a test + * + * @param string $message The message to display + */ + public function skipTest(string $message) + { + throw new SkippedTestError($message); + } + /** * Returns a unique file name * @@ -92,66 +77,53 @@ public function callProtectedMethod($obj, $method) * @return string * */ - public function getNewFileName($prefix = '', $suffix = 'log') + public function getNewFileName(string $prefix = '', string $suffix = 'log') { $prefix = ($prefix) ? $prefix . '_' : ''; - $suffix = ($suffix) ? $suffix : 'log'; + $suffix = ($suffix) ? $suffix : 'log'; return uniqid($prefix, true) . '.' . $suffix; } + public function safeDeleteFile(string $filename) + { + if (true === file_exists($filename) && true === is_file($filename)) { + unlink($filename); + } + } + /** - * Removes a file from the system + * @param $obj + * @param $prop * - * @author Nikos Dimopoulos - * @since 2014-09-13 - * - * @param string $path - * @param string $fileName + * @return mixed + * @throws \ReflectionException */ - public function cleanFile($path, $fileName) + public function getProtectedProperty($obj, $prop) { - $file = (substr($path, -1, 1) != "/") ? ($path . '/') : $path; - $file .= $fileName; + $reflection = new ReflectionClass($obj); - $actual = file_exists($file); + $property = $reflection->getProperty($prop); + $property->setAccessible(true); - if ($actual) { - unlink($file); - } + return $property->getValue($obj); } /** - * Runs the test for a Tag::$function with $options + * @param $obj + * @param $prop + * @param $value * - * @param string $function - * @param mixed $options - * @param string $expected - * @param boolean $xhtml - * @param string $set + * @throws \ReflectionException */ - public function testFieldParameter($function, $options, $expected, $xhtml, $set = '') + public function setProtectedProperty($obj, $prop, $value) { - Tag::resetInput(); - - if ($xhtml) { - Tag::setDocType(Tag::XHTML10_STRICT); - $expected .= ' />'; - } else { - Tag::setDocType(Tag::HTML5); - $expected .= '>'; - } - - if ($set) { - Tag::displayTo('x_name', 'x_value'); - } - - $actual = Tag::$function($options); + $reflection = new ReflectionClass($obj); - if ($set) { - Tag::$set('x_name', ''); - } + $property = $reflection->getProperty($prop); + $property->setAccessible(true); + $property->setValue($obj, $value); - $this->assertEquals($expected, $actual); + $this->assertEquals($value, $property->getValue($obj)); } } diff --git a/tests/_support/Helper/Unit5x.php b/tests/_support/Helper/Unit5x.php deleted file mode 100644 index 0586b51df8c..00000000000 --- a/tests/_support/Helper/Unit5x.php +++ /dev/null @@ -1,16 +0,0 @@ - - * @author Serghei Iakovlev - * @package Helper - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -trait ViewTrait -{ - protected $level; - - /** - * @var View - */ - protected $view; - - /** - * executed before each test - */ - protected function _before() - { - $this->level = ob_get_level(); - - $this->view = new View(); - } - - /** - * executed after each test - */ - protected function _after() - { - while (ob_get_level() > $this->level) { - ob_end_flush(); - } - } - - protected function renderPartialBuffered(ViewBaseInterface $view, $partial, $expectedParams = null) - { - ob_start(); - $view->partial($partial, $expectedParams); - ob_clean(); - } - - /** - * Set params and check expected data after render view - * - * @param string $errorMessage - * @param array $params - * @param View $view - */ - protected function setParamAndCheckData($errorMessage, $params, $view) - { - foreach ($params as $param) { - $view->setParamToView($param['paramToView'][0], $param['paramToView'][1]); - - $view->start(); - $view->setRenderLevel($param['renderLevel']); - $view->render($param['render'][0], $param['render'][1]); - $view->finish(); - - $this->assertEquals( - $view->getContent(), - $param['expected'], - $errorMessage - ); - } - } - - protected function clearCache() - { - if (!file_exists(PATH_CACHE)) { - mkdir(PATH_CACHE); - } - - foreach (new DirectoryIterator(PATH_CACHE) as $item) { - if ($item->isDir()) { - continue; - } - - unlink($item->getPathname()); - } - } -} diff --git a/tests/_support/IntegrationTester.php b/tests/_support/IntegrationTester.php index 18c9c232aef..7e103271dc6 100644 --- a/tests/_support/IntegrationTester.php +++ b/tests/_support/IntegrationTester.php @@ -12,38 +12,24 @@ * @method void am($role) * @method void lookForwardTo($achieveValue) * @method void comment($description) - * @method \Codeception\Lib\Friend haveFriend($name, $actorClass = NULL) + * @method \Codeception\Lib\Friend haveFriend($name, $actorClass = null) * * @SuppressWarnings(PHPMD) -*/ + */ class IntegrationTester extends \Codeception\Actor { use _generated\IntegrationTesterActions; /** - * Remove files without errors - * - * @param mixed $function + * Define custom actions here */ - public function removeFilesWithoutErrors($files) - { - if (!is_array($files)) { - $files = array($files); - } - - foreach ($files as $file) { - if (file_exists($file) && is_readable($file)) { - @unlink($file); - } - } - } /** * Get file name from path * * @param string $path * @param string $separator - * + * * @return string */ public function preparePathToFileWithDelimiter($path, $separator) { diff --git a/tests/_support/Module/Cache/Backend/File.php b/tests/_support/Module/Cache/Backend/File.php deleted file mode 100644 index 2e15110fd6a..00000000000 --- a/tests/_support/Module/Cache/Backend/File.php +++ /dev/null @@ -1,317 +0,0 @@ - Data::class, - 'backend' => FileBackend::class, - 'prefix' => 'data_', - 'lifetime' => 10, - 'cache_dir' => '', - ]; - - $this->projectPath = Configuration::projectDir(); - $this->config = array_merge($defaults, $config); - - parent::__construct($container); - } - - /** - * {@inheritdoc} - */ - public function _initialize() - { - $this->initializeCachePath($this->config['cache_dir']); - $this->initializeFrontend($this->config['frontend']); - $this->initializeBackend($this->config['backend']); - } - - /** - * ```php - * haveFrontendAdapter(Data::class); - * $I->haveFrontendAdapter(Data::class, ['prefix' => 'my_prefix_']); - * ?> - * ``` - * - * @param string $className - * @param array $config - */ - public function haveFrontendAdapter($className, array $config = null) - { - $defaults = [ - 'frontend' => $className, - 'backend' => $this->config['backend'], - ]; - - $config = array_merge($defaults, $config); - - $this->_reconfigure($config); - $this->debugSection('Frontend', get_class($this->frontend)); - } - - public function dontSeeCacheStarted() - { - $this->assertFalse($this->backend->isStarted()); - } - - public function seeCacheStarted() - { - $this->assertTrue($this->backend->isStarted()); - } - - /** - * Stores an item `$value` with `$key` on the cache backend. - * - * @param string $key - * @param string $content - * @param int $lifetime - * @param boolean $stopBuffer - */ - public function haveInCacheStorage($key, $content = null, $lifetime = null, $stopBuffer = true) - { - $this->assertTrue($this->backend->save($key, $content, $lifetime, $stopBuffer)); - } - - /** - * @param int|string $keyName - */ - public function deleteCacheData($keyName) - { - $this->assertTrue($this->backend->delete($keyName)); - } - - /** - * {@inheritdoc} - * - * @param string $filename - * @param string $path - */ - public function dontSeeCacheFound($filename, $path = '') - { - $filename = $this->config['prefix'] . $this->backend->getKey($filename); - - parent::dontSeeFileFound($filename, $path); - } - - /** - * Checks item in the cache backend exists and the same as expected. - * - * Examples: - * - * ``` php - * seeInCacheStorage('users_count'); - * - * // Checks a 'users_count' exists and has the value 200 - * $I->seeInCacheStorage('users_count', 200); - * ?> - * ``` - * - * @param string $key - * @param mixed $value - * @param int $lifetime - */ - public function seeInCacheStorage($key, $value = null, $lifetime = null) - { - $this->assertTrue($this->backend->exists($key, $lifetime)); - $this->amInPath($this->config['cache_dir']); - $this->seeFileFound($this->config['prefix'] . $this->backend->getKey($key)); - - $actual = $this->backend->get($key, $lifetime); - - $this->debugSection('Value', $actual); - - $serializeCallback = $this->serializeCallback; - if (null === $value || !is_callable($serializeCallback)) { - return; - } - - $serialized = call_user_func_array($serializeCallback, [$value]); - - $this->assertEquals($serialized, $this->file); - $this->assertEquals($serialized, $this->frontend->beforeStore($value)); - } - - /** - * {@inheritdoc} - * - * @throws ModuleConfigException - */ - protected function onReconfigure() - { - $this->_initialize(); - } - - /** - * @param $className - * - * @throws ModuleConfigException - */ - protected function initializeFrontend($className) - { - if (!class_exists($className)) { - throw new ModuleConfigException( - __CLASS__, - "The 'frontend' parameter should be a fully qualified class name of the frontend adapter." - ); - } - - $supportedFrontends = $this->getSupportedFrontends(); - $this->assertArrayHasKey($className, $supportedFrontends); - - if (isset($supportedFrontends[$className]['validate_cb'])) { - call_user_func($supportedFrontends[$className]['validate_cb']); - } - - if (isset($supportedFrontends[$className]['serialize_cb'])) { - $this->serializeCallback = $supportedFrontends[$className]['serialize_cb']; - } - - if (isset($supportedFrontends[$className]['unserialize_cb'])) { - $this->unserializeCallback = $supportedFrontends[$className]['unserialize_cb']; - } - - $adapter = new $className(['lifetime' => $this->config['lifetime']]); - - $this->config['frontend'] = $className; - $this->frontend = $adapter; - } - - protected function initializeBackend($className) - { - $adapter = new FileBackend($this->frontend, [ - 'cacheDir' => $this->config['cache_dir'], - 'prefix' => $this->config['prefix'], - ]); - - $this->config['backend'] = $className; - $this->backend = $adapter; - } - - /** - * @param string $dir - * - * @throws ModuleConfigException - */ - protected function initializeCachePath($dir) - { - $cacheDir = $this->absolutizePath($dir); - - if (is_file($cacheDir) || !is_dir($cacheDir) || !is_writable($cacheDir)) { - throw new ModuleConfigException( - __CLASS__, - "The 'cache_dir' parameter should be a writable path to the cache directory." - ); - } - - $this->config['cache_dir'] = $cacheDir; - } - - protected function getSupportedFrontends() - { - return [ - Data::class => [ - 'validate_cb' => function () { - return true; - }, - 'serialize_cb' => function ($data) { - return serialize($data); - }, - 'unserialize_cb' => function ($data) { - return unserialize($data); - }, - ], - Igbinary::class => [ - 'validate_cb' => function () { - if (!extension_loaded('igbinary')) { - throw new SkippedTestError( - "The 'igbinary' extension is not loaded." - ); - } - }, - 'serialize_cb' => function ($data) { - return igbinary_serialize($data); - }, - 'unserialize_cb' => function ($data) { - return is_numeric($data) ? $data : igbinary_unserialize($data); - }, - ], - ]; - } -} diff --git a/tests/_support/Module/Libmemcached.php b/tests/_support/Module/Libmemcached.php deleted file mode 100644 index 2d597c65a4c..00000000000 --- a/tests/_support/Module/Libmemcached.php +++ /dev/null @@ -1,232 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Module - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Libmemcached extends Module -{ - /** - * @var \Memcached - */ - public $memcached; - - /** - * {@inheritdoc} - */ - protected $config = [ - 'host' => '127.0.0.1', - 'port' => 11211, - 'weight' => 0, - 'persistent_id' => 'phalcon_cache' - ]; - - /** - * Triggered after module is created and configuration is loaded, - * - * @throws ModuleException - */ - public function _initialize() - { - if (!class_exists('\Memcached')) { - throw new ModuleException(__CLASS__, 'The memcached extension is not loaded'); - } - } - - /** - * Code to run after each test. - * - * @param TestInterface $test - */ - public function _after(TestInterface $test) - { - $this->_cleanup(); - } - - public function _cleanup() - { - if (!$this->memcached) { - $this->connect(); - } - - $this->memcached->flush(); - $this->memcached->quit(); - } - - /** - * Grabs value from memcached by key. - * - * - * $users_count = $I->grabValueFromLibmemcached('users_count'); - * - * - * @param mixed $key - * @return mixed - */ - public function grabValueFromLibmemcached($key) - { - if (!$this->memcached) { - $this->connect(); - } - - $value = $this->memcached->get($key); - - if ($this->memcached->getResultCode() !== \Memcached::RES_SUCCESS) { - $this->fail("Cannot find key '$key' in the Memcached"); - } - - $this->debugSection('Value', $value); - - return $value; - } - - /** - * Checks item in Memcached exists and the same as expected. - * - * - * // With only one argument, only checks the key exists - * $I->seeInLibmemcached('users_count'); - * - * // Checks a 'users_count' exists and has the value 200 - * $I->seeInLibmemcached('users_count', 200); - * - * - * @param mixed $key - * @param mixed $value - */ - public function seeInLibmemcached($key, $value = null) - { - if (!$this->memcached) { - $this->connect(); - } - - $actual = $this->memcached->get($key); - $this->debugSection('Value', $actual); - - if ($this->memcached->getResultCode() !== \Memcached::RES_SUCCESS) { - $this->fail("Cannot find key '$key' in the Memcached"); - } - - if ($value !== null) { - $this->assertEquals($value, $actual, "Cannot find key '$key' in the Memcached with the provided value"); - } - } - - /** - * Checks item in Memcached doesn't exist or is the same as expected. - * - * - * // With only one argument, only checks the key does not exist - * $I->dontSeeInLibmemcached('users_count'); - * - * // Checks a 'users_count' exists does not exist or its value is not the one provided - * $I->dontSeeInLibmemcached('users_count', 200); - * - * - * @param mixed $key - * @param mixed $value - */ - public function dontSeeInLibmemcached($key, $value = null) - { - if (!$this->memcached) { - $this->connect(); - } - - $actual = $this->memcached->get($key); - $this->debugSection('Value', $actual); - - if ($value === null) { - if ($this->memcached->getResultCode() !== \Memcached::RES_NOTFOUND) { - $this->fail("The key '$key' exists in the Memcached"); - } - - return; - } - - if ($this->memcached->getResultCode() !== \Memcached::RES_SUCCESS) { - $this->fail("Cannot find key '$key' in the Memcached"); - } - - $this->assertEquals($value, $actual, "The key '$key' exists in Memcached with the provided value"); - } - - /** - * Stores an item `$value` with `$key` on the Memcached server. - * - * - * $I->haveInLibmemcached('users_count', 200); - * - * - * @param string $key - * @param mixed $value - * @param int $expiration - */ - public function haveInLibmemcached($key, $value, $expiration = null) - { - if (!$this->memcached) { - $this->connect(); - } - - $this->memcached->set($key, $value, $expiration); - - if ($this->memcached->getResultCode() !== \Memcached::RES_SUCCESS) { - $this->fail("[{$this->memcached->getResultCode()}] Unable to store the '$key' in the Memcached"); - } - } - - /** - * Flushes all Memcached data. - */ - public function clearMemcache() - { - if (!$this->memcached) { - $this->connect(); - } - - $this->memcached->flush(); - } - - /** - * Connect to the Memcached. - * - * @throws ModuleException - */ - protected function connect() - { - $this->memcached = new \Memcached($this->config['persistent_id']); - - // Persistent memcached pools need to be reconnected if getServerList() is empty - if (empty($this->memcached->getServerList())) { - $connect = $this->memcached->addServer( - $this->config['host'], - $this->config['port'], - $this->config['weight'] - ); - - if (!$connect) { - throw new ModuleException(__CLASS__, 'Cannot connect to the Memcached server'); - } - } - } -} diff --git a/tests/_support/Module/UnitTest.php b/tests/_support/Module/UnitTest.php deleted file mode 100644 index 447cab14d6d..00000000000 --- a/tests/_support/Module/UnitTest.php +++ /dev/null @@ -1,66 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Module - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class UnitTest extends Unit -{ - use Specify; - - /** - * UnitTester Object - * @var UnitTester - */ - protected $tester; - - /** - * @return UnitTester - */ - public function getTester() - { - return $this->tester; - } - - /** - * Tries to delete a file (or a list of files) which may not exist. - * - * @param mixed $files - * @return void - */ - public function silentRemoveFiles($files) - { - if (!is_string($files) && !is_array($files)) { - return; - } - - if (!is_array($files)) { - $files = [$files]; - } - - foreach ($files as $file) { - if (file_exists($file) && is_readable($file) && !is_dir($file)) { - @unlink($file); - } - } - } -} diff --git a/tests/_support/Module/View/Engine/Mustache.php b/tests/_support/Module/View/Engine/Mustache.php deleted file mode 100644 index 73c70f8a0ad..00000000000 --- a/tests/_support/Module/View/Engine/Mustache.php +++ /dev/null @@ -1,77 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Module\View\Engine - * - * @property ViewBaseInterface $_view - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Mustache extends Engine implements EngineInterface -{ - /** - * The internal Mustache Engine - * @var Mustache_Engine - */ - protected $mustache; - - /** - * The view params - * @var array - */ - protected $params = []; - - /** - * Mustache constructor. - * - * @param ViewBaseInterface $view - * @param DiInterface|null $dependencyInjector - */ - public function __construct(ViewBaseInterface $view, DiInterface $dependencyInjector = null) - { - $this->mustache = new Mustache_Engine(); - - parent::__construct($view, $dependencyInjector); - } - - /** - * Renders a view using the template engine - * - * @param string $path - * @param mixed $params - * @param bool $mustClean - */ - public function render($path, $params, $mustClean = false) - { - if (!isset($params['content'])) { - $params['content'] = $this->_view->getContent(); - } - - $content = $this->mustache->render(file_get_contents($path), $params); - if ($mustClean) { - $this->_view->setContent($content); - } else { - echo $content; - } - } -} diff --git a/tests/_support/Module/View/Engine/Twig.php b/tests/_support/Module/View/Engine/Twig.php deleted file mode 100644 index 94ab41590ae..00000000000 --- a/tests/_support/Module/View/Engine/Twig.php +++ /dev/null @@ -1,74 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Module\View\Engine - * - * @property ViewBaseInterface $_view - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class Twig extends Engine implements EngineInterface -{ - protected $twig; - - /** - * Twig constructor. - * - * @param ViewBaseInterface $view - * @param DiInterface|null $dependencyInjector - */ - public function __construct(ViewBaseInterface $view, DiInterface $dependencyInjector = null) - { - $this->twig = new Twig_Environment(new Twig_Loader_Filesystem($view->getViewsDir())); - - parent::__construct($view, $dependencyInjector); - } - - /** - * Renders a view using the template engine - * - * @param string $path - * @param mixed $params - * @param bool $mustClean - */ - public function render($path, $params, $mustClean = false) - { - if (!isset($params['content'])) { - $params['content'] = $this->_view->getContent(); - } - - if (!isset($params['view'])) { - $params['view'] = $this->_view; - } - - $relativePath = str_replace($this->_view->getViewsDir(), '', $path); - $content = $this->twig->render($relativePath, $params); - - if ($mustClean) { - $this->_view->setContent($content); - } else { - echo $content; - } - } -} diff --git a/tests/_support/Unit5xTester.php b/tests/_support/Unit5xTester.php deleted file mode 100644 index ee55f26815e..00000000000 --- a/tests/_support/Unit5xTester.php +++ /dev/null @@ -1,26 +0,0 @@ - + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Console; + +use CliTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Cli\Console :: __construct() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliConsoleConstruct(CliTester $I) + { + $I->wantToTest("Cli\Console - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Console/GetDICest.php b/tests/cli/Cli/Console/GetDICest.php new file mode 100644 index 00000000000..d1343a17b29 --- /dev/null +++ b/tests/cli/Cli/Console/GetDICest.php @@ -0,0 +1,43 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Console; + +use CliTester; +use Phalcon\Cli\Dispatcher; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class GetDICest +{ + use DiTrait; + + /** + * Tests Phalcon\Cli\Console :: getDI() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliConsoleGetDI(CliTester $I) + { + $I->wantToTest("Cli\Console - getDI()"); + $I->wantToTest("Cli\Console - setDI()"); + $container = $this->newCliFactoryDefault(); + + $console = $this->newCliConsole(); + $console->setDI($container); + + $expected = Dispatcher::class; + $actual = $console->getDI()->getShared('dispatcher'); + $I->assertInstanceOf($expected, $actual); + } +} diff --git a/tests/cli/Cli/Console/GetDefaultModuleCest.php b/tests/cli/Cli/Console/GetDefaultModuleCest.php new file mode 100644 index 00000000000..7569e2da110 --- /dev/null +++ b/tests/cli/Cli/Console/GetDefaultModuleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Console; + +use CliTester; + +class GetDefaultModuleCest +{ + /** + * Tests Phalcon\Cli\Console :: getDefaultModule() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliConsoleGetDefaultModule(CliTester $I) + { + $I->wantToTest("Cli\Console - getDefaultModule()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Console/GetEventsManagerCest.php b/tests/cli/Cli/Console/GetEventsManagerCest.php new file mode 100644 index 00000000000..630ddd11a91 --- /dev/null +++ b/tests/cli/Cli/Console/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Console; + +use CliTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Cli\Console :: getEventsManager() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliConsoleGetEventsManager(CliTester $I) + { + $I->wantToTest("Cli\Console - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Console/GetModuleCest.php b/tests/cli/Cli/Console/GetModuleCest.php new file mode 100644 index 00000000000..77b5b473f88 --- /dev/null +++ b/tests/cli/Cli/Console/GetModuleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Console; + +use CliTester; + +class GetModuleCest +{ + /** + * Tests Phalcon\Cli\Console :: getModule() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliConsoleGetModule(CliTester $I) + { + $I->wantToTest("Cli\Console - getModule()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Console/GetModulesCest.php b/tests/cli/Cli/Console/GetModulesCest.php new file mode 100644 index 00000000000..43818478835 --- /dev/null +++ b/tests/cli/Cli/Console/GetModulesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Console; + +use CliTester; + +class GetModulesCest +{ + /** + * Tests Phalcon\Cli\Console :: getModules() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliConsoleGetModules(CliTester $I) + { + $I->wantToTest("Cli\Console - getModules()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Console/HandleCest.php b/tests/cli/Cli/Console/HandleCest.php new file mode 100644 index 00000000000..1c1195e5d40 --- /dev/null +++ b/tests/cli/Cli/Console/HandleCest.php @@ -0,0 +1,117 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Console; + +use CliTester; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class HandleCest +{ + use DiTrait; + + /** + * Tests Phalcon\Cli\Console :: handle() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliConsoleHandle(CliTester $I) + { + $I->wantToTest("Cli\Console - handle()"); + $I->skipTest("TODO - check this"); + $container = $this->newCliFactoryDefault(); + $container->set( + 'data', + function () { + return "data"; + } + ); + + $console = $this->newCliConsole(); + $console->setDI($container); + $dispatcher = $console->getDI()->getShared('dispatcher'); + + $console->handle([]); + $expected = 'main'; + $actual = $dispatcher->getTaskName(); + $I->assertEquals($expected, $actual); + $expected = 'main'; + $actual = $dispatcher->getActionName(); + $I->assertEquals($expected, $actual); + $expected = []; + $actual = $dispatcher->getParams(); + $I->assertEquals($expected, $actual); + $expected = 'mainAction'; + $actual = $dispatcher->getReturnedValue(); + $I->assertEquals($expected, $actual); + + $console->handle( + [ + 'task' => 'echo', + ] + ); + $expected = 'echo'; + $actual = $dispatcher->getTaskName(); + $I->assertEquals($expected, $actual); + $expected = 'main'; + $actual = $dispatcher->getActionName(); + $I->assertEquals($expected, $actual); + $expected = []; + $actual = $dispatcher->getParams(); + $I->assertEquals($expected, $actual); + $expected = 'echoMainAction'; + $actual = $dispatcher->getReturnedValue(); + $I->assertEquals($expected, $actual); + + $console->handle( + [ + 'task' => 'main', + 'action' => 'hello', + ] + ); + $expected = 'main'; + $actual = $dispatcher->getTaskName(); + $I->assertEquals($expected, $actual); + $expected = 'hello'; + $actual = $dispatcher->getActionName(); + $I->assertEquals($expected, $actual); + $expected = []; + $actual = $dispatcher->getParams(); + $I->assertEquals($expected, $actual); + $expected = 'Hello !'; + $actual = $dispatcher->getReturnedValue(); + $I->assertEquals($expected, $actual); + + $console->handle( + [ + 'task' => 'main', + 'action' => 'hello', + 'World', + '######', + ] + ); + $expected = 'main'; + $actual = $dispatcher->getTaskName(); + $I->assertEquals($expected, $actual); + $expected = 'hello'; + $actual = $dispatcher->getActionName(); + $I->assertEquals($expected, $actual); + $expected = ['World', '######']; + $actual = $dispatcher->getParams(); + $I->assertEquals($expected, $actual); + $expected = 'Hello World######'; + $actual = $dispatcher->getReturnedValue(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/cli/Cli/Console/RegisterModulesCest.php b/tests/cli/Cli/Console/RegisterModulesCest.php new file mode 100644 index 00000000000..75d33d61559 --- /dev/null +++ b/tests/cli/Cli/Console/RegisterModulesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Console; + +use CliTester; + +class RegisterModulesCest +{ + /** + * Tests Phalcon\Cli\Console :: registerModules() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliConsoleRegisterModules(CliTester $I) + { + $I->wantToTest("Cli\Console - registerModules()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Console/SetArgumentCest.php b/tests/cli/Cli/Console/SetArgumentCest.php new file mode 100644 index 00000000000..cde3c02004c --- /dev/null +++ b/tests/cli/Cli/Console/SetArgumentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Console; + +use CliTester; + +class SetArgumentCest +{ + /** + * Tests Phalcon\Cli\Console :: setArgument() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliConsoleSetArgument(CliTester $I) + { + $I->wantToTest("Cli\Console - setArgument()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Console/SetDICest.php b/tests/cli/Cli/Console/SetDICest.php new file mode 100644 index 00000000000..bfd9c2df889 --- /dev/null +++ b/tests/cli/Cli/Console/SetDICest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Console; + +use CliTester; +use Phalcon\Cli\Dispatcher; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class SetDICest +{ + use DiTrait; + + /** + * Tests Phalcon\Cli\Console :: setDI() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliConsoleSetDI(CliTester $I) + { + $I->wantToTest("Cli\Console - setDI()"); + $container = $this->newCliFactoryDefault(); + + $console = $this->newCliConsole(); + $console->setDI($container); + + $expected = Dispatcher::class; + $actual = $console->getDI()->getShared('dispatcher'); + $I->assertInstanceOf($expected, $actual); + } +} diff --git a/tests/cli/Cli/Console/SetDefaultModuleCest.php b/tests/cli/Cli/Console/SetDefaultModuleCest.php new file mode 100644 index 00000000000..c19b3323540 --- /dev/null +++ b/tests/cli/Cli/Console/SetDefaultModuleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Console; + +use CliTester; + +class SetDefaultModuleCest +{ + /** + * Tests Phalcon\Cli\Console :: setDefaultModule() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliConsoleSetDefaultModule(CliTester $I) + { + $I->wantToTest("Cli\Console - setDefaultModule()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Console/SetEventsManagerCest.php b/tests/cli/Cli/Console/SetEventsManagerCest.php new file mode 100644 index 00000000000..69654e03278 --- /dev/null +++ b/tests/cli/Cli/Console/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Console; + +use CliTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Cli\Console :: setEventsManager() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliConsoleSetEventsManager(CliTester $I) + { + $I->wantToTest("Cli\Console - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Console/UnderscoreGetCest.php b/tests/cli/Cli/Console/UnderscoreGetCest.php new file mode 100644 index 00000000000..9c382469b37 --- /dev/null +++ b/tests/cli/Cli/Console/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Console; + +use CliTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Cli\Console :: __get() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliConsoleUnderscoreGet(CliTester $I) + { + $I->wantToTest("Cli\Console - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/ConsoleCest.php b/tests/cli/Cli/ConsoleCest.php new file mode 100644 index 00000000000..d760e185a56 --- /dev/null +++ b/tests/cli/Cli/ConsoleCest.php @@ -0,0 +1,454 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cli; + +use CliTester; +use Phalcon\Cli\Console; +use Phalcon\Cli\Console\Exception as ConsoleException; +use Phalcon\Cli\Dispatcher; +use Phalcon\Cli\Dispatcher\Exception as DispatcherException; +use Phalcon\Cli\Router; +use Phalcon\Di; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use function dataFolder; + +class ConsoleCest +{ + use DiTrait; + + public function _before(CliTester $I) + { + $this->setNewCliFactoryDefault(); + } + + public function shouldThrowExceptionWhenModuleDoesNotExists(CliTester $I) + { + $I->expectThrowable( + new ConsoleException("Module 'devtools' isn't registered in the console container"), + function () { + $this->container->set( + 'data', + function () { + return "data"; + } + ); + + $console = new Console(); + $console->setDI($this->container); + + // testing module + $console->handle( + [ + 'module' => 'devtools', + 'task' => 'main', + 'action' => 'hello', + 'World', + '######', + ] + ); + } + ); + } + + public function shouldThrowExceptionWhenTaskDoesNotExists(CliTester $I) + { + $I->expectThrowable( + new DispatcherException("Dummy\MainTask handler class cannot be loaded", 2), + function () { + $this->container->set( + 'data', + function () { + return "data"; + } + ); + + $console = new Console(); + $console->setDI($this->container); + $dispatcher = $console->getDI()->getShared('dispatcher'); + + $dispatcher->setDefaultNamespace('Dummy\\'); + + // testing namespace + $console->handle( + [ + 'task' => 'main', + 'action' => 'hello', + 'World', + '!', + ] + ); + } + ); + } + + public function testModules(CliTester $I) + { + $this->container->set( + 'data', + function () { + return "data"; + } + ); + + $console = new Console(); + $console->setDI($this->container); + + $expected = [ + 'devtools' => [ + 'className' => 'dummy', + 'path' => 'dummy_file', + ], + ]; + + $console->registerModules($expected); + + $I->assertEquals($expected, $console->getModules()); + + $userModules = [ + 'front' => [ + 'className' => 'front', + 'path' => 'front_file', + ], + 'worker' => [ + 'className' => 'worker', + 'path' => 'worker_file', + ], + ]; + + $expected = [ + 'devtools' => [ + 'className' => 'dummy', + 'path' => 'dummy_file', + ], + 'front' => [ + 'className' => 'front', + 'path' => 'front_file', + ], + 'worker' => [ + 'className' => 'worker', + 'path' => 'worker_file', + ], + ]; + + $console->registerModules($userModules, true); + + $I->assertEquals($expected, $console->getModules()); + } + + public function testIssue787(CliTester $I) + { + require_once dataFolder('fixtures/tasks/Issue787Task.php'); + + $dispatcher = new Dispatcher(); + $dispatcher->setDI($this->container); + $this->container->setShared('dispatcher', $dispatcher); + + $console = new Console(); + $console->setDI($this->container); + $console->handle( + [ + 'task' => 'issue787', + 'action' => 'main', + ] + ); + + $I->assertTrue(class_exists('Issue787Task')); + + $actual = \Issue787Task::$output; + $expected = "beforeExecuteRoute" . PHP_EOL . "initialize" . PHP_EOL; + $I->assertEquals($expected, $actual); + } + + public function testArgumentArray(CliTester $I) + { + /** + * @todo Check the loader why those are not being autoloaded + */ + require_once dataFolder('fixtures/tasks/EchoTask.php'); + require_once dataFolder('fixtures/tasks/MainTask.php'); + + $console = new Console(); + $console->setDI($this->container); + $dispatcher = $console->getDI()->getShared('dispatcher'); + + $console->setArgument(array( + 'php', + ), false)->handle(); + $I->assertEquals($dispatcher->getTaskName(), 'main'); + $I->assertEquals($dispatcher->getActionName(), 'main'); + $I->assertEquals($dispatcher->getParams(), []); + $I->assertEquals($dispatcher->getReturnedValue(), 'mainAction'); + + $console->setArgument(array( + 'php', + 'echo' + ), false)->handle(); + $I->assertEquals($dispatcher->getTaskName(), 'echo'); + $I->assertEquals($dispatcher->getActionName(), 'main'); + $I->assertEquals($dispatcher->getParams(), []); + $I->assertEquals($dispatcher->getReturnedValue(), 'echoMainAction'); + + $console->setArgument(array( + 'php', + 'main', + 'hello' + ), false)->handle(); + $I->assertEquals($dispatcher->getTaskName(), 'main'); + $I->assertEquals($dispatcher->getActionName(), 'hello'); + $I->assertEquals($dispatcher->getParams(), []); + $I->assertEquals($dispatcher->getReturnedValue(), 'Hello !'); + + $console->setArgument(array( + 'php', + 'main', + 'hello', + 'World', + '######' + ), false)->handle(); + $I->assertEquals($dispatcher->getTaskName(), 'main'); + $I->assertEquals($dispatcher->getActionName(), 'hello'); + $I->assertEquals($dispatcher->getParams(), array('World', '######')); + $I->assertEquals($dispatcher->getReturnedValue(), 'Hello World######'); + } + + public function testArgumentNoShift(CliTester $I) + { + $console = new Console(); + $console->setDI($this->container); + $dispatcher = $console->getDI()->getShared('dispatcher'); + + $console->setArgument([], false, false)->handle(); + $I->assertEquals($dispatcher->getTaskName(), 'main'); + $I->assertEquals($dispatcher->getActionName(), 'main'); + $I->assertEquals($dispatcher->getParams(), []); + $I->assertEquals($dispatcher->getReturnedValue(), 'mainAction'); + + $console->setArgument(array( + 'echo' + ), false, false)->handle(); + $I->assertEquals($dispatcher->getTaskName(), 'echo'); + $I->assertEquals($dispatcher->getActionName(), 'main'); + $I->assertEquals($dispatcher->getParams(), []); + $I->assertEquals($dispatcher->getReturnedValue(), 'echoMainAction'); + + $console->setArgument(array( + 'main', + 'hello' + ), false, false)->handle(); + $I->assertEquals($dispatcher->getTaskName(), 'main'); + $I->assertEquals($dispatcher->getActionName(), 'hello'); + $I->assertEquals($dispatcher->getParams(), []); + $I->assertEquals($dispatcher->getReturnedValue(), 'Hello !'); + + $console->setArgument(array( + 'main', + 'hello', + 'World', + '######' + ), false, false)->handle(); + $I->assertEquals($dispatcher->getTaskName(), 'main'); + $I->assertEquals($dispatcher->getActionName(), 'hello'); + $I->assertEquals($dispatcher->getParams(), array('World', '######')); + $I->assertEquals($dispatcher->getReturnedValue(), 'Hello World######'); + } + + public function shouldThrowExceptionWithUnshiftedArguments(CliTester $I) + { + $I->expectThrowable( + new DispatcherException('Dummy\MainTask handler class cannot be loaded', 2), + function () { + $console = new Console(); + $console->setDI($this->container); + $dispatcher = $console->getDI()->getShared('dispatcher'); + + // testing namespace + $dispatcher->setDefaultNamespace('Dummy\\'); + + $console->setArgument(array( + 'main', + 'hello', + 'World', + '!' + ), false, false); + + $console->handle(); + } + ); + } + + public function shouldThrowExceptionWithArgumentsAsAnArray(CliTester $I) + { + $I->expectThrowable( + new DispatcherException('Dummy\MainTask handler class cannot be loaded', 2), + function () { + $console = new Console(); + $console->setDI($this->container); + $dispatcher = $console->getDI()->getShared('dispatcher'); + + // testing namespace + $dispatcher->setDefaultNamespace('Dummy\\'); + + $console->setArgument(array( + 'php', + 'main', + 'hello', + 'World', + '!' + ), false); + + $console->handle(); + } + ); + } + + /** + * @test + * + * @expectedException \Phalcon\Cli\Dispatcher\Exception + * @expectedExceptionMessage Dummy\MainTask handler class cannot be loaded + */ + public function shouldThrowExceptionWithArguments(CliTester $I) + { + $I->expectThrowable( + new DispatcherException('Dummy\MainTask handler class cannot be loaded', 2), + function () { + $this->container->setShared('router', function () { + $router = new Router(true); + return $router; + }); + + $console = new Console(); + $console->setDI($this->container); + $dispatcher = $console->getDI()->getShared('dispatcher'); + + // testing namespace + $dispatcher->setDefaultNamespace('Dummy\\'); + + $console->setArgument(array( + 'php', + 'main', + 'hello', + 'World', + '!' + )); + + $console->handle(); + } + ); + } + + public function testArgumentRouter(CliTester $I) + { + $this->container->setShared( + 'router', + function () { + $router = new Router(true); + + return $router; + } + ); + + $console = new Console(); + $console->setDI($this->container); + $dispatcher = $console->getDI()->getShared('dispatcher'); + + $console->setArgument(array( + 'php' + ))->handle(); + $I->assertEquals($dispatcher->getTaskName(), 'main'); + $I->assertEquals($dispatcher->getActionName(), 'main'); + $I->assertEquals($dispatcher->getParams(), []); + $I->assertEquals($dispatcher->getReturnedValue(), 'mainAction'); + + $console->setArgument(array( + 'php', + 'echo' + ))->handle(); + $I->assertEquals($dispatcher->getTaskName(), 'echo'); + $I->assertEquals($dispatcher->getActionName(), 'main'); + $I->assertEquals($dispatcher->getParams(), []); + $I->assertEquals($dispatcher->getReturnedValue(), 'echoMainAction'); + + $console->setArgument(array( + 'php', + 'main', + 'hello' + ))->handle(); + $I->assertEquals($dispatcher->getTaskName(), 'main'); + $I->assertEquals($dispatcher->getActionName(), 'hello'); + $I->assertEquals($dispatcher->getParams(), []); + $I->assertEquals($dispatcher->getReturnedValue(), 'Hello !'); + + $console->setArgument(array( + 'php', + 'main', + 'hello', + 'World', + '######' + ))->handle(); + $I->assertEquals($dispatcher->getTaskName(), 'main'); + $I->assertEquals($dispatcher->getActionName(), 'hello'); + $I->assertEquals($dispatcher->getParams(), array('World', '######')); + $I->assertEquals($dispatcher->getReturnedValue(), 'Hello World######'); + } + + public function testArgumentOptions(CliTester $I) + { + $this->container->setShared( + 'router', + function () { + $router = new Router(true); + + return $router; + } + ); + + $console = new Console(); + $console->setDI($this->container); + $dispatcher = $console->getDI()->getShared('dispatcher'); + + $console->setArgument(array( + 'php', + '-opt1', + '--option2', + '--option3=hoge', + 'main', + 'hello', + 'World', + '######' + ))->handle(); + $I->assertEquals($dispatcher->getTaskName(), 'main'); + $I->assertEquals($dispatcher->getActionName(), 'hello'); + $I->assertEquals($dispatcher->getParams(), array('World', '######')); + $I->assertEquals($dispatcher->getReturnedValue(), 'Hello World######'); + $I->assertEquals($dispatcher->getOptions(), array('opt1' => true, 'option2' => true, 'option3' => 'hoge')); + $I->assertTrue($dispatcher->hasOption('opt1')); + $I->assertFalse($dispatcher->hasOption('opt2')); + + $console->setArgument(array( + 'php', + 'main', + '-opt1', + 'hello', + '--option2', + 'World', + '--option3=hoge', + '######' + ))->handle(); + $I->assertEquals($dispatcher->getTaskName(), 'main'); + $I->assertEquals($dispatcher->getActionName(), 'hello'); + $I->assertEquals($dispatcher->getParams(), array('World', '######')); + $I->assertEquals($dispatcher->getReturnedValue(), 'Hello World######'); + $I->assertEquals($dispatcher->getOptions(), array('opt1' => true, 'option2' => true, 'option3' => 'hoge')); + $I->assertEquals($dispatcher->getOption('option3'), 'hoge'); + } +} diff --git a/tests/cli/Cli/Dispatcher/CallActionMethodCest.php b/tests/cli/Cli/Dispatcher/CallActionMethodCest.php new file mode 100644 index 00000000000..55f626ffebd --- /dev/null +++ b/tests/cli/Cli/Dispatcher/CallActionMethodCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class CallActionMethodCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: callActionMethod() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherCallActionMethod(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - callActionMethod()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/DispatchCest.php b/tests/cli/Cli/Dispatcher/DispatchCest.php new file mode 100644 index 00000000000..c7618e16734 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/DispatchCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class DispatchCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: dispatch() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherDispatch(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - dispatch()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/ForwardCest.php b/tests/cli/Cli/Dispatcher/ForwardCest.php new file mode 100644 index 00000000000..d51f9a0bba7 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/ForwardCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class ForwardCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: forward() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherForward(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - forward()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/GetActionNameCest.php b/tests/cli/Cli/Dispatcher/GetActionNameCest.php new file mode 100644 index 00000000000..5f7c4ad0506 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/GetActionNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class GetActionNameCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: getActionName() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherGetActionName(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - getActionName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/GetActionSuffixCest.php b/tests/cli/Cli/Dispatcher/GetActionSuffixCest.php new file mode 100644 index 00000000000..3a891a69393 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/GetActionSuffixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class GetActionSuffixCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: getActionSuffix() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherGetActionSuffix(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - getActionSuffix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/GetActiveMethodCest.php b/tests/cli/Cli/Dispatcher/GetActiveMethodCest.php new file mode 100644 index 00000000000..9ce7945c052 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/GetActiveMethodCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class GetActiveMethodCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: getActiveMethod() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherGetActiveMethod(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - getActiveMethod()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/GetActiveTaskCest.php b/tests/cli/Cli/Dispatcher/GetActiveTaskCest.php new file mode 100644 index 00000000000..36711dc5ee7 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/GetActiveTaskCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class GetActiveTaskCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: getActiveTask() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherGetActiveTask(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - getActiveTask()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/GetBoundModelsCest.php b/tests/cli/Cli/Dispatcher/GetBoundModelsCest.php new file mode 100644 index 00000000000..3f8adf9c64d --- /dev/null +++ b/tests/cli/Cli/Dispatcher/GetBoundModelsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class GetBoundModelsCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: getBoundModels() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherGetBoundModels(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - getBoundModels()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/GetDICest.php b/tests/cli/Cli/Dispatcher/GetDICest.php new file mode 100644 index 00000000000..c3d1149f154 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class GetDICest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: getDI() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherGetDI(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/GetDefaultNamespaceCest.php b/tests/cli/Cli/Dispatcher/GetDefaultNamespaceCest.php new file mode 100644 index 00000000000..69c4a11870b --- /dev/null +++ b/tests/cli/Cli/Dispatcher/GetDefaultNamespaceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class GetDefaultNamespaceCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: getDefaultNamespace() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherGetDefaultNamespace(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - getDefaultNamespace()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/GetEventsManagerCest.php b/tests/cli/Cli/Dispatcher/GetEventsManagerCest.php new file mode 100644 index 00000000000..9517908585f --- /dev/null +++ b/tests/cli/Cli/Dispatcher/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: getEventsManager() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherGetEventsManager(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/GetHandlerClassCest.php b/tests/cli/Cli/Dispatcher/GetHandlerClassCest.php new file mode 100644 index 00000000000..d2d09b0d33c --- /dev/null +++ b/tests/cli/Cli/Dispatcher/GetHandlerClassCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class GetHandlerClassCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: getHandlerClass() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherGetHandlerClass(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - getHandlerClass()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/GetHandlerSuffixCest.php b/tests/cli/Cli/Dispatcher/GetHandlerSuffixCest.php new file mode 100644 index 00000000000..87b4f1616fa --- /dev/null +++ b/tests/cli/Cli/Dispatcher/GetHandlerSuffixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class GetHandlerSuffixCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: getHandlerSuffix() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherGetHandlerSuffix(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - getHandlerSuffix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/GetLastTaskCest.php b/tests/cli/Cli/Dispatcher/GetLastTaskCest.php new file mode 100644 index 00000000000..dd8b0a84092 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/GetLastTaskCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class GetLastTaskCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: getLastTask() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherGetLastTask(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - getLastTask()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/GetModelBinderCest.php b/tests/cli/Cli/Dispatcher/GetModelBinderCest.php new file mode 100644 index 00000000000..dc1b2319c36 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/GetModelBinderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class GetModelBinderCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: getModelBinder() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherGetModelBinder(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - getModelBinder()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/GetModuleNameCest.php b/tests/cli/Cli/Dispatcher/GetModuleNameCest.php new file mode 100644 index 00000000000..643ccddd24e --- /dev/null +++ b/tests/cli/Cli/Dispatcher/GetModuleNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class GetModuleNameCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: getModuleName() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherGetModuleName(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - getModuleName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/GetNamespaceNameCest.php b/tests/cli/Cli/Dispatcher/GetNamespaceNameCest.php new file mode 100644 index 00000000000..fa3dc2fad3f --- /dev/null +++ b/tests/cli/Cli/Dispatcher/GetNamespaceNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class GetNamespaceNameCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: getNamespaceName() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherGetNamespaceName(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - getNamespaceName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/GetOptionCest.php b/tests/cli/Cli/Dispatcher/GetOptionCest.php new file mode 100644 index 00000000000..8f9f91206c0 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/GetOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class GetOptionCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: getOption() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherGetOption(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - getOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/GetOptionsCest.php b/tests/cli/Cli/Dispatcher/GetOptionsCest.php new file mode 100644 index 00000000000..0ee758e9871 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/GetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class GetOptionsCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: getOptions() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherGetOptions(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - getOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/GetParamCest.php b/tests/cli/Cli/Dispatcher/GetParamCest.php new file mode 100644 index 00000000000..0bdaf85d296 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/GetParamCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class GetParamCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: getParam() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherGetParam(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - getParam()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/GetParamsCest.php b/tests/cli/Cli/Dispatcher/GetParamsCest.php new file mode 100644 index 00000000000..9e9f97e07ff --- /dev/null +++ b/tests/cli/Cli/Dispatcher/GetParamsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class GetParamsCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: getParams() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherGetParams(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - getParams()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/GetReturnedValueCest.php b/tests/cli/Cli/Dispatcher/GetReturnedValueCest.php new file mode 100644 index 00000000000..970898c7caa --- /dev/null +++ b/tests/cli/Cli/Dispatcher/GetReturnedValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class GetReturnedValueCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: getReturnedValue() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherGetReturnedValue(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - getReturnedValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/GetTaskNameCest.php b/tests/cli/Cli/Dispatcher/GetTaskNameCest.php new file mode 100644 index 00000000000..eac4d198363 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/GetTaskNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class GetTaskNameCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: getTaskName() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherGetTaskName(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - getTaskName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/GetTaskSuffixCest.php b/tests/cli/Cli/Dispatcher/GetTaskSuffixCest.php new file mode 100644 index 00000000000..a183aac7a87 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/GetTaskSuffixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class GetTaskSuffixCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: getTaskSuffix() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherGetTaskSuffix(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - getTaskSuffix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/HasOptionCest.php b/tests/cli/Cli/Dispatcher/HasOptionCest.php new file mode 100644 index 00000000000..cd8fd2749c2 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/HasOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class HasOptionCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: hasOption() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherHasOption(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - hasOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/HasParamCest.php b/tests/cli/Cli/Dispatcher/HasParamCest.php new file mode 100644 index 00000000000..e11692b0f58 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/HasParamCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class HasParamCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: hasParam() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherHasParam(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - hasParam()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/IsFinishedCest.php b/tests/cli/Cli/Dispatcher/IsFinishedCest.php new file mode 100644 index 00000000000..d5661e90c6f --- /dev/null +++ b/tests/cli/Cli/Dispatcher/IsFinishedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class IsFinishedCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: isFinished() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherIsFinished(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - isFinished()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/SetActionNameCest.php b/tests/cli/Cli/Dispatcher/SetActionNameCest.php new file mode 100644 index 00000000000..1df493a2f8e --- /dev/null +++ b/tests/cli/Cli/Dispatcher/SetActionNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class SetActionNameCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: setActionName() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherSetActionName(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - setActionName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/SetActionSuffixCest.php b/tests/cli/Cli/Dispatcher/SetActionSuffixCest.php new file mode 100644 index 00000000000..609393af3c7 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/SetActionSuffixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class SetActionSuffixCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: setActionSuffix() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherSetActionSuffix(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - setActionSuffix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/SetDICest.php b/tests/cli/Cli/Dispatcher/SetDICest.php new file mode 100644 index 00000000000..5352240f57c --- /dev/null +++ b/tests/cli/Cli/Dispatcher/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class SetDICest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: setDI() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherSetDI(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/SetDefaultActionCest.php b/tests/cli/Cli/Dispatcher/SetDefaultActionCest.php new file mode 100644 index 00000000000..7790d3dc292 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/SetDefaultActionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class SetDefaultActionCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: setDefaultAction() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherSetDefaultAction(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - setDefaultAction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/SetDefaultNamespaceCest.php b/tests/cli/Cli/Dispatcher/SetDefaultNamespaceCest.php new file mode 100644 index 00000000000..65a3206ed96 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/SetDefaultNamespaceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class SetDefaultNamespaceCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: setDefaultNamespace() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherSetDefaultNamespace(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - setDefaultNamespace()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/SetDefaultTaskCest.php b/tests/cli/Cli/Dispatcher/SetDefaultTaskCest.php new file mode 100644 index 00000000000..e3124858466 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/SetDefaultTaskCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class SetDefaultTaskCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: setDefaultTask() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherSetDefaultTask(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - setDefaultTask()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/SetEventsManagerCest.php b/tests/cli/Cli/Dispatcher/SetEventsManagerCest.php new file mode 100644 index 00000000000..05d7eb01dc7 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: setEventsManager() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherSetEventsManager(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/SetHandlerSuffixCest.php b/tests/cli/Cli/Dispatcher/SetHandlerSuffixCest.php new file mode 100644 index 00000000000..acfc3fb4e5f --- /dev/null +++ b/tests/cli/Cli/Dispatcher/SetHandlerSuffixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class SetHandlerSuffixCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: setHandlerSuffix() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherSetHandlerSuffix(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - setHandlerSuffix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/SetModelBinderCest.php b/tests/cli/Cli/Dispatcher/SetModelBinderCest.php new file mode 100644 index 00000000000..17d340c89cf --- /dev/null +++ b/tests/cli/Cli/Dispatcher/SetModelBinderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class SetModelBinderCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: setModelBinder() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherSetModelBinder(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - setModelBinder()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/SetModuleNameCest.php b/tests/cli/Cli/Dispatcher/SetModuleNameCest.php new file mode 100644 index 00000000000..478250cba70 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/SetModuleNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class SetModuleNameCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: setModuleName() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherSetModuleName(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - setModuleName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/SetNamespaceNameCest.php b/tests/cli/Cli/Dispatcher/SetNamespaceNameCest.php new file mode 100644 index 00000000000..4d3e9dc0465 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/SetNamespaceNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class SetNamespaceNameCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: setNamespaceName() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherSetNamespaceName(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - setNamespaceName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/SetOptionsCest.php b/tests/cli/Cli/Dispatcher/SetOptionsCest.php new file mode 100644 index 00000000000..acf5b7669d1 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/SetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class SetOptionsCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: setOptions() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherSetOptions(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - setOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/SetParamCest.php b/tests/cli/Cli/Dispatcher/SetParamCest.php new file mode 100644 index 00000000000..3a4c4532dd9 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/SetParamCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class SetParamCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: setParam() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherSetParam(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - setParam()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/SetParamsCest.php b/tests/cli/Cli/Dispatcher/SetParamsCest.php new file mode 100644 index 00000000000..07f77641701 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/SetParamsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class SetParamsCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: setParams() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherSetParams(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - setParams()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/SetReturnedValueCest.php b/tests/cli/Cli/Dispatcher/SetReturnedValueCest.php new file mode 100644 index 00000000000..f7555f6e750 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/SetReturnedValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class SetReturnedValueCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: setReturnedValue() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherSetReturnedValue(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - setReturnedValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/SetTaskNameCest.php b/tests/cli/Cli/Dispatcher/SetTaskNameCest.php new file mode 100644 index 00000000000..309dc42df33 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/SetTaskNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class SetTaskNameCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: setTaskName() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherSetTaskName(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - setTaskName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/SetTaskSuffixCest.php b/tests/cli/Cli/Dispatcher/SetTaskSuffixCest.php new file mode 100644 index 00000000000..91734c9a5b6 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/SetTaskSuffixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class SetTaskSuffixCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: setTaskSuffix() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherSetTaskSuffix(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - setTaskSuffix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Dispatcher/WasForwardedCest.php b/tests/cli/Cli/Dispatcher/WasForwardedCest.php new file mode 100644 index 00000000000..2570f329353 --- /dev/null +++ b/tests/cli/Cli/Dispatcher/WasForwardedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Dispatcher; + +use CliTester; + +class WasForwardedCest +{ + /** + * Tests Phalcon\Cli\Dispatcher :: wasForwarded() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliDispatcherWasForwarded(CliTester $I) + { + $I->wantToTest("Cli\Dispatcher - wasForwarded()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/DispatcherCest.php b/tests/cli/Cli/DispatcherCest.php new file mode 100644 index 00000000000..48a7bcc37c7 --- /dev/null +++ b/tests/cli/Cli/DispatcherCest.php @@ -0,0 +1,133 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cli; + +use CliTester; +use Phalcon\Cli\Dispatcher; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class DispatcherCest +{ + use DiTrait; + + public function _before(CliTester $I) + { + /** + * @todo Check the loader + */ + require_once dataFolder('fixtures/tasks/EchoTask.php'); + require_once dataFolder('fixtures/tasks/MainTask.php'); + require_once dataFolder('fixtures/tasks/ParamsTask.php'); + + $this->setNewCliFactoryDefault(); + } + + public function testDispatcher(CliTester $I) + { + + $this->container->set( + 'data', + function () { + return "data"; + } + ); + + $dispatcher = new Dispatcher(); + $dispatcher->setDI($this->container); + $dispatcher->dispatch(); + $I->assertEquals($dispatcher->getTaskName(), 'main'); + $I->assertEquals($dispatcher->getActionName(), 'main'); + $I->assertEquals($dispatcher->getParams(), []); + $I->assertEquals($dispatcher->getReturnedValue(), 'mainAction'); + + $dispatcher->setTaskName('echo'); + $dispatcher->dispatch(); + $I->assertEquals($dispatcher->getTaskName(), 'echo'); + $I->assertEquals($dispatcher->getActionName(), 'main'); + $I->assertEquals($dispatcher->getParams(), []); + $I->assertEquals($dispatcher->getReturnedValue(), 'echoMainAction'); + + $dispatcher->setTaskName('main'); + $dispatcher->setActionName('hello'); + $dispatcher->dispatch(); + $I->assertEquals($dispatcher->getTaskName(), 'main'); + $I->assertEquals($dispatcher->getActionName(), 'hello'); + $I->assertEquals($dispatcher->getParams(), []); + $I->assertEquals($dispatcher->getReturnedValue(), 'Hello !'); + + $dispatcher->setActionName('hello'); + $dispatcher->setParams(array('World', '######')); + $dispatcher->dispatch(); + $I->assertEquals($dispatcher->getTaskName(), 'main'); + $I->assertEquals($dispatcher->getActionName(), 'hello'); + $I->assertEquals($dispatcher->getParams(), array('World', '######')); + $I->assertEquals($dispatcher->getReturnedValue(), 'Hello World######'); + + $dispatcher->setActionName('hello'); + $dispatcher->setParams(array('hello' => 'World', 'goodbye' => 'Everybody')); + $dispatcher->dispatch(); + $I->assertTrue($dispatcher->hasParam('hello')); + $I->assertTrue($dispatcher->hasParam('goodbye')); + $I->assertFalse($dispatcher->hasParam('salutations')); + + // testing namespace + try { + $dispatcher->setDefaultNamespace('Dummy\\'); + $dispatcher->setTaskName('main'); + $dispatcher->setActionName('hello'); + $dispatcher->setParams(array('World')); + $dispatcher->dispatch(); + $I->assertEquals($dispatcher->getTaskName(), 'main'); + $I->assertEquals($dispatcher->getActionName(), 'hello'); + $I->assertEquals($dispatcher->getParams(), array('World')); + $I->assertEquals($dispatcher->getReturnedValue(), 'Hello World!'); + } catch (\Exception $e) { + $I->assertEquals($e->getMessage(), 'Dummy\MainTask handler class cannot be loaded'); + } + } + + public function testCliParameters(CliTester $I) + { + $dispatcher = new Dispatcher(); + + $this->container->setShared("dispatcher", $dispatcher); + $dispatcher->setDI($this->container); + + // Test $this->dispatcher->getParams() + $dispatcher->setTaskName('params'); + $dispatcher->setActionName('params'); + $dispatcher->setParams(array('This', 'Is', 'An', 'Example')); + $dispatcher->dispatch(); + $I->assertEquals($dispatcher->getReturnedValue(), '$params is the same as $this->dispatcher->getParams()'); + + // Test $this->dispatcher->getParam() + $dispatcher->setTaskName('params'); + $dispatcher->setActionName('param'); + $dispatcher->setParams(array('This', 'Is', 'An', 'Example')); + $dispatcher->dispatch(); + $I->assertEquals($dispatcher->getReturnedValue(), '$param[0] is the same as $this->dispatcher->getParam(0)'); + } + + public function testCallActionMethod(CliTester $I) + { + $dispatcher = new Dispatcher(); + $this->container->setShared("dispatcher", $dispatcher); + $dispatcher->setDI($this->container); + + $mainTask = new \MainTask(); + $mainTask->setDI($this->container); + + $I->assertEquals($dispatcher->callActionMethod($mainTask, 'mainAction', []), 'mainAction'); + $I->assertEquals($dispatcher->callActionMethod($mainTask, 'helloAction', ['World']), 'Hello World!'); + $I->assertEquals($dispatcher->callActionMethod($mainTask, 'helloAction', ['World', '.']), 'Hello World.'); + } +} diff --git a/tests/cli/Cli/Router/AddCest.php b/tests/cli/Cli/Router/AddCest.php new file mode 100644 index 00000000000..47a2468ce0e --- /dev/null +++ b/tests/cli/Cli/Router/AddCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router; + +use CliTester; + +class AddCest +{ + /** + * Tests Phalcon\Cli\Router :: add() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterAdd(CliTester $I) + { + $I->wantToTest("Cli\Router - add()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/ConstructCest.php b/tests/cli/Cli/Router/ConstructCest.php new file mode 100644 index 00000000000..37c8efe9b74 --- /dev/null +++ b/tests/cli/Cli/Router/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router; + +use CliTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Cli\Router :: __construct() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterConstruct(CliTester $I) + { + $I->wantToTest("Cli\Router - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/GetActionNameCest.php b/tests/cli/Cli/Router/GetActionNameCest.php new file mode 100644 index 00000000000..67978813391 --- /dev/null +++ b/tests/cli/Cli/Router/GetActionNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router; + +use CliTester; + +class GetActionNameCest +{ + /** + * Tests Phalcon\Cli\Router :: getActionName() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterGetActionName(CliTester $I) + { + $I->wantToTest("Cli\Router - getActionName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/GetDICest.php b/tests/cli/Cli/Router/GetDICest.php new file mode 100644 index 00000000000..a73d4cc3dd4 --- /dev/null +++ b/tests/cli/Cli/Router/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router; + +use CliTester; + +class GetDICest +{ + /** + * Tests Phalcon\Cli\Router :: getDI() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterGetDI(CliTester $I) + { + $I->wantToTest("Cli\Router - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/GetMatchedRouteCest.php b/tests/cli/Cli/Router/GetMatchedRouteCest.php new file mode 100644 index 00000000000..9ddc7d713b4 --- /dev/null +++ b/tests/cli/Cli/Router/GetMatchedRouteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router; + +use CliTester; + +class GetMatchedRouteCest +{ + /** + * Tests Phalcon\Cli\Router :: getMatchedRoute() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterGetMatchedRoute(CliTester $I) + { + $I->wantToTest("Cli\Router - getMatchedRoute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/GetMatchesCest.php b/tests/cli/Cli/Router/GetMatchesCest.php new file mode 100644 index 00000000000..46a4b3044af --- /dev/null +++ b/tests/cli/Cli/Router/GetMatchesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router; + +use CliTester; + +class GetMatchesCest +{ + /** + * Tests Phalcon\Cli\Router :: getMatches() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterGetMatches(CliTester $I) + { + $I->wantToTest("Cli\Router - getMatches()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/GetModuleNameCest.php b/tests/cli/Cli/Router/GetModuleNameCest.php new file mode 100644 index 00000000000..9dcdc33aa9c --- /dev/null +++ b/tests/cli/Cli/Router/GetModuleNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router; + +use CliTester; + +class GetModuleNameCest +{ + /** + * Tests Phalcon\Cli\Router :: getModuleName() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterGetModuleName(CliTester $I) + { + $I->wantToTest("Cli\Router - getModuleName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/GetParamsCest.php b/tests/cli/Cli/Router/GetParamsCest.php new file mode 100644 index 00000000000..f606380f4ba --- /dev/null +++ b/tests/cli/Cli/Router/GetParamsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router; + +use CliTester; + +class GetParamsCest +{ + /** + * Tests Phalcon\Cli\Router :: getParams() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterGetParams(CliTester $I) + { + $I->wantToTest("Cli\Router - getParams()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/GetRouteByIdCest.php b/tests/cli/Cli/Router/GetRouteByIdCest.php new file mode 100644 index 00000000000..f2877d89e26 --- /dev/null +++ b/tests/cli/Cli/Router/GetRouteByIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router; + +use CliTester; + +class GetRouteByIdCest +{ + /** + * Tests Phalcon\Cli\Router :: getRouteById() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterGetRouteById(CliTester $I) + { + $I->wantToTest("Cli\Router - getRouteById()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/GetRouteByNameCest.php b/tests/cli/Cli/Router/GetRouteByNameCest.php new file mode 100644 index 00000000000..1e121088831 --- /dev/null +++ b/tests/cli/Cli/Router/GetRouteByNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router; + +use CliTester; + +class GetRouteByNameCest +{ + /** + * Tests Phalcon\Cli\Router :: getRouteByName() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterGetRouteByName(CliTester $I) + { + $I->wantToTest("Cli\Router - getRouteByName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/GetRoutesCest.php b/tests/cli/Cli/Router/GetRoutesCest.php new file mode 100644 index 00000000000..ec19c303564 --- /dev/null +++ b/tests/cli/Cli/Router/GetRoutesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router; + +use CliTester; + +class GetRoutesCest +{ + /** + * Tests Phalcon\Cli\Router :: getRoutes() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterGetRoutes(CliTester $I) + { + $I->wantToTest("Cli\Router - getRoutes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/GetTaskNameCest.php b/tests/cli/Cli/Router/GetTaskNameCest.php new file mode 100644 index 00000000000..60ba5d1fefa --- /dev/null +++ b/tests/cli/Cli/Router/GetTaskNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router; + +use CliTester; + +class GetTaskNameCest +{ + /** + * Tests Phalcon\Cli\Router :: getTaskName() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterGetTaskName(CliTester $I) + { + $I->wantToTest("Cli\Router - getTaskName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/HandleCest.php b/tests/cli/Cli/Router/HandleCest.php new file mode 100644 index 00000000000..b0941c40cbd --- /dev/null +++ b/tests/cli/Cli/Router/HandleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router; + +use CliTester; + +class HandleCest +{ + /** + * Tests Phalcon\Cli\Router :: handle() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterHandle(CliTester $I) + { + $I->wantToTest("Cli\Router - handle()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/Route/BeforeMatchCest.php b/tests/cli/Cli/Router/Route/BeforeMatchCest.php new file mode 100644 index 00000000000..0c9b11b7dd9 --- /dev/null +++ b/tests/cli/Cli/Router/Route/BeforeMatchCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router\Route; + +use CliTester; + +class BeforeMatchCest +{ + /** + * Tests Phalcon\Cli\Router\Route :: beforeMatch() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterRouteBeforeMatch(CliTester $I) + { + $I->wantToTest("Cli\Router\Route - beforeMatch()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/Route/CompilePatternCest.php b/tests/cli/Cli/Router/Route/CompilePatternCest.php new file mode 100644 index 00000000000..5fd56f9eb8c --- /dev/null +++ b/tests/cli/Cli/Router/Route/CompilePatternCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router\Route; + +use CliTester; + +class CompilePatternCest +{ + /** + * Tests Phalcon\Cli\Router\Route :: compilePattern() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterRouteCompilePattern(CliTester $I) + { + $I->wantToTest("Cli\Router\Route - compilePattern()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/Route/ConstructCest.php b/tests/cli/Cli/Router/Route/ConstructCest.php new file mode 100644 index 00000000000..40fa297e7cf --- /dev/null +++ b/tests/cli/Cli/Router/Route/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router\Route; + +use CliTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Cli\Router\Route :: __construct() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterRouteConstruct(CliTester $I) + { + $I->wantToTest("Cli\Router\Route - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/Route/ConvertCest.php b/tests/cli/Cli/Router/Route/ConvertCest.php new file mode 100644 index 00000000000..75985af5253 --- /dev/null +++ b/tests/cli/Cli/Router/Route/ConvertCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router\Route; + +use CliTester; + +class ConvertCest +{ + /** + * Tests Phalcon\Cli\Router\Route :: convert() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterRouteConvert(CliTester $I) + { + $I->wantToTest("Cli\Router\Route - convert()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/Route/DelimiterCest.php b/tests/cli/Cli/Router/Route/DelimiterCest.php new file mode 100644 index 00000000000..b2f59afb363 --- /dev/null +++ b/tests/cli/Cli/Router/Route/DelimiterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router\Route; + +use CliTester; + +class DelimiterCest +{ + /** + * Tests Phalcon\Cli\Router\Route :: delimiter() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterRouteDelimiter(CliTester $I) + { + $I->wantToTest("Cli\Router\Route - delimiter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/Route/ExtractNamedParamsCest.php b/tests/cli/Cli/Router/Route/ExtractNamedParamsCest.php new file mode 100644 index 00000000000..374212e8f6b --- /dev/null +++ b/tests/cli/Cli/Router/Route/ExtractNamedParamsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router\Route; + +use CliTester; + +class ExtractNamedParamsCest +{ + /** + * Tests Phalcon\Cli\Router\Route :: extractNamedParams() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterRouteExtractNamedParams(CliTester $I) + { + $I->wantToTest("Cli\Router\Route - extractNamedParams()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/Route/GetBeforeMatchCest.php b/tests/cli/Cli/Router/Route/GetBeforeMatchCest.php new file mode 100644 index 00000000000..bddf12201a2 --- /dev/null +++ b/tests/cli/Cli/Router/Route/GetBeforeMatchCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router\Route; + +use CliTester; + +class GetBeforeMatchCest +{ + /** + * Tests Phalcon\Cli\Router\Route :: getBeforeMatch() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterRouteGetBeforeMatch(CliTester $I) + { + $I->wantToTest("Cli\Router\Route - getBeforeMatch()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/Route/GetCompiledPatternCest.php b/tests/cli/Cli/Router/Route/GetCompiledPatternCest.php new file mode 100644 index 00000000000..5ea1a5c7c24 --- /dev/null +++ b/tests/cli/Cli/Router/Route/GetCompiledPatternCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router\Route; + +use CliTester; + +class GetCompiledPatternCest +{ + /** + * Tests Phalcon\Cli\Router\Route :: getCompiledPattern() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterRouteGetCompiledPattern(CliTester $I) + { + $I->wantToTest("Cli\Router\Route - getCompiledPattern()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/Route/GetConvertersCest.php b/tests/cli/Cli/Router/Route/GetConvertersCest.php new file mode 100644 index 00000000000..5a5228025cd --- /dev/null +++ b/tests/cli/Cli/Router/Route/GetConvertersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router\Route; + +use CliTester; + +class GetConvertersCest +{ + /** + * Tests Phalcon\Cli\Router\Route :: getConverters() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterRouteGetConverters(CliTester $I) + { + $I->wantToTest("Cli\Router\Route - getConverters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/Route/GetDelimiterCest.php b/tests/cli/Cli/Router/Route/GetDelimiterCest.php new file mode 100644 index 00000000000..8673e3614c8 --- /dev/null +++ b/tests/cli/Cli/Router/Route/GetDelimiterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router\Route; + +use CliTester; + +class GetDelimiterCest +{ + /** + * Tests Phalcon\Cli\Router\Route :: getDelimiter() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterRouteGetDelimiter(CliTester $I) + { + $I->wantToTest("Cli\Router\Route - getDelimiter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/Route/GetNameCest.php b/tests/cli/Cli/Router/Route/GetNameCest.php new file mode 100644 index 00000000000..f230f6bce89 --- /dev/null +++ b/tests/cli/Cli/Router/Route/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router\Route; + +use CliTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Cli\Router\Route :: getName() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterRouteGetName(CliTester $I) + { + $I->wantToTest("Cli\Router\Route - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/Route/GetPathsCest.php b/tests/cli/Cli/Router/Route/GetPathsCest.php new file mode 100644 index 00000000000..7b16703f6ad --- /dev/null +++ b/tests/cli/Cli/Router/Route/GetPathsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router\Route; + +use CliTester; + +class GetPathsCest +{ + /** + * Tests Phalcon\Cli\Router\Route :: getPaths() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterRouteGetPaths(CliTester $I) + { + $I->wantToTest("Cli\Router\Route - getPaths()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/Route/GetPatternCest.php b/tests/cli/Cli/Router/Route/GetPatternCest.php new file mode 100644 index 00000000000..5f4160074e4 --- /dev/null +++ b/tests/cli/Cli/Router/Route/GetPatternCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router\Route; + +use CliTester; + +class GetPatternCest +{ + /** + * Tests Phalcon\Cli\Router\Route :: getPattern() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterRouteGetPattern(CliTester $I) + { + $I->wantToTest("Cli\Router\Route - getPattern()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/Route/GetReversedPathsCest.php b/tests/cli/Cli/Router/Route/GetReversedPathsCest.php new file mode 100644 index 00000000000..e957be378c1 --- /dev/null +++ b/tests/cli/Cli/Router/Route/GetReversedPathsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router\Route; + +use CliTester; + +class GetReversedPathsCest +{ + /** + * Tests Phalcon\Cli\Router\Route :: getReversedPaths() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterRouteGetReversedPaths(CliTester $I) + { + $I->wantToTest("Cli\Router\Route - getReversedPaths()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/Route/GetRouteIdCest.php b/tests/cli/Cli/Router/Route/GetRouteIdCest.php new file mode 100644 index 00000000000..8db71a570d3 --- /dev/null +++ b/tests/cli/Cli/Router/Route/GetRouteIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router\Route; + +use CliTester; + +class GetRouteIdCest +{ + /** + * Tests Phalcon\Cli\Router\Route :: getRouteId() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterRouteGetRouteId(CliTester $I) + { + $I->wantToTest("Cli\Router\Route - getRouteId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/Route/ReConfigureCest.php b/tests/cli/Cli/Router/Route/ReConfigureCest.php new file mode 100644 index 00000000000..9ea95213917 --- /dev/null +++ b/tests/cli/Cli/Router/Route/ReConfigureCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router\Route; + +use CliTester; + +class ReConfigureCest +{ + /** + * Tests Phalcon\Cli\Router\Route :: reConfigure() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterRouteReConfigure(CliTester $I) + { + $I->wantToTest("Cli\Router\Route - reConfigure()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/Route/ResetCest.php b/tests/cli/Cli/Router/Route/ResetCest.php new file mode 100644 index 00000000000..c9a11148565 --- /dev/null +++ b/tests/cli/Cli/Router/Route/ResetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router\Route; + +use CliTester; + +class ResetCest +{ + /** + * Tests Phalcon\Cli\Router\Route :: reset() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterRouteReset(CliTester $I) + { + $I->wantToTest("Cli\Router\Route - reset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/Route/SetNameCest.php b/tests/cli/Cli/Router/Route/SetNameCest.php new file mode 100644 index 00000000000..90aeecf44d3 --- /dev/null +++ b/tests/cli/Cli/Router/Route/SetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router\Route; + +use CliTester; + +class SetNameCest +{ + /** + * Tests Phalcon\Cli\Router\Route :: setName() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterRouteSetName(CliTester $I) + { + $I->wantToTest("Cli\Router\Route - setName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/SetDICest.php b/tests/cli/Cli/Router/SetDICest.php new file mode 100644 index 00000000000..835d0f1df44 --- /dev/null +++ b/tests/cli/Cli/Router/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router; + +use CliTester; + +class SetDICest +{ + /** + * Tests Phalcon\Cli\Router :: setDI() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterSetDI(CliTester $I) + { + $I->wantToTest("Cli\Router - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/SetDefaultActionCest.php b/tests/cli/Cli/Router/SetDefaultActionCest.php new file mode 100644 index 00000000000..8f26dfc8459 --- /dev/null +++ b/tests/cli/Cli/Router/SetDefaultActionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router; + +use CliTester; + +class SetDefaultActionCest +{ + /** + * Tests Phalcon\Cli\Router :: setDefaultAction() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterSetDefaultAction(CliTester $I) + { + $I->wantToTest("Cli\Router - setDefaultAction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/SetDefaultModuleCest.php b/tests/cli/Cli/Router/SetDefaultModuleCest.php new file mode 100644 index 00000000000..61400849026 --- /dev/null +++ b/tests/cli/Cli/Router/SetDefaultModuleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router; + +use CliTester; + +class SetDefaultModuleCest +{ + /** + * Tests Phalcon\Cli\Router :: setDefaultModule() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterSetDefaultModule(CliTester $I) + { + $I->wantToTest("Cli\Router - setDefaultModule()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/SetDefaultTaskCest.php b/tests/cli/Cli/Router/SetDefaultTaskCest.php new file mode 100644 index 00000000000..9bf0c1d5178 --- /dev/null +++ b/tests/cli/Cli/Router/SetDefaultTaskCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router; + +use CliTester; + +class SetDefaultTaskCest +{ + /** + * Tests Phalcon\Cli\Router :: setDefaultTask() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterSetDefaultTask(CliTester $I) + { + $I->wantToTest("Cli\Router - setDefaultTask()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/SetDefaultsCest.php b/tests/cli/Cli/Router/SetDefaultsCest.php new file mode 100644 index 00000000000..4928c54416b --- /dev/null +++ b/tests/cli/Cli/Router/SetDefaultsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router; + +use CliTester; + +class SetDefaultsCest +{ + /** + * Tests Phalcon\Cli\Router :: setDefaults() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterSetDefaults(CliTester $I) + { + $I->wantToTest("Cli\Router - setDefaults()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Router/WasMatchedCest.php b/tests/cli/Cli/Router/WasMatchedCest.php new file mode 100644 index 00000000000..0d3017a20c2 --- /dev/null +++ b/tests/cli/Cli/Router/WasMatchedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Router; + +use CliTester; + +class WasMatchedCest +{ + /** + * Tests Phalcon\Cli\Router :: wasMatched() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliRouterWasMatched(CliTester $I) + { + $I->wantToTest("Cli\Router - wasMatched()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/RouterCest.php b/tests/cli/Cli/RouterCest.php new file mode 100644 index 00000000000..46aad79e58d --- /dev/null +++ b/tests/cli/Cli/RouterCest.php @@ -0,0 +1,758 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cli; + +use CliTester; +use Phalcon\Cli\Router; +use Phalcon\Cli\Router\Route; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class RouterCest +{ + use DiTrait; + + public function _before(CliTester $I) + { + $this->setNewCliFactoryDefault(); + } + + public function testRouters(CliTester $I) + { + $this->container->set( + "data", + function () { + return "data"; + } + ); + $router = new Router(); + $router->handle([]); + $I->assertNull($router->getModuleName()); + $I->assertNull($router->getTaskName()); + $I->assertNull($router->getActionName()); + $I->assertEquals($router->getParams(), []); + $router->handle( + [ + "task" => "main", + ] + ); + $I->assertNull($router->getModuleName()); + $I->assertEquals($router->getTaskName(), "main"); + $I->assertNull($router->getActionName()); + $I->assertEquals($router->getParams(), []); + $router->handle( + [ + "task" => "echo", + ] + ); + $I->assertNull($router->getModuleName()); + $I->assertEquals($router->getTaskName(), "echo"); + $I->assertNull($router->getActionName()); + $I->assertEquals($router->getParams(), []); + $router->handle( + [ + "task" => "main", + "action" => "hello", + ] + ); + $I->assertNull($router->getModuleName()); + $I->assertEquals($router->getTaskName(), "main"); + $I->assertEquals($router->getActionName(), "hello"); + $I->assertEquals($router->getParams(), []); + $router->handle( + [ + "task" => "main", + "action" => "hello", + "arg1", + "arg2", + ] + ); + $I->assertNull($router->getModuleName()); + $I->assertEquals($router->getTaskName(), "main"); + $I->assertEquals($router->getActionName(), "hello"); + $I->assertEquals($router->getParams(), ["arg1", "arg2"]); + $router->handle( + [ + "module" => "devtools", + "task" => "main", + "action" => "hello", + "arg1", + "arg2", + ] + ); + $I->assertEquals($router->getModuleName(), "devtools"); + $I->assertEquals($router->getTaskName(), "main"); + $I->assertEquals($router->getActionName(), "hello"); + $I->assertEquals($router->getParams(), ["arg1", "arg2"]); + $router->handle( + [ + "module" => "devtools", + "task" => "echo", + "action" => "hello", + "arg1", + "arg2", + ] + ); + $I->assertEquals($router->getModuleName(), "devtools"); + $I->assertEquals($router->getTaskName(), "echo"); + $I->assertEquals($router->getActionName(), "hello"); + $I->assertEquals($router->getParams(), ["arg1", "arg2"]); + } + + public function testRouter(CliTester $I) + { + $examples = $this->getExamplesRouter(); + foreach ($examples as $example) { + $test = $example[0]; + Route::reset(); + $router = new Router(); + $router->add(' ', [ + 'module' => 'devtools', + 'task' => 'main', + 'action' => 'hello', + ]); + $router->add('system :task a :action :params', [ + 'task' => 1, + 'action' => 2, + 'params' => 3, + ]); + $router->add('([a-z]{2}) :task', [ + 'task' => 2, + 'action' => 'index', + 'language' => 1 + ]); + $router->add('admin :task :action :int', [ + 'module' => 'admin', + 'task' => 1, + 'action' => 2, + 'id' => 3 + ]); + $router->add('posts ([0-9]{4}) ([0-9]{2}) ([0-9]{2}) :params', [ + 'task' => 'posts', + 'action' => 'show', + 'year' => 1, + 'month' => 2, + 'day' => 3, + 'params' => 4, + ]); + $router->add('manual ([a-z]{2}) ([a-z\.]+)\.txt', [ + 'task' => 'manual', + 'action' => 'show', + 'language' => 1, + 'file' => 2 + ]); + $router->add('named-manual {language:([a-z]{2})} {file:[a-z\.]+}\.txt', [ + 'task' => 'manual', + 'action' => 'show', + ]); + $router->add('very static route', [ + 'task' => 'static', + 'action' => 'route' + ]); + $router->add("feed {lang:[a-z]+} blog {blog:[a-z\-]+}\.{type:[a-z\-]+}", "Feed::get"); + $router->add("posts {year:[0-9]+} s {title:[a-z\-]+}", "Posts::show"); + $router->add("posts delete {id}", "Posts::delete"); + $router->add("show {id:video([0-9]+)} {title:[a-z\-]+}", "Videos::show"); + $this->runTests($I, $router, $test); + } + } + + public function testRouterParams(CliTester $I) + { + $examples = $this->getExamplesRouterParams(); + foreach ($examples as $example) { + $test = $example[0]; + $router = new Router(); + $router->add('some {name}'); + $router->add('some {name} {id:[0-9]+}'); + $router->add('some {name} {id:[0-9]+} {date}'); + $this->runTests($I, $router, $test); + } + } + + public function testNamedRoutes(CliTester $I) + { + Route::reset(); + $router = new Router(false); + $usersFind = $router->add('api users find')->setName('usersFind'); + $usersAdd = $router->add('api users add')->setName('usersAdd'); + $I->assertEquals($usersAdd, $router->getRouteByName('usersAdd')); + $I->assertEquals($usersAdd, $router->getRouteByName('usersAdd')); + $I->assertEquals($usersFind, $router->getRouteById(0)); + } + + public function testConverters(CliTester $I) + { + $examples = $this->getExamplesConverters(); + foreach ($examples as $example) { + $route = $example['route']; + $paths = $example['paths']; + Route::reset(); + $router = new Router(); + $router + ->add('{task:[a-z\-]+} {action:[a-z\-]+} this-is-a-country') + ->convert( + 'task', + function ($task) { + return str_replace('-', '', $task); + } + ) + ->convert( + 'action', + function ($action) { + return str_replace('-', '', $action); + } + ); + + $router + ->add( + '([A-Z]+) ([0-9]+)', + [ + 'task' => 1, + 'action' => 'default', + 'id' => 2, + ] + ) + ->convert( + 'task', + function ($task) { + return strtolower($task); + } + ) + ->convert( + 'action', + function ($action) { + if ($action == 'default') { + return 'index'; + } + + return $action; + } + ) + ->convert( + 'id', + function ($id) { + return strrev($id); + } + ); + $router->handle($route); + $I->assertTrue($router->wasMatched()); + $I->assertEquals($paths['task'], $router->getTaskName()); + $I->assertEquals($paths['action'], $router->getActionName()); + } + } + + public function testShortPaths(CliTester $I) + { + Route::reset(); + $router = new Router(false); + $route = $router->add("route0", "Feed"); + $I->assertEquals($route->getPaths(), [ + 'task' => 'feed' + ]); + $route = $router->add("route1", "Feed::get"); + $I->assertEquals($route->getPaths(), [ + 'task' => 'feed', + 'action' => 'get', + ]); + $route = $router->add("route2", "News::Posts::show"); + $I->assertEquals($route->getPaths(), [ + 'module' => 'News', + 'task' => 'posts', + 'action' => 'show', + ]); + $route = $router->add("route3", "MyApp\\Tasks\\Posts::show"); + $I->assertEquals($route->getPaths(), [ + 'namespace' => 'MyApp\\Tasks', + 'task' => 'posts', + 'action' => 'show', + ]); + $route = $router->add("route3", "MyApp\\Tasks\\::show"); + $I->assertEquals($route->getPaths(), [ + 'task' => '', + 'action' => 'show', + ]); + $route = $router->add("route3", "News::MyApp\\Tasks\\Posts::show"); + $I->assertEquals($route->getPaths(), [ + 'module' => 'News', + 'namespace' => 'MyApp\\Tasks', + 'task' => 'posts', + 'action' => 'show', + ]); + $route = $router->add("route3", "\\Posts::show"); + $I->assertEquals($route->getPaths(), [ + 'task' => 'posts', + 'action' => 'show', + ]); + } + + public function testBeforeMatch(CliTester $I) + { + Route::reset(); + $trace = 0; + $router = new Router(false); + $router + ->add('static route') + ->beforeMatch(function () use (&$trace) { + $trace++; + return false; + }); + $router + ->add('static route2') + ->beforeMatch(function () use (&$trace) { + $trace++; + return true; + }); + $router->handle(); + $I->assertFalse($router->wasMatched()); + $router->handle('static route'); + $I->assertFalse($router->wasMatched()); + $router->handle('static route2'); + $I->assertTrue($router->wasMatched()); + $I->assertEquals($trace, 2); + } + + public function testDelimiter(CliTester $I) + { + $examples = $this->getExamplesDelimiter(); + foreach ($examples as $example) { + $test = $example[0]; + Route::reset(); + Route::delimiter('/'); + $router = new Router(); + $router->add('/', [ + 'module' => 'devtools', + 'task' => 'main', + 'action' => 'hello', + ]); + $router->add('/system/:task/a/:action/:params', [ + 'task' => 1, + 'action' => 2, + 'params' => 3, + ]); + $router->add('/([a-z]{2})/:task', [ + 'task' => 2, + 'action' => 'index', + 'language' => 1 + ]); + $router->add('/admin/:task/:action/:int', [ + 'module' => 'admin', + 'task' => 1, + 'action' => 2, + 'id' => 3 + ]); + $router->add('/posts/([0-9]{4})/([0-9]{2})/([0-9]{2})/:params', [ + 'task' => 'posts', + 'action' => 'show', + 'year' => 1, + 'month' => 2, + 'day' => 3, + 'params' => 4, + ]); + $router->add('/manual/([a-z]{2})/([a-z\.]+)\.txt', [ + 'task' => 'manual', + 'action' => 'show', + 'language' => 1, + 'file' => 2 + ]); + $router->add('/named-manual/{language:([a-z]{2})}/{file:[a-z\.]+}\.txt', [ + 'task' => 'manual', + 'action' => 'show', + ]); + $router->add('/very/static/route', [ + 'task' => 'static', + 'action' => 'route' + ]); + $router->add("/feed/{lang:[a-z]+}/blog/{blog:[a-z\-]+}\.{type:[a-z\-]+}", "Feed::get"); + $router->add("/posts/{year:[0-9]+}/s/{title:[a-z\-]+}", "Posts::show"); + $router->add("/posts/delete/{id}", "Posts::delete"); + $router->add("/show/{id:video([0-9]+)}/{title:[a-z\-]+}", "Videos::show"); + + $this->runTests($I, $router, $test); + } + } + + private function getExamplesRouter(): array + { + return [ + [ + [ + 'uri' => '', + 'module' => null, + 'task' => null, + 'action' => null, + 'params' => [] + ] + ], + [ + [ + 'uri' => ' ', + 'module' => 'devtools', + 'task' => 'main', + 'action' => 'hello', + 'params' => [] + ] + ], + [ + [ + 'uri' => 'documentation index hellao aaadpqñda bbbAdld cc-ccc', + 'module' => null, + 'task' => 'documentation', + 'action' => 'index', + 'params' => ['hellao', 'aaadpqñda', 'bbbAdld', 'cc-ccc'] + ] + ], + [ + [ + 'uri' => ' documentation index', + 'module' => null, + 'task' => 'documentation', + 'action' => 'index', + 'params' => [] + ] + ], + [ + [ + 'uri' => 'documentation index ', + 'module' => null, + 'task' => 'documentation', + 'action' => 'index', + 'params' => [] + ] + ], + [ + [ + 'uri' => 'documentation index', + 'module' => null, + 'task' => 'documentation', + 'action' => 'index', + 'params' => [] + ] + ], + [ + [ + 'uri' => 'documentation ', + 'module' => null, + 'task' => 'documentation', + 'action' => null, + 'params' => [] + ] + ], + [ + [ + 'uri' => 'system admin a edit hellao aaadp', + 'module' => null, + 'task' => 'admin', + 'action' => 'edit', + 'params' => ['hellao', 'aaadp'] + ] + ], + [ + [ + 'uri' => 'es news', + 'module' => null, + 'task' => 'news', + 'action' => 'index', + 'params' => ['language' => 'es'] + ] + ], + [ + [ + 'uri' => 'admin posts edit 100', + 'module' => 'admin', + 'task' => 'posts', + 'action' => 'edit', + 'params' => ['id' => 100] + ] + ], + [ + [ + 'uri' => 'posts 2010 02 10 title content', + 'module' => null, + 'task' => 'posts', + 'action' => 'show', + 'params' => [ + 'year' => '2010', + 'month' => '02', + 'day' => '10', + 0 => 'title', + 1 => 'content', + ] + ] + ], + [ + [ + 'uri' => 'manual en translate.adapter.txt', + 'module' => null, + 'task' => 'manual', + 'action' => 'show', + 'params' => ['language' => 'en', 'file' => 'translate.adapter'] + ] + ], + [ + [ + 'uri' => 'named-manual en translate.adapter.txt', + 'module' => null, + 'task' => 'manual', + 'action' => 'show', + 'params' => ['language' => 'en', 'file' => 'translate.adapter'] + ] + ], + [ + [ + 'uri' => 'posts 1999 s le-nice-title', + 'module' => null, + 'task' => 'posts', + 'action' => 'show', + 'params' => ['year' => '1999', 'title' => 'le-nice-title'] + ] + ], + [ + [ + 'uri' => 'feed fr blog diaporema.json', + 'module' => null, + 'task' => 'feed', + 'action' => 'get', + 'params' => ['lang' => 'fr', 'blog' => 'diaporema', 'type' => 'json'] + ] + ], + [ + [ + 'uri' => 'posts delete 150', + 'module' => null, + 'task' => 'posts', + 'action' => 'delete', + 'params' => ['id' => '150'] + ] + ], + [ + [ + 'uri' => 'very static route', + 'module' => null, + 'task' => 'static', + 'action' => 'route', + 'params' => [] + ] + ], + ]; + } + + private function getExamplesRouterParams(): array + { + return [ + [ + [ + 'uri' => 'some hattie', + 'module' => null, + 'task' => '', + 'action' => '', + 'params' => ['name' => 'hattie'] + ] + ], + [ + [ + 'uri' => 'some hattie 100', + 'module' => null, + 'task' => '', + 'action' => '', + 'params' => ['name' => 'hattie', 'id' => 100] + ] + ], + [ + [ + 'uri' => 'some hattie 100 2011-01-02', + 'module' => null, + 'task' => '', + 'action' => '', + 'params' => ['name' => 'hattie', 'id' => 100, 'date' => '2011-01-02'] + ] + ], + ]; + } + + private function getExamplesConverters(): array + { + return [ + [ + "route" => 'some-controller my-action-name this-is-a-country', + "paths" => [ + 'task' => 'somecontroller', + 'action' => 'myactionname', + 'params' => ['this-is-a-country'] + ] + ], + [ + "route" => 'BINARY 1101', + "paths" => [ + 'task' => 'binary', + 'action' => 'index', + 'params' => [1011] + ] + ], + ]; + } + + private function getExamplesDelimiter(): array + { + return [ + [ + [ + 'uri' => '/', + 'module' => 'devtools', + 'task' => 'main', + 'action' => 'hello', + 'params' => [] + ] + ], + [ + [ + 'uri' => '/documentation/index/hellao/aaadpqñda/bbbAdld/cc-ccc', + 'module' => null, + 'task' => 'documentation', + 'action' => 'index', + 'params' => ['hellao', 'aaadpqñda', 'bbbAdld', 'cc-ccc'] + ] + ], + [ + [ + 'uri' => '/documentation/index/', + 'module' => null, + 'task' => 'documentation', + 'action' => 'index', + 'params' => [] + ] + ], + [ + [ + 'uri' => '/documentation/index', + 'module' => null, + 'task' => 'documentation', + 'action' => 'index', + 'params' => [] + ] + ], + [ + [ + 'uri' => '/documentation/', + 'module' => null, + 'task' => 'documentation', + 'action' => null, + 'params' => [] + ] + ], + [ + [ + 'uri' => '/system/admin/a/edit/hellao/aaadp', + 'module' => null, + 'task' => 'admin', + 'action' => 'edit', + 'params' => ['hellao', 'aaadp'] + ] + ], + [ + [ + 'uri' => '/es/news', + 'module' => null, + 'task' => 'news', + 'action' => 'index', + 'params' => ['language' => 'es'] + ] + ], + [ + [ + 'uri' => '/admin/posts/edit/100', + 'module' => 'admin', + 'task' => 'posts', + 'action' => 'edit', + 'params' => ['id' => 100] + ] + ], + [ + [ + 'uri' => '/posts/2010/02/10/title/content', + 'module' => null, + 'task' => 'posts', + 'action' => 'show', + 'params' => [ + 'year' => '2010', + 'month' => '02', + 'day' => '10', + 0 => 'title', + 1 => 'content', + ] + ] + ], + [ + [ + 'uri' => '/manual/en/translate.adapter.txt', + 'module' => null, + 'task' => 'manual', + 'action' => 'show', + 'params' => ['language' => 'en', 'file' => 'translate.adapter'] + ] + ], + [ + [ + 'uri' => '/named-manual/en/translate.adapter.txt', + 'module' => null, + 'task' => 'manual', + 'action' => 'show', + 'params' => ['language' => 'en', 'file' => 'translate.adapter'] + ] + ], + [ + [ + 'uri' => '/posts/1999/s/le-nice-title', + 'module' => null, + 'task' => 'posts', + 'action' => 'show', + 'params' => ['year' => '1999', 'title' => 'le-nice-title'] + ] + ], + [ + [ + 'uri' => '/feed/fr/blog/diaporema.json', + 'module' => null, + 'task' => 'feed', + 'action' => 'get', + 'params' => ['lang' => 'fr', 'blog' => 'diaporema', 'type' => 'json'] + ] + ], + [ + [ + 'uri' => '/posts/delete/150', + 'module' => null, + 'task' => 'posts', + 'action' => 'delete', + 'params' => ['id' => '150'] + ] + ], + [ + [ + 'uri' => '/very/static/route', + 'module' => null, + 'task' => 'static', + 'action' => 'route', + 'params' => [] + ] + ], + ]; + } + + private function runTests(CliTester $I, $router, array $test) + { + $router->handle($test['uri']); + $I->assertEquals($test['module'], $router->getModuleName()); + $I->assertEquals($test['task'], $router->getTaskName()); + $I->assertEquals($test['action'], $router->getActionName()); + $I->assertEquals($test['params'], $router->getParams()); + } +} diff --git a/tests/cli/Cli/Task/ConstructCest.php b/tests/cli/Cli/Task/ConstructCest.php new file mode 100644 index 00000000000..189ead89ecb --- /dev/null +++ b/tests/cli/Cli/Task/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Task; + +use CliTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Cli\Task :: __construct() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliTaskConstruct(CliTester $I) + { + $I->wantToTest("Cli\Task - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Task/GetDICest.php b/tests/cli/Cli/Task/GetDICest.php new file mode 100644 index 00000000000..48532a88ead --- /dev/null +++ b/tests/cli/Cli/Task/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Task; + +use CliTester; + +class GetDICest +{ + /** + * Tests Phalcon\Cli\Task :: getDI() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliTaskGetDI(CliTester $I) + { + $I->wantToTest("Cli\Task - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Task/GetEventsManagerCest.php b/tests/cli/Cli/Task/GetEventsManagerCest.php new file mode 100644 index 00000000000..112b4ef1754 --- /dev/null +++ b/tests/cli/Cli/Task/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Task; + +use CliTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Cli\Task :: getEventsManager() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliTaskGetEventsManager(CliTester $I) + { + $I->wantToTest("Cli\Task - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Task/SetDICest.php b/tests/cli/Cli/Task/SetDICest.php new file mode 100644 index 00000000000..b56944a2575 --- /dev/null +++ b/tests/cli/Cli/Task/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Task; + +use CliTester; + +class SetDICest +{ + /** + * Tests Phalcon\Cli\Task :: setDI() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliTaskSetDI(CliTester $I) + { + $I->wantToTest("Cli\Task - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Task/SetEventsManagerCest.php b/tests/cli/Cli/Task/SetEventsManagerCest.php new file mode 100644 index 00000000000..83889a73603 --- /dev/null +++ b/tests/cli/Cli/Task/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Task; + +use CliTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Cli\Task :: setEventsManager() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliTaskSetEventsManager(CliTester $I) + { + $I->wantToTest("Cli\Task - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/Task/UnderscoreGetCest.php b/tests/cli/Cli/Task/UnderscoreGetCest.php new file mode 100644 index 00000000000..a5fc24b97fb --- /dev/null +++ b/tests/cli/Cli/Task/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Cli\Task; + +use CliTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Cli\Task :: __get() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cliTaskUnderscoreGet(CliTester $I) + { + $I->wantToTest("Cli\Task - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Cli/TaskCest.php b/tests/cli/Cli/TaskCest.php new file mode 100644 index 00000000000..6a512d28dd8 --- /dev/null +++ b/tests/cli/Cli/TaskCest.php @@ -0,0 +1,53 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cli; + +use CliTester; +use Phalcon\Registry; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class TaskCest +{ + use DiTrait; + + public function _before(CliTester $I) + { + $this->setNewCliFactoryDefault(); + } + + public function testTasks(CliTester $I) + { + /** + * @todo Check the loader + */ + require_once dataFolder('fixtures/tasks/EchoTask.php'); + require_once dataFolder('fixtures/tasks/MainTask.php'); + + $this->container["registry"] = function () { + $registry = new Registry(); + $registry->data = "data"; + + return $registry; + }; + + $task = new \MainTask(); + $task->setDI($this->container); + + $I->assertEquals($task->requestRegistryAction(), "data"); + $I->assertEquals($task->helloAction(), "Hello !"); + $I->assertEquals($task->helloAction(["World"]), "Hello World!"); + + $task2 = new \EchoTask(); + $task2->setDI($this->container); + $I->assertEquals($task2->mainAction(), "echoMainAction"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/AttemptCest.php b/tests/cli/Di/FactoryDefault/Cli/AttemptCest.php new file mode 100644 index 00000000000..dd6d0cd6f13 --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/AttemptCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class AttemptCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: attempt() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliAttempt(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - attempt()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/ConstructCest.php b/tests/cli/Di/FactoryDefault/Cli/ConstructCest.php new file mode 100644 index 00000000000..797825b9f97 --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: __construct() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliConstruct(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/GetCest.php b/tests/cli/Di/FactoryDefault/Cli/GetCest.php new file mode 100644 index 00000000000..74c7ecc56ce --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class GetCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: get() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliGet(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/GetDefaultCest.php b/tests/cli/Di/FactoryDefault/Cli/GetDefaultCest.php new file mode 100644 index 00000000000..36ddc88babb --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/GetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class GetDefaultCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: getDefault() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliGetDefault(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - getDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/GetInternalEventsManagerCest.php b/tests/cli/Di/FactoryDefault/Cli/GetInternalEventsManagerCest.php new file mode 100644 index 00000000000..84bb85345b5 --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/GetInternalEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class GetInternalEventsManagerCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: getInternalEventsManager() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliGetInternalEventsManager(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - getInternalEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/GetRawCest.php b/tests/cli/Di/FactoryDefault/Cli/GetRawCest.php new file mode 100644 index 00000000000..6f0a26da24f --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/GetRawCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class GetRawCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: getRaw() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliGetRaw(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - getRaw()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/GetServiceCest.php b/tests/cli/Di/FactoryDefault/Cli/GetServiceCest.php new file mode 100644 index 00000000000..8f8de746699 --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/GetServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class GetServiceCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: getService() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliGetService(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - getService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/GetServicesCest.php b/tests/cli/Di/FactoryDefault/Cli/GetServicesCest.php new file mode 100644 index 00000000000..a16656469e7 --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/GetServicesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class GetServicesCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: getServices() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliGetServices(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - getServices()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/GetSharedCest.php b/tests/cli/Di/FactoryDefault/Cli/GetSharedCest.php new file mode 100644 index 00000000000..d9259122d09 --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/GetSharedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class GetSharedCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: getShared() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliGetShared(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - getShared()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/HasCest.php b/tests/cli/Di/FactoryDefault/Cli/HasCest.php new file mode 100644 index 00000000000..e4927bd7dbf --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/HasCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class HasCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: has() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliHas(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - has()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/LoadFromPhpCest.php b/tests/cli/Di/FactoryDefault/Cli/LoadFromPhpCest.php new file mode 100644 index 00000000000..5fb5fb31fa2 --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/LoadFromPhpCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class LoadFromPhpCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: loadFromPhp() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliLoadFromPhp(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - loadFromPhp()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/LoadFromYamlCest.php b/tests/cli/Di/FactoryDefault/Cli/LoadFromYamlCest.php new file mode 100644 index 00000000000..65680a7bb6b --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/LoadFromYamlCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class LoadFromYamlCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: loadFromYaml() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliLoadFromYaml(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - loadFromYaml()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/OffsetExistsCest.php b/tests/cli/Di/FactoryDefault/Cli/OffsetExistsCest.php new file mode 100644 index 00000000000..cb52e8d0007 --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/OffsetExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class OffsetExistsCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: offsetExists() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliOffsetExists(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - offsetExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/OffsetGetCest.php b/tests/cli/Di/FactoryDefault/Cli/OffsetGetCest.php new file mode 100644 index 00000000000..1ee09dc5133 --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/OffsetGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class OffsetGetCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: offsetGet() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliOffsetGet(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - offsetGet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/OffsetSetCest.php b/tests/cli/Di/FactoryDefault/Cli/OffsetSetCest.php new file mode 100644 index 00000000000..58d1cb7b5eb --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/OffsetSetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class OffsetSetCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: offsetSet() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliOffsetSet(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - offsetSet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/OffsetUnsetCest.php b/tests/cli/Di/FactoryDefault/Cli/OffsetUnsetCest.php new file mode 100644 index 00000000000..b87231f1a60 --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/OffsetUnsetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class OffsetUnsetCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: offsetUnset() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliOffsetUnset(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - offsetUnset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/RegisterCest.php b/tests/cli/Di/FactoryDefault/Cli/RegisterCest.php new file mode 100644 index 00000000000..0958ce26441 --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/RegisterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class RegisterCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: register() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliRegister(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - register()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/RemoveCest.php b/tests/cli/Di/FactoryDefault/Cli/RemoveCest.php new file mode 100644 index 00000000000..50c41364c02 --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/RemoveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class RemoveCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: remove() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliRemove(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - remove()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/ResetCest.php b/tests/cli/Di/FactoryDefault/Cli/ResetCest.php new file mode 100644 index 00000000000..42b94383a9f --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/ResetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class ResetCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: reset() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliReset(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - reset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/SetCest.php b/tests/cli/Di/FactoryDefault/Cli/SetCest.php new file mode 100644 index 00000000000..d09d6032671 --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/SetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class SetCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: set() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliSet(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - set()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/SetDefaultCest.php b/tests/cli/Di/FactoryDefault/Cli/SetDefaultCest.php new file mode 100644 index 00000000000..834d3118ab9 --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/SetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class SetDefaultCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: setDefault() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliSetDefault(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - setDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/SetInternalEventsManagerCest.php b/tests/cli/Di/FactoryDefault/Cli/SetInternalEventsManagerCest.php new file mode 100644 index 00000000000..c32f19ff3c1 --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/SetInternalEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class SetInternalEventsManagerCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: setInternalEventsManager() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliSetInternalEventsManager(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - setInternalEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/SetRawCest.php b/tests/cli/Di/FactoryDefault/Cli/SetRawCest.php new file mode 100644 index 00000000000..dee06ffde67 --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/SetRawCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class SetRawCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: setRaw() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliSetRaw(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - setRaw()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/SetSharedCest.php b/tests/cli/Di/FactoryDefault/Cli/SetSharedCest.php new file mode 100644 index 00000000000..5b977f7dad8 --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/SetSharedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class SetSharedCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: setShared() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliSetShared(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - setShared()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/UnderscoreCallCest.php b/tests/cli/Di/FactoryDefault/Cli/UnderscoreCallCest.php new file mode 100644 index 00000000000..1a6930550d6 --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/UnderscoreCallCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class UnderscoreCallCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: __call() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliUnderscoreCall(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - __call()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/cli/Di/FactoryDefault/Cli/WasFreshInstanceCest.php b/tests/cli/Di/FactoryDefault/Cli/WasFreshInstanceCest.php new file mode 100644 index 00000000000..9e4cbc1d071 --- /dev/null +++ b/tests/cli/Di/FactoryDefault/Cli/WasFreshInstanceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; + +use CliTester; + +class WasFreshInstanceCest +{ + /** + * Tests Phalcon\Di\FactoryDefault\Cli :: wasFreshInstance() + * + * @param CliTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultCliWasFreshInstance(CliTester $I) + { + $I->wantToTest("Di\FactoryDefault\Cli - wasFreshInstance()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/_data/controllers/Test0Controller.php b/tests/cli/_bootstrap.php similarity index 100% rename from tests/_data/controllers/Test0Controller.php rename to tests/cli/_bootstrap.php diff --git a/tests/functional.suite.yml.bak b/tests/functional.suite.yml.bak new file mode 100644 index 00000000000..94c1fe29b4e --- /dev/null +++ b/tests/functional.suite.yml.bak @@ -0,0 +1,12 @@ +# Codeception Test Suite Configuration +# +# Suite for functional tests +# Emulate web requests and make application process them +# Include one of framework modules (Symfony2, Yii2, Laravel5) to use it +# Remove this suite if you don't use frameworks + +actor: FunctionalTester +modules: + enabled: + # add a framework module here + - \Helper\Functional \ No newline at end of file diff --git a/tests/integration.suite.yml b/tests/integration.suite.yml index 4c3d42e4869..d972fd926d3 100644 --- a/tests/integration.suite.yml +++ b/tests/integration.suite.yml @@ -1,14 +1,11 @@ -# Codeception Test Suite Configuration -# -# Suite for unit (internal) tests. -class_name: IntegrationTester +actor: IntegrationTester modules: - # enabled modules and helpers - enabled: - - Phalcon - - Asserts - - Filesystem - - Helper\Integration - config: - Phalcon: - bootstrap: 'tests/_config/bootstrap.php' + enabled: + - Asserts + - Filesystem + - Helper\Integration + - Helper\Unit + - Phalcon + config: + Phalcon: + bootstrap: 'tests/_config/bootstrap.php' diff --git a/tests/integration/Assets/ManagerCest.php b/tests/integration/Assets/ManagerCest.php deleted file mode 100644 index 432ffae4d59..00000000000 --- a/tests/integration/Assets/ManagerCest.php +++ /dev/null @@ -1,29 +0,0 @@ -addInlineJs($js); - $expected = "\n"; - - ob_start(); - $manager->outputInlineJs(); - $actual = ob_get_contents(); - ob_end_clean(); - - $I->assertSame($expected, $actual); - } -} diff --git a/tests/integration/Db/Adapter/AddColumnCest.php b/tests/integration/Db/Adapter/AddColumnCest.php new file mode 100644 index 00000000000..80172beffb8 --- /dev/null +++ b/tests/integration/Db/Adapter/AddColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class AddColumnCest +{ + /** + * Tests Phalcon\Db\Adapter :: addColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterAddColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - addColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/AddForeignKeyCest.php b/tests/integration/Db/Adapter/AddForeignKeyCest.php new file mode 100644 index 00000000000..c34172b923a --- /dev/null +++ b/tests/integration/Db/Adapter/AddForeignKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class AddForeignKeyCest +{ + /** + * Tests Phalcon\Db\Adapter :: addForeignKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterAddForeignKey(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - addForeignKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/AddIndexCest.php b/tests/integration/Db/Adapter/AddIndexCest.php new file mode 100644 index 00000000000..c6bcff1595e --- /dev/null +++ b/tests/integration/Db/Adapter/AddIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class AddIndexCest +{ + /** + * Tests Phalcon\Db\Adapter :: addIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterAddIndex(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - addIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/AddPrimaryKeyCest.php b/tests/integration/Db/Adapter/AddPrimaryKeyCest.php new file mode 100644 index 00000000000..a757473ed32 --- /dev/null +++ b/tests/integration/Db/Adapter/AddPrimaryKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class AddPrimaryKeyCest +{ + /** + * Tests Phalcon\Db\Adapter :: addPrimaryKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterAddPrimaryKey(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - addPrimaryKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/AffectedRowsCest.php b/tests/integration/Db/Adapter/AffectedRowsCest.php new file mode 100644 index 00000000000..f2e61d9001a --- /dev/null +++ b/tests/integration/Db/Adapter/AffectedRowsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class AffectedRowsCest +{ + /** + * Tests Phalcon\Db\Adapter :: affectedRows() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterAffectedRows(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - affectedRows()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/BeginCest.php b/tests/integration/Db/Adapter/BeginCest.php new file mode 100644 index 00000000000..43f1bdc69b6 --- /dev/null +++ b/tests/integration/Db/Adapter/BeginCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class BeginCest +{ + /** + * Tests Phalcon\Db\Adapter :: begin() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterBegin(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - begin()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/CloseCest.php b/tests/integration/Db/Adapter/CloseCest.php new file mode 100644 index 00000000000..44b17fe3fa9 --- /dev/null +++ b/tests/integration/Db/Adapter/CloseCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class CloseCest +{ + /** + * Tests Phalcon\Db\Adapter :: close() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterClose(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - close()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/CommitCest.php b/tests/integration/Db/Adapter/CommitCest.php new file mode 100644 index 00000000000..b7fc59d312a --- /dev/null +++ b/tests/integration/Db/Adapter/CommitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class CommitCest +{ + /** + * Tests Phalcon\Db\Adapter :: commit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterCommit(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - commit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/ConnectCest.php b/tests/integration/Db/Adapter/ConnectCest.php new file mode 100644 index 00000000000..37b5c497874 --- /dev/null +++ b/tests/integration/Db/Adapter/ConnectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class ConnectCest +{ + /** + * Tests Phalcon\Db\Adapter :: connect() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterConnect(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - connect()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/ConstructCest.php b/tests/integration/Db/Adapter/ConstructCest.php new file mode 100644 index 00000000000..74fa15d66f9 --- /dev/null +++ b/tests/integration/Db/Adapter/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Db\Adapter :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterConstruct(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/CreateSavepointCest.php b/tests/integration/Db/Adapter/CreateSavepointCest.php new file mode 100644 index 00000000000..22fae852e60 --- /dev/null +++ b/tests/integration/Db/Adapter/CreateSavepointCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class CreateSavepointCest +{ + /** + * Tests Phalcon\Db\Adapter :: createSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterCreateSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - createSavepoint()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/CreateTableCest.php b/tests/integration/Db/Adapter/CreateTableCest.php new file mode 100644 index 00000000000..faf870ec224 --- /dev/null +++ b/tests/integration/Db/Adapter/CreateTableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class CreateTableCest +{ + /** + * Tests Phalcon\Db\Adapter :: createTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterCreateTable(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - createTable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/CreateViewCest.php b/tests/integration/Db/Adapter/CreateViewCest.php new file mode 100644 index 00000000000..8649cab0f1d --- /dev/null +++ b/tests/integration/Db/Adapter/CreateViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class CreateViewCest +{ + /** + * Tests Phalcon\Db\Adapter :: createView() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterCreateView(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - createView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/DeleteCest.php b/tests/integration/Db/Adapter/DeleteCest.php new file mode 100644 index 00000000000..08c65115d95 --- /dev/null +++ b/tests/integration/Db/Adapter/DeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class DeleteCest +{ + /** + * Tests Phalcon\Db\Adapter :: delete() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterDelete(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - delete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/DescribeColumnsCest.php b/tests/integration/Db/Adapter/DescribeColumnsCest.php new file mode 100644 index 00000000000..df4af930e97 --- /dev/null +++ b/tests/integration/Db/Adapter/DescribeColumnsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class DescribeColumnsCest +{ + /** + * Tests Phalcon\Db\Adapter :: describeColumns() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterDescribeColumns(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - describeColumns()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/DescribeIndexesCest.php b/tests/integration/Db/Adapter/DescribeIndexesCest.php new file mode 100644 index 00000000000..27f51acc283 --- /dev/null +++ b/tests/integration/Db/Adapter/DescribeIndexesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class DescribeIndexesCest +{ + /** + * Tests Phalcon\Db\Adapter :: describeIndexes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterDescribeIndexes(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - describeIndexes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/DescribeReferencesCest.php b/tests/integration/Db/Adapter/DescribeReferencesCest.php new file mode 100644 index 00000000000..fcb3f86e203 --- /dev/null +++ b/tests/integration/Db/Adapter/DescribeReferencesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class DescribeReferencesCest +{ + /** + * Tests Phalcon\Db\Adapter :: describeReferences() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterDescribeReferences(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - describeReferences()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/DropColumnCest.php b/tests/integration/Db/Adapter/DropColumnCest.php new file mode 100644 index 00000000000..511eb38db2c --- /dev/null +++ b/tests/integration/Db/Adapter/DropColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class DropColumnCest +{ + /** + * Tests Phalcon\Db\Adapter :: dropColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterDropColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - dropColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/DropForeignKeyCest.php b/tests/integration/Db/Adapter/DropForeignKeyCest.php new file mode 100644 index 00000000000..e9679081754 --- /dev/null +++ b/tests/integration/Db/Adapter/DropForeignKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class DropForeignKeyCest +{ + /** + * Tests Phalcon\Db\Adapter :: dropForeignKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterDropForeignKey(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - dropForeignKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/DropIndexCest.php b/tests/integration/Db/Adapter/DropIndexCest.php new file mode 100644 index 00000000000..a5483935a4a --- /dev/null +++ b/tests/integration/Db/Adapter/DropIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class DropIndexCest +{ + /** + * Tests Phalcon\Db\Adapter :: dropIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterDropIndex(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - dropIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/DropPrimaryKeyCest.php b/tests/integration/Db/Adapter/DropPrimaryKeyCest.php new file mode 100644 index 00000000000..68d3a1ac68d --- /dev/null +++ b/tests/integration/Db/Adapter/DropPrimaryKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class DropPrimaryKeyCest +{ + /** + * Tests Phalcon\Db\Adapter :: dropPrimaryKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterDropPrimaryKey(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - dropPrimaryKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/DropTableCest.php b/tests/integration/Db/Adapter/DropTableCest.php new file mode 100644 index 00000000000..ed0a7cdd8d7 --- /dev/null +++ b/tests/integration/Db/Adapter/DropTableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class DropTableCest +{ + /** + * Tests Phalcon\Db\Adapter :: dropTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterDropTable(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - dropTable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/DropViewCest.php b/tests/integration/Db/Adapter/DropViewCest.php new file mode 100644 index 00000000000..b86d5390362 --- /dev/null +++ b/tests/integration/Db/Adapter/DropViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class DropViewCest +{ + /** + * Tests Phalcon\Db\Adapter :: dropView() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterDropView(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - dropView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/EscapeIdentifierCest.php b/tests/integration/Db/Adapter/EscapeIdentifierCest.php new file mode 100644 index 00000000000..a0aa5395dc5 --- /dev/null +++ b/tests/integration/Db/Adapter/EscapeIdentifierCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class EscapeIdentifierCest +{ + /** + * Tests Phalcon\Db\Adapter :: escapeIdentifier() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterEscapeIdentifier(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - escapeIdentifier()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/EscapeStringCest.php b/tests/integration/Db/Adapter/EscapeStringCest.php new file mode 100644 index 00000000000..07bcfbb3fc6 --- /dev/null +++ b/tests/integration/Db/Adapter/EscapeStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class EscapeStringCest +{ + /** + * Tests Phalcon\Db\Adapter :: escapeString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterEscapeString(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - escapeString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/ExecuteCest.php b/tests/integration/Db/Adapter/ExecuteCest.php new file mode 100644 index 00000000000..d8a38df6709 --- /dev/null +++ b/tests/integration/Db/Adapter/ExecuteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class ExecuteCest +{ + /** + * Tests Phalcon\Db\Adapter :: execute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterExecute(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - execute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/FetchAllCest.php b/tests/integration/Db/Adapter/FetchAllCest.php new file mode 100644 index 00000000000..775b310049b --- /dev/null +++ b/tests/integration/Db/Adapter/FetchAllCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class FetchAllCest +{ + /** + * Tests Phalcon\Db\Adapter :: fetchAll() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterFetchAll(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - fetchAll()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/FetchColumnCest.php b/tests/integration/Db/Adapter/FetchColumnCest.php new file mode 100644 index 00000000000..8f885d1593b --- /dev/null +++ b/tests/integration/Db/Adapter/FetchColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class FetchColumnCest +{ + /** + * Tests Phalcon\Db\Adapter :: fetchColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterFetchColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - fetchColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/FetchOneCest.php b/tests/integration/Db/Adapter/FetchOneCest.php new file mode 100644 index 00000000000..c689c5f7bdc --- /dev/null +++ b/tests/integration/Db/Adapter/FetchOneCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class FetchOneCest +{ + /** + * Tests Phalcon\Db\Adapter :: fetchOne() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterFetchOne(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - fetchOne()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/ForUpdateCest.php b/tests/integration/Db/Adapter/ForUpdateCest.php new file mode 100644 index 00000000000..7632bdb4832 --- /dev/null +++ b/tests/integration/Db/Adapter/ForUpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class ForUpdateCest +{ + /** + * Tests Phalcon\Db\Adapter :: forUpdate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterForUpdate(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - forUpdate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/GetColumnDefinitionCest.php b/tests/integration/Db/Adapter/GetColumnDefinitionCest.php new file mode 100644 index 00000000000..08638df4239 --- /dev/null +++ b/tests/integration/Db/Adapter/GetColumnDefinitionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class GetColumnDefinitionCest +{ + /** + * Tests Phalcon\Db\Adapter :: getColumnDefinition() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterGetColumnDefinition(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - getColumnDefinition()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/GetColumnListCest.php b/tests/integration/Db/Adapter/GetColumnListCest.php new file mode 100644 index 00000000000..7940eead12d --- /dev/null +++ b/tests/integration/Db/Adapter/GetColumnListCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class GetColumnListCest +{ + /** + * Tests Phalcon\Db\Adapter :: getColumnList() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterGetColumnList(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - getColumnList()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/GetConnectionIdCest.php b/tests/integration/Db/Adapter/GetConnectionIdCest.php new file mode 100644 index 00000000000..aa83511a146 --- /dev/null +++ b/tests/integration/Db/Adapter/GetConnectionIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class GetConnectionIdCest +{ + /** + * Tests Phalcon\Db\Adapter :: getConnectionId() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterGetConnectionId(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - getConnectionId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/GetDefaultIdValueCest.php b/tests/integration/Db/Adapter/GetDefaultIdValueCest.php new file mode 100644 index 00000000000..241b9f622a5 --- /dev/null +++ b/tests/integration/Db/Adapter/GetDefaultIdValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class GetDefaultIdValueCest +{ + /** + * Tests Phalcon\Db\Adapter :: getDefaultIdValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterGetDefaultIdValue(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - getDefaultIdValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/GetDefaultValueCest.php b/tests/integration/Db/Adapter/GetDefaultValueCest.php new file mode 100644 index 00000000000..ed3adf311f7 --- /dev/null +++ b/tests/integration/Db/Adapter/GetDefaultValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class GetDefaultValueCest +{ + /** + * Tests Phalcon\Db\Adapter :: getDefaultValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterGetDefaultValue(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - getDefaultValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/GetDescriptorCest.php b/tests/integration/Db/Adapter/GetDescriptorCest.php new file mode 100644 index 00000000000..d705c247626 --- /dev/null +++ b/tests/integration/Db/Adapter/GetDescriptorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class GetDescriptorCest +{ + /** + * Tests Phalcon\Db\Adapter :: getDescriptor() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterGetDescriptor(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - getDescriptor()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/GetDialectCest.php b/tests/integration/Db/Adapter/GetDialectCest.php new file mode 100644 index 00000000000..623f7a56f21 --- /dev/null +++ b/tests/integration/Db/Adapter/GetDialectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class GetDialectCest +{ + /** + * Tests Phalcon\Db\Adapter :: getDialect() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterGetDialect(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - getDialect()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/GetDialectTypeCest.php b/tests/integration/Db/Adapter/GetDialectTypeCest.php new file mode 100644 index 00000000000..556cf5560cd --- /dev/null +++ b/tests/integration/Db/Adapter/GetDialectTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class GetDialectTypeCest +{ + /** + * Tests Phalcon\Db\Adapter :: getDialectType() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterGetDialectType(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - getDialectType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/GetEventsManagerCest.php b/tests/integration/Db/Adapter/GetEventsManagerCest.php new file mode 100644 index 00000000000..aaa97b0fa51 --- /dev/null +++ b/tests/integration/Db/Adapter/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Db\Adapter :: getEventsManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterGetEventsManager(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/GetInternalHandlerCest.php b/tests/integration/Db/Adapter/GetInternalHandlerCest.php new file mode 100644 index 00000000000..ee40519c840 --- /dev/null +++ b/tests/integration/Db/Adapter/GetInternalHandlerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class GetInternalHandlerCest +{ + /** + * Tests Phalcon\Db\Adapter :: getInternalHandler() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterGetInternalHandler(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - getInternalHandler()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/GetNestedTransactionSavepointNameCest.php b/tests/integration/Db/Adapter/GetNestedTransactionSavepointNameCest.php new file mode 100644 index 00000000000..99b40ecc92e --- /dev/null +++ b/tests/integration/Db/Adapter/GetNestedTransactionSavepointNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class GetNestedTransactionSavepointNameCest +{ + /** + * Tests Phalcon\Db\Adapter :: getNestedTransactionSavepointName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterGetNestedTransactionSavepointName(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - getNestedTransactionSavepointName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/GetRealSQLStatementCest.php b/tests/integration/Db/Adapter/GetRealSQLStatementCest.php new file mode 100644 index 00000000000..75343ebf9d2 --- /dev/null +++ b/tests/integration/Db/Adapter/GetRealSQLStatementCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class GetRealSQLStatementCest +{ + /** + * Tests Phalcon\Db\Adapter :: getRealSQLStatement() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterGetRealSQLStatement(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - getRealSQLStatement()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/GetSQLBindTypesCest.php b/tests/integration/Db/Adapter/GetSQLBindTypesCest.php new file mode 100644 index 00000000000..f6846c1e0bb --- /dev/null +++ b/tests/integration/Db/Adapter/GetSQLBindTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class GetSQLBindTypesCest +{ + /** + * Tests Phalcon\Db\Adapter :: getSQLBindTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterGetSQLBindTypes(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - getSQLBindTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/GetSQLStatementCest.php b/tests/integration/Db/Adapter/GetSQLStatementCest.php new file mode 100644 index 00000000000..ed2771e521f --- /dev/null +++ b/tests/integration/Db/Adapter/GetSQLStatementCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class GetSQLStatementCest +{ + /** + * Tests Phalcon\Db\Adapter :: getSQLStatement() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterGetSQLStatement(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - getSQLStatement()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/GetSqlVariablesCest.php b/tests/integration/Db/Adapter/GetSqlVariablesCest.php new file mode 100644 index 00000000000..103dbbb30f5 --- /dev/null +++ b/tests/integration/Db/Adapter/GetSqlVariablesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class GetSqlVariablesCest +{ + /** + * Tests Phalcon\Db\Adapter :: getSqlVariables() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterGetSqlVariables(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - getSqlVariables()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/GetTypeCest.php b/tests/integration/Db/Adapter/GetTypeCest.php new file mode 100644 index 00000000000..53333df33a4 --- /dev/null +++ b/tests/integration/Db/Adapter/GetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class GetTypeCest +{ + /** + * Tests Phalcon\Db\Adapter :: getType() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterGetType(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - getType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/InsertAsDictCest.php b/tests/integration/Db/Adapter/InsertAsDictCest.php new file mode 100644 index 00000000000..9daa201b357 --- /dev/null +++ b/tests/integration/Db/Adapter/InsertAsDictCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class InsertAsDictCest +{ + /** + * Tests Phalcon\Db\Adapter :: insertAsDict() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterInsertAsDict(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - insertAsDict()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/InsertCest.php b/tests/integration/Db/Adapter/InsertCest.php new file mode 100644 index 00000000000..04c0a74fff1 --- /dev/null +++ b/tests/integration/Db/Adapter/InsertCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class InsertCest +{ + /** + * Tests Phalcon\Db\Adapter :: insert() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterInsert(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - insert()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/IsNestedTransactionsWithSavepointsCest.php b/tests/integration/Db/Adapter/IsNestedTransactionsWithSavepointsCest.php new file mode 100644 index 00000000000..130022f38be --- /dev/null +++ b/tests/integration/Db/Adapter/IsNestedTransactionsWithSavepointsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class IsNestedTransactionsWithSavepointsCest +{ + /** + * Tests Phalcon\Db\Adapter :: isNestedTransactionsWithSavepoints() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterIsNestedTransactionsWithSavepoints(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - isNestedTransactionsWithSavepoints()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/IsUnderTransactionCest.php b/tests/integration/Db/Adapter/IsUnderTransactionCest.php new file mode 100644 index 00000000000..cb5b79fd2d6 --- /dev/null +++ b/tests/integration/Db/Adapter/IsUnderTransactionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class IsUnderTransactionCest +{ + /** + * Tests Phalcon\Db\Adapter :: isUnderTransaction() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterIsUnderTransaction(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - isUnderTransaction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/LastInsertIdCest.php b/tests/integration/Db/Adapter/LastInsertIdCest.php new file mode 100644 index 00000000000..a027b64c39f --- /dev/null +++ b/tests/integration/Db/Adapter/LastInsertIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class LastInsertIdCest +{ + /** + * Tests Phalcon\Db\Adapter :: lastInsertId() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterLastInsertId(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - lastInsertId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/LimitCest.php b/tests/integration/Db/Adapter/LimitCest.php new file mode 100644 index 00000000000..08693291e23 --- /dev/null +++ b/tests/integration/Db/Adapter/LimitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class LimitCest +{ + /** + * Tests Phalcon\Db\Adapter :: limit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterLimit(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - limit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/ListTablesCest.php b/tests/integration/Db/Adapter/ListTablesCest.php new file mode 100644 index 00000000000..3fc943c28c0 --- /dev/null +++ b/tests/integration/Db/Adapter/ListTablesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class ListTablesCest +{ + /** + * Tests Phalcon\Db\Adapter :: listTables() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterListTables(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - listTables()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/ListViewsCest.php b/tests/integration/Db/Adapter/ListViewsCest.php new file mode 100644 index 00000000000..0ecf8d8362d --- /dev/null +++ b/tests/integration/Db/Adapter/ListViewsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class ListViewsCest +{ + /** + * Tests Phalcon\Db\Adapter :: listViews() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterListViews(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - listViews()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/ModifyColumnCest.php b/tests/integration/Db/Adapter/ModifyColumnCest.php new file mode 100644 index 00000000000..1b337710df5 --- /dev/null +++ b/tests/integration/Db/Adapter/ModifyColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class ModifyColumnCest +{ + /** + * Tests Phalcon\Db\Adapter :: modifyColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterModifyColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - modifyColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Factory/LoadCest.php b/tests/integration/Db/Adapter/Pdo/Factory/LoadCest.php new file mode 100644 index 00000000000..bfe1bc16c89 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Factory/LoadCest.php @@ -0,0 +1,83 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Factory; + +use IntegrationTester; +use Phalcon\Config; +use Phalcon\Db\Adapter\Pdo\Factory; +use Phalcon\Db\Adapter\Pdo\Mysql; +use Phalcon\Test\Fixtures\Traits\FactoryTrait; +use function var_dump; + +class LoadCest +{ + use FactoryTrait; + + /** + * @param IntegrationTester $I + */ + public function _before(IntegrationTester $I) + { + $this->init(); + } + + /** + * Tests Phalcon\Db\Adapter\Pdo\Factory :: load() - Config + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2017-03-02 + */ + public function dbAdapterPdoFactoryLoadConfig(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Factory - load() - Config"); + $options = $this->config->database; + $data = $options->toArray(); + $this->runTests($I, $options, $data); + } + + /** + * @param IntegrationTester $I + * @param Config|Array $options + * @param array $data + */ + private function runTests(IntegrationTester $I, $options, array $data) + { + /** @var Mysql $database */ + $database = Factory::load($options); + + $class = Mysql::class; + $actual = $database; + $I->assertInstanceOf($class, $actual); + + $expected = array_intersect_assoc($database->getDescriptor(), $data); + $actual = $database->getDescriptor(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Db\Adapter\Pdo\Factory :: load() - array + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2017-03-02 + */ + public function dbAdapterPdoFactoryLoadArray(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Factory - load() - array"); + $options = $this->arrayConfig["database"]; + $data = $options; + $this->runTests($I, $options, $data); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/AddColumnCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/AddColumnCest.php new file mode 100644 index 00000000000..e081478ba0d --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/AddColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class AddColumnCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: addColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlAddColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - addColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/AddForeignKeyCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/AddForeignKeyCest.php new file mode 100644 index 00000000000..1c3a67d1704 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/AddForeignKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class AddForeignKeyCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: addForeignKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlAddForeignKey(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - addForeignKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/AddIndexCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/AddIndexCest.php new file mode 100644 index 00000000000..80b17fa8990 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/AddIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class AddIndexCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: addIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlAddIndex(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - addIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/AddPrimaryKeyCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/AddPrimaryKeyCest.php new file mode 100644 index 00000000000..1c777cd0700 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/AddPrimaryKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class AddPrimaryKeyCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: addPrimaryKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlAddPrimaryKey(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - addPrimaryKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/AffectedRowsCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/AffectedRowsCest.php new file mode 100644 index 00000000000..df7e29b5797 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/AffectedRowsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class AffectedRowsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: affectedRows() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlAffectedRows(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - affectedRows()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/BeginCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/BeginCest.php new file mode 100644 index 00000000000..a8dfa809926 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/BeginCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class BeginCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: begin() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlBegin(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - begin()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/CloseCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/CloseCest.php new file mode 100644 index 00000000000..2e895f68c25 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/CloseCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class CloseCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: close() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlClose(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - close()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/CommitCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/CommitCest.php new file mode 100644 index 00000000000..c92cb5af1b3 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/CommitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class CommitCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: commit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlCommit(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - commit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/ConnectCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/ConnectCest.php new file mode 100644 index 00000000000..2ac92eceede --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/ConnectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class ConnectCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: connect() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlConnect(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - connect()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/ConstructCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/ConstructCest.php new file mode 100644 index 00000000000..8b44c723dd1 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlConstruct(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/ConvertBoundParamsCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/ConvertBoundParamsCest.php new file mode 100644 index 00000000000..bf2c9f9f74a --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/ConvertBoundParamsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class ConvertBoundParamsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: convertBoundParams() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlConvertBoundParams(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - convertBoundParams()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/CreateSavepointCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/CreateSavepointCest.php new file mode 100644 index 00000000000..af7b72bfbef --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/CreateSavepointCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class CreateSavepointCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: createSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlCreateSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - createSavepoint()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/CreateTableCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/CreateTableCest.php new file mode 100644 index 00000000000..4e921be0645 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/CreateTableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class CreateTableCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: createTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlCreateTable(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - createTable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/CreateViewCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/CreateViewCest.php new file mode 100644 index 00000000000..d2b456e73ef --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/CreateViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class CreateViewCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: createView() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlCreateView(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - createView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/DeleteCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/DeleteCest.php new file mode 100644 index 00000000000..f70ab09d765 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/DeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class DeleteCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: delete() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlDelete(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - delete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/DescribeColumnsCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/DescribeColumnsCest.php new file mode 100644 index 00000000000..ecdcb3f9dbd --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/DescribeColumnsCest.php @@ -0,0 +1,38 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class DescribeColumnsCest +{ + use DiTrait; + use MysqlTrait; + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: describeColumns() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlDescribeColumns(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - describeColumns()"); + $table = 'dialect_table'; + $expected = $this->getExpectedColumns(); + $I->assertEquals($expected, $this->connection->describeColumns($table)); + $I->assertEquals($expected, $this->connection->describeColumns($table, $this->getSchemaName())); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/DescribeIndexesCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/DescribeIndexesCest.php new file mode 100644 index 00000000000..1e593ecde5b --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/DescribeIndexesCest.php @@ -0,0 +1,38 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class DescribeIndexesCest +{ + use DiTrait; + use MysqlTrait; + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: describeIndexes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlDescribeIndexes(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - describeIndexes()"); + $table = 'dialect_table'; + $expected = $this->getExpectedIndexes(); + $I->assertEquals($expected, $this->connection->describeIndexes($table)); + $I->assertEquals($expected, $this->connection->describeIndexes($table, $this->getSchemaName())); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/DescribeReferencesCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/DescribeReferencesCest.php new file mode 100644 index 00000000000..c1cf1f68edb --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/DescribeReferencesCest.php @@ -0,0 +1,63 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class DescribeReferencesCest +{ + use DiTrait; + use MysqlTrait; + + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: describeReferences() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlDescribeReferences(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - describeReferences()"); + $table = 'dialect_table_intermediate'; + $expected = $this->getExpectedReferences(); + $I->assertEquals($expected, $this->connection->describeReferences($table)); + $I->assertEquals($expected, $this->connection->describeReferences($table, $this->getSchemaName())); + } + + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: describeReferences() - count + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlDescribeReferencesCount(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - describeReferences() - count"); + $table = 'dialect_table_intermediate'; + $directReferences = $this->connection->describeReferences($table); + $schemaReferences = $this->connection->describeReferences($table, $this->getSchemaName()); + $I->assertEquals($directReferences, $schemaReferences); + $I->assertEquals(2, count($directReferences)); + $I->assertEquals(2, count($schemaReferences)); + + /** @var Reference $reference */ + foreach ($directReferences as $reference) { + $I->assertEquals(1, count($reference->getColumns())); + } + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/DropColumnCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/DropColumnCest.php new file mode 100644 index 00000000000..979938677b4 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/DropColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class DropColumnCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: dropColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlDropColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - dropColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/DropForeignKeyCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/DropForeignKeyCest.php new file mode 100644 index 00000000000..4a13183d579 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/DropForeignKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class DropForeignKeyCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: dropForeignKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlDropForeignKey(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - dropForeignKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/DropIndexCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/DropIndexCest.php new file mode 100644 index 00000000000..53e94ce0168 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/DropIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class DropIndexCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: dropIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlDropIndex(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - dropIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/DropPrimaryKeyCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/DropPrimaryKeyCest.php new file mode 100644 index 00000000000..1f55aef6e8c --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/DropPrimaryKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class DropPrimaryKeyCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: dropPrimaryKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlDropPrimaryKey(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - dropPrimaryKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/DropTableCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/DropTableCest.php new file mode 100644 index 00000000000..7aae680422a --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/DropTableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class DropTableCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: dropTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlDropTable(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - dropTable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/DropViewCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/DropViewCest.php new file mode 100644 index 00000000000..3fe97172cf9 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/DropViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class DropViewCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: dropView() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlDropView(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - dropView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/EscapeIdentifierCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/EscapeIdentifierCest.php new file mode 100644 index 00000000000..0826026eb9f --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/EscapeIdentifierCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class EscapeIdentifierCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: escapeIdentifier() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlEscapeIdentifier(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - escapeIdentifier()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/EscapeStringCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/EscapeStringCest.php new file mode 100644 index 00000000000..54317c6949b --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/EscapeStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class EscapeStringCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: escapeString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlEscapeString(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - escapeString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/ExecuteCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/ExecuteCest.php new file mode 100644 index 00000000000..1ae9ed9179f --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/ExecuteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class ExecuteCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: execute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlExecute(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - execute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/ExecutePreparedCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/ExecutePreparedCest.php new file mode 100644 index 00000000000..4f70e06cce0 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/ExecutePreparedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class ExecutePreparedCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: executePrepared() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlExecutePrepared(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - executePrepared()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/FetchAllCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/FetchAllCest.php new file mode 100644 index 00000000000..ef13f879a90 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/FetchAllCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class FetchAllCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: fetchAll() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlFetchAll(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - fetchAll()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/FetchColumnCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/FetchColumnCest.php new file mode 100644 index 00000000000..654aec9b21e --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/FetchColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class FetchColumnCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: fetchColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlFetchColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - fetchColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/FetchOneCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/FetchOneCest.php new file mode 100644 index 00000000000..db2cc9b4a36 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/FetchOneCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class FetchOneCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: fetchOne() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlFetchOne(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - fetchOne()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/ForUpdateCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/ForUpdateCest.php new file mode 100644 index 00000000000..a89bb27a12a --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/ForUpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class ForUpdateCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: forUpdate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlForUpdate(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - forUpdate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/GetColumnDefinitionCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/GetColumnDefinitionCest.php new file mode 100644 index 00000000000..21f0dc5d205 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/GetColumnDefinitionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class GetColumnDefinitionCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: getColumnDefinition() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlGetColumnDefinition(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - getColumnDefinition()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/GetColumnListCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/GetColumnListCest.php new file mode 100644 index 00000000000..d9ed395c0c4 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/GetColumnListCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class GetColumnListCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: getColumnList() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlGetColumnList(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - getColumnList()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/GetConnectionIdCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/GetConnectionIdCest.php new file mode 100644 index 00000000000..654514f7438 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/GetConnectionIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class GetConnectionIdCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: getConnectionId() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlGetConnectionId(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - getConnectionId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/GetDefaultIdValueCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/GetDefaultIdValueCest.php new file mode 100644 index 00000000000..b4860131612 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/GetDefaultIdValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class GetDefaultIdValueCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: getDefaultIdValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlGetDefaultIdValue(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - getDefaultIdValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/GetDefaultValueCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/GetDefaultValueCest.php new file mode 100644 index 00000000000..411ca240501 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/GetDefaultValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class GetDefaultValueCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: getDefaultValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlGetDefaultValue(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - getDefaultValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/GetDescriptorCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/GetDescriptorCest.php new file mode 100644 index 00000000000..ddbae07c93b --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/GetDescriptorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class GetDescriptorCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: getDescriptor() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlGetDescriptor(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - getDescriptor()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/GetDialectCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/GetDialectCest.php new file mode 100644 index 00000000000..d464bcf4bc5 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/GetDialectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class GetDialectCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: getDialect() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlGetDialect(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - getDialect()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/GetDialectTypeCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/GetDialectTypeCest.php new file mode 100644 index 00000000000..ae7ccfbd660 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/GetDialectTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class GetDialectTypeCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: getDialectType() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlGetDialectType(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - getDialectType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/GetErrorInfoCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/GetErrorInfoCest.php new file mode 100644 index 00000000000..486b6514eac --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/GetErrorInfoCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class GetErrorInfoCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: getErrorInfo() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlGetErrorInfo(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - getErrorInfo()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/GetEventsManagerCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/GetEventsManagerCest.php new file mode 100644 index 00000000000..1170bad0a8a --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: getEventsManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlGetEventsManager(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/GetInternalHandlerCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/GetInternalHandlerCest.php new file mode 100644 index 00000000000..cd3ccc96e1d --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/GetInternalHandlerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class GetInternalHandlerCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: getInternalHandler() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlGetInternalHandler(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - getInternalHandler()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/GetNestedTransactionSavepointNameCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/GetNestedTransactionSavepointNameCest.php new file mode 100644 index 00000000000..b3278858deb --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/GetNestedTransactionSavepointNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class GetNestedTransactionSavepointNameCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: getNestedTransactionSavepointName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlGetNestedTransactionSavepointName(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - getNestedTransactionSavepointName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/GetRealSQLStatementCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/GetRealSQLStatementCest.php new file mode 100644 index 00000000000..305c4508528 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/GetRealSQLStatementCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class GetRealSQLStatementCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: getRealSQLStatement() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlGetRealSQLStatement(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - getRealSQLStatement()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/GetSQLBindTypesCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/GetSQLBindTypesCest.php new file mode 100644 index 00000000000..f02201f09bd --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/GetSQLBindTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class GetSQLBindTypesCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: getSQLBindTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlGetSQLBindTypes(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - getSQLBindTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/GetSQLStatementCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/GetSQLStatementCest.php new file mode 100644 index 00000000000..d3ec125b7b4 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/GetSQLStatementCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class GetSQLStatementCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: getSQLStatement() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlGetSQLStatement(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - getSQLStatement()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/GetSqlVariablesCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/GetSqlVariablesCest.php new file mode 100644 index 00000000000..1884d8b7880 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/GetSqlVariablesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class GetSqlVariablesCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: getSqlVariables() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlGetSqlVariables(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - getSqlVariables()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/GetTransactionLevelCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/GetTransactionLevelCest.php new file mode 100644 index 00000000000..8639565eddf --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/GetTransactionLevelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class GetTransactionLevelCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: getTransactionLevel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlGetTransactionLevel(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - getTransactionLevel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/GetTypeCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/GetTypeCest.php new file mode 100644 index 00000000000..be8fe43b58a --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/GetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class GetTypeCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: getType() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlGetType(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - getType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/InsertAsDictCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/InsertAsDictCest.php new file mode 100644 index 00000000000..79185072767 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/InsertAsDictCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class InsertAsDictCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: insertAsDict() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlInsertAsDict(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - insertAsDict()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/InsertCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/InsertCest.php new file mode 100644 index 00000000000..fffa586a452 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/InsertCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class InsertCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: insert() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlInsert(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - insert()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/IsNestedTransactionsWithSavepointsCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/IsNestedTransactionsWithSavepointsCest.php new file mode 100644 index 00000000000..ceb8b607c42 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/IsNestedTransactionsWithSavepointsCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class IsNestedTransactionsWithSavepointsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: + * isNestedTransactionsWithSavepoints() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlIsNestedTransactionsWithSavepoints(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - isNestedTransactionsWithSavepoints()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/IsUnderTransactionCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/IsUnderTransactionCest.php new file mode 100644 index 00000000000..2e7c8db5d36 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/IsUnderTransactionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class IsUnderTransactionCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: isUnderTransaction() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlIsUnderTransaction(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - isUnderTransaction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/LastInsertIdCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/LastInsertIdCest.php new file mode 100644 index 00000000000..781b89a539c --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/LastInsertIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class LastInsertIdCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: lastInsertId() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlLastInsertId(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - lastInsertId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/LimitCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/LimitCest.php new file mode 100644 index 00000000000..13b41332376 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/LimitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class LimitCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: limit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlLimit(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - limit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/ListTablesCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/ListTablesCest.php new file mode 100644 index 00000000000..db185999a67 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/ListTablesCest.php @@ -0,0 +1,84 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class ListTablesCest +{ + use DiTrait; + use MysqlTrait; + + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: listTables() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlListTables(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - listTables()"); + $I->skipTest("Need implementation"); + $expected = $this->getListTables(); + $I->assertEquals($expected, $this->connection->listTables()); + $I->assertEquals($expected, $this->connection->listTables($this->getSchemaName())); + } + + /** + * Returns the list of the tables in the database + * + * @return array + */ + private function getListTables(): array + { + return [ + 'albums', + 'artists', + 'childs', + 'customers', + 'dialect_table', + 'dialect_table_intermediate', + 'dialect_table_remote', + 'foreign_key_child', + 'foreign_key_parent', + 'identityless_requests', + 'issue12071_body', + 'issue12071_head', + 'issue_11036', + 'issue_1534', + 'issue_2019', + 'm2m_parts', + 'm2m_robots', + 'm2m_robots_parts', + 'package_details', + 'packages', + 'parts', + 'personas', + 'personnes', + 'ph_select', + 'prueba', + 'robots', + 'robots_parts', + 'songs', + 'stats', + 'stock', + 'subscriptores', + 'table_with_string_field', + 'tipo_documento', + 'users', + ]; + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/ListViewsCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/ListViewsCest.php new file mode 100644 index 00000000000..ad57b22e47e --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/ListViewsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class ListViewsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: listViews() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlListViews(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - listViews()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/ModifyColumnCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/ModifyColumnCest.php new file mode 100644 index 00000000000..f0e6a7e3121 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/ModifyColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class ModifyColumnCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: modifyColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlModifyColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - modifyColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/PrepareCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/PrepareCest.php new file mode 100644 index 00000000000..a77bd70407d --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/PrepareCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class PrepareCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: prepare() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlPrepare(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - prepare()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/QueryCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/QueryCest.php new file mode 100644 index 00000000000..f245e7bbbf9 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/QueryCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class QueryCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: query() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlQuery(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - query()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/ReleaseSavepointCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/ReleaseSavepointCest.php new file mode 100644 index 00000000000..4feab0c4500 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/ReleaseSavepointCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class ReleaseSavepointCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: releaseSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlReleaseSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - releaseSavepoint()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/RollbackCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/RollbackCest.php new file mode 100644 index 00000000000..d09b2ab8e00 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/RollbackCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class RollbackCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: rollback() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlRollback(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - rollback()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/RollbackSavepointCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/RollbackSavepointCest.php new file mode 100644 index 00000000000..32d11b5c71e --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/RollbackSavepointCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class RollbackSavepointCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: rollbackSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlRollbackSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - rollbackSavepoint()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/SetDialectCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/SetDialectCest.php new file mode 100644 index 00000000000..677b9f2322a --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/SetDialectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class SetDialectCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: setDialect() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlSetDialect(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - setDialect()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/SetEventsManagerCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/SetEventsManagerCest.php new file mode 100644 index 00000000000..a4d62dfca29 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: setEventsManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlSetEventsManager(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/SetNestedTransactionsWithSavepointsCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/SetNestedTransactionsWithSavepointsCest.php new file mode 100644 index 00000000000..38ac8f713b0 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/SetNestedTransactionsWithSavepointsCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class SetNestedTransactionsWithSavepointsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: + * setNestedTransactionsWithSavepoints() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlSetNestedTransactionsWithSavepoints(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - setNestedTransactionsWithSavepoints()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/SharedLockCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/SharedLockCest.php new file mode 100644 index 00000000000..917d9dbafb8 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/SharedLockCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class SharedLockCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: sharedLock() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlSharedLock(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - sharedLock()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/SupportSequencesCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/SupportSequencesCest.php new file mode 100644 index 00000000000..e615a2c90c1 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/SupportSequencesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class SupportSequencesCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: supportSequences() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlSupportSequences(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - supportSequences()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/TableExistsCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/TableExistsCest.php new file mode 100644 index 00000000000..95677a8b849 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/TableExistsCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class TableExistsCest +{ + use DiTrait; + use MysqlTrait; + + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: tableExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlTableExists(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - tableExists()"); + $table = 'dialect_table'; + $I->assertTrue($this->connection->tableExists($table)); + $I->assertFalse($this->connection->tableExists('unknown-table')); + $I->assertTrue($this->connection->tableExists($table, $this->getSchemaName())); + $I->assertFalse($this->connection->tableExists('unknown-table', 'unknown-db')); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/TableOptionsCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/TableOptionsCest.php new file mode 100644 index 00000000000..c68ea0a63eb --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/TableOptionsCest.php @@ -0,0 +1,45 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class TableOptionsCest +{ + use DiTrait; + use MysqlTrait; + + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: tableOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlTableOptions(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - tableOptions()"); + $table = 'dialect_table'; + $expected = [ + 'auto_increment' => '1', + 'engine' => 'InnoDB', + 'table_collation' => 'utf8_general_ci', + 'table_type' => 'BASE TABLE' + ]; + + $actual = $this->connection->tableOptions($table, $this->getDatabaseName()); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/UpdateAsDictCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/UpdateAsDictCest.php new file mode 100644 index 00000000000..df853445fe8 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/UpdateAsDictCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class UpdateAsDictCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: updateAsDict() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlUpdateAsDict(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - updateAsDict()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/UpdateCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/UpdateCest.php new file mode 100644 index 00000000000..462755f3314 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/UpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class UpdateCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: update() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlUpdate(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - update()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/UseExplicitIdValueCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/UseExplicitIdValueCest.php new file mode 100644 index 00000000000..08db54fa767 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/UseExplicitIdValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class UseExplicitIdValueCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: useExplicitIdValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlUseExplicitIdValue(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - useExplicitIdValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Mysql/ViewExistsCest.php b/tests/integration/Db/Adapter/Pdo/Mysql/ViewExistsCest.php new file mode 100644 index 00000000000..17f47f71dd8 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Mysql/ViewExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; + +use IntegrationTester; + +class ViewExistsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Mysql :: viewExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoMysqlViewExists(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Mysql - viewExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/MysqlCest.php b/tests/integration/Db/Adapter/Pdo/MysqlCest.php new file mode 100644 index 00000000000..ae7eccd2027 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/MysqlCest.php @@ -0,0 +1,230 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo; + +use Helper\Dialect\MysqlTrait; +use IntegrationTester; +use Phalcon\Db\Adapter\Pdo\Mysql; +use Phalcon\Db\Reference; +use Phalcon\Test\Integration\Db\Dialect\Helper\MysqlHelper; + +class MysqlCest extends MysqlHelper +{ + /** + * @var Mysql + */ + protected $connection; + + /** + * @param IntegrationTester $I + */ + public function _before(IntegrationTester $I) + { + try { + $this->connection = new Mysql( + [ + 'host' => env('DATA_MYSQL_HOST'), + 'username' => env('DATA_MYSQL_USER'), + 'password' => env('DATA_MYSQL_PASS'), + 'dbname' => env('DATA_MYSQL_NAME'), + 'port' => env('DATA_MYSQL_PORT'), + 'charset' => env('DATA_MYSQL_CHARSET'), + ] + ); + } catch (\PDOException $e) { + $I->skipTest("Unable to connect to the database: " . $e->getMessage()); + } + } + + /** + * Tests Mysql::listTables + * + * @author Phalcon Team + * @since 2016-08-03 + */ + public function testListTables(IntegrationTester $I) + { + $expected = [ + 'albums', + 'artists', + 'childs', + 'customers', + 'dialect_table', + 'dialect_table_intermediate', + 'dialect_table_remote', + 'foreign_key_child', + 'foreign_key_parent', + 'identityless_requests', + 'issue12071_body', + 'issue12071_head', + 'issue_11036', + 'issue_1534', + 'issue_2019', + 'm2m_parts', + 'm2m_robots', + 'm2m_robots_parts', + 'package_details', + 'packages', + 'parts', + 'personas', + 'personnes', + 'ph_select', + 'prueba', + 'robots', + 'robots_parts', + 'songs', + 'stats', + 'stock', + 'subscriptores', + 'table_with_string_field', + 'tipo_documento', + 'users', + ]; + + $actual = $this->connection->listTables(); + $I->assertEquals($expected, $actual); + + $dbName = env('DATA_MYSQL_NAME', 'phalcon_test'); + $actual = $this->connection->listTables($dbName); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Mysql::describeReferences + * + * @author Wojciechj Ślawski + * @since 2016-09-28 + */ + public function testDescribeReferencesColumnsCount(IntegrationTester $I) + { + + $expected = 2; + $actual = $this->connection->describeReferences('robots_parts', env('DATA_MYSQL_NAME')); + $I->assertCount($expected, $actual); + + $expected = 2; + $actual = $this->connection->describeReferences('robots_parts', null); + $I->assertCount($expected, $actual); + + $references = $actual; + /** @var Reference $reference */ + foreach ($references as $reference) { + $expected = 1; + $actual = count($reference->getColumns()); + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Mysql::escapeIdentifier + * + * @author Sid Roberts + * @since 2016-11-19 + */ + public function testEscapeIdentifier(IntegrationTester $I) + { + $examples = [ + [ + "identifier" => "robots", + "expected" => "`robots`", + ], + [ + "identifier" => ["schema", "robots"], + "expected" => "`schema`.`robots`", + ], + [ + "identifier" => "`robots`", + "expected" => "```robots```", + ], + [ + "identifier" => ["`schema`", "rob`ots"], + "expected" => "```schema```.`rob``ots`", + ], + ]; + + foreach ($examples as $item) { + $identifier = $item['identifier']; + $expected = $item['expected']; + + $actual = $this->connection->escapeIdentifier($identifier); + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Mysql::addForeignKey + * + * @issue https://github.com/phalcon/cphalcon/issues/556 + * @author Sergii Svyrydenko + * @since 2017-07-03 + */ + public function shouldAddForeignKey(IntegrationTester $I) + { + $examples = [ + [$this->addForeignKeySql('test_name_key', 'CASCADE', 'RESTRICT'), true], + [$this->addForeignKeySql('', 'CASCADE', 'RESTRICT'), true], + ]; + + foreach ($examples as $item) { + $sql = $item[0]; + $expected = $item[1]; + $actual = $this->connection->execute($sql); + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Mysql::getForeignKey + * + * @test + * @issue https://github.com/phalcon/cphalcon/issues/556 + * @author Sergii Svyrydenko + * @since 2017-07-03 + */ + public function shouldCheckAddedForeignKey(IntegrationTester $I) + { + $examples = [ + [$this->getForeignKeySql('test_name_key'), true], + [$this->getForeignKeySql('foreign_key_child_ibfk_1'), true], + ]; + + foreach ($examples as $item) { + $sql = $item[0]; + $expected = $item[1]; + $actual = $this->connection->execute($sql, ['MYSQL_ATTR_USE_BUFFERED_QUERY']); + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Mysql::dropAddForeignKey + * + * @test + * @issue https://github.com/phalcon/cphalcon/issues/556 + * @author Sergii Svyrydenko + * @since 2017-07-03 + */ + public function shouldDropForeignKey(IntegrationTester $I) + { + $examples = [ + [$this->dropForeignKeySql('test_name_key'), true], + [$this->dropForeignKeySql('foreign_key_child_ibfk_1'), true], + ]; + + foreach ($examples as $item) { + $sql = $item[0]; + $expected = $item[1]; + $actual = $this->connection->execute($sql); + $I->assertEquals($expected, $actual); + } + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/AddColumnCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/AddColumnCest.php new file mode 100644 index 00000000000..b149c31d83e --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/AddColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class AddColumnCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: addColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlAddColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - addColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/AddForeignKeyCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/AddForeignKeyCest.php new file mode 100644 index 00000000000..c4e83f73cca --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/AddForeignKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class AddForeignKeyCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: addForeignKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlAddForeignKey(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - addForeignKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/AddIndexCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/AddIndexCest.php new file mode 100644 index 00000000000..ba8c34a775b --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/AddIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class AddIndexCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: addIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlAddIndex(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - addIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/AddPrimaryKeyCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/AddPrimaryKeyCest.php new file mode 100644 index 00000000000..fe1244e3c16 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/AddPrimaryKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class AddPrimaryKeyCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: addPrimaryKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlAddPrimaryKey(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - addPrimaryKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/AffectedRowsCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/AffectedRowsCest.php new file mode 100644 index 00000000000..cf88937b145 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/AffectedRowsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class AffectedRowsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: affectedRows() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlAffectedRows(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - affectedRows()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/BeginCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/BeginCest.php new file mode 100644 index 00000000000..84770269b72 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/BeginCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class BeginCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: begin() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlBegin(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - begin()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/CloseCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/CloseCest.php new file mode 100644 index 00000000000..4d553e4d2f1 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/CloseCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class CloseCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: close() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlClose(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - close()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/CommitCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/CommitCest.php new file mode 100644 index 00000000000..ca4e0326f4f --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/CommitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class CommitCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: commit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlCommit(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - commit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/ConnectCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/ConnectCest.php new file mode 100644 index 00000000000..2b3709a284e --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/ConnectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class ConnectCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: connect() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlConnect(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - connect()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/ConstructCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/ConstructCest.php new file mode 100644 index 00000000000..bf88f328617 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlConstruct(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/ConvertBoundParamsCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/ConvertBoundParamsCest.php new file mode 100644 index 00000000000..13deac704cd --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/ConvertBoundParamsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class ConvertBoundParamsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: convertBoundParams() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlConvertBoundParams(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - convertBoundParams()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/CreateSavepointCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/CreateSavepointCest.php new file mode 100644 index 00000000000..f5666458e33 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/CreateSavepointCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class CreateSavepointCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: createSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlCreateSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - createSavepoint()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/CreateTableCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/CreateTableCest.php new file mode 100644 index 00000000000..501df00bd4c --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/CreateTableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class CreateTableCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: createTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlCreateTable(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - createTable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/CreateViewCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/CreateViewCest.php new file mode 100644 index 00000000000..fb8e09b1fa2 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/CreateViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class CreateViewCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: createView() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlCreateView(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - createView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/DeleteCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/DeleteCest.php new file mode 100644 index 00000000000..7e0ec6ddf8c --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/DeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class DeleteCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: delete() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlDelete(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - delete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/DescribeColumnsCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/DescribeColumnsCest.php new file mode 100644 index 00000000000..8dd0e8e887d --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/DescribeColumnsCest.php @@ -0,0 +1,86 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\PostgresqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Db\Column; + +class DescribeColumnsCest +{ + use DiTrait; + use PostgresqlTrait; + + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: describeColumns() + * + * @param IntegrationTester $I + * + * @issue https://github.com/phalcon/phalcon-devtools/issues/853 + * + * @author Phalcon Team + * @since 2016-09-28 + */ + public function dbAdapterPdoPostgresqlDescribeColumns(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - describeColumns()"); + $expected = [ + Column::__set_state( + [ + '_columnName' => 'id', + '_schemaName' => null, + '_type' => 14, + '_typeReference' => -1, + '_typeValues' => null, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => "nextval('images_id_seq'::regclass)", + '_unsigned' => false, + '_notNull' => true, + '_primary' => false, + '_autoIncrement' => true, + '_first' => true, + '_after' => null, + '_bindType' => 1, + ] + ), + Column::__set_state( + [ + '_columnName' => 'base64', + '_schemaName' => null, + '_type' => 6, + '_typeReference' => -1, + '_typeValues' => null, + '_isNumeric' => false, + '_size' => null, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_primary' => false, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'id', + '_bindType' => 2, + ] + ), + ]; + + $actual = $this->connection->describeColumns('images'); + $I->assertEquals($expected, $actual); + + $actual = $this->connection->describeColumns('images', env('DATA_POSTGRES_SCHEMA')); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/DescribeIndexesCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/DescribeIndexesCest.php new file mode 100644 index 00000000000..f1653ba1460 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/DescribeIndexesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class DescribeIndexesCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: describeIndexes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlDescribeIndexes(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - describeIndexes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/DescribeReferencesCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/DescribeReferencesCest.php new file mode 100644 index 00000000000..b2cf39ba01f --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/DescribeReferencesCest.php @@ -0,0 +1,46 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\PostgresqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class DescribeReferencesCest +{ + use DiTrait; + use PostgresqlTrait; + + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: describeReferences() + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-09-28 + */ + public function dbAdapterPdoPostgresqlDescribeReferences(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - describeReferences()"); + + $referencesNoSchema = $this->connection->describeReferences('robots_parts'); + $referencesSchema = $this->connection->describeReferences('robots_parts', env('DATA_POSTGRES_SCHEMA')); + + $I->assertEquals($referencesNoSchema, $referencesSchema); + + $I->assertCount(2, $referencesNoSchema); + + foreach ($referencesNoSchema as $reference) { + $I->assertCount(1, $reference->getColumns()); + } + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/DropColumnCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/DropColumnCest.php new file mode 100644 index 00000000000..aa9dbab60ca --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/DropColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class DropColumnCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: dropColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlDropColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - dropColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/DropForeignKeyCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/DropForeignKeyCest.php new file mode 100644 index 00000000000..600cbb04adc --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/DropForeignKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class DropForeignKeyCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: dropForeignKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlDropForeignKey(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - dropForeignKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/DropIndexCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/DropIndexCest.php new file mode 100644 index 00000000000..2f5da5c417d --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/DropIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class DropIndexCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: dropIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlDropIndex(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - dropIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/DropPrimaryKeyCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/DropPrimaryKeyCest.php new file mode 100644 index 00000000000..9058c0821b6 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/DropPrimaryKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class DropPrimaryKeyCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: dropPrimaryKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlDropPrimaryKey(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - dropPrimaryKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/DropTableCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/DropTableCest.php new file mode 100644 index 00000000000..4258ae860b6 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/DropTableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class DropTableCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: dropTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlDropTable(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - dropTable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/DropViewCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/DropViewCest.php new file mode 100644 index 00000000000..3a5451da6b9 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/DropViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class DropViewCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: dropView() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlDropView(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - dropView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/EscapeIdentifierCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/EscapeIdentifierCest.php new file mode 100644 index 00000000000..5d104e56be1 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/EscapeIdentifierCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class EscapeIdentifierCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: escapeIdentifier() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlEscapeIdentifier(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - escapeIdentifier()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/EscapeStringCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/EscapeStringCest.php new file mode 100644 index 00000000000..5c4a196a3b3 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/EscapeStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class EscapeStringCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: escapeString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlEscapeString(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - escapeString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/ExecuteCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/ExecuteCest.php new file mode 100644 index 00000000000..78e0237cf0c --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/ExecuteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class ExecuteCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: execute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlExecute(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - execute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/ExecutePreparedCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/ExecutePreparedCest.php new file mode 100644 index 00000000000..616f7b7f0d0 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/ExecutePreparedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class ExecutePreparedCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: executePrepared() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlExecutePrepared(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - executePrepared()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/FetchAllCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/FetchAllCest.php new file mode 100644 index 00000000000..17b49ad0619 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/FetchAllCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class FetchAllCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: fetchAll() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlFetchAll(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - fetchAll()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/FetchColumnCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/FetchColumnCest.php new file mode 100644 index 00000000000..0d2402e72a0 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/FetchColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class FetchColumnCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: fetchColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlFetchColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - fetchColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/FetchOneCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/FetchOneCest.php new file mode 100644 index 00000000000..5dbf18b88ff --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/FetchOneCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class FetchOneCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: fetchOne() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlFetchOne(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - fetchOne()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/ForUpdateCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/ForUpdateCest.php new file mode 100644 index 00000000000..afda3a61fa4 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/ForUpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class ForUpdateCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: forUpdate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlForUpdate(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - forUpdate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/GetColumnDefinitionCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/GetColumnDefinitionCest.php new file mode 100644 index 00000000000..83a04a7ce41 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/GetColumnDefinitionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class GetColumnDefinitionCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: getColumnDefinition() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlGetColumnDefinition(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - getColumnDefinition()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/GetColumnListCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/GetColumnListCest.php new file mode 100644 index 00000000000..14e59a9e61c --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/GetColumnListCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class GetColumnListCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: getColumnList() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlGetColumnList(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - getColumnList()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/GetConnectionIdCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/GetConnectionIdCest.php new file mode 100644 index 00000000000..afc6df64007 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/GetConnectionIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class GetConnectionIdCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: getConnectionId() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlGetConnectionId(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - getConnectionId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/GetDefaultIdValueCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/GetDefaultIdValueCest.php new file mode 100644 index 00000000000..51e304a360a --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/GetDefaultIdValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class GetDefaultIdValueCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: getDefaultIdValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlGetDefaultIdValue(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - getDefaultIdValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/GetDefaultValueCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/GetDefaultValueCest.php new file mode 100644 index 00000000000..af0930be05d --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/GetDefaultValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class GetDefaultValueCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: getDefaultValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlGetDefaultValue(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - getDefaultValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/GetDescriptorCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/GetDescriptorCest.php new file mode 100644 index 00000000000..adf136a8f4a --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/GetDescriptorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class GetDescriptorCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: getDescriptor() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlGetDescriptor(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - getDescriptor()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/GetDialectCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/GetDialectCest.php new file mode 100644 index 00000000000..c54444aec36 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/GetDialectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class GetDialectCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: getDialect() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlGetDialect(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - getDialect()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/GetDialectTypeCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/GetDialectTypeCest.php new file mode 100644 index 00000000000..d2921e7bc38 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/GetDialectTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class GetDialectTypeCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: getDialectType() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlGetDialectType(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - getDialectType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/GetErrorInfoCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/GetErrorInfoCest.php new file mode 100644 index 00000000000..27983c01211 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/GetErrorInfoCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class GetErrorInfoCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: getErrorInfo() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlGetErrorInfo(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - getErrorInfo()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/GetEventsManagerCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/GetEventsManagerCest.php new file mode 100644 index 00000000000..ec9c0d7395f --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: getEventsManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlGetEventsManager(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/GetInternalHandlerCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/GetInternalHandlerCest.php new file mode 100644 index 00000000000..41a9861c1cf --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/GetInternalHandlerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class GetInternalHandlerCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: getInternalHandler() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlGetInternalHandler(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - getInternalHandler()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/GetNestedTransactionSavepointNameCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/GetNestedTransactionSavepointNameCest.php new file mode 100644 index 00000000000..b0f957aa469 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/GetNestedTransactionSavepointNameCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class GetNestedTransactionSavepointNameCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: + * getNestedTransactionSavepointName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlGetNestedTransactionSavepointName(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - getNestedTransactionSavepointName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/GetRealSQLStatementCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/GetRealSQLStatementCest.php new file mode 100644 index 00000000000..42fbc3e47e5 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/GetRealSQLStatementCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class GetRealSQLStatementCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: getRealSQLStatement() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlGetRealSQLStatement(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - getRealSQLStatement()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/GetSQLBindTypesCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/GetSQLBindTypesCest.php new file mode 100644 index 00000000000..1a4b2f91b5b --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/GetSQLBindTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class GetSQLBindTypesCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: getSQLBindTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlGetSQLBindTypes(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - getSQLBindTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/GetSQLStatementCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/GetSQLStatementCest.php new file mode 100644 index 00000000000..a44354aefd2 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/GetSQLStatementCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class GetSQLStatementCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: getSQLStatement() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlGetSQLStatement(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - getSQLStatement()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/GetSqlVariablesCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/GetSqlVariablesCest.php new file mode 100644 index 00000000000..b6771994302 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/GetSqlVariablesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class GetSqlVariablesCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: getSqlVariables() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlGetSqlVariables(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - getSqlVariables()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/GetTransactionLevelCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/GetTransactionLevelCest.php new file mode 100644 index 00000000000..e889ff361cb --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/GetTransactionLevelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class GetTransactionLevelCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: getTransactionLevel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlGetTransactionLevel(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - getTransactionLevel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/GetTypeCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/GetTypeCest.php new file mode 100644 index 00000000000..aeb341f54b3 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/GetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class GetTypeCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: getType() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlGetType(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - getType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/InsertAsDictCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/InsertAsDictCest.php new file mode 100644 index 00000000000..52c4a7ce517 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/InsertAsDictCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class InsertAsDictCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: insertAsDict() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlInsertAsDict(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - insertAsDict()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/InsertCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/InsertCest.php new file mode 100644 index 00000000000..e143c3e227c --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/InsertCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class InsertCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: insert() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlInsert(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - insert()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/IsNestedTransactionsWithSavepointsCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/IsNestedTransactionsWithSavepointsCest.php new file mode 100644 index 00000000000..21ad9dc44b4 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/IsNestedTransactionsWithSavepointsCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class IsNestedTransactionsWithSavepointsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: + * isNestedTransactionsWithSavepoints() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlIsNestedTransactionsWithSavepoints(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - isNestedTransactionsWithSavepoints()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/IsUnderTransactionCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/IsUnderTransactionCest.php new file mode 100644 index 00000000000..65bac1f681d --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/IsUnderTransactionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class IsUnderTransactionCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: isUnderTransaction() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlIsUnderTransaction(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - isUnderTransaction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/LastInsertIdCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/LastInsertIdCest.php new file mode 100644 index 00000000000..33d78a91166 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/LastInsertIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class LastInsertIdCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: lastInsertId() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlLastInsertId(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - lastInsertId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/LimitCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/LimitCest.php new file mode 100644 index 00000000000..edd927c59b2 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/LimitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class LimitCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: limit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlLimit(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - limit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/ListTablesCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/ListTablesCest.php new file mode 100644 index 00000000000..039873a9998 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/ListTablesCest.php @@ -0,0 +1,67 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\PostgresqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class ListTablesCest +{ + use DiTrait; + use PostgresqlTrait; + + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: listTables() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlListTables(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - listTables()"); + $I->skipTest("Need implementation"); + $expected = $this->getListTables(); + $I->assertEquals($expected, $this->connection->listTables()); + $I->assertEquals($expected, $this->connection->listTables($this->getSchemaName())); + } + + /** + * Returns the list of the tables in the database + * + * @return array + */ + private function getListTables(): array + { + return [ + 'customers', + 'dialect_table', + 'dialect_table_intermediate', + 'dialect_table_remote', + 'foreign_key_child', + 'foreign_key_parent', + 'images', + 'parts', + 'personas', + 'personnes', + 'ph_select', + 'prueba', + 'robots', + 'robots_parts', + 'subscriptores', + 'table_with_string_field', + 'tipo_documento', + ]; + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/ListViewsCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/ListViewsCest.php new file mode 100644 index 00000000000..a2589444150 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/ListViewsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class ListViewsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: listViews() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlListViews(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - listViews()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/ModifyColumnCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/ModifyColumnCest.php new file mode 100644 index 00000000000..fc7ec4aa907 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/ModifyColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class ModifyColumnCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: modifyColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlModifyColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - modifyColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/PrepareCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/PrepareCest.php new file mode 100644 index 00000000000..5bc6c44c0cc --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/PrepareCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class PrepareCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: prepare() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlPrepare(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - prepare()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/QueryCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/QueryCest.php new file mode 100644 index 00000000000..be2080886dc --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/QueryCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class QueryCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: query() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlQuery(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - query()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/ReleaseSavepointCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/ReleaseSavepointCest.php new file mode 100644 index 00000000000..042f526df0c --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/ReleaseSavepointCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class ReleaseSavepointCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: releaseSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlReleaseSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - releaseSavepoint()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/RollbackCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/RollbackCest.php new file mode 100644 index 00000000000..adea06f7150 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/RollbackCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class RollbackCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: rollback() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlRollback(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - rollback()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/RollbackSavepointCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/RollbackSavepointCest.php new file mode 100644 index 00000000000..614f89e07a8 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/RollbackSavepointCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class RollbackSavepointCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: rollbackSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlRollbackSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - rollbackSavepoint()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/SetDialectCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/SetDialectCest.php new file mode 100644 index 00000000000..d4aff72a738 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/SetDialectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class SetDialectCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: setDialect() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlSetDialect(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - setDialect()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/SetEventsManagerCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/SetEventsManagerCest.php new file mode 100644 index 00000000000..ea600b1ecf3 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: setEventsManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlSetEventsManager(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/SetNestedTransactionsWithSavepointsCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/SetNestedTransactionsWithSavepointsCest.php new file mode 100644 index 00000000000..b5fafeacc93 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/SetNestedTransactionsWithSavepointsCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class SetNestedTransactionsWithSavepointsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: + * setNestedTransactionsWithSavepoints() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlSetNestedTransactionsWithSavepoints(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - setNestedTransactionsWithSavepoints()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/SharedLockCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/SharedLockCest.php new file mode 100644 index 00000000000..5b43dff1109 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/SharedLockCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class SharedLockCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: sharedLock() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlSharedLock(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - sharedLock()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/SupportSequencesCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/SupportSequencesCest.php new file mode 100644 index 00000000000..82a4b9d2588 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/SupportSequencesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class SupportSequencesCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: supportSequences() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlSupportSequences(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - supportSequences()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/TableExistsCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/TableExistsCest.php new file mode 100644 index 00000000000..0105916747a --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/TableExistsCest.php @@ -0,0 +1,41 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\PostgresqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class TableExistsCest +{ + use DiTrait; + use PostgresqlTrait; + + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: tableExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlTableExists(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - tableExists()"); + + $table = 'dialect_table'; + $I->assertTrue($this->connection->tableExists($table)); + $I->assertFalse($this->connection->tableExists('unknown-table')); + $I->assertTrue($this->connection->tableExists($table, $this->getSchemaName())); + $I->assertFalse($this->connection->tableExists('unknown-table', 'unknown-db')); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/TableOptionsCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/TableOptionsCest.php new file mode 100644 index 00000000000..3f3724d549d --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/TableOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class TableOptionsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: tableOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlTableOptions(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - tableOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/UpdateAsDictCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/UpdateAsDictCest.php new file mode 100644 index 00000000000..e920646a8f9 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/UpdateAsDictCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class UpdateAsDictCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: updateAsDict() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlUpdateAsDict(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - updateAsDict()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/UpdateCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/UpdateCest.php new file mode 100644 index 00000000000..762dc197e81 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/UpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class UpdateCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: update() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlUpdate(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - update()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/UseExplicitIdValueCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/UseExplicitIdValueCest.php new file mode 100644 index 00000000000..e052504a9a7 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/UseExplicitIdValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class UseExplicitIdValueCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: useExplicitIdValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlUseExplicitIdValue(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - useExplicitIdValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Postgresql/ViewExistsCest.php b/tests/integration/Db/Adapter/Pdo/Postgresql/ViewExistsCest.php new file mode 100644 index 00000000000..50cab3f81ce --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Postgresql/ViewExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; + +use IntegrationTester; + +class ViewExistsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Postgresql :: viewExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoPostgresqlViewExists(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Postgresql - viewExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/PostgresqlCest.php b/tests/integration/Db/Adapter/Pdo/PostgresqlCest.php new file mode 100644 index 00000000000..f23b0e47a41 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/PostgresqlCest.php @@ -0,0 +1,165 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo; + +use function env; +use IntegrationTester; +use Phalcon\Db\Adapter\Pdo\Postgresql; +use Phalcon\Db\Column; +use Phalcon\Db\Dialect\Postgresql as DialectPostgresql; +use Phalcon\Db\Reference; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class PostgresqlCest +{ + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + $this->setDiPostgresql(); + } + + /** + * Tests Postgresql::describeReferences + * + * @author Sergii Svyrydenko + * @since 2017-08-18 + */ + public function shouldCreateReferenceObject(IntegrationTester $I) + { + $expected = $this->getReferenceObject(); + $connection = $this->getService('db'); + $actual = $connection->describeReferences('foreign_key_child', 'public'); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Postgresql::addForeignKey + * + * @author Sergii Svyrydenko + * @since 2017-07-05 + */ + public function shouldAddForeignKey(IntegrationTester $I) + { + $examples = [ + ['fk1', true], + ['fk2', true], + ]; + + foreach ($examples as $item) { + $reference = $item[0]; + $expected = $item[1]; + $dialect = new DialectPostgresql(); + $references = $this->getReferenceAddForeignKey(); + $sql = $dialect->addForeignKey('foreign_key_child', 'public', $references[$reference]); + + $connection = $this->getService('db'); + $actual = $connection->execute($sql); + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Postgresql::is created + * + * @author Sergii Svyrydenko + * @since 2017-07-05 + */ + public function shouldCheckAddedForeignKey(IntegrationTester $I) + { + $examples = [ + [$this->getForeignKey('fk1'), 1], + [$this->getForeignKey('foreign_key_child_child_int_fkey'), 1], + ]; + + foreach ($examples as $item) { + $sql = $item[0]; + $expected = $item[1]; + + $connection = $this->getService('db'); + $actual = $connection->execute($sql); + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Postgresql::dropAddForeignKey + * + * @test + * @author Sergii Svyrydenko + * @since 2017-07-05 + */ + public function shouldDropForeignKey(IntegrationTester $I) + { + $examples = [ + ['fk1', true], + ['foreign_key_child_child_int_fkey', true], + ]; + + foreach ($examples as $item) { + $reference = $item[0]; + $expected = $item[1]; + $dialect = new DialectPostgresql(); + $sql = $dialect->dropForeignKey('foreign_key_child', 'public', $reference); + + $connection = $this->getService('db'); + $actual = $connection->execute($sql); + $I->assertEquals($expected, $actual); + } + } + + + private function getForeignKey($foreignKeyName) + { + $sql = rtrim(file_get_contents(dataFolder('fixtures/Db/postgresql/example9.sql'))); + str_replace('%_FK_%', $foreignKeyName, $sql); + + return $sql; + } + + protected function getReferenceAddForeignKey() + { + return [ + 'fk1' => new Reference('fk1', [ + 'referencedTable' => 'foreign_key_parent', + 'columns' => ['child_int'], + 'referencedColumns' => ['refer_int'], + 'onDelete' => 'CASCADE', + 'onUpdate' => 'RESTRICT', + ]), + 'fk2' => new Reference('', [ + 'referencedTable' => 'foreign_key_parent', + 'columns' => ['child_int'], + 'referencedColumns' => ['refer_int'] + ]) + ]; + } + + private function getReferenceObject() + { + return [ + 'test_describereferences' => new Reference( + 'test_describereferences', + [ + 'referencedTable' => 'foreign_key_parent', + 'referencedSchema' => env('DATA_POSTGRES_NAME'), + 'columns' => ['child_int'], + 'referencedColumns' => ['refer_int'], + 'onUpdate' => 'CASCADE', + 'onDelete' => 'RESTRICT', + ] + ) + ]; + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/AddColumnCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/AddColumnCest.php new file mode 100644 index 00000000000..ff79268c3c3 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/AddColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class AddColumnCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: addColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteAddColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - addColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/AddForeignKeyCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/AddForeignKeyCest.php new file mode 100644 index 00000000000..9a1aa667c4b --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/AddForeignKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class AddForeignKeyCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: addForeignKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteAddForeignKey(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - addForeignKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/AddIndexCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/AddIndexCest.php new file mode 100644 index 00000000000..e030e42f334 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/AddIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class AddIndexCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: addIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteAddIndex(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - addIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/AddPrimaryKeyCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/AddPrimaryKeyCest.php new file mode 100644 index 00000000000..1d430264e0d --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/AddPrimaryKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class AddPrimaryKeyCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: addPrimaryKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteAddPrimaryKey(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - addPrimaryKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/AffectedRowsCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/AffectedRowsCest.php new file mode 100644 index 00000000000..c3d9f04a6a5 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/AffectedRowsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class AffectedRowsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: affectedRows() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteAffectedRows(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - affectedRows()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/BeginCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/BeginCest.php new file mode 100644 index 00000000000..6d7d6a79e65 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/BeginCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class BeginCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: begin() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteBegin(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - begin()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/CloseCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/CloseCest.php new file mode 100644 index 00000000000..0ff5df3d86e --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/CloseCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class CloseCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: close() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteClose(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - close()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/CommitCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/CommitCest.php new file mode 100644 index 00000000000..aee7c44a832 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/CommitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class CommitCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: commit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteCommit(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - commit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/ConnectCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/ConnectCest.php new file mode 100644 index 00000000000..f487f7a5f1c --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/ConnectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class ConnectCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: connect() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteConnect(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - connect()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/ConstructCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/ConstructCest.php new file mode 100644 index 00000000000..05d0ec5ffa5 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteConstruct(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/ConvertBoundParamsCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/ConvertBoundParamsCest.php new file mode 100644 index 00000000000..90fd8b8a37f --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/ConvertBoundParamsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class ConvertBoundParamsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: convertBoundParams() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteConvertBoundParams(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - convertBoundParams()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/CreateSavepointCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/CreateSavepointCest.php new file mode 100644 index 00000000000..68643c18b09 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/CreateSavepointCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class CreateSavepointCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: createSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteCreateSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - createSavepoint()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/CreateTableCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/CreateTableCest.php new file mode 100644 index 00000000000..18c1b03756c --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/CreateTableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class CreateTableCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: createTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteCreateTable(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - createTable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/CreateViewCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/CreateViewCest.php new file mode 100644 index 00000000000..6fc4a2d660d --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/CreateViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class CreateViewCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: createView() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteCreateView(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - createView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/DeleteCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/DeleteCest.php new file mode 100644 index 00000000000..d2d0d39ef01 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/DeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class DeleteCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: delete() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteDelete(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - delete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/DescribeColumnsCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/DescribeColumnsCest.php new file mode 100644 index 00000000000..d96b799771b --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/DescribeColumnsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class DescribeColumnsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: describeColumns() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteDescribeColumns(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - describeColumns()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/DescribeIndexesCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/DescribeIndexesCest.php new file mode 100644 index 00000000000..c44421e141d --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/DescribeIndexesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class DescribeIndexesCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: describeIndexes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteDescribeIndexes(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - describeIndexes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/DescribeReferencesCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/DescribeReferencesCest.php new file mode 100644 index 00000000000..2d5917f2884 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/DescribeReferencesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class DescribeReferencesCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: describeReferences() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteDescribeReferences(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - describeReferences()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/DropColumnCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/DropColumnCest.php new file mode 100644 index 00000000000..fcca25fa9c5 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/DropColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class DropColumnCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: dropColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteDropColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - dropColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/DropForeignKeyCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/DropForeignKeyCest.php new file mode 100644 index 00000000000..7474a2e71a3 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/DropForeignKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class DropForeignKeyCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: dropForeignKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteDropForeignKey(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - dropForeignKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/DropIndexCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/DropIndexCest.php new file mode 100644 index 00000000000..8d01ad364c7 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/DropIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class DropIndexCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: dropIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteDropIndex(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - dropIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/DropPrimaryKeyCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/DropPrimaryKeyCest.php new file mode 100644 index 00000000000..52b4bb88869 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/DropPrimaryKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class DropPrimaryKeyCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: dropPrimaryKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteDropPrimaryKey(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - dropPrimaryKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/DropTableCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/DropTableCest.php new file mode 100644 index 00000000000..d4081b95ca1 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/DropTableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class DropTableCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: dropTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteDropTable(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - dropTable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/DropViewCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/DropViewCest.php new file mode 100644 index 00000000000..ad16973e6f3 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/DropViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class DropViewCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: dropView() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteDropView(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - dropView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/EscapeIdentifierCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/EscapeIdentifierCest.php new file mode 100644 index 00000000000..ff93aa347df --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/EscapeIdentifierCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class EscapeIdentifierCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: escapeIdentifier() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteEscapeIdentifier(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - escapeIdentifier()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/EscapeStringCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/EscapeStringCest.php new file mode 100644 index 00000000000..a3d4f01cfb7 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/EscapeStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class EscapeStringCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: escapeString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteEscapeString(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - escapeString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/ExecuteCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/ExecuteCest.php new file mode 100644 index 00000000000..20c3a008890 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/ExecuteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class ExecuteCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: execute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteExecute(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - execute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/ExecutePreparedCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/ExecutePreparedCest.php new file mode 100644 index 00000000000..dd278c81439 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/ExecutePreparedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class ExecutePreparedCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: executePrepared() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteExecutePrepared(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - executePrepared()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/FetchAllCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/FetchAllCest.php new file mode 100644 index 00000000000..305d6b68e9f --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/FetchAllCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class FetchAllCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: fetchAll() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteFetchAll(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - fetchAll()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/FetchColumnCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/FetchColumnCest.php new file mode 100644 index 00000000000..af0f4161c2a --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/FetchColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class FetchColumnCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: fetchColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteFetchColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - fetchColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/FetchOneCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/FetchOneCest.php new file mode 100644 index 00000000000..7fd3af4b021 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/FetchOneCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class FetchOneCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: fetchOne() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteFetchOne(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - fetchOne()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/ForUpdateCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/ForUpdateCest.php new file mode 100644 index 00000000000..c9642675a1d --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/ForUpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class ForUpdateCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: forUpdate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteForUpdate(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - forUpdate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/GetColumnDefinitionCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/GetColumnDefinitionCest.php new file mode 100644 index 00000000000..945bfc808fa --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/GetColumnDefinitionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class GetColumnDefinitionCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: getColumnDefinition() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteGetColumnDefinition(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - getColumnDefinition()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/GetColumnListCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/GetColumnListCest.php new file mode 100644 index 00000000000..1ffc8a9611a --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/GetColumnListCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class GetColumnListCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: getColumnList() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteGetColumnList(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - getColumnList()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/GetConnectionIdCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/GetConnectionIdCest.php new file mode 100644 index 00000000000..1afb8966883 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/GetConnectionIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class GetConnectionIdCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: getConnectionId() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteGetConnectionId(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - getConnectionId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/GetDefaultIdValueCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/GetDefaultIdValueCest.php new file mode 100644 index 00000000000..bd5128fc2e0 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/GetDefaultIdValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class GetDefaultIdValueCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: getDefaultIdValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteGetDefaultIdValue(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - getDefaultIdValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/GetDefaultValueCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/GetDefaultValueCest.php new file mode 100644 index 00000000000..30e5dfe7c5d --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/GetDefaultValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class GetDefaultValueCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: getDefaultValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteGetDefaultValue(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - getDefaultValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/GetDescriptorCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/GetDescriptorCest.php new file mode 100644 index 00000000000..8a9a7954e2c --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/GetDescriptorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class GetDescriptorCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: getDescriptor() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteGetDescriptor(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - getDescriptor()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/GetDialectCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/GetDialectCest.php new file mode 100644 index 00000000000..a9fde0ae40f --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/GetDialectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class GetDialectCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: getDialect() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteGetDialect(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - getDialect()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/GetDialectTypeCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/GetDialectTypeCest.php new file mode 100644 index 00000000000..fdc445ef9cb --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/GetDialectTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class GetDialectTypeCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: getDialectType() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteGetDialectType(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - getDialectType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/GetErrorInfoCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/GetErrorInfoCest.php new file mode 100644 index 00000000000..e48e487c127 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/GetErrorInfoCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class GetErrorInfoCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: getErrorInfo() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteGetErrorInfo(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - getErrorInfo()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/GetEventsManagerCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/GetEventsManagerCest.php new file mode 100644 index 00000000000..57a6842992e --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: getEventsManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteGetEventsManager(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/GetInternalHandlerCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/GetInternalHandlerCest.php new file mode 100644 index 00000000000..bb0cf582385 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/GetInternalHandlerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class GetInternalHandlerCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: getInternalHandler() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteGetInternalHandler(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - getInternalHandler()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/GetNestedTransactionSavepointNameCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/GetNestedTransactionSavepointNameCest.php new file mode 100644 index 00000000000..d213383132c --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/GetNestedTransactionSavepointNameCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class GetNestedTransactionSavepointNameCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: + * getNestedTransactionSavepointName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteGetNestedTransactionSavepointName(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - getNestedTransactionSavepointName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/GetRealSQLStatementCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/GetRealSQLStatementCest.php new file mode 100644 index 00000000000..48c4888230b --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/GetRealSQLStatementCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class GetRealSQLStatementCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: getRealSQLStatement() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteGetRealSQLStatement(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - getRealSQLStatement()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/GetSQLBindTypesCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/GetSQLBindTypesCest.php new file mode 100644 index 00000000000..e463685f84b --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/GetSQLBindTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class GetSQLBindTypesCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: getSQLBindTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteGetSQLBindTypes(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - getSQLBindTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/GetSQLStatementCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/GetSQLStatementCest.php new file mode 100644 index 00000000000..96102e7a05f --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/GetSQLStatementCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class GetSQLStatementCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: getSQLStatement() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteGetSQLStatement(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - getSQLStatement()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/GetSqlVariablesCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/GetSqlVariablesCest.php new file mode 100644 index 00000000000..b1ca22dd535 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/GetSqlVariablesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class GetSqlVariablesCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: getSqlVariables() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteGetSqlVariables(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - getSqlVariables()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/GetTransactionLevelCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/GetTransactionLevelCest.php new file mode 100644 index 00000000000..7cf23487d30 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/GetTransactionLevelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class GetTransactionLevelCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: getTransactionLevel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteGetTransactionLevel(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - getTransactionLevel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/GetTypeCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/GetTypeCest.php new file mode 100644 index 00000000000..c1d0abc5186 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/GetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class GetTypeCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: getType() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteGetType(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - getType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/InsertAsDictCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/InsertAsDictCest.php new file mode 100644 index 00000000000..8513bad8a7c --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/InsertAsDictCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class InsertAsDictCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: insertAsDict() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteInsertAsDict(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - insertAsDict()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/InsertCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/InsertCest.php new file mode 100644 index 00000000000..86b566f0c6d --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/InsertCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class InsertCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: insert() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteInsert(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - insert()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/IsNestedTransactionsWithSavepointsCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/IsNestedTransactionsWithSavepointsCest.php new file mode 100644 index 00000000000..67a68db3c97 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/IsNestedTransactionsWithSavepointsCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class IsNestedTransactionsWithSavepointsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: + * isNestedTransactionsWithSavepoints() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteIsNestedTransactionsWithSavepoints(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - isNestedTransactionsWithSavepoints()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/IsUnderTransactionCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/IsUnderTransactionCest.php new file mode 100644 index 00000000000..de1c52560b3 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/IsUnderTransactionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class IsUnderTransactionCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: isUnderTransaction() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteIsUnderTransaction(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - isUnderTransaction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/LastInsertIdCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/LastInsertIdCest.php new file mode 100644 index 00000000000..57bfba09edd --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/LastInsertIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class LastInsertIdCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: lastInsertId() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteLastInsertId(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - lastInsertId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/LimitCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/LimitCest.php new file mode 100644 index 00000000000..e05145836fc --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/LimitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class LimitCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: limit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteLimit(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - limit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/ListTablesCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/ListTablesCest.php new file mode 100644 index 00000000000..82d67026a03 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/ListTablesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class ListTablesCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: listTables() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteListTables(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - listTables()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/ListViewsCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/ListViewsCest.php new file mode 100644 index 00000000000..7aca01780ed --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/ListViewsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class ListViewsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: listViews() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteListViews(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - listViews()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/ModifyColumnCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/ModifyColumnCest.php new file mode 100644 index 00000000000..935d923f2b7 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/ModifyColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class ModifyColumnCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: modifyColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteModifyColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - modifyColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/PrepareCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/PrepareCest.php new file mode 100644 index 00000000000..3e04e9535be --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/PrepareCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class PrepareCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: prepare() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqlitePrepare(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - prepare()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/QueryCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/QueryCest.php new file mode 100644 index 00000000000..486125ca630 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/QueryCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class QueryCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: query() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteQuery(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - query()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/ReleaseSavepointCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/ReleaseSavepointCest.php new file mode 100644 index 00000000000..8a2c86d722e --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/ReleaseSavepointCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class ReleaseSavepointCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: releaseSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteReleaseSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - releaseSavepoint()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/RollbackCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/RollbackCest.php new file mode 100644 index 00000000000..260bb0f2dff --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/RollbackCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class RollbackCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: rollback() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteRollback(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - rollback()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/RollbackSavepointCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/RollbackSavepointCest.php new file mode 100644 index 00000000000..9bd09b72409 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/RollbackSavepointCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class RollbackSavepointCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: rollbackSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteRollbackSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - rollbackSavepoint()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/SetDialectCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/SetDialectCest.php new file mode 100644 index 00000000000..511ee0c1983 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/SetDialectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class SetDialectCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: setDialect() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteSetDialect(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - setDialect()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/SetEventsManagerCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/SetEventsManagerCest.php new file mode 100644 index 00000000000..ad999d1b5b3 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: setEventsManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteSetEventsManager(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/SetNestedTransactionsWithSavepointsCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/SetNestedTransactionsWithSavepointsCest.php new file mode 100644 index 00000000000..77713c7cb96 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/SetNestedTransactionsWithSavepointsCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class SetNestedTransactionsWithSavepointsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: + * setNestedTransactionsWithSavepoints() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteSetNestedTransactionsWithSavepoints(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - setNestedTransactionsWithSavepoints()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/SharedLockCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/SharedLockCest.php new file mode 100644 index 00000000000..88274235afb --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/SharedLockCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class SharedLockCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: sharedLock() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteSharedLock(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - sharedLock()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/SupportSequencesCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/SupportSequencesCest.php new file mode 100644 index 00000000000..e460734b267 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/SupportSequencesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class SupportSequencesCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: supportSequences() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteSupportSequences(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - supportSequences()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/TableExistsCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/TableExistsCest.php new file mode 100644 index 00000000000..49f6879452b --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/TableExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class TableExistsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: tableExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteTableExists(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - tableExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/TableOptionsCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/TableOptionsCest.php new file mode 100644 index 00000000000..c6e5bd4b5f7 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/TableOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class TableOptionsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: tableOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteTableOptions(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - tableOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/UpdateAsDictCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/UpdateAsDictCest.php new file mode 100644 index 00000000000..13ba6607ea1 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/UpdateAsDictCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class UpdateAsDictCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: updateAsDict() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteUpdateAsDict(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - updateAsDict()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/UpdateCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/UpdateCest.php new file mode 100644 index 00000000000..0c4721116da --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/UpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class UpdateCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: update() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteUpdate(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - update()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/UseExplicitIdValueCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/UseExplicitIdValueCest.php new file mode 100644 index 00000000000..79802f27965 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/UseExplicitIdValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class UseExplicitIdValueCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: useExplicitIdValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteUseExplicitIdValue(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - useExplicitIdValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/Pdo/Sqlite/ViewExistsCest.php b/tests/integration/Db/Adapter/Pdo/Sqlite/ViewExistsCest.php new file mode 100644 index 00000000000..6702a533d50 --- /dev/null +++ b/tests/integration/Db/Adapter/Pdo/Sqlite/ViewExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; + +use IntegrationTester; + +class ViewExistsCest +{ + /** + * Tests Phalcon\Db\Adapter\Pdo\Sqlite :: viewExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterPdoSqliteViewExists(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter\Pdo\Sqlite - viewExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/QueryCest.php b/tests/integration/Db/Adapter/QueryCest.php new file mode 100644 index 00000000000..49da7d7c76c --- /dev/null +++ b/tests/integration/Db/Adapter/QueryCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class QueryCest +{ + /** + * Tests Phalcon\Db\Adapter :: query() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterQuery(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - query()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/ReleaseSavepointCest.php b/tests/integration/Db/Adapter/ReleaseSavepointCest.php new file mode 100644 index 00000000000..51d3b540b98 --- /dev/null +++ b/tests/integration/Db/Adapter/ReleaseSavepointCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class ReleaseSavepointCest +{ + /** + * Tests Phalcon\Db\Adapter :: releaseSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterReleaseSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - releaseSavepoint()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/RollbackCest.php b/tests/integration/Db/Adapter/RollbackCest.php new file mode 100644 index 00000000000..f9647157a54 --- /dev/null +++ b/tests/integration/Db/Adapter/RollbackCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class RollbackCest +{ + /** + * Tests Phalcon\Db\Adapter :: rollback() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterRollback(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - rollback()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/RollbackSavepointCest.php b/tests/integration/Db/Adapter/RollbackSavepointCest.php new file mode 100644 index 00000000000..88eef0e4f06 --- /dev/null +++ b/tests/integration/Db/Adapter/RollbackSavepointCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class RollbackSavepointCest +{ + /** + * Tests Phalcon\Db\Adapter :: rollbackSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterRollbackSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - rollbackSavepoint()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/SetDialectCest.php b/tests/integration/Db/Adapter/SetDialectCest.php new file mode 100644 index 00000000000..1cf48920738 --- /dev/null +++ b/tests/integration/Db/Adapter/SetDialectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class SetDialectCest +{ + /** + * Tests Phalcon\Db\Adapter :: setDialect() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterSetDialect(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - setDialect()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/SetEventsManagerCest.php b/tests/integration/Db/Adapter/SetEventsManagerCest.php new file mode 100644 index 00000000000..eff0ba82de8 --- /dev/null +++ b/tests/integration/Db/Adapter/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Db\Adapter :: setEventsManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterSetEventsManager(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/SetNestedTransactionsWithSavepointsCest.php b/tests/integration/Db/Adapter/SetNestedTransactionsWithSavepointsCest.php new file mode 100644 index 00000000000..12c45e24a78 --- /dev/null +++ b/tests/integration/Db/Adapter/SetNestedTransactionsWithSavepointsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class SetNestedTransactionsWithSavepointsCest +{ + /** + * Tests Phalcon\Db\Adapter :: setNestedTransactionsWithSavepoints() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterSetNestedTransactionsWithSavepoints(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - setNestedTransactionsWithSavepoints()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/SharedLockCest.php b/tests/integration/Db/Adapter/SharedLockCest.php new file mode 100644 index 00000000000..2e3f9798eba --- /dev/null +++ b/tests/integration/Db/Adapter/SharedLockCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class SharedLockCest +{ + /** + * Tests Phalcon\Db\Adapter :: sharedLock() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterSharedLock(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - sharedLock()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/SupportSequencesCest.php b/tests/integration/Db/Adapter/SupportSequencesCest.php new file mode 100644 index 00000000000..bc050036080 --- /dev/null +++ b/tests/integration/Db/Adapter/SupportSequencesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class SupportSequencesCest +{ + /** + * Tests Phalcon\Db\Adapter :: supportSequences() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterSupportSequences(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - supportSequences()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/TableExistsCest.php b/tests/integration/Db/Adapter/TableExistsCest.php new file mode 100644 index 00000000000..cd3d2f4cefa --- /dev/null +++ b/tests/integration/Db/Adapter/TableExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class TableExistsCest +{ + /** + * Tests Phalcon\Db\Adapter :: tableExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterTableExists(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - tableExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/TableOptionsCest.php b/tests/integration/Db/Adapter/TableOptionsCest.php new file mode 100644 index 00000000000..bea3ef61256 --- /dev/null +++ b/tests/integration/Db/Adapter/TableOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class TableOptionsCest +{ + /** + * Tests Phalcon\Db\Adapter :: tableOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterTableOptions(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - tableOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/UpdateAsDictCest.php b/tests/integration/Db/Adapter/UpdateAsDictCest.php new file mode 100644 index 00000000000..5a7879f2751 --- /dev/null +++ b/tests/integration/Db/Adapter/UpdateAsDictCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class UpdateAsDictCest +{ + /** + * Tests Phalcon\Db\Adapter :: updateAsDict() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterUpdateAsDict(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - updateAsDict()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/UpdateCest.php b/tests/integration/Db/Adapter/UpdateCest.php new file mode 100644 index 00000000000..04adac2d850 --- /dev/null +++ b/tests/integration/Db/Adapter/UpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class UpdateCest +{ + /** + * Tests Phalcon\Db\Adapter :: update() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterUpdate(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - update()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/UseExplicitIdValueCest.php b/tests/integration/Db/Adapter/UseExplicitIdValueCest.php new file mode 100644 index 00000000000..f0e90b7225f --- /dev/null +++ b/tests/integration/Db/Adapter/UseExplicitIdValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class UseExplicitIdValueCest +{ + /** + * Tests Phalcon\Db\Adapter :: useExplicitIdValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterUseExplicitIdValue(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - useExplicitIdValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Adapter/ViewExistsCest.php b/tests/integration/Db/Adapter/ViewExistsCest.php new file mode 100644 index 00000000000..57127757083 --- /dev/null +++ b/tests/integration/Db/Adapter/ViewExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Adapter; + +use IntegrationTester; + +class ViewExistsCest +{ + /** + * Tests Phalcon\Db\Adapter :: viewExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbAdapterViewExists(IntegrationTester $I) + { + $I->wantToTest("Db\Adapter - viewExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Column/ConstantsCest.php b/tests/integration/Db/Column/ConstantsCest.php new file mode 100644 index 00000000000..4ac4a3094ac --- /dev/null +++ b/tests/integration/Db/Column/ConstantsCest.php @@ -0,0 +1,66 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Column; + +use Phalcon\Db\Column; +use IntegrationTester; + +class ConstantsCest +{ + /** + * Tests Phalcon\Db\Column :: constants + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-10-26 + */ + public function checkClassConstants(IntegrationTester $I) + { + $I->wantToTest("Db\Column :: constants"); + $I->assertEquals(3, Column::BIND_PARAM_BLOB); + $I->assertEquals(5, Column::BIND_PARAM_BOOL); + $I->assertEquals(32, Column::BIND_PARAM_DECIMAL); + $I->assertEquals(1, Column::BIND_PARAM_INT); + $I->assertEquals(0, Column::BIND_PARAM_NULL); + $I->assertEquals(2, Column::BIND_PARAM_STR); + $I->assertEquals(1024, Column::BIND_SKIP); + + $I->assertEquals(14, Column::TYPE_BIGINTEGER); + $I->assertEquals(19, Column::TYPE_BIT); + $I->assertEquals(11, Column::TYPE_BLOB); + $I->assertEquals(8, Column::TYPE_BOOLEAN); + $I->assertEquals(5, Column::TYPE_CHAR); + $I->assertEquals(1, Column::TYPE_DATE); + $I->assertEquals(4, Column::TYPE_DATETIME); + $I->assertEquals(3, Column::TYPE_DECIMAL); + $I->assertEquals(9, Column::TYPE_DOUBLE); + $I->assertEquals(18, Column::TYPE_ENUM); + $I->assertEquals(7, Column::TYPE_FLOAT); + $I->assertEquals(0, Column::TYPE_INTEGER); + $I->assertEquals(15, Column::TYPE_JSON); + $I->assertEquals(16, Column::TYPE_JSONB); + $I->assertEquals(13, Column::TYPE_LONGBLOB); + $I->assertEquals(24, Column::TYPE_LONGTEXT); + $I->assertEquals(12, Column::TYPE_MEDIUMBLOB); + $I->assertEquals(21, Column::TYPE_MEDIUMINTEGER); + $I->assertEquals(23, Column::TYPE_MEDIUMTEXT); + $I->assertEquals(22, Column::TYPE_SMALLINTEGER); + $I->assertEquals(6, Column::TYPE_TEXT); + $I->assertEquals(20, Column::TYPE_TIME); + $I->assertEquals(17, Column::TYPE_TIMESTAMP); + $I->assertEquals(10, Column::TYPE_TINYBLOB); + $I->assertEquals(26, Column::TYPE_TINYINTEGER); + $I->assertEquals(25, Column::TYPE_TINYTEXT); + $I->assertEquals(2, Column::TYPE_VARCHAR); + } +} diff --git a/tests/integration/Db/Column/ConstructCest.php b/tests/integration/Db/Column/ConstructCest.php new file mode 100644 index 00000000000..9578b20ad05 --- /dev/null +++ b/tests/integration/Db/Column/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Column; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Db\Column :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbColumnConstruct(IntegrationTester $I) + { + $I->wantToTest("Db\Column - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Column/GetAfterPositionCest.php b/tests/integration/Db/Column/GetAfterPositionCest.php new file mode 100644 index 00000000000..fc43278ef7c --- /dev/null +++ b/tests/integration/Db/Column/GetAfterPositionCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Column; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class GetAfterPositionCest +{ + use DiTrait; + use MysqlTrait; + + /** + * Tests Phalcon\Db\Column :: getAfterPosition() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbColumnGetAfterPosition(IntegrationTester $I) + { + $I->wantToTest("Db\Column - getAfterPosition()"); + $columns = $this->getColumns(); + $expectedColumns = $this->getExpectedColumns(); + foreach ($expectedColumns as $index => $column) { + $I->assertEquals($columns[$index]['_after'], $column->getAfterPosition()); + } + } +} diff --git a/tests/integration/Db/Column/GetBindTypeCest.php b/tests/integration/Db/Column/GetBindTypeCest.php new file mode 100644 index 00000000000..afd1a295293 --- /dev/null +++ b/tests/integration/Db/Column/GetBindTypeCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Column; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class GetBindTypeCest +{ + use DiTrait; + use MysqlTrait; + + /** + * Tests Phalcon\Db\Column :: getBindType() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbColumnGetBindType(IntegrationTester $I) + { + $I->wantToTest("Db\Column - getBindType()"); + $columns = $this->getColumns(); + $expectedColumns = $this->getExpectedColumns(); + foreach ($expectedColumns as $index => $column) { + $I->assertEquals($columns[$index]['_bindType'], $column->getBindType()); + } + } +} diff --git a/tests/integration/Db/Column/GetDefaultCest.php b/tests/integration/Db/Column/GetDefaultCest.php new file mode 100644 index 00000000000..adb6d14bdc8 --- /dev/null +++ b/tests/integration/Db/Column/GetDefaultCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Column; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class GetDefaultCest +{ + use DiTrait; + use MysqlTrait; + + /** + * Tests Phalcon\Db\Column :: getDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbColumnGetDefault(IntegrationTester $I) + { + $I->wantToTest("Db\Column - getDefault()"); + $columns = $this->getColumns(); + $expectedColumns = $this->getExpectedColumns(); + foreach ($expectedColumns as $index => $column) { + $I->assertEquals($columns[$index]['_default'], $column->getDefault()); + } + } +} diff --git a/tests/integration/Db/Column/GetNameCest.php b/tests/integration/Db/Column/GetNameCest.php new file mode 100644 index 00000000000..9c9aa524e8d --- /dev/null +++ b/tests/integration/Db/Column/GetNameCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Column; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class GetNameCest +{ + use DiTrait; + use MysqlTrait; + + /** + * Tests Phalcon\Db\Column :: getName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbColumnGetName(IntegrationTester $I) + { + $I->wantToTest("Db\Column - getName()"); + $columns = $this->getColumns(); + $expectedColumns = $this->getExpectedColumns(); + foreach ($expectedColumns as $index => $column) { + $I->assertEquals($columns[$index]['_columnName'], $column->getName()); + } + } +} diff --git a/tests/integration/Db/Column/GetScaleCest.php b/tests/integration/Db/Column/GetScaleCest.php new file mode 100644 index 00000000000..7905b480d02 --- /dev/null +++ b/tests/integration/Db/Column/GetScaleCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Column; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class GetScaleCest +{ + use DiTrait; + use MysqlTrait; + + /** + * Tests Phalcon\Db\Column :: getScale() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbColumnGetScale(IntegrationTester $I) + { + $I->wantToTest("Db\Column - getScale()"); + $columns = $this->getColumns(); + $expectedColumns = $this->getExpectedColumns(); + foreach ($expectedColumns as $index => $column) { + $I->assertEquals($columns[$index]['_scale'], $column->getScale()); + } + } +} diff --git a/tests/integration/Db/Column/GetSchemaNameCest.php b/tests/integration/Db/Column/GetSchemaNameCest.php new file mode 100644 index 00000000000..acd2126fb3c --- /dev/null +++ b/tests/integration/Db/Column/GetSchemaNameCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Column; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class GetSchemaNameCest +{ + use DiTrait; + use MysqlTrait; + + /** + * Tests Phalcon\Db\Column :: getSchemaName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbColumnGetSchemaName(IntegrationTester $I) + { + $I->wantToTest("Db\Column - getSchemaName()"); + $columns = $this->getColumns(); + $expectedColumns = $this->getExpectedColumns(); + foreach ($expectedColumns as $index => $column) { + $I->assertEquals($columns[$index]['_schemaName'], $column->getSchemaName()); + } + } +} diff --git a/tests/integration/Db/Column/GetSizeCest.php b/tests/integration/Db/Column/GetSizeCest.php new file mode 100644 index 00000000000..94504c96eb3 --- /dev/null +++ b/tests/integration/Db/Column/GetSizeCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Column; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class GetSizeCest +{ + use DiTrait; + use MysqlTrait; + + /** + * Tests Phalcon\Db\Column :: getSize() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbColumnGetSize(IntegrationTester $I) + { + $I->wantToTest("Db\Column - getSize()"); + $columns = $this->getColumns(); + $expectedColumns = $this->getExpectedColumns(); + foreach ($expectedColumns as $index => $column) { + $I->assertEquals($columns[$index]['_size'], $column->getSize()); + } + } +} diff --git a/tests/integration/Db/Column/GetTypeCest.php b/tests/integration/Db/Column/GetTypeCest.php new file mode 100644 index 00000000000..76bae93c5ec --- /dev/null +++ b/tests/integration/Db/Column/GetTypeCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Column; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class GetTypeCest +{ + use DiTrait; + use MysqlTrait; + + /** + * Tests Phalcon\Db\Column :: getType() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbColumnGetType(IntegrationTester $I) + { + $I->wantToTest("Db\Column - getType()"); + $columns = $this->getColumns(); + $expectedColumns = $this->getExpectedColumns(); + foreach ($expectedColumns as $index => $column) { + $I->assertEquals($columns[$index]['_type'], $column->getType()); + } + } +} diff --git a/tests/integration/Db/Column/GetTypeReferenceCest.php b/tests/integration/Db/Column/GetTypeReferenceCest.php new file mode 100644 index 00000000000..fa82c41876e --- /dev/null +++ b/tests/integration/Db/Column/GetTypeReferenceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Column; + +use IntegrationTester; + +class GetTypeReferenceCest +{ + /** + * Tests Phalcon\Db\Column :: getTypeReference() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbColumnGetTypeReference(IntegrationTester $I) + { + $I->wantToTest("Db\Column - getTypeReference()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Column/GetTypeValuesCest.php b/tests/integration/Db/Column/GetTypeValuesCest.php new file mode 100644 index 00000000000..0201250e82a --- /dev/null +++ b/tests/integration/Db/Column/GetTypeValuesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Column; + +use IntegrationTester; + +class GetTypeValuesCest +{ + /** + * Tests Phalcon\Db\Column :: getTypeValues() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbColumnGetTypeValues(IntegrationTester $I) + { + $I->wantToTest("Db\Column - getTypeValues()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Column/HasDefaultCest.php b/tests/integration/Db/Column/HasDefaultCest.php new file mode 100644 index 00000000000..75bf959797e --- /dev/null +++ b/tests/integration/Db/Column/HasDefaultCest.php @@ -0,0 +1,144 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Column; + +use Codeception\Example; +use IntegrationTester; +use Phalcon\Db\Column; + +class HasDefaultCest +{ + /** + * Tests Phalcon\Db\Column :: hasDefault() - Mysql + * + * @param IntegrationTester $I + * @param Example $data + * + * @dataProvider connectionProvider + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbColumnHasDefault(IntegrationTester $I, Example $data) + { + $I->wantToTest(sprintf('Db\Column - hasDefault() - %s', $data['name'])); + $columns = $data['data']; + $expected = $data['expected']; + foreach ($columns as $index => $column) { + $I->assertEquals($expected[$index], $column->hasDefault()); + } + } + + /** + * Returns the connections for each data provider + * + * @author Phalcon Team + * @since 2018-11-13 + * + * @return array + */ + private function connectionProvider() + { + return [ + [ + 'name' => 'Mysql', + 'data' => [ + 0 => Column::__set_state( + [ + '_columnName' => 'field_primary', + '_schemaName' => null, + '_type' => Column::TYPE_INTEGER, + '_isNumeric' => true, + '_size' => 11, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => true, + '_primary' => true, + '_first' => true, + '_after' => null, + '_bindType' => Column::BIND_PARAM_INT, + ] + ), + 1 => Column::__set_state( + [ + '_columnName' => 'field_bigint', + '_schemaName' => null, + '_type' => Column::TYPE_BIGINTEGER, + '_isNumeric' => true, + '_size' => 20, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_bit_default', + '_bindType' => Column::BIND_PARAM_INT, + ] + ), + ], + 'expected' => [ + 0 => false, + 1 => true, + ] + ], + [ + 'name' => 'Postgresql', + 'data' => [ + Column::__set_state( + [ + '_columnName' => 'field_primary', + '_schemaName' => null, + '_type' => Column::TYPE_INTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => "nextval('dialect_table_field_primary_seq'::regclass)", + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => true, + '_primary' => true, + '_first' => true, + '_after' => null, + '_bindType' => Column::BIND_PARAM_INT, + ] + ), + Column::__set_state( + [ + '_columnName' => 'field_bigint', + '_schemaName' => null, + '_type' => Column::TYPE_BIGINTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => 1, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_bit_default', + '_bindType' => Column::BIND_PARAM_INT, + ] + ), + ], + 'expected' => [ + 0 => false, + 1 => true, + ] + ], + ]; + } +} diff --git a/tests/integration/Db/Column/IsAutoIncrementCest.php b/tests/integration/Db/Column/IsAutoIncrementCest.php new file mode 100644 index 00000000000..90df16facf3 --- /dev/null +++ b/tests/integration/Db/Column/IsAutoIncrementCest.php @@ -0,0 +1,144 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Column; + +use Codeception\Example; +use IntegrationTester; +use Phalcon\Db\Column; + +class IsAutoIncrementCest +{ + /** + * Tests Phalcon\Db\Column :: isAutoIncrement() - Mysql + * + * @param IntegrationTester $I + * @param Example $data + * + * @dataProvider connectionProvider + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbColumnIsAutoIncrement(IntegrationTester $I, Example $data) + { + $I->wantToTest(sprintf('Db\Column - isAutoIncrement() - %s', $data['name'])); + $columns = $data['data']; + $expected = $data['expected']; + foreach ($columns as $index => $column) { + $I->assertEquals($expected[$index], $column->isAutoIncrement()); + } + } + + /** + * Returns the connections for each data provider + * + * @author Phalcon Team + * @since 2018-11-13 + * + * @return array + */ + private function connectionProvider() + { + return [ + [ + 'name' => 'Mysql', + 'data' => [ + 0 => Column::__set_state( + [ + '_columnName' => 'field_primary', + '_schemaName' => null, + '_type' => Column::TYPE_INTEGER, + '_isNumeric' => true, + '_size' => 11, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => true, + '_primary' => true, + '_first' => true, + '_after' => null, + '_bindType' => Column::BIND_PARAM_INT, + ] + ), + 1 => Column::__set_state( + [ + '_columnName' => 'field_bigint', + '_schemaName' => null, + '_type' => Column::TYPE_BIGINTEGER, + '_isNumeric' => true, + '_size' => 20, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_bit_default', + '_bindType' => Column::BIND_PARAM_INT, + ] + ), + ], + 'expected' => [ + 0 => true, + 1 => false, + ] + ], + [ + 'name' => 'Postgresql', + 'data' => [ + Column::__set_state( + [ + '_columnName' => 'field_primary', + '_schemaName' => null, + '_type' => Column::TYPE_INTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => "nextval('dialect_table_field_primary_seq'::regclass)", + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => true, + '_primary' => true, + '_first' => true, + '_after' => null, + '_bindType' => Column::BIND_PARAM_INT, + ] + ), + Column::__set_state( + [ + '_columnName' => 'field_bigint', + '_schemaName' => null, + '_type' => Column::TYPE_BIGINTEGER, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_primary' => false, + '_first' => false, + '_after' => 'field_bit_default', + '_bindType' => Column::BIND_PARAM_INT, + ] + ), + ], + 'expected' => [ + 0 => true, + 1 => false, + ] + ], + ]; + } +} diff --git a/tests/integration/Db/Column/IsFirstCest.php b/tests/integration/Db/Column/IsFirstCest.php new file mode 100644 index 00000000000..91b5fef5648 --- /dev/null +++ b/tests/integration/Db/Column/IsFirstCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Column; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class IsFirstCest +{ + use DiTrait; + use MysqlTrait; + + /** + * Tests Phalcon\Db\Column :: isFirst() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbColumnIsFirst(IntegrationTester $I) + { + $I->wantToTest("Db\Column - isFirst()"); + $columns = $this->getColumns(); + $expectedColumns = $this->getExpectedColumns(); + foreach ($expectedColumns as $index => $column) { + $I->assertEquals($columns[$index]['_first'], $column->isFirst()); + } + } +} diff --git a/tests/integration/Db/Column/IsNotNullCest.php b/tests/integration/Db/Column/IsNotNullCest.php new file mode 100644 index 00000000000..96d74b4f45a --- /dev/null +++ b/tests/integration/Db/Column/IsNotNullCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Column; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class IsNotNullCest +{ + use DiTrait; + use MysqlTrait; + + /** + * Tests Phalcon\Db\Column :: isNotNull() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbColumnIsNotNull(IntegrationTester $I) + { + $I->wantToTest("Db\Column - isNotNull()"); + $columns = $this->getColumns(); + $expectedColumns = $this->getExpectedColumns(); + foreach ($expectedColumns as $index => $column) { + $I->assertEquals($columns[$index]['_notNull'], $column->isNotNull()); + } + } +} diff --git a/tests/integration/Db/Column/IsNumericCest.php b/tests/integration/Db/Column/IsNumericCest.php new file mode 100644 index 00000000000..b18516a2b82 --- /dev/null +++ b/tests/integration/Db/Column/IsNumericCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Column; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class IsNumericCest +{ + use DiTrait; + use MysqlTrait; + + /** + * Tests Phalcon\Db\Column :: isNumeric() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbColumnIsNumeric(IntegrationTester $I) + { + $I->wantToTest("Db\Column - isNumeric()"); + $columns = $this->getColumns(); + $expectedColumns = $this->getExpectedColumns(); + foreach ($expectedColumns as $index => $column) { + $I->assertEquals($columns[$index]['_isNumeric'], $column->isNumeric()); + } + } +} diff --git a/tests/integration/Db/Column/IsPrimaryCest.php b/tests/integration/Db/Column/IsPrimaryCest.php new file mode 100644 index 00000000000..4e267d26503 --- /dev/null +++ b/tests/integration/Db/Column/IsPrimaryCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Column; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class IsPrimaryCest +{ + use DiTrait; + use MysqlTrait; + + /** + * Tests Phalcon\Db\Column :: isPrimary() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbColumnIsPrimary(IntegrationTester $I) + { + $I->wantToTest("Db\Column - isPrimary()"); + $columns = $this->getColumns(); + $expectedColumns = $this->getExpectedColumns(); + foreach ($expectedColumns as $index => $column) { + $I->assertEquals($columns[$index]['_primary'], $column->isPrimary()); + } + } +} diff --git a/tests/integration/Db/Column/IsUnsignedCest.php b/tests/integration/Db/Column/IsUnsignedCest.php new file mode 100644 index 00000000000..aba8fb71c7d --- /dev/null +++ b/tests/integration/Db/Column/IsUnsignedCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Column; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class IsUnsignedCest +{ + use DiTrait; + use MysqlTrait; + + /** + * Tests Phalcon\Db\Column :: isUnsigned() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbColumnIsUnsigned(IntegrationTester $I) + { + $I->wantToTest("Db\Column - isUnsigned()"); + $columns = $this->getColumns(); + $expectedColumns = $this->getExpectedColumns(); + foreach ($expectedColumns as $index => $column) { + $I->assertEquals($columns[$index]['_unsigned'], $column->isUnsigned()); + } + } +} diff --git a/tests/integration/Db/Column/SetStateCest.php b/tests/integration/Db/Column/SetStateCest.php new file mode 100644 index 00000000000..c9dd7dcbbab --- /dev/null +++ b/tests/integration/Db/Column/SetStateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Column; + +use IntegrationTester; + +class SetStateCest +{ + /** + * Tests Phalcon\Db\Column :: __set_state() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbColumnSetState(IntegrationTester $I) + { + $I->wantToTest("Db\Column - __set_state()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/ColumnCest.php b/tests/integration/Db/ColumnCest.php new file mode 100644 index 00000000000..401dbc91fc4 --- /dev/null +++ b/tests/integration/Db/ColumnCest.php @@ -0,0 +1,199 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db; + +use IntegrationTester; +use Phalcon\Db\Column; +use Phalcon\Test\Fixtures\Traits\DialectTrait; + +class ColumnCest +{ + use DialectTrait; + + public function shouldWorkPerfectlyWithColumnAsObject(IntegrationTester $I) + { + $columns = $this->getColumns(); + + //Varchar column + $column1 = $columns['column1']; + + $I->assertEquals($column1->getName(), 'column1'); + $I->assertEquals($column1->getType(), Column::TYPE_VARCHAR); + $I->assertEquals($column1->getSize(), 10); + $I->assertEquals($column1->getScale(), 0); + $I->assertFalse($column1->isUnsigned()); + $I->assertFalse($column1->isNotNull()); + + //Integer column + $column2 = $columns['column2']; + + $I->assertEquals($column2->getName(), 'column2'); + $I->assertEquals($column2->getType(), Column::TYPE_INTEGER); + $I->assertEquals($column2->getSize(), 18); + $I->assertEquals($column2->getScale(), 0); + $I->assertTrue($column2->isUnsigned()); + $I->assertFalse($column2->isNotNull()); + + //Decimal column + $column3 = $columns['column3']; + + $I->assertEquals($column3->getName(), 'column3'); + $I->assertEquals($column3->getType(), Column::TYPE_DECIMAL); + $I->assertEquals($column3->getSize(), 10); + $I->assertEquals($column3->getScale(), 2); + $I->assertFalse($column3->isUnsigned()); + $I->assertTrue($column3->isNotNull()); + + //Char column + $column4 = $columns['column4']; + + $I->assertEquals($column4->getName(), 'column4'); + $I->assertEquals($column4->getType(), Column::TYPE_CHAR); + $I->assertEquals($column4->getSize(), 100); + $I->assertEquals($column4->getScale(), 0); + $I->assertFalse($column4->isUnsigned()); + $I->assertTrue($column4->isNotNull()); + + //Date column + $column5 = $columns['column5']; + + $I->assertEquals($column5->getName(), 'column5'); + $I->assertEquals($column5->getType(), Column::TYPE_DATE); + $I->assertEquals($column5->getSize(), 0); + $I->assertEquals($column5->getScale(), 0); + $I->assertFalse($column5->isUnsigned()); + $I->assertTrue($column5->isNotNull()); + + //Datetime column + $column6 = $columns['column6']; + + $I->assertEquals($column6->getName(), 'column6'); + $I->assertEquals($column6->getType(), Column::TYPE_DATETIME); + $I->assertEquals($column6->getSize(), 0); + $I->assertEquals($column6->getScale(), 0); + $I->assertFalse($column6->isUnsigned()); + $I->assertTrue($column6->isNotNull()); + + //Text column + $column7 = $columns['column7']; + + $I->assertEquals($column7->getName(), 'column7'); + $I->assertEquals($column7->getType(), Column::TYPE_TEXT); + $I->assertEquals($column7->getSize(), 0); + $I->assertEquals($column7->getScale(), 0); + $I->assertFalse($column7->isUnsigned()); + $I->assertTrue($column7->isNotNull()); + + //Float column + $column8 = $columns['column8']; + + $I->assertEquals($column8->getName(), 'column8'); + $I->assertEquals($column8->getType(), Column::TYPE_FLOAT); + $I->assertEquals($column8->getSize(), 10); + $I->assertEquals($column8->getScale(), 2); + $I->assertFalse($column8->isUnsigned()); + $I->assertTrue($column8->isNotNull()); + + //Varchar column + default value + $column9 = $columns['column9']; + + $I->assertEquals($column9->getName(), 'column9'); + $I->assertEquals($column9->getType(), Column::TYPE_VARCHAR); + $I->assertEquals($column9->getSize(), 10); + $I->assertEquals($column9->getScale(), 0); + $I->assertFalse($column9->isUnsigned()); + $I->assertFalse($column9->isNotNull()); + $I->assertEquals($column9->getDefault(), 'column9'); + + //Integer column + default value + $column10 = $columns['column10']; + + $I->assertEquals($column10->getName(), 'column10'); + $I->assertEquals($column10->getType(), Column::TYPE_INTEGER); + $I->assertEquals($column10->getSize(), 18); + $I->assertEquals($column10->getScale(), 0); + $I->assertTrue($column10->isUnsigned()); + $I->assertFalse($column10->isNotNull()); + $I->assertEquals($column10->getDefault(), '10'); + + //Bigint column + $column11 = $columns['column11']; + + $I->assertEquals($column11->getName(), 'column11'); + $I->assertEquals($column11->getType(), 'BIGINT'); + $I->assertEquals($column11->getTypeReference(), Column::TYPE_INTEGER); + $I->assertEquals($column11->getSize(), 20); + $I->assertEquals($column11->getScale(), 0); + $I->assertTrue($column11->isUnsigned()); + $I->assertFalse($column11->isNotNull()); + + //Enum column + $column12 = $columns['column12']; + + $I->assertEquals($column12->getName(), 'column12'); + $I->assertEquals($column12->getType(), 'ENUM'); + $I->assertEquals($column12->getTypeReference(), -1); + $I->assertEquals($column12->getTypeValues(), ['A', 'B', 'C']); + $I->assertEquals($column12->getSize(), 0); + $I->assertEquals($column12->getScale(), 0); + $I->assertFalse($column12->isUnsigned()); + $I->assertTrue($column12->isNotNull()); + + //Timestamp column + $column13 = $columns['column13']; + $I->assertEquals($column13->getName(), 'column13'); + $I->assertEquals($column13->getType(), Column::TYPE_TIMESTAMP); + $I->assertTrue($column13->isNotNull()); + $I->assertEquals($column13->getDefault(), 'CURRENT_TIMESTAMP'); + + //Tinyblob column + $column14 = $columns['column14']; + $I->assertEquals($column14->getName(), 'column14'); + $I->assertEquals($column14->getType(), Column::TYPE_TINYBLOB); + $I->assertTrue($column14->isNotNull()); + + //Mediumblob column + $column15 = $columns['column15']; + $I->assertEquals($column15->getName(), 'column15'); + $I->assertEquals($column15->getType(), Column::TYPE_MEDIUMBLOB); + $I->assertTrue($column15->isNotNull()); + + //Blob column + $column16 = $columns['column16']; + $I->assertEquals($column16->getName(), 'column16'); + $I->assertEquals($column16->getType(), Column::TYPE_BLOB); + $I->assertTrue($column16->isNotNull()); + + //Longblob column + $column17 = $columns['column17']; + $I->assertEquals($column17->getName(), 'column17'); + $I->assertEquals($column17->getType(), Column::TYPE_LONGBLOB); + $I->assertTrue($column17->isNotNull()); + + //Boolean column + $column18 = $columns['column18']; + $I->assertEquals($column18->getName(), 'column18'); + $I->assertEquals($column18->getType(), Column::TYPE_BOOLEAN); + + //Double column + $column19 = $columns['column19']; + $I->assertEquals($column19->getName(), 'column19'); + $I->assertEquals($column19->getType(), Column::TYPE_DOUBLE); + $I->assertFalse($column19->isUnsigned()); + + //Unsigned double column + $column20 = $columns['column20']; + $I->assertEquals($column20->getName(), 'column20'); + $I->assertEquals($column20->getType(), Column::TYPE_DOUBLE); + $I->assertTrue($column20->isUnsigned()); + } +} diff --git a/tests/integration/Db/DbBindCest.php b/tests/integration/Db/DbBindCest.php new file mode 100644 index 00000000000..99b9cfa9945 --- /dev/null +++ b/tests/integration/Db/DbBindCest.php @@ -0,0 +1,450 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db; + +use IntegrationTester; +use Phalcon\Db; +use Phalcon\Db\Column; +use Phalcon\Db\RawValue; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class DbBindCest +{ + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->newDi(); + } + + /** + * Tests Phalcon\Db :: Mysql + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbBindMySql(IntegrationTester $I) + { + $I->wantToTest("Db - Bind - MySql"); + $this->setDiMysql(); + $connection = $this->getService('db'); + + $this->executeConvertBindTests($I, $connection); + $this->executeBindByTypeTests($I, $connection); + } + + protected function executeConvertBindTests(IntegrationTester $I, $connection) + { + $params = $connection->convertBoundParams( + "a=?0", + [ + 0 => 100, + ] + ); + + $I->assertEquals( + $params, + [ + 'sql' => 'a=?', + 'params' => [ + 0 => 100, + ], + ] + ); + + + $params = $connection->convertBoundParams( + "a=?0", + [ + 0 => 100, + 1 => 50, + ] + ); + + $I->assertEquals( + $params, + [ + 'sql' => 'a=?', + 'params' => [ + 0 => 100, + ], + ] + ); + + + $params = $connection->convertBoundParams( + "a=?1 AND b = ?0", + [ + 1 => 50, + 0 => 25, + ] + ); + + $I->assertEquals( + $params, + [ + 'sql' => "a=? AND b = ?", + 'params' => [ + 0 => 50, + 1 => 25, + ], + ] + ); + + + $params = $connection->convertBoundParams( + "a=?1 AND b = ?0", + [ + 1 => 25.10, + 0 => '25.10', + ] + ); + + $I->assertEquals( + $params, + [ + 'sql' => "a=? AND b = ?", + 'params' => [ + 0 => '25.10', + 1 => 25.10, + ], + ] + ); + + + $params = $connection->convertBoundParams( + "a=?1 AND b = ?0 AND c > :c: AND d = ?3", + [ + 'c' => 1000, + 1 => 'some-name', + 0 => 15, + 3 => 400, + ] + ); + + $I->assertEquals( + $params, + [ + 'sql' => "a=? AND b = ? AND c > ? AND d = ?", + 'params' => [ + 0 => 'some-name', + 1 => 15, + 2 => 1000, + 3 => 400, + ], + ] + ); + } + + protected function executeBindByTypeTests(IntegrationTester $I, $connection) + { + $success = $connection->execute( + 'INSERT INTO prueba(id, nombre, estado) VALUES (' . $connection->getDefaultIdValue() . ', ?, ?)', + ["LOL 1", "A"], + [Column::BIND_PARAM_STR, Column::BIND_PARAM_STR] + ); + $I->assertTrue($success); + + $success = $connection->execute( + 'UPDATE prueba SET nombre = ?, estado = ?', + ["LOL 11", "R"], + [Column::BIND_PARAM_STR, Column::BIND_PARAM_STR] + ); + $I->assertTrue($success); + + $success = $connection->execute( + 'DELETE FROM prueba WHERE estado = ?', + ["R"], + [Column::BIND_PARAM_STR] + ); + $I->assertTrue($success); + + $success = $connection->insert( + 'prueba', + [$connection->getDefaultIdValue(), "LOL 1", "A"], + null, + [Column::BIND_SKIP, Column::BIND_PARAM_STR, Column::BIND_PARAM_STR] + ); + $I->assertTrue($success); + + $success = $connection->insert( + 'prueba', + ["LOL 2", "E"], + ['nombre', 'estado'], + [Column::BIND_PARAM_STR, Column::BIND_PARAM_STR] + ); + $I->assertTrue($success); + + $success = $connection->insert( + 'prueba', + ["LOL 3", "I"], + ['nombre', 'estado'], + [Column::BIND_PARAM_STR, Column::BIND_PARAM_STR] + ); + $I->assertTrue($success); + + $success = $connection->insert( + 'prueba', + [new RawValue('current_date'), "A"], + ['nombre', 'estado'], + [Column::BIND_PARAM_STR, Column::BIND_PARAM_STR] + ); + $I->assertTrue($success); + + $success = $connection->update( + 'prueba', + ["nombre", "estado"], + ["LOL 1000", "X"], + "estado='E'", + [Column::BIND_PARAM_STR, Column::BIND_PARAM_STR] + ); + $I->assertTrue($success); + + $success = $connection->update( + 'prueba', + ["nombre"], + ["LOL 3000"], + "estado='X'", + [Column::BIND_PARAM_STR] + ); + $I->assertTrue($success); + + $success = $connection->update( + 'prueba', + ["nombre"], + [new RawValue('current_date')], + "estado='X'", + [Column::BIND_PARAM_STR] + ); + $I->assertTrue($success); + } + + /** + * Tests Phalcon\Db :: Postgresql + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbBindPostgresql(IntegrationTester $I) + { + $I->wantToTest("Db - Bind - Postgresql"); + $this->setDiMysql(); + $connection = $this->getService('db'); + + //$this->executeRawBindTests($I, $connection); + //$this->executeRawBindTestsPostgresql($I, $connection); + $this->executeBindByTypeTests($I, $connection); + } + + /** + * Tests Phalcon\Db :: Sqlite + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbBindSqlite(IntegrationTester $I) + { + $I->wantToTest("Db - Bind - Sqlite"); + $this->setDiSqlite(); + $connection = $this->getService('db'); + + //$this->_executeRawBindTests($connection); + //$this->_executeRawBindTestsSqlite($connection); + $this->executeBindByTypeTests($I, $connection); + } + + protected function executeRawBindTests(IntegrationTester $I, $connection) + { + $conditions = $connection->bindParams( + "a=?0", + [ + 0 => 100, + ] + ); + + $I->assertEquals($conditions, "a=100"); + + + $conditions = $connection->bindParams( + "a=?0", + [ + 0 => 100, + 1 => 50, + ] + ); + + $I->assertEquals($conditions, "a=100"); + + + $conditions = $connection->bindParams( + "a=?0", + [ + 1 => 50, + ] + ); + + $I->assertEquals($conditions, "a=?0"); + + + $conditions = $connection->bindParams( + "a=?1 AND b = ?0", + [ + 0 => 25, + 1 => 50, + ] + ); + + $I->assertEquals($conditions, "a=50 AND b = 25"); + + + $conditions = $connection->bindParams( + "a=?1 AND b = ?0", + [ + 0 => '25', + 1 => '50', + ] + ); + + $I->assertEquals($conditions, "a=50 AND b = 25"); + + + $conditions = $connection->bindParams( + "a=?1 AND b = ?0", + [ + 0 => '25.10', + 1 => 25.10, + ] + ); + + $I->assertEquals($conditions, "a=25.1 AND b = 25.10"); + + + $conditions = $connection->bindParams( + "a=?1 AND b = ?0 AND c<>?2", + [ + 0 => 25, + 1 => 50, + 2 => 15, + ] + ); + + $I->assertEquals($conditions, "a=50 AND b = 25 AND c<>15"); + + + $conditions = $connection->bindParams( + "a=:a:", + [ + 'a' => 'no-suprises', + ] + ); + + $I->assertEquals($conditions, "a='no-suprises'"); + + + $conditions = $connection->bindParams( + "column1 = :column1: AND column2=:column2:", + [ + 'column1' => 'hello', + 'column2' => 'lol', + ] + ); + + $I->assertEquals($conditions, "column1 = 'hello' AND column2='lol'"); + } + + protected function executeRawBindTestsMysql(IntegrationTester $I, $connection) + { + $conditions = $connection->bindParams( + "column3 IN (:val1:, :val2:, :val3:)", + [ + 'val1' => 'hello', + 'val2' => 100, + 'val3' => "'hahaha'", + ] + ); + + $I->assertEquals($conditions, "column3 IN ('hello', 100, '\'hahaha\'')"); + + + $conditions = $connection->bindParams( + "column3 IN (:val1:, :val2:, :val3:) AND column4 > ?2", + [ + 'val1' => 'hello', + 'val2' => 100, + 'val3' => "'hahaha'", + 2 => 'le-nice', + ] + ); + + $I->assertEquals($conditions, "column3 IN ('hello', 100, '\'hahaha\'') AND column4 > 'le-nice'"); + } + + protected function executeRawBindTestsPostgresql(IntegrationTester $I, $connection) + { + $conditions = $connection->bindParams( + "column3 IN (:val1:, :val2:, :val3:)", + [ + 'val1' => 'hello', + 'val2' => 100, + 'val3' => "'hahaha'", + ] + ); + + $I->assertEquals($conditions, "column3 IN ('hello', 100, '''hahaha''')"); + + + $conditions = $connection->bindParams( + "column3 IN (:val1:, :val2:, :val3:) AND column4 > ?2", + [ + 'val1' => 'hello', + 'val2' => 100, + 'val3' => "'hahaha'", + 2 => 'le-nice', + ] + ); + + $I->assertEquals($conditions, "column3 IN ('hello', 100, '''hahaha''') AND column4 > 'le-nice'"); + } + + protected function executeRawBindTestsSqlite(IntegrationTester $I, $connection) + { + $conditions = $connection->bindParams( + "column3 IN (:val1:, :val2:, :val3:)", + [ + 'val1' => 'hello', + 'val2' => 100, + 'val3' => "'hahaha'", + ] + ); + + $I->assertEquals($conditions, "column3 IN ('hello', 100, '''hahaha''')"); + + + $conditions = $connection->bindParams( + "column3 IN (:val1:, :val2:, :val3:) AND column4 > ?2", + [ + 'val1' => 'hello', + 'val2' => 100, + 'val3' => "'hahaha'", + 2 => 'le-nice', + ] + ); + + $I->assertEquals($conditions, "column3 IN ('hello', 100, '''hahaha''') AND column4 > 'le-nice'"); + } +} diff --git a/tests/integration/Db/DbCest.php b/tests/integration/Db/DbCest.php new file mode 100644 index 00000000000..2f55e4ac037 --- /dev/null +++ b/tests/integration/Db/DbCest.php @@ -0,0 +1,397 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db; + +use IntegrationTester; +use PDO; +use Phalcon\Db; +use Phalcon\Db\RawValue; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class DbCest +{ + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->newDi(); + } + + /** + * Tests Phalcon\Db :: Mysql + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbMySql(IntegrationTester $I) + { + $I->wantToTest("Db - MySql"); + $this->setDiMysql(); + $connection = $this->getService('db'); + + $this->executeTests($I, $connection); + } + + private function executeTests(IntegrationTester $I, $connection) + { + $result = $connection->query("SELECT * FROM personas LIMIT 3"); + $I->assertInternalType('object', $result); + $I->assertInstanceOf('Phalcon\Db\Result\Pdo', $result); + + for ($i = 0; $i < 3; $i++) { + $row = $result->fetch(); + $I->assertCount(22, $row); + } + + $row = $result->fetch(); + $I->assertEquals($row, false); + $I->assertEquals($result->numRows(), 3); + + $number = 0; + $result = $connection->query("SELECT * FROM personas LIMIT 5"); + $I->assertInternalType('object', $result); + + while ($row = $result->fetch()) { + $number++; + } + $I->assertEquals($number, 5); + + $result = $connection->query("SELECT * FROM personas LIMIT 5"); + $result->setFetchMode(Db::FETCH_NUM); + $row = $result->fetch(); + $I->assertInternalType('array', $row); + $I->assertCount(11, $row); + $I->assertTrue(isset($row[0])); + $I->assertFalse(isset($row['cedula'])); + $I->assertFalse(isset($row->cedula)); + + $result = $connection->query("SELECT * FROM personas LIMIT 5"); + $result->setFetchMode(Db::FETCH_ASSOC); + $row = $result->fetch(); + $I->assertInternalType('array', $row); + $I->assertCount(11, $row); + $I->assertFalse(isset($row[0])); + $I->assertTrue(isset($row['cedula'])); + $I->assertFalse(isset($row->cedula)); + + $result = $connection->query("SELECT * FROM personas LIMIT 5"); + $result->setFetchMode(Db::FETCH_OBJ); + $row = $result->fetch(); + $I->assertInternalType('object', $row); + $I->assertTrue(isset($row->cedula)); + + $result = $connection->query("SELECT * FROM personas LIMIT 5"); + $result->setFetchMode(Db::FETCH_BOTH); + $result->dataSeek(4); + $row = $result->fetch(); + $row = $result->fetch(); + $I->assertEquals($row, false); + + $result = $connection->execute("DELETE FROM prueba"); + $I->assertTrue($result); + + $success = $connection->execute( + 'INSERT INTO prueba(id, nombre, estado) VALUES (' . $connection->getDefaultIdValue() . ', ?, ?)', + [ + "LOL 1", + "A", + ] + ); + $I->assertTrue($success); + + $success = $connection->execute('UPDATE prueba SET nombre = ?, estado = ?', ["LOL 11", "R"]); + $I->assertTrue($success); + + $success = $connection->execute('DELETE FROM prueba WHERE estado = ?', ["R"]); + $I->assertTrue($success); + + $success = $connection->insert('prueba', [$connection->getDefaultIdValue(), "LOL 1", "A"]); + $I->assertTrue($success); + + $success = $connection->insert('prueba', ["LOL 2", "E"], ['nombre', 'estado']); + $I->assertTrue($success); + + $success = $connection->insert('prueba', ["LOL 3", "I"], ['nombre', 'estado']); + $I->assertTrue($success); + + $success = $connection->insert( + 'prueba', + [ + new RawValue('current_date'), + "A", + ], + [ + 'nombre', + 'estado', + ] + ); + $I->assertTrue($success); + + for ($i = 0; $i < 50; $i++) { + $success = $connection->insert('prueba', ["LOL " . $i, "F"], ['nombre', 'estado']); + $I->assertTrue($success); + } + + $success = $connection->update('prueba', ["nombre", "estado"], ["LOL 1000", "X"], "estado='E'"); + $I->assertTrue($success); + + $success = $connection->update('prueba', ["nombre"], ["LOL 3000"], "estado='X'"); + $I->assertTrue($success); + + $success = $connection->update( + 'prueba', + ["nombre"], + [ + new RawValue('current_date'), + ], + "estado='X'" + ); + $I->assertTrue($success); + + //test array syntax for $whereCondition + $success = $connection->insert('prueba', ["LOL array syntax", "E"], ['nombre', 'estado']); + $I->assertTrue($success); + $success = $connection->update( + 'prueba', + ["nombre", 'estado'], + ["LOL array syntax 2", 'X'], + [ + 'conditions' => "nombre=? and estado = ?", + 'bind' => ["LOL array syntax", "E"], + 'bindTypes' => [PDO::PARAM_STR, PDO::PARAM_STR], + ], + [PDO::PARAM_STR, PDO::PARAM_STR] + ); + $I->assertTrue($success); + $row = $connection->fetchOne( + 'select count(*) as cnt from prueba where nombre=? and estado=?', + Db::FETCH_ASSOC, + [ + "LOL array syntax 2", "X", + ] + ); + $I->assertEquals($row['cnt'], 1); + $success = $connection->update('prueba', ["nombre", 'estado'], ["LOL array syntax 3", 'E'], [ + 'conditions' => "nombre=? and estado = ?", + 'bind' => ["LOL array syntax 2", "X"], + ]); + $I->assertTrue($success); + $row = $connection->fetchOne( + 'select count(*) as cnt from prueba where nombre=? and estado=?', + Db::FETCH_ASSOC, + [ + "LOL array syntax 3", "E", + ] + ); + $I->assertEquals($row['cnt'], 1); + + //test insertAsDict and updateAsDict + $success = $connection->insertAsDict('prueba', [ + 'nombre' => "LOL insertAsDict", + 'estado' => "E", + ]); + + $I->assertTrue($success); + $row = $connection->fetchOne( + 'select count(*) as cnt from prueba where nombre=? and estado=?', + Db::FETCH_ASSOC, + [ + "LOL insertAsDict", "E", + ] + ); + $I->assertEquals($row['cnt'], 1); + $success = $connection->updateAsDict( + 'prueba', + [ + 'nombre' => "LOL updateAsDict", + 'estado' => "X", + ], + "nombre='LOL insertAsDict' and estado = 'E'" + ); + $I->assertTrue($success); + $row = $connection->fetchOne( + 'select count(*) as cnt from prueba where nombre=? and estado=?', + Db::FETCH_ASSOC, + [ + "LOL updateAsDict", "X", + ] + ); + $I->assertEquals($row['cnt'], 1); + + $connection->delete("prueba", "estado='X'"); + $I->assertTrue($success); + + $connection->delete("prueba"); + $I->assertTrue($success); + $I->assertEquals($connection->affectedRows(), 54); + + $row = $connection->fetchOne("SELECT * FROM personas"); + $I->assertCount(11, $row); + + $row = $connection->fetchOne("SELECT * FROM personas", Db::FETCH_NUM); + $I->assertCount(11, $row); + + $rows = $connection->fetchAll("SELECT * FROM personas LIMIT 10"); + $I->assertCount(10, $rows); + + $rows = $connection->fetchAll("SELECT * FROM personas LIMIT 10", Db::FETCH_NUM); + $I->assertCount(10, $rows); + $I->assertCount(11, $rows[0]); + + $id = $connection->fetchColumn("SELECT id FROM robots ORDER BY year DESC"); + $I->assertEquals($id, 3); + + $type = $connection->fetchColumn("SELECT * FROM robots where id=?", [1], 2); + $I->assertEquals($type, 'mechanical'); + + $type = $connection->fetchColumn("SELECT * FROM robots where id=?", [1], 'type'); + $I->assertEquals($type, 'mechanical'); + + //Auto-Increment/Serial Columns + $sql = 'INSERT INTO subscriptores(id, email, created_at, status) VALUES (' . $connection->getDefaultIdValue() . ', ?, ?, ?)'; + $success = $connection->execute($sql, ['shirley@garbage.com', "2011-01-01 12:59:13", "P"]); + $I->assertTrue($success); + + //Check for auto-increment column + $I->assertTrue($connection->lastInsertId('subscriptores_id_seq') > 0); + + // Create View + $success = $connection->createView( + 'phalcon_test_view', + [ + 'sql' => 'SELECT 1 AS one, 2 AS two, 3 AS three', + ] + ); + $I->assertTrue($success); + + //Check view exists + $success = $connection->viewExists('phalcon_test_view'); + $I->assertTrue((bool) $success); + + //Gets the list of all views. + $views = $connection->listViews(); + $I->assertInternalType('array', $views); + $I->assertContains('phalcon_test_view', $views); + + //Execute created view + $row = $connection->fetchOne("SELECT * FROM phalcon_test_view"); + $I->assertCount(3, $row); + $I->assertArrayHasKey('one', $row); + $I->assertEquals($row['two'], 2); + + //Drop view + $success = $connection->dropView('phalcon_test_view'); + $I->assertTrue($success); + + //Transactions without savepoints. + $connection->setNestedTransactionsWithSavepoints(false); + + $success = $connection->begin(); // level 1 - real + $I->assertTrue($success); + + $success = $connection->begin(); // level 2 - virtual + $I->assertFalse($success); + + $success = $connection->begin(); // level 3 - virtual + $I->assertFalse($success); + + $success = $connection->rollback(); // level 2 - virtual + $I->assertFalse($success); + + $success = $connection->commit(); // level 1 - virtual + $I->assertFalse($success); + + $success = $connection->commit(); // commit - real + $I->assertTrue($success); + + $success = $connection->begin(); // level 1 - real + $I->assertTrue($success); + + $success = $connection->begin(); // level 2 - virtual + $I->assertFalse($success); + + $success = $connection->commit(); // level 1 - virtual + $I->assertFalse($success); + + $success = $connection->rollback(); // rollback - real + $I->assertTrue($success); + + //Transactions with savepoints. + $connection->setNestedTransactionsWithSavepoints(true); + + $success = $connection->begin(); // level 1 - begin transaction + $I->assertTrue($success); + + $success = $connection->begin(); // level 2 - uses savepoint_1 + $I->assertTrue($success); + + $success = $connection->begin(); // level 3 - uses savepoint_2 + $I->assertTrue($success); + + $success = $connection->rollback(); // level 2 - uses rollback savepoint_2 + $I->assertTrue($success); + + $success = $connection->commit(); // level 1 - uses release savepoint_1 + $I->assertTrue($success); + + $success = $connection->commit(); // commit - real commit + $I->assertTrue($success); + + $success = $connection->begin(); // level 1 - real begin transaction + $I->assertTrue($success); + + $success = $connection->begin(); // level 2 - uses savepoint_1 + $I->assertTrue($success); + + $success = $connection->commit(); // level 1 - uses release savepoint_1 + $I->assertTrue($success); + + $success = $connection->rollback(); // rollback - real rollback + $I->assertTrue($success); + } + + /** + * Tests Phalcon\Db :: Postgresql + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbPostgresql(IntegrationTester $I) + { + $I->wantToTest("Db - Postgresql"); + $this->setDiPostgresql(); + $connection = $this->getService('db'); + + $this->executeTests($I, $connection); + } + + /** + * Tests Phalcon\Db :: Sqlite + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbSqlite(IntegrationTester $I) + { + $I->wantToTest("Db - Sqlite"); + $this->setDiSqlite(); + $connection = $this->getService('db'); + + $this->executeTests($I, $connection); + } +} diff --git a/tests/integration/Db/DbDescribeCest.php b/tests/integration/Db/DbDescribeCest.php new file mode 100644 index 00000000000..3174e1f8667 --- /dev/null +++ b/tests/integration/Db/DbDescribeCest.php @@ -0,0 +1,850 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db; + +use IntegrationTester; +use Phalcon\Db; +use Phalcon\Db\Column; +use Phalcon\Db\Index; +use Phalcon\Db\RawValue; +use Phalcon\Db\Reference; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class DbDescribeCest +{ + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->newDi(); + $this->setDiModelsManager(); + $this->setDiModelsMetadata(); + } + + /** + * Tests Phalcon\Db :: Mysql + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbMySql(IntegrationTester $I) + { + $I->wantToTest("Db - MySql"); + $this->setDiMysql(); + $connection = $this->getService('db'); + + //Table exist + $I->assertEquals($connection->tableExists('personas'), 1); + $I->assertEquals($connection->tableExists('noexist'), 0); + $I->assertEquals($connection->tableExists('personas', env('DATA_MYSQL_NAME')), 1); + $I->assertEquals($connection->tableExists('personas', 'test'), 0); + + /** + * @TODO - Check this after refactoring + */ +// $expectedDescribe = $this->getExpectedColumnsMysql(); +// $describe = $connection->describeColumns('personas'); +// $I->assertEquals($expectedDescribe, $describe); + +// $describe = $connection->describeColumns('personas', env('DATA_MYSQL_NAME')); +// $I->assertEquals($describe, $expectedDescribe); + + //Table Options + $expectedOptions = [ + 'table_type' => 'BASE TABLE', + 'auto_increment' => null, + 'engine' => 'InnoDB', + 'table_collation' => 'utf8_unicode_ci', + ]; + + $options = $connection->tableOptions('personas', env('DATA_MYSQL_NAME')); + $I->assertEquals($options, $expectedOptions); + + //Indexes + $expectedIndexes = [ + 'PRIMARY' => Index::__set_state([ + '_name' => 'PRIMARY', + '_columns' => ['id'], + '_type' => 'PRIMARY', + ]), + 'robots_id' => Index::__set_state([ + '_name' => 'robots_id', + '_columns' => ['robots_id'], + ]), + 'parts_id' => Index::__set_state([ + '_name' => 'parts_id', + '_columns' => ['parts_id'], + ]), + ]; + + $describeIndexes = $connection->describeIndexes('robots_parts'); + $I->assertEquals($describeIndexes, $expectedIndexes); + + $describeIndexes = $connection->describeIndexes('robots_parts', env('DATA_MYSQL_NAME')); + $I->assertEquals($describeIndexes, $expectedIndexes); + + //Indexes + $expectedIndexes = [ + 'PRIMARY' => Index::__set_state([ + '_name' => 'PRIMARY', + '_columns' => ['id'], + '_type' => 'PRIMARY', + ]), + 'issue_11036_token_UNIQUE' => Index::__set_state([ + '_name' => 'issue_11036_token_UNIQUE', + '_columns' => ['token'], + '_type' => 'UNIQUE', + ]), + ]; + + $describeIndexes = $connection->describeIndexes('issue_11036'); + $I->assertEquals($describeIndexes, $expectedIndexes); + + $describeIndexes = $connection->describeIndexes('issue_11036', env('DATA_MYSQL_NAME')); + $I->assertEquals($describeIndexes, $expectedIndexes); + + //References + $expectedReferences = [ + 'robots_parts_ibfk_1' => Reference::__set_state( + [ + '_referenceName' => 'robots_parts_ibfk_1', + '_referencedTable' => 'robots', + '_columns' => ['robots_id'], + '_referencedColumns' => ['id'], + '_referencedSchema' => env('DATA_MYSQL_NAME'), + '_onUpdate' => 'RESTRICT', + '_onDelete' => 'RESTRICT', + ] + ), + 'robots_parts_ibfk_2' => Reference::__set_state( + [ + '_referenceName' => 'robots_parts_ibfk_2', + '_referencedTable' => 'parts', + '_columns' => ['parts_id'], + '_referencedColumns' => ['id'], + '_referencedSchema' => env('DATA_MYSQL_NAME'), + '_onUpdate' => 'RESTRICT', + '_onDelete' => 'RESTRICT', + ] + ), + ]; + + $describeReferences = $connection->describeReferences('robots_parts'); + $I->assertEquals($describeReferences, $expectedReferences); + + $describeReferences = $connection->describeReferences('robots_parts', env('DATA_MYSQL_NAME')); + $I->assertEquals($describeReferences, $expectedReferences); + } + + /** + * Tests Phalcon\Db :: Postgresql + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbPostgresql(IntegrationTester $I) + { + $I->wantToTest("Db - Postgresql"); + $this->setDiPostgresql(); + $connection = $this->getService('db'); + + //Columns + $expectedDescribe = $this->getExpectedColumnsPostgresql(); + + $describe = $connection->describeColumns('personas'); + $I->assertEquals($describe, $expectedDescribe); + + $describe = $connection->describeColumns('personas', 'public'); + $I->assertEquals($describe, $expectedDescribe); + + /** + * @todo Check the references (SQL dump file) + */ +// //Indexes +// $expectedIndexes = [ +// 'robots_parts_parts_id' => Index::__set_state([ +// '_name' => 'robots_parts_parts_id', +// '_columns' => ['parts_id'], +// ]), +// 'robots_parts_pkey' => Index::__set_state([ +// '_name' => 'robots_parts_pkey', +// '_columns' => ['id'], +// ]), +// 'robots_parts_robots_id' => Index::__set_state([ +// '_name' => 'robots_parts_robots_id', +// '_columns' => ['robots_id'], +// ]), +// ]; +// +// $describeIndexes = $connection->describeIndexes('robots_parts'); +// $I->assertEquals($describeIndexes, $expectedIndexes); +// +// $describeIndexes = $connection->describeIndexes('robots_parts', 'public'); +// $I->assertEquals($describeIndexes, $expectedIndexes); +// +// //References +// $expectedReferences = [ +// 'robots_parts_ibfk_1' => Reference::__set_state( +// [ +// '_referenceName' => 'robots_parts_ibfk_1', +// '_referencedTable' => 'robots', +// '_columns' => ['robots_id'], +// '_referencedColumns' => ['id'], +// '_referencedSchema' => env('DATA_POSTGRES_NAME'), +// '_onDelete' => 'NO ACTION', +// '_onUpdate' => 'NO ACTION', +// ] +// ), +// 'robots_parts_ibfk_2' => Reference::__set_state( +// [ +// '_referenceName' => 'robots_parts_ibfk_2', +// '_referencedTable' => 'parts', +// '_columns' => ['parts_id'], +// '_referencedColumns' => ['id'], +// '_referencedSchema' => env('DATA_POSTGRES_NAME'), +// '_onDelete' => 'NO ACTION', +// '_onUpdate' => 'NO ACTION', +// ] +// ), +// ]; +// +// $describeReferences = $connection->describeReferences('robots_parts'); +// $I->assertEquals($describeReferences, $expectedReferences); +// +// $describeReferences = $connection->describeReferences('robots_parts', 'public'); +// $I->assertEquals($describeReferences, $expectedReferences); + } + + private function getExpectedColumnsPostgresql() + { + return [ + 0 => Column::__set_state([ + '_columnName' => 'cedula', + '_schemaName' => null, + '_type' => 5, + '_isNumeric' => false, + '_size' => 15, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => false, + '_primary' => true, + '_first' => true, + '_after' => null, + '_bindType' => 2, + ]), + 1 => Column::__set_state([ + '_columnName' => 'tipo_documento_id', + '_schemaName' => null, + '_type' => 0, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'cedula', + '_bindType' => 1, + ]), + 2 => Column::__set_state([ + '_columnName' => 'nombres', + '_schemaName' => null, + '_type' => 2, + '_isNumeric' => false, + '_size' => 100, + '_scale' => 0, + '_default' => '', + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'tipo_documento_id', + '_bindType' => 2, + ]), + 3 => Column::__set_state([ + '_columnName' => 'telefono', + '_schemaName' => null, + '_type' => 2, + '_isNumeric' => false, + '_size' => 20, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'nombres', + ]), + 4 => Column::__set_state([ + '_columnName' => 'direccion', + '_schemaName' => null, + '_type' => 2, + '_isNumeric' => false, + '_size' => 100, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'telefono', + '_bindType' => 2, + ]), + 5 => Column::__set_state([ + '_columnName' => 'email', + '_schemaName' => null, + '_type' => 2, + '_isNumeric' => false, + '_size' => 50, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'direccion', + '_bindType' => 2, + ]), + 6 => Column::__set_state([ + '_columnName' => 'fecha_nacimiento', + '_schemaName' => null, + '_type' => 1, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => '1970-01-01', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'email', + '_bindType' => 2, + ]), + 7 => Column::__set_state([ + '_columnName' => 'ciudad_id', + '_schemaName' => null, + '_type' => 0, + '_isNumeric' => true, + '_size' => 0, + '_scale' => 0, + '_default' => '0', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'fecha_nacimiento', + '_bindType' => 1, + ]), + 8 => Column::__set_state([ + '_columnName' => 'creado_at', + '_schemaName' => null, + '_type' => 1, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'ciudad_id', + '_bindType' => 2, + ]), + 9 => Column::__set_state([ + '_columnName' => 'cupo', + '_schemaName' => null, + '_type' => 3, + '_isNumeric' => true, + '_size' => 16, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'creado_at', + '_bindType' => 32, + ]), + 10 => Column::__set_state([ + '_columnName' => 'estado', + '_schemaName' => null, + '_type' => 5, + '_isNumeric' => false, + '_size' => 1, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'cupo', + '_bindType' => 2, + ]), + ]; + } + + /** + * Tests Phalcon\Db :: Sqlite + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbSqlite(IntegrationTester $I) + { + $I->wantToTest("Db - Sqlite"); + $this->setDiSqlite(); + $connection = $this->getService('db'); + + //List tables + $expectedTables = [ + 'COMPANY', + 'customers', + 'm2m_parts', + 'm2m_robots', + 'm2m_robots_parts', + 'parts', + 'personas', + 'personnes', + 'ph_select', + 'prueba', + 'robots', + 'robots_parts', + 'sqlite_sequence', + 'subscriptores', + 'table_with_string_field', + 'tipo_documento', + ]; + + $tables = $connection->listTables(); + + $I->assertEquals($expectedTables, $tables); + + $tables = $connection->listTables('public'); + $I->assertEquals($tables, $expectedTables); + + //Table exist + $I->assertEquals($connection->tableExists('personas'), 1); + $I->assertEquals($connection->tableExists('noexist'), 0); + $I->assertEquals($connection->tableExists('personas', 'public'), 1); + $I->assertEquals($connection->tableExists('personas', 'test'), 1); + + //Columns + $expectedDescribe = $this->getExpectedColumnsSqlite(); + $describe = $connection->describeColumns('personas'); + $I->assertEquals($describe, $expectedDescribe); + + $describe = $connection->describeColumns('personas', 'main'); + $I->assertEquals($describe, $expectedDescribe); + + //Indexes + $expectedIndexes = [ + 'sqlite_autoindex_COMPANY_1' => Index::__set_state([ + '_name' => 'sqlite_autoindex_COMPANY_1', + '_columns' => ['ID'], + '_type' => 'PRIMARY', + ]), + 'salary_index' => Index::__set_state([ + '_name' => 'salary_index', + '_columns' => ['SALARY'], + ]), + 'name_index' => Index::__set_state([ + '_name' => 'name_index', + '_columns' => ['NAME'], + '_type' => 'UNIQUE', + ]), + ]; + + $describeIndexes = $connection->describeIndexes('COMPANY'); + $I->assertEquals($describeIndexes, $expectedIndexes); + + $describeIndexes = $connection->describeIndexes('company', 'main'); + $I->assertEquals($describeIndexes, $expectedIndexes); + + //References + $expectedReferences = [ + 'foreign_key_0' => Reference::__set_state( + [ + '_referenceName' => 'foreign_key_0', + '_referencedTable' => 'parts', + '_columns' => ['parts_id'], + '_referencedColumns' => ['id'], + '_referencedSchema' => null, + ] + ), + 'foreign_key_1' => Reference::__set_state( + [ + '_referenceName' => 'foreign_key_1', + '_referencedTable' => 'robots', + '_columns' => ['robots_id'], + '_referencedColumns' => ['id'], + '_referencedSchema' => null, + ] + ), + ]; + + $describeReferences = $connection->describeReferences('robots_parts'); + $I->assertEquals($describeReferences, $expectedReferences); + } + + private function getExpectedColumnsSqlite() + { + return [ + 0 => Column::__set_state([ + '_columnName' => 'cedula', + '_schemaName' => null, + '_type' => 5, + '_isNumeric' => false, + '_size' => 15, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => false, + '_primary' => true, + '_first' => true, + '_after' => null, + '_bindType' => 2, + ]), + 1 => Column::__set_state([ + '_columnName' => 'tipo_documento_id', + '_schemaName' => null, + '_type' => 0, + '_isNumeric' => true, + '_size' => 3, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'cedula', + '_bindType' => 1, + ]), + 2 => Column::__set_state([ + '_columnName' => 'nombres', + '_schemaName' => null, + '_type' => 2, + '_isNumeric' => false, + '_size' => 100, + '_scale' => 0, + '_default' => '', + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'tipo_documento_id', + '_bindType' => 2, + ]), + 3 => Column::__set_state([ + '_columnName' => 'telefono', + '_schemaName' => null, + '_type' => 2, + '_isNumeric' => false, + '_size' => 20, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'nombres', + '_bindType' => 2, + ]), + 4 => Column::__set_state([ + '_columnName' => 'direccion', + '_schemaName' => null, + '_type' => 2, + '_isNumeric' => false, + '_size' => 100, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'telefono', + '_bindType' => 2, + ]), + 5 => Column::__set_state([ + '_columnName' => 'email', + '_schemaName' => null, + '_type' => 2, + '_isNumeric' => false, + '_size' => 50, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'direccion', + '_bindType' => 2, + ]), + 6 => Column::__set_state([ + '_columnName' => 'fecha_nacimiento', + '_schemaName' => null, + '_type' => 1, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => '1970-01-01', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'email', + '_bindType' => 2, + ]), + 7 => Column::__set_state([ + '_columnName' => 'ciudad_id', + '_schemaName' => null, + '_type' => 0, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => '0', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'fecha_nacimiento', + '_bindType' => 1, + ]), + 8 => Column::__set_state([ + '_columnName' => 'creado_at', + '_schemaName' => null, + '_type' => 1, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'ciudad_id', + '_bindType' => 2, + ]), + 9 => Column::__set_state([ + '_columnName' => 'cupo', + '_schemaName' => null, + '_type' => 3, + '_isNumeric' => true, + '_size' => 16, + '_scale' => 2, + '_default' => null, + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'creado_at', + '_bindType' => 32, + ]), + 10 => Column::__set_state([ + '_columnName' => 'estado', + '_schemaName' => null, + '_type' => 5, + '_isNumeric' => false, + '_size' => 1, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'cupo', + '_bindType' => 2, + ]), + ]; + } + + private function getExpectedColumnsMysql() + { + return [ + 0 => Column::__set_state([ + '_columnName' => 'cedula', + '_schemaName' => null, + '_type' => 5, + '_isNumeric' => false, + '_size' => 15, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => false, + '_primary' => true, + '_first' => true, + '_after' => null, + '_bindType' => 2, + ]), + 1 => Column::__set_state([ + '_columnName' => 'tipo_documento_id', + '_schemaName' => null, + '_type' => 0, + '_isNumeric' => true, + '_size' => 3, + '_scale' => 0, + '_default' => null, + '_unsigned' => true, + '_notNull' => true, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'cedula', + '_bindType' => 1, + ]), + 2 => Column::__set_state([ + '_columnName' => 'nombres', + '_schemaName' => null, + '_type' => 2, + '_isNumeric' => false, + '_size' => 100, + '_scale' => 0, + '_default' => '', + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'tipo_documento_id', + '_bindType' => 2, + ]), + 3 => Column::__set_state([ + '_columnName' => 'telefono', + '_schemaName' => null, + '_type' => 2, + '_isNumeric' => false, + '_size' => 20, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'nombres', + '_bindType' => 2, + ]), + 4 => Column::__set_state([ + '_columnName' => 'direccion', + '_schemaName' => null, + '_type' => 2, + '_isNumeric' => false, + '_size' => 100, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'telefono', + '_bindType' => 2, + ]), + 5 => Column::__set_state([ + '_columnName' => 'email', + '_schemaName' => null, + '_type' => 2, + '_isNumeric' => false, + '_size' => 50, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'direccion', + '_bindType' => 2, + ]), + 6 => Column::__set_state([ + '_columnName' => 'fecha_nacimiento', + '_schemaName' => null, + '_type' => 1, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => '1970-01-01', + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'email', + '_bindType' => 2, + ]), + 7 => Column::__set_state([ + '_columnName' => 'ciudad_id', + '_schemaName' => null, + '_type' => 0, + '_isNumeric' => true, + '_size' => 10, + '_scale' => 0, + '_default' => '0', + '_unsigned' => true, + '_notNull' => false, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'fecha_nacimiento', + '_bindType' => 1, + ]), + 8 => Column::__set_state([ + '_columnName' => 'creado_at', + '_schemaName' => null, + '_type' => 1, + '_isNumeric' => false, + '_size' => 0, + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => false, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'ciudad_id', + '_bindType' => 2, + ]), + 9 => Column::__set_state([ + '_columnName' => 'cupo', + '_schemaName' => null, + '_type' => 3, + '_isNumeric' => true, + '_size' => 16, + '_scale' => 2, + '_default' => null, + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'creado_at', + '_bindType' => 32, + ]), + 10 => Column::__set_state([ + '_columnName' => 'estado', + '_schemaName' => null, + '_type' => 18, + '_isNumeric' => false, + '_size' => "'A','I','X'", + '_scale' => 0, + '_default' => null, + '_unsigned' => false, + '_notNull' => true, + '_autoIncrement' => false, + '_first' => false, + '_after' => 'cupo', + '_bindType' => 2, + ]), + ]; + } +} diff --git a/tests/integration/Db/DbProfilerCest.php b/tests/integration/Db/DbProfilerCest.php new file mode 100644 index 00000000000..563c435b085 --- /dev/null +++ b/tests/integration/Db/DbProfilerCest.php @@ -0,0 +1,98 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db; + +use IntegrationTester; +use Phalcon\Events\Manager; +use Phalcon\Test\Fixtures\Db\ProfilerListener; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class DbProfilerCest +{ + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->newDi(); + } + + public function testDbMysql(IntegrationTester $I) + { + $this->setDiMysql(); + $connection = $this->getService('db'); + + $this->executeTests($I, $connection); + } + + private function executeTests(IntegrationTester $I, $connection) + { + $eventsManager = new Manager(); + $listener = new ProfilerListener(); + + $eventsManager->attach('db', $listener); + $connection->setEventsManager($eventsManager); + $connection->query("SELECT * FROM personas LIMIT 3"); + + $profiler = $listener->getProfiler(); + + $I->assertEquals($profiler->getNumberTotalStatements(), 1); + + $profile = $profiler->getLastProfile(); + $I->assertInstanceOf('Phalcon\Db\Profiler\Item', $profile); + + $I->assertEquals($profile->getSQLStatement(), "SELECT * FROM personas LIMIT 3"); + $I->assertInternalType('double', $profile->getInitialTime()); + $I->assertInternalType('double', $profile->getFinalTime()); + $I->assertInternalType('double', $profile->getTotalElapsedSeconds()); + $I->assertTrue($profile->getFinalTime() > $profile->getInitialTime()); + + $connection->query("SELECT * FROM personas LIMIT 100"); + + $I->assertEquals($profiler->getNumberTotalStatements(), 2); + + $profile = $profiler->getLastProfile(); + $I->assertInstanceOf('Phalcon\Db\Profiler\Item', $profile); + + $I->assertEquals($profile->getSQLStatement(), "SELECT * FROM personas LIMIT 100"); + $I->assertTrue($profile->getFinalTime() > $profile->getInitialTime()); + + $connection->query("SELECT * FROM personas LIMIT 5"); + $connection->query("SELECT * FROM personas LIMIT 10"); + $connection->query("SELECT * FROM personas LIMIT 15"); + + $I->assertCount(5, $profiler->getProfiles()); + $I->assertEquals($profiler->getNumberTotalStatements(), 5); + $I->assertInternalType('double', $profiler->getTotalElapsedSeconds()); + $I->assertEquals($profiler->getPoints(), 0); + + $profiler->reset(); + + $I->assertCount(0, $profiler->getProfiles()); + $I->assertEquals($profiler->getNumberTotalStatements(), 0); + } + + public function testDbPostgresql(IntegrationTester $I) + { + $this->setDiPostgresql(); + $connection = $this->getService('db'); + + $this->executeTests($I, $connection); + } + + public function testDbSqlite(IntegrationTester $I) + { + $this->setDiSqlite(); + $connection = $this->getService('db'); + + $this->executeTests($I, $connection); + } +} diff --git a/tests/integration/Db/Dialect/AddColumnCest.php b/tests/integration/Db/Dialect/AddColumnCest.php new file mode 100644 index 00000000000..63eb6f52ee3 --- /dev/null +++ b/tests/integration/Db/Dialect/AddColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class AddColumnCest +{ + /** + * Tests Phalcon\Db\Dialect :: addColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectAddColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - addColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/AddForeignKeyCest.php b/tests/integration/Db/Dialect/AddForeignKeyCest.php new file mode 100644 index 00000000000..9d4d66d378c --- /dev/null +++ b/tests/integration/Db/Dialect/AddForeignKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class AddForeignKeyCest +{ + /** + * Tests Phalcon\Db\Dialect :: addForeignKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectAddForeignKey(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - addForeignKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/AddIndexCest.php b/tests/integration/Db/Dialect/AddIndexCest.php new file mode 100644 index 00000000000..cf2d6ddf0e7 --- /dev/null +++ b/tests/integration/Db/Dialect/AddIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class AddIndexCest +{ + /** + * Tests Phalcon\Db\Dialect :: addIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectAddIndex(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - addIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/AddPrimaryKeyCest.php b/tests/integration/Db/Dialect/AddPrimaryKeyCest.php new file mode 100644 index 00000000000..914897f05e0 --- /dev/null +++ b/tests/integration/Db/Dialect/AddPrimaryKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class AddPrimaryKeyCest +{ + /** + * Tests Phalcon\Db\Dialect :: addPrimaryKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectAddPrimaryKey(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - addPrimaryKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/CreateSavepointCest.php b/tests/integration/Db/Dialect/CreateSavepointCest.php new file mode 100644 index 00000000000..f00083125d3 --- /dev/null +++ b/tests/integration/Db/Dialect/CreateSavepointCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class CreateSavepointCest +{ + /** + * Tests Phalcon\Db\Dialect :: createSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectCreateSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - createSavepoint()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/CreateTableCest.php b/tests/integration/Db/Dialect/CreateTableCest.php new file mode 100644 index 00000000000..c1fa86a9dc8 --- /dev/null +++ b/tests/integration/Db/Dialect/CreateTableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class CreateTableCest +{ + /** + * Tests Phalcon\Db\Dialect :: createTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectCreateTable(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - createTable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/CreateViewCest.php b/tests/integration/Db/Dialect/CreateViewCest.php new file mode 100644 index 00000000000..aab7befc685 --- /dev/null +++ b/tests/integration/Db/Dialect/CreateViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class CreateViewCest +{ + /** + * Tests Phalcon\Db\Dialect :: createView() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectCreateView(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - createView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/DescribeColumnsCest.php b/tests/integration/Db/Dialect/DescribeColumnsCest.php new file mode 100644 index 00000000000..6b48d1a6975 --- /dev/null +++ b/tests/integration/Db/Dialect/DescribeColumnsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class DescribeColumnsCest +{ + /** + * Tests Phalcon\Db\Dialect :: describeColumns() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectDescribeColumns(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - describeColumns()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/DescribeIndexesCest.php b/tests/integration/Db/Dialect/DescribeIndexesCest.php new file mode 100644 index 00000000000..a26ee18b6fb --- /dev/null +++ b/tests/integration/Db/Dialect/DescribeIndexesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class DescribeIndexesCest +{ + /** + * Tests Phalcon\Db\Dialect :: describeIndexes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectDescribeIndexes(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - describeIndexes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/DescribeReferencesCest.php b/tests/integration/Db/Dialect/DescribeReferencesCest.php new file mode 100644 index 00000000000..ef223c75bfa --- /dev/null +++ b/tests/integration/Db/Dialect/DescribeReferencesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class DescribeReferencesCest +{ + /** + * Tests Phalcon\Db\Dialect :: describeReferences() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectDescribeReferences(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - describeReferences()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/DropColumnCest.php b/tests/integration/Db/Dialect/DropColumnCest.php new file mode 100644 index 00000000000..068494333ab --- /dev/null +++ b/tests/integration/Db/Dialect/DropColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class DropColumnCest +{ + /** + * Tests Phalcon\Db\Dialect :: dropColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectDropColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - dropColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/DropForeignKeyCest.php b/tests/integration/Db/Dialect/DropForeignKeyCest.php new file mode 100644 index 00000000000..4fca55971ae --- /dev/null +++ b/tests/integration/Db/Dialect/DropForeignKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class DropForeignKeyCest +{ + /** + * Tests Phalcon\Db\Dialect :: dropForeignKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectDropForeignKey(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - dropForeignKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/DropIndexCest.php b/tests/integration/Db/Dialect/DropIndexCest.php new file mode 100644 index 00000000000..c7cbd356e17 --- /dev/null +++ b/tests/integration/Db/Dialect/DropIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class DropIndexCest +{ + /** + * Tests Phalcon\Db\Dialect :: dropIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectDropIndex(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - dropIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/DropPrimaryKeyCest.php b/tests/integration/Db/Dialect/DropPrimaryKeyCest.php new file mode 100644 index 00000000000..5d9e5aa4ded --- /dev/null +++ b/tests/integration/Db/Dialect/DropPrimaryKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class DropPrimaryKeyCest +{ + /** + * Tests Phalcon\Db\Dialect :: dropPrimaryKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectDropPrimaryKey(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - dropPrimaryKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/DropTableCest.php b/tests/integration/Db/Dialect/DropTableCest.php new file mode 100644 index 00000000000..c86eda2402a --- /dev/null +++ b/tests/integration/Db/Dialect/DropTableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class DropTableCest +{ + /** + * Tests Phalcon\Db\Dialect :: dropTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectDropTable(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - dropTable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/DropViewCest.php b/tests/integration/Db/Dialect/DropViewCest.php new file mode 100644 index 00000000000..14e2fd8ef24 --- /dev/null +++ b/tests/integration/Db/Dialect/DropViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class DropViewCest +{ + /** + * Tests Phalcon\Db\Dialect :: dropView() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectDropView(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - dropView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/EscapeCest.php b/tests/integration/Db/Dialect/EscapeCest.php new file mode 100644 index 00000000000..d9f9c3ebe3c --- /dev/null +++ b/tests/integration/Db/Dialect/EscapeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class EscapeCest +{ + /** + * Tests Phalcon\Db\Dialect :: escape() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectEscape(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - escape()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/EscapeSchemaCest.php b/tests/integration/Db/Dialect/EscapeSchemaCest.php new file mode 100644 index 00000000000..e5a6cb212a0 --- /dev/null +++ b/tests/integration/Db/Dialect/EscapeSchemaCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class EscapeSchemaCest +{ + /** + * Tests Phalcon\Db\Dialect :: escapeSchema() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectEscapeSchema(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - escapeSchema()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/ForUpdateCest.php b/tests/integration/Db/Dialect/ForUpdateCest.php new file mode 100644 index 00000000000..7565e88693e --- /dev/null +++ b/tests/integration/Db/Dialect/ForUpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class ForUpdateCest +{ + /** + * Tests Phalcon\Db\Dialect :: forUpdate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectForUpdate(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - forUpdate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/GetColumnDefinitionCest.php b/tests/integration/Db/Dialect/GetColumnDefinitionCest.php new file mode 100644 index 00000000000..20fd668c8c2 --- /dev/null +++ b/tests/integration/Db/Dialect/GetColumnDefinitionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class GetColumnDefinitionCest +{ + /** + * Tests Phalcon\Db\Dialect :: getColumnDefinition() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectGetColumnDefinition(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - getColumnDefinition()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/GetColumnListCest.php b/tests/integration/Db/Dialect/GetColumnListCest.php new file mode 100644 index 00000000000..a5f4f4dce8e --- /dev/null +++ b/tests/integration/Db/Dialect/GetColumnListCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class GetColumnListCest +{ + /** + * Tests Phalcon\Db\Dialect :: getColumnList() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectGetColumnList(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - getColumnList()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/GetCustomFunctionsCest.php b/tests/integration/Db/Dialect/GetCustomFunctionsCest.php new file mode 100644 index 00000000000..b6449ca9b98 --- /dev/null +++ b/tests/integration/Db/Dialect/GetCustomFunctionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class GetCustomFunctionsCest +{ + /** + * Tests Phalcon\Db\Dialect :: getCustomFunctions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectGetCustomFunctions(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - getCustomFunctions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/GetSqlColumnCest.php b/tests/integration/Db/Dialect/GetSqlColumnCest.php new file mode 100644 index 00000000000..b65355dc0a6 --- /dev/null +++ b/tests/integration/Db/Dialect/GetSqlColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class GetSqlColumnCest +{ + /** + * Tests Phalcon\Db\Dialect :: getSqlColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectGetSqlColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - getSqlColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/GetSqlExpressionCest.php b/tests/integration/Db/Dialect/GetSqlExpressionCest.php new file mode 100644 index 00000000000..2c85655283a --- /dev/null +++ b/tests/integration/Db/Dialect/GetSqlExpressionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class GetSqlExpressionCest +{ + /** + * Tests Phalcon\Db\Dialect :: getSqlExpression() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectGetSqlExpression(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - getSqlExpression()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/GetSqlTableCest.php b/tests/integration/Db/Dialect/GetSqlTableCest.php new file mode 100644 index 00000000000..12df388e3ce --- /dev/null +++ b/tests/integration/Db/Dialect/GetSqlTableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class GetSqlTableCest +{ + /** + * Tests Phalcon\Db\Dialect :: getSqlTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectGetSqlTable(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - getSqlTable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Helper/DialectBase.php b/tests/integration/Db/Dialect/Helper/DialectBase.php new file mode 100644 index 00000000000..4cf46eba696 --- /dev/null +++ b/tests/integration/Db/Dialect/Helper/DialectBase.php @@ -0,0 +1,520 @@ + + * @since 2017-02-26 + */ + public function testCreateView(IntegrationTester $I) + { + $data = $this->getCreateViewFixtures(); + foreach ($data as $item) { + $definition = $item[0]; + $schema = $item[1]; + $expected = $item[2]; + $dialect = $this->getDialectObject(); + $actual = $dialect->createView('test_view', $definition, $schema); + + $I->assertTrue(is_string($actual)); + $I->assertEquals($expected, $actual); + } + } + + /** + * Returns the object for the dialect + * + * @return DialectInterface + */ + protected function getDialectObject(): DialectInterface + { + $class = sprintf('Phalcon\Db\Dialect\%s', $this->adapter); + + return new $class(); + } + + /** + * Tests Dialect::describeColumns + * + * @param IntegrationTester $I + * @issue https://github.com/phalcon/cphalcon/issues/12536 + * @issue https://github.com/phalcon/cphalcon/issues/11359 + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function testDescribeColumns(IntegrationTester $I) + { + $data = $this->getDescribeColumnsFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $expected = $item[1]; + + $dialect = $this->getDialectObject(); + $actual = $dialect->describeColumns('table', $schema); + + $I->assertEquals($expected, $actual); + } + } + + /** + * @param IntegrationTester $I + */ + public function testDescribeIndexes(IntegrationTester $I) + { + $I->skipTest('TODO: Write this test'); + } + + /** + * Tests Dialect::describeReferences + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function testDescribeReferences(IntegrationTester $I) + { + $data = $this->getDescribeReferencesFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $expected = $item[1]; + + $dialect = $this->getDialectObject(); + $actual = $dialect->describeReferences('table', $schema); + + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Dialect::dropColumn + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function testDropColumn(IntegrationTester $I) + { + $data = $this->getDropColumnFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $column = $item[1]; + $expected = $item[2]; + $dialect = $this->getDialectObject(); + $actual = $dialect->dropColumn('table', $schema, $column); + + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Dialect::dropForeignKey + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function testDropForeignKey(IntegrationTester $I) + { + $data = $this->getDropForeignKeyFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $key = $item[1]; + $expected = $item[2]; + $dialect = $this->getDialectObject(); + $actual = $dialect->dropForeignKey('table', $schema, $key); + + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Dialect::dropIndex + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function testDropIndex(IntegrationTester $I) + { + $data = $this->getDropIndexFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $index = $item[1]; + $expected = $item[2]; + $dialect = $this->getDialectObject(); + $actual = $dialect->dropIndex('table', $schema, $index); + + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Dialect::dropPrimaryKey + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function testDropPrimaryKey(IntegrationTester $I) + { + $data = $this->getDropPrimaryKeyFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $expected = $item[1]; + $dialect = $this->getDialectObject(); + $actual = $dialect->dropPrimaryKey('table', $schema); + + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Dialect::dropTable + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function testDropTable(IntegrationTester $I) + { + $data = $this->getDropTableFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $ifExists = $item[1]; + $expected = $item[2]; + $dialect = $this->getDialectObject(); + $actual = $dialect->dropTable('table', $schema, $ifExists); + + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Dialect::dropView + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function testDropView(IntegrationTester $I) + { + $data = $this->getDropViewFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $ifExists = $item[1]; + $expected = $item[2]; + $dialect = $this->getDialectObject(); + $actual = $dialect->dropView('test_view', $schema, $ifExists); + + $I->assertTrue(is_string($actual)); + $I->assertEquals($expected, $actual); + } + } + + /** + * @param IntegrationTester $I + */ + public function testForUpdate(IntegrationTester $I) + { + $I->skipTest('TODO: Write this test'); + } + + /** + * Tests Dialect::getColumnDefinition + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function testGetColumnDefinition(IntegrationTester $I) + { + $data = $this->getColumnDefinitionFixtures(); + foreach ($data as $item) { + $column = $item[0]; + $expected = $item[1]; + $columns = $this->getColumns(); + $dialect = $this->getDialectObject(); + $actual = $dialect->getColumnDefinition($columns[$column]); + + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Dialect::getColumnList + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function testGetColumnList(IntegrationTester $I) + { + $data = $this->getColumnListFixtures(); + foreach ($data as $item) { + $columns = $item[0]; + $expected = $item[1]; + $dialect = $this->getDialectObject(); + $actual = $dialect->getColumnList($columns); + + $I->assertTrue(is_string($actual)); + $I->assertEquals($expected, $actual); + } + } + + /** + * @param IntegrationTester $I + */ + public function testLimit(IntegrationTester $I) + { + $I->skipTest('TODO: Write this test'); + } + + /** + * @param IntegrationTester $I + */ + public function testListTables(IntegrationTester $I) + { + $I->skipTest('TODO: Write this test'); + } + + /** + * Tests Dialect::listViews + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function testListViews(IntegrationTester $I) + { + $data = $this->getListViewFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $expected = $item[1]; + $dialect = $this->getDialectObject(); + $actual = $dialect->listViews($schema); + + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Dialect::modifyColumn + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function testModifyColumn(IntegrationTester $I) + { + $data = $this->getModifyColumnFixtures(); + foreach ($data as $item) { + $columns = $this->getColumns(); + $schema = $item[0]; + $to = $columns[$item[1]]; + $from = $columns[$item[2]] ?? null; + $expected = $item[3]; + $dialect = $this->getDialectObject(); + $actual = $dialect->modifyColumn('table', $schema, $to, $from); + + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Dialect::modifyColumn + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-01-20 + * @issue https://github.com/phalcon/cphalcon/issues/13012 + */ + public function testModifyColumn13012(IntegrationTester $I) + { + list($oldColumn, $newColumn) = $this->getModifyColumnFixtures13012(); + + $dialect = $this->getDialectObject(); + $expected = $this->getModifyColumnSql(); + $actual = $dialect->modifyColumn('table', 'database', $newColumn, $oldColumn); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Dialect::releaseSavepoint + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function testReleaseSavepoint(IntegrationTester $I) + { + $dialect = $this->getDialectObject(); + $expected = $this->getReleaseSavepointSql(); + $actual = $dialect->releaseSavepoint('PH_SAVEPOINT_1'); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Dialect::rollbackSavepoint + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function testRollbackSavepoint(IntegrationTester $I) + { + $dialect = $this->getDialectObject(); + $expected = $this->getRollbackSavepointSql(); + $actual = $dialect->rollbackSavepoint('PH_SAVEPOINT_1'); + + $I->assertEquals($expected, $actual); + } + + /** + * @param IntegrationTester $I + */ + public function testSelect(IntegrationTester $I) + { + $I->skipTest('TODO: Write this test'); + } + + /** + * @param IntegrationTester $I + */ + public function testSharedLock(IntegrationTester $I) + { + $I->skipTest('TODO: Write this test'); + } + + /** + * Tests Dialect::supportsReleaseSavepoints + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function testSupportsReleaseSavepoints(IntegrationTester $I) + { + $dialect = $this->getDialectObject(); + $actual = $dialect->supportsReleaseSavepoints(); + + $I->assertTrue($actual); + } + + /** + * Tests Dialect::supportsSavepoints + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function testSupportsSavepoints(IntegrationTester $I) + { + $dialect = $this->getDialectObject(); + $actual = $dialect->supportsSavepoints(); + + $I->assertTrue($actual); + } + + /** + * Tests Dialect::tableExists + * + * @param IntegrationTester $I + */ + public function testTableExists(IntegrationTester $I) + { + $data = $this->getTableExistsFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $expected = $item[1]; + $dialect = $this->getDialectObject(); + $actual = $dialect->tableExists('table', $schema); + + $I->assertTrue(is_string($actual)); + $I->assertEquals($expected, $actual); + } + } + + /** + * @param IntegrationTester $I + */ + public function testTableOptions(IntegrationTester $I) + { + $I->skipTest('TODO: Write this test'); + } + + /** + * Tests Dialect::truncateTable + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function testTruncateTable(IntegrationTester $I) + { + $data = $this->getTruncateTableFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $expected = $item[1]; + $dialect = $this->getDialectObject(); + $actual = $dialect->truncateTable('table', $schema); + + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Dialect::viewExists + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function testViewExists(IntegrationTester $I) + { + $data = $this->getViewExistsFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $expected = $item[1]; + $dialect = $this->getDialectObject(); + $actual = $dialect->viewExists('view', $schema); + + $I->assertTrue(is_string($actual)); + $I->assertEquals($expected, $actual); + } + } +} diff --git a/tests/integration/Db/Dialect/Helper/MysqlHelper.php b/tests/integration/Db/Dialect/Helper/MysqlHelper.php new file mode 100644 index 00000000000..b96040ad4f1 --- /dev/null +++ b/tests/integration/Db/Dialect/Helper/MysqlHelper.php @@ -0,0 +1,525 @@ + 'SELECT 1'], null, 'CREATE VIEW `test_view` AS SELECT 1'], + [['sql' => 'SELECT 1'], 'schema', 'CREATE VIEW `schema`.`test_view` AS SELECT 1'], + ]; + } + + /** + * @return array + */ + protected function getDescribeColumnsFixtures(): array + { + return [ + [ + 'schema.name.with.dots', + 'DESCRIBE `schema.name.with.dots`.`table`', + ], + [ + null, + 'DESCRIBE `table`', + ], + [ + 'schema', + 'DESCRIBE `schema`.`table`', + ], + ]; + } + + /** + * @return array + */ + protected function getDescribeReferencesFixtures() + { + return [ + [ + null, + "SELECT DISTINCT KCU.TABLE_NAME, KCU.COLUMN_NAME, " . + "KCU.CONSTRAINT_NAME, KCU.REFERENCED_TABLE_SCHEMA, " . + "KCU.REFERENCED_TABLE_NAME, KCU.REFERENCED_COLUMN_NAME, " . + "RC.UPDATE_RULE, RC.DELETE_RULE " . + "FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE AS KCU " . + "LEFT JOIN INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS AS RC " . + "ON RC.CONSTRAINT_NAME = KCU.CONSTRAINT_NAME AND " . + "RC.CONSTRAINT_SCHEMA = KCU.CONSTRAINT_SCHEMA " . + "WHERE KCU.REFERENCED_TABLE_NAME IS NOT NULL AND " . + "KCU.CONSTRAINT_SCHEMA = DATABASE() AND KCU.TABLE_NAME = 'table'", + ], + [ + 'schema', + "SELECT DISTINCT KCU.TABLE_NAME, KCU.COLUMN_NAME, " . + "KCU.CONSTRAINT_NAME, KCU.REFERENCED_TABLE_SCHEMA, " . + "KCU.REFERENCED_TABLE_NAME, KCU.REFERENCED_COLUMN_NAME, " . + "RC.UPDATE_RULE, RC.DELETE_RULE " . + "FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE AS KCU " . + "LEFT JOIN INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS AS RC " . + "ON RC.CONSTRAINT_NAME = KCU.CONSTRAINT_NAME AND " . + "RC.CONSTRAINT_SCHEMA = KCU.CONSTRAINT_SCHEMA " . + "WHERE KCU.REFERENCED_TABLE_NAME IS NOT NULL AND " . + "KCU.CONSTRAINT_SCHEMA = 'schema' AND KCU.TABLE_NAME = 'table'", + ], + ]; + } + + /** + * @return array + */ + protected function getDropColumnFixtures(): array + { + return [ + ['', 'column1', 'ALTER TABLE `table` DROP COLUMN `column1`'], + ['schema', 'column1', 'ALTER TABLE `schema`.`table` DROP COLUMN `column1`'], + ]; + } + + /** + * @return array + */ + protected function getDropForeignKeyFixtures(): array + { + return [ + ['', 'fk1', 'ALTER TABLE `table` DROP FOREIGN KEY `fk1`'], + ['schema', 'fk1', 'ALTER TABLE `schema`.`table` DROP FOREIGN KEY `fk1`'], + ]; + } + + /** + * @return array + */ + protected function getDropIndexFixtures() + { + return [ + ['', 'index1', 'ALTER TABLE `table` DROP INDEX `index1`'], + ['schema', 'index1', 'ALTER TABLE `schema`.`table` DROP INDEX `index1`'], + ]; + } + + /** + * @return array + */ + protected function getDropPrimaryKeyFixtures(): array + { + return [ + ['', 'ALTER TABLE `table` DROP PRIMARY KEY'], + ['schema', 'ALTER TABLE `schema`.`table` DROP PRIMARY KEY'], + ]; + } + + /** + * @return array + */ + protected function getDropTableFixtures(): array + { + return [ + ['', true, 'DROP TABLE IF EXISTS `table`'], + ['schema', true, 'DROP TABLE IF EXISTS `schema`.`table`'], + ['', false, 'DROP TABLE `table`'], + ['schema', false, 'DROP TABLE `schema`.`table`'], + ]; + } + + /** + * @return array + */ + protected function getDropViewFixtures(): array + { + return [ + [null, false, 'DROP VIEW `test_view`'], + [null, true, 'DROP VIEW IF EXISTS `test_view`'], + ['schema', false, 'DROP VIEW `schema`.`test_view`'], + ['schema', true, 'DROP VIEW IF EXISTS `schema`.`test_view`'], + ]; + } + + /** + * @param string $foreignKeyName + * + * @return string + */ + protected function getForeignKeySql(string $foreignKeyName) + { + $sql = "SELECT + COUNT(`CONSTRAINT_NAME`) + FROM information_schema.REFERENTIAL_CONSTRAINTS + WHERE TABLE_NAME = 'foreign_key_child' AND + `UPDATE_RULE` = 'CASCADE' AND + `DELETE_RULE` = 'RESTRICT' AND + `CONSTRAINT_NAME` = '{$foreignKeyName}'"; + + return $sql; + } + + /** + * @return array + */ + protected function getListViewFixtures(): array + { + return [ + [ + null, + 'SELECT `TABLE_NAME` AS view_name FROM `INFORMATION_SCHEMA`.`VIEWS` ' . + 'WHERE `TABLE_SCHEMA` = DATABASE() ORDER BY view_name', + ], + [ + 'schema', + "SELECT `TABLE_NAME` AS view_name FROM `INFORMATION_SCHEMA`.`VIEWS` " . + "WHERE `TABLE_SCHEMA` = 'schema' ORDER BY view_name", + ], + ]; + } + + /** + * @return array + */ + protected function getModifyColumnFixtures(): array + { + return [ + [ + '', + 'column1', + null, + 'ALTER TABLE `table` MODIFY `column1` VARCHAR(10)', + ], + [ + 'schema', + 'column1', + null, + 'ALTER TABLE `schema`.`table` MODIFY `column1` VARCHAR(10)', + ], + [ + '', + 'column2', + null, + 'ALTER TABLE `table` MODIFY `column2` INT(18) UNSIGNED', + ], + [ + 'schema', + 'column2', + null, + 'ALTER TABLE `schema`.`table` MODIFY `column2` INT(18) UNSIGNED', + ], + [ + '', + 'column3', + null, + 'ALTER TABLE `table` MODIFY `column3` DECIMAL(10,2) NOT NULL', + ], + [ + 'schema', + 'column3', + null, + 'ALTER TABLE `schema`.`table` MODIFY `column3` DECIMAL(10,2) NOT NULL', + ], + [ + '', + 'column4', + null, + 'ALTER TABLE `table` MODIFY `column4` CHAR(100) NOT NULL', + ], + [ + 'schema', + 'column4', + null, + 'ALTER TABLE `schema`.`table` MODIFY `column4` CHAR(100) NOT NULL', + ], + [ + '', + 'column5', + null, + 'ALTER TABLE `table` MODIFY `column5` DATE NOT NULL', + ], + [ + 'schema', + 'column5', + null, + 'ALTER TABLE `schema`.`table` MODIFY `column5` DATE NOT NULL', + ], + [ + '', + 'column6', + null, + 'ALTER TABLE `table` MODIFY `column6` DATETIME NOT NULL', + ], + [ + 'schema', + 'column6', + null, + 'ALTER TABLE `schema`.`table` MODIFY `column6` DATETIME NOT NULL', + ], + [ + '', + 'column7', + null, + 'ALTER TABLE `table` MODIFY `column7` TEXT NOT NULL', + ], + [ + 'schema', + 'column7', + null, + 'ALTER TABLE `schema`.`table` MODIFY `column7` TEXT NOT NULL', + ], + [ + '', + 'column8', + null, + 'ALTER TABLE `table` MODIFY `column8` FLOAT(10,2) NOT NULL', + ], + [ + 'schema', + 'column8', + null, + 'ALTER TABLE `schema`.`table` MODIFY `column8` FLOAT(10,2) NOT NULL', + ], + [ + '', + 'column9', + null, + 'ALTER TABLE `table` MODIFY `column9` VARCHAR(10) DEFAULT "column9"', + ], + [ + 'schema', + 'column9', + null, + 'ALTER TABLE `schema`.`table` MODIFY `column9` VARCHAR(10) DEFAULT "column9"', + ], + [ + '', + 'column10', + null, + 'ALTER TABLE `table` MODIFY `column10` INT(18) UNSIGNED DEFAULT "10"', + ], + [ + 'schema', + 'column10', + null, + 'ALTER TABLE `schema`.`table` MODIFY `column10` INT(18) UNSIGNED DEFAULT "10"', + ], + [ + '', + 'column11', + null, + 'ALTER TABLE `table` MODIFY `column11` BIGINT(20) UNSIGNED', + ], + [ + 'schema', + 'column11', + null, + 'ALTER TABLE `schema`.`table` MODIFY `column11` BIGINT(20) UNSIGNED', + ], + [ + '', + 'column12', + null, + 'ALTER TABLE `table` MODIFY `column12` ENUM("A", "B", "C") ' . + 'DEFAULT "A" NOT NULL AFTER `column11`', + ], + [ + 'schema', + 'column12', + null, + 'ALTER TABLE `schema`.`table` MODIFY `column12` ENUM("A", "B", "C") ' . + 'DEFAULT "A" NOT NULL AFTER `column11`', + ], + [ + '', + 'column13', + null, + 'ALTER TABLE `table` MODIFY `column13` ' . + 'TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL', + ], + [ + 'schema', + 'column13', + null, + 'ALTER TABLE `schema`.`table` MODIFY `column13` ' . + 'TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL', + ], + ]; + } + + /** + * @return array + */ + protected function getModifyColumnFixtures13012(): array + { + return [ + new Column('old', ['type' => Column::TYPE_VARCHAR]), + new Column('new', ['type' => Column::TYPE_VARCHAR]), + ]; + } + + /** + * @return string + */ + protected function getModifyColumnSql(): string + { + return 'ALTER TABLE `database`.`table` CHANGE COLUMN `old` `new` VARCHAR(0)'; + } + + /** + * @return string + */ + protected function getReleaseSavepointSql(): string + { + return 'RELEASE SAVEPOINT PH_SAVEPOINT_1'; + } + + /** + * @return string + */ + protected function getRollbackSavepointSql(): string + { + return 'ROLLBACK TO SAVEPOINT PH_SAVEPOINT_1'; + } + + /** + * @return array + */ + protected function getTableExistsFixtures(): array + { + return [ + [ + null, + "SELECT IF(COUNT(*) > 0, 1, 0) FROM `INFORMATION_SCHEMA`.`TABLES` " . + "WHERE `TABLE_NAME` = 'table' AND `TABLE_SCHEMA` = DATABASE()", + ], + [ + 'schema', + "SELECT IF(COUNT(*) > 0, 1, 0) FROM `INFORMATION_SCHEMA`.`TABLES` " . + "WHERE `TABLE_NAME`= 'table' AND `TABLE_SCHEMA` = 'schema'", + ], + ]; + } + + /** + * @return array + */ + protected function getTruncateTableFixtures(): array + { + return [ + ['', 'TRUNCATE TABLE `table`'], + ['schema', 'TRUNCATE TABLE `schema`.`table`'], + ]; + } + + /** + * @return array + */ + protected function getViewExistsFixtures(): array + { + return [ + [ + null, + "SELECT IF(COUNT(*) > 0, 1, 0) FROM `INFORMATION_SCHEMA`.`VIEWS` " . + "WHERE `TABLE_NAME`='view' AND `TABLE_SCHEMA` = DATABASE()", + ], + [ + 'schema', + "SELECT IF(COUNT(*) > 0, 1, 0) FROM `INFORMATION_SCHEMA`.`VIEWS` " . + "WHERE `TABLE_NAME`= 'view' AND `TABLE_SCHEMA`='schema'", + ], + ]; + } + + /** + * Returns the object for the dialect + * + * @return Mysql + */ + protected function getDialectObject(): Mysql + { + return new Mysql(); + } +} diff --git a/tests/integration/Db/Dialect/Helper/PostgresqlHelper.php b/tests/integration/Db/Dialect/Helper/PostgresqlHelper.php new file mode 100644 index 00000000000..2926c07214c --- /dev/null +++ b/tests/integration/Db/Dialect/Helper/PostgresqlHelper.php @@ -0,0 +1,591 @@ + 'SELECT 1'], null, 'CREATE VIEW "test_view" AS SELECT 1'], + [['sql' => 'SELECT 1'], 'schema', 'CREATE VIEW "schema"."test_view" AS SELECT 1'], + ]; + } + + /** + * @return array + */ + protected function getDescribeColumnsFixtures(): array + { + return [ + [ + 'schema.name.with.dots', + "SELECT DISTINCT c.column_name AS Field, c.data_type AS Type, " . + "c.character_maximum_length AS Size, c.numeric_precision AS NumericSize, " . + "c.numeric_scale AS NumericScale, c.is_nullable AS Null, " . + "CASE WHEN pkc.column_name NOTNULL THEN 'PRI' ELSE '' END AS Key, " . + "CASE WHEN c.data_type LIKE '%int%' AND c.column_default LIKE '%nextval%' " . + "THEN 'auto_increment' ELSE '' END AS Extra, c.ordinal_position AS Position, " . + "c.column_default FROM information_schema.columns c " . + "LEFT JOIN ( SELECT kcu.column_name, kcu.table_name, kcu.table_schema " . + "FROM information_schema.table_constraints tc " . + "INNER JOIN information_schema.key_column_usage kcu on " . + "(kcu.constraint_name = tc.constraint_name and kcu.table_name=tc.table_name " . + "and kcu.table_schema=tc.table_schema) WHERE tc.constraint_type='PRIMARY KEY') pkc " . + "ON (c.column_name=pkc.column_name AND c.table_schema = pkc.table_schema AND " . + "c.table_name=pkc.table_name) WHERE c.table_schema='schema.name.with.dots' AND " . + "c.table_name='table' ORDER BY c.ordinal_position", + ], + [ + null, + "SELECT DISTINCT c.column_name AS Field, c.data_type AS Type, " . + "c.character_maximum_length AS Size, c.numeric_precision AS NumericSize, " . + "c.numeric_scale AS NumericScale, c.is_nullable AS Null, " . + "CASE WHEN pkc.column_name NOTNULL THEN 'PRI' ELSE '' END AS Key, " . + "CASE WHEN c.data_type LIKE '%int%' AND c.column_default LIKE '%nextval%' " . + "THEN 'auto_increment' ELSE '' END AS Extra, c.ordinal_position AS Position, " . + "c.column_default FROM information_schema.columns c " . + "LEFT JOIN ( SELECT kcu.column_name, kcu.table_name, kcu.table_schema " . + "FROM information_schema.table_constraints tc " . + "INNER JOIN information_schema.key_column_usage kcu on " . + "(kcu.constraint_name = tc.constraint_name and kcu.table_name=tc.table_name and " . + "kcu.table_schema=tc.table_schema) WHERE tc.constraint_type='PRIMARY KEY') pkc " . + "ON (c.column_name=pkc.column_name AND c.table_schema = pkc.table_schema AND " . + "c.table_name=pkc.table_name) WHERE c.table_schema='public' AND c.table_name='table' " . + "ORDER BY c.ordinal_position", + ], + [ + 'schema', + "SELECT DISTINCT c.column_name AS Field, c.data_type AS Type, " . + "c.character_maximum_length AS Size, c.numeric_precision AS NumericSize, " . + "c.numeric_scale AS NumericScale, c.is_nullable AS Null, " . + "CASE WHEN pkc.column_name NOTNULL THEN 'PRI' ELSE '' END AS Key, " . + "CASE WHEN c.data_type LIKE '%int%' AND c.column_default LIKE '%nextval%' " . + "THEN 'auto_increment' ELSE '' END AS Extra, c.ordinal_position AS Position, " . + "c.column_default FROM information_schema.columns c " . + "LEFT JOIN ( SELECT kcu.column_name, kcu.table_name, kcu.table_schema " . + "FROM information_schema.table_constraints tc " . + "INNER JOIN information_schema.key_column_usage kcu on " . + "(kcu.constraint_name = tc.constraint_name and kcu.table_name=tc.table_name and " . + "kcu.table_schema=tc.table_schema) WHERE tc.constraint_type='PRIMARY KEY') pkc " . + "ON (c.column_name=pkc.column_name AND c.table_schema = pkc.table_schema AND " . + "c.table_name=pkc.table_name) WHERE c.table_schema='schema' AND c.table_name='table' " . + "ORDER BY c.ordinal_position", + ], + ]; + } + + /** + * @return array + */ + protected function getDescribeReferencesFixtures() + { + return [ + [ + null, + rtrim(file_get_contents(dataFolder('fixtures/Db/postgresql/example7.sql'))), + ], + [ + 'schema', + rtrim(file_get_contents(dataFolder('fixtures/Db/postgresql/example8.sql'))), + ], + ]; + } + + /** + * @return array + */ + protected function getDropColumnFixtures(): array + { + return [ + ['', 'column1', 'ALTER TABLE "table" DROP COLUMN "column1"'], + ['schema', 'column1', 'ALTER TABLE "schema"."table" DROP COLUMN "column1"'], + ]; + } + + /** + * @return array + */ + protected function getDropForeignKeyFixtures(): array + { + return [ + ['', 'fk1', 'ALTER TABLE "table" DROP CONSTRAINT "fk1"'], + ['schema', 'fk1', 'ALTER TABLE "schema"."table" DROP CONSTRAINT "fk1"'], + ]; + } + + /** + * @return array + */ + protected function getDropIndexFixtures() + { + return [ + ['', 'index1', 'DROP INDEX "index1"'], + ['schema', 'index1', 'DROP INDEX "index1"'], + ]; + } + + /** + * @return array + */ + protected function getDropPrimaryKeyFixtures(): array + { + return [ + ['', 'ALTER TABLE "table" DROP CONSTRAINT "PRIMARY"'], + ['schema', 'ALTER TABLE "schema"."table" DROP CONSTRAINT "PRIMARY"'], + ]; + } + + /** + * @return array + */ + protected function getDropTableFixtures(): array + { + return [ + [null, true, 'DROP TABLE IF EXISTS "table"'], + ['schema', true, 'DROP TABLE IF EXISTS "schema"."table"'], + [null, false, 'DROP TABLE "table"'], + ['schema', false, 'DROP TABLE "schema"."table"'], + ]; + } + + /** + * @return array + */ + protected function getDropViewFixtures(): array + { + return [ + [null, false, 'DROP VIEW "test_view"'], + [null, true, 'DROP VIEW IF EXISTS "test_view"'], + ['schema', false, 'DROP VIEW "schema"."test_view"'], + ['schema', true, 'DROP VIEW IF EXISTS "schema"."test_view"'], + ]; + } + + /** + * @return array + */ + protected function getListViewFixtures(): array + { + return [ + [null, "SELECT viewname AS view_name FROM pg_views WHERE schemaname = 'public' ORDER BY view_name"], + ['schema', "SELECT viewname AS view_name FROM pg_views WHERE schemaname = 'schema' ORDER BY view_name"], + ]; + } + + /** + * @return array + */ + protected function getModifyColumnFixtures(): array + { + return [ + [ + '', + 'column1', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column1";' . + 'ALTER TABLE "table" ALTER COLUMN "column1" TYPE CHARACTER VARYING(10);', + ], + [ + 'schema', + 'column1', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column1";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column1" TYPE CHARACTER VARYING(10);', + ], + [ + '', + 'column2', + 'column1', + 'ALTER TABLE "table" RENAME COLUMN "column1" TO "column2";' . + 'ALTER TABLE "table" ALTER COLUMN "column2" TYPE INT;', + ], + [ + 'schema', + 'column2', + 'column1', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column1" TO "column2";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column2" TYPE INT;', + ], + [ + '', + 'column3', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column3";' . + 'ALTER TABLE "table" ALTER COLUMN "column3" TYPE NUMERIC(10,2);' . + 'ALTER TABLE "table" ALTER COLUMN "column3" SET NOT NULL;', + ], + [ + 'schema', + 'column3', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column3";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column3" TYPE NUMERIC(10,2);' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column3" SET NOT NULL;', + ], + [ + '', + 'column4', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column4";' . + 'ALTER TABLE "table" ALTER COLUMN "column4" TYPE CHARACTER(100);' . + 'ALTER TABLE "table" ALTER COLUMN "column4" SET NOT NULL;', + ], + [ + 'schema', + 'column4', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column4";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column4" TYPE CHARACTER(100);' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column4" SET NOT NULL;', + ], + [ + '', + 'column5', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column5";' . + 'ALTER TABLE "table" ALTER COLUMN "column5" TYPE DATE;' . + 'ALTER TABLE "table" ALTER COLUMN "column5" SET NOT NULL;', + ], + [ + 'schema', + 'column5', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column5";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column5" TYPE DATE;' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column5" SET NOT NULL;', + ], + [ + '', + 'column6', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column6";' . + 'ALTER TABLE "table" ALTER COLUMN "column6" TYPE TIMESTAMP;' . + 'ALTER TABLE "table" ALTER COLUMN "column6" SET NOT NULL;', + ], + [ + 'schema', + 'column6', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column6";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column6" TYPE TIMESTAMP;' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column6" SET NOT NULL;', + ], + [ + '', + 'column7', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column7";' . + 'ALTER TABLE "table" ALTER COLUMN "column7" TYPE TEXT;' . + 'ALTER TABLE "table" ALTER COLUMN "column7" SET NOT NULL;', + ], + [ + 'schema', + 'column7', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column7";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column7" TYPE TEXT;' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column7" SET NOT NULL;', + ], + [ + '', + 'column8', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column8";' . + 'ALTER TABLE "table" ALTER COLUMN "column8" TYPE FLOAT;' . + 'ALTER TABLE "table" ALTER COLUMN "column8" SET NOT NULL;', + ], + [ + 'schema', + 'column8', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column8";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column8" TYPE FLOAT;' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column8" SET NOT NULL;', + ], + [ + '', + 'column9', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column9";' . + 'ALTER TABLE "table" ALTER COLUMN "column9" TYPE CHARACTER VARYING(10);' . + 'ALTER TABLE "table" ALTER COLUMN "column9" SET DEFAULT \'column9\'', + ], + [ + 'schema', + 'column9', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column9";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column9" TYPE CHARACTER VARYING(10);' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column9" SET DEFAULT \'column9\'', + ], + [ + '', + 'column10', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column10";' . + 'ALTER TABLE "table" ALTER COLUMN "column10" SET DEFAULT 10', + ], + [ + 'schema', + 'column10', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column10";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column10" SET DEFAULT 10', + ], + [ + '', + 'column11', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column11";' . + 'ALTER TABLE "table" ALTER COLUMN "column11" TYPE BIGINT;', + ], + [ + 'schema', + 'column11', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column11";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column11" TYPE BIGINT;', + ], + [ + '', + 'column12', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column12";' . + 'ALTER TABLE "table" ALTER COLUMN "column12" TYPE ENUM(\'A\', \'B\', \'C\');' . + 'ALTER TABLE "table" ALTER COLUMN "column12" SET NOT NULL;' . + 'ALTER TABLE "table" ALTER COLUMN "column12" SET DEFAULT \'A\'', + ], + [ + 'schema', + 'column12', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column12";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column12" TYPE ENUM(\'A\', \'B\', \'C\');' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column12" SET NOT NULL;' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column12" SET DEFAULT \'A\'', + ], + [ + '', + 'column13', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column13";' . + 'ALTER TABLE "table" ALTER COLUMN "column13" TYPE TIMESTAMP;' . + 'ALTER TABLE "table" ALTER COLUMN "column13" SET NOT NULL;' . + 'ALTER TABLE "table" ALTER COLUMN "column13" SET DEFAULT CURRENT_TIMESTAMP', + ], + [ + 'schema', + 'column13', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column13";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column13" TYPE TIMESTAMP;' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column13" SET NOT NULL;' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column13" SET DEFAULT CURRENT_TIMESTAMP', + ], + ]; + } + + /** + * @return array + */ + protected function getModifyColumnFixtures13012(): array + { + return [ + new Column('old', ['type' => Column::TYPE_VARCHAR]), + new Column('new', ['type' => Column::TYPE_VARCHAR]), + ]; + } + + /** + * @return string + */ + protected function getModifyColumnSql(): string + { + return 'ALTER TABLE "database"."table" RENAME COLUMN "old" TO "new";'; + } + + /** + * @return string + */ + protected function getReleaseSavepointSql(): string + { + return 'RELEASE SAVEPOINT PH_SAVEPOINT_1'; + } + + /** + * @return string + */ + protected function getRollbackSavepointSql(): string + { + return 'ROLLBACK TO SAVEPOINT PH_SAVEPOINT_1'; + } + + /** + * @return array + */ + protected function getTableExistsFixtures(): array + { + return [ + [ + null, + "SELECT CASE WHEN COUNT(*) > 0 THEN 1 ELSE 0 END " . + "FROM information_schema.tables " . + "WHERE table_schema = 'public' AND table_name='table'", + ], + [ + 'schema', + "SELECT CASE WHEN COUNT(*) > 0 THEN 1 ELSE 0 END " . + "FROM information_schema.tables " . + "WHERE table_schema = 'schema' AND table_name='table'", + ], + ]; + } + + /** + * @return array + */ + protected function getTruncateTableFixtures(): array + { + return [ + ['', 'TRUNCATE TABLE table'], + ['schema', 'TRUNCATE TABLE schema.table'], + ]; + } + + /** + * @return array + */ + protected function getViewExistsFixtures(): array + { + return [ + [ + null, + "SELECT CASE WHEN COUNT(*) > 0 THEN 1 ELSE 0 END FROM pg_views WHERE viewname='view' AND schemaname='public'", + ], + [ + 'schema', + "SELECT CASE WHEN COUNT(*) > 0 THEN 1 ELSE 0 END FROM pg_views WHERE viewname='view' AND schemaname='schema'", + ], + ]; + } + + /** + * Returns the object for the dialect + * + * @return Postgresql + */ + protected function getDialectObject(): Postgresql + { + return new Postgresql(); + } + + +// protected function getReferenceAddForeignKey() +// { +// return [ +// 'fk1' => new Reference('fk1', [ +// 'referencedTable' => 'foreign_key_parent', +// 'columns' => ['child_int'], +// 'referencedColumns' => ['refer_int'], +// 'onDelete' => 'CASCADE', +// 'onUpdate' => 'RESTRICT', +// ]), +// 'fk2' => new Reference('', [ +// 'referencedTable' => 'foreign_key_parent', +// 'columns' => ['child_int'], +// 'referencedColumns' => ['refer_int'] +// ]) +// ]; +// } +// +// protected function getForeignKey($foreignKeyName) +// { +// $sql = rtrim(file_get_contents(dataFolder('fixtures/Db/postgresql/example9.sql')); +// str_replace('%_FK_%', $foreignKeyName, $sql); +// +// return $sql; +// } +// +// protected function getReferenceDropForeignKey() +// { +// return [ +// 'fk1' => new Reference('fk1', [ +// 'referencedTable' => 'foreign_key_parent', +// 'columns' => ['child_int'], +// 'referencedColumns' => ['refer_int'], +// 'onDelete' => 'CASCADE', +// 'onUpdate' => 'RESTRICT', +// ]), +// 'fk2' => new Reference('', [ +// 'referencedTable' => 'foreign_key_parent', +// 'columns' => ['child_int'], +// 'referencedColumns' => ['refer_int'], +// 'onDelete' => 'CASCADE', +// 'onUpdate' => 'RESTRICT', +// ]) +// ]; +// } +// +// +// protected function getReferenceObject() +// { +// return [ +// [ +// ['test_describereferences' => require PATH_FIXTURES . 'metadata/test_describereference.php'] +// ] +// ]; +// } +} diff --git a/tests/integration/Db/Dialect/Helper/SqliteHelper.php b/tests/integration/Db/Dialect/Helper/SqliteHelper.php new file mode 100644 index 00000000000..6ae7037c614 --- /dev/null +++ b/tests/integration/Db/Dialect/Helper/SqliteHelper.php @@ -0,0 +1,278 @@ + 'SELECT 1'], null, 'CREATE VIEW "test_view" AS SELECT 1'], + [['sql' => 'SELECT 1'], 'schema', 'CREATE VIEW "schema"."test_view" AS SELECT 1'], + ]; + } + + /** + * @return array + */ + protected function getDescribeColumnsFixtures(): array + { + return [ + ['schema.name.with.dots', "PRAGMA table_info('table')"], + ['', "PRAGMA table_info('table')"], + ['schema', "PRAGMA table_info('table')"], + ]; + } + + /** + * @return array + */ + protected function getDescribeReferencesFixtures() + { + return [ + ['', "PRAGMA foreign_key_list('table')"], + ['schema', "PRAGMA foreign_key_list('table')"], + ]; + } + + /** + * @return array + */ + protected function getDropColumnFixtures(): array + { + return []; + } + + /** + * @return array + */ + protected function getDropForeignKeyFixtures(): array + { + return []; + } + + /** + * @return array + */ + protected function getDropIndexFixtures() + { + return [ + ['', 'index1', 'DROP INDEX "index1"'], + ['schema', 'index1', 'DROP INDEX "schema"."index1"'], + ]; + } + + /** + * @return array + */ + protected function getDropPrimaryKeyFixtures(): array + { + return []; + } + + /** + * @return array + */ + protected function getDropTableFixtures(): array + { + return [ + ['', true, 'DROP TABLE IF EXISTS "table"'], + ['schema', true, 'DROP TABLE IF EXISTS "schema"."table"'], + ['', false, 'DROP TABLE "table"'], + ['schema', false, 'DROP TABLE "schema"."table"'], + ]; + } + + /** + * @return array + */ + protected function getDropViewFixtures(): array + { + return [ + ['', false, 'DROP VIEW "test_view"'], + ['', true, 'DROP VIEW IF EXISTS "test_view"'], + ['schema', false, 'DROP VIEW "schema"."test_view"'], + ['schema', true, 'DROP VIEW IF EXISTS "schema"."test_view"'], + ]; + } + + /** + * @return array + */ + protected function getListViewFixtures(): array + { + return [ + ['', "SELECT tbl_name FROM sqlite_master WHERE type = 'view' ORDER BY tbl_name"], + ['schema', "SELECT tbl_name FROM sqlite_master WHERE type = 'view' ORDER BY tbl_name"], + ]; + } + + /** + * @return array + */ + protected function getModifyColumnFixtures(): array + { + return []; + } + + /** + * @return array + */ + protected function getModifyColumnFixtures13012(): array + { + return [ + new Column('old', ['type' => Column::TYPE_VARCHAR]), + new Column('new', ['type' => Column::TYPE_VARCHAR]), + ]; + } + + /** + * @return string + */ + protected function getModifyColumnSql(): string + { + return ''; + } + + /** + * @return string + */ + protected function getReleaseSavepointSql(): string + { + return 'RELEASE SAVEPOINT PH_SAVEPOINT_1'; + } + + /** + * @return string + */ + protected function getRollbackSavepointSql(): string + { + return 'ROLLBACK TO SAVEPOINT PH_SAVEPOINT_1'; + } + + /** + * @return array + */ + protected function getTableExistsFixtures(): array + { + return []; + } + + /** + * @return array + */ + protected function getTruncateTableFixtures(): array + { + return [ + ['', 'DELETE FROM "table"'], + ['schema', 'DELETE FROM "schema"."table"'], + ]; + } + + /** + * @return array + */ + protected function getViewExistsFixtures(): array + { + return [ + [ + null, + "SELECT CASE WHEN COUNT(*) > 0 THEN 1 ELSE 0 END " . + "FROM sqlite_master WHERE type='view' AND tbl_name='view'", + ], + [ + 'schema', + "SELECT CASE WHEN COUNT(*) > 0 THEN 1 ELSE 0 END " . + "FROM sqlite_master WHERE type='view' AND tbl_name='view'", + ], + ]; + } + + /** + * Returns the object for the dialect + * + * @return Sqlite + */ + protected function getDialectObject(): Sqlite + { + return new Sqlite(); + } +} diff --git a/tests/integration/Db/Dialect/LimitCest.php b/tests/integration/Db/Dialect/LimitCest.php new file mode 100644 index 00000000000..203f3b91339 --- /dev/null +++ b/tests/integration/Db/Dialect/LimitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class LimitCest +{ + /** + * Tests Phalcon\Db\Dialect :: limit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectLimit(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - limit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/ListTablesCest.php b/tests/integration/Db/Dialect/ListTablesCest.php new file mode 100644 index 00000000000..31b4dc77c0a --- /dev/null +++ b/tests/integration/Db/Dialect/ListTablesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class ListTablesCest +{ + /** + * Tests Phalcon\Db\Dialect :: listTables() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectListTables(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - listTables()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/ModifyColumnCest.php b/tests/integration/Db/Dialect/ModifyColumnCest.php new file mode 100644 index 00000000000..1a6f7880297 --- /dev/null +++ b/tests/integration/Db/Dialect/ModifyColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class ModifyColumnCest +{ + /** + * Tests Phalcon\Db\Dialect :: modifyColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectModifyColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - modifyColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/AddColumnCest.php b/tests/integration/Db/Dialect/Mysql/AddColumnCest.php new file mode 100644 index 00000000000..89f04356fb2 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/AddColumnCest.php @@ -0,0 +1,182 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\DialectTrait; + +class AddColumnCest +{ + use DialectTrait; + + /** + * Tests Dialect::addColumn + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function testAddColumn(IntegrationTester $I) + { + $data = $this->getAddColumnFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $column = $item[1]; + $expected = $item[2]; + $columns = $this->getColumns(); + $dialect = $this->getDialectMysql(); + $actual = $dialect->addColumn('table', $schema, $columns[$column]); + + $I->assertEquals($expected, $actual); + } + } + + /** + * @return array + */ + protected function getAddColumnFixtures(): array + { + return [ + [ + '', + 'column1', + 'ALTER TABLE `table` ADD `column1` VARCHAR(10)', + ], + [ + 'schema', + 'column1', + 'ALTER TABLE `schema`.`table` ADD `column1` VARCHAR(10)', + ], + [ + '', + 'column2', + 'ALTER TABLE `table` ADD `column2` INT(18) UNSIGNED', + ], + [ + 'schema', + 'column2', + 'ALTER TABLE `schema`.`table` ADD `column2` INT(18) UNSIGNED', + ], + [ + '', + 'column3', + 'ALTER TABLE `table` ADD `column3` DECIMAL(10,2) NOT NULL', + ], + [ + 'schema', + 'column3', + 'ALTER TABLE `schema`.`table` ADD `column3` DECIMAL(10,2) NOT NULL', + ], + [ + '', + 'column4', + 'ALTER TABLE `table` ADD `column4` CHAR(100) NOT NULL', + ], + [ + 'schema', + 'column4', + 'ALTER TABLE `schema`.`table` ADD `column4` CHAR(100) NOT NULL', + ], + [ + '', + 'column5', + 'ALTER TABLE `table` ADD `column5` DATE NOT NULL', + ], + [ + 'schema', + 'column5', + 'ALTER TABLE `schema`.`table` ADD `column5` DATE NOT NULL', + ], + [ + '', + 'column6', + 'ALTER TABLE `table` ADD `column6` DATETIME NOT NULL', + ], + [ + 'schema', + 'column6', + 'ALTER TABLE `schema`.`table` ADD `column6` DATETIME NOT NULL', + ], + [ + '', + 'column7', + 'ALTER TABLE `table` ADD `column7` TEXT NOT NULL', + ], + [ + 'schema', + 'column7', + 'ALTER TABLE `schema`.`table` ADD `column7` TEXT NOT NULL', + ], + [ + '', + 'column8', + 'ALTER TABLE `table` ADD `column8` FLOAT(10,2) NOT NULL', + ], + [ + 'schema', + 'column8', + 'ALTER TABLE `schema`.`table` ADD `column8` FLOAT(10,2) NOT NULL', + ], + [ + '', + 'column9', + 'ALTER TABLE `table` ADD `column9` VARCHAR(10) DEFAULT "column9"', + ], + [ + 'schema', + 'column9', + 'ALTER TABLE `schema`.`table` ADD `column9` VARCHAR(10) DEFAULT "column9"', + ], + [ + '', + 'column10', + 'ALTER TABLE `table` ADD `column10` INT(18) UNSIGNED DEFAULT "10"', + ], + [ + 'schema', + 'column10', + 'ALTER TABLE `schema`.`table` ADD `column10` INT(18) UNSIGNED DEFAULT "10"', + ], + [ + '', + 'column11', + 'ALTER TABLE `table` ADD `column11` BIGINT(20) UNSIGNED', + ], + [ + 'schema', + 'column11', + 'ALTER TABLE `schema`.`table` ADD `column11` BIGINT(20) UNSIGNED', + ], + [ + '', + 'column12', + 'ALTER TABLE `table` ADD `column12` ENUM("A", "B", "C") DEFAULT "A" NOT NULL AFTER `column11`', + ], + [ + 'schema', + 'column12', + 'ALTER TABLE `schema`.`table` ADD `column12` ENUM("A", "B", "C") DEFAULT "A" NOT NULL AFTER `column11`', + ], + [ + '', + 'column13', + 'ALTER TABLE `table` ADD `column13` TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL', + ], + [ + 'schema', + 'column13', + 'ALTER TABLE `schema`.`table` ADD `column13` TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL', + ], + ]; + } +} diff --git a/tests/integration/Db/Dialect/Mysql/AddForeignKeyCest.php b/tests/integration/Db/Dialect/Mysql/AddForeignKeyCest.php new file mode 100644 index 00000000000..76020be80c6 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/AddForeignKeyCest.php @@ -0,0 +1,119 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\DialectTrait; + +class AddForeignKeyCest +{ + use DialectTrait; + + /** + * Tests Phalcon\Db\Dialect\Mysql :: addForeignKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function dbDialectMysqlAddForeignKey(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - addForeignKey()"); + $data = $this->getAddForeignKeyFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $reference = $item[1]; + $expected = $item[2]; + $dialect = $this->getDialectMysql(); + $references = $this->getReferences(); + $actual = $dialect->addForeignKey('table', $schema, $references[$reference]); + + $I->assertEquals($expected, $actual); + } + } + + /** + * @return array + */ + protected function getAddForeignKeyFixtures(): array + { + return [ + [ + '', + 'fk1', + 'ALTER TABLE `table` ADD CONSTRAINT `fk1` ' . + 'FOREIGN KEY (`column1`) REFERENCES `ref_table`(`column2`)', + ], + [ + 'schema', + 'fk1', + 'ALTER TABLE `schema`.`table` ADD CONSTRAINT `fk1` ' . + 'FOREIGN KEY (`column1`) REFERENCES `ref_table`(`column2`)', + ], + [ + '', + 'fk2', + 'ALTER TABLE `table` ADD CONSTRAINT `fk2` ' . + 'FOREIGN KEY (`column3`, `column4`) REFERENCES `ref_table`(`column5`, `column6`)', + ], + [ + 'schema', + 'fk2', + 'ALTER TABLE `schema`.`table` ADD CONSTRAINT `fk2` ' . + 'FOREIGN KEY (`column3`, `column4`) REFERENCES `ref_table`(`column5`, `column6`)', + ], + [ + '', + 'fk3', + 'ALTER TABLE `table` ADD CONSTRAINT `fk3` ' . + 'FOREIGN KEY (`column1`) REFERENCES `ref_table`(`column2`) ' . + 'ON DELETE CASCADE', + ], + [ + 'schema', + 'fk3', + 'ALTER TABLE `schema`.`table` ADD CONSTRAINT `fk3` ' . + 'FOREIGN KEY (`column1`) REFERENCES `ref_table`(`column2`) ' . + 'ON DELETE CASCADE', + ], + [ + '', + 'fk4', + 'ALTER TABLE `table` ADD CONSTRAINT `fk4` ' . + 'FOREIGN KEY (`column1`) REFERENCES `ref_table`(`column2`) ' . + 'ON UPDATE SET NULL', + ], + [ + 'schema', + 'fk4', + 'ALTER TABLE `schema`.`table` ADD CONSTRAINT `fk4` ' . + 'FOREIGN KEY (`column1`) REFERENCES `ref_table`(`column2`) ' . + 'ON UPDATE SET NULL', + ], + [ + '', + 'fk5', + 'ALTER TABLE `table` ADD CONSTRAINT `fk5` ' . + 'FOREIGN KEY (`column1`) REFERENCES `ref_table`(`column2`) ' . + 'ON DELETE CASCADE ON UPDATE NO ACTION', + ], + [ + 'schema', + 'fk5', + 'ALTER TABLE `schema`.`table` ADD CONSTRAINT `fk5` ' . + 'FOREIGN KEY (`column1`) REFERENCES `ref_table`(`column2`) ' . + 'ON DELETE CASCADE ON UPDATE NO ACTION', + ], + ]; + } +} diff --git a/tests/integration/Db/Dialect/Mysql/AddIndexCest.php b/tests/integration/Db/Dialect/Mysql/AddIndexCest.php new file mode 100644 index 00000000000..9bc23f62726 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/AddIndexCest.php @@ -0,0 +1,61 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\DialectTrait; + +class AddIndexCest +{ + use DialectTrait; + + /** + * Tests Phalcon\Db\Dialect\Mysql :: addIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function dbDialectMysqlAddIndex(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - addIndex()"); + $data = $this->getAddIndexFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $index = $item[1]; + $expected = $item[2]; + $dialect = $this->getDialectMysql(); + $indexes = $this->getIndexes(); + $actual = $dialect->addIndex('table', $schema, $indexes[$index]); + + $I->assertEquals($expected, $actual); + } + } + + /** + * @return array + */ + protected function getAddIndexFixtures() + { + return [ + ['', 'index1', 'ALTER TABLE `table` ADD INDEX `index1` (`column1`)'], + ['schema', 'index1', 'ALTER TABLE `schema`.`table` ADD INDEX `index1` (`column1`)'], + ['', 'index2', 'ALTER TABLE `table` ADD INDEX `index2` (`column1`, `column2`)'], + ['schema', 'index2', 'ALTER TABLE `schema`.`table` ADD INDEX `index2` (`column1`, `column2`)'], + ['', 'PRIMARY', 'ALTER TABLE `table` ADD INDEX `PRIMARY` (`column3`)'], + ['schema', 'PRIMARY', 'ALTER TABLE `schema`.`table` ADD INDEX `PRIMARY` (`column3`)'], + ['', 'index4', 'ALTER TABLE `table` ADD UNIQUE INDEX `index4` (`column4`)'], + ['schema', 'index4', 'ALTER TABLE `schema`.`table` ADD UNIQUE INDEX `index4` (`column4`)'], + ]; + } +} diff --git a/tests/integration/Db/Dialect/Mysql/AddPrimaryKeyCest.php b/tests/integration/Db/Dialect/Mysql/AddPrimaryKeyCest.php new file mode 100644 index 00000000000..1e2f3b20813 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/AddPrimaryKeyCest.php @@ -0,0 +1,55 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\DialectTrait; + +class AddPrimaryKeyCest +{ + use DialectTrait; + + /** + * Tests Phalcon\Db\Dialect\Mysql :: addPrimaryKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function dbDialectMysqlAddPrimaryKey(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - addPrimaryKey()"); + $data = $this->getAddPrimaryKeyFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $reference = $item[1]; + $expected = $item[2]; + $dialect = $this->getDialectMysql(); + $indexes = $this->getIndexes(); + $actual = $dialect->addPrimaryKey('table', $schema, $indexes[$reference]); + + $I->assertEquals($expected, $actual); + } + } + + /** + * @return array + */ + protected function getAddPrimaryKeyFixtures(): array + { + return [ + ['', 'PRIMARY', 'ALTER TABLE `table` ADD PRIMARY KEY (`column3`)'], + ['schema', 'PRIMARY', 'ALTER TABLE `schema`.`table` ADD PRIMARY KEY (`column3`)'], + ]; + } +} diff --git a/tests/integration/Db/Dialect/Mysql/CreateSavepointCest.php b/tests/integration/Db/Dialect/Mysql/CreateSavepointCest.php new file mode 100644 index 00000000000..6ba558582c0 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/CreateSavepointCest.php @@ -0,0 +1,46 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\DialectTrait; + +class CreateSavepointCest +{ + use DialectTrait; + + /** + * Tests Phalcon\Db\Dialect\Mysql :: createSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function dbDialectMysqlCreateSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - createSavepoint()"); + $dialect = $this->getDialectMysql(); + $expected = $this->getCreateSavepointSql(); + $actual = $dialect->createSavepoint('PH_SAVEPOINT_1'); + + $I->assertEquals($expected, $actual); + } + + /** + * @return string + */ + protected function getCreateSavepointSql(): string + { + return 'SAVEPOINT PH_SAVEPOINT_1'; + } +} diff --git a/tests/integration/Db/Dialect/Mysql/CreateTableCest.php b/tests/integration/Db/Dialect/Mysql/CreateTableCest.php new file mode 100644 index 00000000000..69a173951f7 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/CreateTableCest.php @@ -0,0 +1,223 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; +use Phalcon\Db\Column; +use Phalcon\Db\Index; +use Phalcon\Db\Reference; +use Phalcon\Test\Fixtures\Traits\DialectTrait; + +class CreateTableCest +{ + use DialectTrait; + + /** + * Tests Phalcon\Db\Dialect\Mysql :: createTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function dbDialectMysqlCreateTable(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - createTable()"); + $data = $this->getCreateTableFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $definition = $item[1]; + $expected = $item[2]; + $dialect = $this->getDialectMysql(); + $actual = $dialect->createTable('table', $schema, $definition); + + $I->assertEquals($expected, $actual); + } + } + + /** + * @return array + */ + protected function getCreateTableFixtures(): array + { + return [ + 'example1' => [ + '', + [ + 'columns' => [ + new Column( + 'column1', + [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + ] + ), + new Column( + 'column2', + [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + ] + ), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/mysql/example1.sql'))), + ], + 'example2' => [ + '', + [ + 'columns' => [ + new Column( + 'column2', + [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + ] + ), + new Column( + 'column3', + [ + 'type' => Column::TYPE_DECIMAL, + 'size' => 10, + 'scale' => 2, + 'unsigned' => false, + 'notNull' => true, + ] + ), + new Column( + 'column1', + [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + ] + ), + ], + 'indexes' => [ + new Index('PRIMARY', ['column3']), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/mysql/example2.sql'))), + ], + 'example3' => [ + '', + [ + 'columns' => [ + new Column( + 'column2', + [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + ] + ), + new Column( + 'column3', + [ + 'type' => Column::TYPE_DECIMAL, + 'size' => 10, + 'scale' => 2, + 'unsigned' => false, + 'notNull' => true, + ] + ), + new Column( + 'column1', + [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + ] + ), + ], + 'indexes' => [ + new Index('PRIMARY', ['column3']), + ], + 'references' => [ + new Reference('fk3', [ + 'referencedTable' => 'ref_table', + 'columns' => ['column1'], + 'referencedColumns' => ['column2'], + 'onDelete' => 'CASCADE', + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/mysql/example3.sql'))), + ], + 'example4' => [ + '', + [ + 'columns' => [ + new Column( + 'column9', + [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + 'default' => 'column9', + ] + ), + new Column( + 'column10', + [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + 'default' => 10, + ] + ), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/mysql/example4.sql'))), + ], + 'example5' => [ + '', + [ + 'columns' => [ + new Column( + 'column11', + [ + 'type' => 'BIGINT', + 'typeReference' => Column::TYPE_INTEGER, + 'size' => 20, + 'unsigned' => true, + 'notNull' => false, + ] + ), + new Column( + 'column12', + [ + 'type' => 'ENUM', + 'typeValues' => ['A', 'B', 'C'], + 'notNull' => true, + 'default' => 'A', + 'after' => 'column11', + ] + ), + new Column( + 'column13', + [ + 'type' => Column::TYPE_TIMESTAMP, + 'notNull' => true, + 'default' => 'CURRENT_TIMESTAMP', + ] + ), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/mysql/example5.sql'))), + ], + ]; + } +} diff --git a/tests/integration/Db/Dialect/Mysql/CreateViewCest.php b/tests/integration/Db/Dialect/Mysql/CreateViewCest.php new file mode 100644 index 00000000000..00a126d4f7c --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/CreateViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class CreateViewCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: createView() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlCreateView(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - createView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/DescribeColumnsCest.php b/tests/integration/Db/Dialect/Mysql/DescribeColumnsCest.php new file mode 100644 index 00000000000..76e57d09179 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/DescribeColumnsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class DescribeColumnsCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: describeColumns() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlDescribeColumns(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - describeColumns()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/DescribeIndexesCest.php b/tests/integration/Db/Dialect/Mysql/DescribeIndexesCest.php new file mode 100644 index 00000000000..e0f4a744062 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/DescribeIndexesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class DescribeIndexesCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: describeIndexes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlDescribeIndexes(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - describeIndexes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/DescribeReferencesCest.php b/tests/integration/Db/Dialect/Mysql/DescribeReferencesCest.php new file mode 100644 index 00000000000..0f5e371e368 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/DescribeReferencesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class DescribeReferencesCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: describeReferences() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlDescribeReferences(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - describeReferences()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/DropColumnCest.php b/tests/integration/Db/Dialect/Mysql/DropColumnCest.php new file mode 100644 index 00000000000..e8a360ad2a1 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/DropColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class DropColumnCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: dropColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlDropColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - dropColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/DropForeignKeyCest.php b/tests/integration/Db/Dialect/Mysql/DropForeignKeyCest.php new file mode 100644 index 00000000000..850eee87562 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/DropForeignKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class DropForeignKeyCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: dropForeignKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlDropForeignKey(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - dropForeignKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/DropIndexCest.php b/tests/integration/Db/Dialect/Mysql/DropIndexCest.php new file mode 100644 index 00000000000..bdc6e08519c --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/DropIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class DropIndexCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: dropIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlDropIndex(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - dropIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/DropPrimaryKeyCest.php b/tests/integration/Db/Dialect/Mysql/DropPrimaryKeyCest.php new file mode 100644 index 00000000000..1ac6cc3875f --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/DropPrimaryKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class DropPrimaryKeyCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: dropPrimaryKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlDropPrimaryKey(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - dropPrimaryKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/DropTableCest.php b/tests/integration/Db/Dialect/Mysql/DropTableCest.php new file mode 100644 index 00000000000..62da4ac57e8 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/DropTableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class DropTableCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: dropTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlDropTable(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - dropTable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/DropViewCest.php b/tests/integration/Db/Dialect/Mysql/DropViewCest.php new file mode 100644 index 00000000000..34f9fc3c5a4 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/DropViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class DropViewCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: dropView() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlDropView(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - dropView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/EscapeCest.php b/tests/integration/Db/Dialect/Mysql/EscapeCest.php new file mode 100644 index 00000000000..7d45b3e8713 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/EscapeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class EscapeCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: escape() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlEscape(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - escape()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/EscapeSchemaCest.php b/tests/integration/Db/Dialect/Mysql/EscapeSchemaCest.php new file mode 100644 index 00000000000..33ee0076ce7 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/EscapeSchemaCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class EscapeSchemaCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: escapeSchema() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlEscapeSchema(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - escapeSchema()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/ForUpdateCest.php b/tests/integration/Db/Dialect/Mysql/ForUpdateCest.php new file mode 100644 index 00000000000..137a3529f51 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/ForUpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class ForUpdateCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: forUpdate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlForUpdate(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - forUpdate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/GetColumnDefinitionCest.php b/tests/integration/Db/Dialect/Mysql/GetColumnDefinitionCest.php new file mode 100644 index 00000000000..9ae45d59ffc --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/GetColumnDefinitionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class GetColumnDefinitionCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: getColumnDefinition() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlGetColumnDefinition(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - getColumnDefinition()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/GetColumnListCest.php b/tests/integration/Db/Dialect/Mysql/GetColumnListCest.php new file mode 100644 index 00000000000..0b00482ea5a --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/GetColumnListCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class GetColumnListCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: getColumnList() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlGetColumnList(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - getColumnList()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/GetCustomFunctionsCest.php b/tests/integration/Db/Dialect/Mysql/GetCustomFunctionsCest.php new file mode 100644 index 00000000000..661c5e561be --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/GetCustomFunctionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class GetCustomFunctionsCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: getCustomFunctions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlGetCustomFunctions(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - getCustomFunctions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/GetForeignKeyChecksCest.php b/tests/integration/Db/Dialect/Mysql/GetForeignKeyChecksCest.php new file mode 100644 index 00000000000..84fd07aaea2 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/GetForeignKeyChecksCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class GetForeignKeyChecksCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: getForeignKeyChecks() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlGetForeignKeyChecks(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - getForeignKeyChecks()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/GetSqlColumnCest.php b/tests/integration/Db/Dialect/Mysql/GetSqlColumnCest.php new file mode 100644 index 00000000000..cd8ae93bcae --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/GetSqlColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class GetSqlColumnCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: getSqlColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlGetSqlColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - getSqlColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/GetSqlExpressionCest.php b/tests/integration/Db/Dialect/Mysql/GetSqlExpressionCest.php new file mode 100644 index 00000000000..0ad087ae3f2 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/GetSqlExpressionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class GetSqlExpressionCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: getSqlExpression() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlGetSqlExpression(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - getSqlExpression()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/GetSqlTableCest.php b/tests/integration/Db/Dialect/Mysql/GetSqlTableCest.php new file mode 100644 index 00000000000..85b838e0b8b --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/GetSqlTableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class GetSqlTableCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: getSqlTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlGetSqlTable(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - getSqlTable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/LimitCest.php b/tests/integration/Db/Dialect/Mysql/LimitCest.php new file mode 100644 index 00000000000..09a97b2a638 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/LimitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class LimitCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: limit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlLimit(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - limit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/ListTablesCest.php b/tests/integration/Db/Dialect/Mysql/ListTablesCest.php new file mode 100644 index 00000000000..3e5890cf21a --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/ListTablesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class ListTablesCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: listTables() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlListTables(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - listTables()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/ListViewsCest.php b/tests/integration/Db/Dialect/Mysql/ListViewsCest.php new file mode 100644 index 00000000000..e081ef9174d --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/ListViewsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class ListViewsCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: listViews() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlListViews(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - listViews()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/ModifyColumnCest.php b/tests/integration/Db/Dialect/Mysql/ModifyColumnCest.php new file mode 100644 index 00000000000..7b1a25d5d35 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/ModifyColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class ModifyColumnCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: modifyColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlModifyColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - modifyColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/RegisterCustomFunctionCest.php b/tests/integration/Db/Dialect/Mysql/RegisterCustomFunctionCest.php new file mode 100644 index 00000000000..52b849861fa --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/RegisterCustomFunctionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class RegisterCustomFunctionCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: registerCustomFunction() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlRegisterCustomFunction(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - registerCustomFunction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/ReleaseSavepointCest.php b/tests/integration/Db/Dialect/Mysql/ReleaseSavepointCest.php new file mode 100644 index 00000000000..cf86493250f --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/ReleaseSavepointCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class ReleaseSavepointCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: releaseSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlReleaseSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - releaseSavepoint()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/RollbackSavepointCest.php b/tests/integration/Db/Dialect/Mysql/RollbackSavepointCest.php new file mode 100644 index 00000000000..9331daaf476 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/RollbackSavepointCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class RollbackSavepointCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: rollbackSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlRollbackSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - rollbackSavepoint()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/SelectCest.php b/tests/integration/Db/Dialect/Mysql/SelectCest.php new file mode 100644 index 00000000000..292ac8f04e5 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/SelectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class SelectCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: select() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlSelect(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - select()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/SharedLockCest.php b/tests/integration/Db/Dialect/Mysql/SharedLockCest.php new file mode 100644 index 00000000000..c0e65fa9eca --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/SharedLockCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class SharedLockCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: sharedLock() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlSharedLock(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - sharedLock()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/SupportsReleaseSavepointsCest.php b/tests/integration/Db/Dialect/Mysql/SupportsReleaseSavepointsCest.php new file mode 100644 index 00000000000..742da20e125 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/SupportsReleaseSavepointsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class SupportsReleaseSavepointsCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: supportsReleaseSavepoints() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlSupportsReleaseSavepoints(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - supportsReleaseSavepoints()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/SupportsSavepointsCest.php b/tests/integration/Db/Dialect/Mysql/SupportsSavepointsCest.php new file mode 100644 index 00000000000..738b7ce8cea --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/SupportsSavepointsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class SupportsSavepointsCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: supportsSavepoints() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlSupportsSavepoints(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - supportsSavepoints()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/TableExistsCest.php b/tests/integration/Db/Dialect/Mysql/TableExistsCest.php new file mode 100644 index 00000000000..0171479f9af --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/TableExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class TableExistsCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: tableExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlTableExists(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - tableExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/TableOptionsCest.php b/tests/integration/Db/Dialect/Mysql/TableOptionsCest.php new file mode 100644 index 00000000000..30a8dbb9b6c --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/TableOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class TableOptionsCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: tableOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlTableOptions(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - tableOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/TruncateTableCest.php b/tests/integration/Db/Dialect/Mysql/TruncateTableCest.php new file mode 100644 index 00000000000..17698c7febf --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/TruncateTableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class TruncateTableCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: truncateTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlTruncateTable(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - truncateTable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Mysql/ViewExistsCest.php b/tests/integration/Db/Dialect/Mysql/ViewExistsCest.php new file mode 100644 index 00000000000..797df9f6018 --- /dev/null +++ b/tests/integration/Db/Dialect/Mysql/ViewExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Mysql; + +use IntegrationTester; + +class ViewExistsCest +{ + /** + * Tests Phalcon\Db\Dialect\Mysql :: viewExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectMysqlViewExists(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Mysql - viewExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/AddColumnCest.php b/tests/integration/Db/Dialect/Postgresql/AddColumnCest.php new file mode 100644 index 00000000000..1737ec4cad7 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/AddColumnCest.php @@ -0,0 +1,183 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\DialectTrait; + +class AddColumnCest +{ + use DialectTrait; + + /** + * Tests Dialect::addColumn + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function dbDialectPostgresqlAddColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - addColumn()"); + $data = $this->getAddColumnFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $column = $item[1]; + $expected = $item[2]; + $columns = $this->getColumns(); + $dialect = $this->getDialectPostgresql(); + $actual = $dialect->addColumn('table', $schema, $columns[$column]); + + $I->assertEquals($expected, $actual); + } + } + + /** + * @return array + */ + protected function getAddColumnFixtures(): array + { + return [ + [ + '', + 'column1', + 'ALTER TABLE "table" ADD COLUMN "column1" CHARACTER VARYING(10)', + ], + [ + 'schema', + 'column1', + 'ALTER TABLE "schema"."table" ADD COLUMN "column1" CHARACTER VARYING(10)', + ], + [ + '', + 'column2', + 'ALTER TABLE "table" ADD COLUMN "column2" INT', + ], + [ + 'schema', + 'column2', + 'ALTER TABLE "schema"."table" ADD COLUMN "column2" INT', + ], + [ + '', + 'column3', + 'ALTER TABLE "table" ADD COLUMN "column3" NUMERIC(10,2) NOT NULL', + ], + [ + 'schema', + 'column3', + 'ALTER TABLE "schema"."table" ADD COLUMN "column3" NUMERIC(10,2) NOT NULL', + ], + [ + '', + 'column4', + 'ALTER TABLE "table" ADD COLUMN "column4" CHARACTER(100) NOT NULL', + ], + [ + 'schema', + 'column4', + 'ALTER TABLE "schema"."table" ADD COLUMN "column4" CHARACTER(100) NOT NULL', + ], + [ + '', + 'column5', + 'ALTER TABLE "table" ADD COLUMN "column5" DATE NOT NULL', + ], + [ + 'schema', + 'column5', + 'ALTER TABLE "schema"."table" ADD COLUMN "column5" DATE NOT NULL', + ], + [ + '', + 'column6', + 'ALTER TABLE "table" ADD COLUMN "column6" TIMESTAMP NOT NULL', + ], + [ + 'schema', + 'column6', + 'ALTER TABLE "schema"."table" ADD COLUMN "column6" TIMESTAMP NOT NULL', + ], + [ + '', + 'column7', + 'ALTER TABLE "table" ADD COLUMN "column7" TEXT NOT NULL', + ], + [ + 'schema', + 'column7', + 'ALTER TABLE "schema"."table" ADD COLUMN "column7" TEXT NOT NULL', + ], + [ + '', + 'column8', + 'ALTER TABLE "table" ADD COLUMN "column8" FLOAT NOT NULL', + ], + [ + 'schema', + 'column8', + 'ALTER TABLE "schema"."table" ADD COLUMN "column8" FLOAT NOT NULL', + ], + [ + '', + 'column9', + 'ALTER TABLE "table" ADD COLUMN "column9" CHARACTER VARYING(10) DEFAULT \'column9\'', + ], + [ + 'schema', + 'column9', + 'ALTER TABLE "schema"."table" ADD COLUMN "column9" CHARACTER VARYING(10) DEFAULT \'column9\'', + ], + [ + '', + 'column10', + 'ALTER TABLE "table" ADD COLUMN "column10" INT DEFAULT 10', + ], + [ + 'schema', + 'column10', + 'ALTER TABLE "schema"."table" ADD COLUMN "column10" INT DEFAULT 10', + ], + [ + '', + 'column11', + 'ALTER TABLE "table" ADD COLUMN "column11" BIGINT', + ], + [ + 'schema', + 'column11', + 'ALTER TABLE "schema"."table" ADD COLUMN "column11" BIGINT', + ], + [ + '', + 'column12', + 'ALTER TABLE "table" ADD COLUMN "column12" ENUM(\'A\', \'B\', \'C\') DEFAULT \'A\' NOT NULL', + ], + [ + 'schema', + 'column12', + 'ALTER TABLE "schema"."table" ADD COLUMN "column12" ENUM(\'A\', \'B\', \'C\') DEFAULT \'A\' NOT NULL', + ], + [ + '', + 'column13', + 'ALTER TABLE "table" ADD COLUMN "column13" TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL', + ], + [ + 'schema', + 'column13', + 'ALTER TABLE "schema"."table" ADD COLUMN "column13" TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL', + ], + ]; + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/AddForeignKeyCest.php b/tests/integration/Db/Dialect/Postgresql/AddForeignKeyCest.php new file mode 100644 index 00000000000..3959ad5894e --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/AddForeignKeyCest.php @@ -0,0 +1,113 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\DialectTrait; + +class AddForeignKeyCest +{ + use DialectTrait; + + /** + * Tests Phalcon\Db\Dialect\Postgresql :: addForeignKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function dbDialectPostgresqlAddForeignKey(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - addForeignKey()"); + $data = $this->getAddForeignKeyFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $reference = $item[1]; + $expected = $item[2]; + $dialect = $this->getDialectPostgresql(); + $references = $this->getReferences(); + $actual = $dialect->addForeignKey('table', $schema, $references[$reference]); + + $I->assertEquals($expected, $actual); + } + } + + /** + * @return array + */ + protected function getAddForeignKeyFixtures(): array + { + return [ + [ + '', + 'fk1', + 'ALTER TABLE "table" ADD CONSTRAINT "fk1" FOREIGN KEY ("column1") ' . + 'REFERENCES "ref_table" ("column2")', + ], + [ + 'schema', + 'fk1', + 'ALTER TABLE "schema"."table" ADD CONSTRAINT "fk1" FOREIGN KEY ("column1") ' . + 'REFERENCES "ref_table" ("column2")', + ], + [ + '', + 'fk2', + 'ALTER TABLE "table" ADD CONSTRAINT "fk2" FOREIGN KEY ("column3", "column4") ' . + 'REFERENCES "ref_table" ("column5", "column6")', + ], + [ + 'schema', + 'fk2', + 'ALTER TABLE "schema"."table" ADD CONSTRAINT "fk2" FOREIGN KEY ("column3", "column4") ' . + 'REFERENCES "ref_table" ("column5", "column6")', + ], + [ + '', + 'fk3', + 'ALTER TABLE "table" ADD CONSTRAINT "fk3" FOREIGN KEY ("column1") ' . + 'REFERENCES "ref_table" ("column2") ON DELETE CASCADE', + ], + [ + 'schema', + 'fk3', + 'ALTER TABLE "schema"."table" ADD CONSTRAINT "fk3" FOREIGN KEY ("column1") ' . + 'REFERENCES "ref_table" ("column2") ON DELETE CASCADE', + ], + [ + '', + 'fk4', + 'ALTER TABLE "table" ADD CONSTRAINT "fk4" FOREIGN KEY ("column1") ' . + 'REFERENCES "ref_table" ("column2") ON UPDATE SET NULL', + ], + [ + 'schema', + 'fk4', + 'ALTER TABLE "schema"."table" ADD CONSTRAINT "fk4" FOREIGN KEY ("column1") ' . + 'REFERENCES "ref_table" ("column2") ON UPDATE SET NULL', + ], + [ + '', + 'fk5', + 'ALTER TABLE "table" ADD CONSTRAINT "fk5" FOREIGN KEY ("column1") ' . + 'REFERENCES "ref_table" ("column2") ON DELETE CASCADE ON UPDATE NO ACTION', + ], + [ + 'schema', + 'fk5', + 'ALTER TABLE "schema"."table" ADD CONSTRAINT "fk5" FOREIGN KEY ("column1") ' . + 'REFERENCES "ref_table" ("column2") ON DELETE CASCADE ON UPDATE NO ACTION', + ], + ]; + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/AddIndexCest.php b/tests/integration/Db/Dialect/Postgresql/AddIndexCest.php new file mode 100644 index 00000000000..9dfc6033693 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/AddIndexCest.php @@ -0,0 +1,61 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\DialectTrait; + +class AddIndexCest +{ + use DialectTrait; + + /** + * Tests Phalcon\Db\Dialect\Postgresql :: addIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function dbDialectPostgresqlAddIndex(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - addIndex()"); + $data = $this->getAddIndexFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $index = $item[1]; + $expected = $item[2]; + $dialect = $this->getDialectPostgresql(); + $indexes = $this->getIndexes(); + $actual = $dialect->addIndex('table', $schema, $indexes[$index]); + + $I->assertEquals($expected, $actual); + } + } + + /** + * @return array + */ + protected function getAddIndexFixtures() + { + return [ + ['', 'index1', 'CREATE INDEX "index1" ON "table" ("column1")'], + ['schema', 'index1', 'CREATE INDEX "index1" ON "schema"."table" ("column1")'], + ['', 'index2', 'CREATE INDEX "index2" ON "table" ("column1", "column2")'], + ['schema', 'index2', 'CREATE INDEX "index2" ON "schema"."table" ("column1", "column2")'], + ['', 'PRIMARY', 'ALTER TABLE "table" ADD CONSTRAINT "PRIMARY" PRIMARY KEY ("column3")'], + ['schema', 'PRIMARY', 'ALTER TABLE "schema"."table" ADD CONSTRAINT "PRIMARY" PRIMARY KEY ("column3")'], + ['', 'index4', 'CREATE UNIQUE INDEX "index4" ON "table" ("column4")'], + ['schema', 'index4', 'CREATE UNIQUE INDEX "index4" ON "schema"."table" ("column4")'], + ]; + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/AddPrimaryKeyCest.php b/tests/integration/Db/Dialect/Postgresql/AddPrimaryKeyCest.php new file mode 100644 index 00000000000..b422aa346ef --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/AddPrimaryKeyCest.php @@ -0,0 +1,55 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\DialectTrait; + +class AddPrimaryKeyCest +{ + use DialectTrait; + + /** + * Tests Phalcon\Db\Dialect\Postgresql :: addPrimaryKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function dbDialectPostgresqlAddPrimaryKey(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - addPrimaryKey()"); + $data = $this->getAddPrimaryKeyFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $reference = $item[1]; + $expected = $item[2]; + $dialect = $this->getDialectPostgresql(); + $indexes = $this->getIndexes(); + $actual = $dialect->addPrimaryKey('table', $schema, $indexes[$reference]); + + $I->assertEquals($expected, $actual); + } + } + + /** + * @return array + */ + protected function getAddPrimaryKeyFixtures(): array + { + return [ + ['', 'PRIMARY', 'ALTER TABLE "table" ADD CONSTRAINT "PRIMARY" PRIMARY KEY ("column3")'], + ['schema', 'PRIMARY', 'ALTER TABLE "schema"."table" ADD CONSTRAINT "PRIMARY" PRIMARY KEY ("column3")'], + ]; + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/CreateSavepointCest.php b/tests/integration/Db/Dialect/Postgresql/CreateSavepointCest.php new file mode 100644 index 00000000000..562969e5ec6 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/CreateSavepointCest.php @@ -0,0 +1,46 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\DialectTrait; + +class CreateSavepointCest +{ + use DialectTrait; + + /** + * Tests Phalcon\Db\Dialect\Postgresql :: createSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function dbDialectPostgresqlCreateSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - createSavepoint()"); + $dialect = $this->getDialectPostgresql(); + $expected = $this->getCreateSavepointSql(); + $actual = $dialect->createSavepoint('PH_SAVEPOINT_1'); + + $I->assertEquals($expected, $actual); + } + + /** + * @return string + */ + protected function getCreateSavepointSql(): string + { + return 'SAVEPOINT PH_SAVEPOINT_1'; + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/CreateTableCest.php b/tests/integration/Db/Dialect/Postgresql/CreateTableCest.php new file mode 100644 index 00000000000..8a56ed73026 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/CreateTableCest.php @@ -0,0 +1,221 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; +use Phalcon\Db\Column; +use Phalcon\Db\Index; +use Phalcon\Db\Reference; +use Phalcon\Test\Fixtures\Traits\DialectTrait; + +class CreateTableCest +{ + use DialectTrait; + + /** + * Tests Phalcon\Db\Dialect\Postgresql :: createTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function dbDialectPostgresqlCreateTable(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - createTable()"); + $data = $this->getCreateTableFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $definition = $item[1]; + $expected = $item[2]; + $dialect = $this->getDialectPostgresql(); + $actual = $dialect->createTable('table', $schema, $definition); + + $I->assertEquals($expected, $actual); + } + } + + /** + * @return array + */ + protected function getCreateTableFixtures(): array + { + return [ + 'example1' => [ + '', + [ + 'columns' => [ + new Column('column1', [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + ]), + new Column('column2', [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/postgresql/example1.sql'))), + ], + 'example2' => [ + '', + [ + 'columns' => [ + new Column('column2', [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + ]), + new Column('column3', [ + 'type' => Column::TYPE_DECIMAL, + 'size' => 10, + 'scale' => 2, + 'unsigned' => false, + 'notNull' => true, + ]), + new Column('column1', [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + ]), + ], + 'indexes' => [ + new Index('PRIMARY', ['column3']), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/postgresql/example2.sql'))), + ], + 'example3' => [ + '', + [ + 'columns' => [ + new Column('column2', [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + ]), + new Column('column3', [ + 'type' => Column::TYPE_DECIMAL, + 'size' => 10, + 'scale' => 2, + 'unsigned' => false, + 'notNull' => true, + ]), + new Column('column1', [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + ]), + ], + 'indexes' => [ + new Index('PRIMARY', ['column3']), + ], + 'references' => [ + new Reference('fk3', [ + 'referencedTable' => 'ref_table', + 'columns' => ['column1'], + 'referencedColumns' => ['column2'], + 'onDelete' => 'CASCADE', + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/postgresql/example3.sql'))), + ], + 'example4' => [ + '', + [ + 'columns' => [ + new Column('column9', [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + 'default' => 'column9', + ]), + new Column('column10', [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + 'default' => 10, + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/postgresql/example4.sql'))), + ], + 'example5' => [ + '', + [ + 'columns' => [ + new Column('column11', [ + 'type' => 'BIGINT', + 'typeReference' => Column::TYPE_INTEGER, + 'size' => 20, + 'unsigned' => true, + 'notNull' => false, + ]), + new Column('column12', [ + 'type' => 'ENUM', + 'typeValues' => ['A', 'B', 'C'], + 'notNull' => true, + 'default' => 'A', + 'after' => 'column11', + ]), + new Column('column13', [ + 'type' => Column::TYPE_TIMESTAMP, + 'notNull' => true, + 'default' => 'CURRENT_TIMESTAMP', + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/postgresql/example5.sql'))), + ], + 'example6' => [ + '', + [ + 'columns' => [ + new Column('column14', [ + 'type' => Column::TYPE_INTEGER, + 'notNull' => true, + 'autoIncrement' => true, + 'first' => true, + ]), + new Column('column15', [ + 'type' => Column::TYPE_INTEGER, + 'default' => 5, + 'notNull' => true, + 'after' => 'user_id', + ]), + new Column('column16', [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + 'default' => 'column16', + ]), + new Column('column17', [ + 'type' => Column::TYPE_BOOLEAN, + 'default' => "false", + 'notNull' => true, + 'after' => 'track_id', + ]), + new Column('column18', [ + 'type' => Column::TYPE_BOOLEAN, + 'default' => "true", + 'notNull' => true, + 'after' => 'like', + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/postgresql/example6.sql'))), + ], + ]; + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/CreateViewCest.php b/tests/integration/Db/Dialect/Postgresql/CreateViewCest.php new file mode 100644 index 00000000000..ff8cefd0619 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/CreateViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class CreateViewCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: createView() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlCreateView(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - createView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/DescribeColumnsCest.php b/tests/integration/Db/Dialect/Postgresql/DescribeColumnsCest.php new file mode 100644 index 00000000000..180d7729240 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/DescribeColumnsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class DescribeColumnsCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: describeColumns() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlDescribeColumns(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - describeColumns()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/DescribeIndexesCest.php b/tests/integration/Db/Dialect/Postgresql/DescribeIndexesCest.php new file mode 100644 index 00000000000..d7fb25305ea --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/DescribeIndexesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class DescribeIndexesCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: describeIndexes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlDescribeIndexes(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - describeIndexes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/DescribeReferencesCest.php b/tests/integration/Db/Dialect/Postgresql/DescribeReferencesCest.php new file mode 100644 index 00000000000..5834d06bcc3 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/DescribeReferencesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class DescribeReferencesCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: describeReferences() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlDescribeReferences(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - describeReferences()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/DropColumnCest.php b/tests/integration/Db/Dialect/Postgresql/DropColumnCest.php new file mode 100644 index 00000000000..689e7452427 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/DropColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class DropColumnCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: dropColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlDropColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - dropColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/DropForeignKeyCest.php b/tests/integration/Db/Dialect/Postgresql/DropForeignKeyCest.php new file mode 100644 index 00000000000..4666809d3f4 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/DropForeignKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class DropForeignKeyCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: dropForeignKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlDropForeignKey(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - dropForeignKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/DropIndexCest.php b/tests/integration/Db/Dialect/Postgresql/DropIndexCest.php new file mode 100644 index 00000000000..f9608f7d8a0 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/DropIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class DropIndexCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: dropIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlDropIndex(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - dropIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/DropPrimaryKeyCest.php b/tests/integration/Db/Dialect/Postgresql/DropPrimaryKeyCest.php new file mode 100644 index 00000000000..05bc47a7b09 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/DropPrimaryKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class DropPrimaryKeyCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: dropPrimaryKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlDropPrimaryKey(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - dropPrimaryKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/DropTableCest.php b/tests/integration/Db/Dialect/Postgresql/DropTableCest.php new file mode 100644 index 00000000000..99c78b72e85 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/DropTableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class DropTableCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: dropTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlDropTable(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - dropTable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/DropViewCest.php b/tests/integration/Db/Dialect/Postgresql/DropViewCest.php new file mode 100644 index 00000000000..6e4f42bae2b --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/DropViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class DropViewCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: dropView() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlDropView(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - dropView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/EscapeCest.php b/tests/integration/Db/Dialect/Postgresql/EscapeCest.php new file mode 100644 index 00000000000..34edaf14861 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/EscapeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class EscapeCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: escape() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlEscape(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - escape()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/EscapeSchemaCest.php b/tests/integration/Db/Dialect/Postgresql/EscapeSchemaCest.php new file mode 100644 index 00000000000..a520f4f0b53 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/EscapeSchemaCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class EscapeSchemaCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: escapeSchema() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlEscapeSchema(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - escapeSchema()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/ForUpdateCest.php b/tests/integration/Db/Dialect/Postgresql/ForUpdateCest.php new file mode 100644 index 00000000000..4839d3705f0 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/ForUpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class ForUpdateCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: forUpdate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlForUpdate(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - forUpdate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/GetColumnDefinitionCest.php b/tests/integration/Db/Dialect/Postgresql/GetColumnDefinitionCest.php new file mode 100644 index 00000000000..fb01fa89025 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/GetColumnDefinitionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class GetColumnDefinitionCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: getColumnDefinition() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlGetColumnDefinition(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - getColumnDefinition()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/GetColumnListCest.php b/tests/integration/Db/Dialect/Postgresql/GetColumnListCest.php new file mode 100644 index 00000000000..273eb178d59 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/GetColumnListCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class GetColumnListCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: getColumnList() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlGetColumnList(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - getColumnList()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/GetCustomFunctionsCest.php b/tests/integration/Db/Dialect/Postgresql/GetCustomFunctionsCest.php new file mode 100644 index 00000000000..7f0ec6d450b --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/GetCustomFunctionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class GetCustomFunctionsCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: getCustomFunctions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlGetCustomFunctions(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - getCustomFunctions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/GetSqlColumnCest.php b/tests/integration/Db/Dialect/Postgresql/GetSqlColumnCest.php new file mode 100644 index 00000000000..68fac580b10 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/GetSqlColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class GetSqlColumnCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: getSqlColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlGetSqlColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - getSqlColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/GetSqlExpressionCest.php b/tests/integration/Db/Dialect/Postgresql/GetSqlExpressionCest.php new file mode 100644 index 00000000000..49a1eba9678 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/GetSqlExpressionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class GetSqlExpressionCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: getSqlExpression() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlGetSqlExpression(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - getSqlExpression()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/GetSqlTableCest.php b/tests/integration/Db/Dialect/Postgresql/GetSqlTableCest.php new file mode 100644 index 00000000000..a076162eecf --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/GetSqlTableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class GetSqlTableCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: getSqlTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlGetSqlTable(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - getSqlTable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/LimitCest.php b/tests/integration/Db/Dialect/Postgresql/LimitCest.php new file mode 100644 index 00000000000..e1692f5cc7b --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/LimitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class LimitCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: limit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlLimit(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - limit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/ListTablesCest.php b/tests/integration/Db/Dialect/Postgresql/ListTablesCest.php new file mode 100644 index 00000000000..2eed48b35a3 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/ListTablesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class ListTablesCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: listTables() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlListTables(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - listTables()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/ListViewsCest.php b/tests/integration/Db/Dialect/Postgresql/ListViewsCest.php new file mode 100644 index 00000000000..7778f20a69f --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/ListViewsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class ListViewsCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: listViews() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlListViews(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - listViews()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/ModifyColumnCest.php b/tests/integration/Db/Dialect/Postgresql/ModifyColumnCest.php new file mode 100644 index 00000000000..513d124c566 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/ModifyColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class ModifyColumnCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: modifyColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlModifyColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - modifyColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/RegisterCustomFunctionCest.php b/tests/integration/Db/Dialect/Postgresql/RegisterCustomFunctionCest.php new file mode 100644 index 00000000000..b1d7702dd29 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/RegisterCustomFunctionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class RegisterCustomFunctionCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: registerCustomFunction() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlRegisterCustomFunction(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - registerCustomFunction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/ReleaseSavepointCest.php b/tests/integration/Db/Dialect/Postgresql/ReleaseSavepointCest.php new file mode 100644 index 00000000000..5247341753a --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/ReleaseSavepointCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class ReleaseSavepointCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: releaseSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlReleaseSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - releaseSavepoint()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/RollbackSavepointCest.php b/tests/integration/Db/Dialect/Postgresql/RollbackSavepointCest.php new file mode 100644 index 00000000000..4e9088055b3 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/RollbackSavepointCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class RollbackSavepointCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: rollbackSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlRollbackSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - rollbackSavepoint()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/SelectCest.php b/tests/integration/Db/Dialect/Postgresql/SelectCest.php new file mode 100644 index 00000000000..b7844d85374 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/SelectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class SelectCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: select() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlSelect(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - select()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/SharedLockCest.php b/tests/integration/Db/Dialect/Postgresql/SharedLockCest.php new file mode 100644 index 00000000000..876a2ff96a7 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/SharedLockCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class SharedLockCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: sharedLock() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlSharedLock(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - sharedLock()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/SupportsReleaseSavepointsCest.php b/tests/integration/Db/Dialect/Postgresql/SupportsReleaseSavepointsCest.php new file mode 100644 index 00000000000..52574501dde --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/SupportsReleaseSavepointsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class SupportsReleaseSavepointsCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: supportsReleaseSavepoints() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlSupportsReleaseSavepoints(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - supportsReleaseSavepoints()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/SupportsSavepointsCest.php b/tests/integration/Db/Dialect/Postgresql/SupportsSavepointsCest.php new file mode 100644 index 00000000000..80685a20022 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/SupportsSavepointsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class SupportsSavepointsCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: supportsSavepoints() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlSupportsSavepoints(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - supportsSavepoints()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/TableExistsCest.php b/tests/integration/Db/Dialect/Postgresql/TableExistsCest.php new file mode 100644 index 00000000000..8725a9024bb --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/TableExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class TableExistsCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: tableExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlTableExists(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - tableExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/TableOptionsCest.php b/tests/integration/Db/Dialect/Postgresql/TableOptionsCest.php new file mode 100644 index 00000000000..10178fe6aa9 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/TableOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class TableOptionsCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: tableOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlTableOptions(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - tableOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/TruncateTableCest.php b/tests/integration/Db/Dialect/Postgresql/TruncateTableCest.php new file mode 100644 index 00000000000..5c17f4a39cd --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/TruncateTableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class TruncateTableCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: truncateTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlTruncateTable(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - truncateTable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Postgresql/ViewExistsCest.php b/tests/integration/Db/Dialect/Postgresql/ViewExistsCest.php new file mode 100644 index 00000000000..49baa4d39b9 --- /dev/null +++ b/tests/integration/Db/Dialect/Postgresql/ViewExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Postgresql; + +use IntegrationTester; + +class ViewExistsCest +{ + /** + * Tests Phalcon\Db\Dialect\Postgresql :: viewExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectPostgresqlViewExists(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Postgresql - viewExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/PostgresqlCest.php b/tests/integration/Db/Dialect/PostgresqlCest.php new file mode 100644 index 00000000000..a983bc5bee3 --- /dev/null +++ b/tests/integration/Db/Dialect/PostgresqlCest.php @@ -0,0 +1,1012 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Db\Dialect; + +use Phalcon\Db\Column; +use Phalcon\Db\DialectInterface; +use Phalcon\Db\Index; +use Phalcon\Db\Reference; +use Phalcon\Test\Integration\Db\Dialect\Helper\DialectBase; + +class PostgresqlCest extends DialectBase +{ + /** + * @var string + */ + protected $adapter = 'Postgresql'; + + /** + * @return array + */ + protected function getAddColumnFixtures(): array + { + return [ + [ + '', + 'column1', + 'ALTER TABLE "table" ADD COLUMN "column1" CHARACTER VARYING(10)', + ], + [ + 'schema', + 'column1', + 'ALTER TABLE "schema"."table" ADD COLUMN "column1" CHARACTER VARYING(10)', + ], + [ + '', + 'column2', + 'ALTER TABLE "table" ADD COLUMN "column2" INT', + ], + [ + 'schema', + 'column2', + 'ALTER TABLE "schema"."table" ADD COLUMN "column2" INT', + ], + [ + '', + 'column3', + 'ALTER TABLE "table" ADD COLUMN "column3" NUMERIC(10,2) NOT NULL', + ], + [ + 'schema', + 'column3', + 'ALTER TABLE "schema"."table" ADD COLUMN "column3" NUMERIC(10,2) NOT NULL', + ], + [ + '', + 'column4', + 'ALTER TABLE "table" ADD COLUMN "column4" CHARACTER(100) NOT NULL', + ], + [ + 'schema', + 'column4', + 'ALTER TABLE "schema"."table" ADD COLUMN "column4" CHARACTER(100) NOT NULL', + ], + [ + '', + 'column5', + 'ALTER TABLE "table" ADD COLUMN "column5" DATE NOT NULL', + ], + [ + 'schema', + 'column5', + 'ALTER TABLE "schema"."table" ADD COLUMN "column5" DATE NOT NULL', + ], + [ + '', + 'column6', + 'ALTER TABLE "table" ADD COLUMN "column6" TIMESTAMP NOT NULL', + ], + [ + 'schema', + 'column6', + 'ALTER TABLE "schema"."table" ADD COLUMN "column6" TIMESTAMP NOT NULL', + ], + [ + '', + 'column7', + 'ALTER TABLE "table" ADD COLUMN "column7" TEXT NOT NULL', + ], + [ + 'schema', + 'column7', + 'ALTER TABLE "schema"."table" ADD COLUMN "column7" TEXT NOT NULL', + ], + [ + '', + 'column8', + 'ALTER TABLE "table" ADD COLUMN "column8" FLOAT NOT NULL', + ], + [ + 'schema', + 'column8', + 'ALTER TABLE "schema"."table" ADD COLUMN "column8" FLOAT NOT NULL', + ], + [ + '', + 'column9', + 'ALTER TABLE "table" ADD COLUMN "column9" CHARACTER VARYING(10) DEFAULT \'column9\'', + ], + [ + 'schema', + 'column9', + 'ALTER TABLE "schema"."table" ADD COLUMN "column9" CHARACTER VARYING(10) DEFAULT \'column9\'', + ], + [ + '', + 'column10', + 'ALTER TABLE "table" ADD COLUMN "column10" INT DEFAULT 10', + ], + [ + 'schema', + 'column10', + 'ALTER TABLE "schema"."table" ADD COLUMN "column10" INT DEFAULT 10', + ], + [ + '', + 'column11', + 'ALTER TABLE "table" ADD COLUMN "column11" BIGINT', + ], + [ + 'schema', + 'column11', + 'ALTER TABLE "schema"."table" ADD COLUMN "column11" BIGINT', + ], + [ + '', + 'column12', + 'ALTER TABLE "table" ADD COLUMN "column12" ENUM(\'A\', \'B\', \'C\') DEFAULT \'A\' NOT NULL', + ], + [ + 'schema', + 'column12', + 'ALTER TABLE "schema"."table" ADD COLUMN "column12" ENUM(\'A\', \'B\', \'C\') DEFAULT \'A\' NOT NULL', + ], + [ + '', + 'column13', + 'ALTER TABLE "table" ADD COLUMN "column13" TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL', + ], + [ + 'schema', + 'column13', + 'ALTER TABLE "schema"."table" ADD COLUMN "column13" TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL', + ], + ]; + } + + /** + * @return array + */ + protected function getAddForeignKeyFixtures(): array + { + return [ + [ + '', + 'fk1', + 'ALTER TABLE "table" ADD CONSTRAINT "fk1" FOREIGN KEY ("column1") ' . + 'REFERENCES "ref_table" ("column2")', + ], + [ + 'schema', + 'fk1', + 'ALTER TABLE "schema"."table" ADD CONSTRAINT "fk1" FOREIGN KEY ("column1") ' . + 'REFERENCES "ref_table" ("column2")', + ], + [ + '', + 'fk2', + 'ALTER TABLE "table" ADD CONSTRAINT "fk2" FOREIGN KEY ("column3", "column4") ' . + 'REFERENCES "ref_table" ("column5", "column6")', + ], + [ + 'schema', + 'fk2', + 'ALTER TABLE "schema"."table" ADD CONSTRAINT "fk2" FOREIGN KEY ("column3", "column4") ' . + 'REFERENCES "ref_table" ("column5", "column6")', + ], + [ + '', + 'fk3', + 'ALTER TABLE "table" ADD CONSTRAINT "fk3" FOREIGN KEY ("column1") ' . + 'REFERENCES "ref_table" ("column2") ON DELETE CASCADE', + ], + [ + 'schema', + 'fk3', + 'ALTER TABLE "schema"."table" ADD CONSTRAINT "fk3" FOREIGN KEY ("column1") ' . + 'REFERENCES "ref_table" ("column2") ON DELETE CASCADE', + ], + [ + '', + 'fk4', + 'ALTER TABLE "table" ADD CONSTRAINT "fk4" FOREIGN KEY ("column1") ' . + 'REFERENCES "ref_table" ("column2") ON UPDATE SET NULL', + ], + [ + 'schema', + 'fk4', + 'ALTER TABLE "schema"."table" ADD CONSTRAINT "fk4" FOREIGN KEY ("column1") ' . + 'REFERENCES "ref_table" ("column2") ON UPDATE SET NULL', + ], + [ + '', + 'fk5', + 'ALTER TABLE "table" ADD CONSTRAINT "fk5" FOREIGN KEY ("column1") ' . + 'REFERENCES "ref_table" ("column2") ON DELETE CASCADE ON UPDATE NO ACTION', + ], + [ + 'schema', + 'fk5', + 'ALTER TABLE "schema"."table" ADD CONSTRAINT "fk5" FOREIGN KEY ("column1") ' . + 'REFERENCES "ref_table" ("column2") ON DELETE CASCADE ON UPDATE NO ACTION', + ], + ]; + } + + /** + * @return array + */ + protected function getAddIndexFixtures() + { + return [ + ['', 'index1', 'CREATE INDEX "index1" ON "table" ("column1")'], + ['schema', 'index1', 'CREATE INDEX "index1" ON "schema"."table" ("column1")'], + ['', 'index2', 'CREATE INDEX "index2" ON "table" ("column1", "column2")'], + ['schema', 'index2', 'CREATE INDEX "index2" ON "schema"."table" ("column1", "column2")'], + ['', 'PRIMARY', 'ALTER TABLE "table" ADD CONSTRAINT "PRIMARY" PRIMARY KEY ("column3")'], + ['schema', 'PRIMARY', 'ALTER TABLE "schema"."table" ADD CONSTRAINT "PRIMARY" PRIMARY KEY ("column3")'], + ['', 'index4', 'CREATE UNIQUE INDEX "index4" ON "table" ("column4")'], + ['schema', 'index4', 'CREATE UNIQUE INDEX "index4" ON "schema"."table" ("column4")'], + ]; + } + + /** + * @return array + */ + protected function getAddPrimaryKeyFixtures(): array + { + return [ + ['', 'PRIMARY', 'ALTER TABLE "table" ADD CONSTRAINT "PRIMARY" PRIMARY KEY ("column3")'], + ['schema', 'PRIMARY', 'ALTER TABLE "schema"."table" ADD CONSTRAINT "PRIMARY" PRIMARY KEY ("column3")'], + ]; + } + + /** + * @return array + */ + protected function getColumnDefinitionFixtures(): array + { + return [ + ['column1', 'CHARACTER VARYING(10)'], + ['column2', 'INT'], + ['column3', 'NUMERIC(10,2)'], + ['column4', 'CHARACTER(100)'], + ['column5', 'DATE'], + ['column6', 'TIMESTAMP'], + ['column7', 'TEXT'], + ['column8', 'FLOAT'], + ['column9', 'CHARACTER VARYING(10)'], + ['column10', 'INT'], + ['column11', 'BIGINT'], + ['column12', "ENUM('A', 'B', 'C')"], + ['column13', 'TIMESTAMP'], + ['column21', 'BIGSERIAL'], + ['column22', 'BIGINT'], + ['column23', 'SERIAL'], + ]; + } + + /** + * @return array + */ + protected function getColumnListFixtures(): array + { + return [ + [ + ['column1', 'column2', 'column3'], + '"column1", "column2", "column3"', + ], + [ + ['foo'], + '"foo"', + ], + ]; + } + + /** + * @return array + */ + protected function getCreateTableFixtures(): array + { + return [ + 'example1' => [ + '', + [ + 'columns' => [ + new Column('column1', [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + ]), + new Column('column2', [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/postgresql/example1.sql'))), + ], + 'example2' => [ + '', + [ + 'columns' => [ + new Column('column2', [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + ]), + new Column('column3', [ + 'type' => Column::TYPE_DECIMAL, + 'size' => 10, + 'scale' => 2, + 'unsigned' => false, + 'notNull' => true, + ]), + new Column('column1', [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + ]), + ], + 'indexes' => [ + new Index('PRIMARY', ['column3']), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/postgresql/example2.sql'))), + ], + 'example3' => [ + '', + [ + 'columns' => [ + new Column('column2', [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + ]), + new Column('column3', [ + 'type' => Column::TYPE_DECIMAL, + 'size' => 10, + 'scale' => 2, + 'unsigned' => false, + 'notNull' => true, + ]), + new Column('column1', [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + ]), + ], + 'indexes' => [ + new Index('PRIMARY', ['column3']), + ], + 'references' => [ + new Reference('fk3', [ + 'referencedTable' => 'ref_table', + 'columns' => ['column1'], + 'referencedColumns' => ['column2'], + 'onDelete' => 'CASCADE', + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/postgresql/example3.sql'))), + ], + 'example4' => [ + '', + [ + 'columns' => [ + new Column('column9', [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + 'default' => 'column9', + ]), + new Column('column10', [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + 'default' => 10, + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/postgresql/example4.sql'))), + ], + 'example5' => [ + '', + [ + 'columns' => [ + new Column('column11', [ + 'type' => 'BIGINT', + 'typeReference' => Column::TYPE_INTEGER, + 'size' => 20, + 'unsigned' => true, + 'notNull' => false, + ]), + new Column('column12', [ + 'type' => 'ENUM', + 'typeValues' => ['A', 'B', 'C'], + 'notNull' => true, + 'default' => 'A', + 'after' => 'column11', + ]), + new Column('column13', [ + 'type' => Column::TYPE_TIMESTAMP, + 'notNull' => true, + 'default' => 'CURRENT_TIMESTAMP', + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/postgresql/example5.sql'))), + ], + 'example6' => [ + '', + [ + 'columns' => [ + new Column('column14', [ + 'type' => Column::TYPE_INTEGER, + 'notNull' => true, + 'autoIncrement' => true, + 'first' => true, + ]), + new Column('column15', [ + 'type' => Column::TYPE_INTEGER, + 'default' => 5, + 'notNull' => true, + 'after' => 'user_id', + ]), + new Column('column16', [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + 'default' => 'column16', + ]), + new Column('column17', [ + 'type' => Column::TYPE_BOOLEAN, + 'default' => "false", + 'notNull' => true, + 'after' => 'track_id', + ]), + new Column('column18', [ + 'type' => Column::TYPE_BOOLEAN, + 'default' => "true", + 'notNull' => true, + 'after' => 'like', + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/postgresql/example6.sql'))), + ], + ]; + } + + /** + * @return string + */ + protected function getCreateSavepointSql(): string + { + return 'SAVEPOINT PH_SAVEPOINT_1'; + } + + /** + * @return array + */ + protected function getCreateViewFixtures(): array + { + return [ + [['sql' => 'SELECT 1'], null, 'CREATE VIEW "test_view" AS SELECT 1'], + [['sql' => 'SELECT 1'], 'schema', 'CREATE VIEW "schema"."test_view" AS SELECT 1'], + ]; + } + + /** + * @return array + */ + protected function getDescribeColumnsFixtures(): array + { + return [ + [ + 'schema.name.with.dots', + "SELECT DISTINCT c.column_name AS Field, c.data_type AS Type, " . + "c.character_maximum_length AS Size, c.numeric_precision AS NumericSize, " . + "c.numeric_scale AS NumericScale, c.is_nullable AS Null, " . + "CASE WHEN pkc.column_name NOTNULL THEN 'PRI' ELSE '' END AS Key, " . + "CASE WHEN c.data_type LIKE '%int%' AND c.column_default LIKE '%nextval%' " . + "THEN 'auto_increment' ELSE '' END AS Extra, c.ordinal_position AS Position, " . + "c.column_default FROM information_schema.columns c " . + "LEFT JOIN ( SELECT kcu.column_name, kcu.table_name, kcu.table_schema " . + "FROM information_schema.table_constraints tc " . + "INNER JOIN information_schema.key_column_usage kcu on " . + "(kcu.constraint_name = tc.constraint_name and kcu.table_name=tc.table_name " . + "and kcu.table_schema=tc.table_schema) WHERE tc.constraint_type='PRIMARY KEY') pkc " . + "ON (c.column_name=pkc.column_name AND c.table_schema = pkc.table_schema AND " . + "c.table_name=pkc.table_name) WHERE c.table_schema='schema.name.with.dots' AND " . + "c.table_name='table' ORDER BY c.ordinal_position", + ], + [ + null, + "SELECT DISTINCT c.column_name AS Field, c.data_type AS Type, " . + "c.character_maximum_length AS Size, c.numeric_precision AS NumericSize, " . + "c.numeric_scale AS NumericScale, c.is_nullable AS Null, " . + "CASE WHEN pkc.column_name NOTNULL THEN 'PRI' ELSE '' END AS Key, " . + "CASE WHEN c.data_type LIKE '%int%' AND c.column_default LIKE '%nextval%' " . + "THEN 'auto_increment' ELSE '' END AS Extra, c.ordinal_position AS Position, " . + "c.column_default FROM information_schema.columns c " . + "LEFT JOIN ( SELECT kcu.column_name, kcu.table_name, kcu.table_schema " . + "FROM information_schema.table_constraints tc " . + "INNER JOIN information_schema.key_column_usage kcu on " . + "(kcu.constraint_name = tc.constraint_name and kcu.table_name=tc.table_name and " . + "kcu.table_schema=tc.table_schema) WHERE tc.constraint_type='PRIMARY KEY') pkc " . + "ON (c.column_name=pkc.column_name AND c.table_schema = pkc.table_schema AND " . + "c.table_name=pkc.table_name) WHERE c.table_schema='public' AND c.table_name='table' " . + "ORDER BY c.ordinal_position", + ], + [ + 'schema', + "SELECT DISTINCT c.column_name AS Field, c.data_type AS Type, " . + "c.character_maximum_length AS Size, c.numeric_precision AS NumericSize, " . + "c.numeric_scale AS NumericScale, c.is_nullable AS Null, " . + "CASE WHEN pkc.column_name NOTNULL THEN 'PRI' ELSE '' END AS Key, " . + "CASE WHEN c.data_type LIKE '%int%' AND c.column_default LIKE '%nextval%' " . + "THEN 'auto_increment' ELSE '' END AS Extra, c.ordinal_position AS Position, " . + "c.column_default FROM information_schema.columns c " . + "LEFT JOIN ( SELECT kcu.column_name, kcu.table_name, kcu.table_schema " . + "FROM information_schema.table_constraints tc " . + "INNER JOIN information_schema.key_column_usage kcu on " . + "(kcu.constraint_name = tc.constraint_name and kcu.table_name=tc.table_name and " . + "kcu.table_schema=tc.table_schema) WHERE tc.constraint_type='PRIMARY KEY') pkc " . + "ON (c.column_name=pkc.column_name AND c.table_schema = pkc.table_schema AND " . + "c.table_name=pkc.table_name) WHERE c.table_schema='schema' AND c.table_name='table' " . + "ORDER BY c.ordinal_position", + ], + ]; + } + + /** + * @return array + */ + protected function getDescribeReferencesFixtures() + { + return [ + [ + null, + rtrim(file_get_contents(dataFolder('fixtures/Db/postgresql/example7.sql'))), + ], + [ + 'schema', + rtrim(file_get_contents(dataFolder('fixtures/Db/postgresql/example8.sql'))), + ], + ]; + } + + /** + * @return array + */ + protected function getDropColumnFixtures(): array + { + return [ + ['', 'column1', 'ALTER TABLE "table" DROP COLUMN "column1"'], + ['schema', 'column1', 'ALTER TABLE "schema"."table" DROP COLUMN "column1"'], + ]; + } + + /** + * @return array + */ + protected function getDropForeignKeyFixtures(): array + { + return [ + ['', 'fk1', 'ALTER TABLE "table" DROP CONSTRAINT "fk1"'], + ['schema', 'fk1', 'ALTER TABLE "schema"."table" DROP CONSTRAINT "fk1"'], + ]; + } + + /** + * @return array + */ + protected function getDropIndexFixtures() + { + return [ + ['', 'index1', 'DROP INDEX "index1"'], + ['schema', 'index1', 'DROP INDEX "index1"'], + ]; + } + + /** + * @return array + */ + protected function getDropPrimaryKeyFixtures(): array + { + return [ + ['', 'ALTER TABLE "table" DROP CONSTRAINT "PRIMARY"'], + ['schema', 'ALTER TABLE "schema"."table" DROP CONSTRAINT "PRIMARY"'], + ]; + } + + /** + * @return array + */ + protected function getDropTableFixtures(): array + { + return [ + [null, true, 'DROP TABLE IF EXISTS "table"'], + ['schema', true, 'DROP TABLE IF EXISTS "schema"."table"'], + [null, false, 'DROP TABLE "table"'], + ['schema', false, 'DROP TABLE "schema"."table"'], + ]; + } + + /** + * @return array + */ + protected function getDropViewFixtures(): array + { + return [ + [null, false, 'DROP VIEW "test_view"'], + [null, true, 'DROP VIEW IF EXISTS "test_view"'], + ['schema', false, 'DROP VIEW "schema"."test_view"'], + ['schema', true, 'DROP VIEW IF EXISTS "schema"."test_view"'], + ]; + } + + /** + * @return array + */ + protected function getListViewFixtures(): array + { + return [ + [null, "SELECT viewname AS view_name FROM pg_views WHERE schemaname = 'public' ORDER BY view_name"], + ['schema', "SELECT viewname AS view_name FROM pg_views WHERE schemaname = 'schema' ORDER BY view_name"], + ]; + } + + /** + * @return array + */ + protected function getModifyColumnFixtures(): array + { + return [ + [ + '', + 'column1', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column1";' . + 'ALTER TABLE "table" ALTER COLUMN "column1" TYPE CHARACTER VARYING(10);', + ], + [ + 'schema', + 'column1', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column1";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column1" TYPE CHARACTER VARYING(10);', + ], + [ + '', + 'column2', + 'column1', + 'ALTER TABLE "table" RENAME COLUMN "column1" TO "column2";' . + 'ALTER TABLE "table" ALTER COLUMN "column2" TYPE INT;', + ], + [ + 'schema', + 'column2', + 'column1', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column1" TO "column2";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column2" TYPE INT;', + ], + [ + '', + 'column3', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column3";' . + 'ALTER TABLE "table" ALTER COLUMN "column3" TYPE NUMERIC(10,2);' . + 'ALTER TABLE "table" ALTER COLUMN "column3" SET NOT NULL;', + ], + [ + 'schema', + 'column3', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column3";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column3" TYPE NUMERIC(10,2);' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column3" SET NOT NULL;', + ], + [ + '', + 'column4', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column4";' . + 'ALTER TABLE "table" ALTER COLUMN "column4" TYPE CHARACTER(100);' . + 'ALTER TABLE "table" ALTER COLUMN "column4" SET NOT NULL;', + ], + [ + 'schema', + 'column4', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column4";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column4" TYPE CHARACTER(100);' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column4" SET NOT NULL;', + ], + [ + '', + 'column5', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column5";' . + 'ALTER TABLE "table" ALTER COLUMN "column5" TYPE DATE;' . + 'ALTER TABLE "table" ALTER COLUMN "column5" SET NOT NULL;', + ], + [ + 'schema', + 'column5', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column5";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column5" TYPE DATE;' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column5" SET NOT NULL;', + ], + [ + '', + 'column6', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column6";' . + 'ALTER TABLE "table" ALTER COLUMN "column6" TYPE TIMESTAMP;' . + 'ALTER TABLE "table" ALTER COLUMN "column6" SET NOT NULL;', + ], + [ + 'schema', + 'column6', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column6";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column6" TYPE TIMESTAMP;' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column6" SET NOT NULL;', + ], + [ + '', + 'column7', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column7";' . + 'ALTER TABLE "table" ALTER COLUMN "column7" TYPE TEXT;' . + 'ALTER TABLE "table" ALTER COLUMN "column7" SET NOT NULL;', + ], + [ + 'schema', + 'column7', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column7";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column7" TYPE TEXT;' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column7" SET NOT NULL;', + ], + [ + '', + 'column8', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column8";' . + 'ALTER TABLE "table" ALTER COLUMN "column8" TYPE FLOAT;' . + 'ALTER TABLE "table" ALTER COLUMN "column8" SET NOT NULL;', + ], + [ + 'schema', + 'column8', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column8";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column8" TYPE FLOAT;' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column8" SET NOT NULL;', + ], + [ + '', + 'column9', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column9";' . + 'ALTER TABLE "table" ALTER COLUMN "column9" TYPE CHARACTER VARYING(10);' . + 'ALTER TABLE "table" ALTER COLUMN "column9" SET DEFAULT \'column9\'', + ], + [ + 'schema', + 'column9', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column9";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column9" TYPE CHARACTER VARYING(10);' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column9" SET DEFAULT \'column9\'', + ], + [ + '', + 'column10', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column10";' . + 'ALTER TABLE "table" ALTER COLUMN "column10" SET DEFAULT 10', + ], + [ + 'schema', + 'column10', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column10";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column10" SET DEFAULT 10', + ], + [ + '', + 'column11', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column11";' . + 'ALTER TABLE "table" ALTER COLUMN "column11" TYPE BIGINT;', + ], + [ + 'schema', + 'column11', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column11";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column11" TYPE BIGINT;', + ], + [ + '', + 'column12', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column12";' . + 'ALTER TABLE "table" ALTER COLUMN "column12" TYPE ENUM(\'A\', \'B\', \'C\');' . + 'ALTER TABLE "table" ALTER COLUMN "column12" SET NOT NULL;' . + 'ALTER TABLE "table" ALTER COLUMN "column12" SET DEFAULT \'A\'', + ], + [ + 'schema', + 'column12', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column12";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column12" TYPE ENUM(\'A\', \'B\', \'C\');' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column12" SET NOT NULL;' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column12" SET DEFAULT \'A\'', + ], + [ + '', + 'column13', + 'column2', + 'ALTER TABLE "table" RENAME COLUMN "column2" TO "column13";' . + 'ALTER TABLE "table" ALTER COLUMN "column13" TYPE TIMESTAMP;' . + 'ALTER TABLE "table" ALTER COLUMN "column13" SET NOT NULL;' . + 'ALTER TABLE "table" ALTER COLUMN "column13" SET DEFAULT CURRENT_TIMESTAMP', + ], + [ + 'schema', + 'column13', + 'column2', + 'ALTER TABLE "schema"."table" RENAME COLUMN "column2" TO "column13";' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column13" TYPE TIMESTAMP;' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column13" SET NOT NULL;' . + 'ALTER TABLE "schema"."table" ALTER COLUMN "column13" SET DEFAULT CURRENT_TIMESTAMP', + ], + ]; + } + + /** + * @return array + */ + protected function getModifyColumnFixtures13012(): array + { + return [ + new Column('old', ['type' => Column::TYPE_VARCHAR]), + new Column('new', ['type' => Column::TYPE_VARCHAR]), + ]; + } + + /** + * @return string + */ + protected function getModifyColumnSql(): string + { + return 'ALTER TABLE "database"."table" RENAME COLUMN "old" TO "new";'; + } + + /** + * @return string + */ + protected function getReleaseSavepointSql(): string + { + return 'RELEASE SAVEPOINT PH_SAVEPOINT_1'; + } + + /** + * @return string + */ + protected function getRollbackSavepointSql(): string + { + return 'ROLLBACK TO SAVEPOINT PH_SAVEPOINT_1'; + } + + /** + * @return array + */ + protected function getTableExistsFixtures(): array + { + return [ + [ + null, + "SELECT CASE WHEN COUNT(*) > 0 THEN 1 ELSE 0 END " . + "FROM information_schema.tables " . + "WHERE table_schema = 'public' AND table_name='table'", + ], + [ + 'schema', + "SELECT CASE WHEN COUNT(*) > 0 THEN 1 ELSE 0 END " . + "FROM information_schema.tables " . + "WHERE table_schema = 'schema' AND table_name='table'", + ], + ]; + } + + /** + * @return array + */ + protected function getTruncateTableFixtures(): array + { + return [ + ['', 'TRUNCATE TABLE table'], + ['schema', 'TRUNCATE TABLE schema.table'], + ]; + } + + /** + * @return array + */ + protected function getViewExistsFixtures(): array + { + return [ + [ + null, + "SELECT CASE WHEN COUNT(*) > 0 THEN 1 ELSE 0 END FROM pg_views WHERE viewname='view' AND schemaname='public'", + ], + [ + 'schema', + "SELECT CASE WHEN COUNT(*) > 0 THEN 1 ELSE 0 END FROM pg_views WHERE viewname='view' AND schemaname='schema'", + ], + ]; + } + +// protected function getReferenceAddForeignKey() +// { +// return [ +// 'fk1' => new Reference('fk1', [ +// 'referencedTable' => 'foreign_key_parent', +// 'columns' => ['child_int'], +// 'referencedColumns' => ['refer_int'], +// 'onDelete' => 'CASCADE', +// 'onUpdate' => 'RESTRICT', +// ]), +// 'fk2' => new Reference('', [ +// 'referencedTable' => 'foreign_key_parent', +// 'columns' => ['child_int'], +// 'referencedColumns' => ['refer_int'] +// ]) +// ]; +// } +// +// protected function getForeignKey($foreignKeyName) +// { +// $sql = rtrim(file_get_contents(dataFolder('fixtures/Db/postgresql/example9.sql')); +// str_replace('%_FK_%', $foreignKeyName, $sql); +// +// return $sql; +// } +// +// protected function getReferenceDropForeignKey() +// { +// return [ +// 'fk1' => new Reference('fk1', [ +// 'referencedTable' => 'foreign_key_parent', +// 'columns' => ['child_int'], +// 'referencedColumns' => ['refer_int'], +// 'onDelete' => 'CASCADE', +// 'onUpdate' => 'RESTRICT', +// ]), +// 'fk2' => new Reference('', [ +// 'referencedTable' => 'foreign_key_parent', +// 'columns' => ['child_int'], +// 'referencedColumns' => ['refer_int'], +// 'onDelete' => 'CASCADE', +// 'onUpdate' => 'RESTRICT', +// ]) +// ]; +// } +// +// +// protected function getReferenceObject() +// { +// return [ +// [ +// ['test_describereferences' => require PATH_FIXTURES . 'metadata/test_describereference.php'] +// ] +// ]; +// } +} diff --git a/tests/integration/Db/Dialect/RegisterCustomFunctionCest.php b/tests/integration/Db/Dialect/RegisterCustomFunctionCest.php new file mode 100644 index 00000000000..a044f04174b --- /dev/null +++ b/tests/integration/Db/Dialect/RegisterCustomFunctionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class RegisterCustomFunctionCest +{ + /** + * Tests Phalcon\Db\Dialect :: registerCustomFunction() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectRegisterCustomFunction(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - registerCustomFunction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/ReleaseSavepointCest.php b/tests/integration/Db/Dialect/ReleaseSavepointCest.php new file mode 100644 index 00000000000..6911a20a871 --- /dev/null +++ b/tests/integration/Db/Dialect/ReleaseSavepointCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class ReleaseSavepointCest +{ + /** + * Tests Phalcon\Db\Dialect :: releaseSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectReleaseSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - releaseSavepoint()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/RollbackSavepointCest.php b/tests/integration/Db/Dialect/RollbackSavepointCest.php new file mode 100644 index 00000000000..eea1969be57 --- /dev/null +++ b/tests/integration/Db/Dialect/RollbackSavepointCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class RollbackSavepointCest +{ + /** + * Tests Phalcon\Db\Dialect :: rollbackSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectRollbackSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - rollbackSavepoint()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/SelectCest.php b/tests/integration/Db/Dialect/SelectCest.php new file mode 100644 index 00000000000..a76ebb6c69d --- /dev/null +++ b/tests/integration/Db/Dialect/SelectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class SelectCest +{ + /** + * Tests Phalcon\Db\Dialect :: select() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSelect(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - select()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/SharedLockCest.php b/tests/integration/Db/Dialect/SharedLockCest.php new file mode 100644 index 00000000000..a0bb921bd4e --- /dev/null +++ b/tests/integration/Db/Dialect/SharedLockCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class SharedLockCest +{ + /** + * Tests Phalcon\Db\Dialect :: sharedLock() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSharedLock(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - sharedLock()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/AddColumnCest.php b/tests/integration/Db/Dialect/Sqlite/AddColumnCest.php new file mode 100644 index 00000000000..455315bca9a --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/AddColumnCest.php @@ -0,0 +1,233 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\DialectTrait; + +class AddColumnCest +{ + use DialectTrait; + + /** + * Tests Dialect::addColumn + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function dbDialectSqliteAddColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - addColumn()"); + $data = $this->getAddColumnFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $column = $item[1]; + $expected = $item[2]; + $columns = $this->getColumns(); + $dialect = $this->getDialectSqlite(); + $actual = $dialect->addColumn('table', $schema, $columns[$column]); + + $I->assertEquals($expected, $actual); + } + } + + /** + * @return array + */ + protected function getAddColumnFixtures(): array + { + return [ + [ + '', + 'column1', + 'ALTER TABLE "table" ADD COLUMN "column1" VARCHAR(10)', + ], + [ + 'schema', + 'column1', + 'ALTER TABLE "schema"."table" ADD COLUMN "column1" VARCHAR(10)', + ], + [ + '', + 'column2', + 'ALTER TABLE "table" ADD COLUMN "column2" INTEGER', + ], + [ + 'schema', + 'column2', + 'ALTER TABLE "schema"."table" ADD COLUMN "column2" INTEGER', + ], + [ + '', + 'column3', + 'ALTER TABLE "table" ADD COLUMN "column3" NUMERIC(10,2) NOT NULL', + ], + [ + 'schema', + 'column3', + 'ALTER TABLE "schema"."table" ADD COLUMN "column3" NUMERIC(10,2) NOT NULL', + ], + [ + '', + 'column4', + 'ALTER TABLE "table" ADD COLUMN "column4" CHARACTER(100) NOT NULL', + ], + [ + 'schema', + 'column4', + 'ALTER TABLE "schema"."table" ADD COLUMN "column4" CHARACTER(100) NOT NULL', + ], + [ + '', + 'column5', + 'ALTER TABLE "table" ADD COLUMN "column5" DATE NOT NULL', + ], + [ + 'schema', + 'column5', + 'ALTER TABLE "schema"."table" ADD COLUMN "column5" DATE NOT NULL', + ], + [ + '', + 'column6', + 'ALTER TABLE "table" ADD COLUMN "column6" DATETIME NOT NULL', + ], + [ + 'schema', + 'column6', + 'ALTER TABLE "schema"."table" ADD COLUMN "column6" DATETIME NOT NULL', + ], + [ + '', + 'column7', + 'ALTER TABLE "table" ADD COLUMN "column7" TEXT NOT NULL', + ], + [ + 'schema', + 'column7', + 'ALTER TABLE "schema"."table" ADD COLUMN "column7" TEXT NOT NULL', + ], + [ + '', + 'column8', + 'ALTER TABLE "table" ADD COLUMN "column8" FLOAT NOT NULL', + ], + [ + 'schema', + 'column8', + 'ALTER TABLE "schema"."table" ADD COLUMN "column8" FLOAT NOT NULL', + ], + [ + '', + 'column9', + 'ALTER TABLE "table" ADD COLUMN "column9" VARCHAR(10) DEFAULT "column9"', + ], + [ + 'schema', + 'column9', + 'ALTER TABLE "schema"."table" ADD COLUMN "column9" VARCHAR(10) DEFAULT "column9"', + ], + [ + '', + 'column10', + 'ALTER TABLE "table" ADD COLUMN "column10" INTEGER DEFAULT "10"', + ], + [ + 'schema', + 'column10', + 'ALTER TABLE "schema"."table" ADD COLUMN "column10" INTEGER DEFAULT "10"', + ], + [ + '', + 'column13', + 'ALTER TABLE "table" ADD COLUMN "column13" TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL', + ], + [ + 'schema', + 'column13', + 'ALTER TABLE "schema"."table" ADD COLUMN "column13" TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL', + ], + [ + '', + 'column14', + 'ALTER TABLE "table" ADD COLUMN "column14" TINYBLOB NOT NULL', + ], + [ + 'schema', + 'column14', + 'ALTER TABLE "schema"."table" ADD COLUMN "column14" TINYBLOB NOT NULL', + ], + [ + '', + 'column15', + 'ALTER TABLE "table" ADD COLUMN "column15" MEDIUMBLOB NOT NULL', + ], + [ + 'schema', + 'column15', + 'ALTER TABLE "schema"."table" ADD COLUMN "column15" MEDIUMBLOB NOT NULL', + ], + [ + '', + 'column16', + 'ALTER TABLE "table" ADD COLUMN "column16" BLOB NOT NULL', + ], + [ + 'schema', + 'column16', + 'ALTER TABLE "schema"."table" ADD COLUMN "column16" BLOB NOT NULL', + ], + [ + '', + 'column17', + 'ALTER TABLE "table" ADD COLUMN "column17" LONGBLOB NOT NULL', + ], + [ + 'schema', + 'column17', + 'ALTER TABLE "schema"."table" ADD COLUMN "column17" LONGBLOB NOT NULL', + ], + [ + '', + 'column18', + 'ALTER TABLE "table" ADD COLUMN "column18" TINYINT', + ], + [ + 'schema', + 'column18', + 'ALTER TABLE "schema"."table" ADD COLUMN "column18" TINYINT', + ], + [ + '', + 'column19', + 'ALTER TABLE "table" ADD COLUMN "column19" DOUBLE', + ], + [ + 'schema', + 'column19', + 'ALTER TABLE "schema"."table" ADD COLUMN "column19" DOUBLE', + ], + [ + '', + 'column20', + 'ALTER TABLE "table" ADD COLUMN "column20" DOUBLE UNSIGNED', + ], + [ + 'schema', + 'column20', + 'ALTER TABLE "schema"."table" ADD COLUMN "column20" DOUBLE UNSIGNED', + ], + ]; + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/AddForeignKeyCest.php b/tests/integration/Db/Dialect/Sqlite/AddForeignKeyCest.php new file mode 100644 index 00000000000..06e28f96ebb --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/AddForeignKeyCest.php @@ -0,0 +1,52 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\DialectTrait; + +class AddForeignKeyCest +{ + use DialectTrait; + + /** + * Tests Phalcon\Db\Dialect\Sqlite :: addForeignKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function testAddForeignKey(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - addForeignKey()"); + $data = $this->getAddForeignKeyFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $reference = $item[1]; + $expected = $item[2]; + $dialect = $this->getDialectSqlite(); + $references = $this->getReferences(); + $actual = $dialect->addForeignKey('table', $schema, $references[$reference]); + + $I->assertEquals($expected, $actual); + } + } + + /** + * @return array + */ + protected function getAddForeignKeyFixtures(): array + { + return []; + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/AddIndexCest.php b/tests/integration/Db/Dialect/Sqlite/AddIndexCest.php new file mode 100644 index 00000000000..e82d6453e69 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/AddIndexCest.php @@ -0,0 +1,57 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\DialectTrait; + +class AddIndexCest +{ + use DialectTrait; + + /** + * Tests Phalcon\Db\Dialect\Sqlite :: addIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function dbDialectSqliteAddIndex(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - addIndex()"); + $data = $this->getAddIndexFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $index = $item[1]; + $expected = $item[2]; + $dialect = $this->getDialectSqlite(); + $indexes = $this->getIndexes(); + $actual = $dialect->addIndex('table', $schema, $indexes[$index]); + + $I->assertEquals($expected, $actual); + } + } + + /** + * @return array + */ + protected function getAddIndexFixtures() + { + return [ + ['', 'index1', 'CREATE INDEX "index1" ON "table" ("column1")'], + ['schema', 'index1', 'CREATE INDEX "schema"."index1" ON "table" ("column1")'], + ['', 'index2', 'CREATE INDEX "index2" ON "table" ("column1", "column2")'], + ['schema', 'index2', 'CREATE INDEX "schema"."index2" ON "table" ("column1", "column2")'], + ]; + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/AddPrimaryKeyCest.php b/tests/integration/Db/Dialect/Sqlite/AddPrimaryKeyCest.php new file mode 100644 index 00000000000..a51f89d5516 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/AddPrimaryKeyCest.php @@ -0,0 +1,52 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\DialectTrait; + +class AddPrimaryKeyCest +{ + use DialectTrait; + + /** + * Tests Phalcon\Db\Dialect\Sqlite :: addPrimaryKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function dbDialectSqliteAddPrimaryKey(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - addPrimaryKey()"); + $data = $this->getAddPrimaryKeyFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $reference = $item[1]; + $expected = $item[2]; + $dialect = $this->getDialectSqlite(); + $indexes = $this->getIndexes(); + $actual = $dialect->addPrimaryKey('table', $schema, $indexes[$reference]); + + $I->assertEquals($expected, $actual); + } + } + + /** + * @return array + */ + protected function getAddPrimaryKeyFixtures(): array + { + return []; + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/CreateSavepointCest.php b/tests/integration/Db/Dialect/Sqlite/CreateSavepointCest.php new file mode 100644 index 00000000000..c404a121477 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/CreateSavepointCest.php @@ -0,0 +1,46 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\DialectTrait; + +class CreateSavepointCest +{ + use DialectTrait; + + /** + * Tests Phalcon\Db\Dialect\Sqlite :: createSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function dbDialectSqliteCreateSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - createSavepoint()"); + $dialect = $this->getDialectSqlite(); + $expected = $this->getCreateSavepointSql(); + $actual = $dialect->createSavepoint('PH_SAVEPOINT_1'); + + $I->assertEquals($expected, $actual); + } + + /** + * @return string + */ + protected function getCreateSavepointSql(): string + { + return 'SAVEPOINT PH_SAVEPOINT_1'; + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/CreateTableCest.php b/tests/integration/Db/Dialect/Sqlite/CreateTableCest.php new file mode 100644 index 00000000000..6f118e20715 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/CreateTableCest.php @@ -0,0 +1,219 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; +use Phalcon\Db\Column; +use Phalcon\Db\Index; +use Phalcon\Db\Reference; +use Phalcon\Test\Fixtures\Traits\DialectTrait; + +class CreateTableCest +{ + use DialectTrait; + + /** + * Tests Phalcon\Db\Dialect\Sqlite :: createTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2017-02-26 + */ + public function dbDialectSqliteCreateTable(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - createTable()"); + $data = $this->getCreateTableFixtures(); + foreach ($data as $item) { + $schema = $item[0]; + $definition = $item[1]; + $expected = $item[2]; + $dialect = $this->getDialectSqlite(); + $actual = $dialect->createTable('table', $schema, $definition); + + $I->assertEquals($expected, $actual); + } + } + + /** + * @return array + */ + protected function getCreateTableFixtures(): array + { + return [ + 'example1' => [ + '', + [ + 'columns' => [ + new Column('column1', [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + ]), + new Column('column2', [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/sqlite/example1.sql'))), + ], + 'example2' => [ + '', + [ + 'columns' => [ + new Column('column2', [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + ]), + new Column('column3', [ + 'type' => Column::TYPE_DECIMAL, + 'size' => 10, + 'scale' => 2, + 'unsigned' => false, + 'notNull' => true, + ]), + new Column('column1', [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + ]), + ], + 'indexes' => [ + new Index('PRIMARY', ['column3']), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/sqlite/example2.sql'))), + ], + 'example3' => [ + '', + [ + 'columns' => [ + new Column('column2', [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + ]), + new Column('column3', [ + 'type' => Column::TYPE_DECIMAL, + 'size' => 10, + 'scale' => 2, + 'unsigned' => false, + 'notNull' => true, + ]), + new Column('column1', [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + ]), + ], + 'indexes' => [ + new Index('PRIMARY', ['column3']), + ], + 'references' => [ + new Reference('fk3', [ + 'referencedTable' => 'ref_table', + 'columns' => ['column1'], + 'referencedColumns' => ['column2'], + 'onDelete' => 'CASCADE', + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/sqlite/example3.sql'))), + ], + 'example4' => [ + '', + [ + 'columns' => [ + new Column('column9', [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + 'default' => 'column9', + ]), + new Column('column10', [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + 'default' => 10, + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/sqlite/example4.sql'))), + ], + 'example5' => [ + '', + [ + 'columns' => [ + new Column('column11', [ + 'type' => 'BIGINT', + 'typeReference' => Column::TYPE_INTEGER, + 'size' => 20, + 'unsigned' => true, + 'notNull' => false, + ]), + new Column('column13', [ + 'type' => Column::TYPE_TIMESTAMP, + 'notNull' => true, + 'default' => 'CURRENT_TIMESTAMP', + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/sqlite/example5.sql'))), + ], + 'example6' => [ + '', + [ + 'columns' => [ + new Column('column14', [ + 'type' => Column::TYPE_TINYBLOB, + 'notNull' => true, + ]), + new Column('column16', [ + 'type' => Column::TYPE_BLOB, + 'notNull' => true, + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/sqlite/example6.sql'))), + ], + 'example7' => [ + '', + [ + 'columns' => [ + new Column('column18', [ + 'type' => Column::TYPE_BOOLEAN, + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/sqlite/example7.sql'))), + ], + 'example8' => [ + '', + [ + 'columns' => [ + new Column('column19', [ + 'type' => Column::TYPE_DOUBLE, + ]), + new Column('column20', [ + 'type' => Column::TYPE_DOUBLE, + 'unsigned' => true, + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/sqlite/example8.sql'))), + ], + ]; + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/CreateViewCest.php b/tests/integration/Db/Dialect/Sqlite/CreateViewCest.php new file mode 100644 index 00000000000..207692987dd --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/CreateViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class CreateViewCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: createView() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteCreateView(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - createView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/DescribeColumnsCest.php b/tests/integration/Db/Dialect/Sqlite/DescribeColumnsCest.php new file mode 100644 index 00000000000..632a35b92e5 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/DescribeColumnsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class DescribeColumnsCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: describeColumns() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteDescribeColumns(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - describeColumns()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/DescribeIndexCest.php b/tests/integration/Db/Dialect/Sqlite/DescribeIndexCest.php new file mode 100644 index 00000000000..fab24b6ff3b --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/DescribeIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class DescribeIndexCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: describeIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteDescribeIndex(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - describeIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/DescribeIndexesCest.php b/tests/integration/Db/Dialect/Sqlite/DescribeIndexesCest.php new file mode 100644 index 00000000000..68bf439f47d --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/DescribeIndexesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class DescribeIndexesCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: describeIndexes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteDescribeIndexes(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - describeIndexes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/DescribeReferencesCest.php b/tests/integration/Db/Dialect/Sqlite/DescribeReferencesCest.php new file mode 100644 index 00000000000..7865631de63 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/DescribeReferencesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class DescribeReferencesCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: describeReferences() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteDescribeReferences(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - describeReferences()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/DropColumnCest.php b/tests/integration/Db/Dialect/Sqlite/DropColumnCest.php new file mode 100644 index 00000000000..f0f4f5f962f --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/DropColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class DropColumnCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: dropColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteDropColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - dropColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/DropForeignKeyCest.php b/tests/integration/Db/Dialect/Sqlite/DropForeignKeyCest.php new file mode 100644 index 00000000000..6b3ab7a8f9d --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/DropForeignKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class DropForeignKeyCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: dropForeignKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteDropForeignKey(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - dropForeignKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/DropIndexCest.php b/tests/integration/Db/Dialect/Sqlite/DropIndexCest.php new file mode 100644 index 00000000000..486b87a3c0e --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/DropIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class DropIndexCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: dropIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteDropIndex(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - dropIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/DropPrimaryKeyCest.php b/tests/integration/Db/Dialect/Sqlite/DropPrimaryKeyCest.php new file mode 100644 index 00000000000..2ba86eb4bd0 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/DropPrimaryKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class DropPrimaryKeyCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: dropPrimaryKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteDropPrimaryKey(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - dropPrimaryKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/DropTableCest.php b/tests/integration/Db/Dialect/Sqlite/DropTableCest.php new file mode 100644 index 00000000000..48945d604ef --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/DropTableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class DropTableCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: dropTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteDropTable(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - dropTable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/DropViewCest.php b/tests/integration/Db/Dialect/Sqlite/DropViewCest.php new file mode 100644 index 00000000000..2d29b87b11b --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/DropViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class DropViewCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: dropView() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteDropView(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - dropView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/EscapeCest.php b/tests/integration/Db/Dialect/Sqlite/EscapeCest.php new file mode 100644 index 00000000000..dcadcecc421 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/EscapeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class EscapeCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: escape() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteEscape(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - escape()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/EscapeSchemaCest.php b/tests/integration/Db/Dialect/Sqlite/EscapeSchemaCest.php new file mode 100644 index 00000000000..6c420d0024f --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/EscapeSchemaCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class EscapeSchemaCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: escapeSchema() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteEscapeSchema(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - escapeSchema()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/ForUpdateCest.php b/tests/integration/Db/Dialect/Sqlite/ForUpdateCest.php new file mode 100644 index 00000000000..e73ee7c2350 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/ForUpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class ForUpdateCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: forUpdate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteForUpdate(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - forUpdate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/GetColumnDefinitionCest.php b/tests/integration/Db/Dialect/Sqlite/GetColumnDefinitionCest.php new file mode 100644 index 00000000000..bda7cda513b --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/GetColumnDefinitionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class GetColumnDefinitionCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: getColumnDefinition() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteGetColumnDefinition(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - getColumnDefinition()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/GetColumnListCest.php b/tests/integration/Db/Dialect/Sqlite/GetColumnListCest.php new file mode 100644 index 00000000000..86dbf3b36fb --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/GetColumnListCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class GetColumnListCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: getColumnList() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteGetColumnList(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - getColumnList()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/GetCustomFunctionsCest.php b/tests/integration/Db/Dialect/Sqlite/GetCustomFunctionsCest.php new file mode 100644 index 00000000000..4cd9e3a0133 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/GetCustomFunctionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class GetCustomFunctionsCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: getCustomFunctions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteGetCustomFunctions(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - getCustomFunctions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/GetSqlColumnCest.php b/tests/integration/Db/Dialect/Sqlite/GetSqlColumnCest.php new file mode 100644 index 00000000000..97232939300 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/GetSqlColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class GetSqlColumnCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: getSqlColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteGetSqlColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - getSqlColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/GetSqlExpressionCest.php b/tests/integration/Db/Dialect/Sqlite/GetSqlExpressionCest.php new file mode 100644 index 00000000000..d01455fc717 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/GetSqlExpressionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class GetSqlExpressionCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: getSqlExpression() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteGetSqlExpression(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - getSqlExpression()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/GetSqlTableCest.php b/tests/integration/Db/Dialect/Sqlite/GetSqlTableCest.php new file mode 100644 index 00000000000..c283bdd762a --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/GetSqlTableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class GetSqlTableCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: getSqlTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteGetSqlTable(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - getSqlTable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/LimitCest.php b/tests/integration/Db/Dialect/Sqlite/LimitCest.php new file mode 100644 index 00000000000..9f11c86b424 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/LimitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class LimitCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: limit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteLimit(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - limit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/ListIndexesSqlCest.php b/tests/integration/Db/Dialect/Sqlite/ListIndexesSqlCest.php new file mode 100644 index 00000000000..b8619583b72 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/ListIndexesSqlCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class ListIndexesSqlCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: listIndexesSql() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteListIndexesSql(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - listIndexesSql()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/ListTablesCest.php b/tests/integration/Db/Dialect/Sqlite/ListTablesCest.php new file mode 100644 index 00000000000..1ade48a44de --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/ListTablesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class ListTablesCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: listTables() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteListTables(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - listTables()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/ListViewsCest.php b/tests/integration/Db/Dialect/Sqlite/ListViewsCest.php new file mode 100644 index 00000000000..1b3338de7f4 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/ListViewsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class ListViewsCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: listViews() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteListViews(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - listViews()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/ModifyColumnCest.php b/tests/integration/Db/Dialect/Sqlite/ModifyColumnCest.php new file mode 100644 index 00000000000..a21d6a7d823 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/ModifyColumnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class ModifyColumnCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: modifyColumn() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteModifyColumn(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - modifyColumn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/RegisterCustomFunctionCest.php b/tests/integration/Db/Dialect/Sqlite/RegisterCustomFunctionCest.php new file mode 100644 index 00000000000..8db1435dedd --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/RegisterCustomFunctionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class RegisterCustomFunctionCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: registerCustomFunction() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteRegisterCustomFunction(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - registerCustomFunction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/ReleaseSavepointCest.php b/tests/integration/Db/Dialect/Sqlite/ReleaseSavepointCest.php new file mode 100644 index 00000000000..a39eb3c7cf4 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/ReleaseSavepointCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class ReleaseSavepointCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: releaseSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteReleaseSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - releaseSavepoint()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/RollbackSavepointCest.php b/tests/integration/Db/Dialect/Sqlite/RollbackSavepointCest.php new file mode 100644 index 00000000000..231f466fd19 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/RollbackSavepointCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class RollbackSavepointCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: rollbackSavepoint() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteRollbackSavepoint(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - rollbackSavepoint()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/SelectCest.php b/tests/integration/Db/Dialect/Sqlite/SelectCest.php new file mode 100644 index 00000000000..2ce05a1c903 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/SelectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class SelectCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: select() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteSelect(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - select()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/SharedLockCest.php b/tests/integration/Db/Dialect/Sqlite/SharedLockCest.php new file mode 100644 index 00000000000..9c86b471ae3 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/SharedLockCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class SharedLockCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: sharedLock() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteSharedLock(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - sharedLock()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/SupportsReleaseSavepointsCest.php b/tests/integration/Db/Dialect/Sqlite/SupportsReleaseSavepointsCest.php new file mode 100644 index 00000000000..04f4ea755fe --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/SupportsReleaseSavepointsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class SupportsReleaseSavepointsCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: supportsReleaseSavepoints() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteSupportsReleaseSavepoints(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - supportsReleaseSavepoints()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/SupportsSavepointsCest.php b/tests/integration/Db/Dialect/Sqlite/SupportsSavepointsCest.php new file mode 100644 index 00000000000..22cfd7cbada --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/SupportsSavepointsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class SupportsSavepointsCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: supportsSavepoints() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteSupportsSavepoints(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - supportsSavepoints()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/TableExistsCest.php b/tests/integration/Db/Dialect/Sqlite/TableExistsCest.php new file mode 100644 index 00000000000..eacc08068e5 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/TableExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class TableExistsCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: tableExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteTableExists(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - tableExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/TableOptionsCest.php b/tests/integration/Db/Dialect/Sqlite/TableOptionsCest.php new file mode 100644 index 00000000000..07ab078d1fd --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/TableOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class TableOptionsCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: tableOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteTableOptions(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - tableOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/TruncateTableCest.php b/tests/integration/Db/Dialect/Sqlite/TruncateTableCest.php new file mode 100644 index 00000000000..4619b1eb49a --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/TruncateTableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class TruncateTableCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: truncateTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteTruncateTable(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - truncateTable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/Sqlite/ViewExistsCest.php b/tests/integration/Db/Dialect/Sqlite/ViewExistsCest.php new file mode 100644 index 00000000000..8ba99a16e37 --- /dev/null +++ b/tests/integration/Db/Dialect/Sqlite/ViewExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect\Sqlite; + +use IntegrationTester; + +class ViewExistsCest +{ + /** + * Tests Phalcon\Db\Dialect\Sqlite :: viewExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSqliteViewExists(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect\Sqlite - viewExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/SqliteCest.php b/tests/integration/Db/Dialect/SqliteCest.php new file mode 100644 index 00000000000..96e5fa8ebe4 --- /dev/null +++ b/tests/integration/Db/Dialect/SqliteCest.php @@ -0,0 +1,681 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Db\Dialect; + +use IntegrationTester; +use Phalcon\Db\Column; +use Phalcon\Db\DialectInterface; +use Phalcon\Db\Index; +use Phalcon\Db\Reference; +use Phalcon\Test\Integration\Db\Dialect\Helper\DialectBase; + +class SqliteCest extends DialectBase +{ + /** + * @var string + */ + protected $adapter = 'Sqlite'; + + /** + * Tests Dialect::modifyColumn + * + * @param IntegrationTester $I + */ + public function testModifyColumn(IntegrationTester $I) + { + /** + * No test - modifying columns not allowed in Sqlite + */ + } + + /** + * Tests Dialect::modifyColumn + * + * @param IntegrationTester $I + */ + public function testModifyColumn13012(IntegrationTester $I) + { + /** + * No test - modifying columns not allowed in Sqlite + */ + } + + /** + * @return array + */ + protected function getAddColumnFixtures(): array + { + return [ + [ + '', + 'column1', + 'ALTER TABLE "table" ADD COLUMN "column1" VARCHAR(10)', + ], + [ + 'schema', + 'column1', + 'ALTER TABLE "schema"."table" ADD COLUMN "column1" VARCHAR(10)', + ], + [ + '', + 'column2', + 'ALTER TABLE "table" ADD COLUMN "column2" INTEGER', + ], + [ + 'schema', + 'column2', + 'ALTER TABLE "schema"."table" ADD COLUMN "column2" INTEGER', + ], + [ + '', + 'column3', + 'ALTER TABLE "table" ADD COLUMN "column3" NUMERIC(10,2) NOT NULL', + ], + [ + 'schema', + 'column3', + 'ALTER TABLE "schema"."table" ADD COLUMN "column3" NUMERIC(10,2) NOT NULL', + ], + [ + '', + 'column4', + 'ALTER TABLE "table" ADD COLUMN "column4" CHARACTER(100) NOT NULL', + ], + [ + 'schema', + 'column4', + 'ALTER TABLE "schema"."table" ADD COLUMN "column4" CHARACTER(100) NOT NULL', + ], + [ + '', + 'column5', + 'ALTER TABLE "table" ADD COLUMN "column5" DATE NOT NULL', + ], + [ + 'schema', + 'column5', + 'ALTER TABLE "schema"."table" ADD COLUMN "column5" DATE NOT NULL', + ], + [ + '', + 'column6', + 'ALTER TABLE "table" ADD COLUMN "column6" DATETIME NOT NULL', + ], + [ + 'schema', + 'column6', + 'ALTER TABLE "schema"."table" ADD COLUMN "column6" DATETIME NOT NULL', + ], + [ + '', + 'column7', + 'ALTER TABLE "table" ADD COLUMN "column7" TEXT NOT NULL', + ], + [ + 'schema', + 'column7', + 'ALTER TABLE "schema"."table" ADD COLUMN "column7" TEXT NOT NULL', + ], + [ + '', + 'column8', + 'ALTER TABLE "table" ADD COLUMN "column8" FLOAT NOT NULL', + ], + [ + 'schema', + 'column8', + 'ALTER TABLE "schema"."table" ADD COLUMN "column8" FLOAT NOT NULL', + ], + [ + '', + 'column9', + 'ALTER TABLE "table" ADD COLUMN "column9" VARCHAR(10) DEFAULT "column9"', + ], + [ + 'schema', + 'column9', + 'ALTER TABLE "schema"."table" ADD COLUMN "column9" VARCHAR(10) DEFAULT "column9"', + ], + [ + '', + 'column10', + 'ALTER TABLE "table" ADD COLUMN "column10" INTEGER DEFAULT "10"', + ], + [ + 'schema', + 'column10', + 'ALTER TABLE "schema"."table" ADD COLUMN "column10" INTEGER DEFAULT "10"', + ], + [ + '', + 'column13', + 'ALTER TABLE "table" ADD COLUMN "column13" TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL', + ], + [ + 'schema', + 'column13', + 'ALTER TABLE "schema"."table" ADD COLUMN "column13" TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL', + ], + [ + '', + 'column14', + 'ALTER TABLE "table" ADD COLUMN "column14" TINYBLOB NOT NULL', + ], + [ + 'schema', + 'column14', + 'ALTER TABLE "schema"."table" ADD COLUMN "column14" TINYBLOB NOT NULL', + ], + [ + '', + 'column15', + 'ALTER TABLE "table" ADD COLUMN "column15" MEDIUMBLOB NOT NULL', + ], + [ + 'schema', + 'column15', + 'ALTER TABLE "schema"."table" ADD COLUMN "column15" MEDIUMBLOB NOT NULL', + ], + [ + '', + 'column16', + 'ALTER TABLE "table" ADD COLUMN "column16" BLOB NOT NULL', + ], + [ + 'schema', + 'column16', + 'ALTER TABLE "schema"."table" ADD COLUMN "column16" BLOB NOT NULL', + ], + [ + '', + 'column17', + 'ALTER TABLE "table" ADD COLUMN "column17" LONGBLOB NOT NULL', + ], + [ + 'schema', + 'column17', + 'ALTER TABLE "schema"."table" ADD COLUMN "column17" LONGBLOB NOT NULL', + ], + [ + '', + 'column18', + 'ALTER TABLE "table" ADD COLUMN "column18" TINYINT', + ], + [ + 'schema', + 'column18', + 'ALTER TABLE "schema"."table" ADD COLUMN "column18" TINYINT', + ], + [ + '', + 'column19', + 'ALTER TABLE "table" ADD COLUMN "column19" DOUBLE', + ], + [ + 'schema', + 'column19', + 'ALTER TABLE "schema"."table" ADD COLUMN "column19" DOUBLE', + ], + [ + '', + 'column20', + 'ALTER TABLE "table" ADD COLUMN "column20" DOUBLE UNSIGNED', + ], + [ + 'schema', + 'column20', + 'ALTER TABLE "schema"."table" ADD COLUMN "column20" DOUBLE UNSIGNED', + ], + ]; + } + + /** + * @return array + */ + protected function getAddForeignKeyFixtures(): array + { + return []; + } + + /** + * @return array + */ + protected function getAddIndexFixtures() + { + return [ + ['', 'index1', 'CREATE INDEX "index1" ON "table" ("column1")'], + ['schema', 'index1', 'CREATE INDEX "schema"."index1" ON "table" ("column1")'], + ['', 'index2', 'CREATE INDEX "index2" ON "table" ("column1", "column2")'], + ['schema', 'index2', 'CREATE INDEX "schema"."index2" ON "table" ("column1", "column2")'], + ]; + } + + /** + * @return array + */ + protected function getAddPrimaryKeyFixtures(): array + { + return []; + } + + /** + * @return array + */ + protected function getColumnDefinitionFixtures(): array + { + return [ + ['column1', 'VARCHAR(10)'], + ['column2', 'INTEGER'], + ['column3', 'NUMERIC(10,2)'], + ['column4', 'CHARACTER(100)'], + ['column5', 'DATE'], + ['column6', 'DATETIME'], + ['column7', 'TEXT'], + ['column8', 'FLOAT'], + ['column9', 'VARCHAR(10)'], + ['column10', 'INTEGER'], + ['column13', 'TIMESTAMP'], + ['column14', 'TINYBLOB'], + ['column15', 'MEDIUMBLOB'], + ['column16', 'BLOB'], + ['column17', 'LONGBLOB'], + ['column18', 'TINYINT'], + ['column19', 'DOUBLE'], + ['column20', 'DOUBLE UNSIGNED'], + ]; + } + + /** + * @return array + */ + protected function getColumnListFixtures(): array + { + return [ + [ + ['column1', 'column2', 'column3', 'column13'], + '"column1", "column2", "column3", "column13"', + ], + [ + ['foo'], + '"foo"', + ], + ]; + } + + /** + * @return array + */ + protected function getCreateTableFixtures(): array + { + return [ + 'example1' => [ + '', + [ + 'columns' => [ + new Column('column1', [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + ]), + new Column('column2', [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/sqlite/example1.sql'))), + ], + 'example2' => [ + '', + [ + 'columns' => [ + new Column('column2', [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + ]), + new Column('column3', [ + 'type' => Column::TYPE_DECIMAL, + 'size' => 10, + 'scale' => 2, + 'unsigned' => false, + 'notNull' => true, + ]), + new Column('column1', [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + ]), + ], + 'indexes' => [ + new Index('PRIMARY', ['column3']), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/sqlite/example2.sql'))), + ], + 'example3' => [ + '', + [ + 'columns' => [ + new Column('column2', [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + ]), + new Column('column3', [ + 'type' => Column::TYPE_DECIMAL, + 'size' => 10, + 'scale' => 2, + 'unsigned' => false, + 'notNull' => true, + ]), + new Column('column1', [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + ]), + ], + 'indexes' => [ + new Index('PRIMARY', ['column3']), + ], + 'references' => [ + new Reference('fk3', [ + 'referencedTable' => 'ref_table', + 'columns' => ['column1'], + 'referencedColumns' => ['column2'], + 'onDelete' => 'CASCADE', + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/sqlite/example3.sql'))), + ], + 'example4' => [ + '', + [ + 'columns' => [ + new Column('column9', [ + 'type' => Column::TYPE_VARCHAR, + 'size' => 10, + 'default' => 'column9', + ]), + new Column('column10', [ + 'type' => Column::TYPE_INTEGER, + 'size' => 18, + 'unsigned' => true, + 'notNull' => false, + 'default' => 10, + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/sqlite/example4.sql'))), + ], + 'example5' => [ + '', + [ + 'columns' => [ + new Column('column11', [ + 'type' => 'BIGINT', + 'typeReference' => Column::TYPE_INTEGER, + 'size' => 20, + 'unsigned' => true, + 'notNull' => false, + ]), + new Column('column13', [ + 'type' => Column::TYPE_TIMESTAMP, + 'notNull' => true, + 'default' => 'CURRENT_TIMESTAMP', + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/sqlite/example5.sql'))), + ], + 'example6' => [ + '', + [ + 'columns' => [ + new Column('column14', [ + 'type' => Column::TYPE_TINYBLOB, + 'notNull' => true, + ]), + new Column('column16', [ + 'type' => Column::TYPE_BLOB, + 'notNull' => true, + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/sqlite/example6.sql'))), + ], + 'example7' => [ + '', + [ + 'columns' => [ + new Column('column18', [ + 'type' => Column::TYPE_BOOLEAN, + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/sqlite/example7.sql'))), + ], + 'example8' => [ + '', + [ + 'columns' => [ + new Column('column19', [ + 'type' => Column::TYPE_DOUBLE, + ]), + new Column('column20', [ + 'type' => Column::TYPE_DOUBLE, + 'unsigned' => true, + ]), + ], + ], + rtrim(file_get_contents(dataFolder('fixtures/Db/sqlite/example8.sql'))), + ], + ]; + } + + /** + * @return string + */ + protected function getCreateSavepointSql(): string + { + return 'SAVEPOINT PH_SAVEPOINT_1'; + } + + /** + * @return array + */ + protected function getCreateViewFixtures(): array + { + return [ + [['sql' => 'SELECT 1'], null, 'CREATE VIEW "test_view" AS SELECT 1'], + [['sql' => 'SELECT 1'], 'schema', 'CREATE VIEW "schema"."test_view" AS SELECT 1'], + ]; + } + + /** + * @return array + */ + protected function getDescribeColumnsFixtures(): array + { + return [ + ['schema.name.with.dots', "PRAGMA table_info('table')"], + ['', "PRAGMA table_info('table')"], + ['schema', "PRAGMA table_info('table')"], + ]; + } + + /** + * @return array + */ + protected function getDescribeReferencesFixtures() + { + return [ + ['', "PRAGMA foreign_key_list('table')"], + ['schema', "PRAGMA foreign_key_list('table')"], + ]; + } + + /** + * @return array + */ + protected function getDropColumnFixtures(): array + { + return []; + } + + /** + * @return array + */ + protected function getDropForeignKeyFixtures(): array + { + return []; + } + + /** + * @return array + */ + protected function getDropIndexFixtures() + { + return [ + ['', 'index1', 'DROP INDEX "index1"'], + ['schema', 'index1', 'DROP INDEX "schema"."index1"'], + ]; + } + + /** + * @return array + */ + protected function getDropPrimaryKeyFixtures(): array + { + return []; + } + + /** + * @return array + */ + protected function getDropTableFixtures(): array + { + return [ + ['', true, 'DROP TABLE IF EXISTS "table"'], + ['schema', true, 'DROP TABLE IF EXISTS "schema"."table"'], + ['', false, 'DROP TABLE "table"'], + ['schema', false, 'DROP TABLE "schema"."table"'], + ]; + } + + /** + * @return array + */ + protected function getDropViewFixtures(): array + { + return [ + ['', false, 'DROP VIEW "test_view"'], + ['', true, 'DROP VIEW IF EXISTS "test_view"'], + ['schema', false, 'DROP VIEW "schema"."test_view"'], + ['schema', true, 'DROP VIEW IF EXISTS "schema"."test_view"'], + ]; + } + + /** + * @return array + */ + protected function getListViewFixtures(): array + { + return [ + ['', "SELECT tbl_name FROM sqlite_master WHERE type = 'view' ORDER BY tbl_name"], + ['schema', "SELECT tbl_name FROM sqlite_master WHERE type = 'view' ORDER BY tbl_name"], + ]; + } + + /** + * @return array + */ + protected function getModifyColumnFixtures(): array + { + return []; + } + + /** + * @return array + */ + protected function getModifyColumnFixtures13012(): array + { + return [ + new Column('old', ['type' => Column::TYPE_VARCHAR]), + new Column('new', ['type' => Column::TYPE_VARCHAR]), + ]; + } + + /** + * @return string + */ + protected function getModifyColumnSql(): string + { + return ''; + } + + /** + * @return string + */ + protected function getReleaseSavepointSql(): string + { + return 'RELEASE SAVEPOINT PH_SAVEPOINT_1'; + } + + /** + * @return string + */ + protected function getRollbackSavepointSql(): string + { + return 'ROLLBACK TO SAVEPOINT PH_SAVEPOINT_1'; + } + + /** + * @return array + */ + protected function getTableExistsFixtures(): array + { + return []; + } + + /** + * @return array + */ + protected function getTruncateTableFixtures(): array + { + return [ + ['', 'DELETE FROM "table"'], + ['schema', 'DELETE FROM "schema"."table"'], + ]; + } + + /** + * @return array + */ + protected function getViewExistsFixtures(): array + { + return [ + [ + null, + "SELECT CASE WHEN COUNT(*) > 0 THEN 1 ELSE 0 END " . + "FROM sqlite_master WHERE type='view' AND tbl_name='view'", + ], + [ + 'schema', + "SELECT CASE WHEN COUNT(*) > 0 THEN 1 ELSE 0 END " . + "FROM sqlite_master WHERE type='view' AND tbl_name='view'", + ], + ]; + } +} diff --git a/tests/integration/Db/Dialect/SupportsReleaseSavepointsCest.php b/tests/integration/Db/Dialect/SupportsReleaseSavepointsCest.php new file mode 100644 index 00000000000..03df2a29041 --- /dev/null +++ b/tests/integration/Db/Dialect/SupportsReleaseSavepointsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class SupportsReleaseSavepointsCest +{ + /** + * Tests Phalcon\Db\Dialect :: supportsReleaseSavepoints() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSupportsReleaseSavepoints(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - supportsReleaseSavepoints()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/SupportsSavepointsCest.php b/tests/integration/Db/Dialect/SupportsSavepointsCest.php new file mode 100644 index 00000000000..3351b3cfd1e --- /dev/null +++ b/tests/integration/Db/Dialect/SupportsSavepointsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class SupportsSavepointsCest +{ + /** + * Tests Phalcon\Db\Dialect :: supportsSavepoints() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectSupportsSavepoints(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - supportsSavepoints()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/TableExistsCest.php b/tests/integration/Db/Dialect/TableExistsCest.php new file mode 100644 index 00000000000..72a916898f1 --- /dev/null +++ b/tests/integration/Db/Dialect/TableExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class TableExistsCest +{ + /** + * Tests Phalcon\Db\Dialect :: tableExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectTableExists(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - tableExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/TableOptionsCest.php b/tests/integration/Db/Dialect/TableOptionsCest.php new file mode 100644 index 00000000000..3f39c1981ac --- /dev/null +++ b/tests/integration/Db/Dialect/TableOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class TableOptionsCest +{ + /** + * Tests Phalcon\Db\Dialect :: tableOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectTableOptions(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - tableOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Dialect/ViewExistsCest.php b/tests/integration/Db/Dialect/ViewExistsCest.php new file mode 100644 index 00000000000..d441baf621a --- /dev/null +++ b/tests/integration/Db/Dialect/ViewExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Dialect; + +use IntegrationTester; + +class ViewExistsCest +{ + /** + * Tests Phalcon\Db\Dialect :: viewExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbDialectViewExists(IntegrationTester $I) + { + $I->wantToTest("Db\Dialect - viewExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Index/ConstructCest.php b/tests/integration/Db/Index/ConstructCest.php new file mode 100644 index 00000000000..067cb5779f7 --- /dev/null +++ b/tests/integration/Db/Index/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Index; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Db\Index :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbIndexConstruct(IntegrationTester $I) + { + $I->wantToTest("Db\Index - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Index/GetColumnsCest.php b/tests/integration/Db/Index/GetColumnsCest.php new file mode 100644 index 00000000000..c3a5ab4153f --- /dev/null +++ b/tests/integration/Db/Index/GetColumnsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Index; + +use IntegrationTester; + +class GetColumnsCest +{ + /** + * Tests Phalcon\Db\Index :: getColumns() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbIndexGetColumns(IntegrationTester $I) + { + $I->wantToTest("Db\Index - getColumns()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Index/GetNameCest.php b/tests/integration/Db/Index/GetNameCest.php new file mode 100644 index 00000000000..c542ccf7a60 --- /dev/null +++ b/tests/integration/Db/Index/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Index; + +use IntegrationTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Db\Index :: getName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbIndexGetName(IntegrationTester $I) + { + $I->wantToTest("Db\Index - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Index/GetTypeCest.php b/tests/integration/Db/Index/GetTypeCest.php new file mode 100644 index 00000000000..d7a1c277690 --- /dev/null +++ b/tests/integration/Db/Index/GetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Index; + +use IntegrationTester; + +class GetTypeCest +{ + /** + * Tests Phalcon\Db\Index :: getType() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbIndexGetType(IntegrationTester $I) + { + $I->wantToTest("Db\Index - getType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Index/SetStateCest.php b/tests/integration/Db/Index/SetStateCest.php new file mode 100644 index 00000000000..16167aca646 --- /dev/null +++ b/tests/integration/Db/Index/SetStateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Index; + +use IntegrationTester; + +class SetStateCest +{ + /** + * Tests Phalcon\Db\Index :: __set_state() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbIndexSetState(IntegrationTester $I) + { + $I->wantToTest("Db\Index - __set_state()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/IndexCest.php b/tests/integration/Db/IndexCest.php new file mode 100644 index 00000000000..934b5c7b131 --- /dev/null +++ b/tests/integration/Db/IndexCest.php @@ -0,0 +1,39 @@ +getIndexes(); + + $index1 = $indexes['index1']; + $I->assertEquals($index1->getName(), 'index1'); + $I->assertEquals($index1->getColumns(), ['column1']); + + $index2 = $indexes['index2']; + $I->assertEquals($index2->getName(), 'index2'); + $I->assertEquals($index2->getColumns(), ['column1', 'column2']); + + $index3 = $indexes['PRIMARY']; + $I->assertEquals($index3->getName(), 'PRIMARY'); + $I->assertEquals($index3->getColumns(), ['column3']); + + $index4 = $indexes['index4']; + $I->assertEquals($index4->getName(), 'index4'); + $I->assertEquals($index4->getColumns(), ['column4']); + $I->assertEquals($index4->getType(), 'UNIQUE'); + + $index5 = $indexes['index5']; + $I->assertEquals($index5->getName(), 'index5'); + $I->assertEquals($index5->getColumns(), ['column7']); + $I->assertEquals($index5->getType(), 'FULLTEXT'); + } +} diff --git a/tests/integration/Db/Profiler/GetLastProfileCest.php b/tests/integration/Db/Profiler/GetLastProfileCest.php new file mode 100644 index 00000000000..2b1226987f9 --- /dev/null +++ b/tests/integration/Db/Profiler/GetLastProfileCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Profiler; + +use IntegrationTester; + +class GetLastProfileCest +{ + /** + * Tests Phalcon\Db\Profiler :: getLastProfile() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbProfilerGetLastProfile(IntegrationTester $I) + { + $I->wantToTest("Db\Profiler - getLastProfile()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Profiler/GetNumberTotalStatementsCest.php b/tests/integration/Db/Profiler/GetNumberTotalStatementsCest.php new file mode 100644 index 00000000000..1834d407e32 --- /dev/null +++ b/tests/integration/Db/Profiler/GetNumberTotalStatementsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Profiler; + +use IntegrationTester; + +class GetNumberTotalStatementsCest +{ + /** + * Tests Phalcon\Db\Profiler :: getNumberTotalStatements() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbProfilerGetNumberTotalStatements(IntegrationTester $I) + { + $I->wantToTest("Db\Profiler - getNumberTotalStatements()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Profiler/GetProfilesCest.php b/tests/integration/Db/Profiler/GetProfilesCest.php new file mode 100644 index 00000000000..cd76446f311 --- /dev/null +++ b/tests/integration/Db/Profiler/GetProfilesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Profiler; + +use IntegrationTester; + +class GetProfilesCest +{ + /** + * Tests Phalcon\Db\Profiler :: getProfiles() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbProfilerGetProfiles(IntegrationTester $I) + { + $I->wantToTest("Db\Profiler - getProfiles()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Profiler/GetTotalElapsedSecondsCest.php b/tests/integration/Db/Profiler/GetTotalElapsedSecondsCest.php new file mode 100644 index 00000000000..d343b1ea67a --- /dev/null +++ b/tests/integration/Db/Profiler/GetTotalElapsedSecondsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Profiler; + +use IntegrationTester; + +class GetTotalElapsedSecondsCest +{ + /** + * Tests Phalcon\Db\Profiler :: getTotalElapsedSeconds() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbProfilerGetTotalElapsedSeconds(IntegrationTester $I) + { + $I->wantToTest("Db\Profiler - getTotalElapsedSeconds()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Profiler/Item/GetFinalTimeCest.php b/tests/integration/Db/Profiler/Item/GetFinalTimeCest.php new file mode 100644 index 00000000000..e123c1afea5 --- /dev/null +++ b/tests/integration/Db/Profiler/Item/GetFinalTimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Profiler\Item; + +use IntegrationTester; + +class GetFinalTimeCest +{ + /** + * Tests Phalcon\Db\Profiler\Item :: getFinalTime() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbProfilerItemGetFinalTime(IntegrationTester $I) + { + $I->wantToTest("Db\Profiler\Item - getFinalTime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Profiler/Item/GetInitialTimeCest.php b/tests/integration/Db/Profiler/Item/GetInitialTimeCest.php new file mode 100644 index 00000000000..17fdf800995 --- /dev/null +++ b/tests/integration/Db/Profiler/Item/GetInitialTimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Profiler\Item; + +use IntegrationTester; + +class GetInitialTimeCest +{ + /** + * Tests Phalcon\Db\Profiler\Item :: getInitialTime() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbProfilerItemGetInitialTime(IntegrationTester $I) + { + $I->wantToTest("Db\Profiler\Item - getInitialTime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Profiler/Item/GetSqlBindTypesCest.php b/tests/integration/Db/Profiler/Item/GetSqlBindTypesCest.php new file mode 100644 index 00000000000..07b1384bb38 --- /dev/null +++ b/tests/integration/Db/Profiler/Item/GetSqlBindTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Profiler\Item; + +use IntegrationTester; + +class GetSqlBindTypesCest +{ + /** + * Tests Phalcon\Db\Profiler\Item :: getSqlBindTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbProfilerItemGetSqlBindTypes(IntegrationTester $I) + { + $I->wantToTest("Db\Profiler\Item - getSqlBindTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Profiler/Item/GetSqlStatementCest.php b/tests/integration/Db/Profiler/Item/GetSqlStatementCest.php new file mode 100644 index 00000000000..c3107f9a8d9 --- /dev/null +++ b/tests/integration/Db/Profiler/Item/GetSqlStatementCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Profiler\Item; + +use IntegrationTester; + +class GetSqlStatementCest +{ + /** + * Tests Phalcon\Db\Profiler\Item :: getSqlStatement() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbProfilerItemGetSqlStatement(IntegrationTester $I) + { + $I->wantToTest("Db\Profiler\Item - getSqlStatement()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Profiler/Item/GetSqlVariablesCest.php b/tests/integration/Db/Profiler/Item/GetSqlVariablesCest.php new file mode 100644 index 00000000000..78fcc6ac1aa --- /dev/null +++ b/tests/integration/Db/Profiler/Item/GetSqlVariablesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Profiler\Item; + +use IntegrationTester; + +class GetSqlVariablesCest +{ + /** + * Tests Phalcon\Db\Profiler\Item :: getSqlVariables() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbProfilerItemGetSqlVariables(IntegrationTester $I) + { + $I->wantToTest("Db\Profiler\Item - getSqlVariables()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Profiler/Item/GetTotalElapsedSecondsCest.php b/tests/integration/Db/Profiler/Item/GetTotalElapsedSecondsCest.php new file mode 100644 index 00000000000..aea509e6c58 --- /dev/null +++ b/tests/integration/Db/Profiler/Item/GetTotalElapsedSecondsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Profiler\Item; + +use IntegrationTester; + +class GetTotalElapsedSecondsCest +{ + /** + * Tests Phalcon\Db\Profiler\Item :: getTotalElapsedSeconds() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbProfilerItemGetTotalElapsedSeconds(IntegrationTester $I) + { + $I->wantToTest("Db\Profiler\Item - getTotalElapsedSeconds()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Profiler/Item/SetFinalTimeCest.php b/tests/integration/Db/Profiler/Item/SetFinalTimeCest.php new file mode 100644 index 00000000000..0ec0ea5782a --- /dev/null +++ b/tests/integration/Db/Profiler/Item/SetFinalTimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Profiler\Item; + +use IntegrationTester; + +class SetFinalTimeCest +{ + /** + * Tests Phalcon\Db\Profiler\Item :: setFinalTime() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbProfilerItemSetFinalTime(IntegrationTester $I) + { + $I->wantToTest("Db\Profiler\Item - setFinalTime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Profiler/Item/SetInitialTimeCest.php b/tests/integration/Db/Profiler/Item/SetInitialTimeCest.php new file mode 100644 index 00000000000..409a7eaf14d --- /dev/null +++ b/tests/integration/Db/Profiler/Item/SetInitialTimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Profiler\Item; + +use IntegrationTester; + +class SetInitialTimeCest +{ + /** + * Tests Phalcon\Db\Profiler\Item :: setInitialTime() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbProfilerItemSetInitialTime(IntegrationTester $I) + { + $I->wantToTest("Db\Profiler\Item - setInitialTime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Profiler/Item/SetSqlBindTypesCest.php b/tests/integration/Db/Profiler/Item/SetSqlBindTypesCest.php new file mode 100644 index 00000000000..96f7f7c570f --- /dev/null +++ b/tests/integration/Db/Profiler/Item/SetSqlBindTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Profiler\Item; + +use IntegrationTester; + +class SetSqlBindTypesCest +{ + /** + * Tests Phalcon\Db\Profiler\Item :: setSqlBindTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbProfilerItemSetSqlBindTypes(IntegrationTester $I) + { + $I->wantToTest("Db\Profiler\Item - setSqlBindTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Profiler/Item/SetSqlStatementCest.php b/tests/integration/Db/Profiler/Item/SetSqlStatementCest.php new file mode 100644 index 00000000000..4384156d1c0 --- /dev/null +++ b/tests/integration/Db/Profiler/Item/SetSqlStatementCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Profiler\Item; + +use IntegrationTester; + +class SetSqlStatementCest +{ + /** + * Tests Phalcon\Db\Profiler\Item :: setSqlStatement() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbProfilerItemSetSqlStatement(IntegrationTester $I) + { + $I->wantToTest("Db\Profiler\Item - setSqlStatement()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Profiler/Item/SetSqlVariablesCest.php b/tests/integration/Db/Profiler/Item/SetSqlVariablesCest.php new file mode 100644 index 00000000000..1be476211a0 --- /dev/null +++ b/tests/integration/Db/Profiler/Item/SetSqlVariablesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Profiler\Item; + +use IntegrationTester; + +class SetSqlVariablesCest +{ + /** + * Tests Phalcon\Db\Profiler\Item :: setSqlVariables() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbProfilerItemSetSqlVariables(IntegrationTester $I) + { + $I->wantToTest("Db\Profiler\Item - setSqlVariables()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Profiler/ResetCest.php b/tests/integration/Db/Profiler/ResetCest.php new file mode 100644 index 00000000000..5ec8c66dce5 --- /dev/null +++ b/tests/integration/Db/Profiler/ResetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Profiler; + +use IntegrationTester; + +class ResetCest +{ + /** + * Tests Phalcon\Db\Profiler :: reset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbProfilerReset(IntegrationTester $I) + { + $I->wantToTest("Db\Profiler - reset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Profiler/StartProfileCest.php b/tests/integration/Db/Profiler/StartProfileCest.php new file mode 100644 index 00000000000..68418f54f65 --- /dev/null +++ b/tests/integration/Db/Profiler/StartProfileCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Profiler; + +use IntegrationTester; + +class StartProfileCest +{ + /** + * Tests Phalcon\Db\Profiler :: startProfile() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbProfilerStartProfile(IntegrationTester $I) + { + $I->wantToTest("Db\Profiler - startProfile()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Profiler/StopProfileCest.php b/tests/integration/Db/Profiler/StopProfileCest.php new file mode 100644 index 00000000000..f27d8e93738 --- /dev/null +++ b/tests/integration/Db/Profiler/StopProfileCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Profiler; + +use IntegrationTester; + +class StopProfileCest +{ + /** + * Tests Phalcon\Db\Profiler :: stopProfile() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbProfilerStopProfile(IntegrationTester $I) + { + $I->wantToTest("Db\Profiler - stopProfile()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/RawValue/ConstructCest.php b/tests/integration/Db/RawValue/ConstructCest.php new file mode 100644 index 00000000000..8ef1c7b8015 --- /dev/null +++ b/tests/integration/Db/RawValue/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\RawValue; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Db\RawValue :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbRawvalueConstruct(IntegrationTester $I) + { + $I->wantToTest("Db\RawValue - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/RawValue/GetValueCest.php b/tests/integration/Db/RawValue/GetValueCest.php new file mode 100644 index 00000000000..b074642d1d5 --- /dev/null +++ b/tests/integration/Db/RawValue/GetValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\RawValue; + +use IntegrationTester; + +class GetValueCest +{ + /** + * Tests Phalcon\Db\RawValue :: getValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbRawvalueGetValue(IntegrationTester $I) + { + $I->wantToTest("Db\RawValue - getValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/RawValue/ToStringCest.php b/tests/integration/Db/RawValue/ToStringCest.php new file mode 100644 index 00000000000..6dde5f42238 --- /dev/null +++ b/tests/integration/Db/RawValue/ToStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\RawValue; + +use IntegrationTester; + +class ToStringCest +{ + /** + * Tests Phalcon\Db\RawValue :: __toString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbRawvalueToString(IntegrationTester $I) + { + $I->wantToTest("Db\RawValue - __toString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Reference/ConstructCest.php b/tests/integration/Db/Reference/ConstructCest.php new file mode 100644 index 00000000000..3b32a35ec5b --- /dev/null +++ b/tests/integration/Db/Reference/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Reference; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Db\Reference :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbReferenceConstruct(IntegrationTester $I) + { + $I->wantToTest("Db\Reference - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Reference/GetColumnsCest.php b/tests/integration/Db/Reference/GetColumnsCest.php new file mode 100644 index 00000000000..fec79a25f64 --- /dev/null +++ b/tests/integration/Db/Reference/GetColumnsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Reference; + +use IntegrationTester; + +class GetColumnsCest +{ + /** + * Tests Phalcon\Db\Reference :: getColumns() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbReferenceGetColumns(IntegrationTester $I) + { + $I->wantToTest("Db\Reference - getColumns()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Reference/GetNameCest.php b/tests/integration/Db/Reference/GetNameCest.php new file mode 100644 index 00000000000..7aa9fafe01d --- /dev/null +++ b/tests/integration/Db/Reference/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Reference; + +use IntegrationTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Db\Reference :: getName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbReferenceGetName(IntegrationTester $I) + { + $I->wantToTest("Db\Reference - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Reference/GetOnDeleteCest.php b/tests/integration/Db/Reference/GetOnDeleteCest.php new file mode 100644 index 00000000000..d00cc1fba79 --- /dev/null +++ b/tests/integration/Db/Reference/GetOnDeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Reference; + +use IntegrationTester; + +class GetOnDeleteCest +{ + /** + * Tests Phalcon\Db\Reference :: getOnDelete() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbReferenceGetOnDelete(IntegrationTester $I) + { + $I->wantToTest("Db\Reference - getOnDelete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Reference/GetOnUpdateCest.php b/tests/integration/Db/Reference/GetOnUpdateCest.php new file mode 100644 index 00000000000..6b33fc228e6 --- /dev/null +++ b/tests/integration/Db/Reference/GetOnUpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Reference; + +use IntegrationTester; + +class GetOnUpdateCest +{ + /** + * Tests Phalcon\Db\Reference :: getOnUpdate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbReferenceGetOnUpdate(IntegrationTester $I) + { + $I->wantToTest("Db\Reference - getOnUpdate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Reference/GetReferencedColumnsCest.php b/tests/integration/Db/Reference/GetReferencedColumnsCest.php new file mode 100644 index 00000000000..6661c0971c5 --- /dev/null +++ b/tests/integration/Db/Reference/GetReferencedColumnsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Reference; + +use IntegrationTester; + +class GetReferencedColumnsCest +{ + /** + * Tests Phalcon\Db\Reference :: getReferencedColumns() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbReferenceGetReferencedColumns(IntegrationTester $I) + { + $I->wantToTest("Db\Reference - getReferencedColumns()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Reference/GetReferencedSchemaCest.php b/tests/integration/Db/Reference/GetReferencedSchemaCest.php new file mode 100644 index 00000000000..4570b3929aa --- /dev/null +++ b/tests/integration/Db/Reference/GetReferencedSchemaCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Reference; + +use IntegrationTester; + +class GetReferencedSchemaCest +{ + /** + * Tests Phalcon\Db\Reference :: getReferencedSchema() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbReferenceGetReferencedSchema(IntegrationTester $I) + { + $I->wantToTest("Db\Reference - getReferencedSchema()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Reference/GetReferencedTableCest.php b/tests/integration/Db/Reference/GetReferencedTableCest.php new file mode 100644 index 00000000000..4419c847d48 --- /dev/null +++ b/tests/integration/Db/Reference/GetReferencedTableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Reference; + +use IntegrationTester; + +class GetReferencedTableCest +{ + /** + * Tests Phalcon\Db\Reference :: getReferencedTable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbReferenceGetReferencedTable(IntegrationTester $I) + { + $I->wantToTest("Db\Reference - getReferencedTable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Reference/GetSchemaNameCest.php b/tests/integration/Db/Reference/GetSchemaNameCest.php new file mode 100644 index 00000000000..3bdf131cb14 --- /dev/null +++ b/tests/integration/Db/Reference/GetSchemaNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Reference; + +use IntegrationTester; + +class GetSchemaNameCest +{ + /** + * Tests Phalcon\Db\Reference :: getSchemaName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbReferenceGetSchemaName(IntegrationTester $I) + { + $I->wantToTest("Db\Reference - getSchemaName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Reference/SetStateCest.php b/tests/integration/Db/Reference/SetStateCest.php new file mode 100644 index 00000000000..02052cc46d0 --- /dev/null +++ b/tests/integration/Db/Reference/SetStateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Reference; + +use IntegrationTester; + +class SetStateCest +{ + /** + * Tests Phalcon\Db\Reference :: __set_state() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbReferenceSetState(IntegrationTester $I) + { + $I->wantToTest("Db\Reference - __set_state()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/ReferenceCest.php b/tests/integration/Db/ReferenceCest.php new file mode 100644 index 00000000000..1abb27ef075 --- /dev/null +++ b/tests/integration/Db/ReferenceCest.php @@ -0,0 +1,66 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\DialectTrait; +use Phalcon\Test\Module\IntegrationTest; + +class ReferenceCest +{ + use DialectTrait; + + public function shouldWorkPerfectlyWithCReferenceAsObject(IntegrationTester $I) + { + $references = $this->getReferences(); + + $reference1 = $references['fk1']; + $I->assertEquals($reference1->getName(), 'fk1'); + $I->assertEquals($reference1->getColumns(), ['column1']); + $I->assertEquals($reference1->getReferencedTable(), 'ref_table'); + $I->assertEquals($reference1->getReferencedColumns(), ['column2']); + $I->assertEquals($reference1->getOnDelete(), null); + $I->assertEquals($reference1->getOnUpdate(), null); + + $reference2 = $references['fk2']; + $I->assertEquals($reference2->getName(), 'fk2'); + $I->assertEquals($reference2->getColumns(), ['column3', 'column4']); + $I->assertEquals($reference2->getReferencedTable(), 'ref_table'); + $I->assertEquals($reference2->getReferencedColumns(), ['column5', 'column6']); + $I->assertEquals($reference1->getOnDelete(), null); + $I->assertEquals($reference1->getOnUpdate(), null); + + $reference3 = $references['fk3']; + $I->assertEquals($reference3->getName(), 'fk3'); + $I->assertEquals($reference3->getColumns(), ['column1']); + $I->assertEquals($reference3->getReferencedTable(), 'ref_table'); + $I->assertEquals($reference3->getReferencedColumns(), ['column2']); + $I->assertEquals($reference3->getOnDelete(), 'CASCADE'); + $I->assertEquals($reference3->getOnUpdate(), null); + + $reference4 = $references['fk4']; + $I->assertEquals($reference4->getName(), 'fk4'); + $I->assertEquals($reference4->getColumns(), ['column1']); + $I->assertEquals($reference4->getReferencedTable(), 'ref_table'); + $I->assertEquals($reference4->getReferencedColumns(), ['column2']); + $I->assertEquals($reference4->getOnDelete(), null); + $I->assertEquals($reference4->getOnUpdate(), 'SET NULL'); + + $reference5 = $references['fk5']; + $I->assertEquals($reference5->getName(), 'fk5'); + $I->assertEquals($reference5->getColumns(), ['column1']); + $I->assertEquals($reference5->getReferencedTable(), 'ref_table'); + $I->assertEquals($reference5->getReferencedColumns(), ['column2']); + $I->assertEquals($reference5->getOnDelete(), 'CASCADE'); + $I->assertEquals($reference5->getOnUpdate(), 'NO ACTION'); + } +} diff --git a/tests/integration/Db/Result/Pdo/ConstructCest.php b/tests/integration/Db/Result/Pdo/ConstructCest.php new file mode 100644 index 00000000000..34ac39e70d4 --- /dev/null +++ b/tests/integration/Db/Result/Pdo/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Result\Pdo; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Db\Result\Pdo :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbResultPdoConstruct(IntegrationTester $I) + { + $I->wantToTest("Db\Result\Pdo - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Result/Pdo/DataSeekCest.php b/tests/integration/Db/Result/Pdo/DataSeekCest.php new file mode 100644 index 00000000000..1cbbb6da795 --- /dev/null +++ b/tests/integration/Db/Result/Pdo/DataSeekCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Result\Pdo; + +use IntegrationTester; + +class DataSeekCest +{ + /** + * Tests Phalcon\Db\Result\Pdo :: dataSeek() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbResultPdoDataSeek(IntegrationTester $I) + { + $I->wantToTest("Db\Result\Pdo - dataSeek()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Result/Pdo/ExecuteCest.php b/tests/integration/Db/Result/Pdo/ExecuteCest.php new file mode 100644 index 00000000000..50299c0751e --- /dev/null +++ b/tests/integration/Db/Result/Pdo/ExecuteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Result\Pdo; + +use IntegrationTester; + +class ExecuteCest +{ + /** + * Tests Phalcon\Db\Result\Pdo :: execute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbResultPdoExecute(IntegrationTester $I) + { + $I->wantToTest("Db\Result\Pdo - execute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Result/Pdo/FetchAllCest.php b/tests/integration/Db/Result/Pdo/FetchAllCest.php new file mode 100644 index 00000000000..5735c9d7392 --- /dev/null +++ b/tests/integration/Db/Result/Pdo/FetchAllCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Result\Pdo; + +use IntegrationTester; + +class FetchAllCest +{ + /** + * Tests Phalcon\Db\Result\Pdo :: fetchAll() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbResultPdoFetchAll(IntegrationTester $I) + { + $I->wantToTest("Db\Result\Pdo - fetchAll()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Result/Pdo/FetchArrayCest.php b/tests/integration/Db/Result/Pdo/FetchArrayCest.php new file mode 100644 index 00000000000..f00d877b143 --- /dev/null +++ b/tests/integration/Db/Result/Pdo/FetchArrayCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Result\Pdo; + +use IntegrationTester; + +class FetchArrayCest +{ + /** + * Tests Phalcon\Db\Result\Pdo :: fetchArray() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbResultPdoFetchArray(IntegrationTester $I) + { + $I->wantToTest("Db\Result\Pdo - fetchArray()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Result/Pdo/FetchCest.php b/tests/integration/Db/Result/Pdo/FetchCest.php new file mode 100644 index 00000000000..1e493cadea4 --- /dev/null +++ b/tests/integration/Db/Result/Pdo/FetchCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Result\Pdo; + +use IntegrationTester; + +class FetchCest +{ + /** + * Tests Phalcon\Db\Result\Pdo :: fetch() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbResultPdoFetch(IntegrationTester $I) + { + $I->wantToTest("Db\Result\Pdo - fetch()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Result/Pdo/GetInternalResultCest.php b/tests/integration/Db/Result/Pdo/GetInternalResultCest.php new file mode 100644 index 00000000000..a95f79b0348 --- /dev/null +++ b/tests/integration/Db/Result/Pdo/GetInternalResultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Result\Pdo; + +use IntegrationTester; + +class GetInternalResultCest +{ + /** + * Tests Phalcon\Db\Result\Pdo :: getInternalResult() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbResultPdoGetInternalResult(IntegrationTester $I) + { + $I->wantToTest("Db\Result\Pdo - getInternalResult()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Result/Pdo/NumRowsCest.php b/tests/integration/Db/Result/Pdo/NumRowsCest.php new file mode 100644 index 00000000000..fecf0f7597c --- /dev/null +++ b/tests/integration/Db/Result/Pdo/NumRowsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Result\Pdo; + +use IntegrationTester; + +class NumRowsCest +{ + /** + * Tests Phalcon\Db\Result\Pdo :: numRows() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbResultPdoNumRows(IntegrationTester $I) + { + $I->wantToTest("Db\Result\Pdo - numRows()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/Result/Pdo/SetFetchModeCest.php b/tests/integration/Db/Result/Pdo/SetFetchModeCest.php new file mode 100644 index 00000000000..f928dc7e3ba --- /dev/null +++ b/tests/integration/Db/Result/Pdo/SetFetchModeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db\Result\Pdo; + +use IntegrationTester; + +class SetFetchModeCest +{ + /** + * Tests Phalcon\Db\Result\Pdo :: setFetchMode() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbResultPdoSetFetchMode(IntegrationTester $I) + { + $I->wantToTest("Db\Result\Pdo - setFetchMode()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Db/SetupCest.php b/tests/integration/Db/SetupCest.php new file mode 100644 index 00000000000..76ab32ecffe --- /dev/null +++ b/tests/integration/Db/SetupCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Db; + +use IntegrationTester; + +class SetupCest +{ + /** + * Tests Phalcon\Db :: setup() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dbSetup(IntegrationTester $I) + { + $I->wantToTest("Db - setup()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/AddFilterCest.php b/tests/integration/Forms/Element/AddFilterCest.php new file mode 100644 index 00000000000..2ee72f2aa3c --- /dev/null +++ b/tests/integration/Forms/Element/AddFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class AddFilterCest +{ + /** + * Tests Phalcon\Forms\Element :: addFilter() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementAddFilter(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - addFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/AddValidatorCest.php b/tests/integration/Forms/Element/AddValidatorCest.php new file mode 100644 index 00000000000..cabdcb6f43c --- /dev/null +++ b/tests/integration/Forms/Element/AddValidatorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class AddValidatorCest +{ + /** + * Tests Phalcon\Forms\Element :: addValidator() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementAddValidator(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - addValidator()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/AddValidatorsCest.php b/tests/integration/Forms/Element/AddValidatorsCest.php new file mode 100644 index 00000000000..fc44ad8b9a2 --- /dev/null +++ b/tests/integration/Forms/Element/AddValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class AddValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element :: addValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementAddValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - addValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/AppendMessageCest.php b/tests/integration/Forms/Element/AppendMessageCest.php new file mode 100644 index 00000000000..909c322bb13 --- /dev/null +++ b/tests/integration/Forms/Element/AppendMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class AppendMessageCest +{ + /** + * Tests Phalcon\Forms\Element :: appendMessage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementAppendMessage(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - appendMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/AddFilterCest.php b/tests/integration/Forms/Element/Check/AddFilterCest.php new file mode 100644 index 00000000000..9db3434d23a --- /dev/null +++ b/tests/integration/Forms/Element/Check/AddFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class AddFilterCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: addFilter() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckAddFilter(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - addFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/AddValidatorCest.php b/tests/integration/Forms/Element/Check/AddValidatorCest.php new file mode 100644 index 00000000000..6cb3217699c --- /dev/null +++ b/tests/integration/Forms/Element/Check/AddValidatorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class AddValidatorCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: addValidator() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckAddValidator(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - addValidator()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/AddValidatorsCest.php b/tests/integration/Forms/Element/Check/AddValidatorsCest.php new file mode 100644 index 00000000000..78ecbcf4522 --- /dev/null +++ b/tests/integration/Forms/Element/Check/AddValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class AddValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: addValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckAddValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - addValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/AppendMessageCest.php b/tests/integration/Forms/Element/Check/AppendMessageCest.php new file mode 100644 index 00000000000..4472a737615 --- /dev/null +++ b/tests/integration/Forms/Element/Check/AppendMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class AppendMessageCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: appendMessage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckAppendMessage(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - appendMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/ClearCest.php b/tests/integration/Forms/Element/Check/ClearCest.php new file mode 100644 index 00000000000..e4268ad2ba7 --- /dev/null +++ b/tests/integration/Forms/Element/Check/ClearCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class ClearCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: clear() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckClear(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - clear()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/ConstructCest.php b/tests/integration/Forms/Element/Check/ConstructCest.php new file mode 100644 index 00000000000..7d684c6131f --- /dev/null +++ b/tests/integration/Forms/Element/Check/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckConstruct(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/GetAttributeCest.php b/tests/integration/Forms/Element/Check/GetAttributeCest.php new file mode 100644 index 00000000000..7351a9afa77 --- /dev/null +++ b/tests/integration/Forms/Element/Check/GetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class GetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: getAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckGetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - getAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/GetAttributesCest.php b/tests/integration/Forms/Element/Check/GetAttributesCest.php new file mode 100644 index 00000000000..3d5bc072e8c --- /dev/null +++ b/tests/integration/Forms/Element/Check/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: getAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckGetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/GetDefaultCest.php b/tests/integration/Forms/Element/Check/GetDefaultCest.php new file mode 100644 index 00000000000..f97e93ed443 --- /dev/null +++ b/tests/integration/Forms/Element/Check/GetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class GetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: getDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckGetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - getDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/GetFiltersCest.php b/tests/integration/Forms/Element/Check/GetFiltersCest.php new file mode 100644 index 00000000000..f405a1402bb --- /dev/null +++ b/tests/integration/Forms/Element/Check/GetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class GetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: getFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckGetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - getFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/GetFormCest.php b/tests/integration/Forms/Element/Check/GetFormCest.php new file mode 100644 index 00000000000..13d2c2ce501 --- /dev/null +++ b/tests/integration/Forms/Element/Check/GetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class GetFormCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: getForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckGetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - getForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/GetLabelCest.php b/tests/integration/Forms/Element/Check/GetLabelCest.php new file mode 100644 index 00000000000..5450bd2e662 --- /dev/null +++ b/tests/integration/Forms/Element/Check/GetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class GetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: getLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckGetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - getLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/GetMessagesCest.php b/tests/integration/Forms/Element/Check/GetMessagesCest.php new file mode 100644 index 00000000000..13a296a95d7 --- /dev/null +++ b/tests/integration/Forms/Element/Check/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckGetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/GetNameCest.php b/tests/integration/Forms/Element/Check/GetNameCest.php new file mode 100644 index 00000000000..d3db2325153 --- /dev/null +++ b/tests/integration/Forms/Element/Check/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: getName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckGetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/GetUserOptionCest.php b/tests/integration/Forms/Element/Check/GetUserOptionCest.php new file mode 100644 index 00000000000..020d692a66b --- /dev/null +++ b/tests/integration/Forms/Element/Check/GetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class GetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: getUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckGetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - getUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/GetUserOptionsCest.php b/tests/integration/Forms/Element/Check/GetUserOptionsCest.php new file mode 100644 index 00000000000..6784930bd36 --- /dev/null +++ b/tests/integration/Forms/Element/Check/GetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class GetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: getUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckGetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - getUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/GetValidatorsCest.php b/tests/integration/Forms/Element/Check/GetValidatorsCest.php new file mode 100644 index 00000000000..25e026e7382 --- /dev/null +++ b/tests/integration/Forms/Element/Check/GetValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class GetValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: getValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckGetValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - getValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/GetValueCest.php b/tests/integration/Forms/Element/Check/GetValueCest.php new file mode 100644 index 00000000000..8e069ebdd66 --- /dev/null +++ b/tests/integration/Forms/Element/Check/GetValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class GetValueCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: getValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckGetValue(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - getValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/HasMessagesCest.php b/tests/integration/Forms/Element/Check/HasMessagesCest.php new file mode 100644 index 00000000000..5d3b8f80655 --- /dev/null +++ b/tests/integration/Forms/Element/Check/HasMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class HasMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: hasMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckHasMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - hasMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/LabelCest.php b/tests/integration/Forms/Element/Check/LabelCest.php new file mode 100644 index 00000000000..106abb22564 --- /dev/null +++ b/tests/integration/Forms/Element/Check/LabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class LabelCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: label() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - label()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/PrepareAttributesCest.php b/tests/integration/Forms/Element/Check/PrepareAttributesCest.php new file mode 100644 index 00000000000..1974bf29406 --- /dev/null +++ b/tests/integration/Forms/Element/Check/PrepareAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class PrepareAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: prepareAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckPrepareAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - prepareAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/RenderCest.php b/tests/integration/Forms/Element/Check/RenderCest.php new file mode 100644 index 00000000000..0bf5f9c5394 --- /dev/null +++ b/tests/integration/Forms/Element/Check/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class RenderCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: render() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckRender(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/SetAttributeCest.php b/tests/integration/Forms/Element/Check/SetAttributeCest.php new file mode 100644 index 00000000000..82f2fe083c4 --- /dev/null +++ b/tests/integration/Forms/Element/Check/SetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class SetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: setAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckSetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - setAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/SetAttributesCest.php b/tests/integration/Forms/Element/Check/SetAttributesCest.php new file mode 100644 index 00000000000..04fcd744364 --- /dev/null +++ b/tests/integration/Forms/Element/Check/SetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class SetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: setAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckSetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - setAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/SetDefaultCest.php b/tests/integration/Forms/Element/Check/SetDefaultCest.php new file mode 100644 index 00000000000..22ffc2baf3d --- /dev/null +++ b/tests/integration/Forms/Element/Check/SetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class SetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: setDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckSetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - setDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/SetFiltersCest.php b/tests/integration/Forms/Element/Check/SetFiltersCest.php new file mode 100644 index 00000000000..076725d21c8 --- /dev/null +++ b/tests/integration/Forms/Element/Check/SetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class SetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: setFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckSetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - setFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/SetFormCest.php b/tests/integration/Forms/Element/Check/SetFormCest.php new file mode 100644 index 00000000000..67a73978411 --- /dev/null +++ b/tests/integration/Forms/Element/Check/SetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class SetFormCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: setForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckSetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - setForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/SetLabelCest.php b/tests/integration/Forms/Element/Check/SetLabelCest.php new file mode 100644 index 00000000000..addf06adcf0 --- /dev/null +++ b/tests/integration/Forms/Element/Check/SetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class SetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: setLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckSetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - setLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/SetMessagesCest.php b/tests/integration/Forms/Element/Check/SetMessagesCest.php new file mode 100644 index 00000000000..f0f82605923 --- /dev/null +++ b/tests/integration/Forms/Element/Check/SetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class SetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: setMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckSetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - setMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/SetNameCest.php b/tests/integration/Forms/Element/Check/SetNameCest.php new file mode 100644 index 00000000000..faa042d2625 --- /dev/null +++ b/tests/integration/Forms/Element/Check/SetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class SetNameCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: setName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckSetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - setName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/SetUserOptionCest.php b/tests/integration/Forms/Element/Check/SetUserOptionCest.php new file mode 100644 index 00000000000..cb42add8e35 --- /dev/null +++ b/tests/integration/Forms/Element/Check/SetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class SetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: setUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckSetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - setUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/SetUserOptionsCest.php b/tests/integration/Forms/Element/Check/SetUserOptionsCest.php new file mode 100644 index 00000000000..7bb90723e68 --- /dev/null +++ b/tests/integration/Forms/Element/Check/SetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class SetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: setUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckSetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - setUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Check/ToStringCest.php b/tests/integration/Forms/Element/Check/ToStringCest.php new file mode 100644 index 00000000000..168c2fb188f --- /dev/null +++ b/tests/integration/Forms/Element/Check/ToStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Check; + +use IntegrationTester; + +class ToStringCest +{ + /** + * Tests Phalcon\Forms\Element\Check :: __toString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementCheckToString(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Check - __toString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/ClearCest.php b/tests/integration/Forms/Element/ClearCest.php new file mode 100644 index 00000000000..79e640546fc --- /dev/null +++ b/tests/integration/Forms/Element/ClearCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class ClearCest +{ + /** + * Tests Phalcon\Forms\Element :: clear() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementClear(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - clear()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/ConstructCest.php b/tests/integration/Forms/Element/ConstructCest.php new file mode 100644 index 00000000000..a2292657d41 --- /dev/null +++ b/tests/integration/Forms/Element/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Forms\Element :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementConstruct(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/AddFilterCest.php b/tests/integration/Forms/Element/Date/AddFilterCest.php new file mode 100644 index 00000000000..dab3743440e --- /dev/null +++ b/tests/integration/Forms/Element/Date/AddFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class AddFilterCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: addFilter() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateAddFilter(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - addFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/AddValidatorCest.php b/tests/integration/Forms/Element/Date/AddValidatorCest.php new file mode 100644 index 00000000000..cbe006c336a --- /dev/null +++ b/tests/integration/Forms/Element/Date/AddValidatorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class AddValidatorCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: addValidator() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateAddValidator(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - addValidator()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/AddValidatorsCest.php b/tests/integration/Forms/Element/Date/AddValidatorsCest.php new file mode 100644 index 00000000000..3d213c958af --- /dev/null +++ b/tests/integration/Forms/Element/Date/AddValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class AddValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: addValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateAddValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - addValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/AppendMessageCest.php b/tests/integration/Forms/Element/Date/AppendMessageCest.php new file mode 100644 index 00000000000..5dccf906e70 --- /dev/null +++ b/tests/integration/Forms/Element/Date/AppendMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class AppendMessageCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: appendMessage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateAppendMessage(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - appendMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/ClearCest.php b/tests/integration/Forms/Element/Date/ClearCest.php new file mode 100644 index 00000000000..8f96392f2d1 --- /dev/null +++ b/tests/integration/Forms/Element/Date/ClearCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class ClearCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: clear() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateClear(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - clear()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/ConstructCest.php b/tests/integration/Forms/Element/Date/ConstructCest.php new file mode 100644 index 00000000000..255f1ce9315 --- /dev/null +++ b/tests/integration/Forms/Element/Date/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateConstruct(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/GetAttributeCest.php b/tests/integration/Forms/Element/Date/GetAttributeCest.php new file mode 100644 index 00000000000..fd036f22024 --- /dev/null +++ b/tests/integration/Forms/Element/Date/GetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class GetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: getAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateGetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - getAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/GetAttributesCest.php b/tests/integration/Forms/Element/Date/GetAttributesCest.php new file mode 100644 index 00000000000..b658af618be --- /dev/null +++ b/tests/integration/Forms/Element/Date/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: getAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateGetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/GetDefaultCest.php b/tests/integration/Forms/Element/Date/GetDefaultCest.php new file mode 100644 index 00000000000..b8e226a00d9 --- /dev/null +++ b/tests/integration/Forms/Element/Date/GetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class GetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: getDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateGetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - getDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/GetFiltersCest.php b/tests/integration/Forms/Element/Date/GetFiltersCest.php new file mode 100644 index 00000000000..de8a2ea4e44 --- /dev/null +++ b/tests/integration/Forms/Element/Date/GetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class GetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: getFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateGetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - getFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/GetFormCest.php b/tests/integration/Forms/Element/Date/GetFormCest.php new file mode 100644 index 00000000000..23db2ec2358 --- /dev/null +++ b/tests/integration/Forms/Element/Date/GetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class GetFormCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: getForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateGetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - getForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/GetLabelCest.php b/tests/integration/Forms/Element/Date/GetLabelCest.php new file mode 100644 index 00000000000..4d3abf9ae05 --- /dev/null +++ b/tests/integration/Forms/Element/Date/GetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class GetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: getLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateGetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - getLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/GetMessagesCest.php b/tests/integration/Forms/Element/Date/GetMessagesCest.php new file mode 100644 index 00000000000..1c7ec78597e --- /dev/null +++ b/tests/integration/Forms/Element/Date/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateGetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/GetNameCest.php b/tests/integration/Forms/Element/Date/GetNameCest.php new file mode 100644 index 00000000000..1ae6f9d4de6 --- /dev/null +++ b/tests/integration/Forms/Element/Date/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: getName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateGetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/GetUserOptionCest.php b/tests/integration/Forms/Element/Date/GetUserOptionCest.php new file mode 100644 index 00000000000..f2c7ce93c3e --- /dev/null +++ b/tests/integration/Forms/Element/Date/GetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class GetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: getUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateGetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - getUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/GetUserOptionsCest.php b/tests/integration/Forms/Element/Date/GetUserOptionsCest.php new file mode 100644 index 00000000000..e71ede613cf --- /dev/null +++ b/tests/integration/Forms/Element/Date/GetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class GetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: getUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateGetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - getUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/GetValidatorsCest.php b/tests/integration/Forms/Element/Date/GetValidatorsCest.php new file mode 100644 index 00000000000..9d64fc2c9df --- /dev/null +++ b/tests/integration/Forms/Element/Date/GetValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class GetValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: getValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateGetValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - getValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/GetValueCest.php b/tests/integration/Forms/Element/Date/GetValueCest.php new file mode 100644 index 00000000000..563e3c4d8dd --- /dev/null +++ b/tests/integration/Forms/Element/Date/GetValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class GetValueCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: getValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateGetValue(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - getValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/HasMessagesCest.php b/tests/integration/Forms/Element/Date/HasMessagesCest.php new file mode 100644 index 00000000000..505bdbaec0f --- /dev/null +++ b/tests/integration/Forms/Element/Date/HasMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class HasMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: hasMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateHasMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - hasMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/LabelCest.php b/tests/integration/Forms/Element/Date/LabelCest.php new file mode 100644 index 00000000000..03dfdda98cd --- /dev/null +++ b/tests/integration/Forms/Element/Date/LabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class LabelCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: label() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - label()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/PrepareAttributesCest.php b/tests/integration/Forms/Element/Date/PrepareAttributesCest.php new file mode 100644 index 00000000000..9c04f45209a --- /dev/null +++ b/tests/integration/Forms/Element/Date/PrepareAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class PrepareAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: prepareAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDatePrepareAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - prepareAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/RenderCest.php b/tests/integration/Forms/Element/Date/RenderCest.php new file mode 100644 index 00000000000..d42dc07caca --- /dev/null +++ b/tests/integration/Forms/Element/Date/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class RenderCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: render() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateRender(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/SetAttributeCest.php b/tests/integration/Forms/Element/Date/SetAttributeCest.php new file mode 100644 index 00000000000..6643d2da9cb --- /dev/null +++ b/tests/integration/Forms/Element/Date/SetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class SetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: setAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateSetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - setAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/SetAttributesCest.php b/tests/integration/Forms/Element/Date/SetAttributesCest.php new file mode 100644 index 00000000000..0e002d63d3b --- /dev/null +++ b/tests/integration/Forms/Element/Date/SetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class SetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: setAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateSetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - setAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/SetDefaultCest.php b/tests/integration/Forms/Element/Date/SetDefaultCest.php new file mode 100644 index 00000000000..52817a94705 --- /dev/null +++ b/tests/integration/Forms/Element/Date/SetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class SetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: setDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateSetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - setDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/SetFiltersCest.php b/tests/integration/Forms/Element/Date/SetFiltersCest.php new file mode 100644 index 00000000000..6f7ab4c195e --- /dev/null +++ b/tests/integration/Forms/Element/Date/SetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class SetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: setFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateSetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - setFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/SetFormCest.php b/tests/integration/Forms/Element/Date/SetFormCest.php new file mode 100644 index 00000000000..e4c229e74b2 --- /dev/null +++ b/tests/integration/Forms/Element/Date/SetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class SetFormCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: setForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateSetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - setForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/SetLabelCest.php b/tests/integration/Forms/Element/Date/SetLabelCest.php new file mode 100644 index 00000000000..147141dde96 --- /dev/null +++ b/tests/integration/Forms/Element/Date/SetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class SetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: setLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateSetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - setLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/SetMessagesCest.php b/tests/integration/Forms/Element/Date/SetMessagesCest.php new file mode 100644 index 00000000000..465fdd0e0f7 --- /dev/null +++ b/tests/integration/Forms/Element/Date/SetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class SetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: setMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateSetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - setMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/SetNameCest.php b/tests/integration/Forms/Element/Date/SetNameCest.php new file mode 100644 index 00000000000..fa4dd07c478 --- /dev/null +++ b/tests/integration/Forms/Element/Date/SetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class SetNameCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: setName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateSetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - setName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/SetUserOptionCest.php b/tests/integration/Forms/Element/Date/SetUserOptionCest.php new file mode 100644 index 00000000000..76a87ad5805 --- /dev/null +++ b/tests/integration/Forms/Element/Date/SetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class SetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: setUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateSetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - setUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/SetUserOptionsCest.php b/tests/integration/Forms/Element/Date/SetUserOptionsCest.php new file mode 100644 index 00000000000..821769bff40 --- /dev/null +++ b/tests/integration/Forms/Element/Date/SetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class SetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: setUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateSetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - setUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Date/ToStringCest.php b/tests/integration/Forms/Element/Date/ToStringCest.php new file mode 100644 index 00000000000..7aafff36984 --- /dev/null +++ b/tests/integration/Forms/Element/Date/ToStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Date; + +use IntegrationTester; + +class ToStringCest +{ + /** + * Tests Phalcon\Forms\Element\Date :: __toString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementDateToString(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Date - __toString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/AddFilterCest.php b/tests/integration/Forms/Element/Email/AddFilterCest.php new file mode 100644 index 00000000000..6ec76434070 --- /dev/null +++ b/tests/integration/Forms/Element/Email/AddFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class AddFilterCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: addFilter() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailAddFilter(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - addFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/AddValidatorCest.php b/tests/integration/Forms/Element/Email/AddValidatorCest.php new file mode 100644 index 00000000000..47a059fcf38 --- /dev/null +++ b/tests/integration/Forms/Element/Email/AddValidatorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class AddValidatorCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: addValidator() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailAddValidator(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - addValidator()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/AddValidatorsCest.php b/tests/integration/Forms/Element/Email/AddValidatorsCest.php new file mode 100644 index 00000000000..8cb252adf6f --- /dev/null +++ b/tests/integration/Forms/Element/Email/AddValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class AddValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: addValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailAddValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - addValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/AppendMessageCest.php b/tests/integration/Forms/Element/Email/AppendMessageCest.php new file mode 100644 index 00000000000..57c25f05695 --- /dev/null +++ b/tests/integration/Forms/Element/Email/AppendMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class AppendMessageCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: appendMessage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailAppendMessage(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - appendMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/ClearCest.php b/tests/integration/Forms/Element/Email/ClearCest.php new file mode 100644 index 00000000000..4b707d90ac0 --- /dev/null +++ b/tests/integration/Forms/Element/Email/ClearCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class ClearCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: clear() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailClear(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - clear()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/ConstructCest.php b/tests/integration/Forms/Element/Email/ConstructCest.php new file mode 100644 index 00000000000..e6a178d4e59 --- /dev/null +++ b/tests/integration/Forms/Element/Email/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailConstruct(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/GetAttributeCest.php b/tests/integration/Forms/Element/Email/GetAttributeCest.php new file mode 100644 index 00000000000..bb57c47c466 --- /dev/null +++ b/tests/integration/Forms/Element/Email/GetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class GetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: getAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailGetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - getAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/GetAttributesCest.php b/tests/integration/Forms/Element/Email/GetAttributesCest.php new file mode 100644 index 00000000000..24dffda8ef5 --- /dev/null +++ b/tests/integration/Forms/Element/Email/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: getAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailGetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/GetDefaultCest.php b/tests/integration/Forms/Element/Email/GetDefaultCest.php new file mode 100644 index 00000000000..0b7cd5d736f --- /dev/null +++ b/tests/integration/Forms/Element/Email/GetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class GetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: getDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailGetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - getDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/GetFiltersCest.php b/tests/integration/Forms/Element/Email/GetFiltersCest.php new file mode 100644 index 00000000000..7760bcb5bea --- /dev/null +++ b/tests/integration/Forms/Element/Email/GetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class GetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: getFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailGetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - getFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/GetFormCest.php b/tests/integration/Forms/Element/Email/GetFormCest.php new file mode 100644 index 00000000000..2b14caf7de8 --- /dev/null +++ b/tests/integration/Forms/Element/Email/GetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class GetFormCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: getForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailGetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - getForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/GetLabelCest.php b/tests/integration/Forms/Element/Email/GetLabelCest.php new file mode 100644 index 00000000000..1c27281712c --- /dev/null +++ b/tests/integration/Forms/Element/Email/GetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class GetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: getLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailGetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - getLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/GetMessagesCest.php b/tests/integration/Forms/Element/Email/GetMessagesCest.php new file mode 100644 index 00000000000..b6a478e6010 --- /dev/null +++ b/tests/integration/Forms/Element/Email/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailGetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/GetNameCest.php b/tests/integration/Forms/Element/Email/GetNameCest.php new file mode 100644 index 00000000000..c1795d62f8a --- /dev/null +++ b/tests/integration/Forms/Element/Email/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: getName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailGetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/GetUserOptionCest.php b/tests/integration/Forms/Element/Email/GetUserOptionCest.php new file mode 100644 index 00000000000..3aa463132fb --- /dev/null +++ b/tests/integration/Forms/Element/Email/GetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class GetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: getUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailGetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - getUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/GetUserOptionsCest.php b/tests/integration/Forms/Element/Email/GetUserOptionsCest.php new file mode 100644 index 00000000000..796247a0ac3 --- /dev/null +++ b/tests/integration/Forms/Element/Email/GetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class GetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: getUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailGetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - getUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/GetValidatorsCest.php b/tests/integration/Forms/Element/Email/GetValidatorsCest.php new file mode 100644 index 00000000000..3dea6533bc5 --- /dev/null +++ b/tests/integration/Forms/Element/Email/GetValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class GetValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: getValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailGetValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - getValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/GetValueCest.php b/tests/integration/Forms/Element/Email/GetValueCest.php new file mode 100644 index 00000000000..a28887c534f --- /dev/null +++ b/tests/integration/Forms/Element/Email/GetValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class GetValueCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: getValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailGetValue(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - getValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/HasMessagesCest.php b/tests/integration/Forms/Element/Email/HasMessagesCest.php new file mode 100644 index 00000000000..93f97d0e9ca --- /dev/null +++ b/tests/integration/Forms/Element/Email/HasMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class HasMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: hasMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailHasMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - hasMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/LabelCest.php b/tests/integration/Forms/Element/Email/LabelCest.php new file mode 100644 index 00000000000..247489b80a6 --- /dev/null +++ b/tests/integration/Forms/Element/Email/LabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class LabelCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: label() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - label()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/PrepareAttributesCest.php b/tests/integration/Forms/Element/Email/PrepareAttributesCest.php new file mode 100644 index 00000000000..1dbd064085e --- /dev/null +++ b/tests/integration/Forms/Element/Email/PrepareAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class PrepareAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: prepareAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailPrepareAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - prepareAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/RenderCest.php b/tests/integration/Forms/Element/Email/RenderCest.php new file mode 100644 index 00000000000..b1abfedab9a --- /dev/null +++ b/tests/integration/Forms/Element/Email/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class RenderCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: render() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailRender(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/SetAttributeCest.php b/tests/integration/Forms/Element/Email/SetAttributeCest.php new file mode 100644 index 00000000000..678a2d9549a --- /dev/null +++ b/tests/integration/Forms/Element/Email/SetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class SetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: setAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailSetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - setAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/SetAttributesCest.php b/tests/integration/Forms/Element/Email/SetAttributesCest.php new file mode 100644 index 00000000000..eca063b1133 --- /dev/null +++ b/tests/integration/Forms/Element/Email/SetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class SetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: setAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailSetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - setAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/SetDefaultCest.php b/tests/integration/Forms/Element/Email/SetDefaultCest.php new file mode 100644 index 00000000000..db6ac08a13c --- /dev/null +++ b/tests/integration/Forms/Element/Email/SetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class SetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: setDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailSetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - setDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/SetFiltersCest.php b/tests/integration/Forms/Element/Email/SetFiltersCest.php new file mode 100644 index 00000000000..83b00549f78 --- /dev/null +++ b/tests/integration/Forms/Element/Email/SetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class SetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: setFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailSetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - setFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/SetFormCest.php b/tests/integration/Forms/Element/Email/SetFormCest.php new file mode 100644 index 00000000000..0f56c80628e --- /dev/null +++ b/tests/integration/Forms/Element/Email/SetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class SetFormCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: setForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailSetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - setForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/SetLabelCest.php b/tests/integration/Forms/Element/Email/SetLabelCest.php new file mode 100644 index 00000000000..39a2993a3d0 --- /dev/null +++ b/tests/integration/Forms/Element/Email/SetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class SetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: setLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailSetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - setLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/SetMessagesCest.php b/tests/integration/Forms/Element/Email/SetMessagesCest.php new file mode 100644 index 00000000000..d354f5f1de7 --- /dev/null +++ b/tests/integration/Forms/Element/Email/SetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class SetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: setMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailSetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - setMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/SetNameCest.php b/tests/integration/Forms/Element/Email/SetNameCest.php new file mode 100644 index 00000000000..127f645b918 --- /dev/null +++ b/tests/integration/Forms/Element/Email/SetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class SetNameCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: setName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailSetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - setName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/SetUserOptionCest.php b/tests/integration/Forms/Element/Email/SetUserOptionCest.php new file mode 100644 index 00000000000..9391d587731 --- /dev/null +++ b/tests/integration/Forms/Element/Email/SetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class SetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: setUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailSetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - setUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/SetUserOptionsCest.php b/tests/integration/Forms/Element/Email/SetUserOptionsCest.php new file mode 100644 index 00000000000..c4be4ce66ae --- /dev/null +++ b/tests/integration/Forms/Element/Email/SetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class SetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: setUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailSetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - setUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Email/ToStringCest.php b/tests/integration/Forms/Element/Email/ToStringCest.php new file mode 100644 index 00000000000..322f0872d6e --- /dev/null +++ b/tests/integration/Forms/Element/Email/ToStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Email; + +use IntegrationTester; + +class ToStringCest +{ + /** + * Tests Phalcon\Forms\Element\Email :: __toString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementEmailToString(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Email - __toString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/AddFilterCest.php b/tests/integration/Forms/Element/File/AddFilterCest.php new file mode 100644 index 00000000000..c6047ebdbcb --- /dev/null +++ b/tests/integration/Forms/Element/File/AddFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class AddFilterCest +{ + /** + * Tests Phalcon\Forms\Element\File :: addFilter() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileAddFilter(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - addFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/AddValidatorCest.php b/tests/integration/Forms/Element/File/AddValidatorCest.php new file mode 100644 index 00000000000..3e7e0408724 --- /dev/null +++ b/tests/integration/Forms/Element/File/AddValidatorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class AddValidatorCest +{ + /** + * Tests Phalcon\Forms\Element\File :: addValidator() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileAddValidator(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - addValidator()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/AddValidatorsCest.php b/tests/integration/Forms/Element/File/AddValidatorsCest.php new file mode 100644 index 00000000000..fb662d44f19 --- /dev/null +++ b/tests/integration/Forms/Element/File/AddValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class AddValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\File :: addValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileAddValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - addValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/AppendMessageCest.php b/tests/integration/Forms/Element/File/AppendMessageCest.php new file mode 100644 index 00000000000..893e90c3a43 --- /dev/null +++ b/tests/integration/Forms/Element/File/AppendMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class AppendMessageCest +{ + /** + * Tests Phalcon\Forms\Element\File :: appendMessage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileAppendMessage(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - appendMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/ClearCest.php b/tests/integration/Forms/Element/File/ClearCest.php new file mode 100644 index 00000000000..4f147ffeefe --- /dev/null +++ b/tests/integration/Forms/Element/File/ClearCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class ClearCest +{ + /** + * Tests Phalcon\Forms\Element\File :: clear() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileClear(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - clear()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/ConstructCest.php b/tests/integration/Forms/Element/File/ConstructCest.php new file mode 100644 index 00000000000..7a82f7164f1 --- /dev/null +++ b/tests/integration/Forms/Element/File/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Forms\Element\File :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileConstruct(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/GetAttributeCest.php b/tests/integration/Forms/Element/File/GetAttributeCest.php new file mode 100644 index 00000000000..c257381b912 --- /dev/null +++ b/tests/integration/Forms/Element/File/GetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class GetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\File :: getAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileGetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - getAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/GetAttributesCest.php b/tests/integration/Forms/Element/File/GetAttributesCest.php new file mode 100644 index 00000000000..22112e4ee6b --- /dev/null +++ b/tests/integration/Forms/Element/File/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\File :: getAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileGetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/GetDefaultCest.php b/tests/integration/Forms/Element/File/GetDefaultCest.php new file mode 100644 index 00000000000..cbc5e547d06 --- /dev/null +++ b/tests/integration/Forms/Element/File/GetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class GetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\File :: getDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileGetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - getDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/GetFiltersCest.php b/tests/integration/Forms/Element/File/GetFiltersCest.php new file mode 100644 index 00000000000..378bb20f5ee --- /dev/null +++ b/tests/integration/Forms/Element/File/GetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class GetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\File :: getFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileGetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - getFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/GetFormCest.php b/tests/integration/Forms/Element/File/GetFormCest.php new file mode 100644 index 00000000000..a8fbb47353c --- /dev/null +++ b/tests/integration/Forms/Element/File/GetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class GetFormCest +{ + /** + * Tests Phalcon\Forms\Element\File :: getForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileGetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - getForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/GetLabelCest.php b/tests/integration/Forms/Element/File/GetLabelCest.php new file mode 100644 index 00000000000..7792a46d726 --- /dev/null +++ b/tests/integration/Forms/Element/File/GetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class GetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\File :: getLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileGetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - getLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/GetMessagesCest.php b/tests/integration/Forms/Element/File/GetMessagesCest.php new file mode 100644 index 00000000000..cebe7ef9de8 --- /dev/null +++ b/tests/integration/Forms/Element/File/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\File :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileGetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/GetNameCest.php b/tests/integration/Forms/Element/File/GetNameCest.php new file mode 100644 index 00000000000..ed6f6989ce5 --- /dev/null +++ b/tests/integration/Forms/Element/File/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Forms\Element\File :: getName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileGetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/GetUserOptionCest.php b/tests/integration/Forms/Element/File/GetUserOptionCest.php new file mode 100644 index 00000000000..92b617aa3f4 --- /dev/null +++ b/tests/integration/Forms/Element/File/GetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class GetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\File :: getUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileGetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - getUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/GetUserOptionsCest.php b/tests/integration/Forms/Element/File/GetUserOptionsCest.php new file mode 100644 index 00000000000..94fab121ee5 --- /dev/null +++ b/tests/integration/Forms/Element/File/GetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class GetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\File :: getUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileGetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - getUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/GetValidatorsCest.php b/tests/integration/Forms/Element/File/GetValidatorsCest.php new file mode 100644 index 00000000000..4bc000a3d8d --- /dev/null +++ b/tests/integration/Forms/Element/File/GetValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class GetValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\File :: getValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileGetValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - getValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/GetValueCest.php b/tests/integration/Forms/Element/File/GetValueCest.php new file mode 100644 index 00000000000..527e1a2dcac --- /dev/null +++ b/tests/integration/Forms/Element/File/GetValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class GetValueCest +{ + /** + * Tests Phalcon\Forms\Element\File :: getValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileGetValue(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - getValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/HasMessagesCest.php b/tests/integration/Forms/Element/File/HasMessagesCest.php new file mode 100644 index 00000000000..14ecd88a82b --- /dev/null +++ b/tests/integration/Forms/Element/File/HasMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class HasMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\File :: hasMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileHasMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - hasMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/LabelCest.php b/tests/integration/Forms/Element/File/LabelCest.php new file mode 100644 index 00000000000..ac215f37197 --- /dev/null +++ b/tests/integration/Forms/Element/File/LabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class LabelCest +{ + /** + * Tests Phalcon\Forms\Element\File :: label() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - label()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/PrepareAttributesCest.php b/tests/integration/Forms/Element/File/PrepareAttributesCest.php new file mode 100644 index 00000000000..54a39e5352b --- /dev/null +++ b/tests/integration/Forms/Element/File/PrepareAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class PrepareAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\File :: prepareAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFilePrepareAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - prepareAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/RenderCest.php b/tests/integration/Forms/Element/File/RenderCest.php new file mode 100644 index 00000000000..c98f07a0725 --- /dev/null +++ b/tests/integration/Forms/Element/File/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class RenderCest +{ + /** + * Tests Phalcon\Forms\Element\File :: render() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileRender(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/SetAttributeCest.php b/tests/integration/Forms/Element/File/SetAttributeCest.php new file mode 100644 index 00000000000..def8c35e323 --- /dev/null +++ b/tests/integration/Forms/Element/File/SetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class SetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\File :: setAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileSetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - setAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/SetAttributesCest.php b/tests/integration/Forms/Element/File/SetAttributesCest.php new file mode 100644 index 00000000000..251cd1084c6 --- /dev/null +++ b/tests/integration/Forms/Element/File/SetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class SetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\File :: setAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileSetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - setAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/SetDefaultCest.php b/tests/integration/Forms/Element/File/SetDefaultCest.php new file mode 100644 index 00000000000..fa8cc35efe5 --- /dev/null +++ b/tests/integration/Forms/Element/File/SetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class SetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\File :: setDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileSetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - setDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/SetFiltersCest.php b/tests/integration/Forms/Element/File/SetFiltersCest.php new file mode 100644 index 00000000000..d4188840a8a --- /dev/null +++ b/tests/integration/Forms/Element/File/SetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class SetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\File :: setFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileSetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - setFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/SetFormCest.php b/tests/integration/Forms/Element/File/SetFormCest.php new file mode 100644 index 00000000000..2913645c81c --- /dev/null +++ b/tests/integration/Forms/Element/File/SetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class SetFormCest +{ + /** + * Tests Phalcon\Forms\Element\File :: setForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileSetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - setForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/SetLabelCest.php b/tests/integration/Forms/Element/File/SetLabelCest.php new file mode 100644 index 00000000000..87e49b6459b --- /dev/null +++ b/tests/integration/Forms/Element/File/SetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class SetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\File :: setLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileSetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - setLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/SetMessagesCest.php b/tests/integration/Forms/Element/File/SetMessagesCest.php new file mode 100644 index 00000000000..b243818bf64 --- /dev/null +++ b/tests/integration/Forms/Element/File/SetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class SetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\File :: setMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileSetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - setMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/SetNameCest.php b/tests/integration/Forms/Element/File/SetNameCest.php new file mode 100644 index 00000000000..0b6bd8d32a8 --- /dev/null +++ b/tests/integration/Forms/Element/File/SetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class SetNameCest +{ + /** + * Tests Phalcon\Forms\Element\File :: setName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileSetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - setName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/SetUserOptionCest.php b/tests/integration/Forms/Element/File/SetUserOptionCest.php new file mode 100644 index 00000000000..075cf6c74d0 --- /dev/null +++ b/tests/integration/Forms/Element/File/SetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class SetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\File :: setUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileSetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - setUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/SetUserOptionsCest.php b/tests/integration/Forms/Element/File/SetUserOptionsCest.php new file mode 100644 index 00000000000..78aa06ce421 --- /dev/null +++ b/tests/integration/Forms/Element/File/SetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class SetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\File :: setUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileSetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - setUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/File/ToStringCest.php b/tests/integration/Forms/Element/File/ToStringCest.php new file mode 100644 index 00000000000..e77ae3c3aff --- /dev/null +++ b/tests/integration/Forms/Element/File/ToStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\File; + +use IntegrationTester; + +class ToStringCest +{ + /** + * Tests Phalcon\Forms\Element\File :: __toString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementFileToString(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\File - __toString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/GetAttributeCest.php b/tests/integration/Forms/Element/GetAttributeCest.php new file mode 100644 index 00000000000..cddcc9c4755 --- /dev/null +++ b/tests/integration/Forms/Element/GetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class GetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element :: getAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementGetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - getAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/GetAttributesCest.php b/tests/integration/Forms/Element/GetAttributesCest.php new file mode 100644 index 00000000000..81df5bae069 --- /dev/null +++ b/tests/integration/Forms/Element/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element :: getAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementGetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/GetDefaultCest.php b/tests/integration/Forms/Element/GetDefaultCest.php new file mode 100644 index 00000000000..bb8fac561ca --- /dev/null +++ b/tests/integration/Forms/Element/GetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class GetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element :: getDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementGetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - getDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/GetFiltersCest.php b/tests/integration/Forms/Element/GetFiltersCest.php new file mode 100644 index 00000000000..9d8d69f2b6a --- /dev/null +++ b/tests/integration/Forms/Element/GetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class GetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element :: getFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementGetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - getFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/GetFormCest.php b/tests/integration/Forms/Element/GetFormCest.php new file mode 100644 index 00000000000..c50d6580408 --- /dev/null +++ b/tests/integration/Forms/Element/GetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class GetFormCest +{ + /** + * Tests Phalcon\Forms\Element :: getForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementGetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - getForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/GetLabelCest.php b/tests/integration/Forms/Element/GetLabelCest.php new file mode 100644 index 00000000000..79211f69064 --- /dev/null +++ b/tests/integration/Forms/Element/GetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class GetLabelCest +{ + /** + * Tests Phalcon\Forms\Element :: getLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementGetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - getLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/GetMessagesCest.php b/tests/integration/Forms/Element/GetMessagesCest.php new file mode 100644 index 00000000000..c8d63227dc7 --- /dev/null +++ b/tests/integration/Forms/Element/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementGetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/GetNameCest.php b/tests/integration/Forms/Element/GetNameCest.php new file mode 100644 index 00000000000..7aa3b1a8e63 --- /dev/null +++ b/tests/integration/Forms/Element/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Forms\Element :: getName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementGetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/GetUserOptionCest.php b/tests/integration/Forms/Element/GetUserOptionCest.php new file mode 100644 index 00000000000..4a9342c844b --- /dev/null +++ b/tests/integration/Forms/Element/GetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class GetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element :: getUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementGetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - getUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/GetUserOptionsCest.php b/tests/integration/Forms/Element/GetUserOptionsCest.php new file mode 100644 index 00000000000..4941e888006 --- /dev/null +++ b/tests/integration/Forms/Element/GetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class GetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element :: getUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementGetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - getUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/GetValidatorsCest.php b/tests/integration/Forms/Element/GetValidatorsCest.php new file mode 100644 index 00000000000..0890a93ee96 --- /dev/null +++ b/tests/integration/Forms/Element/GetValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class GetValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element :: getValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementGetValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - getValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/GetValueCest.php b/tests/integration/Forms/Element/GetValueCest.php new file mode 100644 index 00000000000..8cc25e73996 --- /dev/null +++ b/tests/integration/Forms/Element/GetValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class GetValueCest +{ + /** + * Tests Phalcon\Forms\Element :: getValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementGetValue(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - getValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/HasMessagesCest.php b/tests/integration/Forms/Element/HasMessagesCest.php new file mode 100644 index 00000000000..880788ea5c8 --- /dev/null +++ b/tests/integration/Forms/Element/HasMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class HasMessagesCest +{ + /** + * Tests Phalcon\Forms\Element :: hasMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHasMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - hasMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/AddFilterCest.php b/tests/integration/Forms/Element/Hidden/AddFilterCest.php new file mode 100644 index 00000000000..d737ac41c51 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/AddFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class AddFilterCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: addFilter() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenAddFilter(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - addFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/AddValidatorCest.php b/tests/integration/Forms/Element/Hidden/AddValidatorCest.php new file mode 100644 index 00000000000..1ed03a2a331 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/AddValidatorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class AddValidatorCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: addValidator() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenAddValidator(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - addValidator()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/AddValidatorsCest.php b/tests/integration/Forms/Element/Hidden/AddValidatorsCest.php new file mode 100644 index 00000000000..416fdfe928c --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/AddValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class AddValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: addValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenAddValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - addValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/AppendMessageCest.php b/tests/integration/Forms/Element/Hidden/AppendMessageCest.php new file mode 100644 index 00000000000..77db4d14495 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/AppendMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class AppendMessageCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: appendMessage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenAppendMessage(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - appendMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/ClearCest.php b/tests/integration/Forms/Element/Hidden/ClearCest.php new file mode 100644 index 00000000000..13c9b9c52e5 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/ClearCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class ClearCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: clear() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenClear(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - clear()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/ConstructCest.php b/tests/integration/Forms/Element/Hidden/ConstructCest.php new file mode 100644 index 00000000000..ad500defb05 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenConstruct(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/GetAttributeCest.php b/tests/integration/Forms/Element/Hidden/GetAttributeCest.php new file mode 100644 index 00000000000..b93233ecbae --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/GetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class GetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: getAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenGetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - getAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/GetAttributesCest.php b/tests/integration/Forms/Element/Hidden/GetAttributesCest.php new file mode 100644 index 00000000000..d11ed19b146 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: getAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenGetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/GetDefaultCest.php b/tests/integration/Forms/Element/Hidden/GetDefaultCest.php new file mode 100644 index 00000000000..e36fd2354b7 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/GetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class GetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: getDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenGetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - getDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/GetFiltersCest.php b/tests/integration/Forms/Element/Hidden/GetFiltersCest.php new file mode 100644 index 00000000000..58c41e10958 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/GetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class GetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: getFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenGetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - getFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/GetFormCest.php b/tests/integration/Forms/Element/Hidden/GetFormCest.php new file mode 100644 index 00000000000..479b7b4635e --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/GetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class GetFormCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: getForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenGetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - getForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/GetLabelCest.php b/tests/integration/Forms/Element/Hidden/GetLabelCest.php new file mode 100644 index 00000000000..74b5911ca1c --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/GetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class GetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: getLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenGetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - getLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/GetMessagesCest.php b/tests/integration/Forms/Element/Hidden/GetMessagesCest.php new file mode 100644 index 00000000000..ccce2fdd3f0 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenGetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/GetNameCest.php b/tests/integration/Forms/Element/Hidden/GetNameCest.php new file mode 100644 index 00000000000..abb160e8a02 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: getName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenGetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/GetUserOptionCest.php b/tests/integration/Forms/Element/Hidden/GetUserOptionCest.php new file mode 100644 index 00000000000..493092db2e2 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/GetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class GetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: getUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenGetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - getUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/GetUserOptionsCest.php b/tests/integration/Forms/Element/Hidden/GetUserOptionsCest.php new file mode 100644 index 00000000000..a713fb86a77 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/GetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class GetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: getUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenGetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - getUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/GetValidatorsCest.php b/tests/integration/Forms/Element/Hidden/GetValidatorsCest.php new file mode 100644 index 00000000000..294347374cc --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/GetValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class GetValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: getValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenGetValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - getValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/GetValueCest.php b/tests/integration/Forms/Element/Hidden/GetValueCest.php new file mode 100644 index 00000000000..fa25f6dd806 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/GetValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class GetValueCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: getValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenGetValue(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - getValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/HasMessagesCest.php b/tests/integration/Forms/Element/Hidden/HasMessagesCest.php new file mode 100644 index 00000000000..e48ca7ef2e7 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/HasMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class HasMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: hasMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenHasMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - hasMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/LabelCest.php b/tests/integration/Forms/Element/Hidden/LabelCest.php new file mode 100644 index 00000000000..13f1ab3bf18 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/LabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class LabelCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: label() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - label()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/PrepareAttributesCest.php b/tests/integration/Forms/Element/Hidden/PrepareAttributesCest.php new file mode 100644 index 00000000000..94a521172e4 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/PrepareAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class PrepareAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: prepareAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenPrepareAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - prepareAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/RenderCest.php b/tests/integration/Forms/Element/Hidden/RenderCest.php new file mode 100644 index 00000000000..15d6bcdf72b --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class RenderCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: render() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenRender(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/SetAttributeCest.php b/tests/integration/Forms/Element/Hidden/SetAttributeCest.php new file mode 100644 index 00000000000..ac2ed1b38de --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/SetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class SetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: setAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenSetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - setAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/SetAttributesCest.php b/tests/integration/Forms/Element/Hidden/SetAttributesCest.php new file mode 100644 index 00000000000..1c72f525306 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/SetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class SetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: setAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenSetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - setAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/SetDefaultCest.php b/tests/integration/Forms/Element/Hidden/SetDefaultCest.php new file mode 100644 index 00000000000..3c5f0ed50ce --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/SetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class SetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: setDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenSetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - setDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/SetFiltersCest.php b/tests/integration/Forms/Element/Hidden/SetFiltersCest.php new file mode 100644 index 00000000000..a5e087c5509 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/SetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class SetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: setFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenSetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - setFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/SetFormCest.php b/tests/integration/Forms/Element/Hidden/SetFormCest.php new file mode 100644 index 00000000000..f4b06125952 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/SetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class SetFormCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: setForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenSetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - setForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/SetLabelCest.php b/tests/integration/Forms/Element/Hidden/SetLabelCest.php new file mode 100644 index 00000000000..eaffa6c3c5a --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/SetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class SetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: setLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenSetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - setLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/SetMessagesCest.php b/tests/integration/Forms/Element/Hidden/SetMessagesCest.php new file mode 100644 index 00000000000..8a96bfeaad9 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/SetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class SetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: setMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenSetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - setMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/SetNameCest.php b/tests/integration/Forms/Element/Hidden/SetNameCest.php new file mode 100644 index 00000000000..cb7a1b59b08 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/SetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class SetNameCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: setName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenSetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - setName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/SetUserOptionCest.php b/tests/integration/Forms/Element/Hidden/SetUserOptionCest.php new file mode 100644 index 00000000000..dc24a830e42 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/SetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class SetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: setUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenSetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - setUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/SetUserOptionsCest.php b/tests/integration/Forms/Element/Hidden/SetUserOptionsCest.php new file mode 100644 index 00000000000..a25db722087 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/SetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class SetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: setUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenSetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - setUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Hidden/ToStringCest.php b/tests/integration/Forms/Element/Hidden/ToStringCest.php new file mode 100644 index 00000000000..92a485e5f71 --- /dev/null +++ b/tests/integration/Forms/Element/Hidden/ToStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Hidden; + +use IntegrationTester; + +class ToStringCest +{ + /** + * Tests Phalcon\Forms\Element\Hidden :: __toString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementHiddenToString(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Hidden - __toString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/LabelCest.php b/tests/integration/Forms/Element/LabelCest.php new file mode 100644 index 00000000000..6faf71f494b --- /dev/null +++ b/tests/integration/Forms/Element/LabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class LabelCest +{ + /** + * Tests Phalcon\Forms\Element :: label() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - label()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/AddFilterCest.php b/tests/integration/Forms/Element/Numeric/AddFilterCest.php new file mode 100644 index 00000000000..fe593e11af6 --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/AddFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class AddFilterCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: addFilter() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericAddFilter(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - addFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/AddValidatorCest.php b/tests/integration/Forms/Element/Numeric/AddValidatorCest.php new file mode 100644 index 00000000000..89e1fe288a1 --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/AddValidatorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class AddValidatorCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: addValidator() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericAddValidator(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - addValidator()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/AddValidatorsCest.php b/tests/integration/Forms/Element/Numeric/AddValidatorsCest.php new file mode 100644 index 00000000000..72a18e69154 --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/AddValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class AddValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: addValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericAddValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - addValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/AppendMessageCest.php b/tests/integration/Forms/Element/Numeric/AppendMessageCest.php new file mode 100644 index 00000000000..e4bd00f6409 --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/AppendMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class AppendMessageCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: appendMessage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericAppendMessage(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - appendMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/ClearCest.php b/tests/integration/Forms/Element/Numeric/ClearCest.php new file mode 100644 index 00000000000..c7763e7dff7 --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/ClearCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class ClearCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: clear() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericClear(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - clear()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/ConstructCest.php b/tests/integration/Forms/Element/Numeric/ConstructCest.php new file mode 100644 index 00000000000..279f2d4a10b --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericConstruct(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/GetAttributeCest.php b/tests/integration/Forms/Element/Numeric/GetAttributeCest.php new file mode 100644 index 00000000000..61cb0ae89b8 --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/GetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class GetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: getAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericGetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - getAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/GetAttributesCest.php b/tests/integration/Forms/Element/Numeric/GetAttributesCest.php new file mode 100644 index 00000000000..5996fc6863b --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: getAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericGetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/GetDefaultCest.php b/tests/integration/Forms/Element/Numeric/GetDefaultCest.php new file mode 100644 index 00000000000..8e4c72dc0de --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/GetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class GetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: getDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericGetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - getDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/GetFiltersCest.php b/tests/integration/Forms/Element/Numeric/GetFiltersCest.php new file mode 100644 index 00000000000..f1196fa0158 --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/GetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class GetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: getFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericGetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - getFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/GetFormCest.php b/tests/integration/Forms/Element/Numeric/GetFormCest.php new file mode 100644 index 00000000000..6d94e1f6343 --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/GetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class GetFormCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: getForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericGetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - getForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/GetLabelCest.php b/tests/integration/Forms/Element/Numeric/GetLabelCest.php new file mode 100644 index 00000000000..198f8cbac6b --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/GetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class GetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: getLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericGetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - getLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/GetMessagesCest.php b/tests/integration/Forms/Element/Numeric/GetMessagesCest.php new file mode 100644 index 00000000000..12f7cca03f7 --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericGetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/GetNameCest.php b/tests/integration/Forms/Element/Numeric/GetNameCest.php new file mode 100644 index 00000000000..16c701c20e7 --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: getName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericGetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/GetUserOptionCest.php b/tests/integration/Forms/Element/Numeric/GetUserOptionCest.php new file mode 100644 index 00000000000..a8dae825dbf --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/GetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class GetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: getUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericGetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - getUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/GetUserOptionsCest.php b/tests/integration/Forms/Element/Numeric/GetUserOptionsCest.php new file mode 100644 index 00000000000..4b984c1e507 --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/GetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class GetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: getUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericGetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - getUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/GetValidatorsCest.php b/tests/integration/Forms/Element/Numeric/GetValidatorsCest.php new file mode 100644 index 00000000000..b850d566f1e --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/GetValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class GetValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: getValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericGetValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - getValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/GetValueCest.php b/tests/integration/Forms/Element/Numeric/GetValueCest.php new file mode 100644 index 00000000000..3dc88d05c7e --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/GetValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class GetValueCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: getValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericGetValue(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - getValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/HasMessagesCest.php b/tests/integration/Forms/Element/Numeric/HasMessagesCest.php new file mode 100644 index 00000000000..81f3a9ede3a --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/HasMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class HasMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: hasMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericHasMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - hasMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/LabelCest.php b/tests/integration/Forms/Element/Numeric/LabelCest.php new file mode 100644 index 00000000000..f67d07ad402 --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/LabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class LabelCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: label() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - label()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/PrepareAttributesCest.php b/tests/integration/Forms/Element/Numeric/PrepareAttributesCest.php new file mode 100644 index 00000000000..1a6fd3adf7d --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/PrepareAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class PrepareAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: prepareAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericPrepareAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - prepareAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/RenderCest.php b/tests/integration/Forms/Element/Numeric/RenderCest.php new file mode 100644 index 00000000000..6fba5474f66 --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class RenderCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: render() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericRender(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/SetAttributeCest.php b/tests/integration/Forms/Element/Numeric/SetAttributeCest.php new file mode 100644 index 00000000000..dd99ae2e10e --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/SetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class SetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: setAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericSetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - setAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/SetAttributesCest.php b/tests/integration/Forms/Element/Numeric/SetAttributesCest.php new file mode 100644 index 00000000000..22d1221c949 --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/SetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class SetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: setAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericSetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - setAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/SetDefaultCest.php b/tests/integration/Forms/Element/Numeric/SetDefaultCest.php new file mode 100644 index 00000000000..710274c8203 --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/SetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class SetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: setDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericSetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - setDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/SetFiltersCest.php b/tests/integration/Forms/Element/Numeric/SetFiltersCest.php new file mode 100644 index 00000000000..50f0662c67c --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/SetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class SetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: setFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericSetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - setFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/SetFormCest.php b/tests/integration/Forms/Element/Numeric/SetFormCest.php new file mode 100644 index 00000000000..f8a4d13996f --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/SetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class SetFormCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: setForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericSetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - setForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/SetLabelCest.php b/tests/integration/Forms/Element/Numeric/SetLabelCest.php new file mode 100644 index 00000000000..5cb26b7fd6c --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/SetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class SetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: setLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericSetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - setLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/SetMessagesCest.php b/tests/integration/Forms/Element/Numeric/SetMessagesCest.php new file mode 100644 index 00000000000..ca988ebf45e --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/SetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class SetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: setMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericSetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - setMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/SetNameCest.php b/tests/integration/Forms/Element/Numeric/SetNameCest.php new file mode 100644 index 00000000000..a387853084e --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/SetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class SetNameCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: setName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericSetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - setName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/SetUserOptionCest.php b/tests/integration/Forms/Element/Numeric/SetUserOptionCest.php new file mode 100644 index 00000000000..79504d24254 --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/SetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class SetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: setUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericSetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - setUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/SetUserOptionsCest.php b/tests/integration/Forms/Element/Numeric/SetUserOptionsCest.php new file mode 100644 index 00000000000..6f6cafc9f11 --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/SetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class SetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: setUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericSetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - setUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Numeric/ToStringCest.php b/tests/integration/Forms/Element/Numeric/ToStringCest.php new file mode 100644 index 00000000000..3738550b8f5 --- /dev/null +++ b/tests/integration/Forms/Element/Numeric/ToStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Numeric; + +use IntegrationTester; + +class ToStringCest +{ + /** + * Tests Phalcon\Forms\Element\Numeric :: __toString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementNumericToString(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Numeric - __toString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/AddFilterCest.php b/tests/integration/Forms/Element/Password/AddFilterCest.php new file mode 100644 index 00000000000..523879cbe0a --- /dev/null +++ b/tests/integration/Forms/Element/Password/AddFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class AddFilterCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: addFilter() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordAddFilter(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - addFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/AddValidatorCest.php b/tests/integration/Forms/Element/Password/AddValidatorCest.php new file mode 100644 index 00000000000..e96f2d3710a --- /dev/null +++ b/tests/integration/Forms/Element/Password/AddValidatorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class AddValidatorCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: addValidator() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordAddValidator(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - addValidator()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/AddValidatorsCest.php b/tests/integration/Forms/Element/Password/AddValidatorsCest.php new file mode 100644 index 00000000000..e2739c1fa2e --- /dev/null +++ b/tests/integration/Forms/Element/Password/AddValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class AddValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: addValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordAddValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - addValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/AppendMessageCest.php b/tests/integration/Forms/Element/Password/AppendMessageCest.php new file mode 100644 index 00000000000..421b0c8abbb --- /dev/null +++ b/tests/integration/Forms/Element/Password/AppendMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class AppendMessageCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: appendMessage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordAppendMessage(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - appendMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/ClearCest.php b/tests/integration/Forms/Element/Password/ClearCest.php new file mode 100644 index 00000000000..5401e7c6533 --- /dev/null +++ b/tests/integration/Forms/Element/Password/ClearCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class ClearCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: clear() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordClear(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - clear()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/ConstructCest.php b/tests/integration/Forms/Element/Password/ConstructCest.php new file mode 100644 index 00000000000..9f9f1fb7cc1 --- /dev/null +++ b/tests/integration/Forms/Element/Password/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordConstruct(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/GetAttributeCest.php b/tests/integration/Forms/Element/Password/GetAttributeCest.php new file mode 100644 index 00000000000..6ba05254041 --- /dev/null +++ b/tests/integration/Forms/Element/Password/GetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class GetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: getAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordGetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - getAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/GetAttributesCest.php b/tests/integration/Forms/Element/Password/GetAttributesCest.php new file mode 100644 index 00000000000..af531f0d5ea --- /dev/null +++ b/tests/integration/Forms/Element/Password/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: getAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordGetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/GetDefaultCest.php b/tests/integration/Forms/Element/Password/GetDefaultCest.php new file mode 100644 index 00000000000..a641b99645f --- /dev/null +++ b/tests/integration/Forms/Element/Password/GetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class GetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: getDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordGetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - getDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/GetFiltersCest.php b/tests/integration/Forms/Element/Password/GetFiltersCest.php new file mode 100644 index 00000000000..30f9809f724 --- /dev/null +++ b/tests/integration/Forms/Element/Password/GetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class GetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: getFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordGetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - getFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/GetFormCest.php b/tests/integration/Forms/Element/Password/GetFormCest.php new file mode 100644 index 00000000000..bc258939449 --- /dev/null +++ b/tests/integration/Forms/Element/Password/GetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class GetFormCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: getForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordGetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - getForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/GetLabelCest.php b/tests/integration/Forms/Element/Password/GetLabelCest.php new file mode 100644 index 00000000000..ad0d7649d77 --- /dev/null +++ b/tests/integration/Forms/Element/Password/GetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class GetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: getLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordGetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - getLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/GetMessagesCest.php b/tests/integration/Forms/Element/Password/GetMessagesCest.php new file mode 100644 index 00000000000..219aacc2fa4 --- /dev/null +++ b/tests/integration/Forms/Element/Password/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordGetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/GetNameCest.php b/tests/integration/Forms/Element/Password/GetNameCest.php new file mode 100644 index 00000000000..09ee5d95151 --- /dev/null +++ b/tests/integration/Forms/Element/Password/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: getName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordGetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/GetUserOptionCest.php b/tests/integration/Forms/Element/Password/GetUserOptionCest.php new file mode 100644 index 00000000000..c6ad10d9c6b --- /dev/null +++ b/tests/integration/Forms/Element/Password/GetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class GetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: getUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordGetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - getUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/GetUserOptionsCest.php b/tests/integration/Forms/Element/Password/GetUserOptionsCest.php new file mode 100644 index 00000000000..fba08400bd8 --- /dev/null +++ b/tests/integration/Forms/Element/Password/GetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class GetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: getUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordGetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - getUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/GetValidatorsCest.php b/tests/integration/Forms/Element/Password/GetValidatorsCest.php new file mode 100644 index 00000000000..cf2d8c6c59b --- /dev/null +++ b/tests/integration/Forms/Element/Password/GetValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class GetValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: getValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordGetValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - getValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/GetValueCest.php b/tests/integration/Forms/Element/Password/GetValueCest.php new file mode 100644 index 00000000000..b050720e3f4 --- /dev/null +++ b/tests/integration/Forms/Element/Password/GetValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class GetValueCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: getValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordGetValue(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - getValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/HasMessagesCest.php b/tests/integration/Forms/Element/Password/HasMessagesCest.php new file mode 100644 index 00000000000..9856c923556 --- /dev/null +++ b/tests/integration/Forms/Element/Password/HasMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class HasMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: hasMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordHasMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - hasMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/LabelCest.php b/tests/integration/Forms/Element/Password/LabelCest.php new file mode 100644 index 00000000000..7bc910c8203 --- /dev/null +++ b/tests/integration/Forms/Element/Password/LabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class LabelCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: label() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - label()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/PrepareAttributesCest.php b/tests/integration/Forms/Element/Password/PrepareAttributesCest.php new file mode 100644 index 00000000000..d69dc9c87da --- /dev/null +++ b/tests/integration/Forms/Element/Password/PrepareAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class PrepareAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: prepareAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordPrepareAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - prepareAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/RenderCest.php b/tests/integration/Forms/Element/Password/RenderCest.php new file mode 100644 index 00000000000..6c7370de304 --- /dev/null +++ b/tests/integration/Forms/Element/Password/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class RenderCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: render() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordRender(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/SetAttributeCest.php b/tests/integration/Forms/Element/Password/SetAttributeCest.php new file mode 100644 index 00000000000..5ceb84db17f --- /dev/null +++ b/tests/integration/Forms/Element/Password/SetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class SetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: setAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordSetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - setAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/SetAttributesCest.php b/tests/integration/Forms/Element/Password/SetAttributesCest.php new file mode 100644 index 00000000000..44219633978 --- /dev/null +++ b/tests/integration/Forms/Element/Password/SetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class SetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: setAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordSetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - setAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/SetDefaultCest.php b/tests/integration/Forms/Element/Password/SetDefaultCest.php new file mode 100644 index 00000000000..19171085fed --- /dev/null +++ b/tests/integration/Forms/Element/Password/SetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class SetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: setDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordSetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - setDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/SetFiltersCest.php b/tests/integration/Forms/Element/Password/SetFiltersCest.php new file mode 100644 index 00000000000..43fdbaa8b97 --- /dev/null +++ b/tests/integration/Forms/Element/Password/SetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class SetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: setFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordSetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - setFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/SetFormCest.php b/tests/integration/Forms/Element/Password/SetFormCest.php new file mode 100644 index 00000000000..61f3058e116 --- /dev/null +++ b/tests/integration/Forms/Element/Password/SetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class SetFormCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: setForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordSetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - setForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/SetLabelCest.php b/tests/integration/Forms/Element/Password/SetLabelCest.php new file mode 100644 index 00000000000..b0d8a9e8d97 --- /dev/null +++ b/tests/integration/Forms/Element/Password/SetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class SetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: setLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordSetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - setLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/SetMessagesCest.php b/tests/integration/Forms/Element/Password/SetMessagesCest.php new file mode 100644 index 00000000000..9f2ba189356 --- /dev/null +++ b/tests/integration/Forms/Element/Password/SetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class SetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: setMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordSetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - setMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/SetNameCest.php b/tests/integration/Forms/Element/Password/SetNameCest.php new file mode 100644 index 00000000000..a384c9668f8 --- /dev/null +++ b/tests/integration/Forms/Element/Password/SetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class SetNameCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: setName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordSetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - setName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/SetUserOptionCest.php b/tests/integration/Forms/Element/Password/SetUserOptionCest.php new file mode 100644 index 00000000000..1ab264955cb --- /dev/null +++ b/tests/integration/Forms/Element/Password/SetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class SetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: setUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordSetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - setUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/SetUserOptionsCest.php b/tests/integration/Forms/Element/Password/SetUserOptionsCest.php new file mode 100644 index 00000000000..9d4fbfb3f78 --- /dev/null +++ b/tests/integration/Forms/Element/Password/SetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class SetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: setUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordSetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - setUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Password/ToStringCest.php b/tests/integration/Forms/Element/Password/ToStringCest.php new file mode 100644 index 00000000000..b9cdf408aa2 --- /dev/null +++ b/tests/integration/Forms/Element/Password/ToStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Password; + +use IntegrationTester; + +class ToStringCest +{ + /** + * Tests Phalcon\Forms\Element\Password :: __toString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPasswordToString(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Password - __toString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/PrepareAttributesCest.php b/tests/integration/Forms/Element/PrepareAttributesCest.php new file mode 100644 index 00000000000..c98da668c83 --- /dev/null +++ b/tests/integration/Forms/Element/PrepareAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class PrepareAttributesCest +{ + /** + * Tests Phalcon\Forms\Element :: prepareAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementPrepareAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - prepareAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/AddFilterCest.php b/tests/integration/Forms/Element/Radio/AddFilterCest.php new file mode 100644 index 00000000000..ab47d3a270e --- /dev/null +++ b/tests/integration/Forms/Element/Radio/AddFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class AddFilterCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: addFilter() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioAddFilter(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - addFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/AddValidatorCest.php b/tests/integration/Forms/Element/Radio/AddValidatorCest.php new file mode 100644 index 00000000000..41d605d4d55 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/AddValidatorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class AddValidatorCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: addValidator() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioAddValidator(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - addValidator()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/AddValidatorsCest.php b/tests/integration/Forms/Element/Radio/AddValidatorsCest.php new file mode 100644 index 00000000000..ffac9547be8 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/AddValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class AddValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: addValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioAddValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - addValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/AppendMessageCest.php b/tests/integration/Forms/Element/Radio/AppendMessageCest.php new file mode 100644 index 00000000000..113e1372c09 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/AppendMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class AppendMessageCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: appendMessage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioAppendMessage(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - appendMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/ClearCest.php b/tests/integration/Forms/Element/Radio/ClearCest.php new file mode 100644 index 00000000000..fb50dee8b08 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/ClearCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class ClearCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: clear() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioClear(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - clear()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/ConstructCest.php b/tests/integration/Forms/Element/Radio/ConstructCest.php new file mode 100644 index 00000000000..58373bbcc9e --- /dev/null +++ b/tests/integration/Forms/Element/Radio/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioConstruct(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/GetAttributeCest.php b/tests/integration/Forms/Element/Radio/GetAttributeCest.php new file mode 100644 index 00000000000..d2b590e3e6d --- /dev/null +++ b/tests/integration/Forms/Element/Radio/GetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class GetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: getAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioGetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - getAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/GetAttributesCest.php b/tests/integration/Forms/Element/Radio/GetAttributesCest.php new file mode 100644 index 00000000000..39f6ecddec9 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: getAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioGetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/GetDefaultCest.php b/tests/integration/Forms/Element/Radio/GetDefaultCest.php new file mode 100644 index 00000000000..3b88a81fd0d --- /dev/null +++ b/tests/integration/Forms/Element/Radio/GetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class GetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: getDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioGetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - getDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/GetFiltersCest.php b/tests/integration/Forms/Element/Radio/GetFiltersCest.php new file mode 100644 index 00000000000..a9a2f272746 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/GetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class GetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: getFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioGetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - getFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/GetFormCest.php b/tests/integration/Forms/Element/Radio/GetFormCest.php new file mode 100644 index 00000000000..6cac208b696 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/GetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class GetFormCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: getForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioGetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - getForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/GetLabelCest.php b/tests/integration/Forms/Element/Radio/GetLabelCest.php new file mode 100644 index 00000000000..6ae182d86e7 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/GetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class GetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: getLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioGetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - getLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/GetMessagesCest.php b/tests/integration/Forms/Element/Radio/GetMessagesCest.php new file mode 100644 index 00000000000..cba579f7123 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioGetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/GetNameCest.php b/tests/integration/Forms/Element/Radio/GetNameCest.php new file mode 100644 index 00000000000..3d49c574bd6 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: getName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioGetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/GetUserOptionCest.php b/tests/integration/Forms/Element/Radio/GetUserOptionCest.php new file mode 100644 index 00000000000..5ec39c763fc --- /dev/null +++ b/tests/integration/Forms/Element/Radio/GetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class GetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: getUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioGetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - getUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/GetUserOptionsCest.php b/tests/integration/Forms/Element/Radio/GetUserOptionsCest.php new file mode 100644 index 00000000000..b1a646cda9b --- /dev/null +++ b/tests/integration/Forms/Element/Radio/GetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class GetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: getUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioGetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - getUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/GetValidatorsCest.php b/tests/integration/Forms/Element/Radio/GetValidatorsCest.php new file mode 100644 index 00000000000..e80c625916d --- /dev/null +++ b/tests/integration/Forms/Element/Radio/GetValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class GetValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: getValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioGetValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - getValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/GetValueCest.php b/tests/integration/Forms/Element/Radio/GetValueCest.php new file mode 100644 index 00000000000..153822cdab0 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/GetValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class GetValueCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: getValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioGetValue(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - getValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/HasMessagesCest.php b/tests/integration/Forms/Element/Radio/HasMessagesCest.php new file mode 100644 index 00000000000..461f2bb6222 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/HasMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class HasMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: hasMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioHasMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - hasMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/LabelCest.php b/tests/integration/Forms/Element/Radio/LabelCest.php new file mode 100644 index 00000000000..16c3adfa51f --- /dev/null +++ b/tests/integration/Forms/Element/Radio/LabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class LabelCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: label() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - label()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/PrepareAttributesCest.php b/tests/integration/Forms/Element/Radio/PrepareAttributesCest.php new file mode 100644 index 00000000000..da97d4e90d3 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/PrepareAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class PrepareAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: prepareAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioPrepareAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - prepareAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/RenderCest.php b/tests/integration/Forms/Element/Radio/RenderCest.php new file mode 100644 index 00000000000..0f2039d66d4 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class RenderCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: render() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioRender(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/SetAttributeCest.php b/tests/integration/Forms/Element/Radio/SetAttributeCest.php new file mode 100644 index 00000000000..e529252fa02 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/SetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class SetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: setAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioSetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - setAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/SetAttributesCest.php b/tests/integration/Forms/Element/Radio/SetAttributesCest.php new file mode 100644 index 00000000000..08b602aa4e6 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/SetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class SetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: setAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioSetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - setAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/SetDefaultCest.php b/tests/integration/Forms/Element/Radio/SetDefaultCest.php new file mode 100644 index 00000000000..e8f66a456fc --- /dev/null +++ b/tests/integration/Forms/Element/Radio/SetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class SetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: setDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioSetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - setDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/SetFiltersCest.php b/tests/integration/Forms/Element/Radio/SetFiltersCest.php new file mode 100644 index 00000000000..a25d5bf58b6 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/SetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class SetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: setFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioSetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - setFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/SetFormCest.php b/tests/integration/Forms/Element/Radio/SetFormCest.php new file mode 100644 index 00000000000..50f6822c0db --- /dev/null +++ b/tests/integration/Forms/Element/Radio/SetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class SetFormCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: setForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioSetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - setForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/SetLabelCest.php b/tests/integration/Forms/Element/Radio/SetLabelCest.php new file mode 100644 index 00000000000..8f61151e221 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/SetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class SetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: setLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioSetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - setLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/SetMessagesCest.php b/tests/integration/Forms/Element/Radio/SetMessagesCest.php new file mode 100644 index 00000000000..0beee417e32 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/SetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class SetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: setMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioSetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - setMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/SetNameCest.php b/tests/integration/Forms/Element/Radio/SetNameCest.php new file mode 100644 index 00000000000..6861a1a1262 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/SetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class SetNameCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: setName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioSetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - setName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/SetUserOptionCest.php b/tests/integration/Forms/Element/Radio/SetUserOptionCest.php new file mode 100644 index 00000000000..e5483349061 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/SetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class SetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: setUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioSetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - setUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/SetUserOptionsCest.php b/tests/integration/Forms/Element/Radio/SetUserOptionsCest.php new file mode 100644 index 00000000000..8474f031ab8 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/SetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class SetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: setUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioSetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - setUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Radio/ToStringCest.php b/tests/integration/Forms/Element/Radio/ToStringCest.php new file mode 100644 index 00000000000..5c6b72b9310 --- /dev/null +++ b/tests/integration/Forms/Element/Radio/ToStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Radio; + +use IntegrationTester; + +class ToStringCest +{ + /** + * Tests Phalcon\Forms\Element\Radio :: __toString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRadioToString(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Radio - __toString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/RenderCest.php b/tests/integration/Forms/Element/RenderCest.php new file mode 100644 index 00000000000..f6b81fd3805 --- /dev/null +++ b/tests/integration/Forms/Element/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class RenderCest +{ + /** + * Tests Phalcon\Forms\Element :: render() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementRender(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/AddFilterCest.php b/tests/integration/Forms/Element/Select/AddFilterCest.php new file mode 100644 index 00000000000..6838c7ea357 --- /dev/null +++ b/tests/integration/Forms/Element/Select/AddFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class AddFilterCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: addFilter() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectAddFilter(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - addFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/AddOptionCest.php b/tests/integration/Forms/Element/Select/AddOptionCest.php new file mode 100644 index 00000000000..d3b8baa9402 --- /dev/null +++ b/tests/integration/Forms/Element/Select/AddOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class AddOptionCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: addOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectAddOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - addOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/AddValidatorCest.php b/tests/integration/Forms/Element/Select/AddValidatorCest.php new file mode 100644 index 00000000000..c8f0a528629 --- /dev/null +++ b/tests/integration/Forms/Element/Select/AddValidatorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class AddValidatorCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: addValidator() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectAddValidator(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - addValidator()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/AddValidatorsCest.php b/tests/integration/Forms/Element/Select/AddValidatorsCest.php new file mode 100644 index 00000000000..1cc914db18d --- /dev/null +++ b/tests/integration/Forms/Element/Select/AddValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class AddValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: addValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectAddValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - addValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/AppendMessageCest.php b/tests/integration/Forms/Element/Select/AppendMessageCest.php new file mode 100644 index 00000000000..feda546cfbc --- /dev/null +++ b/tests/integration/Forms/Element/Select/AppendMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class AppendMessageCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: appendMessage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectAppendMessage(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - appendMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/ClearCest.php b/tests/integration/Forms/Element/Select/ClearCest.php new file mode 100644 index 00000000000..bf9327a7631 --- /dev/null +++ b/tests/integration/Forms/Element/Select/ClearCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class ClearCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: clear() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectClear(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - clear()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/ConstructCest.php b/tests/integration/Forms/Element/Select/ConstructCest.php new file mode 100644 index 00000000000..ec7a7872790 --- /dev/null +++ b/tests/integration/Forms/Element/Select/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectConstruct(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/GetAttributeCest.php b/tests/integration/Forms/Element/Select/GetAttributeCest.php new file mode 100644 index 00000000000..be76bfa3f2b --- /dev/null +++ b/tests/integration/Forms/Element/Select/GetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class GetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: getAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectGetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - getAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/GetAttributesCest.php b/tests/integration/Forms/Element/Select/GetAttributesCest.php new file mode 100644 index 00000000000..557501c6df6 --- /dev/null +++ b/tests/integration/Forms/Element/Select/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: getAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectGetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/GetDefaultCest.php b/tests/integration/Forms/Element/Select/GetDefaultCest.php new file mode 100644 index 00000000000..53dcdf28120 --- /dev/null +++ b/tests/integration/Forms/Element/Select/GetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class GetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: getDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectGetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - getDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/GetFiltersCest.php b/tests/integration/Forms/Element/Select/GetFiltersCest.php new file mode 100644 index 00000000000..1b7cc33869f --- /dev/null +++ b/tests/integration/Forms/Element/Select/GetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class GetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: getFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectGetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - getFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/GetFormCest.php b/tests/integration/Forms/Element/Select/GetFormCest.php new file mode 100644 index 00000000000..991fab324fa --- /dev/null +++ b/tests/integration/Forms/Element/Select/GetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class GetFormCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: getForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectGetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - getForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/GetLabelCest.php b/tests/integration/Forms/Element/Select/GetLabelCest.php new file mode 100644 index 00000000000..cc87bbc034d --- /dev/null +++ b/tests/integration/Forms/Element/Select/GetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class GetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: getLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectGetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - getLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/GetMessagesCest.php b/tests/integration/Forms/Element/Select/GetMessagesCest.php new file mode 100644 index 00000000000..3c7c1c3281b --- /dev/null +++ b/tests/integration/Forms/Element/Select/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectGetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/GetNameCest.php b/tests/integration/Forms/Element/Select/GetNameCest.php new file mode 100644 index 00000000000..988820279bc --- /dev/null +++ b/tests/integration/Forms/Element/Select/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: getName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectGetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/GetOptionsCest.php b/tests/integration/Forms/Element/Select/GetOptionsCest.php new file mode 100644 index 00000000000..3d4b5e1f575 --- /dev/null +++ b/tests/integration/Forms/Element/Select/GetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class GetOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: getOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectGetOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - getOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/GetUserOptionCest.php b/tests/integration/Forms/Element/Select/GetUserOptionCest.php new file mode 100644 index 00000000000..ff83405801a --- /dev/null +++ b/tests/integration/Forms/Element/Select/GetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class GetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: getUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectGetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - getUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/GetUserOptionsCest.php b/tests/integration/Forms/Element/Select/GetUserOptionsCest.php new file mode 100644 index 00000000000..b821978aacc --- /dev/null +++ b/tests/integration/Forms/Element/Select/GetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class GetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: getUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectGetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - getUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/GetValidatorsCest.php b/tests/integration/Forms/Element/Select/GetValidatorsCest.php new file mode 100644 index 00000000000..9cd0c621a3e --- /dev/null +++ b/tests/integration/Forms/Element/Select/GetValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class GetValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: getValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectGetValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - getValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/GetValueCest.php b/tests/integration/Forms/Element/Select/GetValueCest.php new file mode 100644 index 00000000000..72aa6cf5b9b --- /dev/null +++ b/tests/integration/Forms/Element/Select/GetValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class GetValueCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: getValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectGetValue(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - getValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/HasMessagesCest.php b/tests/integration/Forms/Element/Select/HasMessagesCest.php new file mode 100644 index 00000000000..ccb322d9531 --- /dev/null +++ b/tests/integration/Forms/Element/Select/HasMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class HasMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: hasMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectHasMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - hasMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/LabelCest.php b/tests/integration/Forms/Element/Select/LabelCest.php new file mode 100644 index 00000000000..d0048b260cd --- /dev/null +++ b/tests/integration/Forms/Element/Select/LabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class LabelCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: label() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - label()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/PrepareAttributesCest.php b/tests/integration/Forms/Element/Select/PrepareAttributesCest.php new file mode 100644 index 00000000000..ec9f6023170 --- /dev/null +++ b/tests/integration/Forms/Element/Select/PrepareAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class PrepareAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: prepareAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectPrepareAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - prepareAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/RenderCest.php b/tests/integration/Forms/Element/Select/RenderCest.php new file mode 100644 index 00000000000..5bc7d1323e3 --- /dev/null +++ b/tests/integration/Forms/Element/Select/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class RenderCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: render() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectRender(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/SetAttributeCest.php b/tests/integration/Forms/Element/Select/SetAttributeCest.php new file mode 100644 index 00000000000..73c7c2e0d00 --- /dev/null +++ b/tests/integration/Forms/Element/Select/SetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class SetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: setAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectSetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - setAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/SetAttributesCest.php b/tests/integration/Forms/Element/Select/SetAttributesCest.php new file mode 100644 index 00000000000..84cb62a10ed --- /dev/null +++ b/tests/integration/Forms/Element/Select/SetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class SetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: setAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectSetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - setAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/SetDefaultCest.php b/tests/integration/Forms/Element/Select/SetDefaultCest.php new file mode 100644 index 00000000000..fca2cfec770 --- /dev/null +++ b/tests/integration/Forms/Element/Select/SetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class SetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: setDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectSetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - setDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/SetFiltersCest.php b/tests/integration/Forms/Element/Select/SetFiltersCest.php new file mode 100644 index 00000000000..9c3e76d0499 --- /dev/null +++ b/tests/integration/Forms/Element/Select/SetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class SetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: setFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectSetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - setFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/SetFormCest.php b/tests/integration/Forms/Element/Select/SetFormCest.php new file mode 100644 index 00000000000..e4bdd63c1ce --- /dev/null +++ b/tests/integration/Forms/Element/Select/SetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class SetFormCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: setForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectSetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - setForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/SetLabelCest.php b/tests/integration/Forms/Element/Select/SetLabelCest.php new file mode 100644 index 00000000000..5c7ffb7ea17 --- /dev/null +++ b/tests/integration/Forms/Element/Select/SetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class SetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: setLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectSetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - setLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/SetMessagesCest.php b/tests/integration/Forms/Element/Select/SetMessagesCest.php new file mode 100644 index 00000000000..e4d59f19e58 --- /dev/null +++ b/tests/integration/Forms/Element/Select/SetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class SetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: setMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectSetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - setMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/SetNameCest.php b/tests/integration/Forms/Element/Select/SetNameCest.php new file mode 100644 index 00000000000..f745f5111ea --- /dev/null +++ b/tests/integration/Forms/Element/Select/SetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class SetNameCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: setName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectSetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - setName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/SetOptionsCest.php b/tests/integration/Forms/Element/Select/SetOptionsCest.php new file mode 100644 index 00000000000..5b4932cb8f5 --- /dev/null +++ b/tests/integration/Forms/Element/Select/SetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class SetOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: setOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectSetOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - setOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/SetUserOptionCest.php b/tests/integration/Forms/Element/Select/SetUserOptionCest.php new file mode 100644 index 00000000000..c659ac54083 --- /dev/null +++ b/tests/integration/Forms/Element/Select/SetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class SetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: setUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectSetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - setUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/SetUserOptionsCest.php b/tests/integration/Forms/Element/Select/SetUserOptionsCest.php new file mode 100644 index 00000000000..fae7a26048d --- /dev/null +++ b/tests/integration/Forms/Element/Select/SetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class SetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: setUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectSetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - setUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Select/ToStringCest.php b/tests/integration/Forms/Element/Select/ToStringCest.php new file mode 100644 index 00000000000..6d9c80ecef4 --- /dev/null +++ b/tests/integration/Forms/Element/Select/ToStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Select; + +use IntegrationTester; + +class ToStringCest +{ + /** + * Tests Phalcon\Forms\Element\Select :: __toString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSelectToString(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Select - __toString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/SetAttributeCest.php b/tests/integration/Forms/Element/SetAttributeCest.php new file mode 100644 index 00000000000..52c17310756 --- /dev/null +++ b/tests/integration/Forms/Element/SetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class SetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element :: setAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - setAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/SetAttributesCest.php b/tests/integration/Forms/Element/SetAttributesCest.php new file mode 100644 index 00000000000..37d355c8346 --- /dev/null +++ b/tests/integration/Forms/Element/SetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class SetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element :: setAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - setAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/SetDefaultCest.php b/tests/integration/Forms/Element/SetDefaultCest.php new file mode 100644 index 00000000000..1e3081ace87 --- /dev/null +++ b/tests/integration/Forms/Element/SetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class SetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element :: setDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - setDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/SetFiltersCest.php b/tests/integration/Forms/Element/SetFiltersCest.php new file mode 100644 index 00000000000..59ad59c0e8d --- /dev/null +++ b/tests/integration/Forms/Element/SetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class SetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element :: setFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - setFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/SetFormCest.php b/tests/integration/Forms/Element/SetFormCest.php new file mode 100644 index 00000000000..a15593c764e --- /dev/null +++ b/tests/integration/Forms/Element/SetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class SetFormCest +{ + /** + * Tests Phalcon\Forms\Element :: setForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - setForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/SetLabelCest.php b/tests/integration/Forms/Element/SetLabelCest.php new file mode 100644 index 00000000000..28d14a478b1 --- /dev/null +++ b/tests/integration/Forms/Element/SetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class SetLabelCest +{ + /** + * Tests Phalcon\Forms\Element :: setLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - setLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/SetMessagesCest.php b/tests/integration/Forms/Element/SetMessagesCest.php new file mode 100644 index 00000000000..54e80d876a9 --- /dev/null +++ b/tests/integration/Forms/Element/SetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class SetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element :: setMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - setMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/SetNameCest.php b/tests/integration/Forms/Element/SetNameCest.php new file mode 100644 index 00000000000..16d85501ee7 --- /dev/null +++ b/tests/integration/Forms/Element/SetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class SetNameCest +{ + /** + * Tests Phalcon\Forms\Element :: setName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - setName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/SetUserOptionCest.php b/tests/integration/Forms/Element/SetUserOptionCest.php new file mode 100644 index 00000000000..722d52956d7 --- /dev/null +++ b/tests/integration/Forms/Element/SetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class SetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element :: setUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - setUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/SetUserOptionsCest.php b/tests/integration/Forms/Element/SetUserOptionsCest.php new file mode 100644 index 00000000000..a2eee70d98a --- /dev/null +++ b/tests/integration/Forms/Element/SetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class SetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element :: setUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - setUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/AddFilterCest.php b/tests/integration/Forms/Element/Submit/AddFilterCest.php new file mode 100644 index 00000000000..680af41cb6d --- /dev/null +++ b/tests/integration/Forms/Element/Submit/AddFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class AddFilterCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: addFilter() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitAddFilter(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - addFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/AddValidatorCest.php b/tests/integration/Forms/Element/Submit/AddValidatorCest.php new file mode 100644 index 00000000000..d27dd51535d --- /dev/null +++ b/tests/integration/Forms/Element/Submit/AddValidatorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class AddValidatorCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: addValidator() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitAddValidator(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - addValidator()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/AddValidatorsCest.php b/tests/integration/Forms/Element/Submit/AddValidatorsCest.php new file mode 100644 index 00000000000..59a6f29644e --- /dev/null +++ b/tests/integration/Forms/Element/Submit/AddValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class AddValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: addValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitAddValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - addValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/AppendMessageCest.php b/tests/integration/Forms/Element/Submit/AppendMessageCest.php new file mode 100644 index 00000000000..0fa07216f99 --- /dev/null +++ b/tests/integration/Forms/Element/Submit/AppendMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class AppendMessageCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: appendMessage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitAppendMessage(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - appendMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/ClearCest.php b/tests/integration/Forms/Element/Submit/ClearCest.php new file mode 100644 index 00000000000..5fa7fb2c233 --- /dev/null +++ b/tests/integration/Forms/Element/Submit/ClearCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class ClearCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: clear() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitClear(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - clear()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/ConstructCest.php b/tests/integration/Forms/Element/Submit/ConstructCest.php new file mode 100644 index 00000000000..bb1e56f5f15 --- /dev/null +++ b/tests/integration/Forms/Element/Submit/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitConstruct(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/GetAttributeCest.php b/tests/integration/Forms/Element/Submit/GetAttributeCest.php new file mode 100644 index 00000000000..c0b9e36404c --- /dev/null +++ b/tests/integration/Forms/Element/Submit/GetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class GetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: getAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitGetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - getAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/GetAttributesCest.php b/tests/integration/Forms/Element/Submit/GetAttributesCest.php new file mode 100644 index 00000000000..0ecdccbbcbd --- /dev/null +++ b/tests/integration/Forms/Element/Submit/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: getAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitGetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/GetDefaultCest.php b/tests/integration/Forms/Element/Submit/GetDefaultCest.php new file mode 100644 index 00000000000..37d8dd55514 --- /dev/null +++ b/tests/integration/Forms/Element/Submit/GetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class GetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: getDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitGetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - getDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/GetFiltersCest.php b/tests/integration/Forms/Element/Submit/GetFiltersCest.php new file mode 100644 index 00000000000..9fb187a5ae4 --- /dev/null +++ b/tests/integration/Forms/Element/Submit/GetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class GetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: getFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitGetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - getFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/GetFormCest.php b/tests/integration/Forms/Element/Submit/GetFormCest.php new file mode 100644 index 00000000000..1cf9a2d10a0 --- /dev/null +++ b/tests/integration/Forms/Element/Submit/GetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class GetFormCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: getForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitGetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - getForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/GetLabelCest.php b/tests/integration/Forms/Element/Submit/GetLabelCest.php new file mode 100644 index 00000000000..d2d34571c16 --- /dev/null +++ b/tests/integration/Forms/Element/Submit/GetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class GetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: getLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitGetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - getLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/GetMessagesCest.php b/tests/integration/Forms/Element/Submit/GetMessagesCest.php new file mode 100644 index 00000000000..05725e3615c --- /dev/null +++ b/tests/integration/Forms/Element/Submit/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitGetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/GetNameCest.php b/tests/integration/Forms/Element/Submit/GetNameCest.php new file mode 100644 index 00000000000..06621ee7352 --- /dev/null +++ b/tests/integration/Forms/Element/Submit/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: getName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitGetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/GetUserOptionCest.php b/tests/integration/Forms/Element/Submit/GetUserOptionCest.php new file mode 100644 index 00000000000..777d3f31287 --- /dev/null +++ b/tests/integration/Forms/Element/Submit/GetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class GetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: getUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitGetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - getUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/GetUserOptionsCest.php b/tests/integration/Forms/Element/Submit/GetUserOptionsCest.php new file mode 100644 index 00000000000..0cea297f4e6 --- /dev/null +++ b/tests/integration/Forms/Element/Submit/GetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class GetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: getUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitGetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - getUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/GetValidatorsCest.php b/tests/integration/Forms/Element/Submit/GetValidatorsCest.php new file mode 100644 index 00000000000..3c6290d1310 --- /dev/null +++ b/tests/integration/Forms/Element/Submit/GetValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class GetValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: getValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitGetValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - getValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/GetValueCest.php b/tests/integration/Forms/Element/Submit/GetValueCest.php new file mode 100644 index 00000000000..f814a070e9f --- /dev/null +++ b/tests/integration/Forms/Element/Submit/GetValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class GetValueCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: getValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitGetValue(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - getValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/HasMessagesCest.php b/tests/integration/Forms/Element/Submit/HasMessagesCest.php new file mode 100644 index 00000000000..38de514495d --- /dev/null +++ b/tests/integration/Forms/Element/Submit/HasMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class HasMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: hasMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitHasMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - hasMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/LabelCest.php b/tests/integration/Forms/Element/Submit/LabelCest.php new file mode 100644 index 00000000000..b89bb09c616 --- /dev/null +++ b/tests/integration/Forms/Element/Submit/LabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class LabelCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: label() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - label()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/PrepareAttributesCest.php b/tests/integration/Forms/Element/Submit/PrepareAttributesCest.php new file mode 100644 index 00000000000..e3305213d78 --- /dev/null +++ b/tests/integration/Forms/Element/Submit/PrepareAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class PrepareAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: prepareAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitPrepareAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - prepareAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/RenderCest.php b/tests/integration/Forms/Element/Submit/RenderCest.php new file mode 100644 index 00000000000..768c599746b --- /dev/null +++ b/tests/integration/Forms/Element/Submit/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class RenderCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: render() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitRender(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/SetAttributeCest.php b/tests/integration/Forms/Element/Submit/SetAttributeCest.php new file mode 100644 index 00000000000..7d8b01be830 --- /dev/null +++ b/tests/integration/Forms/Element/Submit/SetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class SetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: setAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitSetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - setAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/SetAttributesCest.php b/tests/integration/Forms/Element/Submit/SetAttributesCest.php new file mode 100644 index 00000000000..e2f894eadfc --- /dev/null +++ b/tests/integration/Forms/Element/Submit/SetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class SetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: setAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitSetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - setAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/SetDefaultCest.php b/tests/integration/Forms/Element/Submit/SetDefaultCest.php new file mode 100644 index 00000000000..b86bed922a4 --- /dev/null +++ b/tests/integration/Forms/Element/Submit/SetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class SetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: setDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitSetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - setDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/SetFiltersCest.php b/tests/integration/Forms/Element/Submit/SetFiltersCest.php new file mode 100644 index 00000000000..0828bbca4ae --- /dev/null +++ b/tests/integration/Forms/Element/Submit/SetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class SetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: setFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitSetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - setFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/SetFormCest.php b/tests/integration/Forms/Element/Submit/SetFormCest.php new file mode 100644 index 00000000000..100a0139f71 --- /dev/null +++ b/tests/integration/Forms/Element/Submit/SetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class SetFormCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: setForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitSetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - setForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/SetLabelCest.php b/tests/integration/Forms/Element/Submit/SetLabelCest.php new file mode 100644 index 00000000000..b9fa1d0276d --- /dev/null +++ b/tests/integration/Forms/Element/Submit/SetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class SetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: setLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitSetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - setLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/SetMessagesCest.php b/tests/integration/Forms/Element/Submit/SetMessagesCest.php new file mode 100644 index 00000000000..9651ae96bb4 --- /dev/null +++ b/tests/integration/Forms/Element/Submit/SetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class SetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: setMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitSetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - setMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/SetNameCest.php b/tests/integration/Forms/Element/Submit/SetNameCest.php new file mode 100644 index 00000000000..3fe73f8302a --- /dev/null +++ b/tests/integration/Forms/Element/Submit/SetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class SetNameCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: setName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitSetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - setName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/SetUserOptionCest.php b/tests/integration/Forms/Element/Submit/SetUserOptionCest.php new file mode 100644 index 00000000000..39486af1618 --- /dev/null +++ b/tests/integration/Forms/Element/Submit/SetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class SetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: setUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitSetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - setUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/SetUserOptionsCest.php b/tests/integration/Forms/Element/Submit/SetUserOptionsCest.php new file mode 100644 index 00000000000..8b03f1531e7 --- /dev/null +++ b/tests/integration/Forms/Element/Submit/SetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class SetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: setUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitSetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - setUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Submit/ToStringCest.php b/tests/integration/Forms/Element/Submit/ToStringCest.php new file mode 100644 index 00000000000..82843ea92b4 --- /dev/null +++ b/tests/integration/Forms/Element/Submit/ToStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Submit; + +use IntegrationTester; + +class ToStringCest +{ + /** + * Tests Phalcon\Forms\Element\Submit :: __toString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementSubmitToString(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Submit - __toString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/AddFilterCest.php b/tests/integration/Forms/Element/Text/AddFilterCest.php new file mode 100644 index 00000000000..9a92847c3a8 --- /dev/null +++ b/tests/integration/Forms/Element/Text/AddFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class AddFilterCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: addFilter() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextAddFilter(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - addFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/AddValidatorCest.php b/tests/integration/Forms/Element/Text/AddValidatorCest.php new file mode 100644 index 00000000000..d4138b9b7d6 --- /dev/null +++ b/tests/integration/Forms/Element/Text/AddValidatorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class AddValidatorCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: addValidator() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextAddValidator(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - addValidator()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/AddValidatorsCest.php b/tests/integration/Forms/Element/Text/AddValidatorsCest.php new file mode 100644 index 00000000000..226e04528f9 --- /dev/null +++ b/tests/integration/Forms/Element/Text/AddValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class AddValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: addValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextAddValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - addValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/AppendMessageCest.php b/tests/integration/Forms/Element/Text/AppendMessageCest.php new file mode 100644 index 00000000000..c2dc198def8 --- /dev/null +++ b/tests/integration/Forms/Element/Text/AppendMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class AppendMessageCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: appendMessage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextAppendMessage(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - appendMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/ClearCest.php b/tests/integration/Forms/Element/Text/ClearCest.php new file mode 100644 index 00000000000..75e35ff0a66 --- /dev/null +++ b/tests/integration/Forms/Element/Text/ClearCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class ClearCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: clear() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextClear(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - clear()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/ConstructCest.php b/tests/integration/Forms/Element/Text/ConstructCest.php new file mode 100644 index 00000000000..ed8b89fdc98 --- /dev/null +++ b/tests/integration/Forms/Element/Text/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextConstruct(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/GetAttributeCest.php b/tests/integration/Forms/Element/Text/GetAttributeCest.php new file mode 100644 index 00000000000..ff8c9312041 --- /dev/null +++ b/tests/integration/Forms/Element/Text/GetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class GetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: getAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextGetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - getAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/GetAttributesCest.php b/tests/integration/Forms/Element/Text/GetAttributesCest.php new file mode 100644 index 00000000000..40e157848f1 --- /dev/null +++ b/tests/integration/Forms/Element/Text/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: getAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextGetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/GetDefaultCest.php b/tests/integration/Forms/Element/Text/GetDefaultCest.php new file mode 100644 index 00000000000..025c7015f29 --- /dev/null +++ b/tests/integration/Forms/Element/Text/GetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class GetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: getDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextGetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - getDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/GetFiltersCest.php b/tests/integration/Forms/Element/Text/GetFiltersCest.php new file mode 100644 index 00000000000..cb5b39b85f8 --- /dev/null +++ b/tests/integration/Forms/Element/Text/GetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class GetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: getFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextGetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - getFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/GetFormCest.php b/tests/integration/Forms/Element/Text/GetFormCest.php new file mode 100644 index 00000000000..2000ada3c90 --- /dev/null +++ b/tests/integration/Forms/Element/Text/GetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class GetFormCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: getForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextGetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - getForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/GetLabelCest.php b/tests/integration/Forms/Element/Text/GetLabelCest.php new file mode 100644 index 00000000000..064b489144f --- /dev/null +++ b/tests/integration/Forms/Element/Text/GetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class GetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: getLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextGetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - getLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/GetMessagesCest.php b/tests/integration/Forms/Element/Text/GetMessagesCest.php new file mode 100644 index 00000000000..635a9d44e99 --- /dev/null +++ b/tests/integration/Forms/Element/Text/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextGetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/GetNameCest.php b/tests/integration/Forms/Element/Text/GetNameCest.php new file mode 100644 index 00000000000..16d410a2298 --- /dev/null +++ b/tests/integration/Forms/Element/Text/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: getName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextGetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/GetUserOptionCest.php b/tests/integration/Forms/Element/Text/GetUserOptionCest.php new file mode 100644 index 00000000000..5487e78c951 --- /dev/null +++ b/tests/integration/Forms/Element/Text/GetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class GetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: getUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextGetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - getUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/GetUserOptionsCest.php b/tests/integration/Forms/Element/Text/GetUserOptionsCest.php new file mode 100644 index 00000000000..1a79978ffcb --- /dev/null +++ b/tests/integration/Forms/Element/Text/GetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class GetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: getUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextGetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - getUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/GetValidatorsCest.php b/tests/integration/Forms/Element/Text/GetValidatorsCest.php new file mode 100644 index 00000000000..1fb3db0bb05 --- /dev/null +++ b/tests/integration/Forms/Element/Text/GetValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class GetValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: getValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextGetValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - getValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/GetValueCest.php b/tests/integration/Forms/Element/Text/GetValueCest.php new file mode 100644 index 00000000000..c0e5b4e4623 --- /dev/null +++ b/tests/integration/Forms/Element/Text/GetValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class GetValueCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: getValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextGetValue(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - getValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/HasMessagesCest.php b/tests/integration/Forms/Element/Text/HasMessagesCest.php new file mode 100644 index 00000000000..070954448ea --- /dev/null +++ b/tests/integration/Forms/Element/Text/HasMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class HasMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: hasMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextHasMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - hasMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/LabelCest.php b/tests/integration/Forms/Element/Text/LabelCest.php new file mode 100644 index 00000000000..4d0588d403c --- /dev/null +++ b/tests/integration/Forms/Element/Text/LabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class LabelCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: label() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - label()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/PrepareAttributesCest.php b/tests/integration/Forms/Element/Text/PrepareAttributesCest.php new file mode 100644 index 00000000000..a9d807d29bc --- /dev/null +++ b/tests/integration/Forms/Element/Text/PrepareAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class PrepareAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: prepareAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextPrepareAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - prepareAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/RenderCest.php b/tests/integration/Forms/Element/Text/RenderCest.php new file mode 100644 index 00000000000..dd760101c35 --- /dev/null +++ b/tests/integration/Forms/Element/Text/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class RenderCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: render() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextRender(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/SetAttributeCest.php b/tests/integration/Forms/Element/Text/SetAttributeCest.php new file mode 100644 index 00000000000..a49e11cc96f --- /dev/null +++ b/tests/integration/Forms/Element/Text/SetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class SetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: setAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextSetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - setAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/SetAttributesCest.php b/tests/integration/Forms/Element/Text/SetAttributesCest.php new file mode 100644 index 00000000000..adb97d1b2c0 --- /dev/null +++ b/tests/integration/Forms/Element/Text/SetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class SetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: setAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextSetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - setAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/SetDefaultCest.php b/tests/integration/Forms/Element/Text/SetDefaultCest.php new file mode 100644 index 00000000000..f62769ac93a --- /dev/null +++ b/tests/integration/Forms/Element/Text/SetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class SetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: setDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextSetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - setDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/SetFiltersCest.php b/tests/integration/Forms/Element/Text/SetFiltersCest.php new file mode 100644 index 00000000000..98390557ce0 --- /dev/null +++ b/tests/integration/Forms/Element/Text/SetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class SetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: setFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextSetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - setFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/SetFormCest.php b/tests/integration/Forms/Element/Text/SetFormCest.php new file mode 100644 index 00000000000..f7106c98aca --- /dev/null +++ b/tests/integration/Forms/Element/Text/SetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class SetFormCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: setForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextSetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - setForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/SetLabelCest.php b/tests/integration/Forms/Element/Text/SetLabelCest.php new file mode 100644 index 00000000000..e8aefcc3d4c --- /dev/null +++ b/tests/integration/Forms/Element/Text/SetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class SetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: setLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextSetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - setLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/SetMessagesCest.php b/tests/integration/Forms/Element/Text/SetMessagesCest.php new file mode 100644 index 00000000000..ec15fdb2e39 --- /dev/null +++ b/tests/integration/Forms/Element/Text/SetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class SetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: setMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextSetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - setMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/SetNameCest.php b/tests/integration/Forms/Element/Text/SetNameCest.php new file mode 100644 index 00000000000..6164fc6b818 --- /dev/null +++ b/tests/integration/Forms/Element/Text/SetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class SetNameCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: setName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextSetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - setName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/SetUserOptionCest.php b/tests/integration/Forms/Element/Text/SetUserOptionCest.php new file mode 100644 index 00000000000..d83ae06c52a --- /dev/null +++ b/tests/integration/Forms/Element/Text/SetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class SetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: setUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextSetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - setUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/SetUserOptionsCest.php b/tests/integration/Forms/Element/Text/SetUserOptionsCest.php new file mode 100644 index 00000000000..0f98aebfb97 --- /dev/null +++ b/tests/integration/Forms/Element/Text/SetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class SetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: setUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextSetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - setUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/Text/ToStringCest.php b/tests/integration/Forms/Element/Text/ToStringCest.php new file mode 100644 index 00000000000..61ae48b82c6 --- /dev/null +++ b/tests/integration/Forms/Element/Text/ToStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\Text; + +use IntegrationTester; + +class ToStringCest +{ + /** + * Tests Phalcon\Forms\Element\Text :: __toString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextToString(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\Text - __toString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/AddFilterCest.php b/tests/integration/Forms/Element/TextArea/AddFilterCest.php new file mode 100644 index 00000000000..ba13b5edd8e --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/AddFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class AddFilterCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: addFilter() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaAddFilter(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - addFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/AddValidatorCest.php b/tests/integration/Forms/Element/TextArea/AddValidatorCest.php new file mode 100644 index 00000000000..33aa97be214 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/AddValidatorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class AddValidatorCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: addValidator() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaAddValidator(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - addValidator()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/AddValidatorsCest.php b/tests/integration/Forms/Element/TextArea/AddValidatorsCest.php new file mode 100644 index 00000000000..6a3be88d6af --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/AddValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class AddValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: addValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaAddValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - addValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/AppendMessageCest.php b/tests/integration/Forms/Element/TextArea/AppendMessageCest.php new file mode 100644 index 00000000000..ad35f1d8cc4 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/AppendMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class AppendMessageCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: appendMessage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaAppendMessage(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - appendMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/ClearCest.php b/tests/integration/Forms/Element/TextArea/ClearCest.php new file mode 100644 index 00000000000..f326b268ddb --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/ClearCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class ClearCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: clear() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaClear(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - clear()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/ConstructCest.php b/tests/integration/Forms/Element/TextArea/ConstructCest.php new file mode 100644 index 00000000000..12aec8fa758 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaConstruct(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/GetAttributeCest.php b/tests/integration/Forms/Element/TextArea/GetAttributeCest.php new file mode 100644 index 00000000000..ecea4108c49 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/GetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class GetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: getAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaGetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - getAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/GetAttributesCest.php b/tests/integration/Forms/Element/TextArea/GetAttributesCest.php new file mode 100644 index 00000000000..1a85223eef2 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: getAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaGetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/GetDefaultCest.php b/tests/integration/Forms/Element/TextArea/GetDefaultCest.php new file mode 100644 index 00000000000..694b92c7cdb --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/GetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class GetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: getDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaGetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - getDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/GetFiltersCest.php b/tests/integration/Forms/Element/TextArea/GetFiltersCest.php new file mode 100644 index 00000000000..e81c16832b1 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/GetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class GetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: getFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaGetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - getFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/GetFormCest.php b/tests/integration/Forms/Element/TextArea/GetFormCest.php new file mode 100644 index 00000000000..d9799e09141 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/GetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class GetFormCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: getForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaGetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - getForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/GetLabelCest.php b/tests/integration/Forms/Element/TextArea/GetLabelCest.php new file mode 100644 index 00000000000..9fe6a25744e --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/GetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class GetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: getLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaGetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - getLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/GetMessagesCest.php b/tests/integration/Forms/Element/TextArea/GetMessagesCest.php new file mode 100644 index 00000000000..aec6d970534 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaGetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/GetNameCest.php b/tests/integration/Forms/Element/TextArea/GetNameCest.php new file mode 100644 index 00000000000..a1a2191e8e8 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: getName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaGetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/GetUserOptionCest.php b/tests/integration/Forms/Element/TextArea/GetUserOptionCest.php new file mode 100644 index 00000000000..3d28b4d43c8 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/GetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class GetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: getUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaGetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - getUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/GetUserOptionsCest.php b/tests/integration/Forms/Element/TextArea/GetUserOptionsCest.php new file mode 100644 index 00000000000..c60eaaa742d --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/GetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class GetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: getUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaGetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - getUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/GetValidatorsCest.php b/tests/integration/Forms/Element/TextArea/GetValidatorsCest.php new file mode 100644 index 00000000000..4770df6d22b --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/GetValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class GetValidatorsCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: getValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaGetValidators(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - getValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/GetValueCest.php b/tests/integration/Forms/Element/TextArea/GetValueCest.php new file mode 100644 index 00000000000..327d98db858 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/GetValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class GetValueCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: getValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaGetValue(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - getValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/HasMessagesCest.php b/tests/integration/Forms/Element/TextArea/HasMessagesCest.php new file mode 100644 index 00000000000..2de7a68de36 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/HasMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class HasMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: hasMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaHasMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - hasMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/LabelCest.php b/tests/integration/Forms/Element/TextArea/LabelCest.php new file mode 100644 index 00000000000..eced5b6c9f6 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/LabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class LabelCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: label() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - label()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/PrepareAttributesCest.php b/tests/integration/Forms/Element/TextArea/PrepareAttributesCest.php new file mode 100644 index 00000000000..4cdfd4cf85e --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/PrepareAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class PrepareAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: prepareAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaPrepareAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - prepareAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/RenderCest.php b/tests/integration/Forms/Element/TextArea/RenderCest.php new file mode 100644 index 00000000000..ed979dc4f23 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class RenderCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: render() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaRender(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/SetAttributeCest.php b/tests/integration/Forms/Element/TextArea/SetAttributeCest.php new file mode 100644 index 00000000000..0da92488207 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/SetAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class SetAttributeCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: setAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaSetAttribute(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - setAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/SetAttributesCest.php b/tests/integration/Forms/Element/TextArea/SetAttributesCest.php new file mode 100644 index 00000000000..9e853db4df8 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/SetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class SetAttributesCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: setAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaSetAttributes(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - setAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/SetDefaultCest.php b/tests/integration/Forms/Element/TextArea/SetDefaultCest.php new file mode 100644 index 00000000000..eeefb483f09 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/SetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class SetDefaultCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: setDefault() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaSetDefault(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - setDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/SetFiltersCest.php b/tests/integration/Forms/Element/TextArea/SetFiltersCest.php new file mode 100644 index 00000000000..ba923773254 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/SetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class SetFiltersCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: setFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaSetFilters(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - setFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/SetFormCest.php b/tests/integration/Forms/Element/TextArea/SetFormCest.php new file mode 100644 index 00000000000..6a82509a7ae --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/SetFormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class SetFormCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: setForm() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaSetForm(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - setForm()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/SetLabelCest.php b/tests/integration/Forms/Element/TextArea/SetLabelCest.php new file mode 100644 index 00000000000..bbd47a48f64 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/SetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class SetLabelCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: setLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaSetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - setLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/SetMessagesCest.php b/tests/integration/Forms/Element/TextArea/SetMessagesCest.php new file mode 100644 index 00000000000..1cdbb576a38 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/SetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class SetMessagesCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: setMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaSetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - setMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/SetNameCest.php b/tests/integration/Forms/Element/TextArea/SetNameCest.php new file mode 100644 index 00000000000..c93f6425142 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/SetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class SetNameCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: setName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaSetName(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - setName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/SetUserOptionCest.php b/tests/integration/Forms/Element/TextArea/SetUserOptionCest.php new file mode 100644 index 00000000000..1ae99adbdef --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/SetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class SetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: setUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaSetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - setUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/SetUserOptionsCest.php b/tests/integration/Forms/Element/TextArea/SetUserOptionsCest.php new file mode 100644 index 00000000000..60b7e1694b8 --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/SetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class SetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: setUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaSetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - setUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextArea/ToStringCest.php b/tests/integration/Forms/Element/TextArea/ToStringCest.php new file mode 100644 index 00000000000..55f0250d01d --- /dev/null +++ b/tests/integration/Forms/Element/TextArea/ToStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element\TextArea; + +use IntegrationTester; + +class ToStringCest +{ + /** + * Tests Phalcon\Forms\Element\TextArea :: __toString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementTextareaToString(IntegrationTester $I) + { + $I->wantToTest("Forms\Element\TextArea - __toString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Element/TextCest.php b/tests/integration/Forms/Element/TextCest.php new file mode 100644 index 00000000000..098a6e1a367 --- /dev/null +++ b/tests/integration/Forms/Element/TextCest.php @@ -0,0 +1,216 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; +use Phalcon\Forms\Element\Text; +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class TextCest +{ + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->newDi(); + $this->setDiEscaper(); + $this->setDiUrl(); + } + + /** + * executed after each test + */ + public function _after(IntegrationTester $I) + { + // Setting the doctype to XHTML5 for other tests to run smoothly + Tag::setDocType(Tag::XHTML5); + } + + /** + * Tests Text::render + * + * @issue https://github.com/phalcon/cphalcon/issues/10398 + * @author Phalcon Team + * @since 2016-07-17 + */ + public function testCreatingTextElementWithNameSimilarToTheFormMethods(IntegrationTester $I) + { + $examples = [ + 'validation', + 'action', + 'useroption', + 'useroptions', + 'entity', + 'elements', + 'messages', + 'messagesfor', + 'label', + 'value', + 'di', + 'eventsmanager', + ]; + + foreach ($examples as $name) { + $element = new Text($name); + + $expected = $name; + $actual = $element->getName(); + $I->assertEquals($expected, $actual); + + $expected = sprintf('', $name, $name); + $actual = $element->render(); + $I->assertEquals($expected, $actual); + + $actual = $element->getValue(); + $I->assertNull($actual); + }; + } + + public function testIssue1210(IntegrationTester $I) + { + $element = new Text("test"); + $element->setLabel("Test"); + + $actual = $element->label(); + $expected = ''; + $I->assertEquals($expected, $actual); + } + + public function testIssue2045(IntegrationTester $I) + { + $element = new Text("name"); + $element->setAttributes( + [ + "class" => "big-input", + ] + ); + + $element->setAttribute("id", null); + + $expected = ''; + $actual = $element->render(); + $I->assertEquals($expected, $actual); + } + + public function testPrepareAttributesNoDefault(IntegrationTester $I) + { + $element1 = new Text("name"); + $element1->setLabel("name"); + + $actual = $element1->prepareAttributes( + [ + "class" => "big-input", + ] + ); + $expected = [ + "name", + "class" => "big-input", + ]; + $I->assertEquals($expected, $actual); + } + + public function testFormElementEmpty(IntegrationTester $I) + { + $element = new Text("name"); + + $actual = $element->getLabel(); + $I->assertNull($actual); + + $expected = []; + $actual = $element->getAttributes(); + $I->assertEquals($expected, $actual); + } + + public function testFormElement(IntegrationTester $I) + { + $element = new Text("name"); + + $element->setLabel('name'); + $element->setAttributes(['class' => 'big-input']); + $element->setAttribute('placeholder', 'Type the name'); + + $expected = 'name'; + $actual = $element->getLabel(); + $I->assertEquals($expected, $actual); + + $expected = [ + 'class' => 'big-input', + 'placeholder' => 'Type the name', + ]; + $actual = $element->getAttributes(); + $I->assertEquals($expected, $actual); + + $expected = 'big-input'; + $actual = $element->getAttribute('class'); + $I->assertEquals($expected, $actual); + + $expected = 'Type the name'; + $actual = $element->getAttribute('placeholder', 'the name'); + $I->assertEquals($expected, $actual); + + $expected = 'en'; + $actual = $element->getAttribute('lang', 'en'); + $I->assertEquals($expected, $actual); + + $element->setLabel(0); + $expected = ''; + $actual = $element->label(); + $I->assertEquals($expected, $actual); + } + + public function testFormPrepareAttributes(IntegrationTester $I) + { + $element1 = new Text("name"); + + $element1->setLabel('name'); + + $expected = ['name']; + $actual = $element1->prepareAttributes(); + $I->assertEquals($expected, $actual); + } + + public function testFormPrepareAttributesDefault(IntegrationTester $I) + { + $element1 = new Text("name"); + + $element1->setLabel('name'); + $element1->setAttributes(['class' => 'big-input']); + + $expected = ['name', 'class' => 'big-input']; + $actual = $element1->prepareAttributes(); + $I->assertEquals($expected, $actual); + } + + public function testFormOptions(IntegrationTester $I) + { + $element1 = new Text("name"); + + $element1->setAttributes(['class' => 'big-input']); + $element1->setUserOptions(['some' => 'value']); + + $expected = ['some' => 'value']; + $actual = $element1->getUserOptions(); + $I->assertEquals($expected, $actual); + + $expected = 'value'; + $actual = $element1->getUserOption('some'); + $I->assertEquals($expected, $actual); + + $actual = $element1->getUserOption('some-non'); + $I->assertNull($actual); + + $expected = 'default'; + $actual = $element1->getUserOption('some-non', 'default'); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Forms/Element/ToStringCest.php b/tests/integration/Forms/Element/ToStringCest.php new file mode 100644 index 00000000000..4143bf6dc1d --- /dev/null +++ b/tests/integration/Forms/Element/ToStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Element; + +use IntegrationTester; + +class ToStringCest +{ + /** + * Tests Phalcon\Forms\Element :: __toString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsElementToString(IntegrationTester $I) + { + $I->wantToTest("Forms\Element - __toString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/AddCest.php b/tests/integration/Forms/Form/AddCest.php new file mode 100644 index 00000000000..c9b73589e7a --- /dev/null +++ b/tests/integration/Forms/Form/AddCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class AddCest +{ + /** + * Tests Phalcon\Forms\Form :: add() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormAdd(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - add()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/BindCest.php b/tests/integration/Forms/Form/BindCest.php new file mode 100644 index 00000000000..975501f45ba --- /dev/null +++ b/tests/integration/Forms/Form/BindCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class BindCest +{ + /** + * Tests Phalcon\Forms\Form :: bind() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormBind(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - bind()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/ClearCest.php b/tests/integration/Forms/Form/ClearCest.php new file mode 100644 index 00000000000..34c6ea75b5e --- /dev/null +++ b/tests/integration/Forms/Form/ClearCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class ClearCest +{ + /** + * Tests Phalcon\Forms\Form :: clear() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormClear(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - clear()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/ConstructCest.php b/tests/integration/Forms/Form/ConstructCest.php new file mode 100644 index 00000000000..6851bc6344a --- /dev/null +++ b/tests/integration/Forms/Form/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Forms\Form :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormConstruct(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/CountCest.php b/tests/integration/Forms/Form/CountCest.php new file mode 100644 index 00000000000..69de2d32482 --- /dev/null +++ b/tests/integration/Forms/Form/CountCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class CountCest +{ + /** + * Tests Phalcon\Forms\Form :: count() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormCount(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - count()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/CurrentCest.php b/tests/integration/Forms/Form/CurrentCest.php new file mode 100644 index 00000000000..c77839ebd0a --- /dev/null +++ b/tests/integration/Forms/Form/CurrentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class CurrentCest +{ + /** + * Tests Phalcon\Forms\Form :: current() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormCurrent(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - current()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/GetActionCest.php b/tests/integration/Forms/Form/GetActionCest.php new file mode 100644 index 00000000000..d2dfbfc3a88 --- /dev/null +++ b/tests/integration/Forms/Form/GetActionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class GetActionCest +{ + /** + * Tests Phalcon\Forms\Form :: getAction() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormGetAction(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - getAction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/GetCest.php b/tests/integration/Forms/Form/GetCest.php new file mode 100644 index 00000000000..1720b2cd7cf --- /dev/null +++ b/tests/integration/Forms/Form/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class GetCest +{ + /** + * Tests Phalcon\Forms\Form :: get() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormGet(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/GetDICest.php b/tests/integration/Forms/Form/GetDICest.php new file mode 100644 index 00000000000..deb6b93487f --- /dev/null +++ b/tests/integration/Forms/Form/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class GetDICest +{ + /** + * Tests Phalcon\Forms\Form :: getDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormGetDI(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/GetElementsCest.php b/tests/integration/Forms/Form/GetElementsCest.php new file mode 100644 index 00000000000..fcaeb655af9 --- /dev/null +++ b/tests/integration/Forms/Form/GetElementsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class GetElementsCest +{ + /** + * Tests Phalcon\Forms\Form :: getElements() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormGetElements(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - getElements()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/GetEntityCest.php b/tests/integration/Forms/Form/GetEntityCest.php new file mode 100644 index 00000000000..80a96da8151 --- /dev/null +++ b/tests/integration/Forms/Form/GetEntityCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class GetEntityCest +{ + /** + * Tests Phalcon\Forms\Form :: getEntity() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormGetEntity(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - getEntity()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/GetEventsManagerCest.php b/tests/integration/Forms/Form/GetEventsManagerCest.php new file mode 100644 index 00000000000..b2c2076b69a --- /dev/null +++ b/tests/integration/Forms/Form/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Forms\Form :: getEventsManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormGetEventsManager(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/GetLabelCest.php b/tests/integration/Forms/Form/GetLabelCest.php new file mode 100644 index 00000000000..a572ba9e9a0 --- /dev/null +++ b/tests/integration/Forms/Form/GetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class GetLabelCest +{ + /** + * Tests Phalcon\Forms\Form :: getLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormGetLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - getLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/GetMessagesCest.php b/tests/integration/Forms/Form/GetMessagesCest.php new file mode 100644 index 00000000000..70835236f92 --- /dev/null +++ b/tests/integration/Forms/Form/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Forms\Form :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormGetMessages(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/GetMessagesForCest.php b/tests/integration/Forms/Form/GetMessagesForCest.php new file mode 100644 index 00000000000..c64e98b7bac --- /dev/null +++ b/tests/integration/Forms/Form/GetMessagesForCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class GetMessagesForCest +{ + /** + * Tests Phalcon\Forms\Form :: getMessagesFor() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormGetMessagesFor(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - getMessagesFor()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/GetUserOptionCest.php b/tests/integration/Forms/Form/GetUserOptionCest.php new file mode 100644 index 00000000000..22a23d81bbd --- /dev/null +++ b/tests/integration/Forms/Form/GetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class GetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Form :: getUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormGetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - getUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/GetUserOptionsCest.php b/tests/integration/Forms/Form/GetUserOptionsCest.php new file mode 100644 index 00000000000..3767318e868 --- /dev/null +++ b/tests/integration/Forms/Form/GetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class GetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Form :: getUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormGetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - getUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/GetValidationCest.php b/tests/integration/Forms/Form/GetValidationCest.php new file mode 100644 index 00000000000..c7c47b3e260 --- /dev/null +++ b/tests/integration/Forms/Form/GetValidationCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class GetValidationCest +{ + /** + * Tests Phalcon\Forms\Form :: getValidation() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormGetValidation(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - getValidation()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/GetValueCest.php b/tests/integration/Forms/Form/GetValueCest.php new file mode 100644 index 00000000000..19a14977e66 --- /dev/null +++ b/tests/integration/Forms/Form/GetValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class GetValueCest +{ + /** + * Tests Phalcon\Forms\Form :: getValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormGetValue(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - getValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/HasCest.php b/tests/integration/Forms/Form/HasCest.php new file mode 100644 index 00000000000..1c292eee7b1 --- /dev/null +++ b/tests/integration/Forms/Form/HasCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class HasCest +{ + /** + * Tests Phalcon\Forms\Form :: has() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormHas(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - has()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/HasMessagesForCest.php b/tests/integration/Forms/Form/HasMessagesForCest.php new file mode 100644 index 00000000000..4f80e967e63 --- /dev/null +++ b/tests/integration/Forms/Form/HasMessagesForCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class HasMessagesForCest +{ + /** + * Tests Phalcon\Forms\Form :: hasMessagesFor() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormHasMessagesFor(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - hasMessagesFor()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/IsValidCest.php b/tests/integration/Forms/Form/IsValidCest.php new file mode 100644 index 00000000000..0cb66bbd1e6 --- /dev/null +++ b/tests/integration/Forms/Form/IsValidCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class IsValidCest +{ + /** + * Tests Phalcon\Forms\Form :: isValid() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormIsValid(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - isValid()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/KeyCest.php b/tests/integration/Forms/Form/KeyCest.php new file mode 100644 index 00000000000..34e85c239bf --- /dev/null +++ b/tests/integration/Forms/Form/KeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class KeyCest +{ + /** + * Tests Phalcon\Forms\Form :: key() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormKey(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - key()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/LabelCest.php b/tests/integration/Forms/Form/LabelCest.php new file mode 100644 index 00000000000..79e79bd67ff --- /dev/null +++ b/tests/integration/Forms/Form/LabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class LabelCest +{ + /** + * Tests Phalcon\Forms\Form :: label() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormLabel(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - label()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/NextCest.php b/tests/integration/Forms/Form/NextCest.php new file mode 100644 index 00000000000..696c8733934 --- /dev/null +++ b/tests/integration/Forms/Form/NextCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class NextCest +{ + /** + * Tests Phalcon\Forms\Form :: next() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormNext(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - next()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/RemoveCest.php b/tests/integration/Forms/Form/RemoveCest.php new file mode 100644 index 00000000000..46da1af11e3 --- /dev/null +++ b/tests/integration/Forms/Form/RemoveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class RemoveCest +{ + /** + * Tests Phalcon\Forms\Form :: remove() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormRemove(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - remove()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/RenderCest.php b/tests/integration/Forms/Form/RenderCest.php new file mode 100644 index 00000000000..505d955f760 --- /dev/null +++ b/tests/integration/Forms/Form/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class RenderCest +{ + /** + * Tests Phalcon\Forms\Form :: render() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormRender(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/RewindCest.php b/tests/integration/Forms/Form/RewindCest.php new file mode 100644 index 00000000000..c90b5c2e987 --- /dev/null +++ b/tests/integration/Forms/Form/RewindCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class RewindCest +{ + /** + * Tests Phalcon\Forms\Form :: rewind() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormRewind(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - rewind()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/SetActionCest.php b/tests/integration/Forms/Form/SetActionCest.php new file mode 100644 index 00000000000..355d7246dc8 --- /dev/null +++ b/tests/integration/Forms/Form/SetActionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class SetActionCest +{ + /** + * Tests Phalcon\Forms\Form :: setAction() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormSetAction(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - setAction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/SetDICest.php b/tests/integration/Forms/Form/SetDICest.php new file mode 100644 index 00000000000..05fff56d4ed --- /dev/null +++ b/tests/integration/Forms/Form/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class SetDICest +{ + /** + * Tests Phalcon\Forms\Form :: setDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormSetDI(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/SetEntityCest.php b/tests/integration/Forms/Form/SetEntityCest.php new file mode 100644 index 00000000000..5679448309e --- /dev/null +++ b/tests/integration/Forms/Form/SetEntityCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class SetEntityCest +{ + /** + * Tests Phalcon\Forms\Form :: setEntity() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormSetEntity(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - setEntity()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/SetEventsManagerCest.php b/tests/integration/Forms/Form/SetEventsManagerCest.php new file mode 100644 index 00000000000..492ffc12da9 --- /dev/null +++ b/tests/integration/Forms/Form/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Forms\Form :: setEventsManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormSetEventsManager(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/SetUserOptionCest.php b/tests/integration/Forms/Form/SetUserOptionCest.php new file mode 100644 index 00000000000..8818aa095af --- /dev/null +++ b/tests/integration/Forms/Form/SetUserOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class SetUserOptionCest +{ + /** + * Tests Phalcon\Forms\Form :: setUserOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormSetUserOption(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - setUserOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/SetUserOptionsCest.php b/tests/integration/Forms/Form/SetUserOptionsCest.php new file mode 100644 index 00000000000..e86e86b1dba --- /dev/null +++ b/tests/integration/Forms/Form/SetUserOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class SetUserOptionsCest +{ + /** + * Tests Phalcon\Forms\Form :: setUserOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormSetUserOptions(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - setUserOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/SetValidationCest.php b/tests/integration/Forms/Form/SetValidationCest.php new file mode 100644 index 00000000000..452c5d29cc4 --- /dev/null +++ b/tests/integration/Forms/Form/SetValidationCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class SetValidationCest +{ + /** + * Tests Phalcon\Forms\Form :: setValidation() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormSetValidation(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - setValidation()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/UnderscoreGetCest.php b/tests/integration/Forms/Form/UnderscoreGetCest.php new file mode 100644 index 00000000000..775f7003d7b --- /dev/null +++ b/tests/integration/Forms/Form/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Forms\Form :: __get() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormUnderscoreGet(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Form/ValidCest.php b/tests/integration/Forms/Form/ValidCest.php new file mode 100644 index 00000000000..af244b81cc0 --- /dev/null +++ b/tests/integration/Forms/Form/ValidCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Form; + +use IntegrationTester; + +class ValidCest +{ + /** + * Tests Phalcon\Forms\Form :: valid() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsFormValid(IntegrationTester $I) + { + $I->wantToTest("Forms\Form - valid()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/FormCest.php b/tests/integration/Forms/FormCest.php index 3aeb7d70fdf..9083e2fc92d 100644 --- a/tests/integration/Forms/FormCest.php +++ b/tests/integration/Forms/FormCest.php @@ -1,351 +1,709 @@ + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + namespace Phalcon\Test\Integration\Forms; -use Phalcon\Tag; use IntegrationTester; +use Phalcon\Forms\Element\Radio; +use Phalcon\Forms\Element\Select; +use Phalcon\Forms\Element\Text; use Phalcon\Forms\Form; use Phalcon\Messages\Message; -use Phalcon\Forms\Element\Text; -use Phalcon\Forms\Element\Email; -use Phalcon\Forms\Element\Password; use Phalcon\Messages\Messages; -use Phalcon\Test\Models\Select as MvcModel; +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Validation; use Phalcon\Validation\Validator\PresenceOf; +use Phalcon\Validation\Validator\Regex; use Phalcon\Validation\Validator\StringLength; -/** - * Phalcon\Test\Integration\Forms\FormCest - * Tests the \Phalcon\Forms\Form component - * - * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez - * @author Serghei Iakovlev - * @package Phalcon\Test\Integration\Forms - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ class FormCest { - /** - * Executed before each test - * - * @param IntegrationTester $I - */ + use DiTrait; + public function _before(IntegrationTester $I) { - Tag::resetInput(); - Tag::setDocType(Tag::HTML5); + $this->newDi(); + $this->setDiEscaper(); + $this->setDiUrl(); } /** - * Tests clearing the Form Elements - * - * @issue https://github.com/phalcon/cphalcon/issues/12165 - * @issue https://github.com/phalcon/cphalcon/issues/12099 - * @author Serghei Iakovlev - * @since 2016-10-01 - * @param IntegrationTester $I + * executed after each test */ - public function clearFormElements(IntegrationTester $I) + public function _after(IntegrationTester $I) { - $pass = new Password('passwd'); - $eml = new Email('email'); + // Setting the doctype to XHTML5 for other tests to run smoothly + Tag::setDocType(Tag::XHTML5); + } - $text = new Text('name'); - $text->setDefault('Serghei Iakovlev'); + public function testCount(IntegrationTester $I) + { + $form = new Form(); - $form = new Form; - $form - ->add($eml) - ->add($text) - ->add($pass); + $expected = 0; + $actual = count($form); + $I->assertEquals($expected, $actual); - $I->assertNull($form->get('passwd')->getValue()); - $I->assertEquals('Serghei Iakovlev', $form->get('name')->getValue()); + $form->add( + new Text("name") + ); - $I->assertEquals( - '', - $form->render('passwd') + $form->add( + new Text("telephone") ); - $I->assertEquals( - '', - $form->render('email') + $expected = 2; + $actual = count($form); + $I->assertEquals($expected, $actual); + } + + public function testIterator(IntegrationTester $I) + { + $form = new Form(); + $data = []; + + foreach ($form as $key => $value) { + $data[$key] = $value->getName(); + } + + $expected = []; + $actual = $data; + $I->assertEquals($expected, $actual); + + $form->add( + new Text("name") ); - $I->assertEquals( - '', - $form->render('name') + $form->add( + new Text("telephone") ); - $_POST = [ - 'passwd' => 'secret', - 'name' => 'Andres Gutierrez', + foreach ($form as $key => $value) { + $data[$key] = $value->getName(); + } + + $expected = [ + 0 => "name", + 1 => "telephone", ]; + $actual = $data; + $I->assertEquals($expected, $actual); + } - $I->assertEquals('secret', $form->get('passwd')->getValue()); - $I->assertEquals($pass->getValue(), $form->get('passwd')->getValue()); - $I->assertEquals('Andres Gutierrez', $form->get('name')->getValue()); + public function testLabels(IntegrationTester $I) + { + $form = new Form(); - $I->assertEquals( - '', - $form->render('passwd') + $form->add( + new Text("name") ); - $I->assertEquals( - '', - $form->render('name') - ); + $telephone = new Text("telephone"); + $telephone->setLabel("The Telephone"); + $form->add($telephone); - Tag::setDefault('email', 'andres@phalconphp.com'); + $expected = 'name'; + $actual = $form->getLabel("name"); + $I->assertEquals($expected, $actual); + $expected = 'The Telephone'; + $actual = $form->getLabel("telephone"); + $I->assertEquals($expected, $actual); - $I->assertEquals( - '', - $form->render('email') - ); - $I->assertEquals('andres@phalconphp.com', $form->get('email')->getValue()); + $expected = ""; + $actual = $form->label("name"); + $I->assertEquals($expected, $actual); + + $expected = ""; + $actual = $form->label("telephone"); + $I->assertEquals($expected, $actual); - $pass->clear(); + // https://github.com/phalcon/cphalcon/issues/1029 + $expected = ""; + $actual = $form->label("name", ["class" => "form-control"]); + $I->assertEquals($expected, $actual); - $I->assertEquals( - '', - $form->render('passwd') + $expected = ""; + $actual = $form->label("telephone", ["class" => "form-control"]); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Form::hasMessagesFor + * + * @author Sid Roberts + * @since 2016-04-03 + */ + public function testFormHasMessagesFor(IntegrationTester $I) + { + // First element + $telephone = new Text('telephone'); + $telephone->addValidators( + [ + new Regex( + [ + 'pattern' => '/\+44 [0-9]+ [0-9]+/', + 'message' => 'The telephone has an invalid format', + ] + ), + ] ); - $I->assertNull($pass->getValue()); - $I->assertEquals($pass->getValue(), $form->get('passwd')->getValue()); + // Second element + $address = new Text('address'); + $form = new Form(); - $form->clear(); + $form->add($telephone); + $form->add($address); - $I->assertEquals('Serghei Iakovlev', $form->get('name')->getValue()); - $I->assertNull($form->get('email')->getValue()); + $actual = $form->isValid(['telephone' => '12345', 'address' => 'hello']); + $I->assertFalse($actual); - $I->assertEquals( - '', - $form->render('name') + $expected = Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'Regex', + '_message' => 'The telephone has an invalid format', + '_field' => 'telephone', + '_code' => 0, + ] + ), + ], + ] ); + $actual = $form->getMessagesFor('telephone'); + $I->assertEquals($expected, $actual); - $I->assertEquals( - '', - $form->render('email') - ); + $expected = Messages::__set_state(['_messages' => []]); + $actual = $form->getMessagesFor('address'); + $I->assertEquals($expected, $actual); - $I->assertEquals(['passwd' => 'secret', 'name' => 'Andres Gutierrez'], $_POST); + $actual = $form->hasMessagesFor('telephone'); + $I->assertTrue($actual); + + $actual = $form->hasMessagesFor('address'); + $I->assertFalse($actual); } /** - * Tests canceling validation on first fail + * Tests Form::render * - * @issue https://github.com/phalcon/cphalcon/issues/13149 - * @author Serghei Iakovlev - * @since 2017-11-19 - * @param IntegrationTester $I + * @issue https://github.com/phalcon/cphalcon/issues/10398 + * @author Phalcon Team + * @since 2016-07-17 */ - public function shouldCancelValidationOnFirstFail(IntegrationTester $I) + public function testCreatingElementsWithNameSimilarToTheFormMethods(IntegrationTester $I) { - $form = new Form(); + $names = [ + 'validation', + 'action', + 'useroption', + 'useroptions', + 'entity', + 'elements', + 'messages', + 'messagesfor', + 'label', + 'value', + 'di', + 'eventsmanager', + ]; - $lastName = new Text('lastName'); - $lastName->setLabel('user.lastName'); - $lastName->setFilters([ - "string", - "striptags", - "trim", - ]); - - $lastName->addValidators([ - new PresenceOf([ - 'message' => 'user.lastName.presenceOf', - 'cancelOnFail' => true, - ]), - new StringLength([ - 'min' => 3, - 'max' => 255, - 'messageMaximum' => 'user.lastName.max', - 'messageMinimum' => 'user.lastName.min', - ]), - ]); - - $firstName = new Text('firstName'); - $firstName->setLabel('user.firstName'); - $firstName->setFilters([ - "string", - "striptags", - "trim", - ]); - - $firstName->addValidators([ - new PresenceOf([ - 'message' => 'user.firstName.presenceOf', - 'cancelOnFail' => true, - ]), - new StringLength([ - 'min' => 3, - 'max' => 255, - 'messageMaximum' => 'user.firstName.max', - 'messageMinimum' => 'user.firstName.min', - ]), - ]); - - $form->add($lastName); - $form->add($firstName); - - $_POST = []; - $I->assertFalse($form->isValid($_POST)); - - $actual = $form->getMessages(); - $expected = Messages::__set_state([ - '_position' => 0, - '_messages' => [ - Message::__set_state([ - '_type' => 'PresenceOf', - '_message' => 'user.lastName.presenceOf', - '_field' => 'lastName', - '_code' => '0', - ]) - ], - ]); + foreach ($names as $name) { + $form = new Form; + $element = new Text($name); - $I->assertEquals($actual, $expected); + $expected = $name; + $actual = $element->getName(); + $I->assertEquals($expected, $actual); + + $form->add($element); + + $expected = sprintf('', $name, $name); + $actual = $form->render($name); + $I->assertEquals($expected, $actual); + + $actual = $form->getValue($name); + $I->assertNull($actual); + } } - /** - * Tests clearing the Form Elements and using Form::isValid - * - * @issue https://github.com/phalcon/cphalcon/issues/11978 - * @author Serghei Iakovlev - * @since 2016-10-01 - * @param IntegrationTester $I - */ - public function clearFormElementsAndUsingValidation(IntegrationTester $I) + public function testFormValidator(IntegrationTester $I) { - $password = new Password('password', ['placeholder' => 'Insert your Password']); + //First element + $telephone = new Text("telephone"); + $telephone->addValidator( + new PresenceOf( + [ + 'message' => 'The telephone is required', + ] + ) + ); + + $expected = 1; + $actual = count($telephone->getValidators()); + $I->assertEquals($expected, $actual); + + $telephone->addValidators( + [ + new StringLength( + [ + 'min' => 5, + 'messageMinimum' => 'The telephone is too short', + ] + ), + new Regex( + [ + 'pattern' => '/\+44 [0-9]+ [0-9]+/', + 'message' => 'The telephone has an invalid format', + ] + ), + ] + ); + + $expected = 3; + $actual = count($telephone->getValidators()); + $I->assertEquals($expected, $actual); + + //Second element + $address = new Text('address'); + $address->addValidator( + new PresenceOf( + [ + 'message' => 'The address is required', + ] + ) + ); + + $expected = 3; + $actual = count($telephone->getValidators()); + $I->assertEquals($expected, $actual); + + $form = new Form(); + $form->add($telephone); + $form->add($address); - $password->addValidators( + $actual = $form->isValid([]); + $I->assertFalse($actual); + + $expected = Messages::__set_state( [ - new PresenceOf(['message' => 'The field is required', 'cancelOnFail' => true]), - new StringLength(['min' => 7, 'messageMinimum' => 'The text is too short']), + '_messages' => [ + 0 => Message::__set_state( + [ + '_type' => 'PresenceOf', + '_message' => 'The telephone is required', + '_field' => 'telephone', + '_code' => 0, + ] + ), + 1 => Message::__set_state( + [ + '_type' => 'TooShort', + '_message' => 'The telephone is too short', + '_field' => 'telephone', + '_code' => 0, + ] + ), + 2 => Message::__set_state( + [ + '_type' => 'Regex', + '_message' => 'The telephone has an invalid format', + '_field' => 'telephone', + '_code' => 0, + ] + ), + 3 => Message::__set_state( + [ + '_type' => 'PresenceOf', + '_message' => 'The address is required', + '_field' => 'address', + '_code' => 0, + ] + ), + ], ] ); + $actual = $form->getMessages(); + $I->assertEquals($expected, $actual); - $form = new Form; - $form->add($password); + $actual = $form->isValid( + [ + 'telephone' => '12345', + 'address' => 'hello', + ] + ); + $I->assertFalse($actual); - $I->assertNull($form->get('password')->getValue()); + $expected = Messages::__set_state( + [ + '_messages' => [ + 0 => Message::__set_state( + [ + '_type' => 'Regex', + '_message' => 'The telephone has an invalid format', + '_field' => 'telephone', + '_code' => 0, + ] + ), + ], + ] + ); + $actual = $form->getMessages(); + $I->assertEquals($expected, $actual); - $input = ''; - $I->assertEquals($input, $form->render('password')); + $actual = $form->isValid( + [ + 'telephone' => '+44 124 82122', + 'address' => 'hello', + ] + ); + $I->assertTrue($actual); + } - $_POST = ['password' => 'secret']; + public function testFormIndirectElementRender(IntegrationTester $I) + { + $form = new Form(); - $I->assertEquals('secret', $form->get('password')->getValue()); + $form->add(new Text("name")); - $input = ''; - $I->assertEquals($input, $form->render('password')); + $expected = ''; + $actual = $form->render("name"); + $I->assertEquals($expected, $actual); - $I->assertFalse($form->isValid($_POST)); + $expected = ''; + $actual = $form->render("name", ["class" => "big-input"]); + $I->assertEquals($expected, $actual); + } - $actual = $form->getMessages(); - $expected = Messages::__set_state([ - '_position' => 0, - '_messages' => [ - Message::__set_state([ - '_type' => 'TooShort', - '_message' => 'The text is too short', - '_field' => 'password', - '_code' => '0', - ]) - ], - ]); + /** + * @issue https://github.com/phalcon/cphalcon/issues/1190 + */ + public function testIssue1190(IntegrationTester $I) + { + $object = new \stdClass(); + $object->title = 'Hello "world!"'; - $I->assertEquals($actual, $expected); + $form = new Form($object); + $form->add(new Text("title")); - $form->clear(['password']); + $actual = $form->render("title"); + $expected = ''; + $I->assertEquals($expected, $actual); + } - $I->assertNull($form->get('password')->getValue()); + /** + * @issue https://github.com/phalcon/cphalcon/issues/706 + */ + public function testIssue706(IntegrationTester $I) + { + $form = new Form(); + $form->add(new Text("name")); - $input = ''; - $I->assertEquals($input, $form->render('password')); + $form->add(new Text("before"), "name", true); + $form->add(new Text("after"), "name"); - $I->assertEquals(['password' => 'secret'], $_POST); + $expected = ["before", "name", "after"]; + $actual = []; + + foreach ($form as $element) { + $actual[] = $element->getName(); + } + $I->assertEquals($expected, $actual); } /** - * Tests clearing the Form Elements by using Form::bind + * Tests Element::hasMessages() Element::getMessages() * - * @issue https://github.com/phalcon/cphalcon/issues/11978 - * @author Serghei Iakovlev - * @since 2016-10-01 - * @param IntegrationTester $I + * @author Mohamad Rostami + * @issue https://github.com/phalcon/cphalcon/issues/11135 + * @issue https://github.com/phalcon/cphalcon/issues/3167 */ - public function clearFormElementsByUsingFormBind(IntegrationTester $I) + public function testElementMessages(IntegrationTester $I) { - $name = new Text('sel_name'); - $text = new Text('sel_text'); + // First element + $telephone = new Text('telephone'); - $form = new Form; - $form - ->add($name) - ->add($text); + $telephone->addValidators( + [ + new Regex( + [ + 'pattern' => '/\+44 [0-9]+ [0-9]+/', + 'message' => 'The telephone has an invalid format', + ] + ), + ] + ); - $entity = new MvcModel; + // Second element + $address = new Text('address'); + $form = new Form(); - $I->assertNull(Tag::getValue('sel_name')); - $I->assertNull($form->getValue('sel_name')); - $I->assertNull($form->get('sel_name')->getValue()); - $I->assertNull($name->getValue()); + $form->add($telephone); + $form->add($address); - Tag::setDefault('sel_name', 'Please specify name'); - $_POST = ['sel_name' => 'Some Name', 'sel_text' => 'Some Text']; + $actual = $form->isValid(['telephone' => '12345', 'address' => 'hello']); + $I->assertFalse($actual); + $actual = $form->get('telephone')->hasMessages(); + $I->assertTrue($actual); + $actual = $form->get('address')->hasMessages(); + $I->assertFalse($actual); - $form->bind($_POST, $entity); + $expected = Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'Regex', + '_message' => 'The telephone has an invalid format', + '_field' => 'telephone', + '_code' => 0, + ] + ), + ], + ] + ); + $actual = $form->get('telephone')->getMessages(); + $I->assertEquals($expected, $actual); - $I->assertEquals('Some Name', $entity->getName()); - $I->assertEquals('Some Text', $entity->getText()); + $expected = $form->getMessages(); + $actual = $form->get('telephone')->getMessages(); + $I->assertEquals($expected, $actual); - $I->assertEquals('Some Name', $form->getValue('sel_name')); - $I->assertEquals('Some Name', $form->get('sel_name')->getValue()); - $I->assertEquals('Some Name', $name->getValue()); + $expected = Messages::__set_state(['_messages' => []]); + $actual = $form->get('address')->getMessages(); + $I->assertEquals($expected, $actual); - $I->assertEquals('Some Text', $form->getValue('sel_text')); - $I->assertEquals('Some Text', $form->get('sel_text')->getValue()); - $I->assertEquals('Some Text', $text->getValue()); + $expected = Messages::__set_state(['_messages' => []]); + $actual = $form->getMessagesFor('notelement'); + $I->assertEquals($expected, $actual); + } - $form->clear(['sel_name']); + /** + * Tests Form::setValidation() + * + * @author Mohamad Rostami + * @issue https://github.com/phalcon/cphalcon/issues/12465 + */ + public function testCustomValidation(IntegrationTester $I) + { + // First element + $telephone = new Text('telephone'); + $customValidation = new Validation(); + $customValidation->add( + 'telephone', + new Regex( + [ + 'pattern' => '/\+44 [0-9]+ [0-9]+/', + 'message' => 'The telephone has an invalid format', + ] + ) + ); + $form = new Form(); + $address = new Text('address'); + $form->add($telephone); + $form->add($address); + $form->setValidation($customValidation); + + $actual = $form->isValid(['telephone' => '12345', 'address' => 'hello']); + $I->assertFalse($actual); + + $actual = $form->get('telephone')->hasMessages(); + $I->assertTrue($actual); + + $actual = $form->get('address')->hasMessages(); + $I->assertFalse($actual); + + $expected = Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'Regex', + '_message' => 'The telephone has an invalid format', + '_field' => 'telephone', + '_code' => 0, + ] + ), + ], + ] + ); + $actual = $form->get('telephone')->getMessages(); + $I->assertEquals($expected, $actual); + + $expected = $form->getMessages(); + $actual = $form->get('telephone')->getMessages(); + $I->assertEquals($expected, $actual); - $I->assertNull(Tag::getValue('sel_name')); - $I->assertNull($form->getValue('sel_name')); - $I->assertNull($form->get('sel_name')->getValue()); - $I->assertNull($name->getValue()); + $expected = Messages::__set_state(['_messages' => []]); + $actual = $form->get('address')->getMessages(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Form::isValid() + * + * @author Mohamad Rostami + * @issue https://github.com/phalcon/cphalcon/issues/11500 + */ + public function testMergeValidators(IntegrationTester $I) + { + // First element + $telephone = new Text('telephone'); + $telephone->addValidators( + [ + new PresenceOf( + [ + 'message' => 'The telephone is required', + ] + ), + ] + ); + $customValidation = new Validation(); + $customValidation->add( + 'telephone', + new Regex( + [ + 'pattern' => '/\+44 [0-9]+ [0-9]+/', + 'message' => 'The telephone has an invalid format', + ] + ) + ); + $form = new Form(); + $address = new Text('address'); + $form->add($telephone); + $form->add($address); + $form->setValidation($customValidation); - $I->assertEquals('Some Text', $form->getValue('sel_text')); - $I->assertEquals('Some Text', $form->get('sel_text')->getValue()); - $I->assertEquals('Some Text', $text->getValue()); + $actual = $form->isValid(['address' => 'hello']); + $I->assertFalse($actual); - $form->clear(['non_existent', 'another_filed']); + $actual = $form->get('telephone')->hasMessages(); + $I->assertTrue($actual); - $I->assertEquals('Some Text', $form->getValue('sel_text')); - $I->assertEquals('Some Text', $form->get('sel_text')->getValue()); - $I->assertEquals('Some Text', $text->getValue()); + $actual = $form->get('address')->hasMessages(); + $I->assertFalse($actual); - $form->clear(); + $expected = Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'Regex', + '_message' => 'The telephone has an invalid format', + '_field' => 'telephone', + '_code' => 0, + ] + ), + Message::__set_state( + [ + '_type' => 'PresenceOf', + '_message' => 'The telephone is required', + '_field' => 'telephone', + '_code' => 0, + ] + ), + ], + ] + ); + $actual = $form->get('telephone')->getMessages(); + $I->assertEquals($expected, $actual); - $I->assertNull(Tag::getValue('sel_text')); - $I->assertNull($form->getValue('sel_text')); - $I->assertNull($form->get('sel_text')->getValue()); - $I->assertNull($text->getValue()); + $expected = $form->getMessages(); + $actual = $form->get('telephone')->getMessages(); + $I->assertEquals($expected, $actual); - $I->assertEquals('Some Name', $entity->getName()); - $I->assertEquals('Some Text', $entity->getText()); + $expected = Messages::__set_state(['_messages' => []]); + $actual = $form->get('address')->getMessages(); + $I->assertEquals($expected, $actual); + } - $I->assertEquals(['sel_name' => 'Some Name', 'sel_text' => 'Some Text'], $_POST); + /** + * Tests Form::getMessages(true) + * + * @author Mohamad Rostami + * @issue https://github.com/phalcon/cphalcon/issues/13294 + * + * This should be removed in next major version + * We should not return multiple type of result in a single method! + * (form->getMessages(true) vs form->getMessages()) + */ + public function testGetElementMessagesFromForm(IntegrationTester $I) + { + // First element + $telephone = new Text('telephone'); + $telephone->addValidators( + [ + new PresenceOf( + [ + 'message' => 'The telephone is required', + ] + ), + ] + ); + $customValidation = new Validation(); + $customValidation->add( + 'telephone', + new Regex( + [ + 'pattern' => '/\+44 [0-9]+ [0-9]+/', + 'message' => 'The telephone has an invalid format', + ] + ) + ); + $form = new Form(); + $address = new Text('address'); + $form->add($telephone); + $form->add($address); + $form->setValidation($customValidation); + + $actual = $form->isValid(['address' => 'hello']); + $I->assertFalse($actual); + + $expected = [ + 'telephone' => [ + Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'Regex', + '_message' => 'The telephone has an invalid format', + '_field' => 'telephone', + '_code' => 0, + ] + ), + ], + ] + ), + Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'PresenceOf', + '_message' => 'The telephone is required', + '_field' => 'telephone', + '_code' => 0, + ] + ), + ], + ] + ), + ], + ]; + $actual = $form->getMessages(true); + $I->assertEquals($expected, $actual); } } diff --git a/tests/integration/Forms/FormElementsCest.php b/tests/integration/Forms/FormElementsCest.php new file mode 100644 index 00000000000..b78c42ae1b9 --- /dev/null +++ b/tests/integration/Forms/FormElementsCest.php @@ -0,0 +1,357 @@ + + * @author Phalcon Team + * @package Phalcon\Test\Integration\Forms + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class FormElementsCest +{ + /** + * Executed before each test + * + * @param IntegrationTester $I + */ + public function _before(IntegrationTester $I) + { + Tag::resetInput(); + Tag::setDocType(Tag::HTML5); + } + + /** + * Tests clearing the Form Elements + * + * @issue https://github.com/phalcon/cphalcon/issues/12165 + * @issue https://github.com/phalcon/cphalcon/issues/12099 + * @author Phalcon Team + * @since 2016-10-01 + * + * @param IntegrationTester $I + */ + public function clearFormElements(IntegrationTester $I) + { + $pass = new Password('passwd'); + $eml = new Email('email'); + + $text = new Text('name'); + $text->setDefault('Serghei Iakovlev'); + + $form = new Form; + $form + ->add($eml) + ->add($text) + ->add($pass) + ; + + $I->assertNull($form->get('passwd')->getValue()); + $I->assertEquals('Serghei Iakovlev', $form->get('name')->getValue()); + + $I->assertEquals( + '', + $form->render('passwd') + ); + + $I->assertEquals( + '', + $form->render('email') + ); + + $I->assertEquals( + '', + $form->render('name') + ); + + $_POST = [ + 'passwd' => 'secret', + 'name' => 'Andres Gutierrez', + ]; + + $I->assertEquals('secret', $form->get('passwd')->getValue()); + $I->assertEquals($pass->getValue(), $form->get('passwd')->getValue()); + $I->assertEquals('Andres Gutierrez', $form->get('name')->getValue()); + + $I->assertEquals( + '', + $form->render('passwd') + ); + + $I->assertEquals( + '', + $form->render('name') + ); + + Tag::setDefault('email', 'andres@phalconphp.com'); + + + $I->assertEquals( + '', + $form->render('email') + ); + $I->assertEquals('andres@phalconphp.com', $form->get('email')->getValue()); + + $pass->clear(); + + $I->assertEquals( + '', + $form->render('passwd') + ); + + $I->assertNull($pass->getValue()); + $I->assertEquals($pass->getValue(), $form->get('passwd')->getValue()); + + $form->clear(); + + $I->assertEquals('Serghei Iakovlev', $form->get('name')->getValue()); + $I->assertNull($form->get('email')->getValue()); + + $I->assertEquals( + '', + $form->render('name') + ); + + $I->assertEquals( + '', + $form->render('email') + ); + + $I->assertEquals(['passwd' => 'secret', 'name' => 'Andres Gutierrez'], $_POST); + } + + /** + * Tests canceling validation on first fail + * + * @issue https://github.com/phalcon/cphalcon/issues/13149 + * @author Phalcon Team + * @since 2017-11-19 + * + * @param IntegrationTester $I + */ + public function shouldCancelValidationOnFirstFail(IntegrationTester $I) + { + $form = new Form(); + + $lastName = new Text('lastName'); + $lastName->setLabel('user.lastName'); + $lastName->setFilters([ + "string", + "striptags", + "trim", + ]); + + $lastName->addValidators([ + new PresenceOf([ + 'message' => 'user.lastName.presenceOf', + 'cancelOnFail' => true, + ]), + new StringLength([ + 'min' => 3, + 'max' => 255, + 'messageMaximum' => 'user.lastName.max', + 'messageMinimum' => 'user.lastName.min', + ]), + ]); + + $firstName = new Text('firstName'); + $firstName->setLabel('user.firstName'); + $firstName->setFilters([ + "string", + "striptags", + "trim", + ]); + + $firstName->addValidators([ + new PresenceOf([ + 'message' => 'user.firstName.presenceOf', + 'cancelOnFail' => true, + ]), + new StringLength([ + 'min' => 3, + 'max' => 255, + 'messageMaximum' => 'user.firstName.max', + 'messageMinimum' => 'user.firstName.min', + ]), + ]); + + $form->add($lastName); + $form->add($firstName); + + $_POST = []; + $I->assertFalse($form->isValid($_POST)); + + $actual = $form->getMessages(); + $expected = Messages::__set_state([ + '_position' => 0, + '_messages' => [ + Message::__set_state([ + '_type' => 'PresenceOf', + '_message' => 'user.lastName.presenceOf', + '_field' => 'lastName', + '_code' => '0', + ]), + ], + ]); + + $I->assertEquals($actual, $expected); + } + + /** + * Tests clearing the Form Elements and using Form::isValid + * + * @issue https://github.com/phalcon/cphalcon/issues/11978 + * @author Phalcon Team + * @since 2016-10-01 + * + * @param IntegrationTester $I + */ + public function clearFormElementsAndUsingValidation(IntegrationTester $I) + { + $password = new Password('password', ['placeholder' => 'Insert your Password']); + + $password->addValidators( + [ + new PresenceOf(['message' => 'The field is required', 'cancelOnFail' => true]), + new StringLength(['min' => 7, 'messageMinimum' => 'The text is too short']), + ] + ); + + $form = new Form; + $form->add($password); + + $I->assertNull($form->get('password')->getValue()); + + $input = ''; + $I->assertEquals($input, $form->render('password')); + + $_POST = ['password' => 'secret']; + + $I->assertEquals('secret', $form->get('password')->getValue()); + + $input = ''; + $I->assertEquals($input, $form->render('password')); + + $I->assertFalse($form->isValid($_POST)); + + $actual = $form->getMessages(); + $expected = Messages::__set_state([ + '_position' => 0, + '_messages' => [ + Message::__set_state([ + '_type' => 'TooShort', + '_message' => 'The text is too short', + '_field' => 'password', + '_code' => '0', + ]), + ], + ]); + + $I->assertEquals($actual, $expected); + + $form->clear(['password']); + + $I->assertNull($form->get('password')->getValue()); + + $input = ''; + $I->assertEquals($input, $form->render('password')); + + $I->assertEquals(['password' => 'secret'], $_POST); + } + + /** + * Tests clearing the Form Elements by using Form::bind + * + * @issue https://github.com/phalcon/cphalcon/issues/11978 + * @author Phalcon Team + * @since 2016-10-01 + * + * @param IntegrationTester $I + */ + public function clearFormElementsByUsingFormBind(IntegrationTester $I) + { + $name = new Text('sel_name'); + $text = new Text('sel_text'); + + $form = new Form; + $form + ->add($name) + ->add($text) + ; + + $entity = new MvcModel(); + + $I->assertNull(Tag::getValue('sel_name')); + $I->assertNull($form->getValue('sel_name')); + $I->assertNull($form->get('sel_name')->getValue()); + $I->assertNull($name->getValue()); + + Tag::setDefault('sel_name', 'Please specify name'); + $_POST = ['sel_name' => 'Some Name', 'sel_text' => 'Some Text']; + + $form->bind($_POST, $entity); + + $I->assertEquals('Some Name', $entity->getName()); + $I->assertEquals('Some Text', $entity->getText()); + + $I->assertEquals('Some Name', $form->getValue('sel_name')); + $I->assertEquals('Some Name', $form->get('sel_name')->getValue()); + $I->assertEquals('Some Name', $name->getValue()); + + $I->assertEquals('Some Text', $form->getValue('sel_text')); + $I->assertEquals('Some Text', $form->get('sel_text')->getValue()); + $I->assertEquals('Some Text', $text->getValue()); + + $form->clear(['sel_name']); + + $I->assertNull(Tag::getValue('sel_name')); + $I->assertNull($form->getValue('sel_name')); + $I->assertNull($form->get('sel_name')->getValue()); + $I->assertNull($name->getValue()); + + $I->assertEquals('Some Text', $form->getValue('sel_text')); + $I->assertEquals('Some Text', $form->get('sel_text')->getValue()); + $I->assertEquals('Some Text', $text->getValue()); + + $form->clear(['non_existent', 'another_filed']); + + $I->assertEquals('Some Text', $form->getValue('sel_text')); + $I->assertEquals('Some Text', $form->get('sel_text')->getValue()); + $I->assertEquals('Some Text', $text->getValue()); + + $form->clear(); + + $I->assertNull(Tag::getValue('sel_text')); + $I->assertNull($form->getValue('sel_text')); + $I->assertNull($form->get('sel_text')->getValue()); + $I->assertNull($text->getValue()); + + $I->assertEquals('Some Name', $entity->getName()); + $I->assertEquals('Some Text', $entity->getText()); + + $I->assertEquals(['sel_name' => 'Some Name', 'sel_text' => 'Some Text'], $_POST); + } +} diff --git a/tests/integration/Forms/FormsCest.php b/tests/integration/Forms/FormsCest.php new file mode 100644 index 00000000000..56098be78c0 --- /dev/null +++ b/tests/integration/Forms/FormsCest.php @@ -0,0 +1,241 @@ + | + | Eduar Carvajal | + +------------------------------------------------------------------------+ +*/ + +namespace Phalcon\Test\Integration\Forms; + +use IntegrationTester; +use Phalcon\Forms\Element\Radio; +use Phalcon\Forms\Element\Select; +use Phalcon\Forms\Element\Text; +use Phalcon\Forms\Form; +use Phalcon\Messages\Message; +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Forms\ContactFormPublicProperties; +use Phalcon\Test\Fixtures\Forms\ContactFormSettersGetters; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Validation\Validator\PresenceOf; +use Phalcon\Validation\Validator\Regex; +use Phalcon\Validation\Validator\StringLength; + +class FormsCest +{ + use DiTrait; + + public function _before() + { + $this->setNewFactoryDefault(); + Tag::setDoctype(Tag::HTML5); + } + + public function testFormElementRender(IntegrationTester $I) + { + $element1 = new Text("name"); + $element1->setAttributes(['class' => 'big-input']); + + $element2 = new Radio('radio'); + $element2->setAttributes(['value' => 0]); + + $I->assertEquals('', $element1->render()); + $I->assertEquals('', (string) $element1); + $I->assertEquals('', (string) $element2); + } + + public function testFormRenderEntity(IntegrationTester $I) + { + //Second element + $address = new Text('address'); + + $address->addValidator(new PresenceOf([ + 'message' => 'The address is required', + ])); + + $telephone = new Text("telephone"); + + $telephone->addValidator(new PresenceOf([ + 'message' => 'The telephone is required', + ])); + + $form = new Form(new ContactFormPublicProperties()); + + $form->add($address); + $form->add($telephone); + + $I->assertEquals( + $form->render('address'), + '' + ); + + $I->assertEquals( + $form->render('telephone'), + '' + ); + } + + public function testFormRenderEntityGetters(IntegrationTester $I) + { + //Second element + $address = new Text('address'); + + $address->addValidator(new PresenceOf([ + 'message' => 'The address is required', + ])); + + $telephone = new Text("telephone"); + + $telephone->addValidator(new PresenceOf([ + 'message' => 'The telephone is required', + ])); + + $form = new Form(new ContactFormSettersGetters()); + + $form->add($address); + $form->add($telephone); + + $I->assertEquals( + $form->render('address'), + '' + ); + + $I->assertEquals( + $form->render('telephone'), + '' + ); + } + + public function testFormValidatorEntity(IntegrationTester $I) + { + //Second element + $address = new Text('address'); + + $address->addValidator(new PresenceOf([ + 'message' => 'The address is required', + ])); + + $telephone = new Text("telephone"); + + $telephone->addValidator(new PresenceOf([ + 'message' => 'The telephone is required', + ])); + + $form = new Form(new ContactFormPublicProperties()); + + $form->add($address); + $form->add($telephone); + + $I->assertTrue($form->isValid([ + 'telephone' => '+44 124 82122', + 'address' => 'hello', + ])); + } + + public function testFormValidatorEntityBind(IntegrationTester $I) + { + //Second element + $address = new Text('address'); + + $address->addValidator(new PresenceOf([ + 'message' => 'The address is required', + ])); + + $telephone = new Text("telephone"); + + $telephone->addValidator(new PresenceOf([ + 'message' => 'The telephone is required', + ])); + + $entity = new ContactFormPublicProperties(); + + $form = new Form(); + + $form->add($address); + $form->add($telephone); + + $form->bind([ + 'telephone' => '+44 123 45678', + 'address' => 'hello', + ], $entity); + + $I->assertTrue($form->isValid()); + + $I->assertEquals($entity->telephone, '+44 123 45678'); + $I->assertEquals($entity->address, 'hello'); + } + + public function testFormValidatorEntityBindSetters(IntegrationTester $I) + { + //Second element + $address = new Text('address'); + + $address->addValidator(new PresenceOf([ + 'message' => 'The address is required', + ])); + + $telephone = new Text("telephone"); + + $telephone->addValidator(new PresenceOf([ + 'message' => 'The telephone is required', + ])); + + $entity = new ContactFormSettersGetters(); + + $form = new Form(); + + $form->add($address); + $form->add($telephone); + + $form->bind([ + 'telephone' => '+44 123 45678', + 'address' => 'hello', + ], $entity); + + $I->assertTrue($form->isValid()); + + $I->assertEquals($entity->getTelephone(), '+44 123 45678'); + $I->assertEquals($entity->getAddress(), 'hello'); + } + + public function testCorrectlyAddOptionToSelectElementIfParameterIsAnArray(IntegrationTester $I) + { + $element = new Select('test-select'); + $element->addOption(['key' => 'value']); + + $I->assertEquals( + '', + preg_replace('/[[:cntrl:]]/', '', $element->render()) + ); + } + + public function testCorrectlyAddOptionToSelectElementIfParameterIsAString(IntegrationTester $I) + { + $element = new Select('test-select'); + $element->addOption('value'); + + $I->assertEquals( + '', + preg_replace('/[[:cntrl:]]/', '', $element->render()) + ); + } + + public function testElementAppendMessage(IntegrationTester $I) + { + $element = new Select('test-select'); + $element->appendMessage(new Message('')); + } +} diff --git a/tests/integration/Forms/Manager/CreateCest.php b/tests/integration/Forms/Manager/CreateCest.php new file mode 100644 index 00000000000..79b12e102e8 --- /dev/null +++ b/tests/integration/Forms/Manager/CreateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Manager; + +use IntegrationTester; + +class CreateCest +{ + /** + * Tests Phalcon\Forms\Manager :: create() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsManagerCreate(IntegrationTester $I) + { + $I->wantToTest("Forms\Manager - create()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Manager/GetCest.php b/tests/integration/Forms/Manager/GetCest.php new file mode 100644 index 00000000000..b6f582b0901 --- /dev/null +++ b/tests/integration/Forms/Manager/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Manager; + +use IntegrationTester; + +class GetCest +{ + /** + * Tests Phalcon\Forms\Manager :: get() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsManagerGet(IntegrationTester $I) + { + $I->wantToTest("Forms\Manager - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Manager/HasCest.php b/tests/integration/Forms/Manager/HasCest.php new file mode 100644 index 00000000000..4aa0bfb72bc --- /dev/null +++ b/tests/integration/Forms/Manager/HasCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Manager; + +use IntegrationTester; + +class HasCest +{ + /** + * Tests Phalcon\Forms\Manager :: has() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsManagerHas(IntegrationTester $I) + { + $I->wantToTest("Forms\Manager - has()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Forms/Manager/SetCest.php b/tests/integration/Forms/Manager/SetCest.php new file mode 100644 index 00000000000..7f8072d02ba --- /dev/null +++ b/tests/integration/Forms/Manager/SetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Forms\Manager; + +use IntegrationTester; + +class SetCest +{ + /** + * Tests Phalcon\Forms\Manager :: set() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function formsManagerSet(IntegrationTester $I) + { + $I->wantToTest("Forms\Manager - set()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/ApplicationCest.php b/tests/integration/Mvc/ApplicationCest.php index 7e6f082a9c3..2c65f382633 100644 --- a/tests/integration/Mvc/ApplicationCest.php +++ b/tests/integration/Mvc/ApplicationCest.php @@ -2,22 +2,22 @@ namespace Phalcon\Test\Integration\Mvc; -use Phalcon\Di; use IntegrationTester; -use Phalcon\Mvc\View; -use Phalcon\Mvc\Router; -use Phalcon\Mvc\Application; +use Phalcon\Di; use Phalcon\Di\FactoryDefault; +use Phalcon\Mvc\Application; +use Phalcon\Mvc\Router; +use Phalcon\Mvc\View; /** * \Phalcon\Test\Integration\Mvc\ApplicationCest * Tests the Phalcon\Mvc\Application component * * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez - * @author Serghei Iakovlev - * @package Phalcon\Test\Integration\Mvc + * @link http://www.phalconphp.com + * @author Andres Gutierrez + * @author Phalcon Team + * @package Phalcon\Test\Integration\Mvc * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file LICENSE.txt @@ -30,12 +30,13 @@ class ApplicationCest { public function singleModule(IntegrationTester $I) { + $I->skipTest('TODO - Check me'); $I->wantTo('handle request and get content by using single modules strategy'); $di = new FactoryDefault(); $di->set('view', function () { $view = new View(); - $view->setViewsDir(PATH_DATA . 'views/'); + $view->setViewsDir(dataFolder('fixtures/views/')); return $view; }, true); @@ -43,7 +44,7 @@ public function singleModule(IntegrationTester $I) $application = new Application(); $application->setDI($di); - $response = $application->handle("/test2"); + $response = $application->handle("/micro"); $I->assertEquals('We are here' . PHP_EOL, $response->getContent()); } @@ -61,7 +62,7 @@ public function modulesDefinition(IntegrationTester $I) $router->add('/index', [ 'controller' => 'index', 'module' => 'frontend', - 'namespace' => 'Phalcon\Test\Modules\Frontend\Controllers' + 'namespace' => 'Phalcon\Test\Modules\Frontend\Controllers', ]); return $router; @@ -71,11 +72,11 @@ public function modulesDefinition(IntegrationTester $I) $application->registerModules([ 'frontend' => [ - 'path' => PATH_DATA . 'modules/frontend/Module.php', + 'path' => dataFolder('fixtures/modules/frontend/Module.php'), 'className' => 'Phalcon\Test\Modules\Frontend\Module', ], - 'backend' => [ - 'path' => PATH_DATA . 'modules/backend/Module.php', + 'backend' => [ + 'path' => dataFolder('fixtures/modules/backend/Module.php'), 'className' => 'Phalcon\Test\Modules\Backend\Module', ], ]); @@ -100,33 +101,33 @@ public function modulesClosure(IntegrationTester $I) $router->add('/index', [ 'controller' => 'index', 'module' => 'frontend', - 'namespace' => 'Phalcon\Test\Modules\Frontend\Controllers' + 'namespace' => 'Phalcon\Test\Modules\Frontend\Controllers', ]); $router->add('/login', [ 'controller' => 'login', 'module' => 'backend', - 'namespace' => 'Phalcon\Test\Modules\Backend\Controllers' + 'namespace' => 'Phalcon\Test\Modules\Backend\Controllers', ]); return $router; }); $application = new Application(); - $view = new View(); + $view = new View(); $application->registerModules([ 'frontend' => function ($di) use ($view) { /** @var \Phalcon\DiInterface $di */ $di->set('view', function () use ($view) { - $view->setViewsDir(PATH_DATA . 'modules/frontend/views/'); + $view->setViewsDir(dataFolder('fixtures/modules/frontend/views/')); return $view; }); }, - 'backend' => function ($di) use ($view) { + 'backend' => function ($di) use ($view) { /** @var \Phalcon\DiInterface $di */ $di->set('view', function () use ($view) { - $view->setViewsDir(PATH_DATA . 'modules/backend/views/'); + $view->setViewsDir(dataFolder('fixtures/modules/backend/views/')); return $view; }); }, diff --git a/tests/integration/Mvc/Collection/BehaviorCest.php b/tests/integration/Mvc/Collection/BehaviorCest.php index 5d5dd42e8c6..cce7fc6fdca 100644 --- a/tests/integration/Mvc/Collection/BehaviorCest.php +++ b/tests/integration/Mvc/Collection/BehaviorCest.php @@ -2,19 +2,19 @@ namespace Phalcon\Test\Integration\Mvc\Collection; -use Helper\CollectionTrait; use IntegrationTester; use Phalcon\Test\Collections\Subs; +use Phalcon\Test\Fixtures\Traits\CollectionTrait; /** * \Phalcon\Test\Integration\Mvc\Collection\BehaviorCest * Tests the Phalcon\Mvc\Collection component * * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez - * @author Serghei Iakovlev - * @package Phalcon\Test\Integration\Mvc + * @link http://www.phalconphp.com + * @author Andres Gutierrez + * @author Phalcon Team + * @package Phalcon\Test\Integration\Mvc * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file LICENSE.txt @@ -34,14 +34,14 @@ public function behaviors(IntegrationTester $I) $I->wantToTest('using behaviors with collections'); // Timestampable - $subscriber = new Subs(); - $subscriber->email = 'some@some.com'; + $subscriber = new Subs(); + $subscriber->email = 'some@some.com'; $subscriber->status = 'I'; $I->assertTrue($subscriber->save()); $I->assertEquals(1, preg_match('/[0-9]{4}-[0-9]{2}-[0-9]{2}/', $subscriber->created_at)); // Soft delete - $total = Subs::count(); + $total = Subs::count(); $subscriber = Subs::findFirst(); $I->assertTrue($subscriber->delete()); $I->assertEquals($subscriber->status, 'D'); diff --git a/tests/integration/Mvc/ControllersCest.php b/tests/integration/Mvc/ControllersCest.php index 387880bce64..4780f83b251 100644 --- a/tests/integration/Mvc/ControllersCest.php +++ b/tests/integration/Mvc/ControllersCest.php @@ -2,24 +2,23 @@ namespace Phalcon\Test\Integration\Mvc; -use Phalcon\Di; -use Phalcon\Test\Integration\Mvc\Model\BinderCest; -use Test4Controller; use IntegrationTester; +use Phalcon\Di; use Phalcon\Mvc\Dispatcher; use Phalcon\Mvc\Model\Manager; -use Phalcon\Test\Models\People; use Phalcon\Mvc\Model\Metadata\Memory; +use Phalcon\Test\Controllers\ViewRequestController; +use Test4Controller; /** * \Phalcon\Test\Integration\Mvc\ControllerCest * Tests the Phalcon\Mvc\Controller component * * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez - * @author Serghei Iakovlev - * @package Phalcon\Test\Integration\Mvc + * @link http://www.phalconphp.com + * @author Andres Gutierrez + * @author Phalcon Team + * @package Phalcon\Test\Integration\Mvc * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file LICENSE.txt @@ -53,7 +52,7 @@ public function _before(IntegrationTester $I) public function testControllers(IntegrationTester $I) { - $controller = new Test4Controller; + $controller = new ViewRequestController(); $controller->setDI(Di::getDefault()); $view = Di::getDefault()->getShared('view'); diff --git a/tests/integration/Mvc/Dispatcher/DispatcherAfterDispatchCest.php b/tests/integration/Mvc/Dispatcher/DispatcherAfterDispatchCest.php new file mode 100644 index 00000000000..0040d7ad9eb --- /dev/null +++ b/tests/integration/Mvc/Dispatcher/DispatcherAfterDispatchCest.php @@ -0,0 +1,270 @@ + + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file docs/LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class DispatcherAfterDispatchCest extends BaseDispatcher +{ + /** + * Tests the forwarding in the afterDispatch event + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterDispatchForwardOnce(IntegrationTester $I) + { + $forwarded = false; + $dispatcher = $this->getDispatcher(); + + $dispatcher->getEventsManager()->attach( + 'dispatch:afterDispatch', + function ($event, $dispatcher) use (&$forwarded) { + if ($forwarded === false) { + $dispatcher->forward(['action' => 'index2']); + $forwarded = true; + } + } + ) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'index2Action', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests returning false inside a afterDispatch event. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterDispatchReturnFalse(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + + $dispatcher->getEventsManager()->attach( + 'dispatch:afterDispatch', + function () use ($dispatcherListener) { + $dispatcherListener->trace('afterDispatch: custom return false'); + return false; + } + ) + ; + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatch: custom return false', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exception handling to ensure exceptions can be properly handled + * when thrown from inside an "afterDispatch" event and then ensure the + * exception is not bubbled when returning with false. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterDispatchWithBeforeExceptionReturningFalse(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + + $dispatcher->getEventsManager()->attach('dispatch:afterDispatch', function () { + throw new Exception('afterDispatch exception occurred'); + }) + ; + $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () { + return false; + }) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'beforeException: afterDispatch exception occurred', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exception handling to ensure exceptions can be properly handled + * via beforeException event and then will properly bubble up the stack if + * anything other than false is returned. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterDispatchWithBeforeExceptionBubble(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + + $dispatcher->getEventsManager()->attach( + 'dispatch:afterDispatch', + function () { + throw new Exception('afterDispatch exception occurred'); + } + ) + ; + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeException', + function () use ($dispatcherListener) { + $dispatcherListener->trace('beforeException: custom before exception bubble'); + return null; + } + ) + ; + + $caughtException = false; + try { + $dispatcher->dispatch(); + } catch (Exception $exception) { + $caughtException = true; + } + + $I->assertTrue($caughtException); + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'beforeException: afterDispatch exception occurred', + 'beforeException: custom before exception bubble', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests dispatch forward handling inside the beforeException when a + * afterDispatch exception occurs. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterDispatchWithBeforeExceptionForwardOnce(IntegrationTester $I) + { + $forwarded = false; + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + + $dispatcher->getEventsManager()->attach('dispatch:afterDispatch', function () use (&$forwarded) { + if ($forwarded === false) { + $forwarded = true; + throw new Exception('afterDispatch exception occurred'); + } + }) + ; + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeException', + function ($event, $dispatcher) use ($dispatcherListener) { + $dispatcherListener->trace('beforeException: custom before exception forward'); + $dispatcher->forward(['action' => 'index2']); + } + ) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'beforeException: afterDispatch exception occurred', + 'beforeException: custom before exception forward', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'index2Action', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Mvc/Dispatcher/DispatcherAfterDispatchLoopCest.php b/tests/integration/Mvc/Dispatcher/DispatcherAfterDispatchLoopCest.php new file mode 100644 index 00000000000..2b37a81efb9 --- /dev/null +++ b/tests/integration/Mvc/Dispatcher/DispatcherAfterDispatchLoopCest.php @@ -0,0 +1,271 @@ + + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file docs/LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class DispatcherAfterDispatchLoopCest extends BaseDispatcher +{ + /** + * Tests the forwarding in the afterDispatchLoop event + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterDispatchLoopForward(IntegrationTester $I) + { + $forwarded = false; + $dispatcher = $this->getDispatcher(); + + $dispatcher->getEventsManager()->attach( + 'dispatch:afterDispatchLoop', + function ($event, $dispatcher) use (&$forwarded) { + if ($forwarded === false) { + $dispatcher->forward(['action' => 'index2']); + $forwarded = true; + } + } + ) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests returning false inside an afterDispatchLoop event. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterDispatchLoopReturnFalse(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + + $dispatcher->getEventsManager()->attach( + 'dispatch:afterDispatchLoop', + function () use ($dispatcherListener) { + $dispatcherListener->trace('afterDispatchLoop: custom return false'); + return false; + } + ) + ; + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + 'afterDispatchLoop: custom return false', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exception handling to ensure exceptions can be properly handled + * when thrown from inside an "afterDispatchLoop" event and then ensure the + * exception is not bubbled when returning with false. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterDispatchLoopWithBeforeExceptionReturningFalse(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcher->getEventsManager()->attach( + 'dispatch:afterDispatchLoop', + function () { + throw new Exception('afterDispatch exception occurred'); + } + ) + ; + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeException', + function () { + return false; + } + ) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + 'beforeException: afterDispatch exception occurred', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exception handling to ensure exceptions can be properly handled + * via beforeException event and then will properly bubble up the stack if + * anything other than false is returned. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterDispatchLoopWithBeforeExceptionBubble(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + + $dispatcher->getEventsManager()->attach( + 'dispatch:afterDispatchLoop', + function () { + throw new Exception('afterDispatchLoop exception occurred'); + } + ) + ; + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeException', + function () use ($dispatcherListener) { + $dispatcherListener->trace('beforeException: custom before exception bubble'); + return null; + } + ) + ; + + $caughtException = false; + try { + $dispatcher->dispatch(); + } catch (Exception $exception) { + $caughtException = true; + } + + $I->assertTrue($caughtException); + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + 'beforeException: afterDispatchLoop exception occurred', + 'beforeException: custom before exception bubble', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests dispatch forward handling inside the beforeException when an + * exception occurs in an "afterDispatchLoop" event. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterDispatchLoopWithBeforeExceptionForwardOnce(IntegrationTester $I) + { + $forwarded = false; + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + + $dispatcher->getEventsManager()->attach( + 'dispatch:afterDispatchLoop', + function () use (&$forwarded) { + if ($forwarded === false) { + $forwarded = true; + throw new Exception('afterDispatchLoop exception occurred'); + } + } + ) + ; + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeException', + function ($event, $dispatcher) use ($dispatcherListener) { + $dispatcherListener->trace('beforeException: custom before exception forward'); + $dispatcher->forward(['action' => 'index2']); + } + ) + ; + + $caughtException = false; + try { + $dispatcher->dispatch(); + } catch (Exception $exception) { + $caughtException = true; + } + + $I->assertTrue($caughtException); + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + 'beforeException: afterDispatchLoop exception occurred', + 'beforeException: custom before exception forward', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Mvc/Dispatcher/DispatcherAfterExecuteRouteCest.php b/tests/integration/Mvc/Dispatcher/DispatcherAfterExecuteRouteCest.php new file mode 100644 index 00000000000..c5155a64e38 --- /dev/null +++ b/tests/integration/Mvc/Dispatcher/DispatcherAfterExecuteRouteCest.php @@ -0,0 +1,254 @@ + + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file docs/LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class DispatcherAfterExecuteRouteCest extends BaseDispatcher +{ + /** + * Tests the forwarding in the afterExecuteRoute event + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterExecuteRouteForwardOnce(IntegrationTester $I) + { + $forwarded = false; + $dispatcher = $this->getDispatcher(); + + $dispatcher->getEventsManager()->attach( + 'dispatch:afterExecuteRoute', + function ($event, $dispatcher) use (&$forwarded) { + if ($forwarded === false) { + $dispatcher->forward(['action' => 'index2']); + $forwarded = true; + } + } + ) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'index2Action', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests returning false inside a afterExecuteRoute event. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterExecuteRouteReturnFalse(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + + $dispatcher->getEventsManager()->attach( + 'dispatch:afterExecuteRoute', + function () use ($dispatcherListener) { + $dispatcherListener->trace('afterExecuteRoute: custom return false'); + return false; + } + ) + ; + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute: custom return false', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exception handling to ensure exceptions can be properly handled + * when thrown from inside a afterExecuteRoute event and then ensure the + * exception is not bubbled when returning with false. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterExecuteRouteWithBeforeExceptionReturningFalse(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + + $dispatcher->getEventsManager()->attach('dispatch:afterExecuteRoute', function () { + throw new Exception('afterExecuteRoute exception occurred'); + }) + ; + $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () { + return false; + }) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'beforeException: afterExecuteRoute exception occurred', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exception handling to ensure exceptions can be properly handled + * via beforeException event and then will properly bubble up the stack if + * anything other than false is returned. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterExecuteRouteWithBeforeExceptionBubble(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + + $dispatcher->getEventsManager()->attach('dispatch:afterExecuteRoute', function () { + throw new Exception('afterExecuteRoute exception occurred'); + }) + ; + $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () use ($dispatcherListener) { + $dispatcherListener->trace('beforeException: custom before exception bubble'); + return null; + }) + ; + + $caughtException = false; + try { + $dispatcher->dispatch(); + } catch (Exception $exception) { + $caughtException = true; + } + + $I->assertTrue($caughtException); + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'beforeException: afterExecuteRoute exception occurred', + 'beforeException: custom before exception bubble', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests dispatch forward handling inside the beforeException when a + * afterExecuteRoute exception occurs. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterExecuteRouteWithBeforeExceptionForwardOnce(IntegrationTester $I) + { + $forwarded = false; + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + + $dispatcher->getEventsManager()->attach('dispatch:afterExecuteRoute', function () use (&$forwarded) { + if ($forwarded === false) { + $forwarded = true; + throw new Exception('afterExecuteRoute exception occurred'); + } + }) + ; + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeException', + function ($event, $dispatcher) use ($dispatcherListener) { + $dispatcherListener->trace('beforeException: custom before exception forward'); + $dispatcher->forward(['action' => 'index2']); + } + ) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'beforeException: afterExecuteRoute exception occurred', + 'beforeException: custom before exception forward', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'index2Action', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Mvc/Dispatcher/DispatcherAfterExecuteRouteMethodCest.php b/tests/integration/Mvc/Dispatcher/DispatcherAfterExecuteRouteMethodCest.php new file mode 100644 index 00000000000..46c311425d8 --- /dev/null +++ b/tests/integration/Mvc/Dispatcher/DispatcherAfterExecuteRouteMethodCest.php @@ -0,0 +1,231 @@ + + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file docs/LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class DispatcherAfterExecuteRouteMethodCest extends BaseDispatcher +{ + /** + * Tests the forwarding in the afterExecuteRoute event + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterExecuteRouteForwardOnce(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcher->setControllerName('dispatcher-test-after-execute-route-forward'); + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests returning false inside a afterExecuteRoute event. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterExecuteRouteReturnFalse(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcher->setControllerName('dispatcher-test-after-execute-route-return-false'); + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exception handling to ensure exceptions can be properly handled + * when thrown from inside a afterExecuteRoute event and then ensure the + * exception is not bubbled when returning with false. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterExecuteRouteWithBeforeExceptionReturningFalse(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcher->setControllerName('dispatcher-test-after-execute-route-exception'); + + $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () { + return false; + }) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'beforeException: afterExecuteRoute exception occurred', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exception handling to ensure exceptions can be properly handled + * via beforeException event and then will properly bubble up the stack if + * anything other than false is returned. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterExecuteRouteWithBeforeExceptionBubble(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + $dispatcher->setControllerName('dispatcher-test-after-execute-route-exception'); + + $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () use ($dispatcherListener) { + $dispatcherListener->trace('beforeException: custom before exception bubble'); + return null; + }) + ; + + $caughtException = false; + try { + $dispatcher->dispatch(); + } catch (Exception $exception) { + $caughtException = true; + } + + $I->assertTrue($caughtException); + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'beforeException: afterExecuteRoute exception occurred', + 'beforeException: custom before exception bubble', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests dispatch forward handling inside the beforeException when a + * afterExecuteRoute exception occurs. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterExecuteRouteWithBeforeExceptionForwardOnce(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + $dispatcher->setControllerName('dispatcher-test-after-execute-route-exception'); + + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeException', + function ($event, $dispatcher) use ($dispatcherListener) { + $dispatcherListener->trace('beforeException: custom before exception forward'); + $dispatcher->forward([ + 'controller' => 'dispatcher-test-default', + 'action' => 'index', + ]); + } + ) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'beforeException: afterExecuteRoute exception occurred', + 'beforeException: custom before exception forward', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Mvc/Dispatcher/DispatcherAfterInitializeCest.php b/tests/integration/Mvc/Dispatcher/DispatcherAfterInitializeCest.php new file mode 100644 index 00000000000..d8cb4a24024 --- /dev/null +++ b/tests/integration/Mvc/Dispatcher/DispatcherAfterInitializeCest.php @@ -0,0 +1,247 @@ + + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file docs/LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class DispatcherAfterInitializeCest extends BaseDispatcher +{ + /** + * Tests the forwarding in the afterInitialize event + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterInitializeForwardOnce(IntegrationTester $I) + { + $forwarded = false; + $dispatcher = $this->getDispatcher(); + + $dispatcher->getEventsManager()->attach( + 'dispatch:afterInitialize', + function ($event, $dispatcher) use (&$forwarded) { + if ($forwarded === false) { + $dispatcher->forward(['action' => 'index2']); + $forwarded = true; + } + } + ) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'index2Action', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests returning false inside a afterInitialize event. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterInitializeReturnFalse(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + + $dispatcher->getEventsManager()->attach( + 'dispatch:afterInitialize', + function () use ($dispatcherListener) { + $dispatcherListener->trace('afterInitialize: custom return false'); + return false; + } + ) + ; + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'afterInitialize: custom return false', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exception handling to ensure exceptions can be properly handled + * when thrown from inside a afterInitialize event and then ensure the + * exception is not bubbled when returning with false. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterInitializeWithBeforeExceptionReturningFalse(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + + $dispatcher->getEventsManager()->attach('dispatch:afterInitialize', function () { + throw new Exception('afterInitialize exception occurred'); + }) + ; + $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () { + return false; + }) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'beforeException: afterInitialize exception occurred', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exception handling to ensure exceptions can be properly handled + * via beforeException event and then will properly bubble up the stack if + * anything other than false is returned. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterInitializeWithBeforeExceptionBubble(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + + $dispatcher->getEventsManager()->attach('dispatch:afterInitialize', function () { + throw new Exception('afterInitialize exception occurred'); + }) + ; + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeException', + function () use ($dispatcherListener) { + $dispatcherListener->trace('beforeException: custom before exception bubble'); + return null; + } + ) + ; + + $caughtException = false; + try { + $dispatcher->dispatch(); + } catch (Exception $exception) { + $caughtException = true; + } + + $I->assertTrue($caughtException); + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'beforeException: afterInitialize exception occurred', + 'beforeException: custom before exception bubble', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests dispatch forward handling inside the beforeException when a + * afterInitialize exception occurs. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testAfterInitializeWithBeforeExceptionForwardOnce(IntegrationTester $I) + { + $forwarded = false; + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + + $dispatcher->getEventsManager()->attach('dispatch:afterInitialize', function () use (&$forwarded) { + if ($forwarded === false) { + $forwarded = true; + throw new Exception('afterInitialize exception occurred'); + } + }) + ; + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeException', + function ($event, $dispatcher) use ($dispatcherListener) { + $dispatcherListener->trace('beforeException: custom before exception forward'); + $dispatcher->forward(['action' => 'index2']); + } + ) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'beforeException: afterInitialize exception occurred', + 'beforeException: custom before exception forward', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'index2Action', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Mvc/Dispatcher/DispatcherBeforeDispatchCest.php b/tests/integration/Mvc/Dispatcher/DispatcherBeforeDispatchCest.php new file mode 100644 index 00000000000..9c7b36d6be9 --- /dev/null +++ b/tests/integration/Mvc/Dispatcher/DispatcherBeforeDispatchCest.php @@ -0,0 +1,228 @@ + + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file docs/LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class DispatcherBeforeDispatchCest extends BaseDispatcher +{ + /** + * Tests the forwarding in the beforeDispatch event + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeDispatchForwardOnce(IntegrationTester $I) + { + $forwarded = false; + $dispatcher = $this->getDispatcher(); + + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeDispatch', + function ($event, $dispatcher) use (&$forwarded) { + if ($forwarded === false) { + $dispatcher->forward(['action' => 'index2']); + $forwarded = true; + } + } + ) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'index2Action', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests returning false inside a beforeDispatch event. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeDispatchReturnFalse(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeDispatch', + function () use ($dispatcherListener) { + $dispatcherListener->trace('beforeDispatch: custom return false'); + return false; + } + ) + ; + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeDispatch: custom return false', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exception handling to ensure exceptions can be properly handled + * when thrown from inside a beforeDispatchLoop event and then ensure the + * exception is not bubbled when returning with false. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeDispatchWithBeforeExceptionReturningFalse(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + + $dispatcher->getEventsManager()->attach('dispatch:beforeDispatch', function () { + throw new Exception('beforeDispatch exception occurred'); + }) + ; + $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () { + return false; + }) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeException: beforeDispatch exception occurred', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exception handling to ensure exceptions can be properly handled + * via beforeException event and then will properly bubble up the stack if + * anything other than false is returned. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeDispatchWithBeforeExceptionBubble(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + + $dispatcher->getEventsManager()->attach('dispatch:beforeDispatch', function () { + throw new Exception('beforeDispatch exception occurred'); + }) + ; + $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () use ($dispatcherListener) { + $dispatcherListener->trace('beforeException: custom before exception bubble'); + return null; + }) + ; + + $caughtException = false; + try { + $dispatcher->dispatch(); + } catch (Exception $exception) { + $caughtException = true; + } + + $I->assertTrue($caughtException); + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeException: beforeDispatch exception occurred', + 'beforeException: custom before exception bubble', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests dispatch forward handling inside the beforeException when a + * beforeDispatch exception occurs. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeDispatchWithBeforeExceptionForwardOnce(IntegrationTester $I) + { + $forwarded = false; + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + + $dispatcher->getEventsManager()->attach('dispatch:beforeDispatch', function () use (&$forwarded) { + if ($forwarded === false) { + $forwarded = true; + throw new Exception('beforeDispatch exception occurred'); + } + }) + ; + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeException', + function ($event, $dispatcher) use ($dispatcherListener) { + $dispatcherListener->trace('beforeException: custom before exception forward'); + $dispatcher->forward(['action' => 'index2']); + } + ) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeException: beforeDispatch exception occurred', + 'beforeException: custom before exception forward', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'index2Action', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Mvc/Dispatcher/DispatcherBeforeDispatchLoopCest.php b/tests/integration/Mvc/Dispatcher/DispatcherBeforeDispatchLoopCest.php new file mode 100644 index 00000000000..d9748b432fa --- /dev/null +++ b/tests/integration/Mvc/Dispatcher/DispatcherBeforeDispatchLoopCest.php @@ -0,0 +1,301 @@ + + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file docs/LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class DispatcherBeforeDispatchLoopCest extends BaseDispatcher +{ + /** + * Tests the forwarding in the beforeDispatchLoop event + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeDispatchLoopForward(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeDispatchLoop', + function ($event, $dispatcher) { + $dispatcher->forward(['action' => 'index2']); + } + ) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'index2Action', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests returning false inside a beforeDispatchLoop event. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeDispatchLoopReturnFalse(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + + $dispatcher->getEventsManager()->attach('dispatch:beforeDispatchLoop', function () { + return false; + }) + ; + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests returning false inside a beforeDispatchLoop event with + * multiple returned items in event listeners. + * + * Currently, we only value the return from the last item; therefore, for + * libraries and plugins that hook into dispatcher events that need to + * cancel the event, the event should additionally be stopped() to ensure + * proper flow. + * + * This test case SHOULD be altered in 4.0 along with any other + * corresponding documentation changes for stopping. E.g. switching to + * event->stop() opposed to returning false. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeDispatchLoopBaselinePrePhalcon40MultipleReturnFalseMixed(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + + $dispatcher->getEventsManager()->attach('dispatch:beforeDispatchLoop', function () { + return false; + }) + ; + // Unfortunately, we really need to collect all responses or use the Event stopping property + // instead of return false. The following statement breaks the ability to stop the chain. + + $dispatcher->getEventsManager()->attach('dispatch:beforeDispatchLoop', function () { + return true; + }) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests returning false inside a beforeDispatchLoop event with + * multiple returned items in event listeners. + * + * Currently, we only value the return from the last item; therefore, for + * libraries and plugins that hook into dispatcher events that need to + * cancel the event, the event should additionally be stopped() to ensure + * proper flow. + * + * This test case SHOULD be altered in 4.0 along with any other + * corresponding documentation changes for stopping. E.g. switching to + * event->stop() opposed to returning false. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeDispatchLoopBaselinePrePhalcon40MultipleReturnFalse(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + + $dispatcher->getEventsManager()->attach('dispatch:beforeDispatchLoop', function () { + return false; + }) + ; + // Unfortunately, we really need to collect all responses or use the Event stopping property + // instead of return false. The following statement breaks the ability to stop the chain. + $dispatcher->getEventsManager()->attach('dispatch:beforeDispatchLoop', function () { + return false; + }) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exception handling to ensure exceptions can be properly handled + * when thrown from inside a beforeDispatchLoop event and then ensure the + * exception is not bubbled when returning with false. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeDispatchLoopWithBeforeExceptionReturningFalse(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + + $dispatcher->getEventsManager()->attach('dispatch:beforeDispatchLoop', function () { + throw new Exception('beforeDispatchLoop exception occurred'); + }) + ; + $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () { + return false; + }) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeException: beforeDispatchLoop exception occurred', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exception handling to ensure exceptions can be properly handled + * via beforeException event and then will properly bubble up the stack if + * anything other than false is returned. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeDispatchLoopWithBeforeExceptionBubble(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + + $dispatcher->getEventsManager()->attach('dispatch:beforeDispatchLoop', function () { + throw new Exception('beforeDispatchLoop exception occurred'); + }) + ; + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeException', + function () use ($dispatcherListener) { + $dispatcherListener->trace('beforeException: custom before exception bubble'); + return null; + } + ) + ; + + $caughtException = false; + try { + $dispatcher->dispatch(); + } catch (Exception $exception) { + $caughtException = true; + } + + $I->assertTrue($caughtException); + $expected = [ + 'beforeDispatchLoop', + 'beforeException: beforeDispatchLoop exception occurred', + 'beforeException: custom before exception bubble', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests dispatch forward handling inside the beforeException when a + * beforeDispatchLoop exception occurs. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeDispatchLoopWithBeforeExceptionForward(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + + $dispatcher->getEventsManager()->attach('dispatch:beforeDispatchLoop', function () { + throw new Exception('beforeDispatchLoop exception occurred'); + }) + ; + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeException', + function ($event, $dispatcher) use ($dispatcherListener) { + $dispatcherListener->trace('beforeException: custom before exception forward'); + $dispatcher->forward(['action' => 'index2']); + } + ) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeException: beforeDispatchLoop exception occurred', + 'beforeException: custom before exception forward', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'index2Action', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Mvc/Dispatcher/DispatcherBeforeExecuteRouteCest.php b/tests/integration/Mvc/Dispatcher/DispatcherBeforeExecuteRouteCest.php new file mode 100644 index 00000000000..afdc130f493 --- /dev/null +++ b/tests/integration/Mvc/Dispatcher/DispatcherBeforeExecuteRouteCest.php @@ -0,0 +1,236 @@ + + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file docs/LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class DispatcherBeforeExecuteRouteCest extends BaseDispatcher +{ + /** + * Tests the forwarding in the beforeExecuteRoute event + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeExecuteRouteForwardOnce(IntegrationTester $I) + { + $forwarded = false; + $dispatcher = $this->getDispatcher(); + + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeExecuteRoute', + function ($event, $dispatcher) use (&$forwarded) { + if ($forwarded === false) { + $dispatcher->forward(['action' => 'index2']); + $forwarded = true; + } + } + ) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'index2Action', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests returning false inside a beforeExecuteRoute event. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeExecuteRouteReturnFalse(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeExecuteRoute', + function () use ($dispatcherListener) { + $dispatcherListener->trace('beforeExecuteRoute: custom return false'); + return false; + } + ) + ; + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute: custom return false', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exception handling to ensure exceptions can be properly handled + * when thrown from inside a beforeExecuteRoute event and then ensure the + * exception is not bubbled when returning with false. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeExecuteRouteWithBeforeExceptionReturningFalse(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + + $dispatcher->getEventsManager()->attach('dispatch:beforeExecuteRoute', function () { + throw new Exception('beforeExecuteRoute exception occurred'); + }) + ; + $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () { + return false; + }) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeException: beforeExecuteRoute exception occurred', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exception handling to ensure exceptions can be properly handled + * via beforeException event and then will properly bubble up the stack if + * anything other than false is returned. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeExecuteRouteWithBeforeExceptionBubble(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + + $dispatcher->getEventsManager()->attach('dispatch:beforeExecuteRoute', function () { + throw new Exception('beforeExecuteRoute exception occurred'); + }) + ; + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeException', + function () use ($dispatcherListener) { + $dispatcherListener->trace('beforeException: custom before exception bubble'); + return null; + } + ) + ; + + $caughtException = false; + try { + $dispatcher->dispatch(); + } catch (Exception $exception) { + $caughtException = true; + } + + $I->assertTrue($caughtException); + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeException: beforeExecuteRoute exception occurred', + 'beforeException: custom before exception bubble', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests dispatch forward handling inside the beforeException when a + * beforeExecuteRoute exception occurs. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeExecuteRouteWithBeforeExceptionForwardOnce(IntegrationTester $I) + { + $forwarded = false; + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + + $dispatcher->getEventsManager()->attach('dispatch:beforeExecuteRoute', function () use (&$forwarded) { + if ($forwarded === false) { + $forwarded = true; + throw new Exception('beforeExecuteRoute exception occurred'); + } + }) + ; + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeException', + function ($event, $dispatcher) use ($dispatcherListener) { + $dispatcherListener->trace('beforeException: custom before exception forward'); + $dispatcher->forward(['action' => 'index2']); + } + ) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeException: beforeExecuteRoute exception occurred', + 'beforeException: custom before exception forward', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'index2Action', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Mvc/Dispatcher/DispatcherBeforeExecuteRouteMethodCest.php b/tests/integration/Mvc/Dispatcher/DispatcherBeforeExecuteRouteMethodCest.php new file mode 100644 index 00000000000..09c6784ee25 --- /dev/null +++ b/tests/integration/Mvc/Dispatcher/DispatcherBeforeExecuteRouteMethodCest.php @@ -0,0 +1,209 @@ + + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file docs/LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class DispatcherBeforeExecuteRouteMethodCest extends BaseDispatcher +{ + /** + * Tests the forwarding in the beforeExecuteRoute method + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeExecuteRouteForwardOnce(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcher->setControllerName('dispatcher-test-before-execute-route-forward'); + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests returning false inside a beforeExecuteRoute method. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeExecuteRouteReturnFalse(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcher->setControllerName('dispatcher-test-before-execute-route-return-false'); + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exception handling to ensure exceptions can be properly handled + * when thrown from inside a beforeExecuteRoute method and then ensure the + * exception is not bubbled when returning with false. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeExecuteRouteWithBeforeExceptionReturningFalse(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcher->setControllerName('dispatcher-test-before-execute-route-exception'); + + $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () { + return false; + }) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'beforeException: beforeExecuteRoute exception occurred', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exception handling to ensure exceptions can be properly handled + * via beforeException event and then will properly bubble up the stack if + * anything other than false is returned. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeExecuteRouteWithBeforeExceptionBubble(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + $dispatcher->setControllerName('dispatcher-test-before-execute-route-exception'); + + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeException', + function () use ($dispatcherListener) { + $dispatcherListener->trace('beforeException: custom before exception bubble'); + return null; + } + ) + ; + + $caughtException = false; + try { + $dispatcher->dispatch(); + } catch (Exception $exception) { + $caughtException = true; + } + + $I->assertTrue($caughtException); + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'beforeException: beforeExecuteRoute exception occurred', + 'beforeException: custom before exception bubble', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests dispatch forward handling inside the beforeException when a + * beforeExecuteRoute method exception occurs. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testBeforeExecuteRouteWithBeforeExceptionForward(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + $dispatcher->setControllerName('dispatcher-test-before-execute-route-exception'); + + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeException', + function ($event, $dispatcher) use ($dispatcherListener) { + $dispatcherListener->trace('beforeException: custom before exception forward'); + $dispatcher->forward([ + 'controller' => 'dispatcher-test-default', + 'action' => 'index', + ]); + } + ) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'beforeException: beforeExecuteRoute exception occurred', + 'beforeException: custom before exception forward', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Mvc/Dispatcher/DispatcherCest.php b/tests/integration/Mvc/Dispatcher/DispatcherCest.php new file mode 100644 index 00000000000..3fd90359e0b --- /dev/null +++ b/tests/integration/Mvc/Dispatcher/DispatcherCest.php @@ -0,0 +1,867 @@ + + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file docs/LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class DispatcherCest extends BaseDispatcher +{ + /** + * Tests the default order of dispatch events for basic execution + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testDefaultDispatchLoopEvents(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $handler = $dispatcher->dispatch(); + + $expected = 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper'; + $actual = $dispatcher->getNamespaceName(); + $I->assertEquals($expected, $actual); + $expected = 'dispatcher-test-default'; + $actual = $dispatcher->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = 'index'; + $actual = $dispatcher->getActionName(); + $I->assertEquals($expected, $actual); + $expected = DispatcherTestDefaultController::class; + $actual = $dispatcher->getControllerClass(); + $I->assertEquals($expected, $actual); + $actual = $dispatcher->wasForwarded(); + $I->assertFalse($actual); + $class = DispatcherTestDefaultController::class; + $I->assertInstanceOf($class, $handler); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests the default order of dispatch events for basic execution with no + * custom method handlers + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testDefaultDispatchLoopEventsWithNoHandlers(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcher->setControllerName('dispatcher-test-default-simple'); + $handler = $dispatcher->dispatch(); + + $expected = 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper'; + $actual = $dispatcher->getNamespaceName(); + $I->assertEquals($expected, $actual); + $expected = 'dispatcher-test-default-simple'; + $actual = $dispatcher->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = 'index'; + $actual = $dispatcher->getActionName(); + $I->assertEquals($expected, $actual); + $expected = DispatcherTestDefaultSimpleController::class; + $actual = $dispatcher->getControllerClass(); + $I->assertEquals($expected, $actual); + $actual = $dispatcher->wasForwarded(); + $I->assertFalse($actual); + $class = DispatcherTestDefaultSimpleController::class; + $I->assertInstanceOf($class, $handler); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + // See https://github.com/phalcon/cphalcon/pull/13112 + // We now fire the `afterInitialize` for all cases even when the controller does not + // have the `initialize()` method + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests the forwarding inside a controller's action. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testControllerActionLocalForward(IntegrationTester $I) + { + $dummyParams = [ + 'param1' => 1, + 'param2' => 2, + ]; + + $dispatcher = $this->getDispatcher(); + $dispatcher->setControllerName('dispatcher-test-default'); + $dispatcher->setActionName('forwardLocal'); + $dispatcher->setParams($dummyParams); + $handler = $dispatcher->dispatch(); + + $expected = 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper'; + $actual = $dispatcher->getNamespaceName(); + $I->assertEquals($expected, $actual); + $expected = 'dispatcher-test-default'; + $actual = $dispatcher->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = 'index2'; + $actual = $dispatcher->getActionName(); + $I->assertEquals($expected, $actual); + $expected = $dummyParams; + $actual = $dispatcher->getParams(); + $I->assertEquals($expected, $actual); + $expected = DispatcherTestDefaultController::class; + $actual = $dispatcher->getControllerClass(); + $I->assertEquals($expected, $actual); + $actual = $dispatcher->wasForwarded(); + $I->assertTrue($actual); + $class = DispatcherTestDefaultController::class; + + $I->assertInstanceOf($class, $handler); + $class = DispatcherTestDefaultController::class; + $actual = $dispatcher->getActiveController(); + $I->assertInstanceOf($class, $actual); + $class = DispatcherTestDefaultController::class; + $actual = $dispatcher->getLastController(); + $I->assertInstanceOf($class, $actual); + + $actual = $dispatcher->wasForwarded(); + $I->assertTrue($actual); + + $expected = 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper'; + $actual = $dispatcher->getPreviousNamespaceName(); + $I->assertEquals($expected, $actual); + $expected = 'dispatcher-test-default'; + $actual = $dispatcher->getPreviousControllerName(); + $I->assertEquals($expected, $actual); + $expected = 'forwardLocal'; + $actual = $dispatcher->getPreviousActionName(); + $I->assertEquals($expected, $actual); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'forwardLocalAction', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'index2Action', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests the forwarding inside a controller's action. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testControllerActionExternalForward(IntegrationTester $I) + { + $dummyParams = [ + 'param1' => 1, + 'param2' => 2, + ]; + + $dispatcher = $this->getDispatcher(); + $dispatcher->setControllerName('dispatcher-test-default-two'); + $dispatcher->setActionName('forwardExternal'); + $dispatcher->setParams($dummyParams); + $handler = $dispatcher->dispatch(); + + $expected = 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper'; + $actual = $dispatcher->getNamespaceName(); + $I->assertEquals($expected, $actual); + $expected = 'dispatcher-test-default'; + $actual = $dispatcher->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = 'index'; + $actual = $dispatcher->getActionName(); + $I->assertEquals($expected, $actual); + $expected = $dummyParams; + $actual = $dispatcher->getParams(); + $I->assertEquals($expected, $actual); + $expected = DispatcherTestDefaultController::class; + $actual = $dispatcher->getControllerClass(); + $I->assertEquals($expected, $actual); + $actual = $dispatcher->wasForwarded(); + $I->assertTrue($actual); + $class = DispatcherTestDefaultController::class; + + $I->assertInstanceOf($class, $handler); + $class = DispatcherTestDefaultController::class; + $actual = $dispatcher->getActiveController(); + $I->assertInstanceOf($class, $actual); + $class = DispatcherTestDefaultController::class; + $actual = $dispatcher->getLastController(); + $I->assertInstanceOf($class, $actual); + + $actual = $dispatcher->wasForwarded(); + $I->assertTrue($actual); + + $expected = 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper'; + $actual = $dispatcher->getPreviousNamespaceName(); + $I->assertEquals($expected, $actual); + $expected = 'dispatcher-test-default-two'; + $actual = $dispatcher->getPreviousControllerName(); + $I->assertEquals($expected, $actual); + $expected = 'forwardExternal'; + $actual = $dispatcher->getPreviousActionName(); + $I->assertEquals($expected, $actual); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'forwardExternalAction', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests the string return value from a dispatcher + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testControllerActionReturnValueString(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcher->setActionName('returnString'); + $handler = $dispatcher->dispatch(); + + $expected = 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper'; + $actual = $dispatcher->getNamespaceName(); + $I->assertEquals($expected, $actual); + $expected = 'dispatcher-test-default'; + $actual = $dispatcher->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = 'returnString'; + $actual = $dispatcher->getActionName(); + $I->assertEquals($expected, $actual); + $expected = DispatcherTestDefaultController::RETURN_VALUE_STRING; + $actual = $dispatcher->getReturnedValue(); + $I->assertEquals($expected, $actual); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'returnStringAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests the int return value from a dispatcher + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testControllerActionReturnValueInt(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcher->setActionName('returnInt'); + $dispatcher->dispatch(); + + $expected = 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper'; + $actual = $dispatcher->getNamespaceName(); + $I->assertEquals($expected, $actual); + $expected = 'dispatcher-test-default'; + $actual = $dispatcher->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = 'returnInt'; + $actual = $dispatcher->getActionName(); + $I->assertEquals($expected, $actual); + $expected = DispatcherTestDefaultController::RETURN_VALUE_INT; + $actual = $dispatcher->getReturnedValue(); + $I->assertEquals($expected, $actual); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'returnIntAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests parameter passing and return value from the dispatcher + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testParamsAndReturnValue(IntegrationTester $I) + { + $multiply = [4, 6]; + + $dispatcher = $this->getDispatcher(); + $dispatcher->setActionName('multiply'); + $dispatcher->setParams($multiply); + $dispatcher->dispatch(); + + $expected = 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper'; + $actual = $dispatcher->getNamespaceName(); + $I->assertEquals($expected, $actual); + $expected = 'dispatcher-test-default'; + $actual = $dispatcher->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = 'multiply'; + $actual = $dispatcher->getActionName(); + $I->assertEquals($expected, $actual); + $expected = $multiply; + $actual = $dispatcher->getParams(); + $I->assertEquals($expected, $actual); + $expected = 24; + $actual = $dispatcher->getReturnedValue(); + $I->assertEquals($expected, $actual); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'multiplyAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests cyclical routing + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testCyclicalRouting(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeDispatch', + function ($event, $dispatcher) { + $dispatcher->forward(['action' => 'index2']); + } + ) + ; + + $I->expectThrowable( + new Exception( + 'Dispatcher has detected a cyclic routing causing stability problems', + Dispatcher::EXCEPTION_CYCLIC_ROUTING + ), + function () use ($dispatcher) { + $dispatcher->dispatch(); + } + ); + } + + /** + * Tests handler not found + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testHandlerNotFound(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcher->setControllerName('Non-Existent-Dispatcher-Handler'); + + $I->expectThrowable( + new Exception( + 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper\Non' . + 'ExistentDispatcherHandlerController handler class cannot be loaded', + Dispatcher::EXCEPTION_HANDLER_NOT_FOUND + ), + function () use ($dispatcher) { + $dispatcher->dispatch(); + } + ); + } + + /** + * Tests invalid handler specified + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testHandlerInvalid(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcher->setNamespaceName(''); + $dispatcher->setControllerName('Test'); + + $this->getDI()->setShared($dispatcher->getHandlerClass(), function () { + // Don't return an object + return 3; + }) + ; + + $I->expectThrowable( + new Exception( + 'Invalid handler returned from the services container', + Dispatcher::EXCEPTION_INVALID_HANDLER + ), + function () use ($dispatcher) { + $dispatcher->dispatch(); + } + ); + } + + /** + * Tests invalid handler action specified + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testHandlerActionNotFound(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcher->setActionName('Invalid-Dispatcher-Action-Name'); + + $I->expectThrowable( + new Exception( + "Action 'Invalid-Dispatcher-Action-Name' was not found on handler 'dispatcher-test-default'", + Dispatcher::EXCEPTION_ACTION_NOT_FOUND + ), + function () use ($dispatcher) { + $dispatcher->dispatch(); + } + ); + } + + /** + * Tests the last handler + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testLastHandler(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcher->dispatch(); + + $class = DispatcherTestDefaultController::class; + $actual = $dispatcher->getLastController(); + $I->assertInstanceOf($class, $actual); + } + + /** + * Tests the last handler on a forward + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testLastHandlerForward(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcher->setActionName('forwardExternal'); + $dispatcher->dispatch(); + + $class = DispatcherTestDefaultTwoController::class; + $actual = $dispatcher->getLastController(); + $I->assertInstanceOf($class, $actual); + } + + /** + * Tests dispatching without namespaces + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testNoNamespaces(IntegrationTester $I) + { + // Temporarily load non-namespaced class + require_once __DIR__ . '/Helper/DispatcherTestDefaultNoNamespaceController.php'; + + $dispatcher = $this->getDispatcher(); + $dispatcher->setNamespaceName(''); + $dispatcher->setControllerName('dispatcher-test-default-no-namespace'); + $dispatcher->setActionName('index'); + $handler = $dispatcher->dispatch(); + + $actual = $dispatcher->getNamespaceName(); + $I->assertNull($actual); + $expected = 'dispatcher-test-default-no-namespace'; + $actual = $dispatcher->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = 'index'; + $actual = $dispatcher->getActionName(); + $I->assertEquals($expected, $actual); + $class = 'DispatcherTestDefaultNoNamespaceController'; + $actual = $dispatcher->getControllerClass(); + $I->assertEquals($class, $actual); + + $actual = $dispatcher->wasForwarded(); + $I->assertFalse($actual); + $class = \DispatcherTestDefaultNoNamespaceController::class; + $I->assertInstanceOf($class, $handler); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests dispatching from a controller without namespace to one with + * namespace namespaces + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testMixingNamespaceForward(IntegrationTester $I) + { + // Temporarily load non-namespaced class + require_once __DIR__ . '/Helper/DispatcherTestDefaultNoNamespaceController.php'; + + $dispatcher = $this->getDispatcher(); + $dispatcher->setNamespaceName(''); + $dispatcher->setControllerName('dispatcher-test-default-no-namespace'); + $dispatcher->setActionName('forwardExternal'); + $handler = $dispatcher->dispatch(); + + $expected = 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper'; + $actual = $dispatcher->getNamespaceName(); + $I->assertEquals($expected, $actual); + $expected = 'dispatcher-test-default'; + $actual = $dispatcher->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = 'index'; + $actual = $dispatcher->getActionName(); + $I->assertEquals($expected, $actual); + $expected = DispatcherTestDefaultController::class; + $actual = $dispatcher->getControllerClass(); + $I->assertEquals($expected, $actual); + $class = DispatcherTestDefaultController::class; + $actual = $handler; + $I->assertInstanceOf($class, $actual); + $actual = $dispatcher->getActiveController(); + $I->assertInstanceOf($class, $actual); + $actual = $dispatcher->getLastController(); + $I->assertInstanceOf($class, $actual); + + $actual = $dispatcher->wasForwarded(); + $I->assertTrue($actual); + $actual = $dispatcher->getPreviousNamespaceName(); + $I->assertNull($actual); + $expected = 'dispatcher-test-default-no-namespace'; + $actual = $dispatcher->getPreviousControllerName(); + $I->assertEquals($expected, $actual); + $expected = 'forwardExternal'; + $actual = $dispatcher->getPreviousActionName(); + $I->assertEquals($expected, $actual); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'forwardExternalAction', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests dispatcher resolve capability from defaults + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testDefaultResolve(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcher->setNamespaceName('Foo'); + $dispatcher->setControllerName(''); + $dispatcher->setActionName(''); + + $expected = 'Foo'; + $actual = $dispatcher->getNamespaceName(); + $I->assertEquals($expected, $actual); + $expected = null; + $actual = $dispatcher->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = null; + $actual = $dispatcher->getActionName(); + $I->assertEquals($expected, $actual); + $expected = 'Foo\IndexController'; + $actual = $dispatcher->getControllerClass(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests directly calling controller's action via the dispatcher manually + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testManualCallAction(IntegrationTester $I) + { + $multiply = [5, 6]; + + $controller = new DispatcherTestDefaultController(); + $controller->setDI($this->getDI()); + + $returnValue = $this->getDispatcher()->callActionMethod($controller, 'multiplyAction', $multiply); + + $expected = 30; + $actual = $returnValue; + $I->assertEquals($expected, $actual); + $expected = ['multiplyAction']; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests the last handler when an exception occurs and is forwarded + * elsewhere + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testLastHandlerExceptionForward(IntegrationTester $I) + { + $beforeExceptionHandled = false; + + $dispatcher = $this->getDispatcher(); + $dispatcher->setActionName('exception'); + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeException', + function ($event, $dispatcher) use (&$beforeExceptionHandled, $I) { + $beforeExceptionHandled = true; + + $expected = 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper'; + $actual = $dispatcher->getNamespaceName(); + $I->assertEquals($expected, $actual); + $expected = 'dispatcher-test-default'; + $actual = $dispatcher->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = 'exception'; + $actual = $dispatcher->getActionName(); + $I->assertEquals($expected, $actual); + $expected = DispatcherTestDefaultController::class; + $actual = $dispatcher->getControllerClass(); + $I->assertEquals($expected, $actual); + $class = DispatcherTestDefaultController::class; + $actual = $dispatcher->getLastController(); + $I->assertInstanceOf($class, $actual); + + $dispatcher->forward([ + 'controller' => 'dispatcher-test-default-two', + 'action' => 'index', + ]); + + return false; + } + ) + ; + + $handler = $dispatcher->dispatch(); + + $I->assertTrue($beforeExceptionHandled); + $expected = 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper'; + $actual = $dispatcher->getNamespaceName(); + $I->assertEquals($expected, $actual); + $expected = 'dispatcher-test-default-two'; + $actual = $dispatcher->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = 'index'; + $actual = $dispatcher->getActionName(); + $I->assertEquals($expected, $actual); + $expected = DispatcherTestDefaultTwoController::class; + $actual = $dispatcher->getControllerClass(); + $I->assertEquals($expected, $actual); + $class = DispatcherTestDefaultTwoController::class; + $actual = $dispatcher->getLastController(); + $I->assertInstanceOf($class, $actual); + } + + /** + * Tests throwing a new exception inside before exception. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testExceptionInBeforeException(IntegrationTester $I) + { + $I->skipTest('TODO - Check this test'); + $beforeExceptionHandled = false; + $caughtException = false; + + $dispatcher = $this->getDispatcher(); + $dispatcher->setActionName('exception'); + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeException', + function ($event, $dispatcher) use (&$beforeExceptionHandled, $I) { + $beforeExceptionHandled = true; + $expected = 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper'; + $actual = $dispatcher->getNamespaceName(); + $I->assertEquals($expected, $actual); + $expected = 'dispatcher-test-default'; + $actual = $dispatcher->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = 'exception'; + $actual = $dispatcher->getActionName(); + $I->assertEquals($expected, $actual); + $expected = DispatcherTestDefaultController::class; + $actual = $dispatcher->getControllerClass(); + $I->assertEquals($expected, $actual); + + $expected = DispatcherTestDefaultController::class; + $actual = $dispatcher->getLastController(); + $I->assertEquals($expected, $actual); + // Forwarding; however, will throw a new exception preventing this + $dispatcher->forward( + [ + 'controller' => 'dispatcher-test-default-two', + 'action' => 'index', + ] + ); + + throw new Exception('Custom error in before exception'); + } + ) + ; + + try { + $handler = $dispatcher->dispatch(); + } catch (Exception $exception) { + $caughtException = true; + $I->assertEquals('Custom error in before exception', $exception->getMessage()); + } finally { + $I->assertTrue($beforeExceptionHandled); + $I->assertTrue($caughtException); + // The string properties get updated + $expected = 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper'; + $actual = $dispatcher->getNamespaceName(); + $I->assertEquals($expected, $actual); + $expected = 'dispatcher-test-default-two'; + $actual = $dispatcher->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = 'index'; + $actual = $dispatcher->getActionName(); + $I->assertEquals($expected, $actual); + $expected = DispatcherTestDefaultTwoController::class; + $actual = $dispatcher->getControllerClass(); + $I->assertEquals($expected, $actual); + // But not the last controller since dispatching didn't take place + $class = DispatcherTestDefaultController::class; + $actual = $dispatcher->getLastController(); + $I->assertInstanceOf($class . $actual); + } + } +} diff --git a/tests/integration/Mvc/Dispatcher/DispatcherInitializeMethodCest.php b/tests/integration/Mvc/Dispatcher/DispatcherInitializeMethodCest.php new file mode 100644 index 00000000000..74223cb31eb --- /dev/null +++ b/tests/integration/Mvc/Dispatcher/DispatcherInitializeMethodCest.php @@ -0,0 +1,219 @@ + + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file docs/LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class DispatcherInitializeMethodCest extends BaseDispatcher +{ + /** + * Tests the forwarding in the initialize method + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testInitializeForward(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcher->setControllerName('dispatcher-test-initialize-forward'); + + $caughtException = false; + try { + $dispatcher->dispatch(); + } catch (Exception $exception) { + $caughtException = true; + } + + $I->assertTrue($caughtException); + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'beforeException: Forwarding inside a controller\'s initialize() method is forbidden', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests returning false inside an initialize method. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testInitializeReturnFalse(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcher->setControllerName('dispatcher-test-initialize-return-false'); + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exception handling to ensure exceptions can be properly handled + * when thrown from inside an initialize method and then ensure the + * exception is not bubbled when returning with false. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testInitializeWithBeforeExceptionReturningFalse(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcher->setControllerName('dispatcher-test-initialize-exception'); + + $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () { + // Returning false should prevent the exception from bubbling up. + return false; + }) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'beforeException: initialize exception occurred', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exception handling to ensure exceptions can be properly handled + * via beforeException event and then will properly bubble up the stack if + * anything other than false is returned. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testInitializeWithBeforeExceptionBubble(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + $dispatcher->setControllerName('dispatcher-test-initialize-exception'); + + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeException', + function () use ($dispatcherListener) { + // Returning anything other then false should bubble the exception. + $dispatcherListener->trace('beforeException: custom before exception bubble'); + return null; + } + ) + ; + + $caughtException = false; + try { + $dispatcher->dispatch(); + } catch (Exception $exception) { + $caughtException = true; + } + + $I->assertTrue($caughtException); + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'beforeException: initialize exception occurred', + 'beforeException: custom before exception bubble', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests dispatch forward handling inside the beforeException when an + * initialize method exception occurs. + * + * @author Mark Johnson + * @since 2017-10-07 + */ + public function testInitializeWithBeforeExceptionForward(IntegrationTester $I) + { + $dispatcher = $this->getDispatcher(); + $dispatcherListener = $this->getDispatcherListener(); + $dispatcher->setControllerName('dispatcher-test-initialize-exception'); + + $dispatcher->getEventsManager()->attach( + 'dispatch:beforeException', + function ($event, $dispatcher) use ($dispatcherListener) { + $dispatcherListener->trace('beforeException: custom before exception forward'); + $dispatcher->forward([ + 'controller' => 'dispatcher-test-default', + 'action' => 'index', + ]); + } + ) + ; + + $dispatcher->dispatch(); + + $expected = [ + 'beforeDispatchLoop', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'beforeException: initialize exception occurred', + 'beforeException: custom before exception forward', + 'beforeDispatch', + 'beforeExecuteRoute', + 'beforeExecuteRoute-method', + 'initialize-method', + 'afterInitialize', + 'indexAction', + 'afterExecuteRoute', + 'afterExecuteRoute-method', + 'afterDispatch', + 'afterDispatchLoop', + ]; + $actual = $this->getDispatcherListener()->getTrace(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Mvc/Dispatcher/ForwardCest.php b/tests/integration/Mvc/Dispatcher/ForwardCest.php index c05c2407ac3..f7be9ce9426 100644 --- a/tests/integration/Mvc/Dispatcher/ForwardCest.php +++ b/tests/integration/Mvc/Dispatcher/ForwardCest.php @@ -2,21 +2,22 @@ namespace Phalcon\Test\Integration\Mvc\Dispatcher; -use Phalcon\Mvc\View; use IntegrationTester; +use Phalcon\Di\FactoryDefault; use Phalcon\Events\Manager; -use Phalcon\Mvc\Dispatcher; use Phalcon\Mvc\Application; -use Phalcon\Di\FactoryDefault; +use Phalcon\Mvc\Dispatcher; +use Phalcon\Mvc\View; +use function dataFolder; /** * \Phalcon\Test\Integration\Mvc\Dispatcher\ForwardCest * Tests the Phalcon\Mvc\Dispatcher * * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Serghei Iakovlev - * @package Phalcon\Test\Integration\Mvc\Dispatcher + * @link http://www.phalconphp.com + * @author Phalcon Team + * @package Phalcon\Test\Integration\Mvc\Dispatcher * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file LICENSE.txt @@ -36,7 +37,7 @@ public function handlingException(IntegrationTester $I) $di = new FactoryDefault(); $di->set('view', function () { $view = new View(); - $view->setViewsDir(PATH_DATA . 'views/'); + $view->setViewsDir(dataFolder('fixtures/views/')); return $view; }, true); @@ -46,7 +47,7 @@ public function handlingException(IntegrationTester $I) $eventsManager->attach('dispatch:beforeException', function ($event, $dispatcher, $exception) { $dispatcher->forward([ 'controller' => 'exception', - 'action' => 'second' + 'action' => 'second', ]); // Prevent the exception from bubbling diff --git a/tests/integration/Mvc/Dispatcher/Helper/BaseDispatcher.php b/tests/integration/Mvc/Dispatcher/Helper/BaseDispatcher.php new file mode 100644 index 00000000000..11b880b84cf --- /dev/null +++ b/tests/integration/Mvc/Dispatcher/Helper/BaseDispatcher.php @@ -0,0 +1,103 @@ + + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher\Helper + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file docs/LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +abstract class BaseDispatcher +{ + /** + * @var \Phalcon\Di + */ + private $di; + + /** + * Executed before each test. + * + * Ensure the depenendency injector and corresponding services including + * the + * dispatcher, response, and dispatcher listener are reset prior to each + * test. + */ + public function _before(IntegrationTester $I) + { + $dispatcherListener = new DispatcherListener(); + + Di::reset(); + $this->di = new Di(); + $this->di->setShared('response', new Response()); + $this->di->setShared('dispatcherListener', $dispatcherListener); + $this->di->setShared( + 'dispatcher', + function () use ($dispatcherListener) { + // New dispatcher instance + $dispatcher = new Dispatcher(); + + // Initialize defaults such that these don't need to be specified everywhere + $dispatcher->setNamespaceName('Phalcon\Test\Integration\Mvc\Dispatcher\Helper'); + $dispatcher->setControllerName('dispatcher-test-default'); + $dispatcher->setActionName('index'); + + // Ensure this gets called prior to any custom event listening which has a default priority of 100 + $eventsManager = new EventsManager(); + $eventsManager->attach('dispatch', $dispatcherListener, 200); + + $dispatcher->setEventsManager($eventsManager); + + return $dispatcher; + } + ); + } + + /** + * Returns the current Dependency Injector. + * + * @return \Phalcon\Di + */ + protected function getDI() + { + return $this->di; + } + + /** + * Returns the current dispatcher instance. + * + * @return \Phalcon\Mvc\Dispatcher + */ + protected function getDispatcher() + { + return $this->di->getShared('dispatcher'); + } + + /** + * Returns the current dispatcher listener instance. + * + * @return \Phalcon\Test\Integration\Mvc\Dispatcher\Helper\DispatcherListener + */ + protected function getDispatcherListener() + { + return $this->di->getShared('dispatcherListener'); + } +} diff --git a/tests/unit/Mvc/Dispatcher/Helper/DispatcherListener.php b/tests/integration/Mvc/Dispatcher/Helper/DispatcherListener.php similarity index 86% rename from tests/unit/Mvc/Dispatcher/Helper/DispatcherListener.php rename to tests/integration/Mvc/Dispatcher/Helper/DispatcherListener.php index 41574d2bf07..435f0d2ec30 100644 --- a/tests/unit/Mvc/Dispatcher/Helper/DispatcherListener.php +++ b/tests/integration/Mvc/Dispatcher/Helper/DispatcherListener.php @@ -1,20 +1,20 @@ - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher\Helper + * @link http://www.phalconphp.com + * @author Andres Gutierrez + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher\Helper * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file docs/LICENSE.txt @@ -35,11 +35,6 @@ public function clearTrace() $this->trace = []; } - public function trace($text) - { - $this->trace[] = $text; - } - public function getTrace() { return $this->trace; @@ -55,6 +50,11 @@ public function beforeDispatchLoop(Event $event, DispatcherInterface $dispatcher $this->trace('beforeDispatchLoop'); } + public function trace($text) + { + $this->trace[] = $text; + } + public function beforeDispatch(Event $event, DispatcherInterface $dispatcher) { $this->trace('beforeDispatch'); diff --git a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteExceptionController.php b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteExceptionController.php similarity index 76% rename from tests/unit/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteExceptionController.php rename to tests/integration/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteExceptionController.php index 9f367534ec9..2eb5b3c2851 100644 --- a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteExceptionController.php +++ b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteExceptionController.php @@ -1,19 +1,19 @@ - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher\Helper + * @link http://www.phalconphp.com + * @author Andres Gutierrez + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher\Helper * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file docs/LICENSE.txt @@ -24,6 +24,11 @@ */ class DispatcherTestAfterExecuteRouteExceptionController extends Controller { + public function initialize() + { + $this->trace('initialize-method'); + } + /** * Add tracing information into the current dispatch tracer */ @@ -32,11 +37,6 @@ protected function trace($text) $this->getDI()->getShared('dispatcherListener')->trace($text); } - public function initialize() - { - $this->trace('initialize-method'); - } - public function beforeExecuteRoute() { $this->trace('beforeExecuteRoute-method'); diff --git a/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteForwardController.php b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteForwardController.php new file mode 100644 index 00000000000..10d197c0b58 --- /dev/null +++ b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteForwardController.php @@ -0,0 +1,59 @@ + + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher\Helper + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file docs/LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class DispatcherTestAfterExecuteRouteForwardController extends Controller +{ + public function initialize() + { + $this->trace('initialize-method'); + } + + /** + * Add tracing information into the current dispatch tracer + */ + protected function trace($text) + { + $this->getDI()->getShared('dispatcherListener')->trace($text); + } + + public function beforeExecuteRoute() + { + $this->trace('beforeExecuteRoute-method'); + } + + public function indexAction() + { + $this->trace('indexAction'); + } + + public function afterExecuteRoute() + { + $this->trace('afterExecuteRoute-method'); + + $this->getDI()->getShared('dispatcher')->forward([ + 'controller' => 'dispatcher-test-default', + 'action' => 'index', + ]) + ; + } +} diff --git a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteReturnFalseController.php b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteReturnFalseController.php similarity index 75% rename from tests/unit/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteReturnFalseController.php rename to tests/integration/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteReturnFalseController.php index 988ffebaf5e..9b20b35411b 100644 --- a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteReturnFalseController.php +++ b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteReturnFalseController.php @@ -1,18 +1,18 @@ - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher\Helper + * @link http://www.phalconphp.com + * @author Andres Gutierrez + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher\Helper * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file docs/LICENSE.txt @@ -23,6 +23,11 @@ */ class DispatcherTestAfterExecuteRouteReturnFalseController extends Controller { + public function initialize() + { + $this->trace('initialize-method'); + } + /** * Add tracing information into the current dispatch tracer */ @@ -31,11 +36,6 @@ protected function trace($text) $this->getDI()->getShared('dispatcherListener')->trace($text); } - public function initialize() - { - $this->trace('initialize-method'); - } - public function beforeExecuteRoute() { $this->trace('beforeExecuteRoute-method'); diff --git a/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteExceptionController.php b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteExceptionController.php new file mode 100644 index 00000000000..fb7b14ea97b --- /dev/null +++ b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteExceptionController.php @@ -0,0 +1,51 @@ + + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher\Helper + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file docs/LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class DispatcherTestBeforeExecuteRouteExceptionController extends Controller +{ + public function initialize() + { + $this->trace('initialize-method'); + } + + /** + * Add tracing information into the current dispatch tracer + */ + protected function trace($text) + { + $this->getDI()->getShared('dispatcherListener')->trace($text); + } + + public function beforeExecuteRoute() + { + $this->trace('beforeExecuteRoute-method'); + + throw new Exception('beforeExecuteRoute exception occurred'); + } + + public function indexAction() + { + $this->trace('indexAction'); + } +} diff --git a/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteForwardController.php b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteForwardController.php new file mode 100644 index 00000000000..2151b7d8327 --- /dev/null +++ b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteForwardController.php @@ -0,0 +1,54 @@ + + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher\Helper + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file docs/LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class DispatcherTestBeforeExecuteRouteForwardController extends Controller +{ + public function initialize() + { + $this->trace('initialize-method'); + } + + /** + * Add tracing information into the current dispatch tracer + */ + protected function trace($text) + { + $this->getDI()->getShared('dispatcherListener')->trace($text); + } + + public function beforeExecuteRoute() + { + $this->trace('beforeExecuteRoute-method'); + + $this->getDI()->getShared('dispatcher')->forward([ + 'controller' => 'dispatcher-test-default', + 'action' => 'index', + ]) + ; + } + + public function indexAction() + { + $this->trace('indexAction'); + } +} diff --git a/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteReturnFalseController.php b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteReturnFalseController.php new file mode 100644 index 00000000000..764a8e99756 --- /dev/null +++ b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteReturnFalseController.php @@ -0,0 +1,50 @@ + + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher\Helper + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file docs/LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class DispatcherTestBeforeExecuteRouteReturnFalseController extends Controller +{ + public function initialize() + { + $this->trace('initialize-method'); + } + + /** + * Add tracing information into the current dispatch tracer + */ + protected function trace($text) + { + $this->getDI()->getShared('dispatcherListener')->trace($text); + } + + public function beforeExecuteRoute() + { + $this->trace('beforeExecuteRoute-method'); + + return false; + } + + public function indexAction() + { + $this->trace('indexAction'); + } +} diff --git a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestDefaultController.php b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestDefaultController.php similarity index 81% rename from tests/unit/Mvc/Dispatcher/Helper/DispatcherTestDefaultController.php rename to tests/integration/Mvc/Dispatcher/Helper/DispatcherTestDefaultController.php index 408110409c7..9de81e5d7eb 100644 --- a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestDefaultController.php +++ b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestDefaultController.php @@ -1,19 +1,19 @@ - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher\Helper + * @link http://www.phalconphp.com + * @author Andres Gutierrez + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher\Helper * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file docs/LICENSE.txt @@ -25,7 +25,12 @@ class DispatcherTestDefaultController extends Controller { const RETURN_VALUE_STRING = 'string'; - const RETURN_VALUE_INT = 5; + const RETURN_VALUE_INT = 5; + + public function beforeExecuteRoute() + { + $this->trace('beforeExecuteRoute-method'); + } /** * Add tracing information into the current dispatch tracer @@ -35,11 +40,6 @@ protected function trace($text) $this->getDI()->getShared('dispatcherListener')->trace($text); } - public function beforeExecuteRoute() - { - $this->trace('beforeExecuteRoute-method'); - } - public function initialize() { $this->trace('initialize-method'); @@ -80,8 +80,9 @@ public function forwardLocalAction() { $this->trace('forwardLocalAction'); $this->getDI()->getShared('dispatcher')->forward([ - 'action' => 'index2' - ]); + 'action' => 'index2', + ]) + ; } public function forwardExternalAction() @@ -89,8 +90,9 @@ public function forwardExternalAction() $this->trace('forwardExternalAction'); $this->getDI()->getShared('dispatcher')->forward([ 'controller' => 'dispatcher-test-default-two', - 'action' => 'index' - ]); + 'action' => 'index', + ]) + ; } public function exceptionAction() diff --git a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestDefaultNoNamespaceController.php b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestDefaultNoNamespaceController.php similarity index 80% rename from tests/unit/Mvc/Dispatcher/Helper/DispatcherTestDefaultNoNamespaceController.php rename to tests/integration/Mvc/Dispatcher/Helper/DispatcherTestDefaultNoNamespaceController.php index 83d397915ae..22ee5e90144 100644 --- a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestDefaultNoNamespaceController.php +++ b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestDefaultNoNamespaceController.php @@ -2,6 +2,7 @@ // @codingStandardsIgnoreStart use Phalcon\Mvc\Controller; + // @codingStandardsIgnoreSEnd /** @@ -9,10 +10,10 @@ * Dispatcher Controller for testing different dispatch scenarios * * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher\Helper + * @link http://www.phalconphp.com + * @author Andres Gutierrez + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher\Helper * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file docs/LICENSE.txt @@ -24,7 +25,12 @@ class DispatcherTestDefaultNoNamespaceController extends Controller { const RETURN_VALUE_STRING = 'string'; - const RETURN_VALUE_INT = 5; + const RETURN_VALUE_INT = 5; + + public function beforeExecuteRoute() + { + $this->trace('beforeExecuteRoute-method'); + } /** * Add tracing information into the current dispatch tracer @@ -34,11 +40,6 @@ protected function trace($text) $this->getDI()->getShared('dispatcherListener')->trace($text); } - public function beforeExecuteRoute() - { - $this->trace('beforeExecuteRoute-method'); - } - public function initialize() { $this->trace('initialize-method'); @@ -58,18 +59,20 @@ public function forwardLocalAction() { $this->trace('forwardLocalAction'); $this->getDI()->getShared('dispatcher')->forward([ - 'action' => 'index2' - ]); + 'action' => 'index2', + ]) + ; } public function forwardExternalAction() { $this->trace('forwardExternalAction'); $this->getDI()->getShared('dispatcher')->forward([ - 'namespace' => 'Phalcon\Test\Unit\Mvc\Dispatcher\Helper', + 'namespace' => 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper', 'controller' => 'dispatcher-test-default', - 'action' => 'index' - ]); + 'action' => 'index', + ]) + ; } public function exceptionAction() diff --git a/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestDefaultSimpleController.php b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestDefaultSimpleController.php new file mode 100644 index 00000000000..40a619e9916 --- /dev/null +++ b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestDefaultSimpleController.php @@ -0,0 +1,38 @@ + + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher\Helper + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file docs/LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class DispatcherTestDefaultSimpleController extends Controller +{ + public function indexAction() + { + $this->trace('indexAction'); + } + + /** + * Add tracing information into the current dispatch tracer + */ + protected function trace($text) + { + $this->getDI()->getShared('dispatcherListener')->trace($text); + } +} diff --git a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestDefaultTwoController.php b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestDefaultTwoController.php similarity index 78% rename from tests/unit/Mvc/Dispatcher/Helper/DispatcherTestDefaultTwoController.php rename to tests/integration/Mvc/Dispatcher/Helper/DispatcherTestDefaultTwoController.php index fc93dab7f41..135af817cb8 100644 --- a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestDefaultTwoController.php +++ b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestDefaultTwoController.php @@ -1,18 +1,18 @@ - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher\Helper + * @link http://www.phalconphp.com + * @author Andres Gutierrez + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher\Helper * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file docs/LICENSE.txt @@ -23,6 +23,11 @@ */ class DispatcherTestDefaultTwoController extends Controller { + public function beforeExecuteRoute() + { + $this->trace('beforeExecuteRoute-method'); + } + /** * Add tracing information into the current dispatch tracer */ @@ -31,11 +36,6 @@ protected function trace($text) $this->getDI()->getShared('dispatcherListener')->trace($text); } - public function beforeExecuteRoute() - { - $this->trace('beforeExecuteRoute-method'); - } - public function initialize() { $this->trace('initialize-method'); @@ -55,8 +55,9 @@ public function forwardLocalAction() { $this->trace('forwardLocalAction'); $this->getDI()->getShared('dispatcher')->forward([ - 'action' => 'index2' - ]); + 'action' => 'index2', + ]) + ; } public function forwardExternalAction() @@ -64,8 +65,9 @@ public function forwardExternalAction() $this->trace('forwardExternalAction'); $this->getDI()->getShared('dispatcher')->forward([ 'controller' => 'dispatcher-test-default', - 'action' => 'index' - ]); + 'action' => 'index', + ]) + ; } public function exceptionAction() diff --git a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestInitializeExceptionController.php b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestInitializeExceptionController.php similarity index 76% rename from tests/unit/Mvc/Dispatcher/Helper/DispatcherTestInitializeExceptionController.php rename to tests/integration/Mvc/Dispatcher/Helper/DispatcherTestInitializeExceptionController.php index 6ea17d00263..e30c7a110da 100644 --- a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestInitializeExceptionController.php +++ b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestInitializeExceptionController.php @@ -1,19 +1,19 @@ - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher\Helper + * @link http://www.phalconphp.com + * @author Andres Gutierrez + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher\Helper * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file docs/LICENSE.txt @@ -24,6 +24,11 @@ */ class DispatcherTestInitializeExceptionController extends Controller { + public function beforeExecuteRoute() + { + $this->trace('beforeExecuteRoute-method'); + } + /** * Add tracing information into the current dispatch tracer */ @@ -32,11 +37,6 @@ protected function trace($text) $this->getDI()->getShared('dispatcherListener')->trace($text); } - public function beforeExecuteRoute() - { - $this->trace('beforeExecuteRoute-method'); - } - public function initialize() { $this->trace('initialize-method'); diff --git a/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestInitializeForwardController.php b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestInitializeForwardController.php new file mode 100644 index 00000000000..a6d38eaa1ff --- /dev/null +++ b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestInitializeForwardController.php @@ -0,0 +1,59 @@ + + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher\Helper + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file docs/LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class DispatcherTestInitializeForwardController extends Controller +{ + public function beforeExecuteRoute() + { + $this->trace('beforeExecuteRoute-method'); + } + + /** + * Add tracing information into the current dispatch tracer + */ + protected function trace($text) + { + $this->getDI()->getShared('dispatcherListener')->trace($text); + } + + public function initialize() + { + $this->trace('initialize-method'); + + $this->getDI()->getShared('dispatcher')->forward([ + 'controller' => 'dispatcher-test-default', + 'action' => 'index', + ]) + ; + } + + public function afterExecuteRoute() + { + $this->trace('afterExecuteRoute-method'); + } + + public function indexAction() + { + $this->trace('indexAction'); + } +} diff --git a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestInitializeReturnFalseController.php b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestInitializeReturnFalseController.php similarity index 75% rename from tests/unit/Mvc/Dispatcher/Helper/DispatcherTestInitializeReturnFalseController.php rename to tests/integration/Mvc/Dispatcher/Helper/DispatcherTestInitializeReturnFalseController.php index db789517f39..48b2b2b7919 100644 --- a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestInitializeReturnFalseController.php +++ b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestInitializeReturnFalseController.php @@ -1,18 +1,18 @@ - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher\Helper + * @link http://www.phalconphp.com + * @author Andres Gutierrez + * @author Nikolaos Dimopoulos + * @package Phalcon\Test\Integration\Mvc\Dispatcher\Helper * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file docs/LICENSE.txt @@ -23,6 +23,11 @@ */ class DispatcherTestInitializeReturnFalseController extends Controller { + public function beforeExecuteRoute() + { + $this->trace('beforeExecuteRoute-method'); + } + /** * Add tracing information into the current dispatch tracer */ @@ -31,11 +36,6 @@ protected function trace($text) $this->getDI()->getShared('dispatcherListener')->trace($text); } - public function beforeExecuteRoute() - { - $this->trace('beforeExecuteRoute-method'); - } - public function initialize() { $this->trace('initialize-method'); diff --git a/tests/integration/Mvc/Micro/AfterBindingCest.php b/tests/integration/Mvc/Micro/AfterBindingCest.php new file mode 100644 index 00000000000..bfb3b1fc005 --- /dev/null +++ b/tests/integration/Mvc/Micro/AfterBindingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class AfterBindingCest +{ + /** + * Tests Phalcon\Mvc\Micro :: afterBinding() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroAfterBinding(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - afterBinding()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/AfterCest.php b/tests/integration/Mvc/Micro/AfterCest.php new file mode 100644 index 00000000000..e9ca2dd709a --- /dev/null +++ b/tests/integration/Mvc/Micro/AfterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class AfterCest +{ + /** + * Tests Phalcon\Mvc\Micro :: after() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroAfter(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - after()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/BeforeCest.php b/tests/integration/Mvc/Micro/BeforeCest.php new file mode 100644 index 00000000000..24450560f20 --- /dev/null +++ b/tests/integration/Mvc/Micro/BeforeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class BeforeCest +{ + /** + * Tests Phalcon\Mvc\Micro :: before() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroBefore(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - before()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/Collection/DeleteCest.php b/tests/integration/Mvc/Micro/Collection/DeleteCest.php new file mode 100644 index 00000000000..fe3a57c6136 --- /dev/null +++ b/tests/integration/Mvc/Micro/Collection/DeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro\Collection; + +use IntegrationTester; + +class DeleteCest +{ + /** + * Tests Phalcon\Mvc\Micro\Collection :: delete() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroCollectionDelete(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro\Collection - delete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/Collection/GetCest.php b/tests/integration/Mvc/Micro/Collection/GetCest.php new file mode 100644 index 00000000000..e9282d56844 --- /dev/null +++ b/tests/integration/Mvc/Micro/Collection/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro\Collection; + +use IntegrationTester; + +class GetCest +{ + /** + * Tests Phalcon\Mvc\Micro\Collection :: get() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroCollectionGet(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro\Collection - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/Collection/GetHandlerCest.php b/tests/integration/Mvc/Micro/Collection/GetHandlerCest.php new file mode 100644 index 00000000000..dbb51f0f93e --- /dev/null +++ b/tests/integration/Mvc/Micro/Collection/GetHandlerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro\Collection; + +use IntegrationTester; + +class GetHandlerCest +{ + /** + * Tests Phalcon\Mvc\Micro\Collection :: getHandler() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroCollectionGetHandler(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro\Collection - getHandler()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/Collection/GetHandlersCest.php b/tests/integration/Mvc/Micro/Collection/GetHandlersCest.php new file mode 100644 index 00000000000..dac3397b30d --- /dev/null +++ b/tests/integration/Mvc/Micro/Collection/GetHandlersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro\Collection; + +use IntegrationTester; + +class GetHandlersCest +{ + /** + * Tests Phalcon\Mvc\Micro\Collection :: getHandlers() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroCollectionGetHandlers(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro\Collection - getHandlers()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/Collection/GetPrefixCest.php b/tests/integration/Mvc/Micro/Collection/GetPrefixCest.php new file mode 100644 index 00000000000..6d2c7b0a9bd --- /dev/null +++ b/tests/integration/Mvc/Micro/Collection/GetPrefixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro\Collection; + +use IntegrationTester; + +class GetPrefixCest +{ + /** + * Tests Phalcon\Mvc\Micro\Collection :: getPrefix() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroCollectionGetPrefix(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro\Collection - getPrefix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/Collection/HeadCest.php b/tests/integration/Mvc/Micro/Collection/HeadCest.php new file mode 100644 index 00000000000..29a223f2a30 --- /dev/null +++ b/tests/integration/Mvc/Micro/Collection/HeadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro\Collection; + +use IntegrationTester; + +class HeadCest +{ + /** + * Tests Phalcon\Mvc\Micro\Collection :: head() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroCollectionHead(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro\Collection - head()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/Collection/IsLazyCest.php b/tests/integration/Mvc/Micro/Collection/IsLazyCest.php new file mode 100644 index 00000000000..4e2f3925b8a --- /dev/null +++ b/tests/integration/Mvc/Micro/Collection/IsLazyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro\Collection; + +use IntegrationTester; + +class IsLazyCest +{ + /** + * Tests Phalcon\Mvc\Micro\Collection :: isLazy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroCollectionIsLazy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro\Collection - isLazy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/Collection/MapCest.php b/tests/integration/Mvc/Micro/Collection/MapCest.php new file mode 100644 index 00000000000..8d0d6ca3322 --- /dev/null +++ b/tests/integration/Mvc/Micro/Collection/MapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro\Collection; + +use IntegrationTester; + +class MapCest +{ + /** + * Tests Phalcon\Mvc\Micro\Collection :: map() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroCollectionMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro\Collection - map()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/Collection/MapViaCest.php b/tests/integration/Mvc/Micro/Collection/MapViaCest.php new file mode 100644 index 00000000000..53abcabb17a --- /dev/null +++ b/tests/integration/Mvc/Micro/Collection/MapViaCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro\Collection; + +use IntegrationTester; + +class MapViaCest +{ + /** + * Tests Phalcon\Mvc\Micro\Collection :: mapVia() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroCollectionMapVia(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro\Collection - mapVia()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/Collection/OptionsCest.php b/tests/integration/Mvc/Micro/Collection/OptionsCest.php new file mode 100644 index 00000000000..816ab460b2c --- /dev/null +++ b/tests/integration/Mvc/Micro/Collection/OptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro\Collection; + +use IntegrationTester; + +class OptionsCest +{ + /** + * Tests Phalcon\Mvc\Micro\Collection :: options() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroCollectionOptions(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro\Collection - options()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/Collection/PatchCest.php b/tests/integration/Mvc/Micro/Collection/PatchCest.php new file mode 100644 index 00000000000..4d7b9355cee --- /dev/null +++ b/tests/integration/Mvc/Micro/Collection/PatchCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro\Collection; + +use IntegrationTester; + +class PatchCest +{ + /** + * Tests Phalcon\Mvc\Micro\Collection :: patch() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroCollectionPatch(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro\Collection - patch()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/Collection/PostCest.php b/tests/integration/Mvc/Micro/Collection/PostCest.php new file mode 100644 index 00000000000..a9eda95c89f --- /dev/null +++ b/tests/integration/Mvc/Micro/Collection/PostCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro\Collection; + +use IntegrationTester; + +class PostCest +{ + /** + * Tests Phalcon\Mvc\Micro\Collection :: post() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroCollectionPost(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro\Collection - post()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/Collection/PutCest.php b/tests/integration/Mvc/Micro/Collection/PutCest.php new file mode 100644 index 00000000000..1c51afd386a --- /dev/null +++ b/tests/integration/Mvc/Micro/Collection/PutCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro\Collection; + +use IntegrationTester; + +class PutCest +{ + /** + * Tests Phalcon\Mvc\Micro\Collection :: put() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroCollectionPut(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro\Collection - put()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/Collection/SetHandlerCest.php b/tests/integration/Mvc/Micro/Collection/SetHandlerCest.php new file mode 100644 index 00000000000..12ee5044340 --- /dev/null +++ b/tests/integration/Mvc/Micro/Collection/SetHandlerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro\Collection; + +use IntegrationTester; + +class SetHandlerCest +{ + /** + * Tests Phalcon\Mvc\Micro\Collection :: setHandler() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroCollectionSetHandler(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro\Collection - setHandler()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/Collection/SetLazyCest.php b/tests/integration/Mvc/Micro/Collection/SetLazyCest.php new file mode 100644 index 00000000000..741b71944e7 --- /dev/null +++ b/tests/integration/Mvc/Micro/Collection/SetLazyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro\Collection; + +use IntegrationTester; + +class SetLazyCest +{ + /** + * Tests Phalcon\Mvc\Micro\Collection :: setLazy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroCollectionSetLazy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro\Collection - setLazy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/Collection/SetPrefixCest.php b/tests/integration/Mvc/Micro/Collection/SetPrefixCest.php new file mode 100644 index 00000000000..2bb444e0bb8 --- /dev/null +++ b/tests/integration/Mvc/Micro/Collection/SetPrefixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro\Collection; + +use IntegrationTester; + +class SetPrefixCest +{ + /** + * Tests Phalcon\Mvc\Micro\Collection :: setPrefix() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroCollectionSetPrefix(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro\Collection - setPrefix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/ConstructCest.php b/tests/integration/Mvc/Micro/ConstructCest.php new file mode 100644 index 00000000000..675b1355f4a --- /dev/null +++ b/tests/integration/Mvc/Micro/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Micro :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/DeleteCest.php b/tests/integration/Mvc/Micro/DeleteCest.php new file mode 100644 index 00000000000..c7eb3b60122 --- /dev/null +++ b/tests/integration/Mvc/Micro/DeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class DeleteCest +{ + /** + * Tests Phalcon\Mvc\Micro :: delete() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroDelete(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - delete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/ErrorCest.php b/tests/integration/Mvc/Micro/ErrorCest.php new file mode 100644 index 00000000000..68c4778427d --- /dev/null +++ b/tests/integration/Mvc/Micro/ErrorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class ErrorCest +{ + /** + * Tests Phalcon\Mvc\Micro :: error() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroError(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - error()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/FinishCest.php b/tests/integration/Mvc/Micro/FinishCest.php new file mode 100644 index 00000000000..73cbfe464e3 --- /dev/null +++ b/tests/integration/Mvc/Micro/FinishCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class FinishCest +{ + /** + * Tests Phalcon\Mvc\Micro :: finish() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroFinish(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - finish()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/GetActiveHandlerCest.php b/tests/integration/Mvc/Micro/GetActiveHandlerCest.php new file mode 100644 index 00000000000..1a8ef623caa --- /dev/null +++ b/tests/integration/Mvc/Micro/GetActiveHandlerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class GetActiveHandlerCest +{ + /** + * Tests Phalcon\Mvc\Micro :: getActiveHandler() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroGetActiveHandler(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - getActiveHandler()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/GetBoundModelsCest.php b/tests/integration/Mvc/Micro/GetBoundModelsCest.php new file mode 100644 index 00000000000..dba908e9b5b --- /dev/null +++ b/tests/integration/Mvc/Micro/GetBoundModelsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class GetBoundModelsCest +{ + /** + * Tests Phalcon\Mvc\Micro :: getBoundModels() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroGetBoundModels(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - getBoundModels()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/GetCest.php b/tests/integration/Mvc/Micro/GetCest.php new file mode 100644 index 00000000000..5e3615ea553 --- /dev/null +++ b/tests/integration/Mvc/Micro/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class GetCest +{ + /** + * Tests Phalcon\Mvc\Micro :: get() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroGet(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/GetDICest.php b/tests/integration/Mvc/Micro/GetDICest.php new file mode 100644 index 00000000000..fc2d2426058 --- /dev/null +++ b/tests/integration/Mvc/Micro/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Micro :: getDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroGetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/GetEventsManagerCest.php b/tests/integration/Mvc/Micro/GetEventsManagerCest.php new file mode 100644 index 00000000000..97c3b6ecafc --- /dev/null +++ b/tests/integration/Mvc/Micro/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Micro :: getEventsManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroGetEventsManager(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/GetHandlersCest.php b/tests/integration/Mvc/Micro/GetHandlersCest.php new file mode 100644 index 00000000000..830b2bcae29 --- /dev/null +++ b/tests/integration/Mvc/Micro/GetHandlersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class GetHandlersCest +{ + /** + * Tests Phalcon\Mvc\Micro :: getHandlers() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroGetHandlers(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - getHandlers()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/GetModelBinderCest.php b/tests/integration/Mvc/Micro/GetModelBinderCest.php new file mode 100644 index 00000000000..a3cd5bad650 --- /dev/null +++ b/tests/integration/Mvc/Micro/GetModelBinderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class GetModelBinderCest +{ + /** + * Tests Phalcon\Mvc\Micro :: getModelBinder() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroGetModelBinder(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - getModelBinder()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/GetReturnedValueCest.php b/tests/integration/Mvc/Micro/GetReturnedValueCest.php new file mode 100644 index 00000000000..3b8455fafcb --- /dev/null +++ b/tests/integration/Mvc/Micro/GetReturnedValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class GetReturnedValueCest +{ + /** + * Tests Phalcon\Mvc\Micro :: getReturnedValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroGetReturnedValue(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - getReturnedValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/GetRouterCest.php b/tests/integration/Mvc/Micro/GetRouterCest.php new file mode 100644 index 00000000000..94983701301 --- /dev/null +++ b/tests/integration/Mvc/Micro/GetRouterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class GetRouterCest +{ + /** + * Tests Phalcon\Mvc\Micro :: getRouter() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroGetRouter(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - getRouter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/GetServiceCest.php b/tests/integration/Mvc/Micro/GetServiceCest.php new file mode 100644 index 00000000000..d76cff5b8a0 --- /dev/null +++ b/tests/integration/Mvc/Micro/GetServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class GetServiceCest +{ + /** + * Tests Phalcon\Mvc\Micro :: getService() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroGetService(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - getService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/GetSharedServiceCest.php b/tests/integration/Mvc/Micro/GetSharedServiceCest.php new file mode 100644 index 00000000000..c5a4dc08dd4 --- /dev/null +++ b/tests/integration/Mvc/Micro/GetSharedServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class GetSharedServiceCest +{ + /** + * Tests Phalcon\Mvc\Micro :: getSharedService() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroGetSharedService(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - getSharedService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/HandleCest.php b/tests/integration/Mvc/Micro/HandleCest.php new file mode 100644 index 00000000000..bc99a665e12 --- /dev/null +++ b/tests/integration/Mvc/Micro/HandleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class HandleCest +{ + /** + * Tests Phalcon\Mvc\Micro :: handle() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroHandle(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - handle()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/HasServiceCest.php b/tests/integration/Mvc/Micro/HasServiceCest.php new file mode 100644 index 00000000000..2c7178ac967 --- /dev/null +++ b/tests/integration/Mvc/Micro/HasServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class HasServiceCest +{ + /** + * Tests Phalcon\Mvc\Micro :: hasService() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroHasService(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - hasService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/HeadCest.php b/tests/integration/Mvc/Micro/HeadCest.php new file mode 100644 index 00000000000..4b5667b3b62 --- /dev/null +++ b/tests/integration/Mvc/Micro/HeadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class HeadCest +{ + /** + * Tests Phalcon\Mvc\Micro :: head() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroHead(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - head()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/LazyLoader/CallMethodCest.php b/tests/integration/Mvc/Micro/LazyLoader/CallMethodCest.php new file mode 100644 index 00000000000..0f61f57516b --- /dev/null +++ b/tests/integration/Mvc/Micro/LazyLoader/CallMethodCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro\LazyLoader; + +use IntegrationTester; + +class CallMethodCest +{ + /** + * Tests Phalcon\Mvc\Micro\LazyLoader :: callMethod() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroLazyloaderCallMethod(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro\LazyLoader - callMethod()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/LazyLoader/ConstructCest.php b/tests/integration/Mvc/Micro/LazyLoader/ConstructCest.php new file mode 100644 index 00000000000..77f411ec478 --- /dev/null +++ b/tests/integration/Mvc/Micro/LazyLoader/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro\LazyLoader; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Micro\LazyLoader :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroLazyloaderConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro\LazyLoader - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/LazyLoader/GetDefinitionCest.php b/tests/integration/Mvc/Micro/LazyLoader/GetDefinitionCest.php new file mode 100644 index 00000000000..818997ba5d7 --- /dev/null +++ b/tests/integration/Mvc/Micro/LazyLoader/GetDefinitionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro\LazyLoader; + +use IntegrationTester; + +class GetDefinitionCest +{ + /** + * Tests Phalcon\Mvc\Micro\LazyLoader :: getDefinition() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroLazyloaderGetDefinition(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro\LazyLoader - getDefinition()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/LazyLoader/UnderscoreCallCest.php b/tests/integration/Mvc/Micro/LazyLoader/UnderscoreCallCest.php new file mode 100644 index 00000000000..820cf588638 --- /dev/null +++ b/tests/integration/Mvc/Micro/LazyLoader/UnderscoreCallCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro\LazyLoader; + +use IntegrationTester; + +class UnderscoreCallCest +{ + /** + * Tests Phalcon\Mvc\Micro\LazyLoader :: __call() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroLazyloaderCall(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro\LazyLoader - __call()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/MapCest.php b/tests/integration/Mvc/Micro/MapCest.php new file mode 100644 index 00000000000..b3384f36aa4 --- /dev/null +++ b/tests/integration/Mvc/Micro/MapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class MapCest +{ + /** + * Tests Phalcon\Mvc\Micro :: map() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - map()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/MicroMvcCollectionsCest.php b/tests/integration/Mvc/Micro/MicroMvcCollectionsCest.php new file mode 100644 index 00000000000..4589400341e --- /dev/null +++ b/tests/integration/Mvc/Micro/MicroMvcCollectionsCest.php @@ -0,0 +1,80 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; +use Phalcon\Mvc\Micro; +use Phalcon\Mvc\Micro\Collection; +use Phalcon\Test\Controllers\Micro\Collections\PersonasController; +use Phalcon\Test\Controllers\Micro\Collections\PersonasLazyController; + +class MicroMvcCollectionsCest +{ + public function testMicroCollections(IntegrationTester $I) + { + $app = new Micro(); + $collection = new Collection(); + $controller = new PersonasController(); + + $collection->setHandler($controller); + $collection->map('/', 'index', 'index_route'); + $collection->map('/edit/{number}', 'edit', 'edit_route'); + + $app->mount($collection); + + $app->handle('/'); + $I->assertEquals(1, $controller->getEntered()); + $I->assertEquals('index_route', $app->getRouter()->getMatchedRoute()->getName()); + + $app->handle('/edit/100'); + $I->assertEquals(101, $controller->getEntered()); + $I->assertEquals('edit_route', $app->getRouter()->getMatchedRoute()->getName()); + } + + public function testMicroCollectionsPrefixed(IntegrationTester $I) + { + $app = new Micro(); + $collection = new Collection(); + + $collection->setPrefix('/personas'); + + $controller = new PersonasController(); + + $collection->setHandler($controller); + $collection->map('/', 'index'); + $collection->map('/edit/{number}', 'edit'); + $app->mount($collection); + + $app->handle('/personas'); + $I->assertEquals($controller->getEntered(), 1); + + $app->handle('/personas/edit/100'); + $I->assertEquals($controller->getEntered(), 101); + } + + public function testMicroCollectionsLazy(IntegrationTester $I) + { + $app = new Micro(); + $collection = new Collection(); + + $collection->setHandler('Phalcon\Test\Controllers\Micro\Collections\PersonasLazyController', true); + $collection->map('/', 'index'); + $collection->map('/edit/{number}', 'edit'); + $app->mount($collection); + + $app->handle('/'); + $I->assertEquals(PersonasLazyController::getEntered(), 1); + + $app->handle('/edit/100'); + $I->assertEquals(PersonasLazyController::getEntered(), 101); + } +} diff --git a/tests/integration/Mvc/Micro/MountCest.php b/tests/integration/Mvc/Micro/MountCest.php new file mode 100644 index 00000000000..1601d4e5fa8 --- /dev/null +++ b/tests/integration/Mvc/Micro/MountCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class MountCest +{ + /** + * Tests Phalcon\Mvc\Micro :: mount() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroMount(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - mount()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/NotFoundCest.php b/tests/integration/Mvc/Micro/NotFoundCest.php new file mode 100644 index 00000000000..9bfe8ddd223 --- /dev/null +++ b/tests/integration/Mvc/Micro/NotFoundCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class NotFoundCest +{ + /** + * Tests Phalcon\Mvc\Micro :: notFound() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroNotFound(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - notFound()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/OffsetExistsCest.php b/tests/integration/Mvc/Micro/OffsetExistsCest.php new file mode 100644 index 00000000000..6912404fd71 --- /dev/null +++ b/tests/integration/Mvc/Micro/OffsetExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class OffsetExistsCest +{ + /** + * Tests Phalcon\Mvc\Micro :: offsetExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroOffsetExists(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - offsetExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/OffsetGetCest.php b/tests/integration/Mvc/Micro/OffsetGetCest.php new file mode 100644 index 00000000000..c0b0b433ebf --- /dev/null +++ b/tests/integration/Mvc/Micro/OffsetGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class OffsetGetCest +{ + /** + * Tests Phalcon\Mvc\Micro :: offsetGet() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroOffsetGet(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - offsetGet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/OffsetSetCest.php b/tests/integration/Mvc/Micro/OffsetSetCest.php new file mode 100644 index 00000000000..67328a16068 --- /dev/null +++ b/tests/integration/Mvc/Micro/OffsetSetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class OffsetSetCest +{ + /** + * Tests Phalcon\Mvc\Micro :: offsetSet() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroOffsetSet(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - offsetSet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/OffsetUnsetCest.php b/tests/integration/Mvc/Micro/OffsetUnsetCest.php new file mode 100644 index 00000000000..095300375d4 --- /dev/null +++ b/tests/integration/Mvc/Micro/OffsetUnsetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class OffsetUnsetCest +{ + /** + * Tests Phalcon\Mvc\Micro :: offsetUnset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroOffsetUnset(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - offsetUnset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/OptionsCest.php b/tests/integration/Mvc/Micro/OptionsCest.php new file mode 100644 index 00000000000..6da1bfe3f0e --- /dev/null +++ b/tests/integration/Mvc/Micro/OptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class OptionsCest +{ + /** + * Tests Phalcon\Mvc\Micro :: options() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroOptions(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - options()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/PatchCest.php b/tests/integration/Mvc/Micro/PatchCest.php new file mode 100644 index 00000000000..2444bdfba72 --- /dev/null +++ b/tests/integration/Mvc/Micro/PatchCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class PatchCest +{ + /** + * Tests Phalcon\Mvc\Micro :: patch() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroPatch(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - patch()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/PostCest.php b/tests/integration/Mvc/Micro/PostCest.php new file mode 100644 index 00000000000..f381da20202 --- /dev/null +++ b/tests/integration/Mvc/Micro/PostCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class PostCest +{ + /** + * Tests Phalcon\Mvc\Micro :: post() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroPost(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - post()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/PutCest.php b/tests/integration/Mvc/Micro/PutCest.php new file mode 100644 index 00000000000..e78857b5a22 --- /dev/null +++ b/tests/integration/Mvc/Micro/PutCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class PutCest +{ + /** + * Tests Phalcon\Mvc\Micro :: put() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroPut(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - put()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/SetActiveHandlerCest.php b/tests/integration/Mvc/Micro/SetActiveHandlerCest.php new file mode 100644 index 00000000000..7c6e337afa5 --- /dev/null +++ b/tests/integration/Mvc/Micro/SetActiveHandlerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class SetActiveHandlerCest +{ + /** + * Tests Phalcon\Mvc\Micro :: setActiveHandler() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroSetActiveHandler(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - setActiveHandler()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/SetDICest.php b/tests/integration/Mvc/Micro/SetDICest.php new file mode 100644 index 00000000000..6c62adbaf04 --- /dev/null +++ b/tests/integration/Mvc/Micro/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Micro :: setDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroSetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/SetEventsManagerCest.php b/tests/integration/Mvc/Micro/SetEventsManagerCest.php new file mode 100644 index 00000000000..9b1c3825e79 --- /dev/null +++ b/tests/integration/Mvc/Micro/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Micro :: setEventsManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroSetEventsManager(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/SetModelBinderCest.php b/tests/integration/Mvc/Micro/SetModelBinderCest.php new file mode 100644 index 00000000000..0bff57b2010 --- /dev/null +++ b/tests/integration/Mvc/Micro/SetModelBinderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class SetModelBinderCest +{ + /** + * Tests Phalcon\Mvc\Micro :: setModelBinder() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroSetModelBinder(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - setModelBinder()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/SetServiceCest.php b/tests/integration/Mvc/Micro/SetServiceCest.php new file mode 100644 index 00000000000..fea4a88e90b --- /dev/null +++ b/tests/integration/Mvc/Micro/SetServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class SetServiceCest +{ + /** + * Tests Phalcon\Mvc\Micro :: setService() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroSetService(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - setService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/StopCest.php b/tests/integration/Mvc/Micro/StopCest.php new file mode 100644 index 00000000000..e5cc27b3183 --- /dev/null +++ b/tests/integration/Mvc/Micro/StopCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class StopCest +{ + /** + * Tests Phalcon\Mvc\Micro :: stop() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroStop(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - stop()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Micro/UnderscoreGetCest.php b/tests/integration/Mvc/Micro/UnderscoreGetCest.php new file mode 100644 index 00000000000..0f379bff109 --- /dev/null +++ b/tests/integration/Mvc/Micro/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Micro; + +use IntegrationTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Mvc\Micro :: __get() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcMicroUnderscoreGet(IntegrationTester $I) + { + $I->wantToTest("Mvc\Micro - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/MicroCest.php b/tests/integration/Mvc/MicroCest.php new file mode 100644 index 00000000000..fb486ad57a9 --- /dev/null +++ b/tests/integration/Mvc/MicroCest.php @@ -0,0 +1,610 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc; + +use IntegrationTester; +use Phalcon\Di\FactoryDefault; +use Phalcon\Events\Event; +use Phalcon\Events\Manager; +use Phalcon\Mvc\Micro; +use Phalcon\Test\Controllers\MicroController; +use Phalcon\Test\Fixtures\Micro\MyMiddleware; +use Phalcon\Test\Fixtures\Micro\MyMiddlewareStop; +use Phalcon\Test\Fixtures\Micro\RestHandler; + +/** + * Phalcon\Test\Integration\Mvc\MicroTest + * + * Tests the Phalcon\Mvc\Micro component + * + * @package Phalcon\Test\Integration\Mvc + */ +class MicroCest +{ + /** + * Tests after binding event + * + * @author Wojciech Ślawski + * @since 2016-11-19 + */ + public function testAfterBindingEvent(IntegrationTester $I) + { + $di = new FactoryDefault(); + $micro = new Micro($di); + $manager = new Manager(); + $manager->attach( + 'micro:afterBinding', + function (Event $event, Micro $micro) { + return false; + } + ); + $micro->setEventsManager($manager); + $micro->get( + '/test', + function () { + return 'test'; + } + ); + $actual = $micro->handle('/test'); + $I->assertEmpty($actual); + } + + /** + * Tests after binding middleware + * + * @author Wojciech Ślawski + * @since 2016-11-19 + */ + public function testAfterBindingMiddleware(IntegrationTester $I) + { + $di = new FactoryDefault(); + $micro = new Micro($di); + $micro->afterBinding( + function () { + return false; + } + ); + $micro->get( + '/test', + function () { + return 'test'; + } + ); + + $expected = 'test'; + $actual = $micro->handle('/test'); + $I->assertEquals($expected, $actual); + } + + public function testStopMiddlewareOnAfterBindingClosure(IntegrationTester $I) + { + $di = new FactoryDefault(); + $micro = new Micro($di); + $micro->afterBinding( + function () use ($micro) { + $micro->stop(); + + return false; + } + ); + $micro->get( + '/test', + function () { + return 'test'; + } + ); + + $actual = $micro->handle('/test'); + $I->assertEmpty($actual); + } + + public function testStopMiddlewareOnAfterBindingClassFirst(IntegrationTester $I) + { + $di = new FactoryDefault(); + $micro = new Micro($di); + $middleware = new MyMiddleware(); + $middlewareStop = new MyMiddlewareStop(); + $micro->afterBinding($middlewareStop); + $micro->afterBinding($middleware); + $micro->afterBinding($middleware); + $micro->afterBinding($middleware); + $micro->get( + '/test', + function () { + return 'test'; + } + ); + $actual = $micro->handle('/test'); + $I->assertEmpty($actual); + + $expected = 1; + $actual = $middlewareStop->getNumber(); + $I->assertEquals($expected, $actual); + + $expected = 0; + $actual = $middleware->getNumber(); + $I->assertEquals($expected, $actual); + } + + public function testStopMiddlewareOnAfterBindingClass(IntegrationTester $I) + { + $di = new FactoryDefault(); + $micro = new Micro($di); + $middleware = new MyMiddleware(); + $middlewareStop = new MyMiddlewareStop(); + $micro->afterBinding($middleware); + $micro->afterBinding($middleware); + $micro->afterBinding($middleware); + $micro->afterBinding($middlewareStop); + $micro->afterBinding($middleware); + $micro->get( + '/test', + function () { + return 'test'; + } + ); + $actual = $micro->handle('/test'); + $I->assertEmpty($actual); + + $expected = 1; + $actual = $middlewareStop->getNumber(); + $I->assertEquals($expected, $actual); + + $expected = 3; + $actual = $middleware->getNumber(); + $I->assertEquals($expected, $actual); + } + + public function testMicroClass(IntegrationTester $I) + { + $handler = new RestHandler(); + + $app = new Micro(); + + $app->get("/api/site", [$handler, "find"]); + $app->post("/api/site/save", [$handler, "save"]); + $app->delete("/api/site/delete/1", [$handler, "delete"]); + + //Getting the url from _url using GET + $_SERVER["REQUEST_METHOD"] = "GET"; + + $app->handle("/api/site"); + + $expected = 1; + $actual = $handler->getNumberAccess(); + $I->assertEquals($expected, $actual); + + $expected = ['find']; + $actual = $handler->getTrace(); + $I->assertEquals($expected, $actual); + + //Getting the url from _url using POST + $_SERVER["REQUEST_METHOD"] = "POST"; + + $app->handle("/api/site/save"); + + $expected = 2; + $actual = $handler->getNumberAccess(); + $I->assertEquals($expected, $actual); + + $expected = ['find', 'save']; + $actual = $handler->getTrace(); + $I->assertEquals($expected, $actual); + + //Passing directly a URI + $_SERVER["REQUEST_METHOD"] = "DELETE"; + + $app->handle("/api/site/delete/1"); + + $expected = 3; + $actual = $handler->getNumberAccess(); + $I->assertEquals($expected, $actual); + + $expected = ['find', 'save', 'delete']; + $actual = $handler->getTrace(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests the notFound + * + * @issue T169 + * @author Nikos Dimopoulos + * @since 2012-11-06 + */ + public function testMicroNotFoundT169(IntegrationTester $I) + { + $handler = new RestHandler(); + + $app = new Micro(); + + $app->get("/api/site", [$handler, "find"]); + $app->post("/api/site/save", [$handler, "save"]); + + $flag = false; + + $app->notFound( + function () use (&$flag) { + $flag = true; + } + ); + + $_SERVER["REQUEST_METHOD"] = "GET"; + + $app->handle("/fourohfour"); + + $I->assertTrue($flag); + } + + public function testMicroBeforeHandlers(IntegrationTester $I) + { + $trace = []; + $app = new Micro(); + + $app->before( + function () use ($app, &$trace) { + $trace[] = 1; + $app->stop(); + + return false; + } + ); + + $app->before( + function () use ($app, &$trace) { + $trace[] = 1; + $app->stop(); + + return false; + } + ); + + $app->map( + "/blog", + function () use (&$trace) { + $trace[] = 1; + } + ); + + $app->handle("/blog"); + $I->assertCount(1, $trace); + } + + public function testMicroAfterHandlers(IntegrationTester $I) + { + $trace = []; + $app = new Micro(); + + $app->after( + function () use (&$trace) { + $trace[] = 1; + } + ); + + $app->after( + function () use (&$trace) { + $trace[] = 1; + } + ); + + $app->map( + "/blog", + function () use (&$trace) { + $trace[] = 1; + } + ); + + $app->handle("/blog"); + $I->assertCount(3, $trace); + } + + public function testMicroAfterHandlersIfOneStop(IntegrationTester $I) + { + $trace = []; + $app = new Micro(); + + $app->after( + function () use (&$trace) { + $trace[] = 1; + } + ); + + $app->after( + function () use ($app, &$trace) { + $trace[] = 1; + $app->stop(); + } + ); + + $app->after( + function () use (&$trace) { + $trace[] = 1; + } + ); + + $app->map( + '/blog', + function () use (&$trace) { + $trace[] = 1; + } + ); + + $app->handle('/blog'); + $I->assertCount(3, $trace); + } + + public function testMicroFinishHandlers(IntegrationTester $I) + { + $trace = []; + $app = new Micro(); + + $app->finish( + function () use (&$trace) { + $trace[] = 1; + } + ); + + $app->finish( + function () use (&$trace) { + $trace[] = 1; + } + ); + + $app->map( + "/blog", + function () use (&$trace) { + $trace[] = 1; + } + ); + + $app->handle("/blog"); + $I->assertCount(3, $trace); + } + + public function testMicroFinishHandlersIfOneStop(IntegrationTester $I) + { + $trace = []; + $app = new Micro(); + + $app->finish( + function () use (&$trace) { + $trace[] = 1; + } + ); + + $app->finish( + function () use ($app, &$trace) { + $trace[] = 1; + $app->stop(); + } + ); + + $app->finish( + function () use (&$trace) { + $trace[] = 1; + } + ); + + $app->map( + '/blog', + function () use (&$trace) { + $trace[] = 1; + } + ); + + $app->handle('/blog'); + $I->assertCount(3, $trace); + } + + public function testMicroEvents(IntegrationTester $I) + { + $trace = []; + $eventsManager = new Manager(); + + $eventsManager->attach( + 'micro', + function ($event) use (&$trace) { + $trace[$event->getType()] = true; + } + ); + + $app = new Micro(); + + $app->setEventsManager($eventsManager); + + $app->map( + "/blog", + function () { + } + ); + + $app->handle("/blog"); + + $expected = [ + 'beforeHandleRoute' => true, + 'beforeExecuteRoute' => true, + 'afterExecuteRoute' => true, + 'afterHandleRoute' => true, + 'afterBinding' => true, + ]; + $I->assertEquals($expected, $trace); + } + + public function testMicroMiddlewareSimple(IntegrationTester $I) + { + $app = new Micro(); + $app->map( + "/api/site", + function () { + return true; + } + ); + + $trace = 0; + + $app->before( + function () use (&$trace) { + $trace++; + } + ); + + $app->before( + function () use (&$trace) { + $trace++; + } + ); + + $app->after( + function () use (&$trace) { + $trace++; + } + ); + + $app->after( + function () use (&$trace) { + $trace++; + } + ); + + $app->finish( + function () use (&$trace) { + $trace++; + } + ); + + $app->finish( + function () use (&$trace) { + $trace++; + } + ); + $app->handle("/api/site"); + $I->assertEquals(6, $trace); + } + + public function testMicroMiddlewareClasses(IntegrationTester $I) + { + $app = new Micro(); + + $app->map( + "/api/site", + function () { + return true; + } + ); + + $middleware = new MyMiddleware(); + + $app->before($middleware); + $app->before($middleware); + + $app->after($middleware); + $app->after($middleware); + + $app->finish($middleware); + $app->finish($middleware); + + $app->handle("/api/site"); + + $actual = $middleware->getNumber(); + $I->assertEquals(6, $actual); + } + + public function testMicroStopMiddlewareOnBeforeClasses(IntegrationTester $I) + { + $app = new Micro(); + $app->map( + "/api/site", + function () { + return true; + } + ); + + $middleware = new MyMiddlewareStop(); + + $app->before($middleware); + $app->before($middleware); + + $app->after($middleware); + $app->after($middleware); + + $app->finish($middleware); + $app->finish($middleware); + + $app->handle("/api/site"); + + $actual = $middleware->getNumber(); + $I->assertEquals(1, $actual); + } + + public function testMicroStopMiddlewareOnAfterAndFinishClasses(IntegrationTester $I) + { + $app = new Micro(); + $app->map( + '/api/site', + function () { + return true; + } + ); + + $middleware = new MyMiddlewareStop(); + + $app->after($middleware); + $app->after($middleware); + + $app->finish($middleware); + $app->finish($middleware); + + $app->handle('/api/site'); + + $actual = $middleware->getNumber(); + $I->assertEquals(2, $actual); + } + + public function testMicroResponseAlreadySentError(IntegrationTester $I) + { + $app = new Micro(); + $app->after( + function () use ($app) { + $content = $app->getReturnedValue(); + $app->response->setJsonContent($content)->send(); + } + ); + $app->map( + '/api', + function () { + return 'success'; + } + ); + + $expected = 'success'; + $actual = $app->handle('/api'); + $I->assertEquals($expected, $actual); + } + + public function testMicroCollectionVia(IntegrationTester $I) + { + $app = new Micro(); + $collection = new Micro\Collection(); + $collection->setHandler(new MicroController()); + $collection->mapVia( + "/test", + 'indexAction', + ["POST", "GET"], + "test" + ); + $app->mount($collection); + + $expected = ["POST", "GET"]; + $actual = $app->getRouter()->getRouteByName("test")->getHttpMethods(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Mvc/Model/AddBehaviorCest.php b/tests/integration/Mvc/Model/AddBehaviorCest.php new file mode 100644 index 00000000000..b67933fe2e2 --- /dev/null +++ b/tests/integration/Mvc/Model/AddBehaviorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class AddBehaviorCest +{ + /** + * Tests Phalcon\Mvc\Model :: addBehavior() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelAddBehavior(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - addBehavior()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/AppendMessageCest.php b/tests/integration/Mvc/Model/AppendMessageCest.php new file mode 100644 index 00000000000..fb940bf022d --- /dev/null +++ b/tests/integration/Mvc/Model/AppendMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class AppendMessageCest +{ + /** + * Tests Phalcon\Mvc\Model :: appendMessage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelAppendMessage(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - appendMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/AssignCest.php b/tests/integration/Mvc/Model/AssignCest.php new file mode 100644 index 00000000000..6899b806791 --- /dev/null +++ b/tests/integration/Mvc/Model/AssignCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class AssignCest +{ + /** + * Tests Phalcon\Mvc\Model :: assign() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelAssign(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - assign()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/AverageCest.php b/tests/integration/Mvc/Model/AverageCest.php new file mode 100644 index 00000000000..7863a64046d --- /dev/null +++ b/tests/integration/Mvc/Model/AverageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class AverageCest +{ + /** + * Tests Phalcon\Mvc\Model :: average() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelAverage(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - average()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Behavior/ConstructCest.php b/tests/integration/Mvc/Model/Behavior/ConstructCest.php new file mode 100644 index 00000000000..774d530da21 --- /dev/null +++ b/tests/integration/Mvc/Model/Behavior/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Behavior; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model\Behavior :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelBehaviorConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Behavior - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Behavior/MissingMethodCest.php b/tests/integration/Mvc/Model/Behavior/MissingMethodCest.php new file mode 100644 index 00000000000..4e5f26887a5 --- /dev/null +++ b/tests/integration/Mvc/Model/Behavior/MissingMethodCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Behavior; + +use IntegrationTester; + +class MissingMethodCest +{ + /** + * Tests Phalcon\Mvc\Model\Behavior :: missingMethod() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelBehaviorMissingMethod(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Behavior - missingMethod()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Behavior/NotifyCest.php b/tests/integration/Mvc/Model/Behavior/NotifyCest.php new file mode 100644 index 00000000000..5c1d12d79c0 --- /dev/null +++ b/tests/integration/Mvc/Model/Behavior/NotifyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Behavior; + +use IntegrationTester; + +class NotifyCest +{ + /** + * Tests Phalcon\Mvc\Model\Behavior :: notify() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelBehaviorNotify(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Behavior - notify()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Behavior/SoftDelete/ConstructCest.php b/tests/integration/Mvc/Model/Behavior/SoftDelete/ConstructCest.php new file mode 100644 index 00000000000..05e1ed236c8 --- /dev/null +++ b/tests/integration/Mvc/Model/Behavior/SoftDelete/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Behavior\SoftDelete; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model\Behavior\SoftDelete :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelBehaviorSoftdeleteConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Behavior\SoftDelete - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Behavior/SoftDelete/MissingMethodCest.php b/tests/integration/Mvc/Model/Behavior/SoftDelete/MissingMethodCest.php new file mode 100644 index 00000000000..476aa310d57 --- /dev/null +++ b/tests/integration/Mvc/Model/Behavior/SoftDelete/MissingMethodCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Behavior\SoftDelete; + +use IntegrationTester; + +class MissingMethodCest +{ + /** + * Tests Phalcon\Mvc\Model\Behavior\SoftDelete :: missingMethod() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelBehaviorSoftdeleteMissingMethod(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Behavior\SoftDelete - missingMethod()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Behavior/SoftDelete/NotifyCest.php b/tests/integration/Mvc/Model/Behavior/SoftDelete/NotifyCest.php new file mode 100644 index 00000000000..33593d54915 --- /dev/null +++ b/tests/integration/Mvc/Model/Behavior/SoftDelete/NotifyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Behavior\SoftDelete; + +use IntegrationTester; + +class NotifyCest +{ + /** + * Tests Phalcon\Mvc\Model\Behavior\SoftDelete :: notify() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelBehaviorSoftdeleteNotify(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Behavior\SoftDelete - notify()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Behavior/Timestampable/ConstructCest.php b/tests/integration/Mvc/Model/Behavior/Timestampable/ConstructCest.php new file mode 100644 index 00000000000..be12c398615 --- /dev/null +++ b/tests/integration/Mvc/Model/Behavior/Timestampable/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Behavior\Timestampable; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model\Behavior\Timestampable :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelBehaviorTimestampableConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Behavior\Timestampable - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Behavior/Timestampable/MissingMethodCest.php b/tests/integration/Mvc/Model/Behavior/Timestampable/MissingMethodCest.php new file mode 100644 index 00000000000..1d36bf1e689 --- /dev/null +++ b/tests/integration/Mvc/Model/Behavior/Timestampable/MissingMethodCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Behavior\Timestampable; + +use IntegrationTester; + +class MissingMethodCest +{ + /** + * Tests Phalcon\Mvc\Model\Behavior\Timestampable :: missingMethod() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelBehaviorTimestampableMissingMethod(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Behavior\Timestampable - missingMethod()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Behavior/Timestampable/NotifyCest.php b/tests/integration/Mvc/Model/Behavior/Timestampable/NotifyCest.php new file mode 100644 index 00000000000..726b09dcd9b --- /dev/null +++ b/tests/integration/Mvc/Model/Behavior/Timestampable/NotifyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Behavior\Timestampable; + +use IntegrationTester; + +class NotifyCest +{ + /** + * Tests Phalcon\Mvc\Model\Behavior\Timestampable :: notify() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelBehaviorTimestampableNotify(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Behavior\Timestampable - notify()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Binder/BindToHandlerCest.php b/tests/integration/Mvc/Model/Binder/BindToHandlerCest.php new file mode 100644 index 00000000000..9edd816a9bc --- /dev/null +++ b/tests/integration/Mvc/Model/Binder/BindToHandlerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Binder; + +use IntegrationTester; + +class BindToHandlerCest +{ + /** + * Tests Phalcon\Mvc\Model\Binder :: bindToHandler() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelBinderBindToHandler(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Binder - bindToHandler()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Binder/ConstructCest.php b/tests/integration/Mvc/Model/Binder/ConstructCest.php new file mode 100644 index 00000000000..06e5aeb10cb --- /dev/null +++ b/tests/integration/Mvc/Model/Binder/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Binder; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model\Binder :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelBinderConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Binder - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Binder/GetBoundModelsCest.php b/tests/integration/Mvc/Model/Binder/GetBoundModelsCest.php new file mode 100644 index 00000000000..470c4ecabc4 --- /dev/null +++ b/tests/integration/Mvc/Model/Binder/GetBoundModelsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Binder; + +use IntegrationTester; + +class GetBoundModelsCest +{ + /** + * Tests Phalcon\Mvc\Model\Binder :: getBoundModels() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelBinderGetBoundModels(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Binder - getBoundModels()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Binder/GetCacheCest.php b/tests/integration/Mvc/Model/Binder/GetCacheCest.php new file mode 100644 index 00000000000..efbdcc964eb --- /dev/null +++ b/tests/integration/Mvc/Model/Binder/GetCacheCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Binder; + +use IntegrationTester; + +class GetCacheCest +{ + /** + * Tests Phalcon\Mvc\Model\Binder :: getCache() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelBinderGetCache(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Binder - getCache()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Binder/GetOriginalValuesCest.php b/tests/integration/Mvc/Model/Binder/GetOriginalValuesCest.php new file mode 100644 index 00000000000..e9bdce81462 --- /dev/null +++ b/tests/integration/Mvc/Model/Binder/GetOriginalValuesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Binder; + +use IntegrationTester; + +class GetOriginalValuesCest +{ + /** + * Tests Phalcon\Mvc\Model\Binder :: getOriginalValues() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelBinderGetOriginalValues(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Binder - getOriginalValues()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Binder/SetCacheCest.php b/tests/integration/Mvc/Model/Binder/SetCacheCest.php new file mode 100644 index 00000000000..8bf2df40941 --- /dev/null +++ b/tests/integration/Mvc/Model/Binder/SetCacheCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Binder; + +use IntegrationTester; + +class SetCacheCest +{ + /** + * Tests Phalcon\Mvc\Model\Binder :: setCache() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelBinderSetCache(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Binder - setCache()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/BinderCest.php b/tests/integration/Mvc/Model/BinderCest.php index ca85cdcf4d3..713e46bb20b 100644 --- a/tests/integration/Mvc/Model/BinderCest.php +++ b/tests/integration/Mvc/Model/BinderCest.php @@ -14,7 +14,7 @@ use Phalcon\Mvc\Model\MetaData\Memory; use Phalcon\Test\Models\People; use Phalcon\Test\Models\Robots; -use PHPUnit\Framework\SkippedTestError; +use PHPIntegration\Framework\SkippedTestError; /** * \Phalcon\Test\Integration\Mvc\Model\BindingCest @@ -23,7 +23,7 @@ * @copyright (c) 2011-2016 Phalcon Team * @link http://www.phalconphp.com * @author Andres Gutierrez - * @author Serghei Iakovlev + * @author Phalcon Team * @author Wojciech Ślawski * @package Phalcon\Test\Integration\Mvc\Model * @@ -69,31 +69,26 @@ class BinderCest public function _before(IntegrationTester $I) { Di::setDefault($I->getApplication()->getDI()); + $I->checkExtensionIsLoaded('apcu'); - if (!extension_loaded('apc')) { - throw new SkippedTestError( - 'Warning: apc extension is not loaded' - ); + if (!ini_get('apcu.enabled') || + (PHP_SAPI === 'cli' && !ini_get('apcu.enable_cli'))) { + $I->skipTest('Warning: apcu.enable_cli must be set to "On"'); } - if (!ini_get('apc.enabled') || (PHP_SAPI === 'cli' && !ini_get('apc.enable_cli'))) { - throw new SkippedTestError( - 'Warning: apc.enable_cli must be set to "On"' - ); - } - - if (extension_loaded('apcu') && version_compare(phpversion('apcu'), '5.1.6', '=')) { - throw new SkippedTestError( + if (extension_loaded('apcu') && + version_compare(phpversion('apcu'), '5.1.6', '=')) { + $I->skipError( 'Warning: APCu v5.1.6 was broken. See: https://github.com/krakjoe/apcu/issues/203' ); } - $this->cache = new Apc(new Data(['lifetime' => 20])); + $this->cache = new Apc(new Data(['lifetime' => 20])); $this->modelBinder = new Binder($this->cache); $this->modelsManager = $I->getApplication()->getDI()->getShared('modelsManager'); - $this->robot = Robots::findFirst(); - $this->people = People::findFirst(); + $this->robot = Robots::findFirst(); + $this->people = People::findFirst(); $I->haveServiceInDi( 'modelsMetadata', @@ -135,6 +130,63 @@ public function testDispatcherSingleBinding(IntegrationTester $I) } } + /** + * @param bool $useModelBinder + * + * @return Dispatcher + */ + private function createDispatcher($useModelBinder = true) + { + $this->cache->flush(); + $dispatcher = new Dispatcher; + if ($useModelBinder) { + $dispatcher->setModelBinder($this->modelBinder); + } + $dispatcher->setDI(Di::getDefault()); + + return $dispatcher; + } + + /** + * @param $dispatcher + * @param IntegrationTester $I + */ + private function assertDispatcher($dispatcher, IntegrationTester $I) + { + $I->assertInstanceOf('Phalcon\Di', $dispatcher->getDI()); + $I->haveServiceInDi('dispatcher', $dispatcher); + } + + /** + * @param Dispatcher $dispatcher + * @param $controllerName + * @param $actionName + * @param $params + * @param bool $returnValue + * + * @return mixed + */ + private function returnDispatcherValueForAction( + Dispatcher $dispatcher, + $controllerName, + $actionName, + $params, + $returnValue = true + ) { + $dispatcher->setReturnedValue(null); + $dispatcher->setControllerName($controllerName); + $dispatcher->setActionName($actionName); + $dispatcher->setParams($params); + + if ($returnValue) { + $dispatcher->dispatch(); + + return $dispatcher->getReturnedValue(); + } + + return null; + } + /** * Tests dispatcher and multiple model * @@ -318,10 +370,11 @@ public function testMicroHandlerSingleBinding(IntegrationTester $I) function (People $people) { return $people; } - )->setName('people'); + )->setName('people') + ; for ($i = 0; $i <= 1; $i++) { - $returnedValue = $micro->handle('/'.$this->people->cedula); + $returnedValue = $micro->handle('/' . $this->people->cedula); $I->assertInstanceOf('Phalcon\Test\Models\People', $returnedValue); $I->assertEquals($this->people->cedula, $returnedValue->cedula); @@ -334,6 +387,26 @@ function (People $people) { } } + /** + * @param IntegrationTester $I + * @param bool $useModelBinder + * + * @return Micro + */ + private function createMicro(IntegrationTester $I, $useModelBinder = true) + { + $this->cache->flush(); + $micro = new Micro(Di::getDefault()); + + if ($useModelBinder) { + $micro->setModelBinder($this->modelBinder); + } + + $I->assertInstanceOf('Phalcon\Di', $micro->getDI()); + + return $micro; + } + /** * Tests micro with handler and multi binding * @@ -353,7 +426,7 @@ function (People $people, Robots $robot) { ); for ($i = 0; $i <= 1; $i++) { - $returnedValue = $micro->handle('/'.$this->people->cedula.'/robot/'.$this->robot->id); + $returnedValue = $micro->handle('/' . $this->people->cedula . '/robot/' . $this->robot->id); $I->assertInstanceOf('Phalcon\Test\Models\People', $returnedValue[0]); $I->assertInstanceOf('Phalcon\Test\Models\Robots', $returnedValue[1]); @@ -387,7 +460,7 @@ function (People $people) { } ); try { - $micro->handle('/'.$this->people->cedula); + $micro->handle('/' . $this->people->cedula); $I->assertTrue( false, @@ -410,7 +483,7 @@ function (People $people) { $micro->setModelBinder($this->modelBinder); for ($i = 0; $i <= 1; $i++) { - $returnedValue = $micro->handle('/'.$this->people->cedula); + $returnedValue = $micro->handle('/' . $this->people->cedula); $I->assertInstanceOf('Phalcon\Test\Models\People', $returnedValue); $I->assertEquals($this->people->cedula, $returnedValue->cedula); @@ -441,7 +514,7 @@ public function testMicroControllerSingleBinding(IntegrationTester $I) $micro->mount($test10); for ($i = 0; $i <= 1; $i++) { - $returnedValue = $micro->handle('/'.$this->people->cedula); + $returnedValue = $micro->handle('/' . $this->people->cedula); $I->assertInstanceOf('Phalcon\Test\Models\People', $returnedValue); $I->assertEquals($this->people->cedula, $returnedValue->cedula); @@ -472,7 +545,7 @@ public function testMicroControllerMultiBinding(IntegrationTester $I) $micro->mount($test10); for ($i = 0; $i <= 1; $i++) { - $returnedValue = $micro->handle('/'.$this->people->cedula.'/robot/'.$this->robot->id); + $returnedValue = $micro->handle('/' . $this->people->cedula . '/robot/' . $this->robot->id); $I->assertInstanceOf('Phalcon\Test\Models\People', $returnedValue[0]); $I->assertInstanceOf('Phalcon\Test\Models\Robots', $returnedValue[1]); @@ -506,7 +579,7 @@ public function testMicroControllerSingleBindingWithInterface(IntegrationTester $micro->mount($test11); for ($i = 0; $i <= 1; $i++) { - $returnedValue = $micro->handle('/'.$this->people->cedula); + $returnedValue = $micro->handle('/' . $this->people->cedula); $I->assertInstanceOf('Phalcon\Test\Models\People', $returnedValue); $I->assertEquals($this->people->cedula, $returnedValue->cedula); $I->assertEquals( @@ -536,7 +609,7 @@ public function testMicroControllerMultiBindingWithInterface(IntegrationTester $ $micro->mount($test11); for ($i = 0; $i <= 1; $i++) { - $returnedValue = $micro->handle('/'.$this->people->cedula.'/robot/'.$this->robot->id); + $returnedValue = $micro->handle('/' . $this->people->cedula . '/robot/' . $this->robot->id); $I->assertInstanceOf('Phalcon\Test\Models\People', $returnedValue[0]); $I->assertInstanceOf('Phalcon\Test\Models\Robots', $returnedValue[1]); @@ -570,7 +643,7 @@ public function testMicroControllerSingleBindingException(IntegrationTester $I) $micro->mount($test9); try { - $micro->handle('/'.$this->people->cedula); + $micro->handle('/' . $this->people->cedula); $I->assertTrue( false, @@ -593,7 +666,7 @@ public function testMicroControllerSingleBindingException(IntegrationTester $I) $micro->setModelBinder($this->modelBinder); for ($i = 0; $i <= 1; $i++) { - $returnedValue = $micro->handle('/'.$this->people->cedula); + $returnedValue = $micro->handle('/' . $this->people->cedula); $I->assertInstanceOf('Phalcon\Test\Models\People', $returnedValue); $I->assertEquals($this->people->cedula, $returnedValue->cedula); @@ -624,7 +697,7 @@ public function testMicroLazySingleBinding(IntegrationTester $I) $micro->mount($test10); for ($i = 0; $i <= 1; $i++) { - $returnedValue = $micro->handle('/'.$this->people->cedula); + $returnedValue = $micro->handle('/' . $this->people->cedula); $I->assertInstanceOf('Phalcon\Test\Models\People', $returnedValue); $I->assertEquals($this->people->cedula, $returnedValue->cedula); @@ -655,7 +728,7 @@ public function testMicroLazyMultiBinding(IntegrationTester $I) $micro->mount($test10); for ($i = 0; $i <= 1; $i++) { - $returnedValue = $micro->handle('/'.$this->people->cedula.'/robot/'.$this->robot->id); + $returnedValue = $micro->handle('/' . $this->people->cedula . '/robot/' . $this->robot->id); $I->assertInstanceOf('Phalcon\Test\Models\People', $returnedValue[0]); $I->assertInstanceOf('Phalcon\Test\Models\Robots', $returnedValue[1]); @@ -689,7 +762,7 @@ public function testMicroLazySingleBindingWithInterface(IntegrationTester $I) $micro->mount($test11); for ($i = 0; $i <= 1; $i++) { - $returnedValue = $micro->handle('/'.$this->people->cedula); + $returnedValue = $micro->handle('/' . $this->people->cedula); $I->assertInstanceOf('Phalcon\Test\Models\People', $returnedValue); $I->assertEquals($this->people->cedula, $returnedValue->cedula); @@ -720,7 +793,7 @@ public function testMicroLazyMultiBindingWithInterface(IntegrationTester $I) $micro->mount($test11); for ($i = 0; $i <= 1; $i++) { - $returnedValue = $micro->handle('/'.$this->people->cedula.'/robot/'.$this->robot->id); + $returnedValue = $micro->handle('/' . $this->people->cedula . '/robot/' . $this->robot->id); $I->assertInstanceOf('Phalcon\Test\Models\People', $returnedValue[0]); $I->assertInstanceOf('Phalcon\Test\Models\Robots', $returnedValue[1]); @@ -754,7 +827,7 @@ public function testMicroLazySingleBindingException(IntegrationTester $I) $micro->mount($test9); try { - $micro->handle('/'.$this->people->cedula); + $micro->handle('/' . $this->people->cedula); $I->assertTrue( false, @@ -777,7 +850,7 @@ public function testMicroLazySingleBindingException(IntegrationTester $I) $micro->setModelBinder($this->modelBinder); for ($i = 0; $i <= 1; $i++) { - $returnedValue = $micro->handle('/'.$this->people->cedula); + $returnedValue = $micro->handle('/' . $this->people->cedula); $I->assertInstanceOf('Phalcon\Test\Models\People', $returnedValue); $I->assertEquals($this->people->cedula, $returnedValue->cedula); @@ -801,7 +874,7 @@ public function testMicroLazySingleBindingException(IntegrationTester $I) public function testDispatcherSingleBindingOriginalValues(IntegrationTester $I) { $dispatcher = $this->createDispatcher(); - $params = ['people' => $this->people->cedula]; + $params = ['people' => $this->people->cedula]; $this->assertDispatcher($dispatcher, $I); $returnedValue = $this->returnDispatcherValueForAction( @@ -825,7 +898,7 @@ public function testDispatcherSingleBindingOriginalValues(IntegrationTester $I) */ public function testDispatcherSingleBindingNoCache(IntegrationTester $I) { - $dispatcher = $this->createDispatcher(false); + $dispatcher = $this->createDispatcher(false); $modelBinder = new Binder(); $dispatcher->setModelBinder($modelBinder); $this->assertDispatcher($dispatcher, $I); @@ -841,78 +914,4 @@ public function testDispatcherSingleBindingNoCache(IntegrationTester $I) $I->assertEquals($this->people->cedula, $returnedValue->cedula); } } - - /** - * @param bool $useModelBinder - * @return Dispatcher - */ - private function createDispatcher($useModelBinder = true) - { - $this->cache->flush(); - $dispatcher = new Dispatcher; - if ($useModelBinder) { - $dispatcher->setModelBinder($this->modelBinder); - } - $dispatcher->setDI(Di::getDefault()); - - return $dispatcher; - } - - /** - * @param $dispatcher - * @param IntegrationTester $I - */ - private function assertDispatcher($dispatcher, IntegrationTester $I) - { - $I->assertInstanceOf('Phalcon\Di', $dispatcher->getDI()); - $I->haveServiceInDi('dispatcher', $dispatcher); - } - - /** - * @param Dispatcher $dispatcher - * @param $controllerName - * @param $actionName - * @param $params - * @param bool $returnValue - * @return mixed - */ - private function returnDispatcherValueForAction( - Dispatcher $dispatcher, - $controllerName, - $actionName, - $params, - $returnValue = true - ) { - $dispatcher->setReturnedValue(null); - $dispatcher->setControllerName($controllerName); - $dispatcher->setActionName($actionName); - $dispatcher->setParams($params); - - if ($returnValue) { - $dispatcher->dispatch(); - - return $dispatcher->getReturnedValue(); - } - - return null; - } - - /** - * @param IntegrationTester $I - * @param bool $useModelBinder - * @return Micro - */ - private function createMicro(IntegrationTester $I, $useModelBinder = true) - { - $this->cache->flush(); - $micro = new Micro(Di::getDefault()); - - if ($useModelBinder) { - $micro->setModelBinder($this->modelBinder); - } - - $I->assertInstanceOf('Phalcon\Di', $micro->getDI()); - - return $micro; - } } diff --git a/tests/integration/Mvc/Model/CloneResultCest.php b/tests/integration/Mvc/Model/CloneResultCest.php new file mode 100644 index 00000000000..14126a7b314 --- /dev/null +++ b/tests/integration/Mvc/Model/CloneResultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class CloneResultCest +{ + /** + * Tests Phalcon\Mvc\Model :: cloneResult() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCloneResult(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - cloneResult()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/CloneResultMapCest.php b/tests/integration/Mvc/Model/CloneResultMapCest.php new file mode 100644 index 00000000000..73c3db9feba --- /dev/null +++ b/tests/integration/Mvc/Model/CloneResultMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class CloneResultMapCest +{ + /** + * Tests Phalcon\Mvc\Model :: cloneResultMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCloneResultMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - cloneResultMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/CloneResultMapHydrateCest.php b/tests/integration/Mvc/Model/CloneResultMapHydrateCest.php new file mode 100644 index 00000000000..03baf594f2f --- /dev/null +++ b/tests/integration/Mvc/Model/CloneResultMapHydrateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class CloneResultMapHydrateCest +{ + /** + * Tests Phalcon\Mvc\Model :: cloneResultMapHydrate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCloneResultMapHydrate(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - cloneResultMapHydrate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/ConstructCest.php b/tests/integration/Mvc/Model/ConstructCest.php new file mode 100644 index 00000000000..a882fd39997 --- /dev/null +++ b/tests/integration/Mvc/Model/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/CountCest.php b/tests/integration/Mvc/Model/CountCest.php new file mode 100644 index 00000000000..0dfdae3f9c7 --- /dev/null +++ b/tests/integration/Mvc/Model/CountCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class CountCest +{ + /** + * Tests Phalcon\Mvc\Model :: count() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCountMysql(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - count()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/CreateCest.php b/tests/integration/Mvc/Model/CreateCest.php new file mode 100644 index 00000000000..ff486cfd83f --- /dev/null +++ b/tests/integration/Mvc/Model/CreateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class CreateCest +{ + /** + * Tests Phalcon\Mvc\Model :: create() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCreate(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - create()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/AndWhereCest.php b/tests/integration/Mvc/Model/Criteria/AndWhereCest.php new file mode 100644 index 00000000000..99ae13de9e7 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/AndWhereCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class AndWhereCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: andWhere() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaAndWhere(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - andWhere()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/BetweenWhereCest.php b/tests/integration/Mvc/Model/Criteria/BetweenWhereCest.php new file mode 100644 index 00000000000..9da03d49874 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/BetweenWhereCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class BetweenWhereCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: betweenWhere() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaBetweenWhere(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - betweenWhere()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/BindCest.php b/tests/integration/Mvc/Model/Criteria/BindCest.php new file mode 100644 index 00000000000..d4a0e037164 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/BindCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class BindCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: bind() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaBind(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - bind()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/BindTypesCest.php b/tests/integration/Mvc/Model/Criteria/BindTypesCest.php new file mode 100644 index 00000000000..6aa79773469 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/BindTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class BindTypesCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: bindTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaBindTypes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - bindTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/CacheCest.php b/tests/integration/Mvc/Model/Criteria/CacheCest.php new file mode 100644 index 00000000000..79d0ba407a3 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/CacheCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class CacheCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: cache() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaCache(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - cache()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/ColumnsCest.php b/tests/integration/Mvc/Model/Criteria/ColumnsCest.php new file mode 100644 index 00000000000..3c70d412940 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/ColumnsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class ColumnsCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: columns() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaColumns(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - columns()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/ConditionsCest.php b/tests/integration/Mvc/Model/Criteria/ConditionsCest.php new file mode 100644 index 00000000000..3ebf44acbe1 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/ConditionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class ConditionsCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: conditions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaConditions(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - conditions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/CreateBuilderCest.php b/tests/integration/Mvc/Model/Criteria/CreateBuilderCest.php new file mode 100644 index 00000000000..a3649096168 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/CreateBuilderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class CreateBuilderCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: createBuilder() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaCreateBuilder(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - createBuilder()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/DistinctCest.php b/tests/integration/Mvc/Model/Criteria/DistinctCest.php new file mode 100644 index 00000000000..757a4666006 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/DistinctCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class DistinctCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: distinct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaDistinct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - distinct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/ExecuteCest.php b/tests/integration/Mvc/Model/Criteria/ExecuteCest.php new file mode 100644 index 00000000000..054c2dd0e23 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/ExecuteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class ExecuteCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: execute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaExecute(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - execute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/ForUpdateCest.php b/tests/integration/Mvc/Model/Criteria/ForUpdateCest.php new file mode 100644 index 00000000000..a127f7e49ab --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/ForUpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class ForUpdateCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: forUpdate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaForUpdate(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - forUpdate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/FromInputCest.php b/tests/integration/Mvc/Model/Criteria/FromInputCest.php index d9bc7d39847..189ae1f15bc 100644 --- a/tests/integration/Mvc/Model/Criteria/FromInputCest.php +++ b/tests/integration/Mvc/Model/Criteria/FromInputCest.php @@ -1,64 +1,103 @@ + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + namespace Phalcon\Test\Integration\Mvc\Model\Criteria; -use Phalcon\Di; use IntegrationTester; -use Codeception\Example; -use Phalcon\Mvc\Model\Manager; +use Phalcon\Test\Fixtures\Traits\DiTrait; use Phalcon\Mvc\Model\Criteria; use Phalcon\Test\Models\Robots; -use Phalcon\Db\Adapter\Pdo\Mysql; -use Phalcon\Db\Adapter\Pdo\Sqlite; -use Phalcon\Mvc\Model\MetaData\Memory; -use Phalcon\Db\Adapter\Pdo\Postgresql; class FromInputCest { + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + } + /** - * Executed before each test + * Tests Phalcon\Mvc\Model\Criteria :: fromInput() - Mysql * * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 */ - public function _before(IntegrationTester $I) + public function mvcModelCriteriaFromInput(IntegrationTester $I) { - $I->haveServiceInDi('modelsManager', Manager::class, true); - $I->haveServiceInDi('modelsMetadata', Memory::class, true); + $I->wantToTest("Mvc\Model\Criteria - fromInput() - Mysql"); + $this->setDiMysql(); + + $this->runEmptyInput($I); + $this->runSimpleCondition($I); + $this->runLikeCondition($I); + $this->runComplexCondition($I); + $this->runComplexConditionWithNonExistentField($I); + } - Di::setDefault($I->getApplication()->getDI()); + /** + * Tests Phalcon\Mvc\Model\Criteria :: fromInput() - Mysql + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaFromInputPostgresql(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - fromInput() - Postgresql"); + $this->setDiMysql(); + + $this->runEmptyInput($I); + $this->runSimpleCondition($I); + $this->runLikeCondition($I); + $this->runComplexCondition($I); + $this->runComplexConditionWithNonExistentField($I); } /** + * Tests Phalcon\Mvc\Model\Criteria :: fromInput() - Sqlite + * * @param IntegrationTester $I - * @param Example $example * - * @dataprovider adapterProvider + * @author Phalcon Team + * @since 2018-11-13 */ - public function emptyImput(IntegrationTester $I, Example $example) + public function mvcModelCriteriaFromInputSqlite(IntegrationTester $I) { - $di = Di::getDefault(); - $di->setShared('db', $example['adapter']); + $I->wantToTest("Mvc\Model\Criteria - fromInput() - Sqlite"); + $this->setDiMysql(); + + $this->runEmptyInput($I); + $this->runSimpleCondition($I); + $this->runLikeCondition($I); + $this->runComplexCondition($I); + $this->runComplexConditionWithNonExistentField($I); + } + private function runEmptyInput(IntegrationTester $I) + { $data = []; - $criteria = Criteria::fromInput($di, Robots::class, $data); + $criteria = Criteria::fromInput($this->container, Robots::class, $data); $I->assertNull($criteria->getParams()); $I->assertEquals($criteria->getModelName(), Robots::class); } - /** - * @param IntegrationTester $I - * @param Example $example - * - * @dataprovider adapterProvider - */ - public function simpleCondition(IntegrationTester $I, Example $example) + private function runSimpleCondition(IntegrationTester $I) { - $di = Di::getDefault(); - $di->setShared('db', $example['adapter']); - $data = ['id' => 1]; - $criteria = Criteria::fromInput($di, Robots::class, $data); + $criteria = Criteria::fromInput($this->container, Robots::class, $data); $expected = [ 'conditions' => '[id] = :id:', 'bind' => ['id' => 1], @@ -68,19 +107,10 @@ public function simpleCondition(IntegrationTester $I, Example $example) $I->assertEquals($criteria->getModelName(), Robots::class); } - /** - * @param IntegrationTester $I - * @param Example $example - * - * @dataprovider adapterProvider - */ - public function likeCondition(IntegrationTester $I, Example $example) + private function runLikeCondition(IntegrationTester $I) { - $di = Di::getDefault(); - $di->setShared('db', $example['adapter']); - $data = ['name' => 'ol']; - $criteria = Criteria::fromInput($di, Robots::class, $data); + $criteria = Criteria::fromInput($this->container, Robots::class, $data); $expected = [ 'conditions' => '[name] LIKE :name:', 'bind' => ['name' => '%ol%'], @@ -90,19 +120,10 @@ public function likeCondition(IntegrationTester $I, Example $example) $I->assertEquals($criteria->getModelName(), Robots::class); } - /** - * @param IntegrationTester $I - * @param Example $example - * - * @dataprovider adapterProvider - */ - public function complexCondition(IntegrationTester $I, Example $example) + private function runComplexCondition(IntegrationTester $I) { - $di = Di::getDefault(); - $di->setShared('db', $example['adapter']); - $data = ['id' => 1, 'name' => 'ol']; - $criteria = Criteria::fromInput($di, Robots::class, $data); + $criteria = Criteria::fromInput($this->container, Robots::class, $data); $expected = [ 'conditions' => '[id] = :id: AND [name] LIKE :name:', 'bind' => [ @@ -115,19 +136,10 @@ public function complexCondition(IntegrationTester $I, Example $example) $I->assertEquals($criteria->getModelName(), Robots::class); } - /** - * @param IntegrationTester $I - * @param Example $example - * - * @dataprovider adapterProvider - */ - public function complexConditionWithNonExistentField(IntegrationTester $I, Example $example) + private function runComplexConditionWithNonExistentField(IntegrationTester $I) { - $di = Di::getDefault(); - $di->setShared('db', $example['adapter']); - $data = ['id' => 1, 'name' => 'ol', 'other' => true]; - $criteria = Criteria::fromInput($di, Robots::class, $data); + $criteria = Criteria::fromInput($this->container, Robots::class, $data); $expected = [ 'conditions' => '[id] = :id: AND [name] LIKE :name:', 'bind' => [ @@ -139,34 +151,4 @@ public function complexConditionWithNonExistentField(IntegrationTester $I, Examp $I->assertEquals($expected, $criteria->getParams()); $I->assertEquals($criteria->getModelName(), Robots::class); } - - protected function adapterProvider() - { - return [ - [ - 'adapter' => new Mysql([ - 'host' => env('TEST_DB_MYSQL_HOST', '127.0.0.1'), - 'username' => env('TEST_DB_MYSQL_USER', 'root'), - 'password' => env('TEST_DB_MYSQL_PASSWD', ''), - 'dbname' => env('TEST_DB_MYSQL_NAME', 'phalcon_test'), - 'port' => env('TEST_DB_MYSQL_PORT', 3306), - 'charset' => env('TEST_DB_MYSQL_CHARSET', 'utf8'), - ]), - ], - [ - 'adapter' => new Sqlite([ - 'dbname' => env('TEST_DB_SQLITE_NAME', '/tmp/phalcon_test.sqlite'), - ]), - ], - [ - 'adapter' => new Postgresql([ - 'host' => env('TEST_DB_POSTGRESQL_HOST', '127.0.0.1'), - 'username' => env('TEST_DB_POSTGRESQL_USER', 'postgres'), - 'password' => env('TEST_DB_POSTGRESQL_PASSWD', ''), - 'dbname' => env('TEST_DB_POSTGRESQL_NAME', 'phalcon_test'), - 'port' => env('TEST_DB_POSTGRESQL_PORT', 5432), - ]), - ], - ]; - } } diff --git a/tests/integration/Mvc/Model/Criteria/GetColumnsCest.php b/tests/integration/Mvc/Model/Criteria/GetColumnsCest.php new file mode 100644 index 00000000000..e4b91315e3d --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/GetColumnsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class GetColumnsCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: getColumns() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaGetColumns(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - getColumns()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/GetConditionsCest.php b/tests/integration/Mvc/Model/Criteria/GetConditionsCest.php new file mode 100644 index 00000000000..0a1865b042c --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/GetConditionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class GetConditionsCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: getConditions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaGetConditions(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - getConditions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/GetDICest.php b/tests/integration/Mvc/Model/Criteria/GetDICest.php new file mode 100644 index 00000000000..33f529dbe5f --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: getDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaGetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/GetGroupByCest.php b/tests/integration/Mvc/Model/Criteria/GetGroupByCest.php new file mode 100644 index 00000000000..a780d232500 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/GetGroupByCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class GetGroupByCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: getGroupBy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaGetGroupBy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - getGroupBy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/GetHavingCest.php b/tests/integration/Mvc/Model/Criteria/GetHavingCest.php new file mode 100644 index 00000000000..a9a38c10bfa --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/GetHavingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class GetHavingCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: getHaving() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaGetHaving(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - getHaving()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/GetLimitCest.php b/tests/integration/Mvc/Model/Criteria/GetLimitCest.php new file mode 100644 index 00000000000..16a52d20a76 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/GetLimitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class GetLimitCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: getLimit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaGetLimit(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - getLimit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/GetModelNameCest.php b/tests/integration/Mvc/Model/Criteria/GetModelNameCest.php new file mode 100644 index 00000000000..1a3dfdfb603 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/GetModelNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class GetModelNameCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: getModelName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaGetModelName(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - getModelName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/GetOrderByCest.php b/tests/integration/Mvc/Model/Criteria/GetOrderByCest.php new file mode 100644 index 00000000000..6bba332eff1 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/GetOrderByCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class GetOrderByCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: getOrderBy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaGetOrderBy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - getOrderBy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/GetParamsCest.php b/tests/integration/Mvc/Model/Criteria/GetParamsCest.php new file mode 100644 index 00000000000..3c32372fac3 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/GetParamsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class GetParamsCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: getParams() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaGetParams(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - getParams()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/GetWhereCest.php b/tests/integration/Mvc/Model/Criteria/GetWhereCest.php new file mode 100644 index 00000000000..fc4def45cdd --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/GetWhereCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class GetWhereCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: getWhere() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaGetWhere(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - getWhere()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/GroupByCest.php b/tests/integration/Mvc/Model/Criteria/GroupByCest.php new file mode 100644 index 00000000000..3c93b3a25ef --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/GroupByCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class GroupByCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: groupBy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaGroupBy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - groupBy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/HavingCest.php b/tests/integration/Mvc/Model/Criteria/HavingCest.php new file mode 100644 index 00000000000..4e4d09cef83 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/HavingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class HavingCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: having() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaHaving(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - having()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/InWhereCest.php b/tests/integration/Mvc/Model/Criteria/InWhereCest.php new file mode 100644 index 00000000000..b6b6828f882 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/InWhereCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class InWhereCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: inWhere() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaInWhere(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - inWhere()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/InnerJoinCest.php b/tests/integration/Mvc/Model/Criteria/InnerJoinCest.php new file mode 100644 index 00000000000..d1e99fe462d --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/InnerJoinCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class InnerJoinCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: innerJoin() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaInnerJoin(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - innerJoin()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/JoinCest.php b/tests/integration/Mvc/Model/Criteria/JoinCest.php new file mode 100644 index 00000000000..5ea602f5e4a --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/JoinCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class JoinCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: join() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaJoin(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - join()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/LeftJoinCest.php b/tests/integration/Mvc/Model/Criteria/LeftJoinCest.php new file mode 100644 index 00000000000..89aad6a1546 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/LeftJoinCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class LeftJoinCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: leftJoin() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaLeftJoin(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - leftJoin()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/LimitCest.php b/tests/integration/Mvc/Model/Criteria/LimitCest.php new file mode 100644 index 00000000000..b93f0cb1215 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/LimitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class LimitCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: limit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaLimit(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - limit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/NotBetweenWhereCest.php b/tests/integration/Mvc/Model/Criteria/NotBetweenWhereCest.php new file mode 100644 index 00000000000..ef3a124fcb4 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/NotBetweenWhereCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class NotBetweenWhereCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: notBetweenWhere() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaNotBetweenWhere(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - notBetweenWhere()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/NotInWhereCest.php b/tests/integration/Mvc/Model/Criteria/NotInWhereCest.php new file mode 100644 index 00000000000..25e871a54cc --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/NotInWhereCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class NotInWhereCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: notInWhere() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaNotInWhere(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - notInWhere()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/OrWhereCest.php b/tests/integration/Mvc/Model/Criteria/OrWhereCest.php new file mode 100644 index 00000000000..8e0b32e8348 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/OrWhereCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class OrWhereCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: orWhere() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaOrWhere(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - orWhere()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/OrderByCest.php b/tests/integration/Mvc/Model/Criteria/OrderByCest.php new file mode 100644 index 00000000000..01e4ad9ee3f --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/OrderByCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class OrderByCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: orderBy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaOrderBy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - orderBy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/RightJoinCest.php b/tests/integration/Mvc/Model/Criteria/RightJoinCest.php new file mode 100644 index 00000000000..0abd722115a --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/RightJoinCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class RightJoinCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: rightJoin() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaRightJoin(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - rightJoin()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/SetDICest.php b/tests/integration/Mvc/Model/Criteria/SetDICest.php new file mode 100644 index 00000000000..2d31f8a6077 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: setDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaSetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/SetModelNameCest.php b/tests/integration/Mvc/Model/Criteria/SetModelNameCest.php new file mode 100644 index 00000000000..755f6969871 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/SetModelNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class SetModelNameCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: setModelName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaSetModelName(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - setModelName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/SharedLockCest.php b/tests/integration/Mvc/Model/Criteria/SharedLockCest.php new file mode 100644 index 00000000000..944d5a972b2 --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/SharedLockCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class SharedLockCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: sharedLock() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaSharedLock(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - sharedLock()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Criteria/WhereCest.php b/tests/integration/Mvc/Model/Criteria/WhereCest.php new file mode 100644 index 00000000000..c58c3b39e1f --- /dev/null +++ b/tests/integration/Mvc/Model/Criteria/WhereCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Criteria; + +use IntegrationTester; + +class WhereCest +{ + /** + * Tests Phalcon\Mvc\Model\Criteria :: where() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCriteriaWhere(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Criteria - where()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/CriteriaCest.php b/tests/integration/Mvc/Model/CriteriaCest.php index d8b274b35f1..a7645b8ca49 100644 --- a/tests/integration/Mvc/Model/CriteriaCest.php +++ b/tests/integration/Mvc/Model/CriteriaCest.php @@ -1,43 +1,82 @@ + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + namespace Phalcon\Test\Integration\Mvc\Model; -use Phalcon\Di; -use IntegrationTester; use Codeception\Example; +use IntegrationTester; use Phalcon\Mvc\Model\Manager; -use Phalcon\Test\Models\Robots; -use Phalcon\Test\Models\People; -use Phalcon\Cache\Backend\File; -use Phalcon\Cache\Frontend\Data; -use Phalcon\Db\Adapter\Pdo\Mysql; -use Phalcon\Test\Models\Personas; -use Phalcon\Test\Models\Personers; -use Phalcon\Db\Adapter\Pdo\Sqlite; +use Phalcon\Mvc\Model\Metadata\Memory; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Db\Adapter\Pdo\Postgresql; -use Phalcon\Mvc\Model\MetaData\Memory; use Phalcon\Mvc\Model\Resultset\Simple; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Test\Models\People; +use Phalcon\Test\Models\Personers; +use Phalcon\Test\Models\Personas; +use Phalcon\Test\Models\Robots; +use Phalcon\Test\Models\Users; class CriteriaCest { + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + $this->setDiMysql(); + } + /** - * Executed before each test + * Tests Criteria::inWhere with empty array. * - * @param IntegrationTester $I + * @issue https://github.com/phalcon/cphalcon/issues/10676 + * @author Phalcon Team + * @since 2016-08-11 */ - public function _before(IntegrationTester $I) + public function shouldExecuteInWhereQueryWithEmptyArray(IntegrationTester $I) { - $I->haveServiceInDi('modelsManager', Manager::class, true); - $I->haveServiceInDi('modelsMetadata', Memory::class, true); + $criteria = Users::query()->inWhere(Users::class . '.id', []); - Di::setDefault($I->getApplication()->getDI()); + $I->assertEquals(Users::class . '.id != ' . Users::class . '.id', $criteria->getWhere()); + $I->assertInstanceOf(Simple::class, $criteria->execute()); + } + + /** + * Tests work with limit / offset + * + * @issue https://github.com/phalcon/cphalcon/issues/12419 + * @author Serghei Iakovelv + * @since 2016-12-18 + */ + public function shouldCorrectHandleLimitAndOffset(IntegrationTester $I) + { + $I->skipTest('TODO - Check the test data'); + $examples = $this->getLimitOffset(); + foreach ($examples as $item) { + $limit = $item[0]; + $offset = $item[1]; + $expected = $item[2]; + /** @var \Phalcon\Mvc\Model\Criteria $query */ + $query = Users::query(); + $query->limit($limit, $offset); + + $actual = $query->getLimit(); + $I->assertEquals($expected, $actual); + } } /** * Tests creating builder from criteria * - * @author Serghei Iakovlev + * @author Phalcon Team * @since 2017-05-21 * * @param IntegrationTester $I @@ -64,8 +103,7 @@ public function havingNotOverwritingGroupBy(IntegrationTester $I) */ public function where(IntegrationTester $I, Example $example) { - $di = Di::getDefault(); - $di->setShared('db', $example['adapter']); + $this->container->setShared('db', $example['adapter']); $personas = Personas::query()->where("estado='I'")->execute(); $people = People::find("estado='I'"); @@ -82,8 +120,7 @@ public function where(IntegrationTester $I, Example $example) */ public function whereRenamed(IntegrationTester $I, Example $example) { - $di = Di::getDefault(); - $di->setShared('db', $example['adapter']); + $this->container->setShared('db', $example['adapter']); $I->assertInstanceOf(Simple::class, Personers::query()->where("status='I'")->execute()); } @@ -96,8 +133,7 @@ public function whereRenamed(IntegrationTester $I, Example $example) */ public function conditions(IntegrationTester $I, Example $example) { - $di = Di::getDefault(); - $di->setShared('db', $example['adapter']); + $this->container->setShared('db', $example['adapter']); $personas = Personas::query()->conditions("estado='I'")->execute(); $people = People::find("estado='I'"); @@ -113,8 +149,7 @@ public function conditions(IntegrationTester $I, Example $example) */ public function conditionsRenamed(IntegrationTester $I, Example $example) { - $di = Di::getDefault(); - $di->setShared('db', $example['adapter']); + $this->container->setShared('db', $example['adapter']); $I->assertInstanceOf(Simple::class, Personers::query()->conditions("status='I'")->execute()); } @@ -127,13 +162,12 @@ public function conditionsRenamed(IntegrationTester $I, Example $example) */ public function whereOrderBy(IntegrationTester $I, Example $example) { - $di = Di::getDefault(); - $di->setShared('db', $example['adapter']); + $this->container->setShared('db', $example['adapter']); $personas = Personas::query() - ->where("estado='A'") - ->orderBy("nombres") - ->execute(); + ->where("estado='A'") + ->orderBy("nombres") + ->execute(); $people = People::find(["estado='A'", "order" => "nombres"]); @@ -149,13 +183,12 @@ public function whereOrderBy(IntegrationTester $I, Example $example) */ public function whereOrderByRenamed(IntegrationTester $I, Example $example) { - $di = Di::getDefault(); - $di->setShared('db', $example['adapter']); + $this->container->setShared('db', $example['adapter']); $personers = Personers::query() - ->where("status='A'") - ->orderBy("navnes") - ->execute(); + ->where("status='A'") + ->orderBy("navnes") + ->execute(); $I->assertInstanceOf(Simple::class, $personers); $I->assertInstanceOf(Personers::class, $personers->getFirst()); @@ -169,14 +202,13 @@ public function whereOrderByRenamed(IntegrationTester $I, Example $example) */ public function whereOrderByLimit(IntegrationTester $I, Example $example) { - $di = Di::getDefault(); - $di->setShared('db', $example['adapter']); + $this->container->setShared('db', $example['adapter']); $personas = Personas::query() - ->where("estado='A'") - ->orderBy("nombres") - ->limit(100) - ->execute(); + ->where("estado='A'") + ->orderBy("nombres") + ->limit(100) + ->execute(); $people = People::find([ "estado='A'", @@ -196,14 +228,13 @@ public function whereOrderByLimit(IntegrationTester $I, Example $example) */ public function whereOrderByLimitRenamed(IntegrationTester $I, Example $example) { - $di = Di::getDefault(); - $di->setShared('db', $example['adapter']); + $this->container->setShared('db', $example['adapter']); $personers = Personers::query() - ->where("status='A'") - ->orderBy("navnes") - ->limit(100) - ->execute(); + ->where("status='A'") + ->orderBy("navnes") + ->limit(100) + ->execute(); $I->assertInstanceOf(Simple::class, $personers); $I->assertInstanceOf(Personers::class, $personers->getFirst()); @@ -217,15 +248,14 @@ public function whereOrderByLimitRenamed(IntegrationTester $I, Example $example) */ public function bindParamsWithLimit(IntegrationTester $I, Example $example) { - $di = Di::getDefault(); - $di->setShared('db', $example['adapter']); + $this->container->setShared('db', $example['adapter']); $personas = Personas::query() - ->where("estado=?1") - ->bind([1 => "A"]) - ->orderBy("nombres") - ->limit(100) - ->execute(); + ->where("estado=?1") + ->bind([1 => "A"]) + ->orderBy("nombres") + ->limit(100) + ->execute(); $people = People::find([ "estado=?1", @@ -246,15 +276,14 @@ public function bindParamsWithLimit(IntegrationTester $I, Example $example) */ public function bindParamsWithOrderAndLimitRenamed(IntegrationTester $I, Example $example) { - $di = Di::getDefault(); - $di->setShared('db', $example['adapter']); + $this->container->setShared('db', $example['adapter']); $personers = Personers::query() - ->where("status=?1") - ->bind([1 => "A"]) - ->orderBy("navnes") - ->limit(100) - ->execute(); + ->where("status=?1") + ->bind([1 => "A"]) + ->orderBy("navnes") + ->limit(100) + ->execute(); $I->assertInstanceOf(Simple::class, $personers); $I->assertInstanceOf(Personers::class, $personers->getFirst()); @@ -268,15 +297,14 @@ public function bindParamsWithOrderAndLimitRenamed(IntegrationTester $I, Example */ public function bindParamsAsPlaceholdersWithOrderAndLimitRenamed(IntegrationTester $I, Example $example) { - $di = Di::getDefault(); - $di->setShared('db', $example['adapter']); + $this->container->setShared('db', $example['adapter']); $personers = Personers::query() - ->where("status=:status:") - ->bind(["status" => "A"]) - ->orderBy("navnes") - ->limit(100) - ->execute(); + ->where("status=:status:") + ->bind(["status" => "A"]) + ->orderBy("navnes") + ->limit(100) + ->execute(); $I->assertInstanceOf(Simple::class, $personers); $I->assertInstanceOf(Personers::class, $personers->getFirst()); @@ -290,15 +318,14 @@ public function bindParamsAsPlaceholdersWithOrderAndLimitRenamed(IntegrationTest */ public function limitWithOffset(IntegrationTester $I, Example $example) { - $di = Di::getDefault(); - $di->setShared('db', $example['adapter']); + $this->container->setShared('db', $example['adapter']); $personas = Personas::query() - ->where("estado=?1") - ->bind([1 => "A"]) - ->orderBy("nombres") - ->limit(100, 10) - ->execute(); + ->where("estado=?1") + ->bind([1 => "A"]) + ->orderBy("nombres") + ->limit(100, 10) + ->execute(); $people = People::find([ "estado=?1", @@ -319,15 +346,14 @@ public function limitWithOffset(IntegrationTester $I, Example $example) */ public function bindOrderLimit(IntegrationTester $I, Example $example) { - $di = Di::getDefault(); - $di->setShared('db', $example['adapter']); + $this->container->setShared('db', $example['adapter']); $personas = Personas::query() - ->where("estado=:estado:") - ->bind(["estado" => "A"]) - ->orderBy("nombres") - ->limit(100) - ->execute(); + ->where("estado=:estado:") + ->bind(["estado" => "A"]) + ->orderBy("nombres") + ->limit(100) + ->execute(); $people = People::find([ "estado=:estado:", @@ -348,8 +374,7 @@ public function bindOrderLimit(IntegrationTester $I, Example $example) */ public function orderBy(IntegrationTester $I, Example $example) { - $di = Di::getDefault(); - $di->setShared('db', $example['adapter']); + $this->container->setShared('db', $example['adapter']); $personas = Personas::query()->orderBy("nombres"); @@ -365,59 +390,58 @@ public function orderBy(IntegrationTester $I, Example $example) */ public function freshCache(IntegrationTester $I, Example $example) { - $di = Di::getDefault(); - - $di->setShared('db', $example['adapter']); - $di->setShared('modelsCache', function () { - return new File(new Data(), ['cacheDir' => PATH_CACHE]); - }); + $this->container->setShared('db', $example['adapter']); + $this->getAndSetModelsCacheFile(); $personas = Personas::query() - ->where("estado='I'") - ->cache(['key' => 'cache-for-issue-2131']) - ->execute(); + ->where("estado='I'") + ->cache(['key' => 'cache-for-issue-2131']) + ->execute(); $I->assertTrue($personas->isFresh()); $personas = Personas::query() - ->where("estado='I'") - ->cache(['key' => 'cache-for-issue-2131']) - ->execute(); + ->where("estado='I'") + ->cache(['key' => 'cache-for-issue-2131']) + ->execute(); $I->assertFalse($personas->isFresh()); - $I->amInPath(PATH_CACHE); - $I->deleteFile('cache-for-issue-2131'); + $I->amInPath(cacheFolder()); + $I->safeDeleteFile('cache-for-issue-2131'); $I->dontSeeFileFound('cache-for-issue-2131'); } - + /** + * The data providers + * + * @return array + */ protected function adapterProvider() { return [ [ - 'adapter' => new Mysql([ - 'host' => env('TEST_DB_MYSQL_HOST', '127.0.0.1'), - 'username' => env('TEST_DB_MYSQL_USER', 'root'), - 'password' => env('TEST_DB_MYSQL_PASSWD', ''), - 'dbname' => env('TEST_DB_MYSQL_NAME', 'phalcon_test'), - 'port' => env('TEST_DB_MYSQL_PORT', 3306), - 'charset' => env('TEST_DB_MYSQL_CHARSET', 'utf8'), - ]), + 'adapter' => $this->newDiMysql(), ], [ - 'adapter' => new Sqlite([ - 'dbname' => env('TEST_DB_SQLITE_NAME', '/tmp/phalcon_test.sqlite'), - ]), + 'adapter' => $this->newDiSqlite(), ], [ - 'adapter' => new Postgresql([ - 'host' => env('TEST_DB_POSTGRESQL_HOST', '127.0.0.1'), - 'username' => env('TEST_DB_POSTGRESQL_USER', 'postgres'), - 'password' => env('TEST_DB_POSTGRESQL_PASSWD', ''), - 'dbname' => env('TEST_DB_POSTGRESQL_NAME', 'phalcon_test'), - 'port' => env('TEST_DB_POSTGRESQL_PORT', 5432), - ]), + 'adapter' => $this->newDiPostgresql(), ], ]; } + + private function getLimitOffset(): array + { + return [ + [-7, null, 7], + ["-7234", null, 7234], + ["18", null, 18], + ["18", 2, ['number' => 18, 'offset' => 2]], + ["-1000", -200, ['number' => 1000, 'offset' => 200]], + ["1000", "-200", ['number' => 1000, 'offset' => 200]], + ["0", "-200", null], + ["%3CMETA%20HTTP-EQUIV%3D%22refresh%22%20CONT ENT%3D%220%3Burl%3Djavascript%3Aqss%3D7%22%3E", 50, null], + ]; + } } diff --git a/tests/integration/Mvc/Model/DeleteCest.php b/tests/integration/Mvc/Model/DeleteCest.php new file mode 100644 index 00000000000..d2ccaeabb1f --- /dev/null +++ b/tests/integration/Mvc/Model/DeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class DeleteCest +{ + /** + * Tests Phalcon\Mvc\Model :: delete() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelDelete(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - delete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/DumpCest.php b/tests/integration/Mvc/Model/DumpCest.php new file mode 100644 index 00000000000..bde57ff3110 --- /dev/null +++ b/tests/integration/Mvc/Model/DumpCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class DumpCest +{ + /** + * Tests Phalcon\Mvc\Model :: dump() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelDump(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - dump()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/DynamicOperationsCest.php b/tests/integration/Mvc/Model/DynamicOperationsCest.php new file mode 100644 index 00000000000..2168308d654 --- /dev/null +++ b/tests/integration/Mvc/Model/DynamicOperationsCest.php @@ -0,0 +1,198 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; +use Phalcon\Db\AdapterInterface; +use Phalcon\Db\RawValue; +use Phalcon\DiInterface; +use Phalcon\Events\Event; +use Phalcon\Events\ManagerInterface; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Test\Models\Dynamic\Personas; +use Phalcon\Test\Models\Dynamic\Personers; +use Phalcon\Test\Models\Dynamic\Robots; + +class DynamicOperationsCest +{ + use DiTrait; + + protected $tracer = []; + + public function _before(IntegrationTester $I) + { + $this->tracer = []; + $this->setNewFactoryDefault(); + $this->setDiMysql(); + $connection = $this->container->get('db'); + $manager = $this->newEventsManager(); + $manager->attach( + 'db', + function (Event $event, AdapterInterface $connection) { + if ($event->getType() == 'beforeQuery') { + $this->tracer[] = $connection->getSqlStatement(); + } + } + ); + + $connection->setEventsManager($manager); + } + + /** + * Tests dynamic update create then update + * + * @author Wojciech Ślawski + * @issue https://github.com/phalcon/cphalcon/issues/12766 + * @since 2017-04-04 + */ + public function shouldSaveSnapshotWhenHavingPublicPropertyWithNullValue(IntegrationTester $I) + { + $robots = new Robots(); + $robots->name = 'Test'; + $robots->type = 'mechanical'; + $robots->datetime = date('Y-m-d'); + $robots->text = 'text'; + + $I->assertTrue($robots->create()); + $I->assertNull($robots->year); + + $robots->year = date('Y'); + + $I->assertTrue($robots->update()); + $I->assertEquals(date('Y'), $robots->year); + + $I->assertTrue($robots->delete()); + } + + /** + * Tests dynamic update with default use case. + * + * @author Phalcon Team + * @since 2013-03-01 + */ + public function shouldWorkUsingDynamicUpdate(IntegrationTester $I) + { + $persona = Personas::findFirst(); + $I->assertTrue($persona->save()); + + // For Personas::useDynamicUpdate(false) + // ------------------------------------ + // 1. Check table + // 2. Describe table + // 3. Personas::findFirst + // 4. Personas::save + // + // For Personas::useDynamicUpdate(true) + // ------------------------------------ + // 1. Check table + // 2. Describe table + // 3. Personas::findFirst + $I->assertCount(3, $this->tracer); + + $persona->nombres = 'Other Name ' . mt_rand(0, 150000); + + $I->assertEquals(['nombres'], $persona->getChangedFields()); + $I->assertTrue($persona->save()); + $I->assertEquals($this->tracer[3], 'UPDATE `personas` SET `nombres` = ? WHERE `cedula` = ?'); + + $persona->nombres = 'Other Name ' . mt_rand(0, 150000); + $persona->direccion = 'Address ' . mt_rand(0, 150000); + + $I->assertEquals(['nombres', 'direccion'], $persona->getChangedFields()); + $I->assertTrue($persona->save()); + $I->assertEquals($this->tracer[4], 'UPDATE `personas` SET `nombres` = ?, `direccion` = ? WHERE `cedula` = ?'); + } + + /** + * Tests dynamic update with renamed model fields. + * + * @author Phalcon Team + * @since 2013-03-01 + */ + public function shouldWorkUsingDynamicUpdateForRenamedModelFields(IntegrationTester $I) + { + $persona = Personers::findFirst(); + $I->assertTrue($persona->save()); + + // For Personers::useDynamicUpdate(false) + // ------------------------------------ + // 1. Check table + // 2. Describe table + // 3. Personas::findFirst + // 4. Personas::save + // + // For Personers::useDynamicUpdate(true) + // ------------------------------------ + // 1. Check table + // 2. Describe table + // 3. Personas::findFirst + $I->assertCount(3, $this->tracer); + + $persona->navnes = 'Other Name ' . mt_rand(0, 150000); + + $I->assertEquals(['navnes'], $persona->getChangedFields()); + $I->assertTrue($persona->save()); + $I->assertEquals($this->tracer[3], 'UPDATE `personas` SET `nombres` = ? WHERE `cedula` = ?'); + + $persona->navnes = 'Other Name ' . mt_rand(0, 150000); + $persona->adresse = 'Address ' . mt_rand(0, 150000); + + $I->assertEquals(['navnes', 'adresse'], $persona->getChangedFields()); + $I->assertTrue($persona->save()); + $I->assertEquals($this->tracer[4], 'UPDATE `personas` SET `nombres` = ?, `direccion` = ? WHERE `cedula` = ?'); + + // Cleanup for future tests in this class + $this->tracer = []; + } + + /** + * Tests dynamic update soft delete with renamed model. + * + * @author limx <715557344@qq.com> + * @since 2018-02-24 + */ + public function shouldWorkUsingDynamicUpdateSoftDeleteForRenamedModel(IntegrationTester $I) + { + $persona = Personers::findFirst(); + $I->assertTrue($persona->delete()); + $I->assertEquals('X', $persona->status); + } + + /** + * Tests dynamic update and rawvalue + * + * @author limingxinleo <715557344@qq.com> + * @issue https://github.com/phalcon/cphalcon/issues/13170 + * @since 2017-11-20 + */ + public function shouldWorkUsingDynamicUpdateForRawValue(IntegrationTester $I) + { + $robot = new Robots(); + $robot->name = 'Test'; + $robot->type = 'mechanical'; + $robot->datetime = (new \DateTime())->format('Y-m-d'); + $robot->text = 'text'; + $robot->year = 1; + $robot->save(); + + $robot = Robots::findFirst([ + 'conditions' => 'year = ?0', + 'bind' => [1], + ]); + + $robot->year = new RawValue('year + 1'); + $I->assertTrue($robot->save()); + + $robot = Robots::findFirst($robot->id); + $I->assertEquals(2, $robot->year); + } +} diff --git a/tests/integration/Mvc/Model/FindCest.php b/tests/integration/Mvc/Model/FindCest.php new file mode 100644 index 00000000000..5d640a8efad --- /dev/null +++ b/tests/integration/Mvc/Model/FindCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class FindCest +{ + /** + * Tests Phalcon\Mvc\Model :: find() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelFind(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - find()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/FindFirstCest.php b/tests/integration/Mvc/Model/FindFirstCest.php new file mode 100644 index 00000000000..c0f2989aae4 --- /dev/null +++ b/tests/integration/Mvc/Model/FindFirstCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class FindFirstCest +{ + /** + * Tests Phalcon\Mvc\Model :: findFirst() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelFindFirst(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - findFirst()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/FireEventCancelCest.php b/tests/integration/Mvc/Model/FireEventCancelCest.php new file mode 100644 index 00000000000..2802917f114 --- /dev/null +++ b/tests/integration/Mvc/Model/FireEventCancelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class FireEventCancelCest +{ + /** + * Tests Phalcon\Mvc\Model :: fireEventCancel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelFireEventCancel(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - fireEventCancel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/FireEventCest.php b/tests/integration/Mvc/Model/FireEventCest.php new file mode 100644 index 00000000000..68ac90ee614 --- /dev/null +++ b/tests/integration/Mvc/Model/FireEventCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class FireEventCest +{ + /** + * Tests Phalcon\Mvc\Model :: fireEvent() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelFireEvent(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - fireEvent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/GetChangedFieldsCest.php b/tests/integration/Mvc/Model/GetChangedFieldsCest.php new file mode 100644 index 00000000000..22a87ad7983 --- /dev/null +++ b/tests/integration/Mvc/Model/GetChangedFieldsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class GetChangedFieldsCest +{ + /** + * Tests Phalcon\Mvc\Model :: getChangedFields() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelGetChangedFields(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - getChangedFields()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/GetDICest.php b/tests/integration/Mvc/Model/GetDICest.php new file mode 100644 index 00000000000..17a2112014f --- /dev/null +++ b/tests/integration/Mvc/Model/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Model :: getDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelGetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/GetDirtyStateCest.php b/tests/integration/Mvc/Model/GetDirtyStateCest.php new file mode 100644 index 00000000000..cade685bdd9 --- /dev/null +++ b/tests/integration/Mvc/Model/GetDirtyStateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class GetDirtyStateCest +{ + /** + * Tests Phalcon\Mvc\Model :: getDirtyState() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelGetDirtyState(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - getDirtyState()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/GetEventsManagerCest.php b/tests/integration/Mvc/Model/GetEventsManagerCest.php new file mode 100644 index 00000000000..3096ee84c73 --- /dev/null +++ b/tests/integration/Mvc/Model/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Model :: getEventsManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelGetEventsManager(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/GetMessagesCest.php b/tests/integration/Mvc/Model/GetMessagesCest.php new file mode 100644 index 00000000000..696e0b490e1 --- /dev/null +++ b/tests/integration/Mvc/Model/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Mvc\Model :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelGetMessages(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/GetModelsManagerCest.php b/tests/integration/Mvc/Model/GetModelsManagerCest.php new file mode 100644 index 00000000000..91f8d3a899a --- /dev/null +++ b/tests/integration/Mvc/Model/GetModelsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class GetModelsManagerCest +{ + /** + * Tests Phalcon\Mvc\Model :: getModelsManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelGetModelsManager(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - getModelsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/GetModelsMetaDataCest.php b/tests/integration/Mvc/Model/GetModelsMetaDataCest.php new file mode 100644 index 00000000000..b619304418d --- /dev/null +++ b/tests/integration/Mvc/Model/GetModelsMetaDataCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class GetModelsMetaDataCest +{ + /** + * Tests Phalcon\Mvc\Model :: getModelsMetaData() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelGetModelsMetaData(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - getModelsMetaData()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/GetOldSnapshotDataCest.php b/tests/integration/Mvc/Model/GetOldSnapshotDataCest.php new file mode 100644 index 00000000000..08ea446757a --- /dev/null +++ b/tests/integration/Mvc/Model/GetOldSnapshotDataCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class GetOldSnapshotDataCest +{ + /** + * Tests Phalcon\Mvc\Model :: getOldSnapshotData() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelGetOldSnapshotData(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - getOldSnapshotData()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/GetOperationMadeCest.php b/tests/integration/Mvc/Model/GetOperationMadeCest.php new file mode 100644 index 00000000000..14df6166776 --- /dev/null +++ b/tests/integration/Mvc/Model/GetOperationMadeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class GetOperationMadeCest +{ + /** + * Tests Phalcon\Mvc\Model :: getOperationMade() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelGetOperationMade(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - getOperationMade()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/GetReadConnectionCest.php b/tests/integration/Mvc/Model/GetReadConnectionCest.php new file mode 100644 index 00000000000..1c4a2779af4 --- /dev/null +++ b/tests/integration/Mvc/Model/GetReadConnectionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class GetReadConnectionCest +{ + /** + * Tests Phalcon\Mvc\Model :: getReadConnection() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelGetReadConnection(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - getReadConnection()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/GetReadConnectionServiceCest.php b/tests/integration/Mvc/Model/GetReadConnectionServiceCest.php new file mode 100644 index 00000000000..5b6333c9183 --- /dev/null +++ b/tests/integration/Mvc/Model/GetReadConnectionServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class GetReadConnectionServiceCest +{ + /** + * Tests Phalcon\Mvc\Model :: getReadConnectionService() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelGetReadConnectionService(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - getReadConnectionService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/GetRelatedCest.php b/tests/integration/Mvc/Model/GetRelatedCest.php new file mode 100644 index 00000000000..9fb0ef480e9 --- /dev/null +++ b/tests/integration/Mvc/Model/GetRelatedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class GetRelatedCest +{ + /** + * Tests Phalcon\Mvc\Model :: getRelated() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelGetRelated(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - getRelated()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/GetSchemaCest.php b/tests/integration/Mvc/Model/GetSchemaCest.php new file mode 100644 index 00000000000..1c053f38906 --- /dev/null +++ b/tests/integration/Mvc/Model/GetSchemaCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class GetSchemaCest +{ + /** + * Tests Phalcon\Mvc\Model :: getSchema() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelGetSchema(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - getSchema()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/GetSnapshotDataCest.php b/tests/integration/Mvc/Model/GetSnapshotDataCest.php new file mode 100644 index 00000000000..421efd9b0d5 --- /dev/null +++ b/tests/integration/Mvc/Model/GetSnapshotDataCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class GetSnapshotDataCest +{ + /** + * Tests Phalcon\Mvc\Model :: getSnapshotData() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelGetSnapshotData(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - getSnapshotData()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/GetSourceCest.php b/tests/integration/Mvc/Model/GetSourceCest.php new file mode 100644 index 00000000000..17a461bc0af --- /dev/null +++ b/tests/integration/Mvc/Model/GetSourceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class GetSourceCest +{ + /** + * Tests Phalcon\Mvc\Model :: getSource() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelGetSource(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - getSource()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/GetTransactionCest.php b/tests/integration/Mvc/Model/GetTransactionCest.php new file mode 100644 index 00000000000..8e3e8751572 --- /dev/null +++ b/tests/integration/Mvc/Model/GetTransactionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class GetTransactionCest +{ + /** + * Tests Phalcon\Mvc\Model :: getTransaction() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelGetTransaction(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - getTransaction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/GetUpdatedFieldsCest.php b/tests/integration/Mvc/Model/GetUpdatedFieldsCest.php new file mode 100644 index 00000000000..ec620dc05bb --- /dev/null +++ b/tests/integration/Mvc/Model/GetUpdatedFieldsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class GetUpdatedFieldsCest +{ + /** + * Tests Phalcon\Mvc\Model :: getUpdatedFields() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelGetUpdatedFields(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - getUpdatedFields()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/GetWriteConnectionCest.php b/tests/integration/Mvc/Model/GetWriteConnectionCest.php new file mode 100644 index 00000000000..82214758e94 --- /dev/null +++ b/tests/integration/Mvc/Model/GetWriteConnectionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class GetWriteConnectionCest +{ + /** + * Tests Phalcon\Mvc\Model :: getWriteConnection() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelGetWriteConnection(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - getWriteConnection()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/GetWriteConnectionServiceCest.php b/tests/integration/Mvc/Model/GetWriteConnectionServiceCest.php new file mode 100644 index 00000000000..f27cfd0891a --- /dev/null +++ b/tests/integration/Mvc/Model/GetWriteConnectionServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class GetWriteConnectionServiceCest +{ + /** + * Tests Phalcon\Mvc\Model :: getWriteConnectionService() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelGetWriteConnectionService(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - getWriteConnectionService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/HasChangedCest.php b/tests/integration/Mvc/Model/HasChangedCest.php new file mode 100644 index 00000000000..db2db6160d6 --- /dev/null +++ b/tests/integration/Mvc/Model/HasChangedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class HasChangedCest +{ + /** + * Tests Phalcon\Mvc\Model :: hasChanged() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelHasChanged(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - hasChanged()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/HasSnapshotDataCest.php b/tests/integration/Mvc/Model/HasSnapshotDataCest.php new file mode 100644 index 00000000000..f3f2d015cbc --- /dev/null +++ b/tests/integration/Mvc/Model/HasSnapshotDataCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class HasSnapshotDataCest +{ + /** + * Tests Phalcon\Mvc\Model :: hasSnapshotData() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelHasSnapshotData(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - hasSnapshotData()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/HasUpdatedCest.php b/tests/integration/Mvc/Model/HasUpdatedCest.php new file mode 100644 index 00000000000..486001da205 --- /dev/null +++ b/tests/integration/Mvc/Model/HasUpdatedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class HasUpdatedCest +{ + /** + * Tests Phalcon\Mvc\Model :: hasUpdated() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelHasUpdated(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - hasUpdated()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/IsRelationshipLoadedCest.php b/tests/integration/Mvc/Model/IsRelationshipLoadedCest.php new file mode 100644 index 00000000000..66f7e00feb8 --- /dev/null +++ b/tests/integration/Mvc/Model/IsRelationshipLoadedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class IsRelationshipLoadedCest +{ + /** + * Tests Phalcon\Mvc\Model :: isRelationshipLoaded() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelIsRelationshipLoaded(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - isRelationshipLoaded()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/JsonSerializeCest.php b/tests/integration/Mvc/Model/JsonSerializeCest.php new file mode 100644 index 00000000000..e792454ce69 --- /dev/null +++ b/tests/integration/Mvc/Model/JsonSerializeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class JsonSerializeCest +{ + /** + * Tests Phalcon\Mvc\Model :: jsonSerialize() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelJsonSerialize(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - jsonSerialize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/AddBehaviorCest.php b/tests/integration/Mvc/Model/Manager/AddBehaviorCest.php new file mode 100644 index 00000000000..5feb1c45ae1 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/AddBehaviorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class AddBehaviorCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: addBehavior() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerAddBehavior(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - addBehavior()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/AddBelongsToCest.php b/tests/integration/Mvc/Model/Manager/AddBelongsToCest.php new file mode 100644 index 00000000000..15ec8d5efe8 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/AddBelongsToCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class AddBelongsToCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: addBelongsTo() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerAddBelongsTo(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - addBelongsTo()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/AddHasManyCest.php b/tests/integration/Mvc/Model/Manager/AddHasManyCest.php new file mode 100644 index 00000000000..7e3c36a1c03 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/AddHasManyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class AddHasManyCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: addHasMany() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerAddHasMany(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - addHasMany()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/AddHasManyToManyCest.php b/tests/integration/Mvc/Model/Manager/AddHasManyToManyCest.php new file mode 100644 index 00000000000..391e8632765 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/AddHasManyToManyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class AddHasManyToManyCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: addHasManyToMany() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerAddHasManyToMany(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - addHasManyToMany()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/AddHasOneCest.php b/tests/integration/Mvc/Model/Manager/AddHasOneCest.php new file mode 100644 index 00000000000..bce6edc3a11 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/AddHasOneCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class AddHasOneCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: addHasOne() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerAddHasOne(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - addHasOne()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/ClearReusableObjectsCest.php b/tests/integration/Mvc/Model/Manager/ClearReusableObjectsCest.php new file mode 100644 index 00000000000..d1dc1f4dc46 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/ClearReusableObjectsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class ClearReusableObjectsCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: clearReusableObjects() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerClearReusableObjects(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - clearReusableObjects()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/CreateBuilderCest.php b/tests/integration/Mvc/Model/Manager/CreateBuilderCest.php new file mode 100644 index 00000000000..1c3e062bd32 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/CreateBuilderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class CreateBuilderCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: createBuilder() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerCreateBuilder(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - createBuilder()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/CreateQueryCest.php b/tests/integration/Mvc/Model/Manager/CreateQueryCest.php new file mode 100644 index 00000000000..14382f70b3b --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/CreateQueryCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class CreateQueryCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: createQuery() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerCreateQuery(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - createQuery()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/DestructCest.php b/tests/integration/Mvc/Model/Manager/DestructCest.php new file mode 100644 index 00000000000..94f2e640ffb --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/DestructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class DestructCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: __destruct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerDestruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - __destruct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/ExecuteQueryCest.php b/tests/integration/Mvc/Model/Manager/ExecuteQueryCest.php new file mode 100644 index 00000000000..f98a2fdd301 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/ExecuteQueryCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class ExecuteQueryCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: executeQuery() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerExecuteQuery(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - executeQuery()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/ExistsBelongsToCest.php b/tests/integration/Mvc/Model/Manager/ExistsBelongsToCest.php new file mode 100644 index 00000000000..4d0b8886bc8 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/ExistsBelongsToCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class ExistsBelongsToCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: existsBelongsTo() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerExistsBelongsTo(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - existsBelongsTo()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/ExistsHasManyCest.php b/tests/integration/Mvc/Model/Manager/ExistsHasManyCest.php new file mode 100644 index 00000000000..e69fdc57b59 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/ExistsHasManyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class ExistsHasManyCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: existsHasMany() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerExistsHasMany(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - existsHasMany()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/ExistsHasManyToManyCest.php b/tests/integration/Mvc/Model/Manager/ExistsHasManyToManyCest.php new file mode 100644 index 00000000000..8a349cef86a --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/ExistsHasManyToManyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class ExistsHasManyToManyCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: existsHasManyToMany() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerExistsHasManyToMany(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - existsHasManyToMany()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/ExistsHasOneCest.php b/tests/integration/Mvc/Model/Manager/ExistsHasOneCest.php new file mode 100644 index 00000000000..3ab85f3a4e6 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/ExistsHasOneCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class ExistsHasOneCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: existsHasOne() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerExistsHasOne(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - existsHasOne()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetBelongsToCest.php b/tests/integration/Mvc/Model/Manager/GetBelongsToCest.php new file mode 100644 index 00000000000..96701fdded4 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetBelongsToCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetBelongsToCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getBelongsTo() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetBelongsTo(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getBelongsTo()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetBelongsToRecordsCest.php b/tests/integration/Mvc/Model/Manager/GetBelongsToRecordsCest.php new file mode 100644 index 00000000000..a24a7d98d27 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetBelongsToRecordsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetBelongsToRecordsCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getBelongsToRecords() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetBelongsToRecords(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getBelongsToRecords()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetCustomEventsManagerCest.php b/tests/integration/Mvc/Model/Manager/GetCustomEventsManagerCest.php new file mode 100644 index 00000000000..b9755419310 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetCustomEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetCustomEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getCustomEventsManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetCustomEventsManager(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getCustomEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetDICest.php b/tests/integration/Mvc/Model/Manager/GetDICest.php new file mode 100644 index 00000000000..6ac674b8cbe --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetEventsManagerCest.php b/tests/integration/Mvc/Model/Manager/GetEventsManagerCest.php new file mode 100644 index 00000000000..f5927ed94af --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getEventsManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetEventsManager(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetHasManyCest.php b/tests/integration/Mvc/Model/Manager/GetHasManyCest.php new file mode 100644 index 00000000000..88e333f12e5 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetHasManyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetHasManyCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getHasMany() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetHasMany(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getHasMany()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetHasManyRecordsCest.php b/tests/integration/Mvc/Model/Manager/GetHasManyRecordsCest.php new file mode 100644 index 00000000000..cfc7908a65c --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetHasManyRecordsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetHasManyRecordsCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getHasManyRecords() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetHasManyRecords(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getHasManyRecords()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetHasManyToManyCest.php b/tests/integration/Mvc/Model/Manager/GetHasManyToManyCest.php new file mode 100644 index 00000000000..1b6ec7b536f --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetHasManyToManyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetHasManyToManyCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getHasManyToMany() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetHasManyToMany(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getHasManyToMany()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetHasOneAndHasManyCest.php b/tests/integration/Mvc/Model/Manager/GetHasOneAndHasManyCest.php new file mode 100644 index 00000000000..6d4f948578c --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetHasOneAndHasManyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetHasOneAndHasManyCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getHasOneAndHasMany() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetHasOneAndHasMany(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getHasOneAndHasMany()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetHasOneCest.php b/tests/integration/Mvc/Model/Manager/GetHasOneCest.php new file mode 100644 index 00000000000..9612be85155 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetHasOneCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetHasOneCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getHasOne() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetHasOne(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getHasOne()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetHasOneRecordsCest.php b/tests/integration/Mvc/Model/Manager/GetHasOneRecordsCest.php new file mode 100644 index 00000000000..3dc95d0a596 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetHasOneRecordsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetHasOneRecordsCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getHasOneRecords() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetHasOneRecords(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getHasOneRecords()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetLastInitializedCest.php b/tests/integration/Mvc/Model/Manager/GetLastInitializedCest.php new file mode 100644 index 00000000000..b1403ab06c1 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetLastInitializedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetLastInitializedCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getLastInitialized() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetLastInitialized(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getLastInitialized()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetLastQueryCest.php b/tests/integration/Mvc/Model/Manager/GetLastQueryCest.php new file mode 100644 index 00000000000..a8d48dd4cca --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetLastQueryCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetLastQueryCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getLastQuery() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetLastQuery(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getLastQuery()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetModelPrefixCest.php b/tests/integration/Mvc/Model/Manager/GetModelPrefixCest.php new file mode 100644 index 00000000000..d720b1714cd --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetModelPrefixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetModelPrefixCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getModelPrefix() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetModelPrefix(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getModelPrefix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetModelSchemaCest.php b/tests/integration/Mvc/Model/Manager/GetModelSchemaCest.php new file mode 100644 index 00000000000..d1c333aa2f5 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetModelSchemaCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetModelSchemaCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getModelSchema() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetModelSchema(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getModelSchema()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetModelSourceCest.php b/tests/integration/Mvc/Model/Manager/GetModelSourceCest.php new file mode 100644 index 00000000000..9283e72feb0 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetModelSourceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetModelSourceCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getModelSource() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetModelSource(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getModelSource()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetNamespaceAliasCest.php b/tests/integration/Mvc/Model/Manager/GetNamespaceAliasCest.php new file mode 100644 index 00000000000..24c87211b9e --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetNamespaceAliasCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetNamespaceAliasCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getNamespaceAlias() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetNamespaceAlias(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getNamespaceAlias()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetNamespaceAliasesCest.php b/tests/integration/Mvc/Model/Manager/GetNamespaceAliasesCest.php new file mode 100644 index 00000000000..f182dc01f26 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetNamespaceAliasesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetNamespaceAliasesCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getNamespaceAliases() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetNamespaceAliases(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getNamespaceAliases()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetReadConnectionCest.php b/tests/integration/Mvc/Model/Manager/GetReadConnectionCest.php new file mode 100644 index 00000000000..07b1c334cca --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetReadConnectionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetReadConnectionCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getReadConnection() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetReadConnection(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getReadConnection()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetReadConnectionServiceCest.php b/tests/integration/Mvc/Model/Manager/GetReadConnectionServiceCest.php new file mode 100644 index 00000000000..118bc9de24c --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetReadConnectionServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetReadConnectionServiceCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getReadConnectionService() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetReadConnectionService(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getReadConnectionService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetRelationByAliasCest.php b/tests/integration/Mvc/Model/Manager/GetRelationByAliasCest.php new file mode 100644 index 00000000000..9c12bd62c38 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetRelationByAliasCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetRelationByAliasCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getRelationByAlias() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetRelationByAlias(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getRelationByAlias()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetRelationRecordsCest.php b/tests/integration/Mvc/Model/Manager/GetRelationRecordsCest.php new file mode 100644 index 00000000000..fc9fcb4b537 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetRelationRecordsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetRelationRecordsCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getRelationRecords() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetRelationRecords(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getRelationRecords()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetRelationsBetweenCest.php b/tests/integration/Mvc/Model/Manager/GetRelationsBetweenCest.php new file mode 100644 index 00000000000..7247a303360 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetRelationsBetweenCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetRelationsBetweenCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getRelationsBetween() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetRelationsBetween(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getRelationsBetween()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetRelationsCest.php b/tests/integration/Mvc/Model/Manager/GetRelationsCest.php new file mode 100644 index 00000000000..b022c4c28ee --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetRelationsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetRelationsCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getRelations() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetRelations(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getRelations()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetReusableRecordsCest.php b/tests/integration/Mvc/Model/Manager/GetReusableRecordsCest.php new file mode 100644 index 00000000000..5fd1cfbc33d --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetReusableRecordsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetReusableRecordsCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getReusableRecords() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetReusableRecords(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getReusableRecords()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetWriteConnectionCest.php b/tests/integration/Mvc/Model/Manager/GetWriteConnectionCest.php new file mode 100644 index 00000000000..de6e5d6a32b --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetWriteConnectionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetWriteConnectionCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getWriteConnection() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetWriteConnection(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getWriteConnection()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/GetWriteConnectionServiceCest.php b/tests/integration/Mvc/Model/Manager/GetWriteConnectionServiceCest.php new file mode 100644 index 00000000000..77895c49282 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/GetWriteConnectionServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class GetWriteConnectionServiceCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: getWriteConnectionService() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerGetWriteConnectionService(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - getWriteConnectionService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/InitializeCest.php b/tests/integration/Mvc/Model/Manager/InitializeCest.php new file mode 100644 index 00000000000..9ec3272b9e4 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/InitializeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class InitializeCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: initialize() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerInitialize(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - initialize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/IsInitializedCest.php b/tests/integration/Mvc/Model/Manager/IsInitializedCest.php new file mode 100644 index 00000000000..02a3c0c39dd --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/IsInitializedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class IsInitializedCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: isInitialized() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerIsInitialized(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - isInitialized()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/IsKeepingSnapshotsCest.php b/tests/integration/Mvc/Model/Manager/IsKeepingSnapshotsCest.php new file mode 100644 index 00000000000..f2c6ef42d67 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/IsKeepingSnapshotsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class IsKeepingSnapshotsCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: isKeepingSnapshots() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerIsKeepingSnapshots(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - isKeepingSnapshots()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/IsUsingDynamicUpdateCest.php b/tests/integration/Mvc/Model/Manager/IsUsingDynamicUpdateCest.php new file mode 100644 index 00000000000..305a2593df4 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/IsUsingDynamicUpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class IsUsingDynamicUpdateCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: isUsingDynamicUpdate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerIsUsingDynamicUpdate(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - isUsingDynamicUpdate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/IsVisibleModelPropertyCest.php b/tests/integration/Mvc/Model/Manager/IsVisibleModelPropertyCest.php new file mode 100644 index 00000000000..e7096713e8b --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/IsVisibleModelPropertyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class IsVisibleModelPropertyCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: isVisibleModelProperty() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerIsVisibleModelProperty(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - isVisibleModelProperty()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/KeepSnapshotsCest.php b/tests/integration/Mvc/Model/Manager/KeepSnapshotsCest.php new file mode 100644 index 00000000000..6265f5760e3 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/KeepSnapshotsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class KeepSnapshotsCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: keepSnapshots() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerKeepSnapshots(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - keepSnapshots()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/LoadCest.php b/tests/integration/Mvc/Model/Manager/LoadCest.php new file mode 100644 index 00000000000..9a4c8c085f1 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/LoadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class LoadCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: load() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerLoad(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - load()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/MissingMethodCest.php b/tests/integration/Mvc/Model/Manager/MissingMethodCest.php new file mode 100644 index 00000000000..6fedd9e1cb4 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/MissingMethodCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class MissingMethodCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: missingMethod() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerMissingMethod(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - missingMethod()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/NotifyEventCest.php b/tests/integration/Mvc/Model/Manager/NotifyEventCest.php new file mode 100644 index 00000000000..4a2d1ed44ef --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/NotifyEventCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class NotifyEventCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: notifyEvent() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerNotifyEvent(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - notifyEvent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/RegisterNamespaceAliasCest.php b/tests/integration/Mvc/Model/Manager/RegisterNamespaceAliasCest.php new file mode 100644 index 00000000000..93dae5f5b39 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/RegisterNamespaceAliasCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class RegisterNamespaceAliasCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: registerNamespaceAlias() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerRegisterNamespaceAlias(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - registerNamespaceAlias()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/RelationsCest.php b/tests/integration/Mvc/Model/Manager/RelationsCest.php new file mode 100644 index 00000000000..715e272b1a9 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/RelationsCest.php @@ -0,0 +1,82 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Test\Models\Relations\RelationsParts; +use Phalcon\Test\Models\Relations\RelationsRobots; +use Phalcon\Test\Models\Relations\RelationsRobotsParts; + +class RelationsCest +{ + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + } + + public function relationsMysql(IntegrationTester $I) + { + $this->setDiMysql(); + + $this->runBelongsTo($I); + $this->runHasMany($I); + } + + public function relationsPostgresql(IntegrationTester $I) + { + $this->setDiPostgresql(); + + $this->runBelongsTo($I); + $this->runHasMany($I); + } + + public function relationsSqlite(IntegrationTester $I) + { + $this->setDiSqlite(); + + $this->runBelongsTo($I); + $this->runHasMany($I); + } + + private function runBelongsTo(IntegrationTester $I) + { + $manager = $this->container->getShared('modelsManager'); + + $I->assertFalse($manager->existsBelongsTo(RelationsRobots::class, RelationsRobotsParts::class)); + $I->assertFalse($manager->existsBelongsTo(RelationsParts::class, RelationsRobotsParts::class)); + + $I->assertTrue($manager->existsBelongsTo(RelationsRobotsParts::class, RelationsRobots::class)); + $I->assertTrue($manager->existsBelongsTo(RelationsRobotsParts::class, RelationsParts::class)); + } + + private function runHasMany(IntegrationTester $I) + { + $manager = $this->container->getShared('modelsManager'); + + $I->assertFalse($manager->existsHasMany(RelationsRobotsParts::class, RelationsRobots::class)); + $I->assertFalse($manager->existsHasMany(RelationsRobotsParts::class, RelationsParts::class)); + + $I->assertTrue($manager->existsHasMany(RelationsRobots::class, RelationsRobotsParts::class)); + $I->assertTrue($manager->existsHasMany(RelationsParts::class, RelationsRobotsParts::class)); + } + + private function runHasManyToMany(IntegrationTester $I) + { + $manager = $this->container->getShared('modelsManager'); + + $I->assertFalse($manager->existsHasManyToMany(RelationsParts::class, RelationsRobots::class)); + $I->assertTrue($manager->existsHasManyToMany(RelationsRobots::class, RelationsParts::class)); + } +} diff --git a/tests/integration/Mvc/Model/Manager/SetConnectionServiceCest.php b/tests/integration/Mvc/Model/Manager/SetConnectionServiceCest.php new file mode 100644 index 00000000000..319fac7bf59 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/SetConnectionServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class SetConnectionServiceCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: setConnectionService() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerSetConnectionService(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - setConnectionService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/SetCustomEventsManagerCest.php b/tests/integration/Mvc/Model/Manager/SetCustomEventsManagerCest.php new file mode 100644 index 00000000000..7ce6d926cc2 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/SetCustomEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class SetCustomEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: setCustomEventsManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerSetCustomEventsManager(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - setCustomEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/SetDICest.php b/tests/integration/Mvc/Model/Manager/SetDICest.php new file mode 100644 index 00000000000..20e15167375 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: setDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerSetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/SetEventsManagerCest.php b/tests/integration/Mvc/Model/Manager/SetEventsManagerCest.php new file mode 100644 index 00000000000..49d9d58f835 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: setEventsManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerSetEventsManager(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/SetModelPrefixCest.php b/tests/integration/Mvc/Model/Manager/SetModelPrefixCest.php new file mode 100644 index 00000000000..db7e38a3236 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/SetModelPrefixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class SetModelPrefixCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: setModelPrefix() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerSetModelPrefix(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - setModelPrefix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/SetModelSchemaCest.php b/tests/integration/Mvc/Model/Manager/SetModelSchemaCest.php new file mode 100644 index 00000000000..72c34ea98ef --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/SetModelSchemaCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class SetModelSchemaCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: setModelSchema() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerSetModelSchema(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - setModelSchema()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/SetModelSourceCest.php b/tests/integration/Mvc/Model/Manager/SetModelSourceCest.php new file mode 100644 index 00000000000..a7bfedd83f5 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/SetModelSourceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class SetModelSourceCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: setModelSource() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerSetModelSource(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - setModelSource()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/SetReadConnectionServiceCest.php b/tests/integration/Mvc/Model/Manager/SetReadConnectionServiceCest.php new file mode 100644 index 00000000000..ca944d441b9 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/SetReadConnectionServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class SetReadConnectionServiceCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: setReadConnectionService() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerSetReadConnectionService(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - setReadConnectionService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/SetReusableRecordsCest.php b/tests/integration/Mvc/Model/Manager/SetReusableRecordsCest.php new file mode 100644 index 00000000000..d2d2687f369 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/SetReusableRecordsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class SetReusableRecordsCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: setReusableRecords() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerSetReusableRecords(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - setReusableRecords()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/SetWriteConnectionServiceCest.php b/tests/integration/Mvc/Model/Manager/SetWriteConnectionServiceCest.php new file mode 100644 index 00000000000..39477188dec --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/SetWriteConnectionServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class SetWriteConnectionServiceCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: setWriteConnectionService() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerSetWriteConnectionService(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - setWriteConnectionService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/UnderscoreGetConnectionServiceCest.php b/tests/integration/Mvc/Model/Manager/UnderscoreGetConnectionServiceCest.php new file mode 100644 index 00000000000..0764dcd5b94 --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/UnderscoreGetConnectionServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class UnderscoreGetConnectionServiceCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: _getConnectionService() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerUnderscoreGetConnectionService(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - _getConnectionService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Manager/UseDynamicUpdateCest.php b/tests/integration/Mvc/Model/Manager/UseDynamicUpdateCest.php new file mode 100644 index 00000000000..3438147967c --- /dev/null +++ b/tests/integration/Mvc/Model/Manager/UseDynamicUpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Manager; + +use IntegrationTester; + +class UseDynamicUpdateCest +{ + /** + * Tests Phalcon\Mvc\Model\Manager :: useDynamicUpdate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelManagerUseDynamicUpdate(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Manager - useDynamicUpdate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/ManagerCest.php b/tests/integration/Mvc/Model/ManagerCest.php new file mode 100644 index 00000000000..b35b05dde37 --- /dev/null +++ b/tests/integration/Mvc/Model/ManagerCest.php @@ -0,0 +1,133 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; +use Phalcon\Mvc\Model\Row; +use Phalcon\Mvc\Model\Manager; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Test\Models\AlbumORama\Artists; +use Phalcon\Test\Models\Robots; +use Phalcon\Test\Models\Customers; +use Phalcon\Test\Models\Relations\RobotsParts; +use Phalcon\Mvc\Model\MetaData\Memory; +use Phalcon\Test\Models\AlbumORama\Albums; + +class ManagerCest +{ + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + $this->setDiMysql(); + } + + /** + * Tests empty prefix for model + * + * @issue https://github.com/phalcon/cphalcon/issues/10328 + * @author Sid Roberts + * @since 2017-04-15 + */ + public function testShouldReturnSourceWithoutPrefix(IntegrationTester $I) + { + $robots = new Robots(); + + $I->assertEquals('robots', $robots->getModelsManager()->getModelSource($robots)); + $I->assertEquals('robots', $robots->getSource()); + } + + /** + * Tests non-empty prefix for model + * + * @issue https://github.com/phalcon/cphalcon/issues/10328 + * @author Sid Roberts + * @since 2017-04-15 + */ + public function testShouldReturnSourceWithPrefix(IntegrationTester $I) + { + $manager = new Manager(); + $manager->setModelPrefix('wp_'); + + $robots = new Robots(null, null, $manager); + + $I->assertEquals('wp_robots', $robots->getModelsManager()->getModelSource($robots)); + $I->assertEquals('wp_robots', $robots->getSource()); + } + + public function testAliasedNamespacesRelations(IntegrationTester $I) + { + $I->skipTest('TODO - Check test'); + $manager = $this->getService('modelsManager'); + $manager->registerNamespaceAlias('AlbumORama', 'Phalcon\Test\Models\AlbumORama'); + + $expected = ['AlbumORama' => 'Phalcon\Test\Models\AlbumORama']; + $actual = $manager->getNamespaceAliases(); + $I->assertEquals($expected, $actual); + + foreach (Albums::find() as $album) { + $I->assertInstanceOf(Artists::class, $album->artist); + } + } + + /** + * Tests Model::getRelated with the desired fields + * + * @test + * @issue https://github.com/phalcon/cphalcon/issues/12972 + * @author Phalcon Team + * @since 2017-10-02 + */ + public function shouldReturnDesiredFieldsFromRelatedModel(IntegrationTester $I) + { + $I->skipTest('TODO - Check test'); + $parts = RobotsParts::findFirst(); + + $robot = $parts->getRobots(); + + $I->assertInstanceOf(Row::class, $robot); + $I->assertEquals(['id' => 1, 'name' => 'Robotina'], $robot->toArray()); + + $robot = $parts->getRobots(['columns'=>'id,type,name']); + + $I->assertInstanceOf(Row::class, $robot); + $I->assertEquals(['id' => 1, 'type' => 'mechanical', 'name' => 'Robotina'], $robot->toArray()); + } + + /** + * Tests Manager::isVisibleModelProperty + * + * @author Phalcon Team + * @since 2016-08-12 + */ + public function testModelPublicProperties(IntegrationTester $I) + { + $manager = $this->getService('modelsManager'); + $examples = [ + ['id', true], + ['document_id', true], + ['customer_id', true], + ['first_name', true], + ['some_field', false], + ['', false], + ['protected_field', false], + ['private_field', false], + ]; + foreach ($examples as $item) { + $property = $item[0]; + $expected = $item[1]; + $actual = $manager->isVisibleModelProperty(new Customers, $property); + $I->assertEquals($expected, $actual); + } + } +} diff --git a/tests/integration/Mvc/Model/MaximumCest.php b/tests/integration/Mvc/Model/MaximumCest.php new file mode 100644 index 00000000000..6431f385026 --- /dev/null +++ b/tests/integration/Mvc/Model/MaximumCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class MaximumCest +{ + /** + * Tests Phalcon\Mvc\Model :: maximum() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMaximum(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - maximum()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/ConstructCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/ConstructCest.php new file mode 100644 index 00000000000..f1f20e51a36 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/GetAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/GetAttributesCest.php new file mode 100644 index 00000000000..6125fae53ed --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: getAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuGetAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/GetAutomaticCreateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/GetAutomaticCreateAttributesCest.php new file mode 100644 index 00000000000..55a377e1b34 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/GetAutomaticCreateAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class GetAutomaticCreateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: getAutomaticCreateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuGetAutomaticCreateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - getAutomaticCreateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/GetAutomaticUpdateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/GetAutomaticUpdateAttributesCest.php new file mode 100644 index 00000000000..7177d119c6e --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/GetAutomaticUpdateAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class GetAutomaticUpdateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: getAutomaticUpdateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuGetAutomaticUpdateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - getAutomaticUpdateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/GetBindTypesCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/GetBindTypesCest.php new file mode 100644 index 00000000000..e69ae41a682 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/GetBindTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class GetBindTypesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: getBindTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuGetBindTypes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - getBindTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/GetColumnMapCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/GetColumnMapCest.php new file mode 100644 index 00000000000..4f2a6e28c3f --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/GetColumnMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class GetColumnMapCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: getColumnMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuGetColumnMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - getColumnMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/GetDICest.php b/tests/integration/Mvc/Model/MetaData/Apcu/GetDICest.php new file mode 100644 index 00000000000..ae7d5161479 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: getDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuGetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/GetDataTypesCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/GetDataTypesCest.php new file mode 100644 index 00000000000..c83be7f30c6 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/GetDataTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class GetDataTypesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: getDataTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuGetDataTypes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - getDataTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/GetDataTypesNumericCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/GetDataTypesNumericCest.php new file mode 100644 index 00000000000..61b5a03fa70 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/GetDataTypesNumericCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class GetDataTypesNumericCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: getDataTypesNumeric() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuGetDataTypesNumeric(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - getDataTypesNumeric()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/GetDefaultValuesCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/GetDefaultValuesCest.php new file mode 100644 index 00000000000..4b1d92801b6 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/GetDefaultValuesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class GetDefaultValuesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: getDefaultValues() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuGetDefaultValues(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - getDefaultValues()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/GetEmptyStringAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/GetEmptyStringAttributesCest.php new file mode 100644 index 00000000000..d7ac667835e --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/GetEmptyStringAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class GetEmptyStringAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: getEmptyStringAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuGetEmptyStringAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - getEmptyStringAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/GetIdentityFieldCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/GetIdentityFieldCest.php new file mode 100644 index 00000000000..5d0c7162fd4 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/GetIdentityFieldCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class GetIdentityFieldCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: getIdentityField() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuGetIdentityField(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - getIdentityField()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/GetNonPrimaryKeyAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/GetNonPrimaryKeyAttributesCest.php new file mode 100644 index 00000000000..28a81b9daa0 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/GetNonPrimaryKeyAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class GetNonPrimaryKeyAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: getNonPrimaryKeyAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuGetNonPrimaryKeyAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - getNonPrimaryKeyAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/GetNotNullAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/GetNotNullAttributesCest.php new file mode 100644 index 00000000000..cb5b0458971 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/GetNotNullAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class GetNotNullAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: getNotNullAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuGetNotNullAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - getNotNullAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/GetPrimaryKeyAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/GetPrimaryKeyAttributesCest.php new file mode 100644 index 00000000000..a0ac411b34b --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/GetPrimaryKeyAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class GetPrimaryKeyAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: getPrimaryKeyAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuGetPrimaryKeyAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - getPrimaryKeyAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/GetReverseColumnMapCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/GetReverseColumnMapCest.php new file mode 100644 index 00000000000..f16783a60df --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/GetReverseColumnMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class GetReverseColumnMapCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: getReverseColumnMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuGetReverseColumnMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - getReverseColumnMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/GetStrategyCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/GetStrategyCest.php new file mode 100644 index 00000000000..209e0f42b5a --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/GetStrategyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class GetStrategyCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: getStrategy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuGetStrategy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - getStrategy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/HasAttributeCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/HasAttributeCest.php new file mode 100644 index 00000000000..fc3916dcc22 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/HasAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class HasAttributeCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: hasAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuHasAttribute(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - hasAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/IsEmptyCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/IsEmptyCest.php new file mode 100644 index 00000000000..e794882e955 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/IsEmptyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class IsEmptyCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: isEmpty() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuIsEmpty(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - isEmpty()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/ReadCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/ReadCest.php new file mode 100644 index 00000000000..938222cc7d9 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/ReadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class ReadCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: read() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuRead(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - read()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/ReadColumnMapCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/ReadColumnMapCest.php new file mode 100644 index 00000000000..30052583da1 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/ReadColumnMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class ReadColumnMapCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: readColumnMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuReadColumnMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - readColumnMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/ReadColumnMapIndexCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/ReadColumnMapIndexCest.php new file mode 100644 index 00000000000..fa0ab949047 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/ReadColumnMapIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class ReadColumnMapIndexCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: readColumnMapIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuReadColumnMapIndex(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - readColumnMapIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/ReadMetaDataCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/ReadMetaDataCest.php new file mode 100644 index 00000000000..941988961ff --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/ReadMetaDataCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class ReadMetaDataCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: readMetaData() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuReadMetaData(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - readMetaData()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/ReadMetaDataIndexCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/ReadMetaDataIndexCest.php new file mode 100644 index 00000000000..c50105c9d88 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/ReadMetaDataIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class ReadMetaDataIndexCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: readMetaDataIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuReadMetaDataIndex(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - readMetaDataIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/ResetCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/ResetCest.php new file mode 100644 index 00000000000..41e1fbed01c --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/ResetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class ResetCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: reset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuReset(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - reset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/SetAutomaticCreateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/SetAutomaticCreateAttributesCest.php new file mode 100644 index 00000000000..cce4870ef3b --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/SetAutomaticCreateAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class SetAutomaticCreateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: setAutomaticCreateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuSetAutomaticCreateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - setAutomaticCreateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/SetAutomaticUpdateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/SetAutomaticUpdateAttributesCest.php new file mode 100644 index 00000000000..024b0cc988f --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/SetAutomaticUpdateAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class SetAutomaticUpdateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: setAutomaticUpdateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuSetAutomaticUpdateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - setAutomaticUpdateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/SetDICest.php b/tests/integration/Mvc/Model/MetaData/Apcu/SetDICest.php new file mode 100644 index 00000000000..c47d531bcbb --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: setDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuSetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/SetEmptyStringAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/SetEmptyStringAttributesCest.php new file mode 100644 index 00000000000..a4d9343410e --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/SetEmptyStringAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class SetEmptyStringAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: setEmptyStringAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuSetEmptyStringAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - setEmptyStringAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/SetStrategyCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/SetStrategyCest.php new file mode 100644 index 00000000000..b6cfc7d391e --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/SetStrategyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class SetStrategyCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: setStrategy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuSetStrategy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - setStrategy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/WriteCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/WriteCest.php new file mode 100644 index 00000000000..eb099121046 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/WriteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class WriteCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: write() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuWrite(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - write()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Apcu/WriteMetaDataIndexCest.php b/tests/integration/Mvc/Model/MetaData/Apcu/WriteMetaDataIndexCest.php new file mode 100644 index 00000000000..ad0d2d1c74e --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Apcu/WriteMetaDataIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; + +use IntegrationTester; + +class WriteMetaDataIndexCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Apcu :: writeMetaDataIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataApcuWriteMetaDataIndex(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Apcu - writeMetaDataIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/ApcuCest.php b/tests/integration/Mvc/Model/MetaData/ApcuCest.php new file mode 100644 index 00000000000..e1b705a174c --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/ApcuCest.php @@ -0,0 +1,74 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use function apcu_fetch; +use Phalcon\Mvc\Model\Metadata\Apcu; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Test\Models\Robots; +use IntegrationTester; + +class ApcuCest +{ + use DiTrait; + + private $data; + + public function _before(IntegrationTester $I) + { + $I->checkExtensionIsLoaded('apcu'); + $this->setNewFactoryDefault(); + $this->setDiMysql(); + $this->container->setShared( + 'modelsMetadata', + function () { + return new Apcu( + [ + 'prefix' => 'app\\', + 'lifetime' => 60, + ] + ); + } + ); + + $this->data = require dataFolder('fixtures/metadata/robots.php'); + apcu_clear_cache(); + } + + public function apc(IntegrationTester $I) + { + $I->wantTo('fetch metadata from apc cache'); + $I->skipTest('TODO - Check test'); + /** @var \Phalcon\Mvc\Model\MetaDataInterface $md */ + $md = $this->container->getShared('modelsMetadata'); + + $md->reset(); + $I->assertTrue($md->isEmpty()); + + Robots::findFirst(); + + $I->assertEquals( + $this->data['meta-robots-robots'], + apcu_fetch('$PMM$app\meta-phalcon\test\models\robots-robots') + ); + + $I->assertEquals( + $this->data['map-robots'], + apcu_fetch('$PMM$app\map-phalcon\test\models\robots') + ); + + $I->assertFalse($md->isEmpty()); + + $md->reset(); + $I->assertTrue($md->isEmpty()); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/ConstructCest.php b/tests/integration/Mvc/Model/MetaData/Files/ConstructCest.php new file mode 100644 index 00000000000..29d2663833f --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/GetAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Files/GetAttributesCest.php new file mode 100644 index 00000000000..e49f1077312 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: getAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesGetAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/GetAutomaticCreateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Files/GetAutomaticCreateAttributesCest.php new file mode 100644 index 00000000000..be7da00ffd6 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/GetAutomaticCreateAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class GetAutomaticCreateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: getAutomaticCreateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesGetAutomaticCreateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - getAutomaticCreateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/GetAutomaticUpdateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Files/GetAutomaticUpdateAttributesCest.php new file mode 100644 index 00000000000..e13f0265449 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/GetAutomaticUpdateAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class GetAutomaticUpdateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: getAutomaticUpdateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesGetAutomaticUpdateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - getAutomaticUpdateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/GetBindTypesCest.php b/tests/integration/Mvc/Model/MetaData/Files/GetBindTypesCest.php new file mode 100644 index 00000000000..54f3f83d240 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/GetBindTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class GetBindTypesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: getBindTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesGetBindTypes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - getBindTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/GetColumnMapCest.php b/tests/integration/Mvc/Model/MetaData/Files/GetColumnMapCest.php new file mode 100644 index 00000000000..911cdf98043 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/GetColumnMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class GetColumnMapCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: getColumnMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesGetColumnMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - getColumnMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/GetDICest.php b/tests/integration/Mvc/Model/MetaData/Files/GetDICest.php new file mode 100644 index 00000000000..b142d12e805 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: getDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesGetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/GetDataTypesCest.php b/tests/integration/Mvc/Model/MetaData/Files/GetDataTypesCest.php new file mode 100644 index 00000000000..903b58dac80 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/GetDataTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class GetDataTypesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: getDataTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesGetDataTypes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - getDataTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/GetDataTypesNumericCest.php b/tests/integration/Mvc/Model/MetaData/Files/GetDataTypesNumericCest.php new file mode 100644 index 00000000000..e66939be9c6 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/GetDataTypesNumericCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class GetDataTypesNumericCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: getDataTypesNumeric() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesGetDataTypesNumeric(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - getDataTypesNumeric()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/GetDefaultValuesCest.php b/tests/integration/Mvc/Model/MetaData/Files/GetDefaultValuesCest.php new file mode 100644 index 00000000000..9679ca695b3 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/GetDefaultValuesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class GetDefaultValuesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: getDefaultValues() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesGetDefaultValues(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - getDefaultValues()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/GetEmptyStringAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Files/GetEmptyStringAttributesCest.php new file mode 100644 index 00000000000..d0697a0f01b --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/GetEmptyStringAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class GetEmptyStringAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: getEmptyStringAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesGetEmptyStringAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - getEmptyStringAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/GetIdentityFieldCest.php b/tests/integration/Mvc/Model/MetaData/Files/GetIdentityFieldCest.php new file mode 100644 index 00000000000..085b17b3f77 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/GetIdentityFieldCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class GetIdentityFieldCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: getIdentityField() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesGetIdentityField(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - getIdentityField()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/GetNonPrimaryKeyAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Files/GetNonPrimaryKeyAttributesCest.php new file mode 100644 index 00000000000..a9463a372f9 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/GetNonPrimaryKeyAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class GetNonPrimaryKeyAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: getNonPrimaryKeyAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesGetNonPrimaryKeyAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - getNonPrimaryKeyAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/GetNotNullAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Files/GetNotNullAttributesCest.php new file mode 100644 index 00000000000..29562db4806 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/GetNotNullAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class GetNotNullAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: getNotNullAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesGetNotNullAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - getNotNullAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/GetPrimaryKeyAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Files/GetPrimaryKeyAttributesCest.php new file mode 100644 index 00000000000..821866036e1 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/GetPrimaryKeyAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class GetPrimaryKeyAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: getPrimaryKeyAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesGetPrimaryKeyAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - getPrimaryKeyAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/GetReverseColumnMapCest.php b/tests/integration/Mvc/Model/MetaData/Files/GetReverseColumnMapCest.php new file mode 100644 index 00000000000..f21f970a5ae --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/GetReverseColumnMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class GetReverseColumnMapCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: getReverseColumnMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesGetReverseColumnMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - getReverseColumnMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/GetStrategyCest.php b/tests/integration/Mvc/Model/MetaData/Files/GetStrategyCest.php new file mode 100644 index 00000000000..572c69090cc --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/GetStrategyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class GetStrategyCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: getStrategy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesGetStrategy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - getStrategy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/HasAttributeCest.php b/tests/integration/Mvc/Model/MetaData/Files/HasAttributeCest.php new file mode 100644 index 00000000000..bdb38634f93 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/HasAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class HasAttributeCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: hasAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesHasAttribute(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - hasAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/IsEmptyCest.php b/tests/integration/Mvc/Model/MetaData/Files/IsEmptyCest.php new file mode 100644 index 00000000000..97d1771a7f2 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/IsEmptyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class IsEmptyCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: isEmpty() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesIsEmpty(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - isEmpty()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/ReadCest.php b/tests/integration/Mvc/Model/MetaData/Files/ReadCest.php new file mode 100644 index 00000000000..e6f02a60271 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/ReadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class ReadCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: read() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesRead(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - read()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/ReadColumnMapCest.php b/tests/integration/Mvc/Model/MetaData/Files/ReadColumnMapCest.php new file mode 100644 index 00000000000..a2f819c4fcc --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/ReadColumnMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class ReadColumnMapCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: readColumnMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesReadColumnMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - readColumnMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/ReadColumnMapIndexCest.php b/tests/integration/Mvc/Model/MetaData/Files/ReadColumnMapIndexCest.php new file mode 100644 index 00000000000..d510ffe80f3 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/ReadColumnMapIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class ReadColumnMapIndexCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: readColumnMapIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesReadColumnMapIndex(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - readColumnMapIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/ReadMetaDataCest.php b/tests/integration/Mvc/Model/MetaData/Files/ReadMetaDataCest.php new file mode 100644 index 00000000000..947dfeff7e6 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/ReadMetaDataCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class ReadMetaDataCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: readMetaData() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesReadMetaData(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - readMetaData()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/ReadMetaDataIndexCest.php b/tests/integration/Mvc/Model/MetaData/Files/ReadMetaDataIndexCest.php new file mode 100644 index 00000000000..617248e17d0 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/ReadMetaDataIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class ReadMetaDataIndexCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: readMetaDataIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesReadMetaDataIndex(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - readMetaDataIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/ResetCest.php b/tests/integration/Mvc/Model/MetaData/Files/ResetCest.php new file mode 100644 index 00000000000..5a55b0158f8 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/ResetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class ResetCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: reset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesReset(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - reset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/SetAutomaticCreateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Files/SetAutomaticCreateAttributesCest.php new file mode 100644 index 00000000000..09c05b7aacb --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/SetAutomaticCreateAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class SetAutomaticCreateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: setAutomaticCreateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesSetAutomaticCreateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - setAutomaticCreateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/SetAutomaticUpdateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Files/SetAutomaticUpdateAttributesCest.php new file mode 100644 index 00000000000..af9131c97f1 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/SetAutomaticUpdateAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class SetAutomaticUpdateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: setAutomaticUpdateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesSetAutomaticUpdateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - setAutomaticUpdateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/SetDICest.php b/tests/integration/Mvc/Model/MetaData/Files/SetDICest.php new file mode 100644 index 00000000000..60212b3665b --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: setDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesSetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/SetEmptyStringAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Files/SetEmptyStringAttributesCest.php new file mode 100644 index 00000000000..1ed99dbdf89 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/SetEmptyStringAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class SetEmptyStringAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: setEmptyStringAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesSetEmptyStringAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - setEmptyStringAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/SetStrategyCest.php b/tests/integration/Mvc/Model/MetaData/Files/SetStrategyCest.php new file mode 100644 index 00000000000..3260d4a1f42 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/SetStrategyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class SetStrategyCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: setStrategy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesSetStrategy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - setStrategy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/WriteCest.php b/tests/integration/Mvc/Model/MetaData/Files/WriteCest.php new file mode 100644 index 00000000000..4d830a7b0e0 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/WriteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class WriteCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: write() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesWrite(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - write()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Files/WriteMetaDataIndexCest.php b/tests/integration/Mvc/Model/MetaData/Files/WriteMetaDataIndexCest.php new file mode 100644 index 00000000000..6534ceb62f5 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Files/WriteMetaDataIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Files; + +use IntegrationTester; + +class WriteMetaDataIndexCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Files :: writeMetaDataIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataFilesWriteMetaDataIndex(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Files - writeMetaDataIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/FilesCest.php b/tests/integration/Mvc/Model/MetaData/FilesCest.php new file mode 100644 index 00000000000..94fd668ecf7 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/FilesCest.php @@ -0,0 +1,79 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use Phalcon\Mvc\Model\Metadata\Files; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Test\Models\Robots; +use IntegrationTester; + +class FilesCest +{ + use DiTrait; + + private $data; + + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + $this->setDiMysql(); + $this->container->setShared( + 'modelsMetadata', + function () { + return new Files( + [ + 'metaDataDir' => cacheFolder(), + ] + ); + } + ); + + $this->data = require dataFolder('fixtures/metadata/robots.php'); + } + + public function files(IntegrationTester $I) + { + $I->wantTo('fetch metadata from file cache'); + + /** @var \Phalcon\Mvc\Model\MetaDataInterface $md */ + $md = $this->container->getShared('modelsMetadata'); + + $md->reset(); + $I->assertTrue($md->isEmpty()); + + Robots::findFirst(); + + $I->amInPath(cacheFolder()); + + $I->seeFileFound('meta-phalcon_test_models_robots-robots.php'); + + $I->assertEquals( + $this->data['meta-robots-robots'], + require cacheFolder('meta-phalcon_test_models_robots-robots.php') + ); + + $I->seeFileFound('map-phalcon_test_models_robots.php'); + + $I->assertEquals( + $this->data['map-robots'], + require cacheFolder('map-phalcon_test_models_robots.php') + ); + + $I->assertFalse($md->isEmpty()); + + $md->reset(); + $I->assertTrue($md->isEmpty()); + + $I->safeDeleteFile('meta-phalcon_test_models_robots-robots.php'); + $I->safeDeleteFile('map-phalcon_test_models_robots.php'); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/GetAttributesCest.php b/tests/integration/Mvc/Model/MetaData/GetAttributesCest.php new file mode 100644 index 00000000000..2ae6df50363 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: getAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataGetAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/GetAutomaticCreateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/GetAutomaticCreateAttributesCest.php new file mode 100644 index 00000000000..5a62a0c261b --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/GetAutomaticCreateAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class GetAutomaticCreateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: getAutomaticCreateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataGetAutomaticCreateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - getAutomaticCreateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/GetAutomaticUpdateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/GetAutomaticUpdateAttributesCest.php new file mode 100644 index 00000000000..076f3370c4f --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/GetAutomaticUpdateAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class GetAutomaticUpdateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: getAutomaticUpdateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataGetAutomaticUpdateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - getAutomaticUpdateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/GetBindTypesCest.php b/tests/integration/Mvc/Model/MetaData/GetBindTypesCest.php new file mode 100644 index 00000000000..23317c3759b --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/GetBindTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class GetBindTypesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: getBindTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataGetBindTypes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - getBindTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/GetColumnMapCest.php b/tests/integration/Mvc/Model/MetaData/GetColumnMapCest.php new file mode 100644 index 00000000000..ab41ce0f7a4 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/GetColumnMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class GetColumnMapCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: getColumnMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataGetColumnMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - getColumnMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/GetDICest.php b/tests/integration/Mvc/Model/MetaData/GetDICest.php new file mode 100644 index 00000000000..f0ef7ba0ada --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: getDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataGetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/GetDataTypesCest.php b/tests/integration/Mvc/Model/MetaData/GetDataTypesCest.php new file mode 100644 index 00000000000..bf216ab020b --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/GetDataTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class GetDataTypesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: getDataTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataGetDataTypes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - getDataTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/GetDataTypesNumericCest.php b/tests/integration/Mvc/Model/MetaData/GetDataTypesNumericCest.php new file mode 100644 index 00000000000..705563169fa --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/GetDataTypesNumericCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class GetDataTypesNumericCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: getDataTypesNumeric() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataGetDataTypesNumeric(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - getDataTypesNumeric()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/GetDefaultValuesCest.php b/tests/integration/Mvc/Model/MetaData/GetDefaultValuesCest.php new file mode 100644 index 00000000000..e46d1636398 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/GetDefaultValuesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class GetDefaultValuesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: getDefaultValues() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataGetDefaultValues(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - getDefaultValues()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/GetEmptyStringAttributesCest.php b/tests/integration/Mvc/Model/MetaData/GetEmptyStringAttributesCest.php new file mode 100644 index 00000000000..b907d88c7e2 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/GetEmptyStringAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class GetEmptyStringAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: getEmptyStringAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataGetEmptyStringAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - getEmptyStringAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/GetIdentityFieldCest.php b/tests/integration/Mvc/Model/MetaData/GetIdentityFieldCest.php new file mode 100644 index 00000000000..dea1ca6c9c0 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/GetIdentityFieldCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class GetIdentityFieldCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: getIdentityField() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataGetIdentityField(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - getIdentityField()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/GetNonPrimaryKeyAttributesCest.php b/tests/integration/Mvc/Model/MetaData/GetNonPrimaryKeyAttributesCest.php new file mode 100644 index 00000000000..1329134c1ad --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/GetNonPrimaryKeyAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class GetNonPrimaryKeyAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: getNonPrimaryKeyAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataGetNonPrimaryKeyAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - getNonPrimaryKeyAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/GetNotNullAttributesCest.php b/tests/integration/Mvc/Model/MetaData/GetNotNullAttributesCest.php new file mode 100644 index 00000000000..f8eeb6cd101 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/GetNotNullAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class GetNotNullAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: getNotNullAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataGetNotNullAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - getNotNullAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/GetPrimaryKeyAttributesCest.php b/tests/integration/Mvc/Model/MetaData/GetPrimaryKeyAttributesCest.php new file mode 100644 index 00000000000..9fb492a5ce0 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/GetPrimaryKeyAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class GetPrimaryKeyAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: getPrimaryKeyAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataGetPrimaryKeyAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - getPrimaryKeyAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/GetReverseColumnMapCest.php b/tests/integration/Mvc/Model/MetaData/GetReverseColumnMapCest.php new file mode 100644 index 00000000000..949a2d286b6 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/GetReverseColumnMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class GetReverseColumnMapCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: getReverseColumnMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataGetReverseColumnMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - getReverseColumnMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/GetStrategyCest.php b/tests/integration/Mvc/Model/MetaData/GetStrategyCest.php new file mode 100644 index 00000000000..4a1b9d03789 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/GetStrategyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class GetStrategyCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: getStrategy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataGetStrategy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - getStrategy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/HasAttributeCest.php b/tests/integration/Mvc/Model/MetaData/HasAttributeCest.php new file mode 100644 index 00000000000..437f374d78a --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/HasAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class HasAttributeCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: hasAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataHasAttribute(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - hasAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/IsEmptyCest.php b/tests/integration/Mvc/Model/MetaData/IsEmptyCest.php new file mode 100644 index 00000000000..fd6a193942e --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/IsEmptyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class IsEmptyCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: isEmpty() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataIsEmpty(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - isEmpty()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/ConstructCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/ConstructCest.php new file mode 100644 index 00000000000..3018e720156 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/GetAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetAttributesCest.php new file mode 100644 index 00000000000..594e647e321 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: getAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedGetAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/GetAutomaticCreateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetAutomaticCreateAttributesCest.php new file mode 100644 index 00000000000..038450947e0 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetAutomaticCreateAttributesCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class GetAutomaticCreateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: + * getAutomaticCreateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedGetAutomaticCreateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - getAutomaticCreateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/GetAutomaticUpdateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetAutomaticUpdateAttributesCest.php new file mode 100644 index 00000000000..22173fc9f5a --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetAutomaticUpdateAttributesCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class GetAutomaticUpdateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: + * getAutomaticUpdateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedGetAutomaticUpdateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - getAutomaticUpdateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/GetBindTypesCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetBindTypesCest.php new file mode 100644 index 00000000000..8153fa11f6c --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetBindTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class GetBindTypesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: getBindTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedGetBindTypes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - getBindTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/GetColumnMapCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetColumnMapCest.php new file mode 100644 index 00000000000..44884743245 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetColumnMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class GetColumnMapCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: getColumnMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedGetColumnMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - getColumnMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/GetDICest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetDICest.php new file mode 100644 index 00000000000..d4049405a31 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: getDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedGetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/GetDataTypesCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetDataTypesCest.php new file mode 100644 index 00000000000..6f42f222d81 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetDataTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class GetDataTypesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: getDataTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedGetDataTypes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - getDataTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/GetDataTypesNumericCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetDataTypesNumericCest.php new file mode 100644 index 00000000000..195462da6d9 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetDataTypesNumericCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class GetDataTypesNumericCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: getDataTypesNumeric() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedGetDataTypesNumeric(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - getDataTypesNumeric()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/GetDefaultValuesCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetDefaultValuesCest.php new file mode 100644 index 00000000000..64321f754d7 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetDefaultValuesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class GetDefaultValuesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: getDefaultValues() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedGetDefaultValues(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - getDefaultValues()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/GetEmptyStringAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetEmptyStringAttributesCest.php new file mode 100644 index 00000000000..720120d937d --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetEmptyStringAttributesCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class GetEmptyStringAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: + * getEmptyStringAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedGetEmptyStringAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - getEmptyStringAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/GetIdentityFieldCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetIdentityFieldCest.php new file mode 100644 index 00000000000..a10e5e737c0 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetIdentityFieldCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class GetIdentityFieldCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: getIdentityField() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedGetIdentityField(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - getIdentityField()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/GetNonPrimaryKeyAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetNonPrimaryKeyAttributesCest.php new file mode 100644 index 00000000000..7ad88962177 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetNonPrimaryKeyAttributesCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class GetNonPrimaryKeyAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: + * getNonPrimaryKeyAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedGetNonPrimaryKeyAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - getNonPrimaryKeyAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/GetNotNullAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetNotNullAttributesCest.php new file mode 100644 index 00000000000..72cb18474bf --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetNotNullAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class GetNotNullAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: getNotNullAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedGetNotNullAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - getNotNullAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/GetPrimaryKeyAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetPrimaryKeyAttributesCest.php new file mode 100644 index 00000000000..7fea04947b5 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetPrimaryKeyAttributesCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class GetPrimaryKeyAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: + * getPrimaryKeyAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedGetPrimaryKeyAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - getPrimaryKeyAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/GetReverseColumnMapCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetReverseColumnMapCest.php new file mode 100644 index 00000000000..bc875b49d11 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetReverseColumnMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class GetReverseColumnMapCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: getReverseColumnMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedGetReverseColumnMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - getReverseColumnMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/GetStrategyCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetStrategyCest.php new file mode 100644 index 00000000000..0989ddfc1c6 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/GetStrategyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class GetStrategyCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: getStrategy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedGetStrategy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - getStrategy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/HasAttributeCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/HasAttributeCest.php new file mode 100644 index 00000000000..64f3d6b3f5e --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/HasAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class HasAttributeCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: hasAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedHasAttribute(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - hasAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/IsEmptyCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/IsEmptyCest.php new file mode 100644 index 00000000000..3fe7717459c --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/IsEmptyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class IsEmptyCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: isEmpty() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedIsEmpty(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - isEmpty()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/ReadCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/ReadCest.php new file mode 100644 index 00000000000..12ec4fc7d4b --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/ReadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class ReadCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: read() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedRead(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - read()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/ReadColumnMapCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/ReadColumnMapCest.php new file mode 100644 index 00000000000..318db1b55a9 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/ReadColumnMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class ReadColumnMapCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: readColumnMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedReadColumnMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - readColumnMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/ReadColumnMapIndexCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/ReadColumnMapIndexCest.php new file mode 100644 index 00000000000..01573b3d77a --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/ReadColumnMapIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class ReadColumnMapIndexCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: readColumnMapIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedReadColumnMapIndex(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - readColumnMapIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/ReadMetaDataCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/ReadMetaDataCest.php new file mode 100644 index 00000000000..ca16493fbe8 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/ReadMetaDataCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class ReadMetaDataCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: readMetaData() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedReadMetaData(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - readMetaData()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/ReadMetaDataIndexCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/ReadMetaDataIndexCest.php new file mode 100644 index 00000000000..ea4dcc3ee3d --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/ReadMetaDataIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class ReadMetaDataIndexCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: readMetaDataIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedReadMetaDataIndex(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - readMetaDataIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/ResetCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/ResetCest.php new file mode 100644 index 00000000000..3b4ca258e98 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/ResetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class ResetCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: reset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedReset(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - reset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/SetAutomaticCreateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/SetAutomaticCreateAttributesCest.php new file mode 100644 index 00000000000..eee71a2f19a --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/SetAutomaticCreateAttributesCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class SetAutomaticCreateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: + * setAutomaticCreateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedSetAutomaticCreateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - setAutomaticCreateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/SetAutomaticUpdateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/SetAutomaticUpdateAttributesCest.php new file mode 100644 index 00000000000..32bb7ae13f1 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/SetAutomaticUpdateAttributesCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class SetAutomaticUpdateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: + * setAutomaticUpdateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedSetAutomaticUpdateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - setAutomaticUpdateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/SetDICest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/SetDICest.php new file mode 100644 index 00000000000..a832f1b0a79 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: setDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedSetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/SetEmptyStringAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/SetEmptyStringAttributesCest.php new file mode 100644 index 00000000000..a28ed08e04c --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/SetEmptyStringAttributesCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class SetEmptyStringAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: + * setEmptyStringAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedSetEmptyStringAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - setEmptyStringAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/SetStrategyCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/SetStrategyCest.php new file mode 100644 index 00000000000..1438174fbc3 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/SetStrategyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class SetStrategyCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: setStrategy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedSetStrategy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - setStrategy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/WriteCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/WriteCest.php new file mode 100644 index 00000000000..3eff5463570 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/WriteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class WriteCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: write() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedWrite(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - write()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Libmemcached/WriteMetaDataIndexCest.php b/tests/integration/Mvc/Model/MetaData/Libmemcached/WriteMetaDataIndexCest.php new file mode 100644 index 00000000000..da6e87009be --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Libmemcached/WriteMetaDataIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; + +use IntegrationTester; + +class WriteMetaDataIndexCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Libmemcached :: writeMetaDataIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataLibmemcachedWriteMetaDataIndex(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Libmemcached - writeMetaDataIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/LibmemcachedCest.php b/tests/integration/Mvc/Model/MetaData/LibmemcachedCest.php new file mode 100644 index 00000000000..9d689d7e0ec --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/LibmemcachedCest.php @@ -0,0 +1,77 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use Phalcon\Mvc\Model\Metadata\Libmemcached; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Test\Models\Robots; +use IntegrationTester; + +class LibmemcachedCest +{ + use DiTrait; + + private $data; + + public function _before(IntegrationTester $I) + { + $I->checkExtensionIsLoaded('memcached'); + $this->setNewFactoryDefault(); + $this->setDiMysql(); + $this->container->setShared( + 'modelsMetadata', + function () { + return new Libmemcached( + [ + 'servers' => [ + [ + 'host' => env('DATA_MEMCACHED_HOST', '127.0.0.1'), + 'port' => env('DATA_MEMCACHED_PORT', 11211), + 'weight' => 1, + ] + ], + ] + ); + } + ); + + $this->data = require dataFolder('fixtures/metadata/robots.php'); + } + + public function memcached(IntegrationTester $I) + { + $I->wantTo('fetch metadata from memcached cache'); + + /** @var \Phalcon\Mvc\Model\MetaDataInterface $md */ + $md = $this->container->getShared('modelsMetadata'); + + $md->reset(); + $I->assertTrue($md->isEmpty()); + + Robots::findFirst(); + + $I->assertEquals( + $this->data['meta-robots-robots'], + $md->read("meta-phalcon\\test\\models\\robots-robots") + ); + + $I->assertEquals( + $this->data['map-robots'], + $md->read("map-phalcon\\test\\models\\robots") + ); + + $I->assertFalse($md->isEmpty()); + + $md->reset(); + $I->assertTrue($md->isEmpty()); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/ConstructCest.php b/tests/integration/Mvc/Model/MetaData/Memory/ConstructCest.php new file mode 100644 index 00000000000..8bc6af2293f --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/GetAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Memory/GetAttributesCest.php new file mode 100644 index 00000000000..73f40a7a2ef --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: getAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryGetAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/GetAutomaticCreateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Memory/GetAutomaticCreateAttributesCest.php new file mode 100644 index 00000000000..39f5d5c04fd --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/GetAutomaticCreateAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class GetAutomaticCreateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: getAutomaticCreateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryGetAutomaticCreateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - getAutomaticCreateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/GetAutomaticUpdateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Memory/GetAutomaticUpdateAttributesCest.php new file mode 100644 index 00000000000..deca089d108 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/GetAutomaticUpdateAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class GetAutomaticUpdateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: getAutomaticUpdateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryGetAutomaticUpdateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - getAutomaticUpdateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/GetBindTypesCest.php b/tests/integration/Mvc/Model/MetaData/Memory/GetBindTypesCest.php new file mode 100644 index 00000000000..89828de0acb --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/GetBindTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class GetBindTypesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: getBindTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryGetBindTypes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - getBindTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/GetColumnMapCest.php b/tests/integration/Mvc/Model/MetaData/Memory/GetColumnMapCest.php new file mode 100644 index 00000000000..e028938fcda --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/GetColumnMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class GetColumnMapCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: getColumnMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryGetColumnMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - getColumnMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/GetDICest.php b/tests/integration/Mvc/Model/MetaData/Memory/GetDICest.php new file mode 100644 index 00000000000..6158de23a34 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: getDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryGetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/GetDataTypesCest.php b/tests/integration/Mvc/Model/MetaData/Memory/GetDataTypesCest.php new file mode 100644 index 00000000000..e6b7d876372 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/GetDataTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class GetDataTypesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: getDataTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryGetDataTypes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - getDataTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/GetDataTypesNumericCest.php b/tests/integration/Mvc/Model/MetaData/Memory/GetDataTypesNumericCest.php new file mode 100644 index 00000000000..f01976239a0 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/GetDataTypesNumericCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class GetDataTypesNumericCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: getDataTypesNumeric() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryGetDataTypesNumeric(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - getDataTypesNumeric()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/GetDefaultValuesCest.php b/tests/integration/Mvc/Model/MetaData/Memory/GetDefaultValuesCest.php new file mode 100644 index 00000000000..2ad16004ca0 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/GetDefaultValuesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class GetDefaultValuesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: getDefaultValues() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryGetDefaultValues(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - getDefaultValues()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/GetEmptyStringAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Memory/GetEmptyStringAttributesCest.php new file mode 100644 index 00000000000..b8666ee864d --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/GetEmptyStringAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class GetEmptyStringAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: getEmptyStringAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryGetEmptyStringAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - getEmptyStringAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/GetIdentityFieldCest.php b/tests/integration/Mvc/Model/MetaData/Memory/GetIdentityFieldCest.php new file mode 100644 index 00000000000..c22a2e82743 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/GetIdentityFieldCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class GetIdentityFieldCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: getIdentityField() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryGetIdentityField(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - getIdentityField()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/GetNonPrimaryKeyAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Memory/GetNonPrimaryKeyAttributesCest.php new file mode 100644 index 00000000000..d4d90c0222b --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/GetNonPrimaryKeyAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class GetNonPrimaryKeyAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: getNonPrimaryKeyAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryGetNonPrimaryKeyAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - getNonPrimaryKeyAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/GetNotNullAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Memory/GetNotNullAttributesCest.php new file mode 100644 index 00000000000..c95c730cd0c --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/GetNotNullAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class GetNotNullAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: getNotNullAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryGetNotNullAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - getNotNullAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/GetPrimaryKeyAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Memory/GetPrimaryKeyAttributesCest.php new file mode 100644 index 00000000000..983847e2803 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/GetPrimaryKeyAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class GetPrimaryKeyAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: getPrimaryKeyAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryGetPrimaryKeyAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - getPrimaryKeyAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/GetReverseColumnMapCest.php b/tests/integration/Mvc/Model/MetaData/Memory/GetReverseColumnMapCest.php new file mode 100644 index 00000000000..5dc5de0e120 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/GetReverseColumnMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class GetReverseColumnMapCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: getReverseColumnMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryGetReverseColumnMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - getReverseColumnMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/GetStrategyCest.php b/tests/integration/Mvc/Model/MetaData/Memory/GetStrategyCest.php new file mode 100644 index 00000000000..bad591b6d9c --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/GetStrategyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class GetStrategyCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: getStrategy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryGetStrategy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - getStrategy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/HasAttributeCest.php b/tests/integration/Mvc/Model/MetaData/Memory/HasAttributeCest.php new file mode 100644 index 00000000000..7fd0c124e14 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/HasAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class HasAttributeCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: hasAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryHasAttribute(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - hasAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/IsEmptyCest.php b/tests/integration/Mvc/Model/MetaData/Memory/IsEmptyCest.php new file mode 100644 index 00000000000..59c85eabda1 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/IsEmptyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class IsEmptyCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: isEmpty() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryIsEmpty(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - isEmpty()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/ReadCest.php b/tests/integration/Mvc/Model/MetaData/Memory/ReadCest.php new file mode 100644 index 00000000000..f7605786264 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/ReadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class ReadCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: read() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryRead(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - read()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/ReadColumnMapCest.php b/tests/integration/Mvc/Model/MetaData/Memory/ReadColumnMapCest.php new file mode 100644 index 00000000000..2149f4ce51d --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/ReadColumnMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class ReadColumnMapCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: readColumnMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryReadColumnMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - readColumnMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/ReadColumnMapIndexCest.php b/tests/integration/Mvc/Model/MetaData/Memory/ReadColumnMapIndexCest.php new file mode 100644 index 00000000000..02b909d7908 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/ReadColumnMapIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class ReadColumnMapIndexCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: readColumnMapIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryReadColumnMapIndex(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - readColumnMapIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/ReadMetaDataCest.php b/tests/integration/Mvc/Model/MetaData/Memory/ReadMetaDataCest.php new file mode 100644 index 00000000000..77b7baa6391 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/ReadMetaDataCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class ReadMetaDataCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: readMetaData() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryReadMetaData(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - readMetaData()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/ReadMetaDataIndexCest.php b/tests/integration/Mvc/Model/MetaData/Memory/ReadMetaDataIndexCest.php new file mode 100644 index 00000000000..7f4b5d402b2 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/ReadMetaDataIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class ReadMetaDataIndexCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: readMetaDataIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryReadMetaDataIndex(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - readMetaDataIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/ResetCest.php b/tests/integration/Mvc/Model/MetaData/Memory/ResetCest.php new file mode 100644 index 00000000000..6b57b32f422 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/ResetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class ResetCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: reset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryReset(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - reset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/SetAutomaticCreateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Memory/SetAutomaticCreateAttributesCest.php new file mode 100644 index 00000000000..3b24d663656 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/SetAutomaticCreateAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class SetAutomaticCreateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: setAutomaticCreateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemorySetAutomaticCreateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - setAutomaticCreateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/SetAutomaticUpdateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Memory/SetAutomaticUpdateAttributesCest.php new file mode 100644 index 00000000000..256a9ac010a --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/SetAutomaticUpdateAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class SetAutomaticUpdateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: setAutomaticUpdateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemorySetAutomaticUpdateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - setAutomaticUpdateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/SetDICest.php b/tests/integration/Mvc/Model/MetaData/Memory/SetDICest.php new file mode 100644 index 00000000000..f57de721d78 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: setDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemorySetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/SetEmptyStringAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Memory/SetEmptyStringAttributesCest.php new file mode 100644 index 00000000000..46433d16399 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/SetEmptyStringAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class SetEmptyStringAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: setEmptyStringAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemorySetEmptyStringAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - setEmptyStringAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/SetStrategyCest.php b/tests/integration/Mvc/Model/MetaData/Memory/SetStrategyCest.php new file mode 100644 index 00000000000..263512e5490 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/SetStrategyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class SetStrategyCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: setStrategy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemorySetStrategy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - setStrategy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/WriteCest.php b/tests/integration/Mvc/Model/MetaData/Memory/WriteCest.php new file mode 100644 index 00000000000..831160d4c5f --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/WriteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class WriteCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: write() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryWrite(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - write()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Memory/WriteMetaDataIndexCest.php b/tests/integration/Mvc/Model/MetaData/Memory/WriteMetaDataIndexCest.php new file mode 100644 index 00000000000..958a1487e2d --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Memory/WriteMetaDataIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; + +use IntegrationTester; + +class WriteMetaDataIndexCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Memory :: writeMetaDataIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataMemoryWriteMetaDataIndex(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Memory - writeMetaDataIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/MemoryCest.php b/tests/integration/Mvc/Model/MetaData/MemoryCest.php new file mode 100644 index 00000000000..aac69156cb1 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/MemoryCest.php @@ -0,0 +1,97 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use Phalcon\Mvc\Model\Metadata\Memory; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Test\Models\Robots; +use Phalcon\Test\Models\Robotto; +use IntegrationTester; + +class MemoryCest +{ + use DiTrait; + + private $data; + + public function _before(IntegrationTester $I) + { + $I->checkExtensionIsLoaded('redis'); + $this->setNewFactoryDefault(); + $this->setDiMysql(); + $this->container->setShared( + 'modelsMetadata', + function () { + return new Memory(); + } + ); + + $this->data = require dataFolder('fixtures/metadata/robots.php'); + } + + public function redis(IntegrationTester $I) + { + $I->wantTo('fetch metadata from memory'); + + /** @var \Phalcon\Mvc\Model\MetaDataInterface $md */ + $md = $this->container->getShared('modelsMetadata'); + + $md->reset(); + $I->assertTrue($md->isEmpty()); + + Robots::findFirst(); + + $I->assertFalse($md->isEmpty()); + + $md->reset(); + $I->assertTrue($md->isEmpty()); + } + + public function testMetadataManual(IntegrationTester $I) + { + /** @var \Phalcon\Mvc\Model\MetaDataInterface $metaData */ + $metaData = $this->container->getShared('modelsMetadata'); + + $di = $I->getApplication()->getDI(); + + $robotto = new Robotto(); + + //Robots + $pAttributes = array( + 0 => 'id', + 1 => 'name', + 2 => 'type', + 3 => 'year' + ); + + $attributes = $metaData->getAttributes($robotto); + $I->assertEquals($attributes, $pAttributes); + + $ppkAttributes = array( + 0 => 'id' + ); + + $pkAttributes = $metaData->getPrimaryKeyAttributes($robotto); + $I->assertEquals($ppkAttributes, $pkAttributes); + + $pnpkAttributes = array( + 0 => 'name', + 1 => 'type', + 2 => 'year' + ); + + $npkAttributes = $metaData->getNonPrimaryKeyAttributes($robotto); + $I->assertEquals($pnpkAttributes, $npkAttributes); + + $I->assertEquals($metaData->getIdentityField($robotto), 'id'); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/ReadCest.php b/tests/integration/Mvc/Model/MetaData/ReadCest.php new file mode 100644 index 00000000000..f58c10d1993 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/ReadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class ReadCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: read() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRead(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - read()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/ReadColumnMapCest.php b/tests/integration/Mvc/Model/MetaData/ReadColumnMapCest.php new file mode 100644 index 00000000000..0739bd22354 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/ReadColumnMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class ReadColumnMapCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: readColumnMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataReadColumnMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - readColumnMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/ReadColumnMapIndexCest.php b/tests/integration/Mvc/Model/MetaData/ReadColumnMapIndexCest.php new file mode 100644 index 00000000000..aeceba8ec15 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/ReadColumnMapIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class ReadColumnMapIndexCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: readColumnMapIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataReadColumnMapIndex(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - readColumnMapIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/ReadMetaDataCest.php b/tests/integration/Mvc/Model/MetaData/ReadMetaDataCest.php new file mode 100644 index 00000000000..7f0de76cd7e --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/ReadMetaDataCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class ReadMetaDataCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: readMetaData() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataReadMetaData(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - readMetaData()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/ReadMetaDataIndexCest.php b/tests/integration/Mvc/Model/MetaData/ReadMetaDataIndexCest.php new file mode 100644 index 00000000000..7fa30cecc04 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/ReadMetaDataIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class ReadMetaDataIndexCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: readMetaDataIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataReadMetaDataIndex(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - readMetaDataIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/ConstructCest.php b/tests/integration/Mvc/Model/MetaData/Redis/ConstructCest.php new file mode 100644 index 00000000000..adaa195e98a --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/GetAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Redis/GetAttributesCest.php new file mode 100644 index 00000000000..02844db60bd --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: getAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisGetAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/GetAutomaticCreateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Redis/GetAutomaticCreateAttributesCest.php new file mode 100644 index 00000000000..7702d16a433 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/GetAutomaticCreateAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class GetAutomaticCreateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: getAutomaticCreateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisGetAutomaticCreateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - getAutomaticCreateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/GetAutomaticUpdateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Redis/GetAutomaticUpdateAttributesCest.php new file mode 100644 index 00000000000..64f28cd7985 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/GetAutomaticUpdateAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class GetAutomaticUpdateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: getAutomaticUpdateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisGetAutomaticUpdateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - getAutomaticUpdateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/GetBindTypesCest.php b/tests/integration/Mvc/Model/MetaData/Redis/GetBindTypesCest.php new file mode 100644 index 00000000000..08a1a7bb3da --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/GetBindTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class GetBindTypesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: getBindTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisGetBindTypes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - getBindTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/GetColumnMapCest.php b/tests/integration/Mvc/Model/MetaData/Redis/GetColumnMapCest.php new file mode 100644 index 00000000000..35a865d9c55 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/GetColumnMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class GetColumnMapCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: getColumnMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisGetColumnMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - getColumnMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/GetDICest.php b/tests/integration/Mvc/Model/MetaData/Redis/GetDICest.php new file mode 100644 index 00000000000..4de4da19aab --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: getDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisGetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/GetDataTypesCest.php b/tests/integration/Mvc/Model/MetaData/Redis/GetDataTypesCest.php new file mode 100644 index 00000000000..11859f31294 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/GetDataTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class GetDataTypesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: getDataTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisGetDataTypes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - getDataTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/GetDataTypesNumericCest.php b/tests/integration/Mvc/Model/MetaData/Redis/GetDataTypesNumericCest.php new file mode 100644 index 00000000000..fbba7b9eaac --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/GetDataTypesNumericCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class GetDataTypesNumericCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: getDataTypesNumeric() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisGetDataTypesNumeric(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - getDataTypesNumeric()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/GetDefaultValuesCest.php b/tests/integration/Mvc/Model/MetaData/Redis/GetDefaultValuesCest.php new file mode 100644 index 00000000000..d87f5bed46e --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/GetDefaultValuesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class GetDefaultValuesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: getDefaultValues() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisGetDefaultValues(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - getDefaultValues()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/GetEmptyStringAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Redis/GetEmptyStringAttributesCest.php new file mode 100644 index 00000000000..c9c85b73ed7 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/GetEmptyStringAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class GetEmptyStringAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: getEmptyStringAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisGetEmptyStringAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - getEmptyStringAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/GetIdentityFieldCest.php b/tests/integration/Mvc/Model/MetaData/Redis/GetIdentityFieldCest.php new file mode 100644 index 00000000000..05caaf3ed31 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/GetIdentityFieldCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class GetIdentityFieldCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: getIdentityField() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisGetIdentityField(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - getIdentityField()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/GetNonPrimaryKeyAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Redis/GetNonPrimaryKeyAttributesCest.php new file mode 100644 index 00000000000..230df05c662 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/GetNonPrimaryKeyAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class GetNonPrimaryKeyAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: getNonPrimaryKeyAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisGetNonPrimaryKeyAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - getNonPrimaryKeyAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/GetNotNullAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Redis/GetNotNullAttributesCest.php new file mode 100644 index 00000000000..f2a788c6ddc --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/GetNotNullAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class GetNotNullAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: getNotNullAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisGetNotNullAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - getNotNullAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/GetPrimaryKeyAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Redis/GetPrimaryKeyAttributesCest.php new file mode 100644 index 00000000000..0e17dddda35 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/GetPrimaryKeyAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class GetPrimaryKeyAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: getPrimaryKeyAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisGetPrimaryKeyAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - getPrimaryKeyAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/GetReverseColumnMapCest.php b/tests/integration/Mvc/Model/MetaData/Redis/GetReverseColumnMapCest.php new file mode 100644 index 00000000000..848b65f21fd --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/GetReverseColumnMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class GetReverseColumnMapCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: getReverseColumnMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisGetReverseColumnMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - getReverseColumnMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/GetStrategyCest.php b/tests/integration/Mvc/Model/MetaData/Redis/GetStrategyCest.php new file mode 100644 index 00000000000..13ce70a80dd --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/GetStrategyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class GetStrategyCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: getStrategy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisGetStrategy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - getStrategy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/HasAttributeCest.php b/tests/integration/Mvc/Model/MetaData/Redis/HasAttributeCest.php new file mode 100644 index 00000000000..05e66acb98c --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/HasAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class HasAttributeCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: hasAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisHasAttribute(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - hasAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/IsEmptyCest.php b/tests/integration/Mvc/Model/MetaData/Redis/IsEmptyCest.php new file mode 100644 index 00000000000..29130bf91e9 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/IsEmptyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class IsEmptyCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: isEmpty() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisIsEmpty(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - isEmpty()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/ReadCest.php b/tests/integration/Mvc/Model/MetaData/Redis/ReadCest.php new file mode 100644 index 00000000000..18f4cd85063 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/ReadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class ReadCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: read() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisRead(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - read()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/ReadColumnMapCest.php b/tests/integration/Mvc/Model/MetaData/Redis/ReadColumnMapCest.php new file mode 100644 index 00000000000..9998a6465bc --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/ReadColumnMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class ReadColumnMapCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: readColumnMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisReadColumnMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - readColumnMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/ReadColumnMapIndexCest.php b/tests/integration/Mvc/Model/MetaData/Redis/ReadColumnMapIndexCest.php new file mode 100644 index 00000000000..48a2ee6d7cf --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/ReadColumnMapIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class ReadColumnMapIndexCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: readColumnMapIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisReadColumnMapIndex(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - readColumnMapIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/ReadMetaDataCest.php b/tests/integration/Mvc/Model/MetaData/Redis/ReadMetaDataCest.php new file mode 100644 index 00000000000..95b8458b26f --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/ReadMetaDataCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class ReadMetaDataCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: readMetaData() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisReadMetaData(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - readMetaData()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/ReadMetaDataIndexCest.php b/tests/integration/Mvc/Model/MetaData/Redis/ReadMetaDataIndexCest.php new file mode 100644 index 00000000000..fca84215c3a --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/ReadMetaDataIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class ReadMetaDataIndexCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: readMetaDataIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisReadMetaDataIndex(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - readMetaDataIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/ResetCest.php b/tests/integration/Mvc/Model/MetaData/Redis/ResetCest.php new file mode 100644 index 00000000000..2754ed0e700 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/ResetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class ResetCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: reset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisReset(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - reset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/SetAutomaticCreateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Redis/SetAutomaticCreateAttributesCest.php new file mode 100644 index 00000000000..af9696819ce --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/SetAutomaticCreateAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class SetAutomaticCreateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: setAutomaticCreateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisSetAutomaticCreateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - setAutomaticCreateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/SetAutomaticUpdateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Redis/SetAutomaticUpdateAttributesCest.php new file mode 100644 index 00000000000..0c638c5d3de --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/SetAutomaticUpdateAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class SetAutomaticUpdateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: setAutomaticUpdateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisSetAutomaticUpdateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - setAutomaticUpdateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/SetDICest.php b/tests/integration/Mvc/Model/MetaData/Redis/SetDICest.php new file mode 100644 index 00000000000..1bce2e1ed15 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: setDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisSetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/SetEmptyStringAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Redis/SetEmptyStringAttributesCest.php new file mode 100644 index 00000000000..2cf44e31acd --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/SetEmptyStringAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class SetEmptyStringAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: setEmptyStringAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisSetEmptyStringAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - setEmptyStringAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/SetStrategyCest.php b/tests/integration/Mvc/Model/MetaData/Redis/SetStrategyCest.php new file mode 100644 index 00000000000..15aaf327908 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/SetStrategyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class SetStrategyCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: setStrategy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisSetStrategy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - setStrategy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/WriteCest.php b/tests/integration/Mvc/Model/MetaData/Redis/WriteCest.php new file mode 100644 index 00000000000..8f740b4cdce --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/WriteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class WriteCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: write() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisWrite(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - write()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Redis/WriteMetaDataIndexCest.php b/tests/integration/Mvc/Model/MetaData/Redis/WriteMetaDataIndexCest.php new file mode 100644 index 00000000000..006d6f55fe7 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Redis/WriteMetaDataIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; + +use IntegrationTester; + +class WriteMetaDataIndexCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Redis :: writeMetaDataIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataRedisWriteMetaDataIndex(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Redis - writeMetaDataIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/RedisCest.php b/tests/integration/Mvc/Model/MetaData/RedisCest.php new file mode 100644 index 00000000000..747fc886036 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/RedisCest.php @@ -0,0 +1,73 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use Phalcon\Mvc\Model\Metadata\Redis; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Test\Models\Robots; +use IntegrationTester; + +class RedisCest +{ + use DiTrait; + + private $data; + + public function _before(IntegrationTester $I) + { + $I->checkExtensionIsLoaded('redis'); + $this->setNewFactoryDefault(); + $this->setDiMysql(); + $this->container->setShared( + 'modelsMetadata', + function () { + return new Redis( + [ + 'host' => env('DATA_REDIS_HOST', '127.0.0.1'), + 'port' => env('DATA_REDIS_PORT', 6379), + 'index' => env('DATA_REDIS_NAME', 0), + ] + ); + } + ); + + $this->data = require dataFolder('fixtures/metadata/robots.php'); + } + + public function redis(IntegrationTester $I) + { + $I->wantTo('fetch metadata from redis database'); + + /** @var \Phalcon\Mvc\Model\MetaDataInterface $md */ + $md = $this->container->getShared('modelsMetadata'); + + $md->reset(); + $I->assertTrue($md->isEmpty()); + + Robots::findFirst(); + + $I->assertEquals( + $this->data['meta-robots-robots'], + $md->read("meta-phalcon\\test\\models\\robots-robots") + ); + + $I->assertEquals( + $this->data['map-robots'], + $md->read("map-phalcon\\test\\models\\robots") + ); + + $I->assertFalse($md->isEmpty()); + + $md->reset(); + $I->assertTrue($md->isEmpty()); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/ResetCest.php b/tests/integration/Mvc/Model/MetaData/ResetCest.php new file mode 100644 index 00000000000..1a5a7f9e92d --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/ResetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class ResetCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: reset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataReset(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - reset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/ConstructCest.php b/tests/integration/Mvc/Model/MetaData/Session/ConstructCest.php new file mode 100644 index 00000000000..b4b3fd68206 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/GetAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Session/GetAttributesCest.php new file mode 100644 index 00000000000..767d8cf018e --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: getAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionGetAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/GetAutomaticCreateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Session/GetAutomaticCreateAttributesCest.php new file mode 100644 index 00000000000..d8eca8e3882 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/GetAutomaticCreateAttributesCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class GetAutomaticCreateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: + * getAutomaticCreateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionGetAutomaticCreateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - getAutomaticCreateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/GetAutomaticUpdateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Session/GetAutomaticUpdateAttributesCest.php new file mode 100644 index 00000000000..e51a6c6f12f --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/GetAutomaticUpdateAttributesCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class GetAutomaticUpdateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: + * getAutomaticUpdateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionGetAutomaticUpdateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - getAutomaticUpdateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/GetBindTypesCest.php b/tests/integration/Mvc/Model/MetaData/Session/GetBindTypesCest.php new file mode 100644 index 00000000000..49384b30055 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/GetBindTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class GetBindTypesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: getBindTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionGetBindTypes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - getBindTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/GetColumnMapCest.php b/tests/integration/Mvc/Model/MetaData/Session/GetColumnMapCest.php new file mode 100644 index 00000000000..7f32fc23b46 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/GetColumnMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class GetColumnMapCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: getColumnMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionGetColumnMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - getColumnMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/GetDICest.php b/tests/integration/Mvc/Model/MetaData/Session/GetDICest.php new file mode 100644 index 00000000000..6d416b4f819 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: getDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionGetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/GetDataTypesCest.php b/tests/integration/Mvc/Model/MetaData/Session/GetDataTypesCest.php new file mode 100644 index 00000000000..4f596843970 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/GetDataTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class GetDataTypesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: getDataTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionGetDataTypes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - getDataTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/GetDataTypesNumericCest.php b/tests/integration/Mvc/Model/MetaData/Session/GetDataTypesNumericCest.php new file mode 100644 index 00000000000..14f65e35bec --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/GetDataTypesNumericCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class GetDataTypesNumericCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: getDataTypesNumeric() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionGetDataTypesNumeric(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - getDataTypesNumeric()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/GetDefaultValuesCest.php b/tests/integration/Mvc/Model/MetaData/Session/GetDefaultValuesCest.php new file mode 100644 index 00000000000..7fc4a55053d --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/GetDefaultValuesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class GetDefaultValuesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: getDefaultValues() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionGetDefaultValues(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - getDefaultValues()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/GetEmptyStringAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Session/GetEmptyStringAttributesCest.php new file mode 100644 index 00000000000..c31c367342d --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/GetEmptyStringAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class GetEmptyStringAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: getEmptyStringAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionGetEmptyStringAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - getEmptyStringAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/GetIdentityFieldCest.php b/tests/integration/Mvc/Model/MetaData/Session/GetIdentityFieldCest.php new file mode 100644 index 00000000000..1e9cb988696 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/GetIdentityFieldCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class GetIdentityFieldCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: getIdentityField() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionGetIdentityField(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - getIdentityField()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/GetNonPrimaryKeyAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Session/GetNonPrimaryKeyAttributesCest.php new file mode 100644 index 00000000000..6f8b5a65569 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/GetNonPrimaryKeyAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class GetNonPrimaryKeyAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: getNonPrimaryKeyAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionGetNonPrimaryKeyAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - getNonPrimaryKeyAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/GetNotNullAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Session/GetNotNullAttributesCest.php new file mode 100644 index 00000000000..24f4467de11 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/GetNotNullAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class GetNotNullAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: getNotNullAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionGetNotNullAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - getNotNullAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/GetPrimaryKeyAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Session/GetPrimaryKeyAttributesCest.php new file mode 100644 index 00000000000..db105df1abb --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/GetPrimaryKeyAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class GetPrimaryKeyAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: getPrimaryKeyAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionGetPrimaryKeyAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - getPrimaryKeyAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/GetReverseColumnMapCest.php b/tests/integration/Mvc/Model/MetaData/Session/GetReverseColumnMapCest.php new file mode 100644 index 00000000000..4d0a45aeba9 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/GetReverseColumnMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class GetReverseColumnMapCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: getReverseColumnMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionGetReverseColumnMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - getReverseColumnMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/GetStrategyCest.php b/tests/integration/Mvc/Model/MetaData/Session/GetStrategyCest.php new file mode 100644 index 00000000000..d48a04e1869 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/GetStrategyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class GetStrategyCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: getStrategy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionGetStrategy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - getStrategy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/HasAttributeCest.php b/tests/integration/Mvc/Model/MetaData/Session/HasAttributeCest.php new file mode 100644 index 00000000000..3992ca4f80c --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/HasAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class HasAttributeCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: hasAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionHasAttribute(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - hasAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/IsEmptyCest.php b/tests/integration/Mvc/Model/MetaData/Session/IsEmptyCest.php new file mode 100644 index 00000000000..fafdada547f --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/IsEmptyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class IsEmptyCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: isEmpty() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionIsEmpty(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - isEmpty()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/ReadCest.php b/tests/integration/Mvc/Model/MetaData/Session/ReadCest.php new file mode 100644 index 00000000000..95dd62cb0b1 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/ReadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class ReadCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: read() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionRead(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - read()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/ReadColumnMapCest.php b/tests/integration/Mvc/Model/MetaData/Session/ReadColumnMapCest.php new file mode 100644 index 00000000000..12539326c70 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/ReadColumnMapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class ReadColumnMapCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: readColumnMap() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionReadColumnMap(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - readColumnMap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/ReadColumnMapIndexCest.php b/tests/integration/Mvc/Model/MetaData/Session/ReadColumnMapIndexCest.php new file mode 100644 index 00000000000..793df65fbb2 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/ReadColumnMapIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class ReadColumnMapIndexCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: readColumnMapIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionReadColumnMapIndex(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - readColumnMapIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/ReadMetaDataCest.php b/tests/integration/Mvc/Model/MetaData/Session/ReadMetaDataCest.php new file mode 100644 index 00000000000..e769b10032a --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/ReadMetaDataCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class ReadMetaDataCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: readMetaData() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionReadMetaData(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - readMetaData()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/ReadMetaDataIndexCest.php b/tests/integration/Mvc/Model/MetaData/Session/ReadMetaDataIndexCest.php new file mode 100644 index 00000000000..767ba51c5b2 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/ReadMetaDataIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class ReadMetaDataIndexCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: readMetaDataIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionReadMetaDataIndex(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - readMetaDataIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/ResetCest.php b/tests/integration/Mvc/Model/MetaData/Session/ResetCest.php new file mode 100644 index 00000000000..b0952c1bf01 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/ResetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class ResetCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: reset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionReset(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - reset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/SetAutomaticCreateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Session/SetAutomaticCreateAttributesCest.php new file mode 100644 index 00000000000..8918359b57c --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/SetAutomaticCreateAttributesCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class SetAutomaticCreateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: + * setAutomaticCreateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionSetAutomaticCreateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - setAutomaticCreateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/SetAutomaticUpdateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Session/SetAutomaticUpdateAttributesCest.php new file mode 100644 index 00000000000..256d5578c28 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/SetAutomaticUpdateAttributesCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class SetAutomaticUpdateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: + * setAutomaticUpdateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionSetAutomaticUpdateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - setAutomaticUpdateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/SetDICest.php b/tests/integration/Mvc/Model/MetaData/Session/SetDICest.php new file mode 100644 index 00000000000..72667ccb800 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: setDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionSetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/SetEmptyStringAttributesCest.php b/tests/integration/Mvc/Model/MetaData/Session/SetEmptyStringAttributesCest.php new file mode 100644 index 00000000000..5dd72f9c792 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/SetEmptyStringAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class SetEmptyStringAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: setEmptyStringAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionSetEmptyStringAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - setEmptyStringAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/SetStrategyCest.php b/tests/integration/Mvc/Model/MetaData/Session/SetStrategyCest.php new file mode 100644 index 00000000000..29729760074 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/SetStrategyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class SetStrategyCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: setStrategy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionSetStrategy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - setStrategy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/WriteCest.php b/tests/integration/Mvc/Model/MetaData/Session/WriteCest.php new file mode 100644 index 00000000000..c0c86a47251 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/WriteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class WriteCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: write() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionWrite(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - write()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Session/WriteMetaDataIndexCest.php b/tests/integration/Mvc/Model/MetaData/Session/WriteMetaDataIndexCest.php new file mode 100644 index 00000000000..1635b42603c --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Session/WriteMetaDataIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Session; + +use IntegrationTester; + +class WriteMetaDataIndexCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Session :: writeMetaDataIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSessionWriteMetaDataIndex(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Session - writeMetaDataIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/SetAutomaticCreateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/SetAutomaticCreateAttributesCest.php new file mode 100644 index 00000000000..8decbba5695 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/SetAutomaticCreateAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class SetAutomaticCreateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: setAutomaticCreateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSetAutomaticCreateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - setAutomaticCreateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/SetAutomaticUpdateAttributesCest.php b/tests/integration/Mvc/Model/MetaData/SetAutomaticUpdateAttributesCest.php new file mode 100644 index 00000000000..121adc4b4d2 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/SetAutomaticUpdateAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class SetAutomaticUpdateAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: setAutomaticUpdateAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSetAutomaticUpdateAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - setAutomaticUpdateAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/SetDICest.php b/tests/integration/Mvc/Model/MetaData/SetDICest.php new file mode 100644 index 00000000000..9dd6feb8822 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: setDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/SetEmptyStringAttributesCest.php b/tests/integration/Mvc/Model/MetaData/SetEmptyStringAttributesCest.php new file mode 100644 index 00000000000..81c28416182 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/SetEmptyStringAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class SetEmptyStringAttributesCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: setEmptyStringAttributes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSetEmptyStringAttributes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - setEmptyStringAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/SetStrategyCest.php b/tests/integration/Mvc/Model/MetaData/SetStrategyCest.php new file mode 100644 index 00000000000..e4c41bfc324 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/SetStrategyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class SetStrategyCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: setStrategy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataSetStrategy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - setStrategy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Strategy/Annotations/GetColumnMapsCest.php b/tests/integration/Mvc/Model/MetaData/Strategy/Annotations/GetColumnMapsCest.php new file mode 100644 index 00000000000..ea9e93c5878 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Strategy/Annotations/GetColumnMapsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Strategy\Annotations; + +use IntegrationTester; + +class GetColumnMapsCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Strategy\Annotations :: getColumnMaps() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataStrategyAnnotationsGetColumnMaps(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Strategy\Annotations - getColumnMaps()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Strategy/Annotations/GetMetaDataCest.php b/tests/integration/Mvc/Model/MetaData/Strategy/Annotations/GetMetaDataCest.php new file mode 100644 index 00000000000..4147579451b --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Strategy/Annotations/GetMetaDataCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Strategy\Annotations; + +use IntegrationTester; + +class GetMetaDataCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Strategy\Annotations :: getMetaData() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataStrategyAnnotationsGetMetaData(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Strategy\Annotations - getMetaData()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Strategy/AnnotationsCest.php b/tests/integration/Mvc/Model/MetaData/Strategy/AnnotationsCest.php new file mode 100644 index 00000000000..a4f3ecec0bf --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Strategy/AnnotationsCest.php @@ -0,0 +1,201 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Strategy; + +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Mvc\Model\MetaData\Memory; +use Phalcon\Mvc\Model\MetaData\Strategy\Annotations; +use Phalcon\Test\Models\Annotations\Robot; +use Phalcon\Db\Column; +use IntegrationTester; + +class AnnotationsCest +{ + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + + $metaData = new Memory(); + $metaData->setDI($this->container); + $metaData->setStrategy(new Annotations()); + + $this->container->setShared('modelsMetadata', $metaData); + } + + /** + * @author michanismus + * @since 2017-04-06 + */ + public function testModelMetaDataAnnotations(IntegrationTester $I) + { + $model = new Robot(); + $metaData = $this->container->getShared('modelsMetadata'); + + $expected = [ + 'id' => 'id', + 'name' => 'name', + 'type' => 'type', + 'year' => 'year', + 'deleted' => 'deleted', + 'text' => 'description', + 'float' => 'float', + 'double' => 'double', + 'decimal' => 'decimal', + 'activated' => 'activated', + 'birthday' => 'birthday', + 'timestamp' => 'timestamp', + 'code' => 'code', + 'json' => 'json', + 'tinyblob' => 'tinyblob', + 'blob' => 'blob', + 'mediumblob' => 'mediumblob', + 'longblob' => 'longblob' + ]; + $actual = $metaData->getColumnMap($model); + $I->assertEquals($expected, $actual); + + $expected = [ + 'id' => 'id', + 'name' => 'name', + 'type' => 'type', + 'year' => 'year', + 'deleted' => 'deleted', + 'description' => 'text', + 'float' => 'float', + 'double' => 'double', + 'decimal' => 'decimal', + 'activated' => 'activated', + 'birthday' => 'birthday', + 'timestamp' => 'timestamp', + 'code' => 'code', + 'json' => 'json', + 'tinyblob' => 'tinyblob', + 'blob' => 'blob', + 'mediumblob' => 'mediumblob', + 'longblob' => 'longblob' + ]; + $actual = $metaData->getReverseColumnMap($model); + $I->assertEquals($expected, $actual); + + $expected = 'id'; + $actual = $metaData->getIdentityField($model); + $I->assertEquals($expected, $actual); + + $expected = ['id']; + $actual = $metaData->getPrimaryKeyAttributes($model); + $I->assertEquals($expected, $actual); + + $expected = [ + 'name', 'type', 'year', 'deleted', 'text', 'float', 'double', + 'decimal', 'activated', 'birthday', 'timestamp', 'code', + 'json', 'tinyblob', 'blob', 'mediumblob', 'longblob' + ]; + $actual = $metaData->getNonPrimaryKeyAttributes($model); + $I->assertEquals($expected, $actual); + + $expected = [ + 'id', 'name', 'type', 'year', 'text', 'float', 'double', + 'decimal', 'activated', 'birthday', 'timestamp', 'code' + ]; + $actual = $metaData->getNotNullAttributes($model); + $I->assertEquals($expected, $actual); + + $expected = [ + 'id' => Column::TYPE_BIGINTEGER, + 'name' => Column::TYPE_VARCHAR, + 'type' => Column::TYPE_VARCHAR, + 'year' => Column::TYPE_INTEGER, + 'deleted' => Column::TYPE_DATETIME, + 'text' => Column::TYPE_TEXT, + 'float' => Column::TYPE_FLOAT, + 'double' => Column::TYPE_DOUBLE, + 'decimal' => Column::TYPE_DECIMAL, + 'activated' => Column::TYPE_BOOLEAN, + 'birthday' => Column::TYPE_DATE, + 'timestamp' => Column::TYPE_TIMESTAMP, + 'code' => Column::TYPE_CHAR, + 'json' => Column::TYPE_JSON, + 'tinyblob' => Column::TYPE_TINYBLOB, + 'blob' => Column::TYPE_BLOB, + 'mediumblob' => Column::TYPE_MEDIUMBLOB, + 'longblob' => Column::TYPE_LONGBLOB + ]; + $actual = $metaData->getDataTypes($model); + $I->assertEquals($expected, $actual); + + $expected = [ + 'id' => true, + 'year' => true, + 'float' => true, + 'double' => true, + 'decimal' => true + ]; + $actual = $metaData->getDataTypesNumeric($model); + $I->assertEquals($expected, $actual); + + $expected = [ + 'id' => Column::BIND_PARAM_INT, + 'name' => Column::BIND_PARAM_STR, + 'type' => Column::BIND_PARAM_STR, + 'year' => Column::BIND_PARAM_INT, + 'deleted' => Column::BIND_PARAM_STR, + 'text' => Column::BIND_PARAM_STR, + 'float' => Column::BIND_PARAM_DECIMAL, + 'double' => Column::BIND_PARAM_DECIMAL, + 'decimal' => Column::BIND_PARAM_DECIMAL, + 'activated' => Column::BIND_PARAM_BOOL, + 'birthday' => Column::BIND_PARAM_STR, + 'timestamp' => Column::BIND_PARAM_STR, + 'code' => Column::BIND_PARAM_STR, + 'json' => Column::BIND_PARAM_STR, + 'tinyblob' => Column::BIND_PARAM_BLOB, + 'blob' => Column::BIND_PARAM_BLOB, + 'mediumblob' => Column::BIND_PARAM_BLOB, + 'longblob' => Column::BIND_PARAM_BLOB + ]; + $actual = $metaData->getBindTypes($model); + $I->assertEquals($expected, $actual); + + $expected = [ + 'deleted' + ]; + $actual = $metaData->getAutomaticCreateAttributes($model); + $I->assertEquals($expected, $actual); + + $expected = [ + 'float', 'longblob' + ]; + $actual = $metaData->getAutomaticUpdateAttributes($model); + $I->assertEquals($expected, $actual); + + $expected = [ + 'name', 'text' + ]; + $actual = $metaData->getEmptyStringAttributes($model); + $I->assertEquals($expected, $actual); + + $expected = [ + 'type' => 'mechanical', + 'year' => '1900', + 'deleted' => null, + 'json' => null, + 'tinyblob' => null, + 'blob' => null, + 'mediumblob' => null, + 'longblob' => null + ]; + $actual = $metaData->getDefaultValues($model); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Strategy/Introspection/GetColumnMapsCest.php b/tests/integration/Mvc/Model/MetaData/Strategy/Introspection/GetColumnMapsCest.php new file mode 100644 index 00000000000..ef25a6cbaee --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Strategy/Introspection/GetColumnMapsCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Strategy\Introspection; + +use IntegrationTester; + +class GetColumnMapsCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Strategy\Introspection :: + * getColumnMaps() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataStrategyIntrospectionGetColumnMaps(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Strategy\Introspection - getColumnMaps()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/Strategy/Introspection/GetMetaDataCest.php b/tests/integration/Mvc/Model/MetaData/Strategy/Introspection/GetMetaDataCest.php new file mode 100644 index 00000000000..d1fddb7ac58 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/Strategy/Introspection/GetMetaDataCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Strategy\Introspection; + +use IntegrationTester; + +class GetMetaDataCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData\Strategy\Introspection :: getMetaData() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataStrategyIntrospectionGetMetaData(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData\Strategy\Introspection - getMetaData()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/WriteCest.php b/tests/integration/Mvc/Model/MetaData/WriteCest.php new file mode 100644 index 00000000000..cc53ce3be4c --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/WriteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class WriteCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: write() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataWrite(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - write()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MetaData/WriteMetaDataIndexCest.php b/tests/integration/Mvc/Model/MetaData/WriteMetaDataIndexCest.php new file mode 100644 index 00000000000..340c6b39ae4 --- /dev/null +++ b/tests/integration/Mvc/Model/MetaData/WriteMetaDataIndexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\MetaData; + +use IntegrationTester; + +class WriteMetaDataIndexCest +{ + /** + * Tests Phalcon\Mvc\Model\MetaData :: writeMetaDataIndex() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMetadataWriteMetaDataIndex(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\MetaData - writeMetaDataIndex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/MinimumCest.php b/tests/integration/Mvc/Model/MinimumCest.php new file mode 100644 index 00000000000..6cbddf62c23 --- /dev/null +++ b/tests/integration/Mvc/Model/MinimumCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class MinimumCest +{ + /** + * Tests Phalcon\Mvc\Model :: minimum() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelMinimum(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - minimum()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/ModelsCalculationsCest.php b/tests/integration/Mvc/Model/ModelsCalculationsCest.php new file mode 100644 index 00000000000..8d5d7cf7f3d --- /dev/null +++ b/tests/integration/Mvc/Model/ModelsCalculationsCest.php @@ -0,0 +1,296 @@ +setNewFactoryDefault(); + } + + public function testCalculationsMysql(IntegrationTester $I) + { + $this->setDiMysql(); + $this->executeTestsNormal($I); + $this->executeTestsRenamed($I); + } + + protected function executeTestsNormal( + IntegrationTester $I, + $total_rows = 2180, + $estado_rows = 2178, + $cupo_sum = 995066020.00, + $a_sum = 994499000.00, + $cupo_average = 456452.30, + $a_average = 456611.11 + ) { + + //Count calculations + $rowcount = Personnes::count(); + $I->assertEquals($rowcount, $total_rows); + + $rowcount = Personnes::count(['distinct' => 'estado']); + $I->assertEquals($rowcount, 2); + + $rowcount = Personnes::count("estado='A'"); + $I->assertEquals($rowcount, $estado_rows); + + $group = Personnes::count(["group" => "estado"]); + $I->assertCount(2, $group); + + $group = Personnes::count(["group" => "estado", "order" => "estado"]); + $I->assertCount(2, $group); + + $results = ['A' => $estado_rows, 'I' => 2]; + foreach ($group as $row) { + $I->assertEquals($results[$row->estado], $row->rowcount); + } + + $I->assertEquals($group[0]->rowcount, $estado_rows); + $I->assertEquals($group[1]->rowcount, 2); + + $group = Personnes::count(["group" => "estado"]); + $I->assertCount(2, $group); + + $group = Personnes::count(["group" => "ciudad_id"]); + $I->assertCount(285, $group); + + $group = Personnes::count(["group" => "ciudad_id", "order" => "rowcount DESC"]); + $I->assertEquals($group[0]->rowcount, 727); + + //Summatory + $total = Personnes::sum(["column" => "cupo"]); + $I->assertEquals($cupo_sum, $total); + + $total = Personnes::sum(["column" => "cupo", "conditions" => "estado='I'"]); + $I->assertEquals(567020.00, $total); + + $group = Personnes::sum(["column" => "cupo", "group" => "estado"]); + $I->assertCount(2, $group); + + $results = ['A' => $a_sum, 'I' => 567020.00]; + foreach ($group as $row) { + $I->assertEquals($results[$row->estado], $row->sumatory); + } + + $group = Personnes::sum(["column" => "cupo", "group" => "ciudad_id", "order" => "sumatory DESC"]); + $I->assertEquals($group[0]->sumatory, 358467690.00); + + //Average + $total = Personnes::average(["column" => "cupo"]); + $I->assertEquals($cupo_average, sprintf("%.2f", $total)); + + $total = Personnes::average(["column" => "cupo", "conditions" => "estado='I'"]); + $I->assertEquals(283510.00, $total); + + $group = Personnes::average(["column" => "cupo", "group" => "estado"]); + $I->assertCount(2, $group); + + $results = ['A' => $a_average, 'I' => 283510.00]; + foreach ($group as $row) { + $I->assertEquals($results[$row->estado], sprintf("%.2f", $row->average)); + } + + $group = Personnes::average(["column" => "cupo", "group" => "ciudad_id", "order" => "average DESC"]); + $I->assertEquals($group[0]->average, 996200.00); + + //Maximum + $max = Personnes::maximum(["column" => "ciudad_id"]); + $I->assertEquals($max, 302172); + + $max = Personnes::maximum(["column" => "ciudad_id", "conditions" => "estado='I'"]); + $I->assertEquals($max, 127591); + + $group = Personnes::maximum(["column" => "ciudad_id", "group" => "estado"]); + $I->assertCount(2, $group); + + $results = ['A' => 302172, 'I' => 127591]; + foreach ($group as $row) { + $I->assertEquals($results[$row->estado], $row->maximum); + } + + $group = Personnes::maximum(["column" => "ciudad_id", "group" => "estado", "order" => "maximum DESC"]); + $I->assertEquals($group[0]->maximum, 302172); + + //Minimum + $max = Personnes::minimum(["column" => "ciudad_id"]); + $I->assertEquals($max, 20404); + + $max = Personnes::minimum(["column" => "ciudad_id", "conditions" => "estado='I'"]); + $I->assertEquals($max, 127591); + + $group = Personnes::minimum(["column" => "ciudad_id", "group" => "estado"]); + $I->assertCount(2, $group); + + $results = ['A' => 20404, 'I' => 127591]; + foreach ($group as $row) { + $I->assertEquals($results[$row->estado], $row->minimum); + } + + $group = Personnes::minimum(["column" => "ciudad_id", "group" => "estado", "order" => "minimum DESC"]); + $I->assertEquals($group[0]->minimum, 127591); + + $group = Personnes::minimum(["column" => "ciudad_id", "group" => "estado", "order" => "minimum ASC"]); + $I->assertEquals($group[0]->minimum, 20404); + } + + protected function executeTestsRenamed( + IntegrationTester $I, + $total_rows = 2180, + $estado_rows = 2178, + $cupo_sum = 995066020.00, + $a_sum = 994499000.00, + $cupo_average = 456452.30, + $a_average = 456611.11 + ) { + + //Count calculations + $rowcount = Pessoas::count(); + $I->assertEquals($rowcount, $total_rows); + + $rowcount = Pessoas::count(['distinct' => 'estado']); + $I->assertEquals($rowcount, 2); + + $rowcount = Pessoas::count("estado='A'"); + $I->assertEquals($rowcount, $estado_rows); + + $group = Pessoas::count(["group" => "estado"]); + $I->assertCount(2, $group); + + $group = Pessoas::count(["group" => "estado", "order" => "estado"]); + $I->assertCount(2, $group); + + $results = ['A' => $estado_rows, 'I' => 2]; + foreach ($group as $row) { + $I->assertEquals($results[$row->estado], $row->rowcount); + } + + $I->assertEquals($group[0]->rowcount, $estado_rows); + $I->assertEquals($group[1]->rowcount, 2); + + $group = Pessoas::count(["group" => "estado"]); + $I->assertCount(2, $group); + + $group = Pessoas::count(["group" => "cidadeId"]); + $I->assertCount(285, $group); + + $group = Pessoas::count(["group" => "cidadeId", "order" => "rowcount DESC"]); + $I->assertEquals($group[0]->rowcount, 727); + + //Summatory + $total = Pessoas::sum(["column" => "credito"]); + $I->assertEquals($cupo_sum, $total); + + $total = Pessoas::sum(["column" => "credito", "conditions" => "estado='I'"]); + $I->assertEquals(567020.00, $total); + + $group = Pessoas::sum(["column" => "credito", "group" => "estado"]); + $I->assertCount(2, $group); + + $results = ['A' => $a_sum, 'I' => 567020.00]; + foreach ($group as $row) { + $I->assertEquals($results[$row->estado], $row->sumatory); + } + + $group = Pessoas::sum(["column" => "credito", "group" => "cidadeId", "order" => "sumatory DESC"]); + $I->assertEquals($group[0]->sumatory, 358467690.00); + + //Average + $total = Pessoas::average(["column" => "credito"]); + $I->assertEquals($cupo_average, sprintf("%.2f", $total)); + + $total = Pessoas::average(["column" => "credito", "conditions" => "estado='I'"]); + $I->assertEquals(283510.00, $total); + + $group = Pessoas::average(["column" => "credito", "group" => "estado"]); + $I->assertCount(2, $group); + + $results = ['A' => $a_average, 'I' => 283510.00]; + foreach ($group as $row) { + $I->assertEquals($results[$row->estado], sprintf("%.2f", $row->average)); + } + + $group = Pessoas::average(["column" => "credito", "group" => "cidadeId", "order" => "average DESC"]); + $I->assertEquals($group[0]->average, 996200.00); + + //Maximum + $max = Pessoas::maximum(["column" => "cidadeId"]); + $I->assertEquals($max, 302172); + + $max = Pessoas::maximum(["column" => "cidadeId", "conditions" => "estado='I'"]); + $I->assertEquals($max, 127591); + + $group = Pessoas::maximum(["column" => "cidadeId", "group" => "estado"]); + $I->assertCount(2, $group); + + $results = ['A' => 302172, 'I' => 127591]; + foreach ($group as $row) { + $I->assertEquals($results[$row->estado], $row->maximum); + } + + $group = Pessoas::maximum(["column" => "cidadeId", "group" => "estado", "order" => "maximum DESC"]); + $I->assertEquals($group[0]->maximum, 302172); + + //Minimum + $max = Pessoas::minimum(["column" => "cidadeId"]); + $I->assertEquals($max, 20404); + + $max = Pessoas::minimum(["column" => "cidadeId", "conditions" => "estado='I'"]); + $I->assertEquals($max, 127591); + + $group = Pessoas::minimum(["column" => "cidadeId", "group" => "estado"]); + $I->assertCount(2, $group); + + $results = ['A' => 20404, 'I' => 127591]; + foreach ($group as $row) { + $I->assertEquals($results[$row->estado], $row->minimum); + } + + $group = Pessoas::minimum(["column" => "cidadeId", "group" => "estado", "order" => "minimum DESC"]); + $I->assertEquals($group[0]->minimum, 127591); + + $group = Pessoas::minimum(["column" => "cidadeId", "group" => "estado", "order" => "minimum ASC"]); + $I->assertEquals($group[0]->minimum, 20404); + } + + public function testCalculationsSqlite(IntegrationTester $I) + { + $this->setDiSqlite(); + $this->executeTestsNormal($I); + $this->executeTestsRenamed($I); + } + + /** + * @medium + */ + public function testCalculationsPostgresql(IntegrationTester $I) + { + $this->setDiPostgresql(); + $this->executeTestsNormal( + $I, + 2196, + 2194, + 995386020.00, + 994819000.00, + 453272.32, + 453427.07 + ); + $this->executeTestsRenamed( + $I, + 2196, + 2194, + 995386020.00, + 994819000.00, + 453272.32, + 453427.07 + ); + } +} diff --git a/tests/integration/Mvc/Model/ModelsEventsCest.php b/tests/integration/Mvc/Model/ModelsEventsCest.php new file mode 100644 index 00000000000..651d26cb490 --- /dev/null +++ b/tests/integration/Mvc/Model/ModelsEventsCest.php @@ -0,0 +1,180 @@ +prepareDi($trace); + $this->setDiMysql(); + + $robot = GossipRobots::findFirst(); + $robot->trace = &$trace; + $I->assertEquals( + $trace, + [ + 'afterFetch' => [ + 'Phalcon\Test\Models\GossipRobots' => 1, + ], + ] + ); + } + + /** + * @param $trace + */ + private function prepareDI(&$trace) + { + $this->setNewFactoryDefault(); + $eventsManager = $this->newEventsManager(); + $eventsManager->attach( + 'model', + function ($event, $model) use (&$trace) { + if (!isset($trace[$event->getType()][get_class($model)])) { + $trace[$event->getType()][get_class($model)] = 1; + } else { + $trace[$event->getType()][get_class($model)]++; + } + } + ); + + $this->container->setShared('eventsManager', $eventsManager); + $this->container->setShared( + 'modelsManager', + function () use ($eventsManager) { + $modelsManager = new ModelManager(); + $modelsManager->setEventsManager($eventsManager); + + return $modelsManager; + } + ); + } + + public function testEventsCreate(IntegrationTester $I) + { + $trace = []; + $this->prepareDI($trace); + $this->setDiMysql(); + + $robot = new GossipRobots(); + $robot->name = 'Test'; + $robot->year = 2000; + $robot->type = 'Some Type'; + $robot->datetime = '1970/01/01 00:00:00'; + $robot->text = 'text'; + $robot->trace = &$trace; + $robot->save(); + + $I->assertEquals( + $trace, + [ + 'prepareSave' => [ + 'Phalcon\Test\Models\GossipRobots' => 1, + ], + 'beforeValidation' => [ + 'Phalcon\Test\Models\GossipRobots' => 2, + ], + 'beforeValidationOnCreate' => [ + 'Phalcon\Test\Models\GossipRobots' => 1, + ], + 'validation' => [ + 'Phalcon\Test\Models\GossipRobots' => 2, + ], + 'afterValidationOnCreate' => [ + 'Phalcon\Test\Models\GossipRobots' => 1, + ], + 'afterValidation' => [ + 'Phalcon\Test\Models\GossipRobots' => 2, + ], + 'beforeSave' => [ + 'Phalcon\Test\Models\GossipRobots' => 2, + ], + 'beforeCreate' => [ + 'Phalcon\Test\Models\GossipRobots' => 1, + ], + ] + ); + } + + public function testEventsUpdate(IntegrationTester $I) + { + $trace = []; + $this->prepareDI($trace); + $this->setDiMysql(); + + $robot = GossipRobots::findFirst(); + $robot->trace = &$trace; + $robot->save(); + + $I->assertEquals( + $trace, + [ + 'prepareSave' => [ + 'Phalcon\Test\Models\GossipRobots' => 1, + ], + 'beforeValidation' => [ + 'Phalcon\Test\Models\GossipRobots' => 2, + ], + 'beforeValidationOnUpdate' => [ + 'Phalcon\Test\Models\GossipRobots' => 2, + ], + 'validation' => [ + 'Phalcon\Test\Models\GossipRobots' => 2, + ], + 'afterValidationOnUpdate' => [ + 'Phalcon\Test\Models\GossipRobots' => 2, + ], + 'afterValidation' => [ + 'Phalcon\Test\Models\GossipRobots' => 2, + ], + 'beforeSave' => [ + 'Phalcon\Test\Models\GossipRobots' => 2, + ], + 'beforeUpdate' => [ + 'Phalcon\Test\Models\GossipRobots' => 2, + ], + 'afterUpdate' => [ + 'Phalcon\Test\Models\GossipRobots' => 2, + ], + 'afterSave' => [ + 'Phalcon\Test\Models\GossipRobots' => 2, + ], + 'afterFetch' => [ + 'Phalcon\Test\Models\GossipRobots' => 1, + ], + ] + ); + } + + public function testEventsDelete(IntegrationTester $I) + { + $trace = []; + $this->prepareDI($trace); + $this->setDiMysql(); + + $robot = GossipRobots::findFirst(); + $robot->trace = &$trace; + $robot->delete(); + + $I->assertEquals( + $trace, + [ + 'afterFetch' => [ + 'Phalcon\Test\Models\GossipRobots' => 1, + ], + 'beforeDelete' => [ + 'Phalcon\Test\Models\GossipRobots' => 1, + ], + ] + ); + } +} diff --git a/tests/integration/Mvc/Model/ModelsForeignKeysCest.php b/tests/integration/Mvc/Model/ModelsForeignKeysCest.php new file mode 100644 index 00000000000..65ebf5a50a5 --- /dev/null +++ b/tests/integration/Mvc/Model/ModelsForeignKeysCest.php @@ -0,0 +1,183 @@ +setNewFactoryDefault(); + } + + public function testForeignKeysMysql(IntegrationTester $I) + { + $this->setDiMysql(); + $this->executeTestsNormal($I); + $this->executeTestsRenamed($I); + } + + private function executeTestsNormal(IntegrationTester $I) + { + //Normal foreign keys + $robotsParts = new RobotsParts(); + $robotsParts->robots_id = 1; + $robotsParts->parts_id = 100; + + $I->assertFalse($robotsParts->save()); + + $messages = [ + 0 => Message::__set_state([ + '_type' => 'ConstraintViolation', + '_message' => 'Value of field "parts_id" does not exist on referenced table', + '_field' => 'parts_id', + '_code' => 0, + ]), + ]; + + $I->assertEquals($messages, $robotsParts->getMessages()); + + $robotsParts->robots_id = 100; + $robotsParts->parts_id = 1; + $I->assertFalse($robotsParts->save()); + + $messages = [ + 0 => Message::__set_state([ + '_type' => 'ConstraintViolation', + '_message' => 'The robot code does not exist', + '_field' => 'robots_id', + '_code' => 0, + ]), + ]; + + $I->assertEquals($messages, $robotsParts->getMessages()); + + //Reverse foreign keys + + $robot = Robots::findFirst(); + $I->assertNotEquals($robot, false); + + $I->assertFalse($robot->delete()); + + $messages = [ + 0 => Message::__set_state([ + '_type' => 'ConstraintViolation', + '_message' => 'Record is referenced by model Phalcon\Test\Models\RobotsParts', + '_field' => 'id', + '_code' => 0, + ]), + ]; + + $I->assertEquals($robot->getMessages(), $messages); + + $part = Parts::findFirst(); + $I->assertNotEquals($part, false); + + $I->assertFalse($part->delete()); + + $messages = [ + 0 => Message::__set_state([ + '_type' => 'ConstraintViolation', + '_message' => 'Parts cannot be deleted because is referenced by a Robot', + '_field' => 'id', + '_code' => 0, + ]), + ]; + + $I->assertEquals($part->getMessages(), $messages); + } + + private function executeTestsRenamed(IntegrationTester $I) + { + + //Normal foreign keys with column renaming + $robottersDeles = new RobottersDeles(); + $robottersDeles->robottersCode = 1; + $robottersDeles->delesCode = 100; + $I->assertFalse($robottersDeles->save()); + + $messages = [ + 0 => Message::__set_state([ + '_type' => 'ConstraintViolation', + '_message' => 'Value of field "delesCode" does not exist on referenced table', + '_field' => 'delesCode', + '_code' => 0, + ]), + ]; + + $I->assertEquals($robottersDeles->getMessages(), $messages); + + $robottersDeles->robottersCode = 100; + $robottersDeles->delesCode = 1; + $I->assertFalse($robottersDeles->save()); + + $messages = [ + 0 => Message::__set_state([ + '_type' => 'ConstraintViolation', + '_message' => 'The robotters code does not exist', + '_field' => 'robottersCode', + '_code' => 0, + ]), + ]; + + $I->assertEquals($robottersDeles->getMessages(), $messages); + + //Reverse foreign keys with renaming + $robotter = Robotters::findFirst(); + $I->assertNotEquals($robotter, false); + + $I->assertFalse($robotter->delete()); + + $messages = [ + 0 => Message::__set_state([ + '_type' => 'ConstraintViolation', + '_message' => 'Record is referenced by model Phalcon\Test\Models\RobottersDeles', + '_field' => 'code', + '_code' => 0, + ]), + ]; + + $I->assertEquals($robotter->getMessages(), $messages); + + $dele = Deles::findFirst(); + $I->assertNotEquals($dele, false); + + $I->assertFalse($dele->delete()); + + $messages = [ + 0 => Message::__set_state([ + '_type' => 'ConstraintViolation', + '_message' => 'Deles cannot be deleted because is referenced by a Robotter', + '_field' => 'code', + '_code' => 0, + ]), + ]; + + $I->assertEquals($dele->getMessages(), $messages); + } + + public function testForeignKeysPostgresql(IntegrationTester $I) + { + $this->setDiPostgresql(); + $this->executeTestsNormal($I); + $this->executeTestsRenamed($I); + } + + public function testForeignKeysSqlite(IntegrationTester $I) + { + $this->setDiSqlite(); + $this->executeTestsNormal($I); + $this->executeTestsRenamed($I); + } +} diff --git a/tests/integration/Mvc/Model/ModelsMetadataCest.php b/tests/integration/Mvc/Model/ModelsMetadataCest.php new file mode 100644 index 00000000000..1bb2a6504eb --- /dev/null +++ b/tests/integration/Mvc/Model/ModelsMetadataCest.php @@ -0,0 +1,261 @@ + [ + 0 => 'id', + 1 => 'name', + 2 => 'type', + 3 => 'year', + 4 => 'datetime', + 5 => 'deleted', + 6 => 'text', + ], + 1 => [ + 0 => 'id', + ], + 2 => [ + 0 => 'name', + 1 => 'type', + 2 => 'year', + 3 => 'datetime', + 4 => 'deleted', + 5 => 'text', + ], + 3 => [ + 0 => 'id', + 1 => 'name', + 2 => 'type', + 3 => 'year', + 4 => 'datetime', + 5 => 'text', + ], + 4 => [ + 'id' => 0, + 'name' => 2, + 'type' => 2, + 'year' => 0, + 'datetime' => 4, + 'deleted' => 4, + 'text' => 6, + ], + 5 => [ + 'id' => true, + 'year' => true, + ], + 8 => 'id', + 9 => [ + 'id' => 1, + 'name' => 2, + 'type' => 2, + 'year' => 1, + 'datetime' => 2, + 'deleted' => 2, + 'text' => 2, + ], + 10 => [], + 11 => [], + 12 => [ + 'type' => 'mechanical', + 'year' => 1900, + 'deleted' => null, + ], + 13 => [], + ]; + + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + } + + public function testMetadataMysql(IntegrationTester $I) + { + $this->setDiMysql(); + $this->executeTests($I); + } + + protected function executeTests(IntegrationTester $I) + { + $metaData = $this->container->getShared('modelsMetadata'); + + $personas = new Personas(); + $pAttributes = [ + 0 => 'cedula', + 1 => 'tipo_documento_id', + 2 => 'nombres', + 3 => 'telefono', + 4 => 'direccion', + 5 => 'email', + 6 => 'fecha_nacimiento', + 7 => 'ciudad_id', + 8 => 'creado_at', + 9 => 'cupo', + 10 => 'estado', + ]; + + $attributes = $metaData->getAttributes($personas); + $I->assertEquals($attributes, $pAttributes); + + $ppkAttributes = [ + 0 => 'cedula', + ]; + + $pkAttributes = $metaData->getPrimaryKeyAttributes($personas); + $I->assertEquals($ppkAttributes, $pkAttributes); + + $pnpkAttributes = [ + 0 => 'tipo_documento_id', + 1 => 'nombres', + 2 => 'telefono', + 3 => 'direccion', + 4 => 'email', + 5 => 'fecha_nacimiento', + 6 => 'ciudad_id', + 7 => 'creado_at', + 8 => 'cupo', + 9 => 'estado', + ]; + + $npkAttributes = $metaData->getNonPrimaryKeyAttributes($personas); + $I->assertEquals($pnpkAttributes, $npkAttributes); + + $pnnAttributes = [ + 0 => 'cedula', + 1 => 'tipo_documento_id', + 2 => 'nombres', + 3 => 'cupo', + 4 => 'estado', + ]; + + $nnAttributes = $metaData->getNotNullAttributes($personas); + $I->assertEquals($nnAttributes, $pnnAttributes); + + /** + * @todo Check this test - its weird + */ +// $dataTypes = [ +// 'cedula' => 5, +// 'tipo_documento_id' => 0, +// 'nombres' => 2, +// 'telefono' => 2, +// 'direccion' => 2, +// 'email' => 2, +// 'fecha_nacimiento' => 1, +// 'ciudad_id' => 0, +// 'creado_at' => 1, +// 'cupo' => 3, +//// 'estado' => 5, +// 'estado' => 18, +// ]; +// +// $dtAttributes = $metaData->getDataTypes($personas); +// $I->assertEquals($dataTypes, $dtAttributes); + + $pndAttributes = [ + 'tipo_documento_id' => true, + 'ciudad_id' => true, + 'cupo' => true, + ]; + $ndAttributes = $metaData->getDataTypesNumeric($personas); + $I->assertEquals($ndAttributes, $pndAttributes); + +// $bindTypes = [ +// 'cedula' => 2, +// 'tipo_documento_id' => 1, +// 'nombres' => 2, +// 'telefono' => 2, +// 'direccion' => 2, +// 'email' => 2, +// 'fecha_nacimiento' => 2, +// 'ciudad_id' => 1, +// 'creado_at' => 2, +// 'cupo' => 32, +// 'estado' => 2, +// ]; +// $btAttributes = $metaData->getBindTypes($personas); +// $I->assertEquals($bindTypes, $btAttributes); + + $defValues = [ + 'nombres' => '', + 'telefono' => null, + 'direccion' => null, + 'email' => null, + 'fecha_nacimiento' => '1970-01-01', + 'ciudad_id' => '0', + 'creado_at' => null, + ]; + $modelDefValues = $metaData->getDefaultValues($personas); + $I->assertEquals($defValues, $modelDefValues); + + $robots = new Robots(); + + //Robots + $pAttributes = [ + 0 => 'id', + 1 => 'name', + 2 => 'type', + 3 => 'year', + 4 => 'datetime', + 5 => 'deleted', + 6 => 'text', + ]; + + $attributes = $metaData->getAttributes($robots); + $I->assertEquals($attributes, $pAttributes); + + $ppkAttributes = [ + 0 => 'id', + ]; + + $pkAttributes = $metaData->getPrimaryKeyAttributes($robots); + $I->assertEquals($ppkAttributes, $pkAttributes); + + $pnpkAttributes = [ + 0 => 'name', + 1 => 'type', + 2 => 'year', + 3 => 'datetime', + 4 => 'deleted', + 5 => 'text', + ]; + + $npkAttributes = $metaData->getNonPrimaryKeyAttributes($robots); + $I->assertEquals($pnpkAttributes, $npkAttributes); + + $I->assertEquals($metaData->getIdentityField($robots), 'id'); + + $defValues = [ + 'type' => 'mechanical', + 'year' => 1900, + 'deleted' => null, + ]; + + $modelDefValues = $metaData->getDefaultValues($robots); + $I->assertEquals($defValues, $modelDefValues); + } + + public function testMetadataPostgresql(IntegrationTester $I) + { + $this->setupPostgres(); + $this->executeTests($I); + } + + public function testMetadataSqlite(IntegrationTester $I) + { + $this->setDiSqlite(); + $this->executeTests($I); + } +} diff --git a/tests/integration/Mvc/Model/ModelsMetadataStrategyCest.php b/tests/integration/Mvc/Model/ModelsMetadataStrategyCest.php new file mode 100644 index 00000000000..c0b62f0f0e4 --- /dev/null +++ b/tests/integration/Mvc/Model/ModelsMetadataStrategyCest.php @@ -0,0 +1,122 @@ + [ + 0 => 'id', + 1 => 'name', + 2 => 'type', + 3 => 'year', + 4 => 'datetime', + 5 => 'deleted', + 6 => 'text', + ], + 1 => [ + 0 => 'id', + ], + 2 => [ + 0 => 'name', + 1 => 'type', + 2 => 'year', + 3 => 'datetime', + 4 => 'deleted', + 5 => 'text', + ], + 3 => [ + 0 => 'id', + 1 => 'name', + 2 => 'type', + 3 => 'year', + 4 => 'datetime', + 5 => 'text', + ], + 4 => [ + 'id' => 0, + 'name' => 2, + 'type' => 2, + 'year' => 0, + 'datetime' => 4, + 'deleted' => 4, + 'text' => 6, + ], + 5 => [ + 'id' => true, + 'year' => true, + ], + 8 => 'id', + 9 => [ + 'id' => 1, + 'name' => 2, + 'type' => 2, + 'year' => 1, + 'datetime' => 2, + 'deleted' => 2, + 'text' => 2, + ], + 10 => [], + 11 => [], + 12 => [ + 'type' => 'mechanical', + 'year' => 1900, + 'deleted' => null, + ], + 13 => [], + ]; + + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + } + + public function testMetadataDatabaseIntrospection(IntegrationTester $I) + { + $this->setDiMysql(); + $this->container['modelsMetadata'] = function () { + $metaData = new Memory(); + $metaData->setStrategy(new Introspection()); + return $metaData; + }; + + $metaData = $this->container['modelsMetadata']; + + $robots = new Robots(); + $meta = $metaData->readMetaData($robots); + $I->assertEquals($meta, $this->meta); + + $meta = $metaData->readMetaData($robots); + $I->assertEquals($meta, $this->meta); + } + + public function testMetadataAnnotations(IntegrationTester $I) + { + $this->setDiMysql(); + $this->container['modelsMetadata'] = function () { + $metaData = new Memory(); + $metaData->setStrategy(new Annotations()); + return $metaData; + }; + + $metaData = $this->container['modelsMetadata']; + + $robots = new BoutiqueRobots(); + + $meta = $metaData->readMetaData($robots); + $I->assertEquals($meta, $this->meta); + + $meta = $metaData->readMetaData($robots); + $I->assertEquals($meta, $this->meta); + } +} diff --git a/tests/integration/Mvc/Model/ModelsQueryExecuteCest.php b/tests/integration/Mvc/Model/ModelsQueryExecuteCest.php new file mode 100644 index 00000000000..bc7e170fbbc --- /dev/null +++ b/tests/integration/Mvc/Model/ModelsQueryExecuteCest.php @@ -0,0 +1,946 @@ +setNewFactoryDefault(); + } + + public function testExecuteMysql(IntegrationTester $I) + { + $this->setDiMysql(); + + $this->testSelectExecute($I); + $this->testSelectRenamedExecute($I); + $this->testInsertExecute($I); + $this->testInsertRenamedExecute($I); + $this->testUpdateExecute($I); + $this->testUpdateRenamedExecute($I); + $this->testDeleteExecute($I); + $this->testDeleteRenamedExecute($I); + } + + private function testSelectExecute(IntegrationTester $I) + { + $I->skipTest('TODO - Check the numbers on this test'); + $manager = $this->container->getShared('modelsManager'); + + $robots = $manager->executeQuery('SELECT * FROM Phalcon\Test\Models\Robots'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robots); + $I->assertCount(3, $robots); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $robots[0]); + + $robots = $manager->executeQuery('SELECT * FROM Phalcon\Test\Models\Robots ORDER BY 1'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robots); + $I->assertCount(3, $robots); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $robots[0]); + $I->assertEquals($robots[0]->id, 1); + + $robots = $manager->executeQuery('SELECT * FROM Phalcon\Test\Models\Robots ORDER BY id'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robots); + $I->assertCount(3, $robots); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $robots[0]); + $I->assertEquals($robots[0]->id, 1); + + $robots = $manager->executeQuery('SELECT * FROM Phalcon\Test\Models\Robots ORDER BY Phalcon\Test\Models\Robots.id'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robots); + $I->assertCount(3, $robots); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $robots[0]); + $I->assertEquals($robots[0]->id, 1); + + $robots = $manager->executeQuery('SELECT Phalcon\Test\Models\Robots.* FROM Phalcon\Test\Models\Robots'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robots); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $robots[0]); + $I->assertCount(3, $robots); + + $robots = $manager->executeQuery('SELECT r.* FROM Phalcon\Test\Models\Robots r'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robots); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $robots[0]); + $I->assertCount(3, $robots); + + $robots = $manager->executeQuery('SELECT * FROM Phalcon\Test\Models\Robots r'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robots); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $robots[0]); + $I->assertCount(3, $robots); + + $robots = $manager->executeQuery('SELECT * FROM Phalcon\Test\Models\Robots AS r'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robots); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $robots[0]); + $I->assertCount(3, $robots); + + $robots = $manager->executeQuery('SELECT * FROM Phalcon\Test\Models\Robots AS r'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robots); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $robots[0]); + $I->assertCount(3, $robots); + + $result = $manager->executeQuery('SELECT id, name FROM Phalcon\Test\Models\Robots'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(3, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + + $result = $manager->executeQuery('SELECT Phalcon\Test\Models\Robots.name FROM Phalcon\Test\Models\Robots'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(3, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + + $result = $manager->executeQuery('SELECT LENGTH(name) AS the_length FROM Phalcon\Test\Models\Robots'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(3, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertTrue(isset($result[0]->the_length)); + $I->assertEquals($result[0]->the_length, 8); + + $result = $manager->executeQuery('SELECT LENGTH(Phalcon\Test\Models\Robots.name) AS the_length FROM Phalcon\Test\Models\Robots'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(3, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertTrue(isset($result[0]->the_length)); + $I->assertEquals($result[0]->the_length, 8); + + $result = $manager->executeQuery('SELECT Phalcon\Test\Models\Robots.id+1 AS nextId FROM Phalcon\Test\Models\Robots WHERE id = 1'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(1, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertTrue(isset($result[0]->nextId)); + $I->assertEquals($result[0]->nextId, 2); + + $result = $manager->executeQuery('SELECT Phalcon\Test\Models\Robots.id+1 AS nextId FROM Phalcon\Test\Models\Robots WHERE id = ?0', [0 => 1]); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(1, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertTrue(isset($result[0]->nextId)); + $I->assertEquals($result[0]->nextId, 2); + + $result = $manager->executeQuery('SELECT Phalcon\Test\Models\Robots.id+1 AS nextId FROM Phalcon\Test\Models\Robots WHERE id = :id:', ['id' => 1]); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(1, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertTrue(isset($result[0]->nextId)); + $I->assertEquals($result[0]->nextId, 2); + + $result = $manager->executeQuery('SELECT Phalcon\Test\Models\Robots.id+1 AS nextId FROM Phalcon\Test\Models\Robots WHERE id = "1"'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(1, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertTrue(isset($result[0]->nextId)); + $I->assertEquals($result[0]->nextId, 2); + + $result = $manager->executeQuery('SELECT r.year FROM Phalcon\Test\Models\Robots r WHERE TRIM(name) != "Robotina"'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(2, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + + $result = $manager->executeQuery('SELECT Phalcon\Test\Models\Robots.id+1 AS nextId FROM Phalcon\Test\Models\Robots ORDER BY id'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertCount(3, $result); + $I->assertTrue(isset($result[0]->nextId)); + $I->assertEquals($result[0]->nextId, 2); + + $result = $manager->executeQuery('SELECT Phalcon\Test\Models\Robots.id+1 AS nextId FROM Phalcon\Test\Models\Robots ORDER BY id LIMIT 2'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertCount(2, $result); + $I->assertTrue(isset($result[0]->nextId)); + $I->assertEquals($result[0]->nextId, 2); + + $result = $manager->executeQuery('SELECT Phalcon\Test\Models\Robots.id+1 AS nextId FROM Phalcon\Test\Models\Robots ORDER BY id DESC LIMIT 2'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertCount(2, $result); + $I->assertTrue(isset($result[0]->nextId)); + $I->assertEquals($result[0]->nextId, 4); + + $result = $manager->executeQuery('SELECT r.name FROM Phalcon\Test\Models\Robots r ORDER BY r.name DESC LIMIT 2'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(2, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertTrue(isset($result[0]->name)); + $I->assertEquals($result[0]->name, 'Terminator'); + + $result = $manager->executeQuery('SELECT name le_name FROM Phalcon\Test\Models\Robots ORDER BY name ASC LIMIT 4'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(3, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertTrue(isset($result[0]->le_name)); + $I->assertEquals($result[0]->le_name, 'Astro Boy'); + + $result = $manager->executeQuery('SELECT r.name le_name FROM Phalcon\Test\Models\Robots r ORDER BY r.name ASC LIMIT 4'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(3, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertTrue(isset($result[0]->le_name)); + $I->assertEquals($result[0]->le_name, 'Astro Boy'); + + $result = $manager->executeQuery('SELECT r.name le_name FROM Phalcon\Test\Models\Robots r ORDER BY r.name ASC LIMIT 1,2'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(2, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertTrue(isset($result[0]->le_name)); + $I->assertEquals($result[0]->le_name, 'Robotina'); + + $result = $manager->executeQuery('SELECT r.name le_name FROM Phalcon\Test\Models\Robots r ORDER BY r.name ASC LIMIT 2 OFFSET 1'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(2, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertTrue(isset($result[0]->le_name)); + $I->assertEquals($result[0]->le_name, 'Robotina'); + + $result = $manager->executeQuery('SELECT r.type, COUNT(*) number FROM Phalcon\Test\Models\Robots r GROUP BY 1 ORDER BY r.type ASC'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(2, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertEquals($result[1]->number, 2); + + $result = $manager->executeQuery('SELECT r.type, SUM(r.year-1000) age FROM Phalcon\Test\Models\Robots r GROUP BY 1 ORDER BY 2 DESC'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(2, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertEquals($result[0]->age, 1924); + + $result = $manager->executeQuery('SELECT r.type, COUNT(*) number FROM Phalcon\Test\Models\Robots r GROUP BY 1 HAVING COUNT(*) = 2'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(1, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertEquals($result[0]->number, 2); + + $result = $manager->executeQuery('SELECT r.type, COUNT(*) number FROM Phalcon\Test\Models\Robots r GROUP BY 1 HAVING COUNT(*) < 2'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertCount(1, $result); + $I->assertEquals($result[0]->number, 1); + + $result = $manager->executeQuery('SELECT r.id, r.* FROM Phalcon\Test\Models\Robots r'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Complex', $result); + /** + * @todo - check this + */ + // $I->assertNotInternalType('object', $result[0]->id); + $I->assertInternalType('object', $result[0]->r); + $I->assertCount(3, $result); + $I->assertEquals($result[0]->id, 1); + + $result = $manager->executeQuery( + 'SELECT Phalcon\Test\Models\Robots.*, Phalcon\Test\Models\RobotsParts.* FROM Phalcon\Test\Models\Robots JOIN Phalcon\Test\Models\RobotsParts ORDER BY Phalcon\Test\Models\Robots.id, Phalcon\Test\Models\RobotsParts.id' + ); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Complex', $result); + $I->assertInternalType('object', $result[0]->robots); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $result[0]->robots); + $I->assertInternalType('object', $result[0]->robotsParts); + $I->assertInstanceOf('RobotsParts', $result[0]->robotsParts); + $I->assertCount(3, $result); + $I->assertEquals($result[0]->robots->id, 1); + $I->assertEquals($result[0]->robotsParts->id, 1); + $I->assertEquals($result[1]->robots->id, 1); + $I->assertEquals($result[1]->robotsParts->id, 2); + + $result = $manager->executeQuery( + 'SELECT Phalcon\Test\Models\Robots.*, Phalcon\Test\Models\RobotsParts.* ' . + 'FROM Phalcon\Test\Models\Robots JOIN Phalcon\Test\Models\RobotsParts ' . + 'ON Phalcon\Test\Models\Robots.id = Phalcon\Test\Models\RobotsParts.robots_id ' . + 'ORDER BY Phalcon\Test\Models\Robots.id, Phalcon\Test\Models\RobotsParts.id' + ); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Complex', $result); + $I->assertInternalType('object', $result[0]->robots); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $result[0]->robots); + $I->assertInternalType('object', $result[0]->robotsParts); + $I->assertInstanceOf('RobotsParts', $result[0]->robotsParts); + $I->assertCount(3, $result); + $I->assertEquals($result[0]->robots->id, 1); + $I->assertEquals($result[0]->robotsParts->id, 1); + $I->assertEquals($result[1]->robots->id, 1); + $I->assertEquals($result[1]->robotsParts->id, 2); + + $result = $manager->executeQuery( + 'SELECT r.*, p.* FROM Phalcon\Test\Models\Robots r JOIN Phalcon\Test\Models\RobotsParts p ON r.id = p.robots_id ORDER BY r.id, p.id' + ); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Complex', $result); + $I->assertInternalType('object', $result[0]->r); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $result[0]->r); + $I->assertInternalType('object', $result[0]->p); + $I->assertInstanceOf('Phalcon\Test\Models\RobotsParts', $result[0]->p); + $I->assertCount(3, $result); + $I->assertEquals($result[0]->r->id, 1); + $I->assertEquals($result[0]->p->id, 1); + $I->assertEquals($result[1]->r->id, 1); + $I->assertEquals($result[1]->p->id, 2); + + /** Joins with namespaces */ + /** + * @todo - check this + */ +// $result = $manager->executeQuery( +// 'SELECT Phalcon\Test\Models\Some\Robots.*, Phalcon\Test\Models\Some\RobotsParts.* ' . +// 'FROM Phalcon\Test\Models\Some\Robots JOIN Phalcon\Test\Models\Some\RobotsParts ' . +// 'ON Phalcon\Test\Models\Some\Robots.id = Phalcon\Test\Models\Some\RobotsParts.robots_id ' . +// 'ORDER BY Phalcon\Test\Models\Some\Robots.id, Phalcon\Test\Models\Some\RobotsParts.id' +// ); +// $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Complex', $result); +// $I->assertInternalType('object', $result[0]->{'Phalcon\Test\Models\Some\Robots'}); +// $I->assertInstanceOf('Phalcon\Test\Models\Robots', $result[0]->{'Phalcon\Test\Models\Some\Robots'}); +// $I->assertInternalType('object', $result[0]->{'Phalcon\Test\Models\Some\RobotsParts'}); +// $I->assertInstanceOf('Phalcon\Test\Models\RobotsParts', $result[0]->{'Phalcon\Test\Models\Some\RobotsParts'}); +// $I->assertCount(3, $result); +// $I->assertEquals($result[0]->{'some\Robots'}->id, 1); +// $I->assertEquals($result[0]->{'some\RobotsParts'}->id, 1); +// $I->assertEquals($result[1]->{'some\Robots'}->id, 1); +// $I->assertEquals($result[1]->{'some\RobotsParts'}->id, 2); + + /** Joins with namespaces and aliases */ + $result = $manager->executeQuery( + 'SELECT r.*, p.* FROM Phalcon\Test\Models\Some\Robots r JOIN Phalcon\Test\Models\Some\RobotsParts p ON r.id = p.robots_id ORDER BY r.id, p.id' + ); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Complex', $result); + $I->assertInternalType('object', $result[0]->r); + $I->assertInstanceOf('Phalcon\Test\Models\Some\Robots', $result[0]->r); + $I->assertInternalType('object', $result[0]->p); + $I->assertInstanceOf('Phalcon\Test\Models\Some\RobotsParts', $result[0]->p); + $I->assertCount(3, $result); + $I->assertEquals($result[0]->r->id, 1); + $I->assertEquals($result[0]->p->id, 1); + $I->assertEquals($result[1]->r->id, 1); + $I->assertEquals($result[1]->p->id, 2); + + $result = $manager->executeQuery('SELECT id, name FROM Phalcon\Test\Models\Some\Robots'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(3, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + + $result = $manager->executeQuery('SELECT id, name FROM Phalcon\Test\Models\Some\Robots ORDER BY name DESC LIMIT 2'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(2, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + + $result = $manager->executeQuery('SELECT ALL estado FROM Phalcon\Test\Models\Personas LIMIT 2'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(2, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + + $result = $manager->executeQuery('SELECT DISTINCT estado FROM Phalcon\Test\Models\Personas'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + /** + * @todo Check this for Sqlite + */ +// $I->assertCount(2, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + + $result = $manager->executeQuery('SELECT count(DISTINCT estado) FROM Phalcon\Test\Models\Personas'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Complex', $result); + $I->assertCount(1, $result); + /** + * @todo Check this for Sqlite + */ +// $I->assertEquals(2, $result[0]->{"0"}); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + + $result = $manager->executeQuery('SELECT CASE 1 WHEN 1 THEN 2 END FROM Phalcon\Test\Models\Robots'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Complex', $result); + $I->assertEquals(2, $result[0]->{"0"}); + + $result = $manager->executeQuery('SELECT CASE 2 WHEN 1 THEN 2 WHEN 2 THEN 3 END FROM Phalcon\Test\Models\Robots'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Complex', $result); + $I->assertEquals(3, $result[0]->{"0"}); + + $result = $manager->executeQuery('SELECT CASE 2 WHEN 1 THEN 2 ELSE 3 END FROM Phalcon\Test\Models\Robots'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Complex', $result); + $I->assertEquals(3, $result[0]->{"0"}); + + // Issue 1011 + /*$result = $manager->executeQuery('SELECT r.name le_name FROM Robots r ORDER BY r.name ASC LIMIT ?1,?2', + array(1 => 1, 2 => 2), + array(1 => \Phalcon\Db\Column::BIND_PARAM_INT, 2 => \Phalcon\Db\Column::BIND_PARAM_INT + )); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(2, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertTrue(isset($result[0]->le_name)); + $I->assertEquals($result[0]->le_name, 'Robotina');*/ + } + + private function testSelectRenamedExecute(IntegrationTester $I) + { + $manager = $this->container->getShared('modelsManager'); + + $robotters = $manager->executeQuery('SELECT * FROM Phalcon\Test\Models\Robotters'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robotters); + $I->assertCount(3, $robotters); + $I->assertInstanceOf('Phalcon\Test\Models\Robotters', $robotters[0]); + + $robotters = $manager->executeQuery('SELECT * FROM Phalcon\Test\Models\Robotters ORDER BY 1'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robotters); + $I->assertCount(3, $robotters); + $I->assertInstanceOf('Phalcon\Test\Models\Robotters', $robotters[0]); + $I->assertEquals($robotters[0]->code, 1); + + $robotters = $manager->executeQuery('SELECT * FROM Phalcon\Test\Models\Robotters ORDER BY code'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robotters); + $I->assertCount(3, $robotters); + $I->assertInstanceOf('Phalcon\Test\Models\Robotters', $robotters[0]); + $I->assertEquals($robotters[0]->code, 1); + + $robotters = $manager->executeQuery('SELECT * FROM Phalcon\Test\Models\Robotters ORDER BY Phalcon\Test\Models\Robotters.code'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robotters); + $I->assertCount(3, $robotters); + $I->assertInstanceOf('Phalcon\Test\Models\Robotters', $robotters[0]); + $I->assertEquals($robotters[0]->code, 1); + + $robotters = $manager->executeQuery('SELECT Phalcon\Test\Models\Robotters.* FROM Phalcon\Test\Models\Robotters'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robotters); + $I->assertInstanceOf('Phalcon\Test\Models\Robotters', $robotters[0]); + $I->assertCount(3, $robotters); + + $robotters = $manager->executeQuery('SELECT r.* FROM Phalcon\Test\Models\Robotters r'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robotters); + $I->assertInstanceOf('Phalcon\Test\Models\Robotters', $robotters[0]); + $I->assertCount(3, $robotters); + + $robotters = $manager->executeQuery('SELECT * FROM Phalcon\Test\Models\Robotters r'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robotters); + $I->assertInstanceOf('Phalcon\Test\Models\Robotters', $robotters[0]); + $I->assertCount(3, $robotters); + + $robotters = $manager->executeQuery('SELECT * FROM Phalcon\Test\Models\Robotters AS r'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robotters); + $I->assertInstanceOf('Phalcon\Test\Models\Robotters', $robotters[0]); + $I->assertCount(3, $robotters); + + $robotters = $manager->executeQuery('SELECT * FROM Phalcon\Test\Models\Robotters AS r'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robotters); + $I->assertInstanceOf('Phalcon\Test\Models\Robotters', $robotters[0]); + $I->assertCount(3, $robotters); + + $result = $manager->executeQuery('SELECT Phalcon\Test\Models\Robotters.theName FROM Phalcon\Test\Models\Robotters'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(3, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + + $result = $manager->executeQuery('SELECT LENGTH(Phalcon\Test\Models\Robotters.theName) AS the_length FROM Phalcon\Test\Models\Robotters'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(3, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertTrue(isset($result[0]->the_length)); + $I->assertEquals($result[0]->the_length, 8); + + $result = $manager->executeQuery('SELECT Phalcon\Test\Models\Robotters.code+1 AS nextId FROM Phalcon\Test\Models\Robotters WHERE code = 1'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(1, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertTrue(isset($result[0]->nextId)); + $I->assertEquals($result[0]->nextId, 2); + + $result = $manager->executeQuery( + 'SELECT Phalcon\Test\Models\Robotters.code+1 AS nextId FROM Phalcon\Test\Models\Robotters WHERE code = ?0', + [ + 0 => 1, + ] + ); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(1, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertTrue(isset($result[0]->nextId)); + $I->assertEquals($result[0]->nextId, 2); + + $result = $manager->executeQuery( + 'SELECT Phalcon\Test\Models\Robotters.code+1 AS nextId FROM Phalcon\Test\Models\Robotters WHERE code = :code:', + [ + 'code' => 1, + ] + ); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(1, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertTrue(isset($result[0]->nextId)); + $I->assertEquals($result[0]->nextId, 2); + + $result = $manager->executeQuery('SELECT Phalcon\Test\Models\Robotters.code+1 AS nextId FROM Phalcon\Test\Models\Robotters WHERE code = "1"'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(1, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertTrue(isset($result[0]->nextId)); + $I->assertEquals($result[0]->nextId, 2); + + $result = $manager->executeQuery('SELECT r.theYear FROM Phalcon\Test\Models\Robotters r WHERE TRIM(theName) != "Robotina"'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(2, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + + $result = $manager->executeQuery('SELECT Phalcon\Test\Models\Robotters.code+1 AS nextId FROM Phalcon\Test\Models\Robotters ORDER BY code'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertCount(3, $result); + $I->assertTrue(isset($result[0]->nextId)); + $I->assertEquals($result[0]->nextId, 2); + + $result = $manager->executeQuery('SELECT Phalcon\Test\Models\Robotters.code+1 AS nextId FROM Phalcon\Test\Models\Robotters ORDER BY code LIMIT 2'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertCount(2, $result); + $I->assertTrue(isset($result[0]->nextId)); + $I->assertEquals($result[0]->nextId, 2); + + $result = $manager->executeQuery('SELECT Phalcon\Test\Models\Robotters.code+1 AS nextId FROM Phalcon\Test\Models\Robotters ORDER BY code DESC LIMIT 2'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertCount(2, $result); + $I->assertTrue(isset($result[0]->nextId)); + $I->assertEquals($result[0]->nextId, 4); + + $result = $manager->executeQuery('SELECT r.theName FROM Phalcon\Test\Models\Robotters r ORDER BY r.theName DESC LIMIT 2'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(2, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertTrue(isset($result[0]->theName)); + $I->assertEquals($result[0]->theName, 'Terminator'); + + $result = $manager->executeQuery('SELECT r.theName le_theName FROM Phalcon\Test\Models\Robotters r ORDER BY r.theName ASC LIMIT 4'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(3, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertTrue(isset($result[0]->le_theName)); + $I->assertEquals($result[0]->le_theName, 'Astro Boy'); + + $result = $manager->executeQuery( + 'SELECT r.theName le_theName FROM Phalcon\Test\Models\Robotters r ORDER BY r.theName ASC LIMIT 1,2' + ); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(2, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertTrue(isset($result[0]->le_theName)); + $I->assertEquals($result[0]->le_theName, 'Robotina'); + + $result = $manager->executeQuery( + 'SELECT r.theName le_theName FROM Phalcon\Test\Models\Robotters r ORDER BY r.theName ASC LIMIT 2 OFFSET 1' + ); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(2, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertTrue(isset($result[0]->le_theName)); + $I->assertEquals($result[0]->le_theName, 'Robotina'); + + $result = $manager->executeQuery( + 'SELECT r.theType, COUNT(*) number FROM Phalcon\Test\Models\Robotters r GROUP BY 1 ORDER BY r.theType ASC' + ); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(2, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertEquals($result[1]->number, 2); + + $result = $manager->executeQuery( + 'SELECT r.theType, SUM(r.theYear-1000) age FROM Phalcon\Test\Models\Robotters r GROUP BY 1 ORDER BY 2 DESC' + ); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(2, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertEquals($result[0]->age, 1924); + + $result = $manager->executeQuery( + 'SELECT r.theType, COUNT(*) number FROM Phalcon\Test\Models\Robotters r GROUP BY 1 HAVING COUNT(*) = 2' + ); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertCount(1, $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertEquals($result[0]->number, 2); + + $result = $manager->executeQuery( + 'SELECT r.theType, COUNT(*) number FROM Phalcon\Test\Models\Robotters r GROUP BY 1 HAVING COUNT(*) < 2' + ); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $result[0]); + $I->assertCount(1, $result); + $I->assertEquals($result[0]->number, 1); + + $result = $manager->executeQuery('SELECT r.code, r.* FROM Phalcon\Test\Models\Robotters r'); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Complex', $result); + /** + * @todo Check this + */ + // $I->assertNotInternalType('object', $result[0]->code); + /** + * @todo Check this + */ +// $I->assertInternalType('object', $result[0]->r); +// $I->assertCount(3, $result); +// $I->assertEquals($result[0]->code, 1); +// +// $result = $manager->executeQuery( +// 'SELECT Phalcon\Test\Models\Robotters.*, Phalcon\Test\Models\RobottersDeles.* ' . +// 'FROM Phalcon\Test\Models\Robotters ' . +// 'JOIN Phalcon\Test\Models\RobottersDeles ' . +// 'ORDER BY Phalcon\Test\Models\Robotters.code, Phalcon\Test\Models\RobottersDeles.code' +// ); +// $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Complex', $result); +// $I->assertInternalType('object', $result[0]->robotters); +// $I->assertInstanceOf('Phalcon\Test\Models\Robotters', $result[0]->robotters); +// $I->assertInternalType('object', $result[0]->robottersDeles); +// $I->assertInstanceOf('Phalcon\Test\Models\RobottersDeles', $result[0]->robottersDeles); +// $I->assertCount(3, $result); +// $I->assertEquals($result[0]->robotters->code, 1); +// $I->assertEquals($result[0]->robottersDeles->code, 1); +// $I->assertEquals($result[1]->robotters->code, 1); +// $I->assertEquals($result[1]->robottersDeles->code, 2); +// +// $result = $manager->executeQuery( +// 'SELECT Phalcon\Test\Models\Robotters.*, Phalcon\Test\Models\RobottersDeles.* ' . +// 'FROM Phalcon\Test\Models\Robotters ' . +// 'JOIN Phalcon\Test\Models\RobottersDeles ' . +// 'ON Phalcon\Test\Models\Robotters.code = Phalcon\Test\Models\RobottersDeles.robottersCode ' . +// 'ORDER BY Phalcon\Test\Models\Robotters.code, Phalcon\Test\Models\RobottersDeles.code' +// ); +// $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Complex', $result); +// $I->assertInternalType('object', $result[0]->robotters); +// $I->assertInstanceOf('Phalcon\Test\Models\Robotters', $result[0]->robotters); +// $I->assertInternalType('object', $result[0]->robottersDeles); +// $I->assertInstanceOf('RobottersDeles', $result[0]->robottersDeles); +// $I->assertCount(3, $result); +// $I->assertEquals($result[0]->robotters->code, 1); +// $I->assertEquals($result[0]->robottersDeles->code, 1); +// $I->assertEquals($result[1]->robotters->code, 1); +// $I->assertEquals($result[1]->robottersDeles->code, 2); + + $result = $manager->executeQuery( + 'SELECT r.*, p.* ' . + 'FROM Phalcon\Test\Models\Robotters r ' . + 'JOIN Phalcon\Test\Models\RobottersDeles p ' . + 'ON r.code = p.robottersCode ' . + 'ORDER BY r.code, p.code' + ); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Complex', $result); + $I->assertInternalType('object', $result[0]->r); + $I->assertInstanceOf('Phalcon\Test\Models\Robotters', $result[0]->r); + $I->assertInternalType('object', $result[0]->p); + $I->assertInstanceOf('Phalcon\Test\Models\RobottersDeles', $result[0]->p); + $I->assertCount(3, $result); + $I->assertEquals($result[0]->r->code, 1); + $I->assertEquals($result[0]->p->code, 1); + $I->assertEquals($result[1]->r->code, 1); + $I->assertEquals($result[1]->p->code, 2); + + $result = $manager->executeQuery( + 'SELECT r.* FROM Phalcon\Test\Models\RobotsParts rp LEFT JOIN Phalcon\Test\Models\Robots2 r ON rp.robots_id=r.id' + ); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + $I->assertInternalType('object', $result[0]); + $I->assertInstanceOf('Phalcon\Test\Models\Robots2', $result[0]); + $I->assertNotNull($result[0]->getName()); + + $result = $manager->executeQuery( + 'SELECT r.* ' . + 'FROM Phalcon\Test\Models\Robots r ' . + 'WHERE r.id NOT IN (SELECT p.id FROM Phalcon\Test\Models\Parts p WHERE r.id < p.id)' + ); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $result); + + $result = $manager->executeQuery( + 'SELECT * ' . + 'FROM Phalcon\Test\Models\Robots r ' . + 'JOIN Phalcon\Test\Models\RobotsParts rp ' . + 'WHERE rp.id IN (SELECT p.id FROM Phalcon\Test\Models\Parts p WHERE rp.parts_id = p.id)' + ); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Complex', $result); + + $result = $manager->executeQuery( + 'SELECT * ' . + 'FROM Phalcon\Test\Models\Robots r ' . + 'JOIN Phalcon\Test\Models\RobotsParts rp ' . + 'WHERE r.id IN (SELECT p.id FROM Phalcon\Test\Models\Parts p)' + ); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Complex', $result); + } + + private function testInsertExecute(IntegrationTester $I) + { + $manager = $this->container->getShared('modelsManager'); + + $this->container->getShared('db')->delete("subscriptores"); + + $status = $manager->executeQuery( + 'INSERT INTO Phalcon\Test\Models\Subscriptores VALUES (NULL, "marina@hotmail.com", "2011-01-01 09:01:01", "P")' + ); + $I->assertFalse($status->success()); + $I->assertEquals($status->getMessages(), [ + 0 => Message::__set_state([ + '_type' => null, + '_message' => 'Sorry Marina, but you are not allowed here', + '_field' => null, + '_code' => 0, + ]), + ]); + + $status = $manager->executeQuery( + 'INSERT INTO Phalcon\Test\Models\Subscriptores VALUES (NULL, "dtmail.com", "2011-01-01 09:01:01", "P")' + ); + $I->assertFalse($status->success()); + $I->assertEquals($status->getMessages(), [ + 0 => Message::__set_state([ + '_type' => 'Email', + '_message' => "Field email must be an email address", + '_field' => 'email', + '_code' => 0, + ]), + ]); + + $status = $manager->executeQuery( + 'INSERT INTO Phalcon\Test\Models\Subscriptores VALUES (NULL, "le-marina@hotmail.com", "2011-01-01 09:01:01", "P")' + ); + $I->assertTrue($status->success()); + + $status = $manager->executeQuery( + 'INSERT INTO Phalcon\Test\Models\Subscriptores VALUES (NULL, "sonny@hotmail.com", "2010-01-01 13:21:00", "P")' + ); + $I->assertTrue($status->success()); + + $status = $manager->executeQuery( + 'INSERT INTO Phalcon\Test\Models\Subscriptores (email, created_at, status) VALUES ("hideaway@hotmail.com", "2010-01-01 13:21:00", "P")' + ); + $I->assertTrue($status->success()); + + $status = $manager->executeQuery( + 'INSERT INTO Phalcon\Test\Models\Subscriptores (email, created_at, status) VALUES (:email:, :created_at:, :status:)', + [ + "email" => "yeahyeah@hotmail.com", + "created_at" => "2010-02-01 13:21:00", + "status" => "P", + ] + ); + $I->assertTrue($status->success()); + + $I->assertTrue($status->getModel()->id > 0); + } + + private function testInsertRenamedExecute(IntegrationTester $I) + { + $manager = $this->container->getShared('modelsManager'); + + $this->container->getShared('db')->delete("subscriptores"); + + /** + * This test must fail because the email is not allowed as a model business rule + */ + $status = $manager->executeQuery( + 'INSERT INTO Phalcon\Test\Models\Abonnes VALUES (NULL, "marina@hotmail.com", "2011-01-01 09:01:01", "P")' + ); + $I->assertFalse($status->success()); + $I->assertEquals($status->getMessages(), [ + 0 => Message::__set_state([ + '_type' => null, + '_message' => 'Désolé Marina, mais vous n\'êtes pas autorisé ici', + '_field' => null, + '_code' => 0, + ]), + ]); + + /** + * This test must fail because the email is invalid + */ + $status = $manager->executeQuery( + 'INSERT INTO Phalcon\Test\Models\Abonnes VALUES (NULL, "dtmail.com", "2011-01-01 09:01:01", "P")' + ); + $I->assertFalse($status->success()); + $I->assertEquals($status->getMessages(), [ + 0 => Message::__set_state([ + '_type' => 'Email', + '_message' => "Le courrier électronique est invalide", + '_field' => 'courrierElectronique', + '_code' => 0, + ]), + ]); + + /** + * This test must pass + */ + $status = $manager->executeQuery( + 'INSERT INTO Phalcon\Test\Models\Abonnes VALUES (NULL, "le-marina@hotmail.com", "2011-01-01 09:01:01", "P")' + ); + $I->assertTrue($status->success()); + + /** + * This test must pass + */ + $status = $manager->executeQuery( + 'INSERT INTO Phalcon\Test\Models\Abonnes VALUES (NULL, "sonny@hotmail.com", "2010-01-01 13:21:00", "P")' + ); + $I->assertTrue($status->success()); + + /** + * This test must pass + */ + $status = $manager->executeQuery( + 'INSERT INTO Phalcon\Test\Models\Abonnes (courrierElectronique, creeA, statut) VALUES ("hideaway@hotmail.com", "2010-01-01 13:21:00", "P")' + ); + $I->assertTrue($status->success()); + + $status = $manager->executeQuery( + 'INSERT INTO Phalcon\Test\Models\Abonnes (courrierElectronique, creeA, statut) VALUES (:courrierElectronique:, :creeA:, :statut:)', + [ + "courrierElectronique" => "yeahyeah@hotmail.com", + "creeA" => "2010-02-01 13:21:00", + "statut" => "P", + ] + ); + $I->assertTrue($status->success()); + + $I->assertTrue($status->getModel()->code > 0); + } + + private function testUpdateExecute(IntegrationTester $I) + { + $manager = $this->container->getShared('modelsManager'); + + $this->container->getShared('db')->execute( + "UPDATE personas SET ciudad_id = NULL WHERE direccion = 'COL'" + ) + ; + + $status = $manager->executeQuery( + "UPDATE Phalcon\Test\Models\People SET direccion = 'COL' WHERE ciudad_id IS NULL LIMIT 25" + ); + $I->assertTrue($status->success()); + + $status = $manager->executeQuery( + 'UPDATE Phalcon\Test\Models\People SET direccion = :direccion: WHERE ciudad_id IS NULL LIMIT 25', + [ + "direccion" => "MXN", + ] + ); + $I->assertTrue($status->success()); + + $status = $manager->executeQuery( + 'UPDATE Phalcon\Test\Models\Subscriptores SET status = :status: WHERE email = :email:', + [ + "status" => "I", + "email" => "le-marina@hotmail.com", + ] + ); + $I->assertTrue($status->success()); + + // Issue 1011 + /*$status = $manager->executeQuery( + 'UPDATE Subscriptores SET status = :status: WHERE email = :email: LIMIT :limit:', + array( + "status" => "I", + "email" => "le-marina@hotmail.com", + "limit" => 1, + ), + array('email' => \Phalcon\Db\Column::BIND_PARAM_STR, //'limit' => \Phalcon\Db\Column::BIND_PARAM_INT + ) + ); + $I->assertTrue($status->success());*/ + } + + private function testUpdateRenamedExecute(IntegrationTester $I) + { + $manager = $this->container->getShared('modelsManager'); + + $this->container->getShared('db')->execute("UPDATE personas SET ciudad_id = NULL WHERE direccion = 'COL'"); + + $status = $manager->executeQuery( + "UPDATE Phalcon\Test\Models\Personers SET adresse = 'COL' WHERE fodebyId IS NULL LIMIT 25" + ); + $I->assertTrue($status->success()); + + $status = $manager->executeQuery( + 'UPDATE Phalcon\Test\Models\Personers SET adresse = :adresse: WHERE fodebyId IS NULL LIMIT 25', + [ + "adresse" => "MXN", + ] + ); + $I->assertTrue($status->success()); + + $status = $manager->executeQuery( + 'UPDATE Phalcon\Test\Models\Abonnes SET statut = :statut: WHERE courrierElectronique = :courrierElectronique:', + [ + "statut" => "I", + "courrierElectronique" => "le-marina@hotmail.com", + ] + ); + $I->assertTrue($status->success()); + } + + private function testDeleteExecute(IntegrationTester $I) + { + $manager = $this->container->getShared('modelsManager'); + + $status = $manager->executeQuery('DELETE FROM Phalcon\Test\Models\Subscriptores WHERE email = "marina@hotmail.com"'); + $I->assertTrue($status->success()); + + $status = $manager->executeQuery( + 'DELETE FROM Phalcon\Test\Models\Subscriptores WHERE status = :status: AND email <> :email:', + [ + 'status' => "P", + 'email' => 'fuego@hotmail.com', + ] + ); + $I->assertTrue($status->success()); + + // Issue 1011 + /*$status = $manager->executeQuery( + 'DELETE FROM Subscriptores WHERE status = :status: AND email <> :email: LIMIT :limit:', + array( + "status" => "P", + "email" => "fuego@hotmail.com", + "limit" => 1, + ), + array('email' => \Phalcon\Db\Column::BIND_PARAM_STR) ///* 'limit' => \Phalcon\Db\Column::BIND_PARAM_INT + ); + $I->assertTrue($status->success());*/ + } + + private function testDeleteRenamedExecute(IntegrationTester $I) + { + $manager = $this->container->getShared('modelsManager'); + + $status = $manager->executeQuery('DELETE FROM Phalcon\Test\Models\Abonnes WHERE courrierElectronique = "marina@hotmail.com"'); + $I->assertTrue($status->success()); + + $status = $manager->executeQuery( + 'DELETE FROM Phalcon\Test\Models\Abonnes WHERE statut = :statut: AND courrierElectronique <> :courrierElectronique:', + [ + 'statut' => "P", + 'courrierElectronique' => 'fuego@hotmail.com', + ] + ); + $I->assertTrue($status->success()); + } + + public function testExecutePostgresql(IntegrationTester $I) + { + $this->setDiPostgresql(); + + $this->testSelectExecute($I); + $this->testSelectRenamedExecute($I); + $this->testInsertExecute($I); + $this->testInsertRenamedExecute($I); + $this->testUpdateExecute($I); + $this->testUpdateRenamedExecute($I); + $this->testDeleteExecute($I); + $this->testDeleteRenamedExecute($I); + } + + public function testExecuteSqlite(IntegrationTester $I) + { + /** + * @todo Check Sqlite tests - they lock up + */ +// $this->setDiSqlite(); + +// $this->testSelectExecute($I); +// $this->testSelectRenamedExecute($I); +// $this->testInsertExecute($I); +// $this->testInsertRenamedExecute($I); +// $this->testUpdateExecute($I); +// $this->testUpdateRenamedExecute($I); +// $this->testDeleteExecute($I); +// $this->testDeleteRenamedExecute($I); + } +} diff --git a/tests/integration/Mvc/Model/ModelsRelationsCest.php b/tests/integration/Mvc/Model/ModelsRelationsCest.php new file mode 100644 index 00000000000..880cf51a690 --- /dev/null +++ b/tests/integration/Mvc/Model/ModelsRelationsCest.php @@ -0,0 +1,320 @@ +setNewFactoryDefault(); + } + + public function testModelsMysql(IntegrationTester $I) + { + $this->setDiMysql(); + + $this->executeTestsNormal($I); + $this->executeTestsRenamed($I); + $this->testIssue938($I); + $this->testIssue11042($I); + } + + private function executeTestsNormal(IntegrationTester $I) + { + $I->skipTest('TODO - Check the relationships - new model classes needed'); + $robot = RelationsRobots::findFirst(); + $I->assertNotEquals($robot, false); + + $robotsParts = $robot->getRelationsRobotsParts(); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robotsParts); + $I->assertCount(3, $robotsParts); + + $parts = $robot->getRelationsParts(); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $parts); + $I->assertCount(3, $parts); + + $partsCount = $robot->countRelationsParts(); + $I->assertEquals(3, $partsCount); + + /** Passing parameters to magic methods **/ + $robotsParts = $robot->getRelationsRobotsParts("parts_id = 1"); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robotsParts); + $I->assertCount(1, $robotsParts); + + /** Passing parameters to magic methods **/ + $parts = $robot->getRelationsParts("RelationsParts.id = 1"); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $parts); + $I->assertCount(1, $parts); + + $robotsParts = $robot->getRelationsRobotsParts([ + "parts_id > :parts_id:", + "bind" => ["parts_id" => 1], + ]); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robotsParts); + $I->assertCount(2, $robotsParts); + $I->assertEquals($robotsParts->getFirst()->parts_id, 2); + + $parts = $robot->getRelationsParts([ + "RelationsParts.id > :id:", + "bind" => ["id" => 1], + ]); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $parts); + $I->assertCount(2, $parts); + $I->assertEquals($parts->getFirst()->id, 2); + + $robotsParts = $robot->getRelationsRobotsParts([ + "parts_id > :parts_id:", + "bind" => ["parts_id" => 1], + "order" => "parts_id DESC", + ]); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robotsParts); + $I->assertCount(2, $robotsParts); + $I->assertEquals($robotsParts->getFirst()->parts_id, 3); + + /** Magic counting */ + $number = $robot->countRelationsRobotsParts(); + $I->assertEquals($number, 3); + + $part = RelationsParts::findFirst(); + $I->assertNotEquals($part, false); + + $robotsParts = $part->getRelationsRobotsParts(); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robotsParts); + $I->assertCount(1, $robotsParts); + + $number = $part->countRelationsRobotsParts(); + $I->assertEquals($number, 1); + + $robotPart = RelationsRobotsParts::findFirst(); + $I->assertNotEquals($robotPart, false); + + $robot = $robotPart->getRelationsRobots(); + $I->assertInstanceOf('RelationsRobots', $robot); + + $part = $robotPart->getRelationsParts(); + $I->assertInstanceOf('RelationsParts', $part); + + /** Relations in namespaced models */ + $robot = Some\Robots::findFirst(); + $I->assertNotEquals($robot, false); + + $robotsParts = $robot->getRobotsParts(); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robotsParts); + $I->assertCount(3, $robotsParts); + + $robotsParts = $robot->getRobotsParts("parts_id = 1"); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robotsParts); + $I->assertCount(1, $robotsParts); + + $robotsParts = $robot->getRobotsParts([ + "parts_id > :parts_id:", + "bind" => ["parts_id" => 1], + "order" => "parts_id DESC", + ]); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robotsParts); + $I->assertCount(2, $robotsParts); + $I->assertEquals($robotsParts->getFirst()->parts_id, 3); + } + + private function executeTestsRenamed(IntegrationTester $I) + { + $manager = $this->container->getShared('modelsManager'); + + $success = $manager->existsBelongsTo(RobottersDeles::class, Robotters::class); + $I->assertTrue($success); + + $success = $manager->existsBelongsTo(RobottersDeles::class, Deles::class); + $I->assertTrue($success); + + $success = $manager->existsHasMany(Robotters::class, RobottersDeles::class); + $I->assertTrue($success); + + $success = $manager->existsHasMany(Deles::class, RobottersDeles::class); + $I->assertTrue($success); + + $robotter = Robotters::findFirst(); + $I->assertNotEquals($robotter, false); + + /** + * @todo Check this + */ +// $robottersDeles = $robotter->getRobottersDeles(); +// $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robottersDeles); +// $I->assertCount(3, $robottersDeles); +// +// /** Passing parameters to magic methods **/ +// $robottersDeles = $robotter->getRobottersDeles("delesCode = 1"); +// $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robottersDeles); +// $I->assertCount(1, $robottersDeles); +// +// $robottersDeles = $robotter->getRobottersDeles([ +// "delesCode > :delesCode:", +// "bind" => ["delesCode" => 1], +// ]); +// $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robottersDeles); +// $I->assertCount(2, $robottersDeles); +// $I->assertEquals($robottersDeles->getFirst()->delesCode, 2); +// +// $robottersDeles = $robotter->getRobottersDeles([ +// "delesCode > :delesCode:", +// "bind" => ["delesCode" => 1], +// "order" => "delesCode DESC", +// ]); +// $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robottersDeles); +// $I->assertCount(2, $robottersDeles); +// $I->assertEquals($robottersDeles->getFirst()->delesCode, 3); +// +// /** Magic counting */ +// $number = $robotter->countRobottersDeles(); +// $I->assertEquals($number, 3); +// +// $dele = Deles::findFirst(); +// $I->assertNotEquals($dele, false); +// +// $robottersDeles = $dele->getRobottersDeles(); +// $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robottersDeles); +// $I->assertCount(1, $robottersDeles); +// +// $number = $dele->countRobottersDeles(); +// $I->assertEquals($number, 1); +// +// $robotterDele = RobottersDeles::findFirst(); +// $I->assertNotEquals($robotterDele, false); +// +// $robotter = $robotterDele->getRobotters(); +// $I->assertInstanceOf('Robotters', $robotter); +// +// $dele = $robotterDele->getDeles(); +// $I->assertInstanceOf('Deles', $dele); +// +// /** Relations in namespaced models */ +// $robotter = Some\Robotters::findFirst(); +// $I->assertNotEquals($robotter, false); +// +// $robottersDeles = $robotter->getRobottersDeles(); +// $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robottersDeles); +// $I->assertCount(3, $robottersDeles); +// +// $robottersDeles = $robotter->getRobottersDeles("delesCode = 1"); +// $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robottersDeles); +// $I->assertCount(1, $robottersDeles); +// +// $robottersDeles = $robotter->getRobottersDeles([ +// "delesCode > :delesCode:", +// "bind" => ["delesCode" => 1], +// "order" => "delesCode DESC", +// ]); +// $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robottersDeles); +// $I->assertCount(2, $robottersDeles); +// $I->assertEquals($robottersDeles->getFirst()->delesCode, 3); + } + + private function testIssue938(IntegrationTester $I) + { + $manager = $this->container->getShared('modelsManager'); + $db = $this->container->getShared('db'); + + $I->assertTrue($db->delete('m2m_robots_parts')); + $I->assertTrue($db->delete('m2m_parts')); + $I->assertTrue($db->delete('m2m_robots')); + + /** + * @todo check this + */ +// $success = $manager->existsHasManyToMany(M2MRobots::class, M2MParts::class); +// $I->assertTrue($success); + + $robot = new M2MRobots(); + $robot->name = 'M2M'; + + $part1 = new M2MParts(); + $part1->name = 'Part 1'; + + $part2 = new M2MParts(); + $part2->name = 'Part 2'; + + $part3 = new M2MParts(); + $part3->name = 'Part 3'; + + $part4 = new M2MParts(); + $part4->name = 'Part 4'; + + $I->assertTrue($part1->save()); + $I->assertTrue($part2->save()); + + /** + * @todo Check this + */ +// $robot->m2mparts = [$part1, $part2, $part3, $part4]; +// +// $I->assertTrue($robot->save()); +// +// $parts = M2MParts::find(['order' => 'id']); +// $I->assertCount(4, $parts); +// +// $rp = M2MRobotsParts::find(['order' => 'robots_id, parts_id']); +// $I->assertCount(4, $rp); +// +// for ($i = 0; $i < count($rp); ++$i) { +// $I->assertEquals($parts[$i]->name, 'Part ' . ($i + 1)); +// $I->assertEquals($rp[$i]->parts_id, $parts[$i]->id); +// $I->assertEquals($rp[$i]->robots_id, $robot->id); +// } + } + + protected function testIssue11042(IntegrationTester $I) + { + $robot = RelationsRobots::findFirst(); + $I->assertNotEquals($robot, false); + $I->assertEquals($robot->getDirtyState(), $robot::DIRTY_STATE_PERSISTENT); + + /** + * @todo Check this + */ +// $robotsParts = $robot->getRelationsRobotsParts(); +// $I->assertEquals($robot->getDirtyState(), $robot::DIRTY_STATE_PERSISTENT); +// $I->assertInstanceOf('RelationsRobotsParts', $robotsParts->getFirst()); + + $robot = RelationsRobots::findFirst(); + $I->assertNotEquals($robot, false); + + /** + * @todo Check this + */ +// $robotsParts = $robot->relationsRobotsParts; +// $I->assertEquals($robot->getDirtyState(), $robot::DIRTY_STATE_PERSISTENT); +// $I->assertInstanceOf('RelationsRobotsParts', $robotsParts->getFirst()); + } + + public function testModelsPostgresql(IntegrationTester $I) + { + $this->setDiPostgresql(); + + $this->executeTestsNormal($I); + $this->executeTestsRenamed($I); + $this->testIssue11042($I); + } + + public function testModelsSqlite(IntegrationTester $I) + { + $this->setDiSqlite(); + + $this->executeTestsNormal($I); + $this->executeTestsRenamed($I); + $this->testIssue938($I); + $this->testIssue11042($I); + } +} diff --git a/tests/integration/Mvc/Model/ModelsRelationsMagicCest.php b/tests/integration/Mvc/Model/ModelsRelationsMagicCest.php new file mode 100644 index 00000000000..b0031ba85fc --- /dev/null +++ b/tests/integration/Mvc/Model/ModelsRelationsMagicCest.php @@ -0,0 +1,138 @@ +setNewFactoryDefault(); + } + + public function testModelsMysql(IntegrationTester $I) + { + $this->setDiMysql(); + + $this->executeQueryRelated($I); + $this->executeSaveRelatedBelongsTo($I); + } + + /*public function testModelsPostgresql() + { + + $di = $this->_getDI(); + + $di->set('db', function(){ + require 'unit-tests/config.db.php'; + return new Phalcon\Db\Adapter\Pdo\Postgresql($configPostgresql); + }, true); + + $this->_executeQueryRelated(); + $this->_executeSaveRelatedBelongsTo($connection); + } + + public function testModelsSqlite() + { + + $di = $this->_getDI(); + + $di->set('db', function(){ + require 'unit-tests/config.db.php'; + return new Phalcon\Db\Adapter\Pdo\Sqlite($configSqlite); + }, true); + + $this->_executeQueryRelated(); + $this->_executeSaveRelatedBelongsTo($connection); + }*/ + + private function executeQueryRelated(IntegrationTester $I) + { + + //Belongs to + $album = Albums::findFirst(); + $I->assertInstanceOf(Albums::class, $album); + + $artist = $album->artist; + $I->assertInstanceOf(Artists::class, $artist); + + $albums = $artist->albums; + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $albums); + $I->assertCount(2, $albums); + $I->assertInstanceOf(Albums::class, $albums[0]); + + $songs = $album->songs; + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $songs); + $I->assertCount(7, $songs); + $I->assertInstanceOf(Songs::class, $songs[0]); + + $originalAlbum = $album->artist->albums[0]; + $I->assertEquals($originalAlbum->id, $album->id); + } + + private function executeSaveRelatedBelongsTo(IntegrationTester $I) + { + $connection = $this->getService('db'); + $artist = new Artists(); + + $album = new Albums(); + $album->artist = $artist; + + /** + * @todo Check this + */ +// //Due to not null fields on both models the album/artist aren't saved +// $I->assertFalse($album->save()); +// $I->assertFalse((bool) $connection->isUnderTransaction()); +// + //The artists must no be saved + $I->assertEquals($artist->getDirtyState(), Model::DIRTY_STATE_TRANSIENT); + + /** + * @todo Check this + */ +// //The messages produced are generated by the artist model +// $messages = $album->getMessages(); +// $I->assertEquals($messages[0]->getMessage(), 'name is required'); +// $I->assertInstanceOf(Artists::class, $messages[0]->getModel()); + + //Fix the artist problem and try to save again + $artist->name = 'Van She'; + + //Due to not null fields on album model the whole + $I->assertFalse($album->save()); + $I->assertFalse((bool) $connection->isUnderTransaction()); + + //The artist model was saved correctly but album not + $I->assertEquals($artist->getDirtyState(), Model::DIRTY_STATE_PERSISTENT); + $I->assertEquals($album->getDirtyState(), Model::DIRTY_STATE_TRANSIENT); + + /** + * @todo Check this + */ +// $messages = $album->getMessages(); +// $I->assertEquals($messages[0]->getMessage(), 'name is required'); +// $I->assertNull($messages[0]->getModel()); +// + //Fix the album problem and try to save again + $album->name = 'Idea of Happiness'; + + //Saving OK + $I->assertTrue($album->save()); + $I->assertFalse((bool) $connection->isUnderTransaction()); + + //Both messages must be saved correctly + $I->assertEquals($artist->getDirtyState(), Model::DIRTY_STATE_PERSISTENT); + $I->assertEquals($album->getDirtyState(), Model::DIRTY_STATE_PERSISTENT); + } +} diff --git a/tests/integration/Mvc/Model/ModelsResultsetCacheCest.php b/tests/integration/Mvc/Model/ModelsResultsetCacheCest.php new file mode 100644 index 00000000000..5df5f58e04f --- /dev/null +++ b/tests/integration/Mvc/Model/ModelsResultsetCacheCest.php @@ -0,0 +1,236 @@ +setNewFactoryDefault(); + $I->cleanDir(cacheFolder()); + } + + public function testCacheDefaultDIMysql(IntegrationTester $I) + { + $this->setDiMysql(); + $this->testCacheDefaultDI($I); + } + + private function testCacheDefaultDI(IntegrationTester $I) + { + $I->skipTest('TODO = Check the numbers'); + $this->container->set( + 'modelsCache', + function () { + $frontCache = new Data(); + return new File( + $frontCache, + [ + 'cacheDir' => cacheFolder(), + ] + ); + }, + true + ); + + //Find + $robots = Robots::find([ + 'cache' => ['key' => 'some'], + 'order' => 'id', + ]); + $I->assertCount(3, $robots); + /** + * @todo Check the isFresh() + */ +// $I->assertTrue($robots->isFresh()); + + $robots = Robots::find([ + 'cache' => ['key' => 'some'], + 'order' => 'id', + ]); + $I->assertCount(3, $robots); + /** + * @todo Check the isFresh() + */ +// $I->assertFalse($robots->isFresh()); + + //TODO: I really can't understand why postgresql fails on inserting a simple record + //The error is "Object not in prerequisite state: 7 ERROR: + //currval of sequence "robots_id_seq" is not yet defined in this session" + //Is the ORM working with postgresql, is the database structure incorrect or + //I'm using the wrong code? + //Skip this test until someone can shed some light on this + if (!$this->container->get("db") instanceof Phalcon\Db\Adapter\Pdo\Postgresql) { + //Aggregate functions like sum, count, etc + $robotscount = Robots::count([ + 'cache' => ['key' => 'some-count'], + ]); + $I->assertEquals($robotscount, 3); + + //Create a temporary robot to test if the count is cached or fresh + $newrobot = new Robots(); + $newrobot->name = "Not cached robot"; + $newrobot->type = "notcached"; + $newrobot->year = 2014; + $newrobot->datetime = '2015-03-05 04:16:17'; + $newrobot->text = 'Not cached robot'; + $newrobot->create(); + + $robotscount = Robots::count([ + 'cache' => ['key' => 'some-count'], + ]); + $I->assertEquals($robotscount, 3); + + //Delete the temp robot + Robots::findFirst("type = 'notcached'")->delete(); + } + } + + public function testCacheDefaultDIPostgresql(IntegrationTester $I) + { + $this->setDiPostgresql(); + $this->testCacheDefaultDI($I); + } + + public function testCacheDefaultDISqlite(IntegrationTester $I) + { + $this->setDiSqlite(); + /** + * @todo Check Sqlite - tests lock up + */ +// $this->testCacheDefaultDI($I); + } + + public function testCacheDefaultDIBindingsMysql(IntegrationTester $I) + { + $this->setDiMysql(); + $this->testCacheDefaultDIBindings($I); + } + + private function testCacheDefaultDIBindings(IntegrationTester $I) + { + $this->container->set( + 'modelsCache', + function () { + $frontCache = new Data(); + return new File( + $frontCache, + [ + 'cacheDir' => cacheFolder(), + ] + ); + }, + true + ); + + $robots = Robots::find([ + 'cache' => ['key' => 'some'], + 'conditions' => 'id > :id1: and id < :id2:', + 'bind' => ['id1' => 0, 'id2' => 4], + 'order' => 'id', + ]); + $I->assertCount(3, $robots); + /** + * @todo Check isFresh() + */ +// $I->assertTrue($robots->isFresh()); + + $robots = Robots::find([ + 'cache' => ['key' => 'some'], + 'conditions' => 'id > :id1: and id < :id2:', + 'bind' => ['id1' => 0, 'id2' => 4], + 'order' => 'id', + ]); + $I->assertCount(3, $robots); + $I->assertFalse($robots->isFresh()); + } + + public function testCacheDefaultDIBindingsPostgresql(IntegrationTester $I) + { + $this->setDiPostgresql(); + $this->testCacheDefaultDIBindings($I); + } + + public function testCacheDefaultDIBindingsSqlite(IntegrationTester $I) + { + $this->setDiSqlite(); + $this->testCacheDefaultDIBindings($I); + } + + public function testCacheOtherServiceMysql(IntegrationTester $I) + { + $this->setDiMysql(); + $this->testCacheOtherService($I); + } + + private function testCacheOtherService(IntegrationTester $I) + { + $I->skipTest('TODO = Check the numbers'); + $this->container->set( + 'otherCache', + function () { + $frontCache = new Data(); + return new File( + $frontCache, + [ + 'cacheDir' => cacheFolder(), + ] + ); + }, + true + ); + + $robots = Robots::find([ + 'cache' => [ + 'key' => 'other-some', + 'lifetime' => 60, + 'service' => 'otherCache', + ], + 'order' => 'id', + ]); + $I->assertCount(3, $robots); + /** + * @todo Check isFresh() + */ +// $I->assertTrue($robots->isFresh()); + + $robots = Robots::find([ + 'cache' => [ + 'key' => 'other-some', + 'lifetime' => 60, + 'service' => 'otherCache', + ], + 'order' => 'id', + ]); + $I->assertCount(3, $robots); + $I->assertFalse($robots->isFresh()); + + $I->assertEquals($robots->getCache()->getLastKey(), 'other-some'); + + $I->assertEquals($robots->getCache()->queryKeys(), [ + 0 => 'other-some', + ]); + } + + public function testCacheOtherServicePostgresql(IntegrationTester $I) + { + $this->setDiPostgresql(); + $this->testCacheOtherService($I); + } + + public function testCacheOtherServiceSqlite(IntegrationTester $I) + { + $this->setDiSqlite(); + $this->testCacheOtherService($I); + } +} diff --git a/tests/integration/Mvc/Model/ModelsResultsetCacheStaticCest.php b/tests/integration/Mvc/Model/ModelsResultsetCacheStaticCest.php new file mode 100644 index 00000000000..bb1e43a3ae1 --- /dev/null +++ b/tests/integration/Mvc/Model/ModelsResultsetCacheStaticCest.php @@ -0,0 +1,76 @@ +setNewFactoryDefault(); + $I->cleanDir(cacheFolder()); + } + + public function testOverrideStaticCache(IntegrationTester $I) + { + $this->setDiMysql(); + + $this->container['modelsCache'] = function () { + $frontCache = new Data(); + return new File( + $frontCache, + [ + 'cacheDir' => cacheFolder(), + ] + ); + }; + + $robot = Robots::findFirst(2); + $I->assertInstanceOf(Robots::class, $robot); + + $robot = Robots::findFirst(2); + $I->assertInstanceOf(Robots::class, $robot); + + $robot = Robots::findFirst(['id = 2']); + $I->assertInstanceOf(Robots::class, $robot); + + $robot = Robots::findFirst(['id = 2']); + $I->assertInstanceOf(Robots::class, $robot); + + $robot = Robots::findFirst(['order' => 'id DESC']); + $I->assertInstanceOf(Robots::class, $robot); + + $robot = Robots::findFirst(['order' => 'id DESC']); + $I->assertInstanceOf(Robots::class, $robot); + + $robot = Robots::findFirst(1); + $I->assertInstanceOf(Robots::class, $robot); + + $robotParts = $robot->getRobotsParts(); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robotParts); + + $robotParts = $robot->getRobotsParts(); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robotParts); + + $part = $robotParts[0]->getParts(); + $I->assertInstanceOf(Parts::class, $part); + + $part = $robotParts[0]->getParts(); + $I->assertInstanceOf(Parts::class, $part); + + $robot = $robotParts[0]->getRobots(); + $I->assertInstanceOf(Robots::class, $robot); + + $robot = $robotParts[0]->getRobots(); + $I->assertInstanceOf(Robots::class, $robot); + } +} diff --git a/tests/integration/Mvc/Model/ModelsResultsetCest.php b/tests/integration/Mvc/Model/ModelsResultsetCest.php new file mode 100644 index 00000000000..adc0dcfd50b --- /dev/null +++ b/tests/integration/Mvc/Model/ModelsResultsetCest.php @@ -0,0 +1,507 @@ +setNewFactoryDefault(); + } + + public function testResultsetNormalMysql(IntegrationTester $I) + { + $this->setDiMysql(); + + $robots = Robots::find( + [ + 'order' => 'id', + ] + ); + + $this->applyTests($I, $robots); + } + + private function applyTests(IntegrationTester $I, $robots) + { + $I->skipTest('TODO - Check the counts'); + $I->assertCount(3, $robots); + $I->assertEquals($robots->count(), 3); + + //Using a foreach + $number = 0; + foreach ($robots as $robot) { + $I->assertEquals($robot->id, $number + 1); + $number++; + } + $I->assertEquals($number, 3); + + //Using a while + $number = 0; + $robots->rewind(); + while ($robots->valid()) { + $robot = $robots->current(); + $I->assertEquals($robot->id, $number + 1); + $robots->next(); + $number++; + } + $I->assertEquals($number, 3); + + $robots->seek(1); + $robots->valid(); + $robot = $robots->current(); + $I->assertEquals($robot->id, 2); + + $robot = $robots->getFirst(); + $I->assertEquals($robot->id, 1); + + $robot = $robots->getLast(); + $I->assertEquals($robot->id, 3); + + $robot = $robots[0]; + $I->assertEquals($robot->id, 1); + + $robot = $robots[2]; + $I->assertEquals($robot->id, 3); + + $I->assertFalse(isset($robots[4])); + + $filtered = $robots->filter(function ($robot) { + if ($robot->id < 3) { + return $robot; + } + }); + + $I->assertCount(2, $filtered); + $I->assertEquals($filtered[0]->id, 1); + $I->assertEquals($filtered[1]->id, 2); + } + + public function testResultsetNormalPostgresql(IntegrationTester $I) + { + $this->setupPostgres(); + + $robots = Robots::find(['order' => 'id']); + + $this->applyTests($I, $robots); + } + + public function testResultsetNormalSqlite(IntegrationTester $I) + { + $this->setDiSqlite(); + + $robots = Robots::find(['order' => 'id']); + + $this->applyTests($I, $robots); + } + + public function testResultsetBindingMysql(IntegrationTester $I) + { + $this->setDiMysql(); + + $initialId = 0; + $finalId = 4; + + $robots = Robots::find([ + 'conditions' => 'id > :id1: and id < :id2:', + 'bind' => ['id1' => $initialId, 'id2' => $finalId], + 'order' => 'id', + ]); + + $this->applyTests($I, $robots); + } + + public function testResultsetBindingPostgresql(IntegrationTester $I) + { + $this->setupPostgres(); + + $initialId = 0; + $finalId = 4; + + $robots = Robots::find([ + 'conditions' => 'id > :id1: and id < :id2:', + 'bind' => ['id1' => $initialId, 'id2' => $finalId], + 'order' => 'id', + ]); + + $this->applyTests($I, $robots); + } + + public function testResultsetBindingSqlite(IntegrationTester $I) + { + $this->setDiSqlite(); + + $initialId = 0; + $finalId = 4; + + $robots = Robots::find([ + 'conditions' => 'id > :id1: and id < :id2:', + 'bind' => ['id1' => $initialId, 'id2' => $finalId], + 'order' => 'id', + ]); + + $this->applyTests($I, $robots); + } + + public function testSerializeNormalMysql(IntegrationTester $I) + { + $this->setDiMysql(); + + $data = serialize(Robots::find(['order' => 'id'])); + $robots = unserialize($data); + + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robots); + + $this->applyTests($I, $robots); + } + + public function testSerializeNormalPostgresql(IntegrationTester $I) + { + $this->setupPostgres(); + + $data = serialize(Robots::find(['order' => 'id'])); + $robots = unserialize($data); + + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robots); + + $this->applyTests($I, $robots); + } + + public function testSerializeNormalSqlite(IntegrationTester $I) + { + $this->setDiSqlite(); + + $data = serialize(Robots::find(['order' => 'id'])); + $robots = unserialize($data); + + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robots); + + $this->applyTests($I, $robots); + } + + public function testSerializeBindingsMysql(IntegrationTester $I) + { + $this->setDiMysql(); + + $initialId = 0; + $finalId = 4; + + $data = serialize(Robots::find([ + 'conditions' => 'id > :id1: and id < :id2:', + 'bind' => ['id1' => $initialId, 'id2' => $finalId], + 'order' => 'id', + ])); + + $robots = unserialize($data); + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robots); + + $this->applyTests($I, $robots); + } + + public function testSerializeBindingsPostgresql(IntegrationTester $I) + { + $this->setupPostgres(); + + $initialId = 0; + $finalId = 4; + + $data = serialize(Robots::find([ + 'conditions' => 'id > :id1: and id < :id2:', + 'bind' => ['id1' => $initialId, 'id2' => $finalId], + 'order' => 'id', + ])); + + $robots = unserialize($data); + + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robots); + + $this->applyTests($I, $robots); + } + + public function testSerializeBindingsSqlite(IntegrationTester $I) + { + $this->setDiSqlite(); + + $initialId = 0; + $finalId = 4; + + $data = serialize(Robots::find([ + 'conditions' => 'id > :id1: and id < :id2:', + 'bind' => ['id1' => $initialId, 'id2' => $finalId], + 'order' => 'id', + ])); + + $robots = unserialize($data); + + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $robots); + + $this->applyTests($I, $robots); + } + + public function testSerializeBigMysql(IntegrationTester $I) + { + $this->setDiMysql(); + + $data = serialize(Personas::find([ + 'limit' => 33, + ])); + + $personas = unserialize($data); + + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $personas); + + $this->applyTestsBig($I, $personas); + } + + private function applyTestsBig(IntegrationTester $I, $personas) + { + $I->assertCount(33, $personas); + $I->assertEquals($personas->count(), 33); + + //Using a foreach + $number = 0; + foreach ($personas as $persona) { + $number++; + } + $I->assertEquals($number, 33); + + //Using a while + $number = 0; + $personas->rewind(); + while ($personas->valid()) { + $persona = $personas->current(); + $personas->next(); + $number++; + } + $I->assertEquals($number, 33); + + $personas->seek(1); + $personas->valid(); + $persona = $personas->current(); + $I->assertInstanceOf('Phalcon\Test\Models\Personas', $persona); + + $persona = $personas->getFirst(); + $I->assertInstanceOf('Phalcon\Test\Models\Personas', $persona); + + $persona = $personas->getLast(); + $I->assertInstanceOf('Phalcon\Test\Models\Personas', $persona); + + $persona = $personas[0]; + $I->assertInstanceOf('Phalcon\Test\Models\Personas', $persona); + + $persona = $personas[2]; + $I->assertInstanceOf('Phalcon\Test\Models\Personas', $persona); + + $I->assertFalse(isset($personas[40])); + } + + public function testSerializeBigPostgresql(IntegrationTester $I) + { + $this->setupPostgres(); + + $data = serialize(Personas::find([ + 'limit' => 33, + ])); + + $personas = unserialize($data); + + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $personas); + + $this->applyTestsBig($I, $personas); + } + + public function testSerializeBigSqlite(IntegrationTester $I) + { + $this->setDiSqlite(); + + $data = serialize(Personas::find([ + 'limit' => 33, + ])); + + $personas = unserialize($data); + + $I->assertInstanceOf('Phalcon\Mvc\Model\Resultset\Simple', $personas); + + $this->applyTestsBig($I, $personas); + } + + public function testResultsetNormalZero(IntegrationTester $I) + { + $this->setDiMysql(); + + $robots = Robots::find('id > 1000'); + + $I->assertCount(0, $robots); + $I->assertEquals($robots->count(), 0); + + //Using a foreach + $number = 0; + foreach ($robots as $robot) { + $number++; + } + $I->assertEquals($number, 0); + + //Using a while + $number = 0; + $robots->rewind(); + while ($robots->valid()) { + $robots->next(); + $number++; + } + $I->assertEquals($number, 0); + + $robots->seek(1); + $robots->valid(); + $robot = $robots->current(); + $I->assertFalse($robot); + + $robot = $robots->getFirst(); + $I->assertFalse($robot); + + $robot = $robots->getLast(); + $I->assertFalse($robot); + + /** + * @todo Check the code below + */ +// try { +// $robot = $robots[0]; +// $I->assertFalse(true); +// } catch (Exception $e) { +// $I->assertEquals($e->getMessage(), 'The index does not exist in the cursor'); +// } +// +// try { +// $robot = $robots[2]; +// $I->assertFalse(true); +// } catch (Exception $e) { +// $I->assertEquals($e->getMessage(), 'The index does not exist in the cursor'); +// } + + $I->assertFalse(isset($robots[0])); + } + + public function testResultsetAppendIterator(IntegrationTester $I) + { + $this->setDiMysql(); + + // see http://php.net/manual/en/appenditerator.construct.php + $iterator = new \AppendIterator(); + $robots_first = Robots::find(['limit' => 2]); + $robots_second = Robots::find(['limit' => 1, 'offset' => 2]); + + $robots_first_0 = $robots_first[0]; + $robots_first_1 = $robots_first[1]; + $robots_second_0 = $robots_second[0]; + + $iterator->append($robots_first); + $iterator->append($robots_second); + + $iterator->rewind(); + $I->assertTrue($iterator->valid()); + $I->assertEquals($iterator->key(), 0); + $I->assertEquals($iterator->getIteratorIndex(), 0); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $iterator->current()); + $I->assertEquals($robots_first_0->name, $iterator->current()->name); + + $iterator->next(); + $I->assertTrue($iterator->valid()); + $I->assertEquals($iterator->key(), 1); + $I->assertEquals($iterator->getIteratorIndex(), 0); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $iterator->current()); + $I->assertEquals($robots_first_1->name, $iterator->current()->name); + + $iterator->next(); + $I->assertTrue($iterator->valid()); + $I->assertEquals($iterator->key(), 0); + $I->assertEquals($iterator->getIteratorIndex(), 1); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $iterator->current()); + $I->assertEquals($robots_second_0->name, $iterator->current()->name); + + $iterator->next(); + $I->assertFalse($iterator->valid()); + } + + public function testBigResultsetIteration(IntegrationTester $I) + { + $this->setDiSqlite(); + + // Resultsets count > 25 use fetch for one row at a time + $personas = Personas::find([ + 'limit' => 33, + ]); + + $I->assertCount(33, $personas); + + $I->assertInstanceOf('Phalcon\Test\Models\Personas', $personas->getLast()); + + // take first object as reference + $persona_first = $personas[0]; + $I->assertInstanceOf('Phalcon\Test\Models\Personas', $persona_first); + + // make sure objects are the same -> object was not recreared + $I->assertSame($personas[0], $persona_first); + $I->assertSame($personas->current(), $persona_first); + $personas->rewind(); + $I->assertTrue($personas->valid()); + $I->assertSame($personas->current(), $persona_first); + + // second element + $personas->next(); + $I->assertTrue($personas->valid()); + $persona_second = $personas->current(); + $I->assertSame($persona_second, $personas[1]); + + // move to last element + $I->assertSame($personas->getLast(), $personas[32]); + + // invalid element + $personas->seek(33); + $I->assertFalse($personas->valid()); + $I->assertFalse($personas->current()); + + /** + * @todo Check the code below + */ +// try { +// $persona = $personas[33]; +// $I->assertFalse(true); +// } catch (Exception $e) { +// $I->assertEquals($e->getMessage(), 'The index does not exist in the cursor'); +// } + + // roll-back-cursor -> query needs to be reexecuted + // first object was now recreated... different instance, but equal content + $I->assertNotSame($personas[0], $persona_first); + $I->assertEquals($personas[0], $persona_first); + $persona_first = $personas[0]; + + // toArray also re-executes the query and invalidates internal pointer + $array = $personas->toArray(); + $I->assertCount(33, $array); + + // internal query is re-executed again and set to first + $I->assertNotSame($personas[0], $persona_first); + $I->assertEquals($personas[0], $persona_first); + + // move to second element and validate + $personas->next(); + $I->assertTrue($personas->valid()); + $I->assertInstanceOf('Phalcon\Test\Models\Personas', $personas[1]); + $I->assertSame($personas->current(), $personas[1]); + $I->assertEquals($persona_second, $personas[1]); + + // pick some random indices + $I->assertInstanceOf('Phalcon\Test\Models\Personas', $personas[12]); + $I->assertInstanceOf('Phalcon\Test\Models\Personas', $personas[23]); + $I->assertInstanceOf('Phalcon\Test\Models\Personas', $personas[23]); + } +} diff --git a/tests/integration/Mvc/Model/ModelsValidatorsCest.php b/tests/integration/Mvc/Model/ModelsValidatorsCest.php new file mode 100644 index 00000000000..466ae9eef38 --- /dev/null +++ b/tests/integration/Mvc/Model/ModelsValidatorsCest.php @@ -0,0 +1,174 @@ +setNewFactoryDefault(); + } + + public function testValidatorsMysql(IntegrationTester $I) + { + $this->setDiMysql(); + $this->testValidatorsRenamed($I); + } + + protected function testValidatorsRenamed(IntegrationTester $I) + { + $connection = $this->container->getShared('db'); + + $success = $connection->delete("subscriptores"); + $I->assertTrue($success); + + $createdAt = date('Y-m-d H:i:s'); + + //Save with success + $abonne = new Abonnes(); + $abonne->courrierElectronique = 'fuego@hotmail.com'; + $abonne->creeA = $createdAt; + $abonne->statut = 'P'; + $I->assertTrue($abonne->save()); + + //PresenceOf + $abonne = new Abonnes(); + $abonne->courrierElectronique = 'fuego1@hotmail.com'; + $abonne->creeA = null; + $abonne->statut = 'P'; + $I->assertFalse($abonne->save()); + + $I->assertCount(1, $abonne->getMessages()); + + $messages = $abonne->getMessages(); + $I->assertEquals($messages[0]->getType(), "PresenceOf"); + $I->assertEquals($messages[0]->getField(), "creeA"); + $I->assertEquals($messages[0]->getMessage(), "La date de création est nécessaire"); + + //Email + $abonne = new Abonnes(); + $abonne->courrierElectronique = 'fuego?='; + $abonne->creeA = $createdAt; + $abonne->statut = 'P'; + $I->assertFalse($abonne->save()); + + $I->assertCount(1, $abonne->getMessages()); + + $messages = $abonne->getMessages(); + $I->assertEquals($messages[0]->getType(), "Email"); + $I->assertEquals($messages[0]->getField(), "courrierElectronique"); + $I->assertEquals($messages[0]->getMessage(), "Le courrier électronique est invalide"); + + //ExclusionIn + $abonne->courrierElectronique = 'le_fuego@hotmail.com'; + $abonne->statut = 'X'; + $I->assertFalse($abonne->save()); + + $messages = $abonne->getMessages(); + $I->assertEquals($messages[0]->getType(), "ExclusionIn"); + $I->assertEquals($messages[0]->getField(), "statut"); + $I->assertEquals($messages[0]->getMessage(), 'L\'état ne doit être "X" ou "Z"'); + + //InclusionIn + $abonne->statut = 'A'; + $I->assertFalse($abonne->save()); + + $messages = $abonne->getMessages(); + $I->assertEquals($messages[0]->getType(), "InclusionIn"); + $I->assertEquals($messages[0]->getField(), "statut"); + $I->assertEquals($messages[0]->getMessage(), 'L\'état doit être "P", "I" ou "w"'); + + //Uniqueness validator + $abonne->courrierElectronique = 'fuego@hotmail.com'; + $abonne->statut = 'P'; + $I->assertFalse($abonne->save()); + + $messages = $abonne->getMessages(); + $I->assertEquals($messages[0]->getType(), "Uniqueness"); + $I->assertEquals($messages[0]->getField(), "courrierElectronique"); + $I->assertEquals($messages[0]->getMessage(), 'Le courrier électronique doit être unique'); + + //Regex validator + $abonne->courrierElectronique = 'na_fuego@hotmail.com'; + $abonne->statut = 'w'; + $I->assertFalse($abonne->save()); + + $messages = $abonne->getMessages(); + $I->assertEquals($messages[0]->getType(), "Regex"); + $I->assertEquals($messages[0]->getField(), "statut"); + $I->assertEquals($messages[0]->getMessage(), "L'état ne correspond pas à l'expression régulière"); + + //too_long + $abonne->courrierElectronique = 'personwholivesinahutsomewhereinthecloud@hotmail.com'; + $abonne->statut = 'P'; + $I->assertFalse($abonne->save()); + + $messages = $abonne->getMessages(); + $I->assertEquals($messages[0]->getType(), "TooLong"); + $I->assertEquals($messages[0]->getField(), "courrierElectronique"); + $I->assertEquals($messages[0]->getMessage(), "Le courrier électronique est trop long"); + + //too_short + $abonne->courrierElectronique = 'a@b.co'; + $abonne->status = 'P'; + $I->assertFalse($abonne->save()); + + $messages = $abonne->getMessages(); + $I->assertEquals($messages[0]->getType(), "TooShort"); + $I->assertEquals($messages[0]->getField(), "courrierElectronique"); + $I->assertEquals($messages[0]->getMessage(), "Le courrier électronique est trop court"); + + // Issue #885 + $abonne = new Abonnes(); + $abonne->courrierElectronique = 'fuego?='; + $abonne->creeA = null; + $abonne->statut = 'P'; + $I->assertFalse($abonne->save()); + + $I->assertCount(2, $abonne->getMessages()); + + $messages = $abonne->getMessages(); + $I->assertEquals($messages[0]->getType(), "PresenceOf"); + $I->assertEquals($messages[0]->getField(), "creeA"); + $I->assertEquals($messages[0]->getMessage(), "La date de création est nécessaire"); + + $I->assertEquals($messages[1]->getType(), "Email"); + $I->assertEquals($messages[1]->getField(), "courrierElectronique"); + $I->assertEquals($messages[1]->getMessage(), "Le courrier électronique est invalide"); + + $messages = $abonne->getMessages('creeA'); + $I->assertCount(1, $messages); + $I->assertEquals($messages[0]->getType(), "PresenceOf"); + $I->assertEquals($messages[0]->getField(), "creeA"); + $I->assertEquals($messages[0]->getMessage(), "La date de création est nécessaire"); + + $messages = $abonne->getMessages('courrierElectronique'); + $I->assertCount(1, $messages); + $I->assertEquals($messages[0]->getType(), "Email"); + $I->assertEquals($messages[0]->getField(), "courrierElectronique"); + $I->assertEquals($messages[0]->getMessage(), "Le courrier électronique est invalide"); + } + + public function testValidatorsPostgresql(IntegrationTester $I) + { + $this->setupPostgres(); + $this->testValidatorsRenamed($I); + } + + public function testValidatorsSqlite(IntegrationTester $I) + { + $this->setDiSqlite(); + /** + * @todo Check Sqlite - tests lock up + */ +// $this->testValidatorsRenamed($I); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/AddFromCest.php b/tests/integration/Mvc/Model/Query/Builder/AddFromCest.php new file mode 100644 index 00000000000..3d5ee2820a7 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/AddFromCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class AddFromCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: addFrom() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderAddFrom(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - addFrom()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/AndHavingCest.php b/tests/integration/Mvc/Model/Query/Builder/AndHavingCest.php new file mode 100644 index 00000000000..a8df11d0a1a --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/AndHavingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class AndHavingCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: andHaving() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderAndHaving(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - andHaving()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/AndWhereCest.php b/tests/integration/Mvc/Model/Query/Builder/AndWhereCest.php new file mode 100644 index 00000000000..4c64e30f3b0 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/AndWhereCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class AndWhereCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: andWhere() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderAndWhere(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - andWhere()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/AutoescapeCest.php b/tests/integration/Mvc/Model/Query/Builder/AutoescapeCest.php new file mode 100644 index 00000000000..658b98c12e6 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/AutoescapeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class AutoescapeCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: autoescape() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderAutoescape(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - autoescape()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/BetweenHavingCest.php b/tests/integration/Mvc/Model/Query/Builder/BetweenHavingCest.php new file mode 100644 index 00000000000..1d6d896e646 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/BetweenHavingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class BetweenHavingCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: betweenHaving() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderBetweenHaving(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - betweenHaving()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/BetweenWhereCest.php b/tests/integration/Mvc/Model/Query/Builder/BetweenWhereCest.php new file mode 100644 index 00000000000..759d38e7247 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/BetweenWhereCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class BetweenWhereCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: betweenWhere() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderBetweenWhere(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - betweenWhere()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/ColumnsCest.php b/tests/integration/Mvc/Model/Query/Builder/ColumnsCest.php new file mode 100644 index 00000000000..42a1b0a368b --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/ColumnsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class ColumnsCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: columns() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderColumns(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - columns()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/ConstructCest.php b/tests/integration/Mvc/Model/Query/Builder/ConstructCest.php new file mode 100644 index 00000000000..b97e773de8c --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/DistinctCest.php b/tests/integration/Mvc/Model/Query/Builder/DistinctCest.php new file mode 100644 index 00000000000..f83892a6db8 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/DistinctCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class DistinctCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: distinct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderDistinct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - distinct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/ForUpdateCest.php b/tests/integration/Mvc/Model/Query/Builder/ForUpdateCest.php new file mode 100644 index 00000000000..4ff3bd1f545 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/ForUpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class ForUpdateCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: forUpdate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderForUpdate(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - forUpdate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/FromCest.php b/tests/integration/Mvc/Model/Query/Builder/FromCest.php new file mode 100644 index 00000000000..9e6e2252254 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/FromCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class FromCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: from() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderFrom(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - from()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/GetColumnsCest.php b/tests/integration/Mvc/Model/Query/Builder/GetColumnsCest.php new file mode 100644 index 00000000000..4b5d3f5a117 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/GetColumnsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class GetColumnsCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: getColumns() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderGetColumns(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - getColumns()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/GetDICest.php b/tests/integration/Mvc/Model/Query/Builder/GetDICest.php new file mode 100644 index 00000000000..15298387e54 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: getDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderGetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/GetDistinctCest.php b/tests/integration/Mvc/Model/Query/Builder/GetDistinctCest.php new file mode 100644 index 00000000000..4a4ef275abf --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/GetDistinctCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class GetDistinctCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: getDistinct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderGetDistinct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - getDistinct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/GetFromCest.php b/tests/integration/Mvc/Model/Query/Builder/GetFromCest.php new file mode 100644 index 00000000000..6158aa17a79 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/GetFromCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class GetFromCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: getFrom() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderGetFrom(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - getFrom()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/GetGroupByCest.php b/tests/integration/Mvc/Model/Query/Builder/GetGroupByCest.php new file mode 100644 index 00000000000..37c0be84675 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/GetGroupByCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class GetGroupByCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: getGroupBy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderGetGroupBy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - getGroupBy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/GetHavingCest.php b/tests/integration/Mvc/Model/Query/Builder/GetHavingCest.php new file mode 100644 index 00000000000..4b277aa994e --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/GetHavingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class GetHavingCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: getHaving() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderGetHaving(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - getHaving()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/GetJoinsCest.php b/tests/integration/Mvc/Model/Query/Builder/GetJoinsCest.php new file mode 100644 index 00000000000..bfe3f26e196 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/GetJoinsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class GetJoinsCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: getJoins() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderGetJoins(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - getJoins()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/GetLimitCest.php b/tests/integration/Mvc/Model/Query/Builder/GetLimitCest.php new file mode 100644 index 00000000000..e7c1aa1d869 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/GetLimitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class GetLimitCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: getLimit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderGetLimit(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - getLimit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/GetOffsetCest.php b/tests/integration/Mvc/Model/Query/Builder/GetOffsetCest.php new file mode 100644 index 00000000000..d7b7f7516fd --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/GetOffsetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class GetOffsetCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: getOffset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderGetOffset(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - getOffset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/GetOrderByCest.php b/tests/integration/Mvc/Model/Query/Builder/GetOrderByCest.php new file mode 100644 index 00000000000..e37c45ad702 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/GetOrderByCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class GetOrderByCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: getOrderBy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderGetOrderBy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - getOrderBy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/GetPhqlCest.php b/tests/integration/Mvc/Model/Query/Builder/GetPhqlCest.php new file mode 100644 index 00000000000..f6fe529bf3f --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/GetPhqlCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class GetPhqlCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: getPhql() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderGetPhql(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - getPhql()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/GetQueryCest.php b/tests/integration/Mvc/Model/Query/Builder/GetQueryCest.php new file mode 100644 index 00000000000..d96fecc41f4 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/GetQueryCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class GetQueryCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: getQuery() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderGetQuery(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - getQuery()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/GetWhereCest.php b/tests/integration/Mvc/Model/Query/Builder/GetWhereCest.php new file mode 100644 index 00000000000..16f9e2853ab --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/GetWhereCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class GetWhereCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: getWhere() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderGetWhere(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - getWhere()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/GroupByCest.php b/tests/integration/Mvc/Model/Query/Builder/GroupByCest.php new file mode 100644 index 00000000000..678b26c833e --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/GroupByCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class GroupByCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: groupBy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderGroupBy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - groupBy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/HavingCest.php b/tests/integration/Mvc/Model/Query/Builder/HavingCest.php new file mode 100644 index 00000000000..9f77dbeb1f5 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/HavingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class HavingCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: having() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderHaving(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - having()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/InHavingCest.php b/tests/integration/Mvc/Model/Query/Builder/InHavingCest.php new file mode 100644 index 00000000000..e2f47c1724e --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/InHavingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class InHavingCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: inHaving() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderInHaving(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - inHaving()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/InWhereCest.php b/tests/integration/Mvc/Model/Query/Builder/InWhereCest.php new file mode 100644 index 00000000000..6f61a2deffa --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/InWhereCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class InWhereCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: inWhere() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderInWhere(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - inWhere()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/InnerJoinCest.php b/tests/integration/Mvc/Model/Query/Builder/InnerJoinCest.php new file mode 100644 index 00000000000..c384196d3d8 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/InnerJoinCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class InnerJoinCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: innerJoin() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderInnerJoin(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - innerJoin()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/JoinCest.php b/tests/integration/Mvc/Model/Query/Builder/JoinCest.php new file mode 100644 index 00000000000..2b005c5958e --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/JoinCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class JoinCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: join() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderJoin(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - join()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/LeftJoinCest.php b/tests/integration/Mvc/Model/Query/Builder/LeftJoinCest.php new file mode 100644 index 00000000000..008c6ceefac --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/LeftJoinCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class LeftJoinCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: leftJoin() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderLeftJoin(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - leftJoin()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/LimitCest.php b/tests/integration/Mvc/Model/Query/Builder/LimitCest.php new file mode 100644 index 00000000000..d4ac372cbfa --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/LimitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class LimitCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: limit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderLimit(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - limit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/NotBetweenHavingCest.php b/tests/integration/Mvc/Model/Query/Builder/NotBetweenHavingCest.php new file mode 100644 index 00000000000..700b67eba21 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/NotBetweenHavingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class NotBetweenHavingCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: notBetweenHaving() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderNotBetweenHaving(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - notBetweenHaving()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/NotBetweenWhereCest.php b/tests/integration/Mvc/Model/Query/Builder/NotBetweenWhereCest.php new file mode 100644 index 00000000000..43374fb2243 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/NotBetweenWhereCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class NotBetweenWhereCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: notBetweenWhere() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderNotBetweenWhere(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - notBetweenWhere()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/NotInHavingCest.php b/tests/integration/Mvc/Model/Query/Builder/NotInHavingCest.php new file mode 100644 index 00000000000..a7694f5f748 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/NotInHavingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class NotInHavingCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: notInHaving() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderNotInHaving(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - notInHaving()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/NotInWhereCest.php b/tests/integration/Mvc/Model/Query/Builder/NotInWhereCest.php new file mode 100644 index 00000000000..d4880dd0d81 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/NotInWhereCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class NotInWhereCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: notInWhere() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderNotInWhere(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - notInWhere()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/OffsetCest.php b/tests/integration/Mvc/Model/Query/Builder/OffsetCest.php new file mode 100644 index 00000000000..5ac96d5e4bd --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/OffsetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class OffsetCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: offset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderOffset(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - offset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/OrHavingCest.php b/tests/integration/Mvc/Model/Query/Builder/OrHavingCest.php new file mode 100644 index 00000000000..9f300549018 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/OrHavingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class OrHavingCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: orHaving() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderOrHaving(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - orHaving()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/OrWhereCest.php b/tests/integration/Mvc/Model/Query/Builder/OrWhereCest.php new file mode 100644 index 00000000000..0fd55638b25 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/OrWhereCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class OrWhereCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: orWhere() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderOrWhere(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - orWhere()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/OrderByCest.php b/tests/integration/Mvc/Model/Query/Builder/OrderByCest.php new file mode 100644 index 00000000000..2d995de9260 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/OrderByCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class OrderByCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: orderBy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderOrderBy(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - orderBy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/RightJoinCest.php b/tests/integration/Mvc/Model/Query/Builder/RightJoinCest.php new file mode 100644 index 00000000000..ac1b064339a --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/RightJoinCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class RightJoinCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: rightJoin() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderRightJoin(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - rightJoin()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/SetDICest.php b/tests/integration/Mvc/Model/Query/Builder/SetDICest.php new file mode 100644 index 00000000000..ad56ab86d7e --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: setDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderSetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Builder/WhereCest.php b/tests/integration/Mvc/Model/Query/Builder/WhereCest.php new file mode 100644 index 00000000000..9066d115ee6 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Builder/WhereCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; + +use IntegrationTester; + +class WhereCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Builder :: where() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryBuilderWhere(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Builder - where()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/BuilderCest.php b/tests/integration/Mvc/Model/Query/BuilderCest.php index 3688e459523..a32658d635a 100644 --- a/tests/integration/Mvc/Model/Query/BuilderCest.php +++ b/tests/integration/Mvc/Model/Query/BuilderCest.php @@ -1,52 +1,47 @@ + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. */ -namespace Phalcon\Test\Unit\Mvc\Model\Query; +namespace Phalcon\Test\Integration\Mvc\Model\Query; +use IntegrationTester; use Phalcon\Cache\Backend\File; use Phalcon\Cache\Frontend\Data; use Phalcon\Mvc\Model\Query\Builder; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Test\Models\Parts; +use Phalcon\Test\Models\RobotsParts; use Phalcon\Test\Models\Snapshot\Robots; -use Phalcon\Test\Models\Snapshot\RobotsParts; -use IntegrationTester; +use function outputFolder; -/** - * Phalcon\Test\Integration\Mvc\Model\Query\BuilderCest - * - * Tests the Phalcon\Mvc\Model\Query\Builder component - * - * @package Phalcon\Test\Integration\Mvc\Model\Query - */ class BuilderCest { + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + $this->setDiMysql(); + } + /** * Tests Models cache * - * @test - * @issue - - * @author Andres Gutierrez - * @author Serghei Iakovlev + * @author Phalcon Team * @author Wojciech Ślawski * @since 2016-12-09 */ public function shouldSaveToUseComplexSnapshotCache(IntegrationTester $I) { $I->wantToTest("Saving snapshot using complex resultset while using modelsCache"); - + $I->skipTest('TODO - Check me'); $I->addServiceToContainer( 'modelsCache', function () { @@ -54,7 +49,7 @@ function () { new Data( ['lifetime' => 20,] ), - ['cacheDir' => PATH_OUTPUT.'tests/cache/',] + ['cacheDir' => outputFolder('tests/cache/')] ); }, true @@ -62,17 +57,18 @@ function () { for ($i = 0; $i <= 1; $i++) { $builder = new Builder(); - $result = $builder->columns(['rp.*,r.*']) - ->from(['rp' => RobotsParts::class]) - ->leftJoin(Robots::class, 'r.id = rp.robots_id', 'r') - ->where('rp.id = 1') - ->getQuery() - ->cache( - [ - 'key' => 'robots-cache-complex', - ] - ) - ->getSingleResult(); + $result = $builder->columns(['rp.*,r.*']) + ->from(['rp' => RobotsParts::class]) + ->leftJoin(Robots::class, 'r.id = rp.robots_id', 'r') + ->where('rp.id = 1') + ->getQuery() + ->cache( + [ + 'key' => 'robots-cache-complex', + ] + ) + ->getSingleResult() + ; /** @var Robots $robot */ $robot = $result['r']; /** @var RobotsParts $robotParts */ @@ -83,7 +79,687 @@ function () { $I->assertInstanceOf(RobotsParts::class, $robotParts); $I->assertNotEmpty($robotParts->getSnapshotData()); $I->assertEquals($robotParts->getSnapshotData(), $robotParts->toArray()); - $I->seeFileFound(PATH_OUTPUT."tests/cache/robots-cache-complex"); + $I->seeFileFound(outputFolder("tests/cache/robots-cache-complex")); + } + } + + /** + * Tests merge bind types for Builder::where + * + * @issue https://github.com/phalcon/cphalcon/issues/11487 + */ + public function shouldMergeBinTypesForWhere(IntegrationTester $I) + { + $builder = new Builder(); + $builder->setDi($this->container); + + $builder + ->from(Robots::class) + ->where( + 'id = :id:', + [':id:' => 3], + [':id:' => \PDO::PARAM_INT] + ) + ; + + $builder->where( + 'name = :name:', + [':name:' => 'Terminator'], + [':name:' => \PDO::PARAM_STR] + ); + + $actual = $builder->getQuery()->getBindTypes(); + $expected = [':id:' => 1, ':name:' => 2]; + + $I->assertEquals($expected, $actual); + } + + /** + * Tests merge bind types for Builder::having + * + * @issue https://github.com/phalcon/cphalcon/issues/11487 + */ + public function shouldMergeBinTypesForHaving(IntegrationTester $I) + { + $builder = new Builder(); + $builder->setDi($this->container); + + $builder + ->from(Robots::class) + ->columns( + [ + 'COUNT(id)', + 'name', + ] + ) + ->groupBy('COUNT(id)') + ->having( + 'COUNT(id) > :cnt:', + [':cnt:' => 5], + [':cnt:' => \PDO::PARAM_INT] + ) + ; + + $builder->having( + "CONCAT('is_', type) = :type:", + [':type:' => 'mechanical'], + [':type:' => \PDO::PARAM_STR] + ); + + $actual = $builder->getQuery()->getBindTypes(); + $expected = [':cnt:' => 1, ':type:' => 2]; + + $I->assertEquals($expected, $actual); + } + + public function testAction(IntegrationTester $I) + { + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "]"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from([Robots::class, RobotsParts::class]) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].*, [" . RobotsParts::class . "].* FROM [" . Robots::class . "], [" . RobotsParts::class . "]"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->columns("*") + ->from(Robots::class) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT * FROM [" . Robots::class . "]"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->columns(["id", "name"]) + ->from(Robots::class) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT id, name FROM [" . Robots::class . "]"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->columns("id") + ->from(Robots::class) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT id FROM [" . Robots::class . "]"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->where("Robots.name = 'Voltron'") + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] WHERE Robots.name = 'Voltron'"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->where("Robots.name = 'Voltron'") + ->andWhere("Robots.id > 100") + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] WHERE (Robots.name = 'Voltron') AND (Robots.id > 100)"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->where("Robots.name = 'Voltron'") + ->orWhere("Robots.id > 100") + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] WHERE (Robots.name = 'Voltron') OR (Robots.id > 100)"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->where(100) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] WHERE [" . Robots::class . "].[id] = 100"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->groupBy("Robots.name") + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] GROUP BY Robots.name"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->groupBy(["Robots.name", "Robots.id"]) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] GROUP BY Robots.name, Robots.id"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->columns(["Robots.name", "SUM(Robots.price)"]) + ->from(Robots::class) + ->groupBy("Robots.name") + ->getPhql() + ; + $I->assertEquals($phql, "SELECT Robots.name, SUM(Robots.price) FROM [" . Robots::class . "] GROUP BY Robots.name"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->columns(["Robots.name", "SUM(Robots.price)"]) + ->from(Robots::class) + ->groupBy("Robots.name") + ->having("SUM(Robots.price) > 1000") + ->getPhql() + ; + $I->assertEquals($phql, "SELECT Robots.name, SUM(Robots.price) FROM [" . Robots::class . "] GROUP BY Robots.name HAVING SUM(Robots.price) > 1000"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->columns(["Robots.name", "SUM(Robots.price)"]) + ->from(Robots::class) + ->groupBy("Robots.name") + ->having("SUM(Robots.price) > 1000") + ->andHaving("SUM(Robots.price) < 2000") + ->getPhql() + ; + $I->assertEquals($phql, "SELECT Robots.name, SUM(Robots.price) FROM [" . Robots::class . "] GROUP BY Robots.name HAVING (SUM(Robots.price) > 1000) AND (SUM(Robots.price) < 2000)"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->columns(["Robots.name", "SUM(Robots.price)"]) + ->from(Robots::class) + ->groupBy("Robots.name") + ->having("SUM(Robots.price) > 1000") + ->orHaving("SUM(Robots.price) < 500") + ->getPhql() + ; + $I->assertEquals($phql, "SELECT Robots.name, SUM(Robots.price) FROM [" . Robots::class . "] GROUP BY Robots.name HAVING (SUM(Robots.price) > 1000) OR (SUM(Robots.price) < 500)"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->columns(["Robots.name", "SUM(Robots.price)"]) + ->from(Robots::class) + ->groupBy("Robots.name") + ->inHaving("SUM(Robots.price)", [1, 2, 3]) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT Robots.name, SUM(Robots.price) FROM [" . Robots::class . "] GROUP BY Robots.name HAVING SUM(Robots.price) IN (:AP0:, :AP1:, :AP2:)"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->columns(["Robots.name", "SUM(Robots.price)"]) + ->from(Robots::class) + ->groupBy("Robots.name") + ->notInHaving("SUM(Robots.price)", [1, 2, 3]) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT Robots.name, SUM(Robots.price) FROM [" . Robots::class . "] GROUP BY Robots.name HAVING SUM(Robots.price) NOT IN (:AP0:, :AP1:, :AP2:)"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->columns(["Robots.name", "SUM(Robots.price)"]) + ->from(Robots::class) + ->groupBy("Robots.name") + ->having("SUM(Robots.price) > 100") + ->inHaving("SUM(Robots.price)", [1, 2, 3], Builder::OPERATOR_OR) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT Robots.name, SUM(Robots.price) FROM [" . Robots::class . "] GROUP BY Robots.name HAVING (SUM(Robots.price) > 100) OR (SUM(Robots.price) IN (:AP0:, :AP1:, :AP2:))"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->columns(["Robots.name", "SUM(Robots.price)"]) + ->from(Robots::class) + ->groupBy("Robots.name") + ->having("SUM(Robots.price) > 100") + ->notInHaving("SUM(Robots.price)", [1, 2, 3], Builder::OPERATOR_OR) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT Robots.name, SUM(Robots.price) FROM [" . Robots::class . "] GROUP BY Robots.name HAVING (SUM(Robots.price) > 100) OR (SUM(Robots.price) NOT IN (:AP0:, :AP1:, :AP2:))"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->columns(["Robots.name", "SUM(Robots.price)"]) + ->from(Robots::class) + ->groupBy("Robots.name") + ->betweenHaving("SUM(Robots.price)", 100, 200) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT Robots.name, SUM(Robots.price) FROM [" . Robots::class . "] GROUP BY Robots.name HAVING SUM(Robots.price) BETWEEN :AP0: AND :AP1:"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->columns(["Robots.name", "SUM(Robots.price)"]) + ->from(Robots::class) + ->groupBy("Robots.name") + ->notBetweenHaving("SUM(Robots.price)", 100, 200) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT Robots.name, SUM(Robots.price) FROM [" . Robots::class . "] GROUP BY Robots.name HAVING SUM(Robots.price) NOT BETWEEN :AP0: AND :AP1:"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->join(RobotsParts::class) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] JOIN [" . RobotsParts::class . "]"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->join(RobotsParts::class, null, "p") + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] JOIN [" . RobotsParts::class . "] AS [p]"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->join(RobotsParts::class, "Robots.id = RobotsParts.robots_id", "p") + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] JOIN [" . RobotsParts::class . "] AS [p] ON Robots.id = RobotsParts.robots_id"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->join(RobotsParts::class, "Robots.id = RobotsParts.robots_id", "p") + ->join(Parts::class, "Parts.id = RobotsParts.parts_id", "t") + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] JOIN [" . RobotsParts::class . "] AS [p] ON Robots.id = RobotsParts.robots_id JOIN [" . Parts::class . "] AS [t] ON Parts.id = RobotsParts.parts_id"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->leftJoin(RobotsParts::class, "Robots.id = RobotsParts.robots_id") + ->leftJoin(Parts::class, "Parts.id = RobotsParts.parts_id") + ->where("Robots.id > 0") + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] LEFT JOIN [" . RobotsParts::class . "] ON Robots.id = RobotsParts.robots_id LEFT JOIN [" . Parts::class . "] ON Parts.id = RobotsParts.parts_id WHERE Robots.id > 0"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->addFrom(Robots::class, "r") + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [r].* FROM [" . Robots::class . "] AS [r]"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->addFrom(Parts::class, "p") + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].*, [p].* FROM [" . Robots::class . "], [" . Parts::class . "] AS [p]"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(["r" => Robots::class]) + ->addFrom(Parts::class, "p") + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [r].*, [p].* FROM [" . Robots::class . "] AS [r], [" . Parts::class . "] AS [p]"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(["r" => Robots::class, "p" => Parts::class]) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [r].*, [p].* FROM [" . Robots::class . "] AS [r], [" . Parts::class . "] AS [p]"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->orderBy("Robots.name") + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] ORDER BY Robots.name"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->orderBy([1, "Robots.name"]) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] ORDER BY 1, Robots.name"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->limit(10) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] LIMIT :APL0:"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->limit(10, 5) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] LIMIT :APL0: OFFSET :APL1:"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->where("Robots.name = 'Voltron'") + ->betweenWhere("Robots.id", 0, 50) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] WHERE (Robots.name = 'Voltron') AND (Robots.id BETWEEN :AP0: AND :AP1:)"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->where("Robots.name = 'Voltron'") + ->inWhere("Robots.id", [1, 2, 3]) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] WHERE (Robots.name = 'Voltron') AND (Robots.id IN (:AP0:, :AP1:, :AP2:))"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->where("Robots.name = 'Voltron'") + ->betweenWhere("Robots.id", 0, 50, Builder::OPERATOR_OR) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] WHERE (Robots.name = 'Voltron') OR (Robots.id BETWEEN :AP0: AND :AP1:)"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->where("Robots.name = 'Voltron'") + ->inWhere("Robots.id", [1, 2, 3], Builder::OPERATOR_OR) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] WHERE (Robots.name = 'Voltron') OR (Robots.id IN (:AP0:, :AP1:, :AP2:))"); + } + + public function testIssue701(IntegrationTester $I) + { + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->from(Robots::class) + ->leftJoin(RobotsParts::class, "Robots.id = RobotsParts.robots_id") + ->leftJoin(Parts::class, "Parts.id = RobotsParts.parts_id") + ->where("Robots.id > :1: AND Robots.id < :2:", [1 => 0, 2 => 1000]) + ; + + $params = $phql->getQuery()->getBindParams(); + $I->assertEquals($params[1], 0); + $I->assertEquals($params[2], 1000); + + $phql->andWhere( + "Robots.name = :name:", + [ + "name" => "Voltron", + ] + ); + + $params = $phql->getQuery()->getBindParams(); + $I->assertEquals($params[1], 0); + $I->assertEquals($params[2], 1000); + $I->assertEquals($params["name"], "Voltron"); + } + + public function testIssue1115(IntegrationTester $I) + { + $builder = new Builder(); + + $phql = $builder->setDi($this->container) + ->columns(["Robots.name"]) + ->from(Robots::class) + ->having("Robots.price > 1000") + ->getPhql() + ; + + $I->assertEquals($phql, "SELECT Robots.name FROM [" . Robots::class . "] HAVING Robots.price > 1000"); + } + + public function testSelectDistinctAll(IntegrationTester $I) + { + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->distinct(true) + ->columns(["Robots.name"]) + ->from(Robots::class) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT DISTINCT Robots.name FROM [" . Robots::class . "]"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->distinct(false) + ->columns(["Robots.name"]) + ->from(Robots::class) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT ALL Robots.name FROM [" . Robots::class . "]"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->distinct(true) + ->distinct(null) + ->columns(["Robots.name"]) + ->from(Robots::class) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT Robots.name FROM [" . Robots::class . "]"); + + $builder = new Builder(); + $phql = $builder->setDi($this->container) + ->distinct(true) + ->from(Robots::class) + ->getPhql() + ; + $I->assertEquals($phql, "SELECT DISTINCT [" . Robots::class . "].* FROM [" . Robots::class . "]"); + } + + /** + * Test checks passing query params and dependency injector into + * constructor + */ + public function testConstructor(IntegrationTester $I) + { + $params = [ + "models" => Robots::class, + "columns" => ["id", "name", "status"], + "conditions" => "a > 5", + "group" => ["type", "source"], + "having" => "b < 5", + "order" => ["name", "created"], + "limit" => 10, + "offset" => 15, + ]; + + $builder = new Builder($params, $this->container); + + $expectedPhql = "SELECT id, name, status FROM [" . Robots::class . "] " + . "WHERE a > 5 GROUP BY [type], [source] " + . "HAVING b < 5 ORDER BY [name], [created] " + . "LIMIT :APL0: OFFSET :APL1:"; + + $I->assertEquals($expectedPhql, $builder->getPhql()); + $I->assertEquals($this->container, $builder->getDI()); + } + + /** + * Test checks passing 'limit'/'offset' query param into constructor. + * limit key can take: + * - single numeric value + * - array of 2 values (limit, offset) + */ + public function testConstructorLimit(IntegrationTester $I) + { + // separate limit and offset + $params = [ + "models" => Robots::class, + "limit" => 10, + "offset" => 15, + ]; + + $builderLimitAndOffset = new Builder($params); + + // separate limit with offset + + $params = [ + "models" => Robots::class, + "limit" => [10, 15], + ]; + + $builderLimitWithOffset = new Builder($params); + + $expectedPhql = "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] LIMIT :APL0: OFFSET :APL1:"; + + $I->assertEquals($builderLimitAndOffset->getPhql(), $expectedPhql); + $I->assertEquals($builderLimitWithOffset->getPhql(), $expectedPhql); + } + + /** + * Test checks passing 'condition' query param into constructor. + * Conditions can now be passed as an string(as before) and + * as an array of 3 elements: + * - condition string for example "age > :age: AND created > :created:" + * - bind params for example array('age' => 18, 'created' => '2013-09-01') + * - bind types for example array('age' => PDO::PARAM_INT, 'created' => + * PDO::PARAM_STR) + * + * First two params are REQUIRED, bind types are optional. + */ + public function testConstructorConditions(IntegrationTester $I) + { + // ------------- test for setters(classic) way ---------------- + + $standardBuilder = new Builder(); + $standardBuilder->from(Robots::class) + ->where( + "year > :min: AND year < :max:", + ["min" => "2013-01-01", "max" => "2100-01-01"], + ["min" => \PDO::PARAM_STR, "max" => \PDO::PARAM_STR] + ) + ; + + $standardResult = $standardBuilder->getQuery()->execute(); + + // --------------- test for single condition ------------------ + $params = [ + "models" => Robots::class, + "conditions" => [ + [ + "year > :min: AND year < :max:", + ["min" => "2013-01-01", "max" => "2100-01-01"], + ["min" => \PDO::PARAM_STR, "max" => \PDO::PARAM_STR], + ], + ], + ]; + + $builderWithSingleCondition = new Builder($params); + $singleConditionResult = $builderWithSingleCondition->getQuery()->execute(); + + // ------------- test for multiple conditions ---------------- + + $params = [ + "models" => Robots::class, + "conditions" => [ + [ + "year > :min:", + ["min" => "2000-01-01"], + ["min" => \PDO::PARAM_STR], + ], + [ + "year < :max:", + ["max" => "2100-01-01"], + ["max" => \PDO::PARAM_STR], + ], + ], + ]; + + // conditions are merged! + $builderMultipleConditions = new Builder($params); + $multipleConditionResult = $builderMultipleConditions->getQuery()->execute(); + + $expectedPhql = "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] WHERE year > :min: AND year < :max:"; + + /* ------------ ASSERTING --------- */ + + $I->assertEquals($standardBuilder->getPhql(), $expectedPhql); + $I->assertInstanceOf("Phalcon\\Mvc\\Model\\Resultset\\Simple", $standardResult); + + $I->assertEquals($builderWithSingleCondition->getPhql(), $expectedPhql); + $I->assertInstanceOf("Phalcon\\Mvc\\Model\\Resultset\\Simple", $singleConditionResult); + + $I->assertEquals($builderMultipleConditions->getPhql(), $expectedPhql); + $I->assertInstanceOf("Phalcon\\Mvc\\Model\\Resultset\\Simple", $multipleConditionResult); + } + + public function testGroup(IntegrationTester $I) + { + $builder = new Builder(); + + $phql = $builder->setDi($this->container) + ->columns(["name", "SUM(price)"]) + ->from(Robots::class) + ->groupBy("id, name") + ->getPhql() + ; + + $I->assertEquals($phql, "SELECT name, SUM(price) FROM [" . Robots::class . "] GROUP BY [id], [name]"); + } + + /** + * Tests work with limit / offset + * + * @issue https://github.com/phalcon/cphalcon/issues/12419 + * @author Serghei Iakovelv + * @since 2016-12-18 + */ + public function shouldCorrectHandleLimitAndOffset(IntegrationTester $I) + { + $examples = $this->limitOffsetProvider(); + foreach ($examples as $item) { + $limit = $item[0]; + $offset = $item[1]; + $expected = $item[2]; + + $builder = new Builder(null, $this->container); + $phql = $builder + ->columns(['name']) + ->from(Robots::class) + ->limit($limit, $offset) + ->getPhql() + ; + + /** Just prevent IDE to highlight this as not valid SQL dialect */ + $I->assertEquals($phql, 'SELECT name ' . "FROM {$expected}"); } } + + protected function limitOffsetProvider() + { + return [ + [-7, null, "[" . Robots::class . "] LIMIT :APL0:"], + /** + * @todo Check these examples + */ +// ["-7234", null, "[" . Robots::class . "] LIMIT :APL0:"], +// ["18", null, "[" . Robots::class . "] LIMIT :APL0:"], +// ["18", 2, "[" . Robots::class . "] LIMIT :APL0: OFFSET :APL1:"], +// ["-1000", -200, "[" . Robots::class . "] LIMIT :APL0: OFFSET :APL1:"], +// ["1000", "-200", "[" . Robots::class . "] LIMIT :APL0: OFFSET :APL1:"], +// ["0", "-200", "[" . Robots::class . "]"], +// ["%3CMETA%20HTTP-EQUIV%3D%22refresh%22%20CONT ENT%3D%220%3Burl%3Djavascript%3Aqss%3D7%22%3E", 50, "[" . Robots::class . "]"], + ]; + } } diff --git a/tests/integration/Mvc/Model/Query/BuilderOrderCest.php b/tests/integration/Mvc/Model/Query/BuilderOrderCest.php new file mode 100644 index 00000000000..11ff63e3186 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/BuilderOrderCest.php @@ -0,0 +1,97 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Mvc\Model\Query\Builder; +use Phalcon\Test\Models\Robots; + +class BuilderOrderCest +{ + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + $this->setDiMysql(); + } + + /** + * Tests Builder::orderBy to create correct PHQL query + * + * @test + * @author Sergii Svyrydenko + * @since 2017-11-03 + */ + public function shouldGenerateCorrectPhql(IntegrationTester $I) + { + $examples = [ + ['robot_name DESC', 'ORDER BY robot_name DESC'], + ['r.name DESC', 'ORDER BY r.name DESC'], + [['r.name DESC'], 'ORDER BY r.name DESC'], + [['robot_name DESC'], 'ORDER BY [robot_name] DESC'], + [['robot_name DESC', 'r.name DESC'], 'ORDER BY [robot_name] DESC, r.name DESC'], + [[1, 'r.name DESC'], 'ORDER BY 1, r.name DESC'], + ]; + foreach ($examples as $item) { + $orderBy = $item[0]; + $expected = $item[1]; + $builder = new Builder(); + $query = "SELECT r.year, r.name AS robot_name FROM [" . Robots::class . "] AS [r] "; + + $phql = $builder + ->setDi($this->container) + ->from(['r' => Robots::class]) + ->columns(['r.year', 'r.name AS robot_name']) + ->orderBy($orderBy) + ->getPhql() + ; + + $I->assertEquals($query . $expected, $phql); + } + } + + /** + * Tests Builder::orderBy to create correct SQL query + * + * @author Sergii Svyrydenko + * @since 2017-11-03 + */ + public function shouldGenerateCorrectSql(IntegrationTester $I) + { + $examples = [ + ['robot_name DESC', 'ORDER BY `robot_name` DESC'], + ['r.name DESC', 'ORDER BY `r`.`name` DESC'], + [['r.name DESC'], 'ORDER BY `r`.`name` DESC'], + [['robot_name DESC'], 'ORDER BY `robot_name` DESC'], + [['robot_name DESC', 'r.name DESC'], 'ORDER BY `robot_name` DESC, `r`.`name` DESC'], + [[1, 'r.name DESC'], 'ORDER BY 1, `r`.`name` DESC'], + ]; + foreach ($examples as $item) { + $orderBy = $item[0]; + $expected = $item[1]; + $builder = new Builder(); + $query = "SELECT `r`.`year` AS `year`, `r`.`name` AS `robot_name` FROM `robots` AS `r` "; + + $phql = $builder + ->setDi($this->container) + ->from(['r' => Robots::class]) + ->columns(['r.year', 'r.name AS robot_name']) + ->orderBy($orderBy) + ->getQuery() + ; + $phql = $phql->getSql(); + $I->assertEquals($query . $expected, $phql['sql']); + } + } +} diff --git a/tests/integration/Mvc/Model/Query/CacheCest.php b/tests/integration/Mvc/Model/Query/CacheCest.php new file mode 100644 index 00000000000..3764f8b84a2 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/CacheCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class CacheCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: cache() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryCache(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - cache()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/CleanCest.php b/tests/integration/Mvc/Model/Query/CleanCest.php new file mode 100644 index 00000000000..f7f49e6e9eb --- /dev/null +++ b/tests/integration/Mvc/Model/Query/CleanCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class CleanCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: clean() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryClean(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - clean()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/ConstructCest.php b/tests/integration/Mvc/Model/Query/ConstructCest.php new file mode 100644 index 00000000000..db39d400973 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/ExecuteCest.php b/tests/integration/Mvc/Model/Query/ExecuteCest.php new file mode 100644 index 00000000000..64a7561fc23 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/ExecuteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class ExecuteCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: execute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryExecute(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - execute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/GetBindParamsCest.php b/tests/integration/Mvc/Model/Query/GetBindParamsCest.php new file mode 100644 index 00000000000..da4ebee77a6 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/GetBindParamsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class GetBindParamsCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: getBindParams() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryGetBindParams(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - getBindParams()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/GetBindTypesCest.php b/tests/integration/Mvc/Model/Query/GetBindTypesCest.php new file mode 100644 index 00000000000..d21703d35ef --- /dev/null +++ b/tests/integration/Mvc/Model/Query/GetBindTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class GetBindTypesCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: getBindTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryGetBindTypes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - getBindTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/GetCacheCest.php b/tests/integration/Mvc/Model/Query/GetCacheCest.php new file mode 100644 index 00000000000..3d79b3ea77b --- /dev/null +++ b/tests/integration/Mvc/Model/Query/GetCacheCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class GetCacheCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: getCache() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryGetCache(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - getCache()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/GetCacheOptionsCest.php b/tests/integration/Mvc/Model/Query/GetCacheOptionsCest.php new file mode 100644 index 00000000000..4b93e52bb94 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/GetCacheOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class GetCacheOptionsCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: getCacheOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryGetCacheOptions(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - getCacheOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/GetDICest.php b/tests/integration/Mvc/Model/Query/GetDICest.php new file mode 100644 index 00000000000..2a802d36d48 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: getDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryGetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/GetIntermediateCest.php b/tests/integration/Mvc/Model/Query/GetIntermediateCest.php new file mode 100644 index 00000000000..4a5c323ca16 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/GetIntermediateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class GetIntermediateCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: getIntermediate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryGetIntermediate(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - getIntermediate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/GetSingleResultCest.php b/tests/integration/Mvc/Model/Query/GetSingleResultCest.php new file mode 100644 index 00000000000..5c897be89f2 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/GetSingleResultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class GetSingleResultCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: getSingleResult() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryGetSingleResult(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - getSingleResult()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/GetSqlCest.php b/tests/integration/Mvc/Model/Query/GetSqlCest.php new file mode 100644 index 00000000000..7291f0a16d8 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/GetSqlCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class GetSqlCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: getSql() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryGetSql(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - getSql()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/GetTransactionCest.php b/tests/integration/Mvc/Model/Query/GetTransactionCest.php new file mode 100644 index 00000000000..2d9fdc3b939 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/GetTransactionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class GetTransactionCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: getTransaction() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryGetTransaction(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - getTransaction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/GetTypeCest.php b/tests/integration/Mvc/Model/Query/GetTypeCest.php new file mode 100644 index 00000000000..804f3f17902 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/GetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class GetTypeCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: getType() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryGetType(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - getType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/GetUniqueRowCest.php b/tests/integration/Mvc/Model/Query/GetUniqueRowCest.php new file mode 100644 index 00000000000..e7d4b69aef4 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/GetUniqueRowCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class GetUniqueRowCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: getUniqueRow() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryGetUniqueRow(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - getUniqueRow()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Lang/ParsePHQLCest.php b/tests/integration/Mvc/Model/Query/Lang/ParsePHQLCest.php new file mode 100644 index 00000000000..46d22af5922 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Lang/ParsePHQLCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Lang; + +use IntegrationTester; + +class ParsePHQLCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Lang :: parsePHQL() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryLangParsePHQL(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Lang - parsePHQL()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/ParseCest.php b/tests/integration/Mvc/Model/Query/ParseCest.php new file mode 100644 index 00000000000..41ed0dcfd0f --- /dev/null +++ b/tests/integration/Mvc/Model/Query/ParseCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class ParseCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: parse() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryParse(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - parse()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/SetBindParamsCest.php b/tests/integration/Mvc/Model/Query/SetBindParamsCest.php new file mode 100644 index 00000000000..8a882f55779 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/SetBindParamsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class SetBindParamsCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: setBindParams() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQuerySetBindParams(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - setBindParams()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/SetBindTypesCest.php b/tests/integration/Mvc/Model/Query/SetBindTypesCest.php new file mode 100644 index 00000000000..27488c9ec05 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/SetBindTypesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class SetBindTypesCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: setBindTypes() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQuerySetBindTypes(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - setBindTypes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/SetDICest.php b/tests/integration/Mvc/Model/Query/SetDICest.php new file mode 100644 index 00000000000..d210e50d68b --- /dev/null +++ b/tests/integration/Mvc/Model/Query/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: setDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQuerySetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/SetIntermediateCest.php b/tests/integration/Mvc/Model/Query/SetIntermediateCest.php new file mode 100644 index 00000000000..99ec2b9e2f7 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/SetIntermediateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class SetIntermediateCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: setIntermediate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQuerySetIntermediate(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - setIntermediate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/SetSharedLockCest.php b/tests/integration/Mvc/Model/Query/SetSharedLockCest.php new file mode 100644 index 00000000000..eac49e72724 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/SetSharedLockCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class SetSharedLockCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: setSharedLock() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQuerySetSharedLock(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - setSharedLock()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/SetTransactionCest.php b/tests/integration/Mvc/Model/Query/SetTransactionCest.php new file mode 100644 index 00000000000..d6af6f146e4 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/SetTransactionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class SetTransactionCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: setTransaction() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQuerySetTransaction(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - setTransaction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/SetTypeCest.php b/tests/integration/Mvc/Model/Query/SetTypeCest.php new file mode 100644 index 00000000000..7645a0df3c0 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/SetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class SetTypeCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: setType() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQuerySetType(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - setType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/SetUniqueRowCest.php b/tests/integration/Mvc/Model/Query/SetUniqueRowCest.php new file mode 100644 index 00000000000..32134b860d4 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/SetUniqueRowCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query; + +use IntegrationTester; + +class SetUniqueRowCest +{ + /** + * Tests Phalcon\Mvc\Model\Query :: setUniqueRow() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQuerySetUniqueRow(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query - setUniqueRow()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Status/ConstructCest.php b/tests/integration/Mvc/Model/Query/Status/ConstructCest.php new file mode 100644 index 00000000000..8ddbc72988a --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Status/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Status; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Status :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryStatusConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Status - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Status/GetMessagesCest.php b/tests/integration/Mvc/Model/Query/Status/GetMessagesCest.php new file mode 100644 index 00000000000..797aa6d8c2c --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Status/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Status; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Status :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryStatusGetMessages(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Status - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Status/GetModelCest.php b/tests/integration/Mvc/Model/Query/Status/GetModelCest.php new file mode 100644 index 00000000000..fa4161d7ad5 --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Status/GetModelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Status; + +use IntegrationTester; + +class GetModelCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Status :: getModel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryStatusGetModel(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Status - getModel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Query/Status/SuccessCest.php b/tests/integration/Mvc/Model/Query/Status/SuccessCest.php new file mode 100644 index 00000000000..1d9451b1c1e --- /dev/null +++ b/tests/integration/Mvc/Model/Query/Status/SuccessCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Query\Status; + +use IntegrationTester; + +class SuccessCest +{ + /** + * Tests Phalcon\Mvc\Model\Query\Status :: success() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQueryStatusSuccess(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Query\Status - success()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/QueryCest.php b/tests/integration/Mvc/Model/QueryCest.php new file mode 100644 index 00000000000..7129f7afc58 --- /dev/null +++ b/tests/integration/Mvc/Model/QueryCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class QueryCest +{ + /** + * Tests Phalcon\Mvc\Model :: query() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelQuery(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - query()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/QueryOldCest.php b/tests/integration/Mvc/Model/QueryOldCest.php new file mode 100644 index 00000000000..cfbdb8b647d --- /dev/null +++ b/tests/integration/Mvc/Model/QueryOldCest.php @@ -0,0 +1,7923 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; +use Phalcon\Mvc\Model\Query; +use Phalcon\Mvc\Model\Transaction; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Test\Models\Deles; +use Phalcon\Test\Models\Parts; +use Phalcon\Test\Models\People; +use Phalcon\Test\Models\Personers; +use Phalcon\Test\Models\Products; +use Phalcon\Test\Models\Robots; +use Phalcon\Test\Models\RobotsParts; +use Phalcon\Test\Models\Robotters; +use Phalcon\Test\Models\RobottersDeles; +use Phalcon\Test\Models\Some\Products as SomeProducts; +use Phalcon\Test\Models\Some\Robotters as SomeRobotters; + +class QueryOldCest +{ + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + $this->setDiSqlite(); + } + + public function checkIfTransactionIsSet(IntegrationTester $I) + { + $transaction = new Transaction($this->container); + $query = new Query(null, $this->container); + $query->setTransaction($transaction); + + $I->assertEquals($transaction, $query->getTransaction()); + } + + public function testSelectParsing(IntegrationTester $I) + { + $examples = $this->getExamples(); + foreach ($examples as $item) { + $phql = $item['phql']; + $expected = $item['expected']; + $query = new Query($phql); + $query->setDI($this->container); + + $actual = $query->parse(); + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Query::parse insert + * + * @author Phalcon Team + * @since 2017-01-24 + */ + public function shouldInsertParsing(IntegrationTester $I) + { + $examples = $this->getExamplesInsert(); + foreach ($examples as $item) { + $params = $item[0]; + $expected = $item[1]; + $query = new Query($params['query']); + $query->setDI($this->container); + + $actual = $query->parse(); + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Query::parse update + * + * @author Phalcon Team + * @since 2017-01-24 + */ + public function shouldUpdateParsing(IntegrationTester $I) + { + $examples = $this->getExamplesUpdate(); + foreach ($examples as $item) { + $params = $item[0]; + $expected = $item[1]; + $query = new Query($params['query']); + $query->setDI($this->container); + + $actual = $query->parse(); + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Query::parse delete + * + * @author Phalcon Team + * @since 2017-01-24 + */ + public function shouldDeleteParsing(IntegrationTester $I) + { + $examples = $this->getExamplesDelete(); + foreach ($examples as $item) { + $params = $item[0]; + $expected = $item[1]; + $query = new Query($params['query']); + $query->setDI($this->container); + + $actual = $query->parse(); + $I->assertEquals($expected, $actual); + } + } + + private function getExamples(): array + { + return [ + [ + "phql" => 'SELECT * FROM ' . Robots::class, + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . SomeProducts::class, + "expected" => [ + 'models' => [ + SomeProducts::class, + ], + 'tables' => [ + 'le_products', + ], + 'columns' => [ + lcfirst(SomeProducts::class) => [ + 'type' => 'object', + 'model' => SomeProducts::class, + 'column' => 'le_products', + 'balias' => lcfirst(SomeProducts::class), + ], + ], + ], + ], + [ + "phql" => 'SELECT ' . SomeProducts::class . '.* FROM ' . SomeProducts::class, + "expected" => [ + 'models' => [ + SomeProducts::class, + ], + 'tables' => [ + 'le_products', + ], + 'columns' => [ + lcfirst(SomeProducts::class) => [ + 'type' => 'object', + 'model' => SomeProducts::class, + 'column' => 'le_products', + 'balias' => lcfirst(SomeProducts::class), + ], + ], + ], + ], + [ + "phql" => 'SELECT p.* FROM ' . SomeProducts::class . ' p', + "expected" => [ + 'models' => [ + SomeProducts::class, + ], + 'tables' => [ + [ + 'le_products', + null, + 'p', + ], + ], + 'columns' => [ + 'p' => [ + 'type' => 'object', + 'model' => SomeProducts::class, + 'column' => 'p', + 'balias' => 'p', + ], + ], + ], + ], + [ + "phql" => 'SELECT ' . Robots::class . '.* FROM ' . Robots::class, + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + ], + ], + [ + "phql" => 'SELECT r.* FROM ' . Robots::class . ' r', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + 'r' => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'r', + 'balias' => 'r', + ], + ], + ], + ], + [ + "phql" => 'SELECT r.* FROM ' . Robots::class . ' AS r', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + 'r' => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'r', + 'balias' => 'r', + ], + ], + ], + ], + [ + "phql" => 'SELECT id, name FROM ' . Robots::class, + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + 'id' => [ + 'type' => 'scalar', + 'balias' => 'id', + 'sqlAlias' => 'id', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + ], + 'name' => [ + 'type' => 'scalar', + 'balias' => 'name', + 'sqlAlias' => 'name', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT r.id, r.name FROM ' . Robots::class . ' AS r', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + 'id' => [ + 'type' => 'scalar', + 'balias' => 'id', + 'sqlAlias' => 'id', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + ], + 'name' => [ + 'type' => 'scalar', + 'balias' => 'name', + 'sqlAlias' => 'name', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT r.id AS le_id, r.name AS le_name FROM ' . Robots::class . ' AS r', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + 'le_id' => [ + 'type' => 'scalar', + 'balias' => 'le_id', + 'sqlAlias' => 'le_id', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + ], + 'le_name' => [ + 'type' => 'scalar', + 'balias' => 'le_name', + 'sqlAlias' => 'le_name', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT ' . Robots::class . '.id AS le_id, ' . Robots::class . '.name AS le_name FROM ' . Robots::class, + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + 'le_id' => [ + 'type' => 'scalar', + 'balias' => 'le_id', + 'sqlAlias' => 'le_id', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + ], + 'le_name' => [ + 'type' => 'scalar', + 'balias' => 'le_name', + 'sqlAlias' => 'le_name', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT \'\' empty_str, 10.5 double_number, 1000 AS long_number FROM ' . Robots::class, + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + 'empty_str' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'literal', + 'value' => '\'\'', + ], + 'balias' => 'empty_str', + 'sqlAlias' => 'empty_str', + ], + 'double_number' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'literal', + 'value' => '10.5', + ], + 'balias' => 'double_number', + 'sqlAlias' => 'double_number', + ], + 'long_number' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'literal', + 'value' => '1000', + ], + 'balias' => 'long_number', + 'sqlAlias' => 'long_number', + ], + ], + ], + ], + [ + "phql" => 'SELECT ' . People::class . '.cedula FROM ' . People::class, + "expected" => [ + 'models' => [ + People::class, + ], + 'tables' => [ + 'personas', + ], + 'columns' => [ + 'cedula' => [ + 'type' => 'scalar', + 'balias' => 'cedula', + 'sqlAlias' => 'cedula', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'personas', + 'name' => 'cedula', + 'balias' => 'cedula', + ], + ], + ], + ], + ], + [ + "phql" => 'select ' . strtolower(People::class) . '.cedula from ' . strtolower(People::class), + "expected" => [ + 'models' => [ + strtolower(People::class), + ], + 'tables' => [ + 'personas', + ], + 'columns' => [ + 'cedula' => [ + 'type' => 'scalar', + 'balias' => 'cedula', + 'sqlAlias' => 'cedula', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'personas', + 'name' => 'cedula', + 'balias' => 'cedula', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT p.cedula AS cedula FROM ' . People::class . ' p', + "expected" => [ + 'models' => [ + People::class, + ], + 'tables' => [ + [ + 'personas', + null, + 'p', + ], + ], + 'columns' => [ + 'cedula' => [ + 'type' => 'scalar', + 'balias' => 'cedula', + 'sqlAlias' => 'cedula', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'p', + 'name' => 'cedula', + 'balias' => 'cedula', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT CONCAT(cedula,\'-\',nombres) AS nombre FROM ' . People::class, + "expected" => [ + 'models' => [ + People::class, + ], + 'tables' => [ + 'personas', + ], + 'columns' => [ + 'nombre' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'functionCall', + 'name' => 'CONCAT', + 'arguments' => [ + [ + 'type' => 'qualified', + 'domain' => 'personas', + 'name' => 'cedula', + 'balias' => 'cedula', + ], + [ + 'type' => 'literal', + 'value' => '\'-\'', + ], + [ + 'type' => 'qualified', + 'domain' => 'personas', + 'name' => 'nombres', + 'balias' => 'nombres', + ], + ], + ], + 'balias' => 'nombre', + 'sqlAlias' => 'nombre', + ], + ], + ], + ], + [ + "phql" => 'SELECT CONCAT(' . People::class . '.cedula,\'-\',' . People::class . '.nombres) AS nombre FROM ' . People::class, + "expected" => [ + 'models' => [ + People::class, + ], + 'tables' => [ + 'personas', + ], + 'columns' => [ + 'nombre' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'functionCall', + 'name' => 'CONCAT', + 'arguments' => [ + [ + 'type' => 'qualified', + 'domain' => 'personas', + 'name' => 'cedula', + 'balias' => 'cedula', + ], + [ + 'type' => 'literal', + 'value' => '\'-\'', + ], + [ + 'type' => 'qualified', + 'domain' => 'personas', + 'name' => 'nombres', + 'balias' => 'nombres', + ], + ], + ], + 'balias' => 'nombre', + 'sqlAlias' => 'nombre', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' JOIN ' . RobotsParts::class, + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + lcfirst(RobotsParts::class) => [ + 'type' => 'object', + 'model' => RobotsParts::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobotsParts::class), + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'robots_parts', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robots_id', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' CROSS JOIN ' . RobotsParts::class, + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + lcfirst(RobotsParts::class) => [ + 'type' => 'object', + 'model' => RobotsParts::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobotsParts::class), + ], + ], + 'joins' => [ + [ + 'type' => 'CROSS', + 'source' => [ + 'robots_parts', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robots_id', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' LEFT JOIN ' . RobotsParts::class . ' RIGHT JOIN ' . Parts::class, + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(RobotsParts::class) => [ + 'type' => 'object', + 'model' => RobotsParts::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobotsParts::class), + ], + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + lcfirst(Parts::class) => [ + 'type' => 'object', + 'model' => Parts::class, + 'column' => 'parts', + 'balias' => lcfirst(Parts::class), + ], + ], + 'joins' => [ + [ + 'type' => 'LEFT', + 'source' => [ + 'robots_parts', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robots_id', + ], + ], + ], + ], + [ + 'type' => 'RIGHT', + 'source' => [ + 'parts', + null, + ], + 'conditions' => [ + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . RobotsParts::class . ' LEFT OUTER JOIN ' . Robots::class . ' RIGHT OUTER JOIN ' . Parts::class, + "expected" => [ + 'models' => [ + RobotsParts::class, + ], + 'tables' => [ + 'robots_parts', + ], + 'columns' => [ + lcfirst(RobotsParts::class) => [ + 'type' => 'object', + 'model' => RobotsParts::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobotsParts::class), + ], + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + lcfirst(Parts::class) => [ + 'type' => 'object', + 'model' => Parts::class, + 'column' => 'parts', + 'balias' => lcfirst(Parts::class), + ], + ], + 'joins' => [ + [ + 'type' => 'LEFT', + 'source' => [ + 'robots', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robots_id', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + ], + ], + ], + [ + 'type' => 'RIGHT', + 'source' => [ + 'parts', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'parts_id', + 'balias' => 'parts_id', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'parts', + 'name' => 'id', + 'balias' => 'id', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' JOIN ' . RobotsParts::class . ' ON ' . Robots::class . '.id = ' . RobotsParts::class . '.robots_id', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + lcfirst(RobotsParts::class) => [ + 'type' => 'object', + 'model' => RobotsParts::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobotsParts::class), + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'robots_parts', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robots_id', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' LEFT OUTER JOIN ' . RobotsParts::class . ' ON ' . Robots::class . '.id = ' . RobotsParts::class . '.robots_id AND ' . RobotsParts::class . '.robots_id = ' . Robots::class . '.id WHERE ' . Robots::class . '.id IS NULL', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + lcfirst(RobotsParts::class) => [ + 'type' => 'object', + 'model' => RobotsParts::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobotsParts::class), + ], + ], + 'joins' => [ + [ + 'type' => 'LEFT', + 'source' => [ + 'robots_parts', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'binary-op', + 'op' => 'AND', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robots_id', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robots_id', + ], + ], + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + ], + ], + ], + ], + 'where' => [ + 'type' => 'unary-op', + 'op' => ' IS NULL', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' RIGHT OUTER JOIN ' . RobotsParts::class . ' ON ' . Robots::class . '.id = ' . RobotsParts::class . '.robots_id AND ' . RobotsParts::class . '.robots_id = ' . Robots::class . '.id WHERE ' . RobotsParts::class . '.robots_id IS NOT NULL', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + lcfirst(RobotsParts::class) => [ + 'type' => 'object', + 'model' => RobotsParts::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobotsParts::class), + ], + ], + 'joins' => [ + [ + 'type' => 'RIGHT', + 'source' => [ + 'robots_parts', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'binary-op', + 'op' => 'AND', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robots_id', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robots_id', + ], + ], + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + ], + ], + ], + ], + 'where' => [ + 'type' => 'unary-op', + 'op' => ' IS NOT NULL', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robots_id', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' FULL OUTER JOIN ' . RobotsParts::class, + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + lcfirst(RobotsParts::class) => [ + 'type' => 'object', + 'model' => RobotsParts::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobotsParts::class), + ], + ], + 'joins' => [ + [ + 'type' => 'FULL OUTER', + 'source' => [ + 'robots_parts', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robots_id', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . RobotsParts::class . ' JOIN ' . Robots::class, + "expected" => [ + 'models' => [ + RobotsParts::class, + ], + 'tables' => [ + 'robots_parts', + ], + 'columns' => [ + lcfirst(RobotsParts::class) => [ + 'type' => 'object', + 'model' => RobotsParts::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobotsParts::class), + ], + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'robots', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robots_id', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT r.*, p.* FROM ' . Robots::class . ' AS r JOIN ' . RobotsParts::class . ' AS p', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + 'r' => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'r', + 'balias' => 'r', + ], + 'p' => [ + 'type' => 'object', + 'model' => RobotsParts::class, + 'column' => 'p', + 'balias' => 'p', + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'robots_parts', + null, + 'p', + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'p', + 'name' => 'robots_id', + 'balias' => 'robots_id', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' AS r JOIN ' . RobotsParts::class . ' AS p', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'r', + 'balias' => lcfirst(Robots::class), + ], + lcfirst(RobotsParts::class) => [ + 'type' => 'object', + 'model' => RobotsParts::class, + 'column' => 'p', + 'balias' => lcfirst(RobotsParts::class), + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'robots_parts', + null, + 'p', + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'p', + 'name' => 'robots_id', + 'balias' => 'robots_id', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT r.* FROM ' . Robots::class . ' r INNER JOIN ' . RobotsParts::class, + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + 'r' => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'r', + 'balias' => 'r', + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'robots_parts', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robots_id', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT ( ' . People::class . '.cupo + 100) / (' . Products::class . '.price * 0.15) FROM ' . People::class . ' JOIN ' . Products::class, + "expected" => [ + 'models' => [ + People::class, + ], + 'tables' => [ + 'personas', + ], + 'columns' => [ + '_0' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'binary-op', + 'op' => '/', + 'left' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '+', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'personas', + 'name' => 'cupo', + 'balias' => 'cupo', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + ], + 'right' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '*', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'products', + 'name' => 'price', + 'balias' => 'price', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '0.15', + ], + ], + ], + ], + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'products', + null, + ], + 'conditions' => [ + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT ( ' . People::class . '.cupo + 100) / (' . SomeProducts::class . '.price * 0.15) AS price FROM ' . People::class . ' JOIN ' . SomeProducts::class, + "expected" => [ + 'models' => [ + People::class, + ], + 'tables' => [ + 'personas', + ], + 'columns' => [ + 'price' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'binary-op', + 'op' => '/', + 'left' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '+', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'personas', + 'name' => 'cupo', + 'balias' => 'cupo', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + ], + 'right' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '*', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'le_products', + 'name' => 'price', + 'balias' => 'price', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '0.15', + ], + ], + ], + ], + 'balias' => 'price', + 'sqlAlias' => 'price', + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'le_products', + null, + ], + 'conditions' => [ + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT (p.cupo + 100) / (s.price * 0.15) AS price FROM ' . People::class . ' AS p JOIN ' . SomeProducts::class . ' AS s', + "expected" => [ + 'models' => [ + People::class, + ], + 'tables' => [ + [ + 'personas', + null, + 'p', + ], + ], + 'columns' => [ + 'price' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'binary-op', + 'op' => '/', + 'left' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '+', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'p', + 'name' => 'cupo', + 'balias' => 'cupo', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + ], + 'right' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '*', + 'left' => [ + 'type' => 'qualified', + 'domain' => 's', + 'name' => 'price', + 'balias' => 'price', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '0.15', + ], + ], + ], + ], + 'balias' => 'price', + 'sqlAlias' => 'price', + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'le_products', + null, + 's', + ], + 'conditions' => [ + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ', ' . RobotsParts::class, + "expected" => [ + 'models' => [ + Robots::class, + RobotsParts::class, + ], + 'tables' => [ + 'robots', + 'robots_parts', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + lcfirst(RobotsParts::class) => [ + 'type' => 'object', + 'model' => RobotsParts::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobotsParts::class), + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' r, ' . RobotsParts::class . ' p', + "expected" => [ + 'models' => [ + Robots::class, + RobotsParts::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + [ + 'robots_parts', + null, + 'p', + ], + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'r', + 'balias' => lcfirst(Robots::class), + ], + lcfirst(RobotsParts::class) => [ + 'type' => 'object', + 'model' => RobotsParts::class, + 'column' => 'p', + 'balias' => lcfirst(RobotsParts::class), + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' AS r, ' . RobotsParts::class . ' AS p', + "expected" => [ + 'models' => [ + Robots::class, + RobotsParts::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + [ + 'robots_parts', + null, + 'p', + ], + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'r', + 'balias' => lcfirst(Robots::class), + ], + lcfirst(RobotsParts::class) => [ + 'type' => 'object', + 'model' => RobotsParts::class, + 'column' => 'p', + 'balias' => lcfirst(RobotsParts::class), + ], + ], + ], + ], + [ + "phql" => 'SELECT name, parts_id FROM ' . Robots::class . ' AS r, ' . RobotsParts::class . ' AS p', + "expected" => [ + 'models' => [ + Robots::class, + RobotsParts::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + [ + 'robots_parts', + null, + 'p', + ], + ], + 'columns' => [ + 'name' => [ + 'type' => 'scalar', + 'balias' => 'name', + 'sqlAlias' => 'name', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'parts_id' => [ + 'type' => 'scalar', + 'balias' => 'parts_id', + 'sqlAlias' => 'parts_id', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'p', + 'name' => 'parts_id', + 'balias' => 'parts_id', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' AS r, ' . RobotsParts::class . ' AS p WHERE r.id = p.robots_id', + "expected" => [ + 'models' => [ + Robots::class, + RobotsParts::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + [ + 'robots_parts', + null, + 'p', + ], + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'r', + 'balias' => lcfirst(Robots::class), + ], + lcfirst(RobotsParts::class) => [ + 'type' => 'object', + 'model' => RobotsParts::class, + 'column' => 'p', + 'balias' => lcfirst(RobotsParts::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'p', + 'name' => 'robots_id', + 'balias' => 'robots_id', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ', ' . RobotsParts::class . ' WHERE ' . Robots::class . '.id = ' . RobotsParts::class . '.robots_id', + "expected" => [ + 'models' => [ + Robots::class, + RobotsParts::class, + ], + 'tables' => [ + 'robots', + 'robots_parts', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + lcfirst(RobotsParts::class) => [ + 'type' => 'object', + 'model' => RobotsParts::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobotsParts::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robots_id', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id = 100', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id != 100', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '<>', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id > 100', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id < 100', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '<', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id >= 100', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '>=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id <= 100', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '<=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.name LIKE \'as%\'', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => 'LIKE', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'as%\'', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.name NOT LIKE \'as%\'', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => 'NOT LIKE', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'as%\'', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.name BETWEEN \'john\' AND \'mike\'', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => 'BETWEEN', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + 'right' => [ + 'type' => 'binary-op', + 'op' => 'AND', + 'left' => [ + 'type' => 'literal', + 'value' => '\'john\'', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'mike\'', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . SomeProducts::class . ' WHERE DATE(' . SomeProducts::class . '.created_at) = "2010-10-02"', + "expected" => [ + 'models' => [ + SomeProducts::class, + ], + 'tables' => [ + 'le_products', + ], + 'columns' => [ + lcfirst(SomeProducts::class) => [ + 'type' => 'object', + 'model' => SomeProducts::class, + 'column' => 'le_products', + 'balias' => lcfirst(SomeProducts::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'functionCall', + 'name' => 'DATE', + 'arguments' => [ + [ + 'type' => 'qualified', + 'domain' => 'le_products', + 'name' => 'created_at', + 'balias' => 'created_at', + ], + ], + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'2010-10-02\'', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . SomeProducts::class . ' WHERE ' . SomeProducts::class . '.created_at < now()', + "expected" => [ + 'models' => [ + SomeProducts::class, + ], + 'tables' => [ + 'le_products', + ], + 'columns' => [ + lcfirst(SomeProducts::class) => [ + 'type' => 'object', + 'model' => SomeProducts::class, + 'column' => 'le_products', + 'balias' => lcfirst(SomeProducts::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '<', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'le_products', + 'name' => 'created_at', + 'balias' => 'created_at', + ], + 'right' => [ + 'type' => 'functionCall', + 'name' => 'now', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id IN (1)', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => 'IN', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'list', + [ + [ + 'type' => 'literal', + 'value' => '1', + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id IN (1, 2, 3, 4)', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => 'IN', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'list', + [ + [ + 'type' => 'literal', + 'value' => '1', + ], + [ + 'type' => 'literal', + 'value' => '2', + ], + [ + 'type' => 'literal', + 'value' => '3', + ], + [ + 'type' => 'literal', + 'value' => '4', + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' r WHERE r.id IN (r.id+1, r.id+2)', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'r', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => 'IN', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'list', + [ + [ + 'type' => 'binary-op', + 'op' => '+', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '1', + ], + ], + [ + 'type' => 'binary-op', + 'op' => '+', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '2', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.name = :name:', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + 'right' => [ + 'type' => 'placeholder', + 'value' => ':name', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.name = ?0', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + 'right' => [ + 'type' => 'placeholder', + 'value' => ':0', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.name = \'R2D2\' OR ' . Robots::class . '.name <> \'C3PO\'', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '<>', + 'left' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + 'right' => [ + 'type' => 'binary-op', + 'op' => 'OR', + 'left' => [ + 'type' => 'literal', + 'value' => '\'R2D2\'', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'C3PO\'', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.name = \'R2D2\' AND ' . Robots::class . '.name <> \'C3PO\'', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '<>', + 'left' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + 'right' => [ + 'type' => 'binary-op', + 'op' => 'AND', + 'left' => [ + 'type' => 'literal', + 'value' => '\'R2D2\'', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'C3PO\'', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.name = :first_name: AND ' . Robots::class . '.name <> :second_name:', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '<>', + 'left' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + 'right' => [ + 'type' => 'binary-op', + 'op' => 'AND', + 'left' => [ + 'type' => 'placeholder', + 'value' => ':first_name', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + 'right' => [ + 'type' => 'placeholder', + 'value' => ':second_name', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.name = \'R2D2\' AND ' . Robots::class . '.name <> \'C3PO\' AND ' . Robots::class . '.id > 100', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'binary-op', + 'op' => '<>', + 'left' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + 'right' => [ + 'type' => 'binary-op', + 'op' => 'AND', + 'left' => [ + 'type' => 'literal', + 'value' => '\'R2D2\'', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + 'right' => [ + 'type' => 'binary-op', + 'op' => 'AND', + 'left' => [ + 'type' => 'literal', + 'value' => '\'C3PO\'', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + ], + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE (' . Robots::class . '.name = \'R2D2\' AND ' . Robots::class . '.name <> \'C3PO\') OR ' . Robots::class . '.id > 100', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'binary-op', + 'op' => 'OR', + 'left' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '<>', + 'left' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + 'right' => [ + 'type' => 'binary-op', + 'op' => 'AND', + 'left' => [ + 'type' => 'literal', + 'value' => '\'R2D2\'', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'C3PO\'', + ], + ], + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE (' . Robots::class . '.name = \'R2D2\' AND ' . Robots::class . '.name <> \'C3PO\') OR (' . Robots::class . '.id > 100 AND ' . Robots::class . '.id <= 150)', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => 'OR', + 'left' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '<>', + 'left' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + 'right' => [ + 'type' => 'binary-op', + 'op' => 'AND', + 'left' => [ + 'type' => 'literal', + 'value' => '\'R2D2\'', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'C3PO\'', + ], + ], + ], + 'right' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '<=', + 'left' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'binary-op', + 'op' => 'AND', + 'left' => [ + 'type' => 'literal', + 'value' => '100', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + ], + ], + 'right' => [ + 'type' => 'literal', + 'value' => '150', + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' r WHERE r.id NOT IN (r.id+1, r.id+2)', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'r', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => 'NOT IN', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'list', + [ + [ + 'type' => 'binary-op', + 'op' => '+', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '1', + ], + ], + [ + 'type' => 'binary-op', + 'op' => '+', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '2', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' r LIMIT 100', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'r', + 'balias' => lcfirst(Robots::class), + ], + ], + 'limit' => [ + 'number' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' r LIMIT 10,100', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'r', + 'balias' => lcfirst(Robots::class), + ], + ], + 'limit' => [ + 'number' => [ + 'type' => 'literal', + 'value' => '100', + ], + 'offset' => [ + 'type' => 'literal', + 'value' => '10', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' r LIMIT 100 OFFSET 10', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'r', + 'balias' => lcfirst(Robots::class), + ], + ], + 'limit' => [ + 'number' => [ + 'type' => 'literal', + 'value' => '100', + ], + 'offset' => [ + 'type' => 'literal', + 'value' => '10', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . SomeProducts::class . ' p WHERE p.name = "Artichoke" LIMIT 100', + "expected" => [ + 'models' => [ + SomeProducts::class, + ], + 'tables' => [ + [ + 'le_products', + null, + 'p', + ], + ], + 'columns' => [ + lcfirst(SomeProducts::class) => [ + 'type' => 'object', + 'model' => SomeProducts::class, + 'column' => 'p', + 'balias' => lcfirst(SomeProducts::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'p', + 'name' => 'name', + 'balias' => 'name', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'Artichoke\'', + ], + ], + 'limit' => [ + 'number' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . SomeProducts::class . ' p ORDER BY p.name', + "expected" => [ + 'models' => [ + SomeProducts::class, + ], + 'tables' => [ + [ + 'le_products', + null, + 'p', + ], + ], + 'columns' => [ + lcfirst(SomeProducts::class) => [ + 'type' => 'object', + 'model' => SomeProducts::class, + 'column' => 'p', + 'balias' => lcfirst(SomeProducts::class), + ], + ], + 'order' => [ + [ + [ + 'type' => 'qualified', + 'domain' => 'p', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . SomeProducts::class . ' ORDER BY ' . SomeProducts::class . '.name', + "expected" => [ + 'models' => [ + SomeProducts::class, + ], + 'tables' => [ + 'le_products', + ], + 'columns' => [ + lcfirst(SomeProducts::class) => [ + 'type' => 'object', + 'model' => SomeProducts::class, + 'column' => 'le_products', + 'balias' => lcfirst(SomeProducts::class), + ], + ], + 'order' => [ + [ + [ + 'type' => 'qualified', + 'domain' => 'le_products', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . SomeProducts::class . ' ORDER BY id, ' . SomeProducts::class . '.name, 3', + "expected" => [ + 'models' => [ + SomeProducts::class, + ], + 'tables' => [ + 'le_products', + ], + 'columns' => [ + lcfirst(SomeProducts::class) => [ + 'type' => 'object', + 'model' => SomeProducts::class, + 'column' => 'le_products', + 'balias' => lcfirst(SomeProducts::class), + ], + ], + 'order' => [ + [ + [ + 'type' => 'qualified', + 'domain' => 'le_products', + 'name' => 'id', + 'balias' => 'id', + ], + ], + [ + [ + 'type' => 'qualified', + 'domain' => 'le_products', + 'name' => 'name', + 'balias' => 'name', + ], + ], + [ + [ + 'type' => 'literal', + 'value' => '3', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' r WHERE NOT (r.name = "shaggy") ORDER BY 1, r.name', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'r', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'unary-op', + 'op' => 'NOT ', + 'right' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'name', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'shaggy\'', + ], + ], + ], + ], + 'order' => [ + [ + [ + 'type' => 'literal', + 'value' => '1', + ], + ], + [ + [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' r WHERE NOT (r.name = "shaggy") ORDER BY 1 DESC, r.name', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'r', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'unary-op', + 'op' => 'NOT ', + 'right' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'name', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'shaggy\'', + ], + ], + ], + ], + 'order' => [ + [ + [ + 'type' => 'literal', + 'value' => '1', + ], + 'DESC', + ], + [ + [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' r WHERE NOT (r.name = "shaggy") ORDER BY 1, r.name', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'r', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'unary-op', + 'op' => 'NOT ', + 'right' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'name', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'shaggy\'', + ], + ], + ], + ], + 'order' => [ + [ + [ + 'type' => 'literal', + 'value' => '1', + ], + ], + [ + [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' r WHERE r.name <> "shaggy" ORDER BY 1, 2 LIMIT 5', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'r', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '<>', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'name', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'shaggy\'', + ], + ], + 'order' => [ + [ + [ + 'type' => 'literal', + 'value' => '1', + ], + ], + [ + [ + 'type' => 'literal', + 'value' => '2', + ], + ], + ], + 'limit' => [ + 'number' => [ + 'type' => 'literal', + 'value' => '5', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' r WHERE r.name <> "shaggy" ORDER BY 1 ASC, 2 DESC LIMIT 5', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'r', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '<>', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'name', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'shaggy\'', + ], + ], + 'order' => [ + [ + [ + 'type' => 'literal', + 'value' => '1', + ], + 'ASC', + ], + [ + [ + 'type' => 'literal', + 'value' => '2', + ], + 'DESC', + ], + ], + 'limit' => [ + 'number' => [ + 'type' => 'literal', + 'value' => '5', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' GROUP BY ' . Robots::class . '.name', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'group' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' GROUP BY ' . Robots::class . '.name, ' . Robots::class . '.id', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'group' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + ], + ], + ], + [ + "phql" => 'SELECT ' . Robots::class . '.name, SUM(' . Robots::class . '.price) AS summatory FROM ' . Robots::class . ' GROUP BY ' . Robots::class . '.name', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + 'name' => [ + 'type' => 'scalar', + 'balias' => 'name', + 'sqlAlias' => 'name', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'summatory' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'functionCall', + 'name' => 'SUM', + 'arguments' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'price', + 'balias' => 'price', + ], + ], + ], + 'balias' => 'summatory', + 'sqlAlias' => 'summatory', + ], + ], + 'group' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + ], + [ + "phql" => 'SELECT r.id, r.name, SUM(r.price) AS summatory, MIN(r.price) FROM ' . Robots::class . ' r GROUP BY r.id, r.name', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + 'id' => [ + 'type' => 'scalar', + 'balias' => 'id', + 'sqlAlias' => 'id', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + ], + 'name' => [ + 'type' => 'scalar', + 'balias' => 'name', + 'sqlAlias' => 'name', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'summatory' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'functionCall', + 'name' => 'SUM', + 'arguments' => [ + [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'price', + 'balias' => 'price', + ], + ], + ], + 'balias' => 'summatory', + 'sqlAlias' => 'summatory', + ], + '_3' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'functionCall', + 'name' => 'MIN', + 'arguments' => [ + [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'price', + 'balias' => 'price', + ], + ], + ], + ], + ], + 'group' => [ + [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id > 5 GROUP BY ' . Robots::class . '.name', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '5', + ], + ], + 'group' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id > 5 GROUP BY ' . Robots::class . '.name LIMIT 10', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '5', + ], + ], + 'group' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'limit' => [ + 'number' => [ + 'type' => 'literal', + 'value' => '10', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id > 5 GROUP BY ' . Robots::class . '.name ORDER BY ' . Robots::class . '.id LIMIT 10', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '5', + ], + ], + 'group' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'order' => [ + [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + ], + ], + 'limit' => [ + 'number' => [ + 'type' => 'literal', + 'value' => '10', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' GROUP BY ' . Robots::class . '.name ORDER BY ' . Robots::class . '.id', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'group' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'order' => [ + [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE ' . Robots::class . '.id != 10 GROUP BY ' . Robots::class . '.name ORDER BY ' . Robots::class . '.id', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '<>', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '10', + ], + ], + 'group' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'order' => [ + [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + ], + ], + ], + ], + [ + + "phql" => 'SELECT ' . Robots::class . '.name, COUNT(*) FROM ' . Robots::class . ' GROUP BY ' . Robots::class . '.name HAVING COUNT(*)>100', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + 'name' => [ + 'type' => 'scalar', + 'balias' => 'name', + 'sqlAlias' => 'name', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + '_1' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'functionCall', + 'name' => 'COUNT', + 'arguments' => [ + [ + 'type' => 'all', + ], + ], + ], + ], + ], + 'group' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'having' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'functionCall', + 'name' => 'COUNT', + 'arguments' => [ + [ + 'type' => 'all', + ], + ], + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + ], + ], + [ + "phql" => 'SELECT ' . SomeProducts::class . '.type, SUM(' . SomeProducts::class . '.price) AS price FROM ' . SomeProducts::class . ' GROUP BY ' . SomeProducts::class . '.type HAVING SUM(' . SomeProducts::class . '.price)<100', + "expected" => [ + 'models' => [ + SomeProducts::class, + ], + 'tables' => [ + 'le_products', + ], + 'columns' => [ + 'type' => [ + 'type' => 'scalar', + 'balias' => 'type', + 'sqlAlias' => 'type', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'le_products', + 'name' => 'type', + 'balias' => 'type', + ], + ], + 'price' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'functionCall', + 'name' => 'SUM', + 'arguments' => [ + [ + 'type' => 'qualified', + 'domain' => 'le_products', + 'name' => 'price', + 'balias' => 'price', + ], + ], + ], + 'balias' => 'price', + 'sqlAlias' => 'price', + ], + ], + 'group' => [ + [ + 'type' => 'qualified', + 'domain' => 'le_products', + 'name' => 'type', + 'balias' => 'type', + ], + ], + 'having' => [ + 'type' => 'binary-op', + 'op' => '<', + 'left' => [ + 'type' => 'functionCall', + 'name' => 'SUM', + 'arguments' => [ + [ + 'type' => 'qualified', + 'name' => 'price', + 'domain' => 'le_products', + 'balias' => 'price', + ], + ], + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + ], + ], + [ + "phql" => 'SELECT type, SUM(price) AS price FROM ' . SomeProducts::class . ' GROUP BY 1 HAVING SUM(price)<100', + "expected" => [ + 'models' => [ + SomeProducts::class, + ], + 'tables' => [ + 'le_products', + ], + 'columns' => [ + 'type' => [ + 'type' => 'scalar', + 'balias' => 'type', + 'sqlAlias' => 'type', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'le_products', + 'name' => 'type', + 'balias' => 'type', + ], + ], + 'price' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'functionCall', + 'name' => 'SUM', + 'arguments' => [ + [ + 'type' => 'qualified', + 'domain' => 'le_products', + 'name' => 'price', + 'balias' => 'price', + ], + ], + ], + 'balias' => 'price', + 'sqlAlias' => 'price', + ], + ], + 'group' => [ + [ + 'type' => 'literal', + 'value' => '1', + ], + ], + 'having' => [ + 'type' => 'binary-op', + 'op' => '<', + 'left' => [ + 'type' => 'functionCall', + 'name' => 'SUM', + 'arguments' => [ + [ + 'type' => 'qualified', + 'name' => 'price', + ], + ], + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + ], + ], + [ + "phql" => 'SELECT COUNT(DISTINCT ' . SomeProducts::class . '.type) AS price FROM ' . SomeProducts::class, + "expected" => [ + 'models' => [ + SomeProducts::class, + ], + 'tables' => [ + 'le_products', + ], + 'columns' => [ + 'price' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'functionCall', + 'name' => 'COUNT', + 'arguments' => [ + [ + 'type' => 'qualified', + 'domain' => 'le_products', + 'name' => 'type', + 'balias' => 'type', + ], + ], + 'distinct' => 1, + ], + 'balias' => 'price', + 'sqlAlias' => 'price', + ], + ], + ], + ], + [ + "phql" => 'SELECT COUNT(DISTINCT ' . SomeProducts::class . '.type) price FROM ' . SomeProducts::class, + "expected" => [ + 'models' => [ + SomeProducts::class, + ], + 'tables' => [ + 'le_products', + ], + 'columns' => [ + 'price' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'functionCall', + 'name' => 'COUNT', + 'arguments' => [ + [ + 'type' => 'qualified', + 'domain' => 'le_products', + 'name' => 'type', + 'balias' => 'type', + ], + ], + 'distinct' => 1, + ], + 'balias' => 'price', + 'sqlAlias' => 'price', + ], + ], + ], + ], + [ + "phql" => 'SELECT ' . Robots::class . '.name, COUNT(*) FROM ' . Robots::class . ' WHERE ' . Robots::class . '.type = "virtual" GROUP BY ' . Robots::class . '.name HAVING COUNT(*)>100', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + 'name' => [ + 'type' => 'scalar', + 'balias' => 'name', + 'sqlAlias' => 'name', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + '_1' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'functionCall', + 'name' => 'COUNT', + 'arguments' => [ + [ + 'type' => 'all', + ], + ], + ], + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'type', + 'balias' => 'type', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'virtual\'', + ], + ], + 'group' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'having' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'functionCall', + 'name' => 'COUNT', + 'arguments' => [ + [ + 'type' => 'all', + ], + ], + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + ], + ], + [ + "phql" => 'SELECT ' . Robots::class . '.name, COUNT(*) FROM ' . Robots::class . ' WHERE ' . Robots::class . '.type = "virtual" GROUP BY ' . Robots::class . '.name HAVING COUNT(*)>100 ORDER BY 2', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + 'name' => [ + 'type' => 'scalar', + 'balias' => 'name', + 'sqlAlias' => 'name', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + '_1' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'functionCall', + 'name' => 'COUNT', + 'arguments' => [ + [ + 'type' => 'all', + ], + ], + ], + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'type', + 'balias' => 'type', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'virtual\'', + ], + ], + 'group' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'having' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'functionCall', + 'name' => 'COUNT', + 'arguments' => [ + [ + 'type' => 'all', + ], + ], + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + 'order' => [ + [ + [ + 'type' => 'literal', + 'value' => '2', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT ' . Robots::class . '.name, COUNT(*) FROM ' . Robots::class . ' WHERE ' . Robots::class . '.type = "virtual" GROUP BY ' . Robots::class . '.name HAVING COUNT(*)>100 ORDER BY 2 LIMIT 15', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + 'name' => [ + 'type' => 'scalar', + 'balias' => 'name', + 'sqlAlias' => 'name', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + '_1' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'functionCall', + 'name' => 'COUNT', + 'arguments' => [ + [ + 'type' => 'all', + ], + ], + ], + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'type', + 'balias' => 'type', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'virtual\'', + ], + ], + 'group' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'having' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'functionCall', + 'name' => 'COUNT', + 'arguments' => [ + [ + 'type' => 'all', + ], + ], + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + 'order' => [ + [ + [ + 'type' => 'literal', + 'value' => '2', + ], + ], + ], + 'limit' => [ + 'number' => [ + 'type' => 'literal', + 'value' => '15', + ], + ], + ], + ], + [ + "phql" => 'SELECT ' . Robots::class . '.name, COUNT(*) FROM ' . Robots::class . ' GROUP BY ' . Robots::class . '.name HAVING COUNT(*)>100 ORDER BY 2 LIMIT 15', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + 'name' => [ + 'type' => 'scalar', + 'balias' => 'name', + 'sqlAlias' => 'name', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + '_1' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'functionCall', + 'name' => 'COUNT', + 'arguments' => [ + [ + 'type' => 'all', + ], + ], + ], + ], + ], + 'group' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'having' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'functionCall', + 'name' => 'COUNT', + 'arguments' => [ + [ + 'type' => 'all', + ], + ], + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + 'order' => [ + [ + [ + 'type' => 'literal', + 'value' => '2', + ], + ], + ], + 'limit' => [ + 'number' => [ + 'type' => 'literal', + 'value' => '15', + ], + ], + ], + ], + [ + "phql" => 'SELECT name, COUNT(*) FROM ' . Robots::class . ' WHERE type = "virtual" GROUP BY name HAVING COUNT(*)>100 LIMIT 15', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + 'name' => [ + 'type' => 'scalar', + 'balias' => 'name', + 'sqlAlias' => 'name', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + '_1' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'functionCall', + 'name' => 'COUNT', + 'arguments' => [ + [ + 'type' => 'all', + ], + ], + ], + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'type', + 'balias' => 'type', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'virtual\'', + ], + ], + 'group' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'having' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'functionCall', + 'name' => 'COUNT', + 'arguments' => [ + [ + 'type' => 'all', + ], + ], + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + 'limit' => [ + 'number' => [ + 'type' => 'literal', + 'value' => '15', + ], + ], + ], + ], + [ + "phql" => 'SELECT ' . Robots::class . '.name, COUNT(*) FROM ' . Robots::class . ' WHERE ' . Robots::class . '.type = "virtual" GROUP BY ' . Robots::class . '.name HAVING COUNT(*)>100 LIMIT 15', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + 'name' => [ + 'type' => 'scalar', + 'balias' => 'name', + 'sqlAlias' => 'name', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + '_1' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'functionCall', + 'name' => 'COUNT', + 'arguments' => [ + [ + 'type' => 'all', + ], + ], + ], + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'type', + 'balias' => 'type', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'virtual\'', + ], + ], + 'group' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'having' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'functionCall', + 'name' => 'COUNT', + 'arguments' => [ + [ + 'type' => 'all', + ], + ], + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + 'limit' => [ + 'number' => [ + 'type' => 'literal', + 'value' => '15', + ], + ], + ], + ], + [ + "phql" => 'SELECT ' . Robots::class . '.name, COUNT(*) FROM ' . Robots::class . ' GROUP BY ' . Robots::class . '.name HAVING COUNT(*)>100 LIMIT 15', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + 'name' => [ + 'type' => 'scalar', + 'balias' => 'name', + 'sqlAlias' => 'name', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + '_1' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'functionCall', + 'name' => 'COUNT', + 'arguments' => [ + [ + 'type' => 'all', + ], + ], + ], + ], + ], + 'group' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'having' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'functionCall', + 'name' => 'COUNT', + 'arguments' => [ + [ + 'type' => 'all', + ], + ], + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + 'limit' => [ + 'number' => [ + 'type' => 'literal', + 'value' => '15', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class, + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'robots', + 'balias' => lcfirst(Robotters::class), + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . SomeRobotters::class, + "expected" => [ + 'models' => [ + SomeRobotters::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(SomeRobotters::class) => [ + 'type' => 'object', + 'model' => SomeRobotters::class, + 'column' => 'robots', + 'balias' => lcfirst(SomeRobotters::class), + ], + ], + ], + ], + [ + "phql" => 'SELECT ' . SomeRobotters::class . '.* FROM ' . SomeRobotters::class, + "expected" => [ + 'models' => [ + SomeRobotters::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(SomeRobotters::class) => [ + 'type' => 'object', + 'model' => SomeRobotters::class, + 'column' => 'robots', + 'balias' => lcfirst(SomeRobotters::class), + ], + ], + ], + ], + [ + "phql" => 'SELECT r.* FROM ' . SomeRobotters::class . ' r', + "expected" => [ + 'models' => [ + SomeRobotters::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + 'r' => [ + 'type' => 'object', + 'model' => SomeRobotters::class, + 'column' => 'r', + 'balias' => 'r', + ], + ], + ], + ], + [ + "phql" => 'SELECT ' . Robotters::class . '.* FROM ' . Robotters::class, + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'robots', + 'balias' => lcfirst(Robotters::class), + ], + ], + ], + ], + [ + "phql" => 'SELECT r.* FROM ' . Robotters::class . ' r', + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + 'r' => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'r', + 'balias' => 'r', + ], + ], + ], + ], + [ + "phql" => 'SELECT r.* FROM ' . Robotters::class . ' AS r', + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + 'r' => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'r', + 'balias' => 'r', + ], + ], + ], + ], + [ + "phql" => 'SELECT code, theName FROM ' . Robotters::class, + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + 'code' => [ + 'type' => 'scalar', + 'balias' => 'code', + 'sqlAlias' => 'code', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'code', + ], + ], + 'theName' => [ + 'type' => 'scalar', + 'balias' => 'theName', + 'sqlAlias' => 'theName', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'theName', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT r.code, r.theName FROM ' . Robotters::class . ' AS r', + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + 'code' => [ + 'type' => 'scalar', + 'balias' => 'code', + 'sqlAlias' => 'code', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'code', + ], + ], + 'theName' => [ + 'type' => 'scalar', + 'balias' => 'theName', + 'sqlAlias' => 'theName', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'theName', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT r.code AS le_id, r.theName AS le_name FROM ' . Robotters::class . ' AS r', + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + 'le_id' => [ + 'type' => 'scalar', + 'balias' => 'le_id', + 'sqlAlias' => 'le_id', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'code', + ], + ], + 'le_name' => [ + 'type' => 'scalar', + 'balias' => 'le_name', + 'sqlAlias' => 'le_name', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'theName', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT ' . Robotters::class . '.code AS le_id, ' . Robotters::class . '.theName AS le_name FROM ' . Robotters::class, + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + 'le_id' => [ + 'type' => 'scalar', + 'balias' => 'le_id', + 'sqlAlias' => 'le_id', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'code', + ], + ], + 'le_name' => [ + 'type' => 'scalar', + 'balias' => 'le_name', + 'sqlAlias' => 'le_name', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'theName', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT \'\' empty_str, 10.5 double_number, 1000 AS long_number FROM ' . Robotters::class, + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + 'empty_str' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'literal', + 'value' => '\'\'', + ], + 'balias' => 'empty_str', + 'sqlAlias' => 'empty_str', + ], + 'double_number' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'literal', + 'value' => '10.5', + ], + 'balias' => 'double_number', + 'sqlAlias' => 'double_number', + ], + 'long_number' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'literal', + 'value' => '1000', + ], + 'balias' => 'long_number', + 'sqlAlias' => 'long_number', + ], + ], + ], + ], + [ + "phql" => 'SELECT ' . Personers::class . '.borgerId FROM ' . Personers::class, + "expected" => [ + 'models' => [ + Personers::class, + ], + 'tables' => [ + 'personas', + ], + 'columns' => [ + 'borgerId' => [ + 'type' => 'scalar', + 'balias' => 'borgerId', + 'sqlAlias' => 'borgerId', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'personas', + 'name' => 'cedula', + 'balias' => 'borgerId', + ], + ], + ], + ], + ], + [ + "phql" => 'select ' . strtolower(Personers::class) . '.borgerId from ' . strtolower(Personers::class), + "expected" => [ + 'models' => [ + strtolower(Personers::class), + ], + 'tables' => [ + 'personas', + ], + 'columns' => [ + 'borgerId' => [ + 'type' => 'scalar', + 'balias' => 'borgerId', + 'sqlAlias' => 'borgerId', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'personas', + 'name' => 'cedula', + 'balias' => 'borgerId', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT p.borgerId AS cedula FROM ' . Personers::class . ' p', + "expected" => [ + 'models' => [ + Personers::class, + ], + 'tables' => [ + [ + 'personas', + null, + 'p', + ], + ], + 'columns' => [ + 'cedula' => [ + 'type' => 'scalar', + 'balias' => 'cedula', + 'sqlAlias' => 'cedula', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'p', + 'name' => 'cedula', + 'balias' => 'borgerId', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT CONCAT(' . Personers::class . '.borgerId,\'-\',' . Personers::class . '.navnes) AS navne FROM ' . Personers::class, + "expected" => [ + 'models' => [ + Personers::class, + ], + 'tables' => [ + 'personas', + ], + 'columns' => [ + 'navne' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'functionCall', + 'name' => 'CONCAT', + 'arguments' => [ + [ + 'type' => 'qualified', + 'domain' => 'personas', + 'name' => 'cedula', + 'balias' => 'borgerId', + ], + [ + 'type' => 'literal', + 'value' => '\'-\'', + ], + [ + 'type' => 'qualified', + 'domain' => 'personas', + 'name' => 'nombres', + 'balias' => 'navnes', + ], + ], + ], + 'balias' => 'navne', + 'sqlAlias' => 'navne', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class . ' JOIN ' . RobottersDeles::class, + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'robots', + 'balias' => lcfirst(Robotters::class), + ], + lcfirst(RobottersDeles::class) => [ + 'type' => 'object', + 'model' => RobottersDeles::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobottersDeles::class), + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'robots_parts', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'code', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robottersCode', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class . ' CROSS JOIN ' . RobottersDeles::class, + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'robots', + 'balias' => lcfirst(Robotters::class), + ], + lcfirst(RobottersDeles::class) => [ + 'type' => 'object', + 'model' => RobottersDeles::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobottersDeles::class), + ], + ], + 'joins' => [ + [ + 'type' => 'CROSS', + 'source' => [ + 'robots_parts', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'code', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robottersCode', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class . ' LEFT JOIN ' . RobottersDeles::class . ' RIGHT JOIN ' . Deles::class, + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'robots', + 'balias' => lcfirst(Robotters::class), + ], + lcfirst(RobottersDeles::class) => [ + 'type' => 'object', + 'model' => RobottersDeles::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobottersDeles::class), + ], + lcfirst(Deles::class) => [ + 'type' => 'object', + 'model' => Deles::class, + 'column' => 'parts', + 'balias' => lcfirst(Deles::class), + ], + ], + 'joins' => [ + [ + 'type' => 'LEFT', + 'source' => [ + 'robots_parts', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'code', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robottersCode', + ], + ], + ], + ], + [ + 'type' => 'RIGHT', + 'source' => [ + 'parts', + null, + ], + 'conditions' => [ + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . RobottersDeles::class . ' LEFT OUTER JOIN ' . Robotters::class . ' RIGHT OUTER JOIN ' . Deles::class, + "expected" => [ + 'models' => [ + RobottersDeles::class, + ], + 'tables' => [ + 'robots_parts', + ], + 'columns' => [ + lcfirst(RobottersDeles::class) => [ + 'type' => 'object', + 'model' => RobottersDeles::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobottersDeles::class), + ], + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'robots', + 'balias' => lcfirst(Robotters::class), + ], + lcfirst(Deles::class) => [ + 'type' => 'object', + 'model' => Deles::class, + 'column' => 'parts', + 'balias' => lcfirst(Deles::class), + ], + ], + 'joins' => [ + [ + 'type' => 'LEFT', + 'source' => [ + 'robots', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robottersCode', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'code', + ], + ], + ], + ], + [ + 'type' => 'RIGHT', + 'source' => [ + 'parts', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'parts_id', + 'balias' => 'delesCode', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'parts', + 'name' => 'id', + 'balias' => 'code', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class . ' JOIN ' . RobottersDeles::class . ' ON ' . Robotters::class . '.code = ' . RobottersDeles::class . '.robottersCode', + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'robots', + 'balias' => lcfirst(Robotters::class), + ], + lcfirst(RobottersDeles::class) => [ + 'type' => 'object', + 'model' => RobottersDeles::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobottersDeles::class), + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'robots_parts', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'code', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robottersCode', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class . ' LEFT OUTER JOIN ' . RobottersDeles::class . ' ON ' . Robotters::class . '.code = ' . RobottersDeles::class . '.robottersCode AND ' . RobottersDeles::class . '.robottersCode = ' . Robotters::class . '.code WHERE ' . Robotters::class . '.code IS NULL', + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'robots', + 'balias' => lcfirst(Robotters::class), + ], + lcfirst(RobottersDeles::class) => [ + 'type' => 'object', + 'model' => RobottersDeles::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobottersDeles::class), + ], + ], + 'joins' => [ + [ + 'type' => 'LEFT', + 'source' => [ + 'robots_parts', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'code', + ], + 'right' => [ + 'type' => 'binary-op', + 'op' => 'AND', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robottersCode', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robottersCode', + ], + ], + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'code', + ], + ], + ], + ], + ], + 'where' => [ + 'type' => 'unary-op', + 'op' => ' IS NULL', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'code', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class . ' RIGHT OUTER JOIN ' . RobottersDeles::class . ' ON ' . Robotters::class . '.code = ' . RobottersDeles::class . '.robottersCode AND ' . RobottersDeles::class . '.robottersCode = ' . Robotters::class . '.code WHERE ' . RobottersDeles::class . '.robottersCode IS NOT NULL', + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'robots', + 'balias' => lcfirst(Robotters::class), + ], + lcfirst(RobottersDeles::class) => [ + 'type' => 'object', + 'model' => RobottersDeles::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobottersDeles::class), + ], + ], + 'joins' => [ + [ + 'type' => 'RIGHT', + 'source' => [ + 'robots_parts', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'code', + ], + 'right' => [ + 'type' => 'binary-op', + 'op' => 'AND', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robottersCode', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robottersCode', + ], + ], + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'code', + ], + ], + ], + ], + ], + 'where' => [ + 'type' => 'unary-op', + 'op' => ' IS NOT NULL', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robottersCode', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class . ' FULL OUTER JOIN ' . RobottersDeles::class, + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'robots', + 'balias' => lcfirst(Robotters::class), + ], + lcfirst(RobottersDeles::class) => [ + 'type' => 'object', + 'model' => RobottersDeles::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobottersDeles::class), + ], + ], + 'joins' => [ + [ + 'type' => 'FULL OUTER', + 'source' => [ + 'robots_parts', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'code', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robottersCode', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . RobottersDeles::class . ' JOIN ' . Robotters::class, + "expected" => [ + 'models' => [ + RobottersDeles::class, + ], + 'tables' => [ + 'robots_parts', + ], + 'columns' => [ + lcfirst(RobottersDeles::class) => [ + 'type' => 'object', + 'model' => RobottersDeles::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobottersDeles::class), + ], + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'robots', + 'balias' => lcfirst(Robotters::class), + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'robots', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robottersCode', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'code', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT r.*, p.* FROM ' . Robotters::class . ' AS r JOIN ' . RobottersDeles::class . ' AS p', + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + 'r' => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'r', + 'balias' => 'r', + ], + 'p' => [ + 'type' => 'object', + 'model' => RobottersDeles::class, + 'column' => 'p', + 'balias' => 'p', + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'robots_parts', + null, + 'p', + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'code', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'p', + 'name' => 'robots_id', + 'balias' => 'robottersCode', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class . ' AS r JOIN ' . RobottersDeles::class . ' AS p', + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'r', + 'balias' => lcfirst(Robotters::class), + ], + lcfirst(RobottersDeles::class) => [ + 'type' => 'object', + 'model' => RobottersDeles::class, + 'column' => 'p', + 'balias' => lcfirst(RobottersDeles::class), + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'robots_parts', + null, + 'p', + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'code', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'p', + 'name' => 'robots_id', + 'balias' => 'robottersCode', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT r.* FROM ' . Robotters::class . ' r INNER JOIN ' . RobottersDeles::class, + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + 'r' => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'r', + 'balias' => 'r', + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'robots_parts', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'code', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robottersCode', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . RobottersDeles::class . ' JOIN ' . Robotters::class, + "expected" => [ + 'models' => [ + RobottersDeles::class, + ], + 'tables' => [ + 'robots_parts', + ], + 'columns' => [ + lcfirst(RobottersDeles::class) => [ + 'type' => 'object', + 'model' => RobottersDeles::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobottersDeles::class), + ], + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'robots', + 'balias' => lcfirst(Robotters::class), + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'robots', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robottersCode', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'code', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT r.*, p.* FROM ' . Robotters::class . ' AS r JOIN ' . RobottersDeles::class . ' AS p', + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + 'r' => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'r', + 'balias' => 'r', + ], + 'p' => [ + 'type' => 'object', + 'model' => RobottersDeles::class, + 'column' => 'p', + 'balias' => 'p', + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'robots_parts', + null, + 'p', + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'code', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'p', + 'name' => 'robots_id', + 'balias' => 'robottersCode', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class . ' AS r JOIN ' . RobottersDeles::class . ' AS p', + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'r', + 'balias' => lcfirst(Robotters::class), + ], + lcfirst(RobottersDeles::class) => [ + 'type' => 'object', + 'model' => RobottersDeles::class, + 'column' => 'p', + 'balias' => lcfirst(RobottersDeles::class), + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'robots_parts', + null, + 'p', + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'code', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'p', + 'name' => 'robots_id', + 'balias' => 'robottersCode', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT r.* FROM ' . Robotters::class . ' r INNER JOIN ' . RobottersDeles::class, + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + 'r' => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'r', + 'balias' => 'r', + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'robots_parts', + null, + ], + 'conditions' => [ + [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'code', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robottersCode', + ], + ], + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT ( ' . Personers::class . '.kredit + 100) / (' . Products::class . '.price * 0.15) FROM ' . Personers::class . ' JOIN ' . Products::class, + "expected" => [ + 'models' => [ + Personers::class, + ], + 'tables' => [ + 'personas', + ], + 'columns' => [ + '_0' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'binary-op', + 'op' => '/', + 'left' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '+', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'personas', + 'name' => 'cupo', + 'balias' => 'kredit', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + ], + 'right' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '*', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'products', + 'name' => 'price', + 'balias' => 'price', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '0.15', + ], + ], + ], + ], + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'products', + null, + ], + 'conditions' => [ + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT ( ' . Personers::class . '.kredit + 100) / (' . SomeProducts::class . '.price * 0.15) AS price FROM ' . Personers::class . ' JOIN ' . SomeProducts::class, + "expected" => [ + 'models' => [ + Personers::class, + ], + 'tables' => [ + 'personas', + ], + 'columns' => [ + 'price' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'binary-op', + 'op' => '/', + 'left' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '+', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'personas', + 'name' => 'cupo', + 'balias' => 'kredit', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + ], + 'right' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '*', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'le_products', + 'name' => 'price', + 'balias' => 'price', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '0.15', + ], + ], + ], + ], + 'balias' => 'price', + 'sqlAlias' => 'price', + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'le_products', + null, + ], + 'conditions' => [ + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT (p.kredit + 100) / (s.price * 0.15) AS price FROM ' . Personers::class . ' AS p JOIN ' . SomeProducts::class . ' AS s', + "expected" => [ + 'models' => [ + Personers::class, + ], + 'tables' => [ + [ + 'personas', + null, + 'p', + ], + ], + 'columns' => [ + 'price' => [ + 'type' => 'scalar', + 'column' => [ + 'type' => 'binary-op', + 'op' => '/', + 'left' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '+', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'p', + 'name' => 'cupo', + 'balias' => 'kredit', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '100', + ], + ], + ], + 'right' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '*', + 'left' => [ + 'type' => 'qualified', + 'domain' => 's', + 'name' => 'price', + 'balias' => 'price', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '0.15', + ], + ], + ], + ], + 'balias' => 'price', + 'sqlAlias' => 'price', + ], + ], + 'joins' => [ + [ + 'type' => 'INNER', + 'source' => [ + 'le_products', + null, + 's', + ], + 'conditions' => [ + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class . ', ' . RobottersDeles::class, + "expected" => [ + 'models' => [ + Robotters::class, + RobottersDeles::class, + ], + 'tables' => [ + 'robots', + 'robots_parts', + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'robots', + 'balias' => lcfirst(Robotters::class), + ], + lcfirst(RobottersDeles::class) => [ + 'type' => 'object', + 'model' => RobottersDeles::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobottersDeles::class), + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class . ' r, ' . RobottersDeles::class . ' p', + "expected" => [ + 'models' => [ + Robotters::class, + RobottersDeles::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + [ + 'robots_parts', + null, + 'p', + ], + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'r', + 'balias' => lcfirst(Robotters::class), + ], + lcfirst(RobottersDeles::class) => [ + 'type' => 'object', + 'model' => RobottersDeles::class, + 'column' => 'p', + 'balias' => lcfirst(RobottersDeles::class), + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class . ' AS r, ' . RobottersDeles::class . ' AS p', + "expected" => [ + 'models' => [ + Robotters::class, + RobottersDeles::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + [ + 'robots_parts', + null, + 'p', + ], + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'r', + 'balias' => lcfirst(Robotters::class), + ], + lcfirst(RobottersDeles::class) => [ + 'type' => 'object', + 'model' => RobottersDeles::class, + 'column' => 'p', + 'balias' => lcfirst(RobottersDeles::class), + ], + ], + ], + ], + [ + "phql" => 'SELECT theName, delesCode FROM ' . Robotters::class . ' AS r, ' . RobottersDeles::class . ' AS p', + "expected" => [ + 'models' => [ + Robotters::class, + RobottersDeles::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + [ + 'robots_parts', + null, + 'p', + ], + ], + 'columns' => [ + 'theName' => [ + 'type' => 'scalar', + 'balias' => 'theName', + 'sqlAlias' => 'theName', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'theName', + ], + ], + 'delesCode' => [ + 'type' => 'scalar', + 'balias' => 'delesCode', + 'sqlAlias' => 'delesCode', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'p', + 'name' => 'parts_id', + 'balias' => 'delesCode', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class . ' AS r, ' . RobottersDeles::class . ' AS p WHERE r.code = p.robottersCode', + "expected" => [ + 'models' => [ + Robotters::class, + RobottersDeles::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + [ + 'robots_parts', + null, + 'p', + ], + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'r', + 'balias' => lcfirst(Robotters::class), + ], + lcfirst(RobottersDeles::class) => [ + 'type' => 'object', + 'model' => RobottersDeles::class, + 'column' => 'p', + 'balias' => lcfirst(RobottersDeles::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'code', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'p', + 'name' => 'robots_id', + 'balias' => 'robottersCode', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class . ', ' . RobottersDeles::class . ' WHERE ' . Robotters::class . '.code = ' . RobottersDeles::class . '.robottersCode', + "expected" => [ + 'models' => [ + Robotters::class, + RobottersDeles::class, + ], + 'tables' => [ + 'robots', + 'robots_parts', + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'robots', + 'balias' => lcfirst(Robotters::class), + ], + lcfirst(RobottersDeles::class) => [ + 'type' => 'object', + 'model' => RobottersDeles::class, + 'column' => 'robots_parts', + 'balias' => lcfirst(RobottersDeles::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'code', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robottersCode', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class . ' r WHERE NOT (r.theName = "shaggy") ORDER BY 1, r.theName', + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'r', + 'balias' => lcfirst(Robotters::class), + ], + ], + 'where' => [ + 'type' => 'unary-op', + 'op' => 'NOT ', + 'right' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'theName', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'shaggy\'', + ], + ], + ], + ], + 'order' => [ + [ + [ + 'type' => 'literal', + 'value' => '1', + ], + ], + [ + [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'theName', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class . ' r WHERE NOT (r.theName = "shaggy") ORDER BY 1 DESC, r.theName', + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'r', + 'balias' => lcfirst(Robotters::class), + ], + ], + 'where' => [ + 'type' => 'unary-op', + 'op' => 'NOT ', + 'right' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'theName', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'shaggy\'', + ], + ], + ], + ], + 'order' => [ + [ + [ + 'type' => 'literal', + 'value' => '1', + ], + 'DESC', + ], + [ + [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'theName', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class . ' r WHERE NOT (r.theName = "shaggy") ORDER BY 1, r.theName', + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'r', + 'balias' => lcfirst(Robotters::class), + ], + ], + 'where' => [ + 'type' => 'unary-op', + 'op' => 'NOT ', + 'right' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'theName', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'shaggy\'', + ], + ], + ], + ], + 'order' => [ + [ + [ + 'type' => 'literal', + 'value' => '1', + ], + ], + [ + [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'theName', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class . ' r WHERE r.theName <> "shaggy" ORDER BY 1, 2 LIMIT 5', + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'r', + 'balias' => lcfirst(Robotters::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '<>', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'theName', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'shaggy\'', + ], + ], + 'order' => [ + [ + [ + 'type' => 'literal', + 'value' => '1', + ], + ], + [ + [ + 'type' => 'literal', + 'value' => '2', + ], + ], + ], + 'limit' => [ + 'number' => [ + 'type' => 'literal', + 'value' => '5', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class . ' r WHERE r.theName <> "shaggy" ORDER BY 1 ASC, 2 DESC LIMIT 5', + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'r', + 'balias' => lcfirst(Robotters::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '<>', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'theName', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'shaggy\'', + ], + ], + 'order' => [ + [ + [ + 'type' => 'literal', + 'value' => '1', + ], + 'ASC', + ], + [ + [ + 'type' => 'literal', + 'value' => '2', + ], + 'DESC', + ], + ], + 'limit' => [ + 'number' => [ + 'type' => 'literal', + 'value' => '5', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class . ' GROUP BY ' . Robotters::class . '.theName', + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'robots', + 'balias' => lcfirst(Robotters::class), + ], + ], + 'group' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'theName', + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robotters::class . ' GROUP BY ' . Robotters::class . '.theName, ' . Robotters::class . '.code', + "expected" => [ + 'models' => [ + Robotters::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robotters::class) => [ + 'type' => 'object', + 'model' => Robotters::class, + 'column' => 'robots', + 'balias' => lcfirst(Robotters::class), + ], + ], + 'group' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'theName', + ], + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'code', + ], + ], + ], + ], + [ + // Issue 1011 + "phql" => 'SELECT * FROM ' . Robots::class . ' r LIMIT ?1,:limit:', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + [ + 'robots', + null, + 'r', + ], + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'r', + 'balias' => lcfirst(Robots::class), + ], + ], + 'limit' => [ + 'number' => [ + 'type' => 'placeholder', + 'value' => ':limit', + ], + 'offset' => [ + 'type' => 'placeholder', + 'value' => ':1', + ], + ], + ], + ], + [ + // SELECT DISTINCT + "phql" => 'SELECT DISTINCT id, name FROM ' . Robots::class, + "expected" => [ + 'distinct' => 1, + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + 'id' => [ + 'type' => 'scalar', + 'balias' => 'id', + 'sqlAlias' => 'id', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + ], + 'name' => [ + 'type' => 'scalar', + 'balias' => 'name', + 'sqlAlias' => 'name', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + ], + ], + [ + // SELECT ALL + "phql" => 'SELECT ALL id, name FROM ' . Robots::class, + "expected" => [ + 'distinct' => 0, + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + 'id' => [ + 'type' => 'scalar', + 'balias' => 'id', + 'sqlAlias' => 'id', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + ], + 'name' => [ + 'type' => 'scalar', + 'balias' => 'name', + 'sqlAlias' => 'name', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + ], + ], + [ + "phql" => 'SELECT * FROM ' . Robots::class . ' WHERE id IN (SELECT robots_id FROM ' . RobotsParts::class . ')', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + lcfirst(Robots::class) => [ + 'type' => 'object', + 'model' => Robots::class, + 'column' => 'robots', + 'balias' => lcfirst(Robots::class), + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => 'IN', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'select', + 'value' => [ + 'models' => [ + RobotsParts::class, + ], + 'tables' => [ + 'robots_parts', + ], + 'columns' => [ + 'robots_id' => [ + 'type' => 'scalar', + 'balias' => 'robots_id', + 'sqlAlias' => 'robots_id', + 'column' => [ + 'type' => 'qualified', + 'domain' => 'robots_parts', + 'name' => 'robots_id', + 'balias' => 'robots_id', + ], + ], + ], + ], + ], + ], + ], + ], + [ + // PR #13124, ISSUE #12971 + "phql" => 'SELECT UPPER(' . Robots::class . '.name) AS name FROM ' . Robots::class . ' WHERE ' . Robots::class . '.name = "Robotina"', + "expected" => [ + 'models' => [ + Robots::class, + ], + 'tables' => [ + 'robots', + ], + 'columns' => [ + 'name' => [ + 'type' => 'scalar', + 'balias' => 'name', + 'sqlAlias' => 'name', + 'column' => [ + 'type' => 'functionCall', + 'name' => 'UPPER', + 'arguments' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + ], + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '=', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + 'right' => [ + 'type' => 'literal', + 'value' => '\'Robotina\'', + ], + ], + ], + ], + ]; + } + + private function getExamplesInsert(): array + { + return [ + [ + [ + 'query' => 'INSERT INTO ' . Robots::class . ' VALUES (NULL, \'some robot\', 1945)', + ], + [ + 'model' => Robots::class, + 'table' => 'robots', + 'values' => [ + [ + 'type' => 322, + 'value' => ['type' => 'literal', 'value' => 'NULL',], + ], + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'some robot',], + ], + [ + 'type' => 258, + 'value' => ['type' => 'literal', 'value' => '1945',], + ], + ], + ], + ], + [ + [ + 'query' => 'insert into ' . strtolower(Robots::class) . ' values (null, \'some robot\', 1945)', + ], + [ + 'model' => strtolower(Robots::class), + 'table' => 'robots', + 'values' => [ + [ + 'type' => 322, + 'value' => ['type' => 'literal', 'value' => 'NULL',], + ], + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'some robot',], + ], + [ + 'type' => 258, + 'value' => ['type' => 'literal', 'value' => '1945',], + ], + ], + ], + ], + [ + [ + 'query' => 'INSERT INTO ' . SomeProducts::class . ' VALUES ("Some name", 100.15, current_date(), now())', + ], + [ + 'model' => SomeProducts::class, + 'table' => 'le_products', + 'values' => [ + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'Some name',], + ], + [ + 'type' => 259, + 'value' => ['type' => 'literal', 'value' => '100.15',], + ], + [ + 'type' => 350, + 'value' => ['type' => 'functionCall', 'name' => 'current_date',], + ], + [ + 'type' => 350, + 'value' => ['type' => 'functionCall', 'name' => 'now',], + ], + ], + ], + ], + [ + [ + 'query' => 'INSERT INTO ' . Robots::class . ' VALUES ((1+1000*:le_id:), CONCAT(\'some\', \'robot\'), 2011)', + ], + [ + 'model' => Robots::class, + 'table' => 'robots', + 'values' => [ + [ + 'type' => 356, + 'value' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '*', + 'left' => [ + 'type' => 'binary-op', + 'op' => '+', + 'left' => ['type' => 'literal', 'value' => '1',], + 'right' => ['type' => 'literal', 'value' => '1000',], + ], + 'right' => [ + 'type' => 'placeholder', + 'value' => ':le_id', + ], + ], + ], + ], + [ + 'type' => 350, + 'value' => [ + 'type' => 'functionCall', + 'name' => 'CONCAT', + 'arguments' => [ + ['type' => 'literal', 'value' => '\'some\'',], + ['type' => 'literal', 'value' => '\'robot\'',], + ], + ], + ], + [ + 'type' => 258, + 'value' => ['type' => 'literal', 'value' => '2011',], + ], + ], + ], + ], + [ + [ + 'query' => 'INSERT INTO ' . Robots::class . ' (name, type, year) VALUES (\'a name\', \'virtual\', ?0)', + ], + [ + 'model' => Robots::class, + 'table' => 'robots', + 'fields' => ['name', 'type', 'year',], + 'values' => [ + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'a name',], + ], + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'virtual',], + ], + [ + 'type' => 273, + 'value' => ['type' => 'placeholder', 'value' => ':0',], + ], + ], + ], + ], + [ + [ + 'query' => 'INSERT INTO ' . Robotters::class . ' VALUES (NULL, \'some robot\', 1945)', + ], + [ + 'model' => Robotters::class, + 'table' => 'robots', + 'values' => [ + [ + 'type' => 322, + 'value' => ['type' => 'literal', 'value' => 'NULL',], + ], + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'some robot',], + ], + [ + 'type' => 258, + 'value' => ['type' => 'literal', 'value' => '1945',], + ], + ], + ], + ], + [ + [ + 'query' => 'insert into ' . strtolower(Robotters::class) . ' values (null, \'some robot\', 1945)', + ], + [ + 'model' => strtolower(Robotters::class), + 'table' => 'robots', + 'values' => [ + [ + 'type' => 322, + 'value' => ['type' => 'literal', 'value' => 'NULL',], + ], + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'some robot',], + ], + [ + 'type' => 258, + 'value' => ['type' => 'literal', 'value' => '1945',], + ], + ], + ], + ], + [ + [ + 'query' => 'INSERT INTO ' . Robotters::class . ' VALUES ((1+1000*:le_id:), CONCAT(\'some\', \'robot\'), 2011)', + ], + [ + 'model' => Robotters::class, + 'table' => 'robots', + 'values' => [ + [ + 'type' => 356, + 'value' => [ + 'type' => 'parentheses', + 'left' => [ + 'type' => 'binary-op', + 'op' => '*', + 'left' => [ + 'type' => 'binary-op', + 'op' => '+', + 'left' => ['type' => 'literal', 'value' => '1',], + 'right' => ['type' => 'literal', 'value' => '1000',], + ], + 'right' => ['type' => 'placeholder', 'value' => ':le_id',], + ], + ], + ], + [ + 'type' => 350, + 'value' => [ + 'type' => 'functionCall', + 'name' => 'CONCAT', + 'arguments' => [ + ['type' => 'literal', 'value' => '\'some\'',], + ['type' => 'literal', 'value' => '\'robot\'',], + ], + ], + ], + [ + 'type' => 258, + 'value' => ['type' => 'literal', 'value' => '2011',], + ], + ], + ], + ], + [ + [ + 'query' => 'INSERT INTO ' . Robotters::class . ' (theName, theType, theYear) VALUES (\'a name\', \'virtual\', ?0)', + ], + [ + 'model' => Robotters::class, + 'table' => 'robots', + 'fields' => [ + 'theName', + 'theType', + 'theYear', + ], + 'values' => [ + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'a name',], + ], + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'virtual',], + ], + [ + 'type' => 273, + 'value' => ['type' => 'placeholder', 'value' => ':0',], + ], + ], + ], + ], + ]; + } + + private function getExamplesUpdate(): array + { + return [ + [ + [ + 'query' => 'UPDATE ' . Robots::class . ' SET name = \'some name\'', + ], + [ + 'tables' => ['robots',], + 'models' => [Robots::class,], + 'fields' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'values' => [ + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'some name',], + ], + ], + ], + ], + [ + [ + 'query' => 'UPDATE ' . Robots::class . ' SET ' . Robots::class . '.name = \'some name\'', + ], + [ + 'tables' => ['robots',], + 'models' => [Robots::class,], + 'fields' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'values' => [ + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'some name',], + ], + ], + ], + ], + [ + [ + 'query' => 'UPDATE ' . SomeProducts::class . ' SET ' . SomeProducts::class . '.name = "some name"', + ], + [ + 'tables' => ['le_products',], + 'models' => [SomeProducts::class,], + 'fields' => [ + [ + 'type' => 'qualified', + 'domain' => 'le_products', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'values' => [ + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'some name',], + ], + ], + ], + ], + [ + [ + 'query' => 'UPDATE ' . SomeProducts::class . ' p SET p.name = "some name"', + ], + [ + 'tables' => [ + ['le_products', null, 'p',], + ], + 'models' => [SomeProducts::class,], + 'fields' => [ + [ + 'type' => 'qualified', + 'domain' => 'p', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'values' => [ + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'some name',], + ], + ], + ], + ], + [ + [ + 'query' => 'UPDATE ' . Robots::class . ' SET ' . Robots::class . '.name = \'some name\', ' . Robots::class . '.year = 1990', + ], + [ + 'tables' => ['robots',], + 'models' => [Robots::class,], + 'fields' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'year', + 'balias' => 'year', + ], + ], + 'values' => [ + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'some name',], + ], + [ + 'type' => 258, + 'value' => ['type' => 'literal', 'value' => '1990',], + ], + ], + ], + ], + [ + [ + 'query' => 'UPDATE ' . SomeProducts::class . ' p SET p.name = "some name", p.year = 1990', + ], + [ + 'tables' => [ + ['le_products', null, 'p',], + ], + 'models' => [SomeProducts::class,], + 'fields' => [ + [ + 'type' => 'qualified', + 'domain' => 'p', + 'name' => 'name', + 'balias' => 'name', + ], + [ + 'type' => 'qualified', + 'domain' => 'p', + 'name' => 'year', + 'balias' => 'year', + ], + ], + 'values' => [ + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'some name',], + ], + [ + 'type' => 258, + 'value' => ['type' => 'literal', 'value' => '1990',], + ], + ], + ], + ], + [ + [ + 'query' => 'UPDATE ' . Robots::class . ' SET ' . Robots::class . '.name = \'some name\', ' . Robots::class . '.year = YEAR(current_date()) + ' . Robots::class . '.year', + ], + [ + 'tables' => ['robots',], + 'models' => [Robots::class,], + 'fields' => [ + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'name', + 'balias' => 'name', + ], + [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'year', + 'balias' => 'year', + ], + ], + 'values' => [ + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'some name',], + ], + [ + 'type' => 43, + 'value' => [ + 'type' => 'binary-op', + 'op' => '+', + 'left' => [ + 'type' => 'functionCall', + 'name' => 'YEAR', + 'arguments' => [ + ['type' => 'functionCall', 'name' => 'current_date',], + ], + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'robots', + 'name' => 'year', + 'balias' => 'year', + ], + ], + ], + ], + ], + ], + [ + [ + 'query' => 'UPDATE ' . Robots::class . ' AS r SET r.name = \'some name\', r.year = YEAR(current_date()) + r.year', + ], + [ + 'tables' => [ + ['robots', null, 'r',], + ], + 'models' => [Robots::class,], + 'fields' => [ + [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'name', + ], + [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'year', + 'balias' => 'year', + ], + ], + 'values' => [ + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'some name',], + ], + [ + 'type' => 43, + 'value' => [ + 'type' => 'binary-op', + 'op' => '+', + 'left' => [ + 'type' => 'functionCall', + 'name' => 'YEAR', + 'arguments' => [ + ['type' => 'functionCall', 'name' => 'current_date',], + ], + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'year', + 'balias' => 'year', + ], + ], + ], + ], + ], + ], + [ + [ + 'query' => 'UPDATE ' . Robots::class . ' AS r SET r.name = \'some name\' WHERE r.id > 100', + ], + [ + 'tables' => [ + ['robots', null, 'r',], + ], + 'models' => [Robots::class,], + 'fields' => [ + [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'values' => [ + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'some name',], + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => ['type' => 'literal', 'value' => '100',], + ], + ], + ], + [ + [ + 'query' => 'UPDATE ' . Robots::class . ' as r set r.name = \'some name\', r.year = r.year*2 where r.id > 100 and r.id <= 200', + ], + [ + 'tables' => [ + ['robots', null, 'r',], + ], + 'models' => [Robots::class,], + 'fields' => [ + [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'name', + ], + [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'year', + 'balias' => 'year', + ], + ], + 'values' => [ + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'some name',], + ], + [ + 'type' => 42, + 'value' => [ + 'type' => 'binary-op', + 'op' => '*', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'year', + 'balias' => 'year', + ], + 'right' => ['type' => 'literal', 'value' => '2',], + ], + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '<=', + 'left' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => [ + 'type' => 'binary-op', + 'op' => 'AND', + 'left' => [ + 'type' => 'literal', + 'value' => '100', + ], + 'right' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + ], + ], + 'right' => ['type' => 'literal', 'value' => '200',], + ], + ], + ], + [ + [ + 'query' => 'update ' . strtolower(Robots::class) . ' as r set r.name = \'some name\' LIMIT 10', + ], + [ + 'tables' => [ + ['robots', null, 'r',], + ], + 'models' => [strtolower(Robots::class),], + 'fields' => [ + [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'values' => [ + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'some name',], + ], + ], + 'limit' => [ + 'number' => ['type' => 'literal', 'value' => '10',], + ], + ], + ], + [ + [ + 'query' => 'UPDATE ' . Robots::class . ' r SET r.name = \'some name\' LIMIT 10', + ], + [ + 'tables' => [ + ['robots', null, 'r',], + ], + 'models' => [Robots::class,], + 'fields' => [ + [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'values' => [ + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'some name',], + ], + ], + 'limit' => [ + 'number' => ['type' => 'literal', 'value' => '10',], + ], + ], + ], + [ + [ + 'query' => 'UPDATE ' . Robots::class . ' AS r SET r.name = \'some name\' WHERE r.id > 100 LIMIT 10', + ], + [ + 'tables' => [ + ['robots', null, 'r',], + ], + 'models' => [Robots::class,], + 'fields' => [ + [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'values' => [ + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'some name',], + ], + ], + 'where' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => ['type' => 'literal', 'value' => '100',], + ], + 'limit' => [ + 'number' => ['type' => 'literal', 'value' => '10',], + ], + ], + ], + // Issue 1011 + [ + [ + 'query' => 'UPDATE ' . Robots::class . ' r SET r.name = \'some name\' LIMIT ?1', + ], + [ + 'tables' => [ + [ + 'robots', null, 'r', + ], + ], + 'models' => [Robots::class,], + 'fields' => [ + [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'name', + 'balias' => 'name', + ], + ], + 'values' => [ + [ + 'type' => 260, + 'value' => ['type' => 'literal', 'value' => 'some name',], + ], + ], + 'limit' => [ + 'number' => ['type' => 'placeholder', 'value' => ':1',], + ], + ], + ], + ]; + } + + private function getExamplesDelete(): array + { + return [ + [ + [ + 'query' => 'DELETE FROM ' . Robots::class, + ], + [ + 'tables' => ['robots',], + 'models' => [Robots::class,], + ], + ], + [ + [ + 'query' => 'DELETE FROM ' . Robots::class . ' AS r WHERE r.id > 100', + ], + [ + 'tables' => [ + ['robots', null, 'r',], + ], + 'models' => [Robots::class,], + 'where' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => ['type' => 'literal', 'value' => '100',], + ], + ], + ], + [ + [ + 'query' => 'DELETE FROM ' . Robots::class . ' as r WHERE r.id > 100', + ], + [ + 'tables' => [ + ['robots', null, 'r',], + ], + 'models' => [Robots::class,], + 'where' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => ['type' => 'literal', 'value' => '100',], + ], + ], + ], + [ + [ + 'query' => 'DELETE FROM ' . Robots::class . ' r LIMIT 10', + ], + [ + 'tables' => [ + ['robots', null, 'r',], + ], + 'models' => [ + Robots::class, + ], + 'limit' => [ + 'number' => ['type' => 'literal', 'value' => '10',], + ], + ], + ], + [ + [ + 'query' => 'DELETE FROM ' . Robots::class . ' r WHERE r.id > 100 LIMIT 10', + ], + [ + 'tables' => [ + ['robots', null, 'r',], + ], + 'models' => [Robots::class,], + 'where' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => ['type' => 'literal', 'value' => '100',], + ], + 'limit' => [ + 'number' => ['type' => 'literal', 'value' => '10',], + ], + ], + ], + // Issue 1011 + [ + [ + 'query' => 'DELETE FROM ' . Robots::class . ' r WHERE r.id > 100 LIMIT :limit:', + ], + [ + 'tables' => [ + ['robots', null, 'r',], + ], + 'models' => [Robots::class,], + 'where' => [ + 'type' => 'binary-op', + 'op' => '>', + 'left' => [ + 'type' => 'qualified', + 'domain' => 'r', + 'name' => 'id', + 'balias' => 'id', + ], + 'right' => ['type' => 'literal', 'value' => '100',], + ], + 'limit' => [ + 'number' => ['type' => 'placeholder', 'value' => ':limit',], + ], + ], + ], + ]; + } +} diff --git a/tests/integration/Mvc/Model/ReadAttributeCest.php b/tests/integration/Mvc/Model/ReadAttributeCest.php new file mode 100644 index 00000000000..909d33785cd --- /dev/null +++ b/tests/integration/Mvc/Model/ReadAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class ReadAttributeCest +{ + /** + * Tests Phalcon\Mvc\Model :: readAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelReadAttribute(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - readAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/RefreshCest.php b/tests/integration/Mvc/Model/RefreshCest.php new file mode 100644 index 00000000000..208e7174217 --- /dev/null +++ b/tests/integration/Mvc/Model/RefreshCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class RefreshCest +{ + /** + * Tests Phalcon\Mvc\Model :: refresh() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRefresh(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - refresh()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Relation/ConstructCest.php b/tests/integration/Mvc/Model/Relation/ConstructCest.php new file mode 100644 index 00000000000..1f26d720be9 --- /dev/null +++ b/tests/integration/Mvc/Model/Relation/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Relation; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model\Relation :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRelationConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Relation - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Relation/GetFieldsCest.php b/tests/integration/Mvc/Model/Relation/GetFieldsCest.php new file mode 100644 index 00000000000..88ea11f2a22 --- /dev/null +++ b/tests/integration/Mvc/Model/Relation/GetFieldsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Relation; + +use IntegrationTester; + +class GetFieldsCest +{ + /** + * Tests Phalcon\Mvc\Model\Relation :: getFields() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRelationGetFields(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Relation - getFields()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Relation/GetForeignKeyCest.php b/tests/integration/Mvc/Model/Relation/GetForeignKeyCest.php new file mode 100644 index 00000000000..d329a0f9eaa --- /dev/null +++ b/tests/integration/Mvc/Model/Relation/GetForeignKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Relation; + +use IntegrationTester; + +class GetForeignKeyCest +{ + /** + * Tests Phalcon\Mvc\Model\Relation :: getForeignKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRelationGetForeignKey(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Relation - getForeignKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Relation/GetIntermediateFieldsCest.php b/tests/integration/Mvc/Model/Relation/GetIntermediateFieldsCest.php new file mode 100644 index 00000000000..61c91bb9cd9 --- /dev/null +++ b/tests/integration/Mvc/Model/Relation/GetIntermediateFieldsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Relation; + +use IntegrationTester; + +class GetIntermediateFieldsCest +{ + /** + * Tests Phalcon\Mvc\Model\Relation :: getIntermediateFields() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRelationGetIntermediateFields(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Relation - getIntermediateFields()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Relation/GetIntermediateModelCest.php b/tests/integration/Mvc/Model/Relation/GetIntermediateModelCest.php new file mode 100644 index 00000000000..7b823f85b6b --- /dev/null +++ b/tests/integration/Mvc/Model/Relation/GetIntermediateModelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Relation; + +use IntegrationTester; + +class GetIntermediateModelCest +{ + /** + * Tests Phalcon\Mvc\Model\Relation :: getIntermediateModel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRelationGetIntermediateModel(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Relation - getIntermediateModel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Relation/GetIntermediateReferencedFieldsCest.php b/tests/integration/Mvc/Model/Relation/GetIntermediateReferencedFieldsCest.php new file mode 100644 index 00000000000..3b2034e8e12 --- /dev/null +++ b/tests/integration/Mvc/Model/Relation/GetIntermediateReferencedFieldsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Relation; + +use IntegrationTester; + +class GetIntermediateReferencedFieldsCest +{ + /** + * Tests Phalcon\Mvc\Model\Relation :: getIntermediateReferencedFields() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRelationGetIntermediateReferencedFields(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Relation - getIntermediateReferencedFields()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Relation/GetOptionCest.php b/tests/integration/Mvc/Model/Relation/GetOptionCest.php new file mode 100644 index 00000000000..a6bef847f55 --- /dev/null +++ b/tests/integration/Mvc/Model/Relation/GetOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Relation; + +use IntegrationTester; + +class GetOptionCest +{ + /** + * Tests Phalcon\Mvc\Model\Relation :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRelationGetOption(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Relation - getOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Relation/GetOptionsCest.php b/tests/integration/Mvc/Model/Relation/GetOptionsCest.php new file mode 100644 index 00000000000..d0d7ea55899 --- /dev/null +++ b/tests/integration/Mvc/Model/Relation/GetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Relation; + +use IntegrationTester; + +class GetOptionsCest +{ + /** + * Tests Phalcon\Mvc\Model\Relation :: getOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRelationGetOptions(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Relation - getOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Relation/GetParamsCest.php b/tests/integration/Mvc/Model/Relation/GetParamsCest.php new file mode 100644 index 00000000000..a535dcf1a36 --- /dev/null +++ b/tests/integration/Mvc/Model/Relation/GetParamsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Relation; + +use IntegrationTester; + +class GetParamsCest +{ + /** + * Tests Phalcon\Mvc\Model\Relation :: getParams() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRelationGetParams(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Relation - getParams()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Relation/GetReferencedFieldsCest.php b/tests/integration/Mvc/Model/Relation/GetReferencedFieldsCest.php new file mode 100644 index 00000000000..a4944d58897 --- /dev/null +++ b/tests/integration/Mvc/Model/Relation/GetReferencedFieldsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Relation; + +use IntegrationTester; + +class GetReferencedFieldsCest +{ + /** + * Tests Phalcon\Mvc\Model\Relation :: getReferencedFields() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRelationGetReferencedFields(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Relation - getReferencedFields()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Relation/GetReferencedModelCest.php b/tests/integration/Mvc/Model/Relation/GetReferencedModelCest.php new file mode 100644 index 00000000000..3c3a4cac278 --- /dev/null +++ b/tests/integration/Mvc/Model/Relation/GetReferencedModelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Relation; + +use IntegrationTester; + +class GetReferencedModelCest +{ + /** + * Tests Phalcon\Mvc\Model\Relation :: getReferencedModel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRelationGetReferencedModel(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Relation - getReferencedModel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Relation/GetTypeCest.php b/tests/integration/Mvc/Model/Relation/GetTypeCest.php new file mode 100644 index 00000000000..091b491a8bc --- /dev/null +++ b/tests/integration/Mvc/Model/Relation/GetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Relation; + +use IntegrationTester; + +class GetTypeCest +{ + /** + * Tests Phalcon\Mvc\Model\Relation :: getType() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRelationGetType(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Relation - getType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Relation/IsForeignKeyCest.php b/tests/integration/Mvc/Model/Relation/IsForeignKeyCest.php new file mode 100644 index 00000000000..e2af68835c6 --- /dev/null +++ b/tests/integration/Mvc/Model/Relation/IsForeignKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Relation; + +use IntegrationTester; + +class IsForeignKeyCest +{ + /** + * Tests Phalcon\Mvc\Model\Relation :: isForeignKey() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRelationIsForeignKey(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Relation - isForeignKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Relation/IsReusableCest.php b/tests/integration/Mvc/Model/Relation/IsReusableCest.php new file mode 100644 index 00000000000..49edb9f196c --- /dev/null +++ b/tests/integration/Mvc/Model/Relation/IsReusableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Relation; + +use IntegrationTester; + +class IsReusableCest +{ + /** + * Tests Phalcon\Mvc\Model\Relation :: isReusable() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRelationIsReusable(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Relation - isReusable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Relation/IsThroughCest.php b/tests/integration/Mvc/Model/Relation/IsThroughCest.php new file mode 100644 index 00000000000..e064e63a0e7 --- /dev/null +++ b/tests/integration/Mvc/Model/Relation/IsThroughCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Relation; + +use IntegrationTester; + +class IsThroughCest +{ + /** + * Tests Phalcon\Mvc\Model\Relation :: isThrough() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRelationIsThrough(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Relation - isThrough()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Relation/SetIntermediateRelationCest.php b/tests/integration/Mvc/Model/Relation/SetIntermediateRelationCest.php new file mode 100644 index 00000000000..455765aa791 --- /dev/null +++ b/tests/integration/Mvc/Model/Relation/SetIntermediateRelationCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Relation; + +use IntegrationTester; + +class SetIntermediateRelationCest +{ + /** + * Tests Phalcon\Mvc\Model\Relation :: setIntermediateRelation() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRelationSetIntermediateRelation(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Relation - setIntermediateRelation()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/RelationsCest.php b/tests/integration/Mvc/Model/RelationsCest.php new file mode 100644 index 00000000000..e0507b12c39 --- /dev/null +++ b/tests/integration/Mvc/Model/RelationsCest.php @@ -0,0 +1,69 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; +use Phalcon\Mvc\Model\Exception; +use Phalcon\Mvc\Model\Resultset\Simple; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Test\Models\AlbumORama\Albums; +use Phalcon\Test\Models\AlbumORama\Artists; +use Phalcon\Test\Models\Language; +use Phalcon\Test\Models\LanguageI18n; + +class RelationsCest +{ + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + $this->setDiSqlite(); + } + + /** + * Test get related record properly using composite key. + * + * @issue https://github.com/phalcon/cphalcon/issues/11755 + */ + public function shouldGetRelationRecordsUsingCompositeKey(IntegrationTester $I) + { + $I->skipTest('TODO - Check if tables exist'); + /** @var Language $entity */ + $entity = Language::findFirst(); + + $I->assertEquals('Dutch', $entity->lang); + $I->assertEquals('nl-be', $entity->locale); + + $I->assertInstanceOf(Simple::class, $entity->translations); + $I->assertInstanceOf(Simple::class, $entity->getTranslations()); + + $I->assertCount(2, $entity->translations); + + $I->assertInstanceOf(LanguageI18n::class, $entity->translations->getFirst()); + $I->assertEquals('Belgium-1', $entity->translations->getFirst()->locale); + } + + public function testRelationshipLoaded(IntegrationTester $I) + { + $I->skipTest('TODO - Check if tables exist'); + $hasManyModel = Artists::findFirst(); + $I->assertFalse($hasManyModel->isRelationshipLoaded('albums')); + $hasManyModel->albums; + $I->assertTrue($hasManyModel->isRelationshipLoaded('albums')); + + $belongsToModel = Albums::findFirst(); + $I->assertFalse($belongsToModel->isRelationshipLoaded('artist')); + $belongsToModel->artist; + $I->assertTrue($belongsToModel->isRelationshipLoaded('artist'))->equals(true); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/ConstructCest.php b/tests/integration/Mvc/Model/Resultset/Complex/ConstructCest.php new file mode 100644 index 00000000000..2a35c927835 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/CountCest.php b/tests/integration/Mvc/Model/Resultset/Complex/CountCest.php new file mode 100644 index 00000000000..b3bf69fad8f --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/CountCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class CountCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: count() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexCount(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - count()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/CurrentCest.php b/tests/integration/Mvc/Model/Resultset/Complex/CurrentCest.php new file mode 100644 index 00000000000..9afdfe89114 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/CurrentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class CurrentCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: current() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexCurrent(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - current()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/DeleteCest.php b/tests/integration/Mvc/Model/Resultset/Complex/DeleteCest.php new file mode 100644 index 00000000000..295f54484d7 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/DeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class DeleteCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: delete() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexDelete(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - delete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/FilterCest.php b/tests/integration/Mvc/Model/Resultset/Complex/FilterCest.php new file mode 100644 index 00000000000..d3a2c3c5e25 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/FilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class FilterCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: filter() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexFilter(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - filter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/GetCacheCest.php b/tests/integration/Mvc/Model/Resultset/Complex/GetCacheCest.php new file mode 100644 index 00000000000..a66563229d5 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/GetCacheCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class GetCacheCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: getCache() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexGetCache(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - getCache()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/GetFirstCest.php b/tests/integration/Mvc/Model/Resultset/Complex/GetFirstCest.php new file mode 100644 index 00000000000..855d17e7cf9 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/GetFirstCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class GetFirstCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: getFirst() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexGetFirst(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - getFirst()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/GetHydrateModeCest.php b/tests/integration/Mvc/Model/Resultset/Complex/GetHydrateModeCest.php new file mode 100644 index 00000000000..009a90cd242 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/GetHydrateModeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class GetHydrateModeCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: getHydrateMode() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexGetHydrateMode(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - getHydrateMode()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/GetLastCest.php b/tests/integration/Mvc/Model/Resultset/Complex/GetLastCest.php new file mode 100644 index 00000000000..c07b3d3290c --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/GetLastCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class GetLastCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: getLast() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexGetLast(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - getLast()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/GetMessagesCest.php b/tests/integration/Mvc/Model/Resultset/Complex/GetMessagesCest.php new file mode 100644 index 00000000000..9ce31dab950 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexGetMessages(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/GetTypeCest.php b/tests/integration/Mvc/Model/Resultset/Complex/GetTypeCest.php new file mode 100644 index 00000000000..a39ea64232d --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/GetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class GetTypeCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: getType() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexGetType(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - getType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/IsFreshCest.php b/tests/integration/Mvc/Model/Resultset/Complex/IsFreshCest.php new file mode 100644 index 00000000000..ccf335465a3 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/IsFreshCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class IsFreshCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: isFresh() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexIsFresh(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - isFresh()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/JsonSerializeCest.php b/tests/integration/Mvc/Model/Resultset/Complex/JsonSerializeCest.php new file mode 100644 index 00000000000..e11df3e84d0 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/JsonSerializeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class JsonSerializeCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: jsonSerialize() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexJsonSerialize(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - jsonSerialize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/KeyCest.php b/tests/integration/Mvc/Model/Resultset/Complex/KeyCest.php new file mode 100644 index 00000000000..42d0e3be3f9 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/KeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class KeyCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: key() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexKey(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - key()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/NextCest.php b/tests/integration/Mvc/Model/Resultset/Complex/NextCest.php new file mode 100644 index 00000000000..10053c93b74 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/NextCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class NextCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: next() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexNext(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - next()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/OffsetExistsCest.php b/tests/integration/Mvc/Model/Resultset/Complex/OffsetExistsCest.php new file mode 100644 index 00000000000..dbdc00dca69 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/OffsetExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class OffsetExistsCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: offsetExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexOffsetExists(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - offsetExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/OffsetGetCest.php b/tests/integration/Mvc/Model/Resultset/Complex/OffsetGetCest.php new file mode 100644 index 00000000000..644cc6499c5 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/OffsetGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class OffsetGetCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: offsetGet() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexOffsetGet(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - offsetGet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/OffsetSetCest.php b/tests/integration/Mvc/Model/Resultset/Complex/OffsetSetCest.php new file mode 100644 index 00000000000..6a47e273215 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/OffsetSetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class OffsetSetCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: offsetSet() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexOffsetSet(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - offsetSet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/OffsetUnsetCest.php b/tests/integration/Mvc/Model/Resultset/Complex/OffsetUnsetCest.php new file mode 100644 index 00000000000..d4d05fb2ab3 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/OffsetUnsetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class OffsetUnsetCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: offsetUnset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexOffsetUnset(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - offsetUnset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/RewindCest.php b/tests/integration/Mvc/Model/Resultset/Complex/RewindCest.php new file mode 100644 index 00000000000..ed4a9033d9e --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/RewindCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class RewindCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: rewind() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexRewind(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - rewind()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/SeekCest.php b/tests/integration/Mvc/Model/Resultset/Complex/SeekCest.php new file mode 100644 index 00000000000..2c52b14e9bd --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/SeekCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class SeekCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: seek() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexSeek(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - seek()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/SerializeCest.php b/tests/integration/Mvc/Model/Resultset/Complex/SerializeCest.php new file mode 100644 index 00000000000..58930c14d0e --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/SerializeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class SerializeCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: serialize() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexSerialize(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - serialize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/SetHydrateModeCest.php b/tests/integration/Mvc/Model/Resultset/Complex/SetHydrateModeCest.php new file mode 100644 index 00000000000..a65cebe4782 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/SetHydrateModeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class SetHydrateModeCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: setHydrateMode() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexSetHydrateMode(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - setHydrateMode()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/SetIsFreshCest.php b/tests/integration/Mvc/Model/Resultset/Complex/SetIsFreshCest.php new file mode 100644 index 00000000000..a72e0286291 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/SetIsFreshCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class SetIsFreshCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: setIsFresh() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexSetIsFresh(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - setIsFresh()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/ToArrayCest.php b/tests/integration/Mvc/Model/Resultset/Complex/ToArrayCest.php new file mode 100644 index 00000000000..1190f6c629d --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/ToArrayCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class ToArrayCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: toArray() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexToArray(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - toArray()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/UnserializeCest.php b/tests/integration/Mvc/Model/Resultset/Complex/UnserializeCest.php new file mode 100644 index 00000000000..cd26b054ec7 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/UnserializeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class UnserializeCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: unserialize() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexUnserialize(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - unserialize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/UpdateCest.php b/tests/integration/Mvc/Model/Resultset/Complex/UpdateCest.php new file mode 100644 index 00000000000..3640aa423d2 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/UpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class UpdateCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: update() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexUpdate(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - update()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Complex/ValidCest.php b/tests/integration/Mvc/Model/Resultset/Complex/ValidCest.php new file mode 100644 index 00000000000..03b0ff76bf2 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Complex/ValidCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; + +use IntegrationTester; + +class ValidCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Complex :: valid() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetComplexValid(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Complex - valid()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/ComplexCest.php b/tests/integration/Mvc/Model/Resultset/ComplexCest.php new file mode 100644 index 00000000000..510009a1bbe --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/ComplexCest.php @@ -0,0 +1,88 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; +use Phalcon\Test\Models\Robots; +use Phalcon\Test\Models\RobotsParts; +use Phalcon\Mvc\Model\Resultset\Complex; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class ComplexCest +{ + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + $this->setDiMysql(); + } + + /** + * Work with Complex Resultset by load data from the file cache (PHQL option). + * + * @author Phalcon Team + * @since 2012-12-28 + */ + public function shouldLoadResultsetFromCacheByUsingPhqlFile(IntegrationTester $I) + { + $cache = $this->getAndSetModelsCacheFile(); + $manager = $this->container->get('modelsManager'); + + $robots = $manager->executeQuery( + 'SELECT r.*, p.* FROM ' . Robots::class . ' r JOIN ' . RobotsParts::class . ' p ' + ); + + $I->assertInstanceOf(Complex::class, $robots); + $I->assertCount(3, $robots); + $I->assertEquals(3, $robots->count()); + + $cache->save('test-resultset', $robots); + + $I->amInPath(cacheFolder()); + $I->seeFileFound('test-resultset'); + + $robots = $cache->get('test-resultset'); + + $I->assertInstanceOf(Complex::class, $robots); + $I->assertCount(3, $robots); + $I->assertEquals(3, $robots->count()); + + $cache->delete('test-resultset'); + $I->amInPath(cacheFolder()); + $I->dontSeeFileFound('test-resultset'); + } + + public function shouldLoadResultsetFromCacheByUsingPhqlLibmemcached(IntegrationTester $I) + { + $cache = $this->getAndSetModelsCacheFileLibmemcached(); + $manager = $this->container->get('modelsManager'); + + $robots = $manager->executeQuery( + 'SELECT r.*, p.* FROM ' . Robots::class . ' r JOIN ' . RobotsParts::class . ' p ' + ); + + $I->assertInstanceOf(Complex::class, $robots); + $I->assertCount(3, $robots); + $I->assertEquals(3, $robots->count()); + + $cache->save('test-resultset', $robots); + + $robots = $cache->get('test-resultset'); + + $I->assertInstanceOf(Complex::class, $robots); + $I->assertCount(3, $robots); + $I->assertEquals(3, $robots->count()); + + $cache->delete('test-resultset'); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/ConstructCest.php b/tests/integration/Mvc/Model/Resultset/ConstructCest.php new file mode 100644 index 00000000000..395769409da --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/CountCest.php b/tests/integration/Mvc/Model/Resultset/CountCest.php new file mode 100644 index 00000000000..0d4d17607ee --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/CountCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class CountCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: count() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetCount(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - count()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/CurrentCest.php b/tests/integration/Mvc/Model/Resultset/CurrentCest.php new file mode 100644 index 00000000000..8d33b1a55b6 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/CurrentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class CurrentCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: current() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetCurrent(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - current()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/DeleteCest.php b/tests/integration/Mvc/Model/Resultset/DeleteCest.php new file mode 100644 index 00000000000..793fdf2ef35 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/DeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class DeleteCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: delete() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetDelete(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - delete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/FilterCest.php b/tests/integration/Mvc/Model/Resultset/FilterCest.php new file mode 100644 index 00000000000..f115744a147 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/FilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class FilterCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: filter() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetFilter(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - filter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/GetCacheCest.php b/tests/integration/Mvc/Model/Resultset/GetCacheCest.php new file mode 100644 index 00000000000..ffe4eeee348 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/GetCacheCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class GetCacheCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: getCache() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetGetCache(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - getCache()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/GetFirstCest.php b/tests/integration/Mvc/Model/Resultset/GetFirstCest.php new file mode 100644 index 00000000000..2d15dbe269e --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/GetFirstCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class GetFirstCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: getFirst() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetGetFirst(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - getFirst()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/GetHydrateModeCest.php b/tests/integration/Mvc/Model/Resultset/GetHydrateModeCest.php new file mode 100644 index 00000000000..6f007ee98c7 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/GetHydrateModeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class GetHydrateModeCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: getHydrateMode() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetGetHydrateMode(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - getHydrateMode()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/GetLastCest.php b/tests/integration/Mvc/Model/Resultset/GetLastCest.php new file mode 100644 index 00000000000..39ffe49dc6b --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/GetLastCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class GetLastCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: getLast() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetGetLast(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - getLast()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/GetMessagesCest.php b/tests/integration/Mvc/Model/Resultset/GetMessagesCest.php new file mode 100644 index 00000000000..999b3e0e42c --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetGetMessages(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/GetTypeCest.php b/tests/integration/Mvc/Model/Resultset/GetTypeCest.php new file mode 100644 index 00000000000..4d5c7e4df2b --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/GetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class GetTypeCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: getType() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetGetType(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - getType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/IsFreshCest.php b/tests/integration/Mvc/Model/Resultset/IsFreshCest.php new file mode 100644 index 00000000000..1613f2ba3d2 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/IsFreshCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class IsFreshCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: isFresh() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetIsFresh(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - isFresh()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/JsonSerializeCest.php b/tests/integration/Mvc/Model/Resultset/JsonSerializeCest.php new file mode 100644 index 00000000000..bd08a8e416b --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/JsonSerializeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class JsonSerializeCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: jsonSerialize() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetJsonSerialize(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - jsonSerialize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/KeyCest.php b/tests/integration/Mvc/Model/Resultset/KeyCest.php new file mode 100644 index 00000000000..9203423b4e8 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/KeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class KeyCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: key() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetKey(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - key()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/NextCest.php b/tests/integration/Mvc/Model/Resultset/NextCest.php new file mode 100644 index 00000000000..e87bebb2840 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/NextCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class NextCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: next() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetNext(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - next()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/OffsetExistsCest.php b/tests/integration/Mvc/Model/Resultset/OffsetExistsCest.php new file mode 100644 index 00000000000..87d111c6fd9 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/OffsetExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class OffsetExistsCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: offsetExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetOffsetExists(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - offsetExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/OffsetGetCest.php b/tests/integration/Mvc/Model/Resultset/OffsetGetCest.php new file mode 100644 index 00000000000..1f0b66e6ba7 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/OffsetGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class OffsetGetCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: offsetGet() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetOffsetGet(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - offsetGet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/OffsetSetCest.php b/tests/integration/Mvc/Model/Resultset/OffsetSetCest.php new file mode 100644 index 00000000000..9947d0cea20 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/OffsetSetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class OffsetSetCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: offsetSet() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetOffsetSet(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - offsetSet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/OffsetUnsetCest.php b/tests/integration/Mvc/Model/Resultset/OffsetUnsetCest.php new file mode 100644 index 00000000000..a84870fa36d --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/OffsetUnsetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class OffsetUnsetCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: offsetUnset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetOffsetUnset(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - offsetUnset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/RewindCest.php b/tests/integration/Mvc/Model/Resultset/RewindCest.php new file mode 100644 index 00000000000..41ea1eeeee2 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/RewindCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class RewindCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: rewind() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetRewind(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - rewind()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/SeekCest.php b/tests/integration/Mvc/Model/Resultset/SeekCest.php new file mode 100644 index 00000000000..b44f19a2945 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/SeekCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class SeekCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: seek() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSeek(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - seek()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/SerializeCest.php b/tests/integration/Mvc/Model/Resultset/SerializeCest.php new file mode 100644 index 00000000000..900f7bfd9eb --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/SerializeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class SerializeCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: serialize() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSerialize(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - serialize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/SetHydrateModeCest.php b/tests/integration/Mvc/Model/Resultset/SetHydrateModeCest.php new file mode 100644 index 00000000000..eb9339c8527 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/SetHydrateModeCest.php @@ -0,0 +1,579 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; +use Phalcon\Mvc\Model; +use Phalcon\Mvc\Model\Resultset; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Test\Models\People; +use Phalcon\Test\Models\Personers; +use Phalcon\Test\Models\Robots; +use Phalcon\Test\Models\Robotters; + +class SetHydrateModeCest +{ + use DiTrait; + + /** + * @param IntegrationTester $I + */ + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + } + + /** + * Tests Phalcon\Mvc\Model\Resultset :: setHydrateMode() - mysql + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSetHydrateModeMysql(IntegrationTester $I) + { + $message = 'Mvc\Model\Resultset - setHydrateMode() - Mysql'; + $this->setDiMysql(); + + $this->executeTestsNormal($I, $message); + $this->executeTestsNormalCastHydrate($I, $message); + $this->executeTestsRenamed($I, $message); + $this->executeTestsRenamedCastHydrate($I, $message); + $this->executeTestsNormalComplex($I, $message); + $this->executeTestsNormalComplexCastHydrate($I, $message); + } + + /** + * @param IntegrationTester $I + * @param string $message + */ + private function executeTestsNormal(IntegrationTester $I, string $message) + { + $I->skipTest('TODO = Check the numbers'); + $I->wantToTest($message . ' - normal'); + $number = 0; + $robots = Robots::find(); + + foreach ($robots as $robot) { + $I->assertInternalType('object', $robot); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $robot); + $number++; + } + + $robots->setHydrateMode(Resultset::HYDRATE_RECORDS); + foreach ($robots as $robot) { + $I->assertInternalType('object', $robot); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $robot); + $number++; + } + + $robots->setHydrateMode(Resultset::HYDRATE_ARRAYS); + foreach ($robots as $robot) { + $I->assertInternalType('array', $robot); + $I->assertCount(7, $robot); + $number++; + } + + $robots->setHydrateMode(Resultset::HYDRATE_OBJECTS); + foreach ($robots as $robot) { + $I->assertInternalType('object', $robot); + $I->assertInstanceOf('stdClass', $robot); + $number++; + } + + $I->assertEquals($number, 12); + + $number = 0; + + $people = People::find(['limit' => 33]); + + foreach ($people as $person) { + $I->assertInternalType('object', $person); + $I->assertInstanceOf('Phalcon\Test\Models\People', $person); + $number++; + } + + $people->setHydrateMode(Resultset::HYDRATE_RECORDS); + foreach ($people as $person) { + $I->assertInternalType('object', $person); + $I->assertInstanceOf('Phalcon\Test\Models\People', $person); + $number++; + } + + $people->setHydrateMode(Resultset::HYDRATE_ARRAYS); + foreach ($people as $person) { + $I->assertInternalType('array', $person); + $number++; + } + + $people->setHydrateMode(Resultset::HYDRATE_OBJECTS); + foreach ($people as $person) { + $I->assertInternalType('object', $person); + $I->assertInstanceOf('stdClass', $person); + $number++; + } + + $I->assertEquals($number, 33 * 4); + } + + /** + * @param IntegrationTester $I + * @param string $message + */ + private function executeTestsNormalCastHydrate(IntegrationTester $I, string $message) + { + $I->wantToTest($message . ' - normal castOnHydrate'); + Model::setup(['castOnHydrate' => true]); + + $number = 0; + + $robots = Robots::find(); + + foreach ($robots as $robot) { + $I->assertInternalType('object', $robot); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $robot); + $number++; + } + + $robots->setHydrateMode(Resultset::HYDRATE_RECORDS); + foreach ($robots as $robot) { + $I->assertInternalType('object', $robot); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $robot); + $number++; + } + + $robots->setHydrateMode(Resultset::HYDRATE_ARRAYS); + foreach ($robots as $robot) { + $I->assertInternalType('array', $robot); + $I->assertCount(7, $robot); + $number++; + } + + $robots->setHydrateMode(Resultset::HYDRATE_OBJECTS); + foreach ($robots as $robot) { + $I->assertInternalType('object', $robot); + $I->assertInstanceOf('stdClass', $robot); + $number++; + } + + $I->assertEquals($number, 12); + + $number = 0; + + $people = People::find(['limit' => 33]); + + foreach ($people as $person) { + $I->assertInternalType('object', $person); + $I->assertInstanceOf('Phalcon\Test\Models\People', $person); + $number++; + } + + $people->setHydrateMode(Resultset::HYDRATE_RECORDS); + foreach ($people as $person) { + $I->assertInternalType('object', $person); + $I->assertInstanceOf('Phalcon\Test\Models\People', $person); + $number++; + } + + $people->setHydrateMode(Resultset::HYDRATE_ARRAYS); + foreach ($people as $person) { + $I->assertInternalType('array', $person); + $number++; + } + + $people->setHydrateMode(Resultset::HYDRATE_OBJECTS); + foreach ($people as $person) { + $I->assertInternalType('object', $person); + $I->assertInstanceOf('stdClass', $person); + $number++; + } + + $I->assertEquals($number, 33 * 4); + + Model::setup(['castOnHydrate' => false]); + } + + /** + * @param IntegrationTester $I + * @param string $message + */ + private function executeTestsRenamed(IntegrationTester $I, string $message) + { + $I->wantToTest($message . ' - renamed'); + $number = 0; + + $robots = Robotters::find(); + + foreach ($robots as $robot) { + $I->assertInternalType('object', $robot); + $I->assertInstanceOf('Phalcon\Test\Models\Robotters', $robot); + $number++; + } + + $robots->setHydrateMode(Resultset::HYDRATE_RECORDS); + foreach ($robots as $robot) { + $I->assertInternalType('object', $robot); + $I->assertInstanceOf('Phalcon\Test\Models\Robotters', $robot); + $number++; + } + + $robots->setHydrateMode(Resultset::HYDRATE_ARRAYS); + foreach ($robots as $robot) { + $I->assertInternalType('array', $robot); + $I->assertCount(7, $robot); + $number++; + } + + $robots->setHydrateMode(Resultset::HYDRATE_OBJECTS); + foreach ($robots as $robot) { + $I->assertInternalType('object', $robot); + $I->assertInstanceOf('stdClass', $robot); + $number++; + } + + $I->assertEquals($number, 12); + + $number = 0; + + $people = Personers::find(['limit' => 33]); + + foreach ($people as $person) { + $I->assertInternalType('object', $person); + $I->assertInstanceOf('Phalcon\Test\Models\Personers', $person); + $number++; + } + + $people->setHydrateMode(Resultset::HYDRATE_RECORDS); + foreach ($people as $person) { + $I->assertInternalType('object', $person); + $I->assertInstanceOf('Phalcon\Test\Models\Personers', $person); + $number++; + } + + $people->setHydrateMode(Resultset::HYDRATE_ARRAYS); + + foreach ($people as $person) { + $I->assertInternalType('array', $person); + $I->assertTrue(isset($person['navnes'])); + $number++; + } + + $people->setHydrateMode(Resultset::HYDRATE_OBJECTS); + foreach ($people as $person) { + $I->assertInternalType('object', $person); + $I->assertInstanceOf('stdClass', $person); + $I->assertTrue(isset($person->navnes)); + $number++; + } + + $I->assertEquals($number, 33 * 4); + } + + /** + * @param IntegrationTester $I + * @param string $message + */ + private function executeTestsRenamedCastHydrate(IntegrationTester $I, string $message) + { + $I->wantToTest($message . ' - renamed castOnHydrate'); + + Model::setup(['castOnHydrate' => true]); + + $number = 0; + + $robots = Robotters::find(); + + foreach ($robots as $robot) { + $I->assertInternalType('object', $robot); + $I->assertInstanceOf('Phalcon\Test\Models\Robotters', $robot); + $number++; + } + + $robots->setHydrateMode(Resultset::HYDRATE_RECORDS); + foreach ($robots as $robot) { + $I->assertInternalType('object', $robot); + $I->assertInstanceOf('Phalcon\Test\Models\Robotters', $robot); + $number++; + } + + $robots->setHydrateMode(Resultset::HYDRATE_ARRAYS); + foreach ($robots as $robot) { + $I->assertInternalType('array', $robot); + $I->assertCount(7, $robot); + $number++; + } + + $robots->setHydrateMode(Resultset::HYDRATE_OBJECTS); + foreach ($robots as $robot) { + $I->assertInternalType('object', $robot); + $I->assertInstanceOf('stdClass', $robot); + $number++; + } + + $I->assertEquals($number, 12); + + $number = 0; + + $people = Personers::find(['limit' => 33]); + + foreach ($people as $person) { + $I->assertInternalType('object', $person); + $I->assertInstanceOf('Phalcon\Test\Models\Personers', $person); + $number++; + } + + $people->setHydrateMode(Resultset::HYDRATE_RECORDS); + foreach ($people as $person) { + $I->assertInternalType('object', $person); + $I->assertInstanceOf('Phalcon\Test\Models\Personers', $person); + $number++; + } + + $people->setHydrateMode(Resultset::HYDRATE_ARRAYS); + + foreach ($people as $person) { + $I->assertInternalType('array', $person); + $I->assertTrue(isset($person['navnes'])); + $number++; + } + + $people->setHydrateMode(Resultset::HYDRATE_OBJECTS); + foreach ($people as $person) { + $I->assertInternalType('object', $person); + $I->assertInstanceOf('stdClass', $person); + $I->assertTrue(isset($person->navnes)); + $number++; + } + + $I->assertEquals($number, 33 * 4); + + Model::setup(['castOnHydrate' => false]); + } + + /** + * @param IntegrationTester $I + * @param string $message + */ + private function executeTestsNormalComplex(IntegrationTester $I, string $message) + { + $I->wantToTest($message . ' - normal complex'); + $I->skipTest('TODO - check relationships'); + $container = $this->getDi(); + $manager = $container->get('modelsManager'); + $result = $manager + ->executeQuery('SELECT id FROM Phalcon\Test\Models\Robots'); + + //Scalar complex query + foreach ($result as $row) { + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $row); + $I->assertInternalType('numeric', $row->id); + } + + $result->setHydrateMode(Resultset::HYDRATE_RECORDS); + foreach ($result as $row) { + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $row); + $I->assertInternalType('numeric', $row->id); + } + + $result->setHydrateMode(Resultset::HYDRATE_ARRAYS); + foreach ($result as $row) { + $I->assertInternalType('array', $row); + $I->assertInternalType('numeric', $row['id']); + } + + $result->setHydrateMode(Resultset::HYDRATE_OBJECTS); + foreach ($result as $row) { + $I->assertInstanceOf('stdClass', $row); + $I->assertInternalType('numeric', $row->id); + } + + //Complex resultset including scalars and complete objects + $result = $manager + ->executeQuery( + 'SELECT Phalcon\Test\Models\Robots.id, ' . + 'Phalcon\Test\Models\Robots.*, ' . + 'Phalcon\Test\Models\RobotsParts.* ' . + 'FROM Phalcon\Test\Models\Robots ' . + 'JOIN Phalcon\Test\Models\RobotsParts' + ); + foreach ($result as $row) { + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $row); + $I->assertInternalType('numeric', $row->id); + $I->assertInternalType('object', $row->robots); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $row->robots); + $I->assertInternalType('object', $row->robotsParts); + $I->assertInstanceOf('Phalcon\Test\Models\RobotsParts', $row->robotsParts); + } + + $result->setHydrateMode(Resultset::HYDRATE_RECORDS); + foreach ($result as $row) { + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $row); + $I->assertInternalType('numeric', $row->id); + $I->assertInternalType('object', $row->robots); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $row->robots); + $I->assertInternalType('object', $row->robotsParts); + $I->assertInstanceOf('Phalcon\Test\Models\RobotsParts', $row->robotsParts); + } + + $result->setHydrateMode(Resultset::HYDRATE_ARRAYS); + foreach ($result as $row) { + $I->assertInternalType('array', $row); + $I->assertInternalType('numeric', $row['id']); + $I->assertInternalType('array', $row['robots']); + $I->assertCount(7, $row['robots']); + $I->assertInternalType('array', $row['robotsParts']); + $I->assertCount(3, $row['robotsParts']); + } + + $result->setHydrateMode(Resultset::HYDRATE_OBJECTS); + foreach ($result as $row) { + $I->assertInstanceOf('stdClass', $row); + $I->assertInternalType('numeric', $row->id); + $I->assertInternalType('object', $row->robots); + $I->assertInstanceOf('stdClass', $row->robots); + $I->assertInternalType('object', $row->robotsParts); + $I->assertInstanceOf('stdClass', $row->robotsParts); + } + } + + /** + * @param IntegrationTester $I + * @param string $message + */ + private function executeTestsNormalComplexCastHydrate(IntegrationTester $I, string $message) + { + $I->wantToTest($message . ' - castOnHydrate'); + Model::setup(['castOnHydrate' => true]); + + $container = $this->getDi(); + $manager = $container->get('modelsManager'); + $result = $manager + ->executeQuery('SELECT id FROM Phalcon\Test\Models\Robots'); + + //Scalar complex query + foreach ($result as $row) { + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $row); + $I->assertInternalType('numeric', $row->id); + } + + $result->setHydrateMode(Resultset::HYDRATE_RECORDS); + foreach ($result as $row) { + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $row); + $I->assertInternalType('numeric', $row->id); + } + + $result->setHydrateMode(Resultset::HYDRATE_ARRAYS); + foreach ($result as $row) { + $I->assertInternalType('array', $row); + $I->assertInternalType('numeric', $row['id']); + } + + $result->setHydrateMode(Resultset::HYDRATE_OBJECTS); + foreach ($result as $row) { + $I->assertInstanceOf('stdClass', $row); + $I->assertInternalType('numeric', $row->id); + } + + // Complex resultset including scalars and complete objects + $result = $manager + ->executeQuery( + 'SELECT Phalcon\Test\Models\Robots.id, ' . + 'Phalcon\Test\Models\Robots.*, ' . + 'Phalcon\Test\Models\RobotsParts.* ' . + 'FROM Phalcon\Test\Models\Robots ' . + 'JOIN Phalcon\Test\Models\RobotsParts' + ); + foreach ($result as $row) { + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $row); + $I->assertInternalType('numeric', $row->id); + $I->assertInternalType('object', $row->robots); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $row->robots); + $I->assertInternalType('object', $row->robotsParts); + $I->assertInstanceOf('Phalcon\Test\Models\RobotsParts', $row->robotsParts); + } + + $result->setHydrateMode(Resultset::HYDRATE_RECORDS); + foreach ($result as $row) { + $I->assertInstanceOf('Phalcon\Mvc\Model\Row', $row); + $I->assertInternalType('numeric', $row->id); + $I->assertInternalType('object', $row->robots); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $row->robots); + $I->assertInternalType('object', $row->robotsParts); + $I->assertInstanceOf('Phalcon\Test\Models\RobotsParts', $row->robotsParts); + } + + $result->setHydrateMode(Resultset::HYDRATE_ARRAYS); + foreach ($result as $row) { + $I->assertInternalType('array', $row); + $I->assertInternalType('numeric', $row['id']); + $I->assertInternalType('array', $row['robots']); + $I->assertCount(7, $row['robots']); + $I->assertInternalType('array', $row['robotsParts']); + $I->assertCount(3, $row['robotsParts']); + } + + $result->setHydrateMode(Resultset::HYDRATE_OBJECTS); + foreach ($result as $row) { + $I->assertInstanceOf('stdClass', $row); + $I->assertInternalType('numeric', $row->id); + $I->assertInternalType('object', $row->robots); + $I->assertInstanceOf('stdClass', $row->robots); + $I->assertInternalType('object', $row->robotsParts); + $I->assertInstanceOf('stdClass', $row->robotsParts); + } + + Model::setup(['castOnHydrate' => false]); + } + + /** + * Tests Phalcon\Mvc\Model\Resultset :: setHydrateMode() - mysql + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSetHydrateModePostgresql(IntegrationTester $I) + { + $message = 'Mvc\Model\Resultset - setHydrateMode() - Postgresql'; + $this->setDiPostgresql(); + + $this->executeTestsNormal($I, $message); + $this->executeTestsNormalCastHydrate($I, $message); + $this->executeTestsRenamed($I, $message); + $this->executeTestsRenamedCastHydrate($I, $message); + $this->executeTestsNormalComplex($I, $message); + $this->executeTestsNormalComplexCastHydrate($I, $message); + } + + /** + * Tests Phalcon\Mvc\Model\Resultset :: setHydrateMode() - Sqlite + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSetHydrateModeSqlite(IntegrationTester $I) + { + $message = 'Mvc\Model\Resultset - setHydrateMode() - Sqlite'; + $this->setDiSqlite(); + + $this->executeTestsNormal($I, $message); + $this->executeTestsNormalCastHydrate($I, $message); + $this->executeTestsRenamed($I, $message); + $this->executeTestsRenamedCastHydrate($I, $message); + $this->executeTestsNormalComplex($I, $message); + $this->executeTestsNormalComplexCastHydrate($I, $message); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/SetIsFreshCest.php b/tests/integration/Mvc/Model/Resultset/SetIsFreshCest.php new file mode 100644 index 00000000000..285ca76787f --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/SetIsFreshCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class SetIsFreshCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: setIsFresh() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSetIsFresh(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - setIsFresh()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/ConstructCest.php b/tests/integration/Mvc/Model/Resultset/Simple/ConstructCest.php new file mode 100644 index 00000000000..2a7ac9ee3f5 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/CountCest.php b/tests/integration/Mvc/Model/Resultset/Simple/CountCest.php new file mode 100644 index 00000000000..47510cdd9d1 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/CountCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class CountCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: count() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleCount(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - count()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/CurrentCest.php b/tests/integration/Mvc/Model/Resultset/Simple/CurrentCest.php new file mode 100644 index 00000000000..ab4e4d47762 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/CurrentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class CurrentCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: current() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleCurrent(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - current()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/DeleteCest.php b/tests/integration/Mvc/Model/Resultset/Simple/DeleteCest.php new file mode 100644 index 00000000000..994faab7e26 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/DeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class DeleteCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: delete() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleDelete(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - delete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/FilterCest.php b/tests/integration/Mvc/Model/Resultset/Simple/FilterCest.php new file mode 100644 index 00000000000..1de624a0c05 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/FilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class FilterCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: filter() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleFilter(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - filter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/GetCacheCest.php b/tests/integration/Mvc/Model/Resultset/Simple/GetCacheCest.php new file mode 100644 index 00000000000..85330669e46 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/GetCacheCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class GetCacheCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: getCache() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleGetCache(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - getCache()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/GetFirstCest.php b/tests/integration/Mvc/Model/Resultset/Simple/GetFirstCest.php new file mode 100644 index 00000000000..208566aea65 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/GetFirstCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class GetFirstCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: getFirst() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleGetFirst(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - getFirst()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/GetHydrateModeCest.php b/tests/integration/Mvc/Model/Resultset/Simple/GetHydrateModeCest.php new file mode 100644 index 00000000000..95cb19910f4 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/GetHydrateModeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class GetHydrateModeCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: getHydrateMode() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleGetHydrateMode(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - getHydrateMode()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/GetLastCest.php b/tests/integration/Mvc/Model/Resultset/Simple/GetLastCest.php new file mode 100644 index 00000000000..a7ad658f4f2 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/GetLastCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class GetLastCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: getLast() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleGetLast(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - getLast()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/GetMessagesCest.php b/tests/integration/Mvc/Model/Resultset/Simple/GetMessagesCest.php new file mode 100644 index 00000000000..e42a4bc1bac --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleGetMessages(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/GetTypeCest.php b/tests/integration/Mvc/Model/Resultset/Simple/GetTypeCest.php new file mode 100644 index 00000000000..f62cb204934 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/GetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class GetTypeCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: getType() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleGetType(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - getType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/IsFreshCest.php b/tests/integration/Mvc/Model/Resultset/Simple/IsFreshCest.php new file mode 100644 index 00000000000..0e5113dafb2 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/IsFreshCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class IsFreshCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: isFresh() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleIsFresh(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - isFresh()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/JsonSerializeCest.php b/tests/integration/Mvc/Model/Resultset/Simple/JsonSerializeCest.php new file mode 100644 index 00000000000..34565f8e993 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/JsonSerializeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class JsonSerializeCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: jsonSerialize() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleJsonSerialize(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - jsonSerialize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/KeyCest.php b/tests/integration/Mvc/Model/Resultset/Simple/KeyCest.php new file mode 100644 index 00000000000..8106c8f0f42 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/KeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class KeyCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: key() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleKey(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - key()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/NextCest.php b/tests/integration/Mvc/Model/Resultset/Simple/NextCest.php new file mode 100644 index 00000000000..f2ccb48af3b --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/NextCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class NextCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: next() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleNext(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - next()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/OffsetExistsCest.php b/tests/integration/Mvc/Model/Resultset/Simple/OffsetExistsCest.php new file mode 100644 index 00000000000..8ab2ae8d9de --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/OffsetExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class OffsetExistsCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: offsetExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleOffsetExists(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - offsetExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/OffsetGetCest.php b/tests/integration/Mvc/Model/Resultset/Simple/OffsetGetCest.php new file mode 100644 index 00000000000..f378fdabb71 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/OffsetGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class OffsetGetCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: offsetGet() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleOffsetGet(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - offsetGet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/OffsetSetCest.php b/tests/integration/Mvc/Model/Resultset/Simple/OffsetSetCest.php new file mode 100644 index 00000000000..f1298c9d682 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/OffsetSetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class OffsetSetCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: offsetSet() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleOffsetSet(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - offsetSet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/OffsetUnsetCest.php b/tests/integration/Mvc/Model/Resultset/Simple/OffsetUnsetCest.php new file mode 100644 index 00000000000..b62702d5777 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/OffsetUnsetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class OffsetUnsetCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: offsetUnset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleOffsetUnset(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - offsetUnset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/RewindCest.php b/tests/integration/Mvc/Model/Resultset/Simple/RewindCest.php new file mode 100644 index 00000000000..d844e6744cf --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/RewindCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class RewindCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: rewind() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleRewind(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - rewind()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/SeekCest.php b/tests/integration/Mvc/Model/Resultset/Simple/SeekCest.php new file mode 100644 index 00000000000..9d948c60b6b --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/SeekCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class SeekCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: seek() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleSeek(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - seek()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/SerializeCest.php b/tests/integration/Mvc/Model/Resultset/Simple/SerializeCest.php new file mode 100644 index 00000000000..f5a6f222ab6 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/SerializeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class SerializeCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: serialize() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleSerialize(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - serialize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/SetHydrateModeCest.php b/tests/integration/Mvc/Model/Resultset/Simple/SetHydrateModeCest.php new file mode 100644 index 00000000000..c4e4d1fa7e7 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/SetHydrateModeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class SetHydrateModeCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: setHydrateMode() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleSetHydrateMode(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - setHydrateMode()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/SetIsFreshCest.php b/tests/integration/Mvc/Model/Resultset/Simple/SetIsFreshCest.php new file mode 100644 index 00000000000..c2cb64d557e --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/SetIsFreshCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class SetIsFreshCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: setIsFresh() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleSetIsFresh(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - setIsFresh()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/ToArrayCest.php b/tests/integration/Mvc/Model/Resultset/Simple/ToArrayCest.php new file mode 100644 index 00000000000..a9e7211d39d --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/ToArrayCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class ToArrayCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: toArray() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleToArray(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - toArray()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/UnserializeCest.php b/tests/integration/Mvc/Model/Resultset/Simple/UnserializeCest.php new file mode 100644 index 00000000000..0e546ecb355 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/UnserializeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class UnserializeCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: unserialize() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleUnserialize(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - unserialize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/UpdateCest.php b/tests/integration/Mvc/Model/Resultset/Simple/UpdateCest.php new file mode 100644 index 00000000000..323691ecab6 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/UpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class UpdateCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: update() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleUpdate(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - update()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/Simple/ValidCest.php b/tests/integration/Mvc/Model/Resultset/Simple/ValidCest.php new file mode 100644 index 00000000000..888f5413137 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/Simple/ValidCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; + +use IntegrationTester; + +class ValidCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset\Simple :: valid() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetSimpleValid(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset\Simple - valid()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/SimpleCest.php b/tests/integration/Mvc/Model/Resultset/SimpleCest.php new file mode 100644 index 00000000000..a029b20253b --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/SimpleCest.php @@ -0,0 +1,259 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use function cacheFolder; +use IntegrationTester; +use Phalcon\Test\Models\Robots; +use Phalcon\Test\Models\People; +use Phalcon\Mvc\Model\Resultset\Simple; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class SimpleCest +{ + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + $this->setDiMysql(); + $I->cleanDir(cacheFolder()); + } + + /** + * Work with Simple Resultset by load data from the file cache (complete PHQL option). + * + * @test + * @author Phalcon Team + * @since 2012-11-20 + */ + public function shouldLoadResultsetFromCacheByUsingCompletePhql(IntegrationTester $I) + { + $I->skipTest('TODO - Check the counts'); + $cache = $this->getAndSetModelsCacheFile(); + $manager = $this->getService('modelsManager'); + + $robots = $manager->executeQuery('SELECT * FROM ' . Robots::class); + + $I->assertInstanceOf(Simple::class, $robots); + $I->assertCount(3, $robots); + $I->assertEquals($robots->count(), 3); + + $cache->save('test-resultset', $robots); + + $I->amInPath(cacheFolder()); + $I->seeFileFound('test-resultset'); + + $robots = $cache->get('test-resultset'); + + $I->assertInstanceOf(Simple::class, $robots); + $I->assertCount(3, $robots); + $I->assertEquals($robots->count(), 3); + $cache->delete('test-resultset'); + + $I->amInPath(cacheFolder()); + $I->dontSeeFileFound('test-resultset'); + } + + /** + * Work with Simple Resultset by load data from the file cache (incomplete PHQL option). + * + * @author Phalcon Team + * @since 2012-12-28 + */ + public function shouldLoadResultsetFromCacheByUsingIncompletePhql(IntegrationTester $I) + { + $I->skipTest('TODO = Check the numbers'); + $cache = $this->getAndSetModelsCacheFile(); + $manager = $this->getService('modelsManager'); + + $robots = $manager->executeQuery('SELECT id FROM ' . Robots::class); + + $I->assertInstanceOf(Simple::class, $robots); + $I->assertCount(3, $robots); + $I->assertEquals($robots->count(), 3); + + $cache->save('test-resultset', $robots); + + $I->amInPath(cacheFolder()); + $I->seeFileFound('test-resultset'); + + $robots = $cache->get('test-resultset'); + + $I->assertInstanceOf(Simple::class, $robots); + $I->assertCount(3, $robots); + $I->assertEquals($robots->count(), 3); + + $cache->delete('test-resultset'); + $I->amInPath(cacheFolder()); + $I->dontSeeFileFound('test-resultset'); + } + + /** + * Work with Simple Resultset by load data from the file cache. + * + * @test + * @author Phalcon Team + * @since 2012-11-20 + */ + public function shouldLoadResultsetFromCache(IntegrationTester $I) + { + $I->skipTest('TODO = Check the numbers'); + $cache = $this->getAndSetModelsCacheFile(); + + $robots = Robots::find(['order' => 'id']); + + $I->assertInstanceOf(Simple::class, $robots); + $I->assertCount(3, $robots); + $I->assertEquals($robots->count(), 3); + + $cache->save('test-resultset', $robots); + + $I->amInPath(cacheFolder()); + $I->seeFileFound('test-resultset'); + + $robots = $cache->get('test-resultset'); + + $I->assertInstanceOf(Simple::class, $robots); + $I->assertCount(3, $robots); + $I->assertEquals($robots->count(), 3); + + $cache->delete('test-resultset'); + $I->amInPath(cacheFolder()); + $I->dontSeeFileFound('test-resultset'); + } + + /** + * Work with Simple Resultset with binding by load data from the file cache. + * + * @test + * @author Phalcon Team + * @since 2012-11-20 + */ + public function shouldLoadResultsetWithBindingFromCache(IntegrationTester $I) + { + $cache = $this->getAndSetModelsCacheFile(); + $manager = $this->getService('modelsManager'); + + $initialId = 0; + $finalId = 4; + + $robots = Robots::find([ + 'conditions' => 'id > :id1: and id < :id2:', + 'bind' => ['id1' => $initialId, 'id2' => $finalId], + 'order' => 'id' + ]); + + $I->assertInstanceOf(Simple::class, $robots); + $I->assertCount(3, $robots); + $I->assertEquals($robots->count(), 3); + + $cache->save('test-resultset', $robots); + + $I->amInPath(cacheFolder()); + $I->seeFileFound('test-resultset'); + + $robots = $cache->get('test-resultset'); + + $I->assertInstanceOf(Simple::class, $robots); + $I->assertCount(3, $robots); + $I->assertEquals($robots->count(), 3); + + $cache->delete('test-resultset'); + $I->amInPath(cacheFolder()); + $I->dontSeeFileFound('test-resultset'); + } + + /** + * Work with Simple Resultset by load data from cache (Libmemcached adapter). + * + * @author kjdev + * @since 2013-07-25 + */ + public function shouldLoadResultsetFromLibmemcached(IntegrationTester $I) + { + $cache = $this->getAndSetModelsCacheFileLibmemcached(); + + $key = 'test-resultset-'.mt_rand(0, 9999); + // Single + $people = People::findFirst([ + 'cache' => [ + 'key' => $key + ] + ]); + + $I->assertInstanceOf(People::class, $people); + + $people = $cache->get($key); + $I->assertInstanceOf(People::class, $people->getFirst()); + + $people = $cache->get($key); + $I->assertInstanceOf(People::class, $people->getFirst()); + + // Re-get from the cache + $people = People::findFirst([ + 'cache' => [ + 'key' => $key + ] + ]); + + $I->assertInstanceOf(People::class, $people); + + $key = 'test-resultset-'.mt_rand(0, 9999); + + // Multiple + $people = People::find([ + 'limit' => 35, + 'cache' => [ + 'key' => $key + ] + ]); + + $number = 0; + foreach ($people as $individual) { + $I->assertInstanceOf(People::class, $individual); + $number++; + } + + $I->assertEquals($number, 35); + + $people = $cache->get($key); + $I->assertInstanceOf(Simple::class, $people); + + $number = 0; + foreach ($people as $individual) { + $I->assertInstanceOf(People::class, $individual); + $number++; + } + + $I->assertEquals($number, 35); + + $people = $cache->get($key); + $I->assertInstanceOf(Simple::class, $people); + + // Re-get the data from the cache + $people = People::find([ + 'limit' => 35, + 'cache' => [ + 'key' => $key + ] + ]); + + $number = 0; + foreach ($people as $individual) { + $I->assertInstanceOf(People::class, $individual); + $number++; + } + + $I->assertEquals($number, 35); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/ToArrayCest.php b/tests/integration/Mvc/Model/Resultset/ToArrayCest.php new file mode 100644 index 00000000000..06214a9bd5d --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/ToArrayCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class ToArrayCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: toArray() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetToArray(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - toArray()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/UnserializeCest.php b/tests/integration/Mvc/Model/Resultset/UnserializeCest.php new file mode 100644 index 00000000000..65273857b8f --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/UnserializeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class UnserializeCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: unserialize() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetUnserialize(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - unserialize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/UpdateCest.php b/tests/integration/Mvc/Model/Resultset/UpdateCest.php new file mode 100644 index 00000000000..f94de5f0314 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/UpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class UpdateCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: update() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetUpdate(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - update()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Resultset/ValidCest.php b/tests/integration/Mvc/Model/Resultset/ValidCest.php new file mode 100644 index 00000000000..d9f69598532 --- /dev/null +++ b/tests/integration/Mvc/Model/Resultset/ValidCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Resultset; + +use IntegrationTester; + +class ValidCest +{ + /** + * Tests Phalcon\Mvc\Model\Resultset :: valid() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelResultsetValid(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Resultset - valid()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/ResultsetClassCest.php b/tests/integration/Mvc/Model/ResultsetClassCest.php new file mode 100644 index 00000000000..8af0d43092a --- /dev/null +++ b/tests/integration/Mvc/Model/ResultsetClassCest.php @@ -0,0 +1,86 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; +use Phalcon\Mvc\Model\Exception; +use Phalcon\Mvc\Model\Resultset\Simple; +use Phalcon\Test\Resultsets\Stats; +use Phalcon\Test\Models\Statistics\GenderStats; +use Phalcon\Test\Models\Statistics\AgeStats; +use Phalcon\Test\Models\Statistics\CityStats; +use Phalcon\Test\Models\Statistics\CountryStats; +use Phalcon\Test\Fixtures\Traits\DiTrait; + +class ResultsetClassCest +{ + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + $this->setDiMysql(); + } + + /** + * Checks if resultset class Simple is returned when getResultsetClass() method is not defined + * + * @author Eugene Smirnov + */ + public function testDefaultResultsetClass(IntegrationTester $I) + { + $I->assertInstanceOf(Simple::class, CityStats::find()); + } + + /** + * Checks if custom resultset object is returned when getResultsetClass() method is presented in model + * + * @author Eugene Smirnov + */ + public function testCustomClassForResultset(IntegrationTester $I) + { + $I->assertInstanceOf(Stats::class, AgeStats::find()); + } + + /** + * Checks if exception is thrown when custom resultset doesn't implement ResultsetInterface + * + * @author Eugene Smirnov + */ + public function testExceptionOnBadInterface(IntegrationTester $I) + { + $I->expectThrowable( + new Exception( + 'Resultset class "Phalcon\Test\Models\Statistics\AgeStats" must ' . + 'be an implementation of Phalcon\Mvc\Model\ResultsetInterface' + ), + function () { + CountryStats::find(); + } + ); + } + + /** + * Checks if exception is thrown when resultset class doesn\'t exist + * + * @author Eugene Smirnov + */ + public function testExceptionOnUnknownClass(IntegrationTester $I) + { + $I->expectThrowable( + new Exception('Resultset class "Not\Existing\Resultset\Class" not found'), + function () { + GenderStats::find(); + } + ); + } +} diff --git a/tests/integration/Mvc/Model/Row/JsonSerializeCest.php b/tests/integration/Mvc/Model/Row/JsonSerializeCest.php new file mode 100644 index 00000000000..b2e0ee632a1 --- /dev/null +++ b/tests/integration/Mvc/Model/Row/JsonSerializeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Row; + +use IntegrationTester; + +class JsonSerializeCest +{ + /** + * Tests Phalcon\Mvc\Model\Row :: jsonSerialize() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRowJsonSerialize(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Row - jsonSerialize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Row/OffsetExistsCest.php b/tests/integration/Mvc/Model/Row/OffsetExistsCest.php new file mode 100644 index 00000000000..dc425a3f09f --- /dev/null +++ b/tests/integration/Mvc/Model/Row/OffsetExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Row; + +use IntegrationTester; + +class OffsetExistsCest +{ + /** + * Tests Phalcon\Mvc\Model\Row :: offsetExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRowOffsetExists(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Row - offsetExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Row/OffsetGetCest.php b/tests/integration/Mvc/Model/Row/OffsetGetCest.php new file mode 100644 index 00000000000..cbdbb5f2eae --- /dev/null +++ b/tests/integration/Mvc/Model/Row/OffsetGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Row; + +use IntegrationTester; + +class OffsetGetCest +{ + /** + * Tests Phalcon\Mvc\Model\Row :: offsetGet() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRowOffsetGet(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Row - offsetGet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Row/OffsetSetCest.php b/tests/integration/Mvc/Model/Row/OffsetSetCest.php new file mode 100644 index 00000000000..3611a062e91 --- /dev/null +++ b/tests/integration/Mvc/Model/Row/OffsetSetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Row; + +use IntegrationTester; + +class OffsetSetCest +{ + /** + * Tests Phalcon\Mvc\Model\Row :: offsetSet() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRowOffsetSet(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Row - offsetSet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Row/OffsetUnsetCest.php b/tests/integration/Mvc/Model/Row/OffsetUnsetCest.php new file mode 100644 index 00000000000..078f40f4d0b --- /dev/null +++ b/tests/integration/Mvc/Model/Row/OffsetUnsetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Row; + +use IntegrationTester; + +class OffsetUnsetCest +{ + /** + * Tests Phalcon\Mvc\Model\Row :: offsetUnset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRowOffsetUnset(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Row - offsetUnset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Row/ReadAttributeCest.php b/tests/integration/Mvc/Model/Row/ReadAttributeCest.php new file mode 100644 index 00000000000..4c5a428cae2 --- /dev/null +++ b/tests/integration/Mvc/Model/Row/ReadAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Row; + +use IntegrationTester; + +class ReadAttributeCest +{ + /** + * Tests Phalcon\Mvc\Model\Row :: readAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRowReadAttribute(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Row - readAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Row/SetDirtyStateCest.php b/tests/integration/Mvc/Model/Row/SetDirtyStateCest.php new file mode 100644 index 00000000000..6ba3ddb9593 --- /dev/null +++ b/tests/integration/Mvc/Model/Row/SetDirtyStateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Row; + +use IntegrationTester; + +class SetDirtyStateCest +{ + /** + * Tests Phalcon\Mvc\Model\Row :: setDirtyState() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRowSetDirtyState(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Row - setDirtyState()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Row/ToArrayCest.php b/tests/integration/Mvc/Model/Row/ToArrayCest.php new file mode 100644 index 00000000000..1e4fe99b6dc --- /dev/null +++ b/tests/integration/Mvc/Model/Row/ToArrayCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Row; + +use IntegrationTester; + +class ToArrayCest +{ + /** + * Tests Phalcon\Mvc\Model\Row :: toArray() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRowToArray(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Row - toArray()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Row/WriteAttributeCest.php b/tests/integration/Mvc/Model/Row/WriteAttributeCest.php new file mode 100644 index 00000000000..0df94e834e3 --- /dev/null +++ b/tests/integration/Mvc/Model/Row/WriteAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Row; + +use IntegrationTester; + +class WriteAttributeCest +{ + /** + * Tests Phalcon\Mvc\Model\Row :: writeAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelRowWriteAttribute(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Row - writeAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/SaveCest.php b/tests/integration/Mvc/Model/SaveCest.php new file mode 100644 index 00000000000..44881d7ee1e --- /dev/null +++ b/tests/integration/Mvc/Model/SaveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class SaveCest +{ + /** + * Tests Phalcon\Mvc\Model :: save() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelSave(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - save()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/SerializeCest.php b/tests/integration/Mvc/Model/SerializeCest.php new file mode 100644 index 00000000000..6216eca184c --- /dev/null +++ b/tests/integration/Mvc/Model/SerializeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class SerializeCest +{ + /** + * Tests Phalcon\Mvc\Model :: serialize() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelSerialize(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - serialize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/SetConnectionServiceCest.php b/tests/integration/Mvc/Model/SetConnectionServiceCest.php new file mode 100644 index 00000000000..4e73fea3a39 --- /dev/null +++ b/tests/integration/Mvc/Model/SetConnectionServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class SetConnectionServiceCest +{ + /** + * Tests Phalcon\Mvc\Model :: setConnectionService() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelSetConnectionService(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - setConnectionService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/SetDICest.php b/tests/integration/Mvc/Model/SetDICest.php new file mode 100644 index 00000000000..37061135a2f --- /dev/null +++ b/tests/integration/Mvc/Model/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Model :: setDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelSetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/SetDirtyStateCest.php b/tests/integration/Mvc/Model/SetDirtyStateCest.php new file mode 100644 index 00000000000..2ddb0cf5deb --- /dev/null +++ b/tests/integration/Mvc/Model/SetDirtyStateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class SetDirtyStateCest +{ + /** + * Tests Phalcon\Mvc\Model :: setDirtyState() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelSetDirtyState(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - setDirtyState()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/SetEventsManagerCest.php b/tests/integration/Mvc/Model/SetEventsManagerCest.php new file mode 100644 index 00000000000..cd10b0bc168 --- /dev/null +++ b/tests/integration/Mvc/Model/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Model :: setEventsManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelSetEventsManager(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/SetOldSnapshotDataCest.php b/tests/integration/Mvc/Model/SetOldSnapshotDataCest.php new file mode 100644 index 00000000000..5a0376d1369 --- /dev/null +++ b/tests/integration/Mvc/Model/SetOldSnapshotDataCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class SetOldSnapshotDataCest +{ + /** + * Tests Phalcon\Mvc\Model :: setOldSnapshotData() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelSetOldSnapshotData(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - setOldSnapshotData()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/SetReadConnectionServiceCest.php b/tests/integration/Mvc/Model/SetReadConnectionServiceCest.php new file mode 100644 index 00000000000..156612b7c96 --- /dev/null +++ b/tests/integration/Mvc/Model/SetReadConnectionServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class SetReadConnectionServiceCest +{ + /** + * Tests Phalcon\Mvc\Model :: setReadConnectionService() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelSetReadConnectionService(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - setReadConnectionService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/SetSnapshotDataCest.php b/tests/integration/Mvc/Model/SetSnapshotDataCest.php new file mode 100644 index 00000000000..8f08e7f6502 --- /dev/null +++ b/tests/integration/Mvc/Model/SetSnapshotDataCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class SetSnapshotDataCest +{ + /** + * Tests Phalcon\Mvc\Model :: setSnapshotData() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelSetSnapshotData(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - setSnapshotData()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/SetTransactionCest.php b/tests/integration/Mvc/Model/SetTransactionCest.php new file mode 100644 index 00000000000..82f946f95b1 --- /dev/null +++ b/tests/integration/Mvc/Model/SetTransactionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class SetTransactionCest +{ + /** + * Tests Phalcon\Mvc\Model :: setTransaction() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelSetTransaction(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - setTransaction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/SetWriteConnectionServiceCest.php b/tests/integration/Mvc/Model/SetWriteConnectionServiceCest.php new file mode 100644 index 00000000000..f3f9631e596 --- /dev/null +++ b/tests/integration/Mvc/Model/SetWriteConnectionServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class SetWriteConnectionServiceCest +{ + /** + * Tests Phalcon\Mvc\Model :: setWriteConnectionService() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelSetWriteConnectionService(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - setWriteConnectionService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/SetupCest.php b/tests/integration/Mvc/Model/SetupCest.php new file mode 100644 index 00000000000..87dd5790b4d --- /dev/null +++ b/tests/integration/Mvc/Model/SetupCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class SetupCest +{ + /** + * Tests Phalcon\Mvc\Model :: setup() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelSetup(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - setup()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/SkipOperationCest.php b/tests/integration/Mvc/Model/SkipOperationCest.php new file mode 100644 index 00000000000..eb6ae445fe3 --- /dev/null +++ b/tests/integration/Mvc/Model/SkipOperationCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class SkipOperationCest +{ + /** + * Tests Phalcon\Mvc\Model :: skipOperation() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelSkipOperation(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - skipOperation()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/SnapshotCest.php b/tests/integration/Mvc/Model/SnapshotCest.php new file mode 100644 index 00000000000..ca7cd34e4f9 --- /dev/null +++ b/tests/integration/Mvc/Model/SnapshotCest.php @@ -0,0 +1,484 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; +use Phalcon\Mvc\Model; +use Phalcon\Mvc\Model\Exception; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Test\Models\Snapshot\Personas; +use Phalcon\Test\Models\Snapshot\Requests; +use Phalcon\Test\Models\Snapshot\Robots; +use Phalcon\Test\Models\Snapshot\Robotters; +use Phalcon\Test\Models\Snapshot\Subscribers; +use Phalcon\Test\Module\IntegrationTest; + +class SnapshotCest +{ + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + $this->setDiMysql(); + } + + /** + * Tests dynamic update for identityless models + * + * @test + * @author Phalcon Team + * @issue https://github.com/phalcon/cphalcon/issues/13166 + * @since 2017-11-20 + */ + public function shouldSaveSnapshotForIdentitylessModel(IntegrationTester $I) + { + $requests = new Requests(); + + $requests->method = 'GET'; + $requests->uri = '/api/status'; + $requests->count = 1; + + $I->assertTrue($requests->save()); + $I->assertEquals([], $requests->getChangedFields()); + $I->assertNotEmpty($requests->getSnapshotData()); + $I->assertEquals($requests->toArray(), $requests->getSnapshotData()); + + $I->assertEquals('GET', $requests->method); + $I->assertEquals('/api/status', $requests->uri); + $I->assertEquals(1, $requests->count); + } + + /** @test */ + public function shouldWorkWithSimpleResultset(IntegrationTester $I) + { + $I->skipTest('TODO = Check test'); + $modelsManager = $this->container->getShared('modelsManager'); + $robots = $modelsManager->executeQuery('SELECT * FROM ' . Robots::class); + + /** @var Robots $robot */ + foreach ($robots as $robot) { + $robot->name = 'Some'; + $robot->year = 1999; + $I->assertTrue($robot->hasChanged('name')); + $I->assertTrue($robot->hasChanged('year')); + $I->assertFalse($robot->hasChanged('type')); + $I->assertTrue($robot->hasChanged()); + $I->assertEquals(['name', 'year'], $robot->robot->getChangedFields()); + } + + $robots = $modelsManager->executeQuery( + 'SELECT robot.*, parts.* FROM ' . Robots::class . ' robot JOIN ' . Robots::class . ' parts' + ); + + foreach ($robots as $row) { + $row->robot->name = 'Some'; + $row->robot->year = 1999; + + $I->assertTrue($row->robot->hasChanged('name')); + $I->assertTrue($row->robot->hasChanged('year')); + $I->assertFalse($row->robot->hasChanged('type')); + $I->assertTrue($row->robot->hasChanged()); + $I->assertEquals(['name', 'year'], $row->robot->getChangedFields()); + $I->assertTrue($row->parts->hasSnapshotData()); + } + } + + /** @test */ + public function shouldWorkWithArrayOfModels(IntegrationTester $I) + { + $I->skipTest('TODO = Check test'); + $snapshots = [ + 1 => [ + 'id' => '1', + 'name' => 'Robotina', + 'type' => 'mechanical', + 'year' => '1972', + 'datetime' => '1972-01-01 00:00:00', + 'deleted' => null, + 'text' => 'text', + ], + 2 => [ + 'id' => '2', + 'name' => 'Astro Boy', + 'type' => 'mechanical', + 'year' => '1952', + 'datetime' => '1952-01-01 00:00:00', + 'deleted' => null, + 'text' => 'text', + ], + 3 => [ + 'id' => '3', + 'name' => 'Terminator', + 'type' => 'cyborg', + 'year' => '2029', + 'datetime' => '2029-01-01 00:00:00', + 'deleted' => null, + 'text' => 'text', + ], + ]; + + foreach (Robots::find(['order' => 'id']) as $robot) { + $I->assertTrue($robot->hasSnapshotData()); + $I->assertEquals($robot->getSnapshotData(), $snapshots[$robot->id]); + } + + foreach (Robots::find(['order' => 'id']) as $robot) { + $robot->name = 'Some'; + $robot->year = 1999; + $I->assertTrue($robot->hasChanged('name')); + $I->assertTrue($robot->hasChanged('year')); + $I->assertFalse($robot->hasChanged('type')); + $I->assertTrue($robot->hasChanged()); + } + + foreach (Robots::find(['order' => 'id']) as $robot) { + $robot->year = $robot->year; + $I->assertFalse($robot->hasChanged('year')); + $I->assertFalse($robot->hasChanged()); + } + + foreach (Robots::find(['order' => 'id']) as $robot) { + $robot->name = 'Little'; + $robot->year = 2005; + $I->assertEquals(['name', 'year'], $robot->robot->getChangedFields()); + } + } + + /** @test */ + public function shouldWorkWithRenamedFields(IntegrationTester $I) + { + $I->skipTest('TODO = Check test'); + $snapshots = [ + 1 => [ + 'code' => '1', + 'theName' => 'Robotina', + 'theType' => 'mechanical', + 'theYear' => '1972', + 'theDatetime' => '1972-01-01 00:00:00', + 'theDeleted' => null, + 'theText' => 'text', + ], + 2 => [ + 'code' => '2', + 'theName' => 'Astro Boy', + 'theType' => 'mechanical', + 'theYear' => '1952', + 'theDatetime' => '1952-01-01 00:00:00', + 'theDeleted' => null, + 'theText' => 'text', + ], + 3 => [ + 'code' => '3', + 'theName' => 'Terminator', + 'theType' => 'cyborg', + 'theYear' => '2029', + 'theDatetime' => '2029-01-01 00:00:00', + 'theDeleted' => null, + 'theText' => 'text', + ], + ]; + + foreach (Robotters::find(['order' => 'code']) as $robot) { + $I->assertTrue($robot->hasSnapshotData()); + $I->assertEquals($robot->getSnapshotData(), $snapshots[$robot->code]); + } + + foreach (Robotters::find(['order' => 'code']) as $robot) { + $robot->theName = 'Some'; + $robot->theYear = 1999; + $I->assertTrue($robot->hasChanged('theName')); + $I->assertTrue($robot->hasChanged('theYear')); + $I->assertFalse($robot->hasChanged('theType')); + $I->assertTrue($robot->hasChanged()); + } + + foreach (Robotters::find(['order' => 'code']) as $robot) { + $robot->theYear = $robot->theYear; + $I->assertFalse($robot->hasChanged('theYear')); + $I->assertFalse($robot->hasChanged()); + } + + foreach (Robotters::find(['order' => 'code']) as $robot) { + $robot->theName = 'Little'; + $robot->theYear = 2005; + $I->assertEquals(['theName', 'theYear'], $robot->getChangedFields()); + } + } + + /** + * Test snapshots for changes from NULL to Zero + * + * @issue https://github.com/phalcon/cphalcon/issues/12628 + * @author Phalcon Team + * @since 2017-02-26 + */ + public function shouldCorrectDetectChanges(IntegrationTester $I) + { + $robots = Robots::findFirst(); + + $I->assertEmpty($robots->getChangedFields()); + $I->assertNull($robots->deleted); + $I->assertFalse($robots->hasChanged('deleted')); + + $robots->deleted = 0; + + $I->assertNotEmpty($robots->getChangedFields()); + $I->assertNotNull($robots->deleted); + $I->assertTrue($robots->hasChanged('deleted')); + } + + /** + * When model is created/updated snapshot should be set/updated + * + * @issue https://github.com/phalcon/cphalcon/issues/11007 + * @issue https://github.com/phalcon/cphalcon/issues/11818 + * @issue https://github.com/phalcon/cphalcon/issues/11424 + * @author Wojciech Ślawski + * @since 2017-03-03 + */ + public function testIssue11007(IntegrationTester $I) + { + $robots = new Robots( + [ + 'name' => 'test', + 'type' => 'mechanical', + 'year' => 2017, + 'datetime' => (new \DateTime())->format('Y-m-d'), + 'text' => 'asd', + ] + ); + + $I->assertTrue($robots->create()); + $I->assertNotEmpty($robots->getSnapshotData()); + $I->assertEquals($robots->toArray(), $robots->getSnapshotData()); + + $robots->name = "testabc"; + $I->assertTrue($robots->hasChanged('name')); + $I->assertTrue($robots->update()); + $I->assertEquals('testabc', $robots->name); + $I->assertNotEmpty($robots->getSnapshotData()); + $I->assertEquals($robots->toArray(), $robots->getSnapshotData()); + $I->assertFalse($robots->hasChanged('name')); + } + + /** + * When model is refreshed snapshot should be updated + * + * @issue https://github.com/phalcon/cphalcon/issues/11007 + * @issue https://github.com/phalcon/cphalcon/issues/11818 + * @issue https://github.com/phalcon/cphalcon/issues/11424 + * @author Wojciech Ślawski + * @since 2017-03-03 + */ + public function testIssue11007Refresh(IntegrationTester $I) + { + $robots = new Robots( + [ + 'name' => 'test', + 'year' => 2017, + 'datetime' => (new \DateTime())->format('Y-m-d'), + 'text' => 'asd', + ] + ); + + $I->assertTrue($robots->create()); + $I->assertNotEmpty($robots->getSnapshotData()); + $I->assertEquals($robots->toArray(), $robots->getSnapshotData()); + + $I->assertInstanceOf(Robots::class, $robots->refresh()); + $I->assertEquals('mechanical', $robots->type); + $I->assertNotEmpty($robots->getSnapshotData()); + $I->assertEquals($robots->toArray(), $robots->getSnapshotData()); + } + + /** + * @author Wojciech Ślawski + * @since 2017-03-23 + */ + public function testNewInstanceUpdate(IntegrationTester $I) + { + $robots = Robots::findFirst(); + $robots = new Robots($robots->toArray()); + $I->assertTrue($robots->save()); + } + + /** + * Tests get updated fields new instance exception + * + * @author Wojciech Ślawski + * @since 2017-03-28 + */ + public function testUpdatedFieldsNewException(IntegrationTester $I) + { + $I->expectThrowable( + new Exception("The record doesn't have a valid data snapshot"), + function () { + $robots = new Robots( + [ + 'name' => 'test', + 'year' => 2017, + 'datetime' => (new \DateTime())->format('Y-m-d'), + 'text' => 'asd', + ] + ); + + $robots->getUpdatedFields(); + } + ); + } + + /** + * Tests get updated fields deleted instance exception + * + * @author Wojciech Ślawski + * @since 2017-03-28 + */ + public function testUpdatedFieldsDeleteException(IntegrationTester $I) + { + $I->expectThrowable( + new Exception( + 'Change checking cannot be performed because the object has not been persisted or is deleted' + ), + function () { + $robots = new Robots( + [ + 'name' => 'test', + 'year' => 2017, + 'datetime' => (new \DateTime())->format('Y-m-d'), + 'text' => 'asd', + ] + ); + + $robots->create(); + $robots->delete(); + + $robots->getUpdatedFields(); + } + ); + } + + /** + * Tests get updated fields + * + * @author Wojciech Ślawski + * @since 2017-03-28 + */ + public function testUpdatedFields(IntegrationTester $I) + { + $I->skipTest('TODO = Check test'); + $robots = Robots::findFirst(); + $robots->name = 'changedName'; + $I->assertNotEmpty($robots->getSnapshotData()); + $I->assertTrue($robots->hasChanged('name')); + $I->assertFalse($robots->hasUpdated('name')); + $robots->save(); + $I->assertNotEmpty($robots->getSnapshotData()); + $I->assertFalse($robots->hasChanged('name')); + $I->assertTrue($robots->hasUpdated('name')); + } + + /** + * Tests get updated fields + * + * @author Wojciech Ślawski + * @since 2017-03-28 + */ + public function testDisabledSnapshotUpdate(IntegrationTester $I) + { + $I->skipTest('TODO = Check test'); + $robots = Robots::findFirst(); + Model::setup( + [ + 'updateSnapshotOnSave' => false, + ] + ); + $robots->name = 'changedName'; + $I->assertNotEmpty($robots->getSnapshotData()); + $I->assertTrue($robots->hasChanged('name')); + $robots->save(); + $I->assertNotEmpty($robots->getSnapshotData()); + $I->assertTrue($robots->hasChanged('name')); + Model::setup( + [ + 'updateSnapshotOnSave' => true, + ] + ); + $robots->name = 'otherName'; + $robots->save(); + $I->assertNotEmpty($robots->getSnapshotData()); + $I->assertFalse($robots->hasChanged('name')); + } + + /** + * When model is refreshed snapshot should be updated + * + * @issue https://github.com/phalcon/cphalcon/issues/12669 + * @author Wojciech Ślawski + * @since 2017-03-15 + */ + public function testIssue12669(IntegrationTester $I) + { + $I->skipTest('TODO = Check test'); + $robots = new Robots( + [ + 'name' => 'test', + 'year' => 2017, + 'datetime' => (new \DateTime())->format('Y-m-d'), + 'text' => 'asd', + ] + ); + + $I->assertTrue($robots->create()); + $robots->name = 'test2'; + $I->assertTrue($robots->hasChanged(['name', 'year'])); + $I->assertTrue($robots->hasChanged(['text', 'year'])); + $I->assertFalse($robots->hasChanged(['name', 'year'], true)); + $robots->year = 2018; + assertTrue($robots->hasChanged(['name', 'year'], true)); + } + + /** + * When model is refreshed snapshot should be updated + * + * @issue https://github.com/phalcon/cphalcon/issues/13173 + * @author Wojciech Ślawski + * @since 2017-12-05 + */ + public function testIssue13173(IntegrationTester $I) + { + $subscriber = new Subscribers(); + $subscriber->email = 'some@some.com'; + $subscriber->status = 'I'; + + $I->assertTrue($subscriber->save()); + $I->assertEquals(['email', 'created_at', 'status', 'id'], $subscriber->getUpdatedFields()); + $I->assertTrue($subscriber->delete()); + $I->assertEquals(['status'], $subscriber->getUpdatedFields()); + } + + public function testIssue13202(IntegrationTester $I) + { + $personas = Personas::findFirst(); + $I->assertEquals([], $personas->getChangedFields()); + try { + $personas->getUpdatedFields(); + } catch (\Exception $e) { + $I->assertEquals($e->getMessage())->equals( + "Change checking cannot be performed because the object has not been persisted or is deleted" + ) + ; + } + $I->assertTrue($personas->save()); + $I->assertEquals([], $personas->getUpdatedFields()); + } +} diff --git a/tests/integration/Mvc/Model/SumCest.php b/tests/integration/Mvc/Model/SumCest.php new file mode 100644 index 00000000000..83e1737d146 --- /dev/null +++ b/tests/integration/Mvc/Model/SumCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class SumCest +{ + /** + * Tests Phalcon\Mvc\Model :: sum() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelSum(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - sum()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/ToArrayCest.php b/tests/integration/Mvc/Model/ToArrayCest.php new file mode 100644 index 00000000000..e59c27ea4ff --- /dev/null +++ b/tests/integration/Mvc/Model/ToArrayCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class ToArrayCest +{ + /** + * Tests Phalcon\Mvc\Model :: toArray() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelToArray(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - toArray()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/BeginCest.php b/tests/integration/Mvc/Model/Transaction/BeginCest.php new file mode 100644 index 00000000000..da348b2083b --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/BeginCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction; + +use IntegrationTester; + +class BeginCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction :: begin() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionBegin(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction - begin()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/CommitCest.php b/tests/integration/Mvc/Model/Transaction/CommitCest.php new file mode 100644 index 00000000000..c76ca88131d --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/CommitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction; + +use IntegrationTester; + +class CommitCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction :: commit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionCommit(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction - commit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/ConstructCest.php b/tests/integration/Mvc/Model/Transaction/ConstructCest.php new file mode 100644 index 00000000000..c45247f6b12 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Failed/ConstructCest.php b/tests/integration/Mvc/Model/Transaction/Failed/ConstructCest.php new file mode 100644 index 00000000000..af37795f1c1 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Failed/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Failed; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Failed :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionFailedConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Failed - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Failed/GetCodeCest.php b/tests/integration/Mvc/Model/Transaction/Failed/GetCodeCest.php new file mode 100644 index 00000000000..01b76d1fd56 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Failed/GetCodeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Failed; + +use IntegrationTester; + +class GetCodeCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Failed :: getCode() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionFailedGetCode(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Failed - getCode()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Failed/GetFileCest.php b/tests/integration/Mvc/Model/Transaction/Failed/GetFileCest.php new file mode 100644 index 00000000000..4478e411724 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Failed/GetFileCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Failed; + +use IntegrationTester; + +class GetFileCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Failed :: getFile() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionFailedGetFile(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Failed - getFile()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Failed/GetLineCest.php b/tests/integration/Mvc/Model/Transaction/Failed/GetLineCest.php new file mode 100644 index 00000000000..8c4aca9cce0 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Failed/GetLineCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Failed; + +use IntegrationTester; + +class GetLineCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Failed :: getLine() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionFailedGetLine(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Failed - getLine()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Failed/GetMessageCest.php b/tests/integration/Mvc/Model/Transaction/Failed/GetMessageCest.php new file mode 100644 index 00000000000..46ac3d1437d --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Failed/GetMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Failed; + +use IntegrationTester; + +class GetMessageCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Failed :: getMessage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionFailedGetMessage(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Failed - getMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Failed/GetPreviousCest.php b/tests/integration/Mvc/Model/Transaction/Failed/GetPreviousCest.php new file mode 100644 index 00000000000..f8d90c36b59 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Failed/GetPreviousCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Failed; + +use IntegrationTester; + +class GetPreviousCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Failed :: getPrevious() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionFailedGetPrevious(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Failed - getPrevious()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Failed/GetRecordCest.php b/tests/integration/Mvc/Model/Transaction/Failed/GetRecordCest.php new file mode 100644 index 00000000000..c2b90c7afab --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Failed/GetRecordCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Failed; + +use IntegrationTester; + +class GetRecordCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Failed :: getRecord() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionFailedGetRecord(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Failed - getRecord()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Failed/GetRecordMessagesCest.php b/tests/integration/Mvc/Model/Transaction/Failed/GetRecordMessagesCest.php new file mode 100644 index 00000000000..3fa16e13648 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Failed/GetRecordMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Failed; + +use IntegrationTester; + +class GetRecordMessagesCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Failed :: getRecordMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionFailedGetRecordMessages(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Failed - getRecordMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Failed/GetTraceAsStringCest.php b/tests/integration/Mvc/Model/Transaction/Failed/GetTraceAsStringCest.php new file mode 100644 index 00000000000..17479eb0fb7 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Failed/GetTraceAsStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Failed; + +use IntegrationTester; + +class GetTraceAsStringCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Failed :: getTraceAsString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionFailedGetTraceAsString(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Failed - getTraceAsString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Failed/GetTraceCest.php b/tests/integration/Mvc/Model/Transaction/Failed/GetTraceCest.php new file mode 100644 index 00000000000..1e24fe10852 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Failed/GetTraceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Failed; + +use IntegrationTester; + +class GetTraceCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Failed :: getTrace() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionFailedGetTrace(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Failed - getTrace()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Failed/ToStringCest.php b/tests/integration/Mvc/Model/Transaction/Failed/ToStringCest.php new file mode 100644 index 00000000000..8d2ec806d82 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Failed/ToStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Failed; + +use IntegrationTester; + +class ToStringCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Failed :: __toString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionFailedToString(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Failed - __toString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Failed/WakeupCest.php b/tests/integration/Mvc/Model/Transaction/Failed/WakeupCest.php new file mode 100644 index 00000000000..6ede090775a --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Failed/WakeupCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Failed; + +use IntegrationTester; + +class WakeupCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Failed :: __wakeup() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionFailedWakeup(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Failed - __wakeup()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/GetConnectionCest.php b/tests/integration/Mvc/Model/Transaction/GetConnectionCest.php new file mode 100644 index 00000000000..1d8ffd4a2e3 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/GetConnectionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction; + +use IntegrationTester; + +class GetConnectionCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction :: getConnection() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionGetConnection(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction - getConnection()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/GetMessagesCest.php b/tests/integration/Mvc/Model/Transaction/GetMessagesCest.php new file mode 100644 index 00000000000..65114bd4d54 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionGetMessages(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/IsManagedCest.php b/tests/integration/Mvc/Model/Transaction/IsManagedCest.php new file mode 100644 index 00000000000..df9ac56c708 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/IsManagedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction; + +use IntegrationTester; + +class IsManagedCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction :: isManaged() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionIsManaged(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction - isManaged()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/IsValidCest.php b/tests/integration/Mvc/Model/Transaction/IsValidCest.php new file mode 100644 index 00000000000..39626bac7fe --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/IsValidCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction; + +use IntegrationTester; + +class IsValidCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction :: isValid() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionIsValid(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction - isValid()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Manager/CollectTransactionsCest.php b/tests/integration/Mvc/Model/Transaction/Manager/CollectTransactionsCest.php new file mode 100644 index 00000000000..29f58c4441f --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Manager/CollectTransactionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; + +use IntegrationTester; + +class CollectTransactionsCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Manager :: collectTransactions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionManagerCollectTransactions(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Manager - collectTransactions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Manager/CommitCest.php b/tests/integration/Mvc/Model/Transaction/Manager/CommitCest.php new file mode 100644 index 00000000000..27995b28f5b --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Manager/CommitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; + +use IntegrationTester; + +class CommitCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Manager :: commit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionManagerCommit(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Manager - commit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Manager/ConstructCest.php b/tests/integration/Mvc/Model/Transaction/Manager/ConstructCest.php new file mode 100644 index 00000000000..a502658c72e --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Manager/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Manager :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionManagerConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Manager - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Manager/GetCest.php b/tests/integration/Mvc/Model/Transaction/Manager/GetCest.php new file mode 100644 index 00000000000..79fc8935a86 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Manager/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; + +use IntegrationTester; + +class GetCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Manager :: get() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionManagerGet(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Manager - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Manager/GetDICest.php b/tests/integration/Mvc/Model/Transaction/Manager/GetDICest.php new file mode 100644 index 00000000000..a4f3ebc0621 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Manager/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; + +use IntegrationTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Manager :: getDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionManagerGetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Manager - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Manager/GetDbServiceCest.php b/tests/integration/Mvc/Model/Transaction/Manager/GetDbServiceCest.php new file mode 100644 index 00000000000..18e915896cc --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Manager/GetDbServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; + +use IntegrationTester; + +class GetDbServiceCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Manager :: getDbService() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionManagerGetDbService(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Manager - getDbService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Manager/GetOrCreateTransactionCest.php b/tests/integration/Mvc/Model/Transaction/Manager/GetOrCreateTransactionCest.php new file mode 100644 index 00000000000..d8da1933eb0 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Manager/GetOrCreateTransactionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; + +use IntegrationTester; + +class GetOrCreateTransactionCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Manager :: getOrCreateTransaction() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionManagerGetOrCreateTransaction(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Manager - getOrCreateTransaction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Manager/GetRollbackPendentCest.php b/tests/integration/Mvc/Model/Transaction/Manager/GetRollbackPendentCest.php new file mode 100644 index 00000000000..9575d881fb6 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Manager/GetRollbackPendentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; + +use IntegrationTester; + +class GetRollbackPendentCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Manager :: getRollbackPendent() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionManagerGetRollbackPendent(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Manager - getRollbackPendent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Manager/HasCest.php b/tests/integration/Mvc/Model/Transaction/Manager/HasCest.php new file mode 100644 index 00000000000..61142464810 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Manager/HasCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; + +use IntegrationTester; + +class HasCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Manager :: has() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionManagerHas(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Manager - has()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Manager/NotifyCommitCest.php b/tests/integration/Mvc/Model/Transaction/Manager/NotifyCommitCest.php new file mode 100644 index 00000000000..70f66e96ac4 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Manager/NotifyCommitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; + +use IntegrationTester; + +class NotifyCommitCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Manager :: notifyCommit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionManagerNotifyCommit(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Manager - notifyCommit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Manager/NotifyRollbackCest.php b/tests/integration/Mvc/Model/Transaction/Manager/NotifyRollbackCest.php new file mode 100644 index 00000000000..ed36be67439 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Manager/NotifyRollbackCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; + +use IntegrationTester; + +class NotifyRollbackCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Manager :: notifyRollback() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionManagerNotifyRollback(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Manager - notifyRollback()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Manager/RollbackCest.php b/tests/integration/Mvc/Model/Transaction/Manager/RollbackCest.php new file mode 100644 index 00000000000..e7afe7c3d6f --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Manager/RollbackCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; + +use IntegrationTester; + +class RollbackCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Manager :: rollback() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionManagerRollback(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Manager - rollback()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Manager/RollbackPendentCest.php b/tests/integration/Mvc/Model/Transaction/Manager/RollbackPendentCest.php new file mode 100644 index 00000000000..dda906c6f67 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Manager/RollbackPendentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; + +use IntegrationTester; + +class RollbackPendentCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Manager :: rollbackPendent() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionManagerRollbackPendent(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Manager - rollbackPendent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Manager/SetDICest.php b/tests/integration/Mvc/Model/Transaction/Manager/SetDICest.php new file mode 100644 index 00000000000..a5809048123 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Manager/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; + +use IntegrationTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Manager :: setDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionManagerSetDI(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Manager - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Manager/SetDbServiceCest.php b/tests/integration/Mvc/Model/Transaction/Manager/SetDbServiceCest.php new file mode 100644 index 00000000000..2d5097062bf --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Manager/SetDbServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; + +use IntegrationTester; + +class SetDbServiceCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Manager :: setDbService() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionManagerSetDbService(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Manager - setDbService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/Manager/SetRollbackPendentCest.php b/tests/integration/Mvc/Model/Transaction/Manager/SetRollbackPendentCest.php new file mode 100644 index 00000000000..d6f5eada955 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/Manager/SetRollbackPendentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; + +use IntegrationTester; + +class SetRollbackPendentCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction\Manager :: setRollbackPendent() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionManagerSetRollbackPendent(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction\Manager - setRollbackPendent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/ManagerCest.php b/tests/integration/Mvc/Model/Transaction/ManagerCest.php new file mode 100644 index 00000000000..9721e844934 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/ManagerCest.php @@ -0,0 +1,203 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction; + +use IntegrationTester; +use Phalcon\Test\Models\Select; +use Phalcon\Test\Models\Personas; +use Phalcon\Mvc\Model\Transaction\Failed; +use Phalcon\Mvc\Model\Transaction\Manager; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Mvc\Model\Transaction; + +class ManagerCest +{ + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + } + + /** + * Tests Manager::get + * + * @author Phalcon Team + * @since 2012-08-07 + */ + public function checkTransactionMysql(IntegrationTester $I) + { + $this->setDiMysql(); + + $this->testGetNewExistingTransactionOnce($I); + $this->testRollbackNewInserts($I); + $this->testCommitNewInserts($I); + $this->testTransactionRemovedOnCommit($I); + $this->testTransactionRemovedOnRollback($I); + } + + /** + * Tests Manager::get + * + * @author Phalcon Team + * @since 2012-08-07 + */ + public function checkTransactionPostgresql(IntegrationTester $I) + { + $this->setDiPostgresql(); + + $this->testGetNewExistingTransactionOnce($I); + $this->testRollbackNewInserts($I); + $this->testCommitNewInserts($I); + $this->testTransactionRemovedOnCommit($I); + $this->testTransactionRemovedOnRollback($I); + } + + /** + * Tests Manager::get + * + * @author Phalcon Team + * @since 2012-08-07 + */ + public function checkTransactionSqlite(IntegrationTester $I) + { + $I->skipTest('TODO - Check Sqlite locking'); + $this->setDiSqlite(); + + $this->testGetNewExistingTransactionOnce($I); + $this->testRollbackNewInserts($I); + $this->testCommitNewInserts($I); + $this->testTransactionRemovedOnCommit($I); + $this->testTransactionRemovedOnRollback($I); + } + + private function testGetNewExistingTransactionOnce(IntegrationTester $I) + { + $tm = $this->container->getShared('transactionManager'); + $db = $this->container->getShared('db'); + $transaction = $tm->get(); + + $I->assertInstanceOf(Transaction::class, $transaction); + $I->assertSame($transaction, $tm->get(true)); + $I->assertSame($transaction, $tm->get(false)); + + $I->assertInstanceOf('Phalcon\Db\AdapterInterface', $transaction->getConnection()); + /** + * @todo - Check why this returns different Ids in db and TM + */ +// $I->assertEquals($db->getConnectionId(), $transaction->getConnection()->getConnectionId()); + } + + private function testRollbackNewInserts(IntegrationTester $I) + { + $tm = $this->container->getShared('transactionManager'); + + $numPersonas = Personas::count(); + $transaction = $tm->get(); + + for ($i = 0; $i < 10; $i++) { + $persona = new Personas(); + $persona->setTransaction($transaction); + $persona->cedula = 'T-Cx' . $i; + $persona->tipo_documento_id = 1; + $persona->nombres = 'LOST LOST'; + $persona->telefono = '2'; + $persona->cupo = 0; + $persona->estado = 'A'; + + $I->assertTrue($persona->save()); + } + + try { + $transaction->rollback(); + $I->assertTrue( + false, + "The transaction's rollback didn't throw an expected exception. Emergency stop" + ); + } catch (Failed $e) { + $I->assertEquals($e->getMessage(), "Transaction aborted"); + } + + $I->assertEquals($numPersonas, Personas::count()); + } + + private function testCommitNewInserts(IntegrationTester $I) + { + $tm = $this->container->getShared('transactionManager'); + $db = $this->container->getShared('db'); + + $db->delete("personas", "cedula LIKE 'T-Cx%'"); + + $numPersonas = Personas::count(); + $transaction = $tm->get(); + + for ($i = 0; $i < 10; $i++) { + $persona = new Personas(); + $persona->setDI($this->container); + $persona->setTransaction($transaction); + $persona->cedula = 'T-Cx' . $i; + $persona->tipo_documento_id = 1; + $persona->nombres = 'LOST LOST'; + $persona->telefono = '2'; + $persona->cupo = 0; + $persona->estado = 'A'; + + $I->assertNotFalse($persona->save()); + } + + $I->assertTrue($transaction->commit()); + $I->assertEquals($numPersonas + 10, Personas::count()); + } + + private function testTransactionRemovedOnRollback(IntegrationTester $I) + { + $tm = $this->container->getShared('transactionManager'); + $transaction = $tm->get(); + + $select = new Select(); + $select->setTransaction($transaction); + $select->assign(['name' => 'Crack of Dawn']); + $select->create(); + + + $I->assertEquals(1, $I->getProtectedProperty($tm, '_number')); + $I->assertCount(1, $I->getProtectedProperty($tm, '_transactions')); + + try { + $transaction->rollback(); + } catch (Failed $e) { + // do nothing + } + + $I->assertEquals(0, $I->getProtectedProperty($tm, '_number')); + $I->assertCount(0, $I->getProtectedProperty($tm, '_transactions')); + } + + private function testTransactionRemovedOnCommit(IntegrationTester $I) + { + $tm = $this->container->getShared('transactionManager'); + $transaction = $tm->get(); + + $select = new Select(); + $select->setTransaction($transaction); + $select->assign(['name' => 'Crack of Dawn']); + $select->create(); + + $I->assertEquals(1, $I->getProtectedProperty($tm, '_number')); + $I->assertCount(1, $I->getProtectedProperty($tm, '_transactions')); + + $transaction->commit(); + + $I->assertEquals(0, $I->getProtectedProperty($tm, '_number')); + $I->assertCount(0, $I->getProtectedProperty($tm, '_transactions')); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/RollbackCest.php b/tests/integration/Mvc/Model/Transaction/RollbackCest.php new file mode 100644 index 00000000000..c7b95c38cca --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/RollbackCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction; + +use IntegrationTester; + +class RollbackCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction :: rollback() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionRollback(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction - rollback()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/SetIsNewTransactionCest.php b/tests/integration/Mvc/Model/Transaction/SetIsNewTransactionCest.php new file mode 100644 index 00000000000..80b0b5f5b82 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/SetIsNewTransactionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction; + +use IntegrationTester; + +class SetIsNewTransactionCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction :: setIsNewTransaction() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionSetIsNewTransaction(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction - setIsNewTransaction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/SetRollbackOnAbortCest.php b/tests/integration/Mvc/Model/Transaction/SetRollbackOnAbortCest.php new file mode 100644 index 00000000000..139a62a8212 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/SetRollbackOnAbortCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction; + +use IntegrationTester; + +class SetRollbackOnAbortCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction :: setRollbackOnAbort() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionSetRollbackOnAbort(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction - setRollbackOnAbort()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/SetRollbackedRecordCest.php b/tests/integration/Mvc/Model/Transaction/SetRollbackedRecordCest.php new file mode 100644 index 00000000000..f6d35bf0244 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/SetRollbackedRecordCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction; + +use IntegrationTester; + +class SetRollbackedRecordCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction :: setRollbackedRecord() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionSetRollbackedRecord(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction - setRollbackedRecord()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/Transaction/SetTransactionManagerCest.php b/tests/integration/Mvc/Model/Transaction/SetTransactionManagerCest.php new file mode 100644 index 00000000000..324a6c43268 --- /dev/null +++ b/tests/integration/Mvc/Model/Transaction/SetTransactionManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\Transaction; + +use IntegrationTester; + +class SetTransactionManagerCest +{ + /** + * Tests Phalcon\Mvc\Model\Transaction :: setTransactionManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelTransactionSetTransactionManager(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\Transaction - setTransactionManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/UnderscoreCallCest.php b/tests/integration/Mvc/Model/UnderscoreCallCest.php new file mode 100644 index 00000000000..78cee3b2fa0 --- /dev/null +++ b/tests/integration/Mvc/Model/UnderscoreCallCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class UnderscoreCallCest +{ + /** + * Tests Phalcon\Mvc\Model :: __call() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelCall(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - __call()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/UnderscoreCallStaticCest.php b/tests/integration/Mvc/Model/UnderscoreCallStaticCest.php new file mode 100644 index 00000000000..0a6a74a6b34 --- /dev/null +++ b/tests/integration/Mvc/Model/UnderscoreCallStaticCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class UnderscoreCallStaticCest +{ + /** + * Tests Phalcon\Mvc\Model :: __callStatic() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelUnderscoreCallStatic(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - __callStatic()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/UnderscoreGetCest.php b/tests/integration/Mvc/Model/UnderscoreGetCest.php new file mode 100644 index 00000000000..76dcfb822e4 --- /dev/null +++ b/tests/integration/Mvc/Model/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Mvc\Model :: __get() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelUnderscoreGet(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/UnderscoreIssetCest.php b/tests/integration/Mvc/Model/UnderscoreIssetCest.php new file mode 100644 index 00000000000..01f79db21b2 --- /dev/null +++ b/tests/integration/Mvc/Model/UnderscoreIssetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class UnderscoreIssetCest +{ + /** + * Tests Phalcon\Mvc\Model :: __isset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelUnderscoreIsset(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - __isset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/UnderscoreSetCest.php b/tests/integration/Mvc/Model/UnderscoreSetCest.php new file mode 100644 index 00000000000..8c520544fb4 --- /dev/null +++ b/tests/integration/Mvc/Model/UnderscoreSetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class UnderscoreSetCest +{ + /** + * Tests Phalcon\Mvc\Model :: __set() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelUnderscoreSet(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - __set()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/UnserializeCest.php b/tests/integration/Mvc/Model/UnserializeCest.php new file mode 100644 index 00000000000..0c2529c7c68 --- /dev/null +++ b/tests/integration/Mvc/Model/UnserializeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class UnserializeCest +{ + /** + * Tests Phalcon\Mvc\Model :: unserialize() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelUnserialize(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - unserialize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/UpdateCest.php b/tests/integration/Mvc/Model/UpdateCest.php new file mode 100644 index 00000000000..eb149f7239b --- /dev/null +++ b/tests/integration/Mvc/Model/UpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class UpdateCest +{ + /** + * Tests Phalcon\Mvc\Model :: update() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelUpdate(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - update()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/ValidationFailed/ConstructCest.php b/tests/integration/Mvc/Model/ValidationFailed/ConstructCest.php new file mode 100644 index 00000000000..adffcfdc1ef --- /dev/null +++ b/tests/integration/Mvc/Model/ValidationFailed/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\ValidationFailed; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Model\ValidationFailed :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelValidationfailedConstruct(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\ValidationFailed - Construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/ValidationFailed/GetCodeCest.php b/tests/integration/Mvc/Model/ValidationFailed/GetCodeCest.php new file mode 100644 index 00000000000..dbed1730b08 --- /dev/null +++ b/tests/integration/Mvc/Model/ValidationFailed/GetCodeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\ValidationFailed; + +use IntegrationTester; + +class GetCodeCest +{ + /** + * Tests Phalcon\Mvc\Model\ValidationFailed :: getCode() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelValidationfailedGetCode(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\ValidationFailed - getCode()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/ValidationFailed/GetFileCest.php b/tests/integration/Mvc/Model/ValidationFailed/GetFileCest.php new file mode 100644 index 00000000000..8ed7d8e5cab --- /dev/null +++ b/tests/integration/Mvc/Model/ValidationFailed/GetFileCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\ValidationFailed; + +use IntegrationTester; + +class GetFileCest +{ + /** + * Tests Phalcon\Mvc\Model\ValidationFailed :: getFile() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelValidationfailedGetFile(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\ValidationFailed - getFile()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/ValidationFailed/GetLineCest.php b/tests/integration/Mvc/Model/ValidationFailed/GetLineCest.php new file mode 100644 index 00000000000..158e348462e --- /dev/null +++ b/tests/integration/Mvc/Model/ValidationFailed/GetLineCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\ValidationFailed; + +use IntegrationTester; + +class GetLineCest +{ + /** + * Tests Phalcon\Mvc\Model\ValidationFailed :: getLine() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelValidationfailedGetLine(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\ValidationFailed - getLine()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/ValidationFailed/GetMessageCest.php b/tests/integration/Mvc/Model/ValidationFailed/GetMessageCest.php new file mode 100644 index 00000000000..62375023774 --- /dev/null +++ b/tests/integration/Mvc/Model/ValidationFailed/GetMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\ValidationFailed; + +use IntegrationTester; + +class GetMessageCest +{ + /** + * Tests Phalcon\Mvc\Model\ValidationFailed :: getMessage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelValidationfailedGetMessage(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\ValidationFailed - getMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/ValidationFailed/GetMessagesCest.php b/tests/integration/Mvc/Model/ValidationFailed/GetMessagesCest.php new file mode 100644 index 00000000000..7f661c87ae9 --- /dev/null +++ b/tests/integration/Mvc/Model/ValidationFailed/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\ValidationFailed; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Mvc\Model\ValidationFailed :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelValidationfailedGetMessages(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\ValidationFailed - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/ValidationFailed/GetModelCest.php b/tests/integration/Mvc/Model/ValidationFailed/GetModelCest.php new file mode 100644 index 00000000000..ada1c2f7009 --- /dev/null +++ b/tests/integration/Mvc/Model/ValidationFailed/GetModelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\ValidationFailed; + +use IntegrationTester; + +class GetModelCest +{ + /** + * Tests Phalcon\Mvc\Model\ValidationFailed :: getModel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelValidationfailedGetModel(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\ValidationFailed - getModel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/ValidationFailed/GetPreviousCest.php b/tests/integration/Mvc/Model/ValidationFailed/GetPreviousCest.php new file mode 100644 index 00000000000..2ec5d9005fa --- /dev/null +++ b/tests/integration/Mvc/Model/ValidationFailed/GetPreviousCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\ValidationFailed; + +use IntegrationTester; + +class GetPreviousCest +{ + /** + * Tests Phalcon\Mvc\Model\ValidationFailed :: getPrevious() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelValidationfailedGetPrevious(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\ValidationFailed - getPrevious()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/ValidationFailed/GetTraceAsStringCest.php b/tests/integration/Mvc/Model/ValidationFailed/GetTraceAsStringCest.php new file mode 100644 index 00000000000..e53dd5aac18 --- /dev/null +++ b/tests/integration/Mvc/Model/ValidationFailed/GetTraceAsStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\ValidationFailed; + +use IntegrationTester; + +class GetTraceAsStringCest +{ + /** + * Tests Phalcon\Mvc\Model\ValidationFailed :: getTraceAsString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelValidationfailedGetTraceAsString(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\ValidationFailed - getTraceAsString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/ValidationFailed/GetTraceCest.php b/tests/integration/Mvc/Model/ValidationFailed/GetTraceCest.php new file mode 100644 index 00000000000..7d44792e132 --- /dev/null +++ b/tests/integration/Mvc/Model/ValidationFailed/GetTraceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\ValidationFailed; + +use IntegrationTester; + +class GetTraceCest +{ + /** + * Tests Phalcon\Mvc\Model\ValidationFailed :: getTrace() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelValidationfailedGetTrace(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\ValidationFailed - getTrace()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/ValidationFailed/ToStringCest.php b/tests/integration/Mvc/Model/ValidationFailed/ToStringCest.php new file mode 100644 index 00000000000..3ba9f41b36a --- /dev/null +++ b/tests/integration/Mvc/Model/ValidationFailed/ToStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\ValidationFailed; + +use IntegrationTester; + +class ToStringCest +{ + /** + * Tests Phalcon\Mvc\Model\ValidationFailed :: __toString() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelValidationfailedToString(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\ValidationFailed - __toString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/ValidationFailed/WakeupCest.php b/tests/integration/Mvc/Model/ValidationFailed/WakeupCest.php new file mode 100644 index 00000000000..b583029b358 --- /dev/null +++ b/tests/integration/Mvc/Model/ValidationFailed/WakeupCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model\ValidationFailed; + +use IntegrationTester; + +class WakeupCest +{ + /** + * Tests Phalcon\Mvc\Model\ValidationFailed :: __wakeup() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelValidationfailedWakeup(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model\ValidationFailed - __wakeup()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/ValidationHasFailedCest.php b/tests/integration/Mvc/Model/ValidationHasFailedCest.php new file mode 100644 index 00000000000..a73fcace9d5 --- /dev/null +++ b/tests/integration/Mvc/Model/ValidationHasFailedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class ValidationHasFailedCest +{ + /** + * Tests Phalcon\Mvc\Model :: validationHasFailed() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelValidationHasFailed(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - validationHasFailed()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/Model/WriteAttributeCest.php b/tests/integration/Mvc/Model/WriteAttributeCest.php new file mode 100644 index 00000000000..a53486d42a9 --- /dev/null +++ b/tests/integration/Mvc/Model/WriteAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Model; + +use IntegrationTester; + +class WriteAttributeCest +{ + /** + * Tests Phalcon\Mvc\Model :: writeAttribute() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcModelWriteAttribute(IntegrationTester $I) + { + $I->wantToTest("Mvc\Model - writeAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Mvc/ModelCest.php b/tests/integration/Mvc/ModelCest.php new file mode 100644 index 00000000000..b45edc8416f --- /dev/null +++ b/tests/integration/Mvc/ModelCest.php @@ -0,0 +1,910 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc; + +use IntegrationTester; +use Phalcon\Cache\Backend\Apc; +use Phalcon\Cache\Frontend\Data; +use Phalcon\Messages\Message; +use Phalcon\Mvc\Model; +use Phalcon\Mvc\Model\Resultset\Simple; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Test\Models\AlbumORama\Albums; + +class ModelCest +{ +// use ModelTrait; + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->newDi(); + $this->setDiModelsManager(); + $this->setDiModelsMetadata(); + } + + public function testMySql(IntegrationTester $I) + { + $I->skipTest('TODO - Check me'); + $this->setDiMysql(); + + $this->executeCamelCaseRelation($I); + } + + private function executeCamelCaseRelation(IntegrationTester $I) + { + $album = Albums::findFirst(); + + $album->artist->name = 'NotArtist'; + + $expected = $album->Artist->name; + $actual = $album->artist->name; + $I->assertEquals($expected, $actual); + } + +// /** +// * Tests find with empty conditions + bind and limit. +// * +// * @issue https://github.com/phalcon/cphalcon/issues/11919 +// * @author Phalcon Team +// * @since 2016-07-29 +// */ +// public function testEmptyConditions() +// { +// if (!ini_get('opcache.enable_cli')) { +// $this->markTestSkipped( +// 'Warning: opcache.enable_cli must be set to "On"' +// ); +// } +// +// $this->specify( +// 'The Model::find with empty conditions + bind and limit return wrong result', +// function () { +// $album = Albums::find([ +// 'conditions' => '', +// 'bind' => [], +// 'limit' => 10 +// ]); +// +// expect($album)->isInstanceOf(Simple::class); +// expect($album->getFirst())->isInstanceOf(Albums::class); +// expect($album->getFirst()->toArray())->equals([ +// 'id' => 1, +// 'artists_id' => 1, +// 'name' => 'Born to Die', +// ]); +// } +// ); +// } +// +// /** +// * Tests Model::hasMany by using multi relation column +// * +// * @issue https://github.com/phalcon/cphalcon/issues/12035 +// * @author Phalcon Team +// * @since 2016-08-02 +// */ +// public function testMultiRelationColumn() +// { +// $this->specify( +// 'The Model::hasMany by using multi relation column does not work as expected', +// function () { +// $list = Packages::find(); +// foreach ($list as $item) { +// expect($item)->isInstanceOf(Packages::class); +// expect($item->details)->isInstanceOf(Simple::class); +// expect($item->details->valid())->true(); +// expect($item->details->count())->greaterOrEquals(2); +// expect($item->details->getFirst())->isInstanceOf(PackageDetails::class); +// } +// } +// ); +// } +// +// /** +// * Tests reusing Model relation +// * +// * @issue https://github.com/phalcon/cphalcon/issues/11991 +// * @author Phalcon Team +// * @since 2016-08-03 +// */ +// public function testReusableRelation() +// { +// $this->specify( +// 'Reusing relations does not work correctly', +// function () { +// $customers = Customers::find([ +// 'document_id = :did: AND status = :status: AND customer_id <> :did:', +// 'bind' => ['did' => 1, 'status' => 'A'] +// ]); +// +// expect($customers)->isInstanceOf(Simple::class); +// expect(count($customers))->equals(2); +// +// expect($customers[0]->user)->isInstanceOf(Users::class); +// expect($customers[0]->user)->isInstanceOf(Users::class); +// expect($customers[0]->user)->isInstanceOf(Users::class); +// +// expect($customers[1]->user)->isInstanceOf(Users::class); +// expect($customers[1]->user)->isInstanceOf(Users::class); +// expect($customers[1]->user)->isInstanceOf(Users::class); +// +// expect($customers->getFirst())->isInstanceOf(Customers::class); +// +// expect($customers[1]->user->name)->equals('Nikolaos Dimopoulos'); +// expect($customers[1]->user->name)->equals('Nikolaos Dimopoulos'); +// expect($customers[1]->user->name)->equals('Nikolaos Dimopoulos'); +// +// expect($customers->getFirst()->user->name)->equals('Nikolaos Dimopoulos'); +// expect($customers->getFirst()->user->name)->equals('Nikolaos Dimopoulos'); +// expect($customers->getFirst()->user->name)->equals('Nikolaos Dimopoulos'); +// +// expect($customers[0]->user->name)->equals('Nikolaos Dimopoulos'); +// expect($customers[0]->user->name)->equals('Nikolaos Dimopoulos'); +// expect($customers[0]->user->name)->equals('Nikolaos Dimopoulos'); +// } +// ); +// } +// +// /** +// * Tests virtual foreign keys. +// * +// * When having multiple virtual foreign keys, check of the first one should +// * affect the check of the next one. +// * +// * @issue https://github.com/phalcon/cphalcon/issues/12071 +// * @author Radek Crlik +// * @since 2016-08-03 +// */ +// public function testInvalidVirtualForeignKeys() +// { +// $this->specify( +// 'The Model::save with multiple virtual foreign keys and invalid entity', +// function () { +// $body = new Body(); +// +// $body->head_1_id = null; +// $body->head_2_id = 999; +// +// // PDOException should'n be thrown +// expect($body->save())->equals(false); +// +// expect($body->getMessages())->count(1); +// expect($body->getMessages()[0]->getMessage())->equals('Second head does not exists'); +// } +// ); +// } +// +// /** +// * Tests serializing model while using cache and keeping snapshots +// * +// * The snapshot should be saved while using cache +// * +// * @issue https://github.com/phalcon/cphalcon/issues/12170 +// * @issue https://github.com/phalcon/cphalcon/issues/12000 +// * @author Wojciech Ślawski +// * @since 2016-08-26 +// */ +// public function testSerializeSnapshotCache() +// { +// if (!extension_loaded('apc')) { +// $this->markTestSkipped( +// 'Warning: apc extension is not loaded' +// ); +// } +// +// if (!ini_get('apc.enabled') || (PHP_SAPI === 'cli' && !ini_get('apc.enable_cli'))) { +// $this->markTestSkipped( +// 'Warning: apc.enable_cli must be set to "On"' +// ); +// } +// +// if (extension_loaded('apcu') && version_compare(phpversion('apcu'), '5.1.6', '=')) { +// throw new SkippedTestError( +// 'Warning: APCu v5.1.6 was broken. See: https://github.com/krakjoe/apcu/issues/203' +// ); +// } +// +// $this->specify( +// 'Snapshot data should be saved while saving model to cache', +// function () { +// $cache = new Apc(new Data(['lifetime' => 20])); +// $robot = Robots::findFirst(); +// expect($robot)->isInstanceOf(Robots::class); +// expect($robot->getSnapshotData())->notEmpty(); +// $cache->save('robot', $robot); +// /** @var Robots $robot */ +// $robot = $cache->get('robot'); +// expect($robot)->isInstanceOf(Robots::class); +// expect($robot->getSnapshotData())->notEmpty(); +// expect($robot->getSnapshotData())->equals($robot->toArray()); +// $robot->text = 'abc'; +// $cache->save('robot', $robot); +// /** @var Robots $robot */ +// $robot = $cache->get('robot'); +// expect($robot)->isInstanceOf(Robots::class); +// expect($robot->getSnapshotData())->notEmpty(); +// expect($robot->getSnapshotData())->notEquals($robot->toArray()); +// } +// ); +// } +// +// /** +// * @expectedException \Phalcon\Mvc\Model\Exception +// * @expectedExceptionMessage Property 'serial' does not have a setter. +// */ +// public function testGettersAndSetters() +// { +// $this->specify( +// "Model getters and setters don't work", +// function () { +// $robot = Boutique\Robots::findFirst(); +// +// $testText = "executeSetGet Test"; +// $robot->assign(["text" => $testText]); +// +// expect($robot->text)->equals($testText . $robot::SETTER_EPILOGUE); +// expect($robot->text)->equals($robot->getText()); +// +// $testText = "executeSetGet Test 2"; +// $robot->text = $testText; +// +// expect($robot->text)->equals($testText . $robot::SETTER_EPILOGUE); +// expect($robot->text)->equals($robot->getText()); +// +// $robot = new Boutique\Robots(); +// $robot->serial = '1234'; +// } +// ); +// } +// +// public function testSerialize() +// { +// $this->specify( +// "Models aren't serialized or unserialized properly", +// function () { +// $robot = Robots::findFirst(); +// +// $serialized = serialize($robot); +// $robot = unserialize($serialized); +// +// expect($robot->save())->true(); +// } +// ); +// } +// +// public function testJsonSerialize() +// { +// $this->specify( +// "Single models aren't JSON serialized or JSON unserialized properly", +// function () { +// // Single model object json serialization +// $robot = Robots::findFirst(); +// $json = json_encode($robot); +// +// expect(is_string($json))->true(); +// expect(strlen($json) > 10)->true(); // make sure result is not "{ }" +// expect($robot->toArray())->equals(json_decode($json, true)); +// } +// ); +// +// $this->specify( +// "Model resultsets aren't JSON serialized or JSON unserialized properly", +// function () { +// // Result-set serialization +// $robots = Robots::find(); +// +// $json = json_encode($robots); +// +// expect(is_string($json))->true(); +// expect(strlen($json) > 50)->true(); // make sure result is not "{ }" +// expect($robots->toArray())->equals(json_decode($json, true)); +// } +// ); +// +// $this->specify( +// "Single row resultsets aren't JSON serialized or JSON unserialized properly", +// function () { +// $modelsManager = $this->setUpModelsManager(); +// $robot = Robots::findFirst(); +// +// // Single row serialization +// $result = $modelsManager->executeQuery("SELECT id FROM " . Robots::class . " LIMIT 1"); +// +// expect($result)->isInstanceOf('Phalcon\Mvc\Model\Resultset\Simple'); +// +// foreach ($result as $row) { +// expect($row)->isInstanceOf('Phalcon\Mvc\Model\Row'); +// expect($row->id)->equals($robot->id); +// +// $json = json_encode($row); +// +// expect(is_string($json))->true(); +// expect(strlen($json) > 5)->true(); // make sure result is not "{ }" +// expect($row->toArray())->equals(json_decode($json, true)); +// } +// } +// ); +// } +// +// public function testMassAssignmentNormal() +// { +// $this->specify( +// "Models can't properly assign properties", +// function () { +// $robot = new Robots(); +// +// $robot->assign( +// [ +// "type" => "mechanical", +// "year" => 2018, +// ] +// ); +// +// $success = $robot->save(); +// +// expect($success)->false(); +// expect($robot->type)->equals("mechanical"); +// expect($robot->year)->equals(2018); +// +// $robot = new Robots(); +// +// $robot->assign( +// [ +// "type" => "mechanical", +// "year" => 2018, +// ] +// ); +// +// expect($robot->type)->equals("mechanical"); +// expect($robot->year)->equals(2018); +// +// // not assigns nonexistent fields +// $robot = new Robots(); +// +// $robot->assign( +// [ +// "field1" => "mechanical", +// "field2" => 2018, +// ] +// ); +// +// expect(empty($robot->field1))->true(); +// expect(empty($robot->field2))->true(); +// +// // white list +// $robot = new Robots(); +// +// $robot->assign( +// [ +// "type" => "mechanical", +// "year" => 2018, +// ], +// null, +// ["type"] +// ); +// +// expect($robot->type)->equals("mechanical"); +// expect(empty($robot->year))->true(); +// +// // white list +// $robot = new Robots(); +// +// $robot->assign( +// [ +// "typeFromClient" => "mechanical", +// "yearFromClient" => 2018, +// ], +// [ +// "typeFromClient" => "type", +// "yearFromClient" => "year", +// ], +// ["type"] +// ); +// +// expect($robot->type)->equals("mechanical"); +// expect(empty($robot->year))->true(); +// } +// ); +// } +// +// public function testMassAssignmentRenamed() +// { +// $this->specify( +// "Models can't properly assign properties using a column map", +// function () { +// $robot = new Robotters(); +// +// $robot->assign( +// [ +// "theType" => "mechanical", +// "theYear" => 2018, +// ] +// ); +// +// $success = $robot->save(); +// +// expect($success)->false(); +// expect($robot->theType)->equals("mechanical"); +// expect($robot->theYear)->equals(2018); +// +// // assign uses column renaming +// $robot = new Robotters(); +// +// $robot->assign( +// [ +// "theType" => "mechanical", +// "theYear" => 2018, +// ] +// ); +// +// expect($robot->theType)->equals("mechanical"); +// expect($robot->theYear)->equals(2018); +// +// // not assigns nonexistent fields +// $robot = new Robotters(); +// +// $robot->assign( +// [ +// "field1" => "mechanical", +// "field2" => 2018, +// ] +// ); +// +// expect(empty($robot->field1))->true(); +// expect(empty($robot->field2))->true(); +// +// // white list +// $robot = new Robotters(); +// $robot->assign( +// [ +// "theType" => "mechanical", +// "theYear" => 2018 +// ], +// null, +// ["theType"] +// ); +// +// expect($robot->theType)->equals("mechanical"); +// expect(empty($robot->theYear))->true(); +// +// // white list & custom mapping +// $robot = new Robotters(); +// +// $robot->assign( +// [ +// "theTypeFromClient" => "mechanical", +// "theYearFromClient" => 2018 +// ], +// [ +// "theTypeFromClient" => "theType", +// "theYearFromClient" => "theYear", +// ], +// ["theType"] +// ); +// +// expect($robot->theType)->equals("mechanical"); +// expect(empty($robot->theYear))->true(); +// } +// ); +// } +// +// public function testFindersNormal() +// { +// $this->specify( +// "Models can't be found properly", +// function () { +// $robot = Robots::findFirstById(1); +// expect($robot)->isInstanceOf(Robots::class); +// expect($robot->id)->equals(1); +// +// $robot = Robots::findFirstById(2); +// expect($robot)->isInstanceOf(Robots::class); +// expect($robot->id)->equals(2); +// +// $robots = Robots::findByType('mechanical'); +// expect($robots)->count(2); +// expect($robots[0]->id)->equals(1); +// expect(Robots::countByType('mechanical'))->equals(2); +// } +// ); +// } +// +// public function testFindersRenamed() +// { +// $this->specify( +// "Models can't be found properly when using a column map", +// function () { +// $robot = Robotters::findFirstByCode(1); +// expect($robot)->isInstanceOf(Robotters::class); +// expect($robot->code)->equals(1); +// +// $robot = Robotters::findFirstByCode(2); +// expect($robot)->isInstanceOf(Robotters::class); +// expect($robot->code)->equals(2); +// +// $robots = Robotters::findByTheType('mechanical'); +// expect($robots)->count(2); +// expect($robots[0]->code)->equals(1); +// expect(Robotters::countByTheType('mechanical'))->equals(2); +// } +// ); +// } +// +// public function testBehaviorsTimestampable() +// { +// $this->specify( +// "Timestampable model behavior doesn't work", +// function () { +// $subscriber = new Subscribers(); +// +// $subscriber->email = 'some@some.com'; +// $subscriber->status = 'I'; +// +// expect($subscriber->save())->true(); +// expect(preg_match('/[0-9]{4}-[0-9]{2}-[0-9]{2}/', $subscriber->created_at))->equals(1); +// } +// ); +// } +// +// public function testBehaviorsSoftDelete() +// { +// $this->specify( +// "Soft Delete model behavior doesn't work", +// function () { +// $number = Subscribers::count(); +// +// $subscriber = Subscribers::findFirst(); +// +// expect($subscriber->delete())->true(); +// expect($subscriber->status)->equals('D'); +// expect(Subscribers::count())->equals($number); +// } +// ); +// } +// +// /** +// * @issue https://github.com/phalcon/cphalcon/issues/12507 +// */ +// public function testFieldDefaultEmptyStringIsNull() +// { +// $this->specify( +// 'The field default value is empty string and is determined to be null', +// function () { +// $personers = new Personers([ +// 'borgerId' => 'id-' . time() . rand(1, 99), +// 'slagBorgerId' => 1, +// 'kredit' => 2.3, +// 'status' => 'A', +// ]); +// +// // test field for create +// $personers->navnes = ''; +// $created = $personers->create(); +// +// expect($created)->true(); +// +// // write something to not null default '' field +// $personers->navnes = 'save something!'; +// +// $saved = $personers->save(); +// expect($saved)->true(); +// +// // test field for update +// $personers->navnes = ''; +// $saved = $personers->save(); +// +// expect($saved)->true(); +// +// $personers->delete(); +// } +// ); +// } +// +// +// /** +// * Tests setting code in message from validation messages +// * +// * @issue https://github.com/phalcon/cphalcon/issues/12645 +// * @author Wojciech Ślawski +// * @since 2017-03-03 +// */ +// public function testIssue12645() +// { +// $this->specify( +// "Issue #12645 is not fixed", +// function () { +// $robots = new Validation\Robots( +// [ +// 'name' => 'asd', +// 'type' => 'mechanical', +// 'year' => 2017, +// 'datetime' => (new \DateTime())->format('Y-m-d'), +// 'text' => 'asd', +// ] +// ); +// expect($robots->create())->false(); +// /** @var Message $message */ +// $message = $robots->getMessages()[0]; +// expect($message)->isInstanceOf(Message::class); +// expect($message->getCode())->equals(20); +// } +// ); +// } +// +// /** +// * Tests empty string value on not null +// * +// * @issue https://github.com/phalcon/cphalcon/issues/12688 +// * @author Wojciech Ślawski +// * @since 2017-03-09 +// */ +// public function testIssue12688() +// { +// $this->specify( +// 'Issue 12688 is happening', +// function () { +// $robots = new Robots(); +// $robots->name = ''; +// $robots->assign( +// [ +// 'datetime' => (new DateTime())->format('Y-m-d'), +// 'text' => 'text', +// ] +// ); +// $robots->save(); +// } +// ); +// } +// +// /** +// * Tests disabling assign setters +// * +// * @issue https://github.com/phalcon/cphalcon/issues/12645 +// * @author Wojciech Ślawski +// * @since 2017-03-23 +// */ +// public function testAssignSettersDisabled() +// { +// $this->specify( +// 'Disabling setters in assign is not working', +// function () { +// $robots = new Robots( +// [ +// 'name' => 'test', +// ] +// ); +// expect($robots->wasSetterUsed)->true(); +// Model::setup( +// [ +// 'disableAssignSetters' => true, +// ] +// ); +// $robots = new Robots( +// [ +// 'name' => 'test', +// ] +// ); +// expect($robots->wasSetterUsed)->false(); +// Model::setup( +// [ +// 'disableAssignSetters' => false, +// ] +// ); +// } +// ); +// } +// +// /** +// * Test check allowEmptyStringValues +// * +// * @author Nikolay Sumrak +// * @since 2017-11-16 +// */ +// public function testAllowEmptyStringFields() +// { +// $this->specify( +// 'Allow empty string value', +// function () { +// Model::setup( +// [ +// 'notNullValidations' => true, +// 'exceptionOnFailedSave' => false, +// ] +// ); +// +// $model = new ModelWithStringField(); +// $model->field = ''; +// $model->disallowEmptyStringValue(); +// $status = $model->save(); +// expect($status)->false(); +// +// $model->allowEmptyStringValue(); +// $status = $model->save(); +// expect($status)->true(); +// +// Model::setup( +// [ +// 'notNullValidations' => false, +// 'exceptionOnFailedSave' => true, +// ] +// ); +// } +// ); +// } +// +// /** +// * @author Jakob Oberhummer +// * @since 2017-12-18 +// */ +// public function testUseTransactionWithinFind() +// { +// $this->specify( +// 'Transaction is passed as option parameter', +// function () { +// /** +// * @var $transactionManager \Phalcon\Mvc\Model\Transaction\Manager +// */ +// $transactionManager = $this->setUpTransactionManager(); +// $transaction = $transactionManager->getOrCreateTransaction(); +// +// $newSubscriber = new Subscribers(); +// $newSubscriber->setTransaction($transaction); +// $newSubscriber->email = 'transaction@example.com'; +// $newSubscriber->status = 'I'; +// $newSubscriber->save(); +// +// $subscriber = Subscribers::find( +// [ +// 'email = "transaction@example.com"', +// 'transaction' => $transaction +// ] +// ); +// +// expect(\count($subscriber), 1); +// } +// ); +// } +// +// /** +// * @author Jakob Oberhummer +// * @since 2017-12-18 +// */ +// public function testUseTransactionWithinFindFirst() +// { +// $this->specify( +// 'Transaction is passed as option parameter', +// function () { +// /** +// * @var $transactionManager \Phalcon\Mvc\Model\Transaction\Manager +// */ +// $transactionManager = $this->setUpTransactionManager(); +// $transaction = $transactionManager->getOrCreateTransaction(); +// +// $newSubscriber = new Subscribers(); +// $newSubscriber->setTransaction($transaction); +// $newSubscriber->email = 'transaction@example.com'; +// $newSubscriber->status = 'I'; +// $newSubscriber->save(); +// +// $subscriber = Subscribers::findFirst( +// [ +// 'email = "transaction@example.com"', +// 'transaction' => $transaction +// ] +// ); +// +// expect(\get_class($subscriber), 'Subscriber'); +// } +// ); +// } +// +// /** +// * @author Jakob Oberhummer +// * @since 2017-12-18 +// */ +// public function testUseTransactionOutsideFind() +// { +// $this->specify( +// 'Query outside of the creation transaction', +// function () { +// /** +// * @var $transactionManager \Phalcon\Mvc\Model\Transaction\Manager +// */ +// $transactionManager = $this->setUpTransactionManager(); +// $transaction = $transactionManager->getOrCreateTransaction(); +// +// $newSubscriber = new Subscribers(); +// $newSubscriber->setTransaction($transaction); +// $newSubscriber->email = 'transaction@example.com'; +// $newSubscriber->status = 'I'; +// $newSubscriber->save(); +// +// /** +// * @var $transactionManager \Phalcon\Mvc\Model\Transaction\Manager +// */ +// $transactionManager = $this->setUpTransactionManager(); +// $secondTransaction = $transactionManager->getOrCreateTransaction(); +// +// $subscriber = Subscribers::find( +// [ +// 'email = "transaction@example.com"', +// 'transaction' => $secondTransaction +// ] +// ); +// +// expect(\count($subscriber), 0); +// } +// ); +// } +// +// /** +// * @author Jakob Oberhummer +// * @since 2017-12-18 +// */ +// public function testUseTransactionOutsideFindFirst() +// { +// $this->specify( +// 'Query outside of the creation transaction', +// function () { +// /** +// * @var $transactionManager \Phalcon\Mvc\Model\Transaction\Manager +// */ +// $transactionManager = $this->setUpTransactionManager(); +// $transaction = $transactionManager->getOrCreateTransaction(); +// +// $newSubscriber = new Subscribers(); +// $newSubscriber->setTransaction($transaction); +// $newSubscriber->email = 'transaction@example.com'; +// $newSubscriber->status = 'I'; +// $newSubscriber->save(); +// +// /** +// * @var $transactionManager \Phalcon\Mvc\Model\Transaction\Manager +// */ +// $transactionManager = $this->setUpTransactionManager(); +// $secondTransaction = $transactionManager->getOrCreateTransaction(); +// +// $subscriber = Subscribers::findFirst( +// [ +// 'email = "transaction@example.com"', +// 'transaction' => $secondTransaction +// ] +// ); +// +// expect(false, $subscriber); +// } +// ); +// } +// +// /** +// * Tests binding of non-scalar values by casting to string and binding them. +// * +// * @issue https://github.com/phalcon/cphalcon/issues/13058 +// * @author Cameron Hall +// * @since 2018-11-06 +// */ +// public function testIssue13058() +// { +// $this->specify( +// 'Issue 13058 is happening, non-scalar values are not being casted and bound.', +// function () { +// $robots = new Robots(); +// $robots->name = ''; +// $robots->datetime = new \Phalcon\Test\Db\DateTime(); +// $robots->text = 'text'; +// $result = $robots->save(); +// expect($result)->true(); +// } +// ); +// } +} diff --git a/tests/integration/Mvc/ModelsCest.php b/tests/integration/Mvc/ModelsCest.php new file mode 100644 index 00000000000..e9bc6ad65b9 --- /dev/null +++ b/tests/integration/Mvc/ModelsCest.php @@ -0,0 +1,763 @@ +setNewFactoryDefault(); + } + + public function _after(IntegrationTester $I) + { + Model::setup( + [ + 'phqlLiterals' => true, + ] + ); + } + + public function testModelsMysql(IntegrationTester $I) + { + $this->setDiMysql(); + + $this->executeTestsNormal($I); + $this->executeTestsRenamed($I); + + $this->issue1534($I); + $this->issue886($I); + $this->issue11253($I); + } + + private function executeTestsNormal(IntegrationTester $I) + { + $this->prepareDb(); + + //Count tests + $I->assertEquals(People::count(), Personas::count()); + + $params = []; + $I->assertEquals(People::count($params), Personas::count($params)); + + $params = ["estado='I'"]; + $I->assertEquals(People::count($params), Personas::count($params)); + + $params = "estado='I'"; + $I->assertEquals(People::count($params), Personas::count($params)); + + $params = ["conditions" => "estado='I'"]; + $I->assertEquals(People::count($params), Personas::count($params)); + + //Find first + $people = People::findFirst(); + $I->assertInternalType('object', $people); + $I->assertInstanceOf('Phalcon\Test\Models\People', $people); + + $persona = Personas::findFirst(); + $I->assertEquals($people->nombres, $persona->nombres); + $I->assertEquals($people->estado, $persona->estado); + + $people = People::findFirst("estado='I'"); + $I->assertInternalType('object', $people); + + $persona = Personas::findFirst("estado='I'"); + $I->assertInternalType('object', $persona); + + $I->assertEquals($people->nombres, $persona->nombres); + $I->assertEquals($people->estado, $persona->estado); + + $people = People::findFirst(["estado='I'"]); + $persona = Personas::findFirst(["estado='I'"]); + $I->assertEquals($people->nombres, $persona->nombres); + $I->assertEquals($people->estado, $persona->estado); + + $params = ["conditions" => "estado='I'"]; + $people = People::findFirst($params); + $persona = Personas::findFirst($params); + $I->assertEquals($people->nombres, $persona->nombres); + $I->assertEquals($people->estado, $persona->estado); + + $params = ["conditions" => "estado='A'", "order" => "nombres"]; + $people = People::findFirst($params); + $persona = Personas::findFirst($params); + $I->assertEquals($people->nombres, $persona->nombres); + $I->assertEquals($people->estado, $persona->estado); + + $params = ["estado='A'", "order" => "nombres DESC", "limit" => 30]; + $people = People::findFirst($params); + $persona = Personas::findFirst($params); + $I->assertEquals($people->nombres, $persona->nombres); + $I->assertEquals($people->estado, $persona->estado); + + $params = ["estado=?1", "bind" => [1 => 'A'], "order" => "nombres DESC", "limit" => 30]; + $people = People::findFirst($params); + $persona = Personas::findFirst($params); + $I->assertEquals($people->nombres, $persona->nombres); + $I->assertEquals($people->estado, $persona->estado); + + $params = ["estado=:estado:", "bind" => ["estado" => 'A'], "order" => "nombres DESC", "limit" => 30]; + $people = People::findFirst($params); + $persona = Personas::findFirst($params); + $I->assertEquals($people->nombres, $persona->nombres); + $I->assertEquals($people->estado, $persona->estado); + + $robot = Robots::findFirst(1); + $I->assertInstanceOf('Phalcon\Test\Models\Robots', $robot); + + //Find tests + $personas = Personas::find(); + $people = People::find(); + $I->assertCount(count($personas), $people); + + $personas = Personas::find("estado='I'"); + $people = People::find("estado='I'"); + $I->assertCount(count($personas), $people); + + $personas = Personas::find(["estado='I'"]); + $people = People::find(["estado='I'"]); + $I->assertCount(count($personas), $people); + + $personas = Personas::find(["estado='A'", "order" => "nombres"]); + $people = People::find(["estado='A'", "order" => "nombres"]); + $I->assertCount(count($personas), $people); + + $personas = Personas::find(["estado='A'", "order" => "nombres", "limit" => 100]); + $people = People::find(["estado='A'", "order" => "nombres", "limit" => 100]); + $I->assertCount(count($personas), $people); + + $params = ["estado=?1", "bind" => [1 => "A"], "order" => "nombres", "limit" => 100]; + $personas = Personas::find($params); + $people = People::find($params); + $I->assertCount(count($personas), $people); + + $params = ["estado=:estado:", "bind" => ["estado" => "A"], "order" => "nombres", "limit" => 100]; + $personas = Personas::find($params); + $people = People::find($params); + $I->assertCount(count($personas), $people); + + $number = 0; + $peoples = Personas::find(["conditions" => "estado='A'", "order" => "nombres", "limit" => 20]); + foreach ($peoples as $people) { + $number++; + } + $I->assertEquals($number, 20); + + $persona = new Personas(); + $persona->cedula = 'CELL' . mt_rand(0, 999999); + $I->assertFalse($persona->save()); + + //Messages + $I->assertCount(3, $persona->getMessages()); + + $messages = [ + 0 => ModelMessage::__set_state([ + '_type' => 'PresenceOf', + '_message' => 'tipo_documento_id is required', + '_field' => 'tipo_documento_id', + '_code' => 0, + ]), + 1 => ModelMessage::__set_state([ + '_type' => 'PresenceOf', + '_message' => 'cupo is required', + '_field' => 'cupo', + '_code' => 0, + ]), + 2 => ModelMessage::__set_state([ + '_type' => 'PresenceOf', + '_message' => 'estado is required', + '_field' => 'estado', + '_code' => 0, + ]), + ]; + $I->assertEquals($persona->getMessages(), $messages); + + //Save + $persona = new Personas(); + $persona->cedula = 'CELL' . mt_rand(0, 999999); + $persona->tipo_documento_id = 1; + $persona->nombres = 'LOST'; + $persona->telefono = '1'; + $persona->cupo = 20000; + $persona->estado = 'A'; + $I->assertTrue($persona->save()); + + $persona = new Personas(); + $persona->cedula = 'CELL' . mt_rand(0, 999999); + $persona->tipo_documento_id = 1; + $persona->nombres = 'LOST LOST'; + $persona->telefono = '2'; + $persona->cupo = 0; + $persona->estado = 'X'; + $I->assertTrue($persona->save()); + + //Check correct save + $persona = Personas::findFirst(["estado='X'"]); + $I->assertNotEquals($persona, false); + $I->assertEquals($persona->nombres, 'LOST LOST'); + $I->assertEquals($persona->estado, 'X'); + + //Update + $persona->cupo = 150000; + $persona->telefono = '123'; + $I->assertTrue($persona->update()); + + //Checking correct update + $persona = Personas::findFirst(["estado='X'"]); + $I->assertNotEquals($persona, false); + $I->assertEquals($persona->cupo, 150000); + $I->assertEquals($persona->telefono, '123'); + + //Update + $persona->assign([ + 'nombres' => 'LOST UPDATE', + 'telefono' => '2121', + ]); + $I->assertTrue($persona->update()); + + //Checking correct update + $persona = Personas::findFirst(["estado='X'"]); + $I->assertNotEquals($persona, false); + $I->assertEquals($persona->nombres, 'LOST UPDATE'); + $I->assertEquals($persona->telefono, '2121'); + + //Create + $persona = new Personas(); + $persona->cedula = 'CELL' . mt_rand(0, 999999); + $persona->tipo_documento_id = 1; + $persona->nombres = 'LOST CREATE'; + $persona->telefono = '1'; + $persona->cupo = 21000; + $persona->estado = 'A'; + $I->assertTrue($persona->create()); + + $persona = new Personas(); + $persona->assign([ + 'cedula' => 'CELL' . mt_rand(0, 999999), + 'tipo_documento_id' => 1, + 'nombres' => 'LOST CREATE', + 'telefono' => '1', + 'cupo' => 21000, + 'estado' => 'A', + ]); + $I->assertTrue($persona->create()); + + //Grouping + $difEstados = People::count(["distinct" => "estado"]); + $I->assertEquals($difEstados, 3); + + $group = People::count(["group" => "estado"]); + $I->assertCount(3, $group); + + //Deleting + $before = People::count(); + $I->assertTrue($persona->delete()); + $I->assertEquals($before - 1, People::count()); + + //Assign + $persona = new Personas(); + + $persona->assign([ + 'tipo_documento_id' => 1, + 'nombres' => 'LOST CREATE', + 'telefono' => '1', + 'cupo' => 21000, + 'estado' => 'A', + 'notField' => 'SOME VALUE', + ]); + + $expected = [ + 'cedula' => null, + 'tipo_documento_id' => 1, + 'nombres' => 'LOST CREATE', + 'telefono' => '1', + 'direccion' => null, + 'email' => null, + 'fecha_nacimiento' => null, + 'ciudad_id' => null, + 'creado_at' => null, + 'cupo' => 21000, + 'estado' => 'A', + ]; + + $I->assertEquals($persona->toArray(), $expected); + + // Issue 1701 + $expected = [ + 'nombres' => 'LOST CREATE', + 'cupo' => 21000, + 'estado' => 'A', + ]; + $I->assertEquals($persona->toArray(['nombres', 'cupo', 'estado']), $expected); + + //toArray with params must return only mapped fields if exists columnMap + $persona = new Personers(); + $persona->assign([ + 'slagBorgerId' => 1, + 'navnes' => 'LOST CREATE', + 'teletelefonfono' => '1', + 'kredit' => 21000, + 'status' => 'A', + 'notField' => 'SOME VALUE', + ]); + $expected = [ + 'navnes' => 'LOST CREATE', + 'kredit' => 21000, + 'status' => 'A', + ]; + $I->assertEquals($persona->toArray(['nombres', 'cupo', 'estado']), []);//db fields names + $I->assertEquals($persona->toArray(['navnes', 'kredit', 'status']), $expected);//mapped fields names + + + //Refresh + $persona = Personas::findFirst(); + + $personaData = $persona->toArray(); + + $persona->assign([ + 'tipo_documento_id' => 1, + 'nombres' => 'LOST CREATE', + 'telefono' => '1', + 'cupo' => 21000, + 'estado' => 'A', + 'notField' => 'SOME VALUE', + ]); + + $persona->refresh(); + $I->assertEquals($personaData, $persona->toArray()); + + // Issue 1314 + $parts = new Parts2(); + $parts->save(); + + // Issue 1506 + $persona = Personas::findFirst(['columns' => 'nombres, telefono, estado', "nombres = 'LOST CREATE'"]); + $expected = [ + 'nombres' => 'LOST CREATE', + 'telefono' => '1', + 'estado' => 'A', + ]; + + $I->assertEquals($expected, $persona->toArray()); + } + + private function prepareDb() + { + $db = $this->container->get('db'); + $db->delete("personas", "estado='X'"); + $db->delete("personas", "cedula LIKE 'CELL%'"); + } + + private function executeTestsRenamed(IntegrationTester $I) + { + $this->prepareDb(); + + $params = []; + $I->assertGreaterThan(0, Personers::count($params)); + + $params = ["status = 'I'"]; + $I->assertGreaterThan(0, Personers::count($params)); + + $params = "status='I'"; + $I->assertGreaterThan(0, Personers::count($params)); + + $params = ["conditions" => "status='I'"]; + $I->assertGreaterThan(0, Personers::count($params)); + + //Find first + $personer = Personers::findFirst(); + $I->assertInternalType('object', $personer); + $I->assertInstanceOf('Phalcon\Test\Models\Personers', $personer); + $I->assertTrue(isset($personer->navnes)); + $I->assertTrue(isset($personer->status)); + + $personer = Personers::findFirst("status = 'I'"); + $I->assertInternalType('object', $personer); + $I->assertTrue(isset($personer->navnes)); + $I->assertTrue(isset($personer->status)); + + $personer = Personers::findFirst(["status='I'"]); + $I->assertInternalType('object', $personer); + $I->assertTrue(isset($personer->navnes)); + $I->assertTrue(isset($personer->status)); + + $params = ["conditions" => "status='I'"]; + $personer = Personers::findFirst($params); + $I->assertInternalType('object', $personer); + $I->assertTrue(isset($personer->navnes)); + $I->assertTrue(isset($personer->status)); + + $params = ["conditions" => "status='A'", "order" => "navnes"]; + $personer = Personers::findFirst($params); + $I->assertInternalType('object', $personer); + $I->assertTrue(isset($personer->navnes)); + $I->assertTrue(isset($personer->status)); + + $params = ["status='A'", "order" => "navnes DESC", "limit" => 30]; + $personer = Personers::findFirst($params); + $I->assertInternalType('object', $personer); + $I->assertTrue(isset($personer->navnes)); + $I->assertTrue(isset($personer->status)); + + $params = ["status=?1", "bind" => [1 => 'A'], "order" => "navnes DESC", "limit" => 30]; + $personer = Personers::findFirst($params); + $I->assertInternalType('object', $personer); + $I->assertTrue(isset($personer->navnes)); + $I->assertTrue(isset($personer->status)); + + $params = ["status=:status:", "bind" => ["status" => 'A'], "order" => "navnes DESC", "limit" => 30]; + $personer = Personers::findFirst($params); + $I->assertInternalType('object', $personer); + $I->assertTrue(isset($personer->navnes)); + $I->assertTrue(isset($personer->status)); + + $robotter = Robotters::findFirst(1); + $I->assertInstanceOf('Phalcon\Test\Models\Robotters', $robotter); + + //Find tests + $personers = Personers::find(); + $I->assertGreaterThan(0, count($personers)); + + $personers = Personers::find("status='I'"); + $I->assertGreaterThan(0, count($personers)); + + $personers = Personers::find(["status='I'"]); + $I->assertGreaterThan(0, count($personers)); + + $personers = Personers::find(["status='I'", "order" => "navnes"]); + $I->assertGreaterThan(0, count($personers)); + + $params = ["status='I'", "order" => "navnes", "limit" => 100]; + $personers = Personers::find($params); + $I->assertGreaterThan(0, count($personers)); + + $params = ["status=?1", "bind" => [1 => "A"], "order" => "navnes", "limit" => 100]; + $personers = Personers::find($params); + $I->assertGreaterThan(0, count($personers)); + + $params = ["status=:status:", "bind" => ['status' => "A"], "order" => "navnes", "limit" => 100]; + $personers = Personers::find($params); + $I->assertGreaterThan(0, count($personers)); + + //Traverse the cursor + $number = 0; + $personers = Personers::find(["conditions" => "status='A'", "order" => "navnes", "limit" => 20]); + foreach ($personers as $personer) { + $number++; + } + $I->assertEquals($number, 20); + + $personer = new Personers(); + $personer->borgerId = 'CELL' . mt_rand(0, 999999); + $I->assertFalse($personer->save()); + + //Messages + $I->assertEquals(count($personer->getMessages()), 3); + + $messages = [ + 0 => ModelMessage::__set_state([ + '_type' => 'PresenceOf', + '_message' => 'slagBorgerId is required', + '_field' => 'slagBorgerId', + '_code' => 0, + ]), + 1 => ModelMessage::__set_state([ + '_type' => 'PresenceOf', + '_message' => 'kredit is required', + '_field' => 'kredit', + '_code' => 0, + ]), + 2 => ModelMessage::__set_state([ + '_type' => 'PresenceOf', + '_message' => 'status is required', + '_field' => 'status', + '_code' => 0, + ]), + ]; + $I->assertEquals($personer->getMessages(), $messages); + + //Save + $personer = new Personers(); + $personer->borgerId = 'CELL' . mt_rand(0, 999999); + $personer->slagBorgerId = 1; + $personer->navnes = 'LOST'; + $personer->telefon = '1'; + $personer->kredit = 20000; + $personer->status = 'A'; + $I->assertTrue($personer->save()); + + $personer = new Personers(); + $personer->borgerId = 'CELL' . mt_rand(0, 999999); + $personer->slagBorgerId = 1; + $personer->navnes = 'LOST LOST'; + $personer->telefon = '2'; + $personer->kredit = 0; + $personer->status = 'X'; + $I->assertTrue($personer->save()); + + //Check correct save + $personer = Personers::findFirst(["status='X'"]); + $I->assertNotEquals($personer, false); + $I->assertEquals($personer->navnes, 'LOST LOST'); + $I->assertEquals($personer->status, 'X'); + + //Update + $personer->kredit = 150000; + $personer->telefon = '123'; + $I->assertTrue($personer->update()); + + //Checking correct update + $personer = Personers::findFirst(["status='X'"]); + $I->assertNotEquals($personer, false); + $I->assertEquals($personer->kredit, 150000); + $I->assertEquals($personer->telefon, '123'); + + //Update + $personer->assign([ + 'navnes' => 'LOST UPDATE', + 'telefon' => '2121', + ]); + $I->assertTrue($personer->update()); + + //Checking correct update + $personer = Personers::findFirst(["status='X'"]); + $I->assertNotEquals($personer, false); + $I->assertEquals($personer->navnes, 'LOST UPDATE'); + $I->assertEquals($personer->telefon, '2121'); + + //Create + $personer = new Personers(); + $personer->borgerId = 'CELL' . mt_rand(0, 999999); + $personer->slagBorgerId = 1; + $personer->navnes = 'LOST CREATE'; + $personer->telefon = '2'; + $personer->kredit = 21000; + $personer->status = 'A'; + $I->assertTrue($personer->save()); + + $personer = new Personers(); + $personer->assign([ + 'borgerId' => 'CELL' . mt_rand(0, 999999), + 'slagBorgerId' => 1, + 'navnes' => 'LOST CREATE', + 'telefon' => '1', + 'kredit' => 21000, + 'status' => 'A', + ]); + $I->assertTrue($personer->create()); + + //Deleting + $before = Personers::count(); + $I->assertTrue($personer->delete()); + $I->assertEquals($before - 1, Personers::count()); + + //Assign + $personer = new Personers(); + + $personer->assign([ + 'slagBorgerId' => 1, + 'navnes' => 'LOST CREATE', + 'telefon' => '1', + 'kredit' => 21000, + 'status' => 'A', + ]); + + $expected = [ + 'borgerId' => null, + 'slagBorgerId' => 1, + 'navnes' => 'LOST CREATE', + 'telefon' => '1', + 'adresse' => null, + 'elektroniskPost' => null, + 'fodtDato' => null, + 'fodebyId' => null, + 'skabtPa' => null, + 'kredit' => 21000, + 'status' => 'A', + ]; + $I->assertEquals($personer->toArray(), $expected); + + //Refresh + $personer = Personers::findFirst(); + $personerData = $personer->toArray(); + + $personer->assign([ + 'slagBorgerId' => 1, + 'navnes' => 'LOST CREATE', + 'telefon' => '1', + 'kredit' => 21000, + 'status' => 'A', + ]); + + $personer->refresh(); + $I->assertEquals($personerData, $personer->toArray()); + } + + private function issue1534(IntegrationTester $I) + { + $I->skipTest('TODO - Find where the table is'); + $this->prepareDb(); + $db = $this->container->get('db'); +// if (true === $db->tableExists('issue_1534')) { +// $I->assertTrue($db->delete('issue_1534')); +// } + + $product = new I1534(); + $product->language = new RawValue('default(language)'); + $product->language2 = new RawValue('default(language2)'); + $product->name = 'foo'; + $product->slug = 'bar'; + $product->brand = new RawValue('default'); + $product->sort = new RawValue('default'); + $I->assertTrue($product->save()); + $I->assertEquals(1, I1534::count()); + + $entry = I1534::findFirst(); + $I->assertEquals('bb', $entry->language); + $I->assertEquals('bb', $entry->language2); + $I->assertEquals('0', $entry->sort); + $I->assertNull($entry->brand); + + $I->assertTrue($entry->delete()); + + $product = new I1534(); + $product->language = 'en'; + $product->language2 = 'en'; + $product->name = 'foo'; + $product->slug = 'bar'; + $product->brand = 'brand'; + $product->sort = 1; + $I->assertTrue($product->save()); + $I->assertEquals(1, I1534::count()); + + $entry = I1534::findFirst(); + $entry->brand = new RawValue('default'); + $entry->sort = new RawValue('default'); + $I->assertTrue($entry->save()); + $I->assertEquals(1, I1534::count()); + + $entry = I1534::findFirst(); + $I->assertEquals('0', $entry->sort); + $I->assertNull($entry->brand); + + $entry->language2 = new RawValue('default(language)'); + $I->assertTrue($entry->save()); + $I->assertEquals(1, I1534::count()); + + $entry = I1534::findFirst(); + $I->assertEquals('bb', $entry->language2); + $I->assertEquals('0', $entry->sort); + $I->assertNull($entry->brand); + $entry->delete(); + + //test subject of Issue - setting RawValue('default') + $product = new I1534(); + $product->language = new RawValue('default'); + $product->language2 = new RawValue('default'); + $product->name = 'foo'; + $product->slug = 'bar'; + $product->brand = 'brand'; + $product->sort = 1; + $I->assertTrue($product->save()); + $I->assertEquals(1, I1534::count()); + + + $entry = I1534::findFirst(); + $I->assertEquals('bb', $entry->language); + $I->assertEquals('bb', $entry->language2); + + $entry->language2 = 'en'; + $I->assertTrue($entry->save()); + + $entry = I1534::findFirst(); + $I->assertEquals('en', $entry->language2); + + $entry->language2 = new RawValue('default'); + $I->assertTrue($entry->save()); + + $entry = I1534::findFirst(); + $I->assertEquals('bb', $entry->language2); + + + $I->assertTrue($db->delete('issue_1534')); + } + + private function issue886(IntegrationTester $I) + { + $this->prepareDb(); + + Model::setup( + [ + 'phqlLiterals' => false, + ] + ); + + $people = People::findFirst(); + $I->assertInternalType('object', $people); + $I->assertInstanceOf('Phalcon\Test\Models\People', $people); + + Model::setup( + [ + 'phqlLiterals' => false, + ] + ); + } + + private function issue11253(IntegrationTester $I) + { + $this->prepareDb(); + + $child = new Childs(); + $child->for = '1'; + $child->create(); + + $child = new Childs(); + $child->group = '1'; + $child->create(); + + $children = Childs::findByFor(1); + $children = Childs::findByGroup(1); + } + + public function testModelsPostgresql(IntegrationTester $I) + { + $this->setDiPostgresql(); + + $this->executeTestsNormal($I); + $this->executeTestsRenamed($I); + $this->issue886($I); + } + + public function testModelsSqlite(IntegrationTester $I) + { + $this->setDiSqlite(); + + /** + * @todo Check Sqlite - tests lock up + */ +// $this->executeTestsNormal($I); +// $this->executeTestsRenamed($I); +// $this->issue886($I); + } + + public function testIssue10371(IntegrationTester $I) + { + $I->assertContains('addBehavior', get_class_methods('Phalcon\Mvc\Model')); + } +} diff --git a/tests/integration/Mvc/Router/AnnotationsCest.php b/tests/integration/Mvc/Router/AnnotationsCest.php new file mode 100644 index 00000000000..00176ff5349 --- /dev/null +++ b/tests/integration/Mvc/Router/AnnotationsCest.php @@ -0,0 +1,206 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Mvc\Router; + +use IntegrationTester; +use Phalcon\Annotations\Adapter\Memory; +use Phalcon\Di; +use Phalcon\Http\Request; +use Phalcon\Mvc\Router\Annotations; +use Phalcon\Mvc\Router\Route; +use Phalcon\Test\Controllers\NamespacedAnnotationController; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use function is_object; + +class AnnotationsCest +{ + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->newDi(); + $this->setDiRequest(); + $this->setDiAnnotations(); + } + + public function testRouterFullResources(IntegrationTester $I) + { + require_once dataFolder('fixtures/controllers/NamespacedAnnotationController.php'); + + $routes = $this->getRoutes(); + foreach ($routes as $route) { + $uri = $route['uri']; + $method = $route['method']; + $controller = $route['controller']; + $action = $route['action']; + $params = $route['params']; + + $container = $this->getDi(); + $router = new Annotations(false); + + $router->setDI($container); + + $router->addResource("Phalcon\Test\Controllers\Robots", "/"); + $router->addResource("Phalcon\Test\Controllers\Products", "/products"); + $router->addResource("Phalcon\Test\Controllers\About", "/about"); + + $router->handle("/products"); + + $expected = 6; + $actual = $router->getRoutes(); + $I->assertCount($expected, $actual); + + $router = new Annotations(false); + + $router->setDI($container); + $router->addResource("Phalcon\Test\Controllers\Robots", "/"); + $router->addResource("Phalcon\Test\Controllers\Products", "/products"); + $router->addResource("Phalcon\Test\Controllers\About", "/about"); + $router->handle("/about"); + + $expected = 5; + $actual = $router->getRoutes(); + $I->assertCount($expected, $actual); + + $router = new Annotations(false); + $router->setDI($container); + $router->setDefaultNamespace("MyNamespace\\Controllers"); + $router->addResource("NamespacedAnnotation", "/namespaced"); + $router->handle("/namespaced"); + + $expected = 1; + $actual = $router->getRoutes(); + $I->assertCount($expected, $actual); + + $router = new Annotations(false); + $router->setDI($container); + $router->addResource("MyNamespace\\Controllers\\NamespacedAnnotation", "/namespaced"); + $router->handle("/namespaced/"); + + + $router = new Annotations(false); + + $router->setDI($container); + $router->addResource("Phalcon\Test\Controllers\Robots"); + $router->addResource("Phalcon\Test\Controllers\Products"); + $router->addResource("Phalcon\Test\Controllers\About"); + $router->addResource("Phalcon\Test\Controllers\Main"); + $router->handle("/"); + + $expected = 9; + $actual = $router->getRoutes(); + $I->assertCount($expected, $actual); + + $route = $router->getRouteByName("save-robot"); + $I->assertTrue(is_object($route)); + + $class = Route::class; + $I->assertInstanceOf($class, $route); + + $route = $router->getRouteByName("save-product"); + $I->assertTrue(is_object($route)); + + $class = Route::class; + $I->assertInstanceOf($class, $route); + + $_SERVER["REQUEST_METHOD"] = $method; + $router->handle($uri); + + $expected = $controller; + $actual = $router->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = $action; + $actual = $router->getActionName(); + $I->assertEquals($expected, $actual); + $expected = $params; + $actual = $router->getParams(); + $I->assertEquals($expected, $actual); + $I->assertTrue($router->isExactControllerName()); + } + } + + private function getRoutes(): array + { + return [ + [ + "uri" => "/products/save", + "method" => "PUT", + "controller" => "products", + "action" => "save", + "params" => [], + ], + [ + "uri" => "/products/save", + "method" => "POST", + "controller" => "products", + "action" => "save", + "params" => [], + ], + [ + "uri" => "/products/edit/100", + "method" => "GET", + "controller" => "products", + "action" => "edit", + "params" => ["id" => "100"], + ], + [ + "uri" => "/products", + "method" => "GET", + "controller" => "products", + "action" => "index", + "params" => [], + ], + [ + "uri" => "/robots/edit/100", + "method" => "GET", + "controller" => "robots", + "action" => "edit", + "params" => ["id" => "100"], + ], + [ + "uri" => "/robots", + "method" => "GET", + "controller" => "robots", + "action" => "index", + "params" => [], + ], + [ + "uri" => "/robots/save", + "method" => "PUT", + "controller" => "robots", + "action" => "save", + "params" => [], + ], + [ + "uri" => "/about/team", + "method" => "GET", + "controller" => "about", + "action" => "team", + "params" => [], + ], + [ + "uri" => "/about/team", + "method" => "POST", + "controller" => "about", + "action" => "teampost", + "params" => [], + ], + [ + "uri" => "/", + "method" => "GET", + "controller" => "main", + "action" => "index", + "params" => [], + ], + ]; + } +} diff --git a/tests/integration/Mvc/View/Engine/Volt/CompilerCest.php b/tests/integration/Mvc/View/Engine/Volt/CompilerCest.php index dcb4072ebf7..14d254f5e2c 100644 --- a/tests/integration/Mvc/View/Engine/Volt/CompilerCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/CompilerCest.php @@ -18,16 +18,16 @@ namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt; use DateTime; -use Phalcon\Di; use IntegrationTester; -use Phalcon\Mvc\View; -use Phalcon\Tag; -use Phalcon\Mvc\Url; +use Phalcon\Di; use Phalcon\Escaper; +use Phalcon\Forms\Element\Password; use Phalcon\Forms\Form; +use Phalcon\Mvc\Url; +use Phalcon\Mvc\View; use Phalcon\Mvc\View\Engine\Volt; -use Phalcon\Forms\Element\Password; use Phalcon\Mvc\View\Engine\Volt\Compiler; +use Phalcon\Tag; /** * Phalcon\Test\Integration\Mvc\View\Engine\Volt\CompilerCest @@ -49,64 +49,83 @@ class CompilerCest public function shouldCreateContent(IntegrationTester $I) { $I->wantToTest('Compile import recursive files'); + $I->skipTest('TODO - Check me'); - $I->removeFilesWithoutErrors([ - PATH_DATA . 'views/layouts/test10.volt.php', - PATH_DATA . 'views/test10/index.volt.php', - PATH_DATA . 'views/test10/other.volt.php' - ]); + $I->safeDeleteFile(dataFolder('fixtures/views/layouts/extends.volt.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/extends/index.volt.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/extends/other.volt.php')); $di = new Di(); $view = new View(); $view->setDI($di); - $view->setViewsDir(PATH_DATA . 'views/'); + $view->setViewsDir(dataFolder('fixtures/views/')); $view->registerEngines([ - '.volt' => 'Phalcon\Mvc\View\Engine\Volt' + '.volt' => 'Phalcon\Mvc\View\Engine\Volt', ]); $view->setParamToView('song', 'Rock n roll'); $view->start(); $view->setRenderLevel(View::LEVEL_ACTION_VIEW); - $view->render('test10', 'index'); + $view->render('extends', 'index'); $view->finish(); - expect($view->getContent())->equals('Hello Rock n roll!'); + + $expected = 'Hello Rock n roll!'; + $actual = $view->getContent(); + $I->assertEquals($expected, $actual); $view->setParamToView('some_eval', true); $view->start(); $view->setRenderLevel(View::LEVEL_LAYOUT); - $view->render('test10', 'index'); + $view->render('extends', 'index'); $view->finish(); - expect($view->getContent())->equals('Clearly, the song is: Hello Rock n roll!.' . PHP_EOL); + + $expected = 'Clearly, the song is: Hello Rock n roll!.' . PHP_EOL; + $actual = $view->getContent(); + $I->assertEquals($expected, $actual); //Refreshing generated view - file_put_contents(PATH_DATA . 'views/test10/other.volt', '{{song}} {{song}}'); + file_put_contents(dataFolder('fixtures/views/extends/other.volt'), '{{song}} {{song}}'); $view->setParamToView('song', 'Le Song'); $view->start(); $view->setRenderLevel(View::LEVEL_ACTION_VIEW); - $view->render('test10', 'other'); + $view->render('extends', 'other'); $view->finish(); - expect($view->getContent())->equals('Le Song Le Song'); + + $expected = 'Le Song Le Song'; + $actual = $view->getContent(); + $I->assertEquals($expected, $actual); $view->start(); $view->setRenderLevel(View::LEVEL_LAYOUT); - $view->render('test10', 'other'); + $view->render('extends', 'other'); $view->finish(); - expect($view->getContent())->equals('Clearly, the song is: Le Song Le Song.' . PHP_EOL); + + $expected = 'Clearly, the song is: Le Song Le Song.' . PHP_EOL; + $actual = $view->getContent(); + $I->assertEquals($expected, $actual); + //Change the view - file_put_contents(PATH_DATA . 'views/test10/other.volt', 'Two songs: {{song}} {{song}}'); + file_put_contents(dataFolder('fixtures/views/extends/other.volt'), 'Two songs: {{song}} {{song}}'); $view->start(); $view->setRenderLevel(View::LEVEL_LAYOUT); - $view->render('test10', 'other'); + $view->render('extends', 'other'); $view->finish(); - expect($view->getContent())->equals('Clearly, the song is: Two songs: Le Song Le Song.' . PHP_EOL); + + $expected = 'Clearly, the song is: Two songs: Le Song Le Song.' . PHP_EOL; + $actual = $view->getContent(); + $I->assertEquals($expected, $actual); + + $I->safeDeleteFile(dataFolder('fixtures/views/layouts/extends.volt.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/extends/index.volt.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/extends/other.volt.php')); } /** @@ -120,21 +139,18 @@ public function shouldCreateContent(IntegrationTester $I) public function shouldCorrectWorkWithVoltMacros(IntegrationTester $I) { $I->wantToTest('Volt macros'); - - $I->removeFilesWithoutErrors([ - PATH_DATA . 'views/macro/hello.volt.php', - PATH_DATA . 'views/macro/conditionaldate.volt.php', - PATH_DATA . 'views/macro/my_input.volt.php', - PATH_DATA . 'views/macro/error_messages.volt.php', - PATH_DATA . 'views/macro/related_links.volt.php', - PATH_DATA . 'views/macro/strtotime.volt.php', - ]); + $I->safeDeleteFile(dataFolder('fixtures/views/macro/hello.volt.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/macro/conditionaldate.volt.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/macro/my_input.volt.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/macro/error_messages.volt.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/macro/related_links.volt.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/macro/strtotime.volt.php')); Di::reset(); Tag::setDocType(Tag::XHTML5); $view = new View; - $di = new Di; + $di = new Di; $di->set('escaper', function () { return new Escaper; }); @@ -147,51 +163,67 @@ public function shouldCorrectWorkWithVoltMacros(IntegrationTester $I) $view->setDI($di); - $view->setViewsDir(PATH_DATA . 'views/'); + $view->setViewsDir(dataFolder('fixtures/views/')); $view->registerEngines([ '.volt' => function ($view, $di) { - $volt = new Volt($view, $di); + $volt = new Volt($view, $di); $compiler = $volt->getCompiler(); $compiler->addFunction('strtotime', 'strtotime'); return $volt; - } + }, ]); $view->start(); $view->render('macro', 'hello'); $view->finish(); - expect($view->getContent())->equals('Hello World'); + + $expected = 'Hello World'; + $actual = $view->getContent(); + $I->assertEquals($expected, $actual); $view->start(); $view->render('macro', 'conditionaldate'); $view->finish(); - expect($view->getContent())->equals(sprintf('from
%s, %s UTC', date('Y-m-d'), date('H:i'))); + + $expected = sprintf('from
%s, %s UTC', date('Y-m-d'), date('H:i')); + $actual = $view->getContent(); + $I->assertEquals($expected, $actual); $view->start(); $view->render('macro', 'my_input'); $view->finish(); - expect($view->getContent())->equals('

'); + + $expected = '

'; + $actual = $view->getContent(); + $I->assertEquals($expected, $actual); $view->start(); $view->render('macro', 'error_messages'); $view->finish(); - expect($view->getContent())->equals('
InvalidnameThe name is invalid
'); + + $expected = '
Invalidname' + . 'The name is invalid
'; + $actual = $view->getContent(); + $I->assertEquals($expected, $actual); $view->setVar( 'links', [ (object) [ - 'url' => 'localhost', - 'text' => 'Menu item', - 'title' => 'Menu title' - ] + 'url' => 'localhost', + 'text' => 'Menu item', + 'title' => 'Menu title', + ], ] ); $view->start(); $view->render('macro', 'related_links'); $view->finish(); - expect($view->getContent())->equals(''); + + $expected = ''; + $actual = $view->getContent(); + $I->assertEquals($expected, $actual); $view->setVar('date', new DateTime()); $view->start(); @@ -201,19 +233,18 @@ public function shouldCorrectWorkWithVoltMacros(IntegrationTester $I) $content = $view->getContent(); $content = explode('%', $content); - expect($content)->count(3); - expect($content[0])->equals($content[1]); - expect($content[1])->equals($content[2]); - expect($content[2])->equals($content[0]); - - $I->removeFilesWithoutErrors([ - PATH_DATA . 'views/macro/hello.volt.php', - PATH_DATA . 'views/macro/conditionaldate.volt.php', - PATH_DATA . 'views/macro/my_input.volt.php', - PATH_DATA . 'views/macro/error_messages.volt.php', - PATH_DATA . 'views/macro/related_links.volt.php', - PATH_DATA . 'views/macro/strtotime.volt.php', - ]); + $expected = 3; + $I->assertCount($expected, $content); + $I->assertEquals($content[0], $content[1]); + $I->assertEquals($content[1], $content[2]); + $I->assertEquals($content[2], $content[0]); + + $I->safeDeleteFile(dataFolder('fixtures/views/macro/hello.volt.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/macro/conditionaldate.volt.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/macro/my_input.volt.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/macro/error_messages.volt.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/macro/related_links.volt.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/macro/strtotime.volt.php')); } /** @@ -227,15 +258,12 @@ public function shouldCorrectWorkWithVoltMacros(IntegrationTester $I) public function shouldAcceptObjectToVoltMacros(IntegrationTester $I) { $I->wantToTest('Volt macros can accept objects'); - - $I->removeFilesWithoutErrors([ - PATH_DATA . 'views/macro/list.volt.php', - PATH_DATA . 'views/macro/form_row.volt.php', - ]); + $I->safeDeleteFile(dataFolder('fixtures/views/macro/list.volt.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/macro/form_row.volt.php')); Di::reset(); $view = new View; - $di = new Di; + $di = new Di; Tag::setDocType(Tag::XHTML5); $di->set('escaper', function () { return new Escaper; @@ -248,13 +276,13 @@ public function shouldAcceptObjectToVoltMacros(IntegrationTester $I) }); $view->setDI($di); - $view->setViewsDir(PATH_DATA . 'views/'); + $view->setViewsDir(dataFolder('fixtures/views/')); $view->registerEngines([ '.volt' => function ($view, $di) { return new Volt($view, $di); - } + }, ]); - $object = new \stdClass(); + $object = new \stdClass(); $object->foo = "bar"; $object->baz = "buz"; $object->pi = 3.14; @@ -271,8 +299,7 @@ public function shouldAcceptObjectToVoltMacros(IntegrationTester $I) // Trim xdebug first line (file path) $actual = substr($actual, strpos($actual, 'class')); $expected = substr($view->getContent(), strpos($view->getContent(), 'class')); - - expect($actual)->equals($expected); + $I->assertEquals($expected, $actual); $form = new Form; $form->add(new Password('password')); @@ -280,19 +307,18 @@ public function shouldAcceptObjectToVoltMacros(IntegrationTester $I) $view->start(); $view->render('macro', 'form_row'); $view->finish(); - $actual =<<
FORM; - expect($actual)->equals($view->getContent()); + $actual = $view->getContent(); + $I->assertEquals($expected, $actual); - $I->removeFilesWithoutErrors([ - PATH_DATA . 'views/macro/list.volt.php', - PATH_DATA . 'views/macro/form_row.volt.php', - ]); + $I->safeDeleteFile(dataFolder('fixtures/views/macro/list.volt.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/macro/form_row.volt.php')); } /** @@ -307,13 +333,13 @@ public function shouldLoopContext(IntegrationTester $I) { $I->wantToTest('Volt Loop context'); - $volt = new Compiler(); + $volt = new Compiler(); $compiled = $volt->compileString('{% for i in 1..5 %}{{ loop.self.index }}{% endfor %}'); ob_start(); - eval('?>'.$compiled); + eval('?>' . $compiled); $result = ob_get_clean(); - expect($result)->equals('12345'); + $I->assertEquals('12345', $result); } } diff --git a/tests/integration/Mvc/View/Engine/Volt/CompilerFilesCest.php b/tests/integration/Mvc/View/Engine/Volt/CompilerFilesCest.php index 4f1a15824b1..076dc4e9788 100644 --- a/tests/integration/Mvc/View/Engine/Volt/CompilerFilesCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/CompilerFilesCest.php @@ -17,10 +17,10 @@ namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt; +use IntegrationTester; +use Phalcon\Mvc\View; use Phalcon\Mvc\View\Engine\Volt\Compiler; use Phalcon\Tag; -use Phalcon\Mvc\View; -use IntegrationTester; /** * Phalcon\Test\Integration\Mvc\View\Engine\Volt\CompilerFilesCest @@ -43,25 +43,29 @@ public function shouldCompileExtendsFile(IntegrationTester $I) { $I->wantToTest('Compile extended files'); - $I->removeFilesWithoutErrors([ - PATH_DATA . 'views/layouts/test10.volt.php', - PATH_DATA . 'views/test10/children.extends.volt.php' - ]); + $I->safeDeleteFile(dataFolder('fixtures/views/layouts/extends.volt.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/extends/children.extends.volt.php')); $view = new View(); - $view->setViewsDir(PATH_DATA . 'views/'); + $view->setViewsDir(dataFolder('fixtures/views/')); $volt = new Compiler($view); //extends $volt->compileFile( - PATH_DATA . 'views/test10/children.extends.volt', - PATH_DATA . 'views/test10/children.extends.volt.php' + dataFolder('fixtures/views/extends/children.extends.volt'), + dataFolder('fixtures/views/extends/children.extends.volt.php') ); - $compilation = file_get_contents(PATH_DATA . 'views/test10/children.extends.volt.php'); - - expect($compilation)->equals('Index - My Webpage

Index

Welcome on my awesome homepage.

'); + $compilation = file_get_contents(dataFolder('fixtures/views/extends/children.extends.volt.php')); + $expected = '' + . '' + . '' + . 'Index - My Webpage ' + . '

Index

Welcome on my awesome homepage.

' + . '
'; + $I->assertEquals($expected, $compilation); } /** @@ -76,29 +80,29 @@ public function shouldCompileImportFile(IntegrationTester $I) { $I->wantToTest('Compile imported files'); - $I->removeFilesWithoutErrors([ - PATH_DATA . 'views/partials/header.volt.php', - PATH_DATA . 'views/partials/footer.volt.php', - PATH_DATA . 'views/test10/import.volt.php' - ]); + $I->safeDeleteFile(dataFolder('fixtures/views/partials/header.volt.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/partials/footer.volt.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/extends/import.volt.php')); $view = new View(); - $view->setViewsDir(PATH_DATA . 'views/'); + $view->setViewsDir(dataFolder('fixtures/views/')); $volt = new Compiler($view); //extends $volt->compileFile( - PATH_DATA . 'views/test10/import.volt', - PATH_DATA . 'views/test10/import.volt.php' + dataFolder('fixtures/views/extends/import.volt'), + dataFolder('fixtures/views/extends/import.volt.php') ); - $compilation = file_get_contents(PATH_DATA . 'views/test10/import.volt.php'); - - expect($compilation)->equals('

This is the header

'); + $compilation = file_get_contents(dataFolder('fixtures/views/extends/import.volt.php')); + $expected = '

This is the header

' + . ''; + $I->assertEquals($expected, $compilation); } /** - * Tests Compiler::compileFile test case to compile imported files recursively + * Tests Compiler::compileFile test case to compile imported files + * recursively * * @test * @issue - @@ -109,25 +113,23 @@ public function shouldCompileImportRecursiveFiles(IntegrationTester $I) { $I->wantToTest('Compile import recursive files'); - $I->removeFilesWithoutErrors([ - PATH_DATA . 'views/partials/header3.volt.php', - PATH_DATA . 'views/partials/header2.volt.php', - PATH_DATA . 'views/test10/import2.volt.php' - ]); + $I->safeDeleteFile(dataFolder('fixtures/views/partials/header3.volt.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/partials/header2.volt.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/extends/import2.volt.php')); $view = new View(); - $view->setViewsDir(PATH_DATA . 'views/'); + $view->setViewsDir(dataFolder('fixtures/views/')); $volt = new Compiler($view); //extends $volt->compileFile( - PATH_DATA . 'views/test10/import2.volt', - PATH_DATA . 'views/test10/import2.volt.php' + dataFolder('fixtures/views/extends/import2.volt'), + dataFolder('fixtures/views/extends/import2.volt.php') ); - $compilation = file_get_contents(PATH_DATA . 'views/test10/import2.volt.php'); - - expect($compilation)->equals('

This is the title

'); + $compilation = file_get_contents(dataFolder('fixtures/views/extends/import2.volt.php')); + $expected = '

This is the title

'; + $I->assertEquals($expected, $compilation); } } diff --git a/tests/integration/Mvc/View/Engine/VoltCest.php b/tests/integration/Mvc/View/Engine/VoltCest.php index 39462c88c3a..319462697c1 100644 --- a/tests/integration/Mvc/View/Engine/VoltCest.php +++ b/tests/integration/Mvc/View/Engine/VoltCest.php @@ -17,11 +17,13 @@ namespace Phalcon\Test\Integration\Mvc\View\Engine; +use IntegrationTester; use Phalcon\Di; -use Phalcon\Tag; use Phalcon\Mvc\View; -use IntegrationTester; use Phalcon\Mvc\View\Engine\Volt; +use Phalcon\Tag; +use function cacheFolder; +use function dataFolder; /** * Phalcon\Test\Integration\Mvc\View\Engine\VoltCest @@ -44,27 +46,30 @@ public function shouldVoltRenderWithSetOption(IntegrationTester $I) { $I->wantToTest('Set option and render simple view'); - $view = new View(); - $volt = new Volt($view, new Di()); + $view = new View(); + $volt = new Volt($view, new Di()); + $baseFile = dataFolder('fixtures/views/extends/index'); + $renderFile = $baseFile . '.volt'; + $compiledFile = $I->preparePathToFileWithDelimiter($baseFile, '.') + . '.volt.compiled'; + $compiledFile = cacheFolder($compiledFile); - $volt->setOptions([ - 'compiledPath' => PATH_CACHE, - 'compiledSeparator' => '.', - 'compiledExtension' => '.compiled' - ]); + $volt->setOptions( + [ + 'compiledPath' => cacheFolder(), + 'compiledSeparator' => '.', + 'compiledExtension' => '.compiled', + ] + ); //Render simple view $view->start(); - $volt->render(PATH_DATA . 'views/test10/index.volt', ['song' => 'Lights'], true); + $volt->render($renderFile, ['song' => 'Lights'], true); $view->finish(); - $path = PATH_CACHE . $I->preparePathToFileWithDelimiter(TESTS_PATH . '_data', '.') . '.views.test10.index.volt.compiled'; - - $I->assertTrue(file_exists($path)); - $I->assertEquals(file_get_contents($path), 'Hello !'); + $I->assertTrue(file_exists($compiledFile)); + $I->assertEquals(file_get_contents($compiledFile), 'Hello !'); $I->assertEquals($view->getContent(), 'Hello Lights!'); - $I->removeFilesWithoutErrors([ - $path, - ]); + $I->safeDeleteFile($compiledFile); } } diff --git a/tests/integration/Mvc/View/SimpleCest.php b/tests/integration/Mvc/View/SimpleCest.php index 94f30d7ee10..e5cefa59404 100644 --- a/tests/integration/Mvc/View/SimpleCest.php +++ b/tests/integration/Mvc/View/SimpleCest.php @@ -7,17 +7,17 @@ use Phalcon\Cache\Frontend\Output; use Phalcon\Di; use Phalcon\Mvc\View\Simple; -use PHPUnit\Framework\SkippedTestError; +use PHPIntegration\Framework\SkippedTestError; /** * \Phalcon\Test\Integration\Mvc\View\SimpleCest * Tests the Phalcon\Mvc\View\Simple component * * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez - * @author Serghei Iakovlev - * @package Phalcon\Test\Integration\Mvc\View + * @link http://www.phalconphp.com + * @author Andres Gutierrez + * @author Phalcon Team + * @package Phalcon\Test\Integration\Mvc\View * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file LICENSE.txt @@ -32,8 +32,8 @@ public function testSetVars(IntegrationTester $I) { $I->wantToTest('Set and get View vars'); - $view = new Simple; - $view->setViewsDir(PATH_DATA . 'views/'); + $view = new Simple(); + $view->setViewsDir(dataFolder('fixtures/views/')); $I->assertNull($view->getVar('some_var')); $some_var = time(); @@ -53,15 +53,15 @@ public function testRenderWithCache(IntegrationTester $I) $I->wantToTest('Render by using simple view with cache'); if (PHP_MAJOR_VERSION == 7) { - throw new SkippedTestError( + $I->skipTest( 'Skipped in view of the experimental support for PHP 7.' ); } // Create cache at first run - $view = new Simple; + $view = new Simple(); codecept_debug(gettype($view->getParamsToView())); - $view->setViewsDir(PATH_DATA . 'views/'); + $view->setViewsDir(dataFolder('fixtures/views/')); // No cache before DI is set $I->assertFalse($view->getCache()); @@ -77,7 +77,7 @@ public function testRenderWithCache(IntegrationTester $I) $I->assertEquals("

$timeNow

", rtrim($view->render('test3/coolVar'))); - $I->amInPath(PATH_CACHE); + $I->amInPath(cacheFolder()); $I->seeFileFound('view_simple_cache'); $I->seeInThisFile("

$timeNow

"); @@ -85,7 +85,7 @@ public function testRenderWithCache(IntegrationTester $I) // Re-use the cached contents $view = new Simple; - $view->setViewsDir(PATH_DATA . 'views/'); + $view->setViewsDir(dataFolder('fixtures/views/')); $view->setDI($this->getDi()); $view->cache(['key' => 'view_simple_cache']); @@ -95,11 +95,12 @@ public function testRenderWithCache(IntegrationTester $I) $I->assertNotEmpty($view->getContent()); $I->assertEquals("

", rtrim($view->render('test3/coolVar'))); - $I->deleteFile('view_simple_cache'); + $I->safeDeleteFile('view_simple_cache'); } /** * Setup viewCache service and DI + * * @return Di */ protected function getDi() @@ -107,7 +108,7 @@ protected function getDi() $di = new Di; $di->set('viewCache', function () { - return new File(new Output(['lifetime' => 2]), ['cacheDir' => PATH_CACHE]); + return new File(new Output(['lifetime' => 2]), ['cacheDir' => cacheFolder()]); }); return $di; diff --git a/tests/integration/Mvc/ViewCest.php b/tests/integration/Mvc/ViewCest.php index 341f1aea624..7c52b9ca131 100644 --- a/tests/integration/Mvc/ViewCest.php +++ b/tests/integration/Mvc/ViewCest.php @@ -17,12 +17,12 @@ namespace Phalcon\Test\Integration\Mvc; -use Phalcon\Tag; -use Phalcon\Mvc\View; use IntegrationTester; use Phalcon\Events\Manager; +use Phalcon\Mvc\View; use Phalcon\Mvc\View\Engine\Volt; -use Phalcon\Test\Module\View\AfterRenderListener; +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Mvc\View\AfterRenderListener; /** * Phalcon\Test\Integration\Mvc\View\ViewCest @@ -38,7 +38,7 @@ class ViewCest * * @test * @issue https://github.com/phalcon/cphalcon/issues/12139 - * @author Serghei Iakovlev + * @author Phalcon Team * @since 2014-08-14 */ public function shouldGetActiveRenderPath(IntegrationTester $I) @@ -46,33 +46,35 @@ public function shouldGetActiveRenderPath(IntegrationTester $I) $I->wantToTest('Gitting active path'); $eventsManager = new Manager; - $eventsManager->attach('view', new AfterRenderListener); + $eventsManager->attach('view', new AfterRenderListener()); $view = new View; - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); + $view->setViewsDir(dataFolder('views' . DIRECTORY_SEPARATOR)); $view->setRenderLevel(View::LEVEL_ACTION_VIEW); $view->setEventsManager($eventsManager); - expect($view->getActiveRenderPath())->equals(''); + $expected = ''; + $actual = $view->getActiveRenderPath(); + $I->assertEquals($expected, $actual); $view->start(); - $view->render('test15', 'index'); + $view->render('activerender', 'index'); $view->finish(); $view->getContent(); $I->assertEquals( - PATH_DATA . 'views' . DIRECTORY_SEPARATOR . 'test15' . DIRECTORY_SEPARATOR . 'index.phtml', + dataFolder('views' . DIRECTORY_SEPARATOR . 'activerender' . DIRECTORY_SEPARATOR . 'index.phtml'), $view->getActiveRenderPath() ); $view->setViewsDir([ - PATH_DATA . 'views' . DIRECTORY_SEPARATOR, - PATH_DATA . 'views2' . DIRECTORY_SEPARATOR, + dataFolder('views' . DIRECTORY_SEPARATOR), + dataFolder('views2' . DIRECTORY_SEPARATOR), ]); $I->assertEquals( - [PATH_DATA . 'views' . DIRECTORY_SEPARATOR . 'test15' . DIRECTORY_SEPARATOR . 'index.phtml'], + [dataFolder('views' . DIRECTORY_SEPARATOR . 'activerender' . DIRECTORY_SEPARATOR . 'index.phtml')], $view->getActiveRenderPath() ); } @@ -87,18 +89,18 @@ public function shouldGetActiveRenderPath(IntegrationTester $I) */ public function shouldGetCurrentRenderLevel(IntegrationTester $I) { - $I->wantToTest('Gitting current path'); - - $listener = new AfterRenderListener; + $I->wantToTest('Getting current path'); + $I->skipTest('TODO - Check me'); + $listener = new AfterRenderListener; $eventsManager = new Manager; $eventsManager->attach('view', $listener); $view = new View; - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); + $view->setViewsDir(dataFolder('fixtures/views' . DIRECTORY_SEPARATOR)); $view->setEventsManager($eventsManager); $view->start(); - $view->render('test3', 'other'); + $view->render('currentrender', 'other'); $view->finish(); $I->assertEquals("lolhere\n", $view->getContent()); $I->assertEquals('1,3,5', $listener->getLevels()); @@ -106,7 +108,7 @@ public function shouldGetCurrentRenderLevel(IntegrationTester $I) $listener->reset(); $view->setTemplateAfter('test'); $view->start(); - $view->render('test3', 'other'); + $view->render('currentrender', 'other'); $view->finish(); $I->assertEquals("zuplolhere\n", $view->getContent()); $I->assertEquals('1,3,4,5', $listener->getLevels()); @@ -115,7 +117,7 @@ public function shouldGetCurrentRenderLevel(IntegrationTester $I) $view->cleanTemplateAfter(); $view->setRenderLevel(View::LEVEL_MAIN_LAYOUT); $view->start(); - $view->render('test3', 'other'); + $view->render('currentrender', 'other'); $view->finish(); $I->assertEquals("lolhere\n", $view->getContent()); $I->assertEquals('1,3,5', $listener->getLevels()); @@ -123,7 +125,7 @@ public function shouldGetCurrentRenderLevel(IntegrationTester $I) $listener->reset(); $view->setRenderLevel(View::LEVEL_LAYOUT); $view->start(); - $view->render('test3', 'other'); + $view->render('currentrender', 'other'); $view->finish(); $I->assertEquals('lolhere', $view->getContent()); $I->assertEquals('1,3', $listener->getLevels()); @@ -131,7 +133,7 @@ public function shouldGetCurrentRenderLevel(IntegrationTester $I) $listener->reset(); $view->setRenderLevel(View::LEVEL_ACTION_VIEW); $view->start(); - $view->render('test3', 'other'); + $view->render('currentrender', 'other'); $view->finish(); $I->assertEquals('here', $view->getContent()); $I->assertEquals('1', $listener->getLevels()); diff --git a/tests/integration/Paginator/Adapter/GetPaginateCest.php b/tests/integration/Paginator/Adapter/GetPaginateCest.php new file mode 100644 index 00000000000..5e65dfd40d6 --- /dev/null +++ b/tests/integration/Paginator/Adapter/GetPaginateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter; + +use IntegrationTester; + +class GetPaginateCest +{ + /** + * Tests Phalcon\Paginator\Adapter :: getPaginate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterGetPaginate(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter - getPaginate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Paginator/Adapter/Model/ConstructCest.php b/tests/integration/Paginator/Adapter/Model/ConstructCest.php new file mode 100644 index 00000000000..08775862d8b --- /dev/null +++ b/tests/integration/Paginator/Adapter/Model/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter\Model; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Paginator\Adapter\Model :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterModelConstruct(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter\Model - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Paginator/Adapter/Model/GetLimitCest.php b/tests/integration/Paginator/Adapter/Model/GetLimitCest.php new file mode 100644 index 00000000000..a96e912b146 --- /dev/null +++ b/tests/integration/Paginator/Adapter/Model/GetLimitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter\Model; + +use IntegrationTester; + +class GetLimitCest +{ + /** + * Tests Phalcon\Paginator\Adapter\Model :: getLimit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterModelGetLimit(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter\Model - getLimit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Paginator/Adapter/Model/GetPaginateCest.php b/tests/integration/Paginator/Adapter/Model/GetPaginateCest.php new file mode 100644 index 00000000000..35a0abb20e9 --- /dev/null +++ b/tests/integration/Paginator/Adapter/Model/GetPaginateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter\Model; + +use IntegrationTester; + +class GetPaginateCest +{ + /** + * Tests Phalcon\Paginator\Adapter\Model :: getPaginate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterModelGetPaginate(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter\Model - getPaginate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Paginator/Adapter/Model/PaginateCest.php b/tests/integration/Paginator/Adapter/Model/PaginateCest.php new file mode 100644 index 00000000000..5675b0ceb6b --- /dev/null +++ b/tests/integration/Paginator/Adapter/Model/PaginateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter\Model; + +use IntegrationTester; + +class PaginateCest +{ + /** + * Tests Phalcon\Paginator\Adapter\Model :: paginate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterModelPaginate(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter\Model - paginate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Paginator/Adapter/Model/SetCurrentPageCest.php b/tests/integration/Paginator/Adapter/Model/SetCurrentPageCest.php new file mode 100644 index 00000000000..c6aae8836ac --- /dev/null +++ b/tests/integration/Paginator/Adapter/Model/SetCurrentPageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter\Model; + +use IntegrationTester; + +class SetCurrentPageCest +{ + /** + * Tests Phalcon\Paginator\Adapter\Model :: setCurrentPage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterModelSetCurrentPage(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter\Model - setCurrentPage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Paginator/Adapter/Model/SetLimitCest.php b/tests/integration/Paginator/Adapter/Model/SetLimitCest.php new file mode 100644 index 00000000000..ecf81a8e972 --- /dev/null +++ b/tests/integration/Paginator/Adapter/Model/SetLimitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter\Model; + +use IntegrationTester; + +class SetLimitCest +{ + /** + * Tests Phalcon\Paginator\Adapter\Model :: setLimit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterModelSetLimit(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter\Model - setLimit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Paginator/Adapter/NativeArray/ConstructCest.php b/tests/integration/Paginator/Adapter/NativeArray/ConstructCest.php new file mode 100644 index 00000000000..f35d5fbb9f8 --- /dev/null +++ b/tests/integration/Paginator/Adapter/NativeArray/ConstructCest.php @@ -0,0 +1,38 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter\NativeArray; + +use BadMethodCallException; +use Phalcon\Paginator\Adapter\NativeArray; +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Paginator\Adapter\NativeArray :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterNativearrayConstruct(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter\NativeArray - __construct() - wrong parameters"); + $I->expectThrowable( + new BadMethodCallException('Wrong number of parameters'), + function () { + $paginator = new NativeArray(); + } + ); + } +} diff --git a/tests/integration/Paginator/Adapter/NativeArray/GetLimitCest.php b/tests/integration/Paginator/Adapter/NativeArray/GetLimitCest.php new file mode 100644 index 00000000000..760ae7b84d2 --- /dev/null +++ b/tests/integration/Paginator/Adapter/NativeArray/GetLimitCest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter\NativeArray; + +use Phalcon\Paginator\Adapter\NativeArray; +use IntegrationTester; + +class GetLimitCest +{ + /** + * Tests Phalcon\Paginator\Adapter\NativeArray :: getLimit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterNativearrayGetLimit(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter\NativeArray - getLimit()"); + $paginator = new NativeArray( + [ + 'data' => array_fill(0, 30, 'banana'), + 'limit' => 25, + 'page' => 1, + ] + ); + + $expected = 25; + $actual = $paginator->getLimit(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Paginator/Adapter/NativeArray/GetPaginateCest.php b/tests/integration/Paginator/Adapter/NativeArray/GetPaginateCest.php new file mode 100644 index 00000000000..fe32df2b08b --- /dev/null +++ b/tests/integration/Paginator/Adapter/NativeArray/GetPaginateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter\NativeArray; + +use IntegrationTester; + +class GetPaginateCest +{ + /** + * Tests Phalcon\Paginator\Adapter\NativeArray :: getPaginate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterNativearrayGetPaginate(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter\NativeArray - getPaginate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Paginator/Adapter/NativeArray/PaginateCest.php b/tests/integration/Paginator/Adapter/NativeArray/PaginateCest.php new file mode 100644 index 00000000000..4b08e9159e0 --- /dev/null +++ b/tests/integration/Paginator/Adapter/NativeArray/PaginateCest.php @@ -0,0 +1,52 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter\NativeArray; + +use Phalcon\Paginator\Adapter\NativeArray; +use stdClass; +use IntegrationTester; + +class PaginateCest +{ + /** + * Tests Phalcon\Paginator\Adapter\NativeArray :: paginate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterNativearrayPaginate(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter\NativeArray - paginate()"); + $paginator = new NativeArray( + [ + 'data' => array_fill(0, 30, 'banana'), + 'limit' => 25, + 'page' => 1, + ] + ); + + $page = $paginator->paginate(); + + $expected = stdClass::class; + $I->assertInstanceOf($expected, $page); + + $I->assertCount(25, $page->items); + $I->assertEquals(1, $page->previous); + $I->assertEquals(2, $page->next); + $I->assertEquals(2, $page->last); + $I->assertEquals(25, $page->limit); + $I->assertEquals(1, $page->current); + $I->assertEquals(30, $page->total_items); + } +} diff --git a/tests/integration/Paginator/Adapter/NativeArray/SetCurrentPageCest.php b/tests/integration/Paginator/Adapter/NativeArray/SetCurrentPageCest.php new file mode 100644 index 00000000000..9e991abf192 --- /dev/null +++ b/tests/integration/Paginator/Adapter/NativeArray/SetCurrentPageCest.php @@ -0,0 +1,53 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter\NativeArray; + +use Phalcon\Paginator\Adapter\NativeArray; +use stdClass; +use IntegrationTester; + +class SetCurrentPageCest +{ + /** + * Tests Phalcon\Paginator\Adapter\NativeArray :: setCurrentPage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterNativearraySetCurrentPage(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter\NativeArray - setCurrentPage()"); + $paginator = new NativeArray( + [ + 'data' => array_fill(0, 30, 'banana'), + 'limit' => 10, + 'page' => 1, + ] + ); + + $paginator->setCurrentPage(2); + $page = $paginator->paginate(); + + $expected = stdClass::class; + $I->assertInstanceOf($expected, $page); + + $I->assertCount(10, $page->items); + $I->assertEquals(1, $page->previous); + $I->assertEquals(3, $page->next); + $I->assertEquals(3, $page->last); + $I->assertEquals(10, $page->limit); + $I->assertEquals(2, $page->current); + $I->assertEquals(30, $page->total_items); + } +} diff --git a/tests/integration/Paginator/Adapter/NativeArray/SetLimitCest.php b/tests/integration/Paginator/Adapter/NativeArray/SetLimitCest.php new file mode 100644 index 00000000000..2887055847f --- /dev/null +++ b/tests/integration/Paginator/Adapter/NativeArray/SetLimitCest.php @@ -0,0 +1,48 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter\NativeArray; + +use Phalcon\Paginator\Adapter\NativeArray; +use IntegrationTester; + +class SetLimitCest +{ + /** + * Tests Phalcon\Paginator\Adapter\NativeArray :: setLimit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterNativearraySetLimit(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter\NativeArray - setLimit()"); + $paginator = new NativeArray( + [ + 'data' => array_fill(0, 30, 'banana'), + 'limit' => 25, + 'page' => 1, + ] + ); + + $expected = 25; + $actual = $paginator->getLimit(); + $I->assertEquals($expected, $actual); + + $paginator->setLimit(10); + + $expected = 10; + $actual = $paginator->getLimit(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Paginator/Adapter/PaginateCest.php b/tests/integration/Paginator/Adapter/PaginateCest.php new file mode 100644 index 00000000000..b4e69e5bdba --- /dev/null +++ b/tests/integration/Paginator/Adapter/PaginateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter; + +use IntegrationTester; + +class PaginateCest +{ + /** + * Tests Phalcon\Paginator\Adapter :: paginate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterPaginate(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter - paginate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Paginator/Adapter/QueryBuilder/ConstructCest.php b/tests/integration/Paginator/Adapter/QueryBuilder/ConstructCest.php new file mode 100644 index 00000000000..4b345bd73e5 --- /dev/null +++ b/tests/integration/Paginator/Adapter/QueryBuilder/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter\QueryBuilder; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Paginator\Adapter\QueryBuilder :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterQuerybuilderConstruct(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter\QueryBuilder - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Paginator/Adapter/QueryBuilder/GetCurrentPageCest.php b/tests/integration/Paginator/Adapter/QueryBuilder/GetCurrentPageCest.php new file mode 100644 index 00000000000..976b585b56f --- /dev/null +++ b/tests/integration/Paginator/Adapter/QueryBuilder/GetCurrentPageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter\QueryBuilder; + +use IntegrationTester; + +class GetCurrentPageCest +{ + /** + * Tests Phalcon\Paginator\Adapter\QueryBuilder :: getCurrentPage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterQuerybuilderGetCurrentPage(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter\QueryBuilder - getCurrentPage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Paginator/Adapter/QueryBuilder/GetLimitCest.php b/tests/integration/Paginator/Adapter/QueryBuilder/GetLimitCest.php new file mode 100644 index 00000000000..51299caaae6 --- /dev/null +++ b/tests/integration/Paginator/Adapter/QueryBuilder/GetLimitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter\QueryBuilder; + +use IntegrationTester; + +class GetLimitCest +{ + /** + * Tests Phalcon\Paginator\Adapter\QueryBuilder :: getLimit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterQuerybuilderGetLimit(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter\QueryBuilder - getLimit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Paginator/Adapter/QueryBuilder/GetPaginateCest.php b/tests/integration/Paginator/Adapter/QueryBuilder/GetPaginateCest.php new file mode 100644 index 00000000000..ca45ef6b839 --- /dev/null +++ b/tests/integration/Paginator/Adapter/QueryBuilder/GetPaginateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter\QueryBuilder; + +use IntegrationTester; + +class GetPaginateCest +{ + /** + * Tests Phalcon\Paginator\Adapter\QueryBuilder :: getPaginate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterQuerybuilderGetPaginate(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter\QueryBuilder - getPaginate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Paginator/Adapter/QueryBuilder/GetQueryBuilderCest.php b/tests/integration/Paginator/Adapter/QueryBuilder/GetQueryBuilderCest.php new file mode 100644 index 00000000000..21555870f20 --- /dev/null +++ b/tests/integration/Paginator/Adapter/QueryBuilder/GetQueryBuilderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter\QueryBuilder; + +use IntegrationTester; + +class GetQueryBuilderCest +{ + /** + * Tests Phalcon\Paginator\Adapter\QueryBuilder :: getQueryBuilder() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterQuerybuilderGetQueryBuilder(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter\QueryBuilder - getQueryBuilder()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Paginator/Adapter/QueryBuilder/PaginateCest.php b/tests/integration/Paginator/Adapter/QueryBuilder/PaginateCest.php new file mode 100644 index 00000000000..12c23d171a9 --- /dev/null +++ b/tests/integration/Paginator/Adapter/QueryBuilder/PaginateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter\QueryBuilder; + +use IntegrationTester; + +class PaginateCest +{ + /** + * Tests Phalcon\Paginator\Adapter\QueryBuilder :: paginate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterQuerybuilderPaginate(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter\QueryBuilder - paginate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Paginator/Adapter/QueryBuilder/SetCurrentPageCest.php b/tests/integration/Paginator/Adapter/QueryBuilder/SetCurrentPageCest.php new file mode 100644 index 00000000000..dd7d430459a --- /dev/null +++ b/tests/integration/Paginator/Adapter/QueryBuilder/SetCurrentPageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter\QueryBuilder; + +use IntegrationTester; + +class SetCurrentPageCest +{ + /** + * Tests Phalcon\Paginator\Adapter\QueryBuilder :: setCurrentPage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterQuerybuilderSetCurrentPage(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter\QueryBuilder - setCurrentPage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Paginator/Adapter/QueryBuilder/SetLimitCest.php b/tests/integration/Paginator/Adapter/QueryBuilder/SetLimitCest.php new file mode 100644 index 00000000000..f1d51bf940f --- /dev/null +++ b/tests/integration/Paginator/Adapter/QueryBuilder/SetLimitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter\QueryBuilder; + +use IntegrationTester; + +class SetLimitCest +{ + /** + * Tests Phalcon\Paginator\Adapter\QueryBuilder :: setLimit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterQuerybuilderSetLimit(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter\QueryBuilder - setLimit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Paginator/Adapter/QueryBuilder/SetQueryBuilderCest.php b/tests/integration/Paginator/Adapter/QueryBuilder/SetQueryBuilderCest.php new file mode 100644 index 00000000000..49e79bbbab3 --- /dev/null +++ b/tests/integration/Paginator/Adapter/QueryBuilder/SetQueryBuilderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter\QueryBuilder; + +use IntegrationTester; + +class SetQueryBuilderCest +{ + /** + * Tests Phalcon\Paginator\Adapter\QueryBuilder :: setQueryBuilder() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterQuerybuilderSetQueryBuilder(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter\QueryBuilder - setQueryBuilder()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Paginator/Adapter/QueryBuilderCest.php b/tests/integration/Paginator/Adapter/QueryBuilderCest.php new file mode 100644 index 00000000000..64d964082f2 --- /dev/null +++ b/tests/integration/Paginator/Adapter/QueryBuilderCest.php @@ -0,0 +1,168 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter; + +use IntegrationTester; +use Phalcon\Paginator\Exception; +use Phalcon\Paginator\Adapter\QueryBuilder; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Test\Models\Robos; +use Phalcon\Test\Models\Stock; + +class QueryBuilderCest +{ + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + } + + /** + * Tests query builder pagination with having and group + * + * @author Wojciech Ślawski + * @since 2017-03-15 + */ + public function testIssue12111WithGroup(IntegrationTester $I) + { + $this->setDiMysql(); + $manager = $this->getService('modelsManager'); + $builder = $manager + ->createBuilder() + ->columns("name, COUNT(*) as stock_count") + ->from(['Stock' => Stock::class]) + ->groupBy('name') + ->having('SUM(Stock.stock) > 0'); + + $paginate = (new QueryBuilder( + [ + "builder" => $builder, + "limit" => 1, + "page" => 2 + ] + ))->getPaginate(); + + $I->assertEquals(2, $paginate->total_pages); + $I->assertEquals(2, $paginate->total_items); + } + + /** + * Tests query builder pagination with having not throwing exception when should + * + * @author Wojciech Ślawski + * @since 2017-03-15 + */ + public function testIssue12111WithoutGroupException(IntegrationTester $I) + { + $I->expectThrowable( + new Exception('When having is set there should be columns option provided for which calculate row count'), + function () { + $this->setDiMysql(); + $manager = $this->getService('modelsManager'); + $builder = $manager + ->createBuilder() + ->columns("COUNT(*) as stock_count") + ->from(['Stock' => Stock::class]) + ->having('SUM(Stock.stock) > 0'); + + $paginate = (new QueryBuilder( + [ + "builder" => $builder, + "limit" => 1, + "page" => 2 + ] + ))->getPaginate(); + } + ); + } + + /** + * Tests query builder pagination with having and without group + * + * @author Wojciech Ślawski + * @since 2017-03-15 + */ + public function testIssue12111WithoutGroup(IntegrationTester $I) + { + $this->setDiMysql(); + $db = $this->getService('db'); + /* + * There is no clean way to rewrite query builder's query in the + * strict mode: if we remove all nonaggregated columns, we will get + * "Unknown column 'Stock.stock' in 'having clause'", otherwise + * "In aggregated query without GROUP BY, expression #1 of SELECT + * list contains nonaggregated column 'phalcon_test.Stock.stock'" + */ + $db->query( + "SET SESSION sql_mode='STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE," . + "ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION'" + ); + + $manager = $this->getService('modelsManager'); + $builder = $manager + ->createBuilder() + ->columns("*, COUNT(*) as stock_count") + ->from(['Stock' => Stock::class]) + ->having('stock > 0'); + + $paginate = (new QueryBuilder( + [ + "builder" => $builder, + "limit" => 1, + "page" => 2, + "columns" => "id,stock" + ] + ))->getPaginate(); + + $I->assertEquals(2, $paginate->total_pages); + $I->assertEquals(2, $paginate->total_items); + } + + /** + * Tests query builder pagination with having and group with a different db service than 'db' + * + * @author David Napierata + * @since 2017-07-18 + */ + public function testIssue12957(IntegrationTester $I) + { + $I->skipTest('TODO: This needs to be checked for logic'); + $this->specify( + "Query builder paginator doesn't work correctly with a different db service", + function () { + $modelsManager = $this->setUpModelsManager(); + $di = $modelsManager->getDI(); + $di->set( + 'dbTwo', + $di->get('db') + ); + $builder = $modelsManager->createBuilder() + ->columns("COUNT(*) as robos_count") + ->from(['Robos' => Robos::class]) + ->groupBy('type') + ->having('MAX(Robos.year) > 1970'); + + $paginate = (new QueryBuilder( + [ + "builder" => $builder, + "limit" => 1, + "page" => 2 + ] + ))->getPaginate(); + + expect($paginate->total_pages)->equals(2); + expect($paginate->total_items)->equals(2); + } + ); + } +} diff --git a/tests/integration/Paginator/Adapter/SetCurrentPageCest.php b/tests/integration/Paginator/Adapter/SetCurrentPageCest.php new file mode 100644 index 00000000000..3b0e19c96a4 --- /dev/null +++ b/tests/integration/Paginator/Adapter/SetCurrentPageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter; + +use IntegrationTester; + +class SetCurrentPageCest +{ + /** + * Tests Phalcon\Paginator\Adapter :: setCurrentPage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterSetCurrentPage(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter - setCurrentPage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Paginator/Adapter/SetLimitCest.php b/tests/integration/Paginator/Adapter/SetLimitCest.php new file mode 100644 index 00000000000..88748fa8365 --- /dev/null +++ b/tests/integration/Paginator/Adapter/SetLimitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Adapter; + +use IntegrationTester; + +class SetLimitCest +{ + /** + * Tests Phalcon\Paginator\Adapter :: setLimit() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function paginatorAdapterSetLimit(IntegrationTester $I) + { + $I->wantToTest("Paginator\Adapter - setLimit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Paginator/Factory/LoadCest.php b/tests/integration/Paginator/Factory/LoadCest.php new file mode 100644 index 00000000000..c2760af85ca --- /dev/null +++ b/tests/integration/Paginator/Factory/LoadCest.php @@ -0,0 +1,82 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Paginator\Factory; + +use IntegrationTester; +use Phalcon\Paginator\Adapter\QueryBuilder; +use Phalcon\Paginator\Factory; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Test\Fixtures\Traits\FactoryTrait; + +class LoadCest +{ + use FactoryTrait; + use DiTrait; + + /** + * Tests Phalcon\Paginator\Factory :: load() - Config + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2017-03-02 + */ + public function paginatorFactoryLoadConfig(IntegrationTester $I) + { + $I->wantToTest("Paginator\Factory - load() - Config"); + $I->skipTest("TODO: need to check this"); + $this->setNewFactoryDefault(); + $options = $this->config->paginator; + $options->builder = $this + ->container + ->get('modelsManager') + ->createBuilder() + ->columns("id,name") + ->from("Robots") + ->orderBy("name") + ; + /** @var QueryBuilder $paginator */ + $paginator = Factory::load($options); + $I->assertInstanceOf(QueryBuilder::class, $paginator); + $I->assertEquals($options->limit, $paginator->getLimit()); + $I->assertEquals($options->page, $paginator->getCurrentPage()); + } + + /** + * Tests Phalcon\Paginator\Factory :: load() - array + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2017-03-02 + */ + public function paginatorFactoryLoadArray(IntegrationTester $I) + { + $I->wantToTest("Paginator\Factory - load() - array"); + $I->skipTest("TODO: need to check this"); + $this->setNewFactoryDefault(); + $options = $this->arrayConfig["paginator"]; + $options["builder"] = $this + ->container + ->get('modelsManager') + ->createBuilder() + ->columns("id,name") + ->from("Robots") + ->orderBy("name") + ; + /** @var QueryBuilder $paginator */ + $paginator = Factory::load($options); + $I->assertInstanceOf(QueryBuilder::class, $paginator); + $I->assertEquals($options["limit"], $paginator->getLimit()); + $I->assertEquals($options["page"], $paginator->getCurrentPage()); + } +} diff --git a/tests/integration/PaginatorCest.php b/tests/integration/PaginatorCest.php new file mode 100644 index 00000000000..552cba1451c --- /dev/null +++ b/tests/integration/PaginatorCest.php @@ -0,0 +1,360 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration; + +use IntegrationTester; +use Phalcon\Paginator\Adapter\Model; +use Phalcon\Paginator\Adapter\QueryBuilder; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Test\Models\Personnes; + +class PaginatorCest +{ + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->newDi(); + $this->setDiModelsManager(); + $this->setDiModelsMetadata(); + $this->setDiMysql(); + } + + public function testModelPaginator(IntegrationTester $I) + { + $I->skipTest('TODO: Check me'); + $personnes = Personnes::find(); + $paginator = new Model( + [ + 'data' => $personnes, + 'limit' => 10, + 'page' => 1, + ] + ); + + //First Page + $page = $paginator->getPaginate(); + $I->assertInstanceOf('stdClass', $page); + + $I->assertCount(10, $page->items); + + $I->assertEquals($page->before, 1); + $I->assertEquals($page->next, 2); + $I->assertEquals($page->last, 218); + $I->assertEquals($page->limit, 10); + + $I->assertEquals($page->current, 1); + $I->assertEquals($page->total_pages, 218); + + //Middle Page + $paginator->setCurrentPage(50); + + $page = $paginator->getPaginate(); + $I->assertInstanceOf('stdClass', $page); + + $I->assertCount(10, $page->items); + + $I->assertEquals($page->before, 49); + $I->assertEquals($page->next, 51); + $I->assertEquals($page->last, 218); + + $I->assertEquals($page->current, 50); + $I->assertEquals($page->total_pages, 218); + + //Last Page + $paginator->setCurrentPage(218); + + $page = $paginator->getPaginate(); + $I->assertInstanceOf('stdClass', $page); + + $I->assertCount(10, $page->items); + + $I->assertEquals($page->before, 217); + $I->assertEquals((int) $page->next, 218); + $I->assertEquals($page->last, 218); + + $I->assertEquals($page->current, 218); + $I->assertEquals($page->total_pages, 218); + } + + public function testModelPaginatorBind(IntegrationTester $I) + { + $I->skipTest('TODO: Check me'); + $personnes = Personnes::find([ + "conditions" => "cedula >=:d1: AND cedula>=:d2: ", + "bind" => ["d1" => '1', "d2" => "5"], + "order" => "cedula, nombres", + "limit" => "33", + ]); + + $paginator = new Model( + [ + 'data' => $personnes, + 'limit' => 10, + 'page' => 1, + ] + ); + + //First Page + $page = $paginator->getPaginate(); + $I->assertInstanceOf('stdClass', $page); + + $I->assertCount(10, $page->items); + + $I->assertEquals($page->before, 1); + $I->assertEquals($page->next, 2); + $I->assertEquals($page->last, 4); + $I->assertEquals($page->limit, 10); + + $I->assertEquals($page->current, 1); + $I->assertEquals($page->total_pages, 4); + } + + public function testQueryBuilderPaginator(IntegrationTester $I) + { + $I->skipTest('TODO - Check me'); + $manager = $this->getService('modelsManager'); + $builder = $manager->createBuilder() + ->columns('cedula, nombres') + ->from('Personnes') + ->orderBy('cedula') + ; + + $paginator = new QueryBuilder( + [ + "builder" => $builder, + "limit" => 10, + "page" => 1, + ] + ); + + $page = $paginator->getPaginate(); + + $I->assertInstanceOf('stdClass', $page); + + $I->assertCount(10, $page->items); + + $I->assertEquals($page->before, 1); + $I->assertEquals($page->next, 2); + $I->assertEquals($page->last, 218); + $I->assertEquals($page->limit, 10); + + $I->assertEquals($page->current, 1); + $I->assertEquals($page->total_items, 2180); + $I->assertEquals($page->total_pages, 218); + + $I->assertInternalType('int', $page->total_items); + $I->assertInternalType('int', $page->total_pages); + + //Middle page + $paginator->setCurrentPage(100); + + $page = $paginator->getPaginate(); + + $I->assertInstanceOf('stdClass', $page); + + $I->assertCount(10, $page->items); + + $I->assertEquals($page->before, 99); + $I->assertEquals($page->next, 101); + $I->assertEquals($page->last, 218); + + $I->assertEquals($page->current, 100); + $I->assertEquals($page->total_pages, 218); + + $I->assertInternalType('int', $page->total_items); + $I->assertInternalType('int', $page->total_pages); + + //Last page + $paginator->setCurrentPage(218); + + $page = $paginator->getPaginate(); + + $I->assertInstanceOf('stdClass', $page); + + $I->assertCount(10, $page->items); + + $I->assertEquals($page->before, 217); + $I->assertEquals($page->next, 218); + $I->assertEquals($page->last, 218); + + $I->assertEquals($page->current, 218); + $I->assertEquals($page->total_pages, 218); + + $I->assertInternalType('int', $page->total_items); + $I->assertInternalType('int', $page->total_pages); + + // test of getter/setters of querybuilder adapter + + // -- current page -- + $currentPage = $paginator->getCurrentPage(); + $I->assertEquals($currentPage, 218); + + // -- limit -- + $rowsLimit = $paginator->getLimit(); + $I->assertEquals($rowsLimit, 10); + + $setterResult = $paginator->setLimit(25); + $rowsLimit = $paginator->getLimit(); + $I->assertEquals($rowsLimit, 25); + $I->assertEquals($setterResult, $paginator); + + // -- builder -- + $queryBuilder = $paginator->getQueryBuilder(); + $I->assertEquals($builder, $queryBuilder); + + $builder2 = $manager->createBuilder() + ->columns('cedula, nombres') + ->from('Personnes') + ; + + $setterResult = $paginator->setQueryBuilder($builder2); + $queryBuilder = $paginator->getQueryBuilder(); + $I->assertEquals($builder2, $queryBuilder); + $I->assertEquals($setterResult, $paginator); + } + + public function testQueryBuilderPaginatorGroupBy(IntegrationTester $I) + { + $I->skipTest('TODO: Check me'); + $database = $this->getService('db'); + $database->query( + "SET SESSION sql_mode='STRICT_TRANS_TABLES,NO_ZERO_IN_DATE," . + "NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER," . + "NO_ENGINE_SUBSTITUTION'" + ); + + // test paginator with group by string value + $manager = $this->getService('modelsManager'); + $builder = $manager->createBuilder() + ->columns('cedula, nombres') + ->from('Personnes') + ->groupBy('email') + ; + + $this->paginatorBuilderTest($I, $builder); + + // test paginator with group by array value + $builder = $manager->createBuilder() + ->columns('cedula, nombres') + ->from('Personnes') + ->groupBy(['email']) + ; + + $this->paginatorBuilderTest($I, $builder); + + // test of getter/setters of querybuilder adapter + + $paginator = new QueryBuilder( + [ + "builder" => $builder, + "limit" => 10, + "page" => 1, + ] + ); + + $paginator->setCurrentPage(18); + + // -- current page -- + $currentPage = $paginator->getCurrentPage(); + $I->assertEquals($currentPage, 18); + + // -- limit -- + $rowsLimit = $paginator->getLimit(); + $I->assertEquals($rowsLimit, 10); + + $setterResult = $paginator->setLimit(25); + $rowsLimit = $paginator->getLimit(); + $I->assertEquals($rowsLimit, 25); + $I->assertEquals($setterResult, $paginator); + + // -- builder -- + $queryBuilder = $paginator->getQueryBuilder(); + $I->assertEquals($builder, $queryBuilder); + + $builder2 = $manager->createBuilder() + ->columns('cedula, nombres') + ->from('Personnes') + ->groupBy(['email']) + ; + + $setterResult = $paginator->setQueryBuilder($builder2); + $queryBuilder = $paginator->getQueryBuilder(); + $I->assertEquals($builder2, $queryBuilder); + $I->assertEquals($setterResult, $paginator); + } + + private function paginatorBuilderTest(IntegrationTester $I, $builder) + { + $paginator = new QueryBuilder([ + "builder" => $builder, + "limit" => 10, + "page" => 1, + ]); + + $page = $paginator->getPaginate(); + + $I->assertInstanceOf('stdClass', $page); + + $I->assertCount(10, $page->items); + + $I->assertEquals($page->before, 1); + $I->assertEquals($page->next, 2); + $I->assertEquals($page->last, 18); + $I->assertEquals($page->limit, 10); + + $I->assertEquals($page->current, 1); + $I->assertEquals($page->total_items, 178); + $I->assertEquals($page->total_pages, 18); + + $I->assertInternalType('int', $page->total_items); + $I->assertInternalType('int', $page->total_pages); + + //Middle page + $paginator->setCurrentPage(10); + + $page = $paginator->getPaginate(); + + $I->assertInstanceOf('stdClass', $page); + + $I->assertCount(10, $page->items); + + $I->assertEquals($page->before, 9); + $I->assertEquals($page->next, 11); + $I->assertEquals($page->last, 18); + + $I->assertEquals($page->current, 10); + $I->assertEquals($page->total_pages, 18); + + $I->assertInternalType('int', $page->total_items); + $I->assertInternalType('int', $page->total_pages); + + //Last page + $paginator->setCurrentPage(18); + + $page = $paginator->getPaginate(); + + $I->assertInstanceOf('stdClass', $page); + + $I->assertCount(9, $page->items); + + $I->assertEquals($page->before, 17); + $I->assertEquals($page->next, 18); + $I->assertEquals($page->last, 18); + + $I->assertEquals($page->current, 18); + $I->assertEquals($page->total_pages, 18); + + $I->assertInternalType('int', $page->total_items); + $I->assertInternalType('int', $page->total_pages); + } +} diff --git a/tests/integration/Session/Adapter/ConstructCest.php b/tests/integration/Session/Adapter/ConstructCest.php new file mode 100644 index 00000000000..4b9a33f4f6c --- /dev/null +++ b/tests/integration/Session/Adapter/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Session\Adapter :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterConstruct(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/DestroyCest.php b/tests/integration/Session/Adapter/DestroyCest.php new file mode 100644 index 00000000000..f52c24b6708 --- /dev/null +++ b/tests/integration/Session/Adapter/DestroyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; + +class DestroyCest +{ + /** + * Tests Phalcon\Session\Adapter :: destroy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterDestroy(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter - destroy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/DestructCest.php b/tests/integration/Session/Adapter/DestructCest.php new file mode 100644 index 00000000000..754c33fe72d --- /dev/null +++ b/tests/integration/Session/Adapter/DestructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; + +class DestructCest +{ + /** + * Tests Phalcon\Session\Adapter :: __destruct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterDestruct(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter - __destruct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Files/ConstructCest.php b/tests/integration/Session/Adapter/Files/ConstructCest.php new file mode 100644 index 00000000000..d3b7bd13423 --- /dev/null +++ b/tests/integration/Session/Adapter/Files/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Files; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Session\Adapter\Files :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterFilesConstruct(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Files - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Files/DestroyCest.php b/tests/integration/Session/Adapter/Files/DestroyCest.php new file mode 100644 index 00000000000..eb60f0cc721 --- /dev/null +++ b/tests/integration/Session/Adapter/Files/DestroyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Files; + +use IntegrationTester; + +class DestroyCest +{ + /** + * Tests Phalcon\Session\Adapter\Files :: destroy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterFilesDestroy(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Files - destroy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Files/DestructCest.php b/tests/integration/Session/Adapter/Files/DestructCest.php new file mode 100644 index 00000000000..f5a306583e6 --- /dev/null +++ b/tests/integration/Session/Adapter/Files/DestructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Files; + +use IntegrationTester; + +class DestructCest +{ + /** + * Tests Phalcon\Session\Adapter\Files :: __destruct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterFilesDestruct(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Files - __destruct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Files/GetCest.php b/tests/integration/Session/Adapter/Files/GetCest.php new file mode 100644 index 00000000000..972557e2fa7 --- /dev/null +++ b/tests/integration/Session/Adapter/Files/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Files; + +use IntegrationTester; + +class GetCest +{ + /** + * Tests Phalcon\Session\Adapter\Files :: get() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterFilesGet(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Files - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Files/GetIdCest.php b/tests/integration/Session/Adapter/Files/GetIdCest.php new file mode 100644 index 00000000000..895412c948b --- /dev/null +++ b/tests/integration/Session/Adapter/Files/GetIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Files; + +use IntegrationTester; + +class GetIdCest +{ + /** + * Tests Phalcon\Session\Adapter\Files :: getId() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterFilesGetId(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Files - getId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Files/GetNameCest.php b/tests/integration/Session/Adapter/Files/GetNameCest.php new file mode 100644 index 00000000000..d29401b820b --- /dev/null +++ b/tests/integration/Session/Adapter/Files/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Files; + +use IntegrationTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Session\Adapter\Files :: getName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterFilesGetName(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Files - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Files/GetOptionsCest.php b/tests/integration/Session/Adapter/Files/GetOptionsCest.php new file mode 100644 index 00000000000..bd3a79bb583 --- /dev/null +++ b/tests/integration/Session/Adapter/Files/GetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Files; + +use IntegrationTester; + +class GetOptionsCest +{ + /** + * Tests Phalcon\Session\Adapter\Files :: getOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterFilesGetOptions(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Files - getOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Files/HasCest.php b/tests/integration/Session/Adapter/Files/HasCest.php new file mode 100644 index 00000000000..40ee7b9da45 --- /dev/null +++ b/tests/integration/Session/Adapter/Files/HasCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Files; + +use IntegrationTester; + +class HasCest +{ + /** + * Tests Phalcon\Session\Adapter\Files :: has() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterFilesHas(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Files - has()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Files/IsStartedCest.php b/tests/integration/Session/Adapter/Files/IsStartedCest.php new file mode 100644 index 00000000000..153b299df3d --- /dev/null +++ b/tests/integration/Session/Adapter/Files/IsStartedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Files; + +use IntegrationTester; + +class IsStartedCest +{ + /** + * Tests Phalcon\Session\Adapter\Files :: isStarted() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterFilesIsStarted(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Files - isStarted()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Files/RegenerateIdCest.php b/tests/integration/Session/Adapter/Files/RegenerateIdCest.php new file mode 100644 index 00000000000..bac24948ba0 --- /dev/null +++ b/tests/integration/Session/Adapter/Files/RegenerateIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Files; + +use IntegrationTester; + +class RegenerateIdCest +{ + /** + * Tests Phalcon\Session\Adapter\Files :: regenerateId() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterFilesRegenerateId(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Files - regenerateId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Files/RemoveCest.php b/tests/integration/Session/Adapter/Files/RemoveCest.php new file mode 100644 index 00000000000..32ef9fbd83d --- /dev/null +++ b/tests/integration/Session/Adapter/Files/RemoveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Files; + +use IntegrationTester; + +class RemoveCest +{ + /** + * Tests Phalcon\Session\Adapter\Files :: remove() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterFilesRemove(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Files - remove()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Files/SetCest.php b/tests/integration/Session/Adapter/Files/SetCest.php new file mode 100644 index 00000000000..6c0834c1b09 --- /dev/null +++ b/tests/integration/Session/Adapter/Files/SetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Files; + +use IntegrationTester; + +class SetCest +{ + /** + * Tests Phalcon\Session\Adapter\Files :: set() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterFilesSet(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Files - set()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Files/SetIdCest.php b/tests/integration/Session/Adapter/Files/SetIdCest.php new file mode 100644 index 00000000000..8437d789791 --- /dev/null +++ b/tests/integration/Session/Adapter/Files/SetIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Files; + +use IntegrationTester; + +class SetIdCest +{ + /** + * Tests Phalcon\Session\Adapter\Files :: setId() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterFilesSetId(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Files - setId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Files/SetNameCest.php b/tests/integration/Session/Adapter/Files/SetNameCest.php new file mode 100644 index 00000000000..d2f2d77dc5d --- /dev/null +++ b/tests/integration/Session/Adapter/Files/SetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Files; + +use IntegrationTester; + +class SetNameCest +{ + /** + * Tests Phalcon\Session\Adapter\Files :: setName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterFilesSetName(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Files - setName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Files/SetOptionsCest.php b/tests/integration/Session/Adapter/Files/SetOptionsCest.php new file mode 100644 index 00000000000..b29e5d992e4 --- /dev/null +++ b/tests/integration/Session/Adapter/Files/SetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Files; + +use IntegrationTester; + +class SetOptionsCest +{ + /** + * Tests Phalcon\Session\Adapter\Files :: setOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterFilesSetOptions(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Files - setOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Files/StartCest.php b/tests/integration/Session/Adapter/Files/StartCest.php new file mode 100644 index 00000000000..86d620a1618 --- /dev/null +++ b/tests/integration/Session/Adapter/Files/StartCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Files; + +use IntegrationTester; + +class StartCest +{ + /** + * Tests Phalcon\Session\Adapter\Files :: start() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterFilesStart(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Files - start()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Files/StatusCest.php b/tests/integration/Session/Adapter/Files/StatusCest.php new file mode 100644 index 00000000000..029dec416d0 --- /dev/null +++ b/tests/integration/Session/Adapter/Files/StatusCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Files; + +use IntegrationTester; + +class StatusCest +{ + /** + * Tests Phalcon\Session\Adapter\Files :: status() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterFilesStatus(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Files - status()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Files/UnderscoreGetCest.php b/tests/integration/Session/Adapter/Files/UnderscoreGetCest.php new file mode 100644 index 00000000000..2a682b2ff1a --- /dev/null +++ b/tests/integration/Session/Adapter/Files/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Files; + +use IntegrationTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Session\Adapter\Files :: __get() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterFilesUnderscoreGet(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Files - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Files/UnderscoreIssetCest.php b/tests/integration/Session/Adapter/Files/UnderscoreIssetCest.php new file mode 100644 index 00000000000..43bea2bb967 --- /dev/null +++ b/tests/integration/Session/Adapter/Files/UnderscoreIssetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Files; + +use IntegrationTester; + +class UnderscoreIssetCest +{ + /** + * Tests Phalcon\Session\Adapter\Files :: __isset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterFilesUnderscoreIsset(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Files - __isset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Files/UnderscoreSetCest.php b/tests/integration/Session/Adapter/Files/UnderscoreSetCest.php new file mode 100644 index 00000000000..f1c69d36aa5 --- /dev/null +++ b/tests/integration/Session/Adapter/Files/UnderscoreSetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Files; + +use IntegrationTester; + +class UnderscoreSetCest +{ + /** + * Tests Phalcon\Session\Adapter\Files :: __set() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterFilesUnderscoreSet(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Files - __set()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Files/UnderscoreUnsetCest.php b/tests/integration/Session/Adapter/Files/UnderscoreUnsetCest.php new file mode 100644 index 00000000000..1823911c043 --- /dev/null +++ b/tests/integration/Session/Adapter/Files/UnderscoreUnsetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Files; + +use IntegrationTester; + +class UnderscoreUnsetCest +{ + /** + * Tests Phalcon\Session\Adapter\Files :: __unset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterFilesUnderscoreUnset(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Files - __unset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/FilesCest.php b/tests/integration/Session/Adapter/FilesCest.php new file mode 100644 index 00000000000..65a99e702c9 --- /dev/null +++ b/tests/integration/Session/Adapter/FilesCest.php @@ -0,0 +1,254 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; +use Phalcon\Session\Adapter; +use Phalcon\Session\Adapter\Files; +use function outputFolder; + +class FilesCest +{ + protected $sessionConfig = []; + + public function _before(IntegrationTester $I) + { + $this->sessionConfig = [ + 'save_handler' => ini_get('session.save_handler'), + 'save_path' => ini_get('session.save_path'), + 'serialize_handler' => ini_get('session.serialize_handler'), + ]; + + if (!isset($_SESSION)) { + $_SESSION = []; + } + } + + public function _after(IntegrationTester $I) + { + if (PHP_SESSION_ACTIVE == session_status()) { + session_destroy(); + } + + foreach ($this->sessionConfig as $key => $val) { + ini_set($key, $val); + } + } + + public function testSessionName(IntegrationTester $I) + { + $session = new Files(); + $session->setName('NAMEFOO'); + + $I->assertEquals($session->getName(), 'NAMEFOO'); + $I->assertEquals(session_name(), 'NAMEFOO'); + + session_name('NAMEBAR'); + $I->assertEquals($session->getName(), 'NAMEBAR'); + } + + /** + * Tests session start + * + * @author Phalcon Team + * @since 2016-01-20 + */ + public function testSessionStart(IntegrationTester $I) + { + $session = new Files(); + + $I->assertTrue($session->start()); + $I->assertTrue($session->isStarted()); + $I->assertEquals($session->status(), Adapter::SESSION_ACTIVE); + } + + /** + * Tests session start + * + * @issue https://github.com/phalcon/cphalcon/issues/10238 + * @author Phalcon Team + * @author Dreamszhu + * @since 2016-01-20 + */ + public function testSessionFilesGet(IntegrationTester $I) + { + $session = new Files(); + + session_start(); + + $session->set('some', 'value'); + + $I->assertEquals($session->get('some'), 'value'); + $I->assertTrue($session->has('some')); + $I->assertEquals($session->get('undefined', 'my-default'), 'my-default'); + + $I->assertEquals($session->get('some', null, true), 'value'); + $I->assertFalse($session->has('some')); + + $session->set('some_zero', 0); + $I->assertTrue($session->get('some_zero') === 0); + $I->assertFalse($session->get('some_zero') === null); + + $session->set('some_false', false); + $I->assertFalse($session->get('some_false') === null); + $I->assertTrue($session->get('some_false') === false); + } + + /** + * Tests session write + * + * @author Phalcon Team + * @since 2016-01-24 + */ + public function testSessionFilesWrite(IntegrationTester $I) + { + $path = outputFolder( + sprintf('tests%ssession%s', DIRECTORY_SEPARATOR, DIRECTORY_SEPARATOR) + ); + + ini_set('session.save_handler', 'files'); + ini_set('session.save_path', $path); + ini_set('session.serialize_handler', 'php'); + + $session = new Files(); + $session->start(); + + $session->set('some', 'write-value'); + + $I->assertNotEmpty($id = $session->getId()); + + $file = sprintf('%ssess_%s', $path, $id); + unset($session); + + $I->openFile($file); + $I->seeInThisFile('some|s:11:"write-value";'); + + $I->safeDeleteFile($file); + } + + /** + * Tests session write with magic __set + * + * @author Phalcon Team + * @since 2016-01-24 + */ + public function testSessionFilesWriteMagic(IntegrationTester $I) + { + $path = outputFolder( + sprintf('tests%ssession%s', DIRECTORY_SEPARATOR, DIRECTORY_SEPARATOR) + ); + + ini_set('session.save_handler', 'files'); + ini_set('session.save_path', $path); + ini_set('session.serialize_handler', 'php'); + + $session = new Files(); + $session->start(); + + $session->some = 'write-magic-value'; + + $I->assertNotEmpty($id = $session->getId()); + + $file = sprintf('%ssess_%s', $path, $id); + unset($session); + + $I->openFile($file); + $I->seeInThisFile('some|s:17:"write-magic-value";'); + + $I->safeDeleteFile($file); + } + + /** + * Tests session read + * + * @author Phalcon Team + * @since 2016-01-24 + */ + public function testSessionFilesRead(IntegrationTester $I) + { + $id = md5(microtime(true)); + $path = outputFolder( + sprintf('tests%ssession%s', DIRECTORY_SEPARATOR, DIRECTORY_SEPARATOR) + ); + $file = sprintf('%ssess_%s', $path, $id); + + $session = new Files(); + $session->setId($id); + $session->start(); + + $_SESSION['some'] = 'read-value'; + + $I->assertTrue($session->has('some')); + $I->assertEquals($session->get('some'), 'read-value'); + + $session->destroy(); + + $I->dontSeeFileFound($file); + } + + /** + * Tests session read with magic __get + * + * @author Phalcon Team + * @since 2016-01-24 + */ + public function testSessionFilesReadMagic(IntegrationTester $I) + { + $id = md5(microtime(true)); + $path = outputFolder( + sprintf('tests%ssession%s', DIRECTORY_SEPARATOR, DIRECTORY_SEPARATOR) + ); + $file = sprintf('%ssess_%s', $path, $id); + + $session = new Files(); + $session->setId($id); + $session->start(); + + $_SESSION['some'] = 'read-magic-value'; + + $I->assertTrue(isset($session->some)); + $I->assertEquals($session->some, 'read-magic-value'); + + unset($session->some); + $I->assertFalse(isset($session->some)); + + $session->destroy(); + + $I->dontSeeFileFound($file); + } + + /** + * Tests the destroy with cleanning $_SESSION + * + * @issue https://github.com/phalcon/cphalcon/issues/12326 + * @issue https://github.com/phalcon/cphalcon/issues/12835 + * @author Serghei Iakovelev + * @since 2017-05-08 + */ + public function destroyDataFromSessionSuperGlobal(IntegrationTester $I) + { + $session = new Files([ + 'uniqueId' => 'session', + 'lifetime' => 3600, + ]); + + $session->start(); + + $session->test1 = __METHOD__; + $I->assertArrayHasKey('session#test1', $_SESSION); + $I->assertContains(__METHOD__, $_SESSION['session#test1']); + + // @deprecated See: https://github.com/phalcon/cphalcon/issues/12833 + $session->destroy(true); + $I->assertArrayNotHasKey('session#test1', $_SESSION); + } +} diff --git a/tests/integration/Session/Adapter/GetCest.php b/tests/integration/Session/Adapter/GetCest.php new file mode 100644 index 00000000000..c7da3b612dd --- /dev/null +++ b/tests/integration/Session/Adapter/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; + +class GetCest +{ + /** + * Tests Phalcon\Session\Adapter :: get() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterGet(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/GetIdCest.php b/tests/integration/Session/Adapter/GetIdCest.php new file mode 100644 index 00000000000..46657c9b44a --- /dev/null +++ b/tests/integration/Session/Adapter/GetIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; + +class GetIdCest +{ + /** + * Tests Phalcon\Session\Adapter :: getId() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterGetId(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter - getId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/GetNameCest.php b/tests/integration/Session/Adapter/GetNameCest.php new file mode 100644 index 00000000000..9e1caa8979d --- /dev/null +++ b/tests/integration/Session/Adapter/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Session\Adapter :: getName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterGetName(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/GetOptionsCest.php b/tests/integration/Session/Adapter/GetOptionsCest.php new file mode 100644 index 00000000000..9a811aeaec0 --- /dev/null +++ b/tests/integration/Session/Adapter/GetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; + +class GetOptionsCest +{ + /** + * Tests Phalcon\Session\Adapter :: getOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterGetOptions(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter - getOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/HasCest.php b/tests/integration/Session/Adapter/HasCest.php new file mode 100644 index 00000000000..4eaebfeb299 --- /dev/null +++ b/tests/integration/Session/Adapter/HasCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; + +class HasCest +{ + /** + * Tests Phalcon\Session\Adapter :: has() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterHas(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter - has()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/IsStartedCest.php b/tests/integration/Session/Adapter/IsStartedCest.php new file mode 100644 index 00000000000..942dc70ac51 --- /dev/null +++ b/tests/integration/Session/Adapter/IsStartedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; + +class IsStartedCest +{ + /** + * Tests Phalcon\Session\Adapter :: isStarted() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterIsStarted(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter - isStarted()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/CloseCest.php b/tests/integration/Session/Adapter/Libmemcached/CloseCest.php new file mode 100644 index 00000000000..f6c8ae72152 --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/CloseCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class CloseCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: close() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedClose(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - close()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/ConstructCest.php b/tests/integration/Session/Adapter/Libmemcached/ConstructCest.php new file mode 100644 index 00000000000..8406f6ad1dd --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedConstruct(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/DestroyCest.php b/tests/integration/Session/Adapter/Libmemcached/DestroyCest.php new file mode 100644 index 00000000000..e9bbce8e390 --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/DestroyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class DestroyCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: destroy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedDestroy(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - destroy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/DestructCest.php b/tests/integration/Session/Adapter/Libmemcached/DestructCest.php new file mode 100644 index 00000000000..20923febb21 --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/DestructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class DestructCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: __destruct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedDestruct(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - __destruct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/GcCest.php b/tests/integration/Session/Adapter/Libmemcached/GcCest.php new file mode 100644 index 00000000000..e93fa6bca63 --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/GcCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class GcCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: gc() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedGc(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - gc()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/GetCest.php b/tests/integration/Session/Adapter/Libmemcached/GetCest.php new file mode 100644 index 00000000000..efeda897b68 --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class GetCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: get() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedGet(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/GetIdCest.php b/tests/integration/Session/Adapter/Libmemcached/GetIdCest.php new file mode 100644 index 00000000000..abd0c52774e --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/GetIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class GetIdCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: getId() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedGetId(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - getId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/GetLibmemcachedCest.php b/tests/integration/Session/Adapter/Libmemcached/GetLibmemcachedCest.php new file mode 100644 index 00000000000..7dc643330f5 --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/GetLibmemcachedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class GetLibmemcachedCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: getLibmemcached() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedGetLibmemcached(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - getLibmemcached()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/GetLifetimeCest.php b/tests/integration/Session/Adapter/Libmemcached/GetLifetimeCest.php new file mode 100644 index 00000000000..114cb7643eb --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/GetLifetimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class GetLifetimeCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: getLifetime() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedGetLifetime(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - getLifetime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/GetNameCest.php b/tests/integration/Session/Adapter/Libmemcached/GetNameCest.php new file mode 100644 index 00000000000..00dcb2c7cdc --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: getName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedGetName(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/GetOptionsCest.php b/tests/integration/Session/Adapter/Libmemcached/GetOptionsCest.php new file mode 100644 index 00000000000..915e9438371 --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/GetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class GetOptionsCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: getOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedGetOptions(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - getOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/HasCest.php b/tests/integration/Session/Adapter/Libmemcached/HasCest.php new file mode 100644 index 00000000000..48100e13807 --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/HasCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class HasCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: has() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedHas(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - has()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/IsStartedCest.php b/tests/integration/Session/Adapter/Libmemcached/IsStartedCest.php new file mode 100644 index 00000000000..704ef04e36e --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/IsStartedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class IsStartedCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: isStarted() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedIsStarted(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - isStarted()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/OpenCest.php b/tests/integration/Session/Adapter/Libmemcached/OpenCest.php new file mode 100644 index 00000000000..13c87bc99a0 --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/OpenCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class OpenCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: open() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedOpen(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - open()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/ReadCest.php b/tests/integration/Session/Adapter/Libmemcached/ReadCest.php new file mode 100644 index 00000000000..cf857380da5 --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/ReadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class ReadCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: read() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedRead(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - read()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/RegenerateIdCest.php b/tests/integration/Session/Adapter/Libmemcached/RegenerateIdCest.php new file mode 100644 index 00000000000..24621b6ab68 --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/RegenerateIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class RegenerateIdCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: regenerateId() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedRegenerateId(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - regenerateId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/RemoveCest.php b/tests/integration/Session/Adapter/Libmemcached/RemoveCest.php new file mode 100644 index 00000000000..4374736cd29 --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/RemoveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class RemoveCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: remove() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedRemove(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - remove()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/SetCest.php b/tests/integration/Session/Adapter/Libmemcached/SetCest.php new file mode 100644 index 00000000000..d64ef338b31 --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/SetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class SetCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: set() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedSet(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - set()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/SetIdCest.php b/tests/integration/Session/Adapter/Libmemcached/SetIdCest.php new file mode 100644 index 00000000000..6e93833599f --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/SetIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class SetIdCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: setId() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedSetId(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - setId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/SetNameCest.php b/tests/integration/Session/Adapter/Libmemcached/SetNameCest.php new file mode 100644 index 00000000000..d45860cec70 --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/SetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class SetNameCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: setName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedSetName(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - setName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/SetOptionsCest.php b/tests/integration/Session/Adapter/Libmemcached/SetOptionsCest.php new file mode 100644 index 00000000000..0964d38da2a --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/SetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class SetOptionsCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: setOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedSetOptions(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - setOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/StartCest.php b/tests/integration/Session/Adapter/Libmemcached/StartCest.php new file mode 100644 index 00000000000..901ddaa6a07 --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/StartCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class StartCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: start() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedStart(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - start()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/StatusCest.php b/tests/integration/Session/Adapter/Libmemcached/StatusCest.php new file mode 100644 index 00000000000..ddbb4e4b589 --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/StatusCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class StatusCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: status() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedStatus(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - status()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/UnderscoreGetCest.php b/tests/integration/Session/Adapter/Libmemcached/UnderscoreGetCest.php new file mode 100644 index 00000000000..7c90211001a --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: __get() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedUnderscoreGet(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/UnderscoreIssetCest.php b/tests/integration/Session/Adapter/Libmemcached/UnderscoreIssetCest.php new file mode 100644 index 00000000000..f4c7325f976 --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/UnderscoreIssetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class UnderscoreIssetCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: __isset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedUnderscoreIsset(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - __isset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/UnderscoreSetCest.php b/tests/integration/Session/Adapter/Libmemcached/UnderscoreSetCest.php new file mode 100644 index 00000000000..c5e0bcd320e --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/UnderscoreSetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class UnderscoreSetCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: __set() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedUnderscoreSet(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - __set()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/UnderscoreUnsetCest.php b/tests/integration/Session/Adapter/Libmemcached/UnderscoreUnsetCest.php new file mode 100644 index 00000000000..b8d49c1c0e3 --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/UnderscoreUnsetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class UnderscoreUnsetCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: __unset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedUnderscoreUnset(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - __unset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Libmemcached/WriteCest.php b/tests/integration/Session/Adapter/Libmemcached/WriteCest.php new file mode 100644 index 00000000000..1677a5f3ea4 --- /dev/null +++ b/tests/integration/Session/Adapter/Libmemcached/WriteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; + +use IntegrationTester; + +class WriteCest +{ + /** + * Tests Phalcon\Session\Adapter\Libmemcached :: write() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterLibmemcachedWrite(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Libmemcached - write()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/LibmemcachedCest.php b/tests/integration/Session/Adapter/LibmemcachedCest.php new file mode 100644 index 00000000000..f2a1bca6000 --- /dev/null +++ b/tests/integration/Session/Adapter/LibmemcachedCest.php @@ -0,0 +1,136 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; +use Phalcon\Session\Adapter\Libmemcached; + +class LibmemcachedCest +{ + /** + * executed before each test + */ + public function _before(IntegrationTester $I) + { + $I->checkExtensionIsLoaded('redis'); + + if (!isset($_SESSION)) { + $_SESSION = []; + } + } + + /** + * executed after each test + */ + public function _after(IntegrationTester $I) + { + if (PHP_SESSION_ACTIVE == session_status()) { + session_destroy(); + } + } + + /** + * Tests read and write + * + * @author Sid Roberts + * @since 2015-07-17 + */ + public function testReadAndWriteSession(IntegrationTester $I) + { + $sessionID = "abcdef123456"; + $session = new Libmemcached([ + 'servers' => [ + [ + 'host' => env('DATA_MEMCACHED_HOST'), + 'port' => env('DATA_MEMCACHED_PORT'), + ] + ], + 'client' => [] + ]); + $data = serialize( + [ + 'abc' => '123', + 'def' => '678', + 'xyz' => 'zyx' + ] + ); + + $session->write($sessionID, $data); + + $I->assertEquals($session->read($sessionID), $data); + } + + /** + * Tests the destroy + * + * @author Sid Roberts + * @since 2015-07-17 + */ + public function testDestroySession(IntegrationTester $I) + { + $sessionID = "abcdef123456"; + $session = new Libmemcached([ + 'servers' => [ + [ + 'host' => env('DATA_MEMCACHED_HOST'), + 'port' => env('DATA_MEMCACHED_PORT'), + ] + ], + 'client' => [] + ]); + $data = serialize( + [ + 'abc' => '123', + 'def' => '678', + 'xyz' => 'zyx' + ] + ); + + $session->write($sessionID, $data); + $session->destroy($sessionID); + + $I->assertEquals($session->read($sessionID), null); + } + + /** + * Tests the destroy with cleanning $_SESSION + * + * @test + * @issue https://github.com/phalcon/cphalcon/issues/12326 + * @issue https://github.com/phalcon/cphalcon/issues/12835 + * @author Serghei Iakovelev + * @since 2017-05-08 + */ + public function destroyDataFromSessionSuperGlobal(IntegrationTester $I) + { + $session = new Libmemcached([ + 'servers' => [ + [ + 'host' => env('DATA_MEMCACHED_HOST'), + 'port' => env('DATA_MEMCACHED_PORT'), + ], + ], + 'client' => [], + 'uniqueId' => 'session', + 'lifetime' => 3600, + ]); + + $session->start(); + + $session->test1 = __METHOD__; + $I->assertArrayHasKey('session#test1', $_SESSION); + $I->assertContains(__METHOD__, $_SESSION['session#test1']); + + $session->destroy(); + $I->assertArrayNotHasKey('session#test1', $_SESSION); + } +} diff --git a/tests/integration/Session/Adapter/Redis/CloseCest.php b/tests/integration/Session/Adapter/Redis/CloseCest.php new file mode 100644 index 00000000000..c843b452a59 --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/CloseCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class CloseCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: close() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisClose(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - close()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/ConstructCest.php b/tests/integration/Session/Adapter/Redis/ConstructCest.php new file mode 100644 index 00000000000..da979dcee8c --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisConstruct(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/DestroyCest.php b/tests/integration/Session/Adapter/Redis/DestroyCest.php new file mode 100644 index 00000000000..c933e034ca2 --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/DestroyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class DestroyCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: destroy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisDestroy(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - destroy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/DestructCest.php b/tests/integration/Session/Adapter/Redis/DestructCest.php new file mode 100644 index 00000000000..90c024c1462 --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/DestructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class DestructCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: __destruct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisDestruct(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - __destruct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/GcCest.php b/tests/integration/Session/Adapter/Redis/GcCest.php new file mode 100644 index 00000000000..3bef5920a2a --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/GcCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class GcCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: gc() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisGc(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - gc()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/GetCest.php b/tests/integration/Session/Adapter/Redis/GetCest.php new file mode 100644 index 00000000000..0947f639474 --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class GetCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: get() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisGet(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/GetIdCest.php b/tests/integration/Session/Adapter/Redis/GetIdCest.php new file mode 100644 index 00000000000..6f91d63a0c1 --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/GetIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class GetIdCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: getId() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisGetId(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - getId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/GetLifetimeCest.php b/tests/integration/Session/Adapter/Redis/GetLifetimeCest.php new file mode 100644 index 00000000000..3d510d0333f --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/GetLifetimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class GetLifetimeCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: getLifetime() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisGetLifetime(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - getLifetime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/GetNameCest.php b/tests/integration/Session/Adapter/Redis/GetNameCest.php new file mode 100644 index 00000000000..d5cfd096d40 --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: getName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisGetName(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/GetOptionsCest.php b/tests/integration/Session/Adapter/Redis/GetOptionsCest.php new file mode 100644 index 00000000000..17618141474 --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/GetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class GetOptionsCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: getOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisGetOptions(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - getOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/GetRedisCest.php b/tests/integration/Session/Adapter/Redis/GetRedisCest.php new file mode 100644 index 00000000000..ad8d87f190f --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/GetRedisCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class GetRedisCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: getRedis() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisGetRedis(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - getRedis()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/HasCest.php b/tests/integration/Session/Adapter/Redis/HasCest.php new file mode 100644 index 00000000000..7d2dc4d4f0c --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/HasCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class HasCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: has() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisHas(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - has()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/IsStartedCest.php b/tests/integration/Session/Adapter/Redis/IsStartedCest.php new file mode 100644 index 00000000000..2df63a3fe98 --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/IsStartedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class IsStartedCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: isStarted() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisIsStarted(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - isStarted()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/OpenCest.php b/tests/integration/Session/Adapter/Redis/OpenCest.php new file mode 100644 index 00000000000..39dda8bd9ad --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/OpenCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class OpenCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: open() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisOpen(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - open()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/ReadCest.php b/tests/integration/Session/Adapter/Redis/ReadCest.php new file mode 100644 index 00000000000..5205570bc84 --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/ReadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class ReadCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: read() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisRead(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - read()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/RegenerateIdCest.php b/tests/integration/Session/Adapter/Redis/RegenerateIdCest.php new file mode 100644 index 00000000000..6c85e3499f1 --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/RegenerateIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class RegenerateIdCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: regenerateId() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisRegenerateId(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - regenerateId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/RemoveCest.php b/tests/integration/Session/Adapter/Redis/RemoveCest.php new file mode 100644 index 00000000000..50e073dd1e8 --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/RemoveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class RemoveCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: remove() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisRemove(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - remove()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/SetCest.php b/tests/integration/Session/Adapter/Redis/SetCest.php new file mode 100644 index 00000000000..746314cdf92 --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/SetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class SetCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: set() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisSet(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - set()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/SetIdCest.php b/tests/integration/Session/Adapter/Redis/SetIdCest.php new file mode 100644 index 00000000000..f6e7d55b6bf --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/SetIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class SetIdCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: setId() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisSetId(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - setId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/SetNameCest.php b/tests/integration/Session/Adapter/Redis/SetNameCest.php new file mode 100644 index 00000000000..809f1fec41c --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/SetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class SetNameCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: setName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisSetName(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - setName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/SetOptionsCest.php b/tests/integration/Session/Adapter/Redis/SetOptionsCest.php new file mode 100644 index 00000000000..9f23452f237 --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/SetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class SetOptionsCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: setOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisSetOptions(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - setOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/StartCest.php b/tests/integration/Session/Adapter/Redis/StartCest.php new file mode 100644 index 00000000000..bac77a29aa8 --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/StartCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class StartCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: start() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisStart(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - start()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/StatusCest.php b/tests/integration/Session/Adapter/Redis/StatusCest.php new file mode 100644 index 00000000000..b95fca601fc --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/StatusCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class StatusCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: status() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisStatus(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - status()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/UnderscoreGetCest.php b/tests/integration/Session/Adapter/Redis/UnderscoreGetCest.php new file mode 100644 index 00000000000..fe62bc5f34f --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: __get() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisUnderscoreGet(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/UnderscoreIssetCest.php b/tests/integration/Session/Adapter/Redis/UnderscoreIssetCest.php new file mode 100644 index 00000000000..89125e8a05e --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/UnderscoreIssetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class UnderscoreIssetCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: __isset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisUnderscoreIsset(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - __isset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/UnderscoreSetCest.php b/tests/integration/Session/Adapter/Redis/UnderscoreSetCest.php new file mode 100644 index 00000000000..909165f5985 --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/UnderscoreSetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class UnderscoreSetCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: __set() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisUnderscoreSet(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - __set()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/UnderscoreUnsetCest.php b/tests/integration/Session/Adapter/Redis/UnderscoreUnsetCest.php new file mode 100644 index 00000000000..18a4aa1532b --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/UnderscoreUnsetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class UnderscoreUnsetCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: __unset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisUnderscoreUnset(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - __unset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/Redis/WriteCest.php b/tests/integration/Session/Adapter/Redis/WriteCest.php new file mode 100644 index 00000000000..9d9239966cd --- /dev/null +++ b/tests/integration/Session/Adapter/Redis/WriteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter\Redis; + +use IntegrationTester; + +class WriteCest +{ + /** + * Tests Phalcon\Session\Adapter\Redis :: write() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRedisWrite(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter\Redis - write()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/RedisCest.php b/tests/integration/Session/Adapter/RedisCest.php new file mode 100644 index 00000000000..6cb1a151619 --- /dev/null +++ b/tests/integration/Session/Adapter/RedisCest.php @@ -0,0 +1,131 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; +use Phalcon\Session\Adapter\Redis; + +class RedisCest +{ + /** + * executed before each test + */ + public function _before(IntegrationTester $I) + { + $I->checkExtensionIsLoaded('redis'); + + if (!isset($_SESSION)) { + $_SESSION = []; + } + } + + /** + * executed after each test + */ + public function _after(IntegrationTester $I) + { + if (PHP_SESSION_ACTIVE == session_status()) { + session_destroy(); + } + } + + /** + * Tests read and write + * + * @author Sid Roberts + * @since 2015-07-17 + */ + public function testReadAndWriteSession(IntegrationTester $I) + { + $sessionID = "abcdef123456"; + $session = new Redis( + [ + 'host' => env('DATA_REDIS_HOST'), + 'port' => env('DATA_REDIS_PORT'), + 'index' => env('DATA_REDIS_NAME'), + ] + ); + $data = serialize( + [ + "abc" => "123", + "def" => "678", + "xyz" => "zyx" + ] + ); + + $session->write($sessionID, $data); + + $I->assertEquals($session->read($sessionID), $data); + } + + /** + * Tests the destroy + * + * @author Sid Roberts + * @since 2015-07-17 + */ + public function testDestroySession(IntegrationTester $I) + { + $sessionID = "abcdef123456"; + $session = new Redis( + [ + 'host' => env('DATA_REDIS_HOST'), + 'port' => env('DATA_REDIS_PORT'), + 'index' => env('DATA_REDIS_NAME'), + ] + ); + $data = serialize( + [ + "abc" => "123", + "def" => "678", + "xyz" => "zyx" + ] + ); + + $session->write($sessionID, $data); + $session->destroy($sessionID); + + $I->assertEquals($session->read($sessionID), null); + } + + /** + * Tests the destroy with cleanning $_SESSION + * + * @test + * @issue https://github.com/phalcon/cphalcon/issues/12326 + * @issue https://github.com/phalcon/cphalcon/issues/12835 + * @author Serghei Iakovelev + * @since 2017-05-08 + */ + public function destroyDataFromSessionSuperGlobal(IntegrationTester $I) + { + $session = new Redis( + [ + 'host' => env('DATA_REDIS_HOST', '127.0.0.1'), + 'port' => env('DATA_REDIS_PORT', 6379), + 'index' => env('DATA_REDIS_NAME', 0), + 'uniqueId' => 'session', + 'lifetime' => 3600, + 'prefix' => '_DESTROY:', + ] + ); + + $session->start(); + + $session->test1 = __METHOD__; + $I->assertArrayHasKey('session#test1', $_SESSION); + $I->assertContains(__METHOD__, $_SESSION['session#test1']); + + $session->destroy(); + $I->assertArrayNotHasKey('session#test1', $_SESSION); + } +} diff --git a/tests/integration/Session/Adapter/RegenerateIdCest.php b/tests/integration/Session/Adapter/RegenerateIdCest.php new file mode 100644 index 00000000000..7cf3d08372c --- /dev/null +++ b/tests/integration/Session/Adapter/RegenerateIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; + +class RegenerateIdCest +{ + /** + * Tests Phalcon\Session\Adapter :: regenerateId() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRegenerateId(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter - regenerateId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/RemoveCest.php b/tests/integration/Session/Adapter/RemoveCest.php new file mode 100644 index 00000000000..c69060c8e8e --- /dev/null +++ b/tests/integration/Session/Adapter/RemoveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; + +class RemoveCest +{ + /** + * Tests Phalcon\Session\Adapter :: remove() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterRemove(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter - remove()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/SetCest.php b/tests/integration/Session/Adapter/SetCest.php new file mode 100644 index 00000000000..7b9490b8d3b --- /dev/null +++ b/tests/integration/Session/Adapter/SetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; + +class SetCest +{ + /** + * Tests Phalcon\Session\Adapter :: set() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterSet(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter - set()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/SetIdCest.php b/tests/integration/Session/Adapter/SetIdCest.php new file mode 100644 index 00000000000..b133acdabb7 --- /dev/null +++ b/tests/integration/Session/Adapter/SetIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; + +class SetIdCest +{ + /** + * Tests Phalcon\Session\Adapter :: setId() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterSetId(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter - setId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/SetNameCest.php b/tests/integration/Session/Adapter/SetNameCest.php new file mode 100644 index 00000000000..95db939cd7b --- /dev/null +++ b/tests/integration/Session/Adapter/SetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; + +class SetNameCest +{ + /** + * Tests Phalcon\Session\Adapter :: setName() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterSetName(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter - setName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/SetOptionsCest.php b/tests/integration/Session/Adapter/SetOptionsCest.php new file mode 100644 index 00000000000..ee5cdaa51eb --- /dev/null +++ b/tests/integration/Session/Adapter/SetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; + +class SetOptionsCest +{ + /** + * Tests Phalcon\Session\Adapter :: setOptions() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterSetOptions(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter - setOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/StartCest.php b/tests/integration/Session/Adapter/StartCest.php new file mode 100644 index 00000000000..9c519119bbc --- /dev/null +++ b/tests/integration/Session/Adapter/StartCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; + +class StartCest +{ + /** + * Tests Phalcon\Session\Adapter :: start() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterStart(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter - start()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/StatusCest.php b/tests/integration/Session/Adapter/StatusCest.php new file mode 100644 index 00000000000..f1fdab98938 --- /dev/null +++ b/tests/integration/Session/Adapter/StatusCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; + +class StatusCest +{ + /** + * Tests Phalcon\Session\Adapter :: status() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterStatus(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter - status()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/UnderscoreGetCest.php b/tests/integration/Session/Adapter/UnderscoreGetCest.php new file mode 100644 index 00000000000..62fab6b38ee --- /dev/null +++ b/tests/integration/Session/Adapter/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Session\Adapter :: __get() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterUnderscoreGet(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/UnderscoreIssetCest.php b/tests/integration/Session/Adapter/UnderscoreIssetCest.php new file mode 100644 index 00000000000..915f28b6e66 --- /dev/null +++ b/tests/integration/Session/Adapter/UnderscoreIssetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; + +class UnderscoreIssetCest +{ + /** + * Tests Phalcon\Session\Adapter :: __isset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterUnderscoreIsset(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter - __isset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/UnderscoreSetCest.php b/tests/integration/Session/Adapter/UnderscoreSetCest.php new file mode 100644 index 00000000000..6f74de0a71f --- /dev/null +++ b/tests/integration/Session/Adapter/UnderscoreSetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; + +class UnderscoreSetCest +{ + /** + * Tests Phalcon\Session\Adapter :: __set() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterUnderscoreSet(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter - __set()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Adapter/UnderscoreUnsetCest.php b/tests/integration/Session/Adapter/UnderscoreUnsetCest.php new file mode 100644 index 00000000000..c825906468f --- /dev/null +++ b/tests/integration/Session/Adapter/UnderscoreUnsetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Adapter; + +use IntegrationTester; + +class UnderscoreUnsetCest +{ + /** + * Tests Phalcon\Session\Adapter :: __unset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionAdapterUnderscoreUnset(IntegrationTester $I) + { + $I->wantToTest("Session\Adapter - __unset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Bag/ConstructCest.php b/tests/integration/Session/Bag/ConstructCest.php new file mode 100644 index 00000000000..980a92cef1b --- /dev/null +++ b/tests/integration/Session/Bag/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Bag; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Session\Bag :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionBagConstruct(IntegrationTester $I) + { + $I->wantToTest("Session\Bag - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Bag/CountCest.php b/tests/integration/Session/Bag/CountCest.php new file mode 100644 index 00000000000..3feffca8a0f --- /dev/null +++ b/tests/integration/Session/Bag/CountCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Bag; + +use IntegrationTester; + +class CountCest +{ + /** + * Tests Phalcon\Session\Bag :: count() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionBagCount(IntegrationTester $I) + { + $I->wantToTest("Session\Bag - count()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Bag/DestroyCest.php b/tests/integration/Session/Bag/DestroyCest.php new file mode 100644 index 00000000000..63697560ba9 --- /dev/null +++ b/tests/integration/Session/Bag/DestroyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Bag; + +use IntegrationTester; + +class DestroyCest +{ + /** + * Tests Phalcon\Session\Bag :: destroy() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionBagDestroy(IntegrationTester $I) + { + $I->wantToTest("Session\Bag - destroy()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Bag/GetCest.php b/tests/integration/Session/Bag/GetCest.php new file mode 100644 index 00000000000..4f7b505b224 --- /dev/null +++ b/tests/integration/Session/Bag/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Bag; + +use IntegrationTester; + +class GetCest +{ + /** + * Tests Phalcon\Session\Bag :: get() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionBagGet(IntegrationTester $I) + { + $I->wantToTest("Session\Bag - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Bag/GetDICest.php b/tests/integration/Session/Bag/GetDICest.php new file mode 100644 index 00000000000..1d06db82606 --- /dev/null +++ b/tests/integration/Session/Bag/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Bag; + +use IntegrationTester; + +class GetDICest +{ + /** + * Tests Phalcon\Session\Bag :: getDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionBagGetDI(IntegrationTester $I) + { + $I->wantToTest("Session\Bag - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Bag/GetIteratorCest.php b/tests/integration/Session/Bag/GetIteratorCest.php new file mode 100644 index 00000000000..9f954951ae6 --- /dev/null +++ b/tests/integration/Session/Bag/GetIteratorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Bag; + +use IntegrationTester; + +class GetIteratorCest +{ + /** + * Tests Phalcon\Session\Bag :: getIterator() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionBagGetIterator(IntegrationTester $I) + { + $I->wantToTest("Session\Bag - getIterator()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Bag/HasCest.php b/tests/integration/Session/Bag/HasCest.php new file mode 100644 index 00000000000..23fa7002d30 --- /dev/null +++ b/tests/integration/Session/Bag/HasCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Bag; + +use IntegrationTester; + +class HasCest +{ + /** + * Tests Phalcon\Session\Bag :: has() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionBagHas(IntegrationTester $I) + { + $I->wantToTest("Session\Bag - has()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Bag/InitializeCest.php b/tests/integration/Session/Bag/InitializeCest.php new file mode 100644 index 00000000000..ec4d775f507 --- /dev/null +++ b/tests/integration/Session/Bag/InitializeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Bag; + +use IntegrationTester; + +class InitializeCest +{ + /** + * Tests Phalcon\Session\Bag :: initialize() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionBagInitialize(IntegrationTester $I) + { + $I->wantToTest("Session\Bag - initialize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Bag/OffsetExistsCest.php b/tests/integration/Session/Bag/OffsetExistsCest.php new file mode 100644 index 00000000000..176b08aa0fe --- /dev/null +++ b/tests/integration/Session/Bag/OffsetExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Bag; + +use IntegrationTester; + +class OffsetExistsCest +{ + /** + * Tests Phalcon\Session\Bag :: offsetExists() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionBagOffsetExists(IntegrationTester $I) + { + $I->wantToTest("Session\Bag - offsetExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Bag/OffsetGetCest.php b/tests/integration/Session/Bag/OffsetGetCest.php new file mode 100644 index 00000000000..bf80ceefa8a --- /dev/null +++ b/tests/integration/Session/Bag/OffsetGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Bag; + +use IntegrationTester; + +class OffsetGetCest +{ + /** + * Tests Phalcon\Session\Bag :: offsetGet() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionBagOffsetGet(IntegrationTester $I) + { + $I->wantToTest("Session\Bag - offsetGet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Bag/OffsetSetCest.php b/tests/integration/Session/Bag/OffsetSetCest.php new file mode 100644 index 00000000000..3e11433a3ef --- /dev/null +++ b/tests/integration/Session/Bag/OffsetSetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Bag; + +use IntegrationTester; + +class OffsetSetCest +{ + /** + * Tests Phalcon\Session\Bag :: offsetSet() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionBagOffsetSet(IntegrationTester $I) + { + $I->wantToTest("Session\Bag - offsetSet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Bag/OffsetUnsetCest.php b/tests/integration/Session/Bag/OffsetUnsetCest.php new file mode 100644 index 00000000000..67ff69f2fca --- /dev/null +++ b/tests/integration/Session/Bag/OffsetUnsetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Bag; + +use IntegrationTester; + +class OffsetUnsetCest +{ + /** + * Tests Phalcon\Session\Bag :: offsetUnset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionBagOffsetUnset(IntegrationTester $I) + { + $I->wantToTest("Session\Bag - offsetUnset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Bag/RemoveCest.php b/tests/integration/Session/Bag/RemoveCest.php new file mode 100644 index 00000000000..21fa4e618f6 --- /dev/null +++ b/tests/integration/Session/Bag/RemoveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Bag; + +use IntegrationTester; + +class RemoveCest +{ + /** + * Tests Phalcon\Session\Bag :: remove() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionBagRemove(IntegrationTester $I) + { + $I->wantToTest("Session\Bag - remove()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Bag/SetCest.php b/tests/integration/Session/Bag/SetCest.php new file mode 100644 index 00000000000..37e3d17d925 --- /dev/null +++ b/tests/integration/Session/Bag/SetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Bag; + +use IntegrationTester; + +class SetCest +{ + /** + * Tests Phalcon\Session\Bag :: set() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionBagSet(IntegrationTester $I) + { + $I->wantToTest("Session\Bag - set()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Bag/SetDICest.php b/tests/integration/Session/Bag/SetDICest.php new file mode 100644 index 00000000000..2fae8577e8f --- /dev/null +++ b/tests/integration/Session/Bag/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Bag; + +use IntegrationTester; + +class SetDICest +{ + /** + * Tests Phalcon\Session\Bag :: setDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionBagSetDI(IntegrationTester $I) + { + $I->wantToTest("Session\Bag - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Bag/UnderscoreGetCest.php b/tests/integration/Session/Bag/UnderscoreGetCest.php new file mode 100644 index 00000000000..eee06528eeb --- /dev/null +++ b/tests/integration/Session/Bag/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Bag; + +use IntegrationTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Session\Bag :: __get() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionBagUnderscoreGet(IntegrationTester $I) + { + $I->wantToTest("Session\Bag - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Bag/UnderscoreIssetCest.php b/tests/integration/Session/Bag/UnderscoreIssetCest.php new file mode 100644 index 00000000000..858d3b716be --- /dev/null +++ b/tests/integration/Session/Bag/UnderscoreIssetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Bag; + +use IntegrationTester; + +class UnderscoreIssetCest +{ + /** + * Tests Phalcon\Session\Bag :: __isset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionBagUnderscoreIsset(IntegrationTester $I) + { + $I->wantToTest("Session\Bag - __isset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Bag/UnderscoreSetCest.php b/tests/integration/Session/Bag/UnderscoreSetCest.php new file mode 100644 index 00000000000..0b2d4934cbb --- /dev/null +++ b/tests/integration/Session/Bag/UnderscoreSetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Bag; + +use IntegrationTester; + +class UnderscoreSetCest +{ + /** + * Tests Phalcon\Session\Bag :: __set() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionBagUnderscoreSet(IntegrationTester $I) + { + $I->wantToTest("Session\Bag - __set()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/Bag/UnderscoreUnsetCest.php b/tests/integration/Session/Bag/UnderscoreUnsetCest.php new file mode 100644 index 00000000000..4ed0aba3d8e --- /dev/null +++ b/tests/integration/Session/Bag/UnderscoreUnsetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Bag; + +use IntegrationTester; + +class UnderscoreUnsetCest +{ + /** + * Tests Phalcon\Session\Bag :: __unset() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function sessionBagUnderscoreUnset(IntegrationTester $I) + { + $I->wantToTest("Session\Bag - __unset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Session/BagCest.php b/tests/integration/Session/BagCest.php new file mode 100644 index 00000000000..acb0c523a10 --- /dev/null +++ b/tests/integration/Session/BagCest.php @@ -0,0 +1,116 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session; + +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use ReflectionClass; +use Phalcon\Session\Bag; + +class BagCest +{ + use DiTrait; + + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + + if (session_status() === PHP_SESSION_NONE) { + session_start(); + } + } + + /** + * executed after each test + */ + public function _after() + { + if (session_status() === PHP_SESSION_ACTIVE) { + session_destroy(); + } + } + + /** + * Tests read and write + * + * @author Kamil Skowron + * @since 2015-07-17 + */ + public function testBagGetAndSet(IntegrationTester $I) + { + // Using getters and setters + $bag = new Bag('test1'); + $bag->set('a', ['b' => 'c']); + $I->assertEquals($bag->get('a'), ['b' => 'c']); + $I->assertSame($_SESSION['test1']['a'], ['b' => 'c']); + + // Using direct access + $bag = new Bag('test2'); + $bag->{'a'} = ['b' => 'c']; + $I->assertEquals($bag->{'a'}, ['b' => 'c']); + $I->assertSame($_SESSION['test2']['a'], ['b' => 'c']); + } + + /** + * Tests write empty array + * + * @author Kamil Skowron + * @since 2015-07-17 + */ + public function testBagSetEmptyArray(IntegrationTester $I) + { + $bag = new Bag('container'); + $value = []; + $bag->a = $value; + + $I->assertSame($bag->a, $value); + } + + /** + * Delete a value in a bag (not initialized internally) + * + * @test + * @issue https://github.com/phalcon/cphalcon/issues/12647 + * @author Fabio Mora + * @since 2017-02-21 + */ + public function shouldDeleteInitializeInternalData(IntegrationTester $I) + { + $reflectionClass = new ReflectionClass(Bag::class); + $_data = $reflectionClass->getProperty('_data'); + $_data->setAccessible(true); + $initialized = $reflectionClass->getProperty('_initialized'); + $initialized->setAccessible(true); + + // Setup a bag with a value + $bag = new Bag('fruit'); + $bag->set('apples', 10); + + $I->assertSame($bag->get('apples'), 10); + $I->assertSame($_data->getValue($bag), ['apples' => 10]); + $I->assertTrue($initialized->getValue($bag)); + + // Emulate a reset of the internal status (e.g. as would be done by a sleep/wakeup handler) + $serializedBag = serialize($bag); + unset($bag); + + $bag = unserialize($serializedBag); + $_data->setValue($bag, null); + $initialized->setValue($bag, false); + + // Delete + $I->assertFalse($initialized->getValue($bag)); + $I->assertTrue($bag->remove('apples')); + $I->assertNull($bag->get('apples')); + $I->assertTrue($initialized->getValue($bag)); + } +} diff --git a/tests/integration/Session/Factory/LoadCest.php b/tests/integration/Session/Factory/LoadCest.php new file mode 100644 index 00000000000..bcfefd09fbe --- /dev/null +++ b/tests/integration/Session/Factory/LoadCest.php @@ -0,0 +1,72 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Session\Factory; + +use IntegrationTester; +use Phalcon\Session\Adapter\Files; +use Phalcon\Session\Factory; +use Phalcon\Test\Fixtures\Traits\FactoryTrait; + +class LoadCest +{ + use FactoryTrait; + + public function _before(IntegrationTester $I) + { + $this->init(); + } + + /** + * Tests Phalcon\Session\Factory :: load() - Config + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2017-03-02 + */ + public function sessionFactoryLoadConfig(IntegrationTester $I) + { + $I->wantToTest("Session\Factory - load() - Config"); + $options = $this->config->session; + $data = $options->toArray(); + + $this->runTests($I, $options, $data); + } + + /** + * Tests Phalcon\Session\Factory :: load() - array + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2017-03-02 + */ + public function sessionFactoryLoadArray(IntegrationTester $I) + { + $I->wantToTest("Session\Factory - load() - array"); + $options = $this->arrayConfig['session']; + $data = $options; + + $this->runTests($I, $options, $data); + } + + private function runTests(IntegrationTester $I, $options, array $data) + { + /** @var Memcache $session */ + $session = Factory::load($options); + $I->assertInstanceOf(Files::class, $session); + + $expected = $session->getOptions(); + $actual =array_intersect_assoc($session->getOptions(), $data); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Validation/AddCest.php b/tests/integration/Validation/AddCest.php new file mode 100644 index 00000000000..e609eacc952 --- /dev/null +++ b/tests/integration/Validation/AddCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class AddCest +{ + /** + * Tests Phalcon\Validation :: add() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationAdd(IntegrationTester $I) + { + $I->wantToTest("Validation - add()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/AppendMessageCest.php b/tests/integration/Validation/AppendMessageCest.php new file mode 100644 index 00000000000..5fe8a765987 --- /dev/null +++ b/tests/integration/Validation/AppendMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class AppendMessageCest +{ + /** + * Tests Phalcon\Validation :: appendMessage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationAppendMessage(IntegrationTester $I) + { + $I->wantToTest("Validation - appendMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/BindCest.php b/tests/integration/Validation/BindCest.php new file mode 100644 index 00000000000..789aaccdf03 --- /dev/null +++ b/tests/integration/Validation/BindCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class BindCest +{ + /** + * Tests Phalcon\Validation :: bind() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationBind(IntegrationTester $I) + { + $I->wantToTest("Validation - bind()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/CombinedFieldsValidator/ConstructCest.php b/tests/integration/Validation/CombinedFieldsValidator/ConstructCest.php new file mode 100644 index 00000000000..bac639fd3e0 --- /dev/null +++ b/tests/integration/Validation/CombinedFieldsValidator/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\CombinedFieldsValidator; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Validation\CombinedFieldsValidator :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationCombinedFieldsValidatorConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation\CombinedFieldsValidator - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/CombinedFieldsValidator/GetOptionCest.php b/tests/integration/Validation/CombinedFieldsValidator/GetOptionCest.php new file mode 100644 index 00000000000..c61c36d6d9f --- /dev/null +++ b/tests/integration/Validation/CombinedFieldsValidator/GetOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\CombinedFieldsValidator; + +use IntegrationTester; + +class GetOptionCest +{ + /** + * Tests Phalcon\Validation\CombinedFieldsValidator :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationCombinedfieldsvalidatorGetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\CombinedFieldsValidator - getOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/CombinedFieldsValidator/HasOptionCest.php b/tests/integration/Validation/CombinedFieldsValidator/HasOptionCest.php new file mode 100644 index 00000000000..645e45361b3 --- /dev/null +++ b/tests/integration/Validation/CombinedFieldsValidator/HasOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\CombinedFieldsValidator; + +use IntegrationTester; + +class HasOptionCest +{ + /** + * Tests Phalcon\Validation\CombinedFieldsValidator :: hasOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationCombinedfieldsvalidatorHasOption(IntegrationTester $I) + { + $I->wantToTest("Validation\CombinedFieldsValidator - hasOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/CombinedFieldsValidator/SetOptionCest.php b/tests/integration/Validation/CombinedFieldsValidator/SetOptionCest.php new file mode 100644 index 00000000000..4f898464ee9 --- /dev/null +++ b/tests/integration/Validation/CombinedFieldsValidator/SetOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\CombinedFieldsValidator; + +use IntegrationTester; + +class SetOptionCest +{ + /** + * Tests Phalcon\Validation\CombinedFieldsValidator :: setOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationCombinedfieldsvalidatorSetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\CombinedFieldsValidator - setOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/CombinedFieldsValidator/ValidateCest.php b/tests/integration/Validation/CombinedFieldsValidator/ValidateCest.php new file mode 100644 index 00000000000..73842624015 --- /dev/null +++ b/tests/integration/Validation/CombinedFieldsValidator/ValidateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\CombinedFieldsValidator; + +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation\CombinedFieldsValidator :: validate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationCombinedfieldsvalidatorValidate(IntegrationTester $I) + { + $I->wantToTest("Validation\CombinedFieldsValidator - validate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/ConstructCest.php b/tests/integration/Validation/ConstructCest.php new file mode 100644 index 00000000000..ff04cd552c0 --- /dev/null +++ b/tests/integration/Validation/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Validation :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/GetDICest.php b/tests/integration/Validation/GetDICest.php new file mode 100644 index 00000000000..ac5728ce57d --- /dev/null +++ b/tests/integration/Validation/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class GetDICest +{ + /** + * Tests Phalcon\Validation :: getDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationGetDI(IntegrationTester $I) + { + $I->wantToTest("Validation - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/GetDataCest.php b/tests/integration/Validation/GetDataCest.php new file mode 100644 index 00000000000..a3b02137f36 --- /dev/null +++ b/tests/integration/Validation/GetDataCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class GetDataCest +{ + /** + * Tests Phalcon\Validation :: getData() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationGetData(IntegrationTester $I) + { + $I->wantToTest("Validation - getData()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/GetDefaultMessageCest.php b/tests/integration/Validation/GetDefaultMessageCest.php new file mode 100644 index 00000000000..c8a2fbac7ce --- /dev/null +++ b/tests/integration/Validation/GetDefaultMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class GetDefaultMessageCest +{ + /** + * Tests Phalcon\Validation :: getDefaultMessage() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationGetDefaultMessage(IntegrationTester $I) + { + $I->wantToTest("Validation - getDefaultMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/GetEntityCest.php b/tests/integration/Validation/GetEntityCest.php new file mode 100644 index 00000000000..d75d87b5ae3 --- /dev/null +++ b/tests/integration/Validation/GetEntityCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class GetEntityCest +{ + /** + * Tests Phalcon\Validation :: getEntity() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationGetEntity(IntegrationTester $I) + { + $I->wantToTest("Validation - getEntity()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/GetEventsManagerCest.php b/tests/integration/Validation/GetEventsManagerCest.php new file mode 100644 index 00000000000..786edd0177a --- /dev/null +++ b/tests/integration/Validation/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Validation :: getEventsManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationGetEventsManager(IntegrationTester $I) + { + $I->wantToTest("Validation - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/GetFiltersCest.php b/tests/integration/Validation/GetFiltersCest.php new file mode 100644 index 00000000000..c9d12b8f37d --- /dev/null +++ b/tests/integration/Validation/GetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class GetFiltersCest +{ + /** + * Tests Phalcon\Validation :: getFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationGetFilters(IntegrationTester $I) + { + $I->wantToTest("Validation - getFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/GetLabelCest.php b/tests/integration/Validation/GetLabelCest.php new file mode 100644 index 00000000000..762a066c5e4 --- /dev/null +++ b/tests/integration/Validation/GetLabelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class GetLabelCest +{ + /** + * Tests Phalcon\Validation :: getLabel() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationGetLabel(IntegrationTester $I) + { + $I->wantToTest("Validation - getLabel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/GetMessagesCest.php b/tests/integration/Validation/GetMessagesCest.php new file mode 100644 index 00000000000..06fe5fa1497 --- /dev/null +++ b/tests/integration/Validation/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Validation :: getMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationGetMessages(IntegrationTester $I) + { + $I->wantToTest("Validation - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/GetValidatorsCest.php b/tests/integration/Validation/GetValidatorsCest.php new file mode 100644 index 00000000000..feee7c4ed19 --- /dev/null +++ b/tests/integration/Validation/GetValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class GetValidatorsCest +{ + /** + * Tests Phalcon\Validation :: getValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationGetValidators(IntegrationTester $I) + { + $I->wantToTest("Validation - getValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/GetValueCest.php b/tests/integration/Validation/GetValueCest.php new file mode 100644 index 00000000000..e0dbee366b1 --- /dev/null +++ b/tests/integration/Validation/GetValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class GetValueCest +{ + /** + * Tests Phalcon\Validation :: getValue() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationGetValue(IntegrationTester $I) + { + $I->wantToTest("Validation - getValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/RuleCest.php b/tests/integration/Validation/RuleCest.php new file mode 100644 index 00000000000..dea24aac83c --- /dev/null +++ b/tests/integration/Validation/RuleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class RuleCest +{ + /** + * Tests Phalcon\Validation :: rule() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationRule(IntegrationTester $I) + { + $I->wantToTest("Validation - rule()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/RulesCest.php b/tests/integration/Validation/RulesCest.php new file mode 100644 index 00000000000..68ca26762d4 --- /dev/null +++ b/tests/integration/Validation/RulesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class RulesCest +{ + /** + * Tests Phalcon\Validation :: rules() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationRules(IntegrationTester $I) + { + $I->wantToTest("Validation - rules()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/SetDICest.php b/tests/integration/Validation/SetDICest.php new file mode 100644 index 00000000000..eeb7fa8a215 --- /dev/null +++ b/tests/integration/Validation/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class SetDICest +{ + /** + * Tests Phalcon\Validation :: setDI() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationSetDI(IntegrationTester $I) + { + $I->wantToTest("Validation - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/SetDefaultMessagesCest.php b/tests/integration/Validation/SetDefaultMessagesCest.php new file mode 100644 index 00000000000..1773210e7f9 --- /dev/null +++ b/tests/integration/Validation/SetDefaultMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class SetDefaultMessagesCest +{ + /** + * Tests Phalcon\Validation :: setDefaultMessages() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationSetDefaultMessages(IntegrationTester $I) + { + $I->wantToTest("Validation - setDefaultMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/SetEntityCest.php b/tests/integration/Validation/SetEntityCest.php new file mode 100644 index 00000000000..0a110d9f883 --- /dev/null +++ b/tests/integration/Validation/SetEntityCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class SetEntityCest +{ + /** + * Tests Phalcon\Validation :: setEntity() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationSetEntity(IntegrationTester $I) + { + $I->wantToTest("Validation - setEntity()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/SetEventsManagerCest.php b/tests/integration/Validation/SetEventsManagerCest.php new file mode 100644 index 00000000000..befea531262 --- /dev/null +++ b/tests/integration/Validation/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Validation :: setEventsManager() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationSetEventsManager(IntegrationTester $I) + { + $I->wantToTest("Validation - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/SetFiltersCest.php b/tests/integration/Validation/SetFiltersCest.php new file mode 100644 index 00000000000..e9eb8859f47 --- /dev/null +++ b/tests/integration/Validation/SetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class SetFiltersCest +{ + /** + * Tests Phalcon\Validation :: setFilters() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationSetFilters(IntegrationTester $I) + { + $I->wantToTest("Validation - setFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/SetLabelsCest.php b/tests/integration/Validation/SetLabelsCest.php new file mode 100644 index 00000000000..f595becabb4 --- /dev/null +++ b/tests/integration/Validation/SetLabelsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class SetLabelsCest +{ + /** + * Tests Phalcon\Validation :: setLabels() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationSetLabels(IntegrationTester $I) + { + $I->wantToTest("Validation - setLabels()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/SetValidatorsCest.php b/tests/integration/Validation/SetValidatorsCest.php new file mode 100644 index 00000000000..8f15fe8336b --- /dev/null +++ b/tests/integration/Validation/SetValidatorsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class SetValidatorsCest +{ + /** + * Tests Phalcon\Validation :: setValidators() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationSetValidators(IntegrationTester $I) + { + $I->wantToTest("Validation - setValidators()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/UnderscoreGetCest.php b/tests/integration/Validation/UnderscoreGetCest.php new file mode 100644 index 00000000000..9212c9326d5 --- /dev/null +++ b/tests/integration/Validation/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Validation :: __get() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationUnderscoreGet(IntegrationTester $I) + { + $I->wantToTest("Validation - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/ValidateCest.php b/tests/integration/Validation/ValidateCest.php new file mode 100644 index 00000000000..673147f9a33 --- /dev/null +++ b/tests/integration/Validation/ValidateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation; + +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation :: validate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidate(IntegrationTester $I) + { + $I->wantToTest("Validation - validate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/ValidationCest.php b/tests/integration/Validation/ValidationCest.php new file mode 100644 index 00000000000..3f63d452a2f --- /dev/null +++ b/tests/integration/Validation/ValidationCest.php @@ -0,0 +1,315 @@ + + * @author Phalcon Team + * @package Phalcon\Test\Integration + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class ValidationCest +{ + use DiTrait; + + /** + * @var Validation + */ + protected $validation; + + /** + * executed before each test + */ + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + $this->setDiMysql(); + $this->validation = new Validation(); + $this->validation->add( + 'name', + new PresenceOf( + [ + 'message' => 'Name cant be empty.' + ] + ) + ); + $this->validation->setFilters('name', 'trim'); + } + + /** + * Tests the get + * + * @issue https://github.com/phalcon/cphalcon/issues/10405 + * @author Phalcon Team + * @since 2016-06-27 + * + * @param IntegrationTester $I + */ + public function appendValidationMessageToTheNonObject(IntegrationTester $I) + { + $myValidator = new PresenceOf(); + $validation = new Validation(); + + $validation->bind( + new \stdClass(), + [ + 'day' => date('d'), + 'month' => date('m'), + 'year' => date('Y') + 1, + ] + ); + + $myValidator->validate($validation, 'foo'); + + $expectedMessages = Messages::__set_state([ + '_position' => 0, + '_messages' => [ + new Message('Field foo is required', 'foo', 'PresenceOf', 0), + ], + ]); + + $I->assertEquals($expectedMessages, $validation->getMessages()); + } + + /** + * Tests validate method with entity and filters + * + * @author Wojciech Ślawski + * @since 2016-09-26 + */ + public function testWithEntityAndFilter(IntegrationTester $I) + { + $users = new Users([ + 'name' => ' ' + ]); + $messages = $this->validation->validate(null, $users); + + $I->assertEquals($messages->count(), 1); + $I->assertEquals($messages->offsetGet(0)->getMessage(), 'Name cant be empty.'); + + $expectedMessages = Messages::__set_state([ + '_messages' => [ + Message::__set_state([ + '_type' => 'PresenceOf', + '_message' => 'Name cant be empty.', + '_field' => 'name', + '_code' => '0', + ]) + ], + ]); + + $I->assertEquals($messages, $expectedMessages); + } + + /** + * Tests that filters in validation will correctly filter entity values + * + * @author Wojciech Ślawski + * @since 2016-09-26 + */ + public function testFilteringEntity(IntegrationTester $I) + { + $users = new Users([ + 'name' => 'SomeName ' + ]); + + $this->validation->validate(null, $users); + + $I->assertEquals($users->name, 'SomeName'); + } + + public function testGetDefaultValidationMessageShouldReturnEmptyStringIfNoneIsSet(IntegrationTester $I) + { + $validation = new Validation(); + + $I->assertIsEmpty($validation->getDefaultMessage('_notexistentvalidationmessage_')); + } + + public function testValidationFiltering(IntegrationTester $I) + { + $validation = new Validation(); + $validation->setDI($this->container); + + $validation + ->add('name', new PresenceOf([ + 'message' => 'The name is required' + ])) + ->add('email', new PresenceOf([ + 'message' => 'The email is required' + ])); + + $validation->setFilters('name', 'trim'); + $validation->setFilters('email', 'trim'); + + $messages = $validation->validate(['name' => ' ', 'email' => ' ']); + + $I->assertCount(2, $messages); + + $filtered = $messages->filter('email'); + + $expectedMessages = [ + 0 => Message::__set_state([ + '_type' => 'PresenceOf', + '_message' => 'The email is required', + '_field' => 'email', + '_code' => '0', + ]) + ]; + + $I->assertEquals($filtered, $expectedMessages); + } + + public function testValidationSetLabels(IntegrationTester $I) + { + $validation = new Validation(); + + $validation->add( + 'email', + new PresenceOf( + [ + 'message' => 'The :field is required' + ] + ) + ); + $validation->add( + 'email', + new Email( + [ + 'message' => 'The :field must be email', + 'label' => 'E-mail' + ] + ) + ); + $validation->add( + 'firstname', + new PresenceOf( + [ + 'message' => 'The :field is required' + ] + ) + ); + $validation->add( + 'firstname', + new StringLength( + [ + 'min' => 4, + 'messageMinimum' => 'The :field is too short' + ] + ) + ); + + $validation->setLabels(['firstname' => 'First name']); + $messages = $validation->validate(['email' => '', 'firstname' => '']); + + $expectedMessages = Messages::__set_state([ + '_messages' => [ + 0 => Message::__set_state([ + '_type' => 'PresenceOf', + '_message' => 'The email is required', + '_field' => 'email', + '_code' => '0', + ]), + 1 => Message::__set_state([ + '_type' => 'Email', + '_message' => 'The E-mail must be email', + '_field' => 'email', + '_code' => '0', + ]), + 2 => Message::__set_state([ + '_type' => 'PresenceOf', + '_message' => 'The First name is required', + '_field' => 'firstname', + '_code' => '0', + ]), + 3 => Message::__set_state([ + '_type' => 'TooShort', + '_message' => 'The First name is too short', + '_field' => 'firstname', + '_code' => '0', + ]) + ] + ]); + + $I->assertEquals($messages, $expectedMessages); + } + + /** + * Tests that empty values behaviour. + * + * @author Gorka Guridi + * @since 2016-12-30 + */ + public function testEmptyValues(IntegrationTester $I) + { + $validation = new Validation(); + + $validation->setDI($this->container); + + $validation + ->add('name', new Alpha([ + 'message' => 'The name is not valid', + ])) + ->add('name', new PresenceOf([ + 'message' => 'The name is required', + ])) + ->add('url', new Url([ + 'message' => 'The url is not valid.', + 'allowEmpty' => true, + ])) + ->add('email', new Email([ + 'message' => 'The email is not valid.', + 'allowEmpty' => [null, false], + ])); + + $messages = $validation->validate([ + 'name' => '', + 'url' => null, + 'email' => '', + ]); + $I->assertCount(2, $messages); + + $messages = $validation->validate([ + 'name' => 'MyName', + 'url' => '', + 'email' => '', + ]); + $I->assertCount(1, $messages); + + $messages = $validation->validate([ + 'name' => 'MyName', + 'url' => false, + 'email' => null, + ]); + $I->assertCount(0, $messages); + + $messages = $validation->validate([ + 'name' => 'MyName', + 'url' => 0, + 'email' => 0, + ]); + $I->assertCount(1, $messages); + } +} diff --git a/tests/integration/Validation/Validator/Alnum/ConstructCest.php b/tests/integration/Validation/Validator/Alnum/ConstructCest.php new file mode 100644 index 00000000000..1202814c102 --- /dev/null +++ b/tests/integration/Validation/Validator/Alnum/ConstructCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Alnum; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Alnum; +use Phalcon\Validation\ValidatorInterface; +use IntegrationTester; + +class ConstructCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Alnum :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorAlnumConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Alnum - __construct()"); + $validator = new Alnum(); + $this->checkConstruct($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Alnum/GetOptionCest.php b/tests/integration/Validation/Validator/Alnum/GetOptionCest.php new file mode 100644 index 00000000000..801d63e7d27 --- /dev/null +++ b/tests/integration/Validation/Validator/Alnum/GetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Alnum; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Alnum; +use IntegrationTester; + +class GetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Alnum :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorAlnumGetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Alnum - getOption()"); + $validator = new Alnum(); + $this->checkGetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Alnum/HasOptionCest.php b/tests/integration/Validation/Validator/Alnum/HasOptionCest.php new file mode 100644 index 00000000000..4af8b996193 --- /dev/null +++ b/tests/integration/Validation/Validator/Alnum/HasOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Alnum; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Alnum; +use IntegrationTester; + +class HasOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Alnum :: hasOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorAlnumHasOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Alnum - hasOption()"); + $validator = new Alnum(['message' => 'This is a message']); + $this->checkHasOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Alnum/SetOptionCest.php b/tests/integration/Validation/Validator/Alnum/SetOptionCest.php new file mode 100644 index 00000000000..7d872d2aa50 --- /dev/null +++ b/tests/integration/Validation/Validator/Alnum/SetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Alnum; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Alnum; +use IntegrationTester; + +class SetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Alnum :: setOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorAlnumSetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Alnum - setOption()"); + $validator = new Alnum(); + $this->checkSetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Alnum/ValidateCest.php b/tests/integration/Validation/Validator/Alnum/ValidateCest.php new file mode 100644 index 00000000000..114706da880 --- /dev/null +++ b/tests/integration/Validation/Validator/Alnum/ValidateCest.php @@ -0,0 +1,103 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Alnum; + +use Phalcon\Validation; +use Phalcon\Validation\Validator\Alnum; +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation\Validator\Alnum :: validate() - single field + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorAlnumValidateSingleField(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Alnum - validate() - single field"); + $validation = new Validation(); + $validation->add('name', new Alnum()); + $messages = $validation->validate(['name' => 'SomeValue123']); + + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'SomeValue123!@#']); + + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\Alnum :: validate() - multiple field + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorAlnumValidateMultipleField(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Alnum - validate() - multiple field"); + $validation = new Validation(); + $validationMessages = [ + 'name' => 'Name must be alnum', + 'type' => 'Type must be alnum', + ]; + $validation->add( + [ + 'name', + 'type', + ], + new Alnum( + [ + 'message' => $validationMessages, + ] + ) + ); + $messages = $validation->validate(['name' => 'SomeValue123', 'type' => 'SomeValue123']); + + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'SomeValue123!@#', 'type' => 'SomeValue123']); + + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['name']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'SomeValue123!@#', 'type' => 'SomeValue123!@#']); + + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['name']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['type']; + $actual = $messages->offsetGet(1)->getMessage(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Validation/Validator/Alpha/ConstructCest.php b/tests/integration/Validation/Validator/Alpha/ConstructCest.php new file mode 100644 index 00000000000..175f6a4206d --- /dev/null +++ b/tests/integration/Validation/Validator/Alpha/ConstructCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Alpha; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Alpha; +use Phalcon\Validation\ValidatorInterface; +use IntegrationTester; + +class ConstructCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Alpha :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorAlphaConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Alpha - __construct()"); + $validator = new Alpha(); + $this->checkConstruct($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Alpha/GetOptionCest.php b/tests/integration/Validation/Validator/Alpha/GetOptionCest.php new file mode 100644 index 00000000000..31920ca13f2 --- /dev/null +++ b/tests/integration/Validation/Validator/Alpha/GetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Alpha; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Alpha; +use IntegrationTester; + +class GetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Alpha :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorAlphaGetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Alpha - getOption()"); + $validator = new Alpha(); + $this->checkGetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Alpha/HasOptionCest.php b/tests/integration/Validation/Validator/Alpha/HasOptionCest.php new file mode 100644 index 00000000000..484edeab2d3 --- /dev/null +++ b/tests/integration/Validation/Validator/Alpha/HasOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Alpha; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Alpha; +use IntegrationTester; + +class HasOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Alpha :: hasOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorAlphaHasOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Alpha - hasOption()"); + $validator = new Alpha(['message' => 'This is a message']); + $this->checkHasOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Alpha/SetOptionCest.php b/tests/integration/Validation/Validator/Alpha/SetOptionCest.php new file mode 100644 index 00000000000..89759f664e6 --- /dev/null +++ b/tests/integration/Validation/Validator/Alpha/SetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Alpha; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Alpha; +use IntegrationTester; + +class SetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Alpha :: setOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorAlphaSetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Alpha - setOption()"); + $validator = new Alpha(); + $this->checkSetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Alpha/ValidateCest.php b/tests/integration/Validation/Validator/Alpha/ValidateCest.php new file mode 100644 index 00000000000..cf88ac0e15c --- /dev/null +++ b/tests/integration/Validation/Validator/Alpha/ValidateCest.php @@ -0,0 +1,227 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Alpha; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use Phalcon\Validation; +use Phalcon\Validation\Validator\Alpha; +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation\Validator\Alpha :: validate() - single field + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorAlphaValidateSingleField(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Alpha - validate() - single field"); + $validation = new Validation(); + $validation->add('name', new Alpha()); + $messages = $validation->validate(['name' => 'Asd']); + + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'Asd123']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\Alpha :: validate() - multiple field + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorAlphaValidateMultipleField(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Alpha - validate() - multiple field"); + $validation = new Validation(); + $validationMessages = [ + 'name' => 'Name must be alpha.', + 'type' => 'Type must by alpha.', + ]; + $validation->add(['name', 'type'], new Alpha([ + 'message' => $validationMessages, + ])); + + $messages = $validation->validate(['name' => 'Asd', 'type' => 'Asd']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + $messages = $validation->validate(['name' => 'Asd123', 'type' => 'Asd']); + + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['name']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'Asd123', 'type' => 'Asd123']); + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['name']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['type']; + $actual = $messages->offsetGet(1)->getMessage(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\Alpha :: validate() - Non Alphabetic + * Characters + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2016-06-10 + */ + public function validationValidatorAlphaValidateNonAlphabeticCharacters(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Alpha - validate() - non alphabetic characters"); + $examples = [ + '1', + 123, + 'a-b-c-d', + 'a-1-c-2', + 'a1c2', + 'o0o0o0o0', + ]; + + foreach ($examples as $input) { + $validation = new Validation; + $validation->add( + 'name', + new Alpha( + [ + 'message' => ':field must contain only letters', + ] + ) + ); + + $expected = Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'Alpha', + '_message' => 'name must contain only letters', + '_field' => 'name', + '_code' => '0', + ] + ), + ], + ] + ); + $actual = $validation->validate(['name' => $input]); + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Phalcon\Validation\Validator\Alpha :: validate() - Alphabetic + * Characters + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2016-06-10 + */ + public function validationValidatorAlphaValidateAlphabeticCharacters(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Alpha - validate() - alphabetic characters"); + $examples = [ + 'a', + 'asdavafaiwnoabwiubafpowf', + 'QWERTYUIOPASDFGHJKL', + 'aSdFgHjKl', + null, + ]; + + foreach ($examples as $input) { + $validation = new Validation; + $validation->add( + 'name', + new Alpha( + [ + 'message' => ':field must contain only letters', + ] + ) + ); + + $messages = $validation->validate(['name' => $input]); + + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Phalcon\Validation\Validator\Alpha :: validate() - Non Latin + * Characters + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2016-06-10 + */ + public function validationValidatorAlphaValidateNonLatinCharacters(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Alpha - validate() - non latin characters"); + $examples = [ + 'йцукенг', + 'ждлорпа', + 'Señor', + 'cocoñùт', + 'COCOÑÙТ', + 'JÄGER', + 'šš', + 'あいうえお', + '零一二三四五', + ]; + + foreach ($examples as $input) { + $validation = new Validation; + $validation->add( + 'name', + new Alpha( + [ + 'message' => ':field must contain only letters', + ] + ) + ); + + $messages = $validation->validate(['name' => $input]); + + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + } +} diff --git a/tests/integration/Validation/Validator/Between/ConstructCest.php b/tests/integration/Validation/Validator/Between/ConstructCest.php new file mode 100644 index 00000000000..2270036f779 --- /dev/null +++ b/tests/integration/Validation/Validator/Between/ConstructCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Between; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Between; +use Phalcon\Validation\ValidatorInterface; +use IntegrationTester; + +class ConstructCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Between :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorBetweenConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Between - __construct()"); + $validator = new Between(); + $this->checkConstruct($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Between/GetOptionCest.php b/tests/integration/Validation/Validator/Between/GetOptionCest.php new file mode 100644 index 00000000000..4c866cec77f --- /dev/null +++ b/tests/integration/Validation/Validator/Between/GetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Between; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Between; +use IntegrationTester; + +class GetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Between :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorBetweenGetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Between - getOption()"); + $validator = new Between(); + $this->checkGetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Between/HasOptionCest.php b/tests/integration/Validation/Validator/Between/HasOptionCest.php new file mode 100644 index 00000000000..0673d0798f4 --- /dev/null +++ b/tests/integration/Validation/Validator/Between/HasOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Between; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Between; +use IntegrationTester; + +class HasOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Between :: hasOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorBetweenHasOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Between - hasOption()"); + $validator = new Between(['message' => 'This is a message']); + $this->checkHasOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Between/SetOptionCest.php b/tests/integration/Validation/Validator/Between/SetOptionCest.php new file mode 100644 index 00000000000..af5b3b934f3 --- /dev/null +++ b/tests/integration/Validation/Validator/Between/SetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Between; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Between; +use IntegrationTester; + +class SetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Between :: setOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorBetweenSetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Between - setOption()"); + $validator = new Between(); + $this->checkSetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Between/ValidateCest.php b/tests/integration/Validation/Validator/Between/ValidateCest.php new file mode 100644 index 00000000000..c8cb2a403b5 --- /dev/null +++ b/tests/integration/Validation/Validator/Between/ValidateCest.php @@ -0,0 +1,194 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Between; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use Phalcon\Validation; +use Phalcon\Validation\Validator\Between; +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation\Validator\Between :: validate() - single field + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorBetweenValidateSingleField(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Between - validate() - single field"); + $validation = new Validation(); + $validation->add( + 'price', + new Between( + [ + 'minimum' => 1, + 'maximum' => 3, + ] + ) + ); + + $messages = $validation->validate(['price' => 5]); + + $expected = Messages::__set_state( + [ + '_messages' => [ + 0 => Message::__set_state( + [ + '_type' => 'Between', + '_message' => 'Field price must be within the range of 1 to 3', + '_field' => 'price', + '_code' => '0', + ] + ), + ], + ] + ); + $actual = $messages; + $I->assertEquals($expected, $actual); + + $messages = $validation->validate([]); + $actual = $messages; + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['price' => 2]); + + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\Between :: validate() - multiple field + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorBetweenValidateMultipleField(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Between - validate() - multiple field"); + $validation = new Validation(); + $validationMessages = [ + 'amount' => 'Amount must be between 0 and 999.', + 'price' => 'Price must be between 0 and 999.', + ]; + $validation->add( + [ + 'amount', + 'price', + ], + new Between( + [ + 'minimum' => [ + 'amount' => 0, + 'price' => 0, + ], + 'maximum' => [ + 'amount' => 999, + 'price' => 999, + ], + 'message' => $validationMessages, + ] + ) + ); + + $messages = $validation->validate(['amount' => 100]); + + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['amount' => 1000, 'price' => 100]); + + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['amount']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['amount' => 1000, 'price' => 1000]); + + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['amount']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['price']; + $actual = $messages->offsetGet(1)->getMessage(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\Between :: validate() - custom message + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorBetweenValidateCustomMessage(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Between - validate() - custom message"); + $validation = new Validation(); + + $validation->add( + 'price', + new Between( + [ + 'minimum' => 1, + 'maximum' => 3, + 'message' => 'The price must be between 1 and 3', + ] + ) + ); + + $messages = $validation->validate(['price' => 5]); + + $expected = Messages::__set_state( + [ + '_messages' => [ + 0 => Message::__set_state( + [ + '_type' => 'Between', + '_message' => 'The price must be between 1 and 3', + '_field' => 'price', + '_code' => '0', + ] + ), + ], + ] + ); + $actual = $messages; + $I->assertEquals($expected, $actual); + + $messages = $validation->validate([]); + $actual = $messages; + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['price' => 2]); + + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Validation/Validator/Callback/ConstructCest.php b/tests/integration/Validation/Validator/Callback/ConstructCest.php new file mode 100644 index 00000000000..acd51bff2e2 --- /dev/null +++ b/tests/integration/Validation/Validator/Callback/ConstructCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Callback; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Callback; +use Phalcon\Validation\ValidatorInterface; +use IntegrationTester; + +class ConstructCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Callback :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorCallbackConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Callback - __construct()"); + $validator = new Callback(); + $this->checkConstruct($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Callback/GetOptionCest.php b/tests/integration/Validation/Validator/Callback/GetOptionCest.php new file mode 100644 index 00000000000..bd2b039d7d3 --- /dev/null +++ b/tests/integration/Validation/Validator/Callback/GetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Callback; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Callback; +use IntegrationTester; + +class GetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Callback :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorCallbackGetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Callback - getOption()"); + $validator = new Callback(); + $this->checkGetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Callback/HasOptionCest.php b/tests/integration/Validation/Validator/Callback/HasOptionCest.php new file mode 100644 index 00000000000..196cfb2eb8b --- /dev/null +++ b/tests/integration/Validation/Validator/Callback/HasOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Callback; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Callback; +use IntegrationTester; + +class HasOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Callback :: hasOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorCallbackHasOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Callback - hasOption()"); + $validator = new Callback(['message' => 'This is a message']); + $this->checkHasOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Callback/SetOptionCest.php b/tests/integration/Validation/Validator/Callback/SetOptionCest.php new file mode 100644 index 00000000000..9209176970b --- /dev/null +++ b/tests/integration/Validation/Validator/Callback/SetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Callback; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Callback; +use IntegrationTester; + +class SetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Callback :: setOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorCallbackSetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Callback - setOption()"); + $validator = new Callback(); + $this->checkSetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Callback/ValidateCest.php b/tests/integration/Validation/Validator/Callback/ValidateCest.php new file mode 100644 index 00000000000..6986e20fc98 --- /dev/null +++ b/tests/integration/Validation/Validator/Callback/ValidateCest.php @@ -0,0 +1,364 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Callback; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use Phalcon\Validation; +use Phalcon\Validation\Validator\Callback; +use Phalcon\Validation\Validator\Exception; +use Phalcon\Validation\Validator\PresenceOf; +use Phalcon\Validation\Validator\StringLength; +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation\Validator\Callback :: validate() - single field + * using boolean + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-10-29 + */ + public function validationValidatorCallbackValidateSingleFieldBoolean(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Callback - validate() - single field using boolean"); + $validation = new Validation(); + $validation->add( + 'user', + new Callback( + [ + "callback" => function ($data) { + return empty($data['admin']); + }, + "message" => "You cant provide both admin and user.", + "allowEmpty" => true, + ] + ) + ); + + $messages = $validation->validate(["user" => "user", "admin" => null]); + + $expected = 0; + $actual = count($messages); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(["user" => null, "admin" => "admin"]); + $expected = 0; + $actual = count($messages); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(["user" => "user", "admin" => "admin"]); + $expected = 1; + $actual = count($messages); + $I->assertEquals($expected, $actual); + + $expected = Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'Callback', + '_message' => 'You cant provide both admin and user.', + '_field' => 'user', + '_code' => '0', + ] + ), + ], + ] + ); + $actual = $messages; + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\Callback :: validate() - single field + * using validator + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-10-29 + */ + public function validationValidatorCallbackValidateSingleFieldValidator(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Callback - validate() - single field using validator"); + $validation = new Validation(); + $validation->add( + 'user', + new Callback( + [ + "callback" => function ($data) { + if (empty($data['admin'])) { + return new StringLength( + [ + "min" => 4, + "messageMinimum" => "User name should be minimum 4 characters.", + ] + ); + } + + return true; + }, + ] + ) + ); + $messages = $validation->validate(['user' => 'u', 'admin' => 'admin']); + + $expected = 0; + $actual = count($messages); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['user' => 'user', 'admin' => null]); + + $expected = 0; + $actual = count($messages); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['user' => 'u', 'admin' => null]); + + $expected = 1; + $actual = count($messages); + $I->assertEquals($expected, $actual); + + $expected = Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'TooShort', + '_message' => 'User name should be minimum 4 characters.', + '_field' => 'user', + '_code' => '0', + ] + ), + ], + ] + ); + $actual = $messages; + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\Callback :: validate() - multiple + * field returning boolean + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-10-29 + */ + public function validationValidatorCallbackValidateMultipleFieldBoolean(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Callback - validate() - multiple field returning boolean"); + $validation = new Validation(); + $validation->add( + ['user', 'admin'], + new Callback( + [ + "message" => "There must be only an user or admin set", + "callback" => function ($data) { + if (!empty($data['user']) && !empty($data['admin'])) { + return false; + } + + return true; + }, + ] + ) + ); + + $messages = $validation->validate(['user' => null, 'admin' => 'admin']); + + $expected = 0; + $actual = count($messages); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['user' => 'user', 'admin' => null]); + + $expected = 0; + $actual = count($messages); + $I->assertEquals($expected, $actual); + $messages = $validation->validate(['user' => 'user', 'admin' => 'admin']); + + $expected = 2; + $actual = count($messages); + $I->assertEquals($expected, $actual); + + $expected = Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'Callback', + '_message' => 'There must be only an user or admin set', + '_field' => 'user', + '_code' => '0', + ] + ), + Message::__set_state( + [ + '_type' => 'Callback', + '_message' => 'There must be only an user or admin set', + '_field' => 'admin', + '_code' => '0', + ] + ), + ], + ] + ); + $actual = $messages; + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\Callback :: validate() - multiple + * field validator + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-10-29 + */ + public function validationValidatorCallbackValidateMultipleFieldValidator(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Callback - validate() - multiple field validator"); + $validation = new Validation(); + $validation->add( + ['user', 'admin'], + new Callback( + [ + "message" => "There must be only an user or admin set", + "callback" => function ($data) { + if (empty($data['user']) && empty($data['admin'])) { + return new PresenceOf( + [ + "message" => "You must provide admin or user", + ] + ); + } + + if (!empty($data['user']) && !empty($data['admin'])) { + return false; + } + + return true; + }, + ] + ) + ); + + $messages = $validation->validate(['admin' => null, 'user' => null]); + + $expected = 2; + $actual = count($messages); + $I->assertEquals($expected, $actual); + + $expected = Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'PresenceOf', + '_message' => 'You must provide admin or user', + '_field' => 'user', + '_code' => '0', + ] + ), + Message::__set_state( + [ + '_type' => 'PresenceOf', + '_message' => 'You must provide admin or user', + '_field' => 'admin', + '_code' => '0', + ] + ), + ], + ] + ); + $actual = $messages; + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['admin' => 'admin', 'user' => null]); + $expected = 0; + $actual = count($messages); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['admin' => null, 'user' => 'user']); + $expected = 0; + $actual = count($messages); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['admin' => 'admin', 'user' => 'user']); + $expected = 2; + $actual = count($messages); + $I->assertEquals($expected, $actual); + + $expected = Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'Callback', + '_message' => 'There must be only an user or admin set', + '_field' => 'user', + '_code' => '0', + ] + ), + Message::__set_state( + [ + '_type' => 'Callback', + '_message' => 'There must be only an user or admin set', + '_field' => 'admin', + '_code' => '0', + ] + ), + ], + ] + ); + $actual = $messages; + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\Callback :: validate() - exception + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-10-29 + */ + public function validationValidatorCallbackValidateException(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Callback - validate() - exception"); + $I->expectThrowable( + new Exception('Callback must return bool or Phalcon\Validation\Validator object'), + function () { + $validation = new Validation(); + $validation->add( + 'user', + new Callback( + [ + "callback" => function ($data) { + return new Validation(); + }, + ] + ) + ); + + $validation->validate(['user' => 'user']); + } + ); + } +} diff --git a/tests/integration/Validation/Validator/Confirmation/ConstructCest.php b/tests/integration/Validation/Validator/Confirmation/ConstructCest.php new file mode 100644 index 00000000000..2be5ca98505 --- /dev/null +++ b/tests/integration/Validation/Validator/Confirmation/ConstructCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Confirmation; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Confirmation; +use Phalcon\Validation\ValidatorInterface; +use IntegrationTester; + +class ConstructCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Confirmation :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorConfirmationConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Confirmation - __construct()"); + $validator = new Confirmation(); + $this->checkConstruct($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Confirmation/GetOptionCest.php b/tests/integration/Validation/Validator/Confirmation/GetOptionCest.php new file mode 100644 index 00000000000..b792e764682 --- /dev/null +++ b/tests/integration/Validation/Validator/Confirmation/GetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Confirmation; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Confirmation; +use IntegrationTester; + +class GetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Confirmation :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorConfirmationGetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Confirmation - getOption()"); + $validator = new Confirmation(); + $this->checkGetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Confirmation/HasOptionCest.php b/tests/integration/Validation/Validator/Confirmation/HasOptionCest.php new file mode 100644 index 00000000000..cdd64ec187d --- /dev/null +++ b/tests/integration/Validation/Validator/Confirmation/HasOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Confirmation; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Confirmation; +use IntegrationTester; + +class HasOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Confirmation :: hasOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorConfirmationHasOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Confirmation - hasOption()"); + $validator = new Confirmation(['message' => 'This is a message']); + $this->checkHasOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Confirmation/SetOptionCest.php b/tests/integration/Validation/Validator/Confirmation/SetOptionCest.php new file mode 100644 index 00000000000..e0992b6304d --- /dev/null +++ b/tests/integration/Validation/Validator/Confirmation/SetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Confirmation; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Confirmation; +use IntegrationTester; + +class SetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Confirmation :: setOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorConfirmationSetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Confirmation - setOption()"); + $validator = new Confirmation(); + $this->checkSetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Confirmation/ValidateCest.php b/tests/integration/Validation/Validator/Confirmation/ValidateCest.php new file mode 100644 index 00000000000..f5db415af7b --- /dev/null +++ b/tests/integration/Validation/Validator/Confirmation/ValidateCest.php @@ -0,0 +1,272 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Confirmation; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use Phalcon\Validation; +use Phalcon\Validation\Validator\Confirmation; +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation\Validator\Confirmation :: validate() - single + * field + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorConfirmationValidateSingleField(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Confirmation - validate() - single field"); + $validation = new Validation(); + $validation->add( + 'name', + new Confirmation( + [ + 'with' => 'nameWith', + ] + ) + ); + + $messages = $validation->validate( + [ + 'name' => 'SomeValue', + 'nameWith' => 'SomeValue', + ] + ); + + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate( + [ + 'name' => 'SomeValue', + 'nameWith' => 'SomeValue123', + ] + ); + + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\Confirmation :: validate() - multiple + * field + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorConfirmationValidateMultipleField(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Confirmation - validate() - multiple field"); + $validation = new Validation(); + $validationMessages = [ + 'name' => 'Name must be same as nameWith.', + 'type' => 'Type must be same as typeWith.', + ]; + $validation->add( + ['name', 'type'], + new Confirmation( + [ + 'with' => [ + 'name' => 'nameWith', + 'type' => 'typeWith', + ], + 'message' => $validationMessages, + ] + ) + ); + + $messages = $validation->validate( + [ + 'name' => 'SomeValue', + 'nameWith' => 'SomeValue', + 'type' => 'SomeValue', + 'typeWith' => 'SomeValue', + ] + ); + + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate( + [ + 'name' => 'SomeValue', + 'nameWith' => 'SomeValue123', + 'type' => 'SomeValue', + 'typeWith' => 'SomeValue', + ] + ); + + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['name']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate( + [ + 'name' => 'SomeValue', + 'nameWith' => 'SomeValue123', + 'type' => 'SomeValue', + 'typeWith' => 'SomeValue123', + ] + ); + + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['name']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['type']; + $actual = $messages->offsetGet(1)->getMessage(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\Confirmation :: validate() - empty + * value + * + * @param IntegrationTester $I + * + * @author Stanislav Kiryukhin + * @since 2015-09-06 + */ + public function validationValidatorConfirmationValidateEmptyValues(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Confirmation - validate() - empty value"); + $expected = Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'Confirmation', + '_message' => 'Field password must be the same as password2', + '_field' => 'password', + '_code' => '0', + ] + ), + ], + ] + ); + + $validation = new Validation(); + $validation->add( + 'password', + new Confirmation( + [ + 'allowEmpty' => true, + 'with' => 'password2', + ] + ) + ); + + $messages = $validation->validate( + [ + 'password' => 'test123', + 'password2' => 'test123', + ] + ); + + $actual = $messages->count(); + $I->assertEquals(0, $actual); + + $messages = $validation->validate( + [ + 'password' => null, + 'password2' => 'test123', + ] + ); + + $actual = $messages->count(); + $I->assertEquals(0, $actual); + + $validation = new Validation(); + $validation->add( + 'password', + new Confirmation( + [ + 'allowEmpty' => false, + 'with' => 'password2', + ] + ) + ); + + $messages = $validation->validate( + [ + 'password' => 'test123', + 'password2' => 'test123', + ] + ); + + $actual = $messages->count(); + $I->assertEquals(0, $actual); + + $messages = $validation->validate( + [ + 'password' => null, + 'password2' => 'test123', + ] + ); + + $actual = $messages->count(); + $I->assertEquals(1, $actual); + $actual = $messages; + $I->assertEquals($expected, $actual); + + $validation = new Validation(); + $validation->add( + 'password', + new Confirmation( + [ + 'with' => 'password2', + ] + ) + ); + + $messages = $validation->validate( + [ + 'password' => 'test123', + 'password2' => 'test123', + ] + ); + + $actual = $messages->count(); + $I->assertEquals(0, $actual); + + $messages = $validation->validate( + [ + 'password' => null, + 'password2' => 'test123', + ] + ); + + $actual = $messages->count(); + $I->assertEquals(1, $actual); + $actual = $messages; + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Validation/Validator/ConstructCest.php b/tests/integration/Validation/Validator/ConstructCest.php new file mode 100644 index 00000000000..05502069ec1 --- /dev/null +++ b/tests/integration/Validation/Validator/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator; + +use IntegrationTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Validation\Validator :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/Validator/CreditCard/ConstructCest.php b/tests/integration/Validation/Validator/CreditCard/ConstructCest.php new file mode 100644 index 00000000000..ed3e9910b2f --- /dev/null +++ b/tests/integration/Validation/Validator/CreditCard/ConstructCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\CreditCard; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\CreditCard; +use Phalcon\Validation\ValidatorInterface; +use IntegrationTester; + +class ConstructCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\CreditCard :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorCreditCardConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\CreditCard - __construct()"); + $validator = new CreditCard(); + $this->checkConstruct($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/CreditCard/GetOptionCest.php b/tests/integration/Validation/Validator/CreditCard/GetOptionCest.php new file mode 100644 index 00000000000..ec990400784 --- /dev/null +++ b/tests/integration/Validation/Validator/CreditCard/GetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\CreditCard; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\CreditCard; +use IntegrationTester; + +class GetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\CreditCard :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorCreditCardGetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\CreditCard - getOption()"); + $validator = new CreditCard(); + $this->checkGetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/CreditCard/HasOptionCest.php b/tests/integration/Validation/Validator/CreditCard/HasOptionCest.php new file mode 100644 index 00000000000..d3f9de90e44 --- /dev/null +++ b/tests/integration/Validation/Validator/CreditCard/HasOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\CreditCard; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\CreditCard; +use IntegrationTester; + +class HasOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\CreditCard :: hasOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorCreditCardHasOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\CreditCard - hasOption()"); + $validator = new CreditCard(['message' => 'This is a message']); + $this->checkHasOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/CreditCard/SetOptionCest.php b/tests/integration/Validation/Validator/CreditCard/SetOptionCest.php new file mode 100644 index 00000000000..d973ef5c95f --- /dev/null +++ b/tests/integration/Validation/Validator/CreditCard/SetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\CreditCard; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\CreditCard; +use IntegrationTester; + +class SetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\CreditCard :: setOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorCreditCardSetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\CreditCard - setOption()"); + $validator = new CreditCard(); + $this->checkSetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/CreditCard/ValidateCest.php b/tests/integration/Validation/Validator/CreditCard/ValidateCest.php new file mode 100644 index 00000000000..60bcf9d1f3a --- /dev/null +++ b/tests/integration/Validation/Validator/CreditCard/ValidateCest.php @@ -0,0 +1,204 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\CreditCard; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use Phalcon\Validation; +use Phalcon\Validation\Validator\CreditCard; +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation\Validator\CreditCard :: validate() + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorCreditCardValidate(IntegrationTester $I) + { + $I->skipTest("Need implementation"); + } + + /** + * Tests Phalcon\Validation\Validator\CreditCard :: validate() - single + * field + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorCreditCardValidateSingleField(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\CreditCard - validate() - single"); + $validation = new Validation(); + $validation->add('creditCard', new CreditCard()); + + $expected = 0; + $actual = count($validation->validate(['creditCard' => 4601587377626131])); + $I->assertEquals($expected, $actual); + + $expected = 1; + $actual = count($validation->validate(['creditCard' => 46015873776261312])); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\CreditCard :: validate() - multiple + * field + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorCreditCardValidateMultipleFields(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\CreditCard - validate() - multiple"); + $validation = new Validation(); + + $validationMessages = [ + 'creditCard' => 'CreditCard must be correct credit card value.', + 'anotherCreditCard' => 'AnotherCreditCard must be correct credit card value.', + ]; + + $validation->add( + ['creditCard', 'anotherCreditCard'], + new CreditCard( + [ + 'message' => $validationMessages, + ] + ) + ); + + $messages = $validation->validate( + [ + 'creditCard' => 4601587377626131, + 'anotherCreditCard' => 4601587377626131, + ] + ); + + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate( + [ + 'creditCard' => 46015873776261312, + 'anotherCreditCard' => 4601587377626131, + ] + ); + + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['creditCard']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate( + [ + 'creditCard' => 46015873776261312, + 'anotherCreditCard' => 46015873776261312, + ] + ); + + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['creditCard']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['anotherCreditCard']; + $actual = $messages->offsetGet(1)->getMessage(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\CreditCard :: validate() - valid card + * numbers + * + * @param IntegrationTester $I + * + * @author Caio Almeida + * @since 2015-09-06 + */ + public function validationValidatorCreditCardValidateValidCreditCard(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\CreditCard - validate() - valid card"); + $providers = [ + 'amex' => '378282246310005', + 'visa' => '4012888888881881', + 'dinners' => '38520000023237', + 'mastercard' => '5105105105105100', + 'discover' => '6011000990139424', + ]; + + foreach ($providers as $number) { + $validation = new Validation(); + $validation->add('creditCard', new CreditCard()); + + $expected = 0; + $actual = count($validation->validate(['creditCard' => $number])); + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests Phalcon\Validation\Validator\CreditCard :: validate() - invalid + * card numbers + * + * @param IntegrationTester $I + * + * @author Caio Almeida + * @since 2015-09-06 + */ + public function validationValidatorCreditCardValidateInvalidCreditCard(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\CreditCard - validate() - invalid card"); + $cards = [ + '1203191201121221', + '102030102320', + '120120s201023', + '20323200003230', + '12010012', + ]; + + foreach ($cards as $number) { + $validation = new Validation(); + $validation->add('creditCard', new CreditCard()); + + $expected = Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'CreditCard', + '_message' => 'Field creditCard is not valid for a credit card number', + '_field' => 'creditCard', + '_code' => '0', + ] + ), + ], + ] + ); + + $actual = $validation->validate(['creditCard' => $number]); + $I->assertEquals($expected, $actual); + } + } +} diff --git a/tests/integration/Validation/Validator/Date/ConstructCest.php b/tests/integration/Validation/Validator/Date/ConstructCest.php new file mode 100644 index 00000000000..c466cef62a8 --- /dev/null +++ b/tests/integration/Validation/Validator/Date/ConstructCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Date; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Date; +use Phalcon\Validation\ValidatorInterface; +use IntegrationTester; + +class ConstructCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Date :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorDateConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Date - __construct()"); + $validator = new Date(); + $this->checkConstruct($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Date/GetOptionCest.php b/tests/integration/Validation/Validator/Date/GetOptionCest.php new file mode 100644 index 00000000000..18f6ca529c1 --- /dev/null +++ b/tests/integration/Validation/Validator/Date/GetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Date; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Date; +use IntegrationTester; + +class GetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Date :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorDateGetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Date - getOption()"); + $validator = new Date(); + $this->checkGetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Date/HasOptionCest.php b/tests/integration/Validation/Validator/Date/HasOptionCest.php new file mode 100644 index 00000000000..a718a3d11fa --- /dev/null +++ b/tests/integration/Validation/Validator/Date/HasOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Date; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Date; +use IntegrationTester; + +class HasOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Date :: hasOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorDateHasOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Date - hasOption()"); + $validator = new Date(['message' => 'This is a message']); + $this->checkHasOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Date/SetOptionCest.php b/tests/integration/Validation/Validator/Date/SetOptionCest.php new file mode 100644 index 00000000000..ebb50188e7a --- /dev/null +++ b/tests/integration/Validation/Validator/Date/SetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Date; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Date; +use IntegrationTester; + +class SetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Date :: setOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorDateSetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Date - setOption()"); + $validator = new Date(); + $this->checkSetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Date/ValidateCest.php b/tests/integration/Validation/Validator/Date/ValidateCest.php new file mode 100644 index 00000000000..cefb84b445a --- /dev/null +++ b/tests/integration/Validation/Validator/Date/ValidateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Date; + +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation\Validator\Date :: validate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorDateValidate(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Date - validate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/Validator/DateCest.php b/tests/integration/Validation/Validator/DateCest.php new file mode 100644 index 00000000000..f1caad861f1 --- /dev/null +++ b/tests/integration/Validation/Validator/DateCest.php @@ -0,0 +1,171 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use Phalcon\Validation; +use Phalcon\Validation\Validator\Date; +use IntegrationTester; + +class DateCest +{ + /** + * Tests date validator with single field + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorSingleField(IntegrationTester $I) + { + $validation = new Validation(); + $validation->add('date', new Date()); + + $messages = $validation->validate(['date' => '2016-06-05']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['date' => '2016-06-32']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests date validator with multiple field + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorMultipleField(IntegrationTester $I) + { + $validation = new Validation(); + $validationMessages = [ + 'date' => 'Date must be correct date format Y-m-d.', + 'anotherDate' => 'AnotherDate must be correct date format d-m-Y.', + ]; + + $validation->add( + ['date', 'anotherDate'], + new Date( + [ + 'format' => [ + 'date' => 'Y-m-d', + 'anotherDate' => 'd-m-Y', + ], + 'message' => $validationMessages, + ] + ) + ); + + $messages = $validation->validate(['date' => '2016-06-05', 'anotherDate' => '05-06-2017']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['date' => '2016-06-32', 'anotherDate' => '05-06-2017']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['date']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['date' => '2016-06-32', 'anotherDate' => '32-06-2017']); + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['date']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['anotherDate']; + $actual = $messages->offsetGet(1)->getMessage(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests detect valid dates + * + * @author Gustavo Verzola + * @since 2015-03-09 + */ + public function shouldDetectValidDates(IntegrationTester $I) + { + $dates = [ + ['2012-01-01', 'Y-m-d'], + ['2013-31-12', 'Y-d-m'], + ['01/01/2014', 'd/m/Y'], + ['12@12@2015', 'd@m@Y'], + ]; + + foreach ($dates as $item) { + $date = $item[0]; + $format = $item[1]; + $validation = new Validation(); + $validation->add('date', new Date(['format' => $format])); + + $messages = $validation->validate(['date' => $date]); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests detect invalid dates + * + * @author Gustavo Verzola + * @since 2015-03-09 + */ + public function shouldDetectInvalidDates(IntegrationTester $I) + { + $dates = [ + ['', 'Y-m-d'], + [false, 'Y-m-d'], + [null, 'Y-m-d'], + [new \stdClass, 'Y-m-d'], + ['2015-13-01', 'Y-m-d'], + ['2015-01-32', 'Y-m-d'], + ['2015-01', 'Y-m-d'], + ['2015-01-01', 'd-m-Y'], + ]; + + foreach ($dates as $item) { + $date = $item[0]; + $format = $item[1]; + $validation = new Validation(); + $validation->add('date', new Date(['format' => $format])); + + $expected = Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'Date', + '_message' => 'Field date is not a valid date', + '_field' => 'date', + '_code' => '0', + ] + ), + ], + ] + ); + + $actual = $validation->validate(['date' => $date]); + $I->assertEquals($expected, $actual); + } + } +} diff --git a/tests/integration/Validation/Validator/Digit/ConstructCest.php b/tests/integration/Validation/Validator/Digit/ConstructCest.php new file mode 100644 index 00000000000..bbb6da1683f --- /dev/null +++ b/tests/integration/Validation/Validator/Digit/ConstructCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Digit; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Digit; +use Phalcon\Validation\ValidatorInterface; +use IntegrationTester; + +class ConstructCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Digit :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorDigitConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Digit - __construct()"); + $validator = new Digit(); + $this->checkConstruct($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Digit/GetOptionCest.php b/tests/integration/Validation/Validator/Digit/GetOptionCest.php new file mode 100644 index 00000000000..03bbd1757a4 --- /dev/null +++ b/tests/integration/Validation/Validator/Digit/GetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Digit; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Digit; +use IntegrationTester; + +class GetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Digit :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorDigitGetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Digit - getOption()"); + $validator = new Digit(); + $this->checkGetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Digit/HasOptionCest.php b/tests/integration/Validation/Validator/Digit/HasOptionCest.php new file mode 100644 index 00000000000..219d81cb185 --- /dev/null +++ b/tests/integration/Validation/Validator/Digit/HasOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Digit; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Digit; +use IntegrationTester; + +class HasOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Digit :: hasOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorDigitHasOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Digit - hasOption()"); + $validator = new Digit(['message' => 'This is a message']); + $this->checkHasOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Digit/SetOptionCest.php b/tests/integration/Validation/Validator/Digit/SetOptionCest.php new file mode 100644 index 00000000000..4247b1ce477 --- /dev/null +++ b/tests/integration/Validation/Validator/Digit/SetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Digit; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Digit; +use IntegrationTester; + +class SetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Digit :: setOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorDigitSetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Digit - setOption()"); + $validator = new Digit(); + $this->checkSetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Digit/ValidateCest.php b/tests/integration/Validation/Validator/Digit/ValidateCest.php new file mode 100644 index 00000000000..c32bf392876 --- /dev/null +++ b/tests/integration/Validation/Validator/Digit/ValidateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Digit; + +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation\Validator\Digit :: validate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorDigitValidate(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Digit - validate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/Validator/DigitCest.php b/tests/integration/Validation/Validator/DigitCest.php new file mode 100644 index 00000000000..db705b08ca7 --- /dev/null +++ b/tests/integration/Validation/Validator/DigitCest.php @@ -0,0 +1,118 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use Phalcon\Validation; +use Phalcon\Validation\Validator\Digit; +use IntegrationTester; + +class DigitCest +{ + /** + * Tests digit validator with single field + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorSingleField(IntegrationTester $I) + { + $validation = new Validation(); + $validation->add('amount', new Digit()); + + $messages = $validation->validate(['amount' => '123']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['amount' => '123abc']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests digit validator with multiple field + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorMultipleField(IntegrationTester $I) + { + $validation = new Validation(); + $validationMessages = [ + 'amount' => 'Amount must be digit.', + 'price' => 'Price must be digit.', + ]; + $validation->add( + ['amount', 'price'], + new Digit( + [ + 'message' => $validationMessages, + ] + ) + ); + + $messages = $validation->validate(['amount' => '123', 'price' => '123']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['amount' => '123abc', 'price' => '123']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['amount']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['amount' => '123abc', 'price' => '123abc']); + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['amount']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['price']; + $actual = $messages->offsetGet(1)->getMessage(); + $I->assertEquals($expected, $actual); + } + + public function validationValidatorShouldValidateIntOrStringOfDigits(IntegrationTester $I) + { + $examples = [ + '123', + 123, + PHP_INT_MAX, + 0xFFFFFF, + 100000, + -100000, + 0, + "0", + "00001233422003400", + ]; + + foreach ($examples as $digit) { + $validation = new Validation(); + $validation->add('amount', new Digit()); + + $messages = $validation->validate(['amount' => $digit]); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + } +} diff --git a/tests/integration/Validation/Validator/Email/ConstructCest.php b/tests/integration/Validation/Validator/Email/ConstructCest.php new file mode 100644 index 00000000000..34311f83a9f --- /dev/null +++ b/tests/integration/Validation/Validator/Email/ConstructCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Email; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Email; +use Phalcon\Validation\ValidatorInterface; +use IntegrationTester; + +class ConstructCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Email :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorEmailConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Email - __construct()"); + $validator = new Email(); + $this->checkConstruct($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Email/GetOptionCest.php b/tests/integration/Validation/Validator/Email/GetOptionCest.php new file mode 100644 index 00000000000..0eeb0ac57a2 --- /dev/null +++ b/tests/integration/Validation/Validator/Email/GetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Email; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Email; +use IntegrationTester; + +class GetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Email :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorEmailGetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Email - getOption()"); + $validator = new Email(); + $this->checkGetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Email/HasOptionCest.php b/tests/integration/Validation/Validator/Email/HasOptionCest.php new file mode 100644 index 00000000000..9d47d78fbd2 --- /dev/null +++ b/tests/integration/Validation/Validator/Email/HasOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Email; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Email; +use IntegrationTester; + +class HasOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Email :: hasOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorEmailHasOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Email - hasOption()"); + $validator = new Email(['message' => 'This is a message']); + $this->checkHasOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Email/SetOptionCest.php b/tests/integration/Validation/Validator/Email/SetOptionCest.php new file mode 100644 index 00000000000..dc077428502 --- /dev/null +++ b/tests/integration/Validation/Validator/Email/SetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Email; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Email; +use IntegrationTester; + +class SetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Email :: setOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorEmailSetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Email - setOption()"); + $validator = new Email(); + $this->checkSetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Email/ValidateCest.php b/tests/integration/Validation/Validator/Email/ValidateCest.php new file mode 100644 index 00000000000..1a5a7c9432b --- /dev/null +++ b/tests/integration/Validation/Validator/Email/ValidateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Email; + +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation\Validator\Email :: validate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorEmailValidate(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Email - validate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/Validator/EmailCest.php b/tests/integration/Validation/Validator/EmailCest.php new file mode 100644 index 00000000000..e400a729319 --- /dev/null +++ b/tests/integration/Validation/Validator/EmailCest.php @@ -0,0 +1,152 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use Phalcon\Validation; +use Phalcon\Validation\Validator\Email; +use IntegrationTester; + +class EmailCest +{ + /** + * Tests email validator with single field + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorSingleField(IntegrationTester $I) + { + $validation = new Validation(); + + $validation->add('email', new Email()); + + $messages = $validation->validate(['email' => 'test@somemail.com']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['email' => 'rootlocalhost']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = Messages::__set_state( + [ + '_messages' => [ + 0 => Message::__set_state( + [ + '_type' => 'Email', + '_message' => 'Field email must be an email address', + '_field' => 'email', + '_code' => 0, + ] + ), + ], + ] + ); + $actual = $messages; + $I->assertEquals($expected, $actual); + } + + /** + * Tests email validator with multiple field + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorMultipleField(IntegrationTester $I) + { + $validation = new Validation(); + $validationMessages = [ + 'email' => 'Email must be correct email.', + 'anotherEmail' => 'AnotherEmail must be correct email.', + ]; + $validation->add( + [ + 'email', + 'anotherEmail', + ], + new Email( + [ + 'message' => $validationMessages, + ] + ) + ); + $messages = $validation->validate(['email' => 'test@somemail.com', 'anotherEmail' => 'test@somemail.com']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['email' => 'rootlocalhost', 'anotherEmail' => 'test@somemail.com']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['email']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['email' => 'rootlocalhost', 'anotherEmail' => 'rootlocalhost']); + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['email']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['anotherEmail']; + $actual = $messages->offsetGet(1)->getMessage(); + $I->assertEquals($expected, $actual); + } + + public function validationValidatorCustomMessage(IntegrationTester $I) + { + $validation = new Validation(); + + $validation->add( + 'email', + new Email( + [ + 'message' => 'The email is not valid', + ] + ) + ); + + $actual = $validation->validate([]); + $expected = Messages::__set_state( + [ + '_messages' => [ + 0 => Message::__set_state( + [ + '_type' => 'Email', + '_message' => 'The email is not valid', + '_field' => 'email', + '_code' => '0', + ] + ), + ], + ] + ); + $I->assertEquals($expected, $actual); + + $actual = $validation->validate(['email' => 'x=1']); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['email' => 'x.x@hotmail.com']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Validation/Validator/ExclusionIn/ConstructCest.php b/tests/integration/Validation/Validator/ExclusionIn/ConstructCest.php new file mode 100644 index 00000000000..47e9b2f45ac --- /dev/null +++ b/tests/integration/Validation/Validator/ExclusionIn/ConstructCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\ExclusionIn; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\ExclusionIn; +use Phalcon\Validation\ValidatorInterface; +use IntegrationTester; + +class ConstructCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\ExclusionIn :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorExclusionInConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\ExclusionIn - __construct()"); + $validator = new ExclusionIn(); + $this->checkConstruct($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/ExclusionIn/GetOptionCest.php b/tests/integration/Validation/Validator/ExclusionIn/GetOptionCest.php new file mode 100644 index 00000000000..246ad5324bf --- /dev/null +++ b/tests/integration/Validation/Validator/ExclusionIn/GetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\ExclusionIn; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\ExclusionIn; +use IntegrationTester; + +class GetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\ExclusionIn :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorExclusionInGetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\ExclusionIn - getOption()"); + $validator = new ExclusionIn(); + $this->checkGetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/ExclusionIn/HasOptionCest.php b/tests/integration/Validation/Validator/ExclusionIn/HasOptionCest.php new file mode 100644 index 00000000000..3cbebd93323 --- /dev/null +++ b/tests/integration/Validation/Validator/ExclusionIn/HasOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\ExclusionIn; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\ExclusionIn; +use IntegrationTester; + +class HasOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\ExclusionIn :: hasOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorExclusionInHasOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\ExclusionIn - hasOption()"); + $validator = new ExclusionIn(['message' => 'This is a message']); + $this->checkHasOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/ExclusionIn/SetOptionCest.php b/tests/integration/Validation/Validator/ExclusionIn/SetOptionCest.php new file mode 100644 index 00000000000..87e94c1bd63 --- /dev/null +++ b/tests/integration/Validation/Validator/ExclusionIn/SetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\ExclusionIn; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\ExclusionIn; +use IntegrationTester; + +class SetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\ExclusionIn :: setOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorExclusionInSetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\ExclusionIn - setOption()"); + $validator = new ExclusionIn(); + $this->checkSetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/ExclusionIn/ValidateCest.php b/tests/integration/Validation/Validator/ExclusionIn/ValidateCest.php new file mode 100644 index 00000000000..3a43fa1c629 --- /dev/null +++ b/tests/integration/Validation/Validator/ExclusionIn/ValidateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\ExclusionIn; + +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation\Validator\ExclusionIn :: validate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorExclusioninValidate(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\ExclusionIn - validate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/Validator/ExclusionInCest.php b/tests/integration/Validation/Validator/ExclusionInCest.php new file mode 100644 index 00000000000..e58190d544e --- /dev/null +++ b/tests/integration/Validation/Validator/ExclusionInCest.php @@ -0,0 +1,228 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use Phalcon\Validation; +use Phalcon\Validation\Validator\ExclusionIn; +use IntegrationTester; + +class ExclusionInCest +{ + /** + * Tests exclusion in validator with single field + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorSingleField(IntegrationTester $I) + { + $validation = new Validation(); + + $validation->add( + 'status', + new ExclusionIn( + [ + 'domain' => ['A', 'I'], + ] + ) + ); + + $messages = $validation->validate(['status' => 'A']); + $expected = Messages::__set_state( + [ + '_messages' => [ + 0 => Message::__set_state( + [ + '_type' => 'ExclusionIn', + '_message' => 'Field status must not be a part of list: A, I', + '_field' => 'status', + '_code' => 0, + ] + ), + ], + ] + ); + $actual = $messages; + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['status' => 'A']); + $actual = $messages; + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['status' => 'X']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exclusion in validator with multiple field and single domain + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorMultipleFieldSingleDomain(IntegrationTester $I) + { + $validation = new Validation(); + $validationMessages = [ + 'type' => 'Type cant be mechanic or cyborg.', + 'anotherType' => 'AnotherType cant by mechanic or cyborg.', + ]; + $validation->add( + [ + 'type', + 'anotherType', + ], + new ExclusionIn( + [ + 'domain' => ['mechanic', 'cyborg'], + 'message' => $validationMessages, + ] + ) + ); + $messages = $validation->validate(['type' => 'hydraulic', 'anotherType' => 'hydraulic']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['type' => 'cyborg', 'anotherType' => 'hydraulic']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['type']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['type' => 'cyborg', 'anotherType' => 'mechanic']); + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['type']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['anotherType']; + $actual = $messages->offsetGet(1)->getMessage(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests exclusion in validator with multiple field and multiple domain + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorMultipleFieldMultipleDomain(IntegrationTester $I) + { + $validation = new Validation(); + $validationMessages = [ + 'type' => 'Type cant be mechanic or cyborg.', + 'anotherType' => 'AnotherType cant by mechanic or hydraulic.', + ]; + $validation->add( + [ + 'type', + 'anotherType', + ], + new ExclusionIn( + [ + 'domain' => [ + 'type' => ['mechanic', 'cyborg'], + 'anotherType' => ['mechanic', 'hydraulic'], + ], + 'message' => $validationMessages, + ] + ) + ); + $messages = $validation->validate(['type' => 'hydraulic', 'anotherType' => 'cyborg']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['type' => 'cyborg', 'anotherType' => 'cyborg']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['type']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['type' => 'hydraulic', 'anotherType' => 'mechanic']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['anotherType']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['type' => 'cyborg', 'anotherType' => 'mechanic']); + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['type']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['anotherType']; + $actual = $messages->offsetGet(1)->getMessage(); + $I->assertEquals($expected, $actual); + } + + public function validationValidatorCustomMessage(IntegrationTester $I) + { + $validation = new Validation(); + + $validation->add( + 'status', + new ExclusionIn( + [ + 'message' => 'The status must not be A=Active or I=Inactive', + 'domain' => ['A', 'I'], + ] + ) + ); + + $messages = $validation->validate(['status' => 'A']); + $expected = Messages::__set_state( + [ + '_messages' => [ + 0 => Message::__set_state( + [ + '_type' => 'ExclusionIn', + '_message' => 'The status must not be A=Active or I=Inactive', + '_field' => 'status', + '_code' => '0', + ] + ), + ], + ] + ); + $actual = $messages; + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['status' => 'A']); + $actual = $messages; + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['status' => 'X']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Validation/Validator/File/ConstructCest.php b/tests/integration/Validation/Validator/File/ConstructCest.php new file mode 100644 index 00000000000..03e98307c90 --- /dev/null +++ b/tests/integration/Validation/Validator/File/ConstructCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\File; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\File; +use Phalcon\Validation\ValidatorInterface; +use IntegrationTester; + +class ConstructCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\File :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorFileConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\File - __construct()"); + $validator = new File(); + $this->checkConstruct($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/File/GetOptionCest.php b/tests/integration/Validation/Validator/File/GetOptionCest.php new file mode 100644 index 00000000000..0feb5519bf8 --- /dev/null +++ b/tests/integration/Validation/Validator/File/GetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\File; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\File; +use IntegrationTester; + +class GetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\File :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorFileGetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\File - getOption()"); + $validator = new File(); + $this->checkGetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/File/HasOptionCest.php b/tests/integration/Validation/Validator/File/HasOptionCest.php new file mode 100644 index 00000000000..be19bace080 --- /dev/null +++ b/tests/integration/Validation/Validator/File/HasOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\File; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\File; +use IntegrationTester; + +class HasOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\File :: hasOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorFileHasOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\File - hasOption()"); + $validator = new File(['message' => 'This is a message']); + $this->checkHasOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/File/IsAllowEmptyCest.php b/tests/integration/Validation/Validator/File/IsAllowEmptyCest.php new file mode 100644 index 00000000000..fe451c242d3 --- /dev/null +++ b/tests/integration/Validation/Validator/File/IsAllowEmptyCest.php @@ -0,0 +1,28 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\File; + +use IntegrationTester; + +class IsAllowEmptyCest +{ + /** + * Tests Phalcon\Validation\Validator\File :: isAllowEmpty() + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorFileIsAllowEmpty(IntegrationTester $I) + { + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/Validator/File/SetOptionCest.php b/tests/integration/Validation/Validator/File/SetOptionCest.php new file mode 100644 index 00000000000..021045ff5c6 --- /dev/null +++ b/tests/integration/Validation/Validator/File/SetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\File; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\File; +use IntegrationTester; + +class SetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\File :: setOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorFileSetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\File - setOption()"); + $validator = new File(); + $this->checkSetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/File/ValidateCest.php b/tests/integration/Validation/Validator/File/ValidateCest.php new file mode 100644 index 00000000000..3846cd66f5d --- /dev/null +++ b/tests/integration/Validation/Validator/File/ValidateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\File; + +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation\Validator\File :: validate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorFileValidate(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\File - validate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/Validator/GetOptionCest.php b/tests/integration/Validation/Validator/GetOptionCest.php new file mode 100644 index 00000000000..d3fe79a66c5 --- /dev/null +++ b/tests/integration/Validation/Validator/GetOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator; + +use IntegrationTester; + +class GetOptionCest +{ + /** + * Tests Phalcon\Validation\Validator :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorGetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator - getOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/Validator/HasOptionCest.php b/tests/integration/Validation/Validator/HasOptionCest.php new file mode 100644 index 00000000000..69d1c9a0a4f --- /dev/null +++ b/tests/integration/Validation/Validator/HasOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator; + +use IntegrationTester; + +class HasOptionCest +{ + /** + * Tests Phalcon\Validation\Validator :: hasOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorHasOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator - hasOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/Validator/Identical/ConstructCest.php b/tests/integration/Validation/Validator/Identical/ConstructCest.php new file mode 100644 index 00000000000..7aa5a4baa19 --- /dev/null +++ b/tests/integration/Validation/Validator/Identical/ConstructCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Identical; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Identical; +use Phalcon\Validation\ValidatorInterface; +use IntegrationTester; + +class ConstructCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Identical :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorIdenticalConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Identical - __construct()"); + $validator = new Identical(); + $this->checkConstruct($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Identical/GetOptionCest.php b/tests/integration/Validation/Validator/Identical/GetOptionCest.php new file mode 100644 index 00000000000..5f886b70fe6 --- /dev/null +++ b/tests/integration/Validation/Validator/Identical/GetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Identical; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Identical; +use IntegrationTester; + +class GetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Identical :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorIdenticalGetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Identical - getOption()"); + $validator = new Identical(); + $this->checkGetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Identical/HasOptionCest.php b/tests/integration/Validation/Validator/Identical/HasOptionCest.php new file mode 100644 index 00000000000..a96b7fbb595 --- /dev/null +++ b/tests/integration/Validation/Validator/Identical/HasOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Identical; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Identical; +use IntegrationTester; + +class HasOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Identical :: hasOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorIdenticalHasOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Identical - hasOption()"); + $validator = new Identical(['message' => 'This is a message']); + $this->checkHasOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Identical/SetOptionCest.php b/tests/integration/Validation/Validator/Identical/SetOptionCest.php new file mode 100644 index 00000000000..c22bcf35fa6 --- /dev/null +++ b/tests/integration/Validation/Validator/Identical/SetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Identical; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Identical; +use IntegrationTester; + +class SetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Identical :: setOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorIdenticalSetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Identical - setOption()"); + $validator = new Identical(); + $this->checkSetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Identical/ValidateCest.php b/tests/integration/Validation/Validator/Identical/ValidateCest.php new file mode 100644 index 00000000000..3b582918d90 --- /dev/null +++ b/tests/integration/Validation/Validator/Identical/ValidateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Identical; + +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation\Validator\Identical :: validate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorIdenticalValidate(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Identical - validate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/Validator/IdenticalCest.php b/tests/integration/Validation/Validator/IdenticalCest.php new file mode 100644 index 00000000000..9b058e0699a --- /dev/null +++ b/tests/integration/Validation/Validator/IdenticalCest.php @@ -0,0 +1,225 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use Phalcon\Validation; +use Phalcon\Validation\Validator\Identical; +use IntegrationTester; + +class IdenticalCest +{ + /** + * Tests identical validator with single field + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorSingleField(IntegrationTester $I) + { + $validation = new Validation(); + + $validation->add( + 'name', + new Identical( + [ + 'accepted' => 'SomeValue', + ] + ) + ); + + $messages = $validation->validate(['name' => 'SomeValue']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'SomeValue123']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = Messages::__set_state( + [ + '_messages' => [ + 0 => Message::__set_state( + [ + '_type' => 'Identical', + '_message' => 'Field name does not have the expected value', + '_field' => 'name', + '_code' => '0', + ] + ), + ], + ] + ); + $actual = $messages; + $I->assertEquals($expected, $actual); + } + + /** + * Tests identical validator with multiple field and single accepted + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorMultipleFieldSingleAccepted(IntegrationTester $I) + { + $validation = new Validation(); + $validationMessages = [ + 'name' => 'Name must be SomeValue.', + 'anotherName' => 'AnotherName must be SomeValue.', + ]; + $validation->add( + [ + 'name', + 'anotherName', + ], + new Identical( + [ + 'accepted' => 'SomeValue', + 'message' => $validationMessages, + ] + ) + ); + $messages = $validation->validate(['name' => 'SomeValue', 'anotherName' => 'SomeValue']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'SomeValue123', 'anotherName' => 'SomeValue']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['name']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'SomeValue123', 'anotherName' => 'SomeValue123']); + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['name']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['anotherName']; + $actual = $messages->offsetGet(1)->getMessage(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests identical validator with multiple field and multiple accepted + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorMultipleFieldMultipleAccepted(IntegrationTester $I) + { + $validation = new Validation(); + $validationMessages = [ + 'name' => 'Name must be SomeValue.', + 'anotherName' => 'AnotherName must be SomeAnotherValue.', + ]; + $validation->add( + [ + 'name', + 'anotherName', + ], + new Identical( + [ + 'accepted' => [ + 'name' => 'SomeValue', + 'anotherName' => 'SomeAnotherValue', + ], + 'message' => $validationMessages, + ] + ) + ); + + $messages = $validation->validate(['name' => 'SomeValue', 'anotherName' => 'SomeAnotherValue']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'SomeValue123', 'anotherName' => 'SomeAnotherValue']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['name']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'SomeValue', 'anotherName' => 'SomeAnotherValue123']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['anotherName']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'SomeValue123', 'anotherName' => 'SomeAnotherValue123']); + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['name']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['anotherName']; + $actual = $messages->offsetGet(1)->getMessage(); + $I->assertEquals($expected, $actual); + } + + public function validationValidatorCustomMessage(IntegrationTester $I) + { + $validation = new Validation(); + + $validation->add( + 'name', + new Validation\Validator\Identical( + [ + 'accepted' => 'Peter', + 'message' => 'The name must be peter', + ] + ) + ); + + $messages = $validation->validate([]); + $expected = Messages::__set_state( + [ + '_messages' => [ + 0 => Message::__set_state( + [ + '_type' => 'Identical', + '_message' => 'The name must be peter', + '_field' => 'name', + '_code' => '0', + ] + ), + ], + ] + ); + $actual = $messages; + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'Peter']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Validation/Validator/InclusionIn/ConstructCest.php b/tests/integration/Validation/Validator/InclusionIn/ConstructCest.php new file mode 100644 index 00000000000..3c7d3550ef2 --- /dev/null +++ b/tests/integration/Validation/Validator/InclusionIn/ConstructCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\InclusionIn; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\InclusionIn; +use Phalcon\Validation\ValidatorInterface; +use IntegrationTester; + +class ConstructCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\InclusionIn :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorInclusionInConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\InclusionIn - __construct()"); + $validator = new InclusionIn(); + $this->checkConstruct($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/InclusionIn/GetOptionCest.php b/tests/integration/Validation/Validator/InclusionIn/GetOptionCest.php new file mode 100644 index 00000000000..3bc5a6d5163 --- /dev/null +++ b/tests/integration/Validation/Validator/InclusionIn/GetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\InclusionIn; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\InclusionIn; +use IntegrationTester; + +class GetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\InclusionIn :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorInclusionInGetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\InclusionIn - getOption()"); + $validator = new InclusionIn(); + $this->checkGetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/InclusionIn/HasOptionCest.php b/tests/integration/Validation/Validator/InclusionIn/HasOptionCest.php new file mode 100644 index 00000000000..bcd84085d96 --- /dev/null +++ b/tests/integration/Validation/Validator/InclusionIn/HasOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\InclusionIn; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\InclusionIn; +use IntegrationTester; + +class HasOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\InclusionIn :: hasOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorInclusionInHasOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\InclusionIn - hasOption()"); + $validator = new InclusionIn(['message' => 'This is a message']); + $this->checkHasOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/InclusionIn/SetOptionCest.php b/tests/integration/Validation/Validator/InclusionIn/SetOptionCest.php new file mode 100644 index 00000000000..9e4b82a9e68 --- /dev/null +++ b/tests/integration/Validation/Validator/InclusionIn/SetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\InclusionIn; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\InclusionIn; +use IntegrationTester; + +class SetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\InclusionIn :: setOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorInclusionInSetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\InclusionIn - setOption()"); + $validator = new InclusionIn(); + $this->checkSetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/InclusionIn/ValidateCest.php b/tests/integration/Validation/Validator/InclusionIn/ValidateCest.php new file mode 100644 index 00000000000..b830dc216e5 --- /dev/null +++ b/tests/integration/Validation/Validator/InclusionIn/ValidateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\InclusionIn; + +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation\Validator\InclusionIn :: validate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorInclusioninValidate(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\InclusionIn - validate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/Validator/InclusionInCest.php b/tests/integration/Validation/Validator/InclusionInCest.php new file mode 100644 index 00000000000..94ab70db13a --- /dev/null +++ b/tests/integration/Validation/Validator/InclusionInCest.php @@ -0,0 +1,229 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use Phalcon\Validation; +use Phalcon\Validation\Validator\InclusionIn; +use IntegrationTester; + +class InclusionInCest +{ + /** + * Tests inclusion in validator with single field + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorSingleField(IntegrationTester $I) + { + $validation = new Validation(); + + $validation->add( + 'status', + new InclusionIn( + [ + 'domain' => ['A', 'I'], + ] + ) + ); + + $messages = $validation->validate([]); + $expected = Messages::__set_state( + [ + '_messages' => [ + 0 => Message::__set_state( + [ + '_type' => 'InclusionIn', + '_message' => 'Field status must be a part of list: A, I', + '_field' => 'status', + '_code' => 0, + ] + ), + ], + ] + ); + $actual = $messages; + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['status' => 'X']); + $actual = $messages; + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['status' => 'A']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests inclusion in validator with single multiple field and single domain + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorMultipleFieldSingleDomain(IntegrationTester $I) + { + $validation = new Validation(); + $validationMessages = [ + 'type' => 'Type must be mechanical or cyborg.', + 'anotherType' => 'AnotherType must be mechanical or cyborg.', + ]; + $validation->add( + [ + 'type', + 'anotherType', + ], + new InclusionIn( + [ + 'domain' => ['mechanical', 'cyborg'], + 'message' => $validationMessages, + ] + ) + ); + $messages = $validation->validate(['type' => 'cyborg', 'anotherType' => 'cyborg']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['type' => 'hydraulic', 'anotherType' => 'cyborg']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['type']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['type' => 'hydraulic', 'anotherType' => 'hydraulic']); + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['type']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['anotherType']; + $actual = $messages->offsetGet(1)->getMessage(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests inclusion in validator with single multiple field and domain + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorMultipleFieldMultipleDomain(IntegrationTester $I) + { + $validation = new Validation(); + $validationMessages = [ + 'type' => 'Type must be mechanic or cyborg.', + 'anotherType' => 'AnotherType must be mechanic or hydraulic.', + ]; + $validation->add( + [ + 'type', + 'anotherType', + ], + new InclusionIn( + [ + 'domain' => [ + 'type' => ['cyborg', 'mechanic'], + 'anotherType' => ['mechanic', 'hydraulic'], + ], + 'message' => $validationMessages, + ] + ) + ); + + $messages = $validation->validate(['type' => 'cyborg', 'anotherType' => 'mechanic']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['type' => 'hydraulic', 'anotherType' => 'mechanic']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['type']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['type' => 'mechanic', 'anotherType' => 'cyborg']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['anotherType']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['type' => 'hydraulic', 'anotherType' => 'cyborg']); + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['type']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['anotherType']; + $actual = $messages->offsetGet(1)->getMessage(); + $I->assertEquals($expected, $actual); + } + + public function validationValidatorCustomMessage(IntegrationTester $I) + { + $validation = new Validation(); + + $validation->add( + 'status', + new InclusionIn( + [ + 'message' => 'The status must be A=Active or I=Inactive', + 'domain' => ['A', 'I'], + ] + ) + ); + + $messages = $validation->validate([]); + $expected = Messages::__set_state( + [ + '_messages' => [ + 0 => Message::__set_state( + [ + '_type' => 'InclusionIn', + '_message' => 'The status must be A=Active or I=Inactive', + '_field' => 'status', + '_code' => '0', + ] + ), + ], + ] + ); + $actual = $messages; + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['status' => 'x=1']); + $actual = $messages; + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['status' => 'A']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Validation/Validator/Numericality/ConstructCest.php b/tests/integration/Validation/Validator/Numericality/ConstructCest.php new file mode 100644 index 00000000000..dad5e308d14 --- /dev/null +++ b/tests/integration/Validation/Validator/Numericality/ConstructCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Numericality; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Numericality; +use Phalcon\Validation\ValidatorInterface; +use IntegrationTester; + +class ConstructCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Numericality :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorNumericalityConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Numericality - __construct()"); + $validator = new Numericality(); + $this->checkConstruct($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Numericality/GetOptionCest.php b/tests/integration/Validation/Validator/Numericality/GetOptionCest.php new file mode 100644 index 00000000000..afb0347ead5 --- /dev/null +++ b/tests/integration/Validation/Validator/Numericality/GetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Numericality; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Numericality; +use IntegrationTester; + +class GetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Numericality :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorNumericalityGetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Numericality - getOption()"); + $validator = new Numericality(); + $this->checkGetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Numericality/HasOptionCest.php b/tests/integration/Validation/Validator/Numericality/HasOptionCest.php new file mode 100644 index 00000000000..3ccaf0c8ca6 --- /dev/null +++ b/tests/integration/Validation/Validator/Numericality/HasOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Numericality; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Numericality; +use IntegrationTester; + +class HasOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Numericality :: hasOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorNumericalityHasOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Numericality - hasOption()"); + $validator = new Numericality(['message' => 'This is a message']); + $this->checkHasOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Numericality/SetOptionCest.php b/tests/integration/Validation/Validator/Numericality/SetOptionCest.php new file mode 100644 index 00000000000..ae23db913da --- /dev/null +++ b/tests/integration/Validation/Validator/Numericality/SetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Numericality; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Numericality; +use IntegrationTester; + +class SetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Numericality :: setOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorNumericalitySetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Numericality - setOption()"); + $validator = new Numericality(); + $this->checkSetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Numericality/ValidateCest.php b/tests/integration/Validation/Validator/Numericality/ValidateCest.php new file mode 100644 index 00000000000..3232374ab9a --- /dev/null +++ b/tests/integration/Validation/Validator/Numericality/ValidateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Numericality; + +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation\Validator\Numericality :: validate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorNumericalityValidate(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Numericality - validate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/Validator/NumericalityCest.php b/tests/integration/Validation/Validator/NumericalityCest.php new file mode 100644 index 00000000000..ac9fddeea5a --- /dev/null +++ b/tests/integration/Validation/Validator/NumericalityCest.php @@ -0,0 +1,166 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use Phalcon\Validation; +use Phalcon\Validation\Validator\Numericality; +use IntegrationTester; + +class NumericalityCest +{ + /** + * Tests numericality validator with single field + * + * @author Wojciech Ślawski + * @author Andrey Izman + * @since 2016-06-05 + */ + public function validationValidatorSingleField(IntegrationTester $I) + { + $validation = new Validation(); + $validation->add('amount', new Numericality()); + $messages = $validation->validate(['amount' => 123]); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['amount' => 123.12]); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['amount' => '123abc']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['amount' => '123.12e3']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests numericality validator with multiple field + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorMultipleField(IntegrationTester $I) + { + $validation = new Validation(); + $validationMessages = [ + 'amount' => 'Amount must be digit.', + 'price' => 'Price must be digit.', + ]; + $validation->add( + [ + 'amount', + 'price', + ], + new Numericality( + [ + 'message' => $validationMessages, + ] + ) + ); + $messages = $validation->validate(['amount' => 123, 'price' => 123]); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['amount' => '123abc', 'price' => 123]); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['amount']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['amount' => '123abc', 'price' => '123abc']); + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['amount']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['price']; + $actual = $messages->offsetGet(1)->getMessage(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests numericality validator for custom locales + * + * @link https://github.com/phalcon/cphalcon/issues/13450 + * + * @author Andrey Izman + * @since 2018-08-08 + */ + public function validationValidatorLocales(IntegrationTester $I) + { + $validation = new Validation(); + $validation->add('amount', new Numericality()); + + // get default locale + $locale = setlocale(LC_ALL, 0); + $this->setTestLocale('en_US.UTF8'); + + $messages = $validation->validate(['amount' => 123.12]); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['amount' => '123.12']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['amount' => '123,12']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $this->setTestLocale('fr_FR.UTF8'); + + $messages = $validation->validate(['amount' => 123.12]); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + // revert back locale + $this->setTestLocale($locale); + } + + /** + * Set locale + * + * @param string $locale + * + * @return string + * + * @author Andrey Izman + * @since 2018-08-08 + */ + protected function setTestLocale($locale) + { + putenv('LC_ALL=' . $locale); + putenv('LANG=' . $locale); + putenv('LANGUAGE=' . $locale); + return setlocale(LC_ALL, $locale); + } +} diff --git a/tests/integration/Validation/Validator/PresenceOf/ConstructCest.php b/tests/integration/Validation/Validator/PresenceOf/ConstructCest.php new file mode 100644 index 00000000000..4ded291484b --- /dev/null +++ b/tests/integration/Validation/Validator/PresenceOf/ConstructCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\PresenceOf; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\PresenceOf; +use Phalcon\Validation\ValidatorInterface; +use IntegrationTester; + +class ConstructCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\PresenceOf :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorPresenceOfConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\PresenceOf - __construct()"); + $validator = new PresenceOf(); + $this->checkConstruct($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/PresenceOf/GetOptionCest.php b/tests/integration/Validation/Validator/PresenceOf/GetOptionCest.php new file mode 100644 index 00000000000..93817092366 --- /dev/null +++ b/tests/integration/Validation/Validator/PresenceOf/GetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\PresenceOf; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\PresenceOf; +use IntegrationTester; + +class GetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\PresenceOf :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorPresenceOfGetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\PresenceOf - getOption()"); + $validator = new PresenceOf(); + $this->checkGetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/PresenceOf/HasOptionCest.php b/tests/integration/Validation/Validator/PresenceOf/HasOptionCest.php new file mode 100644 index 00000000000..98922648030 --- /dev/null +++ b/tests/integration/Validation/Validator/PresenceOf/HasOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\PresenceOf; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\PresenceOf; +use IntegrationTester; + +class HasOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\PresenceOf :: hasOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorPresenceOfHasOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\PresenceOf - hasOption()"); + $validator = new PresenceOf(['message' => 'This is a message']); + $this->checkHasOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/PresenceOf/SetOptionCest.php b/tests/integration/Validation/Validator/PresenceOf/SetOptionCest.php new file mode 100644 index 00000000000..d9f7f037d8c --- /dev/null +++ b/tests/integration/Validation/Validator/PresenceOf/SetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\PresenceOf; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\PresenceOf; +use IntegrationTester; + +class SetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\PresenceOf :: setOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorPresenceOfSetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\PresenceOf - setOption()"); + $validator = new PresenceOf(); + $this->checkSetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/PresenceOf/ValidateCest.php b/tests/integration/Validation/Validator/PresenceOf/ValidateCest.php new file mode 100644 index 00000000000..4eb039d0d23 --- /dev/null +++ b/tests/integration/Validation/Validator/PresenceOf/ValidateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\PresenceOf; + +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation\Validator\PresenceOf :: validate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorPresenceofValidate(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\PresenceOf - validate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/Validator/PresenceOfCest.php b/tests/integration/Validation/Validator/PresenceOfCest.php new file mode 100644 index 00000000000..e2dbae76f4c --- /dev/null +++ b/tests/integration/Validation/Validator/PresenceOfCest.php @@ -0,0 +1,233 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use Phalcon\Validation; +use Phalcon\Validation\Validator\PresenceOf; +use IntegrationTester; + +class PresenceOfCest +{ + /** + * Tests presence of validator with single field + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function shouldValidateSingleField(IntegrationTester $I) + { + $validation = new Validation(); + $validation->add('name', new PresenceOf()); + + $messages = $validation->validate(['name' => 'SomeValue']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => '']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests presence of validator with multiple field + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function shouldValidateMultipleField(IntegrationTester $I) + { + $validation = new Validation(); + $validationMessages = [ + 'name' => 'Name cant be empty.', + 'type' => 'Type cant be empty.', + ]; + $validation->add( + ['name', 'type'], + new PresenceOf( + [ + 'message' => $validationMessages, + ] + ) + ); + + $messages = $validation->validate(['name' => 'SomeValue', 'type' => 'SomeValue']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => '', 'type' => 'SomeValue']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['name']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'PresenceOf', + '_message' => 'Name cant be empty.', + '_field' => 'name', + '_code' => '0', + ] + ), + ], + ] + ); + $actual = $messages; + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => '', 'type' => '']); + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['name']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['type']; + $actual = $messages->offsetGet(1)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'PresenceOf', + '_message' => 'Name cant be empty.', + '_field' => 'name', + '_code' => '0', + ] + ), + Message::__set_state( + [ + '_type' => 'PresenceOf', + '_message' => 'Type cant be empty.', + '_field' => 'type', + '_code' => '0', + ] + ), + ], + ] + ); + $actual = $messages; + $I->assertEquals($expected, $actual); + } + + /** + * Tests mixed fields + * + * @author Phalcon Team + * @since 2013-03-01 + */ + public function shouldValidateMixedFields(IntegrationTester $I) + { + $validation = new Validation(); + + $validation + ->add('name', new PresenceOf(['message' => 'The name is required'])) + ->add('email', new PresenceOf(['message' => 'The email is required'])) + ->add('login', new PresenceOf(['message' => 'The login is required'])) + ; + + $actual = $validation->validate([]); + + $expected = Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'PresenceOf', + '_message' => 'The name is required', + '_field' => 'name', + '_code' => '0', + ] + ), + Message::__set_state( + [ + '_type' => 'PresenceOf', + '_message' => 'The email is required', + '_field' => 'email', + '_code' => '0', + ] + ), + Message::__set_state( + [ + '_type' => 'PresenceOf', + '_message' => 'The login is required', + '_field' => 'login', + '_code' => '0', + ] + ), + ], + ] + ); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests cancel validation on first fail + * + * @author Phalcon Team + * @since 2013-03-01 + */ + public function shouldCancelOnFail(IntegrationTester $I) + { + $validation = new Validation(); + + $validation + ->add('name', new PresenceOf(['message' => 'The name is required'])) + ->add('email', new PresenceOf([ + 'message' => 'The email is required', + 'cancelOnFail' => true, + ])) + ->add('login', new PresenceOf(['message' => 'The login is required'])) + ; + + $actual = $validation->validate([]); + + $expected = Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'PresenceOf', + '_message' => 'The name is required', + '_field' => 'name', + '_code' => '0', + ] + ), + Message::__set_state( + [ + '_type' => 'PresenceOf', + '_message' => 'The email is required', + '_field' => 'email', + '_code' => '0', + ] + ), + ], + ] + ); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Validation/Validator/Regex/ConstructCest.php b/tests/integration/Validation/Validator/Regex/ConstructCest.php new file mode 100644 index 00000000000..9efabe0b04f --- /dev/null +++ b/tests/integration/Validation/Validator/Regex/ConstructCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Regex; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Regex; +use Phalcon\Validation\ValidatorInterface; +use IntegrationTester; + +class ConstructCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Regex :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorRegexConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Regex - __construct()"); + $validator = new Regex(); + $this->checkConstruct($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Regex/GetOptionCest.php b/tests/integration/Validation/Validator/Regex/GetOptionCest.php new file mode 100644 index 00000000000..8e2762c6371 --- /dev/null +++ b/tests/integration/Validation/Validator/Regex/GetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Regex; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Regex; +use IntegrationTester; + +class GetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Regex :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorRegexGetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Regex - getOption()"); + $validator = new Regex(); + $this->checkGetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Regex/HasOptionCest.php b/tests/integration/Validation/Validator/Regex/HasOptionCest.php new file mode 100644 index 00000000000..9344966426e --- /dev/null +++ b/tests/integration/Validation/Validator/Regex/HasOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Regex; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Regex; +use IntegrationTester; + +class HasOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Regex :: hasOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorRegexHasOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Regex - hasOption()"); + $validator = new Regex(['message' => 'This is a message']); + $this->checkHasOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Regex/SetOptionCest.php b/tests/integration/Validation/Validator/Regex/SetOptionCest.php new file mode 100644 index 00000000000..f8e13999809 --- /dev/null +++ b/tests/integration/Validation/Validator/Regex/SetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Regex; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Regex; +use IntegrationTester; + +class SetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Regex :: setOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorRegexSetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Regex - setOption()"); + $validator = new Regex(); + $this->checkSetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Regex/ValidateCest.php b/tests/integration/Validation/Validator/Regex/ValidateCest.php new file mode 100644 index 00000000000..ca97f3675c3 --- /dev/null +++ b/tests/integration/Validation/Validator/Regex/ValidateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Regex; + +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation\Validator\Regex :: validate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorRegexValidate(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Regex - validate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/Validator/RegexCest.php b/tests/integration/Validation/Validator/RegexCest.php new file mode 100644 index 00000000000..ef5704ce4ab --- /dev/null +++ b/tests/integration/Validation/Validator/RegexCest.php @@ -0,0 +1,220 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use Phalcon\Validation; +use Phalcon\Validation\Validator\Regex; +use IntegrationTester; + +class RegexCest +{ + /** + * Tests regex validator with single field + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorSingleField(IntegrationTester $I) + { + $validation = new Validation(); + + $validation->add( + 'car_plate', + new Regex( + [ + 'pattern' => '/[A-Z]{3}\-[0-9]{3}/', + ] + ) + ); + + $messages = $validation->validate([]); + $expected = Messages::__set_state( + [ + '_messages' => [ + 0 => Message::__set_state( + [ + '_type' => 'Regex', + '_message' => 'Field car_plate does not match the required format', + '_field' => 'car_plate', + '_code' => '0', + ] + ), + ], + ] + ); + $actual = $messages; + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['car_plate' => 'XYZ-123']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests regex validator with multiple field and single pattern + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorMultipleFieldSinglePattern(IntegrationTester $I) + { + $validation = new Validation(); + $validationMessages = [ + 'name' => 'Name can be only lowercase letters.', + 'type' => 'Type can be only lowercase letters.', + ]; + $validation->add( + [ + 'name', + 'type', + ], + new Regex( + [ + 'pattern' => '/^[a-z]+$/', + 'message' => $validationMessages, + ] + ) + ); + $messages = $validation->validate(['name' => 'somevalue', 'type' => 'somevalue']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'SomeValue', 'type' => 'somevalue']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['name']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'SomeValue', 'type' => 'SomeValue']); + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['name']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['type']; + $actual = $messages->offsetGet(1)->getMessage(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests regex validator with multiple field and pattern + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorMultipleFieldMultiplePattern(IntegrationTester $I) + { + $validation = new Validation(); + $validationMessages = [ + 'name' => 'Name can be only lowercase letters.', + 'type' => 'Type can be only uppercase letters.', + ]; + $validation->add( + [ + 'name', + 'type', + ], + new Regex( + [ + 'pattern' => [ + 'name' => '/^[a-z]+$/', + 'type' => '/^[A-Z]+$/', + ], + 'message' => $validationMessages, + ] + ) + ); + $messages = $validation->validate(['name' => 'somevalue', 'type' => 'SOMEVALUE']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'SomeValue', 'type' => 'SOMEVALUE']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['name']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'somevalue', 'type' => 'somevalue']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['type']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'SomeValue', 'type' => 'SomeValue']); + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['name']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['type']; + $actual = $messages->offsetGet(1)->getMessage(); + $I->assertEquals($expected, $actual); + } + + public function validationValidatorCustomMessage(IntegrationTester $I) + { + $validation = new Validation(); + + $validation->add( + 'car_plate', + new Validation\Validator\Regex( + [ + 'pattern' => '/[A-Z]{3}\-[0-9]{3}/', + 'message' => 'The car plate is not valid', + ] + ) + ); + + $messages = $validation->validate([]); + $expected = Messages::__set_state( + [ + '_messages' => [ + 0 => Message::__set_state( + [ + '_type' => 'Regex', + '_message' => 'The car plate is not valid', + '_field' => 'car_plate', + '_code' => '0', + ] + ), + ], + ] + ); + $actual = $messages; + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['car_plate' => 'XYZ-123']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Validation/Validator/SetOptionCest.php b/tests/integration/Validation/Validator/SetOptionCest.php new file mode 100644 index 00000000000..77aa0e4f1ee --- /dev/null +++ b/tests/integration/Validation/Validator/SetOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator; + +use IntegrationTester; + +class SetOptionCest +{ + /** + * Tests Phalcon\Validation\Validator :: setOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorSetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator - setOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/Validator/StringLength/ConstructCest.php b/tests/integration/Validation/Validator/StringLength/ConstructCest.php new file mode 100644 index 00000000000..30870ea6ec4 --- /dev/null +++ b/tests/integration/Validation/Validator/StringLength/ConstructCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\StringLength; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\StringLength; +use Phalcon\Validation\ValidatorInterface; +use IntegrationTester; + +class ConstructCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\StringLength :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorStringLengthConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\StringLength - __construct()"); + $validator = new StringLength(); + $this->checkConstruct($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/StringLength/GetOptionCest.php b/tests/integration/Validation/Validator/StringLength/GetOptionCest.php new file mode 100644 index 00000000000..ee2c070be8f --- /dev/null +++ b/tests/integration/Validation/Validator/StringLength/GetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\StringLength; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\StringLength; +use IntegrationTester; + +class GetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\StringLength :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorStringLengthGetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\StringLength - getOption()"); + $validator = new StringLength(); + $this->checkGetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/StringLength/HasOptionCest.php b/tests/integration/Validation/Validator/StringLength/HasOptionCest.php new file mode 100644 index 00000000000..b2c09c97d90 --- /dev/null +++ b/tests/integration/Validation/Validator/StringLength/HasOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\StringLength; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\StringLength; +use IntegrationTester; + +class HasOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\StringLength :: hasOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorStringLengthHasOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\StringLength - hasOption()"); + $validator = new StringLength(['message' => 'This is a message']); + $this->checkHasOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/StringLength/SetOptionCest.php b/tests/integration/Validation/Validator/StringLength/SetOptionCest.php new file mode 100644 index 00000000000..cfb6c2a7471 --- /dev/null +++ b/tests/integration/Validation/Validator/StringLength/SetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\StringLength; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\StringLength; +use IntegrationTester; + +class SetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\StringLength :: setOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorStringLengthSetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\StringLength - setOption()"); + $validator = new StringLength(); + $this->checkSetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/StringLength/ValidateCest.php b/tests/integration/Validation/Validator/StringLength/ValidateCest.php new file mode 100644 index 00000000000..cab9e1bf74f --- /dev/null +++ b/tests/integration/Validation/Validator/StringLength/ValidateCest.php @@ -0,0 +1,363 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\StringLength; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use Phalcon\Validation; +use Phalcon\Validation\Validator\StringLength; +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation\Validator\StringLength :: validate() - single + * field + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorStringLengthValidateSingleField(IntegrationTester $I) + { + $I->wantToTest('Validation\Validator\StringLength :: validate() - single field'); + $validation = new Validation(); + $validation->add( + 'name', + new StringLength( + [ + 'min' => 3, + 'max' => 9, + ] + ) + ); + + $messages = $validation->validate(['name' => 'SomeValue']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'SomeValue123']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\StringLength :: validate() - minimum + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2013-03-09 + */ + public function validationValidatorStringLengthValidateMinimum(IntegrationTester $I) + { + $I->wantToTest('Validation\Validator\StringLength :: validate() - minimum'); + $validation = new Validation(); + $validation->add('name', new StringLength(['min' => 3])); + + $messages = $validation->validate(['name' => 'Something']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'TooShort', + '_message' => 'Field name must be at least 3 characters long', + '_field' => 'name', + '_code' => '0', + ] + ), + ], + ] + ); + + $messages = $validation->validate(['name' => 'So']); + $actual = $messages; + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\StringLength :: validate() - minimum + * custom message + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2013-03-09 + */ + public function validationValidatorStringLengthValidateMinimumWithCustomMessage(IntegrationTester $I) + { + $I->wantToTest('Validation\Validator\StringLength :: validate() - minimum custom message'); + $validation = new Validation(); + $validation->add( + 'message', + new StringLength(['min' => 3, 'messageMinimum' => 'The message is too short']) + ); + + $messages = $validation->validate(['message' => 'Something']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'TooShort', + '_message' => 'The message is too short', + '_field' => 'message', + '_code' => '0', + ] + ), + ], + ] + ); + + $messages = $validation->validate(['message' => 'So']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\StringLength :: validate() - maximum + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2013-03-09 + */ + public function validationValidatorStringLengthValidateMaximum(IntegrationTester $I) + { + $I->wantToTest('Validation\Validator\StringLength :: validate() - maximum'); + $validation = new Validation(); + $validation->add('name', new StringLength(['max' => 4])); + + $messages = $validation->validate(['name' => 'John']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'TooLong', + '_message' => 'Field name must not exceed 4 characters long', + '_field' => 'name', + '_code' => '0', + ] + ), + ], + ] + ); + + $messages = $validation->validate(['name' => 'Johannes']); + $actual = $messages; + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\StringLength :: validate() - maximum + * custom message + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2013-03-09 + */ + public function validationValidatorStringLengthValidateMaximumWithCustomMessage(IntegrationTester $I) + { + $I->wantToTest('Validation\Validator\StringLength :: validate() - maximum custom message'); + $validation = new Validation(); + $validation->add( + 'message', + new StringLength(['max' => 4, 'messageMaximum' => 'The message is too long']) + ); + + $messages = $validation->validate(['message' => 'Pet']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = Messages::__set_state( + [ + '_messages' => [ + Message::__set_state( + [ + '_type' => 'TooLong', + '_message' => 'The message is too long', + '_field' => 'message', + '_code' => '0', + ] + ), + ], + ] + ); + + $messages = $validation->validate(['message' => 'Validation']); + $actual = $messages; + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\StringLength :: validate() + * multiple field and single min, max + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorStringLengthValidateMultipleFieldSingleMinMax(IntegrationTester $I) + { + $I->wantToTest('Validation\Validator\StringLength :: validate() - multiple field and single min, max'); + $validation = new Validation(); + $validationMinimumMessages = [ + 'name' => 'Name length must be minimum 0.', + 'type' => 'Type length must be minimum 0.', + ]; + $validationMaximumMessages = [ + 'name' => 'Name length must be maximum 9.', + 'type' => 'Type length must be maximum 9.', + ]; + $validation->add( + [ + 'name', + 'type', + ], + new StringLength( + [ + 'min' => 0, + 'max' => 9, + 'messageMinimum' => $validationMinimumMessages, + 'messageMaximum' => $validationMaximumMessages, + ] + ) + ); + + $messages = $validation->validate(['name' => 'SomeValue', 'type' => 'SomeValue']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'SomeValue123', 'type' => 'SomeValue']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMaximumMessages['name']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'SomeValue123', 'type' => 'SomeValue123']); + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMaximumMessages['name']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = $validationMaximumMessages['type']; + $actual = $messages->offsetGet(1)->getMessage(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\StringLength :: validate() + * multiple field and min, max + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorStringLengthValidateMultipleFieldMultipleMinMax(IntegrationTester $I) + { + $I->wantToTest('Validation\Validator\StringLength :: validate() - multiple field and min, max'); + $validation = new Validation(); + $validationMinimumMessages = [ + 'name' => 'Name length must be minimum 0.', + 'type' => 'Type length must be minimum 0.', + ]; + $validationMaximumMessages = [ + 'name' => 'Name length must be maximum 9.', + 'type' => 'Type length must be maximum 4.', + ]; + $validation->add( + [ + 'name', + 'type', + ], + new StringLength( + [ + 'min' => [ + 'name' => 0, + 'type' => 0, + ], + 'max' => [ + 'name' => 9, + 'type' => 4, + ], + 'messageMinimum' => $validationMinimumMessages, + 'messageMaximum' => $validationMaximumMessages, + ] + ) + ); + + $messages = $validation->validate(['name' => 'SomeValue', 'type' => 'Some']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'SomeValue123', 'type' => 'Some']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMaximumMessages['name']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'SomeValue', 'type' => 'SomeValue']); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMaximumMessages['type']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['name' => 'SomeValue123', 'type' => 'SomeValue']); + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMaximumMessages['name']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = $validationMaximumMessages['type']; + $actual = $messages->offsetGet(1)->getMessage(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Validation/Validator/Uniqueness/ConstructCest.php b/tests/integration/Validation/Validator/Uniqueness/ConstructCest.php new file mode 100644 index 00000000000..66a477619ae --- /dev/null +++ b/tests/integration/Validation/Validator/Uniqueness/ConstructCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Uniqueness; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Uniqueness; +use Phalcon\Validation\ValidatorInterface; +use IntegrationTester; + +class ConstructCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Uniqueness :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorUniquenessConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Uniqueness - __construct()"); + $validator = new Uniqueness(); + $this->checkConstruct($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Uniqueness/GetOptionCest.php b/tests/integration/Validation/Validator/Uniqueness/GetOptionCest.php new file mode 100644 index 00000000000..5933ee20dd7 --- /dev/null +++ b/tests/integration/Validation/Validator/Uniqueness/GetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Uniqueness; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Uniqueness; +use IntegrationTester; + +class GetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Uniqueness :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorUniquenessGetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Uniqueness - getOption()"); + $validator = new Uniqueness(); + $this->checkGetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Uniqueness/HasOptionCest.php b/tests/integration/Validation/Validator/Uniqueness/HasOptionCest.php new file mode 100644 index 00000000000..9ae82ff0617 --- /dev/null +++ b/tests/integration/Validation/Validator/Uniqueness/HasOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Uniqueness; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Uniqueness; +use IntegrationTester; + +class HasOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Uniqueness :: hasOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorUniquenessHasOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Uniqueness - hasOption()"); + $validator = new Uniqueness(['message' => 'This is a message']); + $this->checkHasOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Uniqueness/SetOptionCest.php b/tests/integration/Validation/Validator/Uniqueness/SetOptionCest.php new file mode 100644 index 00000000000..55c99c0998b --- /dev/null +++ b/tests/integration/Validation/Validator/Uniqueness/SetOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Uniqueness; + +use IntegrationTester; + +class SetOptionCest +{ + /** + * Tests Phalcon\Validation\Validator\Uniqueness :: setOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorUniquenessSetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Uniqueness - setOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/Validator/Uniqueness/ValidateCest.php b/tests/integration/Validation/Validator/Uniqueness/ValidateCest.php new file mode 100644 index 00000000000..172431e6cc1 --- /dev/null +++ b/tests/integration/Validation/Validator/Uniqueness/ValidateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Uniqueness; + +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation\Validator\Uniqueness :: validate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorUniquenessValidate(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Uniqueness - validate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/Validation/Validator/UniquenessCest.php b/tests/integration/Validation/Validator/UniquenessCest.php new file mode 100644 index 00000000000..1262422470d --- /dev/null +++ b/tests/integration/Validation/Validator/UniquenessCest.php @@ -0,0 +1,398 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator; + +use function date; +use IntegrationTester; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Test\Models\Robots; +use Phalcon\Test\Models\Some\Robotters; +use Phalcon\Validation; +use Phalcon\Validation\Validator\Uniqueness; + +class UniquenessCest +{ + use DiTrait; + + /** + * @var Robots + */ + private $robot; + + /** + * @var Robots + */ + private $anotherRobot; + + /** + * @var Robots + */ + private $deletedRobot; + + /** + * @param IntegrationTester $I + * + * @throws \Exception + */ + public function _before(IntegrationTester $I) + { + $this->setNewFactoryDefault(); + $this->setDiMysql(); + $this->robot = new Robots( + [ + 'name' => 'Robotina', + 'type' => 'mechanical', + 'year' => 1972, + 'datetime' => date('Y-m-d H:i:s'), + 'deleted' => null, + 'text' => 'text', + ] + ); + $this->anotherRobot = new Robots( + [ + 'name' => 'Robotina', + 'type' => 'hydraulic', + 'year' => 1952, + 'datetime' => date('Y-m-d H:i:s'), + 'deleted' => null, + 'text' => 'text', + ] + ); + $this->deletedRobot = new Robots( + [ + 'name' => 'Robotina', + 'type' => 'mechanical', + 'year' => 1972, + 'datetime' => date('Y-m-d H:i:s'), + 'deleted' => date('Y-m-d H:i:s'), + 'text' => 'text', + ] + ); + } + + /** + * Tests uniqueness validator with single fields + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function testSingleField(IntegrationTester $I) + { + $validation = new Validation(); + $validation->add('type', new Uniqueness()); + $messages = $validation->validate(null, $this->robot); + + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(null, $this->anotherRobot); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests uniqueness validator with single fields and a converted value + * + * @author Bas Stottelaar + * @since 2016-07-25 + */ + public function testSingleFieldConvert(IntegrationTester $I) + { + $validation = new Validation(); + $validation->add('type', new Uniqueness([ + 'convert' => function (array $values) { + $values['type'] = 'hydraulic'; // mechanical -> hydraulic + return $values; + } + ])); + $messages = $validation->validate(null, $this->robot); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests uniqueness validator with single field and a null value + * + * @author Bas Stottelaar + * @since 2016-07-13 + */ + public function testSingleFieldWithNull(IntegrationTester $I) + { + $validation = new Validation(); + $validation->add('deleted', new Uniqueness()); + $messages = $validation->validate(null, $this->robot); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(null, $this->anotherRobot); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(null, $this->deletedRobot); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests uniqueness validator with multiple fields + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function testMultipleFields(IntegrationTester $I) + { + $validation = new Validation(); + $validation->add(['name', 'type'], new Uniqueness()); + $messages = $validation->validate(null, $this->robot); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(null, $this->anotherRobot); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests uniqueness validator with multiple fields and a converted value + * + * @author Bas Stottelaar + * @since 2016-07-25 + */ + public function testMultipleFieldsConvert(IntegrationTester $I) + { + $validation = new Validation(); + $validation->add(['name', 'type'], new Uniqueness([ + 'convert' => function (array $values) { + $values['type'] = 'hydraulic'; // mechanical -> hydraulic + return $values; + } + ])); + $messages = $validation->validate(null, $this->robot); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests uniqueness validator with multiple fields and a null value + * + * @author Bas Stottelaar + * @since 2016-07-13 + */ + public function testMultipleFieldsWithNull(IntegrationTester $I) + { + $validation = new Validation(); + $validation->add(['type', 'deleted'], new Uniqueness()); + $messages = $validation->validate(null, $this->robot); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(null, $this->anotherRobot); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(null, $this->deletedRobot); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests uniqueness validator with single field and except + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function testExceptSingleFieldSingleExcept(IntegrationTester $I) + { + $validation = new Validation(); + $validation->add('year', new Uniqueness([ + 'except' => 1972, + ])); + $messages = $validation->validate(null, $this->robot); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(null, $this->anotherRobot); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests uniqueness validator with single field and multiple except + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function testExceptSingleFieldMultipleExcept(IntegrationTester $I) + { + $validation = new Validation(); + $validation->add('year', new Uniqueness([ + 'except' => [1972, 1952], + ])); + $messages = $validation->validate(null, $this->robot); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(null, $this->anotherRobot); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests uniqueness validator with multiple field and single except + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function testExceptMultipleFieldSingleExcept(IntegrationTester $I) + { + $validation = new Validation(); + $validation->add(['type', 'year'], new Uniqueness([ + 'except' => [ + 'type' => 'mechanical', + 'year' => 1972, + ], + ])); + $messages = $validation->validate(null, $this->robot); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(null, $this->anotherRobot); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests uniqueness validator with multiple field and except + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function testExceptMultipleFieldMultipleExcept(IntegrationTester $I) + { + $validation = new Validation(); + $validation->add(['year', 'type'], new Uniqueness([ + 'except' => [ + 'year' => [1952, 1972], + 'type' => ['hydraulic', 'mechanical'], + ], + ])); + $messages = $validation->validate(null, $this->robot); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(null, $this->anotherRobot); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests value conversion for returning an array. + * + * @author Bas Stottelaar + * @since 2016-07-25 + */ + public function testConvertArrayReturnsArray(IntegrationTester $I) + { + $I->skipTest('TODO: Check the verify'); + $validation = new Validation(); + $validation->add('type', new Uniqueness([ + 'convert' => function (array $values) { + ($values); + return null; + } + ])); + try { + $validation->validate(null, $this->robot); + verify_that(false); + } catch (\Exception $e) { + verify_that(true); + } + } + + /** + * Tests except other than field + * + * @author Wojciech Ślawski + * @since 2017-01-16 + */ + public function testExceptOtherThanField(IntegrationTester $I) + { + $validation = new Validation(); + $validation->add('text', new Uniqueness([ + 'except' => [ + 'type' => ['mechanical', 'cyborg'], + ] + ])); + $messages = $validation->validate(null, $this->robot); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(null, $this->anotherRobot); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $anotherRobot = clone $this->anotherRobot; + $this->anotherRobot->create(); + $messages = $validation->validate(null, $anotherRobot); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $this->anotherRobot->delete(); + } + + /** + * Tests issue 13398 + * + * @author Wojciech Ślawski + * @since 2018-06-13 + */ + public function testIssue13398(IntegrationTester $I) + { + $validation = new Validation(); + $validation->add('theName', new Uniqueness()); + $robot = Robotters::findFirst(1); + $robot->theName = 'Astro Boy'; + $messages = $validation->validate(null, $robot); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $robot->theName = 'Astro Boyy'; + $messages = $validation->validate(null, $robot); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Validation/Validator/Url/ConstructCest.php b/tests/integration/Validation/Validator/Url/ConstructCest.php new file mode 100644 index 00000000000..ddc534d313b --- /dev/null +++ b/tests/integration/Validation/Validator/Url/ConstructCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Url; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Url; +use Phalcon\Validation\ValidatorInterface; +use IntegrationTester; + +class ConstructCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Url :: __construct() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorUrlConstruct(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Url - __construct()"); + $validator = new Url(); + $this->checkConstruct($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Url/GetOptionCest.php b/tests/integration/Validation/Validator/Url/GetOptionCest.php new file mode 100644 index 00000000000..0d506fa2ff2 --- /dev/null +++ b/tests/integration/Validation/Validator/Url/GetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Url; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Url; +use IntegrationTester; + +class GetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Url :: getOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorUrlGetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Url - getOption()"); + $validator = new Url(); + $this->checkGetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Url/HasOptionCest.php b/tests/integration/Validation/Validator/Url/HasOptionCest.php new file mode 100644 index 00000000000..2f394b50ccf --- /dev/null +++ b/tests/integration/Validation/Validator/Url/HasOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Url; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Url; +use IntegrationTester; + +class HasOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Url :: hasOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorUrlHasOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Url - hasOption()"); + $validator = new Url(['message' => 'This is a message']); + $this->checkHasOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Url/SetOptionCest.php b/tests/integration/Validation/Validator/Url/SetOptionCest.php new file mode 100644 index 00000000000..c5d32a5e64f --- /dev/null +++ b/tests/integration/Validation/Validator/Url/SetOptionCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Url; + +use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Validation\Validator\Url; +use IntegrationTester; + +class SetOptionCest +{ + use ValidationTrait; + + /** + * Tests Phalcon\Validation\Validator\Url :: setOption() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorUrlSetOption(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator\Url - setOption()"); + $validator = new Url(); + $this->checkSetOption($I, $validator); + } +} diff --git a/tests/integration/Validation/Validator/Url/ValidateCest.php b/tests/integration/Validation/Validator/Url/ValidateCest.php new file mode 100644 index 00000000000..c9a207942ef --- /dev/null +++ b/tests/integration/Validation/Validator/Url/ValidateCest.php @@ -0,0 +1,185 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator\Url; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use Phalcon\Validation; +use Phalcon\Validation\Validator\Url; +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation\Validator\Url :: validate() - single field + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorUrlSingleField(IntegrationTester $I) + { + $I->wantToTest('Validation\Validator\Url :: validate() - single field'); + $validation = new Validation(); + $validation->add('url', new Url()); + + $messages = $validation->validate([]); + $expected = Messages::__set_state( + [ + '_messages' => [ + 0 => Message::__set_state( + [ + '_type' => 'Url', + '_message' => 'Field url must be a url', + '_field' => 'url', + '_code' => 0, + ] + ), + ], + ] + ); + + $actual = $messages; + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['url' => 'x=1']); + $actual = $messages; + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['url' => 'http://phalconphp.com']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\Url :: validate() - multiple field + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorUrlMultipleField(IntegrationTester $I) + { + $I->wantToTest('Validation\Validator\Url :: validate() - multiple field'); + $validation = new Validation(); + $validationMessages = [ + 'url' => 'Url must be correct url.', + 'anotherUrl' => 'AnotherUrl must be correct url.', + ]; + $validation->add( + [ + 'url', + 'anotherUrl', + ], + new Url( + [ + 'message' => $validationMessages, + ] + ) + ); + $messages = $validation->validate( + [ + 'url' => 'http://google.com', + 'anotherUrl' => 'http://google.com', + ] + ); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate( + [ + 'url' => '://google.', + 'anotherUrl' => 'http://google.com', + ] + ); + $expected = 1; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['url']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $messages = $validation->validate( + [ + 'url' => '://google.', + 'anotherUrl' => '://google.', + ] + ); + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['url']; + $actual = $messages->offsetGet(0)->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = $validationMessages['anotherUrl']; + $actual = $messages->offsetGet(1)->getMessage(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Validation\Validator\Url :: validate() - custom message + * + * @param IntegrationTester $I + * + * @author Wojciech Ślawski + * @since 2016-06-05 + */ + public function validationValidatorUrlCustomMessage(IntegrationTester $I) + { + $I->wantToTest('Validation\Validator\Url :: validate() - custom message'); + $validation = new Validation(); + + $validation->add( + 'url', + new Url( + [ + 'message' => 'The url is not valid', + ] + ) + ); + + $messages = $validation->validate([]); + $expected = Messages::__set_state( + [ + '_messages' => [ + 0 => Message::__set_state( + [ + '_type' => 'Url', + '_message' => 'The url is not valid', + '_field' => 'url', + '_code' => '0', + ] + ), + ], + ] + ); + + $actual = $messages; + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['url' => 'x=1']); + $actual = $messages; + $I->assertEquals($expected, $actual); + + $messages = $validation->validate(['url' => 'http://phalconphp.com']); + $expected = 0; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/integration/Validation/Validator/ValidateCest.php b/tests/integration/Validation/Validator/ValidateCest.php new file mode 100644 index 00000000000..3c5aeeb8438 --- /dev/null +++ b/tests/integration/Validation/Validator/ValidateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration\Validation\Validator; + +use IntegrationTester; + +class ValidateCest +{ + /** + * Tests Phalcon\Validation\Validator :: validate() + * + * @param IntegrationTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function validationValidatorValidate(IntegrationTester $I) + { + $I->wantToTest("Validation\Validator - validate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/integration/ValidationCest.php b/tests/integration/ValidationCest.php index 1e97ac8b081..84573c2bc9a 100644 --- a/tests/integration/ValidationCest.php +++ b/tests/integration/ValidationCest.php @@ -1,51 +1,44 @@ + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Integration; use IntegrationTester; -use Phalcon\Validation; use Phalcon\Messages\Message; -use Phalcon\Validation\Validator\PresenceOf; use Phalcon\Messages\Messages; +use Phalcon\Validation; +use Phalcon\Validation\Validator\PresenceOf; -/** - * Phalcon\Test\Integration\ValidationCest - * Tests the \Phalcon\Validation component - * - * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez - * @author Serghei Iakovlev - * @package Phalcon\Test\Integration - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ class ValidationCest { /** * Tests the get * * @issue https://github.com/phalcon/cphalcon/issues/10405 - * @author Serghei Iakovlev + * @author Phalcon Team * @since 2016-06-27 + * * @param IntegrationTester $I */ public function appendValidationMessageToTheNonObject(IntegrationTester $I) { $myValidator = new PresenceOf(); - $validation = new Validation(); + $validation = new Validation(); $validation->bind( new \stdClass(), [ 'day' => date('d'), 'month' => date('m'), - 'year' => date('Y') + 1 + 'year' => date('Y') + 1, ] ); @@ -54,7 +47,7 @@ public function appendValidationMessageToTheNonObject(IntegrationTester $I) $expectedMessages = Messages::__set_state([ '_position' => 0, '_messages' => [ - new Message('Field foo is required', 'foo', 'PresenceOf', 0) + new Message('Field foo is required', 'foo', 'PresenceOf', 0), ], ]); diff --git a/tests/integration/_bootstrap.php b/tests/integration/_bootstrap.php index 8a885558065..b3d9bbc7f37 100644 --- a/tests/integration/_bootstrap.php +++ b/tests/integration/_bootstrap.php @@ -1,2 +1 @@ - * @author Serghei Iakovlev + * This file is part of the Phalcon Framework. * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt + * (c) Phalcon Team * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. */ +use Dotenv\Dotenv; + if (!function_exists('env')) { function env($key, $default = null) { @@ -25,3 +21,104 @@ function env($key, $default = null) return getenv($key) ?: $default; } } + +/** + * Calls .env and merges the global and local configurations + */ +if (!function_exists('loadEnvironment')) { + function loadEnvironment(string $root) + { + /** + * Load local environment if it exists + */ + (new Dotenv($root, 'tests/_ci/.env.default'))->load(); + + /** + * Necessary evil. We need to set some constants for INI files to work + */ + (defined('DATA_MYSQL_CHARSET') || define('DATA_MYSQL_CHARSET', env('DATA_MYSQL_CHARSET'))); + (defined('DATA_MYSQL_HOST') || define('DATA_MYSQL_HOST', env('DATA_MYSQL_HOST'))); + (defined('DATA_MYSQL_NAME') || define('DATA_MYSQL_NAME', env('DATA_MYSQL_NAME'))); + (defined('DATA_MYSQL_PASS') || define('DATA_MYSQL_PASS', env('DATA_MYSQL_PASS'))); + (defined('DATA_MYSQL_PORT') || define('DATA_MYSQL_PORT', env('DATA_MYSQL_PORT'))); + (defined('DATA_MYSQL_USER') || define('DATA_MYSQL_USER', env('DATA_MYSQL_USER'))); + (defined('PATH_CACHE') || define('PATH_CACHE', env('PATH_CACHE'))); + (defined('PATH_DATA') || define('PATH_DATA', env('PATH_DATA'))); + (defined('PATH_OUTPUT') || define('PATH_OUTPUT', env('PATH_OUTPUT'))); + } +} + +/** + * Ensures that certain folders are always ready for us. + */ +if (!function_exists('loadFolders')) { + function loadFolders() + { + $folders = [ + 'annotations', + 'assets', + 'cache', + 'image', + 'image/gd', + 'image/imagick', + 'logs', + 'session', + 'stream', + ]; + foreach ($folders as $folder) { + $item = outputFolder('tests/' . $folder); + if (true !== file_exists($item)) { + mkdir($item, 0777, true); + } + } + + if (true !== file_exists(cacheFolder())) { + mkdir(cacheFolder(), 0777, true); + } + } +} + +/** + * Returns the cache folder + */ +if (!function_exists('cacheFolder')) { + /** + * @param string $fileName + * + * @return string + */ + function cacheFolder(string $fileName = '') + { + return env('PATH_CACHE') . $fileName; + } +} + +/** + * Returns the output folder + */ +if (!function_exists('dataFolder')) { + /** + * @param string $fileName + * + * @return string + */ + function dataFolder(string $fileName = '') + { + return env('PATH_DATA') . $fileName; + } +} + +/** + * Returns the output folder + */ +if (!function_exists('outputFolder')) { + /** + * @param string $fileName + * + * @return string + */ + function outputFolder(string $fileName = '') + { + return env('PATH_OUTPUT') . $fileName; + } +} diff --git a/tests/syntax/tests/volt/statements/switchcase/001.diff b/tests/syntax/tests/volt/statements/switchcase/001.diff new file mode 100644 index 00000000000..ccdf433059c --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/001.diff @@ -0,0 +1,23 @@ +001+ sh: 1: tests/syntax: Permission denied +001- array(1) { +002- [0]=> +003- array(4) { +004- ["type"]=> +005- int(411) +006- ["expr"]=> +007- array(4) { +008- ["type"]=> +009- int(265) +010- ["value"]=> +011- string(3) "foo" +012- ["file"]=> +013- string(9) "eval code" +014- ["line"]=> +015- int(1) +016- } +017- ["file"]=> +018- string(9) "eval code" +019- ["line"]=> +020- int(1) +021- } +022- } \ No newline at end of file diff --git a/tests/syntax/tests/volt/statements/switchcase/001.exp b/tests/syntax/tests/volt/statements/switchcase/001.exp new file mode 100644 index 00000000000..9bd3ad531e2 --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/001.exp @@ -0,0 +1,22 @@ +array(1) { + [0]=> + array(4) { + ["type"]=> + int(411) + ["expr"]=> + array(4) { + ["type"]=> + int(265) + ["value"]=> + string(3) "foo" + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } +} \ No newline at end of file diff --git a/tests/syntax/tests/volt/statements/switchcase/001.php b/tests/syntax/tests/volt/statements/switchcase/001.php new file mode 100644 index 00000000000..1156ce730b2 --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/001.php @@ -0,0 +1,4 @@ +&1 diff --git a/tests/syntax/tests/volt/statements/switchcase/002.diff b/tests/syntax/tests/volt/statements/switchcase/002.diff new file mode 100644 index 00000000000..fcf5a13bbdc --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/002.diff @@ -0,0 +1,68 @@ +001+ sh: 1: tests/syntax: Permission denied +001- array(1) { +002- [0]=> +003- array(5) { +004- ["type"]=> +005- int(411) +006- ["expr"]=> +007- array(4) { +008- ["type"]=> +009- int(265) +010- ["value"]=> +011- string(3) "foo" +012- ["file"]=> +013- string(9) "eval code" +014- ["line"]=> +015- int(1) +016- } +017- ["case_clauses"]=> +018- array(3) { +019- [0]=> +020- array(4) { +021- ["type"]=> +022- int(357) +023- ["value"]=> +024- string(1) " " +025- ["file"]=> +026- string(9) "eval code" +027- ["line"]=> +028- int(1) +029- } +030- [1]=> +031- array(4) { +032- ["type"]=> +033- int(412) +034- ["expr"]=> +035- array(4) { +036- ["type"]=> +037- int(265) +038- ["value"]=> +039- string(3) "foo" +040- ["file"]=> +041- string(9) "eval code" +042- ["line"]=> +043- int(1) +044- } +045- ["file"]=> +046- string(9) "eval code" +047- ["line"]=> +048- int(1) +049- } +050- [2]=> +051- array(4) { +052- ["type"]=> +053- int(357) +054- ["value"]=> +055- string(1) " " +056- ["file"]=> +057- string(9) "eval code" +058- ["line"]=> +059- int(1) +060- } +061- } +062- ["file"]=> +063- string(9) "eval code" +064- ["line"]=> +065- int(1) +066- } +067- } \ No newline at end of file diff --git a/tests/syntax/tests/volt/statements/switchcase/002.exp b/tests/syntax/tests/volt/statements/switchcase/002.exp new file mode 100644 index 00000000000..247932c3be6 --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/002.exp @@ -0,0 +1,67 @@ +array(1) { + [0]=> + array(5) { + ["type"]=> + int(411) + ["expr"]=> + array(4) { + ["type"]=> + int(265) + ["value"]=> + string(3) "foo" + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } + ["case_clauses"]=> + array(3) { + [0]=> + array(4) { + ["type"]=> + int(357) + ["value"]=> + string(1) " " + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } + [1]=> + array(4) { + ["type"]=> + int(412) + ["expr"]=> + array(4) { + ["type"]=> + int(265) + ["value"]=> + string(3) "foo" + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } + [2]=> + array(4) { + ["type"]=> + int(357) + ["value"]=> + string(1) " " + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } + } + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } +} \ No newline at end of file diff --git a/tests/syntax/tests/volt/statements/switchcase/002.php b/tests/syntax/tests/volt/statements/switchcase/002.php new file mode 100644 index 00000000000..e9c92a03aba --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/002.php @@ -0,0 +1,4 @@ +&1 diff --git a/tests/syntax/tests/volt/statements/switchcase/003.diff b/tests/syntax/tests/volt/statements/switchcase/003.diff new file mode 100644 index 00000000000..1aaa6fde665 --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/003.diff @@ -0,0 +1,57 @@ +001+ sh: 1: tests/syntax: Permission denied +001- array(1) { +002- [0]=> +003- array(5) { +004- ["type"]=> +005- int(411) +006- ["expr"]=> +007- array(4) { +008- ["type"]=> +009- int(265) +010- ["value"]=> +011- string(3) "foo" +012- ["file"]=> +013- string(9) "eval code" +014- ["line"]=> +015- int(1) +016- } +017- ["case_clauses"]=> +018- array(3) { +019- [0]=> +020- array(4) { +021- ["type"]=> +022- int(357) +023- ["value"]=> +024- string(1) " " +025- ["file"]=> +026- string(9) "eval code" +027- ["line"]=> +028- int(1) +029- } +030- [1]=> +031- array(3) { +032- ["type"]=> +033- int(413) +034- ["file"]=> +035- string(9) "eval code" +036- ["line"]=> +037- int(1) +038- } +039- [2]=> +040- array(4) { +041- ["type"]=> +042- int(357) +043- ["value"]=> +044- string(1) " " +045- ["file"]=> +046- string(9) "eval code" +047- ["line"]=> +048- int(1) +049- } +050- } +051- ["file"]=> +052- string(9) "eval code" +053- ["line"]=> +054- int(1) +055- } +056- } \ No newline at end of file diff --git a/tests/syntax/tests/volt/statements/switchcase/003.exp b/tests/syntax/tests/volt/statements/switchcase/003.exp new file mode 100644 index 00000000000..801b56686bf --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/003.exp @@ -0,0 +1,56 @@ +array(1) { + [0]=> + array(5) { + ["type"]=> + int(411) + ["expr"]=> + array(4) { + ["type"]=> + int(265) + ["value"]=> + string(3) "foo" + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } + ["case_clauses"]=> + array(3) { + [0]=> + array(4) { + ["type"]=> + int(357) + ["value"]=> + string(1) " " + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } + [1]=> + array(3) { + ["type"]=> + int(413) + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } + [2]=> + array(4) { + ["type"]=> + int(357) + ["value"]=> + string(1) " " + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } + } + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } +} \ No newline at end of file diff --git a/tests/syntax/tests/volt/statements/switchcase/003.php b/tests/syntax/tests/volt/statements/switchcase/003.php new file mode 100644 index 00000000000..6094b2ccfe8 --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/003.php @@ -0,0 +1,4 @@ +&1 diff --git a/tests/syntax/tests/volt/statements/switchcase/004.diff b/tests/syntax/tests/volt/statements/switchcase/004.diff new file mode 100644 index 00000000000..40634ff21d7 --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/004.diff @@ -0,0 +1,88 @@ +001+ sh: 1: tests/syntax: Permission denied +001- array(1) { +002- [0]=> +003- array(5) { +004- ["type"]=> +005- int(411) +006- ["expr"]=> +007- array(4) { +008- ["type"]=> +009- int(265) +010- ["value"]=> +011- string(3) "foo" +012- ["file"]=> +013- string(9) "eval code" +014- ["line"]=> +015- int(1) +016- } +017- ["case_clauses"]=> +018- array(5) { +019- [0]=> +020- array(4) { +021- ["type"]=> +022- int(357) +023- ["value"]=> +024- string(1) " " +025- ["file"]=> +026- string(9) "eval code" +027- ["line"]=> +028- int(1) +029- } +030- [1]=> +031- array(4) { +032- ["type"]=> +033- int(412) +034- ["expr"]=> +035- array(4) { +036- ["type"]=> +037- int(265) +038- ["value"]=> +039- string(3) "foo" +040- ["file"]=> +041- string(9) "eval code" +042- ["line"]=> +043- int(1) +044- } +045- ["file"]=> +046- string(9) "eval code" +047- ["line"]=> +048- int(1) +049- } +050- [2]=> +051- array(4) { +052- ["type"]=> +053- int(357) +054- ["value"]=> +055- string(1) " " +056- ["file"]=> +057- string(9) "eval code" +058- ["line"]=> +059- int(1) +060- } +061- [3]=> +062- array(3) { +063- ["type"]=> +064- int(413) +065- ["file"]=> +066- string(9) "eval code" +067- ["line"]=> +068- int(1) +069- } +070- [4]=> +071- array(4) { +072- ["type"]=> +073- int(357) +074- ["value"]=> +075- string(1) " " +076- ["file"]=> +077- string(9) "eval code" +078- ["line"]=> +079- int(1) +080- } +081- } +082- ["file"]=> +083- string(9) "eval code" +084- ["line"]=> +085- int(1) +086- } +087- } \ No newline at end of file diff --git a/tests/syntax/tests/volt/statements/switchcase/004.exp b/tests/syntax/tests/volt/statements/switchcase/004.exp new file mode 100644 index 00000000000..d700a003157 --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/004.exp @@ -0,0 +1,87 @@ +array(1) { + [0]=> + array(5) { + ["type"]=> + int(411) + ["expr"]=> + array(4) { + ["type"]=> + int(265) + ["value"]=> + string(3) "foo" + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } + ["case_clauses"]=> + array(5) { + [0]=> + array(4) { + ["type"]=> + int(357) + ["value"]=> + string(1) " " + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } + [1]=> + array(4) { + ["type"]=> + int(412) + ["expr"]=> + array(4) { + ["type"]=> + int(265) + ["value"]=> + string(3) "foo" + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } + [2]=> + array(4) { + ["type"]=> + int(357) + ["value"]=> + string(1) " " + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } + [3]=> + array(3) { + ["type"]=> + int(413) + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } + [4]=> + array(4) { + ["type"]=> + int(357) + ["value"]=> + string(1) " " + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } + } + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } +} \ No newline at end of file diff --git a/tests/syntax/tests/volt/statements/switchcase/004.php b/tests/syntax/tests/volt/statements/switchcase/004.php new file mode 100644 index 00000000000..28bee28fe41 --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/004.php @@ -0,0 +1,4 @@ +&1 diff --git a/tests/syntax/tests/volt/statements/switchcase/005.diff b/tests/syntax/tests/volt/statements/switchcase/005.diff new file mode 100644 index 00000000000..231010eb640 --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/005.diff @@ -0,0 +1,7 @@ +001+ sh: 1: tests/syntax: Permission denied +001- Fatal error: Uncaught Phalcon\Mvc\View\Exception: Syntax error, unexpected EOF in eval code, there is a 'switch' block without 'endswitch' in %sbootstrap.inc:45 +002- Stack trace: +003- #0 %sbootstrap.inc(45): Phalcon\Mvc\View\Engine\Volt\Compiler->parse('{% switch foo %...') +004- #1 %s005.php(3): parse_string('{% switch foo %...') +005- #2 {main} +006- thrown in %sbootstrap.inc on line 45 \ No newline at end of file diff --git a/tests/syntax/tests/volt/statements/switchcase/005.exp b/tests/syntax/tests/volt/statements/switchcase/005.exp new file mode 100644 index 00000000000..1e94bf69ced --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/005.exp @@ -0,0 +1,6 @@ +Fatal error: Uncaught Phalcon\Mvc\View\Exception: Syntax error, unexpected EOF in eval code, there is a 'switch' block without 'endswitch' in %sbootstrap.inc:45 +Stack trace: +#0 %sbootstrap.inc(45): Phalcon\Mvc\View\Engine\Volt\Compiler->parse('{% switch foo %...') +#1 %s005.php(3): parse_string('{% switch foo %...') +#2 {main} + thrown in %sbootstrap.inc on line 45 \ No newline at end of file diff --git a/tests/syntax/tests/volt/statements/switchcase/005.php b/tests/syntax/tests/volt/statements/switchcase/005.php new file mode 100644 index 00000000000..9a6c8064b66 --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/005.php @@ -0,0 +1,3 @@ +&1 diff --git a/tests/syntax/tests/volt/statements/switchcase/006.diff b/tests/syntax/tests/volt/statements/switchcase/006.diff new file mode 100644 index 00000000000..20aa681e59e --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/006.diff @@ -0,0 +1,7 @@ +001+ sh: 1: tests/syntax: Permission denied +001- Fatal error: Uncaught Phalcon\Mvc\View\Exception: Unexpected CASE in eval code on line 1 in %sbootstrap.inc:45 +002- Stack trace: +003- #0 %sbootstrap.inc(45): Phalcon\Mvc\View\Engine\Volt\Compiler->parse('{% case foo %}') +004- #1 %s006.php(3): parse_string('{% case foo %}') +005- #2 {main} +006- thrown in %sbootstrap.inc on line 45 \ No newline at end of file diff --git a/tests/syntax/tests/volt/statements/switchcase/006.exp b/tests/syntax/tests/volt/statements/switchcase/006.exp new file mode 100644 index 00000000000..3c33a05aeaa --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/006.exp @@ -0,0 +1,6 @@ +Fatal error: Uncaught Phalcon\Mvc\View\Exception: Unexpected CASE in eval code on line 1 in %sbootstrap.inc:45 +Stack trace: +#0 %sbootstrap.inc(45): Phalcon\Mvc\View\Engine\Volt\Compiler->parse('{% case foo %}') +#1 %s006.php(3): parse_string('{% case foo %}') +#2 {main} + thrown in %sbootstrap.inc on line 45 \ No newline at end of file diff --git a/tests/syntax/tests/volt/statements/switchcase/006.php b/tests/syntax/tests/volt/statements/switchcase/006.php new file mode 100644 index 00000000000..7b9e1bfd643 --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/006.php @@ -0,0 +1,3 @@ +&1 diff --git a/tests/syntax/tests/volt/statements/switchcase/007.diff b/tests/syntax/tests/volt/statements/switchcase/007.diff new file mode 100644 index 00000000000..3067d9b1fbc --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/007.diff @@ -0,0 +1,7 @@ +001+ sh: 1: tests/syntax: Permission denied +001- Fatal error: Uncaught Phalcon\Mvc\View\Exception: Syntax error, unexpected token DEFAULT(default) in eval code on line 1 in %sbootstrap.inc:45 +002- Stack trace: +003- #0 %sbootstrap.inc(45): Phalcon\Mvc\View\Engine\Volt\Compiler->parse('{% default %}') +004- #1 %s007.php(3): parse_string('{% default %}') +005- #2 {main} +006- thrown in %sbootstrap.inc on line 45 \ No newline at end of file diff --git a/tests/syntax/tests/volt/statements/switchcase/007.exp b/tests/syntax/tests/volt/statements/switchcase/007.exp new file mode 100644 index 00000000000..8c528ddf213 --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/007.exp @@ -0,0 +1,6 @@ +Fatal error: Uncaught Phalcon\Mvc\View\Exception: Syntax error, unexpected token DEFAULT(default) in eval code on line 1 in %sbootstrap.inc:45 +Stack trace: +#0 %sbootstrap.inc(45): Phalcon\Mvc\View\Engine\Volt\Compiler->parse('{% default %}') +#1 %s007.php(3): parse_string('{% default %}') +#2 {main} + thrown in %sbootstrap.inc on line 45 \ No newline at end of file diff --git a/tests/syntax/tests/volt/statements/switchcase/007.php b/tests/syntax/tests/volt/statements/switchcase/007.php new file mode 100644 index 00000000000..68982cf5cd4 --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/007.php @@ -0,0 +1,3 @@ +&1 diff --git a/tests/syntax/tests/volt/statements/switchcase/008.diff b/tests/syntax/tests/volt/statements/switchcase/008.diff new file mode 100644 index 00000000000..a5b391cb9c9 --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/008.diff @@ -0,0 +1,178 @@ +001+ sh: 1: tests/syntax: Permission denied +001- array(1) { +002- [0]=> +003- array(5) { +004- ["type"]=> +005- int(411) +006- ["expr"]=> +007- array(4) { +008- ["type"]=> +009- int(265) +010- ["value"]=> +011- string(8) "username" +012- ["file"]=> +013- string(9) "eval code" +014- ["line"]=> +015- int(1) +016- } +017- ["case_clauses"]=> +018- array(11) { +019- [0]=> +020- array(4) { +021- ["type"]=> +022- int(357) +023- ["value"]=> +024- string(5) " +025- " +026- ["file"]=> +027- string(9) "eval code" +028- ["line"]=> +029- int(2) +030- } +031- [1]=> +032- array(4) { +033- ["type"]=> +034- int(412) +035- ["expr"]=> +036- array(4) { +037- ["type"]=> +038- int(260) +039- ["value"]=> +040- string(3) "Jim" +041- ["file"]=> +042- string(9) "eval code" +043- ["line"]=> +044- int(2) +045- } +046- ["file"]=> +047- string(9) "eval code" +048- ["line"]=> +049- int(4) +050- } +051- [2]=> +052- array(4) { +053- ["type"]=> +054- int(357) +055- ["value"]=> +056- string(28) " +057- Hello username +058- " +059- ["file"]=> +060- string(9) "eval code" +061- ["line"]=> +062- int(4) +063- } +064- [3]=> +065- array(4) { +066- ["type"]=> +067- int(412) +068- ["expr"]=> +069- array(4) { +070- ["type"]=> +071- int(260) +072- ["value"]=> +073- string(3) "Nik" +074- ["file"]=> +075- string(9) "eval code" +076- ["line"]=> +077- int(4) +078- } +079- ["file"]=> +080- string(9) "eval code" +081- ["line"]=> +082- int(5) +083- } +084- [4]=> +085- array(4) { +086- ["type"]=> +087- int(357) +088- ["value"]=> +089- string(9) " +090- " +091- ["file"]=> +092- string(9) "eval code" +093- ["line"]=> +094- int(5) +095- } +096- [5]=> +097- array(4) { +098- ["type"]=> +099- int(359) +100- ["expr"]=> +101- array(4) { +102- ["type"]=> +103- int(265) +104- ["value"]=> +105- string(8) "username" +106- ["file"]=> +107- string(9) "eval code" +108- ["line"]=> +109- int(5) +110- } +111- ["file"]=> +112- string(9) "eval code" +113- ["line"]=> +114- int(6) +115- } +116- [6]=> +117- array(4) { +118- ["type"]=> +119- int(357) +120- ["value"]=> +121- string(10) "! +122- " +123- ["file"]=> +124- string(9) "eval code" +125- ["line"]=> +126- int(6) +127- } +128- [7]=> +129- array(3) { +130- ["type"]=> +131- int(320) +132- ["file"]=> +133- string(9) "eval code" +134- ["line"]=> +135- int(7) +136- } +137- [8]=> +138- array(4) { +139- ["type"]=> +140- int(357) +141- ["value"]=> +142- string(5) " +143- " +144- ["file"]=> +145- string(9) "eval code" +146- ["line"]=> +147- int(7) +148- } +149- [9]=> +150- array(3) { +151- ["type"]=> +152- int(413) +153- ["file"]=> +154- string(9) "eval code" +155- ["line"]=> +156- int(9) +157- } +158- [10]=> +159- array(4) { +160- ["type"]=> +161- int(357) +162- ["value"]=> +163- string(22) " +164- Who are you? +165- " +166- ["file"]=> +167- string(9) "eval code" +168- ["line"]=> +169- int(9) +170- } +171- } +172- ["file"]=> +173- string(9) "eval code" +174- ["line"]=> +175- int(9) +176- } +177- } \ No newline at end of file diff --git a/tests/syntax/tests/volt/statements/switchcase/008.exp b/tests/syntax/tests/volt/statements/switchcase/008.exp new file mode 100644 index 00000000000..fafbcd078f7 --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/008.exp @@ -0,0 +1,177 @@ +array(1) { + [0]=> + array(5) { + ["type"]=> + int(411) + ["expr"]=> + array(4) { + ["type"]=> + int(265) + ["value"]=> + string(8) "username" + ["file"]=> + string(9) "eval code" + ["line"]=> + int(1) + } + ["case_clauses"]=> + array(11) { + [0]=> + array(4) { + ["type"]=> + int(357) + ["value"]=> + string(5) " + " + ["file"]=> + string(9) "eval code" + ["line"]=> + int(2) + } + [1]=> + array(4) { + ["type"]=> + int(412) + ["expr"]=> + array(4) { + ["type"]=> + int(260) + ["value"]=> + string(3) "Jim" + ["file"]=> + string(9) "eval code" + ["line"]=> + int(2) + } + ["file"]=> + string(9) "eval code" + ["line"]=> + int(4) + } + [2]=> + array(4) { + ["type"]=> + int(357) + ["value"]=> + string(28) " + Hello username + " + ["file"]=> + string(9) "eval code" + ["line"]=> + int(4) + } + [3]=> + array(4) { + ["type"]=> + int(412) + ["expr"]=> + array(4) { + ["type"]=> + int(260) + ["value"]=> + string(3) "Nik" + ["file"]=> + string(9) "eval code" + ["line"]=> + int(4) + } + ["file"]=> + string(9) "eval code" + ["line"]=> + int(5) + } + [4]=> + array(4) { + ["type"]=> + int(357) + ["value"]=> + string(9) " + " + ["file"]=> + string(9) "eval code" + ["line"]=> + int(5) + } + [5]=> + array(4) { + ["type"]=> + int(359) + ["expr"]=> + array(4) { + ["type"]=> + int(265) + ["value"]=> + string(8) "username" + ["file"]=> + string(9) "eval code" + ["line"]=> + int(5) + } + ["file"]=> + string(9) "eval code" + ["line"]=> + int(6) + } + [6]=> + array(4) { + ["type"]=> + int(357) + ["value"]=> + string(10) "! + " + ["file"]=> + string(9) "eval code" + ["line"]=> + int(6) + } + [7]=> + array(3) { + ["type"]=> + int(320) + ["file"]=> + string(9) "eval code" + ["line"]=> + int(7) + } + [8]=> + array(4) { + ["type"]=> + int(357) + ["value"]=> + string(5) " + " + ["file"]=> + string(9) "eval code" + ["line"]=> + int(7) + } + [9]=> + array(3) { + ["type"]=> + int(413) + ["file"]=> + string(9) "eval code" + ["line"]=> + int(9) + } + [10]=> + array(4) { + ["type"]=> + int(357) + ["value"]=> + string(22) " + Who are you? +" + ["file"]=> + string(9) "eval code" + ["line"]=> + int(9) + } + } + ["file"]=> + string(9) "eval code" + ["line"]=> + int(9) + } +} \ No newline at end of file diff --git a/tests/syntax/tests/volt/statements/switchcase/008.php b/tests/syntax/tests/volt/statements/switchcase/008.php new file mode 100644 index 00000000000..b55704d3eeb --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/008.php @@ -0,0 +1,15 @@ +&1 diff --git a/tests/syntax/tests/volt/statements/switchcase/009.diff b/tests/syntax/tests/volt/statements/switchcase/009.diff new file mode 100644 index 00000000000..26580b6964a --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/009.diff @@ -0,0 +1,7 @@ +001+ sh: 1: tests/syntax: Permission denied +001- Fatal error: Uncaught Phalcon\Mvc\View\Exception: A nested switch detected. There is no nested switch-case statements support in eval code on line 2 in %sbootstrap.inc:45 +002- Stack trace: +003- #0 %sbootstrap.inc(45): Phalcon\Mvc\View\Engine\Volt\Compiler->parse('{% switch foo %...') +004- #1 %s009.php(9): parse_string('{% switch foo %...') +005- #2 {main} +006- thrown in %sbootstrap.inc on line 45 \ No newline at end of file diff --git a/tests/syntax/tests/volt/statements/switchcase/009.exp b/tests/syntax/tests/volt/statements/switchcase/009.exp new file mode 100644 index 00000000000..8ef716071de --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/009.exp @@ -0,0 +1,6 @@ +Fatal error: Uncaught Phalcon\Mvc\View\Exception: A nested switch detected. There is no nested switch-case statements support in eval code on line 2 in %sbootstrap.inc:45 +Stack trace: +#0 %sbootstrap.inc(45): Phalcon\Mvc\View\Engine\Volt\Compiler->parse('{% switch foo %...') +#1 %s009.php(9): parse_string('{% switch foo %...') +#2 {main} + thrown in %sbootstrap.inc on line 45 \ No newline at end of file diff --git a/tests/syntax/tests/volt/statements/switchcase/009.php b/tests/syntax/tests/volt/statements/switchcase/009.php new file mode 100644 index 00000000000..48e8a475672 --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/009.php @@ -0,0 +1,9 @@ +&1 diff --git a/tests/syntax/tests/volt/statements/switchcase/010.diff b/tests/syntax/tests/volt/statements/switchcase/010.diff new file mode 100644 index 00000000000..0d00c8a55db --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/010.diff @@ -0,0 +1,7 @@ +001+ sh: 1: tests/syntax: Permission denied +001- Fatal error: Uncaught Phalcon\Mvc\View\Exception: Syntax error, unexpected token %} in eval code on line 1 in %sbootstrap.inc:45 +002- Stack trace: +003- #0 %sbootstrap.inc(45): Phalcon\Mvc\View\Engine\Volt\Compiler->parse('{% switch %}\n ...') +004- #1 %s010.php(9): parse_string('{% switch %}\n ...') +005- #2 {main} +006- thrown in %sbootstrap.inc on line 45 \ No newline at end of file diff --git a/tests/syntax/tests/volt/statements/switchcase/010.exp b/tests/syntax/tests/volt/statements/switchcase/010.exp new file mode 100644 index 00000000000..30bafa9e9d6 --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/010.exp @@ -0,0 +1,6 @@ +Fatal error: Uncaught Phalcon\Mvc\View\Exception: Syntax error, unexpected token %} in eval code on line 1 in %sbootstrap.inc:45 +Stack trace: +#0 %sbootstrap.inc(45): Phalcon\Mvc\View\Engine\Volt\Compiler->parse('{% switch %}\n ...') +#1 %s010.php(9): parse_string('{% switch %}\n ...') +#2 {main} + thrown in %sbootstrap.inc on line 45 \ No newline at end of file diff --git a/tests/syntax/tests/volt/statements/switchcase/010.php b/tests/syntax/tests/volt/statements/switchcase/010.php new file mode 100644 index 00000000000..317e669dd22 --- /dev/null +++ b/tests/syntax/tests/volt/statements/switchcase/010.php @@ -0,0 +1,10 @@ +&1 diff --git a/tests/unit.suite.yml b/tests/unit.suite.yml index 32927ed261a..35bfc546bff 100644 --- a/tests/unit.suite.yml +++ b/tests/unit.suite.yml @@ -1,48 +1,25 @@ # Codeception Test Suite Configuration # -# Suite for unit (internal) tests. -# -# This suite gets configuration parameters from the environment. -# You'll need to export environment variables before running tests. -# For example: -# source tests/_ci/environment -# export $(cut -d= -f1 tests/_ci/environment) +# Suite for unit or integration tests. -class_name: UnitTester +actor: UnitTester modules: - # enabled modules and helpers - enabled: - - Db - - Apc - - Redis - - Asserts - - Phalcon - - Memcache - - Filesystem - - Helper\Unit - - Phalcon\Test\Module\Libmemcached - - Phalcon\Test\Module\Cache\Backend\File - config: - Phalcon: - bootstrap: 'tests/_config/bootstrap.php' - Db: - dsn: "%TEST_DB_MYSQL_DSN%" - user: "%TEST_DB_MYSQL_USER%" - password: "%TEST_DB_MYSQL_PASSWD%" - populate: true - cleanup: false - dump: tests/_data/schemas/phalcon-schema-mysql.sql - Redis: - database: "%TEST_RS_DB%" - host: "%TEST_RS_HOST%" - port: "%TEST_RS_PORT%" - Memcache: - host: "%TEST_MC_HOST%" - port: "%TEST_MC_PORT%" - Phalcon\Test\Module\Libmemcached: - host: "%TEST_MC_HOST%" - port: "%TEST_MC_PORT%" - weight: "%TEST_MC_WEIGHT%" - Phalcon\Test\Module\Cache\Backend\File: - frontend: Phalcon\Cache\Frontend\Data - cache_dir: "%TEST_CACHE_DIR%" + config: + Redis: + database: '%DATA_REDIS_NAME%' + host: '%DATA_REDIS_HOST%' + port: '%DATA_REDIS_PORT%' + Phalcon\Test\Module\Libmemcached: + host: '%DATA_MEMCACHED_HOST%' + port: '%DATA_MEMCACHED_PORT%' + weight: '%DATA_MEMCACHED_WEIGHT%' + Phalcon\Test\Module\Cache\Backend\File: + frontend: Phalcon\Cache\Frontend\Data + cache_dir: '%PATH_CACHE%' + enabled: + - Asserts + - Filesystem + - Redis + - Helper\Unit + - Helper\PhalconCacheFile + - Helper\PhalconLibmemcached diff --git a/tests/unit/Acl/Adapter/Memory/AddInheritCest.php b/tests/unit/Acl/Adapter/Memory/AddInheritCest.php new file mode 100644 index 00000000000..77bcd78c5ea --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/AddInheritCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use UnitTester; + +class AddInheritCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: addInherit() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemoryAddInherit(UnitTester $I) + { + $I->wantToTest("Acl\Adapter\Memory - addInherit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Acl/Adapter/Memory/AddResourceAccessCest.php b/tests/unit/Acl/Adapter/Memory/AddResourceAccessCest.php new file mode 100644 index 00000000000..1fda2345d0c --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/AddResourceAccessCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use UnitTester; + +class AddResourceAccessCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: addResourceAccess() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemoryAddResourceAccess(UnitTester $I) + { + $I->wantToTest("Acl\Adapter\Memory - addResourceAccess()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Acl/Adapter/Memory/AddResourceCest.php b/tests/unit/Acl/Adapter/Memory/AddResourceCest.php new file mode 100644 index 00000000000..9ab5dfa004e --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/AddResourceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use UnitTester; + +class AddResourceCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: addResource() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemoryAddResource(UnitTester $I) + { + $I->wantToTest("Acl\Adapter\Memory - addResource()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Acl/Adapter/Memory/AddRoleCest.php b/tests/unit/Acl/Adapter/Memory/AddRoleCest.php new file mode 100644 index 00000000000..766ffdf31fd --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/AddRoleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use UnitTester; + +class AddRoleCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: addRole() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemoryAddRole(UnitTester $I) + { + $I->wantToTest("Acl\Adapter\Memory - addRole()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Acl/Adapter/Memory/AllowCest.php b/tests/unit/Acl/Adapter/Memory/AllowCest.php new file mode 100644 index 00000000000..cf3bf06bb9f --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/AllowCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use UnitTester; + +class AllowCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: allow() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemoryAllow(UnitTester $I) + { + $I->wantToTest("Acl\Adapter\Memory - allow()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Acl/Adapter/Memory/ConstructCest.php b/tests/unit/Acl/Adapter/Memory/ConstructCest.php new file mode 100644 index 00000000000..77561f9ffa2 --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/ConstructCest.php @@ -0,0 +1,28 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: __construct() + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemoryConstruct(UnitTester $I) + { + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Acl/Adapter/Memory/DenyCest.php b/tests/unit/Acl/Adapter/Memory/DenyCest.php new file mode 100644 index 00000000000..befc79c6044 --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/DenyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use UnitTester; + +class DenyCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: deny() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemoryDeny(UnitTester $I) + { + $I->wantToTest("Acl\Adapter\Memory - deny()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Acl/Adapter/Memory/DropResourceAccessCest.php b/tests/unit/Acl/Adapter/Memory/DropResourceAccessCest.php new file mode 100644 index 00000000000..b2895577278 --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/DropResourceAccessCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use UnitTester; + +class DropResourceAccessCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: dropResourceAccess() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemoryDropResourceAccess(UnitTester $I) + { + $I->wantToTest("Acl\Adapter\Memory - dropResourceAccess()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Acl/Adapter/Memory/GetActiveAccessCest.php b/tests/unit/Acl/Adapter/Memory/GetActiveAccessCest.php new file mode 100644 index 00000000000..587ccd13fb6 --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/GetActiveAccessCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use UnitTester; + +class GetActiveAccessCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: getActiveAccess() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemoryGetActiveAccess(UnitTester $I) + { + $I->wantToTest("Acl\Adapter\Memory - getActiveAccess()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Acl/Adapter/Memory/GetActiveResourceCest.php b/tests/unit/Acl/Adapter/Memory/GetActiveResourceCest.php new file mode 100644 index 00000000000..30283d2b94b --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/GetActiveResourceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use UnitTester; + +class GetActiveResourceCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: getActiveResource() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemoryGetActiveResource(UnitTester $I) + { + $I->wantToTest("Acl\Adapter\Memory - getActiveResource()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Acl/Adapter/Memory/GetActiveRoleCest.php b/tests/unit/Acl/Adapter/Memory/GetActiveRoleCest.php new file mode 100644 index 00000000000..ceeb7b2e6c0 --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/GetActiveRoleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use UnitTester; + +class GetActiveRoleCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: getActiveRole() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemoryGetActiveRole(UnitTester $I) + { + $I->wantToTest("Acl\Adapter\Memory - getActiveRole()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Acl/Adapter/Memory/GetDefaultActionCest.php b/tests/unit/Acl/Adapter/Memory/GetDefaultActionCest.php new file mode 100644 index 00000000000..5f105a663a9 --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/GetDefaultActionCest.php @@ -0,0 +1,39 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use Phalcon\Acl; +use Phalcon\Acl\Adapter\Memory; +use UnitTester; + +class GetDefaultActionCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: getDefaultAction() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemoryGetDefaultAction(UnitTester $I) + { + $I->wantToTest("Acl\Adapter\Memory - getDefaultAction()"); + $acl = new Memory(); + + $acl->setDefaultAction(Acl::ALLOW); + + $expected = Acl::ALLOW; + $actual = $acl->getDefaultAction(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Acl/Adapter/Memory/GetEventsManagerCest.php b/tests/unit/Acl/Adapter/Memory/GetEventsManagerCest.php new file mode 100644 index 00000000000..d52f5730b21 --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use UnitTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: getEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemoryGetEventsManager(UnitTester $I) + { + $I->wantToTest("Acl\Adapter\Memory - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Acl/Adapter/Memory/GetNoArgumentsDefaultActionCest.php b/tests/unit/Acl/Adapter/Memory/GetNoArgumentsDefaultActionCest.php new file mode 100644 index 00000000000..3de944404c6 --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/GetNoArgumentsDefaultActionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use UnitTester; + +class GetNoArgumentsDefaultActionCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: getNoArgumentsDefaultAction() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemoryGetNoArgumentsDefaultAction(UnitTester $I) + { + $I->wantToTest("Acl\Adapter\Memory - getNoArgumentsDefaultAction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Acl/Adapter/Memory/GetResourcesCest.php b/tests/unit/Acl/Adapter/Memory/GetResourcesCest.php new file mode 100644 index 00000000000..42fe09f8ff1 --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/GetResourcesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use UnitTester; + +class GetResourcesCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: getResources() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemoryGetResources(UnitTester $I) + { + $I->wantToTest("Acl\Adapter\Memory - getResources()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Acl/Adapter/Memory/GetRolesCest.php b/tests/unit/Acl/Adapter/Memory/GetRolesCest.php new file mode 100644 index 00000000000..fa035d14030 --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/GetRolesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use UnitTester; + +class GetRolesCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: getRoles() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemoryGetRoles(UnitTester $I) + { + $I->wantToTest("Acl\Adapter\Memory - getRoles()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Acl/Adapter/Memory/IsAllowedCest.php b/tests/unit/Acl/Adapter/Memory/IsAllowedCest.php new file mode 100644 index 00000000000..1d7a98fa5c3 --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/IsAllowedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use UnitTester; + +class IsAllowedCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: isAllowed() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemoryIsAllowed(UnitTester $I) + { + $I->wantToTest("Acl\Adapter\Memory - isAllowed()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Acl/Adapter/Memory/IsResourceCest.php b/tests/unit/Acl/Adapter/Memory/IsResourceCest.php new file mode 100644 index 00000000000..a8106abe15a --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/IsResourceCest.php @@ -0,0 +1,39 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use Phalcon\Acl; +use Phalcon\Acl\Adapter\Memory; +use Phalcon\Acl\Resource; +use UnitTester; + +class IsResourceCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: isResource() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemoryIsResource(UnitTester $I) + { + $I->wantToTest("Acl\Adapter\Memory - isResource()"); + $acl = new Memory(); + $aclResource = new Resource('Customers', 'Customer management'); + + $acl->addResource($aclResource, 'search'); + $actual = $acl->isResource('Customers'); + $I->assertTrue($actual); + } +} diff --git a/tests/unit/Acl/Adapter/Memory/IsRoleCest.php b/tests/unit/Acl/Adapter/Memory/IsRoleCest.php new file mode 100644 index 00000000000..0644d892985 --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/IsRoleCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use Phalcon\Acl; +use Phalcon\Acl\Adapter\Memory; +use Phalcon\Acl\Role; +use UnitTester; + +class IsRoleCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: isRole() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemoryIsRole(UnitTester $I) + { + $I->wantToTest("Acl\Adapter\Memory - isRole()"); + $acl = new Memory(); + $aclRole = new Role('Administrators', 'Super User access'); + + $acl->addRole($aclRole); + + $actual = $acl->isRole('Administrators'); + $I->assertTrue($actual); + } +} diff --git a/tests/unit/Acl/Adapter/Memory/SetDefaultActionCest.php b/tests/unit/Acl/Adapter/Memory/SetDefaultActionCest.php new file mode 100644 index 00000000000..92321f13f5e --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/SetDefaultActionCest.php @@ -0,0 +1,39 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use Phalcon\Acl; +use Phalcon\Acl\Adapter\Memory; +use UnitTester; + +class SetDefaultActionCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: setDefaultAction() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemorySetDefaultAction(UnitTester $I) + { + $I->wantToTest("Acl\Adapter\Memory - setDefaultAction()"); + $acl = new Memory(); + + $acl->setDefaultAction(Acl::ALLOW); + + $expected = Acl::ALLOW; + $actual = $acl->getDefaultAction(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Acl/Adapter/Memory/SetEventsManagerCest.php b/tests/unit/Acl/Adapter/Memory/SetEventsManagerCest.php new file mode 100644 index 00000000000..bdd126e005e --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use UnitTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: setEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemorySetEventsManager(UnitTester $I) + { + $I->wantToTest("Acl\Adapter\Memory - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Acl/Adapter/Memory/SetNoArgumentsDefaultActionCest.php b/tests/unit/Acl/Adapter/Memory/SetNoArgumentsDefaultActionCest.php new file mode 100644 index 00000000000..68974d4bb55 --- /dev/null +++ b/tests/unit/Acl/Adapter/Memory/SetNoArgumentsDefaultActionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter\Memory; + +use UnitTester; + +class SetNoArgumentsDefaultActionCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: setNoArgumentsDefaultAction() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclAdapterMemorySetNoArgumentsDefaultAction(UnitTester $I) + { + $I->wantToTest("Acl\Adapter\Memory - setNoArgumentsDefaultAction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Acl/Adapter/MemoryCest.php b/tests/unit/Acl/Adapter/MemoryCest.php new file mode 100644 index 00000000000..a9f92afa92b --- /dev/null +++ b/tests/unit/Acl/Adapter/MemoryCest.php @@ -0,0 +1,664 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Adapter; + +use Phalcon\Acl; +use Phalcon\Acl\Adapter\Memory; +use Phalcon\Acl\Resource; +use Phalcon\Acl\Role; +use Phalcon\Test\Fixtures\Acl\TestResourceAware; +use Phalcon\Test\Fixtures\Acl\TestRoleAware; +use Phalcon\Test\Fixtures\Acl\TestRoleResourceAware; +use PHPUnit\Framework\Exception; +use UnitTester; + +class MemoryCest +{ + + /** + * Tests the addRole for the same role twice + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testAclAddRoleTwiceReturnsFalse(UnitTester $I) + { + $acl = new Memory(); + $aclRole = new Role('Administrators', 'Super User access'); + + $acl->addRole($aclRole); + $actual = $acl->addRole($aclRole); + $I->assertFalse($actual); + } + + /** + * Tests the addRole for the same role twice by key + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testAclAddRoleTwiceByKeyReturnsFalse(UnitTester $I) + { + $acl = new Memory(); + $aclRole = new Role('Administrators', 'Super User access'); + + $acl->addRole($aclRole); + $actual = $acl->addRole('Administrators'); + $I->assertFalse($actual); + } + + /** + * Tests the wildcard allow/deny + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testAclWildcardAllowDeny(UnitTester $I) + { + $acl = new Memory(); + $acl->setDefaultAction(Acl::DENY); + + $aclRoles = [ + 'Admin' => new Role('Admin'), + 'Users' => new Role('Users'), + 'Guests' => new Role('Guests'), + ]; + + $aclResources = [ + 'welcome' => ['index', 'about'], + 'account' => ['index'], + ]; + + foreach ($aclRoles as $role => $object) { + $acl->addRole($object); + } + + foreach ($aclResources as $resource => $actions) { + $acl->addResource(new Resource($resource), $actions); + } + $acl->allow("*", "welcome", "index"); + + foreach ($aclRoles as $role => $object) { + $actual = $acl->isAllowed($role, 'welcome', 'index'); + $I->assertTrue($actual); + } + + $acl->deny("*", "welcome", "index"); + foreach ($aclRoles as $role => $object) { + $actual = $acl->isAllowed($role, 'welcome', 'index'); + $I->assertFalse($actual); + } + } + + /** + * Tests the isRole with wrong keyword + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testAclIsRoleWithWrongKeyReturnsFalse(UnitTester $I) + { + $acl = new Memory(); + $actual = $acl->isRole('Wrong'); + $I->assertFalse($actual); + } + + /** + * Tests the ACL objects default action + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testAclObjectsWithDefaultAction(UnitTester $I) + { + $acl = new Memory(); + $aclRole = new Role('Administrators', 'Super User access'); + $aclResource = new Resource('Customers', 'Customer management'); + + $acl->setDefaultAction(Acl::DENY); + + $acl->addRole($aclRole); + $acl->addResource($aclResource, ['search', 'destroy']); + + $expected = Acl::DENY; + $actual = $acl->isAllowed('Administrators', 'Customers', 'search'); + $I->assertEquals($expected, $actual); + + $acl = new Memory(); + $aclRole = new Role('Administrators', 'Super User access'); + $aclResource = new Resource('Customers', 'Customer management'); + + $acl->setDefaultAction(Acl::DENY); + + $acl->addRole($aclRole); + $acl->addResource($aclResource, ['search', 'destroy']); + + $expected = Acl::DENY; + $actual = $acl->isAllowed('Administrators', 'Customers', 'destroy'); + $I->assertEquals($expected, $actual); + } + + /** + * Tests the ACL objects + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testAclObjects(UnitTester $I) + { + $acl = new Memory(); + $aclRole = new Role('Administrators', 'Super User access'); + $aclResource = new Resource('Customers', 'Customer management'); + + $acl->setDefaultAction(Acl::DENY); + + $acl->addRole($aclRole); + $acl->addResource($aclResource, ['search', 'destroy']); + + $acl->allow('Administrators', 'Customers', 'search'); + $acl->deny('Administrators', 'Customers', 'destroy'); + + $expected = Acl::ALLOW; + $actual = $acl->isAllowed('Administrators', 'Customers', 'search'); + $I->assertEquals($expected, $actual); + + $acl = new Memory(); + $aclRole = new Role('Administrators', 'Super User access'); + $aclResource = new Resource('Customers', 'Customer management'); + + $acl->setDefaultAction(Acl::DENY); + + $acl->addRole($aclRole); + $acl->addResource($aclResource, ['search', 'destroy']); + + $acl->allow('Administrators', 'Customers', 'search'); + $acl->deny('Administrators', 'Customers', 'destroy'); + + $expected = Acl::DENY; + $actual = $acl->isAllowed('Administrators', 'Customers', 'destroy'); + $I->assertEquals($expected, $actual); + } + + /** + * Tests serializing the ACL + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testAclSerialize(UnitTester $I) + { + $filename = $I->getNewFileName('acl', 'log'); + + $acl = new Memory(); + $aclRole = new Role('Administrators', 'Super User access'); + $aclResource = new Resource('Customers', 'Customer management'); + + $acl->addRole($aclRole); + $acl->addResource($aclResource, ['search', 'destroy']); + + $acl->allow('Administrators', 'Customers', 'search'); + $acl->deny('Administrators', 'Customers', 'destroy'); + + $contents = serialize($acl); + file_put_contents(cacheFolder($filename), $contents); + + $acl = null; + + $contents = file_get_contents(cacheFolder($filename)); + + $I->safeDeleteFile(cacheFolder($filename)); + + $acl = unserialize($contents); + $actual = ($acl instanceof Memory); + $I->assertTrue($actual); + + $actual = $acl->isRole('Administrators'); + $I->assertTrue($actual); + + $actual = $acl->isResource('Customers'); + $I->assertTrue($actual); + + $expected = Acl::ALLOW; + $actual = $acl->isAllowed('Administrators', 'Customers', 'search'); + $I->assertEquals($expected, $actual); + + $expected = Acl::DENY; + $actual = $acl->isAllowed('Administrators', 'Customers', 'destroy'); + $I->assertEquals($expected, $actual); + } + + /** + * Tests negation of inherited roles + * + * @issue https://github.com/phalcon/cphalcon/issues/65 + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testAclNegationOfInheritedRoles(UnitTester $I) + { + $acl = new Memory; + $acl->setDefaultAction(Acl::DENY); + + $acl->addRole('Guests'); + $acl->addRole('Members', 'Guests'); + + $acl->addResource('Login', ['help', 'index']); + + $acl->allow('Guests', 'Login', '*'); + $acl->deny('Guests', 'Login', ['help']); + $acl->deny('Members', 'Login', ['index']); + + $actual = (bool) $acl->isAllowed('Members', 'Login', 'index'); + $I->assertFalse($actual); + + $actual = (bool) $acl->isAllowed('Guests', 'Login', 'index'); + $I->assertTrue($actual); + + $actual = (bool) $acl->isAllowed('Guests', 'Login', 'help'); + $I->assertFalse($actual); + } + + /** + * Tests ACL Resources with numeric values + * + * @issue https://github.com/phalcon/cphalcon/issues/1513 + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testAclResourcesWithNumericValues(UnitTester $I) + { + $acl = new Memory; + $acl->setDefaultAction(Acl::DENY); + + $acl->addRole(new Role('11')); + $acl->addResource(new Resource('11'), ['index']); + + $actual = $acl->isResource('11'); + $I->assertTrue($actual); + } + + /** + * Tests function in Acl Allow Method + * + * @issue https://github.com/phalcon/cphalcon/issues/11235 + * + * @author Wojciech Slawski + * @since 2015-12-16 + */ + public function testAclAllowFunction(UnitTester $I) + { + $acl = new Memory; + $acl->setDefaultAction(Acl::DENY); + $acl->addRole('Guests'); + $acl->addRole('Members', 'Guests'); + $acl->addRole('Admins', 'Members'); + $acl->addResource('Post', ['update']); + + $guest = new TestRoleAware(1, 'Guests'); + $member = new TestRoleAware(2, 'Members'); + $anotherMember = new TestRoleAware(3, 'Members'); + $admin = new TestRoleAware(4, 'Admins'); + $model = new TestResourceAware(2, 'Post'); + + $acl->deny('Guests', 'Post', 'update'); + $acl->allow('Members', 'Post', 'update', function (TestRoleAware $user, TestResourceAware $model) { + return $user->getId() == $model->getUser(); + }); + $acl->allow('Admins', 'Post', 'update'); + + $actual = $acl->isAllowed($guest, $model, 'update'); + $I->assertFalse($actual); + + $actual = $acl->isAllowed($member, $model, 'update'); + $I->assertTrue($actual); + + $actual = $acl->isAllowed($anotherMember, $model, 'update'); + $I->assertFalse($actual); + + $actual = $acl->isAllowed($admin, $model, 'update'); + $I->assertTrue($actual); + } + + /** + * Tests function in Acl Allow Method + * + * @issue https://github.com/phalcon/cphalcon/issues/12004 + * + * @author Wojciech Slawski + * @since 2016-07-22 + */ + public function testIssue12004(UnitTester $I) + { + $acl = new Memory(); + + $acl->setDefaultAction(Acl::DENY); + + $roleGuest = new Role("guest"); + $roleUser = new Role("user"); + $roleAdmin = new Role("admin"); + $roleSuperAdmin = new Role("superadmin"); + + $acl->addRole($roleGuest); + $acl->addRole($roleUser, $roleGuest); + $acl->addRole($roleAdmin, $roleUser); + $acl->addRole($roleSuperAdmin, $roleAdmin); + + $acl->addResource("payment", ["paypal", "facebook",]); + + $acl->allow($roleGuest->getName(), "payment", "paypal"); + $acl->allow($roleGuest->getName(), "payment", "facebook"); + $acl->allow($roleUser->getName(), "payment", "*"); + + $actual = $acl->isAllowed($roleUser->getName(), "payment", "notSet"); + $I->assertTrue($actual); + $actual = $acl->isAllowed($roleUser->getName(), "payment", "*"); + $I->assertTrue($actual); + $actual = $acl->isAllowed($roleAdmin->getName(), "payment", "notSet"); + $I->assertTrue($actual); + $actual = $acl->isAllowed($roleAdmin->getName(), "payment", "*"); + $I->assertTrue($actual); + } + + /** + * Tests function in Acl Allow Method without arguments + * + * @issue https://github.com/phalcon/cphalcon/issues/12094 + * + * @author Wojciech Slawski + * @since 2016-06-05 + */ + public function testAclAllowFunctionNoArguments(UnitTester $I) + { + $acl = new Memory; + $acl->setDefaultAction(Acl::ALLOW); + $acl->setNoArgumentsDefaultAction(Acl::DENY); + $acl->addRole('Guests'); + $acl->addRole('Members', 'Guests'); + $acl->addRole('Admins', 'Members'); + $acl->addResource('Post', ['update']); + + $guest = new TestRoleAware(1, 'Guests'); + $member = new TestRoleAware(2, 'Members'); + $anotherMember = new TestRoleAware(3, 'Members'); + $admin = new TestRoleAware(4, 'Admins'); + $model = new TestResourceAware(2, 'Post'); + + $acl->allow('Guests', 'Post', 'update', function ($parameter) { + return $parameter % 2 == 0; + }); + $acl->allow('Members', 'Post', 'update', function ($parameter) { + return $parameter % 2 == 0; + }); + $acl->allow('Admins', 'Post', 'update'); + + $actual = @$acl->isAllowed($guest, $model, 'update'); + $I->assertFalse($actual); + $actual = @$acl->isAllowed($member, $model, 'update'); + $I->assertFalse($actual); + $actual = @$acl->isAllowed($anotherMember, $model, 'update'); + $I->assertFalse($actual); + $actual = @$acl->isAllowed($admin, $model, 'update'); + $I->assertTrue($actual); + } + + /** + * Tests function in Acl Allow Method without arguments + * + * @issue https://github.com/phalcon/cphalcon/issues/12094 + * @author Wojciech Slawski + * @since 2016-06-05 + */ + public function testAclAllowFunctionNoArgumentsWithWarning(UnitTester $I) + { + $I->expectThrowable( + new Exception( + "You didn't provide any parameters when check Guests can " . + "update Post. We will use default action when no arguments.", + 1024 + ), + function () { + $acl = new Memory; + $acl->setDefaultAction(Acl::ALLOW); + $acl->setNoArgumentsDefaultAction(Acl::DENY); + $acl->addRole('Guests'); + $acl->addRole('Members', 'Guests'); + $acl->addRole('Admins', 'Members'); + $acl->addResource('Post', ['update']); + + $guest = new TestRoleAware(1, 'Guests'); + $member = new TestRoleAware(2, 'Members'); + $anotherMember = new TestRoleAware(3, 'Members'); + $admin = new TestRoleAware(4, 'Admins'); + $model = new TestResourceAware(2, 'Post'); + + $acl->allow('Guests', 'Post', 'update', function ($parameter) { + return $parameter % 2 == 0; + }); + $acl->allow('Members', 'Post', 'update', function ($parameter) { + return $parameter % 2 == 0; + }); + $acl->allow('Admins', 'Post', 'update'); + + $actual = $acl->isAllowed($guest, $model, 'update'); + $I->assertFalse($actual); + $actual = $acl->isAllowed($member, $model, 'update'); + $I->assertFalse($actual); + $actual = $acl->isAllowed($anotherMember, $model, 'update'); + $I->assertFalse($actual); + $actual = $acl->isAllowed($admin, $model, 'update'); + $I->assertTrue($actual); + } + ); + } + + /** + * Tests acl with adding new rule for role after adding wildcard rule + * + * @issue https://github.com/phalcon/cphalcon/issues/2648 + * + * @author Wojciech Slawski + * @since 2016-10-01 + */ + public function testWildCardLastRole(UnitTester $I) + { + $acl = new Memory(); + $acl->addRole(new Role("Guests")); + $acl->addResource(new Resource('Post'), ['index', 'update', 'create']); + + $acl->allow('Guests', 'Post', 'create'); + $acl->allow('*', 'Post', 'index'); + $acl->allow('Guests', 'Post', 'update'); + + $actual = $acl->isAllowed('Guests', 'Post', 'create'); + $I->assertTrue($actual); + $actual = $acl->isAllowed('Guests', 'Post', 'index'); + $I->assertTrue($actual); + $actual = $acl->isAllowed('Guests', 'Post', 'update'); + $I->assertTrue($actual); + } + + /** + * Tests adding wildcard rule second time + * + * @issue https://github.com/phalcon/cphalcon/issues/2648 + * + * @author Wojciech Slawski + * @since 2016-10-01 + */ + public function testWildCardSecondTime(UnitTester $I) + { + $acl = new Memory(); + $acl->addRole(new Role("Guests")); + $acl->addResource(new Resource('Post'), ['index', 'update', 'create']); + + $acl->allow('Guests', 'Post', 'create'); + $acl->allow('*', 'Post', 'index'); + $acl->allow('*', 'Post', 'update'); + + $actual = $acl->isAllowed('Guests', 'Post', 'create'); + $I->assertTrue($actual); + $actual = $acl->isAllowed('Guests', 'Post', 'index'); + $I->assertTrue($actual); + $actual = $acl->isAllowed('Guests', 'Post', 'update'); + $I->assertTrue($actual); + } + + /** + * Tests adding wildcard rule second time + * + * @issue https://github.com/phalcon/cphalcon/issues/12573 + * + * @author Wojciech Slawski + * @since 2017-01-25 + */ + public function testDefaultAction(UnitTester $I) + { + $acl = new Memory(); + $acl->setDefaultAction(Acl::DENY); + $acl->addResource(new Acl\Resource('Post'), ['index', 'update', 'create']); + $acl->addRole(new Role('Guests')); + + $acl->allow('Guests', 'Post', 'index'); + $actual = $acl->isAllowed('Guests', 'Post', 'index'); + $I->assertTrue($actual); + $actual = $acl->isAllowed('Guests', 'Post', 'update'); + $I->assertFalse($actual); + } + + /** + * Tests role and resource objects as isAllowed parameters + * + * @author Wojciech Slawski + * @since 2017-02-15 + */ + public function testRoleResourceObjects(UnitTester $I) + { + $acl = new Memory(); + $acl->setDefaultAction(Acl::DENY); + $role = new Role('Guests'); + $resource = new Resource('Post'); + $acl->addRole($role); + $acl->addResource($resource, ['index', 'update', 'create']); + + $acl->allow('Guests', 'Post', 'index'); + + $actual = $acl->isAllowed($role, $resource, 'index'); + $I->assertTrue($actual); + $actual = $acl->isAllowed($role, $resource, 'update'); + $I->assertFalse($actual); + } + + /** + * Tests role and resource objects as isAllowed parameters of the same class + * + * @author Wojciech Slawski + * @since 2017-02-15 + */ + public function testRoleResourceSameClassObjects(UnitTester $I) + { + $acl = new Memory(); + $acl->setDefaultAction(Acl::DENY); + $role = new TestRoleResourceAware(1, 'User', 'Admin'); + $resource = new TestRoleResourceAware(2, 'User', 'Admin'); + $acl->addRole('Admin'); + $acl->addResource('User', ['update']); + $acl->allow( + 'Admin', + 'User', + ['update'], + function (TestRoleResourceAware $admin, TestRoleResourceAware $user) { + return $admin->getUser() == $user->getUser(); + } + ); + + $actual = $acl->isAllowed($role, $resource, 'update'); + $I->assertFalse($actual); + $actual = $acl->isAllowed($role, $role, 'update'); + $I->assertTrue($actual); + $actual = $acl->isAllowed($resource, $resource, 'update'); + $I->assertTrue($actual); + } + + /** + * Tests negation of multiple inherited roles + * + * + * @author cq-z <64899484@qq.com> + * @since 2018-10-10 + */ + public function testAclNegationOfMultipleInheritedRoles(UnitTester $I) + { + $acl = new Memory; + $acl->setDefaultAction(Acl::DENY); + + $acl->addRole('Guests'); + $acl->addRole('Guests2'); + $acl->addRole('Members', ['Guests', 'Guests2']); + + $acl->addResource('Login', ['help', 'index']); + + $acl->allow('Guests', 'Login', '*'); + $acl->deny('Guests2', 'Login', ['help']); + $acl->deny('Members', 'Login', ['index']); + + $actual = (bool) $acl->isAllowed('Members', 'Login', 'index'); + $I->assertFalse($actual); + + $actual = (bool) $acl->isAllowed('Guests', 'Login', 'help'); + $I->assertTrue($actual); + + $actual = (bool) $acl->isAllowed('Members', 'Login', 'help'); + $I->assertTrue($actual); + } + + /** + * Tests negation of multilayer inherited roles + * + * + * @author cq-z <64899484@qq.com> + * @since 2018-10-10 + */ + public function testAclNegationOfMultilayerInheritedRoles(UnitTester $I) + { + $acl = new Memory; + $acl->setDefaultAction(Acl::DENY); + + $acl->addRole('Guests1'); + $acl->addRole('Guests12', 'Guests1'); + $acl->addRole('Guests2'); + $acl->addRole('Guests22', 'Guests2'); + $acl->addRole('Members', ['Guests12', 'Guests22']); + + $acl->addResource('Login', ['help', 'index']); + $acl->addResource('Logout', ['help', 'index']); + + $acl->allow('Guests1', 'Login', '*'); + $acl->deny('Guests12', 'Login', ['help']); + + $acl->deny('Guests2', 'Logout', '*'); + $acl->allow('Guests22', 'Logout', ['index']); + + $actual = (bool) $acl->isAllowed('Members', 'Login', 'index'); + $I->assertTrue($actual); + + $actual = (bool) $acl->isAllowed('Members', 'Login', 'help'); + $I->assertFalse($actual); + + $actual = (bool) $acl->isAllowed('Members', 'Logout', 'help'); + $I->assertFalse($actual); + + $actual = (bool) $acl->isAllowed('Members', 'Login', 'index'); + $I->assertTrue($actual); + } +} diff --git a/tests/unit/Acl/Adapter/MemoryTest.php b/tests/unit/Acl/Adapter/MemoryTest.php deleted file mode 100644 index 483db2372bc..00000000000 --- a/tests/unit/Acl/Adapter/MemoryTest.php +++ /dev/null @@ -1,868 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Acl\Adapter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class MemoryTest extends UnitTest -{ - /** - * Tests the ACL constants - * - * @author Nikolaos Dimopoulos - * @since 2014-10-03 - */ - public function testAclConstants() - { - $this->specify( - "The ACL constants are not correct", - function () { - expect(Acl::ALLOW)->equals(1); - expect(Acl::DENY)->equals(0); - } - ); - } - - /** - * Tests the setDefaultAction - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testAclDefaultAction() - { - $this->specify( - 'The Acl\Adapter\Memory does not get/set the default action correctly', - function () { - $acl = new Memory(); - - $acl->setDefaultAction(Acl::ALLOW); - - $expected = Acl::ALLOW; - $actual = $acl->getDefaultAction(); - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests the addRole - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testAclAddRoleExists() - { - $this->specify( - 'Adding a ACL\Role in the ACL does not exist', - function () { - $acl = new Memory(); - $aclRole = new Role('Administrators', 'Super User access'); - - $acl->addRole($aclRole); - - $actual = $acl->isRole('Administrators'); - expect($actual)->true(); - } - ); - } - - /** - * Tests the addRole for the same role twice - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testAclAddRoleTwiceReturnsFalse() - { - $this->specify( - 'Acl\Role added twice returns true', - function () { - $acl = new Memory(); - $aclRole = new Role('Administrators', 'Super User access'); - - $acl->addRole($aclRole); - $actual = $acl->addRole($aclRole); - - expect($actual)->false(); - } - ); - } - - /** - * Tests the addRole for the same role twice by key - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testAclAddRoleTwiceByKeyReturnsFalse() - { - $this->specify( - 'Acl\Role added twice by key returns true', - function () { - $acl = new Memory(); - $aclRole = new Role('Administrators', 'Super User access'); - - $acl->addRole($aclRole); - $actual = $acl->addRole('Administrators'); - - expect($actual)->false(); - } - ); - } - - /** - * Tests the wildcard allow/deny - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testAclWildcardAllowDeny() - { - $this->specify( - 'Acl\Role added twice by key returns true', - function () { - $acl = new Memory(); - $acl->setDefaultAction(Acl::DENY); - - $aclRoles = [ - 'Admin' => new Role('Admin'), - 'Users' => new Role('Users'), - 'Guests' => new Role('Guests') - ]; - - $aclResources = [ - 'welcome' => ['index', 'about'], - 'account' => ['index'], - ]; - - foreach ($aclRoles as $role => $object) { - $acl->addRole($object); - } - - foreach ($aclResources as $resource => $actions) { - $acl->addResource(new Resource($resource), $actions); - } - $acl->allow("*", "welcome", "index"); - - foreach ($aclRoles as $role => $object) { - expect($acl->isAllowed($role, 'welcome', 'index'))->true(); - } - - $acl->deny("*", "welcome", "index"); - foreach ($aclRoles as $role => $object) { - expect($acl->isAllowed($role, 'welcome', 'index'))->false(); - } - } - ); - } - - /** - * Tests the isRole with wrong keyword - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testAclIsRoleWithWrongKeyReturnsFalse() - { - $this->specify( - 'Acl\Role added with wrong key returns true in isRole', - function () { - $acl = new Memory(); - - $actual = $acl->isRole('Wrong'); - - expect($actual)->false(); - } - ); - } - - /** - * Tests the role name - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testAclRoleName() - { - $this->specify( - 'Acl\Role does not exist in Acl', - function () { - $acl = new Memory(); - $aclRole = new Role('Administrators', 'Super User access'); - - $acl->addRole($aclRole); - - $actual = $acl->isRole('Administrators'); - - expect($actual)->true(); - } - ); - } - - /** - * Tests the addResource - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testAclAddResourceExists() - { - $this->specify( - 'Acl\Resource does not exist in Acl', - function () { - $acl = new Memory(); - $aclResource = new Resource('Customers', 'Customer management'); - - $actual = $acl->addResource($aclResource, 'search'); - - expect($actual)->true(); - } - ); - } - - /** - * Tests the resource name - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testAclResourceName() - { - $this->specify( - 'Acl\Resource by name does not exist in the acl', - function () { - $acl = new Memory(); - $aclResource = new Resource('Customers', 'Customer management'); - - $acl->addResource($aclResource, 'search'); - - $actual = $acl->isResource('Customers'); - - expect($actual)->true(); - } - ); - } - - /** - * Tests the ACL objects default action - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testAclObjectsWithDefaultAction() - { - $this->specify( - 'Acl with default action search does not return correct results', - function () { - $acl = new Memory(); - $aclRole = new Role('Administrators', 'Super User access'); - $aclResource = new Resource('Customers', 'Customer management'); - - $acl->setDefaultAction(Acl::DENY); - - $acl->addRole($aclRole); - $acl->addResource($aclResource, ['search', 'destroy']); - - $expected = Acl::DENY; - $actual = $acl->isAllowed('Administrators', 'Customers', 'search'); - expect($actual)->equals($expected); - } - ); - - $this->specify( - 'Acl with default action destroy does not return correct results', - function () { - $acl = new Memory(); - $aclRole = new Role('Administrators', 'Super User access'); - $aclResource = new Resource('Customers', 'Customer management'); - - $acl->setDefaultAction(Acl::DENY); - - $acl->addRole($aclRole); - $acl->addResource($aclResource, ['search', 'destroy']); - - $expected = Acl::DENY; - $actual = $acl->isAllowed('Administrators', 'Customers', 'destroy'); - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests the ACL objects - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testAclObjects() - { - $this->specify( - 'Acl search does not return correct results', - function () { - $acl = new Memory(); - $aclRole = new Role('Administrators', 'Super User access'); - $aclResource = new Resource('Customers', 'Customer management'); - - $acl->setDefaultAction(Acl::DENY); - - $acl->addRole($aclRole); - $acl->addResource($aclResource, ['search', 'destroy']); - - $acl->allow('Administrators', 'Customers', 'search'); - $acl->deny('Administrators', 'Customers', 'destroy'); - - $expected = Acl::ALLOW; - $actual = $acl->isAllowed('Administrators', 'Customers', 'search'); - expect($actual)->equals($expected); - } - ); - - $this->specify( - 'Acl destroy does not return correct results', - function () { - $acl = new Memory(); - $aclRole = new Role('Administrators', 'Super User access'); - $aclResource = new Resource('Customers', 'Customer management'); - - $acl->setDefaultAction(Acl::DENY); - - $acl->addRole($aclRole); - $acl->addResource($aclResource, ['search', 'destroy']); - - $acl->allow('Administrators', 'Customers', 'search'); - $acl->deny('Administrators', 'Customers', 'destroy'); - - $expected = Acl::DENY; - $actual = $acl->isAllowed('Administrators', 'Customers', 'destroy'); - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests serializing the ACL - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testAclSerialize() - { - $this->specify( - 'Acl serialization/unserialization does not return a correct object back', - function () { - $filename = $this->tester->getNewFileName('acl', 'log'); - - $acl = new Memory(); - $aclRole = new Role('Administrators', 'Super User access'); - $aclResource = new Resource('Customers', 'Customer management'); - - $acl->addRole($aclRole); - $acl->addResource($aclResource, ['search', 'destroy']); - - $acl->allow('Administrators', 'Customers', 'search'); - $acl->deny('Administrators', 'Customers', 'destroy'); - - $contents = serialize($acl); - file_put_contents(PATH_CACHE . $filename, $contents); - - $acl = null; - - $contents = file_get_contents(PATH_CACHE . $filename); - - $this->tester->cleanFile(PATH_CACHE, $filename); - - $acl = unserialize($contents); - $actual = ($acl instanceof Memory); - expect($actual)->true(); - - $actual = $acl->isRole('Administrators'); - expect($actual)->true(); - - $actual = $acl->isResource('Customers'); - expect($actual)->true(); - - $expected = Acl::ALLOW; - $actual = $acl->isAllowed('Administrators', 'Customers', 'search'); - expect($actual)->equals($expected); - - $expected = Acl::DENY; - $actual = $acl->isAllowed('Administrators', 'Customers', 'destroy'); - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests negation of inherited roles - * - * @issue https://github.com/phalcon/cphalcon/issues/65 - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testAclNegationOfInheritedRoles() - { - $this->specify( - 'Negation of inherited roles does not return the correct result', - function () { - $acl = new Memory; - $acl->setDefaultAction(Acl::DENY); - - $acl->addRole('Guests'); - $acl->addRole('Members', 'Guests'); - - $acl->addResource('Login', ['help', 'index']); - - $acl->allow('Guests', 'Login', '*'); - $acl->deny('Guests', 'Login', ['help']); - $acl->deny('Members', 'Login', ['index']); - - $actual = (bool)$acl->isAllowed('Members', 'Login', 'index'); - expect($actual)->false(); - - $actual = (bool)$acl->isAllowed('Guests', 'Login', 'index'); - expect($actual)->true(); - - $actual = (bool)$acl->isAllowed('Guests', 'Login', 'help'); - expect($actual)->false(); - } - ); - } - - /** - * Tests ACL Resources with numeric values - * - * @issue https://github.com/phalcon/cphalcon/issues/1513 - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testAclResourcesWithNumericValues() - { - $this->specify( - 'ACL Resources with numeric values are not set properly', - function () { - $acl = new Memory; - $acl->setDefaultAction(Acl::DENY); - - $acl->addRole(new Role('11')); - $acl->addResource(new Resource('11'), ['index']); - - $actual = $acl->isResource('11'); - expect($actual)->true(); - } - ); - } - - /** - * Tests function in Acl Allow Method - * - * @issue https://github.com/phalcon/cphalcon/issues/11235 - * - * @author Wojciech Slawski - * @since 2015-12-16 - */ - public function testAclAllowFunction() - { - $this->specify( - 'The function in allow should be called and isAllowed should return correct values when using function in allow method', - function () { - $acl = new Memory; - $acl->setDefaultAction(Acl::DENY); - $acl->addRole('Guests'); - $acl->addRole('Members', 'Guests'); - $acl->addRole('Admins', 'Members'); - $acl->addResource('Post', ['update']); - - $guest = new TestRoleAware(1, 'Guests'); - $member = new TestRoleAware(2, 'Members'); - $anotherMember = new TestRoleAware(3, 'Members'); - $admin = new TestRoleAware(4, 'Admins'); - $model = new TestResourceAware(2, 'Post'); - - $acl->deny('Guests', 'Post', 'update'); - $acl->allow('Members', 'Post', 'update', function (TestRoleAware $user, TestResourceAware $model) { - return $user->getId() == $model->getUser(); - }); - $acl->allow('Admins', 'Post', 'update'); - - expect($acl->isAllowed($guest, $model, 'update'))->false(); - expect($acl->isAllowed($member, $model, 'update'))->true(); - expect($acl->isAllowed($anotherMember, $model, 'update'))->false(); - expect($acl->isAllowed($admin, $model, 'update'))->true(); - } - ); - } - - /** - * Tests function in Acl Allow Method - * - * @issue https://github.com/phalcon/cphalcon/issues/12004 - * - * @author Wojciech Slawski - * @since 2016-07-22 - */ - public function testIssue12004() - { - $this->specify( - 'Wildcard inheritance should work correctly.', - function () { - $acl = new Memory(); - - $acl->setDefaultAction(Acl::DENY); - - $roleGuest = new Role("guest"); - $roleUser = new Role("user"); - $roleAdmin = new Role("admin"); - $roleSuperAdmin = new Role("superadmin"); - - $acl->addRole($roleGuest); - $acl->addRole($roleUser, $roleGuest); - $acl->addRole($roleAdmin, $roleUser); - $acl->addRole($roleSuperAdmin, $roleAdmin); - - $acl->addResource("payment", ["paypal", "facebook", ]); - - $acl->allow($roleGuest->getName(), "payment", "paypal"); - $acl->allow($roleGuest->getName(), "payment", "facebook"); - - $acl->allow($roleUser->getName(), "payment", "*"); - - expect($acl->isAllowed($roleUser->getName(), "payment", "notSet"))->true(); - expect($acl->isAllowed($roleUser->getName(), "payment", "*"))->true(); - expect($acl->isAllowed($roleAdmin->getName(), "payment", "notSet"))->true(); - expect($acl->isAllowed($roleAdmin->getName(), "payment", "*"))->true(); - } - ); - } - - /** - * Tests function in Acl Allow Method without arguments - * - * @issue https://github.com/phalcon/cphalcon/issues/12094 - * - * @author Wojciech Slawski - * @since 2016-06-05 - */ - public function testAclAllowFunctionNoArguments() - { - $this->specify( - 'The function in allow should be called and isAllowed should return correct values when using function in allow method', - function () { - $acl = new Memory; - $acl->setDefaultAction(Acl::ALLOW); - $acl->setNoArgumentsDefaultAction(Acl::DENY); - $acl->addRole('Guests'); - $acl->addRole('Members', 'Guests'); - $acl->addRole('Admins', 'Members'); - $acl->addResource('Post', ['update']); - - $guest = new TestRoleAware(1, 'Guests'); - $member = new TestRoleAware(2, 'Members'); - $anotherMember = new TestRoleAware(3, 'Members'); - $admin = new TestRoleAware(4, 'Admins'); - $model = new TestResourceAware(2, 'Post'); - - $acl->allow('Guests', 'Post', 'update', function ($parameter) { - return $parameter % 2 == 0; - }); - $acl->allow('Members', 'Post', 'update', function ($parameter) { - return $parameter % 2 == 0; - }); - $acl->allow('Admins', 'Post', 'update'); - - expect(@$acl->isAllowed($guest, $model, 'update'))->false(); - expect(@$acl->isAllowed($member, $model, 'update'))->false(); - expect(@$acl->isAllowed($anotherMember, $model, 'update'))->false(); - expect(@$acl->isAllowed($admin, $model, 'update'))->true(); - } - ); - } - - /** - * Tests function in Acl Allow Method without arguments - * - * @issue https://github.com/phalcon/cphalcon/issues/12094 - * @author Wojciech Slawski - * @since 2016-06-05 - * - * @expectedException \PHPUnit\Framework\Exception - * @expectedExceptionMessage You didn't provide any parameters when check Guests can update Post. We will use default action when no arguments. - */ - public function testAclAllowFunctionNoArgumentsWithWarning() - { - $this->specify( - 'The function in allow should be called and isAllowed should return correct values when using function in allow method', - function () { - $acl = new Memory; - $acl->setDefaultAction(Acl::ALLOW); - $acl->setNoArgumentsDefaultAction(Acl::DENY); - $acl->addRole('Guests'); - $acl->addRole('Members', 'Guests'); - $acl->addRole('Admins', 'Members'); - $acl->addResource('Post', ['update']); - - $guest = new TestRoleAware(1, 'Guests'); - $member = new TestRoleAware(2, 'Members'); - $anotherMember = new TestRoleAware(3, 'Members'); - $admin = new TestRoleAware(4, 'Admins'); - $model = new TestResourceAware(2, 'Post'); - - $acl->allow('Guests', 'Post', 'update', function ($parameter) { - return $parameter % 2 == 0; - }); - $acl->allow('Members', 'Post', 'update', function ($parameter) { - return $parameter % 2 == 0; - }); - $acl->allow('Admins', 'Post', 'update'); - - expect($acl->isAllowed($guest, $model, 'update'))->false(); - expect($acl->isAllowed($member, $model, 'update'))->false(); - expect($acl->isAllowed($anotherMember, $model, 'update'))->false(); - expect($acl->isAllowed($admin, $model, 'update'))->true(); - } - ); - } - - /** - * Tests acl with adding new rule for role after adding wildcard rule - * - * @issue https://github.com/phalcon/cphalcon/issues/2648 - * - * @author Wojciech Slawski - * @since 2016-10-01 - */ - public function testWildCardLastRole() - { - $this->specify( - "Cant add acl rule to existing role after adding wildcard rule", - function () { - $acl = new Memory(); - $acl->addRole(new Role("Guests")); - $acl->addResource(new Resource('Post'), ['index', 'update', 'create']); - - $acl->allow('Guests', 'Post', 'create'); - $acl->allow('*', 'Post', 'index'); - $acl->allow('Guests', 'Post', 'update'); - - expect($acl->isAllowed('Guests', 'Post', 'create'))->true(); - expect($acl->isAllowed('Guests', 'Post', 'index'))->true(); - expect($acl->isAllowed('Guests', 'Post', 'update'))->true(); - } - ); - } - - /** - * Tests adding wildcard rule second time - * - * @issue https://github.com/phalcon/cphalcon/issues/2648 - * - * @author Wojciech Slawski - * @since 2016-10-01 - */ - public function testWildCardSecondTime() - { - $this->specify( - "Can't add acl rule to existing wildcard role", - function () { - $acl = new Memory(); - $acl->addRole(new Role("Guests")); - $acl->addResource(new Resource('Post'), ['index', 'update', 'create']); - - $acl->allow('Guests', 'Post', 'create'); - $acl->allow('*', 'Post', 'index'); - $acl->allow('*', 'Post', 'update'); - - expect($acl->isAllowed('Guests', 'Post', 'create'))->true(); - expect($acl->isAllowed('Guests', 'Post', 'index'))->true(); - expect($acl->isAllowed('Guests', 'Post', 'update'))->true(); - } - ); - } - - /** - * Tests adding wildcard rule second time - * - * @issue https://github.com/phalcon/cphalcon/issues/12573 - * - * @author Wojciech Slawski - * @since 2017-01-25 - */ - public function testDefaultAction() - { - $this->specify( - "Default access doesn't work as expected", - function () { - $acl = new Memory(); - $acl->setDefaultAction(Acl::DENY); - $acl->addResource(new Acl\Resource('Post'), ['index', 'update', 'create']); - $acl->addRole(new Role('Guests')); - - $acl->allow('Guests', 'Post', 'index'); - expect($acl->isAllowed('Guests', 'Post', 'index'))->true(); - expect($acl->isAllowed('Guests', 'Post', 'update'))->false(); - } - ); - } - - /** - * Tests role and resource objects as isAllowed parameters - * - * @author Wojciech Slawski - * @since 2017-02-15 - */ - public function testRoleResourceObjects() - { - $this->specify( - "Role and Resource objects doesn't work with isAllowed method", - function () { - $acl = new Memory(); - $acl->setDefaultAction(Acl::DENY); - $role = new Role('Guests'); - $resource = new Resource('Post'); - $acl->addRole($role); - $acl->addResource($resource, ['index', 'update', 'create']); - - $acl->allow('Guests', 'Post', 'index'); - - expect($acl->isAllowed($role, $resource, 'index'))->true(); - expect($acl->isAllowed($role, $resource, 'update'))->false(); - } - ); - } - - /** - * Tests role and resource objects as isAllowed parameters of the same class - * - * @author Wojciech Slawski - * @since 2017-02-15 - */ - public function testRoleResourceSameClassObjects() - { - $acl = new Memory(); - $acl->setDefaultAction(Acl::DENY); - $role = new TestRoleResourceAware(1, 'User', 'Admin'); - $resource = new TestRoleResourceAware(2, 'User', 'Admin'); - $acl->addRole('Admin'); - $acl->addResource('User', ['update']); - $acl->allow( - 'Admin', - 'User', - ['update'], - function (TestRoleResourceAware $admin, TestRoleResourceAware $user) { - return $admin->getUser() == $user->getUser(); - } - ); - expect($acl->isAllowed($role, $resource, 'update'))->false(); - expect($acl->isAllowed($role, $role, 'update'))->true(); - expect($acl->isAllowed($resource, $resource, 'update'))->true(); - } - - - /** - * Tests negation of multiple inherited roles - * - * - * @author cq-z <64899484@qq.com> - * @since 2018-10-10 - */ - public function testAclNegationOfMultipleInheritedRoles() - { - $this->specify( - 'Negation of multiple inherited roles does not return the correct result', - function () { - $acl = new Memory; - $acl->setDefaultAction(Acl::DENY); - - $acl->addRole('Guests'); - $acl->addRole('Guests2'); - $acl->addRole('Members', ['Guests', 'Guests2']); - - $acl->addResource('Login', ['help', 'index']); - - $acl->allow('Guests', 'Login', '*'); - $acl->deny('Guests2', 'Login', ['help']); - $acl->deny('Members', 'Login', ['index']); - - $actual = (bool)$acl->isAllowed('Members', 'Login', 'index'); - expect($actual)->false(); - - $actual = (bool)$acl->isAllowed('Guests', 'Login', 'help'); - expect($actual)->true(); - - $actual = (bool)$acl->isAllowed('Members', 'Login', 'help'); - expect($actual)->true(); - } - ); - } - - /** - * Tests negation of multilayer inherited roles - * - * - * @author cq-z <64899484@qq.com> - * @since 2018-10-10 - */ - public function testAclNegationOfMultilayerInheritedRoles() - { - $this->specify( - 'Negation of multiple inherited roles does not return the correct result', - function () { - $acl = new Memory; - $acl->setDefaultAction(Acl::DENY); - - $acl->addRole('Guests1'); - $acl->addRole('Guests12', 'Guests1'); - $acl->addRole('Guests2'); - $acl->addRole('Guests22', 'Guests2'); - $acl->addRole('Members', ['Guests12','Guests22']); - - $acl->addResource('Login', ['help', 'index']); - $acl->addResource('Logout', ['help', 'index']); - - $acl->allow('Guests1', 'Login', '*'); - $acl->deny('Guests12', 'Login', ['help']); - - $acl->deny('Guests2', 'Logout', '*'); - $acl->allow('Guests22', 'Logout', ['index']); - - $actual = (bool)$acl->isAllowed('Members', 'Login', 'index'); - expect($actual)->true(); - - $actual = (bool)$acl->isAllowed('Members', 'Login', 'help'); - expect($actual)->false(); - - $actual = (bool)$acl->isAllowed('Members', 'Logout', 'help'); - expect($actual)->false(); - - $actual = (bool)$acl->isAllowed('Members', 'Login', 'index'); - expect($actual)->true(); - } - ); - } -} diff --git a/tests/unit/Acl/ConstantsCest.php b/tests/unit/Acl/ConstantsCest.php new file mode 100644 index 00000000000..610d836acbb --- /dev/null +++ b/tests/unit/Acl/ConstantsCest.php @@ -0,0 +1,30 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl; + +use Phalcon\Acl; +use UnitTester; + +class ConstantsCest +{ + /** + * Tests Phalcon\Acl\Adapter\Memory :: constants + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclConstants(UnitTester $I) + { + $I->assertEquals(1, Acl::ALLOW); + $I->assertEquals(0, Acl::DENY); + } +} diff --git a/tests/unit/Acl/Resource/ConstructCest.php b/tests/unit/Acl/Resource/ConstructCest.php new file mode 100644 index 00000000000..a540223dd9a --- /dev/null +++ b/tests/unit/Acl/Resource/ConstructCest.php @@ -0,0 +1,75 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Resource; + +use BadMethodCallException; +use Phalcon\Acl\Exception; +use Phalcon\Acl\Resource; +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Acl\Resource :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclResourceConstruct(UnitTester $I) + { + $I->wantToTest("Acl\Resource - __construct()"); + $actual = new Resource('Customers'); + + $class = Resource::class; + $I->assertInstanceOf($class, $actual); + } + + /** + * Tests Phalcon\Acl\Resource :: __construct() - wildcard + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclResourceConstructWithWildcardThrowsException(UnitTester $I) + { + $I->wantToTest("Acl\Resource - __construct() - exception with '*'"); + $I->expectThrowable( + new Exception("Resource name cannot be '*'"), + function () { + $resource = new Resource('*'); + } + ); + } + + /** + * Tests Phalcon\Acl\Resource :: __construct() - without name + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclResourceConstructWithoutName(UnitTester $I) + { + $I->wantToTest("Acl\Resource - __construct() - exception parameters"); + $I->expectThrowable( + new BadMethodCallException('Wrong number of parameters'), + function () { + $resource = new Resource(); + } + ); + } +} diff --git a/tests/unit/Acl/Resource/GetDescriptionCest.php b/tests/unit/Acl/Resource/GetDescriptionCest.php new file mode 100644 index 00000000000..91ab2ca5b87 --- /dev/null +++ b/tests/unit/Acl/Resource/GetDescriptionCest.php @@ -0,0 +1,53 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Resource; + +use Phalcon\Acl\Resource; +use UnitTester; + +class GetDescriptionCest +{ + /** + * Tests Phalcon\Acl\Resource :: getDescription() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclResourceGetDescription(UnitTester $I) + { + $I->wantToTest("Acl\Resource - getDescription()"); + $resource = new Resource('Customers', 'Customer management'); + + $expected = 'Customer management'; + $actual = $resource->getDescription(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Acl\Resource :: getDescription() - empty + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclResourceGetDescriptionEmpty(UnitTester $I) + { + $I->wantToTest("Acl\Resource - getDescription() - empty"); + $resource = new Resource('Customers'); + + $actual = $resource->getDescription(); + $I->assertEmpty($actual); + } +} diff --git a/tests/unit/Acl/Resource/GetNameCest.php b/tests/unit/Acl/Resource/GetNameCest.php new file mode 100644 index 00000000000..fae43c24f62 --- /dev/null +++ b/tests/unit/Acl/Resource/GetNameCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Resource; + +use Phalcon\Acl\Resource; +use UnitTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Acl\Resource :: getName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclResourceGetName(UnitTester $I) + { + $I->wantToTest("Acl\Resource - getName()"); + $resource = new Resource('Customers'); + + $expected = 'Customers'; + $actual = $resource->getName(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Acl/Resource/ToStringCest.php b/tests/unit/Acl/Resource/ToStringCest.php new file mode 100644 index 00000000000..6931031dc2c --- /dev/null +++ b/tests/unit/Acl/Resource/ToStringCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Resource; + +use Phalcon\Acl\Resource; +use UnitTester; + +class ToStringCest +{ + /** + * Tests Phalcon\Acl\Resource :: __toString() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclResourceToString(UnitTester $I) + { + $I->wantToTest("Acl\Resource - __toString()"); + $resource = new Resource('Customers'); + + $expected = 'Customers'; + $actual = $resource->__toString(); + $I->assertEquals($expected, $actual); + + $expected = 'Customers'; + $actual = (string) $resource; + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Acl/ResourceTest.php b/tests/unit/Acl/ResourceTest.php deleted file mode 100644 index aba6bb88a4c..00000000000 --- a/tests/unit/Acl/ResourceTest.php +++ /dev/null @@ -1,70 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Acl - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ResourceTest extends UnitTest -{ - /** - * Tests the creation of an Acl Resource (name) - * - * @author Nikolaos Dimopoulos - * @since 2014-10-03 - */ - public function testAclResourceName() - { - $this->specify( - "getting the name from the ACL resource does not return the correct result", - function () { - $aclResource = new Resource('Schedules'); - $expected = 'Schedules'; - $actual = $aclResource->getName(); - expect($actual)->equals($expected); - - $actual = $aclResource->getDescription(); - expect($actual)->isEmpty(); - } - ); - } - /** - * Tests the creation of an Acl Resource (name / description) - * - * @author Nikos Dimopoulos - * @since 2014-10-03 - */ - public function testAclResourceNameDescription() - { - $this->specify( - "getting the name from the ACL resource does not return the correct result", - function () { - $aclResource = new Resource('Schedules', 'Schedules resource'); - $expected = 'Schedules'; - $actual = $aclResource->getName(); - expect($actual)->equals($expected); - - $expected = 'Schedules resource'; - $actual = $aclResource->getDescription(); - expect($actual)->equals($expected); - } - ); - } -} diff --git a/tests/unit/Acl/Role/ConstructCest.php b/tests/unit/Acl/Role/ConstructCest.php new file mode 100644 index 00000000000..d17aba5dc19 --- /dev/null +++ b/tests/unit/Acl/Role/ConstructCest.php @@ -0,0 +1,75 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Role; + +use BadMethodCallException; +use Phalcon\Acl\Exception; +use Phalcon\Acl\Role; +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Acl\Role :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclRoleConstruct(UnitTester $I) + { + $I->wantToTest("Acl\Role - __construct()"); + $actual = new Role('Administrator'); + + $class = Role::class; + $I->assertInstanceOf($class, $actual); + } + + /** + * Tests Phalcon\Acl\Role :: __construct() - wildcard + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclRoleConstructWithWildcardThrowsException(UnitTester $I) + { + $I->wantToTest("Acl\Role - __construct() - exception with '*'"); + $I->expectThrowable( + new Exception("Role name cannot be '*'"), + function () { + $role = new Role('*'); + } + ); + } + + /** + * Tests Phalcon\Acl\Role :: __construct() - without name + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclRoleConstructWithoutName(UnitTester $I) + { + $I->wantToTest("Acl\Role - __construct() - exception params"); + $I->expectThrowable( + new BadMethodCallException('Wrong number of parameters'), + function () { + $role = new Role(); + } + ); + } +} diff --git a/tests/unit/Acl/Role/GetDescriptionCest.php b/tests/unit/Acl/Role/GetDescriptionCest.php new file mode 100644 index 00000000000..4552f56c45b --- /dev/null +++ b/tests/unit/Acl/Role/GetDescriptionCest.php @@ -0,0 +1,53 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Role; + +use Phalcon\Acl\Role; +use UnitTester; + +class GetDescriptionCest +{ + /** + * Tests Phalcon\Acl\Role :: getDescription() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclRoleGetDescription(UnitTester $I) + { + $I->wantToTest("Acl\Role - getDescription()"); + $role = new Role('Administrators', 'The admin unit'); + + $expected = 'The admin unit'; + $actual = $role->getDescription(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Acl\Role :: getDescription() - empty + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclRoleGetDescriptionEmpty(UnitTester $I) + { + $I->wantToTest("Acl\Role - getDescription()"); + $role = new Role('Administrators'); + + $actual = $role->getDescription(); + $I->assertEmpty($actual); + } +} diff --git a/tests/unit/Acl/Role/GetNameCest.php b/tests/unit/Acl/Role/GetNameCest.php new file mode 100644 index 00000000000..4fb30fa3c00 --- /dev/null +++ b/tests/unit/Acl/Role/GetNameCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Role; + +use Phalcon\Acl\Role; +use UnitTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Acl\Role :: getName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclRoleGetName(UnitTester $I) + { + $I->wantToTest("Acl\Role - getName()"); + $role = new Role('Administrators'); + + $expected = 'Administrators'; + $actual = $role->getName(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Acl/Role/ToStringCest.php b/tests/unit/Acl/Role/ToStringCest.php new file mode 100644 index 00000000000..91db099d3ce --- /dev/null +++ b/tests/unit/Acl/Role/ToStringCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Acl\Role; + +use Phalcon\Acl\Role; +use UnitTester; + +class ToStringCest +{ + /** + * Tests Phalcon\Acl\Role :: __toString() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function aclRoleToString(UnitTester $I) + { + $I->wantToTest("Acl\Role - __toString()"); + $role = new Role('Administrator'); + + $expected = 'Administrator'; + $actual = $role->__toString(); + $I->assertEquals($expected, $actual); + + $expected = 'Administrator'; + $actual = (string) $role; + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Acl/RoleTest.php b/tests/unit/Acl/RoleTest.php deleted file mode 100644 index 219278945e1..00000000000 --- a/tests/unit/Acl/RoleTest.php +++ /dev/null @@ -1,71 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Acl - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class RoleTest extends UnitTest -{ - /** - * Tests the creation of an Acl Role (name) - * - * @author Nikolaos Dimopoulos - * @since 2014-10-03 - */ - public function testAclRoleNameEmptyDescription() - { - $this->specify( - "getting the name from the ACL role does not return the correct result", - function () { - $aclRole = new Role('Administrators'); - $expected = 'Administrators'; - $actual = $aclRole->getName(); - expect($actual)->equals($expected); - - $actual = $aclRole->getDescription(); - expect($actual)->isEmpty(); - } - ); - } - /** - * Tests the creation of an Acl Role (name/description) - * - * @author Nikolaos Dimopoulos - * @since 2014-10-03 - */ - public function testAclRoleNameDescription() - { - $this->specify( - "getting the name from the ACL role does not return the correct result", - function () { - $aclRole = new Role('Administrators', 'Super-User role'); - - $expected = 'Administrators'; - $actual = $aclRole->getName(); - expect($actual)->equals($expected); - - $actual = $aclRole->getDescription(); - $expected = 'Super-User role'; - expect($actual)->equals($expected); - } - ); - } -} diff --git a/tests/unit/Annotations/Adapter/ApcTest.php b/tests/unit/Annotations/Adapter/ApcTest.php deleted file mode 100644 index d8a845f2421..00000000000 --- a/tests/unit/Annotations/Adapter/ApcTest.php +++ /dev/null @@ -1,71 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Annotations - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ApcTest extends UnitTest -{ - /** - * executed before each test - */ - public function _before() - { - parent::_before(); - - if (!function_exists('apc_fetch')) { - $this->markTestSkipped('Warning: apc extension is not loaded'); - } - - require_once PATH_DATA . 'annotations/TestClass.php'; - require_once PATH_DATA . 'annotations/TestClassNs.php'; - } - - public function testApcAdapter() - { - $adapter = new Apc(); - - $classAnnotations = $adapter->get('TestClass'); - $this->assertInternalType('object', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); - - $classAnnotations = $adapter->get('TestClass'); - $this->assertInternalType('object', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); - - $classAnnotations = $adapter->get('User\TestClassNs'); - $this->assertInternalType('object', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); - - $classAnnotations = $adapter->get('User\TestClassNs'); - $this->assertInternalType('object', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); - - $property = $adapter->getProperty('TestClass', 'testProp1'); - $this->assertInternalType('object', $property); - $this->assertInstanceOf('Phalcon\Annotations\Collection', $property); - $this->assertEquals($property->count(), 4); - } -} diff --git a/tests/unit/Annotations/Adapter/Apcu/ConstructCest.php b/tests/unit/Annotations/Adapter/Apcu/ConstructCest.php new file mode 100644 index 00000000000..dfe0e0431dc --- /dev/null +++ b/tests/unit/Annotations/Adapter/Apcu/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Apcu; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Apcu :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterApcuConstruct(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Apcu - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Apcu/GetCest.php b/tests/unit/Annotations/Adapter/Apcu/GetCest.php new file mode 100644 index 00000000000..b07ee693116 --- /dev/null +++ b/tests/unit/Annotations/Adapter/Apcu/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Apcu; + +use UnitTester; + +class GetCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Apcu :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterApcuGet(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Apcu - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Apcu/GetMethodCest.php b/tests/unit/Annotations/Adapter/Apcu/GetMethodCest.php new file mode 100644 index 00000000000..68837dacc96 --- /dev/null +++ b/tests/unit/Annotations/Adapter/Apcu/GetMethodCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Apcu; + +use UnitTester; + +class GetMethodCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Apcu :: getMethod() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterApcuGetMethod(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Apcu - getMethod()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Apcu/GetMethodsCest.php b/tests/unit/Annotations/Adapter/Apcu/GetMethodsCest.php new file mode 100644 index 00000000000..a03d35cc8a2 --- /dev/null +++ b/tests/unit/Annotations/Adapter/Apcu/GetMethodsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Apcu; + +use UnitTester; + +class GetMethodsCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Apcu :: getMethods() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterApcuGetMethods(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Apcu - getMethods()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Apcu/GetPropertiesCest.php b/tests/unit/Annotations/Adapter/Apcu/GetPropertiesCest.php new file mode 100644 index 00000000000..100bbe51a2b --- /dev/null +++ b/tests/unit/Annotations/Adapter/Apcu/GetPropertiesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Apcu; + +use UnitTester; + +class GetPropertiesCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Apcu :: getProperties() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterApcuGetProperties(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Apcu - getProperties()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Apcu/GetPropertyCest.php b/tests/unit/Annotations/Adapter/Apcu/GetPropertyCest.php new file mode 100644 index 00000000000..8ea6b4e9f2b --- /dev/null +++ b/tests/unit/Annotations/Adapter/Apcu/GetPropertyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Apcu; + +use UnitTester; + +class GetPropertyCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Apcu :: getProperty() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterApcuGetProperty(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Apcu - getProperty()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Apcu/GetReaderCest.php b/tests/unit/Annotations/Adapter/Apcu/GetReaderCest.php new file mode 100644 index 00000000000..448d011437b --- /dev/null +++ b/tests/unit/Annotations/Adapter/Apcu/GetReaderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Apcu; + +use UnitTester; + +class GetReaderCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Apcu :: getReader() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterApcuGetReader(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Apcu - getReader()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Apcu/ReadCest.php b/tests/unit/Annotations/Adapter/Apcu/ReadCest.php new file mode 100644 index 00000000000..cfe15dfbf0b --- /dev/null +++ b/tests/unit/Annotations/Adapter/Apcu/ReadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Apcu; + +use UnitTester; + +class ReadCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Apcu :: read() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterApcuRead(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Apcu - read()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Apcu/SetReaderCest.php b/tests/unit/Annotations/Adapter/Apcu/SetReaderCest.php new file mode 100644 index 00000000000..75333a8a19e --- /dev/null +++ b/tests/unit/Annotations/Adapter/Apcu/SetReaderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Apcu; + +use UnitTester; + +class SetReaderCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Apcu :: setReader() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterApcuSetReader(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Apcu - setReader()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Apcu/WriteCest.php b/tests/unit/Annotations/Adapter/Apcu/WriteCest.php new file mode 100644 index 00000000000..a083f9cb18b --- /dev/null +++ b/tests/unit/Annotations/Adapter/Apcu/WriteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Apcu; + +use UnitTester; + +class WriteCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Apcu :: write() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterApcuWrite(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Apcu - write()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/ApcuCest.php b/tests/unit/Annotations/Adapter/ApcuCest.php new file mode 100644 index 00000000000..2baa73564c6 --- /dev/null +++ b/tests/unit/Annotations/Adapter/ApcuCest.php @@ -0,0 +1,59 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter; + +use Phalcon\Annotations\Adapter\Apcu; +use UnitTester; + +class ApcuCest +{ + /** + * executed before each test + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('apcu'); + + require_once dataFolder('fixtures/Annotations/TestClass.php'); + require_once dataFolder('fixtures/Annotations/TestClassNs.php'); + } + + public function testApcAdapter(UnitTester $I) + { + $adapter = new Apcu(); + + $classAnnotations = $adapter->get('TestClass'); + $I->assertInternalType('object', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); + + $classAnnotations = $adapter->get('TestClass'); + $I->assertInternalType('object', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); + + $classAnnotations = $adapter->get('User\TestClassNs'); + $I->assertInternalType('object', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); + + $classAnnotations = $adapter->get('User\TestClassNs'); + $I->assertInternalType('object', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); + + $property = $adapter->getProperty('TestClass', 'testProp1'); + $I->assertInternalType('object', $property); + $I->assertInstanceOf('Phalcon\Annotations\Collection', $property); + $I->assertEquals($property->count(), 4); + } +} diff --git a/tests/unit/Annotations/Adapter/ApcuTest.php b/tests/unit/Annotations/Adapter/ApcuTest.php deleted file mode 100644 index 378c37db184..00000000000 --- a/tests/unit/Annotations/Adapter/ApcuTest.php +++ /dev/null @@ -1,71 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Annotations - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ApcuTest extends UnitTest -{ - /** - * executed before each test - */ - public function _before() - { - parent::_before(); - - if (!function_exists('apcu_fetch')) { - $this->markTestSkipped('Warning: APCu extension is not loaded'); - } - - require_once PATH_DATA . 'annotations/TestClass.php'; - require_once PATH_DATA . 'annotations/TestClassNs.php'; - } - - public function testApcAdapter() - { - $adapter = new Apcu(); - - $classAnnotations = $adapter->get('TestClass'); - $this->assertInternalType('object', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); - - $classAnnotations = $adapter->get('TestClass'); - $this->assertInternalType('object', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); - - $classAnnotations = $adapter->get('User\TestClassNs'); - $this->assertInternalType('object', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); - - $classAnnotations = $adapter->get('User\TestClassNs'); - $this->assertInternalType('object', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); - - $property = $adapter->getProperty('TestClass', 'testProp1'); - $this->assertInternalType('object', $property); - $this->assertInstanceOf('Phalcon\Annotations\Collection', $property); - $this->assertEquals($property->count(), 4); - } -} diff --git a/tests/unit/Annotations/Adapter/Files/ConstructCest.php b/tests/unit/Annotations/Adapter/Files/ConstructCest.php new file mode 100644 index 00000000000..149f6c7e718 --- /dev/null +++ b/tests/unit/Annotations/Adapter/Files/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Files; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Files :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterFilesConstruct(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Files - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Files/GetCest.php b/tests/unit/Annotations/Adapter/Files/GetCest.php new file mode 100644 index 00000000000..498e2767f32 --- /dev/null +++ b/tests/unit/Annotations/Adapter/Files/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Files; + +use UnitTester; + +class GetCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Files :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterFilesGet(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Files - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Files/GetMethodCest.php b/tests/unit/Annotations/Adapter/Files/GetMethodCest.php new file mode 100644 index 00000000000..d2d3ab6bf7d --- /dev/null +++ b/tests/unit/Annotations/Adapter/Files/GetMethodCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Files; + +use UnitTester; + +class GetMethodCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Files :: getMethod() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterFilesGetMethod(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Files - getMethod()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Files/GetMethodsCest.php b/tests/unit/Annotations/Adapter/Files/GetMethodsCest.php new file mode 100644 index 00000000000..faf4600dc3e --- /dev/null +++ b/tests/unit/Annotations/Adapter/Files/GetMethodsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Files; + +use UnitTester; + +class GetMethodsCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Files :: getMethods() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterFilesGetMethods(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Files - getMethods()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Files/GetPropertiesCest.php b/tests/unit/Annotations/Adapter/Files/GetPropertiesCest.php new file mode 100644 index 00000000000..86bc7f62d9a --- /dev/null +++ b/tests/unit/Annotations/Adapter/Files/GetPropertiesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Files; + +use UnitTester; + +class GetPropertiesCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Files :: getProperties() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterFilesGetProperties(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Files - getProperties()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Files/GetPropertyCest.php b/tests/unit/Annotations/Adapter/Files/GetPropertyCest.php new file mode 100644 index 00000000000..d0aae4d1bce --- /dev/null +++ b/tests/unit/Annotations/Adapter/Files/GetPropertyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Files; + +use UnitTester; + +class GetPropertyCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Files :: getProperty() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterFilesGetProperty(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Files - getProperty()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Files/GetReaderCest.php b/tests/unit/Annotations/Adapter/Files/GetReaderCest.php new file mode 100644 index 00000000000..2064e092887 --- /dev/null +++ b/tests/unit/Annotations/Adapter/Files/GetReaderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Files; + +use UnitTester; + +class GetReaderCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Files :: getReader() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterFilesGetReader(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Files - getReader()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Files/ReadCest.php b/tests/unit/Annotations/Adapter/Files/ReadCest.php new file mode 100644 index 00000000000..27acf2a09a4 --- /dev/null +++ b/tests/unit/Annotations/Adapter/Files/ReadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Files; + +use UnitTester; + +class ReadCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Files :: read() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterFilesRead(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Files - read()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Files/SetReaderCest.php b/tests/unit/Annotations/Adapter/Files/SetReaderCest.php new file mode 100644 index 00000000000..13b28b12a30 --- /dev/null +++ b/tests/unit/Annotations/Adapter/Files/SetReaderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Files; + +use UnitTester; + +class SetReaderCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Files :: setReader() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterFilesSetReader(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Files - setReader()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Files/WriteCest.php b/tests/unit/Annotations/Adapter/Files/WriteCest.php new file mode 100644 index 00000000000..390d1233248 --- /dev/null +++ b/tests/unit/Annotations/Adapter/Files/WriteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Files; + +use UnitTester; + +class WriteCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Files :: write() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterFilesWrite(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Files - write()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/FilesCest.php b/tests/unit/Annotations/Adapter/FilesCest.php new file mode 100644 index 00000000000..c0127518eaf --- /dev/null +++ b/tests/unit/Annotations/Adapter/FilesCest.php @@ -0,0 +1,54 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter; + +use Phalcon\Annotations\Adapter\Files; +use UnitTester; +use function outputFolder; + +class FilesCest +{ + public function testFilesAdapter(UnitTester $I) + { + require_once dataFolder('fixtures/Annotations/TestClass.php'); + require_once dataFolder('fixtures/Annotations/TestClassNs.php'); + + $adapter = new Files(['annotationsDir' => outputFolder('tests/annotations/')]); + + $classAnnotations = $adapter->get('TestClass'); + $I->assertInternalType('object', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); + + $classAnnotations = $adapter->get('TestClass'); + $I->assertInternalType('object', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); + + $classAnnotations = $adapter->get('User\TestClassNs'); + $I->assertInternalType('object', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); + + $classAnnotations = $adapter->get('User\TestClassNs'); + $I->assertInternalType('object', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); + + unset($adapter); + + $I->amInPath(outputFolder('tests/annotations/')); + + $I->safeDeleteFile('testclass.php'); + $I->safeDeleteFile('user_testclassns.php'); + } +} diff --git a/tests/unit/Annotations/Adapter/FilesTest.php b/tests/unit/Annotations/Adapter/FilesTest.php deleted file mode 100644 index 7293ce41bfd..00000000000 --- a/tests/unit/Annotations/Adapter/FilesTest.php +++ /dev/null @@ -1,61 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Annotations - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FilesTest extends UnitTest -{ - public function testFilesAdapter() - { - require_once PATH_DATA . 'annotations/TestClass.php'; - require_once PATH_DATA . 'annotations/TestClassNs.php'; - - $adapter = new Files(['annotationsDir' => PATH_OUTPUT . 'tests/annotations/']); - - $classAnnotations = $adapter->get('TestClass'); - $this->assertInternalType('object', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); - - $classAnnotations = $adapter->get('TestClass'); - $this->assertInternalType('object', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); - - $classAnnotations = $adapter->get('User\TestClassNs'); - $this->assertInternalType('object', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); - - $classAnnotations = $adapter->get('User\TestClassNs'); - $this->assertInternalType('object', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); - - unset($adapter); - - $this->tester->amInPath(PATH_OUTPUT . 'tests/annotations/'); - - $this->tester->deleteFile('testclass.php'); - $this->tester->deleteFile('user_testclassns.php'); - } -} diff --git a/tests/unit/Annotations/Adapter/Memory/GetCest.php b/tests/unit/Annotations/Adapter/Memory/GetCest.php new file mode 100644 index 00000000000..2d6a16c5dcf --- /dev/null +++ b/tests/unit/Annotations/Adapter/Memory/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Memory; + +use UnitTester; + +class GetCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Memory :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterMemoryGet(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Memory - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Memory/GetMethodCest.php b/tests/unit/Annotations/Adapter/Memory/GetMethodCest.php new file mode 100644 index 00000000000..3d3e7956eb1 --- /dev/null +++ b/tests/unit/Annotations/Adapter/Memory/GetMethodCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Memory; + +use UnitTester; + +class GetMethodCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Memory :: getMethod() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterMemoryGetMethod(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Memory - getMethod()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Memory/GetMethodsCest.php b/tests/unit/Annotations/Adapter/Memory/GetMethodsCest.php new file mode 100644 index 00000000000..a448f71573c --- /dev/null +++ b/tests/unit/Annotations/Adapter/Memory/GetMethodsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Memory; + +use UnitTester; + +class GetMethodsCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Memory :: getMethods() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterMemoryGetMethods(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Memory - getMethods()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Memory/GetPropertiesCest.php b/tests/unit/Annotations/Adapter/Memory/GetPropertiesCest.php new file mode 100644 index 00000000000..a16c0be225f --- /dev/null +++ b/tests/unit/Annotations/Adapter/Memory/GetPropertiesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Memory; + +use UnitTester; + +class GetPropertiesCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Memory :: getProperties() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterMemoryGetProperties(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Memory - getProperties()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Memory/GetPropertyCest.php b/tests/unit/Annotations/Adapter/Memory/GetPropertyCest.php new file mode 100644 index 00000000000..21bee4f7eb4 --- /dev/null +++ b/tests/unit/Annotations/Adapter/Memory/GetPropertyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Memory; + +use UnitTester; + +class GetPropertyCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Memory :: getProperty() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterMemoryGetProperty(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Memory - getProperty()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Memory/GetReaderCest.php b/tests/unit/Annotations/Adapter/Memory/GetReaderCest.php new file mode 100644 index 00000000000..c021602029c --- /dev/null +++ b/tests/unit/Annotations/Adapter/Memory/GetReaderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Memory; + +use UnitTester; + +class GetReaderCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Memory :: getReader() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterMemoryGetReader(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Memory - getReader()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Memory/ReadCest.php b/tests/unit/Annotations/Adapter/Memory/ReadCest.php new file mode 100644 index 00000000000..9f45473ebf4 --- /dev/null +++ b/tests/unit/Annotations/Adapter/Memory/ReadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Memory; + +use UnitTester; + +class ReadCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Memory :: read() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterMemoryRead(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Memory - read()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Memory/SetReaderCest.php b/tests/unit/Annotations/Adapter/Memory/SetReaderCest.php new file mode 100644 index 00000000000..ac75b17e39d --- /dev/null +++ b/tests/unit/Annotations/Adapter/Memory/SetReaderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Memory; + +use UnitTester; + +class SetReaderCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Memory :: setReader() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterMemorySetReader(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Memory - setReader()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/Memory/WriteCest.php b/tests/unit/Annotations/Adapter/Memory/WriteCest.php new file mode 100644 index 00000000000..0d23a2f61f6 --- /dev/null +++ b/tests/unit/Annotations/Adapter/Memory/WriteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter\Memory; + +use UnitTester; + +class WriteCest +{ + /** + * Tests Phalcon\Annotations\Adapter\Memory :: write() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAdapterMemoryWrite(UnitTester $I) + { + $I->wantToTest("Annotations\Adapter\Memory - write()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Adapter/MemoryCest.php b/tests/unit/Annotations/Adapter/MemoryCest.php new file mode 100644 index 00000000000..2459189ca92 --- /dev/null +++ b/tests/unit/Annotations/Adapter/MemoryCest.php @@ -0,0 +1,56 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Adapter; + +use Phalcon\Annotations\Adapter\Memory; +use UnitTester; +use function dataFolder; +use function file_exists; + +class MemoryCest +{ + public function testMemoryAdapter(UnitTester $I) + { + $I->assertTrue(file_exists(dataFolder('fixtures/Annotations/TestClass.php'))); + $I->assertTrue(file_exists(dataFolder('fixtures/Annotations/TestClassNs.php'))); + + require_once dataFolder('fixtures/Annotations/TestClass.php'); + require_once dataFolder('fixtures/Annotations/TestClassNs.php'); + + $adapter = new Memory(); + + $classAnnotations = $adapter->get('TestClass'); + $I->assertInternalType('object', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); + + $classAnnotations = $adapter->get('TestClass'); + $I->assertInternalType('object', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); + + $classAnnotations = $adapter->get('User\TestClassNs'); + $I->assertInternalType('object', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); + + $classAnnotations = $adapter->get('User\TestClassNs'); + $I->assertInternalType('object', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); + $I->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); + + $property = $adapter->getProperty('TestClass', 'testProp1'); + $I->assertInternalType('object', $property); + $I->assertInstanceOf('Phalcon\Annotations\Collection', $property); + $I->assertEquals($property->count(), 4); + } +} diff --git a/tests/unit/Annotations/Adapter/MemoryTest.php b/tests/unit/Annotations/Adapter/MemoryTest.php deleted file mode 100644 index fb1475b03c9..00000000000 --- a/tests/unit/Annotations/Adapter/MemoryTest.php +++ /dev/null @@ -1,59 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Annotations - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class MemoryTest extends UnitTest -{ - public function testMemoryAdapter() - { - require_once PATH_DATA . 'annotations/TestClass.php'; - require_once PATH_DATA . 'annotations/TestClassNs.php'; - - $adapter = new Memory(); - - $classAnnotations = $adapter->get('TestClass'); - $this->assertInternalType('object', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); - - $classAnnotations = $adapter->get('TestClass'); - $this->assertInternalType('object', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); - - $classAnnotations = $adapter->get('User\TestClassNs'); - $this->assertInternalType('object', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); - - $classAnnotations = $adapter->get('User\TestClassNs'); - $this->assertInternalType('object', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Reflection', $classAnnotations); - $this->assertInstanceOf('Phalcon\Annotations\Collection', $classAnnotations->getClassAnnotations()); - - $property = $adapter->getProperty('TestClass', 'testProp1'); - $this->assertInternalType('object', $property); - $this->assertInstanceOf('Phalcon\Annotations\Collection', $property); - $this->assertEquals($property->count(), 4); - } -} diff --git a/tests/unit/Annotations/Annotation/ConstructCest.php b/tests/unit/Annotations/Annotation/ConstructCest.php new file mode 100644 index 00000000000..83c5cfcdde0 --- /dev/null +++ b/tests/unit/Annotations/Annotation/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Annotation; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Annotations\Annotation :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAnnotationConstruct(UnitTester $I) + { + $I->wantToTest("Annotations\Annotation - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Annotation/GetArgumentCest.php b/tests/unit/Annotations/Annotation/GetArgumentCest.php new file mode 100644 index 00000000000..9b87c868fec --- /dev/null +++ b/tests/unit/Annotations/Annotation/GetArgumentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Annotation; + +use UnitTester; + +class GetArgumentCest +{ + /** + * Tests Phalcon\Annotations\Annotation :: getArgument() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAnnotationGetArgument(UnitTester $I) + { + $I->wantToTest("Annotations\Annotation - getArgument()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Annotation/GetArgumentsCest.php b/tests/unit/Annotations/Annotation/GetArgumentsCest.php new file mode 100644 index 00000000000..bf1ff0284cd --- /dev/null +++ b/tests/unit/Annotations/Annotation/GetArgumentsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Annotation; + +use UnitTester; + +class GetArgumentsCest +{ + /** + * Tests Phalcon\Annotations\Annotation :: getArguments() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAnnotationGetArguments(UnitTester $I) + { + $I->wantToTest("Annotations\Annotation - getArguments()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Annotation/GetExprArgumentsCest.php b/tests/unit/Annotations/Annotation/GetExprArgumentsCest.php new file mode 100644 index 00000000000..d2680f8f046 --- /dev/null +++ b/tests/unit/Annotations/Annotation/GetExprArgumentsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Annotation; + +use UnitTester; + +class GetExprArgumentsCest +{ + /** + * Tests Phalcon\Annotations\Annotation :: getExprArguments() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAnnotationGetExprArguments(UnitTester $I) + { + $I->wantToTest("Annotations\Annotation - getExprArguments()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Annotation/GetExpressionCest.php b/tests/unit/Annotations/Annotation/GetExpressionCest.php new file mode 100644 index 00000000000..9037b0c620b --- /dev/null +++ b/tests/unit/Annotations/Annotation/GetExpressionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Annotation; + +use UnitTester; + +class GetExpressionCest +{ + /** + * Tests Phalcon\Annotations\Annotation :: getExpression() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAnnotationGetExpression(UnitTester $I) + { + $I->wantToTest("Annotations\Annotation - getExpression()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Annotation/GetNameCest.php b/tests/unit/Annotations/Annotation/GetNameCest.php new file mode 100644 index 00000000000..ea21f2f709c --- /dev/null +++ b/tests/unit/Annotations/Annotation/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Annotation; + +use UnitTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Annotations\Annotation :: getName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAnnotationGetName(UnitTester $I) + { + $I->wantToTest("Annotations\Annotation - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Annotation/GetNamedArgumentCest.php b/tests/unit/Annotations/Annotation/GetNamedArgumentCest.php new file mode 100644 index 00000000000..6080a2b05e3 --- /dev/null +++ b/tests/unit/Annotations/Annotation/GetNamedArgumentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Annotation; + +use UnitTester; + +class GetNamedArgumentCest +{ + /** + * Tests Phalcon\Annotations\Annotation :: getNamedArgument() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAnnotationGetNamedArgument(UnitTester $I) + { + $I->wantToTest("Annotations\Annotation - getNamedArgument()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Annotation/GetNamedParameterCest.php b/tests/unit/Annotations/Annotation/GetNamedParameterCest.php new file mode 100644 index 00000000000..a14ac87b597 --- /dev/null +++ b/tests/unit/Annotations/Annotation/GetNamedParameterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Annotation; + +use UnitTester; + +class GetNamedParameterCest +{ + /** + * Tests Phalcon\Annotations\Annotation :: getNamedParameter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAnnotationGetNamedParameter(UnitTester $I) + { + $I->wantToTest("Annotations\Annotation - getNamedParameter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Annotation/HasArgumentCest.php b/tests/unit/Annotations/Annotation/HasArgumentCest.php new file mode 100644 index 00000000000..16c18285046 --- /dev/null +++ b/tests/unit/Annotations/Annotation/HasArgumentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Annotation; + +use UnitTester; + +class HasArgumentCest +{ + /** + * Tests Phalcon\Annotations\Annotation :: hasArgument() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAnnotationHasArgument(UnitTester $I) + { + $I->wantToTest("Annotations\Annotation - hasArgument()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Annotation/NumberArgumentsCest.php b/tests/unit/Annotations/Annotation/NumberArgumentsCest.php new file mode 100644 index 00000000000..39c579b0265 --- /dev/null +++ b/tests/unit/Annotations/Annotation/NumberArgumentsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Annotation; + +use UnitTester; + +class NumberArgumentsCest +{ + /** + * Tests Phalcon\Annotations\Annotation :: numberArguments() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsAnnotationNumberArguments(UnitTester $I) + { + $I->wantToTest("Annotations\Annotation - numberArguments()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Collection/ConstructCest.php b/tests/unit/Annotations/Collection/ConstructCest.php new file mode 100644 index 00000000000..32d0d5da29c --- /dev/null +++ b/tests/unit/Annotations/Collection/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Collection; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Annotations\Collection :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsCollectionConstruct(UnitTester $I) + { + $I->wantToTest("Annotations\Collection - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Collection/CountCest.php b/tests/unit/Annotations/Collection/CountCest.php new file mode 100644 index 00000000000..dd97245e18a --- /dev/null +++ b/tests/unit/Annotations/Collection/CountCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Collection; + +use UnitTester; + +class CountCest +{ + /** + * Tests Phalcon\Annotations\Collection :: count() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsCollectionCount(UnitTester $I) + { + $I->wantToTest("Annotations\Collection - count()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Collection/CurrentCest.php b/tests/unit/Annotations/Collection/CurrentCest.php new file mode 100644 index 00000000000..39233b2e96b --- /dev/null +++ b/tests/unit/Annotations/Collection/CurrentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Collection; + +use UnitTester; + +class CurrentCest +{ + /** + * Tests Phalcon\Annotations\Collection :: current() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsCollectionCurrent(UnitTester $I) + { + $I->wantToTest("Annotations\Collection - current()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Collection/GetAllCest.php b/tests/unit/Annotations/Collection/GetAllCest.php new file mode 100644 index 00000000000..e2cafdc6df1 --- /dev/null +++ b/tests/unit/Annotations/Collection/GetAllCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Collection; + +use UnitTester; + +class GetAllCest +{ + /** + * Tests Phalcon\Annotations\Collection :: getAll() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsCollectionGetAll(UnitTester $I) + { + $I->wantToTest("Annotations\Collection - getAll()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Collection/GetAnnotationsCest.php b/tests/unit/Annotations/Collection/GetAnnotationsCest.php new file mode 100644 index 00000000000..e5379f9636a --- /dev/null +++ b/tests/unit/Annotations/Collection/GetAnnotationsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Collection; + +use UnitTester; + +class GetAnnotationsCest +{ + /** + * Tests Phalcon\Annotations\Collection :: getAnnotations() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsCollectionGetAnnotations(UnitTester $I) + { + $I->wantToTest("Annotations\Collection - getAnnotations()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Collection/GetCest.php b/tests/unit/Annotations/Collection/GetCest.php new file mode 100644 index 00000000000..c23033accc2 --- /dev/null +++ b/tests/unit/Annotations/Collection/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Collection; + +use UnitTester; + +class GetCest +{ + /** + * Tests Phalcon\Annotations\Collection :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsCollectionGet(UnitTester $I) + { + $I->wantToTest("Annotations\Collection - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Collection/HasCest.php b/tests/unit/Annotations/Collection/HasCest.php new file mode 100644 index 00000000000..960aa35ee22 --- /dev/null +++ b/tests/unit/Annotations/Collection/HasCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Collection; + +use UnitTester; + +class HasCest +{ + /** + * Tests Phalcon\Annotations\Collection :: has() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsCollectionHas(UnitTester $I) + { + $I->wantToTest("Annotations\Collection - has()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Collection/KeyCest.php b/tests/unit/Annotations/Collection/KeyCest.php new file mode 100644 index 00000000000..51ce6c0fbcc --- /dev/null +++ b/tests/unit/Annotations/Collection/KeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Collection; + +use UnitTester; + +class KeyCest +{ + /** + * Tests Phalcon\Annotations\Collection :: key() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsCollectionKey(UnitTester $I) + { + $I->wantToTest("Annotations\Collection - key()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Collection/NextCest.php b/tests/unit/Annotations/Collection/NextCest.php new file mode 100644 index 00000000000..af9774b971f --- /dev/null +++ b/tests/unit/Annotations/Collection/NextCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Collection; + +use UnitTester; + +class NextCest +{ + /** + * Tests Phalcon\Annotations\Collection :: next() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsCollectionNext(UnitTester $I) + { + $I->wantToTest("Annotations\Collection - next()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Collection/RewindCest.php b/tests/unit/Annotations/Collection/RewindCest.php new file mode 100644 index 00000000000..81841797a2b --- /dev/null +++ b/tests/unit/Annotations/Collection/RewindCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Collection; + +use UnitTester; + +class RewindCest +{ + /** + * Tests Phalcon\Annotations\Collection :: rewind() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsCollectionRewind(UnitTester $I) + { + $I->wantToTest("Annotations\Collection - rewind()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Collection/ValidCest.php b/tests/unit/Annotations/Collection/ValidCest.php new file mode 100644 index 00000000000..11f88b42d7b --- /dev/null +++ b/tests/unit/Annotations/Collection/ValidCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Collection; + +use UnitTester; + +class ValidCest +{ + /** + * Tests Phalcon\Annotations\Collection :: valid() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsCollectionValid(UnitTester $I) + { + $I->wantToTest("Annotations\Collection - valid()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Factory/LoadCest.php b/tests/unit/Annotations/Factory/LoadCest.php new file mode 100644 index 00000000000..cb8ed5814b1 --- /dev/null +++ b/tests/unit/Annotations/Factory/LoadCest.php @@ -0,0 +1,79 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Factory; + +use Phalcon\Annotations\Adapter\Apcu; +use Phalcon\Annotations\Factory; +use Phalcon\Test\Fixtures\Traits\FactoryTrait; +use UnitTester; + +class LoadCest +{ + use FactoryTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $this->init(); + } + + /** + * Tests Phalcon\Annotations\Factory :: load() - Config + * + * @param UnitTester $I + * + * @author Wojciech Ślawski + * @since 2017-03-02 + */ + public function testConfigFactory(UnitTester $I) + { + $I->wantToTest('Annotations\Factory - load() - Config'); + $options = $this->config->annotations; + $this->runTests($I, $options); + } + + /** + * Runs the tests based on different configurations + * + * @param UnitTester $I + * + * @param UnitTester $I + * @param Config|array $options + */ + private function runTests(UnitTester $I, $options) + { + /** @var Apcu $cache */ + $cache = Factory::load($options); + + $class = Apcu::class; + $actual = $cache; + $I->assertInstanceOf($class, $actual); + } + + /** + * Tests Phalcon\Annotations\Factory :: load() - array + * + * @param UnitTester $I + * + * @author Wojciech Ślawski + * @since 2017-03-02 + */ + public function testArrayFactory(UnitTester $I) + { + $I->wantToTest('Annotations\Factory - load() - array'); + /** @var Apc $annotations */ + $options = $this->arrayConfig["annotations"]; + $this->runTests($I, $options); + } +} diff --git a/tests/unit/Annotations/FactoryTest.php b/tests/unit/Annotations/FactoryTest.php deleted file mode 100644 index 5ffcf52bbf5..00000000000 --- a/tests/unit/Annotations/FactoryTest.php +++ /dev/null @@ -1,66 +0,0 @@ - - * @author Serghei Iakovlev - * @author Wojciech Ślawski - * @package Phalcon\Test\Unit\Annotations - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FactoryTest extends FactoryBase -{ - /** - * Test factory using Phalcon\Config - * - * @author Wojciech Ślawski - * @since 2017-03-02 - */ - public function testConfigFactory() - { - $this->specify( - "Factory using Phalcon\\Config doesn't work properly", - function () { - /** @var Apc $annotations */ - $options = $this->config->annotations; - $annotations = Factory::load($options); - expect($annotations)->isInstanceOf(Apc::class); - } - ); - } - - /** - * Test factory using array - * - * @author Wojciech Ślawski - * @since 2017-03-02 - */ - public function testArrayFactory() - { - $this->specify( - "Factory using array doesn't work properly", - function () { - /** @var Apc $annotations */ - $options = $this->arrayConfig["annotations"]; - $annotations = Factory::load($options); - expect($annotations)->isInstanceOf(Apc::class); - } - ); - } -} diff --git a/tests/unit/Annotations/Reader/ParseCest.php b/tests/unit/Annotations/Reader/ParseCest.php new file mode 100644 index 00000000000..fddb5513fc5 --- /dev/null +++ b/tests/unit/Annotations/Reader/ParseCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Reader; + +use UnitTester; + +class ParseCest +{ + /** + * Tests Phalcon\Annotations\Reader :: parse() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsReaderParse(UnitTester $I) + { + $I->wantToTest("Annotations\Reader - parse()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Reader/ParseDocBlockCest.php b/tests/unit/Annotations/Reader/ParseDocBlockCest.php new file mode 100644 index 00000000000..6949186b4ee --- /dev/null +++ b/tests/unit/Annotations/Reader/ParseDocBlockCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Reader; + +use UnitTester; + +class ParseDocBlockCest +{ + /** + * Tests Phalcon\Annotations\Reader :: parseDocBlock() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsReaderParseDocBlock(UnitTester $I) + { + $I->wantToTest("Annotations\Reader - parseDocBlock()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/ReaderCest.php b/tests/unit/Annotations/ReaderCest.php new file mode 100644 index 00000000000..20edb17b0ae --- /dev/null +++ b/tests/unit/Annotations/ReaderCest.php @@ -0,0 +1,237 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations; + +use Phalcon\Annotations\Exception; +use Phalcon\Annotations\Reader; +use UnitTester; +use function dataFolder; +use function file_exists; + +class ReaderCest +{ + /** + * Test throws ReflectionException when non-existent got class + * + * @author Phalcon Team + * @since 2016-01-25 + */ + public function testParseWithNonExistentClass(UnitTester $I) + { + $I->expectThrowable( + new \ReflectionException('Class TestClass1 does not exist', -1), + function () { + $reader = new Reader(); + $reader->parse('TestClass1'); + } + ); + } + + /** + * Test throws Phalcon\Annotations\Exception when got class with invalid + * annotation + * + * @author Phalcon Team + * @since 2016-01-25 + */ + public function testParseWithInvalidAnnotation(UnitTester $I) + { + $includeFile = dataFolder('fixtures/Annotations/TestInvalid.php'); + $I->assertTrue(file_exists($includeFile)); + require_once $includeFile; + + $file = dataFolder('fixtures/Annotations/TestInvalid.php'); + $I->expectThrowable( + new Exception('Syntax error, unexpected EOF in ' . $file), + function () { + $reader = new Reader(); + $reader->parse('TestInvalid'); + } + ); + } + + /** + * Tests Reader::parse + * + * @author Phalcon Team + * @since 2016-01-25 + */ + public function testReaderParse(UnitTester $I) + { + $includeFile = dataFolder('fixtures/Annotations/TestClass.php'); + $I->assertTrue(file_exists($includeFile)); + require_once $includeFile; + + $reader = new Reader(); + $parsing = $reader->parse('TestClass'); + + $I->assertTrue(isset($parsing['class'])); + $I->assertCount(9, $parsing['class']); + + // Simple + $I->assertEquals('Simple', $parsing['class'][0]['name']); + $I->assertFalse(isset($parsing['class'][0]['arguments'])); + + // Single Param + $I->assertEquals('SingleParam', $parsing['class'][1]['name']); + $I->assertTrue(isset($parsing['class'][1]['arguments'])); + $I->assertCount(1, $parsing['class'][1]['arguments']); + $I->assertEquals('Param', $parsing['class'][1]['arguments'][0]['expr']['value']); + + // Multiple Params + $I->assertEquals('MultipleParams', $parsing['class'][2]['name']); + $I->assertTrue(isset($parsing['class'][2]['arguments'])); + $I->assertCount(8, $parsing['class'][2]['arguments']); + $I->assertEquals('First', $parsing['class'][2]['arguments'][0]['expr']['value']); + $I->assertEquals('Second', $parsing['class'][2]['arguments'][1]['expr']['value']); + $I->assertEquals('1', $parsing['class'][2]['arguments'][2]['expr']['value']); + $I->assertEquals('1.1', $parsing['class'][2]['arguments'][3]['expr']['value']); + $I->assertEquals('-10', $parsing['class'][2]['arguments'][4]['expr']['value']); + $I->assertEquals(305, $parsing['class'][2]['arguments'][5]['expr']['type']); + $I->assertEquals(306, $parsing['class'][2]['arguments'][6]['expr']['type']); + $I->assertEquals(304, $parsing['class'][2]['arguments'][7]['expr']['type']); + + // Single Array Param + $I->assertEquals('Params', $parsing['class'][3]['name']); + $I->assertTrue(isset($parsing['class'][3]['arguments'])); + $I->assertCount(1, $parsing['class'][3]['arguments']); + $I->assertEquals(308, $parsing['class'][3]['arguments'][0]['expr']['type']); + $I->assertCount(3, $parsing['class'][3]['arguments'][0]['expr']['items']); + $I->assertEquals('key1', $parsing['class'][3]['arguments'][0]['expr']['items'][0]['expr']['value']); + $I->assertEquals('key2', $parsing['class'][3]['arguments'][0]['expr']['items'][1]['expr']['value']); + $I->assertEquals('key3', $parsing['class'][3]['arguments'][0]['expr']['items'][2]['expr']['value']); + + // Hash Params + $I->assertEquals('HashParams', $parsing['class'][4]['name']); + $I->assertTrue(isset($parsing['class'][4]['arguments'])); + $I->assertCount(1, $parsing['class'][8]['arguments']); + $I->assertEquals(308, $parsing['class'][4]['arguments'][0]['expr']['type']); + $I->assertCount(3, $parsing['class'][4]['arguments'][0]['expr']['items']); + $I->assertEquals('key1', $parsing['class'][4]['arguments'][0]['expr']['items'][0]['name']); + $I->assertEquals('value', $parsing['class'][4]['arguments'][0]['expr']['items'][0]['expr']['value']); + $I->assertEquals('key2', $parsing['class'][4]['arguments'][0]['expr']['items'][1]['name']); + $I->assertEquals('value', $parsing['class'][4]['arguments'][0]['expr']['items'][1]['expr']['value']); + $I->assertEquals('key3', $parsing['class'][4]['arguments'][0]['expr']['items'][2]['name']); + $I->assertEquals('value', $parsing['class'][4]['arguments'][0]['expr']['items'][2]['expr']['value']); + + // Named Params + $I->assertEquals('NamedParams', $parsing['class'][5]['name']); + $I->assertTrue(isset($parsing['class'][5]['arguments'])); + $I->assertCount(2, $parsing['class'][5]['arguments']); + $I->assertEquals('second', $parsing['class'][5]['arguments'][1]['name']); + $I->assertEquals('other', $parsing['class'][5]['arguments'][1]['expr']['value']); + $I->assertEquals('second', $parsing['class'][5]['arguments'][1]['name']); + $I->assertEquals('other', $parsing['class'][5]['arguments'][1]['expr']['value']); + + // Alternative Named Params + $I->assertEquals('AlternativeNamedParams', $parsing['class'][6]['name']); + $I->assertTrue(isset($parsing['class'][6]['arguments'])); + $I->assertCount(2, $parsing['class'][6]['arguments']); + $I->assertEquals('second', $parsing['class'][6]['arguments'][1]['name']); + $I->assertEquals('other', $parsing['class'][6]['arguments'][1]['expr']['value']); + $I->assertEquals('second', $parsing['class'][6]['arguments'][1]['name']); + $I->assertEquals('other', $parsing['class'][6]['arguments'][1]['expr']['value']); + + // Alternative Hash Params + $I->assertEquals('AlternativeHashParams', $parsing['class'][7]['name']); + $I->assertTrue(isset($parsing['class'][7]['arguments'])); + $I->assertCount(1, $parsing['class'][7]['arguments']); + $I->assertEquals(308, $parsing['class'][7]['arguments'][0]['expr']['type']); + $I->assertCount(3, $parsing['class'][7]['arguments'][0]['expr']['items']); + $I->assertEquals('key1', $parsing['class'][7]['arguments'][0]['expr']['items'][0]['name']); + $I->assertEquals('value', $parsing['class'][7]['arguments'][0]['expr']['items'][0]['expr']['value']); + $I->assertEquals('key2', $parsing['class'][7]['arguments'][0]['expr']['items'][1]['name']); + $I->assertEquals('value', $parsing['class'][7]['arguments'][0]['expr']['items'][1]['expr']['value']); + $I->assertEquals('key3', $parsing['class'][7]['arguments'][0]['expr']['items'][2]['name']); + $I->assertEquals('value', $parsing['class'][7]['arguments'][0]['expr']['items'][2]['expr']['value']); + + // Recursive Hash + $I->assertEquals('RecursiveHash', $parsing['class'][8]['name']); + $I->assertTrue(isset($parsing['class'][8]['arguments'])); + $I->assertCount(1, $parsing['class'][8]['arguments']); + $I->assertEquals(308, $parsing['class'][8]['arguments'][0]['expr']['type']); + $I->assertCount(3, $parsing['class'][8]['arguments'][0]['expr']['items']); + $I->assertEquals('key1', $parsing['class'][8]['arguments'][0]['expr']['items'][0]['name']); + $I->assertEquals('value', $parsing['class'][8]['arguments'][0]['expr']['items'][0]['expr']['value']); + $I->assertEquals('key2', $parsing['class'][8]['arguments'][0]['expr']['items'][1]['name']); + $I->assertEquals('value', $parsing['class'][8]['arguments'][0]['expr']['items'][1]['expr']['value']); + $I->assertEquals('key3', $parsing['class'][8]['arguments'][0]['expr']['items'][2]['name']); + $I->assertEquals(308, $parsing['class'][8]['arguments'][0]['expr']['items'][2]['expr']['type']); + + // Properties + $I->assertTrue(isset($parsing['properties'])); + $I->assertCount(3, $parsing['properties']); + + // Multiple well ordered annotations + $I->assertTrue(isset($parsing['properties']['testProp1'])); + $I->assertCount(4, $parsing['properties']['testProp1']); + $I->assertEquals('var', $parsing['properties']['testProp1'][0]['name']); + $I->assertEquals('Simple', $parsing['properties']['testProp1'][1]['name']); + $I->assertEquals('SingleParam', $parsing['properties']['testProp1'][2]['name']); + $I->assertEquals('MultipleParams', $parsing['properties']['testProp1'][3]['name']); + + // Comment without content + $I->assertFalse(isset($parsing['properties']['testProp2'])); + + // Same line annotations + $I->assertCount(3, $parsing['properties']['testProp3']); + $I->assertEquals('Simple', $parsing['properties']['testProp3'][0]['name']); + $I->assertEquals('SingleParam', $parsing['properties']['testProp3'][1]['name']); + $I->assertEquals('MultipleParams', $parsing['properties']['testProp3'][2]['name']); + + // Same line annotations + $I->assertCount(3, $parsing['properties']['testProp4']); + $I->assertEquals('Simple', $parsing['properties']['testProp4'][0]['name']); + $I->assertEquals('SingleParam', $parsing['properties']['testProp4'][1]['name']); + $I->assertEquals('MultipleParams', $parsing['properties']['testProp4'][2]['name']); + + // No docblock + $I->assertFalse(isset($parsing['properties']['testMethod5'])); + + // No annotations + $I->assertFalse(isset($parsing['properties']['testMethod6'])); + + // Properties + $I->assertTrue(isset($parsing['methods'])); + $I->assertCount(4, $parsing['methods']); + + // Multiple well ordered annotations + $I->assertTrue(isset($parsing['methods']['testMethod1'])); + $I->assertCount(5, $parsing['methods']['testMethod1']); + $I->assertEquals('return', $parsing['methods']['testMethod1'][0]['name']); + $I->assertEquals('Simple', $parsing['methods']['testMethod1'][1]['name']); + $I->assertEquals('SingleParam', $parsing['methods']['testMethod1'][2]['name']); + $I->assertEquals('MultipleParams', $parsing['methods']['testMethod1'][3]['name']); + $I->assertEquals('NamedMultipleParams', $parsing['methods']['testMethod1'][4]['name']); + + // Comment without content + $I->assertFalse(isset($parsing['methods']['testMethod2'])); + + // Same line annotations + $I->assertCount(3, $parsing['methods']['testMethod3']); + $I->assertEquals('Simple', $parsing['methods']['testMethod3'][0]['name']); + $I->assertEquals('SingleParam', $parsing['methods']['testMethod3'][1]['name']); + $I->assertEquals('MultipleParams', $parsing['methods']['testMethod3'][2]['name']); + + // Unordered annotations + $I->assertCount(3, $parsing['methods']['testMethod4']); + $I->assertEquals('Simple', $parsing['methods']['testMethod4'][0]['name']); + $I->assertEquals('SingleParam', $parsing['methods']['testMethod4'][1]['name']); + $I->assertEquals('MultipleParams', $parsing['methods']['testMethod4'][2]['name']); + + // Unordered annotations + extra content + $I->assertCount(3, $parsing['methods']['testMethod5']); + $I->assertEquals('Simple', $parsing['methods']['testMethod5'][0]['name']); + $I->assertEquals('SingleParam', $parsing['methods']['testMethod5'][1]['name']); + $I->assertEquals('MultipleParams', $parsing['methods']['testMethod5'][2]['name']); + } +} diff --git a/tests/unit/Annotations/ReaderTest.php b/tests/unit/Annotations/ReaderTest.php deleted file mode 100644 index 8e3f01ec4ea..00000000000 --- a/tests/unit/Annotations/ReaderTest.php +++ /dev/null @@ -1,248 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Annotations - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ReaderTest extends UnitTest -{ - /** - * Test throws ReflectionException when non-existent got class - * - * @author Serghei Iakovlev - * @since 2016-01-25 - * - * @expectedException \ReflectionException - * @expectedExceptionMessage Class TestClass1 does not exist - */ - public function testParseWithNonExistentClass() - { - $this->specify( - "Reader::parse does not throws ReflectionException when non-existent got class", - function () { - $reader = new Reader(); - $reader->parse('TestClass1'); - } - ); - } - - /** - * Test throws Phalcon\Annotations\Exception when got class with invalid annotation - * - * @author Serghei Iakovlev - * @since 2016-01-25 - * - * @expectedException \Phalcon\Annotations\Exception - * @expectedExceptionMessageRegExp #Syntax error, unexpected EOF in .*TestInvalid\.php# - */ - public function testParseWithInvalidAnnotation() - { - $this->specify( - "Reader::parse does not throws expected exception when got class with invalid annotation", - function () { - require_once PATH_DATA . 'annotations/TestInvalid.php'; - - $reader = new Reader(); - $reader->parse('TestInvalid'); - } - ); - } - - /** - * Tests Reader::parse - * - * @author Serghei Iakovlev - * @since 2016-01-25 - */ - public function testReaderParse() - { - $this->specify( - "Reader::parse parses the annotations incorrectly", - function () { - require_once PATH_DATA . 'annotations/TestClass.php'; - - $reader = new Reader(); - $parsing = $reader->parse('TestClass'); - - expect(isset($parsing['class']))->true(); - expect($parsing['class'])->count(9); - - // Simple - expect($parsing['class'][0]['name'])->equals('Simple'); - expect(isset($parsing['class'][0]['arguments']))->false(); - - // Single Param - expect($parsing['class'][1]['name'])->equals('SingleParam'); - expect(isset($parsing['class'][1]['arguments']))->true(); - expect($parsing['class'][1]['arguments'])->count(1); - expect($parsing['class'][1]['arguments'][0]['expr']['value'])->equals('Param'); - - // Multiple Params - expect($parsing['class'][2]['name'])->equals('MultipleParams'); - expect(isset($parsing['class'][2]['arguments']))->true(); - expect($parsing['class'][2]['arguments'])->count(8); - expect($parsing['class'][2]['arguments'][0]['expr']['value'])->equals('First'); - expect($parsing['class'][2]['arguments'][1]['expr']['value'])->equals('Second'); - expect($parsing['class'][2]['arguments'][2]['expr']['value'])->equals('1'); - expect($parsing['class'][2]['arguments'][3]['expr']['value'])->equals('1.1'); - expect($parsing['class'][2]['arguments'][4]['expr']['value'])->equals('-10'); - expect($parsing['class'][2]['arguments'][5]['expr']['type'])->equals(305); - expect($parsing['class'][2]['arguments'][6]['expr']['type'])->equals(306); - expect($parsing['class'][2]['arguments'][7]['expr']['type'])->equals(304); - - // Single Array Param - expect($parsing['class'][3]['name'])->equals('Params'); - expect(isset($parsing['class'][3]['arguments']))->true(); - expect($parsing['class'][3]['arguments'])->count(1); - expect($parsing['class'][3]['arguments'][0]['expr']['type'])->equals(308); - expect($parsing['class'][3]['arguments'][0]['expr']['items'])->count(3); - expect($parsing['class'][3]['arguments'][0]['expr']['items'][0]['expr']['value'])->equals('key1'); - expect($parsing['class'][3]['arguments'][0]['expr']['items'][1]['expr']['value'])->equals('key2'); - expect($parsing['class'][3]['arguments'][0]['expr']['items'][2]['expr']['value'])->equals('key3'); - - // Hash Params - expect($parsing['class'][4]['name'])->equals('HashParams'); - expect(isset($parsing['class'][4]['arguments']))->true(); - expect($parsing['class'][4]['arguments'])->count(1); - expect($parsing['class'][4]['arguments'][0]['expr']['type'])->equals(308); - expect($parsing['class'][4]['arguments'][0]['expr']['items'])->count(3); - expect($parsing['class'][4]['arguments'][0]['expr']['items'][0]['name'])->equals('key1'); - expect($parsing['class'][4]['arguments'][0]['expr']['items'][0]['expr']['value'])->equals('value'); - expect($parsing['class'][4]['arguments'][0]['expr']['items'][1]['name'])->equals('key2'); - expect($parsing['class'][4]['arguments'][0]['expr']['items'][1]['expr']['value'])->equals('value'); - expect($parsing['class'][4]['arguments'][0]['expr']['items'][2]['name'])->equals('key3'); - expect($parsing['class'][4]['arguments'][0]['expr']['items'][2]['expr']['value'])->equals('value'); - - // Named Params - expect($parsing['class'][5]['name'])->equals('NamedParams'); - expect(isset($parsing['class'][5]['arguments']))->true(); - expect($parsing['class'][5]['arguments'])->count(2); - expect($parsing['class'][5]['arguments'][0]['name'])->equals('first'); - expect($parsing['class'][5]['arguments'][0]['expr']['value'])->equals('some'); - expect($parsing['class'][5]['arguments'][1]['name'])->equals('second'); - expect($parsing['class'][5]['arguments'][1]['expr']['value'])->equals('other'); - - // Alternative Named Params - expect($parsing['class'][6]['name'])->equals('AlternativeNamedParams'); - expect(isset($parsing['class'][6]['arguments']))->true(); - expect($parsing['class'][6]['arguments'])->count(2); - expect($parsing['class'][6]['arguments'][0]['name'])->equals('first'); - expect($parsing['class'][6]['arguments'][0]['expr']['value'])->equals('some'); - expect($parsing['class'][6]['arguments'][1]['name'])->equals('second'); - expect($parsing['class'][6]['arguments'][1]['expr']['value'])->equals('other'); - - // Alternative Hash Params - expect($parsing['class'][7]['name'])->equals('AlternativeHashParams'); - expect(isset($parsing['class'][7]['arguments']))->true(); - expect($parsing['class'][7]['arguments'])->count(1); - expect($parsing['class'][7]['arguments'][0]['expr']['type'])->equals(308); - expect($parsing['class'][7]['arguments'][0]['expr']['items'])->count(3); - expect($parsing['class'][7]['arguments'][0]['expr']['items'][0]['name'])->equals('key1'); - expect($parsing['class'][7]['arguments'][0]['expr']['items'][0]['expr']['value'])->equals('value'); - expect($parsing['class'][7]['arguments'][0]['expr']['items'][1]['name'])->equals('key2'); - expect($parsing['class'][7]['arguments'][0]['expr']['items'][1]['expr']['value'])->equals('value'); - expect($parsing['class'][7]['arguments'][0]['expr']['items'][2]['name'])->equals('key3'); - expect($parsing['class'][7]['arguments'][0]['expr']['items'][2]['expr']['value'])->equals('value'); - - // Recursive Hash - expect($parsing['class'][8]['name'])->equals('RecursiveHash'); - expect(isset($parsing['class'][8]['arguments']))->true(); - expect($parsing['class'][8]['arguments'])->count(1); - expect($parsing['class'][8]['arguments'][0]['expr']['type'])->equals(308); - expect($parsing['class'][8]['arguments'][0]['expr']['items'])->count(3); - expect($parsing['class'][8]['arguments'][0]['expr']['items'][0]['name'])->equals('key1'); - expect($parsing['class'][8]['arguments'][0]['expr']['items'][0]['expr']['value'])->equals('value'); - expect($parsing['class'][8]['arguments'][0]['expr']['items'][1]['name'])->equals('key2'); - expect($parsing['class'][8]['arguments'][0]['expr']['items'][1]['expr']['value'])->equals('value'); - expect($parsing['class'][8]['arguments'][0]['expr']['items'][2]['name'])->equals('key3'); - expect($parsing['class'][8]['arguments'][0]['expr']['items'][2]['expr']['type'])->equals(308); - - // Properties - expect(isset($parsing['properties']))->true(); - expect($parsing['properties'])->count(3); - - // Multiple well ordered annotations - expect(isset($parsing['properties']['testProp1']))->true(); - expect($parsing['properties']['testProp1'])->count(4); - expect($parsing['properties']['testProp1'][0]['name'])->equals('var'); - expect($parsing['properties']['testProp1'][1]['name'])->equals('Simple'); - expect($parsing['properties']['testProp1'][2]['name'])->equals('SingleParam'); - expect($parsing['properties']['testProp1'][3]['name'])->equals('MultipleParams'); - - // Comment without content - expect(isset($parsing['properties']['testProp2']))->false(); - - // Same line annotations - expect($parsing['properties']['testProp3'])->count(3); - expect($parsing['properties']['testProp3'][0]['name'])->equals('Simple'); - expect($parsing['properties']['testProp3'][1]['name'])->equals('SingleParam'); - expect($parsing['properties']['testProp3'][2]['name'])->equals('MultipleParams'); - - // Same line annotations - expect($parsing['properties']['testProp4'])->count(3); - expect($parsing['properties']['testProp4'][0]['name'])->equals('Simple'); - expect($parsing['properties']['testProp4'][1]['name'])->equals('SingleParam'); - expect($parsing['properties']['testProp4'][2]['name'])->equals('MultipleParams'); - - // No docblock - expect(isset($parsing['properties']['testProp5']))->false(); - - // No annotations - expect(isset($parsing['properties']['testProp6']))->false(); - - // Properties - expect(isset($parsing['methods']))->true(); - expect($parsing['methods'])->count(4); - - // Multiple well ordered annotations - expect(isset($parsing['methods']['testMethod1']))->true(); - expect($parsing['methods']['testMethod1'])->count(5); - expect($parsing['methods']['testMethod1'][0]['name'])->equals('return'); - - expect($parsing['methods']['testMethod1'][1]['name'])->equals('Simple'); - expect($parsing['methods']['testMethod1'][2]['name'])->equals('SingleParam'); - expect($parsing['methods']['testMethod1'][3]['name'])->equals('MultipleParams'); - expect($parsing['methods']['testMethod1'][4]['name'])->equals('NamedMultipleParams'); - - // Comment without content - expect(isset($parsing['methods']['testMethod2']))->false(); - - // Same line annotations - expect($parsing['methods']['testMethod3'])->count(3); - expect($parsing['methods']['testMethod3'][0]['name'])->equals('Simple'); - expect($parsing['methods']['testMethod3'][1]['name'])->equals('SingleParam'); - expect($parsing['methods']['testMethod3'][2]['name'])->equals('MultipleParams'); - - // Unordered annotations - expect($parsing['methods']['testMethod4'])->count(3); - expect($parsing['methods']['testMethod4'][0]['name'])->equals('Simple'); - expect($parsing['methods']['testMethod4'][1]['name'])->equals('SingleParam'); - expect($parsing['methods']['testMethod4'][2]['name'])->equals('MultipleParams'); - - // Unordered annotations + extra content - expect($parsing['methods']['testMethod5'])->count(3); - expect($parsing['methods']['testMethod5'][0]['name'])->equals('Simple'); - expect($parsing['methods']['testMethod5'][1]['name'])->equals('SingleParam'); - expect($parsing['methods']['testMethod5'][2]['name'])->equals('MultipleParams'); - } - ); - } -} diff --git a/tests/unit/Annotations/Reflection/ConstructCest.php b/tests/unit/Annotations/Reflection/ConstructCest.php new file mode 100644 index 00000000000..5ff6ad188a7 --- /dev/null +++ b/tests/unit/Annotations/Reflection/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Reflection; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Annotations\Reflection :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsReflectionConstruct(UnitTester $I) + { + $I->wantToTest("Annotations\Reflection - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Reflection/GetClassAnnotationsCest.php b/tests/unit/Annotations/Reflection/GetClassAnnotationsCest.php new file mode 100644 index 00000000000..e7e7105a16a --- /dev/null +++ b/tests/unit/Annotations/Reflection/GetClassAnnotationsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Reflection; + +use UnitTester; + +class GetClassAnnotationsCest +{ + /** + * Tests Phalcon\Annotations\Reflection :: getClassAnnotations() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsReflectionGetClassAnnotations(UnitTester $I) + { + $I->wantToTest("Annotations\Reflection - getClassAnnotations()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Reflection/GetMethodsAnnotationsCest.php b/tests/unit/Annotations/Reflection/GetMethodsAnnotationsCest.php new file mode 100644 index 00000000000..9b8fc9b413b --- /dev/null +++ b/tests/unit/Annotations/Reflection/GetMethodsAnnotationsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Reflection; + +use UnitTester; + +class GetMethodsAnnotationsCest +{ + /** + * Tests Phalcon\Annotations\Reflection :: getMethodsAnnotations() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsReflectionGetMethodsAnnotations(UnitTester $I) + { + $I->wantToTest("Annotations\Reflection - getMethodsAnnotations()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Reflection/GetPropertiesAnnotationsCest.php b/tests/unit/Annotations/Reflection/GetPropertiesAnnotationsCest.php new file mode 100644 index 00000000000..18fa4f67faa --- /dev/null +++ b/tests/unit/Annotations/Reflection/GetPropertiesAnnotationsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Reflection; + +use UnitTester; + +class GetPropertiesAnnotationsCest +{ + /** + * Tests Phalcon\Annotations\Reflection :: getPropertiesAnnotations() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsReflectionGetPropertiesAnnotations(UnitTester $I) + { + $I->wantToTest("Annotations\Reflection - getPropertiesAnnotations()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Reflection/GetReflectionDataCest.php b/tests/unit/Annotations/Reflection/GetReflectionDataCest.php new file mode 100644 index 00000000000..980234a749d --- /dev/null +++ b/tests/unit/Annotations/Reflection/GetReflectionDataCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Reflection; + +use UnitTester; + +class GetReflectionDataCest +{ + /** + * Tests Phalcon\Annotations\Reflection :: getReflectionData() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsReflectionGetReflectionData(UnitTester $I) + { + $I->wantToTest("Annotations\Reflection - getReflectionData()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/Reflection/SetStateCest.php b/tests/unit/Annotations/Reflection/SetStateCest.php new file mode 100644 index 00000000000..77a8d713f9c --- /dev/null +++ b/tests/unit/Annotations/Reflection/SetStateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations\Reflection; + +use UnitTester; + +class SetStateCest +{ + /** + * Tests Phalcon\Annotations\Reflection :: __set_state() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function annotationsReflectionSetState(UnitTester $I) + { + $I->wantToTest("Annotations\Reflection - __set_state()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Annotations/ReflectionCest.php b/tests/unit/Annotations/ReflectionCest.php new file mode 100644 index 00000000000..d6a0c1e29dc --- /dev/null +++ b/tests/unit/Annotations/ReflectionCest.php @@ -0,0 +1,138 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Annotations; + +use Phalcon\Annotations\Reader; +use Phalcon\Annotations\Reflection; +use UnitTester; + +class ReflectionCest +{ + /** + * Tests creating empty Reflection object + * + * @author Phalcon Team + * @since 2016-01-26 + */ + public function testEmptyReflection(UnitTester $I) + { + $reflection = new Reflection(); + + $I->assertEquals(null, $reflection->getClassAnnotations()); + $I->assertEquals(null, $reflection->getMethodsAnnotations()); + $I->assertEquals(null, $reflection->getPropertiesAnnotations()); + } + + /** + * Tests parsing a real class + * + * @author Phalcon Team + * @since 2016-01-26 + */ + public function testParsingARealClass(UnitTester $I) + { + $reader = new Reader(); + $reflection = new Reflection($reader->parse('TestClass')); + + $classAnnotations = $reflection->getClassAnnotations(); + $I->assertEquals('Phalcon\Annotations\Collection', get_class($classAnnotations)); + + $number = 0; + foreach ($classAnnotations as $annotation) { + $I->assertEquals('Phalcon\Annotations\Annotation', get_class($annotation)); + $number++; + } + + $I->assertEquals(9, $number); + $I->assertCount(9, $classAnnotations); + } + + /** + * Tests parsing class annotations + * + * @author Phalcon Team + * @since 2016-01-26 + */ + public function testClassAnnotations(UnitTester $I) + { + $reader = new Reader(); + $reflection = new Reflection($reader->parse('TestClass')); + + $methodsAnnotations = $reflection->getMethodsAnnotations(); + + $I->assertEquals('array', gettype($methodsAnnotations)); + $I->assertEquals('Phalcon\Annotations\Collection', get_class($methodsAnnotations['testMethod1'])); + + $total = 0; + foreach ($methodsAnnotations as $method => $annotations) { + $I->assertEquals('string', gettype($method)); + + $number = 0; + foreach ($annotations as $annotation) { + $I->assertEquals('Phalcon\Annotations\Annotation', get_class($annotation)); + $number++; + $total++; + } + $I->assertGreaterThan(0, $number); + } + + $I->assertEquals(14, $total); + + /** @var \Phalcon\Annotations\Collection $annotations */ + $annotations = $methodsAnnotations['testMethod1']; + + $I->assertTrue($annotations->has('Simple')); + $I->assertFalse($annotations->has('NoSimple')); + + $annotation = $annotations->get('Simple'); + $I->assertEquals('Simple', $annotation->getName()); + $I->assertEquals(null, $annotation->getArguments()); + $I->assertEquals(0, $annotation->numberArguments()); + $I->assertFalse($annotation->hasArgument('none')); + + $annotation = $annotations->get('NamedMultipleParams'); + $I->assertEquals('NamedMultipleParams', $annotation->getName()); + $I->assertEquals(2, $annotation->numberArguments()); + $I->assertEquals(['first' => 'First', 'second' => 'Second'], $annotation->getArguments()); + $I->assertTrue($annotation->hasArgument('first')); + $I->assertEquals('First', $annotation->getArgument('first')); + $I->assertFalse($annotation->hasArgument('none')); + + $propertiesAnnotations = $reflection->getPropertiesAnnotations(); + $I->assertTrue(is_array($propertiesAnnotations)); + $I->assertEquals('Phalcon\Annotations\Collection', get_class($propertiesAnnotations['testProp1'])); + + $total = 0; + foreach ($propertiesAnnotations as $property => $annotations) { + $I->assertEquals('Phalcon\Annotations\Collection', get_class($propertiesAnnotations['testProp1'])); + + $number = 0; + foreach ($annotations as $annotation) { + $I->assertEquals('Phalcon\Annotations\Annotation', get_class($annotation)); + $number++; + $total++; + } + + $I->assertGreaterThan(0, $number); + } + + $I->assertEquals(10, $total); + } + + /** + * executed before each test + */ + protected function _before(UnitTester $I) + { + require_once dataFolder('fixtures/Annotations/TestClass.php'); + } +} diff --git a/tests/unit/Annotations/ReflectionTest.php b/tests/unit/Annotations/ReflectionTest.php deleted file mode 100644 index 469ae8cfb3f..00000000000 --- a/tests/unit/Annotations/ReflectionTest.php +++ /dev/null @@ -1,162 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Annotations - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ReflectionTest extends UnitTest -{ - /** - * executed before each test - */ - protected function _before() - { - parent::_before(); - require_once PATH_DATA . 'annotations/TestClass.php'; - } - - /** - * Tests creating empty Reflection object - * - * @author Serghei Iakovlev - * @since 2016-01-26 - */ - public function testEmptyReflection() - { - $this->specify( - 'Incorrect initialization Reflection object without $reflectionData parameter', - function () { - $reflection = new Reflection(); - - expect($reflection->getClassAnnotations())->equals(null); - expect($reflection->getMethodsAnnotations())->equals(null); - expect($reflection->getPropertiesAnnotations())->equals(null); - } - ); - } - - /** - * Tests parsing a real class - * - * @author Serghei Iakovlev - * @since 2016-01-26 - */ - public function testParsingARealClass() - { - $this->specify( - 'Parsing a real class does not return correct result', - function () { - $reader = new Reader(); - $reflection = new Reflection($reader->parse('TestClass')); - - $classAnnotations = $reflection->getClassAnnotations(); - expect(get_class($classAnnotations))->equals('Phalcon\Annotations\Collection'); - - $number = 0; - foreach ($classAnnotations as $annotation) { - expect(get_class($annotation))->equals('Phalcon\Annotations\Annotation'); - $number++; - } - - expect($number)->equals(9); - expect($classAnnotations)->count(9); - } - ); - } - - /** - * Tests parsing class annotations - * - * @author Serghei Iakovlev - * @since 2016-01-26 - */ - public function testClassAnnotations() - { - $this->specify( - 'Reflection does not parse annotations correctly', - function () { - $reader = new Reader(); - $reflection = new Reflection($reader->parse('TestClass')); - - $methodsAnnotations = $reflection->getMethodsAnnotations(); - - expect(gettype($methodsAnnotations))->equals('array'); - expect(get_class($methodsAnnotations['testMethod1']))->equals('Phalcon\Annotations\Collection'); - - $total = 0; - foreach ($methodsAnnotations as $method => $annotations) { - expect(gettype($method))->equals('string'); - - $number = 0; - foreach ($annotations as $annotation) { - expect(get_class($annotation))->equals('Phalcon\Annotations\Annotation'); - $number++; - $total++; - } - expect($number > 0)->true(); - } - - expect($total)->equals(14); - - /** @var \Phalcon\Annotations\Collection $annotations */ - $annotations = $methodsAnnotations['testMethod1']; - - expect($annotations->has('Simple'))->true(); - expect($annotations->has('NoSimple'))->false(); - - $annotation = $annotations->get('Simple'); - expect($annotation->getName())->equals('Simple'); - expect($annotation->getArguments())->equals(null); - expect($annotation->numberArguments())->equals(0); - expect($annotation->hasArgument('none'))->false(); - - $annotation = $annotations->get('NamedMultipleParams'); - expect($annotation->getName())->equals('NamedMultipleParams'); - expect($annotation->numberArguments())->equals(2); - expect($annotation->getArguments())->equals(['first' => 'First', 'second' => 'Second']); - expect($annotation->hasArgument('first'))->true(); - expect($annotation->getArgument('first'))->equals('First'); - expect($annotation->hasArgument('none'))->false(); - - $propertiesAnnotations = $reflection->getPropertiesAnnotations(); - expect(is_array($propertiesAnnotations))->true(); - expect(get_class($propertiesAnnotations['testProp1']))->equals('Phalcon\Annotations\Collection'); - - $total = 0; - foreach ($propertiesAnnotations as $property => $annotations) { - expect(get_class($propertiesAnnotations['testProp1']))->equals('Phalcon\Annotations\Collection'); - - $number = 0; - foreach ($annotations as $annotation) { - expect(get_class($annotation))->equals('Phalcon\Annotations\Annotation'); - $number++; - $total++; - } - - expect($number > 0)->true(); - } - - expect($total)->equals(10); - } - ); - } -} diff --git a/tests/unit/Application/ConstructCest.php b/tests/unit/Application/ConstructCest.php new file mode 100644 index 00000000000..6e300b43182 --- /dev/null +++ b/tests/unit/Application/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Application; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Application :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function applicationConstruct(UnitTester $I) + { + $I->wantToTest("Application - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Application/GetDICest.php b/tests/unit/Application/GetDICest.php new file mode 100644 index 00000000000..c088fe36cc1 --- /dev/null +++ b/tests/unit/Application/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Application; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Application :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function applicationGetDI(UnitTester $I) + { + $I->wantToTest("Application - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Application/GetDefaultModuleCest.php b/tests/unit/Application/GetDefaultModuleCest.php new file mode 100644 index 00000000000..54643f4e833 --- /dev/null +++ b/tests/unit/Application/GetDefaultModuleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Application; + +use UnitTester; + +class GetDefaultModuleCest +{ + /** + * Tests Phalcon\Application :: getDefaultModule() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function applicationGetDefaultModule(UnitTester $I) + { + $I->wantToTest("Application - getDefaultModule()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Application/GetEventsManagerCest.php b/tests/unit/Application/GetEventsManagerCest.php new file mode 100644 index 00000000000..603131229ca --- /dev/null +++ b/tests/unit/Application/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Application; + +use UnitTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Application :: getEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function applicationGetEventsManager(UnitTester $I) + { + $I->wantToTest("Application - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Application/GetModuleCest.php b/tests/unit/Application/GetModuleCest.php new file mode 100644 index 00000000000..17fd427e75b --- /dev/null +++ b/tests/unit/Application/GetModuleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Application; + +use UnitTester; + +class GetModuleCest +{ + /** + * Tests Phalcon\Application :: getModule() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function applicationGetModule(UnitTester $I) + { + $I->wantToTest("Application - getModule()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Application/GetModulesCest.php b/tests/unit/Application/GetModulesCest.php new file mode 100644 index 00000000000..89749610de2 --- /dev/null +++ b/tests/unit/Application/GetModulesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Application; + +use UnitTester; + +class GetModulesCest +{ + /** + * Tests Phalcon\Application :: getModules() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function applicationGetModules(UnitTester $I) + { + $I->wantToTest("Application - getModules()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Application/HandleCest.php b/tests/unit/Application/HandleCest.php new file mode 100644 index 00000000000..f5a052248bd --- /dev/null +++ b/tests/unit/Application/HandleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Application; + +use UnitTester; + +class HandleCest +{ + /** + * Tests Phalcon\Application :: handle() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function applicationHandle(UnitTester $I) + { + $I->wantToTest("Application - handle()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Application/RegisterModulesCest.php b/tests/unit/Application/RegisterModulesCest.php new file mode 100644 index 00000000000..19625cd9749 --- /dev/null +++ b/tests/unit/Application/RegisterModulesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Application; + +use UnitTester; + +class RegisterModulesCest +{ + /** + * Tests Phalcon\Application :: registerModules() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function applicationRegisterModules(UnitTester $I) + { + $I->wantToTest("Application - registerModules()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Application/SetDICest.php b/tests/unit/Application/SetDICest.php new file mode 100644 index 00000000000..16274dc5027 --- /dev/null +++ b/tests/unit/Application/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Application; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Application :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function applicationSetDI(UnitTester $I) + { + $I->wantToTest("Application - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Application/SetDefaultModuleCest.php b/tests/unit/Application/SetDefaultModuleCest.php new file mode 100644 index 00000000000..0c669b12b59 --- /dev/null +++ b/tests/unit/Application/SetDefaultModuleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Application; + +use UnitTester; + +class SetDefaultModuleCest +{ + /** + * Tests Phalcon\Application :: setDefaultModule() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function applicationSetDefaultModule(UnitTester $I) + { + $I->wantToTest("Application - setDefaultModule()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Application/SetEventsManagerCest.php b/tests/unit/Application/SetEventsManagerCest.php new file mode 100644 index 00000000000..819ebd8732a --- /dev/null +++ b/tests/unit/Application/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Application; + +use UnitTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Application :: setEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function applicationSetEventsManager(UnitTester $I) + { + $I->wantToTest("Application - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Application/UnderscoreGetCest.php b/tests/unit/Application/UnderscoreGetCest.php new file mode 100644 index 00000000000..dad4b98440b --- /dev/null +++ b/tests/unit/Application/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Application; + +use UnitTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Application :: __get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function applicationUnderscoreGet(UnitTester $I) + { + $I->wantToTest("Application - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/AddCest.php b/tests/unit/Assets/Collection/AddCest.php new file mode 100644 index 00000000000..9e41a33a6e6 --- /dev/null +++ b/tests/unit/Assets/Collection/AddCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class AddCest +{ + /** + * Tests Phalcon\Assets\Collection :: add() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionAdd(UnitTester $I) + { + $I->wantToTest("Assets\Collection - add()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/AddCssCest.php b/tests/unit/Assets/Collection/AddCssCest.php new file mode 100644 index 00000000000..1bcf151fe6e --- /dev/null +++ b/tests/unit/Assets/Collection/AddCssCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class AddCssCest +{ + /** + * Tests Phalcon\Assets\Collection :: addCss() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionAddCss(UnitTester $I) + { + $I->wantToTest("Assets\Collection - addCss()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/AddFilterCest.php b/tests/unit/Assets/Collection/AddFilterCest.php new file mode 100644 index 00000000000..1daab2459c9 --- /dev/null +++ b/tests/unit/Assets/Collection/AddFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class AddFilterCest +{ + /** + * Tests Phalcon\Assets\Collection :: addFilter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionAddFilter(UnitTester $I) + { + $I->wantToTest("Assets\Collection - addFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/AddInlineCest.php b/tests/unit/Assets/Collection/AddInlineCest.php new file mode 100644 index 00000000000..222cc490425 --- /dev/null +++ b/tests/unit/Assets/Collection/AddInlineCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class AddInlineCest +{ + /** + * Tests Phalcon\Assets\Collection :: addInline() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionAddInline(UnitTester $I) + { + $I->wantToTest("Assets\Collection - addInline()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/AddInlineCssCest.php b/tests/unit/Assets/Collection/AddInlineCssCest.php new file mode 100644 index 00000000000..e291992ca9e --- /dev/null +++ b/tests/unit/Assets/Collection/AddInlineCssCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class AddInlineCssCest +{ + /** + * Tests Phalcon\Assets\Collection :: addInlineCss() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionAddInlineCss(UnitTester $I) + { + $I->wantToTest("Assets\Collection - addInlineCss()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/AddInlineJsCest.php b/tests/unit/Assets/Collection/AddInlineJsCest.php new file mode 100644 index 00000000000..21b0b04a6e8 --- /dev/null +++ b/tests/unit/Assets/Collection/AddInlineJsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class AddInlineJsCest +{ + /** + * Tests Phalcon\Assets\Collection :: addInlineJs() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionAddInlineJs(UnitTester $I) + { + $I->wantToTest("Assets\Collection - addInlineJs()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/AddJsCest.php b/tests/unit/Assets/Collection/AddJsCest.php new file mode 100644 index 00000000000..4c83e746c57 --- /dev/null +++ b/tests/unit/Assets/Collection/AddJsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class AddJsCest +{ + /** + * Tests Phalcon\Assets\Collection :: addJs() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionAddJs(UnitTester $I) + { + $I->wantToTest("Assets\Collection - addJs()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/ConstructCest.php b/tests/unit/Assets/Collection/ConstructCest.php new file mode 100644 index 00000000000..b5767375fc8 --- /dev/null +++ b/tests/unit/Assets/Collection/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Assets\Collection :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testConstruct(UnitTester $I) + { + $I->wantToTest("Assets\Collection - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/CountCest.php b/tests/unit/Assets/Collection/CountCest.php new file mode 100644 index 00000000000..2956b425fc6 --- /dev/null +++ b/tests/unit/Assets/Collection/CountCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class CountCest +{ + /** + * Tests Phalcon\Assets\Collection :: count() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionCount(UnitTester $I) + { + $I->wantToTest("Assets\Collection - count()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/CurrentCest.php b/tests/unit/Assets/Collection/CurrentCest.php new file mode 100644 index 00000000000..3d1327f98ad --- /dev/null +++ b/tests/unit/Assets/Collection/CurrentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class CurrentCest +{ + /** + * Tests Phalcon\Assets\Collection :: current() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionCurrent(UnitTester $I) + { + $I->wantToTest("Assets\Collection - current()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/GetAttributesCest.php b/tests/unit/Assets/Collection/GetAttributesCest.php new file mode 100644 index 00000000000..aaf2a678102 --- /dev/null +++ b/tests/unit/Assets/Collection/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Assets\Collection :: getAttributes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionGetAttributes(UnitTester $I) + { + $I->wantToTest("Assets\Collection - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/GetCodesCest.php b/tests/unit/Assets/Collection/GetCodesCest.php new file mode 100644 index 00000000000..249dd2dcb1d --- /dev/null +++ b/tests/unit/Assets/Collection/GetCodesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class GetCodesCest +{ + /** + * Tests Phalcon\Assets\Collection :: getCodes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionGetCodes(UnitTester $I) + { + $I->wantToTest("Assets\Collection - getCodes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/GetFiltersCest.php b/tests/unit/Assets/Collection/GetFiltersCest.php new file mode 100644 index 00000000000..23329b238ab --- /dev/null +++ b/tests/unit/Assets/Collection/GetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class GetFiltersCest +{ + /** + * Tests Phalcon\Assets\Collection :: getFilters() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionGetFilters(UnitTester $I) + { + $I->wantToTest("Assets\Collection - getFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/GetJoinCest.php b/tests/unit/Assets/Collection/GetJoinCest.php new file mode 100644 index 00000000000..8ce4e22ccfd --- /dev/null +++ b/tests/unit/Assets/Collection/GetJoinCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class GetJoinCest +{ + /** + * Tests Phalcon\Assets\Collection :: getJoin() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionGetJoin(UnitTester $I) + { + $I->wantToTest("Assets\Collection - getJoin()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/GetLocalCest.php b/tests/unit/Assets/Collection/GetLocalCest.php new file mode 100644 index 00000000000..702dbe62bd9 --- /dev/null +++ b/tests/unit/Assets/Collection/GetLocalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class GetLocalCest +{ + /** + * Tests Phalcon\Assets\Collection :: getLocal() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionGetLocal(UnitTester $I) + { + $I->wantToTest("Assets\Collection - getLocal()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/GetPositionCest.php b/tests/unit/Assets/Collection/GetPositionCest.php new file mode 100644 index 00000000000..52d057ebcb9 --- /dev/null +++ b/tests/unit/Assets/Collection/GetPositionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class GetPositionCest +{ + /** + * Tests Phalcon\Assets\Collection :: getPosition() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionGetPosition(UnitTester $I) + { + $I->wantToTest("Assets\Collection - getPosition()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/GetPrefixCest.php b/tests/unit/Assets/Collection/GetPrefixCest.php new file mode 100644 index 00000000000..29ab8828a30 --- /dev/null +++ b/tests/unit/Assets/Collection/GetPrefixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class GetPrefixCest +{ + /** + * Tests Phalcon\Assets\Collection :: getPrefix() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionGetPrefix(UnitTester $I) + { + $I->wantToTest("Assets\Collection - getPrefix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/GetRealTargetPathCest.php b/tests/unit/Assets/Collection/GetRealTargetPathCest.php new file mode 100644 index 00000000000..a83e3007115 --- /dev/null +++ b/tests/unit/Assets/Collection/GetRealTargetPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class GetRealTargetPathCest +{ + /** + * Tests Phalcon\Assets\Collection :: getRealTargetPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionGetRealTargetPath(UnitTester $I) + { + $I->wantToTest("Assets\Collection - getRealTargetPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/GetResourcesCest.php b/tests/unit/Assets/Collection/GetResourcesCest.php new file mode 100644 index 00000000000..26249c17a5e --- /dev/null +++ b/tests/unit/Assets/Collection/GetResourcesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class GetResourcesCest +{ + /** + * Tests Phalcon\Assets\Collection :: getResources() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionGetResources(UnitTester $I) + { + $I->wantToTest("Assets\Collection - getResources()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/GetSourcePathCest.php b/tests/unit/Assets/Collection/GetSourcePathCest.php new file mode 100644 index 00000000000..b02e9fea1fc --- /dev/null +++ b/tests/unit/Assets/Collection/GetSourcePathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class GetSourcePathCest +{ + /** + * Tests Phalcon\Assets\Collection :: getSourcePath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionGetSourcePath(UnitTester $I) + { + $I->wantToTest("Assets\Collection - getSourcePath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/GetTargetLocalCest.php b/tests/unit/Assets/Collection/GetTargetLocalCest.php new file mode 100644 index 00000000000..1bff7e8d81a --- /dev/null +++ b/tests/unit/Assets/Collection/GetTargetLocalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class GetTargetLocalCest +{ + /** + * Tests Phalcon\Assets\Collection :: getTargetLocal() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionGetTargetLocal(UnitTester $I) + { + $I->wantToTest("Assets\Collection - getTargetLocal()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/GetTargetPathCest.php b/tests/unit/Assets/Collection/GetTargetPathCest.php new file mode 100644 index 00000000000..d57c23449e9 --- /dev/null +++ b/tests/unit/Assets/Collection/GetTargetPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class GetTargetPathCest +{ + /** + * Tests Phalcon\Assets\Collection :: getTargetPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionGetTargetPath(UnitTester $I) + { + $I->wantToTest("Assets\Collection - getTargetPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/GetTargetUriCest.php b/tests/unit/Assets/Collection/GetTargetUriCest.php new file mode 100644 index 00000000000..24eba7230a0 --- /dev/null +++ b/tests/unit/Assets/Collection/GetTargetUriCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class GetTargetUriCest +{ + /** + * Tests Phalcon\Assets\Collection :: getTargetUri() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionGetTargetUri(UnitTester $I) + { + $I->wantToTest("Assets\Collection - getTargetUri()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/HasCest.php b/tests/unit/Assets/Collection/HasCest.php new file mode 100644 index 00000000000..7b7a9d132a9 --- /dev/null +++ b/tests/unit/Assets/Collection/HasCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class HasCest +{ + /** + * Tests Phalcon\Assets\Collection :: has() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionHas(UnitTester $I) + { + $I->wantToTest("Assets\Collection - has()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/JoinCest.php b/tests/unit/Assets/Collection/JoinCest.php new file mode 100644 index 00000000000..5e720a885fa --- /dev/null +++ b/tests/unit/Assets/Collection/JoinCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class JoinCest +{ + /** + * Tests Phalcon\Assets\Collection :: join() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionJoin(UnitTester $I) + { + $I->wantToTest("Assets\Collection - join()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/KeyCest.php b/tests/unit/Assets/Collection/KeyCest.php new file mode 100644 index 00000000000..dd87bdf6c78 --- /dev/null +++ b/tests/unit/Assets/Collection/KeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class KeyCest +{ + /** + * Tests Phalcon\Assets\Collection :: key() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionKey(UnitTester $I) + { + $I->wantToTest("Assets\Collection - key()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/NextCest.php b/tests/unit/Assets/Collection/NextCest.php new file mode 100644 index 00000000000..2e085e9005b --- /dev/null +++ b/tests/unit/Assets/Collection/NextCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class NextCest +{ + /** + * Tests Phalcon\Assets\Collection :: next() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionNext(UnitTester $I) + { + $I->wantToTest("Assets\Collection - next()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/RewindCest.php b/tests/unit/Assets/Collection/RewindCest.php new file mode 100644 index 00000000000..469a65473e5 --- /dev/null +++ b/tests/unit/Assets/Collection/RewindCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class RewindCest +{ + /** + * Tests Phalcon\Assets\Collection :: rewind() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionRewind(UnitTester $I) + { + $I->wantToTest("Assets\Collection - rewind()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/SetAttributesCest.php b/tests/unit/Assets/Collection/SetAttributesCest.php new file mode 100644 index 00000000000..520dd7395e7 --- /dev/null +++ b/tests/unit/Assets/Collection/SetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class SetAttributesCest +{ + /** + * Tests Phalcon\Assets\Collection :: setAttributes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionSetAttributes(UnitTester $I) + { + $I->wantToTest("Assets\Collection - setAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/SetFiltersCest.php b/tests/unit/Assets/Collection/SetFiltersCest.php new file mode 100644 index 00000000000..b2ad32b72f0 --- /dev/null +++ b/tests/unit/Assets/Collection/SetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class SetFiltersCest +{ + /** + * Tests Phalcon\Assets\Collection :: setFilters() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionSetFilters(UnitTester $I) + { + $I->wantToTest("Assets\Collection - setFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/SetLocalCest.php b/tests/unit/Assets/Collection/SetLocalCest.php new file mode 100644 index 00000000000..b084e8b9f3b --- /dev/null +++ b/tests/unit/Assets/Collection/SetLocalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class SetLocalCest +{ + /** + * Tests Phalcon\Assets\Collection :: setLocal() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionSetLocal(UnitTester $I) + { + $I->wantToTest("Assets\Collection - setLocal()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/SetPrefixCest.php b/tests/unit/Assets/Collection/SetPrefixCest.php new file mode 100644 index 00000000000..a4ea31f9613 --- /dev/null +++ b/tests/unit/Assets/Collection/SetPrefixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class SetPrefixCest +{ + /** + * Tests Phalcon\Assets\Collection :: setPrefix() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionSetPrefix(UnitTester $I) + { + $I->wantToTest("Assets\Collection - setPrefix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/SetSourcePathCest.php b/tests/unit/Assets/Collection/SetSourcePathCest.php new file mode 100644 index 00000000000..b771223aa62 --- /dev/null +++ b/tests/unit/Assets/Collection/SetSourcePathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class SetSourcePathCest +{ + /** + * Tests Phalcon\Assets\Collection :: setSourcePath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionSetSourcePath(UnitTester $I) + { + $I->wantToTest("Assets\Collection - setSourcePath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/SetTargetLocalCest.php b/tests/unit/Assets/Collection/SetTargetLocalCest.php new file mode 100644 index 00000000000..3f74cc9aaac --- /dev/null +++ b/tests/unit/Assets/Collection/SetTargetLocalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class SetTargetLocalCest +{ + /** + * Tests Phalcon\Assets\Collection :: setTargetLocal() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionSetTargetLocal(UnitTester $I) + { + $I->wantToTest("Assets\Collection - setTargetLocal()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/SetTargetPathCest.php b/tests/unit/Assets/Collection/SetTargetPathCest.php new file mode 100644 index 00000000000..3f785e1e91b --- /dev/null +++ b/tests/unit/Assets/Collection/SetTargetPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class SetTargetPathCest +{ + /** + * Tests Phalcon\Assets\Collection :: setTargetPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionSetTargetPath(UnitTester $I) + { + $I->wantToTest("Assets\Collection - setTargetPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/SetTargetUriCest.php b/tests/unit/Assets/Collection/SetTargetUriCest.php new file mode 100644 index 00000000000..4c561444e98 --- /dev/null +++ b/tests/unit/Assets/Collection/SetTargetUriCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class SetTargetUriCest +{ + /** + * Tests Phalcon\Assets\Collection :: setTargetUri() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionSetTargetUri(UnitTester $I) + { + $I->wantToTest("Assets\Collection - setTargetUri()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Collection/ValidCest.php b/tests/unit/Assets/Collection/ValidCest.php new file mode 100644 index 00000000000..1a25fd6d169 --- /dev/null +++ b/tests/unit/Assets/Collection/ValidCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Collection; + +use UnitTester; + +class ValidCest +{ + /** + * Tests Phalcon\Assets\Collection :: valid() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsCollectionValid(UnitTester $I) + { + $I->wantToTest("Assets\Collection - valid()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/CollectionCest.php b/tests/unit/Assets/CollectionCest.php new file mode 100644 index 00000000000..47fbe46d238 --- /dev/null +++ b/tests/unit/Assets/CollectionCest.php @@ -0,0 +1,87 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets; + +use Phalcon\Assets\Collection; +use Phalcon\Assets\Resource; +use UnitTester; + +class CollectionCest +{ + /** + * Tests Collection + * + * @author Phalcon Team + * @since 2014-10-10 + */ + public function testAssetsResourceCollection(UnitTester $I) + { + $collection = new Collection(); + + $collection->add(new Resource('js', 'js/jquery.js')); + $collection->add(new Resource('js', 'js/jquery-ui.js')); + + $number = 0; + $expected = 'js'; + foreach ($collection as $resource) { + $actual = $resource->getType(); + $I->assertEquals($expected, $actual); + $number++; + } + + $expected = 2; + $actual = $number; + $I->assertEquals($expected, $actual); + } + + /** + * Tests Collection::has + * + * @author Phalcon Team + * @since 2017-06-02 + */ + public function hasResource(UnitTester $I) + { + $collection = new Collection(); + + $resource1 = new Resource('js', 'js/jquery.js'); + $resource2 = new Resource('js', 'js/jquery-ui.js'); + + $collection->add($resource1); + + $actual = $collection->has($resource1); + $I->assertTrue($actual); + $actual = $collection->has($resource2); + $I->assertFalse($actual); + } + + /** + * Tests Collection::has + * + * @issue https://github.com/phalcon/cphalcon/issues/10938 + * @author Phalcon Team + * @since 2017-06-02 + */ + public function doNotAddTheSameResources(UnitTester $I) + { + $collection = new Collection(); + + for ($i = 0; $i < 10; $i++) { + $collection->add(new Resource('css', 'css/style.css')); + $collection->add(new Resource('js', 'js/script.js')); + } + + $expected = 2; + $actual = count($collection->getResources()); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Assets/CollectionTest.php b/tests/unit/Assets/CollectionTest.php deleted file mode 100644 index 960bc721e74..00000000000 --- a/tests/unit/Assets/CollectionTest.php +++ /dev/null @@ -1,104 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Asset - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class CollectionTest extends UnitTest -{ - /** - * Tests Collection - * - * @author Nikolaos Dimopoulos - * @since 2014-10-10 - */ - public function testAssetsResourceCollection() - { - $this->specify( - "The resource collection is not correct", - function () { - $collection = new Collection(); - - $collection->add(new Resource('js', 'js/jquery.js')); - $collection->add(new Resource('js', 'js/jquery-ui.js')); - - $number = 0; - foreach ($collection as $resource) { - expect($resource->getType())->equals('js'); - $number++; - } - - expect($number)->equals(2); - } - ); - } - - /** - * Tests Collection::has - * - * @test - * @author Serghei Iakovlev - * @since 2017-06-02 - */ - public function hasReource() - { - $this->specify( - "Unable to find resource in collection", - function () { - $collection = new Collection(); - - $resource1 = new Resource('js', 'js/jquery.js'); - $resource2 = new Resource('js', 'js/jquery-ui.js'); - - $collection->add($resource1); - - expect($collection->has($resource1))->true(); - expect($collection->has($resource2))->false(); - } - ); - } - - /** - * Tests Collection::has - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/10938 - * @author Serghei Iakovlev - * @since 2017-06-02 - */ - public function doNotAddTheSameRecources() - { - $this->specify( - "The assets collection incorrectly stores resources", - function () { - $collection = new Collection(); - - for ($i = 0; $i < 10; $i++) { - $collection->add(new Resource('css', 'css/style.css')); - $collection->add(new Resource('js', 'js/script.js')); - } - - expect($collection->getResources())->count(2); - } - ); - } -} diff --git a/tests/unit/Assets/Filters/CssMinCest.php b/tests/unit/Assets/Filters/CssMinCest.php new file mode 100644 index 00000000000..b0a21bfeb78 --- /dev/null +++ b/tests/unit/Assets/Filters/CssMinCest.php @@ -0,0 +1,117 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Filters; + +use InvalidArgumentException; +use Phalcon\Assets\Filters\Cssmin; +use UnitTester; +use function dataFolder; + +class CssMinCest +{ + /** + * Tests cssmin filter with non-string param + * + * @author Phalcon Team + * @since 2014-10-10 + */ + public function testFilterCssminWithNonStringParam(UnitTester $I) + { + $I->skipTest('TODO: Check Exception'); + $I->expectThrowable( + new InvalidArgumentException("Parameter 'content' must be a string"), + function () { + $cssmin = new Cssmin([]); + $cssmin->filter(new \stdClass()); + } + ); + } + + /** + * Tests cssmin filter with empty string + * + * @author Phalcon Team + * @since 2014-10-10 + */ + public function testFilterCssminEmptyString(UnitTester $I) + { + $cssmin = new Cssmin(); + $actual = $cssmin->filter(''); + $I->assertEmpty($actual); + } + + /** + * Tests cssmin filter + * + * @author Phalcon Team + * @since 2014-10-10 + */ + public function testAssetsFilterCssmin(UnitTester $I) + { + $cssmin = new Cssmin(); + $expected = ''; + $actual = $cssmin->filter(' '); + $I->assertEquals($expected, $actual); + + $expected = '{}}'; + $actual = $cssmin->filter('{}}'); + $I->assertEquals($expected, $actual); + + $expected = '.s{d : b;}'; + $actual = $cssmin->filter('.s { d : b; }'); + $I->assertEquals($expected, $actual); + + $source = ".social-link {display: inline-block; width: 44px; " + . "height: 44px; text-align: left; text-indent: " + . "-9999px; overflow: hidden; background: " + . "url('../images/social-links.png'); }"; + $expected = ".social-link{display: inline-block;width: 44px;" + . "height: 44px;text-align: left;text-indent: " + . "-9999px;overflow: hidden;background: " + . "url('../images/social-links.png');}"; + $actual = $cssmin->filter($source); + $I->assertEquals($expected, $actual); + + $expected = "h2:after{border-width: 1px;}"; + $actual = $cssmin->filter("h2:after { border-width: 1px; }"); + $I->assertEquals($expected, $actual); + + $source = "h1 > p { font-family: 'Helvetica Neue'; }"; + $expected = "h1> p{font-family: 'Helvetica Neue';}"; + $actual = $cssmin->filter($source); + $I->assertEquals($expected, $actual); + + $source = "h1 > p { font-family: 'Helvetica Neue'; }"; + $expected = "h1> p{font-family: 'Helvetica Neue';}"; + $actual = $cssmin->filter($source); + $I->assertEquals($expected, $actual); + + $source = ".navbar .nav>li>a { color: #111; " + . "text-decoration: underline; }"; + $expected = ".navbar .nav>li>a{color: #111;" + . "text-decoration: underline;}"; + $actual = $cssmin->filter($source); + $I->assertEquals($expected, $actual); + + $sourceFile = dataFolder('/assets/assets/cssmin-01.css'); + $targetFile = dataFolder('/assets/assets/cssmin-01-result.css'); + + if (!file_exists($sourceFile) || !file_exists($targetFile)) { + $I->skipTest('Source files missing for this test'); + } + + $source = file_get_contents($sourceFile); + $expected = file_get_contents($targetFile); + $actual = $cssmin->filter($source); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Assets/Filters/CssMinTest.php b/tests/unit/Assets/Filters/CssMinTest.php deleted file mode 100644 index 41cbee2c84c..00000000000 --- a/tests/unit/Assets/Filters/CssMinTest.php +++ /dev/null @@ -1,174 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Assets\Filters - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class CssMinTest extends UnitTest -{ - /** - * Tests cssmin filter with non-string param - * - * @author Nikolaos Dimopoulos - * @since 2014-10-10 - * - * @expectedException \InvalidArgumentException - * @expectedExceptionMessage Parameter 'content' must be a string - */ - public function testFilterCssminWithNonStringParam() - { - $this->specify( - "The cssmin filter needs a string parameter", - function () { - $cssmin = new Cssmin(); - $cssmin->filter(new \stdClass()); - } - ); - } - - /** - * Tests cssmin filter with empty string - * - * @author Nikolaos Dimopoulos - * @since 2014-10-10 - */ - public function testFilterCssminEmptyString() - { - $this->specify( - "The cssmin filter with empty parameter does not return empty back", - function () { - $cssmin = new Cssmin(); - - expect($cssmin->filter(''))->isEmpty(); - } - ); - } - - /** - * Tests cssmin filter - * - * @author Nikolaos Dimopoulos - * @since 2014-10-10 - */ - public function testAssetsFilterCssmin() - { - $this->specify( - "The cssmin filter with space as parameter does not return correct results", - function () { - $cssmin = new Cssmin(); - expect($cssmin->filter(' '))->equals(''); - } - ); - - $this->specify( - "The cssmin filter with brackets does not return correct results", - function () { - $cssmin = new Cssmin(); - expect($cssmin->filter('{}}'))->equals('{}}'); - } - ); - - $this->specify( - "The cssmin filter with brackets and spaces does not return correct results", - function () { - $cssmin = new Cssmin(); - expect($cssmin->filter('.s { d : b; }'))->equals('.s{d : b;}'); - } - ); - - $this->specify( - "The cssmin filter with proper CSS does not compress the contents", - function () { - $cssmin = new Cssmin(); - $source = ".social-link {display: inline-block; width: 44px; " - . "height: 44px; text-align: left; text-indent: " - . "-9999px; overflow: hidden; background: " - . "url('../images/social-links.png'); }"; - $expected = ".social-link{display: inline-block;width: 44px;" - . "height: 44px;text-align: left;text-indent: " - . "-9999px;overflow: hidden;background: " - . "url('../images/social-links.png');}"; - expect($cssmin->filter($source))->equals($expected); - } - ); - - $this->specify( - "The cssmin filter with a lot of spaces does not compress the contents", - function () { - $cssmin = new Cssmin(); - expect($cssmin->filter("h2:after { border-width: 1px; }"))->equals("h2:after{border-width: 1px;}"); - } - ); - - $this->specify( - "The cssmin filter with complex CSS does not compress the contents", - function () { - $cssmin = new Cssmin(); - $source = "h1 > p { font-family: 'Helvetica Neue'; }"; - $expected = "h1> p{font-family: 'Helvetica Neue';}"; - - expect($cssmin->filter($source))->equals($expected); - } - ); - - $this->specify( - "The cssmin filter with complex CSS does not compress the contents", - function () { - $cssmin = new Cssmin(); - $source = "h1 > p { font-family: 'Helvetica Neue'; }"; - $expected = "h1> p{font-family: 'Helvetica Neue';}"; - - expect($cssmin->filter($source))->equals($expected); - } - ); - - $this->specify( - "The cssmin filter with complex nested CSS does not compress the contents", - function () { - $cssmin = new Cssmin(); - $source = ".navbar .nav>li>a { color: #111; " - . "text-decoration: underline; }"; - $expected = ".navbar .nav>li>a{color: #111;" - . "text-decoration: underline;}"; - - expect($cssmin->filter($source))->equals($expected); - } - ); - - $this->specify( - "The cssmin filter with complex CSS (line breaks) does not compress the contents", - function () { - $sourceFile = PATH_DATA . '/assets/cssmin-01.css'; - $targetFile = PATH_DATA . '/assets/cssmin-01-result.css'; - - if (!file_exists($sourceFile) || !file_exists($targetFile)) { - $this->markTestIncomplete('Source files missing for this test'); - } - - $cssmin = new Cssmin(); - $source = file_get_contents($sourceFile); - $expected = file_get_contents($targetFile); - - expect($cssmin->filter($source))->equals($expected); - } - ); - } -} diff --git a/tests/unit/Assets/Filters/Cssmin/FilterCest.php b/tests/unit/Assets/Filters/Cssmin/FilterCest.php new file mode 100644 index 00000000000..90dc886359d --- /dev/null +++ b/tests/unit/Assets/Filters/Cssmin/FilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Filters\Cssmin; + +use UnitTester; + +class FilterCest +{ + /** + * Tests Phalcon\Assets\Filters\Cssmin :: filter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsFiltersCssminFilter(UnitTester $I) + { + $I->wantToTest("Assets\Filters\Cssmin - filter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Filters/Jsmin/FilterCest.php b/tests/unit/Assets/Filters/Jsmin/FilterCest.php new file mode 100644 index 00000000000..79d430943ce --- /dev/null +++ b/tests/unit/Assets/Filters/Jsmin/FilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Filters\Jsmin; + +use UnitTester; + +class FilterCest +{ + /** + * Tests Phalcon\Assets\Filters\Jsmin :: filter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsFiltersJsminFilter(UnitTester $I) + { + $I->wantToTest("Assets\Filters\Jsmin - filter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Filters/JsminCest.php b/tests/unit/Assets/Filters/JsminCest.php new file mode 100644 index 00000000000..4c6fbd8a6db --- /dev/null +++ b/tests/unit/Assets/Filters/JsminCest.php @@ -0,0 +1,149 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Filters; + +use Phalcon\Assets\Exception; +use Phalcon\Assets\Filters\Jsmin; +use UnitTester; + +class JsminCest +{ + /** + * Tests jsmin filter with non-string param + * + * @author Phalcon Team + * @since 2016-01-24 + */ + public function testFilterJsminWithNonStringParam(UnitTester $I) + { + $I->expectThrowable( + new \TypeError( + 'Argument 1 passed to Phalcon\Assets\Filters\Jsmin::filter() ' . + 'must be of the type string, object given' + ), + function () { + $jsmin = new Jsmin(); + $jsmin->filter(new \stdClass()); + } + ); + } + + /** + * Tests jsmin filter with unterminated comment + * + * @author Phalcon Team + * @since 2016-01-24 + */ + public function testFilterJsminUnterminatedComment(UnitTester $I) + { + $I->expectThrowable( + new Exception('Unterminated comment.'), + function () { + $jsmin = new Jsmin(); + $jsmin->filter('/*'); + } + ); + } + + /** + * Tests jsmin filter with unterminated string literal + * + * @author Phalcon Team + * @since 2016-01-24 + */ + public function testFilterJsminUnterminatedStringLiteral(UnitTester $I) + { + $I->expectThrowable( + new Exception('Unterminated string literal.'), + function () { + $jsmin = new Jsmin(); + $jsmin->filter('a = "'); + } + ); + } + + /** + * Tests jsmin filter with unterminated Regular Expression literal + * + * @author Phalcon Team + * @since 2016-01-24 + */ + public function testFilterJsminUnterminatedRegexpLiteral(UnitTester $I) + { + $I->expectThrowable( + new Exception('Unterminated Regular Expression literal.'), + function () { + $jsmin = new Jsmin(); + $jsmin->filter('b = /[a-z]+'); + } + ); + } + + /** + * Tests jsmin filter with empty string + * + * @author Phalcon Team + * @since 2016-01-24 + */ + public function testFilterJsminEmptyString(UnitTester $I) + { + $jsmin = new Jsmin(); + $actual = $jsmin->filter(''); + $I->assertIsEmpty($actual); + } + + /** + * Tests jsmin filter with comment + * + * @author Phalcon Team + * @since 2016-01-24 + */ + public function testFilterJsminComment(UnitTester $I) + { + $jsmin = new Jsmin(); + + $actual = $jsmin->filter('/** this is a comment */'); + $I->assertIsEmpty($actual); + } + + /** + * Tests cssmin filter + * + * @author Phalcon Team + * @since 2016-01-24 + */ + public function testAssetsFilterJsmin(UnitTester $I) + { + $I->skipTest('TODO: Check the fourth assertion'); + $jsmin = new Jsmin(); + + $expected = "\n" . '{}}'; + $actual = $jsmin->filter('{}}'); + $I->assertEquals($expected, $actual); + + $expected = "\n" . 'if(a==b){document.writeln("hello");}'; + $actual = $jsmin->filter('if ( a == b ) { document . writeln("hello") ; }'); + $I->assertEquals($expected, $actual); + + $expected = "\n" . "if(a==b){document.writeln('\t');}"; + $actual = $jsmin->filter("\n" . "if ( a == b ) { document . writeln('\t') ; }"); + $I->assertEquals($expected, $actual); + + $expected = "/** this is a comment */ if ( a == b ) { document . writeln('\t') ; /** this is a comment */ }"; + $actual = $jsmin->filter("\n" . "if(a==b){document.writeln('\t');}"); + $I->assertEquals($expected, $actual); + + $expected = "\n" . 'a=100;'; + $actual = $jsmin->filter("\t\ta\t\r\n= \n \r\n100;\t"); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Assets/Filters/JsminTest.php b/tests/unit/Assets/Filters/JsminTest.php deleted file mode 100644 index 7c237019b6c..00000000000 --- a/tests/unit/Assets/Filters/JsminTest.php +++ /dev/null @@ -1,164 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Assets\Filters - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class JsminTest extends UnitTest -{ - /** - * Tests jsmin filter with non-string param - * - * @author Serghei Iakovlev - * @since 2016-01-24 - * - * @expectedException \InvalidArgumentException - * @expectedExceptionMessage Parameter 'content' must be a string - */ - public function testFilterJsminWithNonStringParam() - { - $this->specify( - "The jsmin filter needs a string parameter", - function () { - $jsmin = new Jsmin(); - $jsmin->filter(new \stdClass()); - } - ); - } - - /** - * Tests jsmin filter with unterminated comment - * - * @author Serghei Iakovlev - * @since 2016-01-24 - * - * @expectedException \Phalcon\Assets\Exception - * @expectedExceptionMessage Unterminated comment. - */ - public function testFilterJsminUnterminatedComment() - { - $this->specify( - "The jsmin with unterminated comment does not throws exception", - function () { - $jsmin = new Jsmin(); - $jsmin->filter('/*'); - } - ); - } - - /** - * Tests jsmin filter with unterminated string literal - * - * @author Serghei Iakovlev - * @since 2016-01-24 - * - * @expectedException \Phalcon\Assets\Exception - * @expectedExceptionMessage Unterminated string literal. - */ - public function testFilterJsminUnterminatedStringLiteral() - { - $this->specify( - "The jsmin with unterminated string literal does not throws exception", - function () { - $jsmin = new Jsmin(); - $jsmin->filter('a = "'); - } - ); - } - - /** - * Tests jsmin filter with unterminated Regular Expression literal - * - * @author Serghei Iakovlev - * @since 2016-01-24 - * - * @expectedException \Phalcon\Assets\Exception - * @expectedExceptionMessage Unterminated Regular Expression literal. - */ - public function testFilterJsminUnterminatedRegexpLiteral() - { - $this->specify( - "The jsmin with unterminated Regular Expression literal does not throws exception", - function () { - $jsmin = new Jsmin(); - $jsmin->filter('b = /[a-z]+'); - } - ); - } - - /** - * Tests jsmin filter with empty string - * - * @author Serghei Iakovlev - * @since 2016-01-24 - */ - public function testFilterJsminEmptyString() - { - $this->specify( - "The jsmin filter with empty parameter does not return empty back", - function () { - $jsmin = new Jsmin(); - - expect($jsmin->filter(''))->isEmpty(); - } - ); - } - - /** - * Tests jsmin filter with comment - * - * @author Serghei Iakovlev - * @since 2016-01-24 - */ - public function testFilterJsminComment() - { - $this->specify( - "The jsmin filter with comment parameter return comment back", - function () { - $jsmin = new Jsmin(); - - expect($jsmin->filter('/** this is a comment */'))->isEmpty(); - } - ); - } - - /** - * Tests cssmin filter - * - * @author Serghei Iakovlev - * @since 2016-01-24 - */ - public function testAssetsFilterJsmin() - { - $this->specify( - "The jsmin filter does not work correctly", - function () { - $jsmin = new Jsmin(); - - expect($jsmin->filter('{}}'))->equals("\n" . '{}}'); - expect($jsmin->filter('if ( a == b ) { document . writeln("hello") ; }'))->equals("\n" . 'if(a==b){document.writeln("hello");}'); - expect($jsmin->filter("if ( a == b ) { document . writeln('\t') ; }"))->equals("\n" . "if(a==b){document.writeln('\t');}"); - expect($jsmin->filter("/** this is a comment */ if ( a == b ) { document . writeln('\t') ; /** this is a comment */ }"))->equals("\n" . "if(a==b){document.writeln('\t');}"); - expect($jsmin->filter("\t\ta\t\r\n= \n \r\n100;\t"))->equals("\n" . 'a=100;'); - } - ); - } -} diff --git a/tests/unit/Assets/Filters/None/FilterCest.php b/tests/unit/Assets/Filters/None/FilterCest.php new file mode 100644 index 00000000000..5ce91e9ce70 --- /dev/null +++ b/tests/unit/Assets/Filters/None/FilterCest.php @@ -0,0 +1,46 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Filters\None; + +use Phalcon\Assets\Filters\None; +use Phalcon\Assets\Manager; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use UnitTester; + +class FilterCest +{ + use DiTrait; + + public function _before(UnitTester $I) + { + $this->newDi(); + $this->setDiEscaper(); + $this->setDiUrl(); + } + + /** + * Tests Phalcon\Assets\Filters\None :: filter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-10-10 + */ + public function testAssetsFilterNone(UnitTester $I) + { + $I->wantToTest("Assets\Filters\None - filter()"); + $cssmin = new None(); + $expected = ' '; + $actual = $cssmin->filter(' '); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Assets/Filters/NoneCest.php b/tests/unit/Assets/Filters/NoneCest.php new file mode 100644 index 00000000000..367185e3f94 --- /dev/null +++ b/tests/unit/Assets/Filters/NoneCest.php @@ -0,0 +1,62 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Filters; + +use Phalcon\Assets\Filters\None; +use Phalcon\Assets\Manager; +use Phalcon\Test\Fixtures\Assets\TrimFilter; +use Phalcon\Test\Fixtures\Assets\UppercaseFilter; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use UnitTester; +use function dataFolder; + +class NoneCest +{ + use DiTrait; + + public function _before(UnitTester $I) + { + $this->newDi(); + $this->setDiEscaper(); + $this->setDiUrl(); + } + + /** + * Tests custom filters + * + * @issue https://github.com/phalcon/cphalcon/issues/1198 + * @author Volodymyr Kolesnykov + * @since 2013-09-15 + */ + public function testAssetsFilterChainCustomFilterWithCssmin(UnitTester $I) + { + $fileName = $I->getNewFileName('assets_', 'css'); + $assets = new Manager(); + $assets->useImplicitOutput(false); + $css = $assets->collection('css'); + $cssFile = dataFolder('assets/assets/1198.css'); + + $css->setTargetPath(cacheFolder($fileName)); + $css->addCss($cssFile); + $css->addFilter(new UppercaseFilter()); + $css->addFilter(new TrimFilter()); + $css->join(true); + $assets->outputCss('css'); + + $expected = 'A{TEXT-DECORATION:NONE;}B{FONT-WEIGHT:BOLD;}'; + $actual = file_get_contents(cacheFolder($fileName)); + + $I->safeDeleteFile(cacheFolder($fileName)); + + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Assets/Filters/NoneTest.php b/tests/unit/Assets/Filters/NoneTest.php deleted file mode 100644 index 9c4b7f30086..00000000000 --- a/tests/unit/Assets/Filters/NoneTest.php +++ /dev/null @@ -1,84 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Assets\Filters - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class NoneTest extends UnitTest -{ - /** - * Tests none filter - * - * @author Nikolaos Dimopoulos - * @since 2014-10-10 - */ - public function testAssetsFilterNone() - { - $this->specify( - "The none filter does not return the correct results", - function () { - $cssmin = new None(); - $actual = $cssmin->filter(' '); - $expected = ' '; - - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests custom filters - * - * @issue https://github.com/phalcon/cphalcon/issues/1198 - * @author Volodymyr Kolesnykov - * @since 2013-09-15 - */ - public function testAssetsFilterChainCustomFilterWithCssmin() - { - $this->specify( - "The chaining a custom filter with cssmin does not return the correct results", - function () { - $fileName = $this->tester->getNewFileName('assets_', 'css'); - - $assets = new Manager(); - $assets->useImplicitOutput(false); - $css = $assets->collection('css'); - - $css->setTargetPath(PATH_CACHE . $fileName); - $css->addCss(PATH_DATA . 'assets/1198.css'); - $css->addFilter(new UppercaseFilter()); - $css->addFilter(new TrimFilter()); - $css->join(true); - $assets->outputCss('css'); - - $expected = 'A{TEXT-DECORATION:NONE;}B{FONT-WEIGHT:BOLD;}'; - $actual = file_get_contents(PATH_CACHE . $fileName); - - $this->tester->cleanFile(PATH_CACHE, $fileName); - - expect($actual)->equals($expected); - } - ); - } -} diff --git a/tests/unit/Assets/Helper/TrimFilter.php b/tests/unit/Assets/Helper/TrimFilter.php deleted file mode 100644 index 921da8c4c73..00000000000 --- a/tests/unit/Assets/Helper/TrimFilter.php +++ /dev/null @@ -1,41 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Assets\Helper - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class TrimFilter implements FilterInterface -{ - /** - * Trims the input - * - * @author Nikolaos Dimopoulos - * @since 2014-10-05 - * - * @param string $content - * @return string - */ - public function filter($content) - { - return str_replace(["\n", "\r", " ", "\t"], '', $content); - } -} diff --git a/tests/unit/Assets/Helper/UppercaseFilter.php b/tests/unit/Assets/Helper/UppercaseFilter.php deleted file mode 100644 index 8e5561a0828..00000000000 --- a/tests/unit/Assets/Helper/UppercaseFilter.php +++ /dev/null @@ -1,41 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Assets\Helper - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class UppercaseFilter implements FilterInterface -{ - /** - * Converts the input to uppercase - * - * @author Nikolaos Dimopoulos - * @since 2014-10-05 - * - * @param string $content - * @return string - */ - public function filter($content) - { - return strtoupper($content); - } -} diff --git a/tests/unit/Assets/Inline/ConstructCest.php b/tests/unit/Assets/Inline/ConstructCest.php new file mode 100644 index 00000000000..8148cd2390c --- /dev/null +++ b/tests/unit/Assets/Inline/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Assets\Inline :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsInlineConstruct(UnitTester $I) + { + $I->wantToTest("Assets\Inline - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/Css/ConstructCest.php b/tests/unit/Assets/Inline/Css/ConstructCest.php new file mode 100644 index 00000000000..d9f40a511bd --- /dev/null +++ b/tests/unit/Assets/Inline/Css/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline\Css; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Assets\Inline\Css :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testConstruct(UnitTester $I) + { + $I->wantToTest("Assets\Inline\Css - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/Css/GetAttributesCest.php b/tests/unit/Assets/Inline/Css/GetAttributesCest.php new file mode 100644 index 00000000000..cdaf2dcb402 --- /dev/null +++ b/tests/unit/Assets/Inline/Css/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline\Css; + +use UnitTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Assets\Inline\Css :: getAttributes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsInlineCssGetAttributes(UnitTester $I) + { + $I->wantToTest("Assets\Inline\Css - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/Css/GetContentCest.php b/tests/unit/Assets/Inline/Css/GetContentCest.php new file mode 100644 index 00000000000..8fcfaf49322 --- /dev/null +++ b/tests/unit/Assets/Inline/Css/GetContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline\Css; + +use UnitTester; + +class GetContentCest +{ + /** + * Tests Phalcon\Assets\Inline\Css :: getContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsInlineCssGetContent(UnitTester $I) + { + $I->wantToTest("Assets\Inline\Css - getContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/Css/GetFilterCest.php b/tests/unit/Assets/Inline/Css/GetFilterCest.php new file mode 100644 index 00000000000..f692dcb93c6 --- /dev/null +++ b/tests/unit/Assets/Inline/Css/GetFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline\Css; + +use UnitTester; + +class GetFilterCest +{ + /** + * Tests Phalcon\Assets\Inline\Css :: getFilter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsInlineCssGetFilter(UnitTester $I) + { + $I->wantToTest("Assets\Inline\Css - getFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/Css/GetResourceKeyCest.php b/tests/unit/Assets/Inline/Css/GetResourceKeyCest.php new file mode 100644 index 00000000000..eae9a6fafc8 --- /dev/null +++ b/tests/unit/Assets/Inline/Css/GetResourceKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline\Css; + +use UnitTester; + +class GetResourceKeyCest +{ + /** + * Tests Phalcon\Assets\Inline\Css :: getResourceKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsInlineCssGetResourceKey(UnitTester $I) + { + $I->wantToTest("Assets\Inline\Css - getResourceKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/Css/GetTypeCest.php b/tests/unit/Assets/Inline/Css/GetTypeCest.php new file mode 100644 index 00000000000..13736197194 --- /dev/null +++ b/tests/unit/Assets/Inline/Css/GetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline\Css; + +use UnitTester; + +class GetTypeCest +{ + /** + * Tests Phalcon\Assets\Inline\Css :: getType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsInlineCssGetType(UnitTester $I) + { + $I->wantToTest("Assets\Inline\Css - getType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/Css/SetAttributesCest.php b/tests/unit/Assets/Inline/Css/SetAttributesCest.php new file mode 100644 index 00000000000..51260521f92 --- /dev/null +++ b/tests/unit/Assets/Inline/Css/SetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline\Css; + +use UnitTester; + +class SetAttributesCest +{ + /** + * Tests Phalcon\Assets\Inline\Css :: setAttributes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsInlineCssSetAttributes(UnitTester $I) + { + $I->wantToTest("Assets\Inline\Css - setAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/Css/SetFilterCest.php b/tests/unit/Assets/Inline/Css/SetFilterCest.php new file mode 100644 index 00000000000..6669d4bead2 --- /dev/null +++ b/tests/unit/Assets/Inline/Css/SetFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline\Css; + +use UnitTester; + +class SetFilterCest +{ + /** + * Tests Phalcon\Assets\Inline\Css :: setFilter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsInlineCssSetFilter(UnitTester $I) + { + $I->wantToTest("Assets\Inline\Css - setFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/Css/SetTypeCest.php b/tests/unit/Assets/Inline/Css/SetTypeCest.php new file mode 100644 index 00000000000..bc021a60580 --- /dev/null +++ b/tests/unit/Assets/Inline/Css/SetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline\Css; + +use UnitTester; + +class SetTypeCest +{ + /** + * Tests Phalcon\Assets\Inline\Css :: setType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsInlineCssSetType(UnitTester $I) + { + $I->wantToTest("Assets\Inline\Css - setType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/GetAttributesCest.php b/tests/unit/Assets/Inline/GetAttributesCest.php new file mode 100644 index 00000000000..ab76ae00dab --- /dev/null +++ b/tests/unit/Assets/Inline/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline; + +use UnitTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Assets\Inline :: getAttributes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsInlineGetAttributes(UnitTester $I) + { + $I->wantToTest("Assets\Inline - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/GetContentCest.php b/tests/unit/Assets/Inline/GetContentCest.php new file mode 100644 index 00000000000..5217b3386f9 --- /dev/null +++ b/tests/unit/Assets/Inline/GetContentCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline; + +use Phalcon\Assets\Inline; +use UnitTester; + +class GetContentCest +{ + /** + * Tests Phalcon\Assets\Inline\Js :: getContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsInlineJsGetContent(UnitTester $I) + { + $I->wantToTest("Assets\Inline - getContent()"); + $resource = new Inline('js', ''); + + $expected = ''; + $actual = $resource->getContent(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Assets/Inline/GetFilterCest.php b/tests/unit/Assets/Inline/GetFilterCest.php new file mode 100644 index 00000000000..4444664f131 --- /dev/null +++ b/tests/unit/Assets/Inline/GetFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline; + +use UnitTester; + +class GetFilterCest +{ + /** + * Tests Phalcon\Assets\Inline :: getFilter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsInlineGetFilter(UnitTester $I) + { + $I->wantToTest("Assets\Inline - getFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/GetResourceKeyCest.php b/tests/unit/Assets/Inline/GetResourceKeyCest.php new file mode 100644 index 00000000000..36318361612 --- /dev/null +++ b/tests/unit/Assets/Inline/GetResourceKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline; + +use UnitTester; + +class GetResourceKeyCest +{ + /** + * Tests Phalcon\Assets\Inline :: getResourceKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsInlineGetResourceKey(UnitTester $I) + { + $I->wantToTest("Assets\Inline - getResourceKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/GetTypeCest.php b/tests/unit/Assets/Inline/GetTypeCest.php new file mode 100644 index 00000000000..d983436d71d --- /dev/null +++ b/tests/unit/Assets/Inline/GetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline; + +use UnitTester; + +class GetTypeCest +{ + /** + * Tests Phalcon\Assets\Inline :: getType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsInlineGetType(UnitTester $I) + { + $I->wantToTest("Assets\Inline - getType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/Js/ConstructCest.php b/tests/unit/Assets/Inline/Js/ConstructCest.php new file mode 100644 index 00000000000..665e35b4022 --- /dev/null +++ b/tests/unit/Assets/Inline/Js/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline\Js; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Assets\Inline\Js :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testConstruct(UnitTester $I) + { + $I->wantToTest("Assets\Inline\Js - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/Js/GetAttributesCest.php b/tests/unit/Assets/Inline/Js/GetAttributesCest.php new file mode 100644 index 00000000000..61c72518eaa --- /dev/null +++ b/tests/unit/Assets/Inline/Js/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline\Js; + +use UnitTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Assets\Inline\Js :: getAttributes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsInlineJsGetAttributes(UnitTester $I) + { + $I->wantToTest("Assets\Inline\Js - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/Js/GetContentCest.php b/tests/unit/Assets/Inline/Js/GetContentCest.php new file mode 100644 index 00000000000..c14cc5e6a70 --- /dev/null +++ b/tests/unit/Assets/Inline/Js/GetContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline\Js; + +use UnitTester; + +class GetContentCest +{ + /** + * Tests Phalcon\Assets\Inline\Js :: getContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsInlineJsGetContent(UnitTester $I) + { + $I->wantToTest("Assets\Inline\Js - getContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/Js/GetFilterCest.php b/tests/unit/Assets/Inline/Js/GetFilterCest.php new file mode 100644 index 00000000000..a06699b1aac --- /dev/null +++ b/tests/unit/Assets/Inline/Js/GetFilterCest.php @@ -0,0 +1,28 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline\Js; + +use UnitTester; + +class GetFilterCest +{ + /** + * Tests Phalcon\Assets\Inline\Js :: getFilter() + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testGetFilter(UnitTester $I) + { + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/Js/GetResourceKeyCest.php b/tests/unit/Assets/Inline/Js/GetResourceKeyCest.php new file mode 100644 index 00000000000..5bb1d2def8c --- /dev/null +++ b/tests/unit/Assets/Inline/Js/GetResourceKeyCest.php @@ -0,0 +1,33 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline\Js; + +use Phalcon\Assets\Inline; +use UnitTester; + +class GetResourceKeyCest +{ + /** + * Tests Phalcon\Assets\Inline\Js :: getResourceKey() + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testGetResourceKey(UnitTester $I) + { + $resource = new Inline('js', ''); + + $expected = md5('js:'); + $actual = $resource->getResourceKey(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Assets/Inline/Js/GetTypeCest.php b/tests/unit/Assets/Inline/Js/GetTypeCest.php new file mode 100644 index 00000000000..609aa0310ec --- /dev/null +++ b/tests/unit/Assets/Inline/Js/GetTypeCest.php @@ -0,0 +1,33 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline\Js; + +use Phalcon\Assets\Inline; +use UnitTester; + +class GetTypeCest +{ + /** + * Tests Phalcon\Assets\Inline\Js :: getType() + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testGetType(UnitTester $I) + { + $resource = new Inline('js', ''); + + $expected = 'js'; + $actual = $resource->getType(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Assets/Inline/Js/SetAttributesCest.php b/tests/unit/Assets/Inline/Js/SetAttributesCest.php new file mode 100644 index 00000000000..802f0da2f5d --- /dev/null +++ b/tests/unit/Assets/Inline/Js/SetAttributesCest.php @@ -0,0 +1,28 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline\Js; + +use UnitTester; + +class SetAttributesCest +{ + /** + * Tests Phalcon\Assets\Inline\Js :: setAttributes() + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testSetAttributes(UnitTester $I) + { + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/Js/SetFilterCest.php b/tests/unit/Assets/Inline/Js/SetFilterCest.php new file mode 100644 index 00000000000..35182d1bf57 --- /dev/null +++ b/tests/unit/Assets/Inline/Js/SetFilterCest.php @@ -0,0 +1,28 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline\Js; + +use UnitTester; + +class SetFilterCest +{ + /** + * Tests Phalcon\Assets\Inline\Js :: setFilter() + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testSetFilter(UnitTester $I) + { + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/Js/SetTypeCest.php b/tests/unit/Assets/Inline/Js/SetTypeCest.php new file mode 100644 index 00000000000..7e91678b8a3 --- /dev/null +++ b/tests/unit/Assets/Inline/Js/SetTypeCest.php @@ -0,0 +1,28 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline\Js; + +use UnitTester; + +class SetTypeCest +{ + /** + * Tests Phalcon\Assets\Inline\Js :: setType() + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testSetType(UnitTester $I) + { + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/SetAttributesCest.php b/tests/unit/Assets/Inline/SetAttributesCest.php new file mode 100644 index 00000000000..bdf34ca425f --- /dev/null +++ b/tests/unit/Assets/Inline/SetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline; + +use UnitTester; + +class SetAttributesCest +{ + /** + * Tests Phalcon\Assets\Inline :: setAttributes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsInlineSetAttributes(UnitTester $I) + { + $I->wantToTest("Assets\Inline - setAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/SetFilterCest.php b/tests/unit/Assets/Inline/SetFilterCest.php new file mode 100644 index 00000000000..8e07f979e47 --- /dev/null +++ b/tests/unit/Assets/Inline/SetFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline; + +use UnitTester; + +class SetFilterCest +{ + /** + * Tests Phalcon\Assets\Inline :: setFilter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsInlineSetFilter(UnitTester $I) + { + $I->wantToTest("Assets\Inline - setFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Inline/SetTypeCest.php b/tests/unit/Assets/Inline/SetTypeCest.php new file mode 100644 index 00000000000..e602f74b725 --- /dev/null +++ b/tests/unit/Assets/Inline/SetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Inline; + +use UnitTester; + +class SetTypeCest +{ + /** + * Tests Phalcon\Assets\Inline :: setType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsInlineSetType(UnitTester $I) + { + $I->wantToTest("Assets\Inline - setType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/InlineTest.php b/tests/unit/Assets/InlineTest.php deleted file mode 100644 index 80eac92eb70..00000000000 --- a/tests/unit/Assets/InlineTest.php +++ /dev/null @@ -1,45 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Asset - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class InlineTest extends UnitTest -{ - /** - * Tests getType - * - * @test - * @author Serghei Iakovlev - * @since 2017-06-02 - */ - public function getResourceKey() - { - $this->specify( - "Unable to get inline resource key or resorce key is incorrect", - function () { - $resource = new Inline('js', ''); - - expect(md5('js:'))->equals($resource->getResourceKey()); - } - ); - } -} diff --git a/tests/unit/Assets/Manager/AddCssCest.php b/tests/unit/Assets/Manager/AddCssCest.php new file mode 100644 index 00000000000..f6fc530916b --- /dev/null +++ b/tests/unit/Assets/Manager/AddCssCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class AddCssCest +{ + /** + * Tests Phalcon\Assets\Manager :: addCss() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerAddCss(UnitTester $I) + { + $I->wantToTest("Assets\Manager - addCss()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/AddInlineCodeByTypeCest.php b/tests/unit/Assets/Manager/AddInlineCodeByTypeCest.php new file mode 100644 index 00000000000..6062e57f2ca --- /dev/null +++ b/tests/unit/Assets/Manager/AddInlineCodeByTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class AddInlineCodeByTypeCest +{ + /** + * Tests Phalcon\Assets\Manager :: addInlineCodeByType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerAddInlineCodeByType(UnitTester $I) + { + $I->wantToTest("Assets\Manager - addInlineCodeByType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/AddInlineCodeCest.php b/tests/unit/Assets/Manager/AddInlineCodeCest.php new file mode 100644 index 00000000000..f920d3a5ed3 --- /dev/null +++ b/tests/unit/Assets/Manager/AddInlineCodeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class AddInlineCodeCest +{ + /** + * Tests Phalcon\Assets\Manager :: addInlineCode() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerAddInlineCode(UnitTester $I) + { + $I->wantToTest("Assets\Manager - addInlineCode()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/AddInlineCssCest.php b/tests/unit/Assets/Manager/AddInlineCssCest.php new file mode 100644 index 00000000000..291d1236911 --- /dev/null +++ b/tests/unit/Assets/Manager/AddInlineCssCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class AddInlineCssCest +{ + /** + * Tests Phalcon\Assets\Manager :: addInlineCss() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerAddInlineCss(UnitTester $I) + { + $I->wantToTest("Assets\Manager - addInlineCss()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/AddInlineJsCest.php b/tests/unit/Assets/Manager/AddInlineJsCest.php new file mode 100644 index 00000000000..b971fcbc527 --- /dev/null +++ b/tests/unit/Assets/Manager/AddInlineJsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class AddInlineJsCest +{ + /** + * Tests Phalcon\Assets\Manager :: addInlineJs() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerAddInlineJs(UnitTester $I) + { + $I->wantToTest("Assets\Manager - addInlineJs()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/AddJsCest.php b/tests/unit/Assets/Manager/AddJsCest.php new file mode 100644 index 00000000000..757a977e53c --- /dev/null +++ b/tests/unit/Assets/Manager/AddJsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class AddJsCest +{ + /** + * Tests Phalcon\Assets\Manager :: addJs() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerAddJs(UnitTester $I) + { + $I->wantToTest("Assets\Manager - addJs()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/AddResourceByTypeCest.php b/tests/unit/Assets/Manager/AddResourceByTypeCest.php new file mode 100644 index 00000000000..7956964a093 --- /dev/null +++ b/tests/unit/Assets/Manager/AddResourceByTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class AddResourceByTypeCest +{ + /** + * Tests Phalcon\Assets\Manager :: addResourceByType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerAddResourceByType(UnitTester $I) + { + $I->wantToTest("Assets\Manager - addResourceByType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/AddResourceCest.php b/tests/unit/Assets/Manager/AddResourceCest.php new file mode 100644 index 00000000000..fd1bc7708ec --- /dev/null +++ b/tests/unit/Assets/Manager/AddResourceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class AddResourceCest +{ + /** + * Tests Phalcon\Assets\Manager :: addResource() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerAddResource(UnitTester $I) + { + $I->wantToTest("Assets\Manager - addResource()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/CollectionCest.php b/tests/unit/Assets/Manager/CollectionCest.php new file mode 100644 index 00000000000..aaec38bbb91 --- /dev/null +++ b/tests/unit/Assets/Manager/CollectionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class CollectionCest +{ + /** + * Tests Phalcon\Assets\Manager :: collection() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerCollection(UnitTester $I) + { + $I->wantToTest("Assets\Manager - collection()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/CollectionResourcesByTypeCest.php b/tests/unit/Assets/Manager/CollectionResourcesByTypeCest.php new file mode 100644 index 00000000000..1b94c1eca9b --- /dev/null +++ b/tests/unit/Assets/Manager/CollectionResourcesByTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class CollectionResourcesByTypeCest +{ + /** + * Tests Phalcon\Assets\Manager :: collectionResourcesByType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerCollectionResourcesByType(UnitTester $I) + { + $I->wantToTest("Assets\Manager - collectionResourcesByType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/ConstructCest.php b/tests/unit/Assets/Manager/ConstructCest.php new file mode 100644 index 00000000000..4fd3139d01c --- /dev/null +++ b/tests/unit/Assets/Manager/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Assets\Manager :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testConstruct(UnitTester $I) + { + $I->wantToTest("Assets\Manager - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/ExistsCest.php b/tests/unit/Assets/Manager/ExistsCest.php new file mode 100644 index 00000000000..c27d4c3e539 --- /dev/null +++ b/tests/unit/Assets/Manager/ExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class ExistsCest +{ + /** + * Tests Phalcon\Assets\Manager :: exists() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerExists(UnitTester $I) + { + $I->wantToTest("Assets\Manager - exists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/GetCest.php b/tests/unit/Assets/Manager/GetCest.php new file mode 100644 index 00000000000..54902eb453e --- /dev/null +++ b/tests/unit/Assets/Manager/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class GetCest +{ + /** + * Tests Phalcon\Assets\Manager :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerGet(UnitTester $I) + { + $I->wantToTest("Assets\Manager - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/GetCollectionsCest.php b/tests/unit/Assets/Manager/GetCollectionsCest.php new file mode 100644 index 00000000000..5f7e54fe468 --- /dev/null +++ b/tests/unit/Assets/Manager/GetCollectionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class GetCollectionsCest +{ + /** + * Tests Phalcon\Assets\Manager :: getCollections() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerGetCollections(UnitTester $I) + { + $I->wantToTest("Assets\Manager - getCollections()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/GetCssCest.php b/tests/unit/Assets/Manager/GetCssCest.php new file mode 100644 index 00000000000..7dbaf767334 --- /dev/null +++ b/tests/unit/Assets/Manager/GetCssCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class GetCssCest +{ + /** + * Tests Phalcon\Assets\Manager :: getCss() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerGetCss(UnitTester $I) + { + $I->wantToTest("Assets\Manager - getCss()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/GetJsCest.php b/tests/unit/Assets/Manager/GetJsCest.php new file mode 100644 index 00000000000..ff14d6274b0 --- /dev/null +++ b/tests/unit/Assets/Manager/GetJsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class GetJsCest +{ + /** + * Tests Phalcon\Assets\Manager :: getJs() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerGetJs(UnitTester $I) + { + $I->wantToTest("Assets\Manager - getJs()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/GetOptionsCest.php b/tests/unit/Assets/Manager/GetOptionsCest.php new file mode 100644 index 00000000000..d40cf59903d --- /dev/null +++ b/tests/unit/Assets/Manager/GetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class GetOptionsCest +{ + /** + * Tests Phalcon\Assets\Manager :: getOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerGetOptions(UnitTester $I) + { + $I->wantToTest("Assets\Manager - getOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/OutputCest.php b/tests/unit/Assets/Manager/OutputCest.php new file mode 100644 index 00000000000..b3f0a939fbc --- /dev/null +++ b/tests/unit/Assets/Manager/OutputCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class OutputCest +{ + /** + * Tests Phalcon\Assets\Manager :: output() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerOutput(UnitTester $I) + { + $I->wantToTest("Assets\Manager - output()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/OutputCssCest.php b/tests/unit/Assets/Manager/OutputCssCest.php new file mode 100644 index 00000000000..eabf7f4c119 --- /dev/null +++ b/tests/unit/Assets/Manager/OutputCssCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class OutputCssCest +{ + /** + * Tests Phalcon\Assets\Manager :: outputCss() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerOutputCss(UnitTester $I) + { + $I->wantToTest("Assets\Manager - outputCss()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/OutputInlineCest.php b/tests/unit/Assets/Manager/OutputInlineCest.php new file mode 100644 index 00000000000..1fca5f087c5 --- /dev/null +++ b/tests/unit/Assets/Manager/OutputInlineCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class OutputInlineCest +{ + /** + * Tests Phalcon\Assets\Manager :: outputInline() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerOutputInline(UnitTester $I) + { + $I->wantToTest("Assets\Manager - outputInline()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/OutputInlineCssCest.php b/tests/unit/Assets/Manager/OutputInlineCssCest.php new file mode 100644 index 00000000000..1adf18e949a --- /dev/null +++ b/tests/unit/Assets/Manager/OutputInlineCssCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class OutputInlineCssCest +{ + /** + * Tests Phalcon\Assets\Manager :: outputInlineCss() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerOutputInlineCss(UnitTester $I) + { + $I->wantToTest("Assets\Manager - outputInlineCss()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/OutputInlineJsCest.php b/tests/unit/Assets/Manager/OutputInlineJsCest.php new file mode 100644 index 00000000000..36296ea7445 --- /dev/null +++ b/tests/unit/Assets/Manager/OutputInlineJsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class OutputInlineJsCest +{ + /** + * Tests Phalcon\Assets\Manager :: outputInlineJs() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerOutputInlineJs(UnitTester $I) + { + $I->wantToTest("Assets\Manager - outputInlineJs()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/OutputJsCest.php b/tests/unit/Assets/Manager/OutputJsCest.php new file mode 100644 index 00000000000..6d212aeb15f --- /dev/null +++ b/tests/unit/Assets/Manager/OutputJsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class OutputJsCest +{ + /** + * Tests Phalcon\Assets\Manager :: outputJs() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerOutputJs(UnitTester $I) + { + $I->wantToTest("Assets\Manager - outputJs()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/SetCest.php b/tests/unit/Assets/Manager/SetCest.php new file mode 100644 index 00000000000..1bb5dc847a3 --- /dev/null +++ b/tests/unit/Assets/Manager/SetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class SetCest +{ + /** + * Tests Phalcon\Assets\Manager :: set() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerSet(UnitTester $I) + { + $I->wantToTest("Assets\Manager - set()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/SetOptionsCest.php b/tests/unit/Assets/Manager/SetOptionsCest.php new file mode 100644 index 00000000000..1b008821154 --- /dev/null +++ b/tests/unit/Assets/Manager/SetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class SetOptionsCest +{ + /** + * Tests Phalcon\Assets\Manager :: setOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerSetOptions(UnitTester $I) + { + $I->wantToTest("Assets\Manager - setOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Manager/UseImplicitOutputCest.php b/tests/unit/Assets/Manager/UseImplicitOutputCest.php new file mode 100644 index 00000000000..859dd541d6d --- /dev/null +++ b/tests/unit/Assets/Manager/UseImplicitOutputCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Manager; + +use UnitTester; + +class UseImplicitOutputCest +{ + /** + * Tests Phalcon\Assets\Manager :: useImplicitOutput() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsManagerUseImplicitOutput(UnitTester $I) + { + $I->wantToTest("Assets\Manager - useImplicitOutput()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/ManagerCest.php b/tests/unit/Assets/ManagerCest.php new file mode 100644 index 00000000000..18efc4ba5f7 --- /dev/null +++ b/tests/unit/Assets/ManagerCest.php @@ -0,0 +1,615 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets; + +use Phalcon\Assets\Exception; +use Phalcon\Assets\Filters\Jsmin; +use Phalcon\Assets\Filters\None; +use Phalcon\Assets\Manager; +use Phalcon\Assets\Resource\Css; +use Phalcon\Assets\Resource\Js; +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use UnitTester; +use function dataFolder; + +class ManagerCest +{ + use DiTrait; + + /** + * executed before each test + */ + public function _before(UnitTester $I) + { + $this->newDi(); + $this->setDiEscaper(); + $this->setDiUrl(); + } + + /** + * executed after each test + */ + public function _after(UnitTester $I) + { + // Setting the doctype to XHTML5 for other tests to run smoothly + Tag::setDocType(Tag::XHTML5); + } + + /** + * Test Manager::get + * + * @author Phalcon Team + * @since 2017-06-04 + * + * @expectedException \Phalcon\Assets\Exception + * @expectedExceptionMessage The collection does not exist in the manager + */ + public function assetsManagerShouldThrowExceptionIfThereIsNoCollection(UnitTester $I) + { + $I->expectThrowable( + new Exception('The collection does not exist in the manager'), + function () { + $assets = new Manager(); + $assets->get('some-non-existent-collection'); + } + ); + } + + /** + * Test Manager::exists + * + * @author Wojciech Ślawski + * @since 2016-03-16 + */ + public function assetsManagerShouldDetectAbsenceOfACollection(UnitTester $I) + { + $assets = new Manager(); + $actual = $assets->exists('some-non-existent-collection'); + $I->assertFalse($actual); + } + + /** + * Test Manager::exists + * + * @author Wojciech Ślawski + * @since 2016-03-16 + */ + public function assetsManagerShouldDetectCollection(UnitTester $I) + { + $assets = new Manager(); + + $assets->addCss('/css/style1.css'); + $assets->addCss('/css/style2.css'); + + $actual = $assets->exists('css'); + $I->assertTrue($actual); + } + + /** + * Tests addCss + * + * @author Phalcon Team + * @since 2014-10-13 + */ + public function testAssetsManagerAddingCss(UnitTester $I) + { + $assets = new Manager(); + + $assets->addCss('/css/style1.css'); + $assets->addCss('/css/style2.css'); + + $collection = $assets->get('css'); + + $number = 0; + $expected = 'css'; + foreach ($collection as $resource) { + $actual = $resource->getType(); + $I->assertEquals($expected, $actual); + $number++; + } + + $expected = 2; + $actual = $number; + $I->assertEquals($expected, $actual); + } + + /** + * Tests addCss and addJs + * + * @author Paul Scarrone + * @since 2017-06-20 + */ + public function testAssetsManagerAddingCssAndJs(UnitTester $I) + { + $assets = new Manager(); + + $assets->addCss('/css/style1.css'); + $assets->addCss('/css/style2.css'); + $assets->addJs('/js/script1.js'); + $assets->addJs('/js/script2.js'); + + $collectionCss = $assets->get('css'); + $collectionJs = $assets->get('js'); + + $CSSnumber = 0; + $expected = 'css'; + foreach ($collectionCss as $resource) { + $actual = $resource->getType(); + $I->assertEquals($expected, $actual); + $CSSnumber++; + } + + $expected = 2; + $actual = $CSSnumber; + $I->assertEquals($expected, $actual); + + $JSnumber = 0; + $expected = 'js'; + foreach ($collectionJs as $resource) { + $actual = $resource->getType(); + $I->assertEquals($expected, $actual); + $JSnumber++; + } + + $expected = 2; + $actual = $JSnumber; + $I->assertEquals($expected, $actual); + } + + /** + * Tests addJs + * + * @author Phalcon Team + * @since 2014-10-13 + */ + public function testAssetsManagerAddingJs(UnitTester $I) + { + $assets = new Manager(); + + $assets->addJs('/js/script1.js'); + $assets->addJs('/js/script2.js'); + + $collection = $assets->get('js'); + + $number = 0; + $expected = 'js'; + foreach ($collection as $resource) { + $actual = $resource->getType(); + $I->assertEquals($expected, $actual); + $number++; + } + + $expected = 2; + $actual = $number; + $I->assertEquals($expected, $actual); + } + + /** + * addResource tests + * + * @author Phalcon Team + * @since 2014-10-13 + */ + public function testAssetsManagerAddingCssWithAddResource(UnitTester $I) + { + $assets = new Manager(); + + $assets->addCss('/css/style1.css'); + $assets->addCss('/css/style2.css'); + $assets->addResource(new Css('/css/style.css', false)); + + $expected = 3; + $actual = count($assets->get('css')); + $I->assertEquals($expected, $actual); + } + + /** + * outputCss - implicitOutput tests + * + * @author Phalcon Team + * @since 2014-10-13 + */ + public function testAssetsManagerOutputCssWithImplicitOutput(UnitTester $I) + { + $assets = new Manager(); + + $assets->addCss('css/style1.css'); + $assets->addCss('css/style2.css'); + $assets->addResource(new Css('/css/style.css', false)); + + $expected = sprintf( + "%s\n%s\n%s\n", + '', + '', + '' + ); + + ob_start(); + $assets->outputCss(); + $actual = ob_get_clean(); + $I->assertEquals($expected, $actual); + } + + /** + * outputJs - implicitOutput tests + * + * @author Phalcon Team + * @since 2014-10-13 + */ + public function testAssetsManagerOutputJsWithImplicitOutput(UnitTester $I) + { + $assets = new Manager(); + + $assets->addJs('js/script1.js'); + $assets->addJs('js/script2.js'); + $assets->addResource(new Js('/js/script3.js', false)); + + $expected = sprintf( + "%s\n%s\n%s\n", + '', + '', + '' + ); + + ob_start(); + $assets->outputJs(); + $actual = ob_get_clean(); + $I->assertEquals($expected, $actual); + } + + /** + * outputCss - without implicitOutput tests + * + * @author Phalcon Team + * @since 2014-10-13 + */ + public function testAssetsManagerOutputCssWithoutImplicitOutput(UnitTester $I) + { + $assets = new Manager(); + + $assets->addCss('css/style1.css'); + $assets->addCss('css/style2.css'); + $assets->addResource(new Css('/css/style.css', false)); + + $expected = sprintf( + "%s\n%s\n%s\n", + '', + '', + '' + ); + + $assets->useImplicitOutput(false); + $actual = $assets->outputCss(); + $I->assertEquals($expected, $actual); + } + + /** + * outputJs - without implicitOutput tests + * + * @author Phalcon Team + * @since 2014-10-13 + */ + public function testAssetsManagerOutputJsWithoutImplicitOutput(UnitTester $I) + { + $assets = new Manager(); + + $assets->addJs('js/script1.js'); + $assets->addJs('js/script2.js'); + $assets->addResource(new Js('/js/script3.js', false)); + + $expected = sprintf( + "%s\n%s\n%s\n", + '', + '', + '' + ); + + $assets->useImplicitOutput(false); + $actual = $assets->outputJs(); + $I->assertEquals($expected, $actual); + } + + /** + * collection tests + * + * @author Phalcon Team + * @since 2014-10-13 + */ + public function testAssetsManagerOutputCssWithoutImplicitOutputFromCollection(UnitTester $I) + { + $assets = new Manager(); + $assets->collection('footer')->addCss('css/style1.css'); + + $footer = $assets->collection('footer'); + $footer->addCss('css/style2.css'); + + $expected = sprintf( + "%s\n%s\n", + '', + '' + ); + + $assets->useImplicitOutput(false); + $actual = $assets->outputCss('footer'); + $I->assertEquals($expected, $actual); + } + + /** + * collection tests + * + * @author Phalcon Team + * @since 2014-10-13 + */ + public function testAssetsManagerOutputJsWithoutImplicitOutputFromCollectionRemote(UnitTester $I) + { + $assets = new Manager(); + + $assets + ->collection('header') + ->setPrefix('http:://cdn.example.com/') + ->setLocal(false) + ->addJs('js/script1.js') + ->addJs('js/script2.js') + ; + + $assets->useImplicitOutput(false); + $actual = $assets->outputJs('header'); + + $expected = sprintf( + "%s\n%s\n", + '', + '' + ); + $I->assertEquals($expected, $actual); + } + + /** + * Tests collection with mixed resources + * + * @author Paul Scarrone + * @since 2017-06-20 + */ + public function testAssetsManagerOutputJsWithMixedResourceCollection(UnitTester $I) + { + $assets = new Manager(); + + $assets + ->collection('header') + ->setPrefix('http:://cdn.example.com/') + ->setLocal(false) + ->addJs('js/script1.js') + ->addJs('js/script2.js') + ->addCss('css/styles1.css') + ->addCss('css/styles2.css') + ; + $assets->useImplicitOutput(false); + + $actualJS = $assets->outputJs('header'); + $expectedJS = sprintf( + "%s\n%s\n", + '', + '' + ); + $I->assertEquals($expectedJS, $actualJS); + + $actualCSS = $assets->outputCss('header'); + $expectedCSS = sprintf( + "%s\n%s\n", + '', + '' + ); + $I->assertEquals($expectedCSS, $actualCSS); + } + + /** + * Tests setting local target + * + * @issue https://github.com/phalcon/cphalcon/issues/1532 + * @author Phalcon Team + * @author Dreamszhu + * @since 2013-10-25 + */ + public function testTargetLocal(UnitTester $I) + { + $file = md5(microtime(true)) . '.js'; + $assets = new Manager(); + $jsFile = dataFolder('assets/assets/jquery.js'); + + $assets->useImplicitOutput(false); + $assets->collection('js') + ->addJs($jsFile) + ->join(true) + ->addFilter(new Jsmin()) + ->setTargetPath(outputFolder("tests/assets/{$file}")) + ->setTargetLocal(false) + ->setPrefix('//phalconphp.com/') + ->setTargetUri('js/jquery.js') + ; + + $expected = '' . PHP_EOL; + $actual = $assets->outputJs('js'); + $I->assertEquals($expected, $actual); + + $I->seeFileFound(outputFolder("tests/assets/{$file}")); + $I->safeDeleteFile(outputFolder("tests/assets/{$file}")); + } + + /** + * Tests basic output + * + * @author Phalcon Team + * @since 2016-01-24 + */ + public function testBasicOutput(UnitTester $I) + { + $assets = new Manager(); + + $assets->useImplicitOutput(false); + $assets->collection('js') + ->addJs(dataFolder('assets/assets/jquery.js'), false, false) + ->setTargetPath(outputFolder("tests/assets/combined.js")) + ->setTargetUri('production/combined.js') + ; + + $expected = sprintf( + '%s', + dataFolder('assets/assets/jquery.js'), + PHP_EOL + ); + $actual = $assets->outputJs('js'); + $I->assertEquals($expected, $actual); + } + + /** + * Tests output with enabled join + * + * @author Phalcon Team + * @since 2016-01-24 + */ + public function testOutputWithEnabledJoin(UnitTester $I) + { + $assets = new Manager(); + + $assets->useImplicitOutput(false); + $assets->collection('js') + ->addJs(dataFolder('assets/assets/jquery.js'), false, false) + ->setTargetPath(outputFolder("tests/assets/combined.js")) + ->setTargetUri('production/combined.js') + ->join(true) + ; + + $expected = sprintf( + '%s', + dataFolder('assets/assets/jquery.js'), + PHP_EOL + ); + $actual = $assets->outputJs('js'); + $I->assertEquals($expected, $actual); + } + + /** + * Tests output with disabled join + * + * @author Phalcon Team + * @since 2016-01-24 + */ + public function testOutputWithDisabledJoin(UnitTester $I) + { + $assets = new Manager(); + + $assets->useImplicitOutput(false); + $assets->collection('js') + ->addJs(dataFolder('assets/assets/jquery.js'), false, false) + ->setTargetPath(outputFolder("assets/combined.js")) + ->setTargetUri('production/combined.js') + ->join(false) + ; + + $expected = sprintf( + '%s', + dataFolder('assets/assets/jquery.js'), + PHP_EOL + ); + $actual = $assets->outputJs('js'); + $I->assertEquals($expected, $actual); + } + + /** + * Tests output with disabled join + * + * @author Phalcon Team + * @since 2016-01-24 + */ + public function testOutputWithJoinAndFilter(UnitTester $I) + { + $assets = new Manager(); + $jsFile = dataFolder('assets/assets/jquery.js'); + $assets->useImplicitOutput(false); + $assets->collection('js') + ->addJs($jsFile, false, false) + ->setTargetPath(outputFolder("assets/combined.js")) + ->setTargetUri('production/combined.js') + ->join(false) + ->addFilter(new None()) + ; + + $expected = sprintf( + '%s', + dataFolder('assets/assets/jquery.js'), + PHP_EOL + ); + $actual = $assets->outputJs('js'); + $I->assertEquals($expected, $actual); + } + + /** + * Tests avoid duplication of resources when adding a + * new one with existing name + * + * @issue https://github.com/phalcon/cphalcon/issues/10938 + * @author Phalcon Team + * @since 2017-06-02 + */ + public function doNotAddTheSameResources(UnitTester $I) + { + $assets = new Manager(); + + for ($i = 0; $i < 10; $i++) { + $assets + ->addCss('css/style.css') + ->addJs('script.js') + ; + } + + $expected = 1; + $actual = count($assets->getCss()); + $I->assertEquals($expected, $actual); + $expected = 1; + $actual = count($assets->getJs()); + $I->assertEquals($expected, $actual); + + for ($i = 0; $i < 2; $i++) { + $assets + ->addCss('style_' . $i . '.css') + ->addJs('script_' . $i . '.js') + ; + } + + $expected = 3; + $actual = count($assets->getCss()); + $I->assertEquals($expected, $actual); + $expected = 3; + $actual = count($assets->getJs()); + $I->assertEquals($expected, $actual); + } + + /** + * @issue https://github.com/phalcon/cphalcon/issues/11409 + * @param UnitTester $I + */ + public function addInlineJs(UnitTester $I) + { + $manager = new Manager(); + $jsFile = dataFolder('assets/assets/signup.js'); + $js = file_get_contents($jsFile); + $manager->addInlineJs($js); + $expected = "\n"; + + ob_start(); + $manager->outputInlineJs(); + $actual = ob_get_contents(); + ob_end_clean(); + + $I->assertSame($expected, $actual); + } +} diff --git a/tests/unit/Assets/ManagerTest.php b/tests/unit/Assets/ManagerTest.php deleted file mode 100644 index 16fea71a32e..00000000000 --- a/tests/unit/Assets/ManagerTest.php +++ /dev/null @@ -1,648 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Assets - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ManagerTest extends UnitTest -{ - /** - * executed after each test - */ - protected function _after() - { - // Setting the doctype to XHTML5 for other tests to run smoothly - Tag::setDocType(Tag::XHTML5); - } - - /** - * Test Manager::get - * - * @test - * @author Serghei Iakovlev - * @since 2017-06-04 - * - * @expectedException \Phalcon\Assets\Exception - * @expectedExceptionMessage The collection does not exist in the manager - */ - public function assetsManagerShouldThrowExceptionIfThereIsNoCollection() - { - $this->specify( - 'The Assets Manager does not throw exception in case of absence of a collection', - function () { - $assets = new Manager(); - $assets->get('some-non-existent-collection'); - } - ); - } - - /** - * Test Manager::exists - * - * @test - * @author Wojciech Ślawski - * @since 2016-03-16 - */ - public function assetsManagerShouldDetectAbsenceOfACollection() - { - $this->specify( - 'The Assets Manager does not return valid status case of absence of a collection', - function () { - $assets = new Manager(); - expect($assets->exists('some-non-existent-collection'))->false(); - } - ); - } - - /** - * Test Manager::exists - * - * @test - * @author Wojciech Ślawski - * @since 2016-03-16 - */ - public function assetsManagerShouldDetectCollection() - { - $this->specify( - 'The Assets Manager does not return valid status case of presence of a collection', - function () { - $assets = new Manager(); - - $assets->addCss('/css/style1.css'); - $assets->addCss('/css/style2.css'); - - expect($assets->exists('css'))->true(); - } - ); - } - - /** - * Tests addCss - * - * @author Nikolaos Dimopoulos - * @since 2014-10-13 - */ - public function testAssetsManagerAddingCss() - { - $this->specify( - "The addCss on assets manager does add resources correctly", - function () { - $assets = new Manager(); - - $assets->addCss('/css/style1.css'); - $assets->addCss('/css/style2.css'); - - $collection = $assets->get('css'); - - $number = 0; - foreach ($collection as $resource) { - expect('css')->equals($resource->getType()); - $number++; - } - - expect($number)->equals(2); - } - ); - } - - /** - * Tests addCss and addJs - * - * @author Paul Scarrone - * @since 2017-06-20 - */ - public function testAssetsManagerAddingCssAndJs() - { - $this->specify( - "The combination of addCss and addJs on assets manager does add resources correctly", - function () { - $assets = new Manager(); - - $assets->addCss('/css/style1.css'); - $assets->addCss('/css/style2.css'); - $assets->addJs('/js/script1.js'); - $assets->addJs('/js/script2.js'); - - $collectionCss = $assets->get('css'); - $collectionJs = $assets->get('js'); - - $CSSnumber = 0; - foreach ($collectionCss as $resource) { - expect('css')->equals($resource->getType()); - $CSSnumber++; - } - expect($CSSnumber)->equals(2); - - $JSnumber = 0; - foreach ($collectionJs as $resource) { - expect('js')->equals($resource->getType()); - $JSnumber++; - } - expect($JSnumber)->equals(2); - } - ); - } - - /** - * Tests addJs - * - * @author Nikolaos Dimopoulos - * @since 2014-10-13 - */ - public function testAssetsManagerAddingJs() - { - $this->specify( - "The addJs on assets manager does add resources correctly", - function () { - $assets = new Manager(); - - $assets->addJs('/js/script1.js'); - $assets->addJs('/js/script2.js'); - - $collection = $assets->get('js'); - - $number = 0; - foreach ($collection as $resource) { - expect('js')->equals($resource->getType()); - $number++; - } - - expect($number)->equals(2); - } - ); - } - - /** - * addResource tests - * - * @author Nikolaos Dimopoulos - * @since 2014-10-13 - */ - public function testAssetsManagerAddingCssWithAddResource() - { - $this->specify( - "The addResource on assets manager does add resources correctly", - function () { - $assets = new Manager(); - - $assets->addCss('/css/style1.css'); - $assets->addCss('/css/style2.css'); - $assets->addResource(new Css('/css/style.css', false)); - - $actual = count($assets->get('css')); - - expect($actual)->equals(3); - } - ); - } - - /** - * outputCss - implicitOutput tests - * - * @author Nikolaos Dimopoulos - * @since 2014-10-13 - */ - public function testAssetsManagerOutputCssWithImplicitOutput() - { - $this->specify( - "The outputCss with implicitOutput does not produce the correct result", - function () { - $assets = new Manager(); - - $assets->addCss('css/style1.css'); - $assets->addCss('css/style2.css'); - $assets->addResource(new Css('/css/style.css', false)); - - $expected = sprintf( - "%s\n%s\n%s\n", - '', - '', - '' - ); - - ob_start(); - $assets->outputCss(); - - expect(ob_get_clean())->equals($expected); - } - ); - } - - /** - * outputJs - implicitOutput tests - * - * @author Nikolaos Dimopoulos - * @since 2014-10-13 - */ - public function testAssetsManagerOutputJsWithImplicitOutput() - { - $this->specify( - "The outputJs with implicitOutput does not produce the correct result", - function () { - $assets = new Manager(); - - $assets->addJs('js/script1.js'); - $assets->addJs('js/script2.js'); - $assets->addResource(new Js('/js/script3.js', false)); - - $expected = sprintf( - "%s\n%s\n%s\n", - '', - '', - '' - ); - - ob_start(); - $assets->outputJs(); - - expect(ob_get_clean())->equals($expected); - } - ); - } - - /** - * outputCss - without implicitOutput tests - * - * @author Nikolaos Dimopoulos - * @since 2014-10-13 - */ - public function testAssetsManagerOutputCssWithoutImplicitOutput() - { - $this->specify( - "The outputCss with implicitOutput does not produce the correct result", - function () { - $assets = new Manager(); - - $assets->addCss('css/style1.css'); - $assets->addCss('css/style2.css'); - $assets->addResource(new Css('/css/style.css', false)); - - $expected = sprintf( - "%s\n%s\n%s\n", - '', - '', - '' - ); - - $assets->useImplicitOutput(false); - - expect($assets->outputCss())->equals($expected); - } - ); - } - - /** - * outputJs - without implicitOutput tests - * - * @author Nikolaos Dimopoulos - * @since 2014-10-13 - */ - public function testAssetsManagerOutputJsWithoutImplicitOutput() - { - $this->specify( - "The outputJs with implicitOutput does not produce the correct result", - function () { - $assets = new Manager(); - - $assets->addJs('js/script1.js'); - $assets->addJs('js/script2.js'); - $assets->addResource(new Js('/js/script3.js', false)); - - $expected = sprintf( - "%s\n%s\n%s\n", - '', - '', - '' - ); - - $assets->useImplicitOutput(false); - - expect($assets->outputJs())->equals($expected); - } - ); - } - - /** - * collection tests - * - * @author Nikolaos Dimopoulos - * @since 2014-10-13 - */ - public function testAssetsManagerOutputCssWithoutImplicitOutputFromCollection() - { - $this->specify( - "The outputCss using a collection does not produce the correct result", - function () { - $assets = new Manager(); - $assets->collection('footer')->addCss('css/style1.css'); - - $footer = $assets->collection('footer'); - $footer->addCss('css/style2.css'); - - $expected = sprintf( - "%s\n%s\n", - '', - '' - ); - - $assets->useImplicitOutput(false); - - expect($assets->outputCss('footer'))->equals($expected); - } - ); - } - - /** - * collection tests - * - * @author Nikolaos Dimopoulos - * @since 2014-10-13 - */ - public function testAssetsManagerOutputJsWithoutImplicitOutputFromCollectionRemote() - { - $this->specify( - "The outputJs using a collection does not produce the correct result", - function () { - $assets = new Manager(); - - $assets->collection('header') - ->setPrefix('http:://cdn.example.com/') - ->setLocal(false) - ->addJs('js/script1.js') - ->addJs('js/script2.js'); - - $assets->useImplicitOutput(false); - $actual = $assets->outputJs('header'); - - $expected = sprintf( - "%s\n%s\n", - '', - '' - ); - - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests collection with mixed resources - * - * @author Paul Scarrone - * @since 2017-06-20 - */ - public function testAssetsManagerOutputJsWithMixedResourceCollection() - { - $this->specify( - "The outputJs using a mixed resource collection returns only JS resources", - function () { - $assets = new Manager(); - - $assets->collection('header') - ->setPrefix('http:://cdn.example.com/') - ->setLocal(false) - ->addJs('js/script1.js') - ->addJs('js/script2.js') - ->addCss('css/styles1.css') - ->addCss('css/styles2.css'); - $assets->useImplicitOutput(false); - - $actualJS = $assets->outputJs('header'); - $expectedJS = sprintf( - "%s\n%s\n", - '', - '' - ); - expect($actualJS)->equals($expectedJS); - - $actualCSS = $assets->outputCss('header'); - $expectedCSS = sprintf( - "%s\n%s\n", - '', - '' - ); - expect($actualCSS)->equals($expectedCSS); - } - ); - } - - - /** - * Tests setting local target - * - * @issue https://github.com/phalcon/cphalcon/issues/1532 - * @author Serghei Iakovlev - * @author Dreamszhu - * @since 2013-10-25 - */ - public function testTargetLocal() - { - $this->specify( - "Setting local target does not works correctly", - function () { - $I = $this->tester; - $file = md5(microtime(true)) . '.js'; - $assets = new Manager(); - - $assets->useImplicitOutput(false); - $assets->collection('js') - ->addJs(PATH_DATA. 'assets/jquery.js') - ->join(true) - ->addFilter(new Jsmin()) - ->setTargetPath(PATH_OUTPUT . "tests/assets/{$file}") - ->setTargetLocal(false) - ->setPrefix('//phalconphp.com/') - ->setTargetUri('js/jquery.js'); - - expect($assets->outputJs('js'))->equals('' . PHP_EOL); - - $I->seeFileFound(PATH_OUTPUT . "tests/assets/{$file}"); - $I->deleteFile(PATH_OUTPUT . "tests/assets/{$file}"); - } - ); - } - - /** - * Tests basic output - * - * @author Serghei Iakovlev - * @since 2016-01-24 - */ - public function testBasicOutput() - { - $this->specify( - "The outputJs using a collection does not produce the correct result", - function () { - $assets = new Manager(); - - $assets->useImplicitOutput(false); - $assets->collection('js') - ->addJs(PATH_DATA. 'assets/jquery.js', false, false) - ->setTargetPath(PATH_OUTPUT . "tests/assets/combined.js") - ->setTargetUri('production/combined.js'); - - $expected = sprintf( - '%s', - PATH_DATA. 'assets/jquery.js', - PHP_EOL - ); - - expect($assets->outputJs('js'))->equals($expected); - } - ); - } - - /** - * Tests output with enabled join - * - * @author Serghei Iakovlev - * @since 2016-01-24 - */ - public function testOutputWithEnabledJoin() - { - $this->specify( - "The outputJs using a collection and with enabled join does not produce the correct result", - function () { - $assets = new Manager(); - - $assets->useImplicitOutput(false); - $assets->collection('js') - ->addJs(PATH_DATA. 'assets/jquery.js', false, false) - ->setTargetPath(PATH_OUTPUT . "tests/assets/combined.js") - ->setTargetUri('production/combined.js') - ->join(true); - - $expected = sprintf( - '%s', - PATH_DATA. 'assets/jquery.js', - PHP_EOL - ); - - expect($assets->outputJs('js'))->equals($expected); - } - ); - } - - /** - * Tests output with disabled join - * - * @author Serghei Iakovlev - * @since 2016-01-24 - */ - public function testOutputWithDisabledJoin() - { - $this->specify( - "The outputJs using a collection and with disabled join does not produce the correct result", - function () { - $assets = new Manager(); - - $assets->useImplicitOutput(false); - $assets->collection('js') - ->addJs(PATH_DATA. 'assets/jquery.js', false, false) - ->setTargetPath(PATH_OUTPUT . "tests/assets/combined.js") - ->setTargetUri('production/combined.js') - ->join(false); - - $expected = sprintf( - '%s', - PATH_DATA. 'assets/jquery.js', - PHP_EOL - ); - - expect($assets->outputJs('js'))->equals($expected); - } - ); - } - - /** - * Tests output with disabled join - * - * @author Serghei Iakovlev - * @since 2016-01-24 - */ - public function testOutputWithJoinAndFilter() - { - $this->specify( - "The outputJs using a collection and with enabled join and filter does not produce the correct result", - function () { - $assets = new Manager(); - - $assets->useImplicitOutput(false); - $assets->collection('js') - ->addJs(PATH_DATA. 'assets/jquery.js', false, false) - ->setTargetPath(PATH_OUTPUT . "tests/assets/combined.js") - ->setTargetUri('production/combined.js') - ->join(false) - ->addFilter(new None()); - - $expected = sprintf( - '%s', - PATH_DATA. 'assets/jquery.js', - PHP_EOL - ); - - expect($assets->outputJs('js'))->equals($expected); - } - ); - } - - /** - * Tests avoid duplication of resources when adding a - * new one with existing name - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/10938 - * @author Serghei Iakovlev - * @since 2017-06-02 - */ - public function doNotAddTheSameRecources() - { - $this->specify( - "The assets collection incorrectly stores resources", - function () { - $assets = new Manager(); - - for ($i = 0; $i < 10; $i++) { - $assets - ->addCss('css/style.css') - ->addJs('script.js'); - } - - expect($assets->getCss())->count(1); - expect($assets->getJs())->count(1); - - for ($i = 0; $i < 2; $i++) { - $assets - ->addCss('style_' . $i . '.css') - ->addJs('script_' . $i . '.js'); - } - - expect($assets->getCss())->count(3); - expect($assets->getJs())->count(3); - } - ); - } -} diff --git a/tests/unit/Assets/Resource/ConstructCest.php b/tests/unit/Assets/Resource/ConstructCest.php new file mode 100644 index 00000000000..1909f51d804 --- /dev/null +++ b/tests/unit/Assets/Resource/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Assets\Resource :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testConstruct(UnitTester $I) + { + $I->wantToTest("Assets\Resource - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Css/ConstructCest.php b/tests/unit/Assets/Resource/Css/ConstructCest.php new file mode 100644 index 00000000000..0c25b8ccfb7 --- /dev/null +++ b/tests/unit/Assets/Resource/Css/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Assets\Resource\Css :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssConstruct(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Css/GetAttributesCest.php b/tests/unit/Assets/Resource/Css/GetAttributesCest.php new file mode 100644 index 00000000000..9c50b9f8ea1 --- /dev/null +++ b/tests/unit/Assets/Resource/Css/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use UnitTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Assets\Resource\Css :: getAttributes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssGetAttributes(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Css/GetContentCest.php b/tests/unit/Assets/Resource/Css/GetContentCest.php new file mode 100644 index 00000000000..e864eaa91dd --- /dev/null +++ b/tests/unit/Assets/Resource/Css/GetContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use UnitTester; + +class GetContentCest +{ + /** + * Tests Phalcon\Assets\Resource\Css :: getContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssGetContent(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - getContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Css/GetFilterCest.php b/tests/unit/Assets/Resource/Css/GetFilterCest.php new file mode 100644 index 00000000000..eca6399c723 --- /dev/null +++ b/tests/unit/Assets/Resource/Css/GetFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use UnitTester; + +class GetFilterCest +{ + /** + * Tests Phalcon\Assets\Resource\Css :: getFilter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssGetFilter(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - getFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Css/GetLocalCest.php b/tests/unit/Assets/Resource/Css/GetLocalCest.php new file mode 100644 index 00000000000..bcc2d5963f7 --- /dev/null +++ b/tests/unit/Assets/Resource/Css/GetLocalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use UnitTester; + +class GetLocalCest +{ + /** + * Tests Phalcon\Assets\Resource\Css :: getLocal() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssGetLocal(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - getLocal()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Css/GetPathCest.php b/tests/unit/Assets/Resource/Css/GetPathCest.php new file mode 100644 index 00000000000..9e2ef7c485c --- /dev/null +++ b/tests/unit/Assets/Resource/Css/GetPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use UnitTester; + +class GetPathCest +{ + /** + * Tests Phalcon\Assets\Resource\Css :: getPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssGetPath(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - getPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Css/GetRealSourcePathCest.php b/tests/unit/Assets/Resource/Css/GetRealSourcePathCest.php new file mode 100644 index 00000000000..60fb0adff32 --- /dev/null +++ b/tests/unit/Assets/Resource/Css/GetRealSourcePathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use UnitTester; + +class GetRealSourcePathCest +{ + /** + * Tests Phalcon\Assets\Resource\Css :: getRealSourcePath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssGetRealSourcePath(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - getRealSourcePath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Css/GetRealTargetPathCest.php b/tests/unit/Assets/Resource/Css/GetRealTargetPathCest.php new file mode 100644 index 00000000000..f7f2c2d44a6 --- /dev/null +++ b/tests/unit/Assets/Resource/Css/GetRealTargetPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use UnitTester; + +class GetRealTargetPathCest +{ + /** + * Tests Phalcon\Assets\Resource\Css :: getRealTargetPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssGetRealTargetPath(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - getRealTargetPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Css/GetRealTargetUriCest.php b/tests/unit/Assets/Resource/Css/GetRealTargetUriCest.php new file mode 100644 index 00000000000..4efce1f07b3 --- /dev/null +++ b/tests/unit/Assets/Resource/Css/GetRealTargetUriCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use UnitTester; + +class GetRealTargetUriCest +{ + /** + * Tests Phalcon\Assets\Resource\Css :: getRealTargetUri() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssGetRealTargetUri(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - getRealTargetUri()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Css/GetResourceKeyCest.php b/tests/unit/Assets/Resource/Css/GetResourceKeyCest.php new file mode 100644 index 00000000000..4029ed68d08 --- /dev/null +++ b/tests/unit/Assets/Resource/Css/GetResourceKeyCest.php @@ -0,0 +1,38 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use Phalcon\Assets\Resource\Css; +use Phalcon\Test\Fixtures\Traits\AssetsTrait; +use UnitTester; + +class GetResourceKeyCest +{ + use AssetsTrait; + + /** + * Tests Phalcon\Assets\Resource\Css :: getResourceKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssGetResourceKey(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - getResourceKey()"); + $resource = new Css('css/docs.css'); + $expected = md5('css:css/docs.css'); + + $this->resourceGetResourceKey($I, $resource, $expected); + } +} diff --git a/tests/unit/Assets/Resource/Css/GetSourcePathCest.php b/tests/unit/Assets/Resource/Css/GetSourcePathCest.php new file mode 100644 index 00000000000..317c69a6df4 --- /dev/null +++ b/tests/unit/Assets/Resource/Css/GetSourcePathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use UnitTester; + +class GetSourcePathCest +{ + /** + * Tests Phalcon\Assets\Resource\Css :: getSourcePath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssGetSourcePath(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - getSourcePath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Css/GetTargetPathCest.php b/tests/unit/Assets/Resource/Css/GetTargetPathCest.php new file mode 100644 index 00000000000..9f8aec85605 --- /dev/null +++ b/tests/unit/Assets/Resource/Css/GetTargetPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use UnitTester; + +class GetTargetPathCest +{ + /** + * Tests Phalcon\Assets\Resource\Css :: getTargetPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssGetTargetPath(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - getTargetPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Css/GetTargetUriCest.php b/tests/unit/Assets/Resource/Css/GetTargetUriCest.php new file mode 100644 index 00000000000..490cbae2150 --- /dev/null +++ b/tests/unit/Assets/Resource/Css/GetTargetUriCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use UnitTester; + +class GetTargetUriCest +{ + /** + * Tests Phalcon\Assets\Resource\Css :: getTargetUri() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssGetTargetUri(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - getTargetUri()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Css/GetTypeCest.php b/tests/unit/Assets/Resource/Css/GetTypeCest.php new file mode 100644 index 00000000000..63e477b2853 --- /dev/null +++ b/tests/unit/Assets/Resource/Css/GetTypeCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use Phalcon\Assets\Resource\Css; +use Phalcon\Test\Fixtures\Traits\AssetsTrait; +use UnitTester; + +class GetTypeCest +{ + use AssetsTrait; + + /** + * Tests Phalcon\Assets\Resource\Css :: getType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssGetType(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - getType()"); + $resource = new Css('css/docs.css'); + $this->resourceGetType($I, $resource, 'css'); + } +} diff --git a/tests/unit/Assets/Resource/Css/SetAttributesCest.php b/tests/unit/Assets/Resource/Css/SetAttributesCest.php new file mode 100644 index 00000000000..76a0f533882 --- /dev/null +++ b/tests/unit/Assets/Resource/Css/SetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use UnitTester; + +class SetAttributesCest +{ + /** + * Tests Phalcon\Assets\Resource\Css :: setAttributes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssSetAttributes(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - setAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Css/SetFilterCest.php b/tests/unit/Assets/Resource/Css/SetFilterCest.php new file mode 100644 index 00000000000..736eb68a99f --- /dev/null +++ b/tests/unit/Assets/Resource/Css/SetFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use UnitTester; + +class SetFilterCest +{ + /** + * Tests Phalcon\Assets\Resource\Css :: setFilter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssSetFilter(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - setFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Css/SetLocalCest.php b/tests/unit/Assets/Resource/Css/SetLocalCest.php new file mode 100644 index 00000000000..c21c7e29d9b --- /dev/null +++ b/tests/unit/Assets/Resource/Css/SetLocalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use UnitTester; + +class SetLocalCest +{ + /** + * Tests Phalcon\Assets\Resource\Css :: setLocal() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssSetLocal(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - setLocal()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Css/SetPathCest.php b/tests/unit/Assets/Resource/Css/SetPathCest.php new file mode 100644 index 00000000000..3ac40a8c963 --- /dev/null +++ b/tests/unit/Assets/Resource/Css/SetPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use UnitTester; + +class SetPathCest +{ + /** + * Tests Phalcon\Assets\Resource\Css :: setPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssSetPath(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - setPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Css/SetSourcePathCest.php b/tests/unit/Assets/Resource/Css/SetSourcePathCest.php new file mode 100644 index 00000000000..fa9a5cb4d92 --- /dev/null +++ b/tests/unit/Assets/Resource/Css/SetSourcePathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use UnitTester; + +class SetSourcePathCest +{ + /** + * Tests Phalcon\Assets\Resource\Css :: setSourcePath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssSetSourcePath(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - setSourcePath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Css/SetTargetPathCest.php b/tests/unit/Assets/Resource/Css/SetTargetPathCest.php new file mode 100644 index 00000000000..34536b2d075 --- /dev/null +++ b/tests/unit/Assets/Resource/Css/SetTargetPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use UnitTester; + +class SetTargetPathCest +{ + /** + * Tests Phalcon\Assets\Resource\Css :: setTargetPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssSetTargetPath(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - setTargetPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Css/SetTargetUriCest.php b/tests/unit/Assets/Resource/Css/SetTargetUriCest.php new file mode 100644 index 00000000000..5b5fc2a44ad --- /dev/null +++ b/tests/unit/Assets/Resource/Css/SetTargetUriCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use UnitTester; + +class SetTargetUriCest +{ + /** + * Tests Phalcon\Assets\Resource\Css :: setTargetUri() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssSetTargetUri(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - setTargetUri()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Css/SetTypeCest.php b/tests/unit/Assets/Resource/Css/SetTypeCest.php new file mode 100644 index 00000000000..6fbbd8a4707 --- /dev/null +++ b/tests/unit/Assets/Resource/Css/SetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Css; + +use UnitTester; + +class SetTypeCest +{ + /** + * Tests Phalcon\Assets\Resource\Css :: setType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceCssSetType(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Css - setType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/CssCest.php b/tests/unit/Assets/Resource/CssCest.php new file mode 100644 index 00000000000..24cb88a6bd1 --- /dev/null +++ b/tests/unit/Assets/Resource/CssCest.php @@ -0,0 +1,59 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use Phalcon\Assets\Resource\Css; +use UnitTester; + +class CssCest +{ + /** + * Tests Css getType + * + * @author Phalcon Team + * @since 2014-10-10 + */ + public function testAssetsResourceCssGetType(UnitTester $I) + { + $resource = new Css('/css/style.css', false); + $expected = 'css'; + $actual = $resource->getType(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Css getPath + * + * @author Phalcon Team + * @since 2014-10-10 + */ + public function testAssetsResourceCssGetPath(UnitTester $I) + { + $resource = new Css('/css/style.css', false); + $expected = '/css/style.css'; + $actual = $resource->getPath(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Css getLocal + * + * @author Phalcon Team + * @since 2014-10-10 + */ + public function testAssetsResourceCssGetLocal(UnitTester $I) + { + $resource = new Css('/css/style.css', false); + $actual = $resource->getLocal(); + $I->assertFalse($actual); + } +} diff --git a/tests/unit/Assets/Resource/CssTest.php b/tests/unit/Assets/Resource/CssTest.php deleted file mode 100644 index edae6b25a53..00000000000 --- a/tests/unit/Assets/Resource/CssTest.php +++ /dev/null @@ -1,85 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Asset - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class CssTest extends UnitTest -{ - /** - * Tests Css getType - * - * @author Nikolaos Dimopoulos - * @since 2014-10-10 - */ - public function testAssetsResourceCssGetType() - { - $this->specify( - "The resource Css getType is not correct", - function () { - $resource = new Css('/css/style.css', false); - $expected = 'css'; - $actual = $resource->getType(); - - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests Css getPath - * - * @author Nikolaos Dimopoulos - * @since 2014-10-10 - */ - public function testAssetsResourceCssGetPath() - { - $this->specify( - "The resource Css getPath is not correct", - function () { - $resource = new Css('/css/style.css', false); - $expected = '/css/style.css'; - $actual = $resource->getPath(); - - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests Css getLocal - * - * @author Nikolaos Dimopoulos - * @since 2014-10-10 - */ - public function testAssetsResourceCssGetLocal() - { - $this->specify( - "The resource Css getLocal is not correct", - function () { - $resource = new Css('/css/style.css', false); - $actual = $resource->getLocal(); - - expect($actual)->false(); - } - ); - } -} diff --git a/tests/unit/Assets/Resource/GetAttributesCest.php b/tests/unit/Assets/Resource/GetAttributesCest.php new file mode 100644 index 00000000000..2e027d88572 --- /dev/null +++ b/tests/unit/Assets/Resource/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use UnitTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Assets\Resource :: getAttributes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceGetAttributes(UnitTester $I) + { + $I->wantToTest("Assets\Resource - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/GetContentCest.php b/tests/unit/Assets/Resource/GetContentCest.php new file mode 100644 index 00000000000..85afa702a8e --- /dev/null +++ b/tests/unit/Assets/Resource/GetContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use UnitTester; + +class GetContentCest +{ + /** + * Tests Phalcon\Assets\Resource :: getContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceGetContent(UnitTester $I) + { + $I->wantToTest("Assets\Resource - getContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/GetFilterCest.php b/tests/unit/Assets/Resource/GetFilterCest.php new file mode 100644 index 00000000000..a31367f996f --- /dev/null +++ b/tests/unit/Assets/Resource/GetFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use UnitTester; + +class GetFilterCest +{ + /** + * Tests Phalcon\Assets\Resource :: getFilter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceGetFilter(UnitTester $I) + { + $I->wantToTest("Assets\Resource - getFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/GetLocalCest.php b/tests/unit/Assets/Resource/GetLocalCest.php new file mode 100644 index 00000000000..b490fad371f --- /dev/null +++ b/tests/unit/Assets/Resource/GetLocalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use UnitTester; + +class GetLocalCest +{ + /** + * Tests Phalcon\Assets\Resource :: getLocal() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceGetLocal(UnitTester $I) + { + $I->wantToTest("Assets\Resource - getLocal()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/GetPathCest.php b/tests/unit/Assets/Resource/GetPathCest.php new file mode 100644 index 00000000000..8f8c0352616 --- /dev/null +++ b/tests/unit/Assets/Resource/GetPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use UnitTester; + +class GetPathCest +{ + /** + * Tests Phalcon\Assets\Resource :: getPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceGetPath(UnitTester $I) + { + $I->wantToTest("Assets\Resource - getPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/GetRealSourcePathCest.php b/tests/unit/Assets/Resource/GetRealSourcePathCest.php new file mode 100644 index 00000000000..55ea84840c6 --- /dev/null +++ b/tests/unit/Assets/Resource/GetRealSourcePathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use UnitTester; + +class GetRealSourcePathCest +{ + /** + * Tests Phalcon\Assets\Resource :: getRealSourcePath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceGetRealSourcePath(UnitTester $I) + { + $I->wantToTest("Assets\Resource - getRealSourcePath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/GetRealTargetPathCest.php b/tests/unit/Assets/Resource/GetRealTargetPathCest.php new file mode 100644 index 00000000000..d0035cbe87e --- /dev/null +++ b/tests/unit/Assets/Resource/GetRealTargetPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use UnitTester; + +class GetRealTargetPathCest +{ + /** + * Tests Phalcon\Assets\Resource :: getRealTargetPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceGetRealTargetPath(UnitTester $I) + { + $I->wantToTest("Assets\Resource - getRealTargetPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/GetRealTargetUriCest.php b/tests/unit/Assets/Resource/GetRealTargetUriCest.php new file mode 100644 index 00000000000..0dfc2cb98a9 --- /dev/null +++ b/tests/unit/Assets/Resource/GetRealTargetUriCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use UnitTester; + +class GetRealTargetUriCest +{ + /** + * Tests Phalcon\Assets\Resource :: getRealTargetUri() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceGetRealTargetUri(UnitTester $I) + { + $I->wantToTest("Assets\Resource - getRealTargetUri()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/GetResourceKeyCest.php b/tests/unit/Assets/Resource/GetResourceKeyCest.php new file mode 100644 index 00000000000..eab8eb3a2ae --- /dev/null +++ b/tests/unit/Assets/Resource/GetResourceKeyCest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use Phalcon\Assets\Resource; +use Phalcon\Test\Fixtures\Traits\AssetsTrait; +use UnitTester; + +class GetResourceKeyCest +{ + use AssetsTrait; + + /** + * Tests Phalcon\Assets\Resource :: getResourceKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceGetResourceKey(UnitTester $I) + { + $I->wantToTest("Assets\Resource - getResourceKey()"); + $resource = new Resource('css', 'css/docs.css'); + $expected = md5('css:css/docs.css'); + $this->resourceGetResourceKey($I, $resource, $expected); + + + $resource = new Resource('js', 'js/jquery.js'); + $expected = md5('js:js/jquery.js'); + $this->resourceGetResourceKey($I, $resource, $expected); + } +} diff --git a/tests/unit/Assets/Resource/GetSourcePathCest.php b/tests/unit/Assets/Resource/GetSourcePathCest.php new file mode 100644 index 00000000000..08fce187c24 --- /dev/null +++ b/tests/unit/Assets/Resource/GetSourcePathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use UnitTester; + +class GetSourcePathCest +{ + /** + * Tests Phalcon\Assets\Resource :: getSourcePath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceGetSourcePath(UnitTester $I) + { + $I->wantToTest("Assets\Resource - getSourcePath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/GetTargetPathCest.php b/tests/unit/Assets/Resource/GetTargetPathCest.php new file mode 100644 index 00000000000..1a6643b257f --- /dev/null +++ b/tests/unit/Assets/Resource/GetTargetPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use UnitTester; + +class GetTargetPathCest +{ + /** + * Tests Phalcon\Assets\Resource :: getTargetPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceGetTargetPath(UnitTester $I) + { + $I->wantToTest("Assets\Resource - getTargetPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/GetTargetUriCest.php b/tests/unit/Assets/Resource/GetTargetUriCest.php new file mode 100644 index 00000000000..92f4f9f4a86 --- /dev/null +++ b/tests/unit/Assets/Resource/GetTargetUriCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use UnitTester; + +class GetTargetUriCest +{ + /** + * Tests Phalcon\Assets\Resource :: getTargetUri() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceGetTargetUri(UnitTester $I) + { + $I->wantToTest("Assets\Resource - getTargetUri()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/GetTypeCest.php b/tests/unit/Assets/Resource/GetTypeCest.php new file mode 100644 index 00000000000..91cc505949e --- /dev/null +++ b/tests/unit/Assets/Resource/GetTypeCest.php @@ -0,0 +1,39 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use Phalcon\Assets\Resource; +use Phalcon\Test\Fixtures\Traits\AssetsTrait; +use UnitTester; + +class GetTypeCest +{ + use AssetsTrait; + + /** + * Tests Phalcon\Assets\Resource :: getType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceGetType(UnitTester $I) + { + $I->wantToTest("Assets\Resource - getType()"); + $resource = new Resource('js', 'js/jquery.js'); + $this->resourceGetType($I, $resource, 'js'); + + $resource = new Resource('css', 'css/docs.css'); + $this->resourceGetType($I, $resource, 'css'); + } +} diff --git a/tests/unit/Assets/Resource/Js/ConstructCest.php b/tests/unit/Assets/Resource/Js/ConstructCest.php new file mode 100644 index 00000000000..4632d7b6909 --- /dev/null +++ b/tests/unit/Assets/Resource/Js/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Assets\Resource\Js :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsConstruct(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Js - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Js/GetAttributesCest.php b/tests/unit/Assets/Resource/Js/GetAttributesCest.php new file mode 100644 index 00000000000..e899dd3d981 --- /dev/null +++ b/tests/unit/Assets/Resource/Js/GetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use UnitTester; + +class GetAttributesCest +{ + /** + * Tests Phalcon\Assets\Resource\Js :: getAttributes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsGetAttributes(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Js - getAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Js/GetContentCest.php b/tests/unit/Assets/Resource/Js/GetContentCest.php new file mode 100644 index 00000000000..e29492d25da --- /dev/null +++ b/tests/unit/Assets/Resource/Js/GetContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use UnitTester; + +class GetContentCest +{ + /** + * Tests Phalcon\Assets\Resource\Js :: getContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsGetContent(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Js - getContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Js/GetFilterCest.php b/tests/unit/Assets/Resource/Js/GetFilterCest.php new file mode 100644 index 00000000000..31867e8751e --- /dev/null +++ b/tests/unit/Assets/Resource/Js/GetFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use UnitTester; + +class GetFilterCest +{ + /** + * Tests Phalcon\Assets\Resource\Js :: getFilter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsGetFilter(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Js - getFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Js/GetLocalCest.php b/tests/unit/Assets/Resource/Js/GetLocalCest.php new file mode 100644 index 00000000000..0c63f4f5e7f --- /dev/null +++ b/tests/unit/Assets/Resource/Js/GetLocalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use UnitTester; + +class GetLocalCest +{ + /** + * Tests Phalcon\Assets\Resource\Js :: getLocal() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsGetLocal(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Js - getLocal()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Js/GetPathCest.php b/tests/unit/Assets/Resource/Js/GetPathCest.php new file mode 100644 index 00000000000..22e5af90832 --- /dev/null +++ b/tests/unit/Assets/Resource/Js/GetPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use UnitTester; + +class GetPathCest +{ + /** + * Tests Phalcon\Assets\Resource\Js :: getPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsGetPath(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Js - getPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Js/GetRealSourcePathCest.php b/tests/unit/Assets/Resource/Js/GetRealSourcePathCest.php new file mode 100644 index 00000000000..76a1dc6e96c --- /dev/null +++ b/tests/unit/Assets/Resource/Js/GetRealSourcePathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use UnitTester; + +class GetRealSourcePathCest +{ + /** + * Tests Phalcon\Assets\Resource\Js :: getRealSourcePath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsGetRealSourcePath(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Js - getRealSourcePath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Js/GetRealTargetPathCest.php b/tests/unit/Assets/Resource/Js/GetRealTargetPathCest.php new file mode 100644 index 00000000000..22df4639d7e --- /dev/null +++ b/tests/unit/Assets/Resource/Js/GetRealTargetPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use UnitTester; + +class GetRealTargetPathCest +{ + /** + * Tests Phalcon\Assets\Resource\Js :: getRealTargetPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsGetRealTargetPath(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Js - getRealTargetPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Js/GetRealTargetUriCest.php b/tests/unit/Assets/Resource/Js/GetRealTargetUriCest.php new file mode 100644 index 00000000000..76fdde6fcfe --- /dev/null +++ b/tests/unit/Assets/Resource/Js/GetRealTargetUriCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use UnitTester; + +class GetRealTargetUriCest +{ + /** + * Tests Phalcon\Assets\Resource\Js :: getRealTargetUri() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsGetRealTargetUri(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Js - getRealTargetUri()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Js/GetResourceKeyCest.php b/tests/unit/Assets/Resource/Js/GetResourceKeyCest.php new file mode 100644 index 00000000000..336c3d8d1c1 --- /dev/null +++ b/tests/unit/Assets/Resource/Js/GetResourceKeyCest.php @@ -0,0 +1,38 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use Phalcon\Assets\Resource\Js; +use Phalcon\Test\Fixtures\Traits\AssetsTrait; +use UnitTester; + +class GetResourceKeyCest +{ + use AssetsTrait; + + /** + * Tests Phalcon\Assets\Resource\Js :: getResourceKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsGetResourceKey(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Js - getResourceKey()"); + $resource = new Js('js/jquery.js'); + $expected = md5('js:js/jquery.js'); + + $this->resourceGetResourceKey($I, $resource, $expected); + } +} diff --git a/tests/unit/Assets/Resource/Js/GetSourcePathCest.php b/tests/unit/Assets/Resource/Js/GetSourcePathCest.php new file mode 100644 index 00000000000..41a2a4b0126 --- /dev/null +++ b/tests/unit/Assets/Resource/Js/GetSourcePathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use UnitTester; + +class GetSourcePathCest +{ + /** + * Tests Phalcon\Assets\Resource\Js :: getSourcePath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsGetSourcePath(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Js - getSourcePath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Js/GetTargetPathCest.php b/tests/unit/Assets/Resource/Js/GetTargetPathCest.php new file mode 100644 index 00000000000..ed2c8bb308d --- /dev/null +++ b/tests/unit/Assets/Resource/Js/GetTargetPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use UnitTester; + +class GetTargetPathCest +{ + /** + * Tests Phalcon\Assets\Resource\Js :: getTargetPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsGetTargetPath(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Js - getTargetPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Js/GetTargetUriCest.php b/tests/unit/Assets/Resource/Js/GetTargetUriCest.php new file mode 100644 index 00000000000..c7cb5ad5524 --- /dev/null +++ b/tests/unit/Assets/Resource/Js/GetTargetUriCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use UnitTester; + +class GetTargetUriCest +{ + /** + * Tests Phalcon\Assets\Resource\Js :: getTargetUri() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsGetTargetUri(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Js - getTargetUri()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Js/GetTypeCest.php b/tests/unit/Assets/Resource/Js/GetTypeCest.php new file mode 100644 index 00000000000..422020909ed --- /dev/null +++ b/tests/unit/Assets/Resource/Js/GetTypeCest.php @@ -0,0 +1,35 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use Phalcon\Assets\Resource\Js; +use Phalcon\Test\Fixtures\Traits\AssetsTrait; +use UnitTester; + +class GetTypeCest +{ + use AssetsTrait; + + /** + * Tests Phalcon\Assets\Resource\Js :: getType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsGetType(UnitTester $I) + { + $resource = new Js('js/jquery.js'); + $this->resourceGetType($I, $resource, 'js'); + } +} diff --git a/tests/unit/Assets/Resource/Js/SetAttributesCest.php b/tests/unit/Assets/Resource/Js/SetAttributesCest.php new file mode 100644 index 00000000000..ad4b87a42aa --- /dev/null +++ b/tests/unit/Assets/Resource/Js/SetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use UnitTester; + +class SetAttributesCest +{ + /** + * Tests Phalcon\Assets\Resource\Js :: setAttributes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsSetAttributes(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Js - setAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Js/SetFilterCest.php b/tests/unit/Assets/Resource/Js/SetFilterCest.php new file mode 100644 index 00000000000..cbe26b4f4ec --- /dev/null +++ b/tests/unit/Assets/Resource/Js/SetFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use UnitTester; + +class SetFilterCest +{ + /** + * Tests Phalcon\Assets\Resource\Js :: setFilter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsSetFilter(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Js - setFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Js/SetLocalCest.php b/tests/unit/Assets/Resource/Js/SetLocalCest.php new file mode 100644 index 00000000000..763bf64bda9 --- /dev/null +++ b/tests/unit/Assets/Resource/Js/SetLocalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use UnitTester; + +class SetLocalCest +{ + /** + * Tests Phalcon\Assets\Resource\Js :: setLocal() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsSetLocal(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Js - setLocal()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Js/SetPathCest.php b/tests/unit/Assets/Resource/Js/SetPathCest.php new file mode 100644 index 00000000000..446680df326 --- /dev/null +++ b/tests/unit/Assets/Resource/Js/SetPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use UnitTester; + +class SetPathCest +{ + /** + * Tests Phalcon\Assets\Resource\Js :: setPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsSetPath(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Js - setPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Js/SetSourcePathCest.php b/tests/unit/Assets/Resource/Js/SetSourcePathCest.php new file mode 100644 index 00000000000..5e9bb03fc9b --- /dev/null +++ b/tests/unit/Assets/Resource/Js/SetSourcePathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use UnitTester; + +class SetSourcePathCest +{ + /** + * Tests Phalcon\Assets\Resource\Js :: setSourcePath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsSetSourcePath(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Js - setSourcePath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Js/SetTargetPathCest.php b/tests/unit/Assets/Resource/Js/SetTargetPathCest.php new file mode 100644 index 00000000000..6655a118099 --- /dev/null +++ b/tests/unit/Assets/Resource/Js/SetTargetPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use UnitTester; + +class SetTargetPathCest +{ + /** + * Tests Phalcon\Assets\Resource\Js :: setTargetPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsSetTargetPath(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Js - setTargetPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Js/SetTargetUriCest.php b/tests/unit/Assets/Resource/Js/SetTargetUriCest.php new file mode 100644 index 00000000000..959b109047d --- /dev/null +++ b/tests/unit/Assets/Resource/Js/SetTargetUriCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use UnitTester; + +class SetTargetUriCest +{ + /** + * Tests Phalcon\Assets\Resource\Js :: setTargetUri() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsSetTargetUri(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Js - setTargetUri()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/Js/SetTypeCest.php b/tests/unit/Assets/Resource/Js/SetTypeCest.php new file mode 100644 index 00000000000..c79dafb247a --- /dev/null +++ b/tests/unit/Assets/Resource/Js/SetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource\Js; + +use UnitTester; + +class SetTypeCest +{ + /** + * Tests Phalcon\Assets\Resource\Js :: setType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceJsSetType(UnitTester $I) + { + $I->wantToTest("Assets\Resource\Js - setType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/JsCest.php b/tests/unit/Assets/Resource/JsCest.php new file mode 100644 index 00000000000..59136924574 --- /dev/null +++ b/tests/unit/Assets/Resource/JsCest.php @@ -0,0 +1,59 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use Phalcon\Assets\Resource\Js; +use UnitTester; + +class JsCest +{ + /** + * Tests Js getType + * + * @author Phalcon Team + * @since 2014-10-10 + */ + public function testAssetsResourceJsGetType(UnitTester $I) + { + $resource = new Js('/js/jquery.js', false); + $expected = 'js'; + $actual = $resource->getType(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Js getPath + * + * @author Phalcon Team + * @since 2014-10-10 + */ + public function testAssetsResourceJsGetPath(UnitTester $I) + { + $resource = new Js('/js/jquery.js', false); + $expected = '/js/jquery.js'; + $actual = $resource->getPath(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Js getLocal + * + * @author Phalcon Team + * @since 2014-10-10 + */ + public function testAssetsResourceJsGetLocal(UnitTester $I) + { + $resource = new Js('/js/jquery.js', false); + $actual = $resource->getLocal(); + $I->assertFalse($actual); + } +} diff --git a/tests/unit/Assets/Resource/JsTest.php b/tests/unit/Assets/Resource/JsTest.php deleted file mode 100644 index 0561ff550ad..00000000000 --- a/tests/unit/Assets/Resource/JsTest.php +++ /dev/null @@ -1,85 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Asset - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class JsTest extends UnitTest -{ - /** - * Tests Js getType - * - * @author Nikolaos Dimopoulos - * @since 2014-10-10 - */ - public function testAssetsResourceJsGetType() - { - $this->specify( - "The resource Js getType is not correct", - function () { - $resource = new Js('/js/jquery.js', false); - $expected = 'js'; - $actual = $resource->getType(); - - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests Js getPath - * - * @author Nikolaos Dimopoulos - * @since 2014-10-10 - */ - public function testAssetsResourceJsGetPath() - { - $this->specify( - "The resource Js getPath is not correct", - function () { - $resource = new Js('/js/jquery.js', false); - $expected = '/js/jquery.js'; - $actual = $resource->getPath(); - - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests Js getLocal - * - * @author Nikolaos Dimopoulos - * @since 2014-10-10 - */ - public function testAssetsResourceJsGetLocal() - { - $this->specify( - "The resource Js getLocal is not correct", - function () { - $resource = new Js('/js/jquery.js', false); - $actual = $resource->getLocal(); - - expect($actual)->false(); - } - ); - } -} diff --git a/tests/unit/Assets/Resource/SetAttributesCest.php b/tests/unit/Assets/Resource/SetAttributesCest.php new file mode 100644 index 00000000000..a955b087cfe --- /dev/null +++ b/tests/unit/Assets/Resource/SetAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use UnitTester; + +class SetAttributesCest +{ + /** + * Tests Phalcon\Assets\Resource :: setAttributes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceSetAttributes(UnitTester $I) + { + $I->wantToTest("Assets\Resource - setAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/SetFilterCest.php b/tests/unit/Assets/Resource/SetFilterCest.php new file mode 100644 index 00000000000..05668feca55 --- /dev/null +++ b/tests/unit/Assets/Resource/SetFilterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use UnitTester; + +class SetFilterCest +{ + /** + * Tests Phalcon\Assets\Resource :: setFilter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceSetFilter(UnitTester $I) + { + $I->wantToTest("Assets\Resource - setFilter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/SetLocalCest.php b/tests/unit/Assets/Resource/SetLocalCest.php new file mode 100644 index 00000000000..8d4721e62f8 --- /dev/null +++ b/tests/unit/Assets/Resource/SetLocalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use UnitTester; + +class SetLocalCest +{ + /** + * Tests Phalcon\Assets\Resource :: setLocal() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceSetLocal(UnitTester $I) + { + $I->wantToTest("Assets\Resource - setLocal()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/SetPathCest.php b/tests/unit/Assets/Resource/SetPathCest.php new file mode 100644 index 00000000000..465fd9d08a1 --- /dev/null +++ b/tests/unit/Assets/Resource/SetPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use UnitTester; + +class SetPathCest +{ + /** + * Tests Phalcon\Assets\Resource :: setPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceSetPath(UnitTester $I) + { + $I->wantToTest("Assets\Resource - setPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/SetSourcePathCest.php b/tests/unit/Assets/Resource/SetSourcePathCest.php new file mode 100644 index 00000000000..f91ce0bde7b --- /dev/null +++ b/tests/unit/Assets/Resource/SetSourcePathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use UnitTester; + +class SetSourcePathCest +{ + /** + * Tests Phalcon\Assets\Resource :: setSourcePath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceSetSourcePath(UnitTester $I) + { + $I->wantToTest("Assets\Resource - setSourcePath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/SetTargetPathCest.php b/tests/unit/Assets/Resource/SetTargetPathCest.php new file mode 100644 index 00000000000..1023f7b3a0d --- /dev/null +++ b/tests/unit/Assets/Resource/SetTargetPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use UnitTester; + +class SetTargetPathCest +{ + /** + * Tests Phalcon\Assets\Resource :: setTargetPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceSetTargetPath(UnitTester $I) + { + $I->wantToTest("Assets\Resource - setTargetPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/SetTargetUriCest.php b/tests/unit/Assets/Resource/SetTargetUriCest.php new file mode 100644 index 00000000000..a680837d49e --- /dev/null +++ b/tests/unit/Assets/Resource/SetTargetUriCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use UnitTester; + +class SetTargetUriCest +{ + /** + * Tests Phalcon\Assets\Resource :: setTargetUri() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceSetTargetUri(UnitTester $I) + { + $I->wantToTest("Assets\Resource - setTargetUri()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/Resource/SetTypeCest.php b/tests/unit/Assets/Resource/SetTypeCest.php new file mode 100644 index 00000000000..e0a70e83074 --- /dev/null +++ b/tests/unit/Assets/Resource/SetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets\Resource; + +use UnitTester; + +class SetTypeCest +{ + /** + * Tests Phalcon\Assets\Resource :: setType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function assetsResourceSetType(UnitTester $I) + { + $I->wantToTest("Assets\Resource - setType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Assets/ResourceCest.php b/tests/unit/Assets/ResourceCest.php new file mode 100644 index 00000000000..7b13e877e74 --- /dev/null +++ b/tests/unit/Assets/ResourceCest.php @@ -0,0 +1,45 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Assets; + +use Phalcon\Assets\Resource; +use UnitTester; + +class ResourceCest +{ + /** + * Tests getPath + * + * @author Phalcon Team + * @since 2014-10-10 + */ + public function testAssetsResourceGetPath(UnitTester $I) + { + $resource = new Resource('js', 'js/jquery.js'); + $expected = 'js/jquery.js'; + $actual = $resource->getPath(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests getLocal + * + * @author Phalcon Team + * @since 2014-10-10 + */ + public function testAssetsResourceGetLocal(UnitTester $I) + { + $resource = new Resource('js', 'js/jquery.js'); + $actual = $resource->getLocal(); + $I->assertTrue($actual); + } +} diff --git a/tests/unit/Assets/ResourceTest.php b/tests/unit/Assets/ResourceTest.php deleted file mode 100644 index 4e33bbe7cb5..00000000000 --- a/tests/unit/Assets/ResourceTest.php +++ /dev/null @@ -1,104 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Asset - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ResourceTest extends UnitTest -{ - /** - * Tests getType - * - * @author Nikolaos Dimopoulos - * @since 2014-10-10 - */ - public function testAssetsResourceGetType() - { - $this->specify( - "The resource getType is not correct", - function () { - $resource = new Resource('js', 'js/jquery.js'); - $expected = 'js'; - $actual = $resource->getType(); - - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests getResourceKey - * - * @test - * @author Serghei Iakovlev - * @since 2017-06-02 - */ - public function getResourceKey() - { - $this->specify( - "Unable to get resource key or resorce key is incorrect", - function () { - $resource = new Resource('js', 'js/jquery.js'); - - expect(md5('js:js/jquery.js'))->equals($resource->getResourceKey()); - } - ); - } - - /** - * Tests getPath - * - * @author Nikolaos Dimopoulos - * @since 2014-10-10 - */ - public function testAssetsResourceGetPath() - { - $this->specify( - "The resource getPath is not correct", - function () { - $resource = new Resource('js', 'js/jquery.js'); - $expected = 'js/jquery.js'; - $actual = $resource->getPath(); - - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests getLocal - * - * @author Nikolaos Dimopoulos - * @since 2014-10-10 - */ - public function testAssetsResourceGetLocal() - { - $this->specify( - "The resource getLocal is not correct", - function () { - $resource = new Resource('js', 'js/jquery.js'); - $actual = $resource->getLocal(); - - expect($actual)->true(); - } - ); - } -} diff --git a/tests/unit/Cache/Backend/ApcCest.php b/tests/unit/Cache/Backend/ApcCest.php deleted file mode 100644 index 929cc524bc4..00000000000 --- a/tests/unit/Cache/Backend/ApcCest.php +++ /dev/null @@ -1,260 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Cache\Backend - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ApcCest -{ - public function _before(UnitTester $I) - { - if (!extension_loaded('apc')) { - throw new SkippedTestError( - 'Warning: apc extension is not loaded' - ); - } - - if (!ini_get('apc.enabled') || (PHP_SAPI === 'cli' && !ini_get('apc.enable_cli'))) { - throw new SkippedTestError( - 'Warning: apc.enable_cli must be set to "On"' - ); - } - - if (extension_loaded('apcu') && version_compare(phpversion('apcu'), '5.1.6', '=')) { - throw new SkippedTestError( - 'Warning: APCu v5.1.6 was broken. See: https://github.com/krakjoe/apcu/issues/203' - ); - } - } - - public function _after(UnitTester $I) - { - $I->flushApc(); - } - - public function increment(UnitTester $I) - { - $I->wantTo('Increment counter by using APC(u) as cache backend'); - - $key = '_PHCA' . 'increment'; - $cache = new Apc(new Data(['lifetime' => 20])); - - $I->dontSeeInApc($key); - $I->haveInApc($key, 1); - - $I->assertEquals(2, $cache->increment('increment')); - $I->seeInApc($key, 2); - - $I->assertEquals(4, $cache->increment('increment', 2)); - $I->seeInApc($key, 4); - - $I->assertEquals(14, $cache->increment('increment', 10)); - $I->seeInApc($key, 14); - - $key = '_PHCA' . 'increment-2'; - - $I->dontSeeInApc($key); - $I->haveInApc($key, 90); - - $I->assertEquals(91, $cache->increment('increment-2')); - $I->seeInApc($key, 91); - - $I->assertEquals(97, $cache->increment('increment-2', 6)); - $I->seeInApc($key, 97); - - $I->assertEquals(200, $cache->increment('increment-2', 103)); - $I->seeInApc($key, 200); - } - - public function decrement(UnitTester $I) - { - $I->wantTo('Decrement counter by using APC(u) as cache backend'); - - $key = '_PHCA' . 'decrement'; - $cache = new Apc(new Data(['lifetime' => 20])); - - $I->dontSeeInApc($key); - $I->haveInApc($key, 100); - - $I->assertEquals(99, $cache->decrement('decrement')); - $I->seeInApc($key, 99); - - $I->assertEquals(96, $cache->decrement('decrement', 3)); - $I->seeInApc($key, 96); - - $I->assertEquals(90, $cache->decrement('decrement', 6)); - $I->seeInApc($key, 90); - - $key = '_PHCA' . 'decrement-2'; - - $I->dontSeeInApc($key); - $I->haveInApc($key, 60); - - $I->assertEquals(59, $cache->decrement('decrement-2')); - $I->seeInApc($key, 59); - - $I->assertEquals(47, $cache->decrement('decrement-2', 12)); - $I->seeInApc($key, 47); - - $I->assertEquals(7, $cache->decrement('decrement-2', 40)); - $I->seeInApc($key, 7); - } - - public function get(UnitTester $I) - { - $I->wantTo('Get data by using APC(u) as cache backend'); - - $key = '_PHCA' . 'data-get'; - $data = [uniqid(), gethostname(), microtime(), get_include_path(), time()]; - - $cache = new Apc(new Data(['lifetime' => 20])); - - $I->haveInApc($key, serialize($data)); - $I->assertEquals($data, $cache->get('data-get')); - - $I->assertNull($cache->get('non-existent-key')); - - $data = 'sure, nothing interesting'; - - $I->haveInApc($key, serialize($data)); - $I->assertEquals($data, $cache->get('data-get')); - - $I->assertNull($cache->get('non-existent-key-2')); - } - - public function save(UnitTester $I) - { - $I->wantTo('Save data by using APC(u) as cache backend'); - - $key = '_PHCA' . 'data-save'; - $data = [uniqid(), gethostname(), microtime(), get_include_path(), time()]; - - $cache = new Apc(new Data(['lifetime' => 20])); - - $I->dontSeeInApc($key); - $cache->save('data-save', $data); - - $I->seeInApc($key, serialize($data)); - - $data = 'sure, nothing interesting'; - - $I->dontSeeInApc('non-existent-key', serialize($data)); - - $cache->save('data-save', $data); - $I->seeInApc($key, serialize($data)); - } - - public function delete(UnitTester $I) - { - $I->wantTo(/** @lang text */ - 'Delete from cache by using APC(u) as cache backend' - ); - - $key = '_PHCA' . 'data-delete'; - $cache = new Apc(new Data(['lifetime' => 20])); - - $I->assertFalse($cache->delete('non-existent-keys')); - - $I->haveInApc($key, 1); - - $I->assertTrue($cache->delete('data-delete')); - $I->dontSeeInApc($key); - } - - public function flush(UnitTester $I) - { - $I->wantTo('Flush all cache by using APC(u) as cache backend'); - - $cache = new Apc(new Data(['lifetime' => 20])); - - $key1 = '_PHCA' . 'app-data' . 'data-flush-1'; - $key2 = '_PHCA' . 'app-data' . 'data-flush-2'; - $key3 = '_PHCA' . 'data-flush-3'; - - $I->haveInApc([$key1 => 1, $key2 => 2, $key3 => 3], null); - - $I->assertTrue($cache->flush()); - - $I->dontSeeInApc($key1); - $I->dontSeeInApc($key2); - $I->dontSeeInApc($key3); - } - - /** - * @issue https://github.com/phalcon/cphalcon/issues/12153 - * @param UnitTester $I - */ - public function flushByPrefix(UnitTester $I) - { - $I->wantTo('Flush prefixed keys from cache by using APC(u) as cache backend'); - - $prefix = 'app-data'; - $cache = new Apc(new Data(['lifetime' => 20]), ['prefix' => $prefix]); - - $key1 = '_PHCA' . 'app-data' . 'data-flush-1'; - $key2 = '_PHCA' . 'app-data' . 'data-flush-2'; - $key3 = '_PHCA' . 'data-flush-3'; - - $I->haveInApc([$key1 => 1, $key2 => 2, $key3 => 3], null); - - $I->assertTrue($cache->flush()); - - $I->dontSeeInApc($key1); - $I->dontSeeInApc($key2); - - $I->assertEquals(3, $I->grabValueFromApc($key3)); - } - - public function queryKeys(UnitTester $I) - { - $I->wantTo('Get cache keys by using APC(u) as cache backend'); - - $cache = new Apc(new Data(['lifetime' => 20])); - - $I->haveInApc(['_PHCAa' => 1, '_PHCAb' => 2, '_PHCAc' => 3], null); - - $keys = $cache->queryKeys(); - sort($keys); - - $I->assertEquals($keys, ['a', 'b', 'c']); - } - - public function prefixedQueryKeys(UnitTester $I) - { - $I->wantTo('Get prefixed cache keys by using APC(u) as cache backend'); - - $prefix = 'app-data'; - $cache = new Apc(new Data(['lifetime' => 20]), ['prefix' => $prefix]); - - $key1 = '_PHCA' . 'app-data' . 'data-key-1'; - $key2 = '_PHCA' . 'app-data' . 'data-key-2'; - $key3 = '_PHCA' . 'data-key-3'; - - $I->haveInApc([$key1 => 1, $key2 => 2, $key3 => 3], null); - - $keys = $cache->queryKeys($prefix); - sort($keys); - - $I->assertEquals($keys, ['app-datadata-key-1', 'app-datadata-key-2']); - } -} diff --git a/tests/unit/Cache/Backend/Apcu/ConstructCest.php b/tests/unit/Cache/Backend/Apcu/ConstructCest.php new file mode 100644 index 00000000000..ace6f50b52f --- /dev/null +++ b/tests/unit/Cache/Backend/Apcu/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Apcu; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Cache\Backend\Apcu :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendApcuConstruct(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Apcu - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Apcu/DecrementCest.php b/tests/unit/Cache/Backend/Apcu/DecrementCest.php new file mode 100644 index 00000000000..442522be87c --- /dev/null +++ b/tests/unit/Cache/Backend/Apcu/DecrementCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Apcu; + +use UnitTester; + +class DecrementCest +{ + /** + * Tests Phalcon\Cache\Backend\Apcu :: decrement() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendApcuDecrement(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Apcu - decrement()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Apcu/DeleteCest.php b/tests/unit/Cache/Backend/Apcu/DeleteCest.php new file mode 100644 index 00000000000..e43b26cb91c --- /dev/null +++ b/tests/unit/Cache/Backend/Apcu/DeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Apcu; + +use UnitTester; + +class DeleteCest +{ + /** + * Tests Phalcon\Cache\Backend\Apcu :: delete() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendApcuDelete(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Apcu - delete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Apcu/ExistsCest.php b/tests/unit/Cache/Backend/Apcu/ExistsCest.php new file mode 100644 index 00000000000..5e3c89cdb80 --- /dev/null +++ b/tests/unit/Cache/Backend/Apcu/ExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Apcu; + +use UnitTester; + +class ExistsCest +{ + /** + * Tests Phalcon\Cache\Backend\Apcu :: exists() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendApcuExists(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Apcu - exists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Apcu/FlushCest.php b/tests/unit/Cache/Backend/Apcu/FlushCest.php new file mode 100644 index 00000000000..9ddd745d731 --- /dev/null +++ b/tests/unit/Cache/Backend/Apcu/FlushCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Apcu; + +use UnitTester; + +class FlushCest +{ + /** + * Tests Phalcon\Cache\Backend\Apcu :: flush() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendApcuFlush(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Apcu - flush()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Apcu/GetCest.php b/tests/unit/Cache/Backend/Apcu/GetCest.php new file mode 100644 index 00000000000..f30e9572b8a --- /dev/null +++ b/tests/unit/Cache/Backend/Apcu/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Apcu; + +use UnitTester; + +class GetCest +{ + /** + * Tests Phalcon\Cache\Backend\Apcu :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendApcuGet(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Apcu - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Apcu/GetFrontendCest.php b/tests/unit/Cache/Backend/Apcu/GetFrontendCest.php new file mode 100644 index 00000000000..1bc7ed9481a --- /dev/null +++ b/tests/unit/Cache/Backend/Apcu/GetFrontendCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Apcu; + +use UnitTester; + +class GetFrontendCest +{ + /** + * Tests Phalcon\Cache\Backend\Apcu :: getFrontend() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendApcuGetFrontend(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Apcu - getFrontend()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Apcu/GetLastKeyCest.php b/tests/unit/Cache/Backend/Apcu/GetLastKeyCest.php new file mode 100644 index 00000000000..fc38b8dacbc --- /dev/null +++ b/tests/unit/Cache/Backend/Apcu/GetLastKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Apcu; + +use UnitTester; + +class GetLastKeyCest +{ + /** + * Tests Phalcon\Cache\Backend\Apcu :: getLastKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendApcuGetLastKey(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Apcu - getLastKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Apcu/GetLifetimeCest.php b/tests/unit/Cache/Backend/Apcu/GetLifetimeCest.php new file mode 100644 index 00000000000..f8811572a76 --- /dev/null +++ b/tests/unit/Cache/Backend/Apcu/GetLifetimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Apcu; + +use UnitTester; + +class GetLifetimeCest +{ + /** + * Tests Phalcon\Cache\Backend\Apcu :: getLifetime() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendApcuGetLifetime(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Apcu - getLifetime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Apcu/GetOptionsCest.php b/tests/unit/Cache/Backend/Apcu/GetOptionsCest.php new file mode 100644 index 00000000000..9aa192ea0e1 --- /dev/null +++ b/tests/unit/Cache/Backend/Apcu/GetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Apcu; + +use UnitTester; + +class GetOptionsCest +{ + /** + * Tests Phalcon\Cache\Backend\Apcu :: getOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendApcuGetOptions(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Apcu - getOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Apcu/IncrementCest.php b/tests/unit/Cache/Backend/Apcu/IncrementCest.php new file mode 100644 index 00000000000..cd458cd7953 --- /dev/null +++ b/tests/unit/Cache/Backend/Apcu/IncrementCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Apcu; + +use UnitTester; + +class IncrementCest +{ + /** + * Tests Phalcon\Cache\Backend\Apcu :: increment() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendApcuIncrement(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Apcu - increment()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Apcu/IsFreshCest.php b/tests/unit/Cache/Backend/Apcu/IsFreshCest.php new file mode 100644 index 00000000000..aa0456590f6 --- /dev/null +++ b/tests/unit/Cache/Backend/Apcu/IsFreshCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Apcu; + +use UnitTester; + +class IsFreshCest +{ + /** + * Tests Phalcon\Cache\Backend\Apcu :: isFresh() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendApcuIsFresh(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Apcu - isFresh()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Apcu/IsStartedCest.php b/tests/unit/Cache/Backend/Apcu/IsStartedCest.php new file mode 100644 index 00000000000..375cae6f438 --- /dev/null +++ b/tests/unit/Cache/Backend/Apcu/IsStartedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Apcu; + +use UnitTester; + +class IsStartedCest +{ + /** + * Tests Phalcon\Cache\Backend\Apcu :: isStarted() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendApcuIsStarted(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Apcu - isStarted()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Apcu/QueryKeysCest.php b/tests/unit/Cache/Backend/Apcu/QueryKeysCest.php new file mode 100644 index 00000000000..7a1f291b1c5 --- /dev/null +++ b/tests/unit/Cache/Backend/Apcu/QueryKeysCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Apcu; + +use UnitTester; + +class QueryKeysCest +{ + /** + * Tests Phalcon\Cache\Backend\Apcu :: queryKeys() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendApcuQueryKeys(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Apcu - queryKeys()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Apcu/SaveCest.php b/tests/unit/Cache/Backend/Apcu/SaveCest.php new file mode 100644 index 00000000000..9465fcebabe --- /dev/null +++ b/tests/unit/Cache/Backend/Apcu/SaveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Apcu; + +use UnitTester; + +class SaveCest +{ + /** + * Tests Phalcon\Cache\Backend\Apcu :: save() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendApcuSave(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Apcu - save()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Apcu/SetFrontendCest.php b/tests/unit/Cache/Backend/Apcu/SetFrontendCest.php new file mode 100644 index 00000000000..58581d36dfd --- /dev/null +++ b/tests/unit/Cache/Backend/Apcu/SetFrontendCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Apcu; + +use UnitTester; + +class SetFrontendCest +{ + /** + * Tests Phalcon\Cache\Backend\Apcu :: setFrontend() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendApcuSetFrontend(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Apcu - setFrontend()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Apcu/SetLastKeyCest.php b/tests/unit/Cache/Backend/Apcu/SetLastKeyCest.php new file mode 100644 index 00000000000..c9832e78adb --- /dev/null +++ b/tests/unit/Cache/Backend/Apcu/SetLastKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Apcu; + +use UnitTester; + +class SetLastKeyCest +{ + /** + * Tests Phalcon\Cache\Backend\Apcu :: setLastKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendApcuSetLastKey(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Apcu - setLastKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Apcu/SetOptionsCest.php b/tests/unit/Cache/Backend/Apcu/SetOptionsCest.php new file mode 100644 index 00000000000..aa561a373d1 --- /dev/null +++ b/tests/unit/Cache/Backend/Apcu/SetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Apcu; + +use UnitTester; + +class SetOptionsCest +{ + /** + * Tests Phalcon\Cache\Backend\Apcu :: setOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendApcuSetOptions(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Apcu - setOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Apcu/StartCest.php b/tests/unit/Cache/Backend/Apcu/StartCest.php new file mode 100644 index 00000000000..b18b7043b9d --- /dev/null +++ b/tests/unit/Cache/Backend/Apcu/StartCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Apcu; + +use UnitTester; + +class StartCest +{ + /** + * Tests Phalcon\Cache\Backend\Apcu :: start() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendApcuStart(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Apcu - start()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Apcu/StopCest.php b/tests/unit/Cache/Backend/Apcu/StopCest.php new file mode 100644 index 00000000000..1751fd7f236 --- /dev/null +++ b/tests/unit/Cache/Backend/Apcu/StopCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Apcu; + +use UnitTester; + +class StopCest +{ + /** + * Tests Phalcon\Cache\Backend\Apcu :: stop() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendApcuStop(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Apcu - stop()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/ApcuCest.php b/tests/unit/Cache/Backend/ApcuCest.php index 812b426cb5f..4ee63e576f7 100644 --- a/tests/unit/Cache/Backend/ApcuCest.php +++ b/tests/unit/Cache/Backend/ApcuCest.php @@ -12,10 +12,10 @@ * Tests the \Phalcon\Cache\Backend\Apcu component * * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Cache\Backend + * @link http://www.phalconphp.com + * @author Andres Gutierrez + * @author Phalcon Team + * @package Phalcon\Test\Unit\Cache\Backend * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file LICENSE.txt @@ -28,11 +28,7 @@ class ApcuCest { public function _before(UnitTester $I) { - if (!extension_loaded('apcu')) { - throw new SkippedTestError( - 'Warning: APCu extension is not loaded' - ); - } + $I->checkExtensionIsLoaded('apcu'); if (!ini_get('apc.enabled') || (PHP_SAPI === 'cli' && !ini_get('apc.enable_cli'))) { throw new SkippedTestError( @@ -41,7 +37,7 @@ public function _before(UnitTester $I) } if (version_compare(phpversion('apcu'), '5.1.6', '=')) { - throw new SkippedTestError( + $I->skipTest( 'Warning: APCu v5.1.6 was broken. See: https://github.com/krakjoe/apcu/issues/203' ); } @@ -49,7 +45,7 @@ public function _before(UnitTester $I) public function _after(UnitTester $I) { - $I->flushApc(); +// $I->flushApc(); } public function increment(UnitTester $I) @@ -124,7 +120,7 @@ public function get(UnitTester $I) { $I->wantTo('Get data by using APCu as cache backend'); - $key = '_PHCA' . 'data-get'; + $key = '_PHCA' . 'data-get'; $data = [uniqid(), gethostname(), microtime(), get_include_path(), time()]; $cache = new Apcu(new Data(['lifetime' => 20])); @@ -146,7 +142,7 @@ public function save(UnitTester $I) { $I->wantTo('Save data by using APCu as cache backend'); - $key = '_PHCA' . 'data-save'; + $key = '_PHCA' . 'data-save'; $data = [uniqid(), gethostname(), microtime(), get_include_path(), time()]; $cache = new Apcu(new Data(['lifetime' => 20])); @@ -170,7 +166,7 @@ public function delete(UnitTester $I) 'Delete from cache by using APCu as cache backend' ); - $key = '_PHCA' . 'data-delete'; + $key = '_PHCA' . 'data-delete'; $cache = new Apcu(new Data(['lifetime' => 20])); $I->assertFalse($cache->delete('non-existent-keys')); @@ -209,7 +205,7 @@ public function flushByPrefix(UnitTester $I) $I->wantTo('Flush prefixed keys from cache by using APCu as cache backend'); $prefix = 'app-data'; - $cache = new Apcu(new Data(['lifetime' => 20]), ['prefix' => $prefix]); + $cache = new Apcu(new Data(['lifetime' => 20]), ['prefix' => $prefix]); $key1 = '_PHCA' . 'app-data' . 'data-flush-1'; $key2 = '_PHCA' . 'app-data' . 'data-flush-2'; @@ -244,7 +240,7 @@ public function prefixedQueryKeys(UnitTester $I) $I->wantTo('Get prefixed cache keys by using APCu as cache backend'); $prefix = 'app-data'; - $cache = new Apcu(new Data(['lifetime' => 20]), ['prefix' => $prefix]); + $cache = new Apcu(new Data(['lifetime' => 20]), ['prefix' => $prefix]); $key1 = '_PHCA' . 'app-data' . 'data-key-1'; $key2 = '_PHCA' . 'app-data' . 'data-key-2'; diff --git a/tests/unit/Cache/Backend/CacheCest.php b/tests/unit/Cache/Backend/CacheCest.php new file mode 100644 index 00000000000..50513768298 --- /dev/null +++ b/tests/unit/Cache/Backend/CacheCest.php @@ -0,0 +1,312 @@ + | + | Eduar Carvajal | + +------------------------------------------------------------------------+ +*/ + +namespace Phalcon\Test\Unit\Cache\Backend; + +use Phalcon\Cache\Backend\File; +use Phalcon\Cache\Backend\Memory; +use Phalcon\Cache\Backend\Mongo; +use Phalcon\Cache\Backend\Xcache; +use Phalcon\Cache\Frontend\Data; +use Phalcon\Cache\Frontend\Output; +use UnitTester; + +class CacheCest +{ + public function _before(UnitTester $I) + { + date_default_timezone_set('UTC'); + } + + public function testDataFileCacheIncrement(UnitTester $I) + { + $frontCache = new Data(); + + $cache = new File($frontCache, [ + 'cacheDir' => cacheFolder(), + ]); + $cache->delete('foo'); + $cache->save('foo', "1"); + $I->assertEquals(2, $cache->increment('foo')); + + $I->assertEquals($cache->get('foo'), 2); + + $I->assertEquals($cache->increment('foo', 5), 7); + } + + public function testDataFileCacheDecrement(UnitTester $I) + { + $frontCache = new Data(); + + $cache = new File($frontCache, [ + 'cacheDir' => cacheFolder(), + ]); + $cache->delete('foo'); + $cache->save('foo', "100"); + $I->assertEquals(99, $cache->decrement('foo')); + + $I->assertEquals(95, $cache->decrement('foo', 4)); + } + + /** + * @expectedException \Exception + */ + public function testDataFileCacheUnsafeKey(UnitTester $I) + { + $I->expectThrowable( + \Exception::class, + function () { + $frontCache = new Data(); + + $cache = new File($frontCache, [ + 'cacheDir' => cacheFolder(), + 'safekey' => true, + 'prefix' => '!@(##' // should throw an exception, only a-zA-Z09_-. are allowed + ]); + } + ); + } + + public function testCacheFileFlush(UnitTester $I) + { + $frontCache = new Data(['lifetime' => 10]); + + // File + $cache = new File($frontCache, [ + 'cacheDir' => cacheFolder(), + ]); + + $cache->save('data', "1"); + $cache->save('data2', "2"); + + $I->assertTrue($cache->flush()); + + $I->assertFileNotExists('unit-tests/cache/data'); + $I->assertFileNotExists('unit-tests/cache/data2'); + } + + public function testCacheMemoryFlush(UnitTester $I) + { + $frontCache = new Data(['lifetime' => 10]); + + // Memory + $cache = new Memory($frontCache); + + $cache->save('data', "1"); + $cache->save('data2', "2"); + + $I->assertTrue($cache->flush()); + + $I->assertFalse($cache->exists('data')); + $I->assertFalse($cache->exists('data2')); + } + + public function testOutputMongoCache(UnitTester $I) + { + + list($ready, $collection) = $this->_prepareMongo($I); + if (!$ready) { + return false; + } + + $time = date('H:i:s'); + + $frontCache = new Output([ + 'lifetime' => 3, + ]); + + $cache = new Mongo($frontCache, [ + 'server' => 'mongodb://' . DATA_MONGODB_HOST, + 'db' => 'phalcon_test', + 'collection' => 'caches', + ]); + + ob_start(); + + //First time cache + $content = $cache->start('test-output'); + $I->assertNull($content); + + echo $time; + + $cache->save(null, null, null, true); + + $obContent = ob_get_contents(); + ob_end_clean(); + + $I->assertEquals($time, $obContent); + + $document = $collection->findOne(['key' => 'test-output']); + $I->assertInternalType('array', $document); + $I->assertEquals($time, $document['data']); + + //Expect same cache + $content = $cache->start('test-output'); + $I->assertNotNull($content); + + $document = $collection->findOne(['key' => 'test-output']); + $I->assertInternalType('array', $document); + $I->assertEquals($time, $document['data']); + + //Query keys + $keys = $cache->queryKeys(); + $I->assertEquals($keys, [ + 0 => 'test-output', + ]); + + //Exists + $I->assertTrue($cache->exists('test-output')); + + //Delete entry from cache + $I->assertTrue($cache->delete('test-output')); + } + + protected function _prepareMongo(UnitTester $I) + { + $I->checkExtensionIsLoaded('mongo'); + + //remove existing + if (class_exists('MongoClient', false)) { + $mongo = new \MongoClient(); + } else { + $mongo = new \Mongo(); + } + $database = $mongo->phalcon_test; + $collection = $database->caches; + $collection->remove(); + + return [$mongo, $collection]; + } + + public function testDataMongoCache(UnitTester $I) + { + list($ready, $collection) = $this->_prepareMongo($I); + if (!$ready) { + return false; + } + + // Travis can be slow, especially when Valgrind is used + $frontCache = new Data(['lifetime' => 900]); + + $cache = new Mongo($frontCache, [ + 'mongo' => $ready, + 'db' => 'phalcon_test', + 'collection' => 'caches', + ]); + + $data = [1, 2, 3, 4, 5]; + + $cache->save('test-data', $data); + + $cachedContent = $cache->get('test-data'); + $I->assertEquals($cachedContent, $data); + + $cache->save('test-data', "sure, nothing interesting"); + + $cachedContent = $cache->get('test-data'); + $I->assertEquals($cachedContent, "sure, nothing interesting"); + + //Exists + $I->assertTrue($cache->exists('test-data')); + + $I->assertTrue($cache->delete('test-data')); + } + + public function testMongoIncrement(UnitTester $I) + { + list($ready, $collection) = $this->_prepareMongo($I); + if (!$ready) { + return false; + } + + $frontCache = new Data( + ['lifetime' => 200] + ); + + $cache = new Mongo($frontCache, [ + 'mongo' => $ready, + 'db' => 'phalcon_test', + 'collection' => 'caches', + ]); + + $cache->delete('foo'); + + $cache->save('foo', 1); + $I->assertEquals(1, $cache->get('foo')); + + $I->assertEquals(2, $cache->increment('foo')); + $I->assertEquals(4, $cache->increment('foo', 2)); + $I->assertEquals(4, $cache->get('foo')); + + $I->assertEquals(14, $cache->increment('foo', 10)); + } + + public function testMongoDecrement(UnitTester $I) + { + list($ready, $collection) = $this->_prepareMongo($I); + if (!$ready) { + return false; + } + + $frontCache = new Data([ + 'lifetime' => 200, + ]); + + $cache = new Mongo($frontCache, [ + 'mongo' => $ready, + 'db' => 'phalcon_test', + 'collection' => 'caches', + ]); + $cache->delete('foo'); + $cache->save('foo', 100); + + $I->assertEquals(99, $cache->decrement('foo')); + $I->assertEquals(89, $cache->decrement('foo', 10)); + $I->assertEquals(89, $cache->get('foo')); + $I->assertEquals(1, $cache->decrement('foo', 88)); + } + + public function testCacheMongoFlush(UnitTester $I) + { + // Mongo + list($ready, $collection) = $this->_prepareMongo($I); + if (!$ready) { + return false; + } + + $frontCache = new Data([ + 'lifetime' => 10, + ]); + + $cache = new Mongo($frontCache, [ + 'mongo' => $ready, + 'db' => 'phalcon_test', + 'collection' => 'caches', + ]); + + $cache->save('data', "1"); + $cache->save('data2', "2"); + + $I->assertTrue($cache->flush()); + + $I->assertFalse($cache->exists('data')); + $I->assertFalse($cache->exists('data2')); + } +} diff --git a/tests/unit/Cache/Backend/Factory/LoadCest.php b/tests/unit/Cache/Backend/Factory/LoadCest.php new file mode 100644 index 00000000000..813f5f4d563 --- /dev/null +++ b/tests/unit/Cache/Backend/Factory/LoadCest.php @@ -0,0 +1,83 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Factory; + +use Phalcon\Cache\Backend\Apcu; +use Phalcon\Cache\Backend\Factory; +use Phalcon\Cache\Frontend\Data; +use Phalcon\Test\Fixtures\Traits\FactoryTrait; +use UnitTester; + +class LoadCest +{ + use FactoryTrait; + + public function _before(UnitTester $I) + { + $this->init(); + } + + /** + * Tests Phalcon\Cache\Backend\Factory :: load() - Config + * + * @param UnitTester $I + * + * @author Wojciech Ślawski + * @since 2017-03-02 + */ + public function cacheBackendFactoryLoadConfig(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Factory - load() - Config"); + $options = $this->config->cache_backend; + $data = $options->toArray(); + $this->runTests($I, $options, $data); + } + + /** + * Runs the tests based on different configurations + * + * @param UnitTester $I + * @param Config|array $options + * @param array $data + */ + private function runTests(UnitTester $I, $options, array $data) + { + /** @var Apcu $cache */ + $cache = Factory::load($options); + + $class = Apcu::class; + $actual = $cache; + $I->assertInstanceOf($class, $actual); + + $class = Data::class; + $actual = $cache->getFrontend(); + $I->assertInstanceOf($class, $actual); + + $expected = array_intersect_assoc($cache->getOptions(), $data); + $actual = $cache->getOptions(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Cache\Backend\Factory :: load() - array + * + * @author Wojciech Ślawski + * @since 2017-03-02 + */ + public function cacheBackendFactoryLoadArray(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Factory - load() - array"); + $options = $this->arrayConfig["cache_backend"]; + $data = $options; + $this->runTests($I, $options, $data); + } +} diff --git a/tests/unit/Cache/Backend/FactoryTest.php b/tests/unit/Cache/Backend/FactoryTest.php deleted file mode 100644 index 6621850c778..00000000000 --- a/tests/unit/Cache/Backend/FactoryTest.php +++ /dev/null @@ -1,71 +0,0 @@ - - * @author Serghei Iakovlev - * @author Wojciech Ślawski - * @package Phalcon\Test\Unit\Annotations - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FactoryTest extends FactoryBase -{ - /** - * Test factory using Phalcon\Config - * - * @author Wojciech Ślawski - * @since 2017-03-02 - */ - public function testConfigFactory() - { - $this->specify( - "Factory using Phalcon\\Config doesn't work properly", - function () { - $options = $this->config->cache_backend; - /** @var Apc $cache */ - $cache = Factory::load($options); - expect($cache)->isInstanceOf(Apc::class); - expect(array_intersect_assoc($cache->getOptions(), $options->toArray()))->equals($cache->getOptions()); - expect($cache->getFrontend())->isInstanceOf(Data::class); - } - ); - } - - /** - * Test factory using array - * - * @author Wojciech Ślawski - * @since 2017-03-02 - */ - public function testArrayFactory() - { - $this->specify( - "Factory using array doesn't work properly", - function () { - $options = $this->arrayConfig["cache_backend"]; - /** @var Apc $cache */ - $cache = Factory::load($options); - expect($cache)->isInstanceOf(Apc::class); - expect(array_intersect_assoc($cache->getOptions(), $options))->equals($cache->getOptions()); - expect($cache->getFrontend())->isInstanceOf(Data::class); - } - ); - } -} diff --git a/tests/unit/Cache/Backend/File/ConstructCest.php b/tests/unit/Cache/Backend/File/ConstructCest.php new file mode 100644 index 00000000000..38bebda88f6 --- /dev/null +++ b/tests/unit/Cache/Backend/File/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Cache\Backend\File :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileConstruct(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/File/DecrementCest.php b/tests/unit/Cache/Backend/File/DecrementCest.php new file mode 100644 index 00000000000..f5f9d0f4efa --- /dev/null +++ b/tests/unit/Cache/Backend/File/DecrementCest.php @@ -0,0 +1,55 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use Phalcon\Cache\Exception; +use Phalcon\Test\Fixtures\Traits\Cache\FileTrait; +use UnitTester; + +class DecrementCest +{ + use FileTrait; + + /** + * Tests Phalcon\Cache\Backend\File :: decrement() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileDecrement(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - decrement()"); + $I->skipTest("Need implementation"); + } + + /** + * Tests Phalcon\Cache\Backend\File :: decrement() - non numeric + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-12-02 + */ + public function cacheBackendFileDecrementNonNumeric(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - decrement() - exception non numeric"); + $I->expectThrowable( + new Exception('The cache value is not numeric, therefore could not decrement it'), + function () { + $this->cache->save('foo', "a"); + $this->cache->decrement('foo', 1); + } + ); + } +} diff --git a/tests/unit/Cache/Backend/File/DeleteCest.php b/tests/unit/Cache/Backend/File/DeleteCest.php new file mode 100644 index 00000000000..d075916adb7 --- /dev/null +++ b/tests/unit/Cache/Backend/File/DeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use UnitTester; + +class DeleteCest +{ + /** + * Tests Phalcon\Cache\Backend\File :: delete() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileDelete(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - delete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/File/ExistsCest.php b/tests/unit/Cache/Backend/File/ExistsCest.php new file mode 100644 index 00000000000..e5a563223ac --- /dev/null +++ b/tests/unit/Cache/Backend/File/ExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use UnitTester; + +class ExistsCest +{ + /** + * Tests Phalcon\Cache\Backend\File :: exists() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileExists(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - exists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/File/FlushCest.php b/tests/unit/Cache/Backend/File/FlushCest.php new file mode 100644 index 00000000000..48bec8c96d6 --- /dev/null +++ b/tests/unit/Cache/Backend/File/FlushCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use UnitTester; + +class FlushCest +{ + /** + * Tests Phalcon\Cache\Backend\File :: flush() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileFlush(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - flush()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/File/GetCest.php b/tests/unit/Cache/Backend/File/GetCest.php new file mode 100644 index 00000000000..a8f3778a4be --- /dev/null +++ b/tests/unit/Cache/Backend/File/GetCest.php @@ -0,0 +1,77 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use Phalcon\Cache\Exception; +use Phalcon\Test\Fixtures\Traits\Cache\FileTrait; +use UnitTester; + +class GetCest +{ + use FileTrait; + + /** + * Tests Phalcon\Cache\Backend\File :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileGet(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - get()"); + $I->skipTest("Need implementation"); + } + + /** + * Tests Phalcon\Cache\Backend\File :: get() - exception negative lifetime + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-12-02 + */ + public function cacheBackendFileGetNegativeLifetime(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - get() - exception negative lifetime"); + $I->expectThrowable( + new Exception('The lifetime must be at least 1 second'), + function () { + $this->cache->save('foo', "1"); + $this->cache->get('foo', -1); + } + ); + } + + /** + * Tests Phalcon\Cache\Backend\File :: get() - non existent + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-12-02 + */ + public function cacheBackendFileGetNonExistent(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - get() - non existent"); + /** + * Just in case + */ + if (true === $this->cache->exists('foo')) { + $this->cache->delete('foo'); + } + + $actual = $this->cache->get('foo'); + $I->assertNull($actual); + } +} diff --git a/tests/unit/Cache/Backend/File/GetFrontendCest.php b/tests/unit/Cache/Backend/File/GetFrontendCest.php new file mode 100644 index 00000000000..d79e6ab1565 --- /dev/null +++ b/tests/unit/Cache/Backend/File/GetFrontendCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use UnitTester; + +class GetFrontendCest +{ + /** + * Tests Phalcon\Cache\Backend\File :: getFrontend() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileGetFrontend(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - getFrontend()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/File/GetKeyCest.php b/tests/unit/Cache/Backend/File/GetKeyCest.php new file mode 100644 index 00000000000..a6b7df5329d --- /dev/null +++ b/tests/unit/Cache/Backend/File/GetKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use UnitTester; + +class GetKeyCest +{ + /** + * Tests Phalcon\Cache\Backend\File :: getKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileGetKey(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - getKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/File/GetLastKeyCest.php b/tests/unit/Cache/Backend/File/GetLastKeyCest.php new file mode 100644 index 00000000000..0fd0223e4bf --- /dev/null +++ b/tests/unit/Cache/Backend/File/GetLastKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use UnitTester; + +class GetLastKeyCest +{ + /** + * Tests Phalcon\Cache\Backend\File :: getLastKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileGetLastKey(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - getLastKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/File/GetLifetimeCest.php b/tests/unit/Cache/Backend/File/GetLifetimeCest.php new file mode 100644 index 00000000000..048c8e42a94 --- /dev/null +++ b/tests/unit/Cache/Backend/File/GetLifetimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use UnitTester; + +class GetLifetimeCest +{ + /** + * Tests Phalcon\Cache\Backend\File :: getLifetime() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileGetLifetime(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - getLifetime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/File/GetOptionsCest.php b/tests/unit/Cache/Backend/File/GetOptionsCest.php new file mode 100644 index 00000000000..57e46efac2b --- /dev/null +++ b/tests/unit/Cache/Backend/File/GetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use UnitTester; + +class GetOptionsCest +{ + /** + * Tests Phalcon\Cache\Backend\File :: getOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileGetOptions(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - getOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/File/IncrementCest.php b/tests/unit/Cache/Backend/File/IncrementCest.php new file mode 100644 index 00000000000..8b012b7194a --- /dev/null +++ b/tests/unit/Cache/Backend/File/IncrementCest.php @@ -0,0 +1,56 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use Phalcon\Cache\Exception; +use Phalcon\Test\Fixtures\Traits\Cache\FileTrait; +use UnitTester; + +class IncrementCest +{ + use FileTrait; + + /** + * Tests Phalcon\Cache\Backend\File :: increment() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileIncrement(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - increment()"); + $I->skipTest("Need implementation"); + } + + + /** + * Tests Phalcon\Cache\Backend\File :: increment() - non numeric + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-12-02 + */ + public function cacheBackendFileIncrementNonNumeric(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - increment() - exception non numeric"); + $I->expectThrowable( + new Exception('The cache value is not numeric, therefore could not be incremented'), + function () { + $this->cache->save('foo', "a"); + $this->cache->increment('foo', 1); + } + ); + } +} diff --git a/tests/unit/Cache/Backend/File/IsFreshCest.php b/tests/unit/Cache/Backend/File/IsFreshCest.php new file mode 100644 index 00000000000..f2f6f14997e --- /dev/null +++ b/tests/unit/Cache/Backend/File/IsFreshCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use UnitTester; + +class IsFreshCest +{ + /** + * Tests Phalcon\Cache\Backend\File :: isFresh() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileIsFresh(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - isFresh()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/File/IsStartedCest.php b/tests/unit/Cache/Backend/File/IsStartedCest.php new file mode 100644 index 00000000000..db582e80a59 --- /dev/null +++ b/tests/unit/Cache/Backend/File/IsStartedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use UnitTester; + +class IsStartedCest +{ + /** + * Tests Phalcon\Cache\Backend\File :: isStarted() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileIsStarted(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - isStarted()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/File/QueryKeysCest.php b/tests/unit/Cache/Backend/File/QueryKeysCest.php new file mode 100644 index 00000000000..b409c3bc6f0 --- /dev/null +++ b/tests/unit/Cache/Backend/File/QueryKeysCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use UnitTester; + +class QueryKeysCest +{ + /** + * Tests Phalcon\Cache\Backend\File :: queryKeys() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileQueryKeys(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - queryKeys()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/File/SaveCest.php b/tests/unit/Cache/Backend/File/SaveCest.php new file mode 100644 index 00000000000..aabf733092e --- /dev/null +++ b/tests/unit/Cache/Backend/File/SaveCest.php @@ -0,0 +1,54 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use Phalcon\Cache\Exception; +use Phalcon\Test\Fixtures\Traits\Cache\FileTrait; +use UnitTester; + +class SaveCest +{ + use FileTrait; + + /** + * Tests Phalcon\Cache\Backend\File :: save() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileSave(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - save()"); + $I->skipTest("Need implementation"); + } + + /** + * Tests Phalcon\Cache\Backend\File :: save() - exception negative lifetime + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-12-02 + */ + public function cacheBackendFileSaveNegativeLifetime(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - save() - exception negative lifetime"); + $I->expectThrowable( + new \Exception('A non-numeric value encountered', 2), + function () { + $this->cache->save('foo', "a" - 1); + } + ); + } +} diff --git a/tests/unit/Cache/Backend/File/SetFrontendCest.php b/tests/unit/Cache/Backend/File/SetFrontendCest.php new file mode 100644 index 00000000000..19e0125e20c --- /dev/null +++ b/tests/unit/Cache/Backend/File/SetFrontendCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use UnitTester; + +class SetFrontendCest +{ + /** + * Tests Phalcon\Cache\Backend\File :: setFrontend() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileSetFrontend(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - setFrontend()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/File/SetLastKeyCest.php b/tests/unit/Cache/Backend/File/SetLastKeyCest.php new file mode 100644 index 00000000000..d8474a53388 --- /dev/null +++ b/tests/unit/Cache/Backend/File/SetLastKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use UnitTester; + +class SetLastKeyCest +{ + /** + * Tests Phalcon\Cache\Backend\File :: setLastKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileSetLastKey(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - setLastKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/File/SetOptionsCest.php b/tests/unit/Cache/Backend/File/SetOptionsCest.php new file mode 100644 index 00000000000..5c039035f17 --- /dev/null +++ b/tests/unit/Cache/Backend/File/SetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use UnitTester; + +class SetOptionsCest +{ + /** + * Tests Phalcon\Cache\Backend\File :: setOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileSetOptions(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - setOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/File/StartCest.php b/tests/unit/Cache/Backend/File/StartCest.php new file mode 100644 index 00000000000..a4dad92b081 --- /dev/null +++ b/tests/unit/Cache/Backend/File/StartCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use UnitTester; + +class StartCest +{ + /** + * Tests Phalcon\Cache\Backend\File :: start() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileStart(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - start()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/File/StopCest.php b/tests/unit/Cache/Backend/File/StopCest.php new file mode 100644 index 00000000000..e6d35a0bd83 --- /dev/null +++ b/tests/unit/Cache/Backend/File/StopCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use UnitTester; + +class StopCest +{ + /** + * Tests Phalcon\Cache\Backend\File :: stop() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileStop(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - stop()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/File/UseSafeKeyCest.php b/tests/unit/Cache/Backend/File/UseSafeKeyCest.php new file mode 100644 index 00000000000..abd2a4d0667 --- /dev/null +++ b/tests/unit/Cache/Backend/File/UseSafeKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\File; + +use UnitTester; + +class UseSafeKeyCest +{ + /** + * Tests Phalcon\Cache\Backend\File :: useSafeKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendFileUseSafeKey(UnitTester $I) + { + $I->wantToTest("Cache\Backend\File - useSafeKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/FileCest.php b/tests/unit/Cache/Backend/FileCest.php index 6f21bdf207f..cc63bfa7dc8 100644 --- a/tests/unit/Cache/Backend/FileCest.php +++ b/tests/unit/Cache/Backend/FileCest.php @@ -2,22 +2,22 @@ namespace Phalcon\Test\Unit\Cache\Backend; -use UnitTester; use Codeception\Example; use Phalcon\Cache\Backend\File; use Phalcon\Cache\Frontend\Data; -use Phalcon\Cache\Frontend\Output; use Phalcon\Cache\Frontend\Igbinary; +use Phalcon\Cache\Frontend\Output; +use UnitTester; /** * Phalcon\Test\Unit\Cache\Backend\FileCest * Tests the \Phalcon\Cache\Backend\File component * * @copyright (c) 2011-2017 Phalcon Team - * @link https://www.phalconphp.com - * @author Andres Gutierrez - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Cache\Backend + * @link https://www.phalconphp.com + * @author Andres Gutierrez + * @author Phalcon Team + * @package Phalcon\Test\Unit\Cache\Backend * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file LICENSE.txt @@ -31,8 +31,9 @@ class FileCest public function checkFreshState(UnitTester $I) { $I->wantTo("Check fresh state by using file cache as backend"); + $I->skipTest('TODO - Check me'); - $cache = new File(new Output(['lifetime' => 2]), ['cacheDir' => PATH_CACHE]); + $cache = new File(new Output(['lifetime' => 2]), ['cacheDir' => cacheFolder()]); $I->assertFalse($cache->isStarted()); $I->assertFalse($cache->isFresh()); @@ -59,21 +60,22 @@ public function checkFreshState(UnitTester $I) $cache->start('start-keyname'); $I->assertTrue($cache->isFresh()); - $I->amInPath(PATH_CACHE); - $I->deleteFile('start-keyname'); + $I->amInPath(cacheFolder()); + $I->safeDeleteFile('start-keyname'); } public function outputFrontend(UnitTester $I) { $I->wantTo("Use File cache with Output frontend"); + $I->skipTest('TODO - Check me'); for ($i = 0; $i < 2; $i++) { $time = date('H:i:s'); $frontCache = new Output(['lifetime' => 2]); - $cache = new File($frontCache, [ - 'cacheDir' => PATH_CACHE, - 'prefix' => 'unit_' + $cache = new File($frontCache, [ + 'cacheDir' => cacheFolder(), + 'prefix' => 'unit_', ]); // on the second run set useSafeKey to true to test the compatibility toggle @@ -100,7 +102,7 @@ public function outputFrontend(UnitTester $I) ob_end_clean(); $I->assertEquals($time, $obContent); - $I->amInPath(PATH_CACHE); + $I->amInPath(cacheFolder()); $I->seeFileFound('unit_' . $cache->getKey('test_output')); // Same cache @@ -156,12 +158,13 @@ public function outputFrontend(UnitTester $I) /** * @param UnitTester $I - * @param Example $example + * @param Example $example * * @dataprovider frontendProvider */ public function shouldWorkWithAnyFrontend(UnitTester $I, Example $example) { + $I->skipTest('TODO - Check me'); $I->haveFrontendAdapter($example['frontend'], ['prefix' => $example['prefix']]); $I->dontSeeCacheStarted(); @@ -185,7 +188,7 @@ protected function frontendProvider() 'nothing interesting', 'something interesting', [ - 'null' => null, + 'null' => null, 'array' => [1, 2, 3, 4 => 5], 'string', 123.45, @@ -207,7 +210,7 @@ protected function frontendProvider() 'nothing interesting', 'something interesting', [ - 'null' => null, + 'null' => null, 'array' => [1, 2, 3, 4 => 5], 'string', 123.45, diff --git a/tests/unit/Cache/Backend/Libmemcached/ConnectCest.php b/tests/unit/Cache/Backend/Libmemcached/ConnectCest.php new file mode 100644 index 00000000000..ac03957f864 --- /dev/null +++ b/tests/unit/Cache/Backend/Libmemcached/ConnectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Libmemcached; + +use UnitTester; + +class ConnectCest +{ + /** + * Tests Phalcon\Cache\Backend\Libmemcached :: _connect() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendLibmemcachedConnect(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Libmemcached - _connect()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Libmemcached/ConstructCest.php b/tests/unit/Cache/Backend/Libmemcached/ConstructCest.php new file mode 100644 index 00000000000..ddd375300b5 --- /dev/null +++ b/tests/unit/Cache/Backend/Libmemcached/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Libmemcached; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Cache\Backend\Libmemcached :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendLibmemcachedConstruct(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Libmemcached - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Libmemcached/DecrementCest.php b/tests/unit/Cache/Backend/Libmemcached/DecrementCest.php new file mode 100644 index 00000000000..7777d92c7fc --- /dev/null +++ b/tests/unit/Cache/Backend/Libmemcached/DecrementCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Libmemcached; + +use UnitTester; + +class DecrementCest +{ + /** + * Tests Phalcon\Cache\Backend\Libmemcached :: decrement() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendLibmemcachedDecrement(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Libmemcached - decrement()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Libmemcached/DeleteCest.php b/tests/unit/Cache/Backend/Libmemcached/DeleteCest.php new file mode 100644 index 00000000000..2a172081f29 --- /dev/null +++ b/tests/unit/Cache/Backend/Libmemcached/DeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Libmemcached; + +use UnitTester; + +class DeleteCest +{ + /** + * Tests Phalcon\Cache\Backend\Libmemcached :: delete() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendLibmemcachedDelete(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Libmemcached - delete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Libmemcached/ExistsCest.php b/tests/unit/Cache/Backend/Libmemcached/ExistsCest.php new file mode 100644 index 00000000000..c813a06ce3b --- /dev/null +++ b/tests/unit/Cache/Backend/Libmemcached/ExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Libmemcached; + +use UnitTester; + +class ExistsCest +{ + /** + * Tests Phalcon\Cache\Backend\Libmemcached :: exists() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendLibmemcachedExists(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Libmemcached - exists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Libmemcached/FlushCest.php b/tests/unit/Cache/Backend/Libmemcached/FlushCest.php new file mode 100644 index 00000000000..3d277ce33b5 --- /dev/null +++ b/tests/unit/Cache/Backend/Libmemcached/FlushCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Libmemcached; + +use UnitTester; + +class FlushCest +{ + /** + * Tests Phalcon\Cache\Backend\Libmemcached :: flush() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendLibmemcachedFlush(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Libmemcached - flush()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Libmemcached/GetCest.php b/tests/unit/Cache/Backend/Libmemcached/GetCest.php new file mode 100644 index 00000000000..68aaff38631 --- /dev/null +++ b/tests/unit/Cache/Backend/Libmemcached/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Libmemcached; + +use UnitTester; + +class GetCest +{ + /** + * Tests Phalcon\Cache\Backend\Libmemcached :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendLibmemcachedGet(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Libmemcached - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Libmemcached/GetFrontendCest.php b/tests/unit/Cache/Backend/Libmemcached/GetFrontendCest.php new file mode 100644 index 00000000000..caafdd7423f --- /dev/null +++ b/tests/unit/Cache/Backend/Libmemcached/GetFrontendCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Libmemcached; + +use UnitTester; + +class GetFrontendCest +{ + /** + * Tests Phalcon\Cache\Backend\Libmemcached :: getFrontend() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendLibmemcachedGetFrontend(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Libmemcached - getFrontend()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Libmemcached/GetLastKeyCest.php b/tests/unit/Cache/Backend/Libmemcached/GetLastKeyCest.php new file mode 100644 index 00000000000..3724c21ab25 --- /dev/null +++ b/tests/unit/Cache/Backend/Libmemcached/GetLastKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Libmemcached; + +use UnitTester; + +class GetLastKeyCest +{ + /** + * Tests Phalcon\Cache\Backend\Libmemcached :: getLastKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendLibmemcachedGetLastKey(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Libmemcached - getLastKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Libmemcached/GetLifetimeCest.php b/tests/unit/Cache/Backend/Libmemcached/GetLifetimeCest.php new file mode 100644 index 00000000000..efabdb89fb0 --- /dev/null +++ b/tests/unit/Cache/Backend/Libmemcached/GetLifetimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Libmemcached; + +use UnitTester; + +class GetLifetimeCest +{ + /** + * Tests Phalcon\Cache\Backend\Libmemcached :: getLifetime() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendLibmemcachedGetLifetime(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Libmemcached - getLifetime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Libmemcached/GetOptionsCest.php b/tests/unit/Cache/Backend/Libmemcached/GetOptionsCest.php new file mode 100644 index 00000000000..a9e4bac1a42 --- /dev/null +++ b/tests/unit/Cache/Backend/Libmemcached/GetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Libmemcached; + +use UnitTester; + +class GetOptionsCest +{ + /** + * Tests Phalcon\Cache\Backend\Libmemcached :: getOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendLibmemcachedGetOptions(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Libmemcached - getOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Libmemcached/IncrementCest.php b/tests/unit/Cache/Backend/Libmemcached/IncrementCest.php new file mode 100644 index 00000000000..c56751fb81c --- /dev/null +++ b/tests/unit/Cache/Backend/Libmemcached/IncrementCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Libmemcached; + +use UnitTester; + +class IncrementCest +{ + /** + * Tests Phalcon\Cache\Backend\Libmemcached :: increment() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendLibmemcachedIncrement(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Libmemcached - increment()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Libmemcached/IsFreshCest.php b/tests/unit/Cache/Backend/Libmemcached/IsFreshCest.php new file mode 100644 index 00000000000..ac09ff8d869 --- /dev/null +++ b/tests/unit/Cache/Backend/Libmemcached/IsFreshCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Libmemcached; + +use UnitTester; + +class IsFreshCest +{ + /** + * Tests Phalcon\Cache\Backend\Libmemcached :: isFresh() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendLibmemcachedIsFresh(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Libmemcached - isFresh()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Libmemcached/IsStartedCest.php b/tests/unit/Cache/Backend/Libmemcached/IsStartedCest.php new file mode 100644 index 00000000000..5e258bf5dea --- /dev/null +++ b/tests/unit/Cache/Backend/Libmemcached/IsStartedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Libmemcached; + +use UnitTester; + +class IsStartedCest +{ + /** + * Tests Phalcon\Cache\Backend\Libmemcached :: isStarted() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendLibmemcachedIsStarted(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Libmemcached - isStarted()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Libmemcached/QueryKeysCest.php b/tests/unit/Cache/Backend/Libmemcached/QueryKeysCest.php new file mode 100644 index 00000000000..fd60130e951 --- /dev/null +++ b/tests/unit/Cache/Backend/Libmemcached/QueryKeysCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Libmemcached; + +use UnitTester; + +class QueryKeysCest +{ + /** + * Tests Phalcon\Cache\Backend\Libmemcached :: queryKeys() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendLibmemcachedQueryKeys(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Libmemcached - queryKeys()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Libmemcached/SaveCest.php b/tests/unit/Cache/Backend/Libmemcached/SaveCest.php new file mode 100644 index 00000000000..faa3abc3fbc --- /dev/null +++ b/tests/unit/Cache/Backend/Libmemcached/SaveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Libmemcached; + +use UnitTester; + +class SaveCest +{ + /** + * Tests Phalcon\Cache\Backend\Libmemcached :: save() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendLibmemcachedSave(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Libmemcached - save()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Libmemcached/SetFrontendCest.php b/tests/unit/Cache/Backend/Libmemcached/SetFrontendCest.php new file mode 100644 index 00000000000..cbb2df1c497 --- /dev/null +++ b/tests/unit/Cache/Backend/Libmemcached/SetFrontendCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Libmemcached; + +use UnitTester; + +class SetFrontendCest +{ + /** + * Tests Phalcon\Cache\Backend\Libmemcached :: setFrontend() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendLibmemcachedSetFrontend(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Libmemcached - setFrontend()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Libmemcached/SetLastKeyCest.php b/tests/unit/Cache/Backend/Libmemcached/SetLastKeyCest.php new file mode 100644 index 00000000000..403c08bc5f0 --- /dev/null +++ b/tests/unit/Cache/Backend/Libmemcached/SetLastKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Libmemcached; + +use UnitTester; + +class SetLastKeyCest +{ + /** + * Tests Phalcon\Cache\Backend\Libmemcached :: setLastKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendLibmemcachedSetLastKey(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Libmemcached - setLastKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Libmemcached/SetOptionsCest.php b/tests/unit/Cache/Backend/Libmemcached/SetOptionsCest.php new file mode 100644 index 00000000000..1b47d62dac1 --- /dev/null +++ b/tests/unit/Cache/Backend/Libmemcached/SetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Libmemcached; + +use UnitTester; + +class SetOptionsCest +{ + /** + * Tests Phalcon\Cache\Backend\Libmemcached :: setOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendLibmemcachedSetOptions(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Libmemcached - setOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Libmemcached/StartCest.php b/tests/unit/Cache/Backend/Libmemcached/StartCest.php new file mode 100644 index 00000000000..1beb1d4daef --- /dev/null +++ b/tests/unit/Cache/Backend/Libmemcached/StartCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Libmemcached; + +use UnitTester; + +class StartCest +{ + /** + * Tests Phalcon\Cache\Backend\Libmemcached :: start() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendLibmemcachedStart(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Libmemcached - start()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Libmemcached/StopCest.php b/tests/unit/Cache/Backend/Libmemcached/StopCest.php new file mode 100644 index 00000000000..f44e75e1002 --- /dev/null +++ b/tests/unit/Cache/Backend/Libmemcached/StopCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Libmemcached; + +use UnitTester; + +class StopCest +{ + /** + * Tests Phalcon\Cache\Backend\Libmemcached :: stop() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendLibmemcachedStop(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Libmemcached - stop()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/LibmemcachedCest.php b/tests/unit/Cache/Backend/LibmemcachedCest.php index c0722b000ee..fd623fb546c 100644 --- a/tests/unit/Cache/Backend/LibmemcachedCest.php +++ b/tests/unit/Cache/Backend/LibmemcachedCest.php @@ -2,22 +2,21 @@ namespace Phalcon\Test\Unit\Cache\Backend; -use UnitTester; +use Phalcon\Cache\Backend\Libmemcached; use Phalcon\Cache\Exception; use Phalcon\Cache\Frontend\Data; use Phalcon\Cache\Frontend\Output; -use Phalcon\Cache\Backend\Libmemcached; -use PHPUnit\Framework\SkippedTestError; +use UnitTester; /** * \Phalcon\Test\Unit\Cache\Backend\LibmemcachedCest * Tests the \Phalcon\Cache\Backend\Libmemcached component * * @copyright (c) 2011-2017 Phalcon Team - * @link https://www.phalconphp.com - * @author Andres Gutierrez - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Cache\Backend + * @link https://www.phalconphp.com + * @author Andres Gutierrez + * @author Phalcon Team + * @package Phalcon\Test\Unit\Cache\Backend * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file LICENSE.txt @@ -30,18 +29,14 @@ class LibmemcachedCest { public function _before(UnitTester $I) { - if (!extension_loaded('memcached')) { - throw new SkippedTestError( - 'Warning: memcached extension is not loaded' - ); - } + $I->checkExtensionIsLoaded('memcached'); } public function increment(UnitTester $I) { $I->wantTo('Increment counter by using Libmemcached as cache backend'); - $key = 'increment'; + $key = 'increment'; $cache = $this->getDataCache(null, 20); $I->dontSeeInLibmemcached($key); @@ -57,11 +52,31 @@ public function increment(UnitTester $I) $I->seeInLibmemcached($key, 14); } + protected function getDataCache($statsKey = null, $ttl = 0) + { + $config = [ + 'client' => [], + 'servers' => [ + [ + 'host' => env('DATA_MEMCACHED_HOST', '127.0.0.1'), + 'port' => env('DATA_MEMCACHED_PORT', 11211), + 'weight' => env('DATA_MEMCACHED_WEIGHT', 0), + ], + ], + ]; + + if ($statsKey !== null) { + $config['statsKey'] = $statsKey; + } + + return new Libmemcached(new Data(['lifetime' => $ttl]), $config); + } + public function decrement(UnitTester $I) { $I->wantTo('Decrement counter by using Libmemcached as cache backend'); - $key = 'decrement'; + $key = 'decrement'; $cache = $this->getDataCache(null, 20); $I->dontSeeInLibmemcached($key); @@ -81,7 +96,7 @@ public function get(UnitTester $I) { $I->wantTo('Get data by using Libmemcached as cache backend'); - $key = 'data-get'; + $key = 'data-get'; $data = [uniqid(), gethostname(), microtime(), get_include_path(), time()]; $cache = $this->getDataCache(null, 20); @@ -107,7 +122,7 @@ public function shouldGetTheSameValueRegardlessOfTheNumberOfRequests(UnitTester { $I->wantTo('Get the same data from the Memcache regardless of the number of requests'); - $key = 'libmemcached-data-get-test'; + $key = 'libmemcached-data-get-test'; $data = 'this is a test'; $cache = $this->getDataCache(null, 20); @@ -130,7 +145,7 @@ public function save(UnitTester $I) { $I->wantTo('Save data by using Libmemcached as cache backend'); - $key = 'data-save'; + $key = 'data-save'; $data = [uniqid(), gethostname(), microtime(), get_include_path(), time()]; $cache = $this->getDataCache(null, 20); @@ -170,7 +185,7 @@ public function flush(UnitTester $I) $lifetime = 20; $statsKey = '_PHCM'; - $cache = $this->getDataCache($statsKey, $lifetime); + $cache = $this->getDataCache($statsKey, $lifetime); $I->haveInLibmemcached('data-flush-1', 1); $I->haveInLibmemcached('data-flush-2', 2); @@ -196,7 +211,7 @@ public function emptyQueryKeys(UnitTester $I) $lifetime = 20; $statsKey = '_PHCM'; - $cache = $this->getDataCache($statsKey, $lifetime); + $cache = $this->getDataCache($statsKey, $lifetime); $I->assertEquals([], $cache->queryKeys()); } @@ -207,7 +222,7 @@ public function queryKeys(UnitTester $I) $lifetime = 20; $statsKey = '_PHCM'; - $cache = $this->getDataCache($statsKey, $lifetime); + $cache = $this->getDataCache($statsKey, $lifetime); $I->haveInLibmemcached("a", 1); $I->haveInLibmemcached("b", 2); @@ -231,7 +246,7 @@ public function prefixedQueryKeys(UnitTester $I) $lifetime = 20; $statsKey = '_PHCM'; - $cache = $this->getDataCache($statsKey, $lifetime); + $cache = $this->getDataCache($statsKey, $lifetime); $I->haveInLibmemcached('prefix1-myKey', ['a', 'b']); $I->haveInLibmemcached('prefix2-myKey', ['x', 'z']); @@ -266,9 +281,9 @@ public function output(UnitTester $I) { $I->wantTo('Cache output fragments by using Libmemcached as cache backend'); - $time = date('H:i:s'); + $time = date('H:i:s'); $lifetime = 2; - $cache = $this->getOutputCache($lifetime); + $cache = $this->getOutputCache($lifetime); ob_start(); @@ -299,36 +314,16 @@ public function output(UnitTester $I) $I->dontSeeInLibmemcached('test-output'); } - protected function getDataCache($statsKey = null, $ttl = 0) - { - $config = [ - 'client' => [], - 'servers' => [ - [ - 'host' => env('TEST_MC_HOST', '127.0.0.1'), - 'port' => env('TEST_MC_PORT', 11211), - 'weight' => env('TEST_MC_WEIGHT', 1), - ] - ], - ]; - - if ($statsKey !== null) { - $config['statsKey'] = $statsKey; - } - - return new Libmemcached(new Data(['lifetime' => $ttl]), $config); - } - protected function getOutputCache($ttl = 0) { $config = [ 'client' => [], 'servers' => [ [ - 'host' => env('TEST_MC_HOST', '127.0.0.1'), - 'port' => env('TEST_MC_PORT', 11211), - 'weight' => env('TEST_MC_WEIGHT', 1), - ] + 'host' => env('DATA_MEMCACHED_HOST', '127.0.0.1'), + 'port' => env('DATA_MEMCACHED_HOST', 11211), + 'weight' => env('DATA_MEMCACHED_WEIGHT', 0), + ], ], ]; diff --git a/tests/unit/Cache/Backend/Memory/ConstructCest.php b/tests/unit/Cache/Backend/Memory/ConstructCest.php new file mode 100644 index 00000000000..439b4c79c51 --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemoryConstruct(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Memory/DecrementCest.php b/tests/unit/Cache/Backend/Memory/DecrementCest.php new file mode 100644 index 00000000000..83456dac65d --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/DecrementCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class DecrementCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: decrement() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemoryDecrement(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - decrement()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Memory/DeleteCest.php b/tests/unit/Cache/Backend/Memory/DeleteCest.php new file mode 100644 index 00000000000..1359b56ee96 --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/DeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class DeleteCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: delete() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemoryDelete(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - delete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Memory/ExistsCest.php b/tests/unit/Cache/Backend/Memory/ExistsCest.php new file mode 100644 index 00000000000..31237addeb8 --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/ExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class ExistsCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: exists() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemoryExists(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - exists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Memory/FlushCest.php b/tests/unit/Cache/Backend/Memory/FlushCest.php new file mode 100644 index 00000000000..17c18f35f4e --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/FlushCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class FlushCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: flush() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemoryFlush(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - flush()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Memory/GetCest.php b/tests/unit/Cache/Backend/Memory/GetCest.php new file mode 100644 index 00000000000..22f29f1e766 --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class GetCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemoryGet(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Memory/GetFrontendCest.php b/tests/unit/Cache/Backend/Memory/GetFrontendCest.php new file mode 100644 index 00000000000..b4e678e8940 --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/GetFrontendCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class GetFrontendCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: getFrontend() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemoryGetFrontend(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - getFrontend()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Memory/GetLastKeyCest.php b/tests/unit/Cache/Backend/Memory/GetLastKeyCest.php new file mode 100644 index 00000000000..b22aeb7df38 --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/GetLastKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class GetLastKeyCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: getLastKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemoryGetLastKey(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - getLastKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Memory/GetLifetimeCest.php b/tests/unit/Cache/Backend/Memory/GetLifetimeCest.php new file mode 100644 index 00000000000..ec908d65279 --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/GetLifetimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class GetLifetimeCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: getLifetime() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemoryGetLifetime(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - getLifetime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Memory/GetOptionsCest.php b/tests/unit/Cache/Backend/Memory/GetOptionsCest.php new file mode 100644 index 00000000000..f3eeb628e1e --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/GetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class GetOptionsCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: getOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemoryGetOptions(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - getOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Memory/IncrementCest.php b/tests/unit/Cache/Backend/Memory/IncrementCest.php new file mode 100644 index 00000000000..cd6f684d572 --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/IncrementCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class IncrementCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: increment() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemoryIncrement(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - increment()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Memory/IsFreshCest.php b/tests/unit/Cache/Backend/Memory/IsFreshCest.php new file mode 100644 index 00000000000..b0a9d0775b4 --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/IsFreshCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class IsFreshCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: isFresh() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemoryIsFresh(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - isFresh()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Memory/IsStartedCest.php b/tests/unit/Cache/Backend/Memory/IsStartedCest.php new file mode 100644 index 00000000000..d312696d0ff --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/IsStartedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class IsStartedCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: isStarted() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemoryIsStarted(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - isStarted()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Memory/QueryKeysCest.php b/tests/unit/Cache/Backend/Memory/QueryKeysCest.php new file mode 100644 index 00000000000..676fcb23467 --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/QueryKeysCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class QueryKeysCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: queryKeys() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemoryQueryKeys(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - queryKeys()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Memory/SaveCest.php b/tests/unit/Cache/Backend/Memory/SaveCest.php new file mode 100644 index 00000000000..d4fd750e459 --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/SaveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class SaveCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: save() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemorySave(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - save()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Memory/SerializeCest.php b/tests/unit/Cache/Backend/Memory/SerializeCest.php new file mode 100644 index 00000000000..bc1a907bc30 --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/SerializeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class SerializeCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: serialize() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemorySerialize(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - serialize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Memory/SetFrontendCest.php b/tests/unit/Cache/Backend/Memory/SetFrontendCest.php new file mode 100644 index 00000000000..1ebdabd7582 --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/SetFrontendCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class SetFrontendCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: setFrontend() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemorySetFrontend(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - setFrontend()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Memory/SetLastKeyCest.php b/tests/unit/Cache/Backend/Memory/SetLastKeyCest.php new file mode 100644 index 00000000000..f52a2db7581 --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/SetLastKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class SetLastKeyCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: setLastKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemorySetLastKey(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - setLastKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Memory/SetOptionsCest.php b/tests/unit/Cache/Backend/Memory/SetOptionsCest.php new file mode 100644 index 00000000000..76ad51062c9 --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/SetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class SetOptionsCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: setOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemorySetOptions(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - setOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Memory/StartCest.php b/tests/unit/Cache/Backend/Memory/StartCest.php new file mode 100644 index 00000000000..f0cc5a9750a --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/StartCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class StartCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: start() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemoryStart(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - start()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Memory/StopCest.php b/tests/unit/Cache/Backend/Memory/StopCest.php new file mode 100644 index 00000000000..fb720bd2d78 --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/StopCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class StopCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: stop() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemoryStop(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - stop()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Memory/UnserializeCest.php b/tests/unit/Cache/Backend/Memory/UnserializeCest.php new file mode 100644 index 00000000000..1ab6cc9d14c --- /dev/null +++ b/tests/unit/Cache/Backend/Memory/UnserializeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Memory; + +use UnitTester; + +class UnserializeCest +{ + /** + * Tests Phalcon\Cache\Backend\Memory :: unserialize() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMemoryUnserialize(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Memory - unserialize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/MemoryCest.php b/tests/unit/Cache/Backend/MemoryCest.php index 7e51f887212..7d965530c7a 100644 --- a/tests/unit/Cache/Backend/MemoryCest.php +++ b/tests/unit/Cache/Backend/MemoryCest.php @@ -2,20 +2,20 @@ namespace Phalcon\Test\Unit\Cache\Backend; -use UnitTester; +use Phalcon\Cache\Backend\Memory; use Phalcon\Cache\Frontend\Data; use Phalcon\Cache\Frontend\None; -use Phalcon\Cache\Backend\Memory; +use UnitTester; /** * \Phalcon\Test\Unit\Cache\Backend\MemoryCest * Tests the \Phalcon\Cache\Backend\Memory component * * @copyright (c) 2011-2017 Phalcon Team - * @link https://phalconphp.com - * @author Andres Gutierrez - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Cache\Backend + * @link https://phalconphp.com + * @author Andres Gutierrez + * @author Phalcon Team + * @package Phalcon\Test\Unit\Cache\Backend * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file LICENSE.txt @@ -30,7 +30,7 @@ public function get(UnitTester $I) { $I->wantTo('Get cached by using Memory as cache backend'); - $key = 'data-get'; + $key = 'data-get'; $data = [uniqid(), gethostname(), microtime(), get_include_path(), time()]; $cache = new Memory(new Data(['lifetime' => 20])); @@ -52,7 +52,7 @@ public function save(UnitTester $I) { $I->wantTo('Save data by using Memory as cache backend'); - $key = 'data-save'; + $key = 'data-save'; $data = [uniqid(), gethostname(), microtime(), get_include_path(), time()]; $cache = new Memory(new Data(['lifetime' => 20])); @@ -90,7 +90,7 @@ public function increment(UnitTester $I) { $I->wantTo('Increment counter by using Memory as cache backend'); - $key = 'increment'; + $key = 'increment'; $cache = new Memory(new Data(['lifetime' => 20])); $I->setProtectedProperty($cache, '_data', [$key => 20]); @@ -106,7 +106,7 @@ public function decrement(UnitTester $I) { $I->wantTo('Decrement counter by using Memory as cache backend'); - $key = 'decrement'; + $key = 'decrement'; $cache = new Memory(new Data(['lifetime' => 20])); $I->setProtectedProperty($cache, '_data', [$key => 100]); diff --git a/tests/unit/Cache/Backend/Mongo/ConstructCest.php b/tests/unit/Cache/Backend/Mongo/ConstructCest.php new file mode 100644 index 00000000000..fad3a9dbb72 --- /dev/null +++ b/tests/unit/Cache/Backend/Mongo/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Mongo; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Cache\Backend\Mongo :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMongoConstruct(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Mongo - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Mongo/DecrementCest.php b/tests/unit/Cache/Backend/Mongo/DecrementCest.php new file mode 100644 index 00000000000..df7523a7e69 --- /dev/null +++ b/tests/unit/Cache/Backend/Mongo/DecrementCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Mongo; + +use UnitTester; + +class DecrementCest +{ + /** + * Tests Phalcon\Cache\Backend\Mongo :: decrement() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMongoDecrement(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Mongo - decrement()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Mongo/DeleteCest.php b/tests/unit/Cache/Backend/Mongo/DeleteCest.php new file mode 100644 index 00000000000..74a7564bc90 --- /dev/null +++ b/tests/unit/Cache/Backend/Mongo/DeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Mongo; + +use UnitTester; + +class DeleteCest +{ + /** + * Tests Phalcon\Cache\Backend\Mongo :: delete() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMongoDelete(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Mongo - delete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Mongo/ExistsCest.php b/tests/unit/Cache/Backend/Mongo/ExistsCest.php new file mode 100644 index 00000000000..c6f38bd3a00 --- /dev/null +++ b/tests/unit/Cache/Backend/Mongo/ExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Mongo; + +use UnitTester; + +class ExistsCest +{ + /** + * Tests Phalcon\Cache\Backend\Mongo :: exists() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMongoExists(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Mongo - exists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Mongo/FlushCest.php b/tests/unit/Cache/Backend/Mongo/FlushCest.php new file mode 100644 index 00000000000..5a6ecde64e4 --- /dev/null +++ b/tests/unit/Cache/Backend/Mongo/FlushCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Mongo; + +use UnitTester; + +class FlushCest +{ + /** + * Tests Phalcon\Cache\Backend\Mongo :: flush() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMongoFlush(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Mongo - flush()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Mongo/GcCest.php b/tests/unit/Cache/Backend/Mongo/GcCest.php new file mode 100644 index 00000000000..eeb1c3b1589 --- /dev/null +++ b/tests/unit/Cache/Backend/Mongo/GcCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Mongo; + +use UnitTester; + +class GcCest +{ + /** + * Tests Phalcon\Cache\Backend\Mongo :: gc() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMongoGc(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Mongo - gc()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Mongo/GetCest.php b/tests/unit/Cache/Backend/Mongo/GetCest.php new file mode 100644 index 00000000000..1463efb11a9 --- /dev/null +++ b/tests/unit/Cache/Backend/Mongo/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Mongo; + +use UnitTester; + +class GetCest +{ + /** + * Tests Phalcon\Cache\Backend\Mongo :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMongoGet(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Mongo - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Mongo/GetFrontendCest.php b/tests/unit/Cache/Backend/Mongo/GetFrontendCest.php new file mode 100644 index 00000000000..84cbf480613 --- /dev/null +++ b/tests/unit/Cache/Backend/Mongo/GetFrontendCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Mongo; + +use UnitTester; + +class GetFrontendCest +{ + /** + * Tests Phalcon\Cache\Backend\Mongo :: getFrontend() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMongoGetFrontend(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Mongo - getFrontend()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Mongo/GetLastKeyCest.php b/tests/unit/Cache/Backend/Mongo/GetLastKeyCest.php new file mode 100644 index 00000000000..da2e31cce7f --- /dev/null +++ b/tests/unit/Cache/Backend/Mongo/GetLastKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Mongo; + +use UnitTester; + +class GetLastKeyCest +{ + /** + * Tests Phalcon\Cache\Backend\Mongo :: getLastKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMongoGetLastKey(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Mongo - getLastKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Mongo/GetLifetimeCest.php b/tests/unit/Cache/Backend/Mongo/GetLifetimeCest.php new file mode 100644 index 00000000000..19263a56f1e --- /dev/null +++ b/tests/unit/Cache/Backend/Mongo/GetLifetimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Mongo; + +use UnitTester; + +class GetLifetimeCest +{ + /** + * Tests Phalcon\Cache\Backend\Mongo :: getLifetime() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMongoGetLifetime(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Mongo - getLifetime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Mongo/GetOptionsCest.php b/tests/unit/Cache/Backend/Mongo/GetOptionsCest.php new file mode 100644 index 00000000000..6d52ee50a0e --- /dev/null +++ b/tests/unit/Cache/Backend/Mongo/GetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Mongo; + +use UnitTester; + +class GetOptionsCest +{ + /** + * Tests Phalcon\Cache\Backend\Mongo :: getOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMongoGetOptions(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Mongo - getOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Mongo/IncrementCest.php b/tests/unit/Cache/Backend/Mongo/IncrementCest.php new file mode 100644 index 00000000000..ec197289992 --- /dev/null +++ b/tests/unit/Cache/Backend/Mongo/IncrementCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Mongo; + +use UnitTester; + +class IncrementCest +{ + /** + * Tests Phalcon\Cache\Backend\Mongo :: increment() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMongoIncrement(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Mongo - increment()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Mongo/IsFreshCest.php b/tests/unit/Cache/Backend/Mongo/IsFreshCest.php new file mode 100644 index 00000000000..b286861dd29 --- /dev/null +++ b/tests/unit/Cache/Backend/Mongo/IsFreshCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Mongo; + +use UnitTester; + +class IsFreshCest +{ + /** + * Tests Phalcon\Cache\Backend\Mongo :: isFresh() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMongoIsFresh(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Mongo - isFresh()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Mongo/IsStartedCest.php b/tests/unit/Cache/Backend/Mongo/IsStartedCest.php new file mode 100644 index 00000000000..5ace6152ac0 --- /dev/null +++ b/tests/unit/Cache/Backend/Mongo/IsStartedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Mongo; + +use UnitTester; + +class IsStartedCest +{ + /** + * Tests Phalcon\Cache\Backend\Mongo :: isStarted() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMongoIsStarted(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Mongo - isStarted()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Mongo/QueryKeysCest.php b/tests/unit/Cache/Backend/Mongo/QueryKeysCest.php new file mode 100644 index 00000000000..6de5a4715fc --- /dev/null +++ b/tests/unit/Cache/Backend/Mongo/QueryKeysCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Mongo; + +use UnitTester; + +class QueryKeysCest +{ + /** + * Tests Phalcon\Cache\Backend\Mongo :: queryKeys() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMongoQueryKeys(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Mongo - queryKeys()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Mongo/SaveCest.php b/tests/unit/Cache/Backend/Mongo/SaveCest.php new file mode 100644 index 00000000000..776906ffc07 --- /dev/null +++ b/tests/unit/Cache/Backend/Mongo/SaveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Mongo; + +use UnitTester; + +class SaveCest +{ + /** + * Tests Phalcon\Cache\Backend\Mongo :: save() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMongoSave(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Mongo - save()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Mongo/SetFrontendCest.php b/tests/unit/Cache/Backend/Mongo/SetFrontendCest.php new file mode 100644 index 00000000000..5ff0a3d9603 --- /dev/null +++ b/tests/unit/Cache/Backend/Mongo/SetFrontendCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Mongo; + +use UnitTester; + +class SetFrontendCest +{ + /** + * Tests Phalcon\Cache\Backend\Mongo :: setFrontend() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMongoSetFrontend(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Mongo - setFrontend()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Mongo/SetLastKeyCest.php b/tests/unit/Cache/Backend/Mongo/SetLastKeyCest.php new file mode 100644 index 00000000000..5a99925f4d1 --- /dev/null +++ b/tests/unit/Cache/Backend/Mongo/SetLastKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Mongo; + +use UnitTester; + +class SetLastKeyCest +{ + /** + * Tests Phalcon\Cache\Backend\Mongo :: setLastKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMongoSetLastKey(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Mongo - setLastKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Mongo/SetOptionsCest.php b/tests/unit/Cache/Backend/Mongo/SetOptionsCest.php new file mode 100644 index 00000000000..cb18a822fca --- /dev/null +++ b/tests/unit/Cache/Backend/Mongo/SetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Mongo; + +use UnitTester; + +class SetOptionsCest +{ + /** + * Tests Phalcon\Cache\Backend\Mongo :: setOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMongoSetOptions(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Mongo - setOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Mongo/StartCest.php b/tests/unit/Cache/Backend/Mongo/StartCest.php new file mode 100644 index 00000000000..440c8b423a5 --- /dev/null +++ b/tests/unit/Cache/Backend/Mongo/StartCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Mongo; + +use UnitTester; + +class StartCest +{ + /** + * Tests Phalcon\Cache\Backend\Mongo :: start() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMongoStart(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Mongo - start()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Mongo/StopCest.php b/tests/unit/Cache/Backend/Mongo/StopCest.php new file mode 100644 index 00000000000..e2ed5262ef6 --- /dev/null +++ b/tests/unit/Cache/Backend/Mongo/StopCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Mongo; + +use UnitTester; + +class StopCest +{ + /** + * Tests Phalcon\Cache\Backend\Mongo :: stop() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendMongoStop(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Mongo - stop()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Redis/ConnectCest.php b/tests/unit/Cache/Backend/Redis/ConnectCest.php new file mode 100644 index 00000000000..1e4054352fb --- /dev/null +++ b/tests/unit/Cache/Backend/Redis/ConnectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Redis; + +use UnitTester; + +class ConnectCest +{ + /** + * Tests Phalcon\Cache\Backend\Redis :: connect() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendRedisConnect(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Redis - connect()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Redis/ConstructCest.php b/tests/unit/Cache/Backend/Redis/ConstructCest.php new file mode 100644 index 00000000000..7e7330adb18 --- /dev/null +++ b/tests/unit/Cache/Backend/Redis/ConstructCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Redis; + +use Phalcon\Cache\Backend\Redis; +use Phalcon\Cache\BackendInterface; +use Phalcon\Cache\Frontend\Data; +use Phalcon\Test\Fixtures\Traits\RedisTrait; +use UnitTester; + +class ConstructCest +{ + use RedisTrait; + + /** + * Tests Phalcon\Cache\Backend\Redis :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testConstruct(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Redis - __construct()"); + $cache = new Redis(new Data(['lifetime' => 20]), $this->options); + $class = BackendInterface::class; + $actual = $cache; + $I->assertInstanceOf($class, $actual); + } +} diff --git a/tests/unit/Cache/Backend/Redis/DecrementCest.php b/tests/unit/Cache/Backend/Redis/DecrementCest.php new file mode 100644 index 00000000000..b2814100a9b --- /dev/null +++ b/tests/unit/Cache/Backend/Redis/DecrementCest.php @@ -0,0 +1,51 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Redis; + +use Phalcon\Cache\Backend\Redis; +use Phalcon\Cache\BackendInterface; +use Phalcon\Cache\Frontend\Data; +use Phalcon\Test\Fixtures\Traits\RedisTrait; +use UnitTester; + +class DecrementCest +{ + use RedisTrait; + + /** + * Tests Phalcon\Cache\Backend\Redis :: decrement() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendRedisDecrement(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Redis - decrement()"); + $I->skipTest('TODO: Find out why the module cannot connect with the port'); + $key = '_PHCR' . 'decrement'; + $cache = new Redis(new Data(['lifetime' => 20]), $this->options); + + $I->dontSeeInRedis($key); + $I->haveInRedis('string', $key, 100); + + $I->assertEquals(99, $cache->decrement('decrement')); + $I->seeInRedis($key, 99); + + $I->assertEquals(97, $cache->decrement('decrement', 2)); + $I->seeInRedis($key, 97); + + $I->assertEquals(87, $cache->decrement('decrement', 10)); + $I->seeInRedis($key, 87); + } +} diff --git a/tests/unit/Cache/Backend/Redis/DeleteCest.php b/tests/unit/Cache/Backend/Redis/DeleteCest.php new file mode 100644 index 00000000000..9a1fbff6a9d --- /dev/null +++ b/tests/unit/Cache/Backend/Redis/DeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Redis; + +use UnitTester; + +class DeleteCest +{ + /** + * Tests Phalcon\Cache\Backend\Redis :: delete() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendRedisDelete(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Redis - delete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Redis/ExistsCest.php b/tests/unit/Cache/Backend/Redis/ExistsCest.php new file mode 100644 index 00000000000..8efca0243ee --- /dev/null +++ b/tests/unit/Cache/Backend/Redis/ExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Redis; + +use UnitTester; + +class ExistsCest +{ + /** + * Tests Phalcon\Cache\Backend\Redis :: exists() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendRedisExists(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Redis - exists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Redis/FlushCest.php b/tests/unit/Cache/Backend/Redis/FlushCest.php new file mode 100644 index 00000000000..a8b13f3c247 --- /dev/null +++ b/tests/unit/Cache/Backend/Redis/FlushCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Redis; + +use UnitTester; + +class FlushCest +{ + /** + * Tests Phalcon\Cache\Backend\Redis :: flush() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendRedisFlush(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Redis - flush()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Redis/GetCest.php b/tests/unit/Cache/Backend/Redis/GetCest.php new file mode 100644 index 00000000000..1884567755f --- /dev/null +++ b/tests/unit/Cache/Backend/Redis/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Redis; + +use UnitTester; + +class GetCest +{ + /** + * Tests Phalcon\Cache\Backend\Redis :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendRedisGet(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Redis - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Redis/GetFrontendCest.php b/tests/unit/Cache/Backend/Redis/GetFrontendCest.php new file mode 100644 index 00000000000..02cba68a921 --- /dev/null +++ b/tests/unit/Cache/Backend/Redis/GetFrontendCest.php @@ -0,0 +1,41 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Redis; + +use Phalcon\Cache\Backend\Redis; +use Phalcon\Cache\BackendInterface; +use Phalcon\Cache\Frontend\Data; +use Phalcon\Test\Fixtures\Traits\RedisTrait; +use UnitTester; + +class GetFrontendCest +{ + use RedisTrait; + + /** + * Tests Phalcon\Cache\Backend\Redis :: getFrontend() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendRedisGetFrontend(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Redis - getFrontend()"); + $cache = new Redis(new Data(['lifetime' => 20]), $this->options); + + $class = Data::class; + $actual = $cache->getFrontend(); + $I->assertInstanceOf($class, $actual); + } +} diff --git a/tests/unit/Cache/Backend/Redis/GetLastKeyCest.php b/tests/unit/Cache/Backend/Redis/GetLastKeyCest.php new file mode 100644 index 00000000000..22e344799aa --- /dev/null +++ b/tests/unit/Cache/Backend/Redis/GetLastKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Redis; + +use UnitTester; + +class GetLastKeyCest +{ + /** + * Tests Phalcon\Cache\Backend\Redis :: getLastKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendRedisGetLastKey(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Redis - getLastKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Redis/GetLifetimeCest.php b/tests/unit/Cache/Backend/Redis/GetLifetimeCest.php new file mode 100644 index 00000000000..1c9da1e6c2e --- /dev/null +++ b/tests/unit/Cache/Backend/Redis/GetLifetimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Redis; + +use UnitTester; + +class GetLifetimeCest +{ + /** + * Tests Phalcon\Cache\Backend\Redis :: getLifetime() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendRedisGetLifetime(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Redis - getLifetime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Redis/GetOptionsCest.php b/tests/unit/Cache/Backend/Redis/GetOptionsCest.php new file mode 100644 index 00000000000..5876080e73f --- /dev/null +++ b/tests/unit/Cache/Backend/Redis/GetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Redis; + +use UnitTester; + +class GetOptionsCest +{ + /** + * Tests Phalcon\Cache\Backend\Redis :: getOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendRedisGetOptions(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Redis - getOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Redis/IncrementCest.php b/tests/unit/Cache/Backend/Redis/IncrementCest.php new file mode 100644 index 00000000000..bf66720b374 --- /dev/null +++ b/tests/unit/Cache/Backend/Redis/IncrementCest.php @@ -0,0 +1,51 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Redis; + +use Phalcon\Cache\Backend\Redis; +use Phalcon\Cache\BackendInterface; +use Phalcon\Cache\Frontend\Data; +use Phalcon\Test\Fixtures\Traits\RedisTrait; +use UnitTester; + +class IncrementCest +{ + use RedisTrait; + + /** + * Tests Phalcon\Cache\Backend\Redis :: increment() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendRedisIncrement(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Redis - increment()"); + $I->skipTest('TODO: Find out why the module cannot connect with the port'); + $key = '_PHCR' . 'decrement'; + $cache = new Redis(new Data(['lifetime' => 20]), $this->options); + + $I->dontSeeInRedis($key); + $I->haveInRedis('string', $key, 1); + + $I->assertEquals(2, $cache->increment('increment')); + $I->seeInRedis($key, 2); + + $I->assertEquals(4, $cache->increment('increment', 2)); + $I->seeInRedis($key, 4); + + $I->assertEquals(14, $cache->increment('increment', 10)); + $I->seeInRedis($key, 14); + } +} diff --git a/tests/unit/Cache/Backend/Redis/IsFreshCest.php b/tests/unit/Cache/Backend/Redis/IsFreshCest.php new file mode 100644 index 00000000000..67757b909e5 --- /dev/null +++ b/tests/unit/Cache/Backend/Redis/IsFreshCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Redis; + +use UnitTester; + +class IsFreshCest +{ + /** + * Tests Phalcon\Cache\Backend\Redis :: isFresh() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendRedisIsFresh(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Redis - isFresh()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Redis/IsStartedCest.php b/tests/unit/Cache/Backend/Redis/IsStartedCest.php new file mode 100644 index 00000000000..8f179fa3c80 --- /dev/null +++ b/tests/unit/Cache/Backend/Redis/IsStartedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Redis; + +use UnitTester; + +class IsStartedCest +{ + /** + * Tests Phalcon\Cache\Backend\Redis :: isStarted() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendRedisIsStarted(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Redis - isStarted()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Redis/QueryKeysCest.php b/tests/unit/Cache/Backend/Redis/QueryKeysCest.php new file mode 100644 index 00000000000..0014717b0b5 --- /dev/null +++ b/tests/unit/Cache/Backend/Redis/QueryKeysCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Redis; + +use UnitTester; + +class QueryKeysCest +{ + /** + * Tests Phalcon\Cache\Backend\Redis :: queryKeys() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendRedisQueryKeys(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Redis - queryKeys()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Redis/SaveCest.php b/tests/unit/Cache/Backend/Redis/SaveCest.php new file mode 100644 index 00000000000..f059e4a70bc --- /dev/null +++ b/tests/unit/Cache/Backend/Redis/SaveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Redis; + +use UnitTester; + +class SaveCest +{ + /** + * Tests Phalcon\Cache\Backend\Redis :: save() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendRedisSave(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Redis - save()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Redis/SetFrontendCest.php b/tests/unit/Cache/Backend/Redis/SetFrontendCest.php new file mode 100644 index 00000000000..7d288fe6103 --- /dev/null +++ b/tests/unit/Cache/Backend/Redis/SetFrontendCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Redis; + +use UnitTester; + +class SetFrontendCest +{ + /** + * Tests Phalcon\Cache\Backend\Redis :: setFrontend() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendRedisSetFrontend(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Redis - setFrontend()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Redis/SetLastKeyCest.php b/tests/unit/Cache/Backend/Redis/SetLastKeyCest.php new file mode 100644 index 00000000000..4f249b926f3 --- /dev/null +++ b/tests/unit/Cache/Backend/Redis/SetLastKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Redis; + +use UnitTester; + +class SetLastKeyCest +{ + /** + * Tests Phalcon\Cache\Backend\Redis :: setLastKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendRedisSetLastKey(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Redis - setLastKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Redis/SetOptionsCest.php b/tests/unit/Cache/Backend/Redis/SetOptionsCest.php new file mode 100644 index 00000000000..651194913f6 --- /dev/null +++ b/tests/unit/Cache/Backend/Redis/SetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Redis; + +use UnitTester; + +class SetOptionsCest +{ + /** + * Tests Phalcon\Cache\Backend\Redis :: setOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendRedisSetOptions(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Redis - setOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Redis/StartCest.php b/tests/unit/Cache/Backend/Redis/StartCest.php new file mode 100644 index 00000000000..28efd05cfdf --- /dev/null +++ b/tests/unit/Cache/Backend/Redis/StartCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Redis; + +use UnitTester; + +class StartCest +{ + /** + * Tests Phalcon\Cache\Backend\Redis :: start() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendRedisStart(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Redis - start()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/Redis/StopCest.php b/tests/unit/Cache/Backend/Redis/StopCest.php new file mode 100644 index 00000000000..8210710eb1e --- /dev/null +++ b/tests/unit/Cache/Backend/Redis/StopCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Backend\Redis; + +use UnitTester; + +class StopCest +{ + /** + * Tests Phalcon\Cache\Backend\Redis :: stop() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheBackendRedisStop(UnitTester $I) + { + $I->wantToTest("Cache\Backend\Redis - stop()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Backend/RedisCest.php b/tests/unit/Cache/Backend/RedisCest.php index eb7cd02c869..ad22b278503 100644 --- a/tests/unit/Cache/Backend/RedisCest.php +++ b/tests/unit/Cache/Backend/RedisCest.php @@ -2,22 +2,22 @@ namespace Phalcon\Test\Unit\Cache\Backend; -use UnitTester; +use Phalcon\Cache\Backend\Redis; use Phalcon\Cache\Exception; use Phalcon\Cache\Frontend\Data; -use Phalcon\Cache\Backend\Redis; use Phalcon\Cache\Frontend\Output; -use PHPUnit\Framework\SkippedTestError; +use UnitTester; +use function array_merge; /** * \Phalcon\Test\Unit\Cache\Backend\RedisCest * Tests the \Phalcon\Cache\Backend\Redis component * * @copyright (c) 2011-2017 Phalcon Team - * @link http://www.phalconphp.com - * @author Andres Gutierrez - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Cache\Backend + * @link http://www.phalconphp.com + * @author Andres Gutierrez + * @author Phalcon Team + * @package Phalcon\Test\Unit\Cache\Backend * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file LICENSE.txt @@ -30,88 +30,16 @@ class RedisCest { public function _before(UnitTester $I) { - $I->wantToTest('Redis cache backend'); - - if (!extension_loaded('redis')) { - throw new SkippedTestError( - 'Warning: redis extension is not loaded' - ); - } - } - - public function increment(UnitTester $I) - { - $I->wantTo('Increment counter by using Redis as cache backend'); - - $key = '_PHCR' . 'increment'; - $cache = new Redis( - new Data(['lifetime' => 20]), - [ - 'host' => env('TEST_RS_HOST', '127.0.0.1'), - 'port' => env('TEST_RS_PORT', 6379), - 'index' => env('TEST_RS_DB', 0), - 'statsKey' => '_PHCR', - ] - ); - - $I->dontSeeInRedis($key); - $I->haveInRedis('string', $key, 1); - - $I->assertEquals(2, $cache->increment('increment')); - $I->seeInRedis($key, 2); - - $I->assertEquals(4, $cache->increment('increment', 2)); - $I->seeInRedis($key, 4); - - $I->assertEquals(14, $cache->increment('increment', 10)); - $I->seeInRedis($key, 14); - } - - public function decrement(UnitTester $I) - { - $I->wantTo('Decrement counter by using Redis as cache backend'); - - $key = '_PHCR' . 'decrement'; - $cache = new Redis( - new Data(['lifetime' => 20]), - [ - 'host' => env('TEST_RS_HOST', '127.0.0.1'), - 'port' => env('TEST_RS_PORT', 6379), - 'index' => env('TEST_RS_DB', 0), - 'statsKey' => '_PHCR', - ] - ); - - $I->dontSeeInRedis($key); - $I->haveInRedis('string', $key, 100); - - $I->assertEquals(99, $cache->decrement('decrement')); - $I->seeInRedis($key, 99); - - $I->assertEquals(97, $cache->decrement('decrement', 2)); - $I->seeInRedis($key, 97); - - $I->assertEquals(87, $cache->decrement('decrement', 10)); - $I->seeInRedis($key, 87); + $I->checkExtensionIsLoaded('redis'); } public function exists(UnitTester $I) { $I->wantTo('Check if cache exists in cache by using Redis as cache backend'); - - $key = '_PHCR' . 'data-exists'; - - $data = [uniqid(), gethostname(), microtime(), get_include_path(), time()]; - - $cache = new Redis( - new Data(['lifetime' => 20]), - [ - 'host' => env('TEST_RS_HOST', '127.0.0.1'), - 'port' => env('TEST_RS_PORT', 6379), - 'index' => env('TEST_RS_DB', 0), - 'statsKey' => '_PHCR', - ] - ); + $I->skipTest('TODO: Find out why the module cannot connect with the port'); + $key = '_PHCR' . 'data-exists'; + $data = [uniqid(), gethostname(), microtime(), get_include_path(), time()]; + $cache = $this->getClient(20, ['statsKey' => '_PHCR']); $I->haveInRedis('string', $key, serialize($data)); @@ -119,21 +47,33 @@ public function exists(UnitTester $I) $I->assertFalse($cache->exists('non-existent-key')); } + /** + * @param int $lifetime + * @param array $options + * + * @return Redis + */ + private function getClient(int $lifetime = 20, array $options = []): Redis + { + $config = [ + 'host' => env('DATA_REDIS_HOST'), + 'port' => env('DATA_REDIS_PORT'), + 'index' => env('DATA_REDIS_NAME'), + ]; + + $config = array_merge($config, $options); + + return new Redis(new Data(['lifetime' => $lifetime]), $config); + } + public function existsWithoutStatsKey(UnitTester $I) { $I->wantTo('Check if cache exists in cache by using Redis as cache backend'); + $I->skipTest('TODO: Find out why the module cannot connect with the port'); - $key = 'data-exists'; - $data = [uniqid(), gethostname(), microtime(), get_include_path(), time()]; - - $cache = new Redis( - new Data(['lifetime' => 20]), - [ - 'host' => env('TEST_RS_HOST', '127.0.0.1'), - 'port' => env('TEST_RS_PORT', 6379), - 'index' => env('TEST_RS_DB', 0), - ] - ); + $key = 'data-exists'; + $data = [uniqid(), gethostname(), microtime(), get_include_path(), time()]; + $cache = $this->getClient(); $I->dontSeeInRedis($key); $cache->save($key, serialize($data)); @@ -149,18 +89,10 @@ public function existsWithoutStatsKey(UnitTester $I) public function existsEmpty(UnitTester $I) { $I->wantTo('Check if cache exists for empty value in cache by using Redis as cache backend'); + $I->skipTest('TODO: Find out why the module cannot connect with the port'); - $key = '_PHCR' . 'data-empty-exists'; - - $cache = new Redis( - new Data(['lifetime' => 20]), - [ - 'host' => env('TEST_RS_HOST', '127.0.0.1'), - 'port' => env('TEST_RS_PORT', 6379), - 'index' => env('TEST_RS_DB', 0), - 'statsKey' => '_PHCR', - ] - ); + $key = '_PHCR' . 'data-empty-exists'; + $cache = $this->getClient(20, ['statsKey' => '_PHCR']); $I->haveInRedis('string', $key, ''); @@ -171,19 +103,11 @@ public function existsEmpty(UnitTester $I) public function get(UnitTester $I) { $I->wantTo('Get data by using Redis as cache backend'); + $I->skipTest('TODO: Find out why the module cannot connect with the port'); - $key = '_PHCR' . 'data-get'; - $data = [uniqid(), gethostname(), microtime(), get_include_path(), time()]; - - $cache = new Redis( - new Data(['lifetime' => 20]), - [ - 'host' => env('TEST_RS_HOST', '127.0.0.1'), - 'port' => env('TEST_RS_PORT', 6379), - 'index' => env('TEST_RS_DB', 0), - 'statsKey' => '_PHCR', - ] - ); + $key = '_PHCR' . 'data-get'; + $data = [uniqid(), gethostname(), microtime(), get_include_path(), time()]; + $cache = $this->getClient(20, ['statsKey' => '_PHCR']); $I->haveInRedis('string', $key, serialize($data)); $I->assertEquals($data, $cache->get('data-get')); @@ -205,17 +129,10 @@ public function get(UnitTester $I) public function getEmpty(UnitTester $I) { $I->wantTo('Get empty value by using Redis as cache backend'); + $I->skipTest('TODO: Find out why the module cannot connect with the port'); - $key = '_PHCR' . 'data-empty-get'; - $cache = new Redis( - new Data(['lifetime' => 20]), - [ - 'host' => env('TEST_RS_HOST', '127.0.0.1'), - 'port' => env('TEST_RS_PORT', 6379), - 'index' => env('TEST_RS_DB', 0), - 'statsKey' => '_PHCR', - ] - ); + $key = '_PHCR' . 'data-empty-get'; + $cache = $this->getClient(20, ['statsKey' => '_PHCR']); $I->haveInRedis('string', $key, ''); $I->assertSame('', $cache->get('data-empty-get')); @@ -224,19 +141,11 @@ public function getEmpty(UnitTester $I) public function save(UnitTester $I) { $I->wantTo('Save data by using Redis as cache backend'); + $I->skipTest('TODO: Find out why the module cannot connect with the port'); - $key = '_PHCR' . 'data-save'; - $data = [uniqid(), gethostname(), microtime(), get_include_path(), time()]; - - $cache = new Redis( - new Data(['lifetime' => 20]), - [ - 'host' => env('TEST_RS_HOST', '127.0.0.1'), - 'port' => env('TEST_RS_PORT', 6379), - 'index' => env('TEST_RS_DB', 0), - 'statsKey' => '_PHCR', - ] - ); + $key = '_PHCR' . 'data-save'; + $data = [uniqid(), gethostname(), microtime(), get_include_path(), time()]; + $cache = $this->getClient(20, ['statsKey' => '_PHCR']); $I->dontSeeInRedis($key); $cache->save('data-save', $data); @@ -258,19 +167,11 @@ public function save(UnitTester $I) public function saveNonExpiring(UnitTester $I) { $I->wantTo('Save data termlessly by using Redis as cache backend'); + $I->skipTest('TODO: Find out why the module cannot connect with the port'); - $key = '_PHCR' . 'data-save-2'; - $data = 1000; - - $cache = new Redis( - new Data(['lifetime' => 200]), - [ - 'host' => env('TEST_RS_HOST', '127.0.0.1'), - 'port' => env('TEST_RS_PORT', 6379), - 'index' => env('TEST_RS_DB', 0), - 'statsKey' => '_PHCR', - ] - ); + $key = '_PHCR' . 'data-save-2'; + $data = 1000; + $cache = $this->getClient(200); $I->dontSeeInRedis($key); @@ -295,16 +196,8 @@ public function delete(UnitTester $I) $I->wantTo(/** @lang text */ 'Delete from cache by using Redis as cache backend' ); - - $cache = new Redis( - new Data(['lifetime' => 20]), - [ - 'host' => env('TEST_RS_HOST', '127.0.0.1'), - 'port' => env('TEST_RS_PORT', 6379), - 'index' => env('TEST_RS_DB', 0), - 'statsKey' => '_PHCR', - ] - ); + $I->skipTest('TODO: Find out why the module cannot connect with the port'); + $cache = $this->getClient(20, ['statsKey' => '_PHCR']); $I->assertFalse($cache->delete('non-existent-keys')); @@ -317,16 +210,8 @@ public function delete(UnitTester $I) public function flush(UnitTester $I) { $I->wantTo('Flush cache by using Redis as cache backend'); - - $cache = new Redis( - new Data(['lifetime' => 20]), - [ - 'host' => env('TEST_RS_HOST', '127.0.0.1'), - 'port' => env('TEST_RS_PORT', 6379), - 'index' => env('TEST_RS_DB', 0), - 'statsKey' => '_PHCR', - ] - ); + $I->skipTest('TODO: Find out why the module cannot connect with the port'); + $cache = $this->getClient(20, ['statsKey' => '_PHCR']); $key1 = '_PHCR' . 'data-flush-1'; $key2 = '_PHCR' . 'data-flush-2'; @@ -349,16 +234,8 @@ public function flush(UnitTester $I) public function queryKeys(UnitTester $I) { $I->wantTo('Get cache keys by using Redis as cache backend'); - - $cache = new Redis( - new Data(['lifetime' => 20]), - [ - 'host' => env('TEST_RS_HOST', '127.0.0.1'), - 'port' => env('TEST_RS_PORT', 6379), - 'index' => env('TEST_RS_DB', 0), - 'statsKey' => '_PHCR', - ] - ); + $I->skipTest('TODO: Find out why the module cannot connect with the port'); + $cache = $this->getClient(20, ['statsKey' => '_PHCR']); $I->haveInRedis('string', '_PHCR' . 'a', 1); $I->haveInRedis('string', '_PHCR' . 'b', 2); @@ -377,17 +254,10 @@ public function queryKeys(UnitTester $I) public function queryKeysWithoutStatsKey(UnitTester $I) { $I->wantTo('Catch exception during the attempt getting cache keys by using Redis as cache backend without statsKey'); + $I->skipTest('TODO: Find out why the module cannot connect with the port'); + $cache = $this->getClient(); - $cache = new Redis( - new Data(['lifetime' => 20]), - [ - 'host' => env('TEST_RS_HOST', '127.0.0.1'), - 'port' => env('TEST_RS_PORT', 6379), - 'index' => env('TEST_RS_DB', 0), - ] - ); - - $I->expectException( + $I->expectThrowable( new Exception("Cached keys need to be enabled to use this function (options['statsKey'] == '_PHCR')!"), function () use ($cache) { $cache->queryKeys(); @@ -398,17 +268,10 @@ function () use ($cache) { public function output(UnitTester $I) { $I->wantTo('Cache output fragments by using Redis as cache backend'); + $I->skipTest('TODO: Find out why the module cannot connect with the port'); - $time = date('H:i:s'); - $cache = new Redis( - new Output(['lifetime' => 2]), - [ - 'host' => env('TEST_RS_HOST', '127.0.0.1'), - 'port' => env('TEST_RS_PORT', 6379), - 'index' => env('TEST_RS_DB', 0), - 'statsKey' => '_PHCR', - ] - ); + $time = date('H:i:s'); + $cache = $this->getClient(2); ob_start(); @@ -442,20 +305,10 @@ public function output(UnitTester $I) public function setTimeout(UnitTester $I) { $I->wantTo('Get data by using Redis as cache backend and set timeout'); - - $key = '_PHCR' . 'data-get-timeout'; - $data = [uniqid(), gethostname(), microtime(), get_include_path(), time()]; - - $cache = new Redis( - new Data(['lifetime' => 20]), - [ - 'host' => env('TEST_RS_HOST', '127.0.0.1'), - 'port' => env('TEST_RS_PORT', 6379), - 'index' => env('TEST_RS_DB', 0), - 'statsKey' => '_PHCR', - 'timeout' => 1, - ] - ); + $I->skipTest('TODO: Find out why the module cannot connect with the port'); + $key = '_PHCR' . 'data-get-timeout'; + $data = [uniqid(), gethostname(), microtime(), get_include_path(), time()]; + $cache = $this->getClient(20, ['statsKey' => '_PHCR', 'timeout' => 1]); $I->haveInRedis('string', $key, serialize($data)); $I->assertEquals($data, $cache->get('data-get-timeout')); @@ -473,17 +326,9 @@ public function setTimeout(UnitTester $I) public function queryKeysWithStatsKeyAndPrefix(UnitTester $I) { $I->wantTo('Get cache data with prefix and statsKey configuration'); + $I->skipTest('TODO: Find out why the module cannot connect with the port'); - $cache = new Redis( - new Data(['lifetime' => 20]), - [ - 'host' => env('TEST_RS_HOST', '127.0.0.1'), - 'port' => env('TEST_RS_PORT', 6379), - 'index' => env('TEST_RS_DB', 0), - 'statsKey' => '_PHCR', - 'prefix' => 'phalcon-', - ] - ); + $cache = $this->getClient(20, ['statsKey' => '_PHCR', 'prefix' => 'phalcon-']); $cache->flush(); $data = [uniqid(), gethostname(), microtime(), get_include_path(), time()]; $cache->save('a', $data); diff --git a/tests/unit/Cache/Frontend/Base64/AfterRetrieveCest.php b/tests/unit/Cache/Frontend/Base64/AfterRetrieveCest.php new file mode 100644 index 00000000000..7acf646602f --- /dev/null +++ b/tests/unit/Cache/Frontend/Base64/AfterRetrieveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Base64; + +use UnitTester; + +class AfterRetrieveCest +{ + /** + * Tests Phalcon\Cache\Frontend\Base64 :: afterRetrieve() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendBase64AfterRetrieve(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Base64 - afterRetrieve()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Base64/BeforeStoreCest.php b/tests/unit/Cache/Frontend/Base64/BeforeStoreCest.php new file mode 100644 index 00000000000..f8e744ec92c --- /dev/null +++ b/tests/unit/Cache/Frontend/Base64/BeforeStoreCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Base64; + +use UnitTester; + +class BeforeStoreCest +{ + /** + * Tests Phalcon\Cache\Frontend\Base64 :: beforeStore() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendBase64BeforeStore(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Base64 - beforeStore()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Base64/ConstructCest.php b/tests/unit/Cache/Frontend/Base64/ConstructCest.php new file mode 100644 index 00000000000..80f85914f59 --- /dev/null +++ b/tests/unit/Cache/Frontend/Base64/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Base64; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Cache\Frontend\Base64 :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendBase64Construct(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Base64 - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Base64/GetContentCest.php b/tests/unit/Cache/Frontend/Base64/GetContentCest.php new file mode 100644 index 00000000000..402bc3797de --- /dev/null +++ b/tests/unit/Cache/Frontend/Base64/GetContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Base64; + +use UnitTester; + +class GetContentCest +{ + /** + * Tests Phalcon\Cache\Frontend\Base64 :: getContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendBase64GetContent(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Base64 - getContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Base64/GetLifetimeCest.php b/tests/unit/Cache/Frontend/Base64/GetLifetimeCest.php new file mode 100644 index 00000000000..2e00d771586 --- /dev/null +++ b/tests/unit/Cache/Frontend/Base64/GetLifetimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Base64; + +use UnitTester; + +class GetLifetimeCest +{ + /** + * Tests Phalcon\Cache\Frontend\Base64 :: getLifetime() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendBase64GetLifetime(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Base64 - getLifetime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Base64/IsBufferingCest.php b/tests/unit/Cache/Frontend/Base64/IsBufferingCest.php new file mode 100644 index 00000000000..39a0e45aaeb --- /dev/null +++ b/tests/unit/Cache/Frontend/Base64/IsBufferingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Base64; + +use UnitTester; + +class IsBufferingCest +{ + /** + * Tests Phalcon\Cache\Frontend\Base64 :: isBuffering() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendBase64IsBuffering(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Base64 - isBuffering()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Base64/StartCest.php b/tests/unit/Cache/Frontend/Base64/StartCest.php new file mode 100644 index 00000000000..39268d8d67c --- /dev/null +++ b/tests/unit/Cache/Frontend/Base64/StartCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Base64; + +use UnitTester; + +class StartCest +{ + /** + * Tests Phalcon\Cache\Frontend\Base64 :: start() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendBase64Start(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Base64 - start()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Base64/StopCest.php b/tests/unit/Cache/Frontend/Base64/StopCest.php new file mode 100644 index 00000000000..3c211b631b7 --- /dev/null +++ b/tests/unit/Cache/Frontend/Base64/StopCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Base64; + +use UnitTester; + +class StopCest +{ + /** + * Tests Phalcon\Cache\Frontend\Base64 :: stop() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendBase64Stop(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Base64 - stop()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Data/AfterRetrieveCest.php b/tests/unit/Cache/Frontend/Data/AfterRetrieveCest.php new file mode 100644 index 00000000000..e8e40ac3520 --- /dev/null +++ b/tests/unit/Cache/Frontend/Data/AfterRetrieveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Data; + +use UnitTester; + +class AfterRetrieveCest +{ + /** + * Tests Phalcon\Cache\Frontend\Data :: afterRetrieve() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendDataAfterRetrieve(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Data - afterRetrieve()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Data/BeforeStoreCest.php b/tests/unit/Cache/Frontend/Data/BeforeStoreCest.php new file mode 100644 index 00000000000..442716f321f --- /dev/null +++ b/tests/unit/Cache/Frontend/Data/BeforeStoreCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Data; + +use UnitTester; + +class BeforeStoreCest +{ + /** + * Tests Phalcon\Cache\Frontend\Data :: beforeStore() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendDataBeforeStore(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Data - beforeStore()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Data/ConstructCest.php b/tests/unit/Cache/Frontend/Data/ConstructCest.php new file mode 100644 index 00000000000..7c7c2fabd58 --- /dev/null +++ b/tests/unit/Cache/Frontend/Data/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Data; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Cache\Frontend\Data :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendDataConstruct(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Data - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Data/GetContentCest.php b/tests/unit/Cache/Frontend/Data/GetContentCest.php new file mode 100644 index 00000000000..16a0a863bd9 --- /dev/null +++ b/tests/unit/Cache/Frontend/Data/GetContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Data; + +use UnitTester; + +class GetContentCest +{ + /** + * Tests Phalcon\Cache\Frontend\Data :: getContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendDataGetContent(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Data - getContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Data/GetLifetimeCest.php b/tests/unit/Cache/Frontend/Data/GetLifetimeCest.php new file mode 100644 index 00000000000..f063381daa1 --- /dev/null +++ b/tests/unit/Cache/Frontend/Data/GetLifetimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Data; + +use UnitTester; + +class GetLifetimeCest +{ + /** + * Tests Phalcon\Cache\Frontend\Data :: getLifetime() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendDataGetLifetime(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Data - getLifetime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Data/IsBufferingCest.php b/tests/unit/Cache/Frontend/Data/IsBufferingCest.php new file mode 100644 index 00000000000..b73d6acc10c --- /dev/null +++ b/tests/unit/Cache/Frontend/Data/IsBufferingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Data; + +use UnitTester; + +class IsBufferingCest +{ + /** + * Tests Phalcon\Cache\Frontend\Data :: isBuffering() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendDataIsBuffering(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Data - isBuffering()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Data/StartCest.php b/tests/unit/Cache/Frontend/Data/StartCest.php new file mode 100644 index 00000000000..5536aff7e48 --- /dev/null +++ b/tests/unit/Cache/Frontend/Data/StartCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Data; + +use UnitTester; + +class StartCest +{ + /** + * Tests Phalcon\Cache\Frontend\Data :: start() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendDataStart(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Data - start()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Data/StopCest.php b/tests/unit/Cache/Frontend/Data/StopCest.php new file mode 100644 index 00000000000..bf7aabcfcb8 --- /dev/null +++ b/tests/unit/Cache/Frontend/Data/StopCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Data; + +use UnitTester; + +class StopCest +{ + /** + * Tests Phalcon\Cache\Frontend\Data :: stop() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendDataStop(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Data - stop()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Factory/LoadCest.php b/tests/unit/Cache/Frontend/Factory/LoadCest.php new file mode 100644 index 00000000000..1430adce05b --- /dev/null +++ b/tests/unit/Cache/Frontend/Factory/LoadCest.php @@ -0,0 +1,80 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Factory; + +use Phalcon\Cache\Frontend\Data; +use Phalcon\Cache\Frontend\Factory; +use Phalcon\Test\Fixtures\Traits\FactoryTrait; +use UnitTester; + +class LoadCest +{ + use FactoryTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $this->init(); + } + + /** + * Tests Phalcon\Cache\Frontend\Factory :: load() - Config + * + * @param UnitTester $I + * + * @author Wojciech Ślawski + * @since 2017-03-02 + */ + public function cacheFrontendFactoryLoadConfig(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Factory - load() - Config"); + $options = $this->config->cache_frontend; + $this->runTests($I, $options); + } + + /** + * Runs the tests based on different configurations + * + * @param UnitTester $I + * @param Config|array $options + */ + private function runTests(UnitTester $I, $options) + { + /** @var Data $cache */ + $cache = Factory::load($options); + + $class = Data::class; + $actual = $cache; + $I->assertInstanceOf($class, $actual); + + $expected = $options['lifetime']; + $actual = $cache->getLifetime(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Cache\Frontend\Factory :: load() - array + * + * @param UnitTester $I + * + * @author Wojciech Ślawski + * @since 2017-03-02 + */ + public function cacheFrontendFactoryLoadArray(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Factory - load() - array"); + $options = $this->arrayConfig["cache_frontend"]; + $this->runTests($I, $options); + } +} diff --git a/tests/unit/Cache/Frontend/FactoryTest.php b/tests/unit/Cache/Frontend/FactoryTest.php deleted file mode 100644 index 68e9423c246..00000000000 --- a/tests/unit/Cache/Frontend/FactoryTest.php +++ /dev/null @@ -1,68 +0,0 @@ - - * @author Serghei Iakovlev - * @author Wojciech Ślawski - * @package Phalcon\Test\Unit\Annotations - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FactoryTest extends FactoryBase -{ - /** - * Test factory using Phalcon\Config - * - * @author Wojciech Ślawski - * @since 2017-03-02 - */ - public function testConfigFactory() - { - $this->specify( - "Factory using Phalcon\\Config doesn't work properly", - function () { - $options = $this->config->cache_frontend; - /** @var Data $cache */ - $cache = Factory::load($options); - expect($cache)->isInstanceOf(Data::class); - expect($cache->getLifetime())->equals($options->lifetime); - } - ); - } - - /** - * Test factory using array - * - * @author Wojciech Ślawski - * @since 2017-03-02 - */ - public function testArrayFactory() - { - $this->specify( - "Factory using array doesn't work properly", - function () { - $options = $this->arrayConfig["cache_frontend"]; - /** @var Data $cache */ - $cache = Factory::load($options); - expect($cache)->isInstanceOf(Data::class); - expect($cache->getLifetime())->equals($options["lifetime"]); - } - ); - } -} diff --git a/tests/unit/Cache/Frontend/Igbinary/AfterRetrieveCest.php b/tests/unit/Cache/Frontend/Igbinary/AfterRetrieveCest.php new file mode 100644 index 00000000000..cc8d890c89c --- /dev/null +++ b/tests/unit/Cache/Frontend/Igbinary/AfterRetrieveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Igbinary; + +use UnitTester; + +class AfterRetrieveCest +{ + /** + * Tests Phalcon\Cache\Frontend\Igbinary :: afterRetrieve() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendIgbinaryAfterRetrieve(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Igbinary - afterRetrieve()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Igbinary/BeforeStoreCest.php b/tests/unit/Cache/Frontend/Igbinary/BeforeStoreCest.php new file mode 100644 index 00000000000..a3db74df753 --- /dev/null +++ b/tests/unit/Cache/Frontend/Igbinary/BeforeStoreCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Igbinary; + +use UnitTester; + +class BeforeStoreCest +{ + /** + * Tests Phalcon\Cache\Frontend\Igbinary :: beforeStore() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendIgbinaryBeforeStore(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Igbinary - beforeStore()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Igbinary/ConstructCest.php b/tests/unit/Cache/Frontend/Igbinary/ConstructCest.php new file mode 100644 index 00000000000..b5fd8db9232 --- /dev/null +++ b/tests/unit/Cache/Frontend/Igbinary/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Igbinary; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Cache\Frontend\Igbinary :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendIgbinaryConstruct(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Igbinary - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Igbinary/GetContentCest.php b/tests/unit/Cache/Frontend/Igbinary/GetContentCest.php new file mode 100644 index 00000000000..488ab44e42c --- /dev/null +++ b/tests/unit/Cache/Frontend/Igbinary/GetContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Igbinary; + +use UnitTester; + +class GetContentCest +{ + /** + * Tests Phalcon\Cache\Frontend\Igbinary :: getContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendIgbinaryGetContent(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Igbinary - getContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Igbinary/GetLifetimeCest.php b/tests/unit/Cache/Frontend/Igbinary/GetLifetimeCest.php new file mode 100644 index 00000000000..36ed3af47cd --- /dev/null +++ b/tests/unit/Cache/Frontend/Igbinary/GetLifetimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Igbinary; + +use UnitTester; + +class GetLifetimeCest +{ + /** + * Tests Phalcon\Cache\Frontend\Igbinary :: getLifetime() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendIgbinaryGetLifetime(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Igbinary - getLifetime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Igbinary/IsBufferingCest.php b/tests/unit/Cache/Frontend/Igbinary/IsBufferingCest.php new file mode 100644 index 00000000000..5112d20f189 --- /dev/null +++ b/tests/unit/Cache/Frontend/Igbinary/IsBufferingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Igbinary; + +use UnitTester; + +class IsBufferingCest +{ + /** + * Tests Phalcon\Cache\Frontend\Igbinary :: isBuffering() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendIgbinaryIsBuffering(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Igbinary - isBuffering()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Igbinary/StartCest.php b/tests/unit/Cache/Frontend/Igbinary/StartCest.php new file mode 100644 index 00000000000..224dbb5bda8 --- /dev/null +++ b/tests/unit/Cache/Frontend/Igbinary/StartCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Igbinary; + +use UnitTester; + +class StartCest +{ + /** + * Tests Phalcon\Cache\Frontend\Igbinary :: start() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendIgbinaryStart(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Igbinary - start()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Igbinary/StopCest.php b/tests/unit/Cache/Frontend/Igbinary/StopCest.php new file mode 100644 index 00000000000..2e5043d1216 --- /dev/null +++ b/tests/unit/Cache/Frontend/Igbinary/StopCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Igbinary; + +use UnitTester; + +class StopCest +{ + /** + * Tests Phalcon\Cache\Frontend\Igbinary :: stop() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendIgbinaryStop(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Igbinary - stop()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Json/AfterRetrieveCest.php b/tests/unit/Cache/Frontend/Json/AfterRetrieveCest.php new file mode 100644 index 00000000000..d9bc69b47aa --- /dev/null +++ b/tests/unit/Cache/Frontend/Json/AfterRetrieveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Json; + +use UnitTester; + +class AfterRetrieveCest +{ + /** + * Tests Phalcon\Cache\Frontend\Json :: afterRetrieve() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendJsonAfterRetrieve(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Json - afterRetrieve()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Json/BeforeStoreCest.php b/tests/unit/Cache/Frontend/Json/BeforeStoreCest.php new file mode 100644 index 00000000000..16533a54485 --- /dev/null +++ b/tests/unit/Cache/Frontend/Json/BeforeStoreCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Json; + +use UnitTester; + +class BeforeStoreCest +{ + /** + * Tests Phalcon\Cache\Frontend\Json :: beforeStore() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendJsonBeforeStore(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Json - beforeStore()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Json/ConstructCest.php b/tests/unit/Cache/Frontend/Json/ConstructCest.php new file mode 100644 index 00000000000..28c080828b5 --- /dev/null +++ b/tests/unit/Cache/Frontend/Json/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Json; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Cache\Frontend\Json :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendJsonConstruct(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Json - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Json/GetContentCest.php b/tests/unit/Cache/Frontend/Json/GetContentCest.php new file mode 100644 index 00000000000..1e484db8870 --- /dev/null +++ b/tests/unit/Cache/Frontend/Json/GetContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Json; + +use UnitTester; + +class GetContentCest +{ + /** + * Tests Phalcon\Cache\Frontend\Json :: getContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendJsonGetContent(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Json - getContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Json/GetLifetimeCest.php b/tests/unit/Cache/Frontend/Json/GetLifetimeCest.php new file mode 100644 index 00000000000..d0f835b2b3a --- /dev/null +++ b/tests/unit/Cache/Frontend/Json/GetLifetimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Json; + +use UnitTester; + +class GetLifetimeCest +{ + /** + * Tests Phalcon\Cache\Frontend\Json :: getLifetime() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendJsonGetLifetime(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Json - getLifetime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Json/IsBufferingCest.php b/tests/unit/Cache/Frontend/Json/IsBufferingCest.php new file mode 100644 index 00000000000..7e417b26c05 --- /dev/null +++ b/tests/unit/Cache/Frontend/Json/IsBufferingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Json; + +use UnitTester; + +class IsBufferingCest +{ + /** + * Tests Phalcon\Cache\Frontend\Json :: isBuffering() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendJsonIsBuffering(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Json - isBuffering()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Json/StartCest.php b/tests/unit/Cache/Frontend/Json/StartCest.php new file mode 100644 index 00000000000..f71f1c31eca --- /dev/null +++ b/tests/unit/Cache/Frontend/Json/StartCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Json; + +use UnitTester; + +class StartCest +{ + /** + * Tests Phalcon\Cache\Frontend\Json :: start() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendJsonStart(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Json - start()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Json/StopCest.php b/tests/unit/Cache/Frontend/Json/StopCest.php new file mode 100644 index 00000000000..4e6008d22d9 --- /dev/null +++ b/tests/unit/Cache/Frontend/Json/StopCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Json; + +use UnitTester; + +class StopCest +{ + /** + * Tests Phalcon\Cache\Frontend\Json :: stop() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendJsonStop(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Json - stop()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Msgpack/AfterRetrieveCest.php b/tests/unit/Cache/Frontend/Msgpack/AfterRetrieveCest.php new file mode 100644 index 00000000000..f944a251075 --- /dev/null +++ b/tests/unit/Cache/Frontend/Msgpack/AfterRetrieveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Msgpack; + +use UnitTester; + +class AfterRetrieveCest +{ + /** + * Tests Phalcon\Cache\Frontend\Msgpack :: afterRetrieve() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendMsgpackAfterRetrieve(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Msgpack - afterRetrieve()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Msgpack/BeforeStoreCest.php b/tests/unit/Cache/Frontend/Msgpack/BeforeStoreCest.php new file mode 100644 index 00000000000..620e0bfbea6 --- /dev/null +++ b/tests/unit/Cache/Frontend/Msgpack/BeforeStoreCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Msgpack; + +use UnitTester; + +class BeforeStoreCest +{ + /** + * Tests Phalcon\Cache\Frontend\Msgpack :: beforeStore() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendMsgpackBeforeStore(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Msgpack - beforeStore()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Msgpack/ConstructCest.php b/tests/unit/Cache/Frontend/Msgpack/ConstructCest.php new file mode 100644 index 00000000000..359d456fb91 --- /dev/null +++ b/tests/unit/Cache/Frontend/Msgpack/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Msgpack; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Cache\Frontend\Msgpack :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendMsgpackConstruct(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Msgpack - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Msgpack/GetContentCest.php b/tests/unit/Cache/Frontend/Msgpack/GetContentCest.php new file mode 100644 index 00000000000..43082a3da63 --- /dev/null +++ b/tests/unit/Cache/Frontend/Msgpack/GetContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Msgpack; + +use UnitTester; + +class GetContentCest +{ + /** + * Tests Phalcon\Cache\Frontend\Msgpack :: getContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendMsgpackGetContent(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Msgpack - getContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Msgpack/GetLifetimeCest.php b/tests/unit/Cache/Frontend/Msgpack/GetLifetimeCest.php new file mode 100644 index 00000000000..8ce00abee89 --- /dev/null +++ b/tests/unit/Cache/Frontend/Msgpack/GetLifetimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Msgpack; + +use UnitTester; + +class GetLifetimeCest +{ + /** + * Tests Phalcon\Cache\Frontend\Msgpack :: getLifetime() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendMsgpackGetLifetime(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Msgpack - getLifetime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Msgpack/IsBufferingCest.php b/tests/unit/Cache/Frontend/Msgpack/IsBufferingCest.php new file mode 100644 index 00000000000..d2f54fa5ec5 --- /dev/null +++ b/tests/unit/Cache/Frontend/Msgpack/IsBufferingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Msgpack; + +use UnitTester; + +class IsBufferingCest +{ + /** + * Tests Phalcon\Cache\Frontend\Msgpack :: isBuffering() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendMsgpackIsBuffering(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Msgpack - isBuffering()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Msgpack/StartCest.php b/tests/unit/Cache/Frontend/Msgpack/StartCest.php new file mode 100644 index 00000000000..5b7ac2e359e --- /dev/null +++ b/tests/unit/Cache/Frontend/Msgpack/StartCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Msgpack; + +use UnitTester; + +class StartCest +{ + /** + * Tests Phalcon\Cache\Frontend\Msgpack :: start() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendMsgpackStart(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Msgpack - start()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Msgpack/StopCest.php b/tests/unit/Cache/Frontend/Msgpack/StopCest.php new file mode 100644 index 00000000000..db69827aa55 --- /dev/null +++ b/tests/unit/Cache/Frontend/Msgpack/StopCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Msgpack; + +use UnitTester; + +class StopCest +{ + /** + * Tests Phalcon\Cache\Frontend\Msgpack :: stop() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendMsgpackStop(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Msgpack - stop()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/None/AfterRetrieveCest.php b/tests/unit/Cache/Frontend/None/AfterRetrieveCest.php new file mode 100644 index 00000000000..86631c78938 --- /dev/null +++ b/tests/unit/Cache/Frontend/None/AfterRetrieveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\None; + +use UnitTester; + +class AfterRetrieveCest +{ + /** + * Tests Phalcon\Cache\Frontend\None :: afterRetrieve() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendNoneAfterRetrieve(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\None - afterRetrieve()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/None/BeforeStoreCest.php b/tests/unit/Cache/Frontend/None/BeforeStoreCest.php new file mode 100644 index 00000000000..8a1dda82f4a --- /dev/null +++ b/tests/unit/Cache/Frontend/None/BeforeStoreCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\None; + +use UnitTester; + +class BeforeStoreCest +{ + /** + * Tests Phalcon\Cache\Frontend\None :: beforeStore() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendNoneBeforeStore(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\None - beforeStore()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/None/GetContentCest.php b/tests/unit/Cache/Frontend/None/GetContentCest.php new file mode 100644 index 00000000000..6d9fbb5ab16 --- /dev/null +++ b/tests/unit/Cache/Frontend/None/GetContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\None; + +use UnitTester; + +class GetContentCest +{ + /** + * Tests Phalcon\Cache\Frontend\None :: getContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendNoneGetContent(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\None - getContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/None/GetLifetimeCest.php b/tests/unit/Cache/Frontend/None/GetLifetimeCest.php new file mode 100644 index 00000000000..c7c6c85ca78 --- /dev/null +++ b/tests/unit/Cache/Frontend/None/GetLifetimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\None; + +use UnitTester; + +class GetLifetimeCest +{ + /** + * Tests Phalcon\Cache\Frontend\None :: getLifetime() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendNoneGetLifetime(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\None - getLifetime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/None/IsBufferingCest.php b/tests/unit/Cache/Frontend/None/IsBufferingCest.php new file mode 100644 index 00000000000..12bf33fc06e --- /dev/null +++ b/tests/unit/Cache/Frontend/None/IsBufferingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\None; + +use UnitTester; + +class IsBufferingCest +{ + /** + * Tests Phalcon\Cache\Frontend\None :: isBuffering() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendNoneIsBuffering(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\None - isBuffering()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/None/StartCest.php b/tests/unit/Cache/Frontend/None/StartCest.php new file mode 100644 index 00000000000..aa9a1dae092 --- /dev/null +++ b/tests/unit/Cache/Frontend/None/StartCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\None; + +use UnitTester; + +class StartCest +{ + /** + * Tests Phalcon\Cache\Frontend\None :: start() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendNoneStart(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\None - start()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/None/StopCest.php b/tests/unit/Cache/Frontend/None/StopCest.php new file mode 100644 index 00000000000..a3937a23364 --- /dev/null +++ b/tests/unit/Cache/Frontend/None/StopCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\None; + +use UnitTester; + +class StopCest +{ + /** + * Tests Phalcon\Cache\Frontend\None :: stop() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendNoneStop(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\None - stop()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Output/AfterRetrieveCest.php b/tests/unit/Cache/Frontend/Output/AfterRetrieveCest.php new file mode 100644 index 00000000000..bcd70e1dd5f --- /dev/null +++ b/tests/unit/Cache/Frontend/Output/AfterRetrieveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Output; + +use UnitTester; + +class AfterRetrieveCest +{ + /** + * Tests Phalcon\Cache\Frontend\Output :: afterRetrieve() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendOutputAfterRetrieve(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Output - afterRetrieve()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Output/BeforeStoreCest.php b/tests/unit/Cache/Frontend/Output/BeforeStoreCest.php new file mode 100644 index 00000000000..2f11d2276ae --- /dev/null +++ b/tests/unit/Cache/Frontend/Output/BeforeStoreCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Output; + +use UnitTester; + +class BeforeStoreCest +{ + /** + * Tests Phalcon\Cache\Frontend\Output :: beforeStore() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendOutputBeforeStore(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Output - beforeStore()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Output/ConstructCest.php b/tests/unit/Cache/Frontend/Output/ConstructCest.php new file mode 100644 index 00000000000..6177b81f5b7 --- /dev/null +++ b/tests/unit/Cache/Frontend/Output/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Output; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Cache\Frontend\Output :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendOutputConstruct(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Output - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Output/GetContentCest.php b/tests/unit/Cache/Frontend/Output/GetContentCest.php new file mode 100644 index 00000000000..2801ecaba6d --- /dev/null +++ b/tests/unit/Cache/Frontend/Output/GetContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Output; + +use UnitTester; + +class GetContentCest +{ + /** + * Tests Phalcon\Cache\Frontend\Output :: getContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendOutputGetContent(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Output - getContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Output/GetLifetimeCest.php b/tests/unit/Cache/Frontend/Output/GetLifetimeCest.php new file mode 100644 index 00000000000..e470397f368 --- /dev/null +++ b/tests/unit/Cache/Frontend/Output/GetLifetimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Output; + +use UnitTester; + +class GetLifetimeCest +{ + /** + * Tests Phalcon\Cache\Frontend\Output :: getLifetime() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendOutputGetLifetime(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Output - getLifetime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Output/IsBufferingCest.php b/tests/unit/Cache/Frontend/Output/IsBufferingCest.php new file mode 100644 index 00000000000..fd727c5b829 --- /dev/null +++ b/tests/unit/Cache/Frontend/Output/IsBufferingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Output; + +use UnitTester; + +class IsBufferingCest +{ + /** + * Tests Phalcon\Cache\Frontend\Output :: isBuffering() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendOutputIsBuffering(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Output - isBuffering()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Output/StartCest.php b/tests/unit/Cache/Frontend/Output/StartCest.php new file mode 100644 index 00000000000..d2863f48bc9 --- /dev/null +++ b/tests/unit/Cache/Frontend/Output/StartCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Output; + +use UnitTester; + +class StartCest +{ + /** + * Tests Phalcon\Cache\Frontend\Output :: start() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendOutputStart(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Output - start()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Frontend/Output/StopCest.php b/tests/unit/Cache/Frontend/Output/StopCest.php new file mode 100644 index 00000000000..2053182048e --- /dev/null +++ b/tests/unit/Cache/Frontend/Output/StopCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Frontend\Output; + +use UnitTester; + +class StopCest +{ + /** + * Tests Phalcon\Cache\Frontend\Output :: stop() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheFrontendOutputStop(UnitTester $I) + { + $I->wantToTest("Cache\Frontend\Output - stop()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Multiple/ConstructCest.php b/tests/unit/Cache/Multiple/ConstructCest.php new file mode 100644 index 00000000000..9deee5094b9 --- /dev/null +++ b/tests/unit/Cache/Multiple/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Multiple; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Cache\Multiple :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheMultipleConstruct(UnitTester $I) + { + $I->wantToTest("Cache\Multiple - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Multiple/DeleteCest.php b/tests/unit/Cache/Multiple/DeleteCest.php new file mode 100644 index 00000000000..d0ac72a5f61 --- /dev/null +++ b/tests/unit/Cache/Multiple/DeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Multiple; + +use UnitTester; + +class DeleteCest +{ + /** + * Tests Phalcon\Cache\Multiple :: delete() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheMultipleDelete(UnitTester $I) + { + $I->wantToTest("Cache\Multiple - delete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Multiple/ExistsCest.php b/tests/unit/Cache/Multiple/ExistsCest.php new file mode 100644 index 00000000000..7d4b45dc265 --- /dev/null +++ b/tests/unit/Cache/Multiple/ExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Multiple; + +use UnitTester; + +class ExistsCest +{ + /** + * Tests Phalcon\Cache\Multiple :: exists() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheMultipleExists(UnitTester $I) + { + $I->wantToTest("Cache\Multiple - exists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Multiple/FlushCest.php b/tests/unit/Cache/Multiple/FlushCest.php new file mode 100644 index 00000000000..877b8ea083a --- /dev/null +++ b/tests/unit/Cache/Multiple/FlushCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Multiple; + +use UnitTester; + +class FlushCest +{ + /** + * Tests Phalcon\Cache\Multiple :: flush() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheMultipleFlush(UnitTester $I) + { + $I->wantToTest("Cache\Multiple - flush()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Multiple/GetCest.php b/tests/unit/Cache/Multiple/GetCest.php new file mode 100644 index 00000000000..f7a2f70dc66 --- /dev/null +++ b/tests/unit/Cache/Multiple/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Multiple; + +use UnitTester; + +class GetCest +{ + /** + * Tests Phalcon\Cache\Multiple :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheMultipleGet(UnitTester $I) + { + $I->wantToTest("Cache\Multiple - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Multiple/PushCest.php b/tests/unit/Cache/Multiple/PushCest.php new file mode 100644 index 00000000000..7177ef09f13 --- /dev/null +++ b/tests/unit/Cache/Multiple/PushCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Multiple; + +use UnitTester; + +class PushCest +{ + /** + * Tests Phalcon\Cache\Multiple :: push() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheMultiplePush(UnitTester $I) + { + $I->wantToTest("Cache\Multiple - push()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Multiple/SaveCest.php b/tests/unit/Cache/Multiple/SaveCest.php new file mode 100644 index 00000000000..009da565356 --- /dev/null +++ b/tests/unit/Cache/Multiple/SaveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Multiple; + +use UnitTester; + +class SaveCest +{ + /** + * Tests Phalcon\Cache\Multiple :: save() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheMultipleSave(UnitTester $I) + { + $I->wantToTest("Cache\Multiple - save()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cache/Multiple/StartCest.php b/tests/unit/Cache/Multiple/StartCest.php new file mode 100644 index 00000000000..8cd397cdb7f --- /dev/null +++ b/tests/unit/Cache/Multiple/StartCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Cache\Multiple; + +use UnitTester; + +class StartCest +{ + /** + * Tests Phalcon\Cache\Multiple :: start() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cacheMultipleStart(UnitTester $I) + { + $I->wantToTest("Cache\Multiple - start()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Cli/ConsoleTest.php b/tests/unit/Cli/ConsoleTest.php deleted file mode 100644 index 83b430c873d..00000000000 --- a/tests/unit/Cli/ConsoleTest.php +++ /dev/null @@ -1,585 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Cli - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ConsoleTest extends UnitTest -{ - public function testConsoles() - { - $this->specify( - "CLI Console doesn't work with typical parameters", - function () { - $di = new CliFactoryDefault(); - - $di->set( - 'data', - function () { - return "data"; - } - ); - - $console = new Console(); - $console->setDI($di); - $dispatcher = $console->getDI()->getShared('dispatcher'); - - $console->handle([]); - expect($dispatcher->getTaskName())->equals('main'); - expect($dispatcher->getActionName())->equals('main'); - expect($dispatcher->getParams())->equals([]); - expect($dispatcher->getReturnedValue())->equals('mainAction'); - - $console->handle( - [ - 'task' => 'echo', - ] - ); - - expect($dispatcher->getTaskName())->equals('echo'); - expect($dispatcher->getActionName())->equals('main'); - expect($dispatcher->getParams())->equals([]); - expect($dispatcher->getReturnedValue())->equals('echoMainAction'); - - $console->handle( - [ - 'task' => 'main', - 'action' => 'hello' - ] - ); - expect($dispatcher->getTaskName())->equals('main'); - expect($dispatcher->getActionName())->equals('hello'); - expect($dispatcher->getParams())->equals([]); - expect($dispatcher->getReturnedValue())->equals('Hello !'); - - $console->handle( - [ - 'task' => 'main', - 'action' => 'hello', - 'World', - '######' - ] - ); - expect($dispatcher->getTaskName())->equals('main'); - expect($dispatcher->getActionName())->equals('hello'); - expect($dispatcher->getParams())->equals(array('World', '######')); - expect($dispatcher->getReturnedValue())->equals('Hello World######'); - } - ); - } - - /** - * @test - * - * @expectedException \Phalcon\Cli\Console\Exception - * @expectedExceptionMessage Module 'devtools' isn't registered in the console container - */ - public function shouldThrowExceptionWhenModuleDoesNotExists() - { - $this->specify( - "CLI Console doesn't throw exception when module isn't found", - function () { - $di = new CliFactoryDefault(); - - $di->set( - 'data', - function () { - return "data"; - } - ); - - $console = new Console(); - $console->setDI($di); - $console->getDI()->getShared('dispatcher'); - - // testing module - $console->handle( - [ - 'module' => 'devtools', - 'task' => 'main', - 'action' => 'hello', - 'World', - '######' - ] - ); - } - ); - } - - /** - * @test - * - * @expectedException \Phalcon\Cli\Dispatcher\Exception - * @expectedExceptionMessage Dummy\MainTask handler class cannot be loaded - */ - public function shouldThrowExceptionWhenTaskDoesNotExists() - { - $this->specify( - "CLI Console doesn't throw exception when task isn't found", - function () { - $di = new CliFactoryDefault(); - - $console = new Console(); - $console->setDI($di); - $dispatcher = $console->getDI()->getShared('dispatcher'); - - $dispatcher->setDefaultNamespace('Dummy\\'); - - // testing namespace - $console->handle( - [ - 'task' => 'main', - 'action' => 'hello', - 'World', - '!' - ] - ); - } - ); - } - - public function testModules() - { - $this->specify( - "CLI Console doesn't work with modules", - function () { - $di = new Di(); - - $di->set( - 'data', - function () { - return "data"; - } - ); - - $console = new Console(); - $console->setDI($di); - - $expected = [ - 'devtools'=> [ - 'className' => 'dummy', - 'path' => 'dummy_file' - ] - ]; - - $console->registerModules($expected); - - expect($console->getModules())->equals($expected); - - $userModules = [ - 'front'=> [ - 'className' => 'front', - 'path' => 'front_file' - ], - 'worker' => [ - 'className' => 'worker', - 'path' => 'worker_file' - ], - ]; - - $expected = [ - 'devtools'=> [ - 'className' => 'dummy', - 'path' => 'dummy_file' - ], - 'front' => [ - 'className' => 'front', - 'path' => 'front_file' - ], - 'worker' => [ - 'className' => 'worker', - 'path'=>'worker_file' - ], - ]; - - $console->registerModules($userModules, true); - - expect($console->getModules())->equals($expected); - } - ); - } - - public function testIssue787() - { - $this->specify( - "Initializer isn't invoked if has been dispatcher call before", - function () { - $di = new CliFactoryDefault(); - - $di->setShared( - 'dispatcher', - function () use ($di) { - $dispatcher = new Dispatcher(); - - $dispatcher->setDI($di); - - return $dispatcher; - } - ); - - $console = new Console(); - - $console->setDI($di); - - $console->handle( - array( - 'task' => 'issue787', - 'action' => 'main', - ) - ); - - expect(class_exists('Issue787Task'))->true(); - - $actual = \Issue787Task::$output; - $expected = "beforeExecuteRoute" . PHP_EOL . "initialize" . PHP_EOL; - expect($actual)->equals($expected); - } - ); - } - - public function testArgumentArray() - { - $this->specify( - "CLI Console doesn't work with arguments as an array", - function () { - $di = new CliFactoryDefault(); - - $console = new Console(); - $console->setDI($di); - $dispatcher = $console->getDI()->getShared('dispatcher'); - - $console->setArgument(array( - 'php', - ), false)->handle(); - expect($dispatcher->getTaskName())->equals('main'); - expect($dispatcher->getActionName())->equals('main'); - expect($dispatcher->getParams())->equals([]); - expect($dispatcher->getReturnedValue())->equals('mainAction'); - - $console->setArgument(array( - 'php', - 'echo' - ), false)->handle(); - expect($dispatcher->getTaskName())->equals('echo'); - expect($dispatcher->getActionName())->equals('main'); - expect($dispatcher->getParams())->equals([]); - expect($dispatcher->getReturnedValue())->equals('echoMainAction'); - - $console->setArgument(array( - 'php', - 'main', - 'hello' - ), false)->handle(); - expect($dispatcher->getTaskName())->equals('main'); - expect($dispatcher->getActionName())->equals('hello'); - expect($dispatcher->getParams())->equals([]); - expect($dispatcher->getReturnedValue())->equals('Hello !'); - - $console->setArgument(array( - 'php', - 'main', - 'hello', - 'World', - '######' - ), false)->handle(); - expect($dispatcher->getTaskName())->equals('main'); - expect($dispatcher->getActionName())->equals('hello'); - expect($dispatcher->getParams())->equals(array('World', '######')); - expect($dispatcher->getReturnedValue())->equals('Hello World######'); - } - ); - } - - public function testArgumentNoShift() - { - $this->specify( - "CLI Console doesn't work with unshifted arguments", - function () { - $di = new CliFactoryDefault(); - - $console = new Console(); - $console->setDI($di); - $dispatcher = $console->getDI()->getShared('dispatcher'); - - $console->setArgument([], false, false)->handle(); - expect($dispatcher->getTaskName())->equals('main'); - expect($dispatcher->getActionName())->equals('main'); - expect($dispatcher->getParams())->equals([]); - expect($dispatcher->getReturnedValue())->equals('mainAction'); - - $console->setArgument(array( - 'echo' - ), false, false)->handle(); - expect($dispatcher->getTaskName())->equals('echo'); - expect($dispatcher->getActionName())->equals('main'); - expect($dispatcher->getParams())->equals([]); - expect($dispatcher->getReturnedValue())->equals('echoMainAction'); - - $console->setArgument(array( - 'main', - 'hello' - ), false, false)->handle(); - expect($dispatcher->getTaskName())->equals('main'); - expect($dispatcher->getActionName())->equals('hello'); - expect($dispatcher->getParams())->equals([]); - expect($dispatcher->getReturnedValue())->equals('Hello !'); - - $console->setArgument(array( - 'main', - 'hello', - 'World', - '######' - ), false, false)->handle(); - expect($dispatcher->getTaskName())->equals('main'); - expect($dispatcher->getActionName())->equals('hello'); - expect($dispatcher->getParams())->equals(array('World', '######')); - expect($dispatcher->getReturnedValue())->equals('Hello World######'); - } - ); - } - - /** - * @test - * - * @expectedException \Phalcon\Cli\Dispatcher\Exception - * @expectedExceptionMessage Dummy\MainTask handler class cannot be loaded - */ - public function shouldThrowExceptionWithUnshiftedArguments() - { - $this->specify( - "CLI Console doesn't work with unshifted arguments (2)", - function () { - $di = new CliFactoryDefault(); - - $console = new Console(); - $console->setDI($di); - $dispatcher = $console->getDI()->getShared('dispatcher'); - - // testing namespace - $dispatcher->setDefaultNamespace('Dummy\\'); - - $console->setArgument(array( - 'main', - 'hello', - 'World', - '!' - ), false, false); - - $console->handle(); - } - ); - } - - /** - * @test - * - * @expectedException \Phalcon\Cli\Dispatcher\Exception - * @expectedExceptionMessage Dummy\MainTask handler class cannot be loaded - */ - public function shouldThrowExceptionWithArgumentsAsAnArray() - { - $this->specify( - "CLI Console doesn't work with arguments as an array (2)", - function () { - $di = new CliFactoryDefault(); - - $console = new Console(); - $console->setDI($di); - $dispatcher = $console->getDI()->getShared('dispatcher'); - - // testing namespace - $dispatcher->setDefaultNamespace('Dummy\\'); - - $console->setArgument(array( - 'php', - 'main', - 'hello', - 'World', - '!' - ), false); - - $console->handle(); - } - ); - } - - /** - * @test - * - * @expectedException \Phalcon\Cli\Dispatcher\Exception - * @expectedExceptionMessage Dummy\MainTask handler class cannot be loaded - */ - public function shouldThrowExceptionWithArguments() - { - $this->specify( - "CLI Console doesn't work with arguments (2)", - function () { - $di = new CliFactoryDefault(); - - $di->setShared('router', function () { - $router = new Router(true); - return $router; - }); - - $console = new Console(); - $console->setDI($di); - $dispatcher = $console->getDI()->getShared('dispatcher'); - - // testing namespace - $dispatcher->setDefaultNamespace('Dummy\\'); - - $console->setArgument(array( - 'php', - 'main', - 'hello', - 'World', - '!' - )); - - $console->handle(); - } - ); - } - - public function testArgumentRouter() - { - $this->specify( - "CLI Console doesn't work with arguments", - function () { - $di = new CliFactoryDefault(); - - $di->setShared( - 'router', - function () { - $router = new Router(true); - - return $router; - } - ); - - $console = new Console(); - $console->setDI($di); - $dispatcher = $console->getDI()->getShared('dispatcher'); - - $console->setArgument(array( - 'php' - ))->handle(); - expect($dispatcher->getTaskName())->equals('main'); - expect($dispatcher->getActionName())->equals('main'); - expect($dispatcher->getParams())->equals([]); - expect($dispatcher->getReturnedValue())->equals('mainAction'); - - $console->setArgument(array( - 'php', - 'echo' - ))->handle(); - expect($dispatcher->getTaskName())->equals('echo'); - expect($dispatcher->getActionName())->equals('main'); - expect($dispatcher->getParams())->equals([]); - expect($dispatcher->getReturnedValue())->equals('echoMainAction'); - - $console->setArgument(array( - 'php', - 'main', - 'hello' - ))->handle(); - expect($dispatcher->getTaskName())->equals('main'); - expect($dispatcher->getActionName())->equals('hello'); - expect($dispatcher->getParams())->equals([]); - expect($dispatcher->getReturnedValue())->equals('Hello !'); - - $console->setArgument(array( - 'php', - 'main', - 'hello', - 'World', - '######' - ))->handle(); - expect($dispatcher->getTaskName())->equals('main'); - expect($dispatcher->getActionName())->equals('hello'); - expect($dispatcher->getParams())->equals(array('World', '######')); - expect($dispatcher->getReturnedValue())->equals('Hello World######'); - } - ); - } - - public function testArgumentOptions() - { - $this->specify( - "CLI Console doesn't work with options set in arguments", - function () { - $di = new CliFactoryDefault(); - - $di->setShared( - 'router', - function () { - $router = new Router(true); - - return $router; - } - ); - - $console = new Console(); - $console->setDI($di); - $dispatcher = $console->getDI()->getShared('dispatcher'); - - $console->setArgument(array( - 'php', - '-opt1', - '--option2', - '--option3=hoge', - 'main', - 'hello', - 'World', - '######' - ))->handle(); - expect($dispatcher->getTaskName())->equals('main'); - expect($dispatcher->getActionName())->equals('hello'); - expect($dispatcher->getParams())->equals(array('World', '######')); - expect($dispatcher->getReturnedValue())->equals('Hello World######'); - expect($dispatcher->getOptions())->equals(array('opt1' => true, 'option2' => true, 'option3' => 'hoge')); - expect($dispatcher->hasOption('opt1'))->true(); - expect($dispatcher->hasOption('opt2'))->false(); - - $console->setArgument(array( - 'php', - 'main', - '-opt1', - 'hello', - '--option2', - 'World', - '--option3=hoge', - '######' - ))->handle(); - expect($dispatcher->getTaskName())->equals('main'); - expect($dispatcher->getActionName())->equals('hello'); - expect($dispatcher->getParams())->equals(array('World', '######')); - expect($dispatcher->getReturnedValue())->equals('Hello World######'); - expect($dispatcher->getOptions())->equals(array('opt1' => true, 'option2' => true, 'option3' => 'hoge')); - expect($dispatcher->getOption('option3'))->equals('hoge'); - } - ); - } -} diff --git a/tests/unit/Cli/DispatcherTest.php b/tests/unit/Cli/DispatcherTest.php deleted file mode 100644 index 26133a98af2..00000000000 --- a/tests/unit/Cli/DispatcherTest.php +++ /dev/null @@ -1,150 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Cli - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class DispatcherTest extends UnitTest -{ - public function testDispatcher() - { - $this->specify( - "CLI Dispatcher doesn't work with typical parameters", - function () { - $di = new CliFactoryDefault(); - - $di->set( - 'data', - function () { - return "data"; - } - ); - - $dispatcher = new Dispatcher(); - $dispatcher->setDI($di); - $dispatcher->dispatch(); - expect($dispatcher->getTaskName())->equals('main'); - expect($dispatcher->getActionName())->equals('main'); - expect($dispatcher->getParams())->equals([]); - expect($dispatcher->getReturnedValue())->equals('mainAction'); - - $dispatcher->setTaskName('echo'); - $dispatcher->dispatch(); - expect($dispatcher->getTaskName())->equals('echo'); - expect($dispatcher->getActionName())->equals('main'); - expect($dispatcher->getParams())->equals([]); - expect($dispatcher->getReturnedValue())->equals('echoMainAction'); - - $dispatcher->setTaskName('main'); - $dispatcher->setActionName('hello'); - $dispatcher->dispatch(); - expect($dispatcher->getTaskName())->equals('main'); - expect($dispatcher->getActionName())->equals('hello'); - expect($dispatcher->getParams())->equals([]); - expect($dispatcher->getReturnedValue())->equals('Hello !'); - - $dispatcher->setActionName('hello'); - $dispatcher->setParams(array('World', '######')); - $dispatcher->dispatch(); - expect($dispatcher->getTaskName())->equals('main'); - expect($dispatcher->getActionName())->equals('hello'); - expect($dispatcher->getParams())->equals(array('World', '######')); - expect($dispatcher->getReturnedValue())->equals('Hello World######'); - - $dispatcher->setActionName('hello'); - $dispatcher->setParams(array('hello' => 'World', 'goodbye' => 'Everybody')); - $dispatcher->dispatch(); - expect($dispatcher->hasParam('hello'))->true(); - expect($dispatcher->hasParam('goodbye'))->true(); - expect($dispatcher->hasParam('salutations'))->false(); - - // testing namespace - try { - $dispatcher->setDefaultNamespace('Dummy\\'); - $dispatcher->setTaskName('main'); - $dispatcher->setActionName('hello'); - $dispatcher->setParams(array('World')); - $dispatcher->dispatch(); - expect($dispatcher->getTaskName())->equals('main'); - expect($dispatcher->getActionName())->equals('hello'); - expect($dispatcher->getParams())->equals(array('World')); - expect($dispatcher->getReturnedValue())->equals('Hello World!'); - } catch (\Exception $e) { - expect($e->getMessage())->equals('Dummy\MainTask handler class cannot be loaded'); - } - } - ); - } - - public function testCliParameters() - { - $this->specify( - "CLI Dispatcher doesn't work with custom parameters", - function () { - $di = new CliFactoryDefault(); - - $dispatcher = new Dispatcher(); - - $di->setShared("dispatcher", $dispatcher); - - $dispatcher->setDI($di); - - // Test $this->dispatcher->getParams() - $dispatcher->setTaskName('params'); - $dispatcher->setActionName('params'); - $dispatcher->setParams(array('This', 'Is', 'An', 'Example')); - $dispatcher->dispatch(); - expect($dispatcher->getReturnedValue())->equals('$params is the same as $this->dispatcher->getParams()'); - - // Test $this->dispatcher->getParam() - $dispatcher->setTaskName('params'); - $dispatcher->setActionName('param'); - $dispatcher->setParams(array('This', 'Is', 'An', 'Example')); - $dispatcher->dispatch(); - expect($dispatcher->getReturnedValue())->equals('$param[0] is the same as $this->dispatcher->getParam(0)'); - } - ); - } - - public function testCallActionMethod() - { - $this->specify( - "CLI Dispatcher's callActionMethod doesn't work as expected", - function () { - $di = new CliFactoryDefault(); - - $dispatcher = new Dispatcher(); - - $di->setShared("dispatcher", $dispatcher); - - $dispatcher->setDI($di); - - $mainTask = new \MainTask(); - $mainTask->setDI($di); - - expect($dispatcher->callActionMethod($mainTask, 'mainAction', []))->equals('mainAction'); - expect($dispatcher->callActionMethod($mainTask, 'helloAction', ['World']))->equals('Hello World!'); - expect($dispatcher->callActionMethod($mainTask, 'helloAction', ['World', '.']))->equals('Hello World.'); - } - ); - } -} diff --git a/tests/unit/Cli/RouterTest.php b/tests/unit/Cli/RouterTest.php deleted file mode 100644 index 8b2894785bc..00000000000 --- a/tests/unit/Cli/RouterTest.php +++ /dev/null @@ -1,814 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Cli - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class RouterTest extends UnitTest -{ - public function testRouters() - { - $this->specify( - "CLI Router doesn't match the correct paths", - function () { - $di = new CliFactoryDefault(); - - $di->set( - "data", - function () { - return "data"; - } - ); - - $router = new Router(); - - $router->handle([]); - expect($router->getModuleName())->null(); - expect($router->getTaskName())->null(); - expect($router->getActionName())->null(); - expect($router->getParams())->equals([]); - - $router->handle( - [ - "task" => "main", - ] - ); - expect($router->getModuleName())->null(); - expect($router->getTaskName())->equals("main"); - expect($router->getActionName())->null(); - expect($router->getParams())->equals([]); - - $router->handle( - [ - "task" => "echo", - ] - ); - expect($router->getModuleName())->null(); - expect($router->getTaskName())->equals("echo"); - expect($router->getActionName())->null(); - expect($router->getParams())->equals([]); - - $router->handle( - [ - "task" => "main", - "action" => "hello", - ] - ); - expect($router->getModuleName())->null(); - expect($router->getTaskName())->equals("main"); - expect($router->getActionName())->equals("hello"); - expect($router->getParams())->equals([]); - - $router->handle( - [ - "task" => "main", - "action" => "hello", - "arg1", - "arg2", - ] - ); - expect($router->getModuleName())->null(); - expect($router->getTaskName())->equals("main"); - expect($router->getActionName())->equals("hello"); - expect($router->getParams())->equals(["arg1", "arg2"]); - - $router->handle( - [ - "module" => "devtools", - "task" => "main", - "action" => "hello", - "arg1", - "arg2", - ] - ); - expect($router->getModuleName())->equals("devtools"); - expect($router->getTaskName())->equals("main"); - expect($router->getActionName())->equals("hello"); - expect($router->getParams())->equals(["arg1", "arg2"]); - - $router->handle( - [ - "module" => "devtools", - "task" => "echo", - "action" => "hello", - "arg1", - "arg2", - ] - ); - expect($router->getModuleName())->equals("devtools"); - expect($router->getTaskName())->equals("echo"); - expect($router->getActionName())->equals("hello"); - expect($router->getParams())->equals(["arg1", "arg2"]); - } - ); - } - - private function _runTest($router, $test) - { - $router->handle($test['uri']); - expect($router->getModuleName())->equals($test['module']); - expect($router->getTaskName())->equals($test['task']); - expect($router->getActionName())->equals($test['action']); - expect($router->getParams())->equals($test['params']); - } - - public function testRouter() - { - $this->specify( - "CLI Router doesn't work match correct routes", - function ($test) { - Route::reset(); - - $router = new Router(); - - $router->add(' ', array( - 'module' => 'devtools', - 'task' => 'main', - 'action' => 'hello', - )); - - $router->add('system :task a :action :params', array( - 'task' => 1, - 'action' => 2, - 'params' => 3, - )); - - $router->add('([a-z]{2}) :task', array( - 'task' => 2, - 'action' => 'index', - 'language' => 1 - )); - - $router->add('admin :task :action :int', array( - 'module' => 'admin', - 'task' => 1, - 'action' => 2, - 'id' => 3 - )); - - $router->add('posts ([0-9]{4}) ([0-9]{2}) ([0-9]{2}) :params', array( - 'task' => 'posts', - 'action' => 'show', - 'year' => 1, - 'month' => 2, - 'day' => 3, - 'params' => 4, - )); - - $router->add('manual ([a-z]{2}) ([a-z\.]+)\.txt', array( - 'task' => 'manual', - 'action' => 'show', - 'language' => 1, - 'file' => 2 - )); - - $router->add('named-manual {language:([a-z]{2})} {file:[a-z\.]+}\.txt', array( - 'task' => 'manual', - 'action' => 'show', - )); - - $router->add('very static route', array( - 'task' => 'static', - 'action' => 'route' - )); - - $router->add("feed {lang:[a-z]+} blog {blog:[a-z\-]+}\.{type:[a-z\-]+}", "Feed::get"); - - $router->add("posts {year:[0-9]+} s {title:[a-z\-]+}", "Posts::show"); - - $router->add("posts delete {id}", "Posts::delete"); - - $router->add("show {id:video([0-9]+)} {title:[a-z\-]+}", "Videos::show"); - - $this->_runTest($router, $test); - }, - [ - "examples" => array( - [ - array( - 'uri' => '', - 'module' => null, - 'task' => null, - 'action' => null, - 'params' => array() - ) - ], - [ - array( - 'uri' => ' ', - 'module' => 'devtools', - 'task' => 'main', - 'action' => 'hello', - 'params' => array() - ) - ], - [ - array( - 'uri' => 'documentation index hellao aaadpqñda bbbAdld cc-ccc', - 'module' => null, - 'task' => 'documentation', - 'action' => 'index', - 'params' => array('hellao', 'aaadpqñda', 'bbbAdld', 'cc-ccc') - ) - ], - [ - array( - 'uri' => ' documentation index', - 'module' => null, - 'task' => 'documentation', - 'action' => 'index', - 'params' => array() - ) - ], - [ - array( - 'uri' => 'documentation index ', - 'module' => null, - 'task' => 'documentation', - 'action' => 'index', - 'params' => array() - ) - ], - [ - array( - 'uri' => 'documentation index', - 'module' => null, - 'task' => 'documentation', - 'action' => 'index', - 'params' => array() - ) - ], - [ - array( - 'uri' => 'documentation ', - 'module' => null, - 'task' => 'documentation', - 'action' => null, - 'params' => array() - ) - ], - [ - array( - 'uri' => 'system admin a edit hellao aaadp', - 'module' => null, - 'task' => 'admin', - 'action' => 'edit', - 'params' => array('hellao', 'aaadp') - ) - ], - [ - array( - 'uri' => 'es news', - 'module' => null, - 'task' => 'news', - 'action' => 'index', - 'params' => array('language' => 'es') - ) - ], - [ - array( - 'uri' => 'admin posts edit 100', - 'module' => 'admin', - 'task' => 'posts', - 'action' => 'edit', - 'params' => array('id' => 100) - ) - ], - [ - array( - 'uri' => 'posts 2010 02 10 title content', - 'module' => null, - 'task' => 'posts', - 'action' => 'show', - 'params' => array( - 'year' => '2010', - 'month' => '02', - 'day' => '10', - 0 => 'title', - 1 => 'content', - ) - ) - ], - [ - array( - 'uri' => 'manual en translate.adapter.txt', - 'module' => null, - 'task' => 'manual', - 'action' => 'show', - 'params' => array('language' => 'en', 'file' => 'translate.adapter') - ) - ], - [ - array( - 'uri' => 'named-manual en translate.adapter.txt', - 'module' => null, - 'task' => 'manual', - 'action' => 'show', - 'params' => array('language' => 'en', 'file' => 'translate.adapter') - ) - ], - [ - array( - 'uri' => 'posts 1999 s le-nice-title', - 'module' => null, - 'task' => 'posts', - 'action' => 'show', - 'params' => array('year' => '1999', 'title' => 'le-nice-title') - ) - ], - [ - array( - 'uri' => 'feed fr blog diaporema.json', - 'module' => null, - 'task' => 'feed', - 'action' => 'get', - 'params' => array('lang' => 'fr', 'blog' => 'diaporema', 'type' => 'json') - ) - ], - [ - array( - 'uri' => 'posts delete 150', - 'module' => null, - 'task' => 'posts', - 'action' => 'delete', - 'params' => array('id' => '150') - ) - ], - [ - array( - 'uri' => 'very static route', - 'module' => null, - 'task' => 'static', - 'action' => 'route', - 'params' => array() - ) - ], - ) - ] - ); - } - - public function testRouterParams() - { - $this->specify( - "CLI Router doesn't work with custom parameters", - function ($test) { - $router = new Router(); - - $router->add('some {name}'); - $router->add('some {name} {id:[0-9]+}'); - $router->add('some {name} {id:[0-9]+} {date}'); - - $this->_runTest($router, $test); - }, - [ - "examples" => array( - [ - array( - 'uri' => 'some hattie', - 'module' => null, - 'task' => '', - 'action' => '', - 'params' => array('name' => 'hattie') - ) - ], - [ - array( - 'uri' => 'some hattie 100', - 'module' => null, - 'task' => '', - 'action' => '', - 'params' => array('name' => 'hattie', 'id' => 100) - ) - ], - [ - array( - 'uri' => 'some hattie 100 2011-01-02', - 'module' => null, - 'task' => '', - 'action' => '', - 'params' => array('name' => 'hattie', 'id' => 100, 'date' => '2011-01-02') - ) - ], - ) - ] - ); - } - - public function testNamedRoutes() - { - $this->specify( - "CLI Router doesn't work with named routes", - function () { - Route::reset(); - - $router = new Router(false); - - $usersFind = $router->add('api users find')->setName('usersFind'); - $usersAdd = $router->add('api users add')->setName('usersAdd'); - - expect($usersAdd)->equals($router->getRouteByName('usersAdd')); - expect($usersAdd)->equals($router->getRouteByName('usersAdd')); - expect($usersFind)->equals($router->getRouteById(0)); - } - ); - } - - public function testConverters() - { - $this->specify( - "CLI Router doesn't work with converters", - function ($route, $paths) { - Route::reset(); - - $router = new Router(); - - $router->add('{task:[a-z\-]+} {action:[a-z\-]+} this-is-a-country') - ->convert('task', function ($task) { - return str_replace('-', '', $task); - }) - ->convert('action', function ($action) { - return str_replace('-', '', $action); - }); - - $router->add('([A-Z]+) ([0-9]+)', array( - 'task' => 1, - 'action' => 'default', - 'id' => 2, - )) - ->convert('task', function ($task) { - return strtolower($task); - }) - ->convert('action', function ($action) { - if ($action == 'default') { - return 'index'; - } - return $action; - }) - ->convert('id', function ($id) { - return strrev($id); - }); - - $router->handle($route); - expect($router->wasMatched())->true(); - expect($paths['task'])->equals($router->getTaskName()); - expect($paths['action'])->equals($router->getActionName()); - }, - [ - "examples" => array( - [ - "route" => 'some-controller my-action-name this-is-a-country', - "paths" => array( - 'task' => 'somecontroller', - 'action' => 'myactionname', - 'params' => array('this-is-a-country') - ) - ], - [ - "route" => 'BINARY 1101', - "paths" => array( - 'task' => 'binary', - 'action' => 'index', - 'params' => array(1011) - ) - ], - ) - ] - ); - } - - public function testShortPaths() - { - $this->specify( - "CLI Router doesn't work with short paths", - function () { - Route::reset(); - - $router = new Router(false); - - $route = $router->add("route0", "Feed"); - expect($route->getPaths())->equals(array( - 'task' => 'feed' - )); - - $route = $router->add("route1", "Feed::get"); - expect($route->getPaths())->equals(array( - 'task' => 'feed', - 'action' => 'get', - )); - - $route = $router->add("route2", "News::Posts::show"); - expect($route->getPaths())->equals(array( - 'module' => 'News', - 'task' => 'posts', - 'action' => 'show', - )); - - $route = $router->add("route3", "MyApp\\Tasks\\Posts::show"); - expect($route->getPaths())->equals(array( - 'namespace' => 'MyApp\\Tasks', - 'task' => 'posts', - 'action' => 'show', - )); - - $route = $router->add("route3", "MyApp\\Tasks\\::show"); - expect($route->getPaths())->equals(array( - 'task' => '', - 'action' => 'show', - )); - - $route = $router->add("route3", "News::MyApp\\Tasks\\Posts::show"); - expect($route->getPaths())->equals(array( - 'module' => 'News', - 'namespace' => 'MyApp\\Tasks', - 'task' => 'posts', - 'action' => 'show', - )); - - $route = $router->add("route3", "\\Posts::show"); - expect($route->getPaths())->equals(array( - 'task' => 'posts', - 'action' => 'show', - )); - } - ); - } - - public function testBeforeMatch() - { - $this->specify( - "CLI Router doesn't work with custom before match", - function () { - Route::reset(); - - $trace = 0; - - $router = new Router(false); - - $router - ->add('static route') - ->beforeMatch(function () use (&$trace) { - $trace++; - return false; - }); - - $router - ->add('static route2') - ->beforeMatch(function () use (&$trace) { - $trace++; - return true; - }); - - $router->handle(); - expect($router->wasMatched())->false(); - - $router->handle('static route'); - expect($router->wasMatched())->false(); - - $router->handle('static route2'); - expect($router->wasMatched())->true(); - - expect($trace)->equals(2); - } - ); - } - - public function testDelimiter() - { - $this->specify( - "CLI Router doesn't work with custom delimiters", - function ($test) { - Route::reset(); - Route::delimiter('/'); - - $router = new Router(); - - $router->add('/', array( - 'module' => 'devtools', - 'task' => 'main', - 'action' => 'hello', - )); - - $router->add('/system/:task/a/:action/:params', array( - 'task' => 1, - 'action' => 2, - 'params' => 3, - )); - - $router->add('/([a-z]{2})/:task', array( - 'task' => 2, - 'action' => 'index', - 'language' => 1 - )); - - $router->add('/admin/:task/:action/:int', array( - 'module' => 'admin', - 'task' => 1, - 'action' => 2, - 'id' => 3 - )); - - $router->add('/posts/([0-9]{4})/([0-9]{2})/([0-9]{2})/:params', array( - 'task' => 'posts', - 'action' => 'show', - 'year' => 1, - 'month' => 2, - 'day' => 3, - 'params' => 4, - )); - - $router->add('/manual/([a-z]{2})/([a-z\.]+)\.txt', array( - 'task' => 'manual', - 'action' => 'show', - 'language' => 1, - 'file' => 2 - )); - - $router->add('/named-manual/{language:([a-z]{2})}/{file:[a-z\.]+}\.txt', array( - 'task' => 'manual', - 'action' => 'show', - )); - - $router->add('/very/static/route', array( - 'task' => 'static', - 'action' => 'route' - )); - - $router->add("/feed/{lang:[a-z]+}/blog/{blog:[a-z\-]+}\.{type:[a-z\-]+}", "Feed::get"); - - $router->add("/posts/{year:[0-9]+}/s/{title:[a-z\-]+}", "Posts::show"); - - $router->add("/posts/delete/{id}", "Posts::delete"); - - $router->add("/show/{id:video([0-9]+)}/{title:[a-z\-]+}", "Videos::show"); - - $this->_runTest($router, $test); - }, - [ - "examples" => array( - [ - array( - 'uri' => '/', - 'module' => 'devtools', - 'task' => 'main', - 'action' => 'hello', - 'params' => array() - ) - ], - [ - array( - 'uri' => '/documentation/index/hellao/aaadpqñda/bbbAdld/cc-ccc', - 'module' => null, - 'task' => 'documentation', - 'action' => 'index', - 'params' => array('hellao', 'aaadpqñda', 'bbbAdld', 'cc-ccc') - ) - ], - [ - array( - 'uri' => '/documentation/index/', - 'module' => null, - 'task' => 'documentation', - 'action' => 'index', - 'params' => array() - ) - ], - [ - array( - 'uri' => '/documentation/index', - 'module' => null, - 'task' => 'documentation', - 'action' => 'index', - 'params' => array() - ) - ], - [ - array( - 'uri' => '/documentation/', - 'module' => null, - 'task' => 'documentation', - 'action' => null, - 'params' => array() - ) - ], - [ - array( - 'uri' => '/system/admin/a/edit/hellao/aaadp', - 'module' => null, - 'task' => 'admin', - 'action' => 'edit', - 'params' => array('hellao', 'aaadp') - ) - ], - [ - array( - 'uri' => '/es/news', - 'module' => null, - 'task' => 'news', - 'action' => 'index', - 'params' => array('language' => 'es') - ) - ], - [ - array( - 'uri' => '/admin/posts/edit/100', - 'module' => 'admin', - 'task' => 'posts', - 'action' => 'edit', - 'params' => array('id' => 100) - ) - ], - [ - array( - 'uri' => '/posts/2010/02/10/title/content', - 'module' => null, - 'task' => 'posts', - 'action' => 'show', - 'params' => array( - 'year' => '2010', - 'month' => '02', - 'day' => '10', - 0 => 'title', - 1 => 'content', - ) - ) - ], - [ - array( - 'uri' => '/manual/en/translate.adapter.txt', - 'module' => null, - 'task' => 'manual', - 'action' => 'show', - 'params' => array('language' => 'en', 'file' => 'translate.adapter') - ) - ], - [ - array( - 'uri' => '/named-manual/en/translate.adapter.txt', - 'module' => null, - 'task' => 'manual', - 'action' => 'show', - 'params' => array('language' => 'en', 'file' => 'translate.adapter') - ) - ], - [ - array( - 'uri' => '/posts/1999/s/le-nice-title', - 'module' => null, - 'task' => 'posts', - 'action' => 'show', - 'params' => array('year' => '1999', 'title' => 'le-nice-title') - ) - ], - [ - array( - 'uri' => '/feed/fr/blog/diaporema.json', - 'module' => null, - 'task' => 'feed', - 'action' => 'get', - 'params' => array('lang' => 'fr', 'blog' => 'diaporema', 'type' => 'json') - ) - ], - [ - array( - 'uri' => '/posts/delete/150', - 'module' => null, - 'task' => 'posts', - 'action' => 'delete', - 'params' => array('id' => '150') - ) - ], - [ - array( - 'uri' => '/very/static/route', - 'module' => null, - 'task' => 'static', - 'action' => 'route', - 'params' => array() - ) - ], - ) - ] - ); - } -} diff --git a/tests/unit/Cli/TaskTest.php b/tests/unit/Cli/TaskTest.php deleted file mode 100644 index a4902e6172e..00000000000 --- a/tests/unit/Cli/TaskTest.php +++ /dev/null @@ -1,56 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Cli - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class TaskTest extends UnitTest -{ - public function testTasks() - { - $this->specify( - "CLI Tasks don't return the expected results", - function () { - $di = new CliFactoryDefault(); - - $di["registry"] = function () { - $registry = new Registry(); - - $registry->data = "data"; - - return $registry; - }; - - $task = new \MainTask(); - $task->setDI($di); - - expect($task->requestRegistryAction())->equals("data"); - expect($task->helloAction())->equals("Hello !"); - expect($task->helloAction(["World"]))->equals("Hello World!"); - - $task2 = new \EchoTask(); - $task2->setDI($di); - expect($task2->mainAction())->equals("echoMainAction"); - } - ); - } -} diff --git a/tests/unit/Config/Adapter/Grouped/ConstructCest.php b/tests/unit/Config/Adapter/Grouped/ConstructCest.php new file mode 100644 index 00000000000..106e59c7fa1 --- /dev/null +++ b/tests/unit/Config/Adapter/Grouped/ConstructCest.php @@ -0,0 +1,81 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Grouped; + +use Phalcon\Config\Adapter\Grouped; +use Phalcon\Factory\Exception; +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; +use function dataFolder; + +class ConstructCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Grouped :: __construct() - complex instance + * + * @param UnitTester $I + * + * @author fenikkusu + * @since 2017-06-06 + */ + public function configAdapterGroupedConstructComplexInstance(UnitTester $I) + { + $I->wantToTest("Config\Adapter\Grouped - construct - complex"); + $this->config["test"]["property2"] = "something-else"; + + $config = new Grouped( + [ + dataFolder('assets/config/config.php'), + [ + 'filePath' => dataFolder('assets/config/config.json'), + 'adapter' => 'json', + ], + [ + 'adapter' => 'array', + 'config' => [ + "test" => [ + "property2" => "something-else", + ], + ], + ], + ] + ); + $this->compareConfig($I, $this->config, $config); + } + + /** + * Tests Phalcon\Config\Adapter\Grouped :: __construct() - exception + * + * @param UnitTester $I + * + * @author Fenikkusu + * @since 2017-06-06 + */ + public function configAdapterGroupedConstructThrowsException(UnitTester $I) + { + $I->wantToTest("Config\Adapter\Grouped - construct array without config throws exception"); + $I->expectThrowable( + new Exception("To use 'array' adapter you have to specify the 'config' as an array."), + function () { + new Grouped( + [ + [ + 'adapter' => 'array', + ], + ] + ); + } + ); + } +} diff --git a/tests/unit/Config/Adapter/Grouped/CountCest.php b/tests/unit/Config/Adapter/Grouped/CountCest.php new file mode 100644 index 00000000000..cd5c3099c6e --- /dev/null +++ b/tests/unit/Config/Adapter/Grouped/CountCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Grouped; + +use UnitTester; + +class CountCest +{ + /** + * Tests Phalcon\Config\Adapter\Grouped :: count() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterGroupedCount(UnitTester $I) + { + $I->wantToTest("Config\Adapter\Grouped - count()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Config/Adapter/Grouped/GetCest.php b/tests/unit/Config/Adapter/Grouped/GetCest.php new file mode 100644 index 00000000000..cb0c3dd6b62 --- /dev/null +++ b/tests/unit/Config/Adapter/Grouped/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Grouped; + +use UnitTester; + +class GetCest +{ + /** + * Tests Phalcon\Config\Adapter\Grouped :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterGroupedGet(UnitTester $I) + { + $I->wantToTest("Config\Adapter\Grouped - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Config/Adapter/Grouped/GetPathDelimiterCest.php b/tests/unit/Config/Adapter/Grouped/GetPathDelimiterCest.php new file mode 100644 index 00000000000..26fcb4c5610 --- /dev/null +++ b/tests/unit/Config/Adapter/Grouped/GetPathDelimiterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Grouped; + +use UnitTester; + +class GetPathDelimiterCest +{ + /** + * Tests Phalcon\Config\Adapter\Grouped :: getPathDelimiter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterGroupedGetPathDelimiter(UnitTester $I) + { + $I->wantToTest("Config\Adapter\Grouped - getPathDelimiter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Config/Adapter/Grouped/MergeCest.php b/tests/unit/Config/Adapter/Grouped/MergeCest.php new file mode 100644 index 00000000000..d14d4eaf141 --- /dev/null +++ b/tests/unit/Config/Adapter/Grouped/MergeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Grouped; + +use UnitTester; + +class MergeCest +{ + /** + * Tests Phalcon\Config\Adapter\Grouped :: merge() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterGroupedMerge(UnitTester $I) + { + $I->wantToTest("Config\Adapter\Grouped - merge()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Config/Adapter/Grouped/OffsetExistsCest.php b/tests/unit/Config/Adapter/Grouped/OffsetExistsCest.php new file mode 100644 index 00000000000..30af9a1c2be --- /dev/null +++ b/tests/unit/Config/Adapter/Grouped/OffsetExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Grouped; + +use UnitTester; + +class OffsetExistsCest +{ + /** + * Tests Phalcon\Config\Adapter\Grouped :: offsetExists() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterGroupedOffsetExists(UnitTester $I) + { + $I->wantToTest("Config\Adapter\Grouped - offsetExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Config/Adapter/Grouped/OffsetGetCest.php b/tests/unit/Config/Adapter/Grouped/OffsetGetCest.php new file mode 100644 index 00000000000..a6e14c97143 --- /dev/null +++ b/tests/unit/Config/Adapter/Grouped/OffsetGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Grouped; + +use UnitTester; + +class OffsetGetCest +{ + /** + * Tests Phalcon\Config\Adapter\Grouped :: offsetGet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterGroupedOffsetGet(UnitTester $I) + { + $I->wantToTest("Config\Adapter\Grouped - offsetGet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Config/Adapter/Grouped/OffsetSetCest.php b/tests/unit/Config/Adapter/Grouped/OffsetSetCest.php new file mode 100644 index 00000000000..e69648e329c --- /dev/null +++ b/tests/unit/Config/Adapter/Grouped/OffsetSetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Grouped; + +use UnitTester; + +class OffsetSetCest +{ + /** + * Tests Phalcon\Config\Adapter\Grouped :: offsetSet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterGroupedOffsetSet(UnitTester $I) + { + $I->wantToTest("Config\Adapter\Grouped - offsetSet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Config/Adapter/Grouped/OffsetUnsetCest.php b/tests/unit/Config/Adapter/Grouped/OffsetUnsetCest.php new file mode 100644 index 00000000000..f5834713afd --- /dev/null +++ b/tests/unit/Config/Adapter/Grouped/OffsetUnsetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Grouped; + +use UnitTester; + +class OffsetUnsetCest +{ + /** + * Tests Phalcon\Config\Adapter\Grouped :: offsetUnset() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterGroupedOffsetUnset(UnitTester $I) + { + $I->wantToTest("Config\Adapter\Grouped - offsetUnset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Config/Adapter/Grouped/PathCest.php b/tests/unit/Config/Adapter/Grouped/PathCest.php new file mode 100644 index 00000000000..ad51f9434fe --- /dev/null +++ b/tests/unit/Config/Adapter/Grouped/PathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Grouped; + +use UnitTester; + +class PathCest +{ + /** + * Tests Phalcon\Config\Adapter\Grouped :: path() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterGroupedPath(UnitTester $I) + { + $I->wantToTest("Config\Adapter\Grouped - path()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Config/Adapter/Grouped/SetPathDelimiterCest.php b/tests/unit/Config/Adapter/Grouped/SetPathDelimiterCest.php new file mode 100644 index 00000000000..189b3d0c07f --- /dev/null +++ b/tests/unit/Config/Adapter/Grouped/SetPathDelimiterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Grouped; + +use UnitTester; + +class SetPathDelimiterCest +{ + /** + * Tests Phalcon\Config\Adapter\Grouped :: setPathDelimiter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterGroupedSetPathDelimiter(UnitTester $I) + { + $I->wantToTest("Config\Adapter\Grouped - setPathDelimiter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Config/Adapter/Grouped/ToArrayCest.php b/tests/unit/Config/Adapter/Grouped/ToArrayCest.php new file mode 100644 index 00000000000..5060a7366e0 --- /dev/null +++ b/tests/unit/Config/Adapter/Grouped/ToArrayCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Grouped; + +use UnitTester; + +class ToArrayCest +{ + /** + * Tests Phalcon\Config\Adapter\Grouped :: toArray() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterGroupedToArray(UnitTester $I) + { + $I->wantToTest("Config\Adapter\Grouped - toArray()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Config/Adapter/GroupedTest.php b/tests/unit/Config/Adapter/GroupedTest.php deleted file mode 100644 index 62b5a4e6525..00000000000 --- a/tests/unit/Config/Adapter/GroupedTest.php +++ /dev/null @@ -1,88 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Config\Adapter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class GroupedTest extends ConfigBase -{ - /** - * Tests Grouped config - * - * @test - * @author fenikkusu - * @since 2017-06-06 - */ - public function shouldCreateComplexConfigInstance() - { - $this->specify( - "Comparison of configurations returned a not identical result", - function () { - $this->config["test"]["property2"] = "something-else"; - - $config = new Grouped( - [ - PATH_DATA . 'config/config.php', - [ - 'filePath' => PATH_DATA . 'config/config.json', - 'adapter' => 'json' - ], - [ - 'adapter' => 'array', - 'config' => [ - "test" => [ - "property2" => "something-else" - ] - ] - ] - ] - ); - $this->compareConfig($this->config, $config); - } - ); - } - - /** - * Testing for exception - * - * @test - * @author Fenikkusu - * @since 2017-06-06 - * - * @expectedException \Phalcon\Factory\Exception - * @expectedExceptionMessage To use 'array' adapter you have to specify the 'config' as an array. - */ - public function shouldThrowsFactoryExceptionInCaseOfAbsentConfigParameter() - { - $this->specify( - "Exception not thrown when config array not set.", - function () { - new Grouped( - [ - [ - 'adapter' => 'array' - ] - ] - ); - } - ); - } -} diff --git a/tests/unit/Config/Adapter/Ini/ConstructCest.php b/tests/unit/Config/Adapter/Ini/ConstructCest.php new file mode 100644 index 00000000000..8bd03942b4c --- /dev/null +++ b/tests/unit/Config/Adapter/Ini/ConstructCest.php @@ -0,0 +1,68 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Ini; + +use Phalcon\Config\Adapter\Ini; +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; +use function dataFolder; + +class ConstructCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Ini :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterIniConstruct(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Ini - construct'); + $this->checkConstruct($I, 'Ini'); + } + + /** + * Tests Phalcon\Config\Adapter\Ini :: __construct() - constants + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterIniConstructConstants(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Ini - construct - constants'); + + define('TEST_CONST', 'foo'); + + $config = new Ini(dataFolder('assets/config/config-with-constants.ini'), INI_SCANNER_NORMAL); + + $expected = [ + 'test' => 'foo', + 'path' => 'foo/something/else', + 'section' => [ + 'test' => 'foo', + 'path' => 'foo/another-thing/somewhere', + 'parent' => [ + 'property' => 'foo', + 'property2' => 'foohello', + ], + ], + ]; + $actual = $config->toArray(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Config/Adapter/Ini/CountCest.php b/tests/unit/Config/Adapter/Ini/CountCest.php new file mode 100644 index 00000000000..9a13320bbc5 --- /dev/null +++ b/tests/unit/Config/Adapter/Ini/CountCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Ini; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class CountCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Ini :: count() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterIniCount(UnitTester $I) + { + $I->wantToTest("Config\Adapter\Ini - count()"); + $this->checkCount($I, 'Ini'); + } +} diff --git a/tests/unit/Config/Adapter/Ini/GetCest.php b/tests/unit/Config/Adapter/Ini/GetCest.php new file mode 100644 index 00000000000..cd296b0a047 --- /dev/null +++ b/tests/unit/Config/Adapter/Ini/GetCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Ini; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class GetCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Ini :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterIniGet(UnitTester $I) + { + $I->wantToTest("Config\Adapter\Ini - get()"); + $this->checkGet($I, 'Ini'); + } +} diff --git a/tests/unit/Config/Adapter/Ini/GetPathDelimiterCest.php b/tests/unit/Config/Adapter/Ini/GetPathDelimiterCest.php new file mode 100644 index 00000000000..a365ce7e9cb --- /dev/null +++ b/tests/unit/Config/Adapter/Ini/GetPathDelimiterCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Ini; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class GetPathDelimiterCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Ini :: getPathDelimiter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterIniGetPathDelimiter(UnitTester $I) + { + $I->wantToTest("Config\Adapter\Ini - getPathDelimiter()"); + $this->checkGetPathDelimiter($I, 'Ini'); + } +} diff --git a/tests/unit/Config/Adapter/Ini/MergeCest.php b/tests/unit/Config/Adapter/Ini/MergeCest.php new file mode 100644 index 00000000000..ce60692bf7e --- /dev/null +++ b/tests/unit/Config/Adapter/Ini/MergeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Ini; + +use UnitTester; + +class MergeCest +{ + /** + * Tests Phalcon\Config\Adapter\Ini :: merge() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterIniMerge(UnitTester $I) + { + $I->wantToTest("Config\Adapter\Ini - merge()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Config/Adapter/Ini/OffsetExistsCest.php b/tests/unit/Config/Adapter/Ini/OffsetExistsCest.php new file mode 100644 index 00000000000..309905d300e --- /dev/null +++ b/tests/unit/Config/Adapter/Ini/OffsetExistsCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Ini; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class OffsetExistsCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Ini :: offsetExists() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterIniOffsetExists(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Ini - offsetExists()'); + $this->checkOffsetExists($I, 'Ini'); + } +} diff --git a/tests/unit/Config/Adapter/Ini/OffsetGetCest.php b/tests/unit/Config/Adapter/Ini/OffsetGetCest.php new file mode 100644 index 00000000000..3f9a20a88af --- /dev/null +++ b/tests/unit/Config/Adapter/Ini/OffsetGetCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Ini; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class OffsetGetCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Ini :: offsetGet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterIniOffsetGet(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Ini - offsetGet()'); + $this->checkOffsetGet($I, 'Ini'); + } +} diff --git a/tests/unit/Config/Adapter/Ini/OffsetSetCest.php b/tests/unit/Config/Adapter/Ini/OffsetSetCest.php new file mode 100644 index 00000000000..41aac96d087 --- /dev/null +++ b/tests/unit/Config/Adapter/Ini/OffsetSetCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Ini; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class OffsetSetCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Ini :: offsetSet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterIniOffsetSet(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Ini - offsetSet()'); + $this->checkOffsetSet($I, 'Ini'); + } +} diff --git a/tests/unit/Config/Adapter/Ini/OffsetUnsetCest.php b/tests/unit/Config/Adapter/Ini/OffsetUnsetCest.php new file mode 100644 index 00000000000..44829700e0c --- /dev/null +++ b/tests/unit/Config/Adapter/Ini/OffsetUnsetCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Ini; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class OffsetUnsetCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Ini :: offsetUnset() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterIniOffsetUnset(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Ini - offsetUnset()'); + $this->checkOffsetUnset($I, 'Ini'); + } +} diff --git a/tests/unit/Config/Adapter/Ini/PathCest.php b/tests/unit/Config/Adapter/Ini/PathCest.php new file mode 100644 index 00000000000..0c17e4af794 --- /dev/null +++ b/tests/unit/Config/Adapter/Ini/PathCest.php @@ -0,0 +1,48 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Ini; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class PathCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Ini :: path() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterIniPath(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Ini - path()'); + $this->checkPath($I, 'Ini'); + } + + /** + * Tests Phalcon\Config\Adapter\Ini :: path() - default + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterIniPathDefault(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Ini - path() - default'); + $this->checkPathDefault($I, 'Ini'); + } +} diff --git a/tests/unit/Config/Adapter/Ini/SetPathDelimiterCest.php b/tests/unit/Config/Adapter/Ini/SetPathDelimiterCest.php new file mode 100644 index 00000000000..d2f323d1bdc --- /dev/null +++ b/tests/unit/Config/Adapter/Ini/SetPathDelimiterCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Ini; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class SetPathDelimiterCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Ini :: setPathDelimiter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterIniSetPathDelimiter(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Ini - setPathDelimiter()'); + $this->checkSetPathDelimiter($I, 'Ini'); + } +} diff --git a/tests/unit/Config/Adapter/Ini/ToArrayCest.php b/tests/unit/Config/Adapter/Ini/ToArrayCest.php new file mode 100644 index 00000000000..29130118867 --- /dev/null +++ b/tests/unit/Config/Adapter/Ini/ToArrayCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Ini; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class ToArrayCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Ini :: toArray() + * + * @param UnitTester $I + * + * @author kjdev + * @since 2013-07-18 + */ + public function configAdapterIniToArray(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Ini - toArray()'); + $this->checkToArray($I, 'Ini'); + } +} diff --git a/tests/unit/Config/Adapter/IniTest.php b/tests/unit/Config/Adapter/IniTest.php deleted file mode 100644 index d1e09743f59..00000000000 --- a/tests/unit/Config/Adapter/IniTest.php +++ /dev/null @@ -1,118 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Config\Adapter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class IniTest extends ConfigBase -{ - /** - * Tests constants in option values - * @author zytzagoo - * @since 2016-08-03 - */ - public function testConstants() - { - $this->specify( - "Constants in option values are not parsed properly with explicit INI_SCANNER_NORMAL mode", - function () { - define('TEST_CONST', 'foo'); - - $expected = [ - 'test' => 'foo', - 'path' => 'foo/something/else', - 'section' => [ - 'test' => 'foo', - 'path' => 'foo/another-thing/somewhere', - 'parent' => [ - 'property' => 'foo', - 'property2' =>'foohello' - ] - ] - ]; - - $config = new Ini(PATH_DATA . 'config/config-with-constants.ini', INI_SCANNER_NORMAL); - - expect($config->toArray())->equals($expected); - } - ); - } - - /** - * Tests toArray method - * - * @author kjdev - * @since 2013-07-18 - */ - public function testConfigToArray() - { - $this->specify( - "Transform Config to the array does not returns the expected result", - function () { - $expected = [ - 'test' => [ - 'parent' => [ - 'property' => 1, - 'property2' => 'yeah', - 'property3' => ['baseuri' => '/phalcon/'], - 'property4' => [ - 'models' => ['metadata' => 'memory'], - ], - 'property5' => [ - 'database' => [ - 'adapter' => 'mysql', - 'host' => 'localhost', - 'username' => 'user', - 'password' => 'passwd', - 'name' => 'demo' - ], - ], - 'property6' => [ - 'test' => ['a', 'b', 'c'], - ], - ], - ], - ]; - - $config = new Ini(PATH_DATA . 'config/directive.ini'); - - expect($config->toArray())->equals($expected); - } - ); - } - - /** - * Tests Ini config - * - * @author Andres Gutierrez - * @since 2012-08-18 - */ - public function testIniConfig() - { - $this->specify( - "Comparison of configurations returned a not identical result", - function () { - $config = new Ini(PATH_DATA . 'config/config.ini'); - $this->compareConfig($this->config, $config); - } - ); - } -} diff --git a/tests/unit/Config/Adapter/Json/ConstructCest.php b/tests/unit/Config/Adapter/Json/ConstructCest.php new file mode 100644 index 00000000000..8cec2a4dc49 --- /dev/null +++ b/tests/unit/Config/Adapter/Json/ConstructCest.php @@ -0,0 +1,39 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Json; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class ConstructCest +{ + use ConfigTrait; + + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('json'); + } + + /** + * Tests Phalcon\Config\Adapter\Json :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterJsonConstruct(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Json - construct'); + $this->checkConstruct($I, 'Json'); + } +} diff --git a/tests/unit/Config/Adapter/Json/CountCest.php b/tests/unit/Config/Adapter/Json/CountCest.php new file mode 100644 index 00000000000..106c2911eab --- /dev/null +++ b/tests/unit/Config/Adapter/Json/CountCest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Json; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class CountCest +{ + use ConfigTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('json'); + } + + /** + * Tests Phalcon\Config\Adapter\Json :: count() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterJsonCount(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Json - count()'); + $this->checkCount($I, 'Json'); + } +} diff --git a/tests/unit/Config/Adapter/Json/GetCest.php b/tests/unit/Config/Adapter/Json/GetCest.php new file mode 100644 index 00000000000..c0147619ac6 --- /dev/null +++ b/tests/unit/Config/Adapter/Json/GetCest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Json; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class GetCest +{ + use ConfigTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('json'); + } + + /** + * Tests Phalcon\Config\Adapter\Json :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterJsonGet(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Json - get()'); + $this->checkGet($I, 'Json'); + } +} diff --git a/tests/unit/Config/Adapter/Json/GetPathDelimiterCest.php b/tests/unit/Config/Adapter/Json/GetPathDelimiterCest.php new file mode 100644 index 00000000000..f6a13feca06 --- /dev/null +++ b/tests/unit/Config/Adapter/Json/GetPathDelimiterCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Json; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class GetPathDelimiterCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Json :: getPathDelimiter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterJsonGetPathDelimiter(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Json - getPathDelimiter()'); + $this->checkGetPathDelimiter($I, 'Json'); + } +} diff --git a/tests/unit/Config/Adapter/Json/MergeCest.php b/tests/unit/Config/Adapter/Json/MergeCest.php new file mode 100644 index 00000000000..c2a37d992b8 --- /dev/null +++ b/tests/unit/Config/Adapter/Json/MergeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Json; + +use UnitTester; + +class MergeCest +{ + /** + * Tests Phalcon\Config\Adapter\Json :: merge() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterJsonMerge(UnitTester $I) + { + $I->wantToTest("Config\Adapter\Json - merge()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Config/Adapter/Json/OffsetExistsCest.php b/tests/unit/Config/Adapter/Json/OffsetExistsCest.php new file mode 100644 index 00000000000..74e3b0a6160 --- /dev/null +++ b/tests/unit/Config/Adapter/Json/OffsetExistsCest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Json; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class OffsetExistsCest +{ + use ConfigTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('json'); + } + + /** + * Tests Phalcon\Config\Adapter\Json :: offsetExists() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterJsonOffsetExists(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Json - offsetExists()'); + $this->checkOffsetExists($I, 'Json'); + } +} diff --git a/tests/unit/Config/Adapter/Json/OffsetGetCest.php b/tests/unit/Config/Adapter/Json/OffsetGetCest.php new file mode 100644 index 00000000000..dbdb74acaed --- /dev/null +++ b/tests/unit/Config/Adapter/Json/OffsetGetCest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Json; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class OffsetGetCest +{ + use ConfigTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('json'); + } + + /** + * Tests Phalcon\Config\Adapter\Json :: offsetGet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterJsonOffsetGet(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Json - offsetGet()'); + $this->checkOffsetGet($I, 'Json'); + } +} diff --git a/tests/unit/Config/Adapter/Json/OffsetSetCest.php b/tests/unit/Config/Adapter/Json/OffsetSetCest.php new file mode 100644 index 00000000000..4ae2ad2ca4a --- /dev/null +++ b/tests/unit/Config/Adapter/Json/OffsetSetCest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Json; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class OffsetSetCest +{ + use ConfigTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('json'); + } + + /** + * Tests Phalcon\Config\Adapter\Json :: offsetSet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterJsonOffsetSet(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Json - offsetSet()'); + $this->checkOffsetSet($I, 'Json'); + } +} diff --git a/tests/unit/Config/Adapter/Json/OffsetUnsetCest.php b/tests/unit/Config/Adapter/Json/OffsetUnsetCest.php new file mode 100644 index 00000000000..13c46ef054e --- /dev/null +++ b/tests/unit/Config/Adapter/Json/OffsetUnsetCest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Json; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class OffsetUnsetCest +{ + use ConfigTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('json'); + } + + /** + * Tests Phalcon\Config\Adapter\Json :: offsetUnset() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterJsonOffsetUnset(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Json - offsetUnset()'); + $this->checkOffsetUnset($I, 'Json'); + } +} diff --git a/tests/unit/Config/Adapter/Json/PathCest.php b/tests/unit/Config/Adapter/Json/PathCest.php new file mode 100644 index 00000000000..00b1b16dd62 --- /dev/null +++ b/tests/unit/Config/Adapter/Json/PathCest.php @@ -0,0 +1,56 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Json; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class PathCest +{ + use ConfigTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('json'); + } + + /** + * Tests Phalcon\Config\Adapter\Json :: path() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterJsonPath(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Json - path()'); + $this->checkPath($I, 'Json'); + } + + /** + * Tests Phalcon\Config\Adapter\Json :: path() - default + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterJsonPathDefault(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Json - path() - default'); + $this->checkPathDefault($I, 'Json'); + } +} diff --git a/tests/unit/Config/Adapter/Json/SetPathDelimiterCest.php b/tests/unit/Config/Adapter/Json/SetPathDelimiterCest.php new file mode 100644 index 00000000000..06ab4f8767c --- /dev/null +++ b/tests/unit/Config/Adapter/Json/SetPathDelimiterCest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Json; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class SetPathDelimiterCest +{ + use ConfigTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('json'); + } + + /** + * Tests Phalcon\Config\Adapter\Json :: setPathDelimiter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterJsonSetPathDelimiter(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Json - setPathDelimiter()'); + $this->checkSetPathDelimiter($I, 'Json'); + } +} diff --git a/tests/unit/Config/Adapter/Json/ToArrayCest.php b/tests/unit/Config/Adapter/Json/ToArrayCest.php new file mode 100644 index 00000000000..935ef39e52d --- /dev/null +++ b/tests/unit/Config/Adapter/Json/ToArrayCest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Json; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class ToArrayCest +{ + use ConfigTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('json'); + } + + /** + * Tests Phalcon\Config\Adapter\Json :: toArray() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterJsonToArray(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Json - toArray()'); + $this->checkToArray($I, 'Json'); + } +} diff --git a/tests/unit/Config/Adapter/JsonTest.php b/tests/unit/Config/Adapter/JsonTest.php deleted file mode 100644 index 9fa061de80c..00000000000 --- a/tests/unit/Config/Adapter/JsonTest.php +++ /dev/null @@ -1,43 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Config\Adapter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class JsonTest extends ConfigBase -{ - /** - * Tests Json config - * - * @author Andres Gutierrez - * @since 2012-08-18 - */ - public function testJsonConfig() - { - $this->specify( - "Comparison of configurations returned a not identical result", - function () { - $config = new Json(PATH_DATA . 'config/config.json'); - $this->compareConfig($this->config, $config); - } - ); - } -} diff --git a/tests/unit/Config/Adapter/Php/ConstructCest.php b/tests/unit/Config/Adapter/Php/ConstructCest.php new file mode 100644 index 00000000000..aeb353b4878 --- /dev/null +++ b/tests/unit/Config/Adapter/Php/ConstructCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Php; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class ConstructCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Php :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterPhpConstruct(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Php - construct'); + $this->checkConstruct($I, 'Php'); + } +} diff --git a/tests/unit/Config/Adapter/Php/CountCest.php b/tests/unit/Config/Adapter/Php/CountCest.php new file mode 100644 index 00000000000..ecf5dbffe7e --- /dev/null +++ b/tests/unit/Config/Adapter/Php/CountCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Php; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class CountCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Php :: count() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterPhpCount(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Php - count()'); + $this->checkCount($I, 'Php'); + } +} diff --git a/tests/unit/Config/Adapter/Php/GetCest.php b/tests/unit/Config/Adapter/Php/GetCest.php new file mode 100644 index 00000000000..46b078a1dd3 --- /dev/null +++ b/tests/unit/Config/Adapter/Php/GetCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Php; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class GetCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Php :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterPhpGet(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Php - get()'); + $this->checkGet($I, 'Php'); + } +} diff --git a/tests/unit/Config/Adapter/Php/GetPathDelimiterCest.php b/tests/unit/Config/Adapter/Php/GetPathDelimiterCest.php new file mode 100644 index 00000000000..4801afccf07 --- /dev/null +++ b/tests/unit/Config/Adapter/Php/GetPathDelimiterCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Php; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class GetPathDelimiterCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Php :: getPathDelimiter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterPhpGetPathDelimiter(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Php - getPathDelimiter()'); + $this->checkGetPathDelimiter($I, 'Php'); + } +} diff --git a/tests/unit/Config/Adapter/Php/MergeCest.php b/tests/unit/Config/Adapter/Php/MergeCest.php new file mode 100644 index 00000000000..d20f503f469 --- /dev/null +++ b/tests/unit/Config/Adapter/Php/MergeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Php; + +use UnitTester; + +class MergeCest +{ + /** + * Tests Phalcon\Config\Adapter\Php :: merge() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterPhpMerge(UnitTester $I) + { + $I->wantToTest("Config\Adapter\Php - merge()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Config/Adapter/Php/OffsetExistsCest.php b/tests/unit/Config/Adapter/Php/OffsetExistsCest.php new file mode 100644 index 00000000000..94dccf82bb0 --- /dev/null +++ b/tests/unit/Config/Adapter/Php/OffsetExistsCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Php; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class OffsetExistsCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Php :: offsetExists() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterPhpOffsetExists(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Php - offsetExists()'); + $this->checkOffsetExists($I, 'Php'); + } +} diff --git a/tests/unit/Config/Adapter/Php/OffsetGetCest.php b/tests/unit/Config/Adapter/Php/OffsetGetCest.php new file mode 100644 index 00000000000..640c791dd2e --- /dev/null +++ b/tests/unit/Config/Adapter/Php/OffsetGetCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Php; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class OffsetGetCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Php :: offsetGet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterPhpOffsetGet(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Php - offsetGet()'); + $this->checkOffsetGet($I, 'Php'); + } +} diff --git a/tests/unit/Config/Adapter/Php/OffsetSetCest.php b/tests/unit/Config/Adapter/Php/OffsetSetCest.php new file mode 100644 index 00000000000..18a9d08a6ce --- /dev/null +++ b/tests/unit/Config/Adapter/Php/OffsetSetCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Php; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class OffsetSetCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Php :: offsetSet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterPhpOffsetSet(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Php - offsetSet()'); + $this->checkOffsetSet($I, 'Php'); + } +} diff --git a/tests/unit/Config/Adapter/Php/OffsetUnsetCest.php b/tests/unit/Config/Adapter/Php/OffsetUnsetCest.php new file mode 100644 index 00000000000..6ff4e0a6746 --- /dev/null +++ b/tests/unit/Config/Adapter/Php/OffsetUnsetCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Php; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class OffsetUnsetCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Php :: offsetUnset() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterPhpOffsetUnset(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Php - offsetUnset()'); + $this->checkOffsetUnset($I, 'Php'); + } +} diff --git a/tests/unit/Config/Adapter/Php/PathCest.php b/tests/unit/Config/Adapter/Php/PathCest.php new file mode 100644 index 00000000000..2ebbf66d219 --- /dev/null +++ b/tests/unit/Config/Adapter/Php/PathCest.php @@ -0,0 +1,48 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Php; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class PathCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Php :: path() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterPhpPath(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Php - path()'); + $this->checkPath($I, 'Php'); + } + + /** + * Tests Phalcon\Config\Adapter\Php :: path() - default + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterPhpPathDefault(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Php - path() - default'); + $this->checkPathDefault($I, 'Php'); + } +} diff --git a/tests/unit/Config/Adapter/Php/SetPathDelimiterCest.php b/tests/unit/Config/Adapter/Php/SetPathDelimiterCest.php new file mode 100644 index 00000000000..bd24352b513 --- /dev/null +++ b/tests/unit/Config/Adapter/Php/SetPathDelimiterCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Php; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class SetPathDelimiterCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Php :: setPathDelimiter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterPhpSetPathDelimiter(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Php - setPathDelimiter()'); + $this->checkSetPathDelimiter($I, 'Php'); + } +} diff --git a/tests/unit/Config/Adapter/Php/ToArrayCest.php b/tests/unit/Config/Adapter/Php/ToArrayCest.php new file mode 100644 index 00000000000..7ede6c10db5 --- /dev/null +++ b/tests/unit/Config/Adapter/Php/ToArrayCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Php; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class ToArrayCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config\Adapter\Php :: toArray() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterPhpToArray(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Php - toArray()'); + $this->checkToArray($I, 'Php'); + } +} diff --git a/tests/unit/Config/Adapter/PhpTest.php b/tests/unit/Config/Adapter/PhpTest.php deleted file mode 100644 index 811ac9a5cbe..00000000000 --- a/tests/unit/Config/Adapter/PhpTest.php +++ /dev/null @@ -1,43 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Config\Adapter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class PhpTest extends ConfigBase -{ - /** - * Tests Php config - * - * @author Andres Gutierrez - * @since 2012-08-18 - */ - public function testPhpConfig() - { - $this->specify( - "Comparison of configurations returned a not identical result", - function () { - $config = new Php(PATH_DATA . 'config/config.php'); - $this->compareConfig($this->config, $config); - } - ); - } -} diff --git a/tests/unit/Config/Adapter/Yaml/ConstructCest.php b/tests/unit/Config/Adapter/Yaml/ConstructCest.php new file mode 100644 index 00000000000..7b1ad7346e7 --- /dev/null +++ b/tests/unit/Config/Adapter/Yaml/ConstructCest.php @@ -0,0 +1,77 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Yaml; + +use Phalcon\Config\Adapter\Yaml; +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; +use function dataFolder; + +class ConstructCest +{ + use ConfigTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('yaml'); + } + + /** + * Tests Phalcon\Config\Adapter\Yaml :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterYamlConstruct(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Yaml - construct'); + $this->checkConstruct($I, 'Yaml'); + } + + /** + * Tests Phalcon\Config\Adapter\Yaml :: __construct() - callbacks + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterYamlConstructCallbacks(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Yaml - construct - callbacks'); + define('CALLBACK_APPROOT', dirname(__DIR__)); + $config = new Yaml( + dataFolder('assets/config/callbacks.yml'), + [ + '!decrypt' => function ($value) { + return hash('sha256', $value); + }, + '!approot' => function ($value) { + return CALLBACK_APPROOT . $value; + }, + ] + ); + + $expected = CALLBACK_APPROOT . '/app/controllers/'; + $actual = $config->application->controllersDir; + $I->assertEquals($expected, $actual); + + $expected = '9f7030891b235f3e06c4bff74ae9dc1b9b59d4f2e4e6fd94eeb2b91caee5d223'; + $actual = $config->database->password; + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Config/Adapter/Yaml/CountCest.php b/tests/unit/Config/Adapter/Yaml/CountCest.php new file mode 100644 index 00000000000..7e5b3f18503 --- /dev/null +++ b/tests/unit/Config/Adapter/Yaml/CountCest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Yaml; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class CountCest +{ + use ConfigTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('yaml'); + } + + /** + * Tests Phalcon\Config\Adapter\Yaml :: count() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterYamlCount(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Yaml - count()'); + $this->checkCount($I, 'Yaml'); + } +} diff --git a/tests/unit/Config/Adapter/Yaml/GetCest.php b/tests/unit/Config/Adapter/Yaml/GetCest.php new file mode 100644 index 00000000000..f1ec733872f --- /dev/null +++ b/tests/unit/Config/Adapter/Yaml/GetCest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Yaml; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class GetCest +{ + use ConfigTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('yaml'); + } + + /** + * Tests Phalcon\Config\Adapter\Yaml :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterYamlGet(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Yaml - get()'); + $this->checkGet($I, 'Yaml'); + } +} diff --git a/tests/unit/Config/Adapter/Yaml/GetPathDelimiterCest.php b/tests/unit/Config/Adapter/Yaml/GetPathDelimiterCest.php new file mode 100644 index 00000000000..ebf2d3ee0fd --- /dev/null +++ b/tests/unit/Config/Adapter/Yaml/GetPathDelimiterCest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Yaml; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class GetPathDelimiterCest +{ + use ConfigTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('yaml'); + } + + /** + * Tests Phalcon\Config\Adapter\Yaml :: getPathDelimiter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterYamlGetPathDelimiter(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Yaml - getPathDelimiter()'); + $this->checkGetPathDelimiter($I, 'Yaml'); + } +} diff --git a/tests/unit/Config/Adapter/Yaml/MergeCest.php b/tests/unit/Config/Adapter/Yaml/MergeCest.php new file mode 100644 index 00000000000..db4c9b698c5 --- /dev/null +++ b/tests/unit/Config/Adapter/Yaml/MergeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Yaml; + +use UnitTester; + +class MergeCest +{ + /** + * Tests Phalcon\Config\Adapter\Yaml :: merge() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterYamlMerge(UnitTester $I) + { + $I->wantToTest("Config\Adapter\Yaml - merge()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Config/Adapter/Yaml/OffsetExistsCest.php b/tests/unit/Config/Adapter/Yaml/OffsetExistsCest.php new file mode 100644 index 00000000000..41ba9412b47 --- /dev/null +++ b/tests/unit/Config/Adapter/Yaml/OffsetExistsCest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Yaml; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class OffsetExistsCest +{ + use ConfigTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('yaml'); + } + + /** + * Tests Phalcon\Config\Adapter\Yaml :: offsetExists() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterYamlOffsetExists(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Yaml - offsetExists()'); + $this->checkOffsetExists($I, 'Yaml'); + } +} diff --git a/tests/unit/Config/Adapter/Yaml/OffsetGetCest.php b/tests/unit/Config/Adapter/Yaml/OffsetGetCest.php new file mode 100644 index 00000000000..69a593e400e --- /dev/null +++ b/tests/unit/Config/Adapter/Yaml/OffsetGetCest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Yaml; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class OffsetGetCest +{ + use ConfigTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('yaml'); + } + + /** + * Tests Phalcon\Config\Adapter\Yaml :: offsetGet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterYamlOffsetGet(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Yaml - offsetGet()'); + $this->checkOffsetGet($I, 'Yaml'); + } +} diff --git a/tests/unit/Config/Adapter/Yaml/OffsetSetCest.php b/tests/unit/Config/Adapter/Yaml/OffsetSetCest.php new file mode 100644 index 00000000000..226aba039c2 --- /dev/null +++ b/tests/unit/Config/Adapter/Yaml/OffsetSetCest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Yaml; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class OffsetSetCest +{ + use ConfigTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('yaml'); + } + + /** + * Tests Phalcon\Config\Adapter\Yaml :: offsetSet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterYamlOffsetSet(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Yaml - offsetSet()'); + $this->checkOffsetSet($I, 'Yaml'); + } +} diff --git a/tests/unit/Config/Adapter/Yaml/OffsetUnsetCest.php b/tests/unit/Config/Adapter/Yaml/OffsetUnsetCest.php new file mode 100644 index 00000000000..bcc5575d238 --- /dev/null +++ b/tests/unit/Config/Adapter/Yaml/OffsetUnsetCest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Yaml; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class OffsetUnsetCest +{ + use ConfigTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('yaml'); + } + + /** + * Tests Phalcon\Config\Adapter\Yaml :: offsetUnset() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterYamlOffsetUnset(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Yaml - offsetUnset()'); + $this->checkOffsetUnset($I, 'Yaml'); + } +} diff --git a/tests/unit/Config/Adapter/Yaml/PathCest.php b/tests/unit/Config/Adapter/Yaml/PathCest.php new file mode 100644 index 00000000000..33013dd0928 --- /dev/null +++ b/tests/unit/Config/Adapter/Yaml/PathCest.php @@ -0,0 +1,56 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Yaml; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class PathCest +{ + use ConfigTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('yaml'); + } + + /** + * Tests Phalcon\Config\Adapter\Yaml :: path() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterYamlPath(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Yaml - path()'); + $this->checkPath($I, 'Yaml'); + } + + /** + * Tests Phalcon\Config\Adapter\Yaml :: path() - default + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterYamlPathDefault(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Yaml - path() - default'); + $this->checkPathDefault($I, 'Yaml'); + } +} diff --git a/tests/unit/Config/Adapter/Yaml/SetPathDelimiterCest.php b/tests/unit/Config/Adapter/Yaml/SetPathDelimiterCest.php new file mode 100644 index 00000000000..1cc8a3c2b93 --- /dev/null +++ b/tests/unit/Config/Adapter/Yaml/SetPathDelimiterCest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Yaml; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class SetPathDelimiterCest +{ + use ConfigTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('yaml'); + } + + /** + * Tests Phalcon\Config\Adapter\Yaml :: setPathDelimiter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterYamlSetPathDelimiter(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Yaml - setPathDelimiter()'); + $this->checkSetPathDelimiter($I, 'Yaml'); + } +} diff --git a/tests/unit/Config/Adapter/Yaml/ToArrayCest.php b/tests/unit/Config/Adapter/Yaml/ToArrayCest.php new file mode 100644 index 00000000000..166a0635383 --- /dev/null +++ b/tests/unit/Config/Adapter/Yaml/ToArrayCest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Adapter\Yaml; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class ToArrayCest +{ + use ConfigTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('yaml'); + } + + /** + * Tests Phalcon\Config\Adapter\Yaml :: toArray() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configAdapterYamlToArray(UnitTester $I) + { + $I->wantToTest('Config\Adapter\Yaml - toArray()'); + $this->checkToArray($I, 'Yaml'); + } +} diff --git a/tests/unit/Config/Adapter/YamlTest.php b/tests/unit/Config/Adapter/YamlTest.php deleted file mode 100644 index f5080e86ba4..00000000000 --- a/tests/unit/Config/Adapter/YamlTest.php +++ /dev/null @@ -1,82 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Config\Adapter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class YamlTest extends ConfigBase -{ - /** - * executed before each test - */ - public function _before() - { - parent::_before(); - - if (!extension_loaded('yaml')) { - $this->markTestSkipped('Warning: yaml extension is not loaded'); - } - } - - /** - * Tests Yaml config - * - * @author Andres Gutierrez - * @since 2012-08-18 - */ - public function testYamlConfig() - { - $this->specify( - "Comparison of configurations returned a not identical result", - function () { - $config = new Yaml(PATH_DATA . 'config/config.yml'); - $this->compareConfig($this->config, $config); - } - ); - } - - /** - * Tests Yaml config callbacks - * - * @author Ivan Zubok - * @since 2014-11-12 - */ - public function testYamlConfigCallback() - { - $this->specify( - "Config's callbacks does not works properly", - function () { - define('CALLBACK_APPROOT', dirname(__DIR__)); - $config = new Yaml(PATH_DATA . 'config/callbacks.yml', [ - '!decrypt' => function ($value) { - return hash('sha256', $value); - }, - '!approot' => function ($value) { - return CALLBACK_APPROOT . $value; - } - ]); - - expect($config->application->controllersDir)->equals(CALLBACK_APPROOT . '/app/controllers/'); - expect($config->database->password)->equals('9f7030891b235f3e06c4bff74ae9dc1b9b59d4f2e4e6fd94eeb2b91caee5d223'); - } - ); - } -} diff --git a/tests/unit/Config/ConfigCest.php b/tests/unit/Config/ConfigCest.php new file mode 100644 index 00000000000..2422ef9e353 --- /dev/null +++ b/tests/unit/Config/ConfigCest.php @@ -0,0 +1,338 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit; + +use Phalcon\Config; +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class ConfigCest +{ + use ConfigTrait; + + /** + * Tests access by numeric key + * + * @author Rian Orie + * @since 2014-11-12 + */ + public function testNumericConfig(UnitTester $I) + { + $config = new Config(['abc']); + + $expected = 'abc'; + $actual = $config->{0}; + $I->assertEquals($expected, $actual); + } + + /** + * Tests converting child array to config object + * + * @author Rian Orie + * @since 2014-11-12 + */ + public function testChildArrayToConfigObject(UnitTester $I) + { + $config = new Config( + [ + 'childNode' => ['A', 'B', 'C'], + ] + ); + + $expected = 'Phalcon\Config'; + $actual = $config->childNode; + $I->assertInstanceOf($expected, $actual); + + $expected = 'Phalcon\Config'; + $actual = $config->get('childNode'); + $I->assertInstanceOf($expected, $actual); + + $expected = 'Phalcon\Config'; + $actual = $config->offsetGet('childNode'); + $I->assertInstanceOf($expected, $actual); + } + + /** + * Tests standard config simple array + * + * @author Phalcon Team + * @since 2012-09-11 + */ + public function testStandardConfigSimpleArray(UnitTester $I) + { + $settings = [ + 'database' => [ + 'adapter' => 'Mysql', + 'host' => 'localhost', + 'username' => 'scott', + 'password' => 'cheetah', + 'name' => 'test_db', + ], + 'other' => [1, 2, 3, 4], + ]; + + $expected = Config::__set_state( + [ + 'database' => Config::__set_state( + [ + 'adapter' => 'Mysql', + 'host' => 'localhost', + 'username' => 'scott', + 'password' => 'cheetah', + 'name' => 'test_db', + ] + ), + 'other' => [ + 0 => 1, + 1 => 2, + 2 => 3, + 3 => 4, + ], + ] + ); + $actual = new Config($settings); + $I->assertEquals($expected, $actual); + } + + /** + * Tests merging config objects + * + * @author kjdev + * @since 2015-02-18 + */ + public function testConfigMergeArray(UnitTester $I) + { + $config = new Config(['keys' => ['scott', 'cheetah']]); + + $expected = Config::__set_state( + [ + 'keys' => Config::__set_state( + [ + '0' => 'scott', + '1' => 'cheetah', + '2' => 'peter', + ] + ), + ] + ); + $actual = $config->merge(new Config(['keys' => ['peter']])); + $I->assertEquals($expected, $actual); + + $config = new Config(['keys' => ['peter']]); + + $expected = Config::__set_state([ + 'keys' => Config::__set_state([ + '0' => 'peter', + '1' => 'scott', + '2' => 'cheetah', + ]), + ]); + $actual = $config->merge(new Config(['keys' => ['scott', 'cheetah']])); + $I->assertEquals($expected, $actual); + } + + /** + * Tests merging complex config objects + * + * @author Phalcon Team + * @since 2012-12-16 + */ + public function testConfigMergeComplexObjects(UnitTester $I) + { + $config1 = new Config([ + 'controllersDir' => '../x/y/z', + 'modelsDir' => '../x/y/z', + 'database' => [ + 'adapter' => 'Mysql', + 'host' => 'localhost', + 'username' => 'scott', + 'password' => 'cheetah', + 'name' => 'test_db', + 'charset' => [ + 'primary' => 'utf8', + ], + 'alternatives' => [ + 'primary' => 'latin1', + 'second' => 'latin1', + ], + ], + ]); + + $config2 = new Config([ + 'modelsDir' => '../x/y/z', + 'database' => [ + 'adapter' => 'Postgresql', + 'host' => 'localhost', + 'username' => 'peter', + 'options' => [ + 'case' => 'lower', + \PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8', + ], + 'alternatives' => [ + 'primary' => 'swedish', + 'third' => 'american', + ], + ], + ]); + + $config1->merge($config2); + + $expected = Config::__set_state( + [ + 'controllersDir' => '../x/y/z', + 'modelsDir' => '../x/y/z', + 'database' => Config::__set_state( + [ + 'adapter' => 'Postgresql', + 'host' => 'localhost', + 'username' => 'peter', + 'password' => 'cheetah', + 'name' => 'test_db', + 'charset' => Config::__set_state( + [ + 'primary' => 'utf8', + ] + ), + 'alternatives' => Config::__set_state( + [ + 'primary' => 'swedish', + 'second' => 'latin1', + 'third' => 'american', + ] + ), + 'options' => Config::__set_state( + [ + 'case' => 'lower', + (string) \PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8', + ] + ), + ] + ), + ] + ); + $actual = $config1; + $I->assertEquals($expected, $actual); + } + + /** + * Tests issue 12779 + * + * @issue https://github.com/phalcon/cphalcon/issues/12779 + * @author Wojciech Ślawski + * @since 2017-06-19 + */ + public function testIssue12779(UnitTester $I) + { + $config = new Config( + [ + 'a' => [ + [ + 1, + ], + ], + ] + ); + + $config->merge( + new Config( + [ + 'a' => [ + [ + 2, + ], + ], + ] + ) + ); + + + $expected = [ + 'a' => [ + [ + 1, + 2, + ], + ], + ]; + $actual = $config->toArray(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests issue 13351 + * + * @link https://github.com/phalcon/cphalcon/issues/13351 + * @author Zamrony P. Juhara + * @since 2018-04-27 + */ + public function testIssue13351MergeNonZeroBasedNumericKey(UnitTester $I) + { + $config = new Config([1 => 'Apple']); + $config2 = new Config([2 => 'Banana']); + $config->merge($config2); + + $expected = [ + 1 => 'Apple', + 2 => 'Banana', + ]; + $actual = $config->toArray(); + $I->assertEquals($expected, $actual); + + + $config = new Config([0 => 'Apple']); + $config2 = new Config([1 => 'Banana']); + $config->merge($config2); + + $expected = [ + 0 => 'Apple', + 1 => 'Banana', + ]; + $actual = $config->toArray(); + $I->assertEquals($expected, $actual); + + $config = new Config([1 => 'Apple', 'p' => 'Pineapple']); + $config2 = new Config([2 => 'Banana']); + $config->merge($config2); + + $expected = [ + 1 => 'Apple', + 'p' => 'Pineapple', + 2 => 'Banana', + ]; + $actual = $config->toArray(); + $I->assertEquals($expected, $actual); + + $config = new Config([ + 'One' => [1 => 'Apple', 'p' => 'Pineapple'], + 'Two' => [1 => 'Apple'], + ]); + $config2 = new Config([ + 'One' => [2 => 'Banana'], + 'Two' => [2 => 'Banana'], + ]); + $config->merge($config2); + + $expected = [ + 'One' => [ + 1 => 'Apple', + 'p' => 'Pineapple', + 2 => 'Banana', + ], + 'Two' => [ + 1 => 'Apple', + 2 => 'Banana', + ], + ]; + $actual = $config->toArray(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Config/ConstructCest.php b/tests/unit/Config/ConstructCest.php new file mode 100644 index 00000000000..674d815d3f2 --- /dev/null +++ b/tests/unit/Config/ConstructCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class ConstructCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configConstruct(UnitTester $I) + { + $I->wantToTest("Config - __construct()"); + $this->checkOffsetGet($I); + } +} diff --git a/tests/unit/Config/CountCest.php b/tests/unit/Config/CountCest.php new file mode 100644 index 00000000000..79114166e6d --- /dev/null +++ b/tests/unit/Config/CountCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class CountCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config :: count() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configCount(UnitTester $I) + { + $I->wantToTest("Config - count()"); + $this->checkCount($I); + } +} diff --git a/tests/unit/Config/Factory/LoadCest.php b/tests/unit/Config/Factory/LoadCest.php new file mode 100644 index 00000000000..c3503c30772 --- /dev/null +++ b/tests/unit/Config/Factory/LoadCest.php @@ -0,0 +1,90 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config\Factory; + +use Phalcon\Config\Adapter\Ini; +use Phalcon\Config\Factory; +use Phalcon\Test\Fixtures\Traits\FactoryTrait; +use UnitTester; + +class LoadCest +{ + use FactoryTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $this->init(); + } + + /** + * Tests Phalcon\Config\Factory :: load() - Config + * + * @param UnitTester $I + * + * @author Wojciech Ślawski + * @since 2017-03-02 + */ + public function configFactoryLoadConfig(UnitTester $I) + { + $I->wantToTest('Config\Factory - load() - Config'); + $options = $this->config->config; + /** @var Ini $ini */ + $ini = Factory::load($options); + + $expected = Ini::class; + $actual = $ini; + $I->assertInstanceOf($expected, $actual); + } + + /** + * Tests Phalcon\Config\Factory :: load() - array + * + * @param UnitTester $I + * + * @author Wojciech Ślawski + * @since 2017-03-02 + */ + public function configFactoryLoadArray(UnitTester $I) + { + $I->wantToTest('Config\Factory - load() - array'); + $options = $this->arrayConfig["config"]; + /** @var Ini $ini */ + $ini = Factory::load($options); + + $expected = Ini::class; + $actual = $ini; + $I->assertInstanceOf($expected, $actual); + } + + /** + * Tests Phalcon\Config\Factory :: load() - string + * + * @param UnitTester $I + * + * @author Wojciech Ślawski + * @since 2017-11-24 + */ + public function configFactoryLoadString(UnitTester $I) + { + $I->wantToTest('Config\Factory - load() - string'); + $filePath = $this->arrayConfig['config']['filePathExtension']; + /** @var Ini $ini */ + $ini = Factory::load($filePath); + + $expected = Ini::class; + $actual = $ini; + $I->assertInstanceOf($expected, $actual); + } +} diff --git a/tests/unit/Config/FactoryTest.php b/tests/unit/Config/FactoryTest.php deleted file mode 100644 index 159e8e92fdc..00000000000 --- a/tests/unit/Config/FactoryTest.php +++ /dev/null @@ -1,85 +0,0 @@ - - * @author Serghei Iakovlev - * @author Wojciech Ślawski - * @package Phalcon\Test\Unit\Annotations - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FactoryTest extends FactoryBase -{ - /** - * Test factory using Phalcon\Config - * - * @author Wojciech Ślawski - * @since 2017-03-02 - */ - public function testConfigFactory() - { - $this->specify( - "Factory using Phalcon\\Config doesn't work properly", - function () { - $options = $this->config->config; - /** @var Ini $ini */ - $ini = Factory::load($options); - expect($ini)->isInstanceOf(Ini::class); - } - ); - } - - /** - * Test factory using array - * - * @author Wojciech Ślawski - * @since 2017-03-02 - */ - public function testArrayFactory() - { - $this->specify( - "Factory using array doesn't work properly", - function () { - $options = $this->arrayConfig["config"]; - /** @var Ini $ini */ - $ini = Factory::load($options); - expect($ini)->isInstanceOf(Ini::class); - } - ); - } - - /** - * Test factory using array - * - * @author Wojciech Ślawski - * @since 2017-11-24 - */ - public function testStringFactory() - { - $this->specify( - "Factory using string doesn't work properly", - function () { - $filePath = $this->arrayConfig['config']['filePathExtension']; - /** @var Ini $ini */ - $ini = Factory::load($filePath); - expect($ini)->isInstanceOf(Ini::class); - } - ); - } -} diff --git a/tests/unit/Config/GetCest.php b/tests/unit/Config/GetCest.php new file mode 100644 index 00000000000..55b0dc7d541 --- /dev/null +++ b/tests/unit/Config/GetCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class GetCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configGet(UnitTester $I) + { + $I->wantToTest("Config - get()"); + $this->checkGet($I); + } +} diff --git a/tests/unit/Config/GetPathDelimiterCest.php b/tests/unit/Config/GetPathDelimiterCest.php new file mode 100644 index 00000000000..e9575bacee8 --- /dev/null +++ b/tests/unit/Config/GetPathDelimiterCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class GetPathDelimiterCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config :: getPathDelimiter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configGetPathDelimiter(UnitTester $I) + { + $I->wantToTest("Config - getPathDelimiter()"); + $this->checkGetPathDelimiter($I); + } +} diff --git a/tests/unit/Config/Helper/ConfigBase.php b/tests/unit/Config/Helper/ConfigBase.php deleted file mode 100644 index 91115e678ed..00000000000 --- a/tests/unit/Config/Helper/ConfigBase.php +++ /dev/null @@ -1,77 +0,0 @@ - - * @package Phalcon\Test\Unit\Config\Helper - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ConfigBase extends UnitTest -{ - protected $config = [ - 'phalcon' => [ - 'baseuri' => '/phalcon/' - ], - 'models' => [ - 'metadata' => 'memory' - ], - 'database' => [ - 'adapter' => 'mysql', - 'host' => 'localhost', - 'username' => 'user', - 'password' => 'passwd', - 'name' => 'demo' - ], - 'test' => [ - 'parent' => [ - 'property' => 1, - 'property2' => 'yeah' - ], - ], - 'issue-12725' => [ - 'channel' => [ - 'handlers' => [ - 0 => [ - 'name' => 'stream', - 'level' => 'debug', - 'fingersCrossed' => 'info', - 'filename' => 'channel.log' - ], - 1 => [ - 'name' => 'redis', - 'level' => 'debug', - 'fingersCrossed' => 'info' - ] - ] - ] - ] - ]; - - protected function compareConfig(array $actual, Config $expected) - { - $this->assertEquals($actual, $expected->toArray()); - - foreach ($actual as $key => $value) { - $this->assertTrue(isset($expected->$key)); - - if (is_array($value)) { - $this->compareConfig($value, $expected->$key); - } - } - } -} diff --git a/tests/unit/Config/MergeCest.php b/tests/unit/Config/MergeCest.php new file mode 100644 index 00000000000..87f417ba4de --- /dev/null +++ b/tests/unit/Config/MergeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config; + +use UnitTester; + +class MergeCest +{ + /** + * Tests Phalcon\Config :: merge() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configMerge(UnitTester $I) + { + $I->wantToTest("Config - merge()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Config/OffsetExistsCest.php b/tests/unit/Config/OffsetExistsCest.php new file mode 100644 index 00000000000..ac0b190ab82 --- /dev/null +++ b/tests/unit/Config/OffsetExistsCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class OffsetExistsCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config :: offsetExists() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configOffsetExists(UnitTester $I) + { + $I->wantToTest("Config - offsetExists()"); + $this->checkOffsetExists($I); + } +} diff --git a/tests/unit/Config/OffsetGetCest.php b/tests/unit/Config/OffsetGetCest.php new file mode 100644 index 00000000000..41c575503ac --- /dev/null +++ b/tests/unit/Config/OffsetGetCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class OffsetGetCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config :: offsetGet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configOffsetGet(UnitTester $I) + { + $I->wantToTest("Config - offsetGet()"); + $this->checkOffsetGet($I); + } +} diff --git a/tests/unit/Config/OffsetSetCest.php b/tests/unit/Config/OffsetSetCest.php new file mode 100644 index 00000000000..548893add8c --- /dev/null +++ b/tests/unit/Config/OffsetSetCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class OffsetSetCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config :: offsetSet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configOffsetSet(UnitTester $I) + { + $I->wantToTest("Config - offsetSet()"); + $this->checkOffsetSet($I); + } +} diff --git a/tests/unit/Config/OffsetUnsetCest.php b/tests/unit/Config/OffsetUnsetCest.php new file mode 100644 index 00000000000..22679cd626a --- /dev/null +++ b/tests/unit/Config/OffsetUnsetCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class OffsetUnsetCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config :: offsetUnset() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configOffsetUnset(UnitTester $I) + { + $I->wantToTest("Config - offsetUnset()"); + $this->checkOffsetUnset($I); + } +} diff --git a/tests/unit/Config/PathCest.php b/tests/unit/Config/PathCest.php new file mode 100644 index 00000000000..39e33f965c3 --- /dev/null +++ b/tests/unit/Config/PathCest.php @@ -0,0 +1,46 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class PathCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config :: path() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configPath(UnitTester $I) + { + $I->wantToTest('Config - path()'); + $this->checkPath($I); + } + + /** + * Tests Phalcon\Config :: path() - default + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configPathDefault(UnitTester $I) + { + $I->wantToTest('Config - path() - default'); + $this->checkPathDefault($I); + } +} diff --git a/tests/unit/Config/SetPathDelimiterCest.php b/tests/unit/Config/SetPathDelimiterCest.php new file mode 100644 index 00000000000..500b8781da1 --- /dev/null +++ b/tests/unit/Config/SetPathDelimiterCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class SetPathDelimiterCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config :: setPathDelimiter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configSetPathDelimiter(UnitTester $I) + { + $I->wantToTest("Config - setPathDelimiter()"); + $this->checkSetPathDelimiter($I); + } +} diff --git a/tests/unit/Config/SetStateCest.php b/tests/unit/Config/SetStateCest.php new file mode 100644 index 00000000000..ba8ce4ec848 --- /dev/null +++ b/tests/unit/Config/SetStateCest.php @@ -0,0 +1,108 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config; + +use Phalcon\Config; +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class SetStateCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config :: __set_state() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configSetState(UnitTester $I) + { + $I->wantToTest("Config - __set_state()"); + $config = $this->getConfig(); + + $expected = $this->getSetState(); + $actual = $config; + $I->assertEquals($expected, $actual); + } + + /** + * Sets the state on a config object to check __set_state + * + * @return Config + */ + private function getSetState(): Config + { + return Config::__set_state( + [ + 'phalcon' => Config::__set_state( + [ + 'baseuri' => '/phalcon/', + ] + ), + 'models' => Config::__set_state( + [ + 'metadata' => 'memory', + ] + ), + 'database' => Config::__set_state( + [ + 'adapter' => 'mysql', + 'host' => 'localhost', + 'username' => 'user', + 'password' => 'passwd', + 'name' => 'demo', + ] + ), + 'test' => Config::__set_state( + [ + 'parent' => Config::__set_state( + [ + 'property' => 1, + 'property2' => 'yeah', + ] + ), + ] + ), + 'issue-12725' => Config::__set_state( + [ + 'channel' => Config::__set_state( + [ + 'handlers' => Config::__set_state( + [ + 0 => Config::__set_state( + [ + 'name' => 'stream', + 'level' => 'debug', + 'fingersCrossed' => 'info', + 'filename' => 'channel.log', + ] + ), + 1 => Config::__set_state( + [ + 'name' => 'redis', + 'level' => 'debug', + 'fingersCrossed' => 'info', + ] + ), + ] + ), + ] + ), + ] + ), + ] + ); + } +} diff --git a/tests/unit/Config/ToArrayCest.php b/tests/unit/Config/ToArrayCest.php new file mode 100644 index 00000000000..55a000ca4f5 --- /dev/null +++ b/tests/unit/Config/ToArrayCest.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Config; + +use Phalcon\Test\Fixtures\Traits\ConfigTrait; +use UnitTester; + +class ToArrayCest +{ + use ConfigTrait; + + /** + * Tests Phalcon\Config :: toArray() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function configToArray(UnitTester $I) + { + $I->wantToTest("Config - toArray()"); + $this->checkToArray($I); + } +} diff --git a/tests/unit/ConfigTest.php b/tests/unit/ConfigTest.php deleted file mode 100644 index fb8e642b579..00000000000 --- a/tests/unit/ConfigTest.php +++ /dev/null @@ -1,411 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ConfigTest extends ConfigBase -{ - /** - * Tests path method - * - * @author michanismus - * @since 2017-03-29 - */ - public function testConfigPath() - { - $this->specify( - "Config path does not return expected value", - function () { - $config = new Config($this->config); - expect($config->path('test.parent.property2'))->equals('yeah'); - expect($config->path('test.parent.property3', 'No'))->equals('No'); - expect($config->path('test.parent'))->isInstanceOf('Phalcon\Config'); - expect($config->path('unknown.path'))->equals(null); - Config::setPathDelimiter('/'); - expect($config->path('test.parent.property2', false))->equals(false); - expect($config->path('test/parent/property2'))->equals('yeah'); - expect($config->path('test/parent'))->isInstanceOf('Phalcon\Config'); - } - ); - } - - /** - * Tests toArray method - * - * @author Serghei Iakovlev - * @since 2016-01-17 - */ - public function testConfigToArray() - { - $this->specify( - "Transform Config to the array does not returns the expected result", - function () { - $settings = [ - 'database' => [ - 'adapter' => 'Mysql', - 'host' => 'localhost', - 'username' => 'scott', - 'password' => 'cheetah', - 'name' => 'test_db', - ], - 'other' => [1, 2, 3, 4] - ]; - - $config = new Config($settings); - expect($config->toArray())->equals($settings); - } - ); - } - - /** - * Tests implementing of Countable interface - * - * @author Faruk Brbovic - * @since 2014-11-03 - */ - public function testConfigCount() - { - $this->specify( - "Returns the count of properties set in the config", - function () { - $config = new Config([ - "controllersDir" => "../x/y/z", - "modelsDir" => "../x/y/z", - ]); - - expect(count($config))->equals(2); - expect($config->count())->equals(2); - } - ); - } - - /** - * Tests Standard Config - * - * @author Andres Gutierrez - * @since 2012-08-18 - */ - public function testStandardConfig() - { - $this->specify( - "Comparison of configurations returned a not identical result", - function () { - $config = new Config($this->config); - $this->compareConfig($this->config, $config); - } - ); - } - - /** - * Tests access by numeric key - * - * @author Rian Orie - * @since 2014-11-12 - */ - public function testNumericConfig() - { - $this->specify( - "Access by numeric key does not return the expected result", - function () { - $config = new Config(['abc']); - expect($config->{0})->equals('abc'); - } - ); - } - - /** - * Tests converting child array to config object - * - * @author Rian Orie - * @since 2014-11-12 - */ - public function testChildArrayToConfigObject() - { - $this->specify( - "Child node don't converted to the config object", - function () { - $config = new Config(['childNode' => ['A', 'B', 'C']]); - expect($config->childNode)->isInstanceOf('Phalcon\Config'); - expect($config->get('childNode'))->isInstanceOf('Phalcon\Config'); - expect($config->offsetGet('childNode'))->isInstanceOf('Phalcon\Config'); - } - ); - } - - /** - * Tests standard config simple array - * - * @author Andres Gutierrez - * @since 2012-09-11 - */ - public function testStandardConfigSimpleArray() - { - $this->specify( - "Comparison of objects returned a not identical result", - function () { - $expectedConfig = Config::__set_state([ - 'database' => Config::__set_state( - [ - 'adapter' => 'Mysql', - 'host' => 'localhost', - 'username' => 'scott', - 'password' => 'cheetah', - 'name' => 'test_db', - ] - ), - 'other' => [ - 0 => 1, - 1 => 2, - 2 => 3, - 3 => 4, - ], - ]); - - $settings = [ - 'database' => [ - 'adapter' => 'Mysql', - 'host' => 'localhost', - 'username' => 'scott', - 'password' => 'cheetah', - 'name' => 'test_db', - ], - 'other' => [1, 2, 3, 4] - ]; - - expect(new Config($settings))->equals($expectedConfig); - } - ); - } - - /** - * Tests merging config objects - * - * @author kjdev - * @since 2015-02-18 - */ - public function testConfigMergeArray() - { - $this->specify( - "Config objects does not merged properly", - function () { - $expected = Config::__set_state([ - 'keys' => Config::__set_state([ - '0' => 'scott', - '1' => 'cheetah', - '2' => 'peter', - ]), - ]); - - $config = new Config(['keys' => ['scott', 'cheetah']]); - expect($config->merge(new Config(['keys' => ['peter']])))->equals($expected); - - $expected = Config::__set_state([ - 'keys' => Config::__set_state([ - '0' => 'peter', - '1' => 'scott', - '2' => 'cheetah', - ]), - ]); - - $config = new Config(['keys' => ['peter']]); - expect($config->merge(new Config(['keys' => ['scott', 'cheetah']])))->equals($expected); - } - ); - } - - /** - * Tests merging complex config objects - * - * @author Andres Gutierrez - * @since 2012-12-16 - */ - public function testConfigMergeComplexObjects() - { - $this->specify( - "Config objects does not merged properly", - function () { - $config1 = new Config([ - 'controllersDir' => '../x/y/z', - 'modelsDir' => '../x/y/z', - 'database' => [ - 'adapter' => 'Mysql', - 'host' => 'localhost', - 'username' => 'scott', - 'password' => 'cheetah', - 'name' => 'test_db', - 'charset' => [ - 'primary' => 'utf8' - ], - 'alternatives' => [ - 'primary' => 'latin1', - 'second' => 'latin1' - ] - ], - ]); - - $config2 = new Config([ - 'modelsDir' => '../x/y/z', - 'database' => [ - 'adapter' => 'Postgresql', - 'host' => 'localhost', - 'username' => 'peter', - 'options' => [ - 'case' => 'lower', - \PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8', - ], - 'alternatives' => [ - 'primary' => 'swedish', - 'third' => 'american', - ], - ], - ]); - - $config1->merge($config2); - - $expected = Config::__set_state([ - 'controllersDir' => '../x/y/z', - 'modelsDir' => '../x/y/z', - 'database' => Config::__set_state([ - 'adapter' => 'Postgresql', - 'host' => 'localhost', - 'username' => 'peter', - 'password' => 'cheetah', - 'name' => 'test_db', - 'charset' => Config::__set_state([ - 'primary' => 'utf8', - ]), - 'alternatives' => Config::__set_state([ - 'primary' => 'swedish', - 'second' => 'latin1', - 'third' => 'american', - ]), - 'options' => Config::__set_state([ - 'case' => 'lower', - (string) \PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8', - ]), - ]), - ]); - - expect($config1)->equals($expected); - } - ); - } - - /** - * Tests issue 12779 - * - * @issue https://github.com/phalcon/cphalcon/issues/12779 - * @author Wojciech Ślawski - * @since 2017-06-19 - */ - public function testIssue12779() - { - $config = new Config( - [ - 'a' => [ - [ - 1, - ], - ], - ] - ); - - $config->merge( - new Config( - [ - 'a' => [ - [ - 2, - ], - ], - ] - ) - ); - expect($config->toArray())->equals( - [ - 'a' => [ - [ - 1, - 2, - ], - ], - ] - ); - } - - /** - * Tests issue 13351 - * - * @link https://github.com/phalcon/cphalcon/issues/13351 - * @author Zamrony P. Juhara - * @since 2018-04-27 - */ - public function testIssue13351MergeNonZeroBasedNumericKey() - { - $config = new Config([1 => 'Apple']); - $config2 = new Config([2 => 'Banana']); - $config->merge($config2); - expect($config->toArray())->equals( - [ - 1 => 'Apple', - 2 => 'Banana', - ] - ); - - $config = new Config([0 => 'Apple']); - $config2 = new Config([1 => 'Banana']); - $config->merge($config2); - expect($config->toArray())->equals( - [ - 0 => 'Apple', - 1 => 'Banana', - ] - ); - - $config = new Config([1 => 'Apple', 'p' => 'Pineapple']); - $config2 = new Config([2 => 'Banana']); - $config->merge($config2); - expect($config->toArray())->equals( - [ - 1 => 'Apple', - 'p' => 'Pineapple', - 2 => 'Banana', - ] - ); - - $config = new Config([ - 'One' => [1 => 'Apple', 'p' => 'Pineapple'], - 'Two' => [1 => 'Apple'], - ]); - $config2 = new Config([ - 'One' => [2 => 'Banana'], - 'Two' => [2 => 'Banana'], - ]); - $config->merge($config2); - expect($config->toArray())->equals( - [ - 'One' => [1 => 'Apple', 'p' => 'Pineapple', 2 => 'Banana'], - 'Two' => [1 => 'Apple', 2 => 'Banana'], - ] - ); - } -} diff --git a/tests/unit/Crypt/ConstructCest.php b/tests/unit/Crypt/ConstructCest.php new file mode 100644 index 00000000000..b70b5d12d49 --- /dev/null +++ b/tests/unit/Crypt/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Crypt :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptConstruct(UnitTester $I) + { + $I->wantToTest("Crypt - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/CryptCest.php b/tests/unit/Crypt/CryptCest.php new file mode 100644 index 00000000000..01c61afef95 --- /dev/null +++ b/tests/unit/Crypt/CryptCest.php @@ -0,0 +1,236 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt; + +use Phalcon\Crypt; +use Phalcon\Crypt\Exception; +use Phalcon\Test\Fixtures\Traits\CryptTrait; +use UnitTester; + +class CryptCest +{ + use CryptTrait; + + /** + * Tests decrypt using HMAC + * + * @issue https://github.com/phalcon/cphalcon/issues/13379 + * @author + * @since 2018-05-16 + * + * @expectedException \Phalcon\Crypt\Mismatch + * @expectedExceptionMessage Hash does not match. + */ + public function shouldThrowExceptionIfHashMismatch(UnitTester $I) + { + $I->expectThrowable( + Exception::class, + function () { + $crypt = new Crypt(); + $crypt->useSigning(true); + + $crypt->decrypt( + $crypt->encrypt('le text', 'encrypt key'), + 'wrong key' + ); + } + ); + } + + /** + * Tests decrypt using HMAC + * + * @issue https://github.com/phalcon/cphalcon/issues/13379 + * @author + * @since 2018-05-16 + */ + public function shouldDecryptSignedString(UnitTester $I) + { + $crypt = new Crypt(); + $crypt->useSigning(true); + + $key = 'secret'; + $crypt->setKey($key); + + $expected = 'le text'; + $encrypted = $crypt->encrypt($expected); + $actual = $crypt->decrypt($encrypted); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests decrypt without using HMAC + * + * @issue https://github.com/phalcon/cphalcon/issues/13379 + * @author + * @since 2018-05-16 + */ + public function shouldNotThrowExceptionIfKeyMismatch(UnitTester $I) + { + $crypt = new Crypt(); + + $actual = $crypt->decrypt( + $crypt->encrypt('le text', 'encrypt key'), + 'wrong key' + ); + + $I->assertNotEmpty($actual); + } + + /** + * Tests the Crypt::setCipher + * + * @author Phalcon Team + * @since 2018-05-06 + * + * @expectedException \Phalcon\Crypt\Exception + * @expectedExceptionMessage The cipher algorithm "xxx-yyy-zzz" is not + * supported on this system. + */ + public function shouldThrowExceptionIfCipherIsUnknown(UnitTester $I) + { + $I->expectThrowable( + Exception::class, + function () { + $crypt = new Crypt(); + $crypt->setCipher('xxx-yyy-zzz'); + } + ); + } + + /** + * Tests the Crypt constants + * + * @author Phalcon Team + * @since 2015-12-20 + */ + public function testCryptConstants(UnitTester $I) + { + $I->assertEquals(0, Crypt::PADDING_DEFAULT); + $I->assertEquals(1, Crypt::PADDING_ANSI_X_923); + $I->assertEquals(2, Crypt::PADDING_PKCS7); + $I->assertEquals(3, Crypt::PADDING_ISO_10126); + $I->assertEquals(4, Crypt::PADDING_ISO_IEC_7816_4); + $I->assertEquals(5, Crypt::PADDING_ZERO); + $I->assertEquals(6, Crypt::PADDING_SPACE); + } + + /** + * Tests the encryption + * + * @author Phalcon Team + * @since 2014-10-17 + */ + public function testCryptEncryption(UnitTester $I) + { + $tests = [ + md5(uniqid()) => str_repeat('x', mt_rand(1, 255)), + time() . time() => str_shuffle('abcdefeghijklmnopqrst'), + 'le$ki12432543543543543' => "", + ]; + $ciphers = [ + 'AES-128-ECB', + 'AES-128-CBC', + 'AES-128-CFB', + 'AES-128-OFB', + 'AES128', + ]; + + $crypt = new Crypt(); + foreach ($ciphers as $cipher) { + $crypt->setCipher($cipher); + + foreach ($tests as $key => $test) { + $crypt->setKey(substr($key, 0, 16)); + $encryption = $crypt->encrypt($test); + $actual = rtrim($crypt->decrypt($encryption), "\0"); + $I->assertEquals($test, $actual); + } + + foreach ($tests as $key => $test) { + $encryption = $crypt->encrypt($test, substr($key, 0, 16)); + $actual = rtrim($crypt->decrypt($encryption, substr($key, 0, 16)), "\0"); + $I->assertEquals($test, $actual); + } + } + } + + /** + * Tests the padding + * + * @author Phalcon Team + * @since 2014-10-17 + */ + public function testCryptPadding(UnitTester $I) + { + $texts = ['']; + $key = '0123456789ABCDEF0123456789ABCDEF'; + $ciphers = [ + 'AES-256-ECB', + 'AES-256-CBC', + 'AES-256-CFB', + ]; + $pads = [ + Crypt::PADDING_ANSI_X_923, + Crypt::PADDING_PKCS7, + Crypt::PADDING_ISO_10126, + Crypt::PADDING_ISO_IEC_7816_4, + Crypt::PADDING_ZERO, + Crypt::PADDING_SPACE, + ]; + + for ($i = 1; $i < 128; ++$i) { + $texts[] = str_repeat('A', $i); + } + + $crypt = new Crypt(); + $crypt->setKey(substr($key, 0, 32)); + + foreach ($pads as $padding) { + $crypt->setPadding($padding); + + foreach ($ciphers as $cipher) { + $crypt->setCipher($cipher); + + foreach ($texts as $expected) { + $encrypted = $crypt->encrypt($expected); + $actual = $crypt->decrypt($encrypted); + $I->assertEquals($expected, $actual); + } + } + } + } + + /** + * Tests the encryption base 64 + * + * @author Phalcon Team + * @since 2014-10-17 + */ + public function testCryptEncryptBase64(UnitTester $I) + { + $crypt = new Crypt(); + $crypt->setPadding(Crypt::PADDING_ANSI_X_923); + + $key = substr('phalcon notice 13123123', 0, 16); + $expected = 'https://github.com/phalcon/cphalcon/issues?state=open'; + + $encrypted = $crypt->encryptBase64($expected, substr($key, 0, 16)); + $actual = $crypt->decryptBase64($encrypted, $key); + $I->assertEquals($expected, $actual); + + $encrypted = $crypt->encryptBase64($expected, $key, true); + $actual = $crypt->decryptBase64($encrypted, $key, true); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Crypt/DecryptBase64Cest.php b/tests/unit/Crypt/DecryptBase64Cest.php new file mode 100644 index 00000000000..d5205e41fba --- /dev/null +++ b/tests/unit/Crypt/DecryptBase64Cest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt; + +use UnitTester; + +class DecryptBase64Cest +{ + /** + * Tests Phalcon\Crypt :: decryptBase64() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptDecryptBase64(UnitTester $I) + { + $I->wantToTest("Crypt - decryptBase64()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/DecryptCest.php b/tests/unit/Crypt/DecryptCest.php new file mode 100644 index 00000000000..a4af89b455b --- /dev/null +++ b/tests/unit/Crypt/DecryptCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt; + +use UnitTester; + +class DecryptCest +{ + /** + * Tests Phalcon\Crypt :: decrypt() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptDecrypt(UnitTester $I) + { + $I->wantToTest("Crypt - decrypt()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/EncryptBase64Cest.php b/tests/unit/Crypt/EncryptBase64Cest.php new file mode 100644 index 00000000000..89e993bb946 --- /dev/null +++ b/tests/unit/Crypt/EncryptBase64Cest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt; + +use UnitTester; + +class EncryptBase64Cest +{ + /** + * Tests Phalcon\Crypt :: encryptBase64() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptEncryptBase64(UnitTester $I) + { + $I->wantToTest("Crypt - encryptBase64()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/EncryptCest.php b/tests/unit/Crypt/EncryptCest.php new file mode 100644 index 00000000000..63a898ff3b7 --- /dev/null +++ b/tests/unit/Crypt/EncryptCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt; + +use UnitTester; + +class EncryptCest +{ + /** + * Tests Phalcon\Crypt :: encrypt() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptEncrypt(UnitTester $I) + { + $I->wantToTest("Crypt - encrypt()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/GetAvailableCiphersCest.php b/tests/unit/Crypt/GetAvailableCiphersCest.php new file mode 100644 index 00000000000..add248eaf01 --- /dev/null +++ b/tests/unit/Crypt/GetAvailableCiphersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt; + +use UnitTester; + +class GetAvailableCiphersCest +{ + /** + * Tests Phalcon\Crypt :: getAvailableCiphers() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptGetAvailableCiphers(UnitTester $I) + { + $I->wantToTest("Crypt - getAvailableCiphers()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/GetAvailableHashAlgosCest.php b/tests/unit/Crypt/GetAvailableHashAlgosCest.php new file mode 100644 index 00000000000..d2804d44377 --- /dev/null +++ b/tests/unit/Crypt/GetAvailableHashAlgosCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt; + +use UnitTester; + +class GetAvailableHashAlgosCest +{ + /** + * Tests Phalcon\Crypt :: getAvailableHashAlgos() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptGetAvailableHashAlgos(UnitTester $I) + { + $I->wantToTest("Crypt - getAvailableHashAlgos()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/GetCipherCest.php b/tests/unit/Crypt/GetCipherCest.php new file mode 100644 index 00000000000..e85ec51a768 --- /dev/null +++ b/tests/unit/Crypt/GetCipherCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt; + +use UnitTester; + +class GetCipherCest +{ + /** + * Tests Phalcon\Crypt :: getCipher() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptGetCipher(UnitTester $I) + { + $I->wantToTest("Crypt - getCipher()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/GetHashAlgoCest.php b/tests/unit/Crypt/GetHashAlgoCest.php new file mode 100644 index 00000000000..a159c2cb9f0 --- /dev/null +++ b/tests/unit/Crypt/GetHashAlgoCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt; + +use UnitTester; + +class GetHashAlgoCest +{ + /** + * Tests Phalcon\Crypt :: getHashAlgo() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptGetHashAlgo(UnitTester $I) + { + $I->wantToTest("Crypt - getHashAlgo()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/GetKeyCest.php b/tests/unit/Crypt/GetKeyCest.php new file mode 100644 index 00000000000..745c06a7e34 --- /dev/null +++ b/tests/unit/Crypt/GetKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt; + +use UnitTester; + +class GetKeyCest +{ + /** + * Tests Phalcon\Crypt :: getKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptGetKey(UnitTester $I) + { + $I->wantToTest("Crypt - getKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/Mismatch/ConstructCest.php b/tests/unit/Crypt/Mismatch/ConstructCest.php new file mode 100644 index 00000000000..9f48d2893a3 --- /dev/null +++ b/tests/unit/Crypt/Mismatch/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt\Mismatch; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Crypt\Mismatch :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptMismatchConstruct(UnitTester $I) + { + $I->wantToTest("Crypt\Mismatch - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/Mismatch/GetCodeCest.php b/tests/unit/Crypt/Mismatch/GetCodeCest.php new file mode 100644 index 00000000000..a4d1c218c9c --- /dev/null +++ b/tests/unit/Crypt/Mismatch/GetCodeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt\Mismatch; + +use UnitTester; + +class GetCodeCest +{ + /** + * Tests Phalcon\Crypt\Mismatch :: getCode() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptMismatchGetCode(UnitTester $I) + { + $I->wantToTest("Crypt\Mismatch - getCode()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/Mismatch/GetFileCest.php b/tests/unit/Crypt/Mismatch/GetFileCest.php new file mode 100644 index 00000000000..16edd4e3fa2 --- /dev/null +++ b/tests/unit/Crypt/Mismatch/GetFileCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt\Mismatch; + +use UnitTester; + +class GetFileCest +{ + /** + * Tests Phalcon\Crypt\Mismatch :: getFile() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptMismatchGetFile(UnitTester $I) + { + $I->wantToTest("Crypt\Mismatch - getFile()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/Mismatch/GetLineCest.php b/tests/unit/Crypt/Mismatch/GetLineCest.php new file mode 100644 index 00000000000..c6170b598ee --- /dev/null +++ b/tests/unit/Crypt/Mismatch/GetLineCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt\Mismatch; + +use UnitTester; + +class GetLineCest +{ + /** + * Tests Phalcon\Crypt\Mismatch :: getLine() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptMismatchGetLine(UnitTester $I) + { + $I->wantToTest("Crypt\Mismatch - getLine()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/Mismatch/GetMessageCest.php b/tests/unit/Crypt/Mismatch/GetMessageCest.php new file mode 100644 index 00000000000..c6e83374bd0 --- /dev/null +++ b/tests/unit/Crypt/Mismatch/GetMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt\Mismatch; + +use UnitTester; + +class GetMessageCest +{ + /** + * Tests Phalcon\Crypt\Mismatch :: getMessage() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptMismatchGetMessage(UnitTester $I) + { + $I->wantToTest("Crypt\Mismatch - getMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/Mismatch/GetPreviousCest.php b/tests/unit/Crypt/Mismatch/GetPreviousCest.php new file mode 100644 index 00000000000..8bdc5508f65 --- /dev/null +++ b/tests/unit/Crypt/Mismatch/GetPreviousCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt\Mismatch; + +use UnitTester; + +class GetPreviousCest +{ + /** + * Tests Phalcon\Crypt\Mismatch :: getPrevious() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptMismatchGetPrevious(UnitTester $I) + { + $I->wantToTest("Crypt\Mismatch - getPrevious()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/Mismatch/GetTraceAsStringCest.php b/tests/unit/Crypt/Mismatch/GetTraceAsStringCest.php new file mode 100644 index 00000000000..11aaae360a7 --- /dev/null +++ b/tests/unit/Crypt/Mismatch/GetTraceAsStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt\Mismatch; + +use UnitTester; + +class GetTraceAsStringCest +{ + /** + * Tests Phalcon\Crypt\Mismatch :: getTraceAsString() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptMismatchGetTraceAsString(UnitTester $I) + { + $I->wantToTest("Crypt\Mismatch - getTraceAsString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/Mismatch/GetTraceCest.php b/tests/unit/Crypt/Mismatch/GetTraceCest.php new file mode 100644 index 00000000000..d5b7e929a56 --- /dev/null +++ b/tests/unit/Crypt/Mismatch/GetTraceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt\Mismatch; + +use UnitTester; + +class GetTraceCest +{ + /** + * Tests Phalcon\Crypt\Mismatch :: getTrace() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptMismatchGetTrace(UnitTester $I) + { + $I->wantToTest("Crypt\Mismatch - getTrace()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/Mismatch/ToStringCest.php b/tests/unit/Crypt/Mismatch/ToStringCest.php new file mode 100644 index 00000000000..63d1793baa2 --- /dev/null +++ b/tests/unit/Crypt/Mismatch/ToStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt\Mismatch; + +use UnitTester; + +class ToStringCest +{ + /** + * Tests Phalcon\Crypt\Mismatch :: __toString() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptMismatchToString(UnitTester $I) + { + $I->wantToTest("Crypt\Mismatch - __toString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/Mismatch/WakeupCest.php b/tests/unit/Crypt/Mismatch/WakeupCest.php new file mode 100644 index 00000000000..19cc322188e --- /dev/null +++ b/tests/unit/Crypt/Mismatch/WakeupCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt\Mismatch; + +use UnitTester; + +class WakeupCest +{ + /** + * Tests Phalcon\Crypt\Mismatch :: __wakeup() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptMismatchWakeup(UnitTester $I) + { + $I->wantToTest("Crypt\Mismatch - __wakeup()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/SetCipherCest.php b/tests/unit/Crypt/SetCipherCest.php new file mode 100644 index 00000000000..7ea108baaeb --- /dev/null +++ b/tests/unit/Crypt/SetCipherCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt; + +use UnitTester; + +class SetCipherCest +{ + /** + * Tests Phalcon\Crypt :: setCipher() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptSetCipher(UnitTester $I) + { + $I->wantToTest("Crypt - setCipher()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/SetHashAlgoCest.php b/tests/unit/Crypt/SetHashAlgoCest.php new file mode 100644 index 00000000000..981db5662b8 --- /dev/null +++ b/tests/unit/Crypt/SetHashAlgoCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt; + +use UnitTester; + +class SetHashAlgoCest +{ + /** + * Tests Phalcon\Crypt :: setHashAlgo() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptSetHashAlgo(UnitTester $I) + { + $I->wantToTest("Crypt - setHashAlgo()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/SetKeyCest.php b/tests/unit/Crypt/SetKeyCest.php new file mode 100644 index 00000000000..83fe9652f20 --- /dev/null +++ b/tests/unit/Crypt/SetKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt; + +use UnitTester; + +class SetKeyCest +{ + /** + * Tests Phalcon\Crypt :: setKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptSetKey(UnitTester $I) + { + $I->wantToTest("Crypt - setKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/SetPaddingCest.php b/tests/unit/Crypt/SetPaddingCest.php new file mode 100644 index 00000000000..eac81256cd1 --- /dev/null +++ b/tests/unit/Crypt/SetPaddingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt; + +use UnitTester; + +class SetPaddingCest +{ + /** + * Tests Phalcon\Crypt :: setPadding() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptSetPadding(UnitTester $I) + { + $I->wantToTest("Crypt - setPadding()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Crypt/UseSigningCest.php b/tests/unit/Crypt/UseSigningCest.php new file mode 100644 index 00000000000..43fa3d32c45 --- /dev/null +++ b/tests/unit/Crypt/UseSigningCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Crypt; + +use UnitTester; + +class UseSigningCest +{ + /** + * Tests Phalcon\Crypt :: useSigning() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function cryptUseSigning(UnitTester $I) + { + $I->wantToTest("Crypt - useSigning()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/CryptTest.php b/tests/unit/CryptTest.php deleted file mode 100644 index 7996a7b2acb..00000000000 --- a/tests/unit/CryptTest.php +++ /dev/null @@ -1,290 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class CryptTest extends UnitTest -{ - public function _before() - { - parent::_before(); - - if (!extension_loaded('openssl')) { - $this->markTestSkipped('Warning: openssl extension is not loaded'); - } - } - - /** - * Tests decrypt using HMAC - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/13379 - * @author - * @since 2018-05-16 - * - * @expectedException \Phalcon\Crypt\Mismatch - * @expectedExceptionMessage Hash does not match. - */ - public function shouldThrowExceptionIfHashMismatch() - { - $this->specify( - 'Crypt does not check message digest on decrypt', - function () { - $crypt = new Crypt(); - $crypt->useSigning(true); - - $crypt->decrypt( - $crypt->encrypt('le text', 'encrypt key'), - 'wrong key' - ); - } - ); - } - - /** - * Tests decrypt using HMAC - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/13379 - * @author - * @since 2018-05-16 - */ - public function shouldDecryptSignedString() - { - $this->specify( - 'Crypt does not check message digest on decrypt', - function () { - $crypt = new Crypt(); - $crypt->useSigning(true); - - $key = 'secret'; - $crypt->setKey($key); - - $text = 'le text'; - - $encrypted = $crypt->encrypt($text); - $decrypted = $crypt->decrypt($encrypted); - - expect($text)->equals($decrypted); - } - ); - } - - /** - * Tests decrypt without using HMAC - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/13379 - * @author - * @since 2018-05-16 - */ - public function shouldNotThrowExceptionIfKeyMismatch() - { - $this->specify( - 'Crypt should not check message digest on decrypt', - function () { - $crypt = new Crypt(); - - $result = $crypt->decrypt( - $crypt->encrypt('le text', 'encrypt key'), - 'wrong key' - ); - - expect($result)->notEmpty(); - } - ); - } - - /** - * Tests the Crypt::setCipher - * - * @test - * @author Serghei Iakovlev - * @since 2018-05-06 - * - * @expectedException \Phalcon\Crypt\Exception - * @expectedExceptionMessage The cipher algorithm "xxx-yyy-zzz" is not supported on this system. - */ - public function shouldThrowExceptionIfCipherIsUnknown() - { - $this->specify( - 'Crypt does not validate cipher algorithm as expected', - function () { - $crypt = new Crypt(); - $crypt->setCipher('xxx-yyy-zzz'); - } - ); - } - - /** - * Tests the Crypt constants - * - * @author Serghei Iakovlev - * @since 2015-12-20 - */ - public function testCryptConstants() - { - $this->specify( - "Crypt constants are not correct", - function () { - expect(Crypt::PADDING_DEFAULT)->equals(0); - expect(Crypt::PADDING_ANSI_X_923)->equals(1); - expect(Crypt::PADDING_PKCS7)->equals(2); - expect(Crypt::PADDING_ISO_10126)->equals(3); - expect(Crypt::PADDING_ISO_IEC_7816_4)->equals(4); - expect(Crypt::PADDING_ZERO)->equals(5); - expect(Crypt::PADDING_SPACE)->equals(6); - } - ); - } - - /** - * Tests the encryption - * - * @author Nikolaos Dimopoulos - * @since 2014-10-17 - */ - public function testCryptEncryption() - { - $this->specify( - "encryption does not return correct results", - function () { - $tests = [ - md5(uniqid()) => str_repeat('x', mt_rand(1, 255)), - time().time() => str_shuffle('abcdefeghijklmnopqrst'), - 'le$ki12432543543543543' => null, - ]; - $ciphers = [ - 'AES-128-ECB', - 'AES-128-CBC', - 'AES-128-CFB', - 'AES-128-OFB', - 'AES128', - ]; - - $crypt = new Crypt(); - - foreach ($ciphers as $cipher) { - $crypt->setCipher($cipher); - - foreach ($tests as $key => $test) { - $crypt->setKey(substr($key, 0, 16)); - $encryption = $crypt->encrypt($test); - $actual = rtrim($crypt->decrypt($encryption), "\0"); - - expect($actual)->equals($test); - } - - foreach ($tests as $key => $test) { - $encryption = $crypt->encrypt($test, substr($key, 0, 16)); - - $actual = rtrim($crypt->decrypt($encryption, substr($key, 0, 16)), "\0"); - - expect($actual)->equals($test); - } - } - } - ); - } - - /** - * Tests the padding - * - * @author Nikolaos Dimopoulos - * @since 2014-10-17 - */ - public function testCryptPadding() - { - $this->specify( - "padding not return correct results", - function () { - $texts = ['']; - $key = '0123456789ABCDEF0123456789ABCDEF'; - $ciphers = [ - 'AES-256-ECB', - 'AES-256-CBC', - 'AES-256-CFB', - ]; - $pads = [ - Crypt::PADDING_ANSI_X_923, - Crypt::PADDING_PKCS7, - Crypt::PADDING_ISO_10126, - Crypt::PADDING_ISO_IEC_7816_4, - Crypt::PADDING_ZERO, - Crypt::PADDING_SPACE - ]; - - for ($i = 1; $i < 128; ++$i) { - $texts[] = str_repeat('A', $i); - } - - $crypt = new Crypt(); - $crypt->setKey(substr($key, 0, 32)); - - foreach ($pads as $padding) { - $crypt->setPadding($padding); - - foreach ($ciphers as $cipher) { - $crypt->setCipher($cipher); - - foreach ($texts as $text) { - $encrypted = $crypt->encrypt($text); - $actual = $crypt->decrypt($encrypted); - - expect($actual)->equals($text); - } - } - } - } - ); - } - - /** - * Tests the encryption base 64 - * - * @author Nikolaos Dimopoulos - * @since 2014-10-17 - */ - public function testCryptEncryptBase64() - { - $this->specify( - "encryption base 64does not return correct results", - function () { - $crypt = new Crypt(); - $crypt->setPadding(Crypt::PADDING_ANSI_X_923); - - $key = substr('phalcon notice 13123123', 0, 16); - $expected = 'https://github.com/phalcon/cphalcon/issues?state=open'; - - $encrypted = $crypt->encryptBase64($expected, substr($key, 0, 16)); - $actual = $crypt->decryptBase64($encrypted, $key); - - expect($actual)->equals($expected); - - $encrypted = $crypt->encryptBase64($expected, $key, true); - $actual = $crypt->decryptBase64($encrypted, $key, true); - - expect($actual)->equals($expected); - } - ); - } -} diff --git a/tests/unit/Db/Adapter/Pdo/ColumnsBase.php b/tests/unit/Db/Adapter/Pdo/ColumnsBase.php deleted file mode 100644 index ec07a251eb1..00000000000 --- a/tests/unit/Db/Adapter/Pdo/ColumnsBase.php +++ /dev/null @@ -1,103 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Phalcon\Test\Unit\Db\Adapter\Pdo; - -class ColumnsBase -{ - /** - * Test the `describeColumns` - * - * @param \UnitTester $I - * @since 2018-10-26 - */ - public function checkColumns(\UnitTester $I) - { - $table = 'dialect_table'; - $expected = $this->getExpectedColumns(); - $I->assertEquals($expected, $this->connection->describeColumns($table)); - $I->assertEquals($expected, $this->connection->describeColumns($table, $this->getSchemaName())); - } - - public function checkColumnsAsObject(\UnitTester $I) - { - $columns = $this->getColumns(); - $expectedColumns = $this->getExpectedColumns(); - foreach ($expectedColumns as $index => $column) { - $I->assertEquals($columns[$index]['_columnName'], $column->getName()); - $I->assertEquals($columns[$index]['_schemaName'], $column->getSchemaName()); - $I->assertEquals($columns[$index]['_type'], $column->getType()); - $I->assertEquals($columns[$index]['_isNumeric'], $column->isNumeric()); - $I->assertEquals($columns[$index]['_size'], $column->getSize()); - $I->assertEquals($columns[$index]['_scale'], $column->getScale()); - $I->assertEquals($columns[$index]['_default'], $column->getDefault()); - $I->assertEquals($columns[$index]['_unsigned'], $column->isUnsigned()); - $I->assertEquals($columns[$index]['_notNull'], $column->isNotNull()); - $I->assertEquals($columns[$index]['_autoIncrement'], $column->isAutoIncrement()); - $I->assertEquals($columns[$index]['_primary'], $column->isPrimary()); - $I->assertEquals($columns[$index]['_first'], $column->isFirst()); - $I->assertEquals($columns[$index]['_after'], $column->getAfterPosition()); - $I->assertEquals($columns[$index]['_bindType'], $column->getBindType()); - $I->assertTrue(null !== $column->hasDefault()); -// public function getTypeReference() -> int; -// public function getTypeValues() -> int; - } - } - - /** - * Test the `describeIndexes` - * - * @param \UnitTester $I - * @since 2018-10-26 - */ - public function checkColumnIndexes(\UnitTester $I) - { - $table = 'dialect_table'; - $expected = $this->getExpectedIndexes(); - $I->assertEquals($expected, $this->connection->describeIndexes($table)); - $I->assertEquals($expected, $this->connection->describeIndexes($table, $this->getSchemaName())); - } - - /** - * Test the `describeReferences` count - * - * @param \UnitTester $I - * @since 2018-10-26 - */ - public function checkReferencesCount(\UnitTester $I) - { - $table = 'dialect_table_intermediate'; - $directReferences = $this->connection->describeReferences($table); - $schemaReferences = $this->connection->describeReferences($table, $this->getSchemaName()); - $I->assertEquals($directReferences, $schemaReferences); - $I->assertEquals(2, count($directReferences)); - $I->assertEquals(2, count($schemaReferences)); - - /** @var Reference $reference */ - foreach ($directReferences as $reference) { - $I->assertEquals(1, count($reference->getColumns())); - } - } - - /** - * Test the `describeReferences` - * - * @param \UnitTester $I - * @since 2018-10-26 - */ - public function checkReferences(\UnitTester $I) - { - $table = 'dialect_table_intermediate'; - $expected = $this->getExpectedReferences(); - $I->assertEquals($expected, $this->connection->describeReferences($table)); - $I->assertEquals($expected, $this->connection->describeReferences($table, $this->getSchemaName())); - } -} diff --git a/tests/unit/Db/Adapter/Pdo/FactoryTest.php b/tests/unit/Db/Adapter/Pdo/FactoryTest.php deleted file mode 100644 index cdc474924be..00000000000 --- a/tests/unit/Db/Adapter/Pdo/FactoryTest.php +++ /dev/null @@ -1,72 +0,0 @@ - - * @author Serghei Iakovlev - * @author Wojciech Ślawski - * @package Phalcon\Test\Unit\Annotations - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FactoryTest extends FactoryBase -{ - /** - * Test factory using Phalcon\Config - * - * @author Wojciech Ślawski - * @since 2017-03-02 - */ - public function testConfigFactory() - { - $this->specify( - "Factory using Phalcon\\Config doesn't work properly", - function () { - $options = $this->config->database; - /** @var Mysql $database */ - $database = Factory::load($options); - expect($database)->isInstanceOf(Mysql::class); - expect(array_intersect_assoc($database->getDescriptor(), $options->toArray()))->equals( - $database->getDescriptor() - ); - } - ); - } - - /** - * Test factory using array - * - * @author Wojciech Ślawski - * @since 2017-03-02 - */ - public function testArrayFactory() - { - $this->specify( - "Factory using array doesn't work properly", - function () { - $options = $this->arrayConfig["database"]; - /** @var Mysql $database */ - $database = Factory::load($options); - expect($database)->isInstanceOf(Mysql::class); - expect(array_intersect_assoc($database->getDescriptor(), $options))->equals( - $database->getDescriptor() - ); - } - ); - } -} diff --git a/tests/unit/Db/Adapter/Pdo/Mysql/ColumnsCest.php b/tests/unit/Db/Adapter/Pdo/Mysql/ColumnsCest.php deleted file mode 100644 index 38ccd8f563d..00000000000 --- a/tests/unit/Db/Adapter/Pdo/Mysql/ColumnsCest.php +++ /dev/null @@ -1,734 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Phalcon\Test\Unit\Db\Adapter\Pdo\Mysql; - -use Helper\Db\Adapter\Pdo\MysqlTrait; -use Phalcon\Db\Column; -use Phalcon\Db\Index; -use Phalcon\Db\Reference; -use Phalcon\Db\Adapter\Pdo\Mysql; -use Phalcon\Test\Unit\Db\Adapter\Pdo\ColumnsBase; - -class ColumnsCest extends ColumnsBase -{ - use MysqlTrait; - - /** - * Return the array of columns - * - * @return array - * @since 2018-10-26 - */ - protected function getColumns(): array - { - return [ - 0 => [ - '_columnName' => 'field_primary', - '_schemaName' => null, - '_type' => Column::TYPE_INTEGER, - '_isNumeric' => true, - '_size' => 11, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => true, - '_autoIncrement' => true, - '_primary' => true, - '_first' => true, - '_after' => null, - '_bindType' => Column::BIND_PARAM_INT, - ], - 1 => [ - '_columnName' => 'field_blob', - '_schemaName' => null, - '_type' => Column::TYPE_BLOB, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_primary', - '_bindType' => Column::BIND_PARAM_STR, - ], - 2 => [ - '_columnName' => 'field_bit', - '_schemaName' => null, - '_type' => Column::TYPE_BIT, - '_isNumeric' => false, - '_size' => 1, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_blob', - '_bindType' => Column::BIND_PARAM_INT, - ], - 3 => [ - '_columnName' => 'field_bit_default', - '_schemaName' => null, - '_type' => Column::TYPE_BIT, - '_isNumeric' => false, - '_size' => 1, - '_scale' => 0, - '_default' => "b'1'", - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_bit', - '_bindType' => Column::BIND_PARAM_INT, - ], - 4 => [ - '_columnName' => 'field_bigint', - '_schemaName' => null, - '_type' => Column::TYPE_BIGINTEGER, - '_isNumeric' => true, - '_size' => 20, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_bit_default', - '_bindType' => Column::BIND_PARAM_INT, - ], - 5 => [ - '_columnName' => 'field_bigint_default', - '_schemaName' => null, - '_type' => Column::TYPE_BIGINTEGER, - '_isNumeric' => true, - '_size' => 20, - '_scale' => 0, - '_default' => 1, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_bigint', - '_bindType' => Column::BIND_PARAM_INT, - ], - 6 => [ - '_columnName' => 'field_boolean', - '_schemaName' => null, - '_type' => Column::TYPE_BOOLEAN, - '_isNumeric' => true, - '_size' => 1, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_bigint_default', - '_bindType' => Column::BIND_PARAM_BOOL, - ], - 7 => [ - '_columnName' => 'field_boolean_default', - '_schemaName' => null, - '_type' => Column::TYPE_BOOLEAN, - '_isNumeric' => true, - '_size' => 1, - '_scale' => 0, - '_default' => 1, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_boolean', - '_bindType' => Column::BIND_PARAM_BOOL, - ], - 8 => [ - '_columnName' => 'field_char', - '_schemaName' => null, - '_type' => Column::TYPE_CHAR, - '_isNumeric' => false, - '_size' => 10, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_boolean_default', - '_bindType' => Column::BIND_PARAM_STR, - ], - 9 => [ - '_columnName' => 'field_char_default', - '_schemaName' => null, - '_type' => Column::TYPE_CHAR, - '_isNumeric' => false, - '_size' => 10, - '_scale' => 0, - '_default' => 'ABC', - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_char', - '_bindType' => Column::BIND_PARAM_STR, - ], - 10 => [ - '_columnName' => 'field_decimal', - '_schemaName' => null, - '_type' => Column::TYPE_DECIMAL, - '_isNumeric' => true, - '_size' => 10, - '_scale' => 4, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_char_default', - '_bindType' => Column::BIND_PARAM_STR, - ], - 11 => [ - '_columnName' => 'field_decimal_default', - '_schemaName' => null, - '_type' => Column::TYPE_DECIMAL, - '_isNumeric' => true, - '_size' => 10, - '_scale' => 4, - '_default' => '14.5678', - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_decimal', - '_bindType' => Column::BIND_PARAM_STR, - ], - 12 => [ - '_columnName' => 'field_enum', - '_schemaName' => null, - '_type' => Column::TYPE_ENUM, - '_isNumeric' => false, - '_size' => "'xs','s','m','l','xl'", - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_decimal_default', - '_bindType' => Column::BIND_PARAM_STR, - ], - 13 => [ - '_columnName' => 'field_integer', - '_schemaName' => null, - '_type' => Column::TYPE_INTEGER, - '_isNumeric' => true, - '_size' => 10, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_enum', - '_bindType' => Column::BIND_PARAM_INT, - ], - 14 => [ - '_columnName' => 'field_integer_default', - '_schemaName' => null, - '_type' => Column::TYPE_INTEGER, - '_isNumeric' => true, - '_size' => 10, - '_scale' => 0, - '_default' => 1, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_integer', - '_bindType' => Column::BIND_PARAM_INT, - ], - 15 => [ - '_columnName' => 'field_json', - '_schemaName' => false, - '_type' => Column::TYPE_JSON, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_integer_default', - '_bindType' => Column::BIND_PARAM_STR, - ], - 16 => [ - '_columnName' => 'field_float', - '_schemaName' => null, - '_type' => Column::TYPE_FLOAT, - '_isNumeric' => true, - '_size' => 10, - '_scale' => 4, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_json', - '_bindType' => Column::BIND_PARAM_DECIMAL, - ], - 17 => [ - '_columnName' => 'field_float_default', - '_schemaName' => null, - '_type' => Column::TYPE_FLOAT, - '_isNumeric' => true, - '_size' => 10, - '_scale' => 4, - '_default' => '14.5678', - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_float', - '_bindType' => Column::BIND_PARAM_DECIMAL, - ], - 18 => [ - '_columnName' => 'field_date', - '_schemaName' => null, - '_type' => Column::TYPE_DATE, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_float_default', - '_bindType' => Column::BIND_PARAM_STR, - ], - 19 => [ - '_columnName' => 'field_date_default', - '_schemaName' => false, - '_type' => Column::TYPE_DATE, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => '2018-10-01', - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_date', - '_bindType' => Column::BIND_PARAM_STR, - ], - 20 => [ - '_columnName' => 'field_datetime', - '_schemaName' => null, - '_type' => Column::TYPE_DATETIME, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_date_default', - '_bindType' => Column::BIND_PARAM_STR, - ], - 21 => [ - '_columnName' => 'field_datetime_default', - '_schemaName' => false, - '_type' => Column::TYPE_DATETIME, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => '2018-10-01 12:34:56', - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_datetime', - '_bindType' => Column::BIND_PARAM_STR, - ], - 22 => [ - '_columnName' => 'field_time', - '_schemaName' => null, - '_type' => Column::TYPE_TIME, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_datetime_default', - '_bindType' => Column::BIND_PARAM_STR, - ], - 23 => [ - '_columnName' => 'field_time_default', - '_schemaName' => null, - '_type' => Column::TYPE_TIME, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => '12:34:56', - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_time', - '_bindType' => Column::BIND_PARAM_STR, - ], - 24 => [ - '_columnName' => 'field_timestamp', - '_schemaName' => null, - '_type' => Column::TYPE_TIMESTAMP, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_time_default', - '_bindType' => Column::BIND_PARAM_STR, - ], - 25 => [ - '_columnName' => 'field_timestamp_default', - '_schemaName' => null, - '_type' => Column::TYPE_TIMESTAMP, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => '2018-10-01 12:34:56', - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_timestamp', - '_bindType' => Column::BIND_PARAM_STR, - ], - 26 => [ - '_columnName' => 'field_mediumint', - '_schemaName' => null, - '_type' => Column::TYPE_MEDIUMINTEGER, - '_isNumeric' => true, - '_size' => 10, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_timestamp_default', - '_bindType' => Column::BIND_PARAM_INT, - ], - 27 => [ - '_columnName' => 'field_mediumint_default', - '_schemaName' => null, - '_type' => Column::TYPE_MEDIUMINTEGER, - '_isNumeric' => true, - '_size' => 10, - '_scale' => 0, - '_default' => 1, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_mediumint', - '_bindType' => Column::BIND_PARAM_INT, - ], - 28 => [ - '_columnName' => 'field_smallint', - '_schemaName' => null, - '_type' => Column::TYPE_SMALLINTEGER, - '_isNumeric' => true, - '_size' => 10, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_mediumint_default', - '_bindType' => Column::BIND_PARAM_INT, - ], - 29 => [ - '_columnName' => 'field_smallint_default', - '_schemaName' => null, - '_type' => Column::TYPE_SMALLINTEGER, - '_isNumeric' => true, - '_size' => 10, - '_scale' => 0, - '_default' => 1, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_smallint', - '_bindType' => Column::BIND_PARAM_INT, - ], - 30 => [ - '_columnName' => 'field_tinyint', - '_schemaName' => null, - '_type' => Column::TYPE_TINYINTEGER, - '_isNumeric' => true, - '_size' => 10, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_smallint_default', - '_bindType' => Column::BIND_PARAM_INT, - ], - 31 => [ - '_columnName' => 'field_tinyint_default', - '_schemaName' => null, - '_type' => Column::TYPE_TINYINTEGER, - '_isNumeric' => true, - '_size' => 10, - '_scale' => 0, - '_default' => 1, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_tinyint', - '_bindType' => Column::BIND_PARAM_INT, - ], - 32 => [ - '_columnName' => 'field_longtext', - '_schemaName' => null, - '_type' => Column::TYPE_LONGTEXT, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_tinyint_default', - '_bindType' => Column::BIND_PARAM_STR, - ], - 33 => [ - '_columnName' => 'field_mediumtext', - '_schemaName' => null, - '_type' => Column::TYPE_MEDIUMTEXT, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_longtext', - '_bindType' => Column::BIND_PARAM_STR, - ], - 34 => [ - '_columnName' => 'field_tinytext', - '_schemaName' => null, - '_type' => Column::TYPE_TINYTEXT, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_mediumtext', - '_bindType' => Column::BIND_PARAM_STR, - ], - 35 => [ - '_columnName' => 'field_text', - '_schemaName' => null, - '_type' => Column::TYPE_TEXT, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_tinytext', - '_bindType' => Column::BIND_PARAM_STR, - ], - 36 => [ - '_columnName' => 'field_varchar', - '_schemaName' => null, - '_type' => Column::TYPE_VARCHAR, - '_isNumeric' => false, - '_size' => 10, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_text', - '_bindType' => Column::BIND_PARAM_STR, - ], - 37 => [ - '_columnName' => 'field_varchar_default', - '_schemaName' => null, - '_type' => Column::TYPE_VARCHAR, - '_isNumeric' => false, - '_size' => 10, - '_scale' => 0, - '_default' => 'D', - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_varchar', - '_bindType' => Column::BIND_PARAM_STR, - ], - ]; - } - - /** - * Return the array of expected columns - * - * @return array - * @since 2018-10-26 - */ - protected function getExpectedColumns(): array - { - $result = []; - $columns = $this->getColumns(); - foreach ($columns as $index => $array) { - $result[$index] = Column::__set_state($array); - } - - return $result; - } - - /** - * Return the array of expected indexes - * - * @return array - * @since 2018-10-26 - */ - protected function getExpectedIndexes(): array - { - return [ - 'PRIMARY' => Index::__set_state( - [ - '_name' => 'PRIMARY', - '_columns' => ['field_primary'], - '_type' => 'PRIMARY', - ] - ), - 'dialect_table_unique' => Index::__set_state( - [ - '_name' => 'dialect_table_unique', - '_columns' => ['field_integer'], - '_type' => 'UNIQUE', - ] - ), - 'dialect_table_index' => Index::__set_state( - [ - '_name' => 'dialect_table_index', - '_columns' => ['field_bigint'], - '_type' => '', - ] - ), - 'dialect_table_two_fields' => Index::__set_state( - [ - '_name' => 'dialect_table_two_fields', - '_columns' => ['field_char', 'field_char_default'], - '_type' => '', - ] - ), - ]; - } - - /** - * Return the array of expected references - * - * @return array - */ - protected function getExpectedReferences(): array - { - return [ - 'dialect_table_intermediate_primary__fk' => Reference::__set_state( - [ - '_referenceName' => 'dialect_table_intermediate_primary__fk', - '_referencedTable' => 'dialect_table', - '_columns' => ['field_primary_id'], - '_referencedColumns' => ['field_primary'], - '_referencedSchema' => $this->getDatabaseName(), - '_onUpdate' => 'RESTRICT', - '_onDelete' => 'RESTRICT' - ] - ), - 'dialect_table_intermediate_remote__fk' => Reference::__set_state( - [ - '_referenceName' => 'dialect_table_intermediate_remote__fk', - '_referencedTable' => 'dialect_table_remote', - '_columns' => ['field_remote_id'], - '_referencedColumns' => ['field_primary'], - '_referencedSchema' => $this->getDatabaseName(), - '_onUpdate' => 'CASCADE', - '_onDelete' => 'SET NULL' - ] - ), - ]; - } -} diff --git a/tests/unit/Db/Adapter/Pdo/Mysql/TablesCest.php b/tests/unit/Db/Adapter/Pdo/Mysql/TablesCest.php deleted file mode 100644 index 0b436ef9b9e..00000000000 --- a/tests/unit/Db/Adapter/Pdo/Mysql/TablesCest.php +++ /dev/null @@ -1,86 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Phalcon\Test\Unit\Db\Adapter\Pdo\Mysql; - -use Helper\Db\Adapter\Pdo\MysqlTrait; -use Phalcon\Test\Unit\Db\Adapter\Pdo\TablesBase; - -class TablesCest extends TablesBase -{ - use MysqlTrait; - - - /** - * Test the `tableOptions` - * - * @param \UnitTester $I - * @since 2018-10-26 - */ - public function checkTableOptions(\UnitTester $I) - { - $table = 'dialect_table'; - $expected = [ - 'table_type' => 'BASE TABLE', - 'auto_increment' => '1', - 'engine' => 'InnoDB', - 'table_collation' => 'utf8_general_ci', - 'table_type' => 'BASE TABLE' - ]; - - $I->assertEquals($expected, $this->connection->tableOptions($table, $this->getDatabaseName())); - } - - /** - * Returns the list of the tables in the database - * - * @return array - */ - protected function getListTables(): array - { - return [ - 'albums', - 'artists', - 'childs', - 'customers', - 'dialect_table', - 'dialect_table_intermediate', - 'dialect_table_remote', - 'foreign_key_child', - 'foreign_key_parent', - 'identityless_requests', - 'issue12071_body', - 'issue12071_head', - 'issue_11036', - 'issue_1534', - 'issue_2019', - 'm2m_parts', - 'm2m_robots', - 'm2m_robots_parts', - 'package_details', - 'packages', - 'parts', - 'personas', - 'personnes', - 'ph_select', - 'prueba', - 'robots', - 'robots_parts', - 'songs', - 'stats', - 'stock', - 'subscriptores', - 'table_with_string_field', - 'tipo_documento', - 'users', - ]; - } -} diff --git a/tests/unit/Db/Adapter/Pdo/MysqlTest.php b/tests/unit/Db/Adapter/Pdo/MysqlTest.php deleted file mode 100644 index 791864e51e5..00000000000 --- a/tests/unit/Db/Adapter/Pdo/MysqlTest.php +++ /dev/null @@ -1,164 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Db\Adapter\Pdo - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class MysqlTest extends UnitTest -{ - use MysqlTrait; - - /** - * @var Mysql - */ - protected $connection; - - public function _before() - { - parent::_before(); - - try { - $this->connection = new Mysql([ - 'host' => TEST_DB_MYSQL_HOST, - 'username' => TEST_DB_MYSQL_USER, - 'password' => TEST_DB_MYSQL_PASSWD, - 'dbname' => TEST_DB_MYSQL_NAME, - 'port' => TEST_DB_MYSQL_PORT, - 'charset' => TEST_DB_MYSQL_CHARSET, - ]); - } catch (\PDOException $e) { - throw new SkippedTestError("Unable to connect to the database: " . $e->getMessage()); - } - } - - /** - * Tests Mysql::escapeIdentifier - * - * @author Sid Roberts - * @since 2016-11-19 - */ - public function testEscapeIdentifier() - { - $this->specify( - 'Identifiers are not properly escaped', - function ($identifier, $expected) { - $escapedIdentifier = $this->connection->escapeIdentifier($identifier); - - expect($escapedIdentifier)->equals($expected); - }, - [ - "examples" => [ - [ - "identifier" => "robots", - "expected" => "`robots`", - ], - [ - "identifier" => ["schema", "robots"], - "expected" => "`schema`.`robots`", - ], - [ - "identifier" => "`robots`", - "expected" => "```robots```", - ], - [ - "identifier" => ["`schema`", "rob`ots"], - "expected" => "```schema```.`rob``ots`", - ], - ] - ] - ); - } - - /** - * Tests Mysql::addForeignKey - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/556 - * @author Sergii Svyrydenko - * @since 2017-07-03 - */ - public function shouldAddForeignKey() - { - $this->specify( - "Foreign key hasn't created", - function ($sql, $expected) { - expect($this->connection->execute($sql))->equals($expected); - }, - [ - 'examples' => [ - [$this->addForeignKey('test_name_key', 'CASCADE', 'RESTRICT'), true], - [$this->addForeignKey('', 'CASCADE', 'RESTRICT'), true] - ] - ] - ); - } - - /** - * Tests Mysql::getForeignKey - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/556 - * @author Sergii Svyrydenko - * @since 2017-07-03 - */ - public function shouldCheckAddedForeignKey() - { - $this->specify( - "Foreign key isn't created", - function ($sql, $expected) { - expect($this->connection->execute($sql, ['MYSQL_ATTR_USE_BUFFERED_QUERY']))->equals($expected); - }, - [ - 'examples' => [ - [$this->getForeignKey('test_name_key'), true], - [$this->getForeignKey('foreign_key_child_ibfk_1'), true] - ] - ] - ); - } - - /** - * Tests Mysql::dropAddForeignKey - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/556 - * @author Sergii Svyrydenko - * @since 2017-07-03 - */ - public function shouldDropForeignKey() - { - $this->specify( - "Foreign key can't be created", - function ($sql, $expected) { - expect($this->connection->execute($sql))->equals($expected); - }, - [ - 'examples' => [ - [$this->dropForeignKey('test_name_key'), true], - [$this->dropForeignKey('foreign_key_child_ibfk_1'), true] - ] - ] - ); - } -} diff --git a/tests/unit/Db/Adapter/Pdo/Postgresql/ColumnsCest.php b/tests/unit/Db/Adapter/Pdo/Postgresql/ColumnsCest.php deleted file mode 100644 index 01c27ae57c4..00000000000 --- a/tests/unit/Db/Adapter/Pdo/Postgresql/ColumnsCest.php +++ /dev/null @@ -1,755 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Phalcon\Test\Unit\Db\Adapter\Pdo\Postgresql; - -use Helper\Db\Adapter\Pdo\PostgresqlTrait; -use Phalcon\Db\Column; -use Phalcon\Db\Index; -use Phalcon\Db\Reference; -use Phalcon\Test\Unit\Db\Adapter\Pdo\ColumnsBase; - -class ColumnsCest extends ColumnsBase -{ - use PostgresqlTrait; - - /** - * Overriding to skip the test - * - * @param \UnitTester $I - * @since 2018-10-26 - */ - public function checkReferencesCount(\UnitTester $I) - { - $I->comment('TODO: Skipping for now'); - } - - /** - * Test the `describeReferences` - * - * @param \UnitTester $I - * @since 2018-10-26 - */ - public function checkReferences(\UnitTester $I) - { - $I->comment('TODO: Skipping for now'); - } - - /** - * Return the array of columns - * - * @return array - * @since 2018-10-26 - */ - protected function getColumns(): array - { - return [ - 0 => [ - '_columnName' => 'field_primary', - '_schemaName' => null, - '_type' => Column::TYPE_INTEGER, - '_isNumeric' => true, - '_size' => 0, - '_scale' => 0, - '_default' => "nextval('dialect_table_field_primary_seq'::regclass)", - '_unsigned' => false, - '_notNull' => true, - '_autoIncrement' => true, - '_primary' => true, - '_first' => true, - '_after' => null, - '_bindType' => Column::BIND_PARAM_INT, - ], - 1 => [ - '_columnName' => 'field_blob', - '_schemaName' => null, - '_type' => Column::TYPE_TEXT, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_primary', - '_bindType' => Column::BIND_PARAM_STR, - ], - 2 => [ - '_columnName' => 'field_bit', - '_schemaName' => null, - '_type' => Column::TYPE_BIT, - '_isNumeric' => false, - '_size' => null, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_blob', - '_bindType' => Column::BIND_PARAM_STR, - ], - 3 => [ - '_columnName' => 'field_bit_default', - '_schemaName' => null, - '_type' => Column::TYPE_BIT, - '_isNumeric' => false, - '_size' => null, - '_scale' => 0, - '_default' => "B'1'::\"bit\"", - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_bit', - '_bindType' => Column::BIND_PARAM_STR, - ], - 4 => [ - '_columnName' => 'field_bigint', - '_schemaName' => null, - '_type' => Column::TYPE_BIGINTEGER, - '_isNumeric' => true, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_bit_default', - '_bindType' => Column::BIND_PARAM_INT, - ], - 5 => [ - '_columnName' => 'field_bigint_default', - '_schemaName' => null, - '_type' => Column::TYPE_BIGINTEGER, - '_isNumeric' => true, - '_size' => 0, - '_scale' => 0, - '_default' => 1, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_bigint', - '_bindType' => Column::BIND_PARAM_INT, - ], - 6 => [ - '_columnName' => 'field_boolean', - '_schemaName' => null, - '_type' => Column::TYPE_BOOLEAN, - '_isNumeric' => true, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_bigint_default', - '_bindType' => Column::BIND_PARAM_BOOL, - ], - 7 => [ - '_columnName' => 'field_boolean_default', - '_schemaName' => null, - '_type' => Column::TYPE_BOOLEAN, - '_isNumeric' => true, - '_size' => 0, - '_scale' => 0, - '_default' => 'true', - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_boolean', - '_bindType' => Column::BIND_PARAM_BOOL, - ], - 8 => [ - '_columnName' => 'field_char', - '_schemaName' => null, - '_type' => Column::TYPE_CHAR, - '_isNumeric' => false, - '_size' => 10, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_boolean_default', - '_bindType' => Column::BIND_PARAM_STR, - ], - 9 => [ - '_columnName' => 'field_char_default', - '_schemaName' => null, - '_type' => Column::TYPE_CHAR, - '_isNumeric' => false, - '_size' => 10, - '_scale' => 0, - '_default' => 'ABC', - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_char', - '_bindType' => Column::BIND_PARAM_STR, - ], - 10 => [ - '_columnName' => 'field_decimal', - '_schemaName' => null, - '_type' => Column::TYPE_DECIMAL, - '_isNumeric' => true, - '_size' => 10, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_char_default', - '_bindType' => Column::BIND_PARAM_DECIMAL, - ], - 11 => [ - '_columnName' => 'field_decimal_default', - '_schemaName' => null, - '_type' => Column::TYPE_DECIMAL, - '_isNumeric' => true, - '_size' => 10, - '_scale' => 0, - '_default' => '14.5678', - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_decimal', - '_bindType' => Column::BIND_PARAM_DECIMAL, - ], - 12 => [ - '_columnName' => 'field_enum', - '_schemaName' => null, - '_type' => Column::TYPE_VARCHAR, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_decimal_default', - '_bindType' => Column::BIND_PARAM_STR, - ], - 13 => [ - '_columnName' => 'field_integer', - '_schemaName' => null, - '_type' => Column::TYPE_INTEGER, - '_isNumeric' => true, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_enum', - '_bindType' => Column::BIND_PARAM_INT, - ], - 14 => [ - '_columnName' => 'field_integer_default', - '_schemaName' => null, - '_type' => Column::TYPE_INTEGER, - '_isNumeric' => true, - '_size' => 0, - '_scale' => 0, - '_default' => 1, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_integer', - '_bindType' => Column::BIND_PARAM_INT, - ], - 15 => [ - '_columnName' => 'field_json', - '_schemaName' => false, - '_type' => Column::TYPE_JSON, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_integer_default', - '_bindType' => Column::BIND_PARAM_STR, - ], - 16 => [ - '_columnName' => 'field_float', - '_schemaName' => null, - '_type' => Column::TYPE_DECIMAL, - '_isNumeric' => true, - '_size' => 10, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_json', - '_bindType' => Column::BIND_PARAM_DECIMAL, - ], - 17 => [ - '_columnName' => 'field_float_default', - '_schemaName' => null, - '_type' => Column::TYPE_DECIMAL, - '_isNumeric' => true, - '_size' => 10, - '_scale' => 0, - '_default' => '14.5678', - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_float', - '_bindType' => Column::BIND_PARAM_DECIMAL, - ], - 18 => [ - '_columnName' => 'field_date', - '_schemaName' => null, - '_type' => Column::TYPE_DATE, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_float_default', - '_bindType' => Column::BIND_PARAM_STR, - ], - 19 => [ - '_columnName' => 'field_date_default', - '_schemaName' => false, - '_type' => Column::TYPE_DATE, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => '2018-10-01', - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_date', - '_bindType' => Column::BIND_PARAM_STR, - ], - 20 => [ - '_columnName' => 'field_datetime', - '_schemaName' => null, - '_type' => Column::TYPE_TIMESTAMP, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_date_default', - '_bindType' => Column::BIND_PARAM_STR, - ], - 21 => [ - '_columnName' => 'field_datetime_default', - '_schemaName' => false, - '_type' => Column::TYPE_TIMESTAMP, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => '2018-10-01 12:34:56', - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_datetime', - '_bindType' => Column::BIND_PARAM_STR, - ], - 22 => [ - '_columnName' => 'field_time', - '_schemaName' => null, - '_type' => Column::TYPE_TIME, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_datetime_default', - '_bindType' => Column::BIND_PARAM_STR, - ], - 23 => [ - '_columnName' => 'field_time_default', - '_schemaName' => null, - '_type' => Column::TYPE_TIME, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => '12:34:56', - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_time', - '_bindType' => Column::BIND_PARAM_STR, - ], - 24 => [ - '_columnName' => 'field_timestamp', - '_schemaName' => null, - '_type' => Column::TYPE_TIMESTAMP, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_time_default', - '_bindType' => Column::BIND_PARAM_STR, - ], - 25 => [ - '_columnName' => 'field_timestamp_default', - '_schemaName' => null, - '_type' => Column::TYPE_TIMESTAMP, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => '2018-10-01 12:34:56', - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_timestamp', - '_bindType' => Column::BIND_PARAM_STR, - ], - 26 => [ - '_columnName' => 'field_mediumint', - '_schemaName' => null, - '_type' => Column::TYPE_INTEGER, - '_isNumeric' => true, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_timestamp_default', - '_bindType' => Column::BIND_PARAM_INT, - ], - 27 => [ - '_columnName' => 'field_mediumint_default', - '_schemaName' => null, - '_type' => Column::TYPE_INTEGER, - '_isNumeric' => true, - '_size' => 0, - '_scale' => 0, - '_default' => 1, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_mediumint', - '_bindType' => Column::BIND_PARAM_INT, - ], - 28 => [ - '_columnName' => 'field_smallint', - '_schemaName' => null, - '_type' => Column::TYPE_SMALLINTEGER, - '_isNumeric' => true, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_mediumint_default', - '_bindType' => Column::BIND_PARAM_INT, - ], - 29 => [ - '_columnName' => 'field_smallint_default', - '_schemaName' => null, - '_type' => Column::TYPE_SMALLINTEGER, - '_isNumeric' => true, - '_size' => 0, - '_scale' => 0, - '_default' => 1, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_smallint', - '_bindType' => Column::BIND_PARAM_INT, - ], - 30 => [ - '_columnName' => 'field_tinyint', - '_schemaName' => null, - '_type' => Column::TYPE_SMALLINTEGER, - '_isNumeric' => true, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_smallint_default', - '_bindType' => Column::BIND_PARAM_INT, - ], - 31 => [ - '_columnName' => 'field_tinyint_default', - '_schemaName' => null, - '_type' => Column::TYPE_SMALLINTEGER, - '_isNumeric' => true, - '_size' => 0, - '_scale' => 0, - '_default' => 1, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_tinyint', - '_bindType' => Column::BIND_PARAM_INT, - ], - 32 => [ - '_columnName' => 'field_longtext', - '_schemaName' => null, - '_type' => Column::TYPE_TEXT, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_tinyint_default', - '_bindType' => Column::BIND_PARAM_STR, - ], - 33 => [ - '_columnName' => 'field_mediumtext', - '_schemaName' => null, - '_type' => Column::TYPE_TEXT, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_longtext', - '_bindType' => Column::BIND_PARAM_STR, - ], - 34 => [ - '_columnName' => 'field_tinytext', - '_schemaName' => null, - '_type' => Column::TYPE_TEXT, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_mediumtext', - '_bindType' => Column::BIND_PARAM_STR, - ], - 35 => [ - '_columnName' => 'field_text', - '_schemaName' => null, - '_type' => Column::TYPE_TEXT, - '_isNumeric' => false, - '_size' => 0, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_tinytext', - '_bindType' => Column::BIND_PARAM_STR, - ], - 36 => [ - '_columnName' => 'field_varchar', - '_schemaName' => null, - '_type' => Column::TYPE_VARCHAR, - '_isNumeric' => false, - '_size' => 10, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_text', - '_bindType' => Column::BIND_PARAM_STR, - ], - 37 => [ - '_columnName' => 'field_varchar_default', - '_schemaName' => null, - '_type' => Column::TYPE_VARCHAR, - '_isNumeric' => false, - '_size' => 10, - '_scale' => 0, - '_default' => 'D', - '_unsigned' => false, - '_notNull' => false, - '_autoIncrement' => false, - '_primary' => false, - '_first' => false, - '_after' => 'field_varchar', - '_bindType' => Column::BIND_PARAM_STR, - ], - ]; - } - - /** - * Return the array of expected columns - * - * @return array - * @since 2018-10-26 - */ - protected function getExpectedColumns(): array - { - $result = []; - $columns = $this->getColumns(); - foreach ($columns as $index => $array) { - $result[$index] = Column::__set_state($array); - } - - return $result; - } - - /** - * Return the array of expected indexes - * - * @return array - * @since 2018-10-26 - */ - protected function getExpectedIndexes(): array - { - return [ - 'dialect_table_pk' => Index::__set_state( - [ - '_name' => 'dialect_table_pk', - '_columns' => ['field_primary'], - '_type' => '', - ] - ), - 'dialect_table_unique' => Index::__set_state( - [ - '_name' => 'dialect_table_unique', - '_columns' => ['field_integer'], - '_type' => '', - ] - ), - 'dialect_table_index' => Index::__set_state( - [ - '_name' => 'dialect_table_index', - '_columns' => ['field_bigint'], - '_type' => '', - ] - ), - 'dialect_table_two_fields' => Index::__set_state( - [ - '_name' => 'dialect_table_two_fields', - '_columns' => ['field_char', 'field_char_default'], - '_type' => '', - ] - ), - ]; - } - - /** - * Return the array of expected references - * - * @return array - */ - protected function getExpectedReferences(): array - { - return [ - 'dialect_table_intermediate_primary__fk' => Reference::__set_state( - [ - '_referenceName' => 'dialect_table_intermediate_primary__fk', - '_referencedTable' => 'dialect_table', - '_columns' => ['field_primary_id'], - '_referencedColumns' => ['field_primary'], - '_referencedSchema' => $this->getDatabaseName(), - '_onUpdate' => 'NO ACTION', - '_onDelete' => 'NO ACTION' - ] - ), - 'dialect_table_intermediate_remote__fk' => Reference::__set_state( - [ - '_referenceName' => 'dialect_table_intermediate_remote__fk', - '_referencedTable' => 'dialect_table_remote', - '_columns' => ['field_remote_id'], - '_referencedColumns' => ['field_primary'], - '_referencedSchema' => $this->getDatabaseName(), - '_onUpdate' => 'NO ACTION', - '_onDelete' => 'NO ACTION' - ] - ), - ]; - } -} diff --git a/tests/unit/Db/Adapter/Pdo/Postgresql/TablesCest.php b/tests/unit/Db/Adapter/Pdo/Postgresql/TablesCest.php deleted file mode 100644 index 499d079199c..00000000000 --- a/tests/unit/Db/Adapter/Pdo/Postgresql/TablesCest.php +++ /dev/null @@ -1,48 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Phalcon\Test\Unit\Db\Adapter\Pdo\Postgresql; - -use Helper\Db\Adapter\Pdo\PostgresqlTrait; -use Phalcon\Test\Unit\Db\Adapter\Pdo\TablesBase; - -class TablesCest extends TablesBase -{ - use PostgresqlTrait; - - /** - * Returns the list of the tables in the database - * - * @return array - */ - protected function getListTables(): array - { - return [ - 'customers', - 'dialect_table', - 'dialect_table_intermediate', - 'dialect_table_remote', - 'foreign_key_child', - 'foreign_key_parent', - 'images', - 'parts', - 'personas', - 'personnes', - 'ph_select', - 'prueba', - 'robots', - 'robots_parts', - 'subscriptores', - 'table_with_string_field', - 'tipo_documento', - ]; - } -} diff --git a/tests/unit/Db/Adapter/Pdo/PostgresqlTest.php b/tests/unit/Db/Adapter/Pdo/PostgresqlTest.php deleted file mode 100644 index c80182fb065..00000000000 --- a/tests/unit/Db/Adapter/Pdo/PostgresqlTest.php +++ /dev/null @@ -1,268 +0,0 @@ - - * @author Serghei Iakovlev - * @author Wojciech Ślawski - * @package Phalcon\Test\Unit\Db\Adapter\Pdo - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class PostgresqlTest extends UnitTest -{ - use PostgresqlTrait; - - /** - * @var Postgresql - */ - protected $connection; - - public function _before() - { - parent::_before(); - - try { - $this->connection = new Postgresql([ - 'host' => TEST_DB_POSTGRESQL_HOST, - 'username' => TEST_DB_POSTGRESQL_USER, - 'password' => TEST_DB_POSTGRESQL_PASSWD, - 'dbname' => TEST_DB_POSTGRESQL_NAME, - 'port' => TEST_DB_POSTGRESQL_PORT, - 'schema' => TEST_DB_POSTGRESQL_SCHEMA - ]); - } catch (\PDOException $e) { - throw new SkippedTestError("Unable to connect to the database: " . $e->getMessage()); - } - } - - /** - * Tests Postgresql::listTables - * - * @author Serghei Iakovlev - * @since 2016-09-29 - */ - public function testTableExists() - { - $this->specify( - 'Failed check for existence of a schema.table', - function ($table, $schema, $expected) { - expect($this->connection->tableExists($table, $schema))->equals($expected); - }, - [ - 'examples' => [ - ['personas', null, true ], - ['personas', TEST_DB_POSTGRESQL_SCHEMA, true], - ['noexist', null, false], - ['noexist', TEST_DB_POSTGRESQL_SCHEMA, false], - ['personas', 'test', false], - ] - ] - ); - } - - /** - * Tests Postgresql::describeReferences - * - * @author Wojciech Ślawski - * @since 2016-09-28 - */ - public function testDescribeReferencesColumnsCount() - { - $this->specify( - 'The table references list contains wrong number of columns', - function () { - $referencesWithoutSchema = $this->connection->describeReferences( - 'robots_parts' - ); - - $referencesWithSchema = $this->connection->describeReferences( - 'robots_parts', - TEST_DB_POSTGRESQL_SCHEMA - ); - - expect($referencesWithoutSchema)->equals($referencesWithSchema); - expect($referencesWithoutSchema)->count(2); - - /** @var Reference $reference */ - foreach ($referencesWithoutSchema as $reference) { - expect($reference->getColumns())->count(1); - } - } - ); - } - - /** - * Tests Postgresql::describeReferences - * - * @test - * @author Sergii Svyrydenko - * @since 2017-08-18 - */ - public function shouldCreateReferenceObject() - { - $this->specify( - "Created reference object isn't proper", - function ($expected) { - $reference = $this->connection->describeReferences('foreign_key_child', 'public'); - - expect($reference)->equals($expected); - }, - [ - 'examples' => $this->getReferenceObject() - ] - ); - } - - /** - * Tests Postgresql::describeColumns for Postgresql autoincrement column - * - * @issue https://github.com/phalcon/phalcon-devtools/issues/853 - * @author Serghei Iakovlev - * @since 2016-09-28 - */ - public function testDescribeAutoIncrementColumns() - { - $this->specify( - 'The table columns array contains incorrect initialized objects', - function () { - $columns = [ - Column::__set_state([ - '_columnName' => 'id', - '_schemaName' => null, - '_type' => 14, - '_typeReference' => -1, - '_typeValues' => null, - '_isNumeric' => true, - '_size' => 0, - '_scale' => 0, - '_default' => "nextval('images_id_seq'::regclass)", - '_unsigned' => false, - '_notNull' => true, - '_primary' => false, - '_autoIncrement' => true, - '_first' => true, - '_after' => null, - '_bindType' => 1, - ]), - Column::__set_state([ - '_columnName' => 'base64', - '_schemaName' => null, - '_type' => 6, - '_typeReference' => -1, - '_typeValues' => null, - '_isNumeric' => false, - '_size' => null, - '_scale' => 0, - '_default' => null, - '_unsigned' => false, - '_notNull' => false, - '_primary' => false, - '_autoIncrement' => false, - '_first' => false, - '_after' => 'id', - '_bindType' => 2, - ]), - ]; - - expect($this->connection->describeColumns('images', null))->equals($columns); - expect($this->connection->describeColumns('images', TEST_DB_POSTGRESQL_SCHEMA))->equals($columns); - } - ); - } - - /** - * Tests Postgresql::addForeignKey - * - * @test - * @author Sergii Svyrydenko - * @since 2017-07-05 - */ - public function shouldAddForeignKey() - { - $this->specify( - "Foreign key hasn't created", - function ($reference, $expected) { - $dialect = new DialectPostgresql(); - $references = $this->getReferenceAddForeignKey(); - $sql = $dialect->addForeignKey('foreign_key_child', 'public', $references[$reference]); - - expect($this->connection->execute($sql))->equals($expected); - }, - [ - 'examples' => [ - ['fk1', true], - ['fk2', true] - ] - ] - ); - } - - /** - * Tests Postgresql::is created - * - * @test - * @author Sergii Svyrydenko - * @since 2017-07-05 - */ - public function shouldCheckAddedForeignKey() - { - $this->specify( - "Foreign key isn't created", - function ($sql, $expected) { - expect($this->connection->execute($sql))->equals($expected); - }, - [ - 'examples' => [ - [$this->getForeignKey('fk1'), 1], - [$this->getForeignKey('foreign_key_child_child_int_fkey'), 1] - ] - ] - ); - } - - /** - * Tests Postgresql::dropAddForeignKey - * - * @test - * @author Sergii Svyrydenko - * @since 2017-07-05 - */ - public function shouldDropForeignKey() - { - $this->specify( - "Foreign key can't be deleted", - function ($reference, $expected) { - $dialect = new DialectPostgresql(); - $sql = $dialect->dropForeignKey('foreign_key_child', 'public', $reference); - - expect($this->connection->execute($sql))->equals($expected); - }, - [ - 'examples' => [ - ['fk1', true], - ['foreign_key_child_child_int_fkey', true] - ] - ] - ); - } -} diff --git a/tests/unit/Db/Adapter/Pdo/TablesBase.php b/tests/unit/Db/Adapter/Pdo/TablesBase.php deleted file mode 100644 index b5d2772bb86..00000000000 --- a/tests/unit/Db/Adapter/Pdo/TablesBase.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Phalcon\Test\Unit\Db\Adapter\Pdo; - -class TablesBase -{ - /** - * Test the `listTables` - * - * @param \UnitTester $I - * @since 2016-08-03 - */ - public function checkListTables(\UnitTester $I) - { - $expected = $this->getListTables(); - $I->assertEquals($expected, $this->connection->listTables()); - $I->assertEquals($expected, $this->connection->listTables($this->getSchemaName())); - } - - /** - * Test the `tableExists` - * - * @param \UnitTester $I - * @since 2018-10-26 - */ - public function checkTableExists(\UnitTester $I) - { - $table = 'dialect_table'; - $I->assertTrue($this->connection->tableExists($table)); - $I->assertFalse($this->connection->tableExists('unknown-table')); - $I->assertTrue($this->connection->tableExists($table, $this->getSchemaName())); - $I->assertFalse($this->connection->tableExists('unknown-table', 'unknown-db')); - } -} diff --git a/tests/unit/Db/Column/PostgresqlTest.php b/tests/unit/Db/Column/PostgresqlTest.php deleted file mode 100644 index 959f3b6a3f0..00000000000 --- a/tests/unit/Db/Column/PostgresqlTest.php +++ /dev/null @@ -1,63 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Db\Column - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class PostgresqlTest extends UnitTest -{ - /** - * Tests Postgresql::hasDefault for autoincrement fields - * - * @issue https://github.com/phalcon/cphalcon/issues/853 - * @author Serghei Iakovlev - * @since 2016-09-28 - */ - public function testHasAutoIncrementDefault() - { - $this->specify( - 'The autoincrement column has default value', - function () { - $column = Column::__set_state([ - '_columnName' => 'id', - '_schemaName' => null, - '_type' => 14, - '_typeReference' => -1, - '_typeValues' => null, - '_isNumeric' => true, - '_size' => 0, - '_scale' => 0, - '_default' => "nextval('images_id_seq'::regclass)", - '_unsigned' => false, - '_notNull' => true, - '_primary' => false, - '_autoIncrement' => true, - '_first' => true, - '_after' => null, - '_bindType' => 1, - ]); - - expect($column->hasDefault())->false(); - expect($column->isAutoIncrement())->true(); - } - ); - } -} diff --git a/tests/unit/Db/ColumnCest.php b/tests/unit/Db/ColumnCest.php deleted file mode 100644 index 09d39f193c2..00000000000 --- a/tests/unit/Db/ColumnCest.php +++ /dev/null @@ -1,61 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Phalcon\Test\Unit\Db; - -use Phalcon\Db\Column; - -class ColumnCest -{ - /** - * Check the constants of the class - * - * @since 2018-10-26 - */ - public function checkClassConstants(\UnitTester $I) - { - $I->assertEquals(3, Column::BIND_PARAM_BLOB); - $I->assertEquals(5, Column::BIND_PARAM_BOOL); - $I->assertEquals(32, Column::BIND_PARAM_DECIMAL); - $I->assertEquals(1, Column::BIND_PARAM_INT); - $I->assertEquals(0, Column::BIND_PARAM_NULL); - $I->assertEquals(2, Column::BIND_PARAM_STR); - $I->assertEquals(1024, Column::BIND_SKIP); - - $I->assertEquals(14, Column::TYPE_BIGINTEGER); - $I->assertEquals(19, Column::TYPE_BIT); - $I->assertEquals(11, Column::TYPE_BLOB); - $I->assertEquals(8, Column::TYPE_BOOLEAN); - $I->assertEquals(5, Column::TYPE_CHAR); - $I->assertEquals(1, Column::TYPE_DATE); - $I->assertEquals(4, Column::TYPE_DATETIME); - $I->assertEquals(3, Column::TYPE_DECIMAL); - $I->assertEquals(9, Column::TYPE_DOUBLE); - $I->assertEquals(18, Column::TYPE_ENUM); - $I->assertEquals(7, Column::TYPE_FLOAT); - $I->assertEquals(0, Column::TYPE_INTEGER); - $I->assertEquals(15, Column::TYPE_JSON); - $I->assertEquals(16, Column::TYPE_JSONB); - $I->assertEquals(13, Column::TYPE_LONGBLOB); - $I->assertEquals(24, Column::TYPE_LONGTEXT); - $I->assertEquals(12, Column::TYPE_MEDIUMBLOB); - $I->assertEquals(21, Column::TYPE_MEDIUMINTEGER); - $I->assertEquals(23, Column::TYPE_MEDIUMTEXT); - $I->assertEquals(22, Column::TYPE_SMALLINTEGER); - $I->assertEquals(6, Column::TYPE_TEXT); - $I->assertEquals(20, Column::TYPE_TIME); - $I->assertEquals(17, Column::TYPE_TIMESTAMP); - $I->assertEquals(10, Column::TYPE_TINYBLOB); - $I->assertEquals(26, Column::TYPE_TINYINTEGER); - $I->assertEquals(25, Column::TYPE_TINYTEXT); - $I->assertEquals(2, Column::TYPE_VARCHAR); - } -} diff --git a/tests/unit/Db/Dialect/MysqlTest.php b/tests/unit/Db/Dialect/MysqlTest.php deleted file mode 100644 index d34596c79a9..00000000000 --- a/tests/unit/Db/Dialect/MysqlTest.php +++ /dev/null @@ -1,594 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Db\Dialect - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class MysqlTest extends UnitTest -{ - use DialectTrait, MysqlTrait; - - /** - * Tests Mysql::getColumnList - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function columnList() - { - $this->specify( - 'The getColumnList method does not return correct list of columns with escaped identifiers', - function ($columns, $expected) { - $dialect = new Mysql(); - - expect($dialect->getColumnList($columns))->equals($expected); - }, - [ - 'examples' => $this->getColumnList() - ] - ); - } - - /** - * Tests Mysql::getColumnDefinition - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function columnDefinition() - { - $this->specify( - 'Unable to get the column name in Mysql', - function ($column, $expected) { - $dialect = new Mysql(); - $columns = $this->getColumns(); - - expect($dialect->getColumnDefinition($columns[$column]))->equals($expected); - }, - [ - 'examples' => $this->getColumnDefinition() - ] - ); - } - - /** - * Tests Mysql::addColumn - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function addColumns() - { - $this->specify( - 'The SQL generated to add a column to a table is invalid', - function ($schema, $column, $expected) { - $dialect = new Mysql(); - $columns = $this->getColumns(); - - expect($dialect->addColumn('table', $schema, $columns[$column]))->equals($expected); - }, - [ - 'examples' => $this->getAddColumns() - ] - ); - } - - /** - * Tests Mysql::dropTable - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function dropTable() - { - $this->specify( - 'The SQL generated to drop a table is invalid', - function ($schema, $ifExists, $expected) { - $dialect = new Mysql(); - - expect($dialect->dropTable('table', $schema, $ifExists))->equals($expected); - }, - [ - 'examples' => $this->getDropTable() - ] - ); - } - - /** - * Tests Mysql::truncateTable - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function truncateTable() - { - $this->specify( - 'The SQL generated to drop a table is invalid', - function ($schema, $expected) { - $dialect = new Mysql(); - - expect($dialect->truncateTable('table', $schema))->equals($expected); - }, - [ - 'examples' => $this->getTruncateTable() - ] - ); - } - - /** - * Tests Mysql::dropColumn - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function dropColumn() - { - $this->specify( - 'The SQL generated to delete a column from a table is invalid', - function ($schema, $column, $expected) { - $dialect = new Mysql(); - - expect($dialect->dropColumn('table', $schema, $column))->equals($expected); - }, - [ - 'examples' => $this->getDropColumn() - ] - ); - } - - /** - * Tests Mysql::modifyColumn - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function modifyColumn() - { - $this->specify( - 'The SQL generated to modify a column in a table is invalid', - function ($schema, $to, $expected) { - $dialect = new Mysql(); - $columns = $this->getColumns(); - - expect($dialect->modifyColumn('table', $schema, $columns[$to]))->equals($expected); - }, - [ - 'examples' => $this->getModifyColumn() - ] - ); - } - - /** - * Tests Mysql::addIndex - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function addIndex() - { - $this->specify( - 'The SQL generated to add an index to a table is incorrect', - function ($schema, $index, $expected) { - $dialect = new Mysql(); - $indexes = $this->getIndexes(); - - expect($dialect->addIndex('table', $schema, $indexes[$index]))->equals($expected); - }, - [ - 'examples' => $this->getAddIndex() - ] - ); - } - - /** - * Tests Mysql::dropIndex - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function dropIndex() - { - $this->specify( - 'The SQL generated to delete an index from a table is incorrect', - function ($schema, $index, $expected) { - $dialect = new Mysql(); - - expect($dialect->dropIndex('table', $schema, $index))->equals($expected); - }, - [ - 'examples' => $this->getDropIndex() - ] - ); - } - - /** - * Tests Mysql::addPrimaryKey - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function addPrimaryKey() - { - $this->specify( - 'The SQL generated to add the primary key to a table is incorrect', - function ($schema, $index, $expected) { - $dialect = new Mysql(); - $indexes = $this->getIndexes(); - - expect($dialect->addPrimaryKey('table', $schema, $indexes[$index]))->equals($expected); - }, - [ - 'examples' => $this->getAddPrimaryKey() - ] - ); - } - - /** - * Tests Mysql::dropPrimaryKey - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function dropPrimaryKey() - { - $this->specify( - 'The SQL generated to delete primary key from a table is incorrect', - function ($schema, $expected) { - $dialect = new Mysql(); - - expect($dialect->dropPrimaryKey('table', $schema))->equals($expected); - }, - [ - 'examples' => $this->getDropPrimaryKey() - ] - ); - } - - /** - * Tests Mysql::addForeignKey - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function addForeignKey() - { - $this->specify( - 'The SQL generated to add an index to a table is incorrect', - function ($schema, $reference, $expected) { - $dialect = new Mysql(); - $references = $this->getReferences(); - - expect($dialect->addForeignKey('table', $schema, $references[$reference]))->equals($expected); - }, - [ - 'examples' => $this->getAddForeignKey() - ] - ); - } - - /** - * Tests Mysql::dropForeignKey - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function dropForeignKey() - { - $this->specify( - 'The SQL generated to delete a foreign key from a table is incorrect', - function ($schema, $key, $expected) { - $dialect = new Mysql(); - - expect($dialect->dropForeignKey('table', $schema, $key))->equals($expected); - }, - [ - 'examples' => $this->getDropForeignKey() - ] - ); - } - - /** - * Tests Mysql::createView - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function createView() - { - $this->specify( - 'The SQL generated to create a view is incorrect', - function ($definition, $schema, $expected) { - $dialect = new Mysql(); - - expect($dialect->createView('test_view', $definition, $schema))->equals($expected); - }, - [ - 'examples' => $this->getCreateView() - ] - ); - } - - /** - * Tests Mysql::dropView - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function dropView() - { - $this->specify( - 'The SQL generated to drop a view is incorrect', - function ($schema, $ifExists, $expected) { - $dialect = new Mysql(); - - expect($dialect->dropView('test_view', $schema, $ifExists))->equals($expected); - }, - [ - 'examples' => $this->getDropView() - ] - ); - } - - /** - * Tests Mysql::listViews - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function listViews() - { - $this->specify( - 'The SQL generated to list all views of a schema or user is incorrect', - function ($schema, $expected) { - $dialect = new Mysql(); - - expect($dialect->listViews($schema))->equals($expected); - }, - [ - 'examples' => $this->getListViews() - ] - ); - } - - /** - * Tests Mysql::viewExists - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function viewExists() - { - $this->specify( - 'The SQL generated to check existence of view is incorrect', - function ($schema, $expected) { - $dialect = new Mysql(); - - expect($dialect->viewExists('view', $schema))->equals($expected); - }, - [ - 'examples' => $this->getViewExists() - ] - ); - } - - /** - * Tests Mysql::describeColumns - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/12536 - * @issue https://github.com/phalcon/cphalcon/issues/11359 - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function describeColumns() - { - $this->specify( - 'The SQL generated to describe a table is incorrect', - function ($schema, $expected) { - $dialect = new Mysql(); - - expect($dialect->describeColumns('table', $schema))->equals($expected); - }, - [ - 'examples' => $this->getDescribeColumns() - ] - ); - } - - /** - * Tests Mysql::createSavepoint - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function createSavepoint() - { - $this->specify( - 'The SQL generated to create a new savepoint is incorrect', - function () { - $dialect = new Mysql(); - - expect($dialect->createSavepoint('PH_SAVEPOINT_1'))->equals('SAVEPOINT PH_SAVEPOINT_1'); - } - ); - } - - /** - * Tests Mysql::releaseSavepoint - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function releaseSavepoint() - { - $this->specify( - 'The SQL generated to release a savepoint is incorrect', - function () { - $dialect = new Mysql(); - expect($dialect->releaseSavepoint('PH_SAVEPOINT_1'))->equals('RELEASE SAVEPOINT PH_SAVEPOINT_1'); - } - ); - } - - /** - * Tests Mysql::rollbackSavepoint - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function rollbackSavepoint() - { - $this->specify( - 'The SQL generated to rollback a savepoint is incorrect', - function () { - $dialect = new Mysql(); - expect($dialect->rollbackSavepoint('PH_SAVEPOINT_1'))->equals('ROLLBACK TO SAVEPOINT PH_SAVEPOINT_1'); - } - ); - } - - /** - * Tests Mysql::supportsSavepoints - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function supportsSavepoints() - { - $this->specify( - 'The platform does not support savepoints', - function () { - $dialect = new Mysql(); - expect($dialect->supportsSavepoints())->true(); - } - ); - } - - /** - * Tests Mysql::supportsReleaseSavepoints - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function supportsReleaseSavepoints() - { - $this->specify( - 'The platform does not support releasing savepoints', - function () { - $dialect = new Mysql(); - expect($dialect->supportsReleaseSavepoints())->true(); - } - ); - } - - /** - * Tests Mysql::describeReferences - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function describeReferences() - { - $this->specify( - 'The SQL generated to describe references is incorrect', - function ($schema, $expected) { - $dialect = new Mysql(); - - expect($dialect->describeReferences('table', $schema))->equals($expected); - }, - [ - 'examples' => $this->getDescribeReferences() - ] - ); - } - - /** - * Tests Mysql::createTable - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function createTable() - { - $this->specify( - 'The SQL generated to create a table is incorrect', - function ($schema, $definition, $expected) { - $dialect = new Mysql(); - - expect($dialect->createTable('table', $schema, $definition))->equals($expected); - }, - [ - 'examples' => $this->getCreateTable() - ] - ); - } - - /** - * Tests Mysql::modifyColumn - * - * @test - * @author Serghei Iakovlev - * @since 2018-01-20 - * @issue https://github.com/phalcon/cphalcon/issues/13012 - */ - public function shouldRenameColumn() - { - $this->specify( - "Can't rename a Column using MySQL Dialect", - function () { - $dialect = new Mysql(); - - $oldColumn = new Column('old', ['type' => Column::TYPE_VARCHAR]); - $newColumn = new Column('new', ['type' => Column::TYPE_VARCHAR]); - - expect($dialect->modifyColumn('table', 'database', $newColumn, $oldColumn)) - ->equals('ALTER TABLE `database`.`table` CHANGE COLUMN `old` `new` VARCHAR(0)'); - } - ); - } -} diff --git a/tests/unit/Db/Dialect/PostgresqlTest.php b/tests/unit/Db/Dialect/PostgresqlTest.php deleted file mode 100644 index fa3ed01db77..00000000000 --- a/tests/unit/Db/Dialect/PostgresqlTest.php +++ /dev/null @@ -1,544 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Db\Dialect - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class PostgresqlTest extends UnitTest -{ - use DialectTrait, PostgresqlTrait; - - /** - * Tests Postgresql::getColumnList - * - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testColumnList() - { - $this->specify( - 'The getColumnList method does not return correct list of columns with escaped identifiers', - function ($columns, $expected) { - $dialect = new Postgresql(); - - expect($dialect->getColumnList($columns))->equals($expected); - }, - [ - 'examples' => $this->getColumnList() - ] - ); - } - - /** - * Tests Postgresql::getColumnDefinition - * - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testColumnDefinition() - { - $this->specify( - 'Unable to get the column name in PostgreSQL', - function ($column, $expected) { - $dialect = new Postgresql(); - $columns = $this->getColumns(); - - expect($dialect->getColumnDefinition($columns[$column]))->equals($expected); - }, - [ - 'examples' => $this->getColumnDefinition() - ] - ); - } - - /** - * Tests Postgresql::addColumn - * - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testAddColumns() - { - $this->specify( - 'The SQL generated to add a column to a table is invalid', - function ($schema, $column, $expected) { - $dialect = new Postgresql(); - $columns = $this->getColumns(); - - expect($dialect->addColumn('table', $schema, $columns[$column]))->equals($expected); - }, - [ - 'examples' => $this->getAddColumns() - ] - ); - } - - /** - * Tests Postgresql::dropTable - * - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testDropTable() - { - $this->specify( - 'The SQL generated to drop a table is invalid', - function ($schema, $ifExists, $expected) { - $dialect = new Postgresql(); - - expect($dialect->dropTable('table', $schema, $ifExists))->equals($expected); - }, - [ - 'examples' => $this->getDropTable() - ] - ); - } - - /** - * Tests Postgresql::truncateTable - * - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function testTruncateTable() - { - $this->specify( - 'The SQL generated to drop a table is invalid', - function ($schema, $expected) { - $dialect = new Postgresql(); - - expect($dialect->truncateTable('table', $schema))->equals($expected); - }, - [ - 'examples' => $this->getTruncateTable() - ] - ); - } - - /** - * Tests Postgresql::dropColumn - * - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testDropColumn() - { - $this->specify( - 'The SQL generated to delete a column from a table is invalid', - function ($schema, $column, $expected) { - $dialect = new Postgresql(); - - expect($dialect->dropColumn('table', $schema, $column))->equals($expected); - }, - [ - 'examples' => $this->getDropColumn() - ] - ); - } - - /** - * Tests Postgresql::modifyColumn - * - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testModifyColumn() - { - $this->specify( - 'The SQL generated to modify a column in a table is invalid', - function ($schema, $to, $fom, $expected) { - $dialect = new Postgresql(); - $columns = $this->getColumns(); - - expect($dialect->modifyColumn('table', $schema, $columns[$to], $columns[$fom]))->equals($expected); - }, - [ - 'examples' => $this->getModifyColumn() - ] - ); - } - - /** - * Tests Postgresql::addIndex - * - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testAddIndex() - { - $this->specify( - 'The SQL generated to add an index to a table is incorrect', - function ($schema, $index, $expected) { - $dialect = new Postgresql(); - $indexes = $this->getIndexes(); - - expect($dialect->addIndex('table', $schema, $indexes[$index]))->equals($expected); - }, - [ - 'examples' => $this->getAddIndex() - ] - ); - } - - /** - * Tests Postgresql::dropIndex - * - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testDropIndex() - { - $this->specify( - 'The SQL generated to delete an index from a table is incorrect', - function ($schema, $index, $expected) { - $dialect = new Postgresql(); - - expect($dialect->dropIndex('table', $schema, $index))->equals($expected); - }, - [ - 'examples' => $this->getDropIndex() - ] - ); - } - - /** - * Tests Postgresql::addPrimaryKey - * - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testAddPrimaryKey() - { - $this->specify( - 'The SQL generated to add the primary key to a table is incorrect', - function ($schema, $index, $expected) { - $dialect = new Postgresql(); - $indexes = $this->getIndexes(); - - expect($dialect->addPrimaryKey('table', $schema, $indexes[$index]))->equals($expected); - }, - [ - 'examples' => $this->getAddPrimaryKey() - ] - ); - } - - /** - * Tests Postgresql::dropPrimaryKey - * - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testDropPrimaryKey() - { - $this->specify( - 'The SQL generated to delete primary key from a table is incorrect', - function ($schema, $expected) { - $dialect = new Postgresql(); - - expect($dialect->dropPrimaryKey('table', $schema))->equals($expected); - }, - [ - 'examples' => $this->getDropPrimaryKey() - ] - ); - } - - /** - * Tests Postgresql::addForeignKey - * - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testAddForeignKey() - { - $this->specify( - 'The SQL generated to add an index to a table is incorrect', - function ($schema, $reference, $expected) { - $dialect = new Postgresql(); - $references = $this->getReferences(); - - expect($dialect->addForeignKey('table', $schema, $references[$reference]))->equals($expected); - }, - [ - 'examples' => $this->getAddForeignKey() - ] - ); - } - - /** - * Tests Postgresql::dropForeignKey - * - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testDropForeignKey() - { - $this->specify( - 'The SQL generated to delete a foreign key from a table is incorrect', - function ($schema, $key, $expected) { - $dialect = new Postgresql(); - - expect($dialect->dropForeignKey('table', $schema, $key))->equals($expected); - }, - [ - 'examples' => $this->getDropForeignKey() - ] - ); - } - - /** - * Tests Postgresql::createView - * - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testCreateView() - { - $this->specify( - 'The SQL generated to create a view is incorrect', - function ($definition, $schema, $expected) { - $dialect = new Postgresql(); - - expect($dialect->createView('test_view', $definition, $schema))->equals($expected); - }, - [ - 'examples' => $this->getCreateView() - ] - ); - } - - /** - * Tests Postgresql::dropView - * - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testDropView() - { - $this->specify( - 'The SQL generated to drop a view is incorrect', - function ($schema, $ifExists, $expected) { - $dialect = new Postgresql(); - - expect($dialect->dropView('test_view', $schema, $ifExists))->equals($expected); - }, - [ - 'examples' => $this->getDropView() - ] - ); - } - - /** - * Tests Postgresql::viewExists - * - * @author Wojciech Ślawski - * @since 2016-10-02 - */ - public function testViewExists() - { - $this->specify( - 'The SQL generated to check existence of view is incorrect', - function ($schema, $expected) { - $dialect = new Postgresql(); - - expect($dialect->viewExists('view', $schema))->equals($expected); - }, - [ - 'examples' => $this->getViewExists() - ] - ); - } - - /** - * Tests Postgresql::listViews - * - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testListViews() - { - $this->specify( - 'The SQL generated to list all views of a schema or user is incorrect', - function ($schema, $expected) { - $dialect = new Postgresql(); - - expect($dialect->listViews($schema))->equals($expected); - }, - [ - 'examples' => $this->getListViews() - ] - ); - } - - /** - * Tests Postgresql::describeColumns - * - * @issue https://github.com/phalcon/cphalcon/issues/12536 - * @issue https://github.com/phalcon/cphalcon/issues/11359 - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testDescribeColumns() - { - $this->specify( - 'The SQL generated to describe a table is incorrect', - function ($schema, $expected) { - $dialect = new Postgresql(); - - expect($dialect->describeColumns('table', $schema))->equals($expected); - }, - [ - 'examples' => $this->getDescribeColumns() - ] - ); - } - - /** - * Tests Postgresql::createSavepoint - * - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testCreateSavepoint() - { - $this->specify( - 'The SQL generated to create a new savepoint is incorrect', - function () { - $dialect = new Postgresql(); - - expect($dialect->createSavepoint('PH_SAVEPOINT_1'))->equals('SAVEPOINT PH_SAVEPOINT_1'); - } - ); - } - - /** - * Tests Postgresql::releaseSavepoint - * - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testReleaseSavepoint() - { - $this->specify( - 'The SQL generated to release a savepoint is incorrect', - function () { - $dialect = new Postgresql(); - expect($dialect->releaseSavepoint('PH_SAVEPOINT_1'))->equals('RELEASE SAVEPOINT PH_SAVEPOINT_1'); - } - ); - } - - /** - * Tests Postgresql::rollbackSavepoint - * - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testRollbackSavepoint() - { - $this->specify( - 'The SQL generated to rollback a savepoint is incorrect', - function () { - $dialect = new Postgresql(); - expect($dialect->rollbackSavepoint('PH_SAVEPOINT_1'))->equals('ROLLBACK TO SAVEPOINT PH_SAVEPOINT_1'); - } - ); - } - - /** - * Tests Postgresql::supportsSavepoints - * - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testSupportsSavepoints() - { - $this->specify( - 'The platform does not support savepoints', - function () { - $dialect = new Postgresql(); - expect($dialect->supportsSavepoints())->true(); - } - ); - } - - /** - * Tests Postgresql::supportsReleaseSavepoints - * - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testSupportsReleaseSavepoints() - { - $this->specify( - 'The platform does not support releasing savepoints', - function () { - $dialect = new Postgresql(); - expect($dialect->supportsReleaseSavepoints())->true(); - } - ); - } - - /** - * Tests Postgresql::describeReferences - * - * @author Wojciech Ślawski - * @since 2016-10-02 - */ - public function testDescribeReferences() - { - $this->specify( - 'The SQL generated to describe references is incorrect', - function ($schema, $expected) { - $dialect = new Postgresql(); - - expect($dialect->describeReferences('table', $schema))->equals($expected); - }, - [ - 'examples' => $this->getDescribeReferences() - ] - ); - } - - /** - * Tests Postgresql::createTable - * - * @author Serghei Iakovlev - * @since 2016-09-30 - */ - public function testCreateTable() - { - $this->specify( - 'The SQL generated to create a table is incorrect', - function ($schema, $definition, $expected) { - $dialect = new Postgresql(); - - expect($dialect->createTable('table', $schema, $definition))->equals($expected); - }, - [ - 'examples' => $this->getCreateTable() - ] - ); - } -} diff --git a/tests/unit/Db/Dialect/SqliteTest.php b/tests/unit/Db/Dialect/SqliteTest.php deleted file mode 100644 index beafb053511..00000000000 --- a/tests/unit/Db/Dialect/SqliteTest.php +++ /dev/null @@ -1,569 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Db\Dialect - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class SqliteTest extends UnitTest -{ - use DialectTrait, SqliteTrait; - - /** - * Tests Sqlite::getColumnList - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function columnList() - { - $this->specify( - 'The getColumnList method does not return correct list of columns with escaped identifiers', - function ($columns, $expected) { - $dialect = new Sqlite(); - - expect($dialect->getColumnList($columns))->equals($expected); - }, - [ - 'examples' => $this->getColumnList() - ] - ); - } - - /** - * Tests Sqlite::getColumnDefinition - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function columnDefinition() - { - $this->specify( - 'Unable to get the column name in Sqlite', - function ($column, $expected) { - $dialect = new Sqlite(); - $columns = $this->getColumns(); - - expect($dialect->getColumnDefinition($columns[$column]))->equals($expected); - }, - [ - 'examples' => $this->getColumnDefinition() - ] - ); - } - - /** - * Tests Sqlite::addColumn - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function addColumns() - { - $this->specify( - 'The SQL generated to add a column to a table is invalid', - function ($schema, $column, $expected) { - $dialect = new Sqlite(); - $columns = $this->getColumns(); - - expect($dialect->addColumn('table', $schema, $columns[$column]))->equals($expected); - }, - [ - 'examples' => $this->getAddColumns() - ] - ); - } - - /** - * Tests Sqlite::modifyColumn - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - * - * @expectedException \Phalcon\Db\Exception - * @expectedExceptionMessage Altering a DB column is not supported by SQLite - */ - public function modifyColumn() - { - $this->specify( - 'The SQL generated to modify a column in a table is invalid', - function () { - $dialect = new Sqlite(); - $columns = $this->getColumns(); - - $dialect->modifyColumn('table', null, $columns['column1']); - } - ); - } - - /** - * Tests Sqlite::dropColumn - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - * - * @expectedException \Phalcon\Db\Exception - * @expectedExceptionMessage Dropping DB column is not supported by SQLite - */ - public function dropColumn() - { - $this->specify( - 'The SQL generated to modify a column in a table is invalid', - function () { - $dialect = new Sqlite(); - - $dialect->dropColumn('table', null, 'column1'); - } - ); - } - - /** - * Tests Sqlite::dropTable - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function dropTable() - { - $this->specify( - 'The SQL generated to drop a table is invalid', - function ($schema, $ifExists, $expected) { - $dialect = new Sqlite(); - - expect($dialect->dropTable('table', $schema, $ifExists))->equals($expected); - }, - [ - 'examples' => $this->getDropTable() - ] - ); - } - - /** - * Tests Sqlite::truncateTable - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function truncateTable() - { - $this->specify( - 'The SQL generated to drop a table is invalid', - function ($schema, $expected) { - $dialect = new Sqlite(); - - expect($dialect->truncateTable('table', $schema))->equals($expected); - }, - [ - 'examples' => $this->getTruncateTable() - ] - ); - } - - /** - * Tests Sqlite::addIndex - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function addIndex() - { - $this->specify( - 'The SQL generated to add an index to a table is incorrect', - function ($schema, $index, $expected) { - $dialect = new Sqlite(); - $indexes = $this->getIndexes(); - - expect($dialect->addIndex('table', $schema, $indexes[$index]))->equals($expected); - }, - [ - 'examples' => $this->getAddIndex() - ] - ); - } - - /** - * Tests Sqlite::dropIndex - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function dropIndex() - { - $this->specify( - 'The SQL generated to delete an index from a table is incorrect', - function ($schema, $index, $expected) { - $dialect = new Sqlite(); - - expect($dialect->dropIndex('table', $schema, $index))->equals($expected); - }, - [ - 'examples' => $this->getDropIndex() - ] - ); - } - - /** - * Tests Sqlite::addPrimaryKey - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - * - * @expectedException \Phalcon\Db\Exception - * @expectedExceptionMessage Adding a primary key after table has been created is not supported by SQLite - */ - public function addPrimaryKey() - { - $this->specify( - 'The SQL generated to add the primary key to a table is incorrect', - function () { - $dialect = new Sqlite(); - $indexes = $this->getIndexes(); - - $dialect->addPrimaryKey('table', null, $indexes['PRIMARY']); - } - ); - } - - /** - * Tests Sqlite::dropPrimaryKey - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - * - * @expectedException \Phalcon\Db\Exception - * @expectedExceptionMessage Removing a primary key after table has been created is not supported by SQLite - */ - public function dropPrimaryKey() - { - $this->specify( - 'The SQL generated to delete primary key from a table is incorrect', - function () { - $dialect = new Sqlite(); - - $dialect->dropPrimaryKey('table', null); - } - ); - } - - /** - * Tests Sqlite::addForeignKey - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - * - * @expectedException \Phalcon\Db\Exception - * @expectedExceptionMessage Adding a foreign key constraint to an existing table is not supported by SQLite - */ - public function addForeignKey() - { - $this->specify( - 'The SQL generated to add an index to a table is incorrect', - function () { - $dialect = new Sqlite(); - $references = $this->getReferences(); - - $dialect->addForeignKey('table', null, $references['fk1']); - } - ); - } - - /** - * Tests Sqlite::dropForeignKey - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - * - * @expectedException \Phalcon\Db\Exception - * @expectedExceptionMessage Dropping a foreign key constraint is not supported by SQLite - */ - public function dropForeignKey() - { - $this->specify( - 'The SQL generated to delete a foreign key from a table is incorrect', - function () { - $dialect = new Sqlite(); - - $dialect->dropForeignKey('table', null, 'fk1'); - } - ); - } - - /** - * Tests Sqlite::createView - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function createView() - { - $this->specify( - 'The SQL generated to create a view is incorrect', - function ($definition, $schema, $expected) { - $dialect = new Sqlite(); - - expect($dialect->createView('test_view', $definition, $schema))->equals($expected); - }, - [ - 'examples' => $this->getCreateView() - ] - ); - } - - /** - * Tests Sqlite::dropView - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function dropView() - { - $this->specify( - 'The SQL generated to drop a view is incorrect', - function ($schema, $ifExists, $expected) { - $dialect = new Sqlite(); - - expect($dialect->dropView('test_view', $schema, $ifExists))->equals($expected); - }, - [ - 'examples' => $this->getDropView() - ] - ); - } - - /** - * Tests Sqlite::listViews - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function listViews() - { - $this->specify( - 'The SQL generated to list all views of a schema or user is incorrect', - function ($schema, $expected) { - $dialect = new Sqlite(); - - expect($dialect->listViews($schema))->equals($expected); - }, - [ - 'examples' => $this->getListViews() - ] - ); - } - - /** - * Tests Sqlite::viewExists - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function viewExists() - { - $this->specify( - 'The SQL generated to check existence of view is incorrect', - function ($schema, $expected) { - $dialect = new Sqlite(); - - expect($dialect->viewExists('view', $schema))->equals($expected); - }, - [ - 'examples' => $this->getViewExists() - ] - ); - } - - /** - * Tests Sqlite::describeColumns - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/12536 - * @issue https://github.com/phalcon/cphalcon/issues/11359 - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function describeColumns() - { - $this->specify( - 'The SQL generated to describe a table is incorrect', - function ($schema, $expected) { - $dialect = new Sqlite(); - - expect($dialect->describeColumns('table', $schema))->equals($expected); - }, - [ - 'examples' => $this->getDescribeColumns() - ] - ); - } - - /** - * Tests Sqlite::createSavepoint - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function createSavepoint() - { - $this->specify( - 'The SQL generated to create a new savepoint is incorrect', - function () { - $dialect = new Sqlite(); - - expect($dialect->createSavepoint('PH_SAVEPOINT_1'))->equals('SAVEPOINT PH_SAVEPOINT_1'); - } - ); - } - - /** - * Tests Sqlite::releaseSavepoint - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function releaseSavepoint() - { - $this->specify( - 'The SQL generated to release a savepoint is incorrect', - function () { - $dialect = new Sqlite(); - expect($dialect->releaseSavepoint('PH_SAVEPOINT_1'))->equals('RELEASE SAVEPOINT PH_SAVEPOINT_1'); - } - ); - } - - /** - * Tests Sqlite::rollbackSavepoint - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function rollbackSavepoint() - { - $this->specify( - 'The SQL generated to rollback a savepoint is incorrect', - function () { - $dialect = new Sqlite(); - expect($dialect->rollbackSavepoint('PH_SAVEPOINT_1'))->equals('ROLLBACK TO SAVEPOINT PH_SAVEPOINT_1'); - } - ); - } - - /** - * Tests Sqlite::supportsSavepoints - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function supportsSavepoints() - { - $this->specify( - 'The platform does not support savepoints', - function () { - $dialect = new Sqlite(); - expect($dialect->supportsSavepoints())->true(); - } - ); - } - - /** - * Tests Sqlite::supportsReleaseSavepoints - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function supportsReleaseSavepoints() - { - $this->specify( - 'The platform does not support releasing savepoints', - function () { - $dialect = new Sqlite(); - expect($dialect->supportsReleaseSavepoints())->true(); - } - ); - } - - /** - * Tests Sqlite::describeReferences - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function describeReferences() - { - $this->specify( - 'The SQL generated to describe references is incorrect', - function ($schema, $expected) { - $dialect = new Sqlite(); - - expect($dialect->describeReferences('table', $schema))->equals($expected); - }, - [ - 'examples' => $this->getDescribeReferences() - ] - ); - } - - /** - * Tests Sqlite::createTable - * - * @test - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function createTable() - { - $this->specify( - 'The SQL generated to create a table is incorrect', - function ($schema, $definition, $expected) { - $dialect = new Sqlite(); - - expect($dialect->createTable('table', $schema, $definition))->equals($expected); - }, - [ - 'examples' => $this->getCreateTable() - ] - ); - } -} diff --git a/tests/unit/Db/IndexTest.php b/tests/unit/Db/IndexTest.php deleted file mode 100644 index 1c8d0f286ff..00000000000 --- a/tests/unit/Db/IndexTest.php +++ /dev/null @@ -1,56 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Db - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class IndexTest extends UnitTest -{ - use DialectTrait; - - /** @test */ - public function shouldWorkPerfectlyWithIndexAsObject() - { - $indexes = $this->getIndexes(); - - $index1 = $indexes['index1']; - $this->assertEquals($index1->getName(), 'index1'); - $this->assertEquals($index1->getColumns(), ['column1']); - - $index2 = $indexes['index2']; - $this->assertEquals($index2->getName(), 'index2'); - $this->assertEquals($index2->getColumns(), ['column1', 'column2']); - - $index3 = $indexes['PRIMARY']; - $this->assertEquals($index3->getName(), 'PRIMARY'); - $this->assertEquals($index3->getColumns(), ['column3']); - - $index4 = $indexes['index4']; - $this->assertEquals($index4->getName(), 'index4'); - $this->assertEquals($index4->getColumns(), ['column4']); - $this->assertEquals($index4->getType(), 'UNIQUE'); - - $index5 = $indexes['index5']; - $this->assertEquals($index5->getName(), 'index5'); - $this->assertEquals($index5->getColumns(), ['column7']); - $this->assertEquals($index5->getType(), 'FULLTEXT'); - } -} diff --git a/tests/unit/Db/ReferenceTest.php b/tests/unit/Db/ReferenceTest.php deleted file mode 100644 index f57fff08d0c..00000000000 --- a/tests/unit/Db/ReferenceTest.php +++ /dev/null @@ -1,74 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Db - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ReferenceTest extends UnitTest -{ - use DialectTrait; - - /** @test */ - public function shouldWorkPerfectlyWithCReferenceAsObject() - { - $references = $this->getReferences(); - - $reference1 = $references['fk1']; - $this->assertEquals($reference1->getName(), 'fk1'); - $this->assertEquals($reference1->getColumns(), ['column1']); - $this->assertEquals($reference1->getReferencedTable(), 'ref_table'); - $this->assertEquals($reference1->getReferencedColumns(), ['column2']); - $this->assertEquals($reference1->getOnDelete(), null); - $this->assertEquals($reference1->getOnUpdate(), null); - - $reference2 = $references['fk2']; - $this->assertEquals($reference2->getName(), 'fk2'); - $this->assertEquals($reference2->getColumns(), ['column3', 'column4']); - $this->assertEquals($reference2->getReferencedTable(), 'ref_table'); - $this->assertEquals($reference2->getReferencedColumns(), ['column5', 'column6']); - $this->assertEquals($reference1->getOnDelete(), null); - $this->assertEquals($reference1->getOnUpdate(), null); - - $reference3 = $references['fk3']; - $this->assertEquals($reference3->getName(), 'fk3'); - $this->assertEquals($reference3->getColumns(), ['column1']); - $this->assertEquals($reference3->getReferencedTable(), 'ref_table'); - $this->assertEquals($reference3->getReferencedColumns(), ['column2']); - $this->assertEquals($reference3->getOnDelete(), 'CASCADE'); - $this->assertEquals($reference3->getOnUpdate(), null); - - $reference4 = $references['fk4']; - $this->assertEquals($reference4->getName(), 'fk4'); - $this->assertEquals($reference4->getColumns(), ['column1']); - $this->assertEquals($reference4->getReferencedTable(), 'ref_table'); - $this->assertEquals($reference4->getReferencedColumns(), ['column2']); - $this->assertEquals($reference4->getOnDelete(), null); - $this->assertEquals($reference4->getOnUpdate(), 'SET NULL'); - - $reference5 = $references['fk5']; - $this->assertEquals($reference5->getName(), 'fk5'); - $this->assertEquals($reference5->getColumns(), ['column1']); - $this->assertEquals($reference5->getReferencedTable(), 'ref_table'); - $this->assertEquals($reference5->getReferencedColumns(), ['column2']); - $this->assertEquals($reference5->getOnDelete(), 'CASCADE'); - $this->assertEquals($reference5->getOnUpdate(), 'NO ACTION'); - } -} diff --git a/tests/unit/Debug/ClearVarsCest.php b/tests/unit/Debug/ClearVarsCest.php new file mode 100644 index 00000000000..29a3424dd40 --- /dev/null +++ b/tests/unit/Debug/ClearVarsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug; + +use UnitTester; + +class ClearVarsCest +{ + /** + * Tests Phalcon\Debug :: clearVars() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugClearVars(UnitTester $I) + { + $I->wantToTest("Debug - clearVars()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/DebugCest.php b/tests/unit/Debug/DebugCest.php new file mode 100644 index 00000000000..ec3ea5c293e --- /dev/null +++ b/tests/unit/Debug/DebugCest.php @@ -0,0 +1,58 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug; + +use Phalcon\Debug; +use Phalcon\Di; +use Phalcon\Di\FactoryDefault; +use Phalcon\Mvc\Url; +use Phalcon\Version; +use UnitTester; + +class DebugCest +{ + public function _before(UnitTester $I) + { + Di::reset(); + $container = new FactoryDefault(); + + $container->setShared('url', function () { + return new Url(); + }); + + Di::setDefault($container); + } + + public function _after(UnitTester $I) + { + Di::reset(); + } + + /** + * Tests the Debug::getVersion + * + * @issue https://github.com/phalcon/cphalcon/issues/12215 + * @author Phalcon Team + * @since 2016-09-25 + */ + public function testShouldGetVersion(UnitTester $I) + { + $debug = new Debug; + $target = '"_new"'; + $uri = '"https://docs.phalconphp.com/en/' . Version::getPart(Version::VERSION_MAJOR) . '.0.0/"'; + $version = Version::get(); + + $expected = "
Phalcon Framework {$version}
"; + $actual = $debug->getVersion(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Debug/DebugVarCest.php b/tests/unit/Debug/DebugVarCest.php new file mode 100644 index 00000000000..1827e281cfc --- /dev/null +++ b/tests/unit/Debug/DebugVarCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug; + +use UnitTester; + +class DebugVarCest +{ + /** + * Tests Phalcon\Debug :: debugVar() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugDebugVar(UnitTester $I) + { + $I->wantToTest("Debug - debugVar()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/Dump/AllCest.php b/tests/unit/Debug/Dump/AllCest.php new file mode 100644 index 00000000000..58ad1d121c5 --- /dev/null +++ b/tests/unit/Debug/Dump/AllCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug\Dump; + +use UnitTester; + +class AllCest +{ + /** + * Tests Phalcon\Debug\Dump :: all() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugDumpAll(UnitTester $I) + { + $I->wantToTest("Debug\Dump - all()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/Dump/ConstructCest.php b/tests/unit/Debug/Dump/ConstructCest.php new file mode 100644 index 00000000000..c9a8468b2ed --- /dev/null +++ b/tests/unit/Debug/Dump/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug\Dump; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Debug\Dump :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugDumpConstruct(UnitTester $I) + { + $I->wantToTest("Debug\Dump - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/Dump/GetDetailedCest.php b/tests/unit/Debug/Dump/GetDetailedCest.php new file mode 100644 index 00000000000..73f184a9d42 --- /dev/null +++ b/tests/unit/Debug/Dump/GetDetailedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug\Dump; + +use UnitTester; + +class GetDetailedCest +{ + /** + * Tests Phalcon\Debug\Dump :: getDetailed() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugDumpGetDetailed(UnitTester $I) + { + $I->wantToTest("Debug\Dump - getDetailed()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/Dump/OneCest.php b/tests/unit/Debug/Dump/OneCest.php new file mode 100644 index 00000000000..5bfaf80801e --- /dev/null +++ b/tests/unit/Debug/Dump/OneCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug\Dump; + +use UnitTester; + +class OneCest +{ + /** + * Tests Phalcon\Debug\Dump :: one() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugDumpOne(UnitTester $I) + { + $I->wantToTest("Debug\Dump - one()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/Dump/SetDetailedCest.php b/tests/unit/Debug/Dump/SetDetailedCest.php new file mode 100644 index 00000000000..c6f92155d4d --- /dev/null +++ b/tests/unit/Debug/Dump/SetDetailedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug\Dump; + +use UnitTester; + +class SetDetailedCest +{ + /** + * Tests Phalcon\Debug\Dump :: setDetailed() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugDumpSetDetailed(UnitTester $I) + { + $I->wantToTest("Debug\Dump - setDetailed()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/Dump/SetStylesCest.php b/tests/unit/Debug/Dump/SetStylesCest.php new file mode 100644 index 00000000000..930c6052287 --- /dev/null +++ b/tests/unit/Debug/Dump/SetStylesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug\Dump; + +use UnitTester; + +class SetStylesCest +{ + /** + * Tests Phalcon\Debug\Dump :: setStyles() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugDumpSetStyles(UnitTester $I) + { + $I->wantToTest("Debug\Dump - setStyles()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/Dump/ToJsonCest.php b/tests/unit/Debug/Dump/ToJsonCest.php new file mode 100644 index 00000000000..739e51af540 --- /dev/null +++ b/tests/unit/Debug/Dump/ToJsonCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug\Dump; + +use UnitTester; + +class ToJsonCest +{ + /** + * Tests Phalcon\Debug\Dump :: toJson() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugDumpToJson(UnitTester $I) + { + $I->wantToTest("Debug\Dump - toJson()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/Dump/VariableCest.php b/tests/unit/Debug/Dump/VariableCest.php new file mode 100644 index 00000000000..d2441d9b3aa --- /dev/null +++ b/tests/unit/Debug/Dump/VariableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug\Dump; + +use UnitTester; + +class VariableCest +{ + /** + * Tests Phalcon\Debug\Dump :: variable() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugDumpVariable(UnitTester $I) + { + $I->wantToTest("Debug\Dump - variable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/Dump/VariablesCest.php b/tests/unit/Debug/Dump/VariablesCest.php new file mode 100644 index 00000000000..b51c5e4547e --- /dev/null +++ b/tests/unit/Debug/Dump/VariablesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug\Dump; + +use UnitTester; + +class VariablesCest +{ + /** + * Tests Phalcon\Debug\Dump :: variables() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugDumpVariables(UnitTester $I) + { + $I->wantToTest("Debug\Dump - variables()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/DumpCest.php b/tests/unit/Debug/DumpCest.php new file mode 100644 index 00000000000..3ecad0d8a21 --- /dev/null +++ b/tests/unit/Debug/DumpCest.php @@ -0,0 +1,43 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug; + +use Phalcon\Debug\Dump; +use Phalcon\Test\Unit\Debug\Helper\ClassProperties; +use UnitTester; +use function dataFolder; + +class DumpCest +{ + /** + * Tests dump object properties. + * + * @issue https://github.com/phalcon/cphalcon/issues/13315 + * @author Phalcon Team + * @since 2014-10-23 + */ + public function shouldDumpObjectProperties(UnitTester $I) + { + $patient = new ClassProperties(); + $dump = new Dump([], true); + + $actual = $I->callProtectedMethod($dump, 'output', $patient); + $expected = file_get_contents(dataFolder('fixtures/Dump/class_properties.txt')); + + // Test without HTML + $actual = strip_tags($actual); + + // Remove a trailing newline + $expected = trim($expected); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Debug/DumpTest.php b/tests/unit/Debug/DumpTest.php deleted file mode 100644 index 47ba82c17fb..00000000000 --- a/tests/unit/Debug/DumpTest.php +++ /dev/null @@ -1,57 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Debug - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class DumpTest extends UnitTest -{ - /** - * Tests dump object properties. - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/13315 - * @author Serghei Iakovlev - * @since 2014-10-23 - */ - public function shouldDumpObjectProperties() - { - $this->specify( - "The Dump::output doesn't work as expected", - function () { - $patient = new ClassProperties(); - $dump = new Dump(null, true); - - $actual = $this->tester->callProtectedMethod($dump, 'output', $patient); - $expected = file_get_contents(PATH_FIXTURES . 'dump/class_properties.txt'); - - // Test without HTML - $actual = strip_tags($actual); - - // Remove a trailing newline - $expected = trim($expected); - - expect($actual)->equals($expected); - } - ); - } -} diff --git a/tests/unit/Debug/GetCssSourcesCest.php b/tests/unit/Debug/GetCssSourcesCest.php new file mode 100644 index 00000000000..5b2901b5645 --- /dev/null +++ b/tests/unit/Debug/GetCssSourcesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug; + +use UnitTester; + +class GetCssSourcesCest +{ + /** + * Tests Phalcon\Debug :: getCssSources() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugGetCssSources(UnitTester $I) + { + $I->wantToTest("Debug - getCssSources()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/GetJsSourcesCest.php b/tests/unit/Debug/GetJsSourcesCest.php new file mode 100644 index 00000000000..055314f4223 --- /dev/null +++ b/tests/unit/Debug/GetJsSourcesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug; + +use UnitTester; + +class GetJsSourcesCest +{ + /** + * Tests Phalcon\Debug :: getJsSources() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugGetJsSources(UnitTester $I) + { + $I->wantToTest("Debug - getJsSources()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/GetVersionCest.php b/tests/unit/Debug/GetVersionCest.php new file mode 100644 index 00000000000..28c052668e8 --- /dev/null +++ b/tests/unit/Debug/GetVersionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug; + +use UnitTester; + +class GetVersionCest +{ + /** + * Tests Phalcon\Debug :: getVersion() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugGetVersion(UnitTester $I) + { + $I->wantToTest("Debug - getVersion()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/HaltCest.php b/tests/unit/Debug/HaltCest.php new file mode 100644 index 00000000000..83d2d533077 --- /dev/null +++ b/tests/unit/Debug/HaltCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug; + +use UnitTester; + +class HaltCest +{ + /** + * Tests Phalcon\Debug :: halt() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugHalt(UnitTester $I) + { + $I->wantToTest("Debug - halt()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/Helper/ClassProperties.php b/tests/unit/Debug/Helper/ClassProperties.php new file mode 100644 index 00000000000..5fe7f174e21 --- /dev/null +++ b/tests/unit/Debug/Helper/ClassProperties.php @@ -0,0 +1,12 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug; + +use UnitTester; + +class ListenCest +{ + /** + * Tests Phalcon\Debug :: listen() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugListen(UnitTester $I) + { + $I->wantToTest("Debug - listen()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/ListenExceptionsCest.php b/tests/unit/Debug/ListenExceptionsCest.php new file mode 100644 index 00000000000..f5fd77284bb --- /dev/null +++ b/tests/unit/Debug/ListenExceptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug; + +use UnitTester; + +class ListenExceptionsCest +{ + /** + * Tests Phalcon\Debug :: listenExceptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugListenExceptions(UnitTester $I) + { + $I->wantToTest("Debug - listenExceptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/ListenLowSeverityCest.php b/tests/unit/Debug/ListenLowSeverityCest.php new file mode 100644 index 00000000000..75b5cfc8c1c --- /dev/null +++ b/tests/unit/Debug/ListenLowSeverityCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug; + +use UnitTester; + +class ListenLowSeverityCest +{ + /** + * Tests Phalcon\Debug :: listenLowSeverity() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugListenLowSeverity(UnitTester $I) + { + $I->wantToTest("Debug - listenLowSeverity()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/OnUncaughtExceptionCest.php b/tests/unit/Debug/OnUncaughtExceptionCest.php new file mode 100644 index 00000000000..3a1cee46337 --- /dev/null +++ b/tests/unit/Debug/OnUncaughtExceptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug; + +use UnitTester; + +class OnUncaughtExceptionCest +{ + /** + * Tests Phalcon\Debug :: onUncaughtException() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugOnUncaughtException(UnitTester $I) + { + $I->wantToTest("Debug - onUncaughtException()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/OnUncaughtLowSeverityCest.php b/tests/unit/Debug/OnUncaughtLowSeverityCest.php new file mode 100644 index 00000000000..2b56d1dc4cd --- /dev/null +++ b/tests/unit/Debug/OnUncaughtLowSeverityCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug; + +use UnitTester; + +class OnUncaughtLowSeverityCest +{ + /** + * Tests Phalcon\Debug :: onUncaughtLowSeverity() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugOnUncaughtLowSeverity(UnitTester $I) + { + $I->wantToTest("Debug - onUncaughtLowSeverity()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/SetShowBackTraceCest.php b/tests/unit/Debug/SetShowBackTraceCest.php new file mode 100644 index 00000000000..4e881ca660a --- /dev/null +++ b/tests/unit/Debug/SetShowBackTraceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug; + +use UnitTester; + +class SetShowBackTraceCest +{ + /** + * Tests Phalcon\Debug :: setShowBackTrace() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugSetShowBackTrace(UnitTester $I) + { + $I->wantToTest("Debug - setShowBackTrace()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/SetShowFileFragmentCest.php b/tests/unit/Debug/SetShowFileFragmentCest.php new file mode 100644 index 00000000000..c395ab06bb7 --- /dev/null +++ b/tests/unit/Debug/SetShowFileFragmentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug; + +use UnitTester; + +class SetShowFileFragmentCest +{ + /** + * Tests Phalcon\Debug :: setShowFileFragment() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugSetShowFileFragment(UnitTester $I) + { + $I->wantToTest("Debug - setShowFileFragment()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/SetShowFilesCest.php b/tests/unit/Debug/SetShowFilesCest.php new file mode 100644 index 00000000000..79952cbd097 --- /dev/null +++ b/tests/unit/Debug/SetShowFilesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug; + +use UnitTester; + +class SetShowFilesCest +{ + /** + * Tests Phalcon\Debug :: setShowFiles() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugSetShowFiles(UnitTester $I) + { + $I->wantToTest("Debug - setShowFiles()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Debug/SetUriCest.php b/tests/unit/Debug/SetUriCest.php new file mode 100644 index 00000000000..51e3bcb2e79 --- /dev/null +++ b/tests/unit/Debug/SetUriCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Debug; + +use UnitTester; + +class SetUriCest +{ + /** + * Tests Phalcon\Debug :: setUri() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function debugSetUri(UnitTester $I) + { + $I->wantToTest("Debug - setUri()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/DebugTest.php b/tests/unit/DebugTest.php deleted file mode 100644 index ce6167ae3c5..00000000000 --- a/tests/unit/DebugTest.php +++ /dev/null @@ -1,52 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class DebugTest extends UnitTest -{ - /** - * Tests the Debug::getVersion - * - * @issue https://github.com/phalcon/cphalcon/issues/12215 - * @author Serghei Iakovlev - * @since 2016-09-25 - */ - public function testShouldGetVersion() - { - $this->specify( - "The getVersion doesn't work as expected", - function () { - $debug = new Debug; - - $target = '"_new"'; - $uri = '"https://docs.phalconphp.com/en/' . Version::getPart(Version::VERSION_MAJOR) . '.0.0/"'; - $version = Version::get(); - - expect($debug->getVersion())->equals( - "
Phalcon Framework {$version}
" - ); - } - ); - } -} diff --git a/tests/unit/Di/AttemptCest.php b/tests/unit/Di/AttemptCest.php new file mode 100644 index 00000000000..fa334a34fce --- /dev/null +++ b/tests/unit/Di/AttemptCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class AttemptCest +{ + /** + * Tests Phalcon\Di :: attempt() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diAttempt(UnitTester $I) + { + $I->wantToTest("Di - attempt()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/ConstructCest.php b/tests/unit/Di/ConstructCest.php new file mode 100644 index 00000000000..74963f117a8 --- /dev/null +++ b/tests/unit/Di/ConstructCest.php @@ -0,0 +1,28 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Di :: __construct() + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testConstruct(UnitTester $I) + { + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/DiCest.php b/tests/unit/Di/DiCest.php new file mode 100644 index 00000000000..e490ff4ae2a --- /dev/null +++ b/tests/unit/Di/DiCest.php @@ -0,0 +1,483 @@ +phDi = new Di(); + } + + /** + * Tests registering a service via string + * + * @author Phalcon Team + * @since 2016-01-29 + */ + public function testSetString(UnitTester $I) + { + $this->phDi->set('request1', 'Phalcon\Http\Request'); + $I->assertEquals(get_class($this->phDi->get('request1')), 'Phalcon\Http\Request'); + } + + /** + * Tests registering a service via anonymous function + * + * @author Phalcon Team + * @since 2016-01-29 + */ + public function testSetAnonymousFunction(UnitTester $I) + { + $this->phDi->set('request2', function () { + return new Request(); + }); + $I->assertEquals(get_class($this->phDi->get('request2')), 'Phalcon\Http\Request'); + } + + /** + * Tests registering a service via array + * + * @author Phalcon Team + * @since 2016-01-29 + */ + public function testSetArray(UnitTester $I) + { + $this->phDi->set('request3', [ + 'className' => 'Phalcon\Http\Request', + ]); + $I->assertEquals(get_class($this->phDi->get('request3')), 'Phalcon\Http\Request'); + } + + /** + * Tests registering a service in the services container via Di::attempt + * + * @author Phalcon Team + * @since 2016-01-29 + */ + public function testAttempt(UnitTester $I) + { + $this->phDi->set('request4', function () { + return new Request(); + }); + + $this->phDi->attempt('request4', function () { + return new \stdClass(); + }); + + $this->phDi->attempt('request5', function () { + return new \stdClass(); + }); + + $I->assertEquals(get_class($this->phDi->get('request4')), 'Phalcon\Http\Request'); + $I->assertEquals(get_class($this->phDi->get('request5')), 'stdClass'); + } + + /** + * Tests check a service in the services container via Di::has + * + * @author Phalcon Team + * @since 2016-01-29 + */ + public function testHas(UnitTester $I) + { + $this->phDi->set('request6', function () { + return new Request(); + }); + + $I->assertTrue($this->phDi->has('request6')); + $I->assertFalse($this->phDi->has('request7')); + } + + /** + * Tests resolving shared service + * + * @author Phalcon Team + * @since 2016-01-29 + */ + public function testGetShared(UnitTester $I) + { + $this->phDi->set('dateObject', function () { + $object = new \stdClass(); + $object->date = microtime(true); + return $object; + }); + + $dateObject = $this->phDi->getShared('dateObject'); + usleep(5000); + $dateObject2 = $this->phDi->getShared('dateObject'); + + $I->assertEquals($dateObject, $dateObject2); + $I->assertEquals($dateObject->date, $dateObject2->date); + } + + /** + * Tests resolving service via magic __get + * + * @author Phalcon Team + * @since 2016-01-29 + */ + public function testMagicGetCall(UnitTester $I) + { + $this->phDi->set('request8', 'Phalcon\Http\Request'); + $I->assertEquals(get_class($this->phDi->getRequest8()), 'Phalcon\Http\Request'); + } + + /** + * Tests registering a service via magic __set + * + * @author Phalcon Team + * @since 2016-01-29 + */ + public function testMagicSetCall(UnitTester $I) + { + $this->phDi->setRequest9('Phalcon\Http\Request'); + $I->assertEquals(get_class($this->phDi->get('request9')), 'Phalcon\Http\Request'); + } + + /** + * Tests registering a service with parameters + * + * @author Phalcon Team + * @since 2016-01-29 + */ + public function testSetParameters(UnitTester $I) + { + $this->phDi->set('someComponent1', function ($v) { + return new \SomeComponent($v); + }); + + $this->phDi->set('someComponent2', 'SomeComponent'); + + $someComponent1 = $this->phDi->get('someComponent1', [100]); + $I->assertEquals($someComponent1->someProperty, 100); + + $someComponent2 = $this->phDi->get('someComponent2', [500]); + $I->assertEquals($someComponent2->someProperty, 500); + } + + /** + * Tests getting services + * + * @author Phalcon Team + * @since 2016-01-29 + */ + public function testGetServices(UnitTester $I) + { + $expectedServices = [ + 'service1' => Service::__set_state([ + '_definition' => 'some-service', + '_shared' => false, + '_sharedInstance' => null, + ]), + 'service2' => Service::__set_state([ + '_definition' => 'some-other-service', + '_shared' => false, + '_sharedInstance' => null, + ]), + ]; + + $this->phDi->set('service1', 'some-service'); + $this->phDi->set('service2', 'some-other-service'); + + $I->assertEquals($this->phDi->getServices(), $expectedServices); + } + + /** + * Tests getting raw services + * + * @author Phalcon Team + * @since 2016-01-29 + */ + public function testGetRawService(UnitTester $I) + { + $this->phDi->set('service1', 'some-service'); + $I->assertEquals($this->phDi->getRaw('service1'), 'some-service'); + } + + /** + * Tests registering a services via array access + * + * @author Phalcon Team + * @since 2016-01-29 + */ + public function testRegisteringViaArrayAccess(UnitTester $I) + { + $this->phDi['simple'] = 'SimpleComponent'; + $I->assertEquals(get_class($this->phDi->get('simple')), 'SimpleComponent'); + } + + /** + * Tests resolving a services via array access + * + * @author Phalcon Team + * @since 2016-01-29 + */ + public function testResolvingViaArrayAccess(UnitTester $I) + { + $this->phDi->set('simple', 'SimpleComponent'); + $I->assertEquals(get_class($this->phDi['simple']), 'SimpleComponent'); + } + + /** + * Tests getting non-existent service + * + * @author Phalcon Team + * @since 2016-01-29 + */ + public function testGettingNonExistentService(UnitTester $I) + { + $I->expectThrowable( + new Exception("Service 'nonExistentService' wasn't found in the dependency injection container"), + function () { + $this->phDi->get('nonExistentService'); + } + ); + } + + /** + * Tests the latest DI created + * + * @author Phalcon Team + * @since 2016-01-29 + */ + public function testGettingDiViaGetDefault(UnitTester $I) + { + $I->assertInstanceOf(Di::class, Di::getDefault()); + $I->assertEquals(Di::getDefault(), $this->phDi); + } + + /** + * Tests resolving a services via array access + * + * @author Phalcon Team + * @since 2016-01-29 + */ + public function testComplexInjection(UnitTester $I) + { + $response = new Response(); + $this->phDi->set('response', $response); + + // Injection of parameters in the constructor + $this->phDi->set( + 'simpleConstructor', + [ + 'className' => 'InjectableComponent', + 'arguments' => [ + [ + 'type' => 'parameter', + 'value' => 'response', + ], + ], + ] + ); + + // Injection of simple setters + $this->phDi->set( + 'simpleSetters', + [ + 'className' => 'InjectableComponent', + 'calls' => [ + [ + 'method' => 'setResponse', + 'arguments' => [ + [ + 'type' => 'parameter', + 'value' => 'response', + ], + ], + ], + ], + ] + ); + + // Injection of properties + $this->phDi->set( + 'simpleProperties', + [ + 'className' => 'InjectableComponent', + 'properties' => [ + [ + 'name' => 'response', + 'value' => [ + 'type' => 'parameter', + 'value' => 'response', + ], + ], + ], + ] + ); + + // Injection of parameters in the constructor resolving the service parameter + $this->phDi->set( + 'complexConstructor', + [ + 'className' => 'InjectableComponent', + 'arguments' => [ + [ + 'type' => 'service', + 'name' => 'response', + ], + ], + ] + ); + + // Injection of simple setters resolving the service parameter + $this->phDi->set( + 'complexSetters', + [ + 'className' => 'InjectableComponent', + 'calls' => [ + [ + 'method' => 'setResponse', + 'arguments' => [ + [ + 'type' => 'service', + 'name' => 'response', + ], + ], + ], + ], + ] + ); + + // Injection of properties resolving the service parameter + $this->phDi->set( + 'complexProperties', + [ + 'className' => 'InjectableComponent', + 'properties' => [ + [ + 'name' => 'response', + 'value' => [ + 'type' => 'service', + 'name' => 'response', + ], + ], + ], + ] + ); + + $component = $this->phDi->get('simpleConstructor'); + $I->assertTrue(is_string($component->getResponse())); + $I->assertEquals($component->getResponse(), 'response'); + + $component = $this->phDi->get('simpleSetters'); + $I->assertTrue(is_string($component->getResponse())); + $I->assertEquals($component->getResponse(), 'response'); + + $component = $this->phDi->get('simpleProperties'); + $I->assertTrue(is_string($component->getResponse())); + $I->assertEquals($component->getResponse(), 'response'); + + $component = $this->phDi->get('complexConstructor'); + $I->assertTrue(is_object($component->getResponse())); + $I->assertEquals($component->getResponse(), $response); + + $component = $this->phDi->get('complexSetters'); + $I->assertTrue(is_object($component->getResponse())); + $I->assertEquals($component->getResponse(), $response); + + $component = $this->phDi->get('complexProperties'); + $I->assertTrue(is_object($component->getResponse())); + $I->assertEquals($component->getResponse(), $response); + } + + /** + * Register services using provider. + * + * @author Caio Almeida + * @since 2017-04-11 + */ + public function testRegistersServiceProvider(UnitTester $I) + { + $this->phDi->register(new \SomeServiceProvider()); + $I->assertEquals($this->phDi['foo'], 'bar'); + + $service = $this->phDi->get('fooAction'); + $I->assertInstanceOf('\SomeComponent', $service); + } + + /** + * Tests loading services from yaml files. + * + * @author Gorka Guridi + * @since 2017-04-12 + */ + public function testYamlLoader(UnitTester $I) + { + $I->checkExtensionIsLoaded('yaml'); + + $this->phDi->loadFromYaml(dataFolder('fixtures/Di/services.yml')); + + $I->assertTrue($this->phDi->has('unit-test')); + $I->assertFalse($this->phDi->getService('unit-test')->isShared()); + $I->assertTrue($this->phDi->has('config')); + $I->assertTrue($this->phDi->getService('config')->isShared()); + $I->assertTrue($this->phDi->has('component')); + $I->assertFalse($this->phDi->getService('component')->isShared()); + $I->assertInstanceOf('Phalcon\Config', $this->phDi->get('component')->someProperty); + } + + /** + * Tests loading services from php files. + * + * @author Gorka Guridi + * @since 2017-04-12 + */ + public function testPhpLoader(UnitTester $I) + { + $this->phDi->loadFromPhp(dataFolder('fixtures/Di/services.php')); + + $I->assertTrue($this->phDi->has('unit-test')); + $I->assertFalse($this->phDi->getService('unit-test')->isShared()); + $I->assertTrue($this->phDi->has('config')); + $I->assertTrue($this->phDi->getService('config')->isShared()); + $I->assertTrue($this->phDi->has('component')); + $I->assertFalse($this->phDi->getService('component')->isShared()); + $I->assertInstanceOf('Phalcon\Config', $this->phDi->get('component')->someProperty); + } +} diff --git a/tests/unit/Di/FactoryDefault/AttemptCest.php b/tests/unit/Di/FactoryDefault/AttemptCest.php new file mode 100644 index 00000000000..079f71e6eca --- /dev/null +++ b/tests/unit/Di/FactoryDefault/AttemptCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class AttemptCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: attempt() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultAttempt(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - attempt()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/ConstructCest.php b/tests/unit/Di/FactoryDefault/ConstructCest.php new file mode 100644 index 00000000000..322fe61b5a0 --- /dev/null +++ b/tests/unit/Di/FactoryDefault/ConstructCest.php @@ -0,0 +1,89 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use Phalcon\Di\FactoryDefault; +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultConstruct(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - __construct()"); + $container = new FactoryDefault(); + $services = $this->getServices(); + + $expected = count($services); + $actual = count($container->getServices()); + $I->assertEquals($expected, $actual); + } + + private function getServices(): array + { + return [ + 'annotations' => 'Phalcon\Annotations\Adapter\Memory', + 'assets' => 'Phalcon\Assets\Manager', + 'cookies' => 'Phalcon\Http\Response\Cookies', + 'crypt' => 'Phalcon\Crypt', + 'dispatcher' => 'Phalcon\Mvc\Dispatcher', + 'escaper' => 'Phalcon\Escaper', + 'eventsManager' => 'Phalcon\Events\Manager', + 'filter' => 'Phalcon\Filter', + 'flash' => 'Phalcon\Flash\Direct', + 'flashSession' => 'Phalcon\Flash\Session', + 'modelsManager' => 'Phalcon\Mvc\Model\Manager', + 'modelsMetadata' => 'Phalcon\Mvc\Model\MetaData\Memory', + 'response' => 'Phalcon\Http\Response', + 'request' => 'Phalcon\Http\Request', + 'router' => 'Phalcon\Mvc\Router', + 'security' => 'Phalcon\Security', + 'session' => 'Phalcon\Session\Adapter\Files', + 'sessionBag' => 'Phalcon\Session\Bag', + 'tag' => 'Phalcon\Tag', + 'transactionManager' => 'Phalcon\Mvc\Model\Transaction\Manager', + 'url' => 'Phalcon\Mvc\Url', + ]; + } + + /** + * Tests Phalcon\Di\FactoryDefault :: __construct() - Check services + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactoryDefaultConstructServices(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - __construct() - Check services"); + $container = new FactoryDefault(); + $services = $this->getServices(); + + foreach ($services as $service => $class) { + $params = null; + if ('sessionBag' === $service) { + $params = ['someName']; + } + $expected = get_class($container->get($service, $params)); + $actual = $class; + $I->assertEquals($expected, $actual); + } + } +} diff --git a/tests/unit/Di/FactoryDefault/GetCest.php b/tests/unit/Di/FactoryDefault/GetCest.php new file mode 100644 index 00000000000..347884973d7 --- /dev/null +++ b/tests/unit/Di/FactoryDefault/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class GetCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultGet(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/GetDefaultCest.php b/tests/unit/Di/FactoryDefault/GetDefaultCest.php new file mode 100644 index 00000000000..07ca279b758 --- /dev/null +++ b/tests/unit/Di/FactoryDefault/GetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class GetDefaultCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: getDefault() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultGetDefault(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - getDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/GetInternalEventsManagerCest.php b/tests/unit/Di/FactoryDefault/GetInternalEventsManagerCest.php new file mode 100644 index 00000000000..232a62fe68c --- /dev/null +++ b/tests/unit/Di/FactoryDefault/GetInternalEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class GetInternalEventsManagerCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: getInternalEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultGetInternalEventsManager(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - getInternalEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/GetRawCest.php b/tests/unit/Di/FactoryDefault/GetRawCest.php new file mode 100644 index 00000000000..a0ec9a6ba7f --- /dev/null +++ b/tests/unit/Di/FactoryDefault/GetRawCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class GetRawCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: getRaw() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultGetRaw(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - getRaw()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/GetServiceCest.php b/tests/unit/Di/FactoryDefault/GetServiceCest.php new file mode 100644 index 00000000000..683915f2b6f --- /dev/null +++ b/tests/unit/Di/FactoryDefault/GetServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class GetServiceCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: getService() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultGetService(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - getService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/GetServicesCest.php b/tests/unit/Di/FactoryDefault/GetServicesCest.php new file mode 100644 index 00000000000..26acbf74016 --- /dev/null +++ b/tests/unit/Di/FactoryDefault/GetServicesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class GetServicesCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: getServices() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultGetServices(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - getServices()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/GetSharedCest.php b/tests/unit/Di/FactoryDefault/GetSharedCest.php new file mode 100644 index 00000000000..267a3730b2a --- /dev/null +++ b/tests/unit/Di/FactoryDefault/GetSharedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class GetSharedCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: getShared() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultGetShared(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - getShared()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/HasCest.php b/tests/unit/Di/FactoryDefault/HasCest.php new file mode 100644 index 00000000000..a61716256da --- /dev/null +++ b/tests/unit/Di/FactoryDefault/HasCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class HasCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: has() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultHas(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - has()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/LoadFromPhpCest.php b/tests/unit/Di/FactoryDefault/LoadFromPhpCest.php new file mode 100644 index 00000000000..225a5e87afe --- /dev/null +++ b/tests/unit/Di/FactoryDefault/LoadFromPhpCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class LoadFromPhpCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: loadFromPhp() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultLoadFromPhp(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - loadFromPhp()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/LoadFromYamlCest.php b/tests/unit/Di/FactoryDefault/LoadFromYamlCest.php new file mode 100644 index 00000000000..790743510ba --- /dev/null +++ b/tests/unit/Di/FactoryDefault/LoadFromYamlCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class LoadFromYamlCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: loadFromYaml() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultLoadFromYaml(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - loadFromYaml()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/OffsetExistsCest.php b/tests/unit/Di/FactoryDefault/OffsetExistsCest.php new file mode 100644 index 00000000000..9c4228a25af --- /dev/null +++ b/tests/unit/Di/FactoryDefault/OffsetExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class OffsetExistsCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: offsetExists() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultOffsetExists(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - offsetExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/OffsetGetCest.php b/tests/unit/Di/FactoryDefault/OffsetGetCest.php new file mode 100644 index 00000000000..36daa91b1c2 --- /dev/null +++ b/tests/unit/Di/FactoryDefault/OffsetGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class OffsetGetCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: offsetGet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultOffsetGet(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - offsetGet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/OffsetSetCest.php b/tests/unit/Di/FactoryDefault/OffsetSetCest.php new file mode 100644 index 00000000000..94c8348126f --- /dev/null +++ b/tests/unit/Di/FactoryDefault/OffsetSetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class OffsetSetCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: offsetSet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultOffsetSet(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - offsetSet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/OffsetUnsetCest.php b/tests/unit/Di/FactoryDefault/OffsetUnsetCest.php new file mode 100644 index 00000000000..b20435da76d --- /dev/null +++ b/tests/unit/Di/FactoryDefault/OffsetUnsetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class OffsetUnsetCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: offsetUnset() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultOffsetUnset(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - offsetUnset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/RegisterCest.php b/tests/unit/Di/FactoryDefault/RegisterCest.php new file mode 100644 index 00000000000..7e7ca0c3f65 --- /dev/null +++ b/tests/unit/Di/FactoryDefault/RegisterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class RegisterCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: register() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultRegister(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - register()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/RemoveCest.php b/tests/unit/Di/FactoryDefault/RemoveCest.php new file mode 100644 index 00000000000..285c2f67cbb --- /dev/null +++ b/tests/unit/Di/FactoryDefault/RemoveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class RemoveCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: remove() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultRemove(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - remove()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/ResetCest.php b/tests/unit/Di/FactoryDefault/ResetCest.php new file mode 100644 index 00000000000..376ca0de38e --- /dev/null +++ b/tests/unit/Di/FactoryDefault/ResetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class ResetCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: reset() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultReset(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - reset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/SetCest.php b/tests/unit/Di/FactoryDefault/SetCest.php new file mode 100644 index 00000000000..884c0126e63 --- /dev/null +++ b/tests/unit/Di/FactoryDefault/SetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class SetCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: set() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultSet(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - set()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/SetDefaultCest.php b/tests/unit/Di/FactoryDefault/SetDefaultCest.php new file mode 100644 index 00000000000..49f686a2921 --- /dev/null +++ b/tests/unit/Di/FactoryDefault/SetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class SetDefaultCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: setDefault() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultSetDefault(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - setDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/SetInternalEventsManagerCest.php b/tests/unit/Di/FactoryDefault/SetInternalEventsManagerCest.php new file mode 100644 index 00000000000..0f68a176886 --- /dev/null +++ b/tests/unit/Di/FactoryDefault/SetInternalEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class SetInternalEventsManagerCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: setInternalEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultSetInternalEventsManager(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - setInternalEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/SetRawCest.php b/tests/unit/Di/FactoryDefault/SetRawCest.php new file mode 100644 index 00000000000..1bd6ac8513e --- /dev/null +++ b/tests/unit/Di/FactoryDefault/SetRawCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class SetRawCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: setRaw() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultSetRaw(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - setRaw()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/SetSharedCest.php b/tests/unit/Di/FactoryDefault/SetSharedCest.php new file mode 100644 index 00000000000..de58253ef1d --- /dev/null +++ b/tests/unit/Di/FactoryDefault/SetSharedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class SetSharedCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: setShared() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultSetShared(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - setShared()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/UnderscoreCallCest.php b/tests/unit/Di/FactoryDefault/UnderscoreCallCest.php new file mode 100644 index 00000000000..ff8d055174d --- /dev/null +++ b/tests/unit/Di/FactoryDefault/UnderscoreCallCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class UnderscoreCallCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: __call() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultUnderscoreCall(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - __call()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefault/WasFreshInstanceCest.php b/tests/unit/Di/FactoryDefault/WasFreshInstanceCest.php new file mode 100644 index 00000000000..816d912a716 --- /dev/null +++ b/tests/unit/Di/FactoryDefault/WasFreshInstanceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\FactoryDefault; + +use UnitTester; + +class WasFreshInstanceCest +{ + /** + * Tests Phalcon\Di\FactoryDefault :: wasFreshInstance() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diFactorydefaultWasFreshInstance(UnitTester $I) + { + $I->wantToTest("Di\FactoryDefault - wasFreshInstance()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/FactoryDefaultTest.php b/tests/unit/Di/FactoryDefaultTest.php deleted file mode 100644 index ff14a0c7fee..00000000000 --- a/tests/unit/Di/FactoryDefaultTest.php +++ /dev/null @@ -1,72 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Di - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FactoryDefaultTest extends UnitTest -{ - /** - * Tests FactoryDefault - * - * @author Serghei Iakovlev - * @since 2016-01-29 - */ - public function testFactoryDefault() - { - $this->specify( - "FactoryDefault does not contains the expected services", - function ($name, $class) { - $params = null; - $factoryDefault = new FactoryDefault(); - - if ('sessionBag' === $name) { - $params = ['someName']; - } - - expect(get_class($factoryDefault->get($name, $params)))->equals($class); - }, - ['examples' => [ - ['router', 'Phalcon\Mvc\Router'], - ['dispatcher', 'Phalcon\Mvc\Dispatcher'], - ['url', 'Phalcon\Mvc\Url'], - ['modelsManager', 'Phalcon\Mvc\Model\Manager'], - ['modelsMetadata', 'Phalcon\Mvc\Model\MetaData\Memory'], - ['response', 'Phalcon\Http\Response'], - ['cookies', 'Phalcon\Http\Response\Cookies'], - ['request', 'Phalcon\Http\Request'], - ['filter', 'Phalcon\Filter'], - ['escaper', 'Phalcon\Escaper'], - ['security', 'Phalcon\Security'], - ['crypt', 'Phalcon\Crypt'], - ['annotations', 'Phalcon\Annotations\Adapter\Memory'], - ['flash', 'Phalcon\Flash\Direct'], - ['flashSession', 'Phalcon\Flash\Session'], - ['tag', 'Phalcon\Tag'], - ['session', 'Phalcon\Session\Adapter\Files'], - ['sessionBag', 'Phalcon\Session\Bag'], - ['eventsManager', 'Phalcon\Events\Manager'], - ['transactionManager', 'Phalcon\Mvc\Model\Transaction\Manager'], - ['assets', 'Phalcon\Assets\Manager'], - ]] - ); - } -} diff --git a/tests/unit/Di/GetCest.php b/tests/unit/Di/GetCest.php new file mode 100644 index 00000000000..d7b4b49a4c4 --- /dev/null +++ b/tests/unit/Di/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class GetCest +{ + /** + * Tests Phalcon\Di :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diGet(UnitTester $I) + { + $I->wantToTest("Di - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/GetDefaultCest.php b/tests/unit/Di/GetDefaultCest.php new file mode 100644 index 00000000000..b567e1046d7 --- /dev/null +++ b/tests/unit/Di/GetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class GetDefaultCest +{ + /** + * Tests Phalcon\Di :: getDefault() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diGetDefault(UnitTester $I) + { + $I->wantToTest("Di - getDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/GetInternalEventsManagerCest.php b/tests/unit/Di/GetInternalEventsManagerCest.php new file mode 100644 index 00000000000..2dac03f256d --- /dev/null +++ b/tests/unit/Di/GetInternalEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class GetInternalEventsManagerCest +{ + /** + * Tests Phalcon\Di :: getInternalEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diGetInternalEventsManager(UnitTester $I) + { + $I->wantToTest("Di - getInternalEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/GetRawCest.php b/tests/unit/Di/GetRawCest.php new file mode 100644 index 00000000000..b28772c05d0 --- /dev/null +++ b/tests/unit/Di/GetRawCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class GetRawCest +{ + /** + * Tests Phalcon\Di :: getRaw() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diGetRaw(UnitTester $I) + { + $I->wantToTest("Di - getRaw()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/GetServiceCest.php b/tests/unit/Di/GetServiceCest.php new file mode 100644 index 00000000000..8a9350d6927 --- /dev/null +++ b/tests/unit/Di/GetServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class GetServiceCest +{ + /** + * Tests Phalcon\Di :: getService() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diGetService(UnitTester $I) + { + $I->wantToTest("Di - getService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/GetServicesCest.php b/tests/unit/Di/GetServicesCest.php new file mode 100644 index 00000000000..a366cbfedb0 --- /dev/null +++ b/tests/unit/Di/GetServicesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class GetServicesCest +{ + /** + * Tests Phalcon\Di :: getServices() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diGetServices(UnitTester $I) + { + $I->wantToTest("Di - getServices()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/GetSharedCest.php b/tests/unit/Di/GetSharedCest.php new file mode 100644 index 00000000000..8e5f74c435d --- /dev/null +++ b/tests/unit/Di/GetSharedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class GetSharedCest +{ + /** + * Tests Phalcon\Di :: getShared() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diGetShared(UnitTester $I) + { + $I->wantToTest("Di - getShared()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/HasCest.php b/tests/unit/Di/HasCest.php new file mode 100644 index 00000000000..48723b08754 --- /dev/null +++ b/tests/unit/Di/HasCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class HasCest +{ + /** + * Tests Phalcon\Di :: has() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diHas(UnitTester $I) + { + $I->wantToTest("Di - has()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/Injectable/GetDICest.php b/tests/unit/Di/Injectable/GetDICest.php new file mode 100644 index 00000000000..e1dc83f2e02 --- /dev/null +++ b/tests/unit/Di/Injectable/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\Injectable; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Di\Injectable :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diInjectableGetDI(UnitTester $I) + { + $I->wantToTest("Di\Injectable - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/Injectable/GetEventsManagerCest.php b/tests/unit/Di/Injectable/GetEventsManagerCest.php new file mode 100644 index 00000000000..bdb5ac4ae5b --- /dev/null +++ b/tests/unit/Di/Injectable/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\Injectable; + +use UnitTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Di\Injectable :: getEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diInjectableGetEventsManager(UnitTester $I) + { + $I->wantToTest("Di\Injectable - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/Injectable/SetDICest.php b/tests/unit/Di/Injectable/SetDICest.php new file mode 100644 index 00000000000..5ea01e27fdb --- /dev/null +++ b/tests/unit/Di/Injectable/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\Injectable; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Di\Injectable :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diInjectableSetDI(UnitTester $I) + { + $I->wantToTest("Di\Injectable - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/Injectable/SetEventsManagerCest.php b/tests/unit/Di/Injectable/SetEventsManagerCest.php new file mode 100644 index 00000000000..163aa0c8080 --- /dev/null +++ b/tests/unit/Di/Injectable/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\Injectable; + +use UnitTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Di\Injectable :: setEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diInjectableSetEventsManager(UnitTester $I) + { + $I->wantToTest("Di\Injectable - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/Injectable/UnderscoreGetCest.php b/tests/unit/Di/Injectable/UnderscoreGetCest.php new file mode 100644 index 00000000000..3c20f9c2e40 --- /dev/null +++ b/tests/unit/Di/Injectable/UnderscoreGetCest.php @@ -0,0 +1,28 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\Injectable; + +use UnitTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Di\Injectable :: __get() + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testUnderscoreGet(UnitTester $I) + { + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/LoadFromPhpCest.php b/tests/unit/Di/LoadFromPhpCest.php new file mode 100644 index 00000000000..54a8010aaa7 --- /dev/null +++ b/tests/unit/Di/LoadFromPhpCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class LoadFromPhpCest +{ + /** + * Tests Phalcon\Di :: loadFromPhp() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diLoadFromPhp(UnitTester $I) + { + $I->wantToTest("Di - loadFromPhp()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/LoadFromYamlCest.php b/tests/unit/Di/LoadFromYamlCest.php new file mode 100644 index 00000000000..0d6e62b5e2a --- /dev/null +++ b/tests/unit/Di/LoadFromYamlCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class LoadFromYamlCest +{ + /** + * Tests Phalcon\Di :: loadFromYaml() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diLoadFromYaml(UnitTester $I) + { + $I->wantToTest("Di - loadFromYaml()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/OffsetExistsCest.php b/tests/unit/Di/OffsetExistsCest.php new file mode 100644 index 00000000000..b817ca8ff7f --- /dev/null +++ b/tests/unit/Di/OffsetExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class OffsetExistsCest +{ + /** + * Tests Phalcon\Di :: offsetExists() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diOffsetExists(UnitTester $I) + { + $I->wantToTest("Di - offsetExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/OffsetGetCest.php b/tests/unit/Di/OffsetGetCest.php new file mode 100644 index 00000000000..b022584674e --- /dev/null +++ b/tests/unit/Di/OffsetGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class OffsetGetCest +{ + /** + * Tests Phalcon\Di :: offsetGet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diOffsetGet(UnitTester $I) + { + $I->wantToTest("Di - offsetGet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/OffsetSetCest.php b/tests/unit/Di/OffsetSetCest.php new file mode 100644 index 00000000000..cb6db76098a --- /dev/null +++ b/tests/unit/Di/OffsetSetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class OffsetSetCest +{ + /** + * Tests Phalcon\Di :: offsetSet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diOffsetSet(UnitTester $I) + { + $I->wantToTest("Di - offsetSet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/OffsetUnsetCest.php b/tests/unit/Di/OffsetUnsetCest.php new file mode 100644 index 00000000000..7ab4aeeec36 --- /dev/null +++ b/tests/unit/Di/OffsetUnsetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class OffsetUnsetCest +{ + /** + * Tests Phalcon\Di :: offsetUnset() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diOffsetUnset(UnitTester $I) + { + $I->wantToTest("Di - offsetUnset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/RegisterCest.php b/tests/unit/Di/RegisterCest.php new file mode 100644 index 00000000000..a087b178454 --- /dev/null +++ b/tests/unit/Di/RegisterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class RegisterCest +{ + /** + * Tests Phalcon\Di :: register() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diRegister(UnitTester $I) + { + $I->wantToTest("Di - register()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/RemoveCest.php b/tests/unit/Di/RemoveCest.php new file mode 100644 index 00000000000..e1e3c077464 --- /dev/null +++ b/tests/unit/Di/RemoveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class RemoveCest +{ + /** + * Tests Phalcon\Di :: remove() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diRemove(UnitTester $I) + { + $I->wantToTest("Di - remove()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/ResetCest.php b/tests/unit/Di/ResetCest.php new file mode 100644 index 00000000000..e5b8fd084b3 --- /dev/null +++ b/tests/unit/Di/ResetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class ResetCest +{ + /** + * Tests Phalcon\Di :: reset() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diReset(UnitTester $I) + { + $I->wantToTest("Di - reset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/Service/Builder/BuildCest.php b/tests/unit/Di/Service/Builder/BuildCest.php new file mode 100644 index 00000000000..e3ff7f284bf --- /dev/null +++ b/tests/unit/Di/Service/Builder/BuildCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\Service\Builder; + +use UnitTester; + +class BuildCest +{ + /** + * Tests Phalcon\Di\Service\Builder :: build() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diServiceBuilderBuild(UnitTester $I) + { + $I->wantToTest("Di\Service\Builder - build()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/Service/ConstructCest.php b/tests/unit/Di/Service/ConstructCest.php new file mode 100644 index 00000000000..feeeb0b94b7 --- /dev/null +++ b/tests/unit/Di/Service/ConstructCest.php @@ -0,0 +1,28 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\Service; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Di\Service :: __construct() + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testConstruct(UnitTester $I) + { + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/Service/GetDefinitionCest.php b/tests/unit/Di/Service/GetDefinitionCest.php new file mode 100644 index 00000000000..87fc3067a4d --- /dev/null +++ b/tests/unit/Di/Service/GetDefinitionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\Service; + +use UnitTester; + +class GetDefinitionCest +{ + /** + * Tests Phalcon\Di\Service :: getDefinition() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diServiceGetDefinition(UnitTester $I) + { + $I->wantToTest("Di\Service - getDefinition()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/Service/GetNameCest.php b/tests/unit/Di/Service/GetNameCest.php new file mode 100644 index 00000000000..ec417551972 --- /dev/null +++ b/tests/unit/Di/Service/GetNameCest.php @@ -0,0 +1,28 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\Service; + +use UnitTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Di\Service :: getName() + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testGetName(UnitTester $I) + { + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/Service/GetParameterCest.php b/tests/unit/Di/Service/GetParameterCest.php new file mode 100644 index 00000000000..a4044d2ddf1 --- /dev/null +++ b/tests/unit/Di/Service/GetParameterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\Service; + +use UnitTester; + +class GetParameterCest +{ + /** + * Tests Phalcon\Di\Service :: getParameter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diServiceGetParameter(UnitTester $I) + { + $I->wantToTest("Di\Service - getParameter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/Service/IsResolvedCest.php b/tests/unit/Di/Service/IsResolvedCest.php new file mode 100644 index 00000000000..38b8391fb2c --- /dev/null +++ b/tests/unit/Di/Service/IsResolvedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\Service; + +use UnitTester; + +class IsResolvedCest +{ + /** + * Tests Phalcon\Di\Service :: isResolved() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diServiceIsResolved(UnitTester $I) + { + $I->wantToTest("Di\Service - isResolved()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/Service/IsSharedCest.php b/tests/unit/Di/Service/IsSharedCest.php new file mode 100644 index 00000000000..50aa99add19 --- /dev/null +++ b/tests/unit/Di/Service/IsSharedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\Service; + +use UnitTester; + +class IsSharedCest +{ + /** + * Tests Phalcon\Di\Service :: isShared() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diServiceIsShared(UnitTester $I) + { + $I->wantToTest("Di\Service - isShared()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/Service/ResolveCest.php b/tests/unit/Di/Service/ResolveCest.php new file mode 100644 index 00000000000..e0081edc96b --- /dev/null +++ b/tests/unit/Di/Service/ResolveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\Service; + +use UnitTester; + +class ResolveCest +{ + /** + * Tests Phalcon\Di\Service :: resolve() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diServiceResolve(UnitTester $I) + { + $I->wantToTest("Di\Service - resolve()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/Service/SetDefinitionCest.php b/tests/unit/Di/Service/SetDefinitionCest.php new file mode 100644 index 00000000000..76fbc15f65a --- /dev/null +++ b/tests/unit/Di/Service/SetDefinitionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\Service; + +use UnitTester; + +class SetDefinitionCest +{ + /** + * Tests Phalcon\Di\Service :: setDefinition() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diServiceSetDefinition(UnitTester $I) + { + $I->wantToTest("Di\Service - setDefinition()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/Service/SetParameterCest.php b/tests/unit/Di/Service/SetParameterCest.php new file mode 100644 index 00000000000..af1b568e50d --- /dev/null +++ b/tests/unit/Di/Service/SetParameterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\Service; + +use UnitTester; + +class SetParameterCest +{ + /** + * Tests Phalcon\Di\Service :: setParameter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diServiceSetParameter(UnitTester $I) + { + $I->wantToTest("Di\Service - setParameter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/Service/SetSharedCest.php b/tests/unit/Di/Service/SetSharedCest.php new file mode 100644 index 00000000000..ef509a45edc --- /dev/null +++ b/tests/unit/Di/Service/SetSharedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\Service; + +use UnitTester; + +class SetSharedCest +{ + /** + * Tests Phalcon\Di\Service :: setShared() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diServiceSetShared(UnitTester $I) + { + $I->wantToTest("Di\Service - setShared()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/Service/SetSharedInstanceCest.php b/tests/unit/Di/Service/SetSharedInstanceCest.php new file mode 100644 index 00000000000..1699b158a80 --- /dev/null +++ b/tests/unit/Di/Service/SetSharedInstanceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\Service; + +use UnitTester; + +class SetSharedInstanceCest +{ + /** + * Tests Phalcon\Di\Service :: setSharedInstance() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diServiceSetSharedInstance(UnitTester $I) + { + $I->wantToTest("Di\Service - setSharedInstance()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/Service/SetStateCest.php b/tests/unit/Di/Service/SetStateCest.php new file mode 100644 index 00000000000..f3a23a81c55 --- /dev/null +++ b/tests/unit/Di/Service/SetStateCest.php @@ -0,0 +1,28 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di\Service; + +use UnitTester; + +class SetStateCest +{ + /** + * Tests Phalcon\Di\Service :: __set_state() + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testSetState(UnitTester $I) + { + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/ServiceCest.php b/tests/unit/Di/ServiceCest.php new file mode 100644 index 00000000000..5e9f902523c --- /dev/null +++ b/tests/unit/Di/ServiceCest.php @@ -0,0 +1,48 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use Phalcon\Di; +use Phalcon\Filter; +use UnitTester; + +class ServiceCest +{ + /** + * Tests resolving service + * + * @author Phalcon Team + * @since 2016-01-29 + */ + public function testResolvingService(UnitTester $I) + { + $di = new Di(); + $di->set('resolved', function () { + return new Filter(); + }); + $di->set('notResolved', function () { + return new Filter(); + }); + + $actual = $di->getService('resolved')->isResolved(); + $I->assertFalse($actual); + $actual = $di->getService('notResolved')->isResolved(); + $I->assertFalse($actual); + + $di->get('resolved'); + + $actual = $di->getService('resolved')->isResolved(); + $I->assertTrue($actual); + $actual = $di->getService('notResolved')->isResolved(); + $I->assertFalse($actual); + } +} diff --git a/tests/unit/Di/ServiceTest.php b/tests/unit/Di/ServiceTest.php deleted file mode 100644 index 790e19bcf69..00000000000 --- a/tests/unit/Di/ServiceTest.php +++ /dev/null @@ -1,66 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Di - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ServiceTest extends UnitTest -{ - /** - * executed before each test - */ - protected function _before() - { - parent::_before(); - - require_once PATH_DATA . 'di/SomeService.php'; - } - - /** - * Tests resolving service - * - * @author Serghei Iakovlev - * @since 2016-01-29 - */ - public function testResolvingService() - { - $this->specify( - "Di does not resolves service correctly", - function () { - $di = new Di(); - $di->set('resolved', function () { - return new \SomeService(); - }); - $di->set('notResolved', function () { - return new \SomeService(); - }); - - expect($di->getService('resolved')->isResolved())->false(); - expect($di->getService('notResolved')->isResolved())->false(); - - $di->get('resolved'); - - expect($di->getService('resolved')->isResolved())->true(); - expect($di->getService('notResolved')->isResolved())->false(); - } - ); - } -} diff --git a/tests/unit/Di/SetCest.php b/tests/unit/Di/SetCest.php new file mode 100644 index 00000000000..bd6d4ca08b4 --- /dev/null +++ b/tests/unit/Di/SetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class SetCest +{ + /** + * Tests Phalcon\Di :: set() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diSet(UnitTester $I) + { + $I->wantToTest("Di - set()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/SetDefaultCest.php b/tests/unit/Di/SetDefaultCest.php new file mode 100644 index 00000000000..83b01af43df --- /dev/null +++ b/tests/unit/Di/SetDefaultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class SetDefaultCest +{ + /** + * Tests Phalcon\Di :: setDefault() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diSetDefault(UnitTester $I) + { + $I->wantToTest("Di - setDefault()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/SetInternalEventsManagerCest.php b/tests/unit/Di/SetInternalEventsManagerCest.php new file mode 100644 index 00000000000..199cc5fc34e --- /dev/null +++ b/tests/unit/Di/SetInternalEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class SetInternalEventsManagerCest +{ + /** + * Tests Phalcon\Di :: setInternalEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diSetInternalEventsManager(UnitTester $I) + { + $I->wantToTest("Di - setInternalEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/SetRawCest.php b/tests/unit/Di/SetRawCest.php new file mode 100644 index 00000000000..880ba178f94 --- /dev/null +++ b/tests/unit/Di/SetRawCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class SetRawCest +{ + /** + * Tests Phalcon\Di :: setRaw() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diSetRaw(UnitTester $I) + { + $I->wantToTest("Di - setRaw()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/SetSharedCest.php b/tests/unit/Di/SetSharedCest.php new file mode 100644 index 00000000000..0a499586a5e --- /dev/null +++ b/tests/unit/Di/SetSharedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class SetSharedCest +{ + /** + * Tests Phalcon\Di :: setShared() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diSetShared(UnitTester $I) + { + $I->wantToTest("Di - setShared()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/UnderscoreCallCest.php b/tests/unit/Di/UnderscoreCallCest.php new file mode 100644 index 00000000000..5a229ec4c45 --- /dev/null +++ b/tests/unit/Di/UnderscoreCallCest.php @@ -0,0 +1,28 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class UnderscoreCallCest +{ + /** + * Tests Phalcon\Di :: __call() + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testUnderscoreCall(UnitTester $I) + { + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Di/WasFreshInstanceCest.php b/tests/unit/Di/WasFreshInstanceCest.php new file mode 100644 index 00000000000..5d63c95c515 --- /dev/null +++ b/tests/unit/Di/WasFreshInstanceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Di; + +use UnitTester; + +class WasFreshInstanceCest +{ + /** + * Tests Phalcon\Di :: wasFreshInstance() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function diWasFreshInstance(UnitTester $I) + { + $I->wantToTest("Di - wasFreshInstance()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/DiTest.php b/tests/unit/DiTest.php deleted file mode 100644 index 1af3e23dbae..00000000000 --- a/tests/unit/DiTest.php +++ /dev/null @@ -1,578 +0,0 @@ -phDi = new Di(); - } - - /** - * Tests registering a service via string - * - * @author Serghei Iakovlev - * @since 2016-01-29 - */ - public function testSetString() - { - $this->specify( - "Registering a service via string does now work correctly", - function () { - $this->phDi->set('request1', 'Phalcon\Http\Request'); - expect(get_class($this->phDi->get('request1')))->equals('Phalcon\Http\Request'); - } - ); - } - - /** - * Tests registering a service via anonymous function - * - * @author Serghei Iakovlev - * @since 2016-01-29 - */ - public function testSetAnonymousFunction() - { - $this->specify( - "Registering a service via anonymous function does now work correctly", - function () { - $this->phDi->set('request2', function () { - return new Request(); - }); - expect(get_class($this->phDi->get('request2')))->equals('Phalcon\Http\Request'); - } - ); - } - - /** - * Tests registering a service via array - * - * @author Serghei Iakovlev - * @since 2016-01-29 - */ - public function testSetArray() - { - $this->specify( - "Registering a service via array does now work correctly", - function () { - $this->phDi->set('request3', [ - 'className' => 'Phalcon\Http\Request' - ]); - expect(get_class($this->phDi->get('request3')))->equals('Phalcon\Http\Request'); - } - ); - } - - /** - * Tests registering a service in the services container via Di::attempt - * - * @author Serghei Iakovlev - * @since 2016-01-29 - */ - public function testAttempt() - { - $this->specify( - "Registering a service in the services container via Di::attempt does now work correctly", - function () { - $this->phDi->set('request4', function () { - return new Request(); - }); - - $this->phDi->attempt('request4', function () { - return new \stdClass(); - }); - - $this->phDi->attempt('request5', function () { - return new \stdClass(); - }); - - expect(get_class($this->phDi->get('request4')))->equals('Phalcon\Http\Request'); - expect(get_class($this->phDi->get('request5')))->equals('stdClass'); - } - ); - } - - /** - * Tests check a service in the services container via Di::has - * - * @author Serghei Iakovlev - * @since 2016-01-29 - */ - public function testHas() - { - $this->specify( - "Check a service in the services container via Di::attempt does now work correctly", - function () { - $this->phDi->set('request6', function () { - return new Request(); - }); - - expect($this->phDi->has('request6'))->true(); - expect($this->phDi->has('request7'))->false(); - } - ); - } - - /** - * Tests resolving shared service - * - * @author Serghei Iakovlev - * @since 2016-01-29 - */ - public function testGetShared() - { - $this->specify( - "Resolving shared service does now work correctly", - function () { - $this->phDi->set('dateObject', function () { - $object = new \stdClass(); - $object->date = microtime(true); - return $object; - }); - - $dateObject = $this->phDi->getShared('dateObject'); - usleep(5000); - $dateObject2 = $this->phDi->getShared('dateObject'); - - expect($dateObject)->equals($dateObject2); - expect($dateObject->date)->equals($dateObject2->date); - } - ); - } - - /** - * Tests resolving service via magic __get - * - * @author Serghei Iakovlev - * @since 2016-01-29 - */ - public function testMagicGetCall() - { - $this->specify( - "Resolving service via magic __get does now work correctly", - function () { - $this->phDi->set('request8', 'Phalcon\Http\Request'); - expect(get_class($this->phDi->getRequest8()))->equals('Phalcon\Http\Request'); - } - ); - } - - /** - * Tests registering a service via magic __set - * - * @author Serghei Iakovlev - * @since 2016-01-29 - */ - public function testMagicSetCall() - { - $this->specify( - "Registering a service via magic __set does now work correctly", - function () { - $this->phDi->setRequest9('Phalcon\Http\Request'); - expect(get_class($this->phDi->get('request9')))->equals('Phalcon\Http\Request'); - } - ); - } - - /** - * Tests registering a service with parameters - * - * @author Serghei Iakovlev - * @since 2016-01-29 - */ - public function testSetParameters() - { - $this->specify( - "Registering a service with parameters does now work correctly", - function () { - $this->phDi->set('someComponent1', function ($v) { - return new \SomeComponent($v); - }); - - $this->phDi->set('someComponent2', 'SomeComponent'); - - $someComponent1 = $this->phDi->get('someComponent1', [100]); - expect($someComponent1->someProperty)->equals(100); - - $someComponent2 = $this->phDi->get('someComponent2', [500]); - expect($someComponent2->someProperty)->equals(500); - } - ); - } - - /** - * Tests getting services - * - * @author Serghei Iakovlev - * @since 2016-01-29 - */ - public function testGetServices() - { - $this->specify( - "Getting services does now work correctly", - function () { - $expectedServices = [ - 'service1' => Service::__set_state([ - '_definition' => 'some-service', - '_shared' => false, - '_sharedInstance' => null, - ]), - 'service2' => Service::__set_state([ - '_definition' => 'some-other-service', - '_shared' => false, - '_sharedInstance' => null, - ]) - ]; - - $this->phDi->set('service1', 'some-service'); - $this->phDi->set('service2', 'some-other-service'); - - expect($this->phDi->getServices())->equals($expectedServices); - } - ); - } - - /** - * Tests getting raw services - * - * @author Serghei Iakovlev - * @since 2016-01-29 - */ - public function testGetRawService() - { - $this->specify( - "Getting raw services does now work correctly", - function () { - $this->phDi->set('service1', 'some-service'); - expect($this->phDi->getRaw('service1'))->equals('some-service'); - } - ); - } - - /** - * Tests registering a services via array access - * - * @author Serghei Iakovlev - * @since 2016-01-29 - */ - public function testRegisteringViaArrayAccess() - { - $this->specify( - "Registering a services via array access does now work correctly", - function () { - $this->phDi['simple'] = 'SimpleComponent'; - expect(get_class($this->phDi->get('simple')))->equals('SimpleComponent'); - } - ); - } - - /** - * Tests resolving a services via array access - * - * @author Serghei Iakovlev - * @since 2016-01-29 - */ - public function testResolvingViaArrayAccess() - { - $this->specify( - "Resolving a services via array access does now work correctly", - function () { - $this->phDi->set('simple', 'SimpleComponent'); - expect(get_class($this->phDi['simple']))->equals('SimpleComponent'); - } - ); - } - - /** - * Tests getting non-existent service - * - * @author Serghei Iakovlev - * @since 2016-01-29 - * - * @expectedException \Phalcon\Di\Exception - * @expectedException Service 'nonExistentService' wasn't found in the dependency injection container - */ - public function testGettingNonExistentService() - { - $this->specify( - "Getting non-existent service does not throws exception with expected message", - function () { - $this->phDi->get('nonExistentService'); - } - ); - } - - /** - * Tests the latest DI created - * - * @author Serghei Iakovlev - * @since 2016-01-29 - */ - public function testGettingDiViaGetDefault() - { - $this->specify( - "Di::getDefault does not return the latest DI created", - function () { - expect(Di::getDefault())->isInstanceOf('Phalcon\Di'); - expect(Di::getDefault())->equals($this->phDi); - } - ); - } - - /** - * Tests resolving a services via array access - * - * @author Serghei Iakovlev - * @since 2016-01-29 - */ - public function testComplexInjection() - { - $this->specify( - "Resolving a services via array access does now work correctly", - function () { - $response = new Response(); - $this->phDi->set('response', $response); - - // Injection of parameters in the constructor - $this->phDi->set( - 'simpleConstructor', - [ - 'className' => 'InjectableComponent', - 'arguments' => [ - [ - 'type' => 'parameter', - 'value' => 'response' - ], - ] - ] - ); - - // Injection of simple setters - $this->phDi->set( - 'simpleSetters', - [ - 'className' => 'InjectableComponent', - 'calls' => [ - [ - 'method' => 'setResponse', - 'arguments' => [ - [ - 'type' => 'parameter', - 'value' => 'response' - ], - ] - ], - ] - ] - ); - - // Injection of properties - $this->phDi->set( - 'simpleProperties', - [ - 'className' => 'InjectableComponent', - 'properties' => [ - [ - 'name' => 'response', - 'value' => [ - 'type' => 'parameter', - 'value' => 'response' - ] - ], - ] - ] - ); - - // Injection of parameters in the constructor resolving the service parameter - $this->phDi->set( - 'complexConstructor', - [ - 'className' => 'InjectableComponent', - 'arguments' => [ - [ - 'type' => 'service', - 'name' => 'response' - ] - ] - ] - ); - - // Injection of simple setters resolving the service parameter - $this->phDi->set( - 'complexSetters', - [ - 'className' => 'InjectableComponent', - 'calls' => [ - [ - 'method' => 'setResponse', - 'arguments' => [ - [ - 'type' => 'service', - 'name' => 'response', - ] - ] - ], - ] - ] - ); - - // Injection of properties resolving the service parameter - $this->phDi->set( - 'complexProperties', - [ - 'className' => 'InjectableComponent', - 'properties' => [ - [ - 'name' => 'response', - 'value' => [ - 'type' => 'service', - 'name' => 'response', - ] - ], - ] - ] - ); - - $component = $this->phDi->get('simpleConstructor'); - expect(is_string($component->getResponse()))->true(); - expect($component->getResponse())->equals('response'); - - $component = $this->phDi->get('simpleSetters'); - expect(is_string($component->getResponse()))->true(); - expect($component->getResponse())->equals('response'); - - $component = $this->phDi->get('simpleProperties'); - expect(is_string($component->getResponse()))->true(); - expect($component->getResponse())->equals('response'); - - $component = $this->phDi->get('complexConstructor'); - expect(is_object($component->getResponse()))->true(); - expect($component->getResponse())->equals($response); - - $component = $this->phDi->get('complexSetters'); - expect(is_object($component->getResponse()))->true(); - expect($component->getResponse())->equals($response); - - $component = $this->phDi->get('complexProperties'); - expect(is_object($component->getResponse()))->true(); - expect($component->getResponse())->equals($response); - } - ); - } - - /** - * Register services using provider. - * - * @author Caio Almeida - * @since 2017-04-11 - */ - public function testRegistersServiceProvider() - { - $this->specify( - 'Registering services by using service provider does not work as expected', - function () { - $this->phDi->register(new \SomeServiceProvider()); - expect($this->phDi['foo'])->equals('bar'); - - $service = $this->phDi->get('fooAction'); - expect($service)->isInstanceOf('\SomeComponent'); - } - ); - } - - /** - * Tests loading services from yaml files. - * - * @author Gorka Guridi - * @since 2017-04-12 - */ - public function testYamlLoader() - { - if (!extension_loaded('yaml')) { - $this->markTestSkipped('Warning: yaml extension is not loaded'); - } - - $this->specify( - '"Di does not load services from yaml files properly', - function () { - $this->phDi->loadFromYaml(PATH_DATA . 'di/services.yml'); - - expect($this->phDi->has('unit-test'))->true(); - expect($this->phDi->getService('unit-test')->isShared())->false(); - expect($this->phDi->has('config'))->true(); - expect($this->phDi->getService('config')->isShared())->true(); - expect($this->phDi->has('component'))->true(); - expect($this->phDi->getService('component')->isShared())->false(); - expect($this->phDi->get('component')->someProperty)->isInstanceOf('Phalcon\Config'); - } - ); - } - - /** - * Tests loading services from php files. - * - * @author Gorka Guridi - * @since 2017-04-12 - */ - public function testPhpLoader() - { - $this->specify( - 'Di does not load services from php files properly', - function () { - $this->phDi->loadFromPhp(PATH_DATA . 'di/services.php'); - - expect($this->phDi->has('unit-test'))->true(); - expect($this->phDi->getService('unit-test')->isShared())->false(); - expect($this->phDi->has('config'))->true(); - expect($this->phDi->getService('config')->isShared())->true(); - expect($this->phDi->has('component'))->true(); - expect($this->phDi->getService('component')->isShared())->false(); - expect($this->phDi->get('component')->someProperty)->isInstanceOf('Phalcon\Config'); - } - ); - } -} diff --git a/tests/unit/Dispatcher/CallActionMethodCest.php b/tests/unit/Dispatcher/CallActionMethodCest.php new file mode 100644 index 00000000000..c45366d07b8 --- /dev/null +++ b/tests/unit/Dispatcher/CallActionMethodCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class CallActionMethodCest +{ + /** + * Tests Phalcon\Dispatcher :: callActionMethod() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherCallActionMethod(UnitTester $I) + { + $I->wantToTest("Dispatcher - callActionMethod()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/DispatchCest.php b/tests/unit/Dispatcher/DispatchCest.php new file mode 100644 index 00000000000..ff8d66ea161 --- /dev/null +++ b/tests/unit/Dispatcher/DispatchCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class DispatchCest +{ + /** + * Tests Phalcon\Dispatcher :: dispatch() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherDispatch(UnitTester $I) + { + $I->wantToTest("Dispatcher - dispatch()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/ForwardCest.php b/tests/unit/Dispatcher/ForwardCest.php new file mode 100644 index 00000000000..1c8e1603619 --- /dev/null +++ b/tests/unit/Dispatcher/ForwardCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class ForwardCest +{ + /** + * Tests Phalcon\Dispatcher :: forward() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherForward(UnitTester $I) + { + $I->wantToTest("Dispatcher - forward()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/GetActionNameCest.php b/tests/unit/Dispatcher/GetActionNameCest.php new file mode 100644 index 00000000000..d042237a2d0 --- /dev/null +++ b/tests/unit/Dispatcher/GetActionNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class GetActionNameCest +{ + /** + * Tests Phalcon\Dispatcher :: getActionName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherGetActionName(UnitTester $I) + { + $I->wantToTest("Dispatcher - getActionName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/GetActionSuffixCest.php b/tests/unit/Dispatcher/GetActionSuffixCest.php new file mode 100644 index 00000000000..44341f0e97e --- /dev/null +++ b/tests/unit/Dispatcher/GetActionSuffixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class GetActionSuffixCest +{ + /** + * Tests Phalcon\Dispatcher :: getActionSuffix() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherGetActionSuffix(UnitTester $I) + { + $I->wantToTest("Dispatcher - getActionSuffix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/GetActiveMethodCest.php b/tests/unit/Dispatcher/GetActiveMethodCest.php new file mode 100644 index 00000000000..ead4254975c --- /dev/null +++ b/tests/unit/Dispatcher/GetActiveMethodCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class GetActiveMethodCest +{ + /** + * Tests Phalcon\Dispatcher :: getActiveMethod() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherGetActiveMethod(UnitTester $I) + { + $I->wantToTest("Dispatcher - getActiveMethod()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/GetBoundModelsCest.php b/tests/unit/Dispatcher/GetBoundModelsCest.php new file mode 100644 index 00000000000..41a9fb3ffe5 --- /dev/null +++ b/tests/unit/Dispatcher/GetBoundModelsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class GetBoundModelsCest +{ + /** + * Tests Phalcon\Dispatcher :: getBoundModels() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherGetBoundModels(UnitTester $I) + { + $I->wantToTest("Dispatcher - getBoundModels()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/GetDICest.php b/tests/unit/Dispatcher/GetDICest.php new file mode 100644 index 00000000000..1454f9facb9 --- /dev/null +++ b/tests/unit/Dispatcher/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Dispatcher :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherGetDI(UnitTester $I) + { + $I->wantToTest("Dispatcher - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/GetDefaultNamespaceCest.php b/tests/unit/Dispatcher/GetDefaultNamespaceCest.php new file mode 100644 index 00000000000..48f1c62f6e7 --- /dev/null +++ b/tests/unit/Dispatcher/GetDefaultNamespaceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class GetDefaultNamespaceCest +{ + /** + * Tests Phalcon\Dispatcher :: getDefaultNamespace() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherGetDefaultNamespace(UnitTester $I) + { + $I->wantToTest("Dispatcher - getDefaultNamespace()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/GetEventsManagerCest.php b/tests/unit/Dispatcher/GetEventsManagerCest.php new file mode 100644 index 00000000000..19aee718b3a --- /dev/null +++ b/tests/unit/Dispatcher/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Dispatcher :: getEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherGetEventsManager(UnitTester $I) + { + $I->wantToTest("Dispatcher - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/GetHandlerClassCest.php b/tests/unit/Dispatcher/GetHandlerClassCest.php new file mode 100644 index 00000000000..25421fa928c --- /dev/null +++ b/tests/unit/Dispatcher/GetHandlerClassCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class GetHandlerClassCest +{ + /** + * Tests Phalcon\Dispatcher :: getHandlerClass() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherGetHandlerClass(UnitTester $I) + { + $I->wantToTest("Dispatcher - getHandlerClass()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/GetHandlerSuffixCest.php b/tests/unit/Dispatcher/GetHandlerSuffixCest.php new file mode 100644 index 00000000000..c3db776b241 --- /dev/null +++ b/tests/unit/Dispatcher/GetHandlerSuffixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class GetHandlerSuffixCest +{ + /** + * Tests Phalcon\Dispatcher :: getHandlerSuffix() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherGetHandlerSuffix(UnitTester $I) + { + $I->wantToTest("Dispatcher - getHandlerSuffix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/GetModelBinderCest.php b/tests/unit/Dispatcher/GetModelBinderCest.php new file mode 100644 index 00000000000..d6933bed626 --- /dev/null +++ b/tests/unit/Dispatcher/GetModelBinderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class GetModelBinderCest +{ + /** + * Tests Phalcon\Dispatcher :: getModelBinder() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherGetModelBinder(UnitTester $I) + { + $I->wantToTest("Dispatcher - getModelBinder()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/GetModuleNameCest.php b/tests/unit/Dispatcher/GetModuleNameCest.php new file mode 100644 index 00000000000..aac8125952d --- /dev/null +++ b/tests/unit/Dispatcher/GetModuleNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class GetModuleNameCest +{ + /** + * Tests Phalcon\Dispatcher :: getModuleName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherGetModuleName(UnitTester $I) + { + $I->wantToTest("Dispatcher - getModuleName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/GetNamespaceNameCest.php b/tests/unit/Dispatcher/GetNamespaceNameCest.php new file mode 100644 index 00000000000..6dde0289af1 --- /dev/null +++ b/tests/unit/Dispatcher/GetNamespaceNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class GetNamespaceNameCest +{ + /** + * Tests Phalcon\Dispatcher :: getNamespaceName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherGetNamespaceName(UnitTester $I) + { + $I->wantToTest("Dispatcher - getNamespaceName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/GetParamCest.php b/tests/unit/Dispatcher/GetParamCest.php new file mode 100644 index 00000000000..63303b3dfa3 --- /dev/null +++ b/tests/unit/Dispatcher/GetParamCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class GetParamCest +{ + /** + * Tests Phalcon\Dispatcher :: getParam() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherGetParam(UnitTester $I) + { + $I->wantToTest("Dispatcher - getParam()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/GetParamsCest.php b/tests/unit/Dispatcher/GetParamsCest.php new file mode 100644 index 00000000000..c547a46a489 --- /dev/null +++ b/tests/unit/Dispatcher/GetParamsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class GetParamsCest +{ + /** + * Tests Phalcon\Dispatcher :: getParams() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherGetParams(UnitTester $I) + { + $I->wantToTest("Dispatcher - getParams()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/GetReturnedValueCest.php b/tests/unit/Dispatcher/GetReturnedValueCest.php new file mode 100644 index 00000000000..1791020fa8e --- /dev/null +++ b/tests/unit/Dispatcher/GetReturnedValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class GetReturnedValueCest +{ + /** + * Tests Phalcon\Dispatcher :: getReturnedValue() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherGetReturnedValue(UnitTester $I) + { + $I->wantToTest("Dispatcher - getReturnedValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/HasParamCest.php b/tests/unit/Dispatcher/HasParamCest.php new file mode 100644 index 00000000000..2e86b002b22 --- /dev/null +++ b/tests/unit/Dispatcher/HasParamCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class HasParamCest +{ + /** + * Tests Phalcon\Dispatcher :: hasParam() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherHasParam(UnitTester $I) + { + $I->wantToTest("Dispatcher - hasParam()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/IsFinishedCest.php b/tests/unit/Dispatcher/IsFinishedCest.php new file mode 100644 index 00000000000..b1226a20865 --- /dev/null +++ b/tests/unit/Dispatcher/IsFinishedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class IsFinishedCest +{ + /** + * Tests Phalcon\Dispatcher :: isFinished() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherIsFinished(UnitTester $I) + { + $I->wantToTest("Dispatcher - isFinished()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/SetActionNameCest.php b/tests/unit/Dispatcher/SetActionNameCest.php new file mode 100644 index 00000000000..8bbbb7e649d --- /dev/null +++ b/tests/unit/Dispatcher/SetActionNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class SetActionNameCest +{ + /** + * Tests Phalcon\Dispatcher :: setActionName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherSetActionName(UnitTester $I) + { + $I->wantToTest("Dispatcher - setActionName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/SetActionSuffixCest.php b/tests/unit/Dispatcher/SetActionSuffixCest.php new file mode 100644 index 00000000000..c92f41043ad --- /dev/null +++ b/tests/unit/Dispatcher/SetActionSuffixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class SetActionSuffixCest +{ + /** + * Tests Phalcon\Dispatcher :: setActionSuffix() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherSetActionSuffix(UnitTester $I) + { + $I->wantToTest("Dispatcher - setActionSuffix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/SetDICest.php b/tests/unit/Dispatcher/SetDICest.php new file mode 100644 index 00000000000..529e359b741 --- /dev/null +++ b/tests/unit/Dispatcher/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Dispatcher :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherSetDI(UnitTester $I) + { + $I->wantToTest("Dispatcher - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/SetDefaultActionCest.php b/tests/unit/Dispatcher/SetDefaultActionCest.php new file mode 100644 index 00000000000..7f1d8362317 --- /dev/null +++ b/tests/unit/Dispatcher/SetDefaultActionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class SetDefaultActionCest +{ + /** + * Tests Phalcon\Dispatcher :: setDefaultAction() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherSetDefaultAction(UnitTester $I) + { + $I->wantToTest("Dispatcher - setDefaultAction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/SetDefaultNamespaceCest.php b/tests/unit/Dispatcher/SetDefaultNamespaceCest.php new file mode 100644 index 00000000000..55bee3953a0 --- /dev/null +++ b/tests/unit/Dispatcher/SetDefaultNamespaceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class SetDefaultNamespaceCest +{ + /** + * Tests Phalcon\Dispatcher :: setDefaultNamespace() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherSetDefaultNamespace(UnitTester $I) + { + $I->wantToTest("Dispatcher - setDefaultNamespace()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/SetEventsManagerCest.php b/tests/unit/Dispatcher/SetEventsManagerCest.php new file mode 100644 index 00000000000..ec3bf660ea7 --- /dev/null +++ b/tests/unit/Dispatcher/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Dispatcher :: setEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherSetEventsManager(UnitTester $I) + { + $I->wantToTest("Dispatcher - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/SetHandlerSuffixCest.php b/tests/unit/Dispatcher/SetHandlerSuffixCest.php new file mode 100644 index 00000000000..ab33b851a41 --- /dev/null +++ b/tests/unit/Dispatcher/SetHandlerSuffixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class SetHandlerSuffixCest +{ + /** + * Tests Phalcon\Dispatcher :: setHandlerSuffix() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherSetHandlerSuffix(UnitTester $I) + { + $I->wantToTest("Dispatcher - setHandlerSuffix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/SetModelBinderCest.php b/tests/unit/Dispatcher/SetModelBinderCest.php new file mode 100644 index 00000000000..6153424575f --- /dev/null +++ b/tests/unit/Dispatcher/SetModelBinderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class SetModelBinderCest +{ + /** + * Tests Phalcon\Dispatcher :: setModelBinder() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherSetModelBinder(UnitTester $I) + { + $I->wantToTest("Dispatcher - setModelBinder()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/SetModuleNameCest.php b/tests/unit/Dispatcher/SetModuleNameCest.php new file mode 100644 index 00000000000..03466ac11af --- /dev/null +++ b/tests/unit/Dispatcher/SetModuleNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class SetModuleNameCest +{ + /** + * Tests Phalcon\Dispatcher :: setModuleName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherSetModuleName(UnitTester $I) + { + $I->wantToTest("Dispatcher - setModuleName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/SetNamespaceNameCest.php b/tests/unit/Dispatcher/SetNamespaceNameCest.php new file mode 100644 index 00000000000..af56b9618f7 --- /dev/null +++ b/tests/unit/Dispatcher/SetNamespaceNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class SetNamespaceNameCest +{ + /** + * Tests Phalcon\Dispatcher :: setNamespaceName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherSetNamespaceName(UnitTester $I) + { + $I->wantToTest("Dispatcher - setNamespaceName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/SetParamCest.php b/tests/unit/Dispatcher/SetParamCest.php new file mode 100644 index 00000000000..a16c950d529 --- /dev/null +++ b/tests/unit/Dispatcher/SetParamCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class SetParamCest +{ + /** + * Tests Phalcon\Dispatcher :: setParam() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherSetParam(UnitTester $I) + { + $I->wantToTest("Dispatcher - setParam()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/SetParamsCest.php b/tests/unit/Dispatcher/SetParamsCest.php new file mode 100644 index 00000000000..d88ae764cb8 --- /dev/null +++ b/tests/unit/Dispatcher/SetParamsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class SetParamsCest +{ + /** + * Tests Phalcon\Dispatcher :: setParams() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherSetParams(UnitTester $I) + { + $I->wantToTest("Dispatcher - setParams()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/SetReturnedValueCest.php b/tests/unit/Dispatcher/SetReturnedValueCest.php new file mode 100644 index 00000000000..33ec39598ab --- /dev/null +++ b/tests/unit/Dispatcher/SetReturnedValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class SetReturnedValueCest +{ + /** + * Tests Phalcon\Dispatcher :: setReturnedValue() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherSetReturnedValue(UnitTester $I) + { + $I->wantToTest("Dispatcher - setReturnedValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Dispatcher/WasForwardedCest.php b/tests/unit/Dispatcher/WasForwardedCest.php new file mode 100644 index 00000000000..f43c83cc0be --- /dev/null +++ b/tests/unit/Dispatcher/WasForwardedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Dispatcher; + +use UnitTester; + +class WasForwardedCest +{ + /** + * Tests Phalcon\Dispatcher :: wasForwarded() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function dispatcherWasForwarded(UnitTester $I) + { + $I->wantToTest("Dispatcher - wasForwarded()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Escaper/DetectEncodingCest.php b/tests/unit/Escaper/DetectEncodingCest.php new file mode 100644 index 00000000000..89794e00c37 --- /dev/null +++ b/tests/unit/Escaper/DetectEncodingCest.php @@ -0,0 +1,48 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Escaper; + +use Phalcon\Escaper; +use UnitTester; + +class DetectEncodingCest +{ + /** + * Tests Phalcon\Escaper :: detectEncoding() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-16 + */ + public function escaperDetectEncoding(UnitTester $I) + { + $I->wantToTest("Escaper - detectEncoding()"); + $escaper = new Escaper(); + + $source = 'ḂḃĊċḊḋḞḟĠġṀṁ'; + $expected = 'UTF-8'; + $actual = $escaper->detectEncoding($source); + $I->assertEquals($expected, $actual); + + + $source = chr(172) . chr(128) . chr(159) . 'ḂḃĊċḊḋḞḟĠġṀṁ'; + $expected = 'ISO-8859-1'; + $actual = $escaper->detectEncoding($source); + $I->assertEquals($expected, $actual); + + $source = '\0\0\0H\0\0\0i'; + $expected = 'UTF-8'; + $actual = $escaper->detectEncoding($source); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Escaper/EscapeCssCest.php b/tests/unit/Escaper/EscapeCssCest.php new file mode 100644 index 00000000000..5396fa56663 --- /dev/null +++ b/tests/unit/Escaper/EscapeCssCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Escaper; + +use Phalcon\Escaper; +use UnitTester; + +class EscapeCssCest +{ + /** + * Tests Phalcon\Escaper :: escapeCss() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-16 + */ + public function escaperEscapeCss(UnitTester $I) + { + $I->wantToTest("Escaper - escapeCss()"); + $escaper = new Escaper(); + $source = ".émotion { background: " + . "url('http://phalconphp.com/a.php?c=d&e=f'); }"; + + $expected = '\2e \e9 motion\20 \7b \20 background\3a \20 url\28 ' + . '\27 http\3a \2f \2f phalconphp\2e com\2f a\2e php' + . '\3f c\3d d\26 e\3d f\27 \29 \3b \20 \7d '; + $actual = $escaper->escapeCss($source); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Escaper/EscapeHtmlAttrCest.php b/tests/unit/Escaper/EscapeHtmlAttrCest.php new file mode 100644 index 00000000000..9128b75c253 --- /dev/null +++ b/tests/unit/Escaper/EscapeHtmlAttrCest.php @@ -0,0 +1,56 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Escaper; + +use Phalcon\Escaper; +use UnitTester; +use const ENT_HTML401; +use const ENT_HTML5; +use const ENT_XHTML; +use const ENT_XML1; + +class EscapeHtmlAttrCest +{ + /** + * Tests Phalcon\Escaper :: escapeHtmlAttr() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-16 + */ + public function escaperEscapeHtmlAttr(UnitTester $I) + { + $I->wantToTest("Escaper - escapeHtmlAttr()"); + $escaper = new Escaper(); + + $escaper->setHtmlQuoteType(ENT_HTML401); + $expected = "That's right"; + $actual = $escaper->escapeHtmlAttr("That's right"); + $I->assertEquals($expected, $actual); + + $escaper->setHtmlQuoteType(ENT_XML1); + $expected = "That's right"; + $actual = $escaper->escapeHtmlAttr("That's right"); + $I->assertEquals($expected, $actual); + + $escaper->setHtmlQuoteType(ENT_XHTML); + $expected = "That's right"; + $actual = $escaper->escapeHtmlAttr("That's right"); + $I->assertEquals($expected, $actual); + + $escaper->setHtmlQuoteType(ENT_HTML5); + $expected = "That's right"; + $actual = $escaper->escapeHtmlAttr("That's right"); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Escaper/EscapeHtmlCest.php b/tests/unit/Escaper/EscapeHtmlCest.php new file mode 100644 index 00000000000..c8da153c496 --- /dev/null +++ b/tests/unit/Escaper/EscapeHtmlCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Escaper; + +use Phalcon\Escaper; +use UnitTester; + +class EscapeHtmlCest +{ + /** + * Tests Phalcon\Escaper :: escapeHtml() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-12 + */ + public function escaperEscapeHtml(UnitTester $I) + { + $I->wantToTest("Escaper - escapeHtml()"); + $escaper = new Escaper(); + + $expected = '<h1></h1>'; + $actual = $escaper->escapeHtml("

"); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Escaper/EscapeJsCest.php b/tests/unit/Escaper/EscapeJsCest.php new file mode 100644 index 00000000000..0a6ef0da84f --- /dev/null +++ b/tests/unit/Escaper/EscapeJsCest.php @@ -0,0 +1,51 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Escaper; + +use Phalcon\Escaper; +use UnitTester; + +class EscapeJsCest +{ + /** + * Tests Phalcon\Escaper :: escapeJs() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-16 + */ + public function escaperEscapeJs(UnitTester $I) + { + $I->wantToTest("Escaper - escapeJs()"); + $escaper = new Escaper(); + $source = "function createtoc () {" + . "var h2s = document.getElementsByTagName('H2');" + . "l = toc.appendChild(document.createElement('ol'));" + . "for (var i=0; iescapeJs($source); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Escaper/EscapeUrlCest.php b/tests/unit/Escaper/EscapeUrlCest.php new file mode 100644 index 00000000000..d6adb35b1e2 --- /dev/null +++ b/tests/unit/Escaper/EscapeUrlCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Escaper; + +use Phalcon\Escaper; +use UnitTester; + +class EscapeUrlCest +{ + /** + * Tests Phalcon\Escaper :: escapeUrl() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-16 + */ + public function escaperEscapeUrl(UnitTester $I) + { + $I->wantToTest("Escaper - escapeUrl()"); + $escaper = new Escaper(); + + $expected = 'http%3A%2F%2Fphalconphp.com%2Fa.php%3Fc%3Dd%26e%3Df'; + $actual = $escaper->escapeUrl("http://phalconphp.com/a.php?c=d&e=f"); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Escaper/GetEncodingCest.php b/tests/unit/Escaper/GetEncodingCest.php new file mode 100644 index 00000000000..ae5511e39cc --- /dev/null +++ b/tests/unit/Escaper/GetEncodingCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Escaper; + +use Phalcon\Escaper; +use UnitTester; + +class GetEncodingCest +{ + /** + * Tests Phalcon\Escaper :: getEncoding() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-16 + */ + public function escaperGetEncoding(UnitTester $I) + { + $I->wantToTest("Escaper - getEncoding()"); + $escaper = new Escaper(); + $escaper->setEncoding('UTF-8'); + + $expected = 'UTF-8'; + $actual = $escaper->getEncoding(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Escaper/NormalizeEncodingCest.php b/tests/unit/Escaper/NormalizeEncodingCest.php new file mode 100644 index 00000000000..e19732bdf7c --- /dev/null +++ b/tests/unit/Escaper/NormalizeEncodingCest.php @@ -0,0 +1,39 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Escaper; + +use Phalcon\Escaper; +use UnitTester; + +class NormalizeEncodingCest +{ + /** + * Tests Phalcon\Escaper :: normalizeEncoding() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-16 + */ + public function escaperNormalizeEncoding(UnitTester $I) + { + $I->wantToTest("Escaper - normalizeEncoding()"); + $I->checkExtensionIsLoaded('mbstring'); + + $escaper = new Escaper(); + + $expected = mb_convert_encoding('Hello', 'UTF-32', 'UTF-8'); + $actual = $escaper->normalizeEncoding('Hello'); + + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Escaper/SetDoubleEncodeCest.php b/tests/unit/Escaper/SetDoubleEncodeCest.php new file mode 100644 index 00000000000..2211b6ab08e --- /dev/null +++ b/tests/unit/Escaper/SetDoubleEncodeCest.php @@ -0,0 +1,43 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Escaper; + +use Phalcon\Escaper; +use UnitTester; + +class SetDoubleEncodeCest +{ + /** + * Tests Phalcon\Escaper :: setDoubleEncode() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function escaperSetDoubleEncode(UnitTester $I) + { + $I->wantToTest("Escaper - setDoubleEncode()"); + $escaper = new Escaper(); + + $source = "

&

"; + $expected = '<h1>&amp;</h1>'; + $actual = $escaper->escapeHtml($source); + $I->assertEquals($expected, $actual); + + $escaper->setDoubleEncode(false); + + $expected = '<h1>&</h1>'; + $actual = $escaper->escapeHtml($source); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Escaper/SetEncodingCest.php b/tests/unit/Escaper/SetEncodingCest.php new file mode 100644 index 00000000000..0d8d92ece78 --- /dev/null +++ b/tests/unit/Escaper/SetEncodingCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Escaper; + +use Phalcon\Escaper; +use UnitTester; + +class SetEncodingCest +{ + /** + * Tests Phalcon\Escaper :: setEncoding() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-16 + */ + public function escaperSetEncoding(UnitTester $I) + { + $I->wantToTest("Escaper - setEncoding()"); + $escaper = new Escaper(); + $escaper->setEncoding('UTF-8'); + + $expected = 'UTF-8'; + $actual = $escaper->getEncoding(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Escaper/SetHtmlQuoteTypeCest.php b/tests/unit/Escaper/SetHtmlQuoteTypeCest.php new file mode 100644 index 00000000000..9e7acddc1d6 --- /dev/null +++ b/tests/unit/Escaper/SetHtmlQuoteTypeCest.php @@ -0,0 +1,38 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Escaper; + +use Phalcon\Escaper; +use UnitTester; +use const ENT_HTML401; + +class SetHtmlQuoteTypeCest +{ + /** + * Tests Phalcon\Escaper :: setHtmlQuoteType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function escaperSetHtmlQuoteType(UnitTester $I) + { + $I->wantToTest("Escaper - setHtmlQuoteType()"); + $escaper = new Escaper(); + + $escaper->setHtmlQuoteType(ENT_HTML401); + $expected = "That's right"; + $actual = $escaper->escapeHtmlAttr("That's right"); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/EscaperTest.php b/tests/unit/EscaperTest.php deleted file mode 100644 index 2f614abaf2a..00000000000 --- a/tests/unit/EscaperTest.php +++ /dev/null @@ -1,241 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class EscaperTest extends UnitTest -{ - /** - * Tests whether a key exists in the array - * - * @author Nikolaos Dimopoulos - * @since 2014-09-12 - */ - public function testEscaperHtml() - { - $this->specify( - "The escaper does not escape string correctly", - function () { - $escaper = new Escaper(); - expect($escaper->escapeHtml("

"))->equals('<h1></h1>'); - } - ); - } - - /** - * Tests the getEncoding and setEncoding - * - * @author Nikolaos Dimopoulos - * @since 2014-09-16 - */ - public function testGetSetEncoding() - { - $this->specify( - 'The escaper does not set/get the encoding correctly', - function () { - $escaper = new Escaper(); - $escaper->setEncoding('UTF-8'); - - expect($escaper->getEncoding())->equals('UTF-8'); - } - ); - } - - /** - * Tests the normalizeEncoding with various quote types - * - * @author Nikolaos Dimopoulos - * @since 2014-09-16 - */ - public function testEscapeAttrWithDifferentEncodings() - { - $this->specify( - 'The escaper does not return the correct result with ENT_HTML401', - function () { - $escaper = new Escaper(); - $escaper->setHtmlQuoteType(ENT_HTML401); - - expect($escaper->escapeHtmlAttr("That's right"))->equals("That's right"); - } - ); - - $this->specify( - 'The escaper does not return the correct result with ENT_XHTML', - function () { - $escaper = new Escaper(); - $escaper->setHtmlQuoteType(ENT_XML1); - - expect($escaper->escapeHtmlAttr("That's right"))->equals("That's right"); - } - ); - - $this->specify( - 'The escaper does not return the correct result with ENT_XHTML', - function () { - $escaper = new Escaper(); - $escaper->setHtmlQuoteType(ENT_XHTML); - - expect($escaper->escapeHtmlAttr("That's right"))->equals("That's right"); - } - ); - - $this->specify( - 'The escaper does not return the correct result with ENT_HTML5', - function () { - $escaper = new Escaper(); - $escaper->setHtmlQuoteType(ENT_HTML5); - - expect($escaper->escapeHtmlAttr("That's right"))->equals("That's right"); - } - ); - } - - /** - * Tests the detectEncoding - * - * @author Nikolaos Dimopoulos - * @since 2014-09-16 - */ - public function testDetectEncoding() - { - $this->specify( - 'The escaper does not detect the encoding correctly UTF-8', - function () { - $escaper = new Escaper(); - expect($escaper->detectEncoding('ḂḃĊċḊḋḞḟĠġṀṁ'))->equals('UTF-8'); - } - ); - - $this->specify( - 'The escaper does not detect the encoding correctly ISO-8859-1', - function () { - $escaper = new Escaper(); - expect($escaper->detectEncoding(chr(172) . chr(128) . chr(159) . 'ḂḃĊċḊḋḞḟĠġṀṁ'))->equals('ISO-8859-1'); - } - ); - - $this->specify( - 'The escaper does not detect the encoding correctly UTF-8', - function () { - $escaper = new Escaper(); - expect($escaper->detectEncoding('\0\0\0H\0\0\0i'))->equals('UTF-8'); - } - ); - } - - /** - * Tests the normalizeEncoding - * - * @author Nikolaos Dimopoulos - * @since 2014-09-16 - */ - public function testNormalizeEncoding() - { - $this->specify( - 'The escaper with normalizeEncoding does not return the correct result ', - function () { - if (!extension_loaded('mbstring')) { - $this->markTestSkipped('Warning: mbstring extension is not loaded'); - } - - $escaper = new Escaper(); - expect($escaper->normalizeEncoding('Hello'))->equals(mb_convert_encoding('Hello', 'UTF-32', 'UTF-8')); - } - ); - } - - /** - * Tests the escapeCss - * - * @author Nikolaos Dimopoulos - * @since 2014-09-16 - */ - public function testEscapeCss() - { - $this->specify( - 'The escaper with escapeCss does not return the correct result ', - function () { - $escaper = new Escaper(); - - $source = ".émotion { background: " - . "url('http://phalconphp.com/a.php?c=d&e=f'); }"; - $expected = '\2e \e9 motion\20 \7b \20 background\3a \20 url\28 ' - . '\27 http\3a \2f \2f phalconphp\2e com\2f a\2e php' - . '\3f c\3d d\26 e\3d f\27 \29 \3b \20 \7d '; - - expect($escaper->escapeCss($source))->equals($expected); - } - ); - } - - /** - * Tests the escapeJs - * - * @author Nikolaos Dimopoulos - * @since 2014-09-16 - */ - public function testEscapeJs() - { - $this->specify( - 'The escaper with escapeJs does not return the correct result ', - function () { - $escaper = new Escaper(); - - $source = "function createtoc () {" - . "var h2s = document.getElementsByTagName('H2');" - . "l = toc.appendChild(document.createElement('ol'));" - . "for (var i=0; iescapeJs($source))->equals($expected); - } - ); - } - - /** - * Tests the escapeUrl - * - * @author Nikolaos Dimopoulos - * @since 2014-09-16 - */ - public function testEscapeUrl() - { - $this->specify( - 'The escaper with escapeCss does not return the correct result ', - function () { - $escaper = new Escaper(); - expect($escaper->escapeUrl("http://phalconphp.com/a.php?c=d&e=f"))->equals('http%3A%2F%2Fphalconphp.com%2Fa.php%3Fc%3Dd%26e%3Df'); - } - ); - } -} diff --git a/tests/unit/Events/Event/ConstructCest.php b/tests/unit/Events/Event/ConstructCest.php new file mode 100644 index 00000000000..e0f347ec2dd --- /dev/null +++ b/tests/unit/Events/Event/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events\Event; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Events\Event :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function eventsEventConstruct(UnitTester $I) + { + $I->wantToTest("Events\Event - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Events/Event/GetDataCest.php b/tests/unit/Events/Event/GetDataCest.php new file mode 100644 index 00000000000..5cbc9d42d2e --- /dev/null +++ b/tests/unit/Events/Event/GetDataCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events\Event; + +use UnitTester; + +class GetDataCest +{ + /** + * Tests Phalcon\Events\Event :: getData() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function eventsEventGetData(UnitTester $I) + { + $I->wantToTest("Events\Event - getData()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Events/Event/GetSourceCest.php b/tests/unit/Events/Event/GetSourceCest.php new file mode 100644 index 00000000000..412551e4d85 --- /dev/null +++ b/tests/unit/Events/Event/GetSourceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events\Event; + +use UnitTester; + +class GetSourceCest +{ + /** + * Tests Phalcon\Events\Event :: getSource() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function eventsEventGetSource(UnitTester $I) + { + $I->wantToTest("Events\Event - getSource()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Events/Event/GetTypeCest.php b/tests/unit/Events/Event/GetTypeCest.php new file mode 100644 index 00000000000..d54abbcab84 --- /dev/null +++ b/tests/unit/Events/Event/GetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events\Event; + +use UnitTester; + +class GetTypeCest +{ + /** + * Tests Phalcon\Events\Event :: getType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function eventsEventGetType(UnitTester $I) + { + $I->wantToTest("Events\Event - getType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Events/Event/IsCancelableCest.php b/tests/unit/Events/Event/IsCancelableCest.php new file mode 100644 index 00000000000..2918e94628f --- /dev/null +++ b/tests/unit/Events/Event/IsCancelableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events\Event; + +use UnitTester; + +class IsCancelableCest +{ + /** + * Tests Phalcon\Events\Event :: isCancelable() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function eventsEventIsCancelable(UnitTester $I) + { + $I->wantToTest("Events\Event - isCancelable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Events/Event/IsStoppedCest.php b/tests/unit/Events/Event/IsStoppedCest.php new file mode 100644 index 00000000000..6cd8aca553d --- /dev/null +++ b/tests/unit/Events/Event/IsStoppedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events\Event; + +use UnitTester; + +class IsStoppedCest +{ + /** + * Tests Phalcon\Events\Event :: isStopped() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function eventsEventIsStopped(UnitTester $I) + { + $I->wantToTest("Events\Event - isStopped()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Events/Event/SetDataCest.php b/tests/unit/Events/Event/SetDataCest.php new file mode 100644 index 00000000000..9b3d5c8b019 --- /dev/null +++ b/tests/unit/Events/Event/SetDataCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events\Event; + +use UnitTester; + +class SetDataCest +{ + /** + * Tests Phalcon\Events\Event :: setData() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function eventsEventSetData(UnitTester $I) + { + $I->wantToTest("Events\Event - setData()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Events/Event/SetTypeCest.php b/tests/unit/Events/Event/SetTypeCest.php new file mode 100644 index 00000000000..ed70db1bb73 --- /dev/null +++ b/tests/unit/Events/Event/SetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events\Event; + +use UnitTester; + +class SetTypeCest +{ + /** + * Tests Phalcon\Events\Event :: setType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function eventsEventSetType(UnitTester $I) + { + $I->wantToTest("Events\Event - setType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Events/Event/StopCest.php b/tests/unit/Events/Event/StopCest.php new file mode 100644 index 00000000000..fcdba4656a6 --- /dev/null +++ b/tests/unit/Events/Event/StopCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events\Event; + +use UnitTester; + +class StopCest +{ + /** + * Tests Phalcon\Events\Event :: stop() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function eventsEventStop(UnitTester $I) + { + $I->wantToTest("Events\Event - stop()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Events/Manager/ArePrioritiesEnabledCest.php b/tests/unit/Events/Manager/ArePrioritiesEnabledCest.php new file mode 100644 index 00000000000..6fda6c7b932 --- /dev/null +++ b/tests/unit/Events/Manager/ArePrioritiesEnabledCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events\Manager; + +use UnitTester; + +class ArePrioritiesEnabledCest +{ + /** + * Tests Phalcon\Events\Manager :: arePrioritiesEnabled() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function eventsManagerArePrioritiesEnabled(UnitTester $I) + { + $I->wantToTest("Events\Manager - arePrioritiesEnabled()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Events/Manager/AttachCest.php b/tests/unit/Events/Manager/AttachCest.php new file mode 100644 index 00000000000..01a81cc9d48 --- /dev/null +++ b/tests/unit/Events/Manager/AttachCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events\Manager; + +use UnitTester; + +class AttachCest +{ + /** + * Tests Phalcon\Events\Manager :: attach() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function eventsManagerAttach(UnitTester $I) + { + $I->wantToTest("Events\Manager - attach()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Events/Manager/CollectResponsesCest.php b/tests/unit/Events/Manager/CollectResponsesCest.php new file mode 100644 index 00000000000..943da6363d5 --- /dev/null +++ b/tests/unit/Events/Manager/CollectResponsesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events\Manager; + +use UnitTester; + +class CollectResponsesCest +{ + /** + * Tests Phalcon\Events\Manager :: collectResponses() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function eventsManagerCollectResponses(UnitTester $I) + { + $I->wantToTest("Events\Manager - collectResponses()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Events/Manager/DetachAllCest.php b/tests/unit/Events/Manager/DetachAllCest.php new file mode 100644 index 00000000000..dd34d73bda3 --- /dev/null +++ b/tests/unit/Events/Manager/DetachAllCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events\Manager; + +use UnitTester; + +class DetachAllCest +{ + /** + * Tests Phalcon\Events\Manager :: detachAll() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function eventsManagerDetachAll(UnitTester $I) + { + $I->wantToTest("Events\Manager - detachAll()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Events/Manager/DetachCest.php b/tests/unit/Events/Manager/DetachCest.php new file mode 100644 index 00000000000..0ee59b38562 --- /dev/null +++ b/tests/unit/Events/Manager/DetachCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events\Manager; + +use UnitTester; + +class DetachCest +{ + /** + * Tests Phalcon\Events\Manager :: detach() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function eventsManagerDetach(UnitTester $I) + { + $I->wantToTest("Events\Manager - detach()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Events/Manager/EnablePrioritiesCest.php b/tests/unit/Events/Manager/EnablePrioritiesCest.php new file mode 100644 index 00000000000..4594430cbca --- /dev/null +++ b/tests/unit/Events/Manager/EnablePrioritiesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events\Manager; + +use UnitTester; + +class EnablePrioritiesCest +{ + /** + * Tests Phalcon\Events\Manager :: enablePriorities() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function eventsManagerEnablePriorities(UnitTester $I) + { + $I->wantToTest("Events\Manager - enablePriorities()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Events/Manager/FireCest.php b/tests/unit/Events/Manager/FireCest.php new file mode 100644 index 00000000000..63167169cf2 --- /dev/null +++ b/tests/unit/Events/Manager/FireCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events\Manager; + +use UnitTester; + +class FireCest +{ + /** + * Tests Phalcon\Events\Manager :: fire() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function eventsManagerFire(UnitTester $I) + { + $I->wantToTest("Events\Manager - fire()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Events/Manager/FireQueueCest.php b/tests/unit/Events/Manager/FireQueueCest.php new file mode 100644 index 00000000000..e28a4614320 --- /dev/null +++ b/tests/unit/Events/Manager/FireQueueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events\Manager; + +use UnitTester; + +class FireQueueCest +{ + /** + * Tests Phalcon\Events\Manager :: fireQueue() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function eventsManagerFireQueue(UnitTester $I) + { + $I->wantToTest("Events\Manager - fireQueue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Events/Manager/GetListenersCest.php b/tests/unit/Events/Manager/GetListenersCest.php new file mode 100644 index 00000000000..f883865e971 --- /dev/null +++ b/tests/unit/Events/Manager/GetListenersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events\Manager; + +use UnitTester; + +class GetListenersCest +{ + /** + * Tests Phalcon\Events\Manager :: getListeners() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function eventsManagerGetListeners(UnitTester $I) + { + $I->wantToTest("Events\Manager - getListeners()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Events/Manager/GetResponsesCest.php b/tests/unit/Events/Manager/GetResponsesCest.php new file mode 100644 index 00000000000..3f2ad168c07 --- /dev/null +++ b/tests/unit/Events/Manager/GetResponsesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events\Manager; + +use UnitTester; + +class GetResponsesCest +{ + /** + * Tests Phalcon\Events\Manager :: getResponses() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function eventsManagerGetResponses(UnitTester $I) + { + $I->wantToTest("Events\Manager - getResponses()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Events/Manager/HasListenersCest.php b/tests/unit/Events/Manager/HasListenersCest.php new file mode 100644 index 00000000000..5fc28704be0 --- /dev/null +++ b/tests/unit/Events/Manager/HasListenersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events\Manager; + +use UnitTester; + +class HasListenersCest +{ + /** + * Tests Phalcon\Events\Manager :: hasListeners() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function eventsManagerHasListeners(UnitTester $I) + { + $I->wantToTest("Events\Manager - hasListeners()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Events/Manager/IsCollectingCest.php b/tests/unit/Events/Manager/IsCollectingCest.php new file mode 100644 index 00000000000..24f95d8083e --- /dev/null +++ b/tests/unit/Events/Manager/IsCollectingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events\Manager; + +use UnitTester; + +class IsCollectingCest +{ + /** + * Tests Phalcon\Events\Manager :: isCollecting() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function eventsManagerIsCollecting(UnitTester $I) + { + $I->wantToTest("Events\Manager - isCollecting()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Events/ManagerCest.php b/tests/unit/Events/ManagerCest.php new file mode 100644 index 00000000000..21166544563 --- /dev/null +++ b/tests/unit/Events/ManagerCest.php @@ -0,0 +1,308 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Events; + +use ComponentX; +use ComponentY; +use Phalcon\Events\Event; +use Phalcon\Events\Manager; +use Phalcon\Test\Fixtures\Listener\FirstListener; +use Phalcon\Test\Fixtures\Listener\SecondListener; +use Phalcon\Test\Fixtures\Listener\ThirdListener; +use UnitTester; +use function dataFolder; + +class ManagerCest +{ + protected $listener; + + /** + * executed before each test + */ + public function _before(UnitTester $I) + { + include_once dataFolder('fixtures/Events/ComponentX.php'); + include_once dataFolder('fixtures/Events/ComponentY.php'); + } + + /** + * Tests attaching event listeners by event name after detaching all + * + * @issue https://github.com/phalcon/cphalcon/issues/1331 + * @author Kamil Skowron + * @since 2014-05-28 + */ + public function attachingListenersByEventNameAfterDetachingAll(UnitTester $I) + { + $first = new FirstListener(); + $second = new SecondListener(); + + $component = new ComponentX(); + + $eventsManager = new Manager(); + $eventsManager->attach('log', $first); + + $component->setEventsManager($eventsManager); + + $logListeners = $component->getEventsManager()->getListeners('log'); + + $I->assertCount(1, $logListeners); + $I->assertInstanceOf(FirstListener::class, $logListeners[0]); + + $component->getEventsManager()->attach('log', $second); + $logListeners = $component->getEventsManager()->getListeners('log'); + + $I->assertCount(2, $logListeners); + $I->assertInstanceOf(FirstListener::class, $logListeners[0]); + $I->assertInstanceOf(SecondListener::class, $logListeners[1]); + + $component->getEventsManager()->detachAll('log'); + $logListeners = $component->getEventsManager()->getListeners('log'); + + $I->assertEmpty($logListeners); + + $component->getEventsManager()->attach('log', $second); + $logListeners = $component->getEventsManager()->getListeners('log'); + + $I->assertCount(1, $logListeners); + $I->assertInstanceOf(SecondListener::class, $logListeners[0]); + } + + /** + * Tests using event listeners + * + * @author Phalcon Team + * @since 2012-08-14 + */ + public function usingEvents(UnitTester $I) + { + $listener1 = new ThirdListener(); + $listener1->setTestCase($this, $I); + + $listener2 = new ThirdListener(); + $listener2->setTestCase($this, $I); + + $eventsManager = new Manager(); + $eventsManager->attach('dummy', $listener1); + + $componentX = new ComponentX(); + $componentX->setEventsManager($eventsManager); + + $componentY = new ComponentY(); + $componentY->setEventsManager($eventsManager); + + $componentX->leAction(); + $componentX->leAction(); + + $componentY->leAction(); + $componentY->leAction(); + $componentY->leAction(); + + $I->assertEquals(2, $listener1->getBeforeCount()); + $I->assertEquals(2, $listener1->getAfterCount()); + + $eventsManager->attach('dummy', $listener2); + + $componentX->leAction(); + $componentX->leAction(); + + $I->assertEquals(4, $listener1->getBeforeCount()); + $I->assertEquals(4, $listener1->getAfterCount()); + + $I->assertEquals(2, $listener2->getBeforeCount()); + $I->assertEquals(2, $listener2->getAfterCount()); + + $I->assertSame($listener2, $this->listener); + + $eventsManager->detach('dummy', $listener1); + + $componentX->leAction(); + $componentX->leAction(); + + $I->assertEquals(4, $listener1->getBeforeCount()); + $I->assertEquals(4, $listener1->getAfterCount()); + + $I->assertEquals(4, $listener2->getBeforeCount()); + $I->assertEquals(4, $listener2->getAfterCount()); + } + + /** + * Tests using events with priority + * + * @test + * @author Vladimir Khramov + * @since 2014-12-09 + */ + public function usingEventsWithPriority(UnitTester $I) + { + $listener1 = new ThirdListener(); + $listener1->setTestCase($this, $I); + + $listener2 = new ThirdListener(); + $listener2->setTestCase($this, $I); + + $eventsManager = new Manager(); + $eventsManager->enablePriorities(true); + + $eventsManager->attach('dummy', $listener1, 100); + + $componentX = new ComponentX(); + $componentX->setEventsManager($eventsManager); + + $componentY = new ComponentY(); + $componentY->setEventsManager($eventsManager); + + $componentX->leAction(); + $componentX->leAction(); + + $componentY->leAction(); + $componentY->leAction(); + $componentY->leAction(); + + $I->assertEquals(2, $listener1->getBeforeCount()); + $I->assertEquals(2, $listener1->getAfterCount()); + + $eventsManager->attach('dummy', $listener2, 150); + + $componentX->leAction(); + $componentX->leAction(); + + $I->assertEquals(4, $listener1->getBeforeCount()); + $I->assertEquals(4, $listener1->getAfterCount()); + + $I->assertEquals(2, $listener2->getBeforeCount()); + $I->assertEquals(2, $listener2->getAfterCount()); + + $I->assertSame($listener1, $this->listener); + + $eventsManager->detach('dummy', $listener1); + + $componentX->leAction(); + $componentX->leAction(); + + $I->assertEquals(4, $listener1->getBeforeCount()); + $I->assertEquals(4, $listener1->getAfterCount()); + + $I->assertEquals(4, $listener2->getBeforeCount()); + $I->assertEquals(4, $listener2->getAfterCount()); + } + + /** + * Tests using events propagation + * + * @author Phalcon Team + * @since 2012-11-11 + */ + public function stopEventsInEventsManager(UnitTester $I) + { + $number = 0; + $eventsManager = new Manager(); + + $propagationListener = function (Event $event, $component, $data) use (&$number) { + $number++; + $event->stop(); + }; + + $eventsManager->attach('some-type', $propagationListener); + $eventsManager->attach('some-type', $propagationListener); + + $eventsManager->fire('some-type:beforeSome', $this); + + $I->assertEquals(1, $number); + } + + /** + * Tests detach handler by using a Closure + * + * @test + * @issue https://github.com/phalcon/cphalcon/issues/12882 + * @author Phalcon Team + * @since 2017-06-06 + */ + public function detachClosureListener(UnitTester $I) + { + $examples = [true, false]; + foreach ($examples as $enablePriorities) { + $manager = new Manager(); + $manager->enablePriorities($enablePriorities); + + $handler = function () { + echo __METHOD__; + }; + + $manager->attach('test:detachable', $handler); + $events = $I->getProtectedProperty($manager, '_events'); + + $I->assertCount(1, $events); + $I->assertTrue(array_key_exists('test:detachable', $events)); + $I->assertCount(1, $events['test:detachable']); + + $manager->detach('test:detachable', $handler); + + $events = $I->getProtectedProperty($manager, '_events'); + + $I->assertCount(1, $events); + $I->assertTrue(array_key_exists('test:detachable', $events)); + $I->assertCount(0, $events['test:detachable']); + } + } + + /** + * Tests detach handler by using an Object + * + * @test + * @issue https://github.com/phalcon/cphalcon/issues/12882 + * @author Phalcon Team + * @since 2017-06-06 + */ + public function detachObjectListener(UnitTester $I) + { + $examples = [true, false]; + foreach ($examples as $enablePriorities) { + $manager = new Manager(); + $manager->enablePriorities($enablePriorities); + + $handler = new \stdClass(); + $manager->attach('test:detachable', $handler); + $events = $I->getProtectedProperty($manager, '_events'); + + $I->assertCount(1, $events); + $I->assertTrue(array_key_exists('test:detachable', $events)); + $I->assertCount(1, $events['test:detachable']); + + $manager->detach('test:detachable', $handler); + + $events = $I->getProtectedProperty($manager, '_events'); + + $I->assertCount(1, $events); + $I->assertTrue(array_key_exists('test:detachable', $events)); + $I->assertCount(0, $events['test:detachable']); + } + } + + public function setLastListener($listener) + { + $this->listener = $listener; + } + + protected function fireEventWithOutput(Manager $manager, $eventType) + { + $output = ''; + + ob_start(); + $manager->fire($eventType, $this); + $output .= ob_get_contents(); + ob_end_clean(); + + return $output; + } +} diff --git a/tests/unit/Events/ManagerTest.php b/tests/unit/Events/ManagerTest.php deleted file mode 100644 index 6795933d0e4..00000000000 --- a/tests/unit/Events/ManagerTest.php +++ /dev/null @@ -1,356 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Events - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ManagerTest extends UnitTest -{ - protected $listener; - - /** - * executed before each test - */ - public function _before() - { - parent::_before(); - - include_once PATH_DATA . 'events/ComponentX.php'; - include_once PATH_DATA . 'events/ComponentY.php'; - } - - /** - * Tests attaching event listeners by event name after detaching all - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/1331 - * @author Kamil Skowron - * @since 2014-05-28 - */ - public function attachingListenersByEventNameAfterDetachingAll() - { - $this->specify( - 'Attaching event listeners by event name fails if preceded by detachment of all listeners for that type', - function () { - $first = new FirstListener(); - $second = new SecondListener(); - - $component = new ComponentX(); - - $eventsManager = new Manager(); - $eventsManager->attach('log', $first); - - $component->setEventsManager($eventsManager); - - $logListeners = $component->getEventsManager()->getListeners('log'); - - expect($logListeners)->count(1); - expect($logListeners[0])->isInstanceOf(FirstListener::class); - - $component->getEventsManager()->attach('log', $second); - $logListeners = $component->getEventsManager()->getListeners('log'); - - expect($logListeners)->count(2); - expect($logListeners[0])->isInstanceOf(FirstListener::class); - expect($logListeners[1])->isInstanceOf(SecondListener::class); - - $component->getEventsManager()->detachAll('log'); - $logListeners = $component->getEventsManager()->getListeners('log'); - - expect($logListeners)->isEmpty(); - - $component->getEventsManager()->attach('log', $second); - $logListeners = $component->getEventsManager()->getListeners('log'); - - expect($logListeners)->count(1); - expect($logListeners[0])->isInstanceOf(SecondListener::class); - } - ); - } - - /** - * Tests using event listeners - * - * @test - * @author Andres Gutierrez - * @since 2012-08-14 - */ - public function usingEvents() - { - $this->specify( - 'Using event listeners does not work as expected', - function () { - $listener1 = new ThirdListener(); - $listener1->setTestCase($this); - - $listener2 = new ThirdListener(); - $listener2->setTestCase($this); - - $eventsManager = new Manager(); - $eventsManager->attach('dummy', $listener1); - - $componentX = new ComponentX(); - $componentX->setEventsManager($eventsManager); - - $componentY = new ComponentY(); - $componentY->setEventsManager($eventsManager); - - $componentX->leAction(); - $componentX->leAction(); - - $componentY->leAction(); - $componentY->leAction(); - $componentY->leAction(); - - expect($listener1->getBeforeCount())->equals(2); - expect($listener1->getAfterCount())->equals(2); - - $eventsManager->attach('dummy', $listener2); - - $componentX->leAction(); - $componentX->leAction(); - - expect($listener1->getBeforeCount())->equals(4); - expect($listener1->getAfterCount())->equals(4); - - expect($listener2->getBeforeCount())->equals(2); - expect($listener2->getAfterCount())->equals(2); - - expect($this->listener)->same($listener2); - - $eventsManager->detach('dummy', $listener1); - - $componentX->leAction(); - $componentX->leAction(); - - expect($listener1->getBeforeCount())->equals(4); - expect($listener1->getAfterCount())->equals(4); - - expect($listener2->getBeforeCount())->equals(4); - expect($listener2->getAfterCount())->equals(4); - } - ); - } - - /** - * Tests using events with priority - * - * @test - * @author Vladimir Khramov - * @since 2014-12-09 - */ - public function usingEventsWithPriority() - { - $this->specify( - 'Using event listeners with priority does not work as expected', - function () { - $listener1 = new ThirdListener(); - $listener1->setTestCase($this); - - $listener2 = new ThirdListener(); - $listener2->setTestCase($this); - - $eventsManager = new Manager(); - $eventsManager->enablePriorities(true); - - $eventsManager->attach('dummy', $listener1, 100); - - $componentX = new ComponentX(); - $componentX->setEventsManager($eventsManager); - - $componentY = new ComponentY(); - $componentY->setEventsManager($eventsManager); - - $componentX->leAction(); - $componentX->leAction(); - - $componentY->leAction(); - $componentY->leAction(); - $componentY->leAction(); - - expect($listener1->getBeforeCount())->equals(2); - expect($listener1->getAfterCount())->equals(2); - - $eventsManager->attach('dummy', $listener2, 150); - - $componentX->leAction(); - $componentX->leAction(); - - expect($listener1->getBeforeCount())->equals(4); - expect($listener1->getAfterCount())->equals(4); - - expect($listener2->getBeforeCount())->equals(2); - expect($listener2->getAfterCount())->equals(2); - - expect($this->listener)->same($listener1); - - $eventsManager->detach('dummy', $listener1); - - $componentX->leAction(); - $componentX->leAction(); - - expect($listener1->getBeforeCount())->equals(4); - expect($listener1->getAfterCount())->equals(4); - - expect($listener2->getBeforeCount())->equals(4); - expect($listener2->getAfterCount())->equals(4); - } - ); - } - - /** - * Tests using events propagation - * - * @test - * @author Andres Gutierrez - * @since 2012-11-11 - */ - public function stopEventsInEventsManager() - { - $this->specify( - 'The ability to stop events in EventsManager does not work as expected', - function () { - $number = 0; - $eventsManager = new Manager(); - - $propagationListener = function (Event $event, $component, $data) use (&$number) { - $number++; - $event->stop(); - }; - - $eventsManager->attach('some-type', $propagationListener); - $eventsManager->attach('some-type', $propagationListener); - - $eventsManager->fire('some-type:beforeSome', $this); - - expect($number)->equals(1); - } - ); - } - - /** - * Tests detach handler by using a Closure - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/12882 - * @author Serghei Iakovlev - * @since 2017-06-06 - */ - public function detachClosureListener() - { - $this->specify( - 'The Events Manager does not detach listener by using a Closure', - function ($enablePriorities) { - $manager = new Manager(); - $manager->enablePriorities($enablePriorities); - - $handler = function () { - echo __METHOD__; - }; - - $manager->attach('test:detachable', $handler); - $events = $this->tester->getProtectedProperty($manager, '_events'); - - expect($events)->count(1); - expect(array_key_exists('test:detachable', $events))->true(); - expect($events['test:detachable'])->count(1); - - $manager->detach('test:detachable', $handler); - - $events = $this->tester->getProtectedProperty($manager, '_events'); - - expect($events)->count(1); - expect(array_key_exists('test:detachable', $events))->true(); - expect($events['test:detachable'])->count(0); - }, - [ - 'examples' => [ - [true ], - [false], - ] - ] - ); - } - - /** - * Tests detach handler by using an Object - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/12882 - * @author Serghei Iakovlev - * @since 2017-06-06 - */ - public function detachObjectListener() - { - $this->specify( - 'The Events Manager does not detach listener by using an Object', - function ($enablePriorities) { - $manager = new Manager(); - $manager->enablePriorities($enablePriorities); - - $handler = new \stdClass(); - $manager->attach('test:detachable', $handler); - $events = $this->tester->getProtectedProperty($manager, '_events'); - - expect($events)->count(1); - expect(array_key_exists('test:detachable', $events))->true(); - expect($events['test:detachable'])->count(1); - - $manager->detach('test:detachable', $handler); - - $events = $this->tester->getProtectedProperty($manager, '_events'); - - expect($events)->count(1); - expect(array_key_exists('test:detachable', $events))->true(); - expect($events['test:detachable'])->count(0); - }, - [ - 'examples' => [ - [true ], - [false], - ] - ] - ); - } - - public function setLastListener($listener) - { - $this->listener = $listener; - } - - protected function fireEventWithOutput(Manager $manager, $eventType) - { - $output = ''; - - ob_start(); - $manager->fire($eventType, $this); - $output .= ob_get_contents(); - ob_end_clean(); - - return $output; - } -} diff --git a/tests/unit/Factory/Helper/FactoryBase.php b/tests/unit/Factory/Helper/FactoryBase.php deleted file mode 100644 index 4b4029f745b..00000000000 --- a/tests/unit/Factory/Helper/FactoryBase.php +++ /dev/null @@ -1,30 +0,0 @@ -config = new Ini(PATH_DATA."config/factory.ini", INI_SCANNER_NORMAL); - $this->arrayConfig = $this->config->toArray(); - } -} diff --git a/tests/unit/Factory/LoadCest.php b/tests/unit/Factory/LoadCest.php new file mode 100644 index 00000000000..e13e18c7fad --- /dev/null +++ b/tests/unit/Factory/LoadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Factory; + +use UnitTester; + +class LoadCest +{ + /** + * Tests Phalcon\Factory :: load() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function factoryLoad(UnitTester $I) + { + $I->wantToTest("Factory - load()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Filter/AddCest.php b/tests/unit/Filter/AddCest.php new file mode 100644 index 00000000000..2691b537a9c --- /dev/null +++ b/tests/unit/Filter/AddCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Filter; + +use UnitTester; + +class AddCest +{ + /** + * Tests Phalcon\Filter :: add() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function filterAdd(UnitTester $I) + { + $I->wantToTest("Filter - add()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Filter/FilterAlphanumCest.php b/tests/unit/Filter/FilterAlphanumCest.php new file mode 100644 index 00000000000..eaedd73483f --- /dev/null +++ b/tests/unit/Filter/FilterAlphanumCest.php @@ -0,0 +1,71 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Filter; + +use Phalcon\Filter; +use Phalcon\Test\Unit\Filter\Helper\FilterBase; +use UnitTester; + +class FilterAlphanumCest extends FilterBase +{ + /** + * Tests Alphanum with an integer using constant + * + * @author Phalcon Team + * @since 2015-04-21 + */ + public function testSanitizeAlphanumIntegerConstant(UnitTester $I) + { + $expected = '0'; + $value = 0; + $this->sanitizer($I, Filter::FILTER_ALPHANUM, $expected, $value); + } + + /** + * Tests Alphanum with an integer + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeAlphanumInteger(UnitTester $I) + { + $expected = '0'; + $value = 0; + $this->sanitizer($I, 'alphanum', $expected, $value); + } + + /** + * Tests Alphanum with a null + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeAlphanumNull(UnitTester $I) + { + $expected = ''; + $value = null; + $this->sanitizer($I, 'alphanum', $expected, $value); + } + + /** + * Tests Alphanum with a mixed string + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeAlphanumMixed(UnitTester $I) + { + $expected = 'a5xkat1sXan'; + $value = '?a&5xka\tŧ?1-s.Xa[\n'; + $this->sanitizer($I, 'alphanum', $expected, $value); + } +} diff --git a/tests/unit/Filter/FilterAlphanumTest.php b/tests/unit/Filter/FilterAlphanumTest.php deleted file mode 100644 index fca0f6a4b92..00000000000 --- a/tests/unit/Filter/FilterAlphanumTest.php +++ /dev/null @@ -1,97 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Filter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FilterAlphanumTest extends Helper\FilterBase -{ - /** - * Tests Alphanum with an integer using constant - * - * @author Nikolaos Dimopoulos - * @since 2015-04-21 - */ - public function testSanitizeAlphanumIntegerConstant() - { - $this->specify( - "Alphanum integer (constant) filter is not correct", - function () { - $expected = '0'; - $value = 0; - $this->sanitizer(Filter::FILTER_ALPHANUM, $expected, $value); - } - ); - } - - /** - * Tests Alphanum with an integer - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeAlphanumInteger() - { - $this->specify( - "Alphanum integer filter is not correct", - function () { - $expected = '0'; - $value = 0; - $this->sanitizer('alphanum', $expected, $value); - } - ); - } - - /** - * Tests Alphanum with a null - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeAlphanumNull() - { - $this->specify( - "Alphanum null filter is not correct", - function () { - $expected = ''; - $value = null; - $this->sanitizer('alphanum', $expected, $value); - } - ); - } - - /** - * Tests Alphanum with a mixed string - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeAlphanumMixed() - { - $this->specify( - "Alphanum mixed string filter is not correct", - function () { - $expected = 'a5xkat1sXan'; - $value = '?a&5xka\tŧ?1-s.Xa[\n'; - $this->sanitizer('alphanum', $expected, $value); - } - ); - } -} diff --git a/tests/unit/Filter/FilterCustomCest.php b/tests/unit/Filter/FilterCustomCest.php new file mode 100644 index 00000000000..a8530bb2b2f --- /dev/null +++ b/tests/unit/Filter/FilterCustomCest.php @@ -0,0 +1,118 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Filter; + +use Phalcon\Filter; +use Phalcon\Test\Unit\Filter\Helper\FilterBase; +use Phalcon\Test\Unit\Filter\Helper\IPv4; +use UnitTester; + +class FilterCustomCest extends FilterBase +{ + /** + * Tests a custom filter IPv4 + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeCustomIpv4FilterHex(UnitTester $I) + { + $filter = new Filter(); + $filter->add('ipv4', new IPv4()); + + $actual = $filter->sanitize('00:1c:42:bf:71:22', 'ipv4'); + $I->assertEmpty($actual); + } + + /** + * Tests a custom filter IPv4 IP + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeCustomIpv4FilterIP(UnitTester $I) + { + $filter = new Filter(); + $filter->add('ipv4', new IPv4()); + + $expected = '127.0.0.1'; + $actual = $filter->sanitize('127.0.0.1', 'ipv4'); + $I->assertEquals($expected, $actual); + } + + /** + * Tests a custom filter Lambda + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeCustomLambdaFalse(UnitTester $I) + { + $filter = new Filter(); + $filter->add( + 'md5', + function ($value) { + $filtered = preg_replace('/[^0-9a-f]/', '', $value); + + return (strlen($filtered) != 32) ? false : $value; + } + ); + + $actual = $filter->sanitize('Lladlad12', 'md5'); + $I->assertFalse($actual); + } + + /** + * Tests a custom filter Lambda + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeCustomLambdaFalseTrue(UnitTester $I) + { + $filter = new Filter(); + $filter->add( + 'md5', + function ($value) { + $filtered = preg_replace('/[^0-9a-f]/', '', $value); + + return (strlen($filtered) != 32) ? false : $value; + } + ); + + $expected = md5('why?'); + $actual = $filter->sanitize($expected, 'md5'); + $I->assertEquals($expected, $actual); + } + + /** + * Tests a custom callable filter + * + * @author Phalcon Team + * @since 2016-04-15 + * @issue https://github.com/phalcon/cphalcon/issues/11581 + */ + public function testSanitizeCustomCallableFilterIp(UnitTester $I) + { + $filter = new Filter(); + $filter->add('ipv4', [$this, 'ipv4callback']); + + $expected = '127.0.0.1'; + $actual = $filter->sanitize('127.0.0.1', 'ipv4'); + $I->assertEquals($expected, $actual); + } + + public function ipv4callback($value) + { + return filter_var($value, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4); + } +} diff --git a/tests/unit/Filter/FilterCustomTest.php b/tests/unit/Filter/FilterCustomTest.php deleted file mode 100644 index 14e97590032..00000000000 --- a/tests/unit/Filter/FilterCustomTest.php +++ /dev/null @@ -1,151 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Filter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FilterCustomTest extends Helper\FilterBase -{ - /** - * Tests a custom filter IPv4 - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeCustomIpv4FilterHex() - { - $this->specify( - "custom filter does not return correct hex", - function () { - $filter = new Filter(); - - $filter->add('ipv4', new IPv4()); - - expect($filter->sanitize('00:1c:42:bf:71:22', 'ipv4'))->isEmpty(); - } - ); - } - - /** - * Tests a custom filter IPv4 IP - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeCustomIpv4FilterIP() - { - $this->specify( - "custom filter does not return correct IP", - function () { - $filter = new Filter(); - - $filter->add('ipv4', new IPv4()); - - $expected = '127.0.0.1'; - $actual = $filter->sanitize('127.0.0.1', 'ipv4'); - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests a custom filter Lambda - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeCustomLambdaFalse() - { - $this->specify( - "lambda custom filter does not return false", - function () { - $filter = new Filter(); - - $filter->add( - 'md5', - function ($value) { - $filtered = preg_replace('/[^0-9a-f]/', '', $value); - - return (strlen($filtered) != 32) ? false : $value; - } - ); - - $actual = $filter->sanitize('Lladlad12', 'md5'); - expect($actual)->false(); - } - ); - } - - /** - * Tests a custom filter Lambda - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeCustomLambdaFalseTrue() - { - $this->specify( - "lambda custom filter does not return true", - function () { - $filter = new Filter(); - - $filter->add( - 'md5', - function ($value) { - $filtered = preg_replace('/[^0-9a-f]/', '', $value); - - return (strlen($filtered) != 32) ? false : $value; - } - ); - - $expected = md5('why?'); - $actual = $filter->sanitize($expected, 'md5'); - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests a custom callable filter - * - * @author Serghei Iakovlev - * @since 2016-04-15 - * @issue https://github.com/phalcon/cphalcon/issues/11581 - */ - public function testSanitizeCustomCallableFilterIp() - { - $this->specify( - "callable filter does not return correct IP", - function () { - $filter = new Filter(); - - $filter->add('ipv4', [$this, 'ipv4callback']); - - expect($filter->sanitize('127.0.0.1', 'ipv4'))->equals('127.0.0.1'); - } - ); - } - - public function ipv4callback($value) - { - return filter_var($value, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4); - } -} diff --git a/tests/unit/Filter/FilterEmailCest.php b/tests/unit/Filter/FilterEmailCest.php new file mode 100644 index 00000000000..84b7bb9090b --- /dev/null +++ b/tests/unit/Filter/FilterEmailCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Filter; + +use Phalcon\Filter; +use Phalcon\Test\Unit\Filter\Helper\FilterBase; +use UnitTester; + +class FilterEmailCest extends FilterBase +{ + /** + * Tests Email + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeEmail(UnitTester $I) + { + $expected = 'someone@example.com'; + $value = 'some(one)@exa\\mple.com'; + $this->sanitizer($I, 'email', $expected, $value); + + $expected = '!first.guy@*my-domain**##.com.rx'; + $value = '!(first.guy) + @*my-domain**##.com.rx//'; + $this->sanitizer($I, 'email', $expected, $value); + } +} diff --git a/tests/unit/Filter/FilterEmailTest.php b/tests/unit/Filter/FilterEmailTest.php deleted file mode 100644 index 03624b96c42..00000000000 --- a/tests/unit/Filter/FilterEmailTest.php +++ /dev/null @@ -1,46 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Filter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FilterEmailTest extends Helper\FilterBase -{ - /** - * Tests Email - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeEmail() - { - $this->specify( - "sanitizing email does not return the correct email", - function () { - $expected = 'someone@example.com'; - $value = 'some(one)@exa\\mple.com'; - $this->sanitizer('email', $expected, $value); - - $expected = '!first.guy@*my-domain**##.com.rx'; - $value = '!(first.guy) - @*my-domain**##.com.rx//'; - $this->sanitizer('email', $expected, $value); - } - ); - } -} diff --git a/tests/unit/Filter/FilterFloatCest.php b/tests/unit/Filter/FilterFloatCest.php new file mode 100644 index 00000000000..7f69b7cbaa8 --- /dev/null +++ b/tests/unit/Filter/FilterFloatCest.php @@ -0,0 +1,74 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Filter; + +use Phalcon\Filter; +use Phalcon\Test\Unit\Filter\Helper\FilterBase; +use UnitTester; + +class FilterFloatCest extends FilterBase +{ + /** + * Tests sanitizing a float with float filter + * + * @author Nikos Dimopoulos + * @since 2012-11-30 + */ + public function testSanitizeFloatFloat(UnitTester $I) + { + $this->sanitizer($I, 'float', 1000.01, '1000.01'); + } + + /** + * Tests sanitizing a hex with float filter + * + * @author Nikos Dimopoulos + * @since 2012-11-30 + */ + public function testSanitizeFloatHex(UnitTester $I) + { + $this->sanitizer($I, 'float', 0xFFA, 0xFFA); + } + + /** + * Tests sanitizing a string number with float filter + * + * @author Nikos Dimopoulos + * @since 2012-11-30 + */ + public function testSanitizeFloatStringNumber(UnitTester $I) + { + $this->sanitizer($I, 'float', '1000.01', '1000.01'); + } + + /** + * Tests sanitizing a string with float filter + * + * @author Nikos Dimopoulos + * @since 2012-11-30 + */ + public function testSanitizeFloatString(UnitTester $I) + { + $this->sanitizer($I, 'float', '', 'lol'); + } + + /** + * Tests sanitizing a string with float filter + * + * @author Nikos Dimopoulos + * @since 2012-11-30 + */ + public function testSanitizeFloatStringCombined(UnitTester $I) + { + $this->sanitizer($I, 'float', '10001901.01', '!10001901.01a'); + } +} diff --git a/tests/unit/Filter/FilterFloatTest.php b/tests/unit/Filter/FilterFloatTest.php deleted file mode 100644 index 4fcd6d42457..00000000000 --- a/tests/unit/Filter/FilterFloatTest.php +++ /dev/null @@ -1,103 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Filter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FilterFloatTest extends Helper\FilterBase -{ - /** - * Tests sanitizing a float with float filter - * - * @author Nikos Dimopoulos - * @since 2012-11-30 - */ - public function testSanitizeFloatFloat() - { - $this->specify( - "sanitizing float with float filter not correct", - function () { - $this->sanitizer('float', 1000.01, '1000.01'); - } - ); - } - - /** - * Tests sanitizing a hex with float filter - * - * @author Nikos Dimopoulos - * @since 2012-11-30 - */ - public function testSanitizeFloatHex() - { - $this->specify( - "sanitizing hex with float filter not correct", - function () { - $this->sanitizer('float', 0xFFA, 0xFFA); - } - ); - } - - /** - * Tests sanitizing a string number with float filter - * - * @author Nikos Dimopoulos - * @since 2012-11-30 - */ - public function testSanitizeFloatStringNumber() - { - $this->specify( - "sanitizing string number with float filter not correct", - function () { - $this->sanitizer('float', '1000.01', '1000.01'); - } - ); - } - - /** - * Tests sanitizing a string with float filter - * - * @author Nikos Dimopoulos - * @since 2012-11-30 - */ - public function testSanitizeFloatString() - { - $this->specify( - "sanitizing string with float filter not correct", - function () { - $this->sanitizer('float', '', 'lol'); - } - ); - } - - /** - * Tests sanitizing a string with float filter - * - * @author Nikos Dimopoulos - * @since 2012-11-30 - */ - public function testSanitizeFloatStringCombined() - { - $this->specify( - "sanitizing string combined with float filter not correct", - function () { - $this->sanitizer('float', '10001901.01', '!10001901.01a'); - } - ); - } -} diff --git a/tests/unit/Filter/FilterIntegerCest.php b/tests/unit/Filter/FilterIntegerCest.php new file mode 100644 index 00000000000..34eaeccd573 --- /dev/null +++ b/tests/unit/Filter/FilterIntegerCest.php @@ -0,0 +1,107 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Filter; + +use Phalcon\Filter; +use Phalcon\Test\Unit\Filter\Helper\FilterBase; +use UnitTester; + +class FilterIntegerCest extends FilterBase +{ + /** + * Tests sanitizing an integer with abs integer filter with constant + * + * @author Nikos Dimopoulos + * @since 2015-04-21 + */ + public function testSanitizeAbsIntegerInteger(UnitTester $I) + { + $this->sanitizer($I, Filter::FILTER_ABSINT, 125, -125); + } + + /** + * Tests sanitizing a string with abs integer filter with constant + * + * @author Nikos Dimopoulos + * @since 2015-04-21 + */ + public function testSanitizeAbsIntegerString(UnitTester $I) + { + $this->sanitizer($I, Filter::FILTER_ABSINT, 125, '-125'); + } + + /** + * Tests sanitizing an integer with integer filter with constant + * + * @author Nikos Dimopoulos + * @since 2015-04-21 + */ + public function testSanitizeIntegerIntegerConstant(UnitTester $I) + { + $this->sanitizer($I, Filter::FILTER_INT, 1000, 1000); + } + + /** + * Tests sanitizing an integer with integer filter + * + * @author Nikos Dimopoulos + * @since 2012-11-30 + */ + public function testSanitizeIntegerInteger(UnitTester $I) + { + $this->sanitizer($I, 'int', 1000, 1000); + } + + /** + * Tests sanitizing a hex with integer filter + * + * @author Nikos Dimopoulos + * @since 2012-11-30 + */ + public function testSanitizeIntegerHex(UnitTester $I) + { + $this->sanitizer($I, 'int', 0xFFA, 0xFFA); + } + + /** + * Tests sanitizing a string number with integer filter + * + * @author Nikos Dimopoulos + * @since 2012-11-30 + */ + public function testSanitizeIntegerStringNumber(UnitTester $I) + { + $this->sanitizer($I, 'int', '1000', '1000'); + } + + /** + * Tests sanitizing a string with integer filter + * + * @author Nikos Dimopoulos + * @since 2012-11-30 + */ + public function testSanitizeIntegerString(UnitTester $I) + { + $this->sanitizer($I, 'int', '', 'lol'); + } + + /** + * Tests sanitizing a string with integer filter + * + * @author Nikos Dimopoulos + * @since 2012-11-30 + */ + public function testSanitizeIntegerStringCombined(UnitTester $I) + { + $this->sanitizer($I, 'int', '10001901', '!100a019.01a'); + } +} diff --git a/tests/unit/Filter/FilterIntegerTest.php b/tests/unit/Filter/FilterIntegerTest.php deleted file mode 100644 index e0ee362530a..00000000000 --- a/tests/unit/Filter/FilterIntegerTest.php +++ /dev/null @@ -1,153 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Filter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FilterIntegerTest extends Helper\FilterBase -{ - /** - * Tests sanitizing an integer with abs integer filter with constant - * - * @author Nikos Dimopoulos - * @since 2015-04-21 - */ - public function testSanitizeAbsIntegerInteger() - { - $this->specify( - "sanitizing integer with abs int filter not correct", - function () { - $this->sanitizer(Filter::FILTER_ABSINT, 125, -125); - } - ); - } - - /** - * Tests sanitizing a string with abs integer filter with constant - * - * @author Nikos Dimopoulos - * @since 2015-04-21 - */ - public function testSanitizeAbsIntegerString() - { - $this->specify( - "sanitizing string with abs int filter not correct", - function () { - $this->sanitizer(Filter::FILTER_ABSINT, 125, '-125'); - } - ); - } - - /** - * Tests sanitizing an integer with integer filter with constant - * - * @author Nikos Dimopoulos - * @since 2015-04-21 - */ - public function testSanitizeIntegerIntegerConstant() - { - $this->specify( - "sanitizing integer with int filter not correct", - function () { - $this->sanitizer(Filter::FILTER_INT, 1000, 1000); - } - ); - } - - /** - * Tests sanitizing an integer with integer filter - * - * @author Nikos Dimopoulos - * @since 2012-11-30 - */ - public function testSanitizeIntegerInteger() - { - $this->specify( - "sanitizing integer with int filter not correct", - function () { - $this->sanitizer('int', 1000, 1000); - } - ); - } - - /** - * Tests sanitizing a hex with integer filter - * - * @author Nikos Dimopoulos - * @since 2012-11-30 - */ - public function testSanitizeIntegerHex() - { - $this->specify( - "sanitizing hex with int filter not correct", - function () { - $this->sanitizer('int', 0xFFA, 0xFFA); - } - ); - } - - /** - * Tests sanitizing a string number with integer filter - * - * @author Nikos Dimopoulos - * @since 2012-11-30 - */ - public function testSanitizeIntegerStringNumber() - { - $this->specify( - "sanitizing string number with int filter not correct", - function () { - $this->sanitizer('int', '1000', '1000'); - } - ); - } - - /** - * Tests sanitizing a string with integer filter - * - * @author Nikos Dimopoulos - * @since 2012-11-30 - */ - public function testSanitizeIntegerString() - { - $this->specify( - "sanitizing string with int filter not correct", - function () { - $this->sanitizer('int', '', 'lol'); - } - ); - } - - /** - * Tests sanitizing a string with integer filter - * - * @author Nikos Dimopoulos - * @since 2012-11-30 - */ - public function testSanitizeIntegerStringCombined() - { - $this->specify( - "sanitizing string combined with int filter not correct", - function () { - $this->sanitizer('int', '10001901', '!100a019.01a'); - } - ); - } -} diff --git a/tests/unit/Filter/FilterMultipleCest.php b/tests/unit/Filter/FilterMultipleCest.php new file mode 100644 index 00000000000..b25ba2bd120 --- /dev/null +++ b/tests/unit/Filter/FilterMultipleCest.php @@ -0,0 +1,58 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Filter; + +use Phalcon\Filter; +use Phalcon\Test\Unit\Filter\Helper\FilterBase; +use UnitTester; + +class FilterMultipleCest extends FilterBase +{ + /** + * Tests sanitizing string with filters + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeStringWithMultipleFilters(UnitTester $I) + { + $expected = 'lol'; + $value = ' lol<<< '; + $this->sanitizer($I, ['string', 'trim'], $expected, $value); + } + + /** + * Tests sanitizing array with filters + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeArray(UnitTester $I) + { + $expected = ['1', '2', '3']; + $value = [' 1 ', ' 2', '3 ']; + $this->sanitizer($I, 'trim', $expected, $value); + } + + /** + * Tests sanitizing array with multiple filters + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeArrayWithMultipleFilters(UnitTester $I) + { + $expected = ['1', '2', '3']; + $value = [' 1 ', '

2

', '

3

']; + $this->sanitizer($I, ['trim', 'striptags'], $expected, $value); + } +} diff --git a/tests/unit/Filter/FilterMultipleTest.php b/tests/unit/Filter/FilterMultipleTest.php deleted file mode 100644 index b1601fc3bc2..00000000000 --- a/tests/unit/Filter/FilterMultipleTest.php +++ /dev/null @@ -1,77 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Filter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FilterMultipleTest extends Helper\FilterBase -{ - /** - * Tests sanitizing string with filters - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeStringWithMultipleFilters() - { - $this->specify( - "string with multiple filters does not return the correct result", - function () { - $expected = 'lol'; - $value = ' lol<<< '; - $this->sanitizer(['string', 'trim'], $expected, $value); - } - ); - } - - /** - * Tests sanitizing array with filters - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeArray() - { - $this->specify( - "array does not return the correct result", - function () { - $expected = ['1', '2', '3']; - $value = [' 1 ', ' 2', '3 ']; - $this->sanitizer('trim', $expected, $value); - } - ); - } - - /** - * Tests sanitizing array with multiple filters - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeArrayWithMultipleFilters() - { - $this->specify( - "array with multiple filters does not return the correct result", - function () { - $expected = ['1', '2', '3']; - $value = [' 1 ', '

2

', '

3

']; - $this->sanitizer(['trim', 'striptags'], $expected, $value); - } - ); - } -} diff --git a/tests/unit/Filter/FilterSpecialCharsCest.php b/tests/unit/Filter/FilterSpecialCharsCest.php new file mode 100644 index 00000000000..8b1a989babd --- /dev/null +++ b/tests/unit/Filter/FilterSpecialCharsCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Filter; + +use Phalcon\Filter; +use Phalcon\Test\Unit\Filter\Helper\FilterBase; +use UnitTester; + +class FilterSpecialCharsCest extends FilterBase +{ + /** + * Tests Sanitize special characters + * + * @author Zamrony P. Juhara + * @since 2017-03-23 + */ + public function testSanitizeSpecialChars(UnitTester $I) + { + $expected = 'This is <html> tags'; + $value = 'This is tags'; + $this->sanitizer($I, 'special_chars', $expected, $value); + } +} diff --git a/tests/unit/Filter/FilterSpecialCharsTest.php b/tests/unit/Filter/FilterSpecialCharsTest.php deleted file mode 100644 index b8e4d257cad..00000000000 --- a/tests/unit/Filter/FilterSpecialCharsTest.php +++ /dev/null @@ -1,42 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @author Zamrony P. Juhara - * @package Phalcon\Test\Unit\Filter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FilterSpecialCharsTest extends Helper\FilterBase -{ - /** - * Tests Sanitize special characters - * - * @author Zamrony P. Juhara - * @since 2017-03-23 - */ - public function testSanitizeSpecialChars() - { - $this->specify( - "sanitizing special characters does not return correct string", - function () { - $expected = 'This is <html> tags'; - $value = 'This is tags'; - $this->sanitizer('special_chars', $expected, $value); - } - ); - } -} diff --git a/tests/unit/Filter/FilterStringCest.php b/tests/unit/Filter/FilterStringCest.php new file mode 100644 index 00000000000..bdb586d0385 --- /dev/null +++ b/tests/unit/Filter/FilterStringCest.php @@ -0,0 +1,141 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Filter; + +use Phalcon\Filter; +use Phalcon\Test\Unit\Filter\Helper\FilterBase; +use UnitTester; + +class FilterStringCest extends FilterBase +{ + /** + * Tests the filter with a string (US characters) + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeStringStringFilter(UnitTester $I) + { + $value = 'abcdefghijklmnopqrstuvwzyx1234567890!@#$%^&*()_ `~=+<>'; + $expected = 'abcdefghijklmnopqrstuvwzyx1234567890!@#$%^&*()_ `~=+'; + $this->sanitizer($I, 'string', $expected, $value); + } + + /** + * Tests the filter with a string with french quotes + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeStringStringFrenchQuotesFilter(UnitTester $I) + { + $value = "{[]}"; + $expected = '{[]}'; + $this->sanitizer($I, 'string', $expected, $value); + } + + /** + * Tests the filter with a string (International characters) + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeStringUTF8StringFilter(UnitTester $I) + { + $value = 'buenos días123καλημέρα!@#$%^&*早安()_ `~=+<>'; + $expected = 'buenos días123καλημέρα!@#$%^&*早安()_ `~=+'; + $this->sanitizer($I, 'string', $expected, $value); + + $value = '{[]}'; + $expected = '{[]}'; + $this->sanitizer($I, 'string', $expected, $value); + } + + /** + * Tests the filter with an array filter (US characters) + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeStringArrayFilter(UnitTester $I) + { + $value = 'abcdefghijklmnopqrstuvwzyx1234567890!@#$%^&*()_ `~=+<>'; + $expected = 'abcdefghijklmnopqrstuvwzyx1234567890!@#$%^&*()_ `~=+'; + $this->sanitizer($I, ['string'], $expected, $value); + } + + /** + * Tests the filter with an array filter (International characters) + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeStringUTF8ArrayFilter(UnitTester $I) + { + $value = 'buenos días123καλημέρα!@#$%^&*早安()_ `~=+<>'; + $expected = 'buenos días123καλημέρα!@#$%^&*早安()_ `~=+'; + $this->sanitizer($I, ['string'], $expected, $value); + } + + /** + * Tests the filter with a string (no filtering) (US characters) + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeStringStringFilterValidString(UnitTester $I) + { + $value = 'abcdefghijklmnopqrstuvwzyx1234567890!@#$%^&*()_ `~=+'; + $expected = 'abcdefghijklmnopqrstuvwzyx1234567890!@#$%^&*()_ `~=+'; + $this->sanitizer($I, 'string', $expected, $value); + } + + /** + * Tests the filter with a string (no filtering) (International characters) + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeStringUTF8StringFilterValidString(UnitTester $I) + { + $value = 'buenos días123καλημέρα!@#$%^&*早安()_ `~=+'; + $expected = 'buenos días123καλημέρα!@#$%^&*早安()_ `~=+'; + $this->sanitizer($I, 'string', $expected, $value); + } + + /** + * Tests the filter with an array filter (no filtering) (US characters) + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeArrayFilterValidString(UnitTester $I) + { + $value = 'abcdefghijklmnopqrstuvwzyx1234567890!@#$%^&*()_ `~=+'; + $expected = 'abcdefghijklmnopqrstuvwzyx1234567890!@#$%^&*()_ `~=+'; + $this->sanitizer($I, ['string'], $expected, $value); + } + + /** + * Tests the filter with an array filter (no filtering) + * (International characters) + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeUTF8ArrayFilterValidStringNoFilter(UnitTester $I) + { + $value = 'buenos días123καλημέρα!@#$%^&*早安()_ `~=+'; + $expected = 'buenos días123καλημέρα!@#$%^&*早安()_ `~=+'; + $this->sanitizer($I, ['string'], $expected, $value); + } +} diff --git a/tests/unit/Filter/FilterStringTest.php b/tests/unit/Filter/FilterStringTest.php deleted file mode 100644 index ba91a03f8a8..00000000000 --- a/tests/unit/Filter/FilterStringTest.php +++ /dev/null @@ -1,190 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Filter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FilterStringTest extends Helper\FilterBase -{ - /** - * Tests the filter with a string (US characters) - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeStringStringFilter() - { - $this->specify( - "sanitize string with latin characters does not return correct data", - function () { - $value = 'abcdefghijklmnopqrstuvwzyx1234567890!@#$%^&*()_ `~=+<>'; - $expected = 'abcdefghijklmnopqrstuvwzyx1234567890!@#$%^&*()_ `~=+'; - $this->sanitizer('string', $expected, $value); - } - ); - } - - /** - * Tests the filter with a string with french quotes - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeStringStringFrenchQuotesFilter() - { - $this->specify( - "sanitize string with latin characters does not return correct data", - function () { - $value = "{[]}"; - $expected = '{[]}'; - $this->sanitizer('string', $expected, $value); - } - ); - } - - /** - * Tests the filter with a string (International characters) - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeStringUTF8StringFilter() - { - $this->specify( - "sanitize string with international characters does not return correct data", - function () { - $value = 'buenos días123καλημέρα!@#$%^&*早安()_ `~=+<>'; - $expected = 'buenos días123καλημέρα!@#$%^&*早安()_ `~=+'; - $this->sanitizer('string', $expected, $value); - - $value = '{[]}'; - $expected = '{[]}'; - $this->sanitizer('string', $expected, $value); - } - ); - } - - /** - * Tests the filter with an array filter (US characters) - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeStringArrayFilter() - { - $this->specify( - "sanitize string with array latin characters characters does not return correct data", - function () { - $value = 'abcdefghijklmnopqrstuvwzyx1234567890!@#$%^&*()_ `~=+<>'; - $expected = 'abcdefghijklmnopqrstuvwzyx1234567890!@#$%^&*()_ `~=+'; - $this->sanitizer(['string'], $expected, $value); - } - ); - } - - /** - * Tests the filter with an array filter (International characters) - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeStringUTF8ArrayFilter() - { - $this->specify( - "sanitize string with array international characters characters does not return correct data", - function () { - $value = 'buenos días123καλημέρα!@#$%^&*早安()_ `~=+<>'; - $expected = 'buenos días123καλημέρα!@#$%^&*早安()_ `~=+'; - $this->sanitizer(['string'], $expected, $value); - } - ); - } - - /** - * Tests the filter with a string (no filtering) (US characters) - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeStringStringFilterValidString() - { - $this->specify( - "sanitize string with a valid latin string does not return correct data", - function () { - $value = 'abcdefghijklmnopqrstuvwzyx1234567890!@#$%^&*()_ `~=+'; - $expected = 'abcdefghijklmnopqrstuvwzyx1234567890!@#$%^&*()_ `~=+'; - $this->sanitizer('string', $expected, $value); - } - ); - } - - /** - * Tests the filter with a string (no filtering) (International characters) - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeStringUTF8StringFilterValidString() - { - $this->specify( - "sanitize string with a valid international string does not return correct data", - function () { - $value = 'buenos días123καλημέρα!@#$%^&*早安()_ `~=+'; - $expected = 'buenos días123καλημέρα!@#$%^&*早安()_ `~=+'; - $this->sanitizer('string', $expected, $value); - } - ); - } - - /** - * Tests the filter with an array filter (no filtering) (US characters) - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeArrayFilterValidString() - { - $this->specify( - "sanitize string array with a valid latin string does not return correct data", - function () { - $value = 'abcdefghijklmnopqrstuvwzyx1234567890!@#$%^&*()_ `~=+'; - $expected = 'abcdefghijklmnopqrstuvwzyx1234567890!@#$%^&*()_ `~=+'; - $this->sanitizer(['string'], $expected, $value); - } - ); - } - - /** - * Tests the filter with an array filter (no filtering) - * (International characters) - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeUTF8ArrayFilterValidStringNoFilter() - { - $this->specify( - "sanitize string array with a valid latin string does not return correct data", - function () { - $value = 'buenos días123καλημέρα!@#$%^&*早安()_ `~=+'; - $expected = 'buenos días123καλημέρα!@#$%^&*早安()_ `~=+'; - $this->sanitizer(['string'], $expected, $value); - } - ); - } -} diff --git a/tests/unit/Filter/FilterStriptagsCest.php b/tests/unit/Filter/FilterStriptagsCest.php new file mode 100644 index 00000000000..fa2fb871f13 --- /dev/null +++ b/tests/unit/Filter/FilterStriptagsCest.php @@ -0,0 +1,58 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Filter; + +use Phalcon\Filter; +use Phalcon\Test\Unit\Filter\Helper\FilterBase; +use UnitTester; + +class FilterStriptagsCest extends FilterBase +{ + /** + * Tests striptags filter with html + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeStriptagsHTML(UnitTester $I) + { + $expected = 'Hello'; + $value = '

Hello

'; + $this->sanitizer($I, 'striptags', $expected, $value); + } + + /** + * Tests striptags filter with broken html + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeStriptagsBrokenHTML(UnitTester $I) + { + $expected = 'Hello'; + $value = '

Hello

'; + $this->sanitizer($I, 'striptags', $expected, $value); + } + + /** + * Tests striptags filter with single html tag + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeStriptagsSingle(UnitTester $I) + { + $expected = ''; + $value = '<'; + $this->sanitizer($I, 'striptags', $expected, $value); + } +} diff --git a/tests/unit/Filter/FilterStriptagsTest.php b/tests/unit/Filter/FilterStriptagsTest.php deleted file mode 100644 index 49ec3fe076b..00000000000 --- a/tests/unit/Filter/FilterStriptagsTest.php +++ /dev/null @@ -1,77 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Filter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FilterStriptagsTest extends Helper\FilterBase -{ - /** - * Tests striptags filter with html - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeStriptagsHTML() - { - $this->specify( - "striptags html filter is not correct", - function () { - $expected = 'Hello'; - $value = '

Hello

'; - $this->sanitizer('striptags', $expected, $value); - } - ); - } - - /** - * Tests striptags filter with broken html - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeStriptagsBrokenHTML() - { - $this->specify( - "striptags html filter is not correct", - function () { - $expected = 'Hello'; - $value = '

Hello

'; - $this->sanitizer('striptags', $expected, $value); - } - ); - } - - /** - * Tests striptags filter with single html tag - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeStriptagsSingle() - { - $this->specify( - "striptags html filter is not correct", - function () { - $expected = ''; - $value = '<'; - $this->sanitizer('striptags', $expected, $value); - } - ); - } -} diff --git a/tests/unit/Filter/FilterTrimCest.php b/tests/unit/Filter/FilterTrimCest.php new file mode 100644 index 00000000000..f5e48aceb73 --- /dev/null +++ b/tests/unit/Filter/FilterTrimCest.php @@ -0,0 +1,58 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Filter; + +use Phalcon\Filter; +use Phalcon\Test\Unit\Filter\Helper\FilterBase; +use UnitTester; + +class FilterTrimCest extends FilterBase +{ + /** + * Tests Trim left + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeTrimLeft(UnitTester $I) + { + $expected = 'Hello'; + $value = ' Hello'; + $this->sanitizer($I, 'trim', $expected, $value); + } + + /** + * Tests Trim right + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeTrimRight(UnitTester $I) + { + $expected = 'Hello'; + $value = 'Hello '; + $this->sanitizer($I, 'trim', $expected, $value); + } + + /** + * Tests Trim both + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeTrimBoth(UnitTester $I) + { + $expected = 'Hello'; + $value = ' Hello '; + $this->sanitizer($I, 'trim', $expected, $value); + } +} diff --git a/tests/unit/Filter/FilterTrimTest.php b/tests/unit/Filter/FilterTrimTest.php deleted file mode 100644 index abdb16e377a..00000000000 --- a/tests/unit/Filter/FilterTrimTest.php +++ /dev/null @@ -1,77 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Filter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FilterTrimTest extends Helper\FilterBase -{ - /** - * Tests Trim left - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeTrimLeft() - { - $this->specify( - "trim left is not correct", - function () { - $expected = 'Hello'; - $value = ' Hello'; - $this->sanitizer('trim', $expected, $value); - } - ); - } - - /** - * Tests Trim right - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeTrimRight() - { - $this->specify( - "trim right is not correct", - function () { - $expected = 'Hello'; - $value = 'Hello '; - $this->sanitizer('trim', $expected, $value); - } - ); - } - - /** - * Tests Trim both - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeTrimBoth() - { - $this->specify( - "trim both is not correct", - function () { - $expected = 'Hello'; - $value = ' Hello '; - $this->sanitizer('trim', $expected, $value); - } - ); - } -} diff --git a/tests/unit/Filter/FilterUpperLowerCest.php b/tests/unit/Filter/FilterUpperLowerCest.php new file mode 100644 index 00000000000..ceaa7f445d8 --- /dev/null +++ b/tests/unit/Filter/FilterUpperLowerCest.php @@ -0,0 +1,71 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Filter; + +use Phalcon\Filter; +use Phalcon\Test\Unit\Filter\Helper\FilterBase; +use UnitTester; + +class FilterUpperLowerCest extends FilterBase +{ + /** + * Tests lower all + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeLowerAll(UnitTester $I) + { + $expected = 'hello'; + $value = 'HELLO'; + $this->sanitizer($I, 'lower', $expected, $value); + } + + /** + * Tests lower mixed + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeLowerMixed(UnitTester $I) + { + $expected = 'hello'; + $value = 'HeLlo'; + $this->sanitizer($I, 'lower', $expected, $value); + } + + /** + * Tests upper all + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeUpperAll(UnitTester $I) + { + $expected = 'HELLO'; + $value = 'hello'; + $this->sanitizer($I, 'upper', $expected, $value); + } + + /** + * Tests upper mixed + * + * @author Phalcon Team + * @since 2014-09-30 + */ + public function testSanitizeUpperMixed(UnitTester $I) + { + $expected = 'HELLO'; + $value = 'HeLlo'; + $this->sanitizer($I, 'upper', $expected, $value); + } +} diff --git a/tests/unit/Filter/FilterUpperLowerTest.php b/tests/unit/Filter/FilterUpperLowerTest.php deleted file mode 100644 index 3334bab7506..00000000000 --- a/tests/unit/Filter/FilterUpperLowerTest.php +++ /dev/null @@ -1,95 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Filter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FilterUpperLowerTest extends Helper\FilterBase -{ - /** - * Tests lower all - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeLowerAll() - { - $this->specify( - "lower all is not correct", - function () { - $expected = 'hello'; - $value = 'HELLO'; - $this->sanitizer('lower', $expected, $value); - } - ); - } - - /** - * Tests lower mixed - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeLowerMixed() - { - $this->specify( - "lower mixed is not correct", - function () { - $expected = 'hello'; - $value = 'HeLlo'; - $this->sanitizer('lower', $expected, $value); - } - ); - } - - /** - * Tests upper all - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeUpperAll() - { - $this->specify( - "upper all is not correct", - function () { - $expected = 'HELLO'; - $value = 'hello'; - $this->sanitizer('upper', $expected, $value); - } - ); - } - - /** - * Tests upper mixed - * - * @author Nikolaos Dimopoulos - * @since 2014-09-30 - */ - public function testSanitizeUpperMixed() - { - $this->specify( - "upper mixed is not correct", - function () { - $expected = 'HELLO'; - $value = 'HeLlo'; - $this->sanitizer('upper', $expected, $value); - } - ); - } -} diff --git a/tests/unit/Filter/FilterUrlCest.php b/tests/unit/Filter/FilterUrlCest.php new file mode 100644 index 00000000000..780227af301 --- /dev/null +++ b/tests/unit/Filter/FilterUrlCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Filter; + +use Phalcon\Filter; +use Phalcon\Test\Unit\Filter\Helper\FilterBase; +use UnitTester; + +class FilterUrlCest extends FilterBase +{ + /** + * Tests Url + * + * @author Zamrony P. Juhara + * @since 2017-03-23 + */ + public function testSanitizeUrl(UnitTester $I) + { + $expected = 'http://juhara.com'; + $value = 'http://juhara��.co�m'; + $this->sanitizer($I, 'url', $expected, $value); + } +} diff --git a/tests/unit/Filter/FilterUrlTest.php b/tests/unit/Filter/FilterUrlTest.php deleted file mode 100644 index fa26f669cca..00000000000 --- a/tests/unit/Filter/FilterUrlTest.php +++ /dev/null @@ -1,42 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @author Zamrony P. Juhara - * @package Phalcon\Test\Unit\Filter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FilterUrlTest extends Helper\FilterBase -{ - /** - * Tests Url - * - * @author Zamrony P. Juhara - * @since 2017-03-23 - */ - public function testSanitizeUrl() - { - $this->specify( - "sanitizing url does not return the correct url", - function () { - $expected = 'http://juhara.com'; - $value = 'http://juhara��.co�m'; - $this->sanitizer('url', $expected, $value); - } - ); - } -} diff --git a/tests/unit/Filter/GetFiltersCest.php b/tests/unit/Filter/GetFiltersCest.php new file mode 100644 index 00000000000..ea3f0a12017 --- /dev/null +++ b/tests/unit/Filter/GetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Filter; + +use UnitTester; + +class GetFiltersCest +{ + /** + * Tests Phalcon\Filter :: getFilters() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function filterGetFilters(UnitTester $I) + { + $I->wantToTest("Filter - getFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Filter/Helper/FilterBase.php b/tests/unit/Filter/Helper/FilterBase.php index d1114fa366a..bde4424ab6f 100644 --- a/tests/unit/Filter/Helper/FilterBase.php +++ b/tests/unit/Filter/Helper/FilterBase.php @@ -1,28 +1,20 @@ - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Filter\Helper + * This file is part of the Phalcon Framework. * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt + * (c) Phalcon Team * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. */ -class FilterBase extends UnitTest + +namespace Phalcon\Test\Unit\Filter\Helper; + +use Phalcon\Filter; +use UnitTester; + +class FilterBase { /** * Tests integers @@ -34,10 +26,10 @@ class FilterBase extends UnitTest * @param mixed $expected * @param mixed $value */ - protected function sanitizer($filter, $expected, $value) + protected function sanitizer(UnitTester $I, $filter, $expected, $value) { - $fl = new Filter(); + $fl = new Filter(); $actual = $fl->sanitize($value, $filter); - expect($expected)->equals($actual); + $I->assertEquals($expected, $actual); } } diff --git a/tests/unit/Filter/Helper/IPv4.php b/tests/unit/Filter/Helper/IPv4.php index bf1f0b126cb..97abb33fca5 100644 --- a/tests/unit/Filter/Helper/IPv4.php +++ b/tests/unit/Filter/Helper/IPv4.php @@ -1,30 +1,23 @@ - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Filter\Helper + * (c) Phalcon Team * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. */ + +namespace Phalcon\Test\Unit\Filter\Helper; + class IPv4 { /** * Filters data * * @param $value + * * @return mixed */ public function filter($value) diff --git a/tests/unit/Filter/SanitizeCest.php b/tests/unit/Filter/SanitizeCest.php new file mode 100644 index 00000000000..8c3c2165886 --- /dev/null +++ b/tests/unit/Filter/SanitizeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Filter; + +use UnitTester; + +class SanitizeCest +{ + /** + * Tests Phalcon\Filter :: sanitize() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function filterSanitize(UnitTester $I) + { + $I->wantToTest("Filter - sanitize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/ClearCest.php b/tests/unit/Flash/ClearCest.php new file mode 100644 index 00000000000..71a03a5d204 --- /dev/null +++ b/tests/unit/Flash/ClearCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash; + +use UnitTester; + +class ClearCest +{ + /** + * Tests Phalcon\Flash :: clear() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashClear(UnitTester $I) + { + $I->wantToTest("Flash - clear()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/ConstructCest.php b/tests/unit/Flash/ConstructCest.php new file mode 100644 index 00000000000..904b2da52f6 --- /dev/null +++ b/tests/unit/Flash/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Flash :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashConstruct(UnitTester $I) + { + $I->wantToTest("Flash - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Direct/ClearCest.php b/tests/unit/Flash/Direct/ClearCest.php new file mode 100644 index 00000000000..0f8d3c2f3d1 --- /dev/null +++ b/tests/unit/Flash/Direct/ClearCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use UnitTester; + +class ClearCest +{ + /** + * Tests Phalcon\Flash\Direct :: clear() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashDirectClear(UnitTester $I) + { + $I->wantToTest("Flash\Direct - clear()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Direct/ConstructCest.php b/tests/unit/Flash/Direct/ConstructCest.php new file mode 100644 index 00000000000..0d32d45978d --- /dev/null +++ b/tests/unit/Flash/Direct/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Flash\Direct :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashDirectConstruct(UnitTester $I) + { + $I->wantToTest("Flash\Direct - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Direct/ErrorCest.php b/tests/unit/Flash/Direct/ErrorCest.php new file mode 100644 index 00000000000..2834f37839e --- /dev/null +++ b/tests/unit/Flash/Direct/ErrorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use UnitTester; + +class ErrorCest +{ + /** + * Tests Phalcon\Flash\Direct :: error() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashDirectError(UnitTester $I) + { + $I->wantToTest("Flash\Direct - error()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Direct/FlashDirectCustomCSSCest.php b/tests/unit/Flash/Direct/FlashDirectCustomCSSCest.php new file mode 100644 index 00000000000..fafb7e5b979 --- /dev/null +++ b/tests/unit/Flash/Direct/FlashDirectCustomCSSCest.php @@ -0,0 +1,32 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use Phalcon\Test\Unit\Flash\Direct\Helper\FlashBase; +use UnitTester; + +class FlashDirectCustomCSSCest extends FlashBase +{ + public function _before(UnitTester $I) + { + parent::_before($I); + + $classes = [ + 'error' => 'alert alert-error', + 'success' => 'alert alert-success', + 'notice' => 'alert alert-notice', + 'warning' => 'alert alert-warning', + ]; + + $this->setClasses($classes); + } +} diff --git a/tests/unit/Flash/Direct/FlashDirectCustomCSSTest.php b/tests/unit/Flash/Direct/FlashDirectCustomCSSTest.php deleted file mode 100644 index 0a0f471e052..00000000000 --- a/tests/unit/Flash/Direct/FlashDirectCustomCSSTest.php +++ /dev/null @@ -1,39 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Flash\Direct - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FlashDirectCustomCSSTest extends FlashBase -{ - public function _before() - { - parent::_before(); - - $classes = [ - 'error' => 'alert alert-error', - 'success' => 'alert alert-success', - 'notice' => 'alert alert-notice', - 'warning' => 'alert alert-warning' - ]; - - $this->setClasses($classes); - } -} diff --git a/tests/unit/Flash/Direct/FlashDirectEmptyCSSCest.php b/tests/unit/Flash/Direct/FlashDirectEmptyCSSCest.php new file mode 100644 index 00000000000..911a48e06b8 --- /dev/null +++ b/tests/unit/Flash/Direct/FlashDirectEmptyCSSCest.php @@ -0,0 +1,25 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use Phalcon\Test\Unit\Flash\Direct\Helper\FlashBase; +use UnitTester; + +class FlashDirectEmptyCSSCest extends FlashBase +{ + public function _before(UnitTester $I) + { + parent::_before($I); + + $this->setClasses([]); + } +} diff --git a/tests/unit/Flash/Direct/FlashDirectEmptyCSSTest.php b/tests/unit/Flash/Direct/FlashDirectEmptyCSSTest.php deleted file mode 100644 index 8c12983c6e4..00000000000 --- a/tests/unit/Flash/Direct/FlashDirectEmptyCSSTest.php +++ /dev/null @@ -1,34 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Flash\Direct - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FlashDirectEmptyCSSTest extends FlashBase -{ - public function _before() - { - parent::_before(); - - $classes = []; - - $this->setClasses($classes); - } -} diff --git a/tests/unit/Flash/Direct/GetAutoescapeCest.php b/tests/unit/Flash/Direct/GetAutoescapeCest.php new file mode 100644 index 00000000000..cda13b9d79b --- /dev/null +++ b/tests/unit/Flash/Direct/GetAutoescapeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use UnitTester; + +class GetAutoescapeCest +{ + /** + * Tests Phalcon\Flash\Direct :: getAutoescape() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashDirectGetAutoescape(UnitTester $I) + { + $I->wantToTest("Flash\Direct - getAutoescape()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Direct/GetCustomTemplateCest.php b/tests/unit/Flash/Direct/GetCustomTemplateCest.php new file mode 100644 index 00000000000..ad52310cac3 --- /dev/null +++ b/tests/unit/Flash/Direct/GetCustomTemplateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use UnitTester; + +class GetCustomTemplateCest +{ + /** + * Tests Phalcon\Flash\Direct :: getCustomTemplate() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashDirectGetCustomTemplate(UnitTester $I) + { + $I->wantToTest("Flash\Direct - getCustomTemplate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Direct/GetDICest.php b/tests/unit/Flash/Direct/GetDICest.php new file mode 100644 index 00000000000..a5258e4cea5 --- /dev/null +++ b/tests/unit/Flash/Direct/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Flash\Direct :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashDirectGetDI(UnitTester $I) + { + $I->wantToTest("Flash\Direct - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Direct/GetEscaperServiceCest.php b/tests/unit/Flash/Direct/GetEscaperServiceCest.php new file mode 100644 index 00000000000..c95ff190d33 --- /dev/null +++ b/tests/unit/Flash/Direct/GetEscaperServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use UnitTester; + +class GetEscaperServiceCest +{ + /** + * Tests Phalcon\Flash\Direct :: getEscaperService() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashDirectGetEscaperService(UnitTester $I) + { + $I->wantToTest("Flash\Direct - getEscaperService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Direct/Helper/FlashBase.php b/tests/unit/Flash/Direct/Helper/FlashBase.php index 478e188fcce..260436f6bf4 100644 --- a/tests/unit/Flash/Direct/Helper/FlashBase.php +++ b/tests/unit/Flash/Direct/Helper/FlashBase.php @@ -1,29 +1,24 @@ - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Flash\Direct\Helper + * (c) Phalcon Team * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. */ -class FlashBase extends UnitTest + +namespace Phalcon\Test\Unit\Flash\Direct\Helper; + +use Phalcon\Flash\Direct; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use UnitTester; + +class FlashBase { + use DiTrait; + private $notImplicit = false; private $notHtml = false; private $classes = null; @@ -34,328 +29,219 @@ class FlashBase extends UnitTest 'error' => 'errorMessage', ]; - /** - * Sets the custom classes for the tests - * - * @param $classes - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - protected function setClasses($classes) + public function _before(UnitTester $I) { - $this->classes = $classes; + $this->newDi(); + $this->setDiEscaper(); } /** - * Tests error (implicit flush) + * Tests warning (implicit flush) * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-04 */ - public function testFlashDirectErrorImplicitFlushHtml() + public function testFlashDirectImplicitFlushHtml(UnitTester $I) { - $this->stringTest('error'); - } + $functions = [ + 'error', + 'success', + 'notice', + 'warning', + ]; - /** - * Tests success (implicit flush) - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testFlashDirectSuccessImplicitFlushHtml() - { - $this->stringTest('success'); + foreach ($functions as $function) { + $this->stringTest($I, $function); + } } /** - * Tests notice (implicit flush) + * Private function that tests a string with implicit flush Html * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testFlashDirectNoticeImplicitFlushHtml() - { - $this->stringTest('notice'); - } - - /** - * Tests warning (implicit flush) + * @param \UnitTester $I + * @param string $function * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-04 */ - public function testFlashDirectWarningImplicitFlushHtml() + private function stringTest(UnitTester $I, $function) { - $this->stringTest('warning'); - } + $flash = new Direct($this->classes); + $class = $this->getClass($function); + $template = '%s' . PHP_EOL; + $message = 'sample message'; - /** - * Tests error (no implicit flush) - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testFlashDirectErrorNoImplicitFlushHtml() - { - $this->notImplicit = true; - $this->stringTest('error'); - $this->notImplicit = false; - } + if ($this->notHtml) { + $flash->setAutomaticHtml(false); + $expected = $message; + } else { + $expected = sprintf($template, $class, $message); + } - /** - * Tests success (no implicit flush) - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testFlashDirectSuccessNoImplicitFlushHtml() - { - $this->notImplicit = true; - $this->stringTest('success'); - $this->notImplicit = false; - } - /** - * Tests notice (no implicit flush) - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testFlashDirectNoticeNoImplicitFlushHtml() - { - $this->notImplicit = true; - $this->stringTest('notice'); - $this->notImplicit = false; - } + if ($this->notImplicit) { + $flash->setImplicitFlush(false); + $actual = $flash->$function($message); + } else { + $actual = $this->getObResponse($flash, $function, $message); + } - /** - * Tests warning (no implicit flush) - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testFlashDirectWarningNoImplicitFlushHtml() - { - $this->notImplicit = true; - $this->stringTest('warning'); - $this->notImplicit = false; + $I->assertEquals($expected, $actual); } /** - * Tests error (implicit flush no html) + * Private function to get the class of the message depending on + * the classes set * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testFlashDirectErrorImplicitFlushNoHtml() - { - $this->notHtml = true; - $this->stringTest('error'); - $this->notHtml = false; - } - - /** - * Tests success (implicit flush no html) + * @param $key * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testFlashDirectSuccessImplicitFlushNoHtml() - { - $this->notHtml = true; - $this->stringTest('success'); - $this->notHtml = false; - } - - /** - * Tests notice (implicit flush no html) + * @return string * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-04 */ - public function testFlashDirectNoticeImplicitFlushNoHtml() + private function getClass($key) { - $this->notHtml = true; - $this->stringTest('notice'); - $this->notHtml = false; - } + $template = ' class="%s"'; - /** - * Tests warning (implicit flush no html) - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testFlashDirectWarningImplicitFlushNoHtml() - { - $this->notHtml = true; - $this->stringTest('warning'); - $this->notHtml = false; + if ([] === $this->classes) { + $class = ''; + } else { + $classes = (is_null($this->classes)) ? + $this->default : + $this->classes; + $class = sprintf($template, $classes[$key]); + } + + return $class; } /** - * Tests error (no implicit flush no html) + * Private function to start the ob, call the function, get the + * contents and clean the ob + * + * @param $flash + * @param $function + * @param $message * - * @author Nikolaos Dimopoulos + * @return string + * + * @author Phalcon Team * @since 2014-10-04 */ - public function testFlashDirectErrorNoImplicitFlushNoHtml() + private function getObResponse($flash, $function, $message) { - $this->notHtml = true; - $this->notImplicit = true; - $this->stringTest('error'); - $this->notHtml = false; - $this->notImplicit = false; + ob_start(); + $flash->$function($message); + $actual = ob_get_contents(); + ob_end_clean(); + + return $actual; } /** - * Tests success (no implicit flush no html) + * Tests warning (no implicit flush) * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-04 */ - public function testFlashDirectSuccessNoImplicitFlushNoHtml() + public function testFlashDirectNoImplicitFlushHtml(UnitTester $I) { - $this->notHtml = true; - $this->notImplicit = true; - $this->stringTest('success'); - $this->notHtml = false; - $this->notImplicit = false; + $functions = [ + 'error', + 'success', + 'notice', + 'warning', + ]; + + foreach ($functions as $function) { + $this->notImplicit = true; + $this->stringTest($I, $function); + $this->notImplicit = false; + } } /** - * Tests notice (no implicit flush no html) + * Tests warning (implicit flush no html) * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-04 */ - public function testFlashDirectNoticeNoImplicitFlushNoHtml() + public function testFlashDirectImplicitFlushNoHtml(UnitTester $I) { - $this->notHtml = true; - $this->notImplicit = true; - $this->stringTest('notice'); - $this->notHtml = false; - $this->notImplicit = false; + $functions = [ + 'error', + 'success', + 'notice', + 'warning', + ]; + + foreach ($functions as $function) { + $this->notHtml = true; + $this->stringTest($I, $function); + $this->notHtml = false; + } } /** - * Tests warning (no implicit flush no html) + * Tests error (no implicit flush no html) * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-04 */ - public function testFlashDirectWarningNoImplicitFlushNoHtml() + public function testFlashDirectNoImplicitFlushNoHtml(UnitTester $I) { - $this->notHtml = true; - $this->notImplicit = true; - $this->stringTest('warning'); - $this->notHtml = false; - $this->notImplicit = false; + $functions = [ + 'error', + 'success', + 'notice', + 'warning', + ]; + + foreach ($functions as $function) { + $this->notHtml = true; + $this->notImplicit = true; + $this->stringTest($I, $function); + $this->notHtml = false; + $this->notImplicit = false; + } } /** * Tests auto escaping * - * @author Serghei Iakovlev + * @author Phalcon Team * @issue https://github.com/phalcon/cphalcon/issues/11448 * @since 2016-06-15 */ - public function testFlashDirectWithAutoEscaping() + public function testFlashDirectWithAutoEscaping(UnitTester $I) { $flash = new Direct($this->classes); $flash->setAutomaticHtml(false); $flash->setImplicitFlush(false); - expect($flash->success("

Hello World!

"))->equals('<h1>Hello World!</h1>'); + $expected = '<h1>Hello World!</h1>'; + $actual = $flash->success("

Hello World!

"); + $I->assertEquals($expected, $actual); $flash->setAutoescape(false); - expect($flash->success("

Hello World!

"))->equals('

Hello World!

'); + $expected = '

Hello World!

'; + $actual = $flash->success("

Hello World!

"); + $I->assertEquals($expected, $actual); } /** - * Private function to get the class of the message depending on - * the classes set - * - * @param $key - * - * @return string - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - private function getClass($key) - { - $template = ' class="%s"'; - - if ([] === $this->classes) { - $class = ''; - } else { - $classes = (is_null($this->classes)) ? - $this->default : - $this->classes; - $class = sprintf($template, $classes[$key]); - } - - return $class; - } - - /** - * Private function to start the ob, call the function, get the - * contents and clean the ob - * - * @param $flash - * @param $function - * @param $message - * - * @return string - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - private function getObResponse($flash, $function, $message) - { - ob_start(); - $flash->$function($message); - $actual = ob_get_contents(); - ob_end_clean(); - - return $actual; - } - - /** - * Private function that tests a string with implicit flush Html + * Sets the custom classes for the tests * - * @param $function + * @param $classes * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-04 */ - private function stringTest($function) + protected function setClasses($classes) { - $flash = new Direct($this->classes); - $class = $this->getClass($function); - $template = '%s' . PHP_EOL; - $message = 'sample message'; - - if ($this->notHtml) { - $flash->setAutomaticHtml(false); - $expected = $message; - } else { - $expected = sprintf($template, $class, $message); - } - - - if ($this->notImplicit) { - $flash->setImplicitFlush(false); - $actual = $flash->$function($message); - } else { - $actual = $this->getObResponse($flash, $function, $message); - } - - expect($actual)->equals($expected); + $this->classes = $classes; } } diff --git a/tests/unit/Flash/Direct/MessageCest.php b/tests/unit/Flash/Direct/MessageCest.php new file mode 100644 index 00000000000..2fefddcb254 --- /dev/null +++ b/tests/unit/Flash/Direct/MessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use UnitTester; + +class MessageCest +{ + /** + * Tests Phalcon\Flash\Direct :: message() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashDirectMessage(UnitTester $I) + { + $I->wantToTest("Flash\Direct - message()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Direct/NoticeCest.php b/tests/unit/Flash/Direct/NoticeCest.php new file mode 100644 index 00000000000..fa6459d7326 --- /dev/null +++ b/tests/unit/Flash/Direct/NoticeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use UnitTester; + +class NoticeCest +{ + /** + * Tests Phalcon\Flash\Direct :: notice() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashDirectNotice(UnitTester $I) + { + $I->wantToTest("Flash\Direct - notice()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Direct/OutputCest.php b/tests/unit/Flash/Direct/OutputCest.php new file mode 100644 index 00000000000..896a4dd7ae0 --- /dev/null +++ b/tests/unit/Flash/Direct/OutputCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use UnitTester; + +class OutputCest +{ + /** + * Tests Phalcon\Flash\Direct :: output() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashDirectOutput(UnitTester $I) + { + $I->wantToTest("Flash\Direct - output()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Direct/OutputMessageCest.php b/tests/unit/Flash/Direct/OutputMessageCest.php new file mode 100644 index 00000000000..5fa5d8cbaa0 --- /dev/null +++ b/tests/unit/Flash/Direct/OutputMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use UnitTester; + +class OutputMessageCest +{ + /** + * Tests Phalcon\Flash\Direct :: outputMessage() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashDirectOutputMessage(UnitTester $I) + { + $I->wantToTest("Flash\Direct - outputMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Direct/SetAutoescapeCest.php b/tests/unit/Flash/Direct/SetAutoescapeCest.php new file mode 100644 index 00000000000..45b07abb3bd --- /dev/null +++ b/tests/unit/Flash/Direct/SetAutoescapeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use UnitTester; + +class SetAutoescapeCest +{ + /** + * Tests Phalcon\Flash\Direct :: setAutoescape() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashDirectSetAutoescape(UnitTester $I) + { + $I->wantToTest("Flash\Direct - setAutoescape()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Direct/SetAutomaticHtmlCest.php b/tests/unit/Flash/Direct/SetAutomaticHtmlCest.php new file mode 100644 index 00000000000..d5d0131b7a6 --- /dev/null +++ b/tests/unit/Flash/Direct/SetAutomaticHtmlCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use UnitTester; + +class SetAutomaticHtmlCest +{ + /** + * Tests Phalcon\Flash\Direct :: setAutomaticHtml() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashDirectSetAutomaticHtml(UnitTester $I) + { + $I->wantToTest("Flash\Direct - setAutomaticHtml()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Direct/SetCssClassesCest.php b/tests/unit/Flash/Direct/SetCssClassesCest.php new file mode 100644 index 00000000000..a7a45ad2319 --- /dev/null +++ b/tests/unit/Flash/Direct/SetCssClassesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use UnitTester; + +class SetCssClassesCest +{ + /** + * Tests Phalcon\Flash\Direct :: setCssClasses() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashDirectSetCssClasses(UnitTester $I) + { + $I->wantToTest("Flash\Direct - setCssClasses()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Direct/SetCustomTemplateCest.php b/tests/unit/Flash/Direct/SetCustomTemplateCest.php new file mode 100644 index 00000000000..d2ffae2281f --- /dev/null +++ b/tests/unit/Flash/Direct/SetCustomTemplateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use UnitTester; + +class SetCustomTemplateCest +{ + /** + * Tests Phalcon\Flash\Direct :: setCustomTemplate() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashDirectSetCustomTemplate(UnitTester $I) + { + $I->wantToTest("Flash\Direct - setCustomTemplate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Direct/SetDICest.php b/tests/unit/Flash/Direct/SetDICest.php new file mode 100644 index 00000000000..6a372445bc8 --- /dev/null +++ b/tests/unit/Flash/Direct/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Flash\Direct :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashDirectSetDI(UnitTester $I) + { + $I->wantToTest("Flash\Direct - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Direct/SetEscaperServiceCest.php b/tests/unit/Flash/Direct/SetEscaperServiceCest.php new file mode 100644 index 00000000000..9a4398f3e4c --- /dev/null +++ b/tests/unit/Flash/Direct/SetEscaperServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use UnitTester; + +class SetEscaperServiceCest +{ + /** + * Tests Phalcon\Flash\Direct :: setEscaperService() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashDirectSetEscaperService(UnitTester $I) + { + $I->wantToTest("Flash\Direct - setEscaperService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Direct/SetImplicitFlushCest.php b/tests/unit/Flash/Direct/SetImplicitFlushCest.php new file mode 100644 index 00000000000..6de68958a95 --- /dev/null +++ b/tests/unit/Flash/Direct/SetImplicitFlushCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use UnitTester; + +class SetImplicitFlushCest +{ + /** + * Tests Phalcon\Flash\Direct :: setImplicitFlush() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashDirectSetImplicitFlush(UnitTester $I) + { + $I->wantToTest("Flash\Direct - setImplicitFlush()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Direct/SuccessCest.php b/tests/unit/Flash/Direct/SuccessCest.php new file mode 100644 index 00000000000..fc708c7775d --- /dev/null +++ b/tests/unit/Flash/Direct/SuccessCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use UnitTester; + +class SuccessCest +{ + /** + * Tests Phalcon\Flash\Direct :: success() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashDirectSuccess(UnitTester $I) + { + $I->wantToTest("Flash\Direct - success()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Direct/WarningCest.php b/tests/unit/Flash/Direct/WarningCest.php new file mode 100644 index 00000000000..42965dad504 --- /dev/null +++ b/tests/unit/Flash/Direct/WarningCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Direct; + +use UnitTester; + +class WarningCest +{ + /** + * Tests Phalcon\Flash\Direct :: warning() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashDirectWarning(UnitTester $I) + { + $I->wantToTest("Flash\Direct - warning()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/ErrorCest.php b/tests/unit/Flash/ErrorCest.php new file mode 100644 index 00000000000..7bd3510c5bd --- /dev/null +++ b/tests/unit/Flash/ErrorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash; + +use UnitTester; + +class ErrorCest +{ + /** + * Tests Phalcon\Flash :: error() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashError(UnitTester $I) + { + $I->wantToTest("Flash - error()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/GetAutoescapeCest.php b/tests/unit/Flash/GetAutoescapeCest.php new file mode 100644 index 00000000000..2c198fab677 --- /dev/null +++ b/tests/unit/Flash/GetAutoescapeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash; + +use UnitTester; + +class GetAutoescapeCest +{ + /** + * Tests Phalcon\Flash :: getAutoescape() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashGetAutoescape(UnitTester $I) + { + $I->wantToTest("Flash - getAutoescape()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/GetCustomTemplateCest.php b/tests/unit/Flash/GetCustomTemplateCest.php new file mode 100644 index 00000000000..0a6bf4b21c8 --- /dev/null +++ b/tests/unit/Flash/GetCustomTemplateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash; + +use UnitTester; + +class GetCustomTemplateCest +{ + /** + * Tests Phalcon\Flash :: getCustomTemplate() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashGetCustomTemplate(UnitTester $I) + { + $I->wantToTest("Flash - getCustomTemplate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/GetDICest.php b/tests/unit/Flash/GetDICest.php new file mode 100644 index 00000000000..790abe4f65d --- /dev/null +++ b/tests/unit/Flash/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Flash :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashGetDI(UnitTester $I) + { + $I->wantToTest("Flash - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/GetEscaperServiceCest.php b/tests/unit/Flash/GetEscaperServiceCest.php new file mode 100644 index 00000000000..20f2debb888 --- /dev/null +++ b/tests/unit/Flash/GetEscaperServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash; + +use UnitTester; + +class GetEscaperServiceCest +{ + /** + * Tests Phalcon\Flash :: getEscaperService() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashGetEscaperService(UnitTester $I) + { + $I->wantToTest("Flash - getEscaperService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/MessageCest.php b/tests/unit/Flash/MessageCest.php new file mode 100644 index 00000000000..79cd5cc2575 --- /dev/null +++ b/tests/unit/Flash/MessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash; + +use UnitTester; + +class MessageCest +{ + /** + * Tests Phalcon\Flash :: message() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashMessage(UnitTester $I) + { + $I->wantToTest("Flash - message()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/NoticeCest.php b/tests/unit/Flash/NoticeCest.php new file mode 100644 index 00000000000..eb01e0abde2 --- /dev/null +++ b/tests/unit/Flash/NoticeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash; + +use UnitTester; + +class NoticeCest +{ + /** + * Tests Phalcon\Flash :: notice() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashNotice(UnitTester $I) + { + $I->wantToTest("Flash - notice()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/OutputMessageCest.php b/tests/unit/Flash/OutputMessageCest.php new file mode 100644 index 00000000000..a574621f8d6 --- /dev/null +++ b/tests/unit/Flash/OutputMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash; + +use UnitTester; + +class OutputMessageCest +{ + /** + * Tests Phalcon\Flash :: outputMessage() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashOutputMessage(UnitTester $I) + { + $I->wantToTest("Flash - outputMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/ClearCest.php b/tests/unit/Flash/Session/ClearCest.php new file mode 100644 index 00000000000..6c179408e4d --- /dev/null +++ b/tests/unit/Flash/Session/ClearCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class ClearCest +{ + /** + * Tests Phalcon\Flash\Session :: clear() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionClear(UnitTester $I) + { + $I->wantToTest("Flash\Session - clear()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/ConstructCest.php b/tests/unit/Flash/Session/ConstructCest.php new file mode 100644 index 00000000000..93ec4ada213 --- /dev/null +++ b/tests/unit/Flash/Session/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Flash\Session :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionConstruct(UnitTester $I) + { + $I->wantToTest("Flash\Session - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/ErrorCest.php b/tests/unit/Flash/Session/ErrorCest.php new file mode 100644 index 00000000000..0a1249884a6 --- /dev/null +++ b/tests/unit/Flash/Session/ErrorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class ErrorCest +{ + /** + * Tests Phalcon\Flash\Session :: error() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionError(UnitTester $I) + { + $I->wantToTest("Flash\Session - error()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/GetAutoescapeCest.php b/tests/unit/Flash/Session/GetAutoescapeCest.php new file mode 100644 index 00000000000..05122b26538 --- /dev/null +++ b/tests/unit/Flash/Session/GetAutoescapeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class GetAutoescapeCest +{ + /** + * Tests Phalcon\Flash\Session :: getAutoescape() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionGetAutoescape(UnitTester $I) + { + $I->wantToTest("Flash\Session - getAutoescape()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/GetCustomTemplateCest.php b/tests/unit/Flash/Session/GetCustomTemplateCest.php new file mode 100644 index 00000000000..fdd3b623052 --- /dev/null +++ b/tests/unit/Flash/Session/GetCustomTemplateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class GetCustomTemplateCest +{ + /** + * Tests Phalcon\Flash\Session :: getCustomTemplate() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionGetCustomTemplate(UnitTester $I) + { + $I->wantToTest("Flash\Session - getCustomTemplate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/GetDICest.php b/tests/unit/Flash/Session/GetDICest.php new file mode 100644 index 00000000000..d686c7cac91 --- /dev/null +++ b/tests/unit/Flash/Session/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Flash\Session :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionGetDI(UnitTester $I) + { + $I->wantToTest("Flash\Session - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/GetEscaperServiceCest.php b/tests/unit/Flash/Session/GetEscaperServiceCest.php new file mode 100644 index 00000000000..a0bf209ec08 --- /dev/null +++ b/tests/unit/Flash/Session/GetEscaperServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class GetEscaperServiceCest +{ + /** + * Tests Phalcon\Flash\Session :: getEscaperService() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionGetEscaperService(UnitTester $I) + { + $I->wantToTest("Flash\Session - getEscaperService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/GetMessagesCest.php b/tests/unit/Flash/Session/GetMessagesCest.php new file mode 100644 index 00000000000..c39a7dd5bcf --- /dev/null +++ b/tests/unit/Flash/Session/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Flash\Session :: getMessages() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionGetMessages(UnitTester $I) + { + $I->wantToTest("Flash\Session - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/HasCest.php b/tests/unit/Flash/Session/HasCest.php new file mode 100644 index 00000000000..de9d5f76197 --- /dev/null +++ b/tests/unit/Flash/Session/HasCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class HasCest +{ + /** + * Tests Phalcon\Flash\Session :: has() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionHas(UnitTester $I) + { + $I->wantToTest("Flash\Session - has()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/MessageCest.php b/tests/unit/Flash/Session/MessageCest.php new file mode 100644 index 00000000000..3963fe9f625 --- /dev/null +++ b/tests/unit/Flash/Session/MessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class MessageCest +{ + /** + * Tests Phalcon\Flash\Session :: message() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionMessage(UnitTester $I) + { + $I->wantToTest("Flash\Session - message()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/NoticeCest.php b/tests/unit/Flash/Session/NoticeCest.php new file mode 100644 index 00000000000..c6d0a544cf9 --- /dev/null +++ b/tests/unit/Flash/Session/NoticeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class NoticeCest +{ + /** + * Tests Phalcon\Flash\Session :: notice() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionNotice(UnitTester $I) + { + $I->wantToTest("Flash\Session - notice()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/OutputCest.php b/tests/unit/Flash/Session/OutputCest.php new file mode 100644 index 00000000000..186564f4651 --- /dev/null +++ b/tests/unit/Flash/Session/OutputCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class OutputCest +{ + /** + * Tests Phalcon\Flash\Session :: output() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionOutput(UnitTester $I) + { + $I->wantToTest("Flash\Session - output()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/OutputMessageCest.php b/tests/unit/Flash/Session/OutputMessageCest.php new file mode 100644 index 00000000000..eafc2f01a34 --- /dev/null +++ b/tests/unit/Flash/Session/OutputMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class OutputMessageCest +{ + /** + * Tests Phalcon\Flash\Session :: outputMessage() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionOutputMessage(UnitTester $I) + { + $I->wantToTest("Flash\Session - outputMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/SetAutoescapeCest.php b/tests/unit/Flash/Session/SetAutoescapeCest.php new file mode 100644 index 00000000000..be6d0f1b3e9 --- /dev/null +++ b/tests/unit/Flash/Session/SetAutoescapeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class SetAutoescapeCest +{ + /** + * Tests Phalcon\Flash\Session :: setAutoescape() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionSetAutoescape(UnitTester $I) + { + $I->wantToTest("Flash\Session - setAutoescape()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/SetAutomaticHtmlCest.php b/tests/unit/Flash/Session/SetAutomaticHtmlCest.php new file mode 100644 index 00000000000..1d46a214ebc --- /dev/null +++ b/tests/unit/Flash/Session/SetAutomaticHtmlCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class SetAutomaticHtmlCest +{ + /** + * Tests Phalcon\Flash\Session :: setAutomaticHtml() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionSetAutomaticHtml(UnitTester $I) + { + $I->wantToTest("Flash\Session - setAutomaticHtml()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/SetCssClassesCest.php b/tests/unit/Flash/Session/SetCssClassesCest.php new file mode 100644 index 00000000000..fed811a7a91 --- /dev/null +++ b/tests/unit/Flash/Session/SetCssClassesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class SetCssClassesCest +{ + /** + * Tests Phalcon\Flash\Session :: setCssClasses() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionSetCssClasses(UnitTester $I) + { + $I->wantToTest("Flash\Session - setCssClasses()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/SetCustomTemplateCest.php b/tests/unit/Flash/Session/SetCustomTemplateCest.php new file mode 100644 index 00000000000..b076402b787 --- /dev/null +++ b/tests/unit/Flash/Session/SetCustomTemplateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class SetCustomTemplateCest +{ + /** + * Tests Phalcon\Flash\Session :: setCustomTemplate() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionSetCustomTemplate(UnitTester $I) + { + $I->wantToTest("Flash\Session - setCustomTemplate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/SetDICest.php b/tests/unit/Flash/Session/SetDICest.php new file mode 100644 index 00000000000..213c14ec194 --- /dev/null +++ b/tests/unit/Flash/Session/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Flash\Session :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionSetDI(UnitTester $I) + { + $I->wantToTest("Flash\Session - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/SetEscaperServiceCest.php b/tests/unit/Flash/Session/SetEscaperServiceCest.php new file mode 100644 index 00000000000..dc675621c0d --- /dev/null +++ b/tests/unit/Flash/Session/SetEscaperServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class SetEscaperServiceCest +{ + /** + * Tests Phalcon\Flash\Session :: setEscaperService() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionSetEscaperService(UnitTester $I) + { + $I->wantToTest("Flash\Session - setEscaperService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/SetImplicitFlushCest.php b/tests/unit/Flash/Session/SetImplicitFlushCest.php new file mode 100644 index 00000000000..29a6b23eb21 --- /dev/null +++ b/tests/unit/Flash/Session/SetImplicitFlushCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class SetImplicitFlushCest +{ + /** + * Tests Phalcon\Flash\Session :: setImplicitFlush() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionSetImplicitFlush(UnitTester $I) + { + $I->wantToTest("Flash\Session - setImplicitFlush()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/SuccessCest.php b/tests/unit/Flash/Session/SuccessCest.php new file mode 100644 index 00000000000..a9a61916f10 --- /dev/null +++ b/tests/unit/Flash/Session/SuccessCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class SuccessCest +{ + /** + * Tests Phalcon\Flash\Session :: success() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionSuccess(UnitTester $I) + { + $I->wantToTest("Flash\Session - success()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/Session/WarningCest.php b/tests/unit/Flash/Session/WarningCest.php new file mode 100644 index 00000000000..2315bc9777d --- /dev/null +++ b/tests/unit/Flash/Session/WarningCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash\Session; + +use UnitTester; + +class WarningCest +{ + /** + * Tests Phalcon\Flash\Session :: warning() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSessionWarning(UnitTester $I) + { + $I->wantToTest("Flash\Session - warning()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/SessionCest.php b/tests/unit/Flash/SessionCest.php new file mode 100644 index 00000000000..366aee45dc5 --- /dev/null +++ b/tests/unit/Flash/SessionCest.php @@ -0,0 +1,273 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash; + +use Phalcon\Di; +use Phalcon\Escaper; +use Phalcon\Flash\Session; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use UnitTester; + +class SessionCest +{ + use DiTrait; + + /** + * @var array + */ + protected $classes = [ + 'success' => 'successMessage', + 'notice' => 'noticeMessage', + 'warning' => 'warningMessage', + 'error' => 'errorMessage', + ]; + + public function _before(UnitTester $I) + { + $this->newDi(); + $this->setDiEscaper(); + $this->setDiSession(); + } + + + /** + * Tests auto escaping + * + * @author Phalcon Team + * @issue https://github.com/phalcon/cphalcon/issues/11448 + * @since 2016-06-15 + */ + public function testShouldAutoEscapeHtml(UnitTester $I) + { + /** + * @TODO Check the session + */ + $I->skipTest('TODO: Check the session'); + $examples = [ + 'error', + 'success', + 'notice', + 'warning', + ]; + foreach ($examples as $function) { + $flash = $this->getFlash(); + + $flash->setAutoescape(false); + $flash->$function(""); + + $expected = [""]; + $actual = $flash->getMessages($function); + $I->assertEquals($expected, $actual); + + ob_start(); + $flash->$function(""); + $flash->output(); + $actual = ob_get_contents(); + ob_end_clean(); + + $expected = "
" + . "
" . PHP_EOL; + $I->assertEquals($expected, $actual); + + $flash->setAutoescape(true); + $flash->$function(""); + $expected = [""]; + $actual = $flash->getMessages($function); + $I->assertEquals($expected, $actual); + + ob_start(); + $flash->$function(""); + $flash->output(); + $actual = ob_get_contents(); + ob_end_clean(); + + $expected = "
<script>alert('" + . "This will execute as JavaScript!')</script>
" . PHP_EOL; + $I->assertEquals($expected, $actual); + } + } + + /** + * Return flash instance + */ + protected function getFlash() + { + $container = $this->getDi(); + $flash = new Session($this->classes); + $flash->setDI($container); + + return $flash; + } + + /** + * Test getMessages with specified type and removal + * activated, only removes the received messages. + * + * @author Iván Guillén + * @since 2015-10-26 + */ + public function testGetMessagesTypeRemoveMessages(UnitTester $I) + { + /** + * @TODO Check the session + */ + $I->skipTest('TODO: Check the session'); + $flash = $this->getFlash(); + + $flash->success('sample success'); + $flash->error('sample error'); + + $expected = ['sample success']; + $actual = $flash->getMessages('success'); + $I->assertEquals($expected, $actual); + + $expected = ['sample error']; + $actual = $flash->getMessages('error'); + $I->assertEquals($expected, $actual); + + $actual = $flash->getMessages(); + $I->assertEmpty($actual); + } + + /** + * Tests getMessages in case of non existent type request + * + * @issue https://github.com/phalcon/cphalcon/issues/11941 + * @author Phalcon Team + * @since 2016-07-03 + */ + public function testGetNonExistentType(UnitTester $I) + { + /** + * @TODO Check the session + */ + $I->skipTest('TODO: Check the session'); + $flash = $this->getFlash(); + $flash->error('sample error'); + + $expected = []; + $actual = $flash->getMessages('success', false); + $I->assertEquals($expected, $actual); + + $expected = 1; + $actual = count($flash->getMessages()); + $I->assertTrue($expected === $actual); + } + + /** + * Tests clear method + * + * @author Iván Guillén + * @since 2015-10-26 + */ + public function testClearMessagesFormSession(UnitTester $I) + { + /** + * @TODO Check the session + */ + $I->skipTest('TODO: Check the session'); + $flash = $this->getFlash(); + + ob_start(); + $flash->output(); + $flash->success('sample message'); + $flash->clear(); + $actual = ob_get_contents(); + ob_end_clean(); + $expected = ''; + + $I->assertEquals($expected, $actual); + } + + /** + * Test output formatted messages + * + * @author Iván Guillén + * @since 2015-10-26 + */ + public function testMessageFormat(UnitTester $I) + { + /** + * @TODO Check the session + */ + $I->skipTest('TODO: Check the session'); + $examples = [ + 'error', + 'success', + 'notice', + ]; + + foreach ($examples as $function) { + $flash = $this->getFlash(); + $template = ' class="%s"'; + $class = sprintf($template, $this->classes[$function]); + + $template = '%s' . PHP_EOL; + $message = 'sample message'; + + $expected = sprintf($template, $class, $message); + ob_start(); + $flash->$function($message); + $flash->output(); + $actual = ob_get_contents(); + ob_end_clean(); + + $I->assertEquals($expected, $actual); + } + } + + /** + * Test custom template getter/setter + * + * @author Phalcon Team + * @issue https://github.com/phalcon/cphalcon/issues/13445 + * @since 2018-10-16 + */ + public function testCustomTemplateGetterSetter(UnitTester $I) + { + $flash = $this->getFlash(); + $template = '%message%'; + $flash->setCustomTemplate($template); + + $expected = $template; + $actual = $flash->getCustomTemplate(); + $I->assertEquals($expected, $actual); + } + + /** + * Test custom message + * + * @author Phalcon Team + * @issue https://github.com/phalcon/cphalcon/issues/13445 + * @since 2018-10-16 + */ + public function testCustomFormat(UnitTester $I) + { + /** + * @TODO Check the session + */ + $I->skipTest('TODO: Check the session'); + $flash = $this->getFlash(); + $template = '%message%'; + $flash->setCustomTemplate($template); + + $message = 'sample message'; + $expected = 'sample message'; + ob_start(); + $flash->success($message); + $flash->output(); + $actual = ob_get_contents(); + ob_end_clean(); + + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Flash/SessionTest.php b/tests/unit/Flash/SessionTest.php deleted file mode 100644 index 10bff1c69e1..00000000000 --- a/tests/unit/Flash/SessionTest.php +++ /dev/null @@ -1,275 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Flash - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class SessionTest extends UnitTest -{ - /** - * @var array - */ - protected $classes = [ - 'success' => 'successMessage', - 'notice' => 'noticeMessage', - 'warning' => 'warningMessage', - 'error' => 'errorMessage', - ]; - - /** - * Return flash instance - */ - protected function getFlash() - { - $flash = new Session($this->classes); - $di = new Di(); - - $di->setShared('session', new MemorySession()); - $di->setShared('escaper', new Escaper()); - - $flash->setDI($di); - - return $flash; - } - - /** - * Tests auto escaping - * - * @author Serghei Iakovlev - * @issue https://github.com/phalcon/cphalcon/issues/11448 - * @since 2016-06-15 - */ - public function testShouldAutoEscapeHtml() - { - $this->specify( - "The output() method outputs HTML incorrectly", - function ($function) { - $flash = $this->getFlash(); - - $flash->setAutoescape(false); - $flash->$function(""); - expect($flash->getMessages($function)) - ->equals([""]); - - ob_start(); - $flash->$function(""); - $flash->output(); - $actual = ob_get_contents(); - ob_end_clean(); - - expect($actual) - ->equals("
" . PHP_EOL); - - $flash->setAutoescape(true); - $flash->$function(""); - expect($flash->getMessages($function)) - ->equals([""]); - - ob_start(); - $flash->$function(""); - $flash->output(); - $actual = ob_get_contents(); - ob_end_clean(); - - expect($actual) - ->equals("
<script>alert('This will execute as JavaScript!')</script>
" . PHP_EOL); - }, - [ - 'examples' => [ - ['error'], - ['success'], - ['notice'], - ['warning'], - ] - ] - ); - } - - /** - * Test getMessages with specified type and removal - * activated, only removes the received messages. - * - * @author Iván Guillén - * @since 2015-10-26 - */ - public function testGetMessagesTypeRemoveMessages() - { - $this->specify( - "The getMessages() method removes incorrectly after fetching from session", - function () { - $flash = $this->getFlash(); - - $flash->success('sample success'); - $flash->error('sample error'); - - $expectedSuccessMessages = ['sample success']; - - $actualSuccessMessages = $flash->getMessages('success'); - - expect($actualSuccessMessages)->equals($expectedSuccessMessages); - - $expectedErrorMessages = ['sample error']; - $actualErrorMessages = $flash->getMessages('error'); - - expect($actualErrorMessages)->equals($expectedErrorMessages); - - verify_not($flash->getMessages()); - } - ); - } - - /** - * Tests getMessages in case of non existent type request - * - * @issue https://github.com/phalcon/cphalcon/issues/11941 - * @author Serghei Iakovlev - * @since 2016-07-03 - */ - public function testGetNonExistentType() - { - $this->specify( - 'The getMessages() method does not return an empty array in case of non existent type request', - function () { - $flash = $this->getFlash(); - $flash->error('sample error'); - - expect($flash->getMessages('success', false))->equals([]); - verify_that(count($flash->getMessages()) === 1); - } - ); - } - - /** - * Tests clear method - * - * @author Iván Guillén - * @since 2015-10-26 - */ - public function testClearMessagesFormSession() - { - $this->specify( - "The clear() method clear messages from session incorrectly", - function () { - $flash = $this->getFlash(); - - ob_start(); - $flash->output(); - $flash->success('sample message'); - $flash->clear(); - $actual = ob_get_contents(); - ob_end_clean(); - $expected = ''; - - expect($actual)->equals($expected); - } - ); - } - - /** - * Test output formatted messages - * - * @author Iván Guillén - * @since 2015-10-26 - */ - public function testMessageFormat() - { - $this->specify( - "The output() method outputs formatted messages incorrectly", - function ($function) { - $flash = $this->getFlash(); - $template = ' class="%s"'; - $class = sprintf($template, $this->classes[$function]); - - $template = '%s' . PHP_EOL; - $message = 'sample message'; - - $expected = sprintf($template, $class, $message); - ob_start(); - $flash->$function($message); - $flash->output(); - $actual = ob_get_contents(); - ob_end_clean(); - - expect($actual)->equals($expected); - }, - [ - 'examples' => [ - 'error' => ['function' => 'error'], - 'success' => ['function' => 'success'], - 'notice' => ['function' => 'notice'], - ] - ] - ); - } - - /** - * Test custom template getter/setter - * - * @author Nikolaos Dimopoulos - * @issue https://github.com/phalcon/cphalcon/issues/13445 - * @since 2018-10-16 - */ - public function testCustomTemplateGetterSetter() - { - $this->specify( - "The custom template getter/setter does not return correct data", - function () { - $flash = $this->getFlash(); - $template = '%message%'; - $flash->setCustomTemplate($template); - - expect($flash->getCustomTemplate())->equals($template); - } - ); - } - - /** - * Test custom message - * - * @author Nikolaos Dimopoulos - * @issue https://github.com/phalcon/cphalcon/issues/13445 - * @since 2018-10-16 - */ - public function testCustomFormat() - { - $this->specify( - "The output() method outputs custom template formatted messages incorrectly", - function () { - $flash = $this->getFlash(); - $template = '%message%'; - $flash->setCustomTemplate($template); - - $message = 'sample message'; - $expected = 'sample message'; - ob_start(); - $flash->success($message); - $flash->output(); - $actual = ob_get_contents(); - ob_end_clean(); - - expect($actual)->equals($expected); - } - ); - } -} diff --git a/tests/unit/Flash/SetAutoescapeCest.php b/tests/unit/Flash/SetAutoescapeCest.php new file mode 100644 index 00000000000..92ccd64eaa3 --- /dev/null +++ b/tests/unit/Flash/SetAutoescapeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash; + +use UnitTester; + +class SetAutoescapeCest +{ + /** + * Tests Phalcon\Flash :: setAutoescape() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSetAutoescape(UnitTester $I) + { + $I->wantToTest("Flash - setAutoescape()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/SetAutomaticHtmlCest.php b/tests/unit/Flash/SetAutomaticHtmlCest.php new file mode 100644 index 00000000000..20b75eb1014 --- /dev/null +++ b/tests/unit/Flash/SetAutomaticHtmlCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash; + +use UnitTester; + +class SetAutomaticHtmlCest +{ + /** + * Tests Phalcon\Flash :: setAutomaticHtml() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSetAutomaticHtml(UnitTester $I) + { + $I->wantToTest("Flash - setAutomaticHtml()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/SetCssClassesCest.php b/tests/unit/Flash/SetCssClassesCest.php new file mode 100644 index 00000000000..9cc6faa23b9 --- /dev/null +++ b/tests/unit/Flash/SetCssClassesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash; + +use UnitTester; + +class SetCssClassesCest +{ + /** + * Tests Phalcon\Flash :: setCssClasses() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSetCssClasses(UnitTester $I) + { + $I->wantToTest("Flash - setCssClasses()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/SetCustomTemplateCest.php b/tests/unit/Flash/SetCustomTemplateCest.php new file mode 100644 index 00000000000..23e73294ce7 --- /dev/null +++ b/tests/unit/Flash/SetCustomTemplateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash; + +use UnitTester; + +class SetCustomTemplateCest +{ + /** + * Tests Phalcon\Flash :: setCustomTemplate() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSetCustomTemplate(UnitTester $I) + { + $I->wantToTest("Flash - setCustomTemplate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/SetDICest.php b/tests/unit/Flash/SetDICest.php new file mode 100644 index 00000000000..03bc92fe7d5 --- /dev/null +++ b/tests/unit/Flash/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Flash :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSetDI(UnitTester $I) + { + $I->wantToTest("Flash - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/SetEscaperServiceCest.php b/tests/unit/Flash/SetEscaperServiceCest.php new file mode 100644 index 00000000000..e6742e1e6bc --- /dev/null +++ b/tests/unit/Flash/SetEscaperServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash; + +use UnitTester; + +class SetEscaperServiceCest +{ + /** + * Tests Phalcon\Flash :: setEscaperService() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSetEscaperService(UnitTester $I) + { + $I->wantToTest("Flash - setEscaperService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/SetImplicitFlushCest.php b/tests/unit/Flash/SetImplicitFlushCest.php new file mode 100644 index 00000000000..a5e25158047 --- /dev/null +++ b/tests/unit/Flash/SetImplicitFlushCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash; + +use UnitTester; + +class SetImplicitFlushCest +{ + /** + * Tests Phalcon\Flash :: setImplicitFlush() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSetImplicitFlush(UnitTester $I) + { + $I->wantToTest("Flash - setImplicitFlush()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/SuccessCest.php b/tests/unit/Flash/SuccessCest.php new file mode 100644 index 00000000000..0d32c5b085a --- /dev/null +++ b/tests/unit/Flash/SuccessCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash; + +use UnitTester; + +class SuccessCest +{ + /** + * Tests Phalcon\Flash :: success() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashSuccess(UnitTester $I) + { + $I->wantToTest("Flash - success()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Flash/WarningCest.php b/tests/unit/Flash/WarningCest.php new file mode 100644 index 00000000000..8d7c73d214b --- /dev/null +++ b/tests/unit/Flash/WarningCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Flash; + +use UnitTester; + +class WarningCest +{ + /** + * Tests Phalcon\Flash :: warning() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function flashWarning(UnitTester $I) + { + $I->wantToTest("Flash - warning()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Forms/Element/TextTest.php b/tests/unit/Forms/Element/TextTest.php deleted file mode 100644 index 2f1af93d7bc..00000000000 --- a/tests/unit/Forms/Element/TextTest.php +++ /dev/null @@ -1,226 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Forms\Element - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class TextTest extends UnitTest -{ - /** - * executed after each test - */ - protected function _after() - { - // Setting the doctype to XHTML5 for other tests to run smoothly - Tag::setDocType(Tag::XHTML5); - } - - /** - * Tests Text::render - * - * @issue https://github.com/phalcon/cphalcon/issues/10398 - * @author Serghei Iakovlev - * @since 2016-07-17 - */ - public function testCreatingTextElementWithNameSimilarToTheFormMethods() - { - $this->specify('Text::render does not return expected result', function ($name) { - $element = new Text($name); - - expect($element->getName())->equals($name); - expect($element->render())->equals(sprintf('', $name, $name)); - expect($element->getValue())->null(); - }, ['examples' => $this->nameLikeFormMethodsProvider()]); - } - - protected function nameLikeFormMethodsProvider() - { - return [ - ['validation'], - ['action'], - ['useroption'], - ['useroptions'], - ['entity'], - ['elements'], - ['messages'], - ['messagesfor'], - ['label'], - ['value'], - ['di'], - ['eventsmanager'], - ]; - } - - public function testIssue1210() - { - $this->specify( - "Labels are not properly rendered", - function () { - $element = new Text("test"); - - $element->setLabel("Test"); - - $actual = $element->label(); - $expected = ''; - - expect($actual)->equals($expected); - } - ); - } - - public function testIssue2045() - { - $this->specify( - "Attributes are not properly rendered", - function () { - $element = new Text("name"); - - $element->setAttributes( - [ - "class" => "big-input", - ] - ); - - $element->setAttribute("id", null); - - $expected = ''; - - expect($element->render())->equals($expected); - } - ); - } - - public function testPrepareAttributesNoDefault() - { - $this->specify( - "Prepared attributes are not properly rendered", - function () { - $element1 = new Text("name"); - - $element1->setLabel("name"); - - $actual = $element1->prepareAttributes( - [ - "class" => "big-input", - ] - ); - - $expected = [ - "name", - "class" => "big-input", - ]; - - expect($actual)->equals($expected); - } - ); - } - - public function testFormElementEmpty() - { - $this->specify( - "Default/empty values are not set properly", - function () { - $element = new Text("name"); - - expect($element->getLabel())->null(); - expect($element->getAttributes())->equals([]); - } - ); - } - - public function testFormElement() - { - $this->specify( - "Form elements do not store attributes/labels properly", - function () { - $element = new Text("name"); - - $element->setLabel('name'); - $element->setAttributes(array('class' => 'big-input')); - $element->setAttribute('placeholder', 'Type the name'); - - expect($element->getLabel())->equals('name'); - expect($element->getAttributes())->equals(array( - 'class' => 'big-input', - 'placeholder' => 'Type the name' - )); - - expect($element->getAttribute('class'))->equals('big-input'); - expect($element->getAttribute('placeholder', 'the name'))->equals('Type the name'); - expect($element->getAttribute('lang', 'en'))->equals('en'); - - $element->setLabel(0); - expect($element->label())->equals(''); - } - ); - } - - public function testFormPrepareAttributes() - { - $this->specify( - "Attributes are not prepared properly", - function () { - $element1 = new Text("name"); - - $element1->setLabel('name'); - - expect($element1->prepareAttributes())->equals(['name']); - } - ); - } - - public function testFormPrepareAttributesDefault() - { - $this->specify( - "Attributes are not prepared properly (2)", - function () { - $element1 = new Text("name"); - - $element1->setLabel('name'); - $element1->setAttributes(['class' => 'big-input']); - - expect($element1->prepareAttributes())->equals(['name', 'class' => 'big-input']); - } - ); - } - - public function testFormOptions() - { - $this->specify( - "Text elements don't properly store user options or attributes", - function () { - $element1 = new Text("name"); - - $element1->setAttributes(array('class' => 'big-input')); - $element1->setUserOptions(array('some' => 'value')); - - expect($element1->getUserOptions())->equals(array('some' => 'value')); - - expect($element1->getUserOption('some'))->equals('value'); - - expect($element1->getUserOption('some-non'))->null(); - - expect($element1->getUserOption('some-non', 'default'))->equals('default'); - } - ); - } -} diff --git a/tests/unit/Forms/FormTest.php b/tests/unit/Forms/FormTest.php deleted file mode 100644 index f1dbe21123e..00000000000 --- a/tests/unit/Forms/FormTest.php +++ /dev/null @@ -1,601 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Forms - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FormTest extends UnitTest -{ - /** - * executed after each test - */ - protected function _after() - { - // Setting the doctype to XHTML5 for other tests to run smoothly - Tag::setDocType(Tag::XHTML5); - } - - public function testCount() - { - $this->specify( - "Form::count does not return the correct number", - function () { - $form = new Form(); - - expect($form)->count(0); - expect($form->count())->equals(0); - - $form->add( - new Text("name") - ); - - $form->add( - new Text("telephone") - ); - - expect($form)->count(2); - expect($form->count())->equals(2); - } - ); - } - - public function testIterator() - { - $this->specify( - "Form incorrectly implements the Iterator interface", - function () { - $form = new Form(); - $data = []; - - foreach ($form as $key => $value) { - $data[$key] = $value->getName(); - } - - expect($data)->equals([]); - - $form->add( - new Text("name") - ); - - $form->add( - new Text("telephone") - ); - - foreach ($form as $key => $value) { - $data[$key] = $value->getName(); - } - - expect($data)->equals([ - 0 => "name", - 1 => "telephone", - ]); - } - ); - } - - public function testLabels() - { - $this->specify( - "Form::getLabel and Form::label do not return the correct values", - function () { - $form = new Form(); - - $form->add( - new Text("name") - ); - - $telephone = new Text("telephone"); - - $telephone->setLabel("The Telephone"); - - $form->add($telephone); - - expect($form->getLabel("name"))->equals("name"); - expect($form->getLabel("telephone"))->equals("The Telephone"); - - expect($form->label("name"))->equals(""); - expect($form->label("telephone"))->equals(""); - - // https://github.com/phalcon/cphalcon/issues/1029 - expect($form->label("name", ["class" => "form-control"]))->equals(""); - expect($form->label("telephone", ["class" => "form-control"]))->equals(""); - } - ); - } - - /** - * Tests Form::hasMessagesFor - * - * @author Sid Roberts - * @since 2016-04-03 - */ - public function testFormHasMessagesFor() - { - $this->specify('Form::hasMessagesFor does not check correctly if the Messages is empty', function () { - // First element - $telephone = new Text('telephone'); - - $telephone->addValidators([ - new Regex([ - 'pattern' => '/\+44 [0-9]+ [0-9]+/', - 'message' => 'The telephone has an invalid format' - ]) - ]); - - // Second element - $address = new Text('address'); - $form = new Form(); - - $form->add($telephone); - $form->add($address); - - expect($form->isValid(['telephone' => '12345', 'address' => 'hello']))->false(); - - expect($form->getMessagesFor('telephone'))->equals( - Messages::__set_state([ - '_messages' => [ - Message::__set_state([ - '_type' => 'Regex', - '_message' => 'The telephone has an invalid format', - '_field' => 'telephone', - '_code' => 0, - ]) - ], - ]) - ); - - expect($form->getMessagesFor('address'))->equals(Messages::__set_state(['_messages' => []])); - expect($form->hasMessagesFor('telephone'))->true(); - expect($form->hasMessagesFor('address'))->false(); - }); - } - - /** - * Tests Form::render - * - * @issue https://github.com/phalcon/cphalcon/issues/10398 - * @author Serghei Iakovlev - * @since 2016-07-17 - */ - public function testCreatingElementsWithNameSimilarToTheFormMethods() - { - $this->specify('Form::render does not return expected result', function ($name) { - $form = new Form; - $element = new Text($name); - - expect($element->getName())->equals($name); - - $form->add($element); - - expect($form->render($name))->equals(sprintf('', $name, $name)); - expect($form->getValue($name))->null(); - expect($element->getValue())->null(); - }, ['examples' => $this->nameLikeFormMethodsProvider()]); - } - - protected function nameLikeFormMethodsProvider() - { - return [ - ['validation'], - ['action'], - ['useroption'], - ['useroptions'], - ['entity'], - ['elements'], - ['messages'], - ['messagesfor'], - ['label'], - ['value'], - ['di'], - ['eventsmanager'], - ]; - } - - public function testFormValidator() - { - $this->specify( - "Form validators don't work", - function () { - //First element - $telephone = new Text("telephone"); - - $telephone->addValidator( - new PresenceOf( - array( - 'message' => 'The telephone is required' - ) - ) - ); - - expect($telephone->getValidators())->count(1); - - $telephone->addValidators(array( - new StringLength(array( - 'min' => 5, - 'messageMinimum' => 'The telephone is too short' - )), - new Regex(array( - 'pattern' => '/\+44 [0-9]+ [0-9]+/', - 'message' => 'The telephone has an invalid format' - )) - )); - - expect($telephone->getValidators())->count(3); - - //Second element - $address = new Text('address'); - - $address->addValidator( - new PresenceOf( - array( - 'message' => 'The address is required' - ) - ) - ); - - expect($address->getValidators())->count(1); - - $form = new Form(); - - $form->add($telephone); - $form->add($address); - - expect($form->isValid([]))->false(); - - $expectedMessages = Messages::__set_state( - array( - '_messages' => array( - 0 => Message::__set_state( - array( - '_type' => 'PresenceOf', - '_message' => 'The telephone is required', - '_field' => 'telephone', - '_code' => 0, - ) - ), - 1 => Message::__set_state( - array( - '_type' => 'TooShort', - '_message' => 'The telephone is too short', - '_field' => 'telephone', - '_code' => 0, - ) - ), - 2 => Message::__set_state( - array( - '_type' => 'Regex', - '_message' => 'The telephone has an invalid format', - '_field' => 'telephone', - '_code' => 0, - ) - ), - 3 => Message::__set_state( - array( - '_type' => 'PresenceOf', - '_message' => 'The address is required', - '_field' => 'address', - '_code' => 0, - ) - ), - ), - ) - ); - - expect($form->getMessages())->equals($expectedMessages); - - expect($form->isValid(array( - 'telephone' => '12345', - 'address' => 'hello' - )))->false(); - - $expectedMessages = Messages::__set_state(array( - '_messages' => array( - 0 => Message::__set_state(array( - '_type' => 'Regex', - '_message' => 'The telephone has an invalid format', - '_field' => 'telephone', - '_code' => 0, - )), - ), - )); - - expect($form->getMessages())->equals($expectedMessages); - - expect($form->isValid(array( - 'telephone' => '+44 124 82122', - 'address' => 'hello' - )))->true(); - } - ); - } - - public function testFormIndirectElementRender() - { - $this->specify( - "Indirect form element render doesn't work", - function () { - $form = new Form(); - - $form->add(new Text("name")); - - expect($form->render("name"))->equals(''); - expect($form->render("name", ["class" => "big-input"]))->equals(''); - } - ); - } - - /** - * @issue https://github.com/phalcon/cphalcon/issues/1190 - */ - public function testIssue1190() - { - $this->specify( - "Form::render doesn't escape value attributes on TextFields", - function () { - $object = new \stdClass(); - $object->title = 'Hello "world!"'; - - $form = new Form($object); - $form->add(new Text("title")); - - $actual = $form->render("title"); - $expected = ''; - - expect($actual)->equals($expected); - } - ); - } - - /** - * @issue https://github.com/phalcon/cphalcon/issues/706 - */ - public function testIssue706() - { - $this->specify( - "Form field positions don't work", - function () { - $form = new Form(); - $form->add(new Text("name")); - - $form->add(new Text("before"), "name", true); - $form->add(new Text("after"), "name"); - - $data = ["before", "name", "after"]; - $result = []; - - foreach ($form as $element) { - $result[] = $element->getName(); - } - - expect($result)->equals($data); - } - ); - } - - /** - * Tests Element::hasMessages() Element::getMessages() - * - * @author Mohamad Rostami - * @issue https://github.com/phalcon/cphalcon/issues/11135 - * @issue https://github.com/phalcon/cphalcon/issues/3167 - */ - public function testElementMessages() - { - $this->specify('Element messages are empty if form validation fails', function () { - // First element - $telephone = new Text('telephone'); - - $telephone->addValidators([ - new Regex([ - 'pattern' => '/\+44 [0-9]+ [0-9]+/', - 'message' => 'The telephone has an invalid format' - ]) - ]); - - // Second element - $address = new Text('address'); - $form = new Form(); - - $form->add($telephone); - $form->add($address); - - expect($form->isValid(['telephone' => '12345', 'address' => 'hello']))->false(); - expect($form->get('telephone')->hasMessages())->true(); - expect($form->get('address')->hasMessages())->false(); - - expect($form->get('telephone')->getMessages())->equals( - Messages::__set_state([ - '_messages' => [ - Message::__set_state([ - '_type' => 'Regex', - '_message' => 'The telephone has an invalid format', - '_field' => 'telephone', - '_code' => 0, - ]) - ], - ]) - ); - expect($form->get('telephone')->getMessages())->equals($form->getMessages()); - expect($form->get('address')->getMessages())->equals(Messages::__set_state(['_messages' => []])); - expect($form->getMessagesFor('notelement'))->equals(Messages::__set_state(['_messages' => []])); - }); - } - - /** - * Tests Form::setValidation() - * - * @author Mohamad Rostami - * @issue https://github.com/phalcon/cphalcon/issues/12465 - */ - public function testCustomValidation() - { - $this->specify('Injecting custom validation to form doesn\'t validate correctly', function () { - // First element - $telephone = new Text('telephone'); - $customValidation = new Validation(); - $customValidation->add('telephone', new Regex([ - 'pattern' => '/\+44 [0-9]+ [0-9]+/', - 'message' => 'The telephone has an invalid format' - ])); - $form = new Form(); - $address = new Text('address'); - $form->add($telephone); - $form->add($address); - $form->setValidation($customValidation); - expect($form->isValid(['telephone' => '12345', 'address' => 'hello']))->false(); - expect($form->get('telephone')->hasMessages())->true(); - expect($form->get('address')->hasMessages())->false(); - expect($form->get('telephone')->getMessages())->equals( - Messages::__set_state([ - '_messages' => [ - Message::__set_state([ - '_type' => 'Regex', - '_message' => 'The telephone has an invalid format', - '_field' => 'telephone', - '_code' => 0, - ]) - ], - ]) - ); - expect($form->get('telephone')->getMessages())->equals($form->getMessages()); - expect($form->get('address')->getMessages())->equals(Messages::__set_state(['_messages' => []])); - }); - } - - /** - * Tests Form::isValid() - * - * @author Mohamad Rostami - * @issue https://github.com/phalcon/cphalcon/issues/11500 - */ - public function testMergeValidators() - { - $this->specify('Injecting custom validation to form doesn\'t merge validators on isValid', function () { - // First element - $telephone = new Text('telephone'); - $telephone->addValidators([ - new PresenceOf([ - 'message' => 'The telephone is required' - ]) - ]); - $customValidation = new Validation(); - $customValidation->add('telephone', new Regex([ - 'pattern' => '/\+44 [0-9]+ [0-9]+/', - 'message' => 'The telephone has an invalid format' - ])); - $form = new Form(); - $address = new Text('address'); - $form->add($telephone); - $form->add($address); - $form->setValidation($customValidation); - expect($form->isValid(['address' => 'hello']))->false(); - expect($form->get('telephone')->hasMessages())->true(); - expect($form->get('address')->hasMessages())->false(); - expect($form->get('telephone')->getMessages())->equals( - Messages::__set_state([ - '_messages' => [ - Message::__set_state([ - '_type' => 'Regex', - '_message' => 'The telephone has an invalid format', - '_field' => 'telephone', - '_code' => 0, - ]), - Message::__set_state([ - '_type' => 'PresenceOf', - '_message' => 'The telephone is required', - '_field' => 'telephone', - '_code' => 0, - ]) - ], - ]) - ); - expect($form->get('telephone')->getMessages())->equals($form->getMessages()); - expect($form->get('address')->getMessages())->equals(Messages::__set_state(['_messages' => []])); - }); - } - - /** - * Tests Form::getMessages(true) - * - * @author Mohamad Rostami - * @issue https://github.com/phalcon/cphalcon/issues/13294 - * - * This should be removed in next major version - * We should not return multiple type of result in a single method! (form->getMessages(true) vs form->getMessages()) - */ - public function testGetElementMessagesFromForm() - { - $this->specify('When form is not valid, iterate over messages by elements is not possible', function () { - // First element - $telephone = new Text('telephone'); - $telephone->addValidators([ - new PresenceOf([ - 'message' => 'The telephone is required' - ]) - ]); - $customValidation = new Validation(); - $customValidation->add('telephone', new Regex([ - 'pattern' => '/\+44 [0-9]+ [0-9]+/', - 'message' => 'The telephone has an invalid format' - ])); - $form = new Form(); - $address = new Text('address'); - $form->add($telephone); - $form->add($address); - $form->setValidation($customValidation); - expect($form->isValid(['address' => 'hello']))->false(); - expect($form->getMessages(true))->equals([ - 'telephone' => [ - Messages::__set_state([ - '_messages' => [ - Message::__set_state([ - '_type' => 'Regex', - '_message' => 'The telephone has an invalid format', - '_field' => 'telephone', - '_code' => 0, - ]) - ] - ]), - Messages::__set_state([ - '_messages' => [ - Message::__set_state([ - '_type' => 'PresenceOf', - '_message' => 'The telephone is required', - '_field' => 'telephone', - '_code' => 0, - ]) - ] - ]) - ] - ]); - }); - } -} diff --git a/tests/unit/Http/Cookie/ConstructCest.php b/tests/unit/Http/Cookie/ConstructCest.php new file mode 100644 index 00000000000..373a3bccd73 --- /dev/null +++ b/tests/unit/Http/Cookie/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Http\Cookie :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieConstruct(UnitTester $I) + { + $I->wantToTest("Http\Cookie - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/CookieCest.php b/tests/unit/Http/Cookie/CookieCest.php new file mode 100644 index 00000000000..8b9392a006d --- /dev/null +++ b/tests/unit/Http/Cookie/CookieCest.php @@ -0,0 +1,173 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http; + +use Phalcon\Crypt; +use Phalcon\Crypt\Mismatch; +use Phalcon\Di\FactoryDefault; +use Phalcon\Http\Cookie; +use Phalcon\Http\Cookie\Exception; +use Phalcon\Http\Response\Cookies; +use Phalcon\Test\Fixtures\Traits\CookieTrait; +use Phalcon\Test\Unit\Http\Helper\HttpBase; +use UnitTester; + +class CookieCest extends HttpBase +{ + use CookieTrait; + + /** + * executed before each test + */ + public function _before(UnitTester $I) + { + parent::_before($I); + $this->setDiSession(); + } + + /** + * Tests Cookie::setSignKey + * + * @test + * @author Phalcon Team + * @since 2018-05-06 + */ + public function shouldThrowExceptionIfSignKeyIsNotLongEnough(UnitTester $I) + { + $I->expectThrowable( + new Exception("The cookie's key should be at least 32 characters long. Current length is 10."), + function () { + $cookie = new Cookie('test-cookie', 'test', time() + 3600); + $cookie->setSignKey('1234567890'); + } + ); + } + + /** + * Tests Cookie::getValue using message authentication code and request + * forgery + * + * @test + * @author Phalcon Team + * @since 2018-05-06 + */ + public function shouldThrowExceptionIfMessageAuthenticationCodeIsMismatch(UnitTester $I) + { + /** + * TODO: Check the exception + */ + $I->skipTest('TODO: Check the exception'); + $I->checkExtensionIsLoaded('xdebug'); + + $I->expectThrowable( + new Exception("Hash does not match."), + function () use ($I) { + $this->setDiCrypt(); + $container = $this->getDi(); + + $cookieName = 'test-signed-name1'; + $cookieValue = 'test-signed-value'; + + $cookie = new Cookie($cookieName, $cookieValue, time() + 3600); + + $cookie->setDI($container); + $cookie->useEncryption(true); + $cookie->setSignKey('12345678901234567890123456789012'); + + $cookie->send(); + + $I->setProtectedProperty($cookie, '_readed', false); + + $rawCookie = $this->getCookie($cookieName); + $rawValue = explode(';', $rawCookie)[0]; + + $originalValue = mb_substr($rawValue, 64); + + $_COOKIE[$cookieName] = str_repeat('X', 64) . $originalValue; + $cookie->getValue(); + } + ); + } + + /** + * Tests Cookie::getValue using message authentication code + * + * @test + * @author Phalcon Team + * @since 2018-05-06 + */ + public function shouldDecryptValueByUsingMessageAuthenticationCode(UnitTester $I) + { + $I->checkExtensionIsLoaded('xdebug'); + + $this->setDiCrypt(); + $container = $this->getDi(); + + $cookieName = 'test-signed-name2'; + $cookieValue = 'test-signed-value'; + + $cookie = new Cookie($cookieName, $cookieValue, time() + 3600); + + $cookie->setDI($container); + $cookie->useEncryption(true); + $cookie->setSignKey('12345678901234567890123456789012'); + + $cookie->send(); + + $I->setProtectedProperty($cookie, '_readed', false); + + $rawCookie = $this->getCookie($cookieName); + $rawValue = explode(';', $rawCookie)[0]; + + $_COOKIE[$cookieName] = $rawValue; + $expected = $cookieValue; + $actual = $cookie->getValue(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Cookie::getValue with using encryption and default crypt algo. + * + * @test + * @issue https://github.com/phalcon/cphalcon/issues/11259 + * @author Phalcon Team + * @since 2017-10-04 + */ + public function shouldDecryptValueByUsingDefaultEncryptionAlgo(UnitTester $I) + { + $this->setDiCrypt(); + $container = $this->getDi(); + + $cookie = new Cookie('test-cookie', 'test', time() + 3600); + $cookie->setDI($container); + $cookie->useEncryption(true); + + $expected = 'test'; + $actual = $cookie->getValue(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests the internal cookies property. + * + * @test + * @issue https://github.com/phalcon/cphalcon/issues/12978 + * @author Phalcon Team + * @since 2017-09-02 + */ + public function shouldWorkWithoutInitializeInternalCookiesProperty(UnitTester $I) + { + $cookies = new Cookies(); + $actual = $cookies->send(); + $I->assertTrue($actual); + } +} diff --git a/tests/unit/Http/Cookie/DeleteCest.php b/tests/unit/Http/Cookie/DeleteCest.php new file mode 100644 index 00000000000..c09c98a3271 --- /dev/null +++ b/tests/unit/Http/Cookie/DeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class DeleteCest +{ + /** + * Tests Phalcon\Http\Cookie :: delete() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieDelete(UnitTester $I) + { + $I->wantToTest("Http\Cookie - delete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/GetDICest.php b/tests/unit/Http/Cookie/GetDICest.php new file mode 100644 index 00000000000..69d6a2ee415 --- /dev/null +++ b/tests/unit/Http/Cookie/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Http\Cookie :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieGetDI(UnitTester $I) + { + $I->wantToTest("Http\Cookie - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/GetDomainCest.php b/tests/unit/Http/Cookie/GetDomainCest.php new file mode 100644 index 00000000000..10164bad1f8 --- /dev/null +++ b/tests/unit/Http/Cookie/GetDomainCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class GetDomainCest +{ + /** + * Tests Phalcon\Http\Cookie :: getDomain() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieGetDomain(UnitTester $I) + { + $I->wantToTest("Http\Cookie - getDomain()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/GetExpirationCest.php b/tests/unit/Http/Cookie/GetExpirationCest.php new file mode 100644 index 00000000000..5e5371c9b16 --- /dev/null +++ b/tests/unit/Http/Cookie/GetExpirationCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class GetExpirationCest +{ + /** + * Tests Phalcon\Http\Cookie :: getExpiration() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieGetExpiration(UnitTester $I) + { + $I->wantToTest("Http\Cookie - getExpiration()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/GetHttpOnlyCest.php b/tests/unit/Http/Cookie/GetHttpOnlyCest.php new file mode 100644 index 00000000000..5a665ac605a --- /dev/null +++ b/tests/unit/Http/Cookie/GetHttpOnlyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class GetHttpOnlyCest +{ + /** + * Tests Phalcon\Http\Cookie :: getHttpOnly() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieGetHttpOnly(UnitTester $I) + { + $I->wantToTest("Http\Cookie - getHttpOnly()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/GetNameCest.php b/tests/unit/Http/Cookie/GetNameCest.php new file mode 100644 index 00000000000..e8650c53ffb --- /dev/null +++ b/tests/unit/Http/Cookie/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Http\Cookie :: getName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieGetName(UnitTester $I) + { + $I->wantToTest("Http\Cookie - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/GetPathCest.php b/tests/unit/Http/Cookie/GetPathCest.php new file mode 100644 index 00000000000..8d9ed10a752 --- /dev/null +++ b/tests/unit/Http/Cookie/GetPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class GetPathCest +{ + /** + * Tests Phalcon\Http\Cookie :: getPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieGetPath(UnitTester $I) + { + $I->wantToTest("Http\Cookie - getPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/GetSecureCest.php b/tests/unit/Http/Cookie/GetSecureCest.php new file mode 100644 index 00000000000..b4ae060a654 --- /dev/null +++ b/tests/unit/Http/Cookie/GetSecureCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class GetSecureCest +{ + /** + * Tests Phalcon\Http\Cookie :: getSecure() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieGetSecure(UnitTester $I) + { + $I->wantToTest("Http\Cookie - getSecure()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/GetValueCest.php b/tests/unit/Http/Cookie/GetValueCest.php new file mode 100644 index 00000000000..e03610b078a --- /dev/null +++ b/tests/unit/Http/Cookie/GetValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class GetValueCest +{ + /** + * Tests Phalcon\Http\Cookie :: getValue() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieGetValue(UnitTester $I) + { + $I->wantToTest("Http\Cookie - getValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/IsUsingEncryptionCest.php b/tests/unit/Http/Cookie/IsUsingEncryptionCest.php new file mode 100644 index 00000000000..ea1f0140c00 --- /dev/null +++ b/tests/unit/Http/Cookie/IsUsingEncryptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class IsUsingEncryptionCest +{ + /** + * Tests Phalcon\Http\Cookie :: isUsingEncryption() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieIsUsingEncryption(UnitTester $I) + { + $I->wantToTest("Http\Cookie - isUsingEncryption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/RestoreCest.php b/tests/unit/Http/Cookie/RestoreCest.php new file mode 100644 index 00000000000..5227b393cb1 --- /dev/null +++ b/tests/unit/Http/Cookie/RestoreCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class RestoreCest +{ + /** + * Tests Phalcon\Http\Cookie :: restore() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieRestore(UnitTester $I) + { + $I->wantToTest("Http\Cookie - restore()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/SendCest.php b/tests/unit/Http/Cookie/SendCest.php new file mode 100644 index 00000000000..e221d663953 --- /dev/null +++ b/tests/unit/Http/Cookie/SendCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class SendCest +{ + /** + * Tests Phalcon\Http\Cookie :: send() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieSend(UnitTester $I) + { + $I->wantToTest("Http\Cookie - send()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/SetDICest.php b/tests/unit/Http/Cookie/SetDICest.php new file mode 100644 index 00000000000..9d25fbfee24 --- /dev/null +++ b/tests/unit/Http/Cookie/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Http\Cookie :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieSetDI(UnitTester $I) + { + $I->wantToTest("Http\Cookie - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/SetDomainCest.php b/tests/unit/Http/Cookie/SetDomainCest.php new file mode 100644 index 00000000000..a0cd9d77e7f --- /dev/null +++ b/tests/unit/Http/Cookie/SetDomainCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class SetDomainCest +{ + /** + * Tests Phalcon\Http\Cookie :: setDomain() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieSetDomain(UnitTester $I) + { + $I->wantToTest("Http\Cookie - setDomain()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/SetExpirationCest.php b/tests/unit/Http/Cookie/SetExpirationCest.php new file mode 100644 index 00000000000..cc57e8cbdeb --- /dev/null +++ b/tests/unit/Http/Cookie/SetExpirationCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class SetExpirationCest +{ + /** + * Tests Phalcon\Http\Cookie :: setExpiration() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieSetExpiration(UnitTester $I) + { + $I->wantToTest("Http\Cookie - setExpiration()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/SetHttpOnlyCest.php b/tests/unit/Http/Cookie/SetHttpOnlyCest.php new file mode 100644 index 00000000000..ec15bb8a62e --- /dev/null +++ b/tests/unit/Http/Cookie/SetHttpOnlyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class SetHttpOnlyCest +{ + /** + * Tests Phalcon\Http\Cookie :: setHttpOnly() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieSetHttpOnly(UnitTester $I) + { + $I->wantToTest("Http\Cookie - setHttpOnly()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/SetPathCest.php b/tests/unit/Http/Cookie/SetPathCest.php new file mode 100644 index 00000000000..9d8eccae14a --- /dev/null +++ b/tests/unit/Http/Cookie/SetPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class SetPathCest +{ + /** + * Tests Phalcon\Http\Cookie :: setPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieSetPath(UnitTester $I) + { + $I->wantToTest("Http\Cookie - setPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/SetSecureCest.php b/tests/unit/Http/Cookie/SetSecureCest.php new file mode 100644 index 00000000000..8d2efee843a --- /dev/null +++ b/tests/unit/Http/Cookie/SetSecureCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class SetSecureCest +{ + /** + * Tests Phalcon\Http\Cookie :: setSecure() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieSetSecure(UnitTester $I) + { + $I->wantToTest("Http\Cookie - setSecure()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/SetSignKeyCest.php b/tests/unit/Http/Cookie/SetSignKeyCest.php new file mode 100644 index 00000000000..16dd4abe5f5 --- /dev/null +++ b/tests/unit/Http/Cookie/SetSignKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class SetSignKeyCest +{ + /** + * Tests Phalcon\Http\Cookie :: setSignKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieSetSignKey(UnitTester $I) + { + $I->wantToTest("Http\Cookie - setSignKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/SetValueCest.php b/tests/unit/Http/Cookie/SetValueCest.php new file mode 100644 index 00000000000..896ea01c1c1 --- /dev/null +++ b/tests/unit/Http/Cookie/SetValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class SetValueCest +{ + /** + * Tests Phalcon\Http\Cookie :: setValue() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieSetValue(UnitTester $I) + { + $I->wantToTest("Http\Cookie - setValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/ToStringCest.php b/tests/unit/Http/Cookie/ToStringCest.php new file mode 100644 index 00000000000..1c120d99832 --- /dev/null +++ b/tests/unit/Http/Cookie/ToStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class ToStringCest +{ + /** + * Tests Phalcon\Http\Cookie :: __toString() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieToString(UnitTester $I) + { + $I->wantToTest("Http\Cookie - __toString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Cookie/UseEncryptionCest.php b/tests/unit/Http/Cookie/UseEncryptionCest.php new file mode 100644 index 00000000000..d02b0269d2b --- /dev/null +++ b/tests/unit/Http/Cookie/UseEncryptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Cookie; + +use UnitTester; + +class UseEncryptionCest +{ + /** + * Tests Phalcon\Http\Cookie :: useEncryption() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpCookieUseEncryption(UnitTester $I) + { + $I->wantToTest("Http\Cookie - useEncryption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/CookieTest.php b/tests/unit/Http/CookieTest.php deleted file mode 100644 index 960f22231a4..00000000000 --- a/tests/unit/Http/CookieTest.php +++ /dev/null @@ -1,183 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Http - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class CookieTest extends HttpBase -{ - use CookieAwareTrait; - - /** - * Tests Cookie::setSignKey - * - * @test - * @author Serghei Iakovlev - * @since 2018-05-06 - * - * @expectedException \Phalcon\Http\Cookie\Exception - * @expectedExceptionMessage The cookie's key should be at least 32 characters long. Current length is 10. - */ - public function shouldThrowExceptionIfSignKeyIsUnenoughLong() - { - $this->specify( - 'Cookie does not validate sign key cipher length as expected', - function () { - $cookie = new Cookie('test-cookie', 'test', time() + 3600); - $cookie->setSignKey('1234567890'); - } - ); - } - - /** - * Tests Cookie::getValue using message authentication code and request forgery - * - * @test - * @author Serghei Iakovlev - * @since 2018-05-06 - * - * @expectedException \Phalcon\Crypt\Mismatch - * @expectedExceptionMessage Hash does not match. - */ - public function shouldThrowExceptionIfMessageAuthenticationCodeIsMismatch() - { - if (!extension_loaded('xdebug')) { - $this->markTestSkipped('Warning: xdebug extension is not loaded'); - } - - $this->specify( - 'Cookie object unable to detected that message authentication code is mismatch', - function () { - $di = new FactoryDefault(); - - $di->setShared('crypt', function () { - $crypt = new Crypt(); - $crypt->setKey('cryptkeycryptkey'); - $crypt->useSigning(true); - - return $crypt; - }); - - $cookieName = 'test-signed-name1'; - $cookieValue = 'test-signed-value'; - - $cookie = new Cookie($cookieName, $cookieValue, time() + 3600); - - $cookie->setDI($di); - $cookie->useEncryption(true); - $cookie->setSignKey('12345678901234567890123456789012'); - - $cookie->send(); - - $this->tester->setProtectedProperty($cookie, '_readed', false); - - $rawCookie = $this->getCookie($cookieName); - $rawValue = explode(';', $rawCookie)[0]; - - $originalValue = mb_substr($rawValue, 64); - - $_COOKIE[$cookieName] = str_repeat('X', 64) . $originalValue; - $cookie->getValue(); - } - ); - } - - /** - * Tests Cookie::getValue using message authentication code - * - * @test - * @author Serghei Iakovlev - * @since 2018-05-06 - */ - public function shouldDecryptValueByUsingMessageAuthenticationCode() - { - if (!extension_loaded('xdebug')) { - $this->markTestSkipped('Warning: xdebug extension is not loaded'); - } - - $this->specify( - 'Cookie object does not work with message authentication code as expected', - function () { - $di = new FactoryDefault(); - - $di->setShared('crypt', function () { - $crypt = new Crypt(); - $crypt->setKey('cryptkeycryptkey'); - - return $crypt; - }); - - $cookieName = 'test-signed-name2'; - $cookieValue = 'test-signed-value'; - - $cookie = new Cookie($cookieName, $cookieValue, time() + 3600); - - $cookie->setDI($di); - $cookie->useEncryption(true); - $cookie->setSignKey('12345678901234567890123456789012'); - - $cookie->send(); - - $this->tester->setProtectedProperty($cookie, '_readed', false); - - $rawCookie = $this->getCookie($cookieName); - $rawValue = explode(';', $rawCookie)[0]; - - $_COOKIE[$cookieName] = $rawValue; - expect($cookie->getValue())->equals($cookieValue); - } - ); - } - - /** - * Tests Cookie::getValue with using encryption and default crypt algo. - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/11259 - * @author Serghei Iakovlev - * @since 2017-10-04 - */ - public function shouldDecryptValueByUsingDefaultEncryptionAlgo() - { - $this->specify( - "The cookie value decrypted incorrectly.", - function () { - $di = new FactoryDefault(); - - $di->set('crypt', function () { - $crypt = new Crypt(); - $crypt->setKey('cryptkeycryptkey'); - - return $crypt; - }); - - $cookie = new Cookie('test-cookie', 'test', time() + 3600); - $cookie->setDI($di); - $cookie->useEncryption(true); - - expect($cookie->getValue())->equals('test'); - } - ); - } -} diff --git a/tests/unit/Http/Helper/HttpBase.php b/tests/unit/Http/Helper/HttpBase.php index d05dba37741..455194a0233 100644 --- a/tests/unit/Http/Helper/HttpBase.php +++ b/tests/unit/Http/Helper/HttpBase.php @@ -1,145 +1,152 @@ + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + namespace Phalcon\Test\Unit\Http\Helper; use Phalcon\Di; use Phalcon\Filter; -use Phalcon\Mvc\Url; use Phalcon\Http\Request; use Phalcon\Http\Response; -use Phalcon\Test\Module\UnitTest; +use Phalcon\Mvc\Url; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use UnitTester; -/** - * \Phalcon\Test\Unit\Http\Helper\HttpBase - * Base class for \Phalcon\Http component - * - * @copyright (c) 2011-2017 Phalcon Team - * @link https://phalconphp.com - * @author Andres Gutierrez - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Http\Helper - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class HttpBase extends UnitTest +class HttpBase { + use DiTrait; + + protected $server = []; + + /** + * executed before each test + */ + public function _before(UnitTester $I) + { + $this->server = $_SERVER; + $_SERVER = []; + $this->newDi(); + $this->setDiEscaper(); + $this->setDiUrl(); + $this->setDiFilter(); + $this->setDiEventsManager(); + $this->setDiRequest(); + $this->setDiResponse(); + } + + /** + * executed after each test + */ + public function _after(UnitTester $I) + { + $_SERVER = $this->server; + } + /** * Initializes the response object and returns it * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-05 * * @return Response */ protected function getResponseObject() { - Di::reset(); - $di = new Di(); + $container = Di::getDefault(); - $di->set('url', function () { - $url = new Url(); - $url->setBaseUri('/'); - return $url; - }); - - $response = new Response(); - $response->setDI($di); - - return $response; + return $container->get('response'); } /** - * Initializes the request object and returns it + * Checks the has functions on non defined variables * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-05 * - * @return Request + * @param UnitTester $I + * @param string $function */ - protected function getRequestObject() + protected function hasEmpty(UnitTester $I, $function) { - Di::reset(); - $di = new Di(); - - $di->set('filter', function () { - return new Filter(); - }); - - $request = new Request(); - $request->setDI($di); + $request = $this->getRequestObject(); + $actual = $request->$function('test'); - return $request; + $I->assertFalse($actual); } /** - * Checks the has functions on non defined variables + * Initializes the request object and returns it * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-05 * - * @param string $function + * @return Request */ - protected function hasEmpty($function) + protected function getRequestObject() { - $request = $this->getRequestObject(); - $actual = $request->$function('test'); + $container = Di::getDefault(); - expect($actual)->false(); + return $container->get('request'); } /** * Checks the has functions on defined variables * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-05 * - * @param string $function - * @param string $method + * @param UnitTester $I + * @param string $function + * @param string $method */ - public function hasNotEmpty($function, $method) + protected function hasNotEmpty(UnitTester $I, $function, $method) { $request = $this->getRequestObject(); $unMethod = "un{$method}"; $this->$method('test', 1); - $actual = $request->$function('test'); + $actual = $request->$function('test'); $this->$unMethod('test'); - expect($actual)->true(); + $I->assertTrue($actual); } /** * Checks the get functions on undefined variables * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-05 * - * @param string $function + * @param UnitTester $I + * @param string $function */ - public function getEmpty($function) + protected function getEmpty(UnitTester $I, $function) { $request = $this->getRequestObject(); - $actual = $request->$function('test'); + $actual = $request->$function('test'); - expect($actual)->isEmpty(); + $I->assertEmpty($actual); } /** * Checks the get functions on defined variables * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-05 * - * @param string $function - * @param string $method + * @param UnitTester $I + * @param string $function + * @param string $method */ - public function getNotEmpty($function, $method) + protected function getNotEmpty(UnitTester $I, $function, $method) { $request = $this->getRequestObject(); $unMethod = "un{$method}"; @@ -149,19 +156,20 @@ public function getNotEmpty($function, $method) $actual = $request->$function('test'); $this->$unMethod('test'); - expect($actual)->equals($expected); + $I->assertEquals($expected, $actual); } /** * Checks the get functions for sanitized data * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-05 * - * @param string $function - * @param string $method + * @param UnitTester $I + * @param string $function + * @param string $method */ - public function getSanitized($function, $method) + protected function getSanitized(UnitTester $I, $function, $method) { $request = $this->getRequestObject(); $unMethod = "un{$method}"; @@ -171,20 +179,21 @@ public function getSanitized($function, $method) $actual = $request->$function('test', 'string'); $this->$unMethod('test'); - expect($actual)->equals($expected); + $I->assertEquals($expected, $actual); } /** * Checks the get functions for sanitized data (array filters) * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-05 * - * @param string $function - * @param array $filter - * @param string $method + * @param UnitTester $I + * @param string $function + * @param array $filter + * @param string $method */ - public function getSanitizedArrayFilter($function, $filter, $method) + protected function getSanitizedArrayFilter(UnitTester $I, $function, $filter, $method) { $request = $this->getRequestObject(); $unMethod = "un{$method}"; @@ -194,17 +203,17 @@ public function getSanitizedArrayFilter($function, $filter, $method) $actual = $request->$function('test', $filter); $this->$unMethod('test'); - expect($actual)->equals($expected); + $I->assertEquals($expected, $actual); } /** * Sets a server variable ($_SERVER) * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-05 * - * @param string $var - * @param mixed $value + * @param string $var + * @param mixed $value */ protected function setServerVar($var, $value) { @@ -214,10 +223,10 @@ protected function setServerVar($var, $value) /** * Unsets a server variable ($_SERVER) * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-05 * - * @param string $var + * @param string $var */ protected function unsetServerVar($var) { @@ -227,11 +236,11 @@ protected function unsetServerVar($var) /** * Sets a get variable ($_GET) * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-05 * - * @param string $var - * @param mixed $value + * @param string $var + * @param mixed $value */ protected function setGetVar($var, $value) { @@ -241,10 +250,10 @@ protected function setGetVar($var, $value) /** * Unsets a get variable ($_GET) * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-05 * - * @param string $var + * @param string $var */ protected function unsetGetVar($var) { @@ -254,11 +263,11 @@ protected function unsetGetVar($var) /** * Sets a post variable ($_POST) * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-05 * - * @param string $var - * @param mixed $value + * @param string $var + * @param mixed $value */ protected function setPostVar($var, $value) { @@ -268,10 +277,10 @@ protected function setPostVar($var, $value) /** * Unsets a post variable ($_POST) * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-05 * - * @param string $var + * @param string $var */ protected function unsetPostVar($var) { @@ -281,11 +290,11 @@ protected function unsetPostVar($var) /** * Sets a request variable ($_REQUEST) * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-05 * - * @param string $var - * @param mixed $value + * @param string $var + * @param mixed $value */ protected function setRequestVar($var, $value) { @@ -295,10 +304,10 @@ protected function setRequestVar($var, $value) /** * Unsets a request variable ($_REQUEST) * - * @author Nikolaos Dimopoulos + * @author Phalcon Team * @since 2014-10-05 * - * @param string $var + * @param string $var */ protected function unsetRequestVar($var) { diff --git a/tests/unit/Http/Request/AuthHeaderCest.php b/tests/unit/Http/Request/AuthHeaderCest.php new file mode 100644 index 00000000000..f022b85ee09 --- /dev/null +++ b/tests/unit/Http/Request/AuthHeaderCest.php @@ -0,0 +1,320 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use Phalcon\Di; +use Phalcon\Events\Manager; +use Phalcon\Filter; +use Phalcon\Http\Request; +use Phalcon\Test\Fixtures\Listener\CustomAuthorizationListener; +use Phalcon\Test\Fixtures\Listener\NegotiateAuthorizationListener; +use Phalcon\Test\Unit\Http\Helper\HttpBase; +use UnitTester; + +class AuthHeaderCest extends HttpBase +{ + /** + * Tests basic auth headers + * + * @test + * @issue https://github.com/phalcon/cphalcon/issues/12480 + * @author Serghei Iakovelv + * @since 2016-12-18 + */ + public function shouldCorrectHandleAuth(UnitTester $I) + { + $examples = $this->basicAuthProvider(); + + foreach ($examples as $item) { + $_SERVER = $item[0]; + $expected = $item[1]; + $request = $this->getRequestObject(); + $actual = $request->getHeaders(); + + ksort($actual); + ksort($expected); + + $I->assertEquals($expected, $actual); + } + } + + protected function basicAuthProvider() + { + return [ + // Basic Auth + [ + [ + 'PHP_AUTH_USER' => 'phalcon', + 'PHP_AUTH_PW' => 'secret', + ], + [ + 'Php-Auth-User' => 'phalcon', + 'Php-Auth-Pw' => 'secret', + 'Authorization' => 'Basic cGhhbGNvbjpzZWNyZXQ=', + ], + ], + // Basic Auth without name + [ + [ + 'PHP_AUTH_PW' => 'secret', + ], + [ + ], + ], + // Basic Auth without password + [ + [ + 'PHP_AUTH_USER' => 'phalcon', + ], + [ + ], + ], + // Workaround for missing Authorization header under CGI/FastCGI Apache (.htaccess): + // RewriteEngine on + // RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization},last] + [ + [ + 'HTTP_AUTHORIZATION' => 'Basic cGhhbGNvbjpzZWNyZXQ=', + ], + [ + 'Php-Auth-User' => 'phalcon', + 'Php-Auth-Pw' => 'secret', + 'Authorization' => 'Basic cGhhbGNvbjpzZWNyZXQ=', + ], + ], + // Invalid Basic Auth by using CGI/FastCGI + [ + [ + 'HTTP_AUTHORIZATION' => 'Basic 12345678', + ], + [ + 'Authorization' => 'Basic 12345678', + ], + ], + // Digest Auth + [ + [ + 'HTTP_AUTHORIZATION' => 'Digest username="myleft", ' . + 'realm="myleft", qop="auth", ' . + 'algorithm="MD5", uri="http://localhost:81/", ' . + 'nonce="nonce", nc=nc, cnonce="cnonce", ' . + 'opaque="opaque", response="response"', + ], + [ + 'Authorization' => 'Digest username="myleft", realm="myleft", ' . + 'qop="auth", algorithm="MD5", uri="http://localhost:81/", ' . + 'nonce="nonce", nc=nc, cnonce="cnonce", ' . + 'opaque="opaque", response="response"', + 'Php-Auth-Digest' => 'Digest username="myleft", realm="myleft", ' . + 'qop="auth", algorithm="MD5", uri="http://localhost:81/", ' . + 'nonce="nonce", nc=nc, cnonce="cnonce", ' . + 'opaque="opaque", response="response"', + ], + ], + // Digest Auth with REDIRECT_HTTP_AUTHORIZATION + [ + [ + 'REDIRECT_HTTP_AUTHORIZATION' => 'Digest username="myleft", realm="myleft", ' . + 'qop="auth", algorithm="MD5", uri="http://localhost:81/", ' . + 'nonce="nonce", nc=nc, cnonce="cnonce", ' . + 'opaque="opaque", response="response"', + ], + [ + 'Authorization' => 'Digest username="myleft", realm="myleft", ' . + 'qop="auth", algorithm="MD5", uri="http://localhost:81/", ' . + 'nonce="nonce", nc=nc, cnonce="cnonce", ' . + 'opaque="opaque", response="response"', + 'Php-Auth-Digest' => 'Digest username="myleft", realm="myleft", ' . + 'qop="auth", algorithm="MD5", uri="http://localhost:81/", ' . + 'nonce="nonce", nc=nc, cnonce="cnonce", ' . + 'opaque="opaque", response="response"', + ], + ], + // Bearer Auth + [ + [ + 'HTTP_AUTHORIZATION' => 'Bearer some-secret-token-here', + ], + [ + 'Authorization' => 'Bearer some-secret-token-here', + ], + ], + // Bearer Auth with REDIRECT_HTTP_AUTHORIZATION + [ + [ + 'REDIRECT_HTTP_AUTHORIZATION' => 'Bearer some-secret-token-here', + ], + [ + 'Authorization' => 'Bearer some-secret-token-here', + ], + ], + ]; + } + + /** @test */ + public function shouldGetAuthFromHeaders(UnitTester $I) + { + $examples = $this->authProvider(); + foreach ($examples as $item) { + $request = $this->getRequestObject(); + $server = $item[0]; + $function = $item[1]; + $expected = $item[2]; + + $_SERVER = $server; + + $actual = $request->$function(); + $I->assertEquals($expected, $actual); + } + } + + protected function authProvider() + { + return [ + [ + [ + 'PHP_AUTH_USER' => 'myleft', + 'PHP_AUTH_PW' => '123456', + ], + 'getBasicAuth', + [ + 'username' => 'myleft', 'password' => '123456', + ], + ], + [ + [ + 'PHP_AUTH_DIGEST' => 'Digest username="myleft", realm="myleft", qop="auth", algorithm="MD5", uri="http://localhost:81/", nonce="nonce", nc=nc, cnonce="cnonce", opaque="opaque", response="response"', + ], + 'getDigestAuth', + [ + 'username' => 'myleft', + 'realm' => 'myleft', + 'qop' => 'auth', + 'algorithm' => 'MD5', + 'uri' => 'http://localhost:81/', + 'nonce' => 'nonce', + 'nc' => 'nc', + 'cnonce' => 'cnonce', + 'opaque' => 'opaque', + 'response' => 'response', + ], + ], + [ + [ + 'PHP_AUTH_DIGEST' => 'Digest username=myleft, realm=myleft, qop=auth, algorithm=MD5, uri=http://localhost:81/, nonce=nonce, nc=nc, cnonce=cnonce, opaque=opaque, response=response', + ], + 'getDigestAuth', + [ + 'username' => 'myleft', + 'realm' => 'myleft', + 'qop' => 'auth', + 'algorithm' => 'MD5', + 'uri' => 'http://localhost:81/', + 'nonce' => 'nonce', + 'nc' => 'nc', + 'cnonce' => 'cnonce', + 'opaque' => 'opaque', + 'response' => 'response', + ], + ], + [ + [ + 'PHP_AUTH_DIGEST' => 'Digest username=myleft realm=myleft qop=auth algorithm=MD5 uri=http://localhost:81/ nonce=nonce nc=nc cnonce=cnonce opaque=opaque response=response', + ], + 'getDigestAuth', + [ + 'username' => 'myleft', + 'realm' => 'myleft', + 'qop' => 'auth', + 'algorithm' => 'MD5', + 'uri' => 'http://localhost:81/', + 'nonce' => 'nonce', + 'nc' => 'nc', + 'cnonce' => 'cnonce', + 'opaque' => 'opaque', + 'response' => 'response', + ], + ], + ]; + } + + /** + * Tests fire authorization events. + * + * @test + * @issue https://github.com/phalcon/cphalcon/issues/13327 + * @author Serghei Iakovelv + * @since 2018-03-25 + */ + public function shouldFireEventWhenResolveAuthorization(UnitTester $I) + { + $request = $this->getRequestObject(); + $container = $request->getDI(); + $eventsManager = $container->getShared('eventsManager'); + $eventsManager->attach('request', new CustomAuthorizationListener()); + + $_SERVER = ['HTTP_CUSTOM_KEY' => 'Custom-Value']; + + $expected = [ + 'Custom-Key' => 'Custom-Value', + 'Fired-Before' => 'beforeAuthorizationResolve', + 'Fired-After' => 'afterAuthorizationResolve', + ]; + $actual = $request->getHeaders(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests custom authorization resolver. + * + * @test + * @issue https://github.com/phalcon/cphalcon/issues/13327 + * @author Serghei Iakovelv + * @since 2018-03-25 + */ + public function shouldEnableCustomAuthorizationResolver(UnitTester $I) + { + $request = $this->getRequestObject(); + $container = $request->getDI(); + $eventsManager = $container->getShared('eventsManager'); + $eventsManager->attach('request', new NegotiateAuthorizationListener()); + + $_SERVER['CUSTOM_KERBEROS_AUTH'] = 'Negotiate a87421000492aa874209af8bc028'; + + $expected = [ + 'Authorization' => 'Negotiate a87421000492aa874209af8bc028', + ]; + $actual = $request->getHeaders(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests custom authorization header. + * + * @test + * @issue https://github.com/phalcon/cphalcon/issues/13327 + * @author Serghei Iakovelv + * @since 2018-03-25 + */ + public function shouldResolveCustomAuthorizationHeaders(UnitTester $I) + { + $request = $this->getRequestObject(); + + $_SERVER['HTTP_AUTHORIZATION'] = 'Enigma Secret'; + + $expected = [ + 'Authorization' => 'Enigma Secret', + ]; + $actual = $request->getHeaders(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Http/Request/AuthHeaderTest.php b/tests/unit/Http/Request/AuthHeaderTest.php deleted file mode 100644 index 32e67b27bf2..00000000000 --- a/tests/unit/Http/Request/AuthHeaderTest.php +++ /dev/null @@ -1,332 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Http\Request - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class AuthHeaderTest extends UnitTest -{ - /** - * @var Request - */ - protected $request; - - - /** - * executed before each test - */ - public function _before() - { - Di::reset(); - $di = new Di(); - - $di->setShared('filter', Filter::class); - $di->setShared('eventsManager', Manager::class); - - $this->request = new Request(); - $this->request->setDI($di); - } - - /** - * Tests basic auth headers - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/12480 - * @author Serghei Iakovelv - * @since 2016-12-18 - */ - public function shouldCorrectHandleAuth() - { - $this->specify( - 'The request object handles auth headers incorrectly', - function ($server, $expected) { - $_SERVER = $server; - - $headers = $this->request->getHeaders(); - - ksort($headers); - ksort($expected); - - expect($headers)->equals($expected); - }, - ['examples' => $this->basicAuthProvider()] - ); - } - - /** @test */ - public function shouldGetAuthFromHeaders() - { - $this->specify( - "Request does not handle auth correctly", - function ($server, $function, $expected) { - $_SERVER = $server; - - expect($this->request->$function())->equals($expected); - }, - ['examples' => $this->authProvider()] - ); - } - - /** - * Tests fire authorization events. - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/13327 - * @author Serghei Iakovelv - * @since 2018-03-25 - */ - public function shouldFireEventWhenRezolveAuthorization() - { - $this->specify( - "Request object does not fire authorization events correctly", - function () { - $di = $this->request->getDI(); - $di->getShared('eventsManager') - ->attach('request', new CustomAuthorizationListener()); - - $_SERVER = ['HTTP_CUSTOM_KEY' => 'Custom-Value']; - - expect($this->request->getHeaders())->equals([ - 'Custom-Key' => 'Custom-Value', - 'Fired-Before' => 'beforeAuthorizationResolve', - 'Fired-After' => 'afterAuthorizationResolve', - ]); - } - ); - } - - /** - * Tests custom authorization resolver. - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/13327 - * @author Serghei Iakovelv - * @since 2018-03-25 - */ - public function shouldEnableCustomAuthorizationResolver() - { - $this->specify( - 'Request object does work with custom authorization resolver correctly', - function () { - $di = $this->request->getDI(); - $di->getShared('eventsManager') - ->attach('request', new NegotiateAuthorizationListener()); - - $_SERVER['CUSTOM_KERBEROS_AUTH'] = 'Negotiate a87421000492aa874209af8bc028'; - - expect($this->request->getHeaders())->equals([ - 'Authorization' => 'Negotiate a87421000492aa874209af8bc028', - ]); - } - ); - } - - /** - * Tests custom authorization header. - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/13327 - * @author Serghei Iakovelv - * @since 2018-03-25 - */ - public function shouldResolveCustomAuthorizationHeaders() - { - $this->specify( - 'Request object does work with custom authorization header correctly', - function () { - $_SERVER['HTTP_AUTHORIZATION'] = 'Enigma Secret'; - - expect($this->request->getHeaders())->equals([ - 'Authorization' => 'Enigma Secret', - ]); - } - ); - } - - protected function basicAuthProvider() - { - return [ - // Basic Auth - [ - [ - 'PHP_AUTH_USER' => 'phalcon', - 'PHP_AUTH_PW' => 'secret', - ], - [ - 'Php-Auth-User' => 'phalcon', - 'Php-Auth-Pw' => 'secret', - 'Authorization' => 'Basic cGhhbGNvbjpzZWNyZXQ=', - ], - ], - // Basic Auth without name - [ - [ - 'PHP_AUTH_PW' => 'secret', - ], - [ - ], - ], - // Basic Auth without password - [ - [ - 'PHP_AUTH_USER' => 'phalcon', - ], - [ - ], - ], - // Workaround for missing Authorization header under CGI/FastCGI Apache (.htaccess): - // RewriteEngine on - // RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization},last] - [ - [ - 'HTTP_AUTHORIZATION' => 'Basic cGhhbGNvbjpzZWNyZXQ=', - ], - [ - 'Php-Auth-User' => 'phalcon', - 'Php-Auth-Pw' => 'secret', - 'Authorization' => 'Basic cGhhbGNvbjpzZWNyZXQ=', - ], - ], - // Invalid Basic Auth by using CGI/FastCGI - [ - [ - 'HTTP_AUTHORIZATION' => 'Basic 12345678', - ], - [ - 'Authorization' => 'Basic 12345678', - ], - ], - // Digest Auth - [ - [ - 'HTTP_AUTHORIZATION' => 'Digest username="myleft", realm="myleft", qop="auth", algorithm="MD5", uri="http://localhost:81/", nonce="nonce", nc=nc, cnonce="cnonce", opaque="opaque", response="response"', - ], - [ - 'Authorization' => 'Digest username="myleft", realm="myleft", qop="auth", algorithm="MD5", uri="http://localhost:81/", nonce="nonce", nc=nc, cnonce="cnonce", opaque="opaque", response="response"', - 'Php-Auth-Digest' => 'Digest username="myleft", realm="myleft", qop="auth", algorithm="MD5", uri="http://localhost:81/", nonce="nonce", nc=nc, cnonce="cnonce", opaque="opaque", response="response"', - ], - ], - // Digest Auth with REDIRECT_HTTP_AUTHORIZATION - [ - [ - 'REDIRECT_HTTP_AUTHORIZATION' => 'Digest username="myleft", realm="myleft", qop="auth", algorithm="MD5", uri="http://localhost:81/", nonce="nonce", nc=nc, cnonce="cnonce", opaque="opaque", response="response"', - ], - [ - 'Authorization' => 'Digest username="myleft", realm="myleft", qop="auth", algorithm="MD5", uri="http://localhost:81/", nonce="nonce", nc=nc, cnonce="cnonce", opaque="opaque", response="response"', - 'Php-Auth-Digest' => 'Digest username="myleft", realm="myleft", qop="auth", algorithm="MD5", uri="http://localhost:81/", nonce="nonce", nc=nc, cnonce="cnonce", opaque="opaque", response="response"', - ], - ], - // Bearer Auth - [ - [ - 'HTTP_AUTHORIZATION' => 'Bearer some-secret-token-here', - ], - [ - 'Authorization' => 'Bearer some-secret-token-here', - ], - ], - // Bearer Auth with REDIRECT_HTTP_AUTHORIZATION - [ - [ - 'REDIRECT_HTTP_AUTHORIZATION' => 'Bearer some-secret-token-here', - ], - [ - 'Authorization' => 'Bearer some-secret-token-here', - ], - ], - ]; - } - - protected function authProvider() - { - return [ - [ - [ - 'PHP_AUTH_USER' => 'myleft', - 'PHP_AUTH_PW' => '123456' - ], - 'getBasicAuth', - [ - 'username' => 'myleft', 'password' => '123456' - ] - ], - [ - [ - 'PHP_AUTH_DIGEST' => 'Digest username="myleft", realm="myleft", qop="auth", algorithm="MD5", uri="http://localhost:81/", nonce="nonce", nc=nc, cnonce="cnonce", opaque="opaque", response="response"' - ], - 'getDigestAuth', - [ - 'username' => 'myleft', - 'realm' => 'myleft', - 'qop' => 'auth', - 'algorithm' => 'MD5', - 'uri' => 'http://localhost:81/', - 'nonce' => 'nonce', - 'nc' => 'nc', - 'cnonce' => 'cnonce', - 'opaque' => 'opaque', - 'response' => 'response', - ] - ], - [ - [ - 'PHP_AUTH_DIGEST' => 'Digest username=myleft, realm=myleft, qop=auth, algorithm=MD5, uri=http://localhost:81/, nonce=nonce, nc=nc, cnonce=cnonce, opaque=opaque, response=response' - ], - 'getDigestAuth', - [ - 'username' => 'myleft', - 'realm' => 'myleft', - 'qop' => 'auth', - 'algorithm' => 'MD5', - 'uri' => 'http://localhost:81/', - 'nonce' => 'nonce', - 'nc' => 'nc', - 'cnonce' => 'cnonce', - 'opaque' => 'opaque', - 'response' => 'response', - ] - ], - [ - [ - 'PHP_AUTH_DIGEST' => 'Digest username=myleft realm=myleft qop=auth algorithm=MD5 uri=http://localhost:81/ nonce=nonce nc=nc cnonce=cnonce opaque=opaque response=response' - ], - 'getDigestAuth', - [ - 'username' => 'myleft', - 'realm' => 'myleft', - 'qop' => 'auth', - 'algorithm' => 'MD5', - 'uri' => 'http://localhost:81/', - 'nonce' => 'nonce', - 'nc' => 'nc', - 'cnonce' => 'cnonce', - 'opaque' => 'opaque', - 'response' => 'response', - ] - ], - ]; - } -} diff --git a/tests/unit/Http/Request/File/ConstructCest.php b/tests/unit/Http/Request/File/ConstructCest.php new file mode 100644 index 00000000000..b0a809d6a49 --- /dev/null +++ b/tests/unit/Http/Request/File/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request\File; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Http\Request\File :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestFileConstruct(UnitTester $I) + { + $I->wantToTest("Http\Request\File - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/File/GetErrorCest.php b/tests/unit/Http/Request/File/GetErrorCest.php new file mode 100644 index 00000000000..2ce5d0188ea --- /dev/null +++ b/tests/unit/Http/Request/File/GetErrorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request\File; + +use UnitTester; + +class GetErrorCest +{ + /** + * Tests Phalcon\Http\Request\File :: getError() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestFileGetError(UnitTester $I) + { + $I->wantToTest("Http\Request\File - getError()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/File/GetExtensionCest.php b/tests/unit/Http/Request/File/GetExtensionCest.php new file mode 100644 index 00000000000..f229650a071 --- /dev/null +++ b/tests/unit/Http/Request/File/GetExtensionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request\File; + +use UnitTester; + +class GetExtensionCest +{ + /** + * Tests Phalcon\Http\Request\File :: getExtension() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestFileGetExtension(UnitTester $I) + { + $I->wantToTest("Http\Request\File - getExtension()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/File/GetKeyCest.php b/tests/unit/Http/Request/File/GetKeyCest.php new file mode 100644 index 00000000000..c221efd2233 --- /dev/null +++ b/tests/unit/Http/Request/File/GetKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request\File; + +use UnitTester; + +class GetKeyCest +{ + /** + * Tests Phalcon\Http\Request\File :: getKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestFileGetKey(UnitTester $I) + { + $I->wantToTest("Http\Request\File - getKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/File/GetNameCest.php b/tests/unit/Http/Request/File/GetNameCest.php new file mode 100644 index 00000000000..65fa064d90d --- /dev/null +++ b/tests/unit/Http/Request/File/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request\File; + +use UnitTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Http\Request\File :: getName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestFileGetName(UnitTester $I) + { + $I->wantToTest("Http\Request\File - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/File/GetRealTypeCest.php b/tests/unit/Http/Request/File/GetRealTypeCest.php new file mode 100644 index 00000000000..48dbbefcefb --- /dev/null +++ b/tests/unit/Http/Request/File/GetRealTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request\File; + +use UnitTester; + +class GetRealTypeCest +{ + /** + * Tests Phalcon\Http\Request\File :: getRealType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestFileGetRealType(UnitTester $I) + { + $I->wantToTest("Http\Request\File - getRealType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/File/GetSizeCest.php b/tests/unit/Http/Request/File/GetSizeCest.php new file mode 100644 index 00000000000..54fb56301f4 --- /dev/null +++ b/tests/unit/Http/Request/File/GetSizeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request\File; + +use UnitTester; + +class GetSizeCest +{ + /** + * Tests Phalcon\Http\Request\File :: getSize() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestFileGetSize(UnitTester $I) + { + $I->wantToTest("Http\Request\File - getSize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/File/GetTempNameCest.php b/tests/unit/Http/Request/File/GetTempNameCest.php new file mode 100644 index 00000000000..4c96e18f8b5 --- /dev/null +++ b/tests/unit/Http/Request/File/GetTempNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request\File; + +use UnitTester; + +class GetTempNameCest +{ + /** + * Tests Phalcon\Http\Request\File :: getTempName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestFileGetTempName(UnitTester $I) + { + $I->wantToTest("Http\Request\File - getTempName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/File/GetTypeCest.php b/tests/unit/Http/Request/File/GetTypeCest.php new file mode 100644 index 00000000000..b4cb18ff298 --- /dev/null +++ b/tests/unit/Http/Request/File/GetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request\File; + +use UnitTester; + +class GetTypeCest +{ + /** + * Tests Phalcon\Http\Request\File :: getType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestFileGetType(UnitTester $I) + { + $I->wantToTest("Http\Request\File - getType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/File/IsUploadedFileCest.php b/tests/unit/Http/Request/File/IsUploadedFileCest.php new file mode 100644 index 00000000000..52d76d8e094 --- /dev/null +++ b/tests/unit/Http/Request/File/IsUploadedFileCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request\File; + +use UnitTester; + +class IsUploadedFileCest +{ + /** + * Tests Phalcon\Http\Request\File :: isUploadedFile() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestFileIsUploadedFile(UnitTester $I) + { + $I->wantToTest("Http\Request\File - isUploadedFile()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/File/MoveToCest.php b/tests/unit/Http/Request/File/MoveToCest.php new file mode 100644 index 00000000000..f4927ea9741 --- /dev/null +++ b/tests/unit/Http/Request/File/MoveToCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request\File; + +use UnitTester; + +class MoveToCest +{ + /** + * Tests Phalcon\Http\Request\File :: moveTo() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestFileMoveTo(UnitTester $I) + { + $I->wantToTest("Http\Request\File - moveTo()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/FileCest.php b/tests/unit/Http/Request/FileCest.php new file mode 100644 index 00000000000..9a0bb96ef6e --- /dev/null +++ b/tests/unit/Http/Request/FileCest.php @@ -0,0 +1,53 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use Phalcon\Http\Request\File; +use Phalcon\Test\Module\UnitTest; +use UnitTester; +use function dataFolder; + +class FileCest +{ + /** + * Tests getRealType + * + * @issue https://github.com/phalcon/cphalcon/issues/1442 + * @author Phalcon Team + * @author Dreamszhu + * @since 2013-10-26 + */ + public function testRealType(UnitTester $I) + { + if (!extension_loaded('fileinfo')) { + $scenario->skip('Warning: fileinfo extension is not loaded'); + } + + $file = new File( + [ + 'name' => 'test', + 'type' => 'text/plain', + 'tmp_name' => dataFolder('/assets/images/phalconphp.jpg'), + 'size' => 1, + 'error' => 0, + ] + ); + + $expected = 'text/plain'; + $actual = $file->getType(); + $I->assertEquals($expected, $actual); + + $expected = 'image/jpeg'; + $actual = $file->getRealType(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Http/Request/FileTest.php b/tests/unit/Http/Request/FileTest.php deleted file mode 100644 index ed81c1aca23..00000000000 --- a/tests/unit/Http/Request/FileTest.php +++ /dev/null @@ -1,57 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Http\Request - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FileTest extends UnitTest -{ - /** - * Tests getRealType - * - * @issue https://github.com/phalcon/cphalcon/issues/1442 - * @author Serghei Iakovlev - * @author Dreamszhu - * @since 2013-10-26 - */ - public function testRealType() - { - if (!extension_loaded('fileinfo')) { - $this->markTestSkipped('Warning: fileinfo extension is not loaded'); - } - - $this->specify( - "getRealType does not returns real type", - function () { - $file = new File([ - 'name' => 'test', - 'type' => 'text/plain', - 'tmp_name' => PATH_DATA . '/assets/phalconphp.jpg', - 'size' => 1, - 'error' => 0, - ]); - - expect($file->getType())->equals('text/plain'); - expect($file->getRealType())->equals('image/jpeg'); - } - ); - } -} diff --git a/tests/unit/Http/Request/GetAcceptableContentCest.php b/tests/unit/Http/Request/GetAcceptableContentCest.php new file mode 100644 index 00000000000..0f4f2aadf92 --- /dev/null +++ b/tests/unit/Http/Request/GetAcceptableContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetAcceptableContentCest +{ + /** + * Tests Phalcon\Http\Request :: getAcceptableContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetAcceptableContent(UnitTester $I) + { + $I->wantToTest("Http\Request - getAcceptableContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetBasicAuthCest.php b/tests/unit/Http/Request/GetBasicAuthCest.php new file mode 100644 index 00000000000..7e223dadbfa --- /dev/null +++ b/tests/unit/Http/Request/GetBasicAuthCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetBasicAuthCest +{ + /** + * Tests Phalcon\Http\Request :: getBasicAuth() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetBasicAuth(UnitTester $I) + { + $I->wantToTest("Http\Request - getBasicAuth()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetBestAcceptCest.php b/tests/unit/Http/Request/GetBestAcceptCest.php new file mode 100644 index 00000000000..dbed6ca0329 --- /dev/null +++ b/tests/unit/Http/Request/GetBestAcceptCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetBestAcceptCest +{ + /** + * Tests Phalcon\Http\Request :: getBestAccept() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetBestAccept(UnitTester $I) + { + $I->wantToTest("Http\Request - getBestAccept()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetBestCharsetCest.php b/tests/unit/Http/Request/GetBestCharsetCest.php new file mode 100644 index 00000000000..f37ed464097 --- /dev/null +++ b/tests/unit/Http/Request/GetBestCharsetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetBestCharsetCest +{ + /** + * Tests Phalcon\Http\Request :: getBestCharset() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetBestCharset(UnitTester $I) + { + $I->wantToTest("Http\Request - getBestCharset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetBestLanguageCest.php b/tests/unit/Http/Request/GetBestLanguageCest.php new file mode 100644 index 00000000000..a28f2c1cf1b --- /dev/null +++ b/tests/unit/Http/Request/GetBestLanguageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetBestLanguageCest +{ + /** + * Tests Phalcon\Http\Request :: getBestLanguage() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetBestLanguage(UnitTester $I) + { + $I->wantToTest("Http\Request - getBestLanguage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetCest.php b/tests/unit/Http/Request/GetCest.php new file mode 100644 index 00000000000..d632e3fa843 --- /dev/null +++ b/tests/unit/Http/Request/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetCest +{ + /** + * Tests Phalcon\Http\Request :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGet(UnitTester $I) + { + $I->wantToTest("Http\Request - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetClientAddressCest.php b/tests/unit/Http/Request/GetClientAddressCest.php new file mode 100644 index 00000000000..0efd2b1661a --- /dev/null +++ b/tests/unit/Http/Request/GetClientAddressCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetClientAddressCest +{ + /** + * Tests Phalcon\Http\Request :: getClientAddress() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetClientAddress(UnitTester $I) + { + $I->wantToTest("Http\Request - getClientAddress()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetClientCharsetsCest.php b/tests/unit/Http/Request/GetClientCharsetsCest.php new file mode 100644 index 00000000000..2d3ade9bbf6 --- /dev/null +++ b/tests/unit/Http/Request/GetClientCharsetsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetClientCharsetsCest +{ + /** + * Tests Phalcon\Http\Request :: getClientCharsets() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetClientCharsets(UnitTester $I) + { + $I->wantToTest("Http\Request - getClientCharsets()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetContentTypeCest.php b/tests/unit/Http/Request/GetContentTypeCest.php new file mode 100644 index 00000000000..4a4c9552fb4 --- /dev/null +++ b/tests/unit/Http/Request/GetContentTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetContentTypeCest +{ + /** + * Tests Phalcon\Http\Request :: getContentType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetContentType(UnitTester $I) + { + $I->wantToTest("Http\Request - getContentType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetDICest.php b/tests/unit/Http/Request/GetDICest.php new file mode 100644 index 00000000000..6ae5304ce8f --- /dev/null +++ b/tests/unit/Http/Request/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Http\Request :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetDI(UnitTester $I) + { + $I->wantToTest("Http\Request - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetDigestAuthCest.php b/tests/unit/Http/Request/GetDigestAuthCest.php new file mode 100644 index 00000000000..6dd63dc8b21 --- /dev/null +++ b/tests/unit/Http/Request/GetDigestAuthCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetDigestAuthCest +{ + /** + * Tests Phalcon\Http\Request :: getDigestAuth() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetDigestAuth(UnitTester $I) + { + $I->wantToTest("Http\Request - getDigestAuth()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetHTTPRefererCest.php b/tests/unit/Http/Request/GetHTTPRefererCest.php new file mode 100644 index 00000000000..c58284e8d94 --- /dev/null +++ b/tests/unit/Http/Request/GetHTTPRefererCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetHTTPRefererCest +{ + /** + * Tests Phalcon\Http\Request :: getHTTPReferer() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetHTTPReferer(UnitTester $I) + { + $I->wantToTest("Http\Request - getHTTPReferer()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetHeaderCest.php b/tests/unit/Http/Request/GetHeaderCest.php new file mode 100644 index 00000000000..aaceda6c2f6 --- /dev/null +++ b/tests/unit/Http/Request/GetHeaderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetHeaderCest +{ + /** + * Tests Phalcon\Http\Request :: getHeader() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetHeader(UnitTester $I) + { + $I->wantToTest("Http\Request - getHeader()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetHeadersCest.php b/tests/unit/Http/Request/GetHeadersCest.php new file mode 100644 index 00000000000..2ff21d9877b --- /dev/null +++ b/tests/unit/Http/Request/GetHeadersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetHeadersCest +{ + /** + * Tests Phalcon\Http\Request :: getHeaders() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetHeaders(UnitTester $I) + { + $I->wantToTest("Http\Request - getHeaders()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetHttpHostCest.php b/tests/unit/Http/Request/GetHttpHostCest.php new file mode 100644 index 00000000000..6c8676556f4 --- /dev/null +++ b/tests/unit/Http/Request/GetHttpHostCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetHttpHostCest +{ + /** + * Tests Phalcon\Http\Request :: getHttpHost() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetHttpHost(UnitTester $I) + { + $I->wantToTest("Http\Request - getHttpHost()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetHttpMethodParameterOverrideCest.php b/tests/unit/Http/Request/GetHttpMethodParameterOverrideCest.php new file mode 100644 index 00000000000..91e4be9b420 --- /dev/null +++ b/tests/unit/Http/Request/GetHttpMethodParameterOverrideCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetHttpMethodParameterOverrideCest +{ + /** + * Tests Phalcon\Http\Request :: getHttpMethodParameterOverride() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetHttpMethodParameterOverride(UnitTester $I) + { + $I->wantToTest("Http\Request - getHttpMethodParameterOverride()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetJsonRawBodyCest.php b/tests/unit/Http/Request/GetJsonRawBodyCest.php new file mode 100644 index 00000000000..c8a9671690c --- /dev/null +++ b/tests/unit/Http/Request/GetJsonRawBodyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetJsonRawBodyCest +{ + /** + * Tests Phalcon\Http\Request :: getJsonRawBody() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetJsonRawBody(UnitTester $I) + { + $I->wantToTest("Http\Request - getJsonRawBody()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetLanguagesCest.php b/tests/unit/Http/Request/GetLanguagesCest.php new file mode 100644 index 00000000000..9d829308f60 --- /dev/null +++ b/tests/unit/Http/Request/GetLanguagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetLanguagesCest +{ + /** + * Tests Phalcon\Http\Request :: getLanguages() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetLanguages(UnitTester $I) + { + $I->wantToTest("Http\Request - getLanguages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetMethodCest.php b/tests/unit/Http/Request/GetMethodCest.php new file mode 100644 index 00000000000..99af1ac38dd --- /dev/null +++ b/tests/unit/Http/Request/GetMethodCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetMethodCest +{ + /** + * Tests Phalcon\Http\Request :: getMethod() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetMethod(UnitTester $I) + { + $I->wantToTest("Http\Request - getMethod()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetPortCest.php b/tests/unit/Http/Request/GetPortCest.php new file mode 100644 index 00000000000..6dcf5f60d11 --- /dev/null +++ b/tests/unit/Http/Request/GetPortCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetPortCest +{ + /** + * Tests Phalcon\Http\Request :: getPort() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetPort(UnitTester $I) + { + $I->wantToTest("Http\Request - getPort()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetPostCest.php b/tests/unit/Http/Request/GetPostCest.php new file mode 100644 index 00000000000..599eceb4031 --- /dev/null +++ b/tests/unit/Http/Request/GetPostCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetPostCest +{ + /** + * Tests Phalcon\Http\Request :: getPost() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetPost(UnitTester $I) + { + $I->wantToTest("Http\Request - getPost()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetPutCest.php b/tests/unit/Http/Request/GetPutCest.php new file mode 100644 index 00000000000..0ec6dccac75 --- /dev/null +++ b/tests/unit/Http/Request/GetPutCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetPutCest +{ + /** + * Tests Phalcon\Http\Request :: getPut() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetPut(UnitTester $I) + { + $I->wantToTest("Http\Request - getPut()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetQueryCest.php b/tests/unit/Http/Request/GetQueryCest.php new file mode 100644 index 00000000000..8d4c232a6c2 --- /dev/null +++ b/tests/unit/Http/Request/GetQueryCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetQueryCest +{ + /** + * Tests Phalcon\Http\Request :: getQuery() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetQuery(UnitTester $I) + { + $I->wantToTest("Http\Request - getQuery()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetRawBodyCest.php b/tests/unit/Http/Request/GetRawBodyCest.php new file mode 100644 index 00000000000..07d51a30e6c --- /dev/null +++ b/tests/unit/Http/Request/GetRawBodyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetRawBodyCest +{ + /** + * Tests Phalcon\Http\Request :: getRawBody() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetRawBody(UnitTester $I) + { + $I->wantToTest("Http\Request - getRawBody()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetSchemeCest.php b/tests/unit/Http/Request/GetSchemeCest.php new file mode 100644 index 00000000000..d868a97605a --- /dev/null +++ b/tests/unit/Http/Request/GetSchemeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetSchemeCest +{ + /** + * Tests Phalcon\Http\Request :: getScheme() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetScheme(UnitTester $I) + { + $I->wantToTest("Http\Request - getScheme()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetServerAddressCest.php b/tests/unit/Http/Request/GetServerAddressCest.php new file mode 100644 index 00000000000..609eb38803c --- /dev/null +++ b/tests/unit/Http/Request/GetServerAddressCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetServerAddressCest +{ + /** + * Tests Phalcon\Http\Request :: getServerAddress() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetServerAddress(UnitTester $I) + { + $I->wantToTest("Http\Request - getServerAddress()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetServerCest.php b/tests/unit/Http/Request/GetServerCest.php new file mode 100644 index 00000000000..8c6262f75bc --- /dev/null +++ b/tests/unit/Http/Request/GetServerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetServerCest +{ + /** + * Tests Phalcon\Http\Request :: getServer() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetServer(UnitTester $I) + { + $I->wantToTest("Http\Request - getServer()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetServerNameCest.php b/tests/unit/Http/Request/GetServerNameCest.php new file mode 100644 index 00000000000..81ef9fcda3f --- /dev/null +++ b/tests/unit/Http/Request/GetServerNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetServerNameCest +{ + /** + * Tests Phalcon\Http\Request :: getServerName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetServerName(UnitTester $I) + { + $I->wantToTest("Http\Request - getServerName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetURICest.php b/tests/unit/Http/Request/GetURICest.php new file mode 100644 index 00000000000..d70b551b08c --- /dev/null +++ b/tests/unit/Http/Request/GetURICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetURICest +{ + /** + * Tests Phalcon\Http\Request :: getURI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetURI(UnitTester $I) + { + $I->wantToTest("Http\Request - getURI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetUploadedFilesCest.php b/tests/unit/Http/Request/GetUploadedFilesCest.php new file mode 100644 index 00000000000..3fc9638942a --- /dev/null +++ b/tests/unit/Http/Request/GetUploadedFilesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetUploadedFilesCest +{ + /** + * Tests Phalcon\Http\Request :: getUploadedFiles() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetUploadedFiles(UnitTester $I) + { + $I->wantToTest("Http\Request - getUploadedFiles()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/GetUserAgentCest.php b/tests/unit/Http/Request/GetUserAgentCest.php new file mode 100644 index 00000000000..de1080d3247 --- /dev/null +++ b/tests/unit/Http/Request/GetUserAgentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class GetUserAgentCest +{ + /** + * Tests Phalcon\Http\Request :: getUserAgent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestGetUserAgent(UnitTester $I) + { + $I->wantToTest("Http\Request - getUserAgent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/HasCest.php b/tests/unit/Http/Request/HasCest.php new file mode 100644 index 00000000000..04f5051932b --- /dev/null +++ b/tests/unit/Http/Request/HasCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class HasCest +{ + /** + * Tests Phalcon\Http\Request :: has() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestHas(UnitTester $I) + { + $I->wantToTest("Http\Request - has()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/HasFilesCest.php b/tests/unit/Http/Request/HasFilesCest.php new file mode 100644 index 00000000000..d0fe5a05690 --- /dev/null +++ b/tests/unit/Http/Request/HasFilesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class HasFilesCest +{ + /** + * Tests Phalcon\Http\Request :: hasFiles() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestHasFiles(UnitTester $I) + { + $I->wantToTest("Http\Request - hasFiles()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/HasHeaderCest.php b/tests/unit/Http/Request/HasHeaderCest.php new file mode 100644 index 00000000000..035a4dfd4c4 --- /dev/null +++ b/tests/unit/Http/Request/HasHeaderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class HasHeaderCest +{ + /** + * Tests Phalcon\Http\Request :: hasHeader() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestHasHeader(UnitTester $I) + { + $I->wantToTest("Http\Request - hasHeader()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/HasPostCest.php b/tests/unit/Http/Request/HasPostCest.php new file mode 100644 index 00000000000..229d10ac9d3 --- /dev/null +++ b/tests/unit/Http/Request/HasPostCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class HasPostCest +{ + /** + * Tests Phalcon\Http\Request :: hasPost() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestHasPost(UnitTester $I) + { + $I->wantToTest("Http\Request - hasPost()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/HasPutCest.php b/tests/unit/Http/Request/HasPutCest.php new file mode 100644 index 00000000000..fb8f16092b9 --- /dev/null +++ b/tests/unit/Http/Request/HasPutCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class HasPutCest +{ + /** + * Tests Phalcon\Http\Request :: hasPut() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestHasPut(UnitTester $I) + { + $I->wantToTest("Http\Request - hasPut()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/HasQueryCest.php b/tests/unit/Http/Request/HasQueryCest.php new file mode 100644 index 00000000000..e5ded3509ee --- /dev/null +++ b/tests/unit/Http/Request/HasQueryCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class HasQueryCest +{ + /** + * Tests Phalcon\Http\Request :: hasQuery() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestHasQuery(UnitTester $I) + { + $I->wantToTest("Http\Request - hasQuery()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/HasServerCest.php b/tests/unit/Http/Request/HasServerCest.php new file mode 100644 index 00000000000..02e2bca374a --- /dev/null +++ b/tests/unit/Http/Request/HasServerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class HasServerCest +{ + /** + * Tests Phalcon\Http\Request :: hasServer() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestHasServer(UnitTester $I) + { + $I->wantToTest("Http\Request - hasServer()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/IsAjaxCest.php b/tests/unit/Http/Request/IsAjaxCest.php new file mode 100644 index 00000000000..eec1ad58e4c --- /dev/null +++ b/tests/unit/Http/Request/IsAjaxCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class IsAjaxCest +{ + /** + * Tests Phalcon\Http\Request :: isAjax() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestIsAjax(UnitTester $I) + { + $I->wantToTest("Http\Request - isAjax()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/IsConnectCest.php b/tests/unit/Http/Request/IsConnectCest.php new file mode 100644 index 00000000000..9b2d826c9e2 --- /dev/null +++ b/tests/unit/Http/Request/IsConnectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class IsConnectCest +{ + /** + * Tests Phalcon\Http\Request :: isConnect() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestIsConnect(UnitTester $I) + { + $I->wantToTest("Http\Request - isConnect()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/IsDeleteCest.php b/tests/unit/Http/Request/IsDeleteCest.php new file mode 100644 index 00000000000..ae25848dfd1 --- /dev/null +++ b/tests/unit/Http/Request/IsDeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class IsDeleteCest +{ + /** + * Tests Phalcon\Http\Request :: isDelete() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestIsDelete(UnitTester $I) + { + $I->wantToTest("Http\Request - isDelete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/IsGetCest.php b/tests/unit/Http/Request/IsGetCest.php new file mode 100644 index 00000000000..ffefee925ce --- /dev/null +++ b/tests/unit/Http/Request/IsGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class IsGetCest +{ + /** + * Tests Phalcon\Http\Request :: isGet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestIsGet(UnitTester $I) + { + $I->wantToTest("Http\Request - isGet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/IsHeadCest.php b/tests/unit/Http/Request/IsHeadCest.php new file mode 100644 index 00000000000..4098edd3ef1 --- /dev/null +++ b/tests/unit/Http/Request/IsHeadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class IsHeadCest +{ + /** + * Tests Phalcon\Http\Request :: isHead() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestIsHead(UnitTester $I) + { + $I->wantToTest("Http\Request - isHead()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/IsMethodCest.php b/tests/unit/Http/Request/IsMethodCest.php new file mode 100644 index 00000000000..1c23ef0c1f6 --- /dev/null +++ b/tests/unit/Http/Request/IsMethodCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class IsMethodCest +{ + /** + * Tests Phalcon\Http\Request :: isMethod() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestIsMethod(UnitTester $I) + { + $I->wantToTest("Http\Request - isMethod()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/IsOptionsCest.php b/tests/unit/Http/Request/IsOptionsCest.php new file mode 100644 index 00000000000..48fcde3e3af --- /dev/null +++ b/tests/unit/Http/Request/IsOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class IsOptionsCest +{ + /** + * Tests Phalcon\Http\Request :: isOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestIsOptions(UnitTester $I) + { + $I->wantToTest("Http\Request - isOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/IsPatchCest.php b/tests/unit/Http/Request/IsPatchCest.php new file mode 100644 index 00000000000..028b5b32133 --- /dev/null +++ b/tests/unit/Http/Request/IsPatchCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class IsPatchCest +{ + /** + * Tests Phalcon\Http\Request :: isPatch() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestIsPatch(UnitTester $I) + { + $I->wantToTest("Http\Request - isPatch()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/IsPostCest.php b/tests/unit/Http/Request/IsPostCest.php new file mode 100644 index 00000000000..5ec87cfd8c2 --- /dev/null +++ b/tests/unit/Http/Request/IsPostCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class IsPostCest +{ + /** + * Tests Phalcon\Http\Request :: isPost() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestIsPost(UnitTester $I) + { + $I->wantToTest("Http\Request - isPost()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/IsPurgeCest.php b/tests/unit/Http/Request/IsPurgeCest.php new file mode 100644 index 00000000000..943c9e3d220 --- /dev/null +++ b/tests/unit/Http/Request/IsPurgeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class IsPurgeCest +{ + /** + * Tests Phalcon\Http\Request :: isPurge() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestIsPurge(UnitTester $I) + { + $I->wantToTest("Http\Request - isPurge()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/IsPutCest.php b/tests/unit/Http/Request/IsPutCest.php new file mode 100644 index 00000000000..fa28e761534 --- /dev/null +++ b/tests/unit/Http/Request/IsPutCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class IsPutCest +{ + /** + * Tests Phalcon\Http\Request :: isPut() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestIsPut(UnitTester $I) + { + $I->wantToTest("Http\Request - isPut()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/IsSecureCest.php b/tests/unit/Http/Request/IsSecureCest.php new file mode 100644 index 00000000000..674b985cf6e --- /dev/null +++ b/tests/unit/Http/Request/IsSecureCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class IsSecureCest +{ + /** + * Tests Phalcon\Http\Request :: isSecure() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestIsSecure(UnitTester $I) + { + $I->wantToTest("Http\Request - isSecure()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/IsSoapCest.php b/tests/unit/Http/Request/IsSoapCest.php new file mode 100644 index 00000000000..d6f8fd5cb98 --- /dev/null +++ b/tests/unit/Http/Request/IsSoapCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class IsSoapCest +{ + /** + * Tests Phalcon\Http\Request :: isSoap() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestIsSoap(UnitTester $I) + { + $I->wantToTest("Http\Request - isSoap()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/IsStrictHostCheckCest.php b/tests/unit/Http/Request/IsStrictHostCheckCest.php new file mode 100644 index 00000000000..b162e65f373 --- /dev/null +++ b/tests/unit/Http/Request/IsStrictHostCheckCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class IsStrictHostCheckCest +{ + /** + * Tests Phalcon\Http\Request :: isStrictHostCheck() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestIsStrictHostCheck(UnitTester $I) + { + $I->wantToTest("Http\Request - isStrictHostCheck()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/IsTraceCest.php b/tests/unit/Http/Request/IsTraceCest.php new file mode 100644 index 00000000000..5ac8b8bd9d8 --- /dev/null +++ b/tests/unit/Http/Request/IsTraceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class IsTraceCest +{ + /** + * Tests Phalcon\Http\Request :: isTrace() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestIsTrace(UnitTester $I) + { + $I->wantToTest("Http\Request - isTrace()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/IsValidHttpMethodCest.php b/tests/unit/Http/Request/IsValidHttpMethodCest.php new file mode 100644 index 00000000000..e8e74b6baf8 --- /dev/null +++ b/tests/unit/Http/Request/IsValidHttpMethodCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class IsValidHttpMethodCest +{ + /** + * Tests Phalcon\Http\Request :: isValidHttpMethod() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestIsValidHttpMethod(UnitTester $I) + { + $I->wantToTest("Http\Request - isValidHttpMethod()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/RequestCest.php b/tests/unit/Http/Request/RequestCest.php new file mode 100644 index 00000000000..9401bbbbff6 --- /dev/null +++ b/tests/unit/Http/Request/RequestCest.php @@ -0,0 +1,1031 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http; + +use Phalcon\DiInterface; +use Phalcon\Http\Request; +use Phalcon\Test\Fixtures\Http\PhpStream; +use Phalcon\Test\Unit\Http\Helper\HttpBase; +use UnitTester; + +class RequestCest extends HttpBase +{ + /** + * Tests the getDI + * + * @author Phalcon Team + * @since 2014-10-23 + */ + public function testHttpRequestGetDI(UnitTester $I) + { + $request = $this->getRequestObject(); + $container = $request->getDI(); + $class = DiInterface::class; + $I->assertInstanceOf($class, $container); + } + + /** + * Tests the instance of the object + */ + public function testHttpRequestInstanceOf(UnitTester $I) + { + $request = $this->getRequestObject(); + $class = Request::class; + $I->assertInstanceOf($class, $request); + } + + /** + * Tests getHeader empty + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testHttpRequestHeaderGetEmpty(UnitTester $I) + { + $request = $this->getRequestObject(); + $actual = $request->getHeader('LOL'); + $I->assertEmpty($actual); + } + + /** + * Tests getHeader + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testHttpRequestHeaderGet(UnitTester $I) + { + $request = $this->getRequestObject(); + $this->setServerVar('HTTP_LOL', 'zup'); + $actual = $request->getHeader('LOL'); + $this->unsetServerVar('HTTP_LOL'); + + $expected = 'zup'; + $I->assertEquals($expected, $actual); + } + + /** + * Tests getHeader + * + * @issue https://github.com/phalcon/cphalcon/issues/2294 + * @author Phalcon Team + * @since 2016-10-19 + */ + public function testHttpRequestCustomHeaderGet(UnitTester $I) + { + $_SERVER['HTTP_FOO'] = 'Bar'; + $_SERVER['HTTP_BLA_BLA'] = 'boo'; + $_SERVER['HTTP_AUTH'] = true; + + $request = $this->getRequestObject(); + + $expected = [ + 'Foo' => 'Bar', + 'Bla-Bla' => 'boo', + 'Auth' => 1, + ]; + $actual = $request->getHeaders(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests hasHeader + * + * @author limx <715557344@qq.com> + * @since 2017-10-26 + */ + public function testHttpRequestCustomHeaderHas(UnitTester $I) + { + $_SERVER['HTTP_FOO'] = 'Bar'; + $_SERVER['HTTP_AUTH'] = true; + + $request = $this->getRequestObject(); + + $actual = $request->hasHeader('HTTP_FOO'); + $I->assertTrue($actual); + + $actual = $request->hasHeader('AUTH'); + $I->assertTrue($actual); + + $actual = $request->hasHeader('HTTP_FOO'); + $I->assertTrue($actual); + } + + /** + * Tests isAjax default + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testHttpRequestIsAjaxDefault(UnitTester $I) + { + $request = $this->getRequestObject(); + + $actual = $request->isAjax(); + $I->assertFalse($actual); + } + + /** + * Tests isAjax + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testHttpRequestIsAjax(UnitTester $I) + { + $request = $this->getRequestObject(); + $this->setServerVar('HTTP_X_REQUESTED_WITH', 'XMLHttpRequest'); + $actual = $request->isAjax(); + $this->unsetServerVar('HTTP_X_REQUESTED_WITH'); + + $I->assertTrue($actual); + } + + /** + * Tests getScheme default + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testHttpRequestGetSchemeDefault(UnitTester $I) + { + $request = $this->getRequestObject(); + + $expected = 'http'; + $actual = $request->getScheme(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests getScheme with HTTPS + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testHttpRequestGetScheme(UnitTester $I) + { + $request = $this->getRequestObject(); + $this->setServerVar('HTTPS', 'on'); + $actual = $request->getScheme(); + $this->unsetServerVar('HTTPS'); + + $expected = 'https'; + $I->assertEquals($expected, $actual); + } + + /** + * Tests isSecure default + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testHttpRequestIsSecureDefault(UnitTester $I) + { + $request = $this->getRequestObject(); + + $actual = $request->isSecure(); + $I->assertFalse($actual); + } + + /** + * Tests isSecure + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testHttpRequestIsSecure(UnitTester $I) + { + $request = $this->getRequestObject(); + $this->setServerVar('HTTPS', 'on'); + $actual = $request->isSecure(); + $this->unsetServerVar('HTTPS'); + + $I->assertTrue($actual); + } + + /** + * Tests isSoap default + * + * @author Phalcon Team + * @since 2014-10-23 + */ + public function testHttpRequestIsSoapDefault(UnitTester $I) + { + $request = $this->getRequestObject(); + $actual = $request->isSoap(); + + $I->assertFalse($actual); + } + + /** + * Tests isSoapRequest + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testHttpRequestIsSoap(UnitTester $I) + { + $request = $this->getRequestObject(); + $this->setServerVar('CONTENT_TYPE', 'application/soap+xml'); + $actual = $request->isSoap(); + $this->unsetServerVar('CONTENT_TYPE'); + + $I->assertTrue($actual); + } + + /** + * Tests getServerAddress default + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testHttpRequestGetServerAddressDefault(UnitTester $I) + { + $request = $this->getRequestObject(); + + $expected = '127.0.0.1'; + $actual = $request->getServerAddress(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests getServerAddress + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testHttpRequestGetServerAddress(UnitTester $I) + { + $request = $this->getRequestObject(); + $this->setServerVar('SERVER_ADDR', '192.168.4.1'); + $actual = $request->getServerAddress(); + $this->unsetServerVar('SERVER_ADDR'); + + $expected = '192.168.4.1'; + $I->assertEquals($expected, $actual); + } + + /** + * Tests getHttpHost + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testHttpRequestHttpHost(UnitTester $I) + { + $request = $this->getRequestObject(); + $this->setServerVar('HTTP_HOST', ''); + $this->setServerVar('SERVER_NAME', ''); + $this->setServerVar('SERVER_ADDR', ''); + + $actual = is_string($request->getHttpHost()); + $I->assertTrue($actual); + + $expected = ''; + $actual = $request->getHttpHost(); + $I->assertEquals($expected, $actual); + + $request = $this->getRequestObject(); + unset($_SERVER['HTTP_HOST'], $_SERVER['SERVER_NAME'], $_SERVER['SERVER_ADDR']); + + $expected = ''; + $actual = $request->getHttpHost(); + $I->assertEquals($expected, $actual); + + $request = $this->getRequestObject(); + $this->setServerVar('SERVER_NAME', 'host@name'); + + $expected = 'host@name'; + $actual = $request->getHttpHost(); + $I->assertEquals($expected, $actual); + + $request = $this->getRequestObject(); + $this->setServerVar('HTTPS', 'off'); + $this->setServerVar('SERVER_NAME', 'localhost'); + $this->setServerVar('SERVER_PORT', 80); + + $expected = 'localhost'; + $actual = $request->getHttpHost(); + $I->assertEquals($expected, $actual); + + $request = $this->getRequestObject(); + $this->setServerVar('HTTPS', 'on'); + $this->setServerVar('SERVER_NAME', 'localhost'); + $this->setServerVar('SERVER_PORT', 80); + + $expected = 'localhost'; + $actual = $request->getHttpHost(); + $I->assertEquals($expected, $actual); + + $request = $this->getRequestObject(); + $this->setServerVar('HTTPS', 'on'); + $this->setServerVar('SERVER_NAME', 'localhost'); + $this->setServerVar('SERVER_PORT', 443); + + $expected = 'localhost'; + $actual = $request->getHttpHost(); + $I->assertEquals($expected, $actual); + + $request = $this->getRequestObject(); + $this->setServerVar('HTTP_HOST', ''); + $this->setServerVar('SERVER_NAME', ''); + $this->setServerVar('SERVER_ADDR', '8.8.8.8'); + + $expected = '8.8.8.8'; + $actual = $request->getHttpHost(); + $I->assertEquals($expected, $actual); + + $request = $this->getRequestObject(); + $this->setServerVar('HTTP_HOST', ''); + $this->setServerVar('SERVER_NAME', 'some.domain'); + $this->setServerVar('SERVER_ADDR', '8.8.8.8'); + + $expected = 'some.domain'; + $actual = $request->getHttpHost(); + $I->assertEquals($expected, $actual); + + $request = $this->getRequestObject(); + $this->setServerVar('HTTP_HOST', 'example.com'); + $this->setServerVar('SERVER_NAME', 'some.domain'); + $this->setServerVar('SERVER_ADDR', '8.8.8.8'); + + $expected = 'example.com'; + $actual = $request->getHttpHost(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests strict host check + * + * @author Phalcon Team + * @since 2016-06-26 + */ + public function testHttpStrictHostCheck(UnitTester $I) + { + $request = $this->getRequestObject(); + $request->setStrictHostCheck(true); + $this->setServerVar('SERVER_NAME', 'LOCALHOST:80'); + + $expected = 'localhost'; + $actual = $request->getHttpHost(); + $I->assertEquals($expected, $actual); + + $request = $this->getRequestObject(); + $request->setStrictHostCheck(false); + $this->setServerVar('SERVER_NAME', 'LOCALHOST:80'); + + $expected = 'LOCALHOST:80'; + $actual = $request->getHttpHost(); + $I->assertEquals($expected, $actual); + + $request = $this->getRequestObject(); + + $actual = $request->isStrictHostCheck(); + $I->assertFalse($actual); + + $request->setStrictHostCheck(true); + $actual = $request->isStrictHostCheck(); + $I->assertTrue($actual); + + $request->setStrictHostCheck(false); + $actual = $request->isStrictHostCheck(); + $I->assertFalse($actual); + } + + /** + * Tests Request::getPort + * + * @author Phalcon Team + * @since 2016-06-26 + */ + public function testHttpRequestPort(UnitTester $I) + { + $request = $this->getRequestObject(); + $this->setServerVar('HTTPS', 'on'); + $this->setServerVar('HTTP_HOST', 'example.com'); + + $expected = 443; + $actual = $request->getPort(); + $I->assertEquals($expected, $actual); + + $request = $this->getRequestObject(); + $this->setServerVar('HTTPS', 'off'); + $this->setServerVar('HTTP_HOST', 'example.com'); + + $expected = 80; + $actual = $request->getPort(); + $I->assertEquals($expected, $actual); + + $request = $this->getRequestObject(); + $this->setServerVar('HTTPS', 'off'); + $this->setServerVar('HTTP_HOST', 'example.com:8080'); + + $expected = 8080; + $actual = $request->getPort(); + $I->assertEquals($expected, $actual); + + $this->setServerVar('HTTPS', 'on'); + $this->setServerVar('HTTP_HOST', 'example.com:8081'); + + $expected = 8081; + $actual = $request->getPort(); + $I->assertEquals($expected, $actual); + + unset($_SERVER['HTTPS']); + $this->setServerVar('HTTP_HOST', 'example.com:8082'); + + $expected = 8082; + $actual = $request->getPort(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests getHttpHost by using invalid host + * + * @author Phalcon Team + * @since 2016-06-26 + * + * @expectedException \UnexpectedValueException + */ + public function testInvalidHttpRequestHttpHost(UnitTester $I) + { + $examples = [ + 'foo±bar±baz', + 'foo~bar~baz', + '', + 'foo=bar=baz', + 'foobar/baz', + 'foo@bar', + ]; + + foreach ($examples as $host) { + $I->expectThrowable( + new \UnexpectedValueException('Invalid host ' . $host), + function () use ($host) { + $request = $this->getRequestObject(); + $request->setStrictHostCheck(true); + + $this->setServerVar('HTTP_HOST', $host); + $request->getHttpHost(); + } + ); + } + } + + /** + * Tests POST functions + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testHttpRequestInputPost(UnitTester $I) + { + $this->hasEmpty($I, 'hasPost'); + $this->hasNotEmpty($I, 'hasPost', 'setPostVar'); + $this->getEmpty($I, 'getPost'); + $this->getNotEmpty($I, 'getPost', 'setPostVar'); + $this->getSanitized($I, 'getPost', 'setPostVar'); + $this->getSanitizedArrayFilter($I, 'getPost', ['string'], 'setPostVar'); + } + + /** + * Tests getPut with json content type. + * + * @test + * @issue https://github.com/phalcon/cphalcon/issues/13418 + * @author Phalcon Team + * @since 2017-06-03 + */ + public function shouldGetDataReceivedByPutMethod(UnitTester $I) + { + stream_wrapper_unregister('php'); + stream_wrapper_register('php', PhpStream::class); + + file_put_contents('php://input', 'fruit=orange&quantity=4'); + + $_SERVER['REQUEST_METHOD'] = 'PUT'; + + $request = new Request(); + + $data = file_get_contents('php://input'); + $expected = ['fruit' => 'orange', 'quantity' => '4']; + + parse_str($data, $actual); + + $I->assertEquals($expected, $actual); + + $actual = $request->getPut(); + $I->assertEquals($expected, $actual); + + stream_wrapper_restore('php'); + } + + /** + * Tests getPut with json content type. + * + * @test + * @issue https://github.com/phalcon/cphalcon/issues/13418 + * @author Phalcon Team + * @since 2017-06-03 + */ + public function shouldGetDataReceivedByPutMethodAndJsonType(UnitTester $I) + { + stream_wrapper_unregister('php'); + stream_wrapper_register('php', PhpStream::class); + + file_put_contents('php://input', '{"fruit": "orange", "quantity": "4"}'); + + $_SERVER['REQUEST_METHOD'] = 'PUT'; + $_SERVER['CONTENT_TYPE'] = 'application/json'; + + $request = new Request(); + + $expected = ['fruit' => 'orange', 'quantity' => '4']; + $actual = json_decode(file_get_contents('php://input'), true); + + $I->assertEquals($expected, $actual); + + $actual = $request->getPut(); + $I->assertEquals($expected, $actual); + + stream_wrapper_restore('php'); + } + + /** + * Tests GET functions + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testHttpRequestInputGet(UnitTester $I) + { + $this->hasEmpty($I, 'hasQuery'); + $this->hasNotEmpty($I, 'hasQuery', 'setGetVar'); + $this->getEmpty($I, 'getQuery'); + $this->getNotEmpty($I, 'getQuery', 'setGetVar'); + $this->getSanitized($I, 'getQuery', 'setGetVar'); + $this->getSanitizedArrayFilter($I, 'getQuery', ['string'], 'setGetVar'); + } + + /** + * Tests REQUEST functions + * + * @author Phalcon Team + * @since 2014-10-04 + */ + public function testHttpRequestInputRequest(UnitTester $I) + { + $this->hasEmpty($I, 'has'); + $this->hasNotEmpty($I, 'has', 'setRequestVar'); + $this->getEmpty($I, 'get'); + $this->getNotEmpty($I, 'get', 'setRequestVar'); + $this->getSanitized($I, 'get', 'setRequestVar'); + $this->getSanitizedArrayFilter($I, 'get', ['string'], 'setRequestVar'); + } + + public function testHttpRequestMethod(UnitTester $I) + { + $request = $this->getRequestObject(); + + $_SERVER['REQUEST_METHOD'] = 'POST'; + $I->assertEquals($request->getMethod(), 'POST'); + $I->assertTrue($request->isPost()); + $I->assertFalse($request->isGet()); + + $_SERVER['REQUEST_METHOD'] = 'GET'; + $I->assertEquals($request->getMethod(), 'GET'); + $I->assertTrue($request->isGet()); + $I->assertFalse($request->isPost()); + + $_SERVER['REQUEST_METHOD'] = 'PUT'; + $I->assertEquals($request->getMethod(), 'PUT'); + $I->assertTrue($request->isPut()); + + $_SERVER['REQUEST_METHOD'] = 'DELETE'; + $I->assertEquals($request->getMethod(), 'DELETE'); + $I->assertTrue($request->isDelete()); + + $_SERVER['REQUEST_METHOD'] = 'OPTIONS'; + $I->assertEquals($request->getMethod(), 'OPTIONS'); + $I->assertTrue($request->isOptions()); + + $_SERVER['REQUEST_METHOD'] = 'POST'; + $I->assertTrue($request->isMethod('POST')); + $I->assertTrue($request->isMethod(['GET', 'POST'])); + + $_SERVER['REQUEST_METHOD'] = 'GET'; + $I->assertTrue($request->isMethod('GET')); + $I->assertTrue($request->isMethod(['GET', 'POST'])); + + $_SERVER['REQUEST_METHOD'] = 'CONNECT'; + $I->assertEquals($request->getMethod(), 'CONNECT'); + $I->assertTrue($request->isConnect()); + $I->assertFalse($request->isGet()); + + $_SERVER['REQUEST_METHOD'] = 'TRACE'; + $I->assertEquals($request->getMethod(), 'TRACE'); + $I->assertTrue($request->isTrace()); + $I->assertFalse($request->isGet()); + + $_SERVER['REQUEST_METHOD'] = 'PURGE'; + $I->assertEquals($request->getMethod(), 'PURGE'); + $I->assertTrue($request->isPurge()); + $I->assertFalse($request->isGet()); + } + + /** + * Tests the ability to override the HTTP method + * + * @test + * @issue https://github.com/phalcon/cphalcon/issues/12478 + * @author Serghei Iakovelv + * @since 2016-12-18 + */ + public function shouldOverrideHttpRequestMethod(UnitTester $I) + { + $examples = $this->overridenMethodProvider(); + foreach ($examples as $item) { + $header = $item[0]; + $method = $item[1]; + $expected = $item[2]; + + $_SERVER['REQUEST_METHOD'] = 'POST'; + $request = $this->getRequestObject(); + + $_SERVER[$header] = $method; + + $actual = $request->getMethod(); + $I->assertEquals($expected, $actual); + + $_SERVER[$header] = strtolower($method); + $actual = $request->getMethod(); + $I->assertEquals($expected, $actual); + + $_SERVER[strtolower($header)] = $method; + $actual = $request->getMethod(); + $I->assertEquals($expected, $actual); + } + } + + private function overridenMethodProvider() + { + return [ + ['HTTP_X_HTTP_METHOD_OVERRIDE', 'PUT', 'PUT'], + ['HTTP_X_HTTP_METHOD_OVERRIDE', 'PAT', 'GET'], + ['HTTP_X_HTTP_METHOD_OVERRIDE', 'GET', 'GET'], + ['HTTP_X_HTTP_METHOD_OVERRIDE', 'GOT', 'GET'], + ['HTTP_X_HTTP_METHOD_OVERRIDE', 'HEAD', 'HEAD'], + ['HTTP_X_HTTP_METHOD_OVERRIDE', 'HED', 'GET'], + ['HTTP_X_HTTP_METHOD_OVERRIDE', 'POST', 'POST'], + ['HTTP_X_HTTP_METHOD_OVERRIDE', 'PAST', 'GET'], + ['HTTP_X_HTTP_METHOD_OVERRIDE', 'DELETE', 'DELETE'], + ['HTTP_X_HTTP_METHOD_OVERRIDE', 'DILETE', 'GET'], + ['HTTP_X_HTTP_METHOD_OVERRIDE', 'OPTIONS', 'OPTIONS'], + ['HTTP_X_HTTP_METHOD_OVERRIDE', 'OPTION', 'GET'], + ['HTTP_X_HTTP_METHOD_OVERRIDE', 'PATCH', 'PATCH'], + ['HTTP_X_HTTP_METHOD_OVERRIDE', 'PUTCH', 'GET'], + ['HTTP_X_HTTP_METHOD_OVERRIDE', 'PURGE', 'PURGE'], + ['HTTP_X_HTTP_METHOD_OVERRIDE', 'PURG', 'GET'], + ['HTTP_X_HTTP_METHOD_OVERRIDE', 'TRACE', 'TRACE'], + ['HTTP_X_HTTP_METHOD_OVERRIDE', 'RACE', 'GET'], + ['HTTP_X_HTTP_METHOD_OVERRIDE', 'CONNECT', 'CONNECT'], + ['HTTP_X_HTTP_METHOD_OVERRIDE', 'CONECT', 'GET'], + ]; + } + + public function testHttpRequestContentType(UnitTester $I) + { + $request = $this->getRequestObject(); + + $this->setServerVar('CONTENT_TYPE', 'application/xhtml+xml'); + + $expected = 'application/xhtml+xml'; + $actual = $request->getContentType(); + $I->assertEquals($expected, $actual); + + $this->unsetServerVar('CONTENT_TYPE'); + + $this->setServerVar('HTTP_CONTENT_TYPE', 'application/xhtml+xml'); + + $expected = 'application/xhtml+xml'; + $actual = $request->getContentType(); + $I->assertEquals($expected, $actual); + $this->unsetServerVar('HTTP_CONTENT_TYPE'); + } + + public function testHttpRequestAcceptableContent(UnitTester $I) + { + $request = $this->getRequestObject(); + + $_SERVER['HTTP_ACCEPT'] = 'text/html,application/xhtml+xml,application/xml;' + . 'q=0.9,*/*;q=0.8,application/json; level=2; q=0.7'; + $accept = $request->getAcceptableContent(); + $I->assertCount(5, $accept); + + $firstAccept = $accept[0]; + $I->assertEquals($firstAccept['accept'], 'text/html'); + $I->assertEquals($firstAccept['quality'], 1); + + $fourthAccept = $accept[3]; + $I->assertEquals($fourthAccept['accept'], '*/*'); + $I->assertEquals($fourthAccept['quality'], 0.8); + + $lastAccept = $accept[4]; + $I->assertEquals($lastAccept['accept'], 'application/json'); + $I->assertEquals($lastAccept['quality'], 0.7); + $I->assertEquals($lastAccept['level'], 2); + + $I->assertEquals($request->getBestAccept(), 'text/html'); + } + + public function testHttpRequestAcceptableCharsets(UnitTester $I) + { + $request = $this->getRequestObject(); + + $_SERVER['HTTP_ACCEPT_CHARSET'] = 'iso-8859-5,unicode-1-1;q=0.8'; + $accept = $request->getClientCharsets(); + $I->assertCount(2, $accept); + + $firstAccept = $accept[0]; + $I->assertEquals($firstAccept['charset'], 'iso-8859-5'); + $I->assertEquals($firstAccept['quality'], 1); + + $lastAccept = $accept[1]; + $I->assertEquals($lastAccept['charset'], 'unicode-1-1'); + $I->assertEquals($lastAccept['quality'], 0.8); + + $I->assertEquals($request->getBestCharset(), 'iso-8859-5'); + } + + public function testHttpRequestAcceptableLanguage(UnitTester $I) + { + $request = $this->getRequestObject(); + + $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'es,es-ar;q=0.8,en;q=0.5,en-us;q=0.3,de-de; q=0.9'; + $accept = $request->getLanguages(); + $I->assertCount(5, $accept); + + $firstAccept = $accept[0]; + $I->assertEquals($firstAccept['language'], 'es'); + $I->assertEquals($firstAccept['quality'], 1); + + $fourthAccept = $accept[3]; + $I->assertEquals($fourthAccept['language'], 'en-us'); + $I->assertEquals($fourthAccept['quality'], 0.3); + + $lastAccept = $accept[4]; + $I->assertEquals($lastAccept['language'], 'de-de'); + $I->assertEquals($lastAccept['quality'], 0.9); + + $I->assertEquals($request->getBestLanguage(), 'es'); + } + + public function testHttpRequestClientAddress(UnitTester $I) + { + $request = $this->getRequestObject(); + + $_SERVER['REMOTE_ADDR'] = '192.168.0.1'; + $_SERVER['HTTP_X_FORWARDED_FOR'] = '192.168.7.21'; + $I->assertEquals($request->getClientAddress(), '192.168.0.1'); + $I->assertEquals($request->getClientAddress(true), '192.168.7.21'); + + $_SERVER['REMOTE_ADDR'] = '86.45.89.47, 214.55.34.56'; + $I->assertEquals($request->getClientAddress(), '86.45.89.47'); + } + + /** + * @issue https://github.com/phalcon/cphalcon/issues/1265 + */ + public function testRequestGetValueByUsingSeveralMethods(UnitTester $I) + { + $request = $this->getRequestObject(); + + $_REQUEST = $_GET = $_POST = [ + 'string' => 'hello', + 'array' => ['string' => 'world'], + ]; + + // get + $I->assertEquals('hello', $request->get('string', 'string')); + $I->assertEquals('hello', $request->get('string', 'string', null, true, true)); + + $I->assertEquals(['string' => 'world'], $request->get('array', 'string')); + $I->assertEquals(null, $request->get('array', 'string', null, true, true)); + + // getQuery + $I->assertEquals('hello', $request->getQuery('string', 'string')); + $I->assertEquals('hello', $request->getQuery('string', 'string', null, true, true)); + + $I->assertEquals(['string' => 'world'], $request->getQuery('array', 'string')); + $I->assertEquals(null, $request->getQuery('array', 'string', null, true, true)); + + // getPost + $I->assertEquals('hello', $request->getPost('string', 'string')); + $I->assertEquals('hello', $request->getPost('string', 'string', null, true, true)); + + $I->assertEquals(['string' => 'world'], $request->getPost('array', 'string')); + $I->assertEquals(null, $request->getPost('array', 'string', null, true, true)); + } + + public function testRequestGetQuery(UnitTester $I) + { + $_REQUEST = $_GET = $_POST = [ + 'id' => 1, + 'num' => 'a1a', + 'age' => 'aa', + 'phone' => '', + ]; + + $functions = ['get', 'getQuery', 'getPost']; + foreach ($functions as $function) { + $request = $this->getRequestObject(); + + $I->assertEquals(1, $request->$function('id', 'int', 100)); + $I->assertEquals(1, $request->$function('num', 'int', 100)); + $I->assertEmpty($request->$function('age', 'int', 100)); + $I->assertEmpty($request->$function('phone', 'int', 100)); + $I->assertEquals(100, $request->$function('phone', 'int', 100, true)); + } + } + + /** + * Tests Request::hasFiles + * + * @author Serghei Iakovelv + * @since 2016-01-31 + */ + public function testRequestHasFiles(UnitTester $I) + { + $examples = $this->filesProvider(); + + foreach ($examples as $item) { + $files = $item[0]; + $all = $item[1]; + $onlySuccessful = $item[2]; + + $request = $this->getRequestObject(); + $_FILES = $files; + + $expected = $all; + $actual = $request->hasFiles(false); + $I->assertEquals($expected, $actual); + + $expected = $onlySuccessful; + $actual = $request->hasFiles(true); + $I->assertEquals($expected, $actual); + } + } + + private function filesProvider() + { + return [ + [ + [ + 'test' => [ + 'name' => 'name', + 'type' => 'text/plain', + 'size' => 1, + 'tmp_name' => 'tmp_name', + 'error' => 0, + ], + ], + 1, + 1, + ], + [ + [ + 'test' => [ + 'name' => ['name1', 'name2'], + 'type' => ['text/plain', 'text/plain'], + 'size' => [1, 1], + 'tmp_name' => ['tmp_name1', 'tmp_name2'], + 'error' => [0, 0], + ], + ], + 2, + 2, + ], + [ + [ + 'photo' => [ + 'name' => [ + 0 => '', + 1 => '', + 2 => [0 => '', 1 => '', 2 => ''], + 3 => [0 => ''], + 4 => [0 => [0 => '']], + 5 => [0 => [0 => [0 => [0 => '']]]], + ], + 'type' => [ + 0 => '', + 1 => '', + 2 => [0 => '', 1 => '', 2 => ''], + 3 => [0 => ''], + 4 => [0 => [0 => '']], + 5 => [0 => [0 => [0 => [0 => '']]]], + ], + 'tmp_name' => [ + 0 => '', + 1 => '', + 2 => [0 => '', 1 => '', 2 => ''], + 3 => [0 => ''], + 4 => [0 => [0 => '']], + 5 => [0 => [0 => [0 => [0 => '']]]], + ], + 'error' => [ + 0 => 4, + 1 => 4, + 2 => [0 => 4, 1 => 4, 2 => 4], + 3 => [0 => 4], + 4 => [0 => [0 => 4]], + 5 => [0 => [0 => [0 => [0 => 4]]]], + ], + 'size' => [ + 0 => '', + 1 => '', + 2 => [0 => '', 1 => '', 2 => ''], + 3 => [0 => ''], + 4 => [0 => [0 => '']], + 5 => [0 => [0 => [0 => [0 => '']]]], + ], + ], + 'test' => [ + 'name' => '', + 'type' => '', + 'tmp_name' => '', + 'error' => 4, + 'size' => 0, + ], + ], + 9, + 0, + ], + ]; + } + + /** + * Tests uploaded files + * + * @author Serghei Iakovelv + * @since 2016-01-31 + */ + public function testGetUploadedFiles(UnitTester $I) + { + $request = $this->getRequestObject(); + $_FILES = [ + 'photo' => [ + 'name' => ['f0', 'f1', ['f2', 'f3'], [[[['f4']]]]], + 'type' => ['text/plain', 'text/csv', ['image/png', 'image/gif'], [[[['application/octet-stream']]]]], + 'tmp_name' => ['t0', 't1', ['t2', 't3'], [[[['t4']]]]], + 'error' => [0, 0, [0, 0], [[[[8]]]]], + 'size' => [10, 20, [30, 40], [[[[50]]]]], + ], + ]; + + $all = $request->getUploadedFiles(false); + $successful = $request->getUploadedFiles(true); + + $I->assertCount(5, $all); + $I->assertCount(4, $successful); + + for ($i = 0; $i <= 4; ++$i) { + $I->assertFalse($all[$i]->isUploadedFile()); + } + + $data = ['photo.0', 'photo.1', 'photo.2.0', 'photo.2.1', 'photo.3.0.0.0.0']; + for ($i = 0; $i <= 4; ++$i) { + $I->assertEquals($data[$i], $all[$i]->getKey()); + } + + $I->assertEquals('f0', $all[0]->getName()); + $I->assertEquals('f1', $all[1]->getName()); + $I->assertEquals('f2', $all[2]->getName()); + $I->assertEquals('f3', $all[3]->getName()); + $I->assertEquals('f4', $all[4]->getName()); + + $I->assertEquals('t0', $all[0]->getTempName()); + $I->assertEquals('t1', $all[1]->getTempName()); + $I->assertEquals('t2', $all[2]->getTempName()); + $I->assertEquals('t3', $all[3]->getTempName()); + $I->assertEquals('t4', $all[4]->getTempName()); + + $I->assertEquals('f0', $successful[0]->getName()); + $I->assertEquals('f1', $successful[1]->getName()); + $I->assertEquals('f2', $successful[2]->getName()); + $I->assertEquals('f3', $successful[3]->getName()); + + $I->assertEquals('t0', $successful[0]->getTempName()); + $I->assertEquals('t1', $successful[1]->getTempName()); + $I->assertEquals('t2', $successful[2]->getTempName()); + $I->assertEquals('t3', $successful[3]->getTempName()); + } +} diff --git a/tests/unit/Http/Request/SetDICest.php b/tests/unit/Http/Request/SetDICest.php new file mode 100644 index 00000000000..bb744332cc9 --- /dev/null +++ b/tests/unit/Http/Request/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Http\Request :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestSetDI(UnitTester $I) + { + $I->wantToTest("Http\Request - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/SetHttpMethodParameterOverrideCest.php b/tests/unit/Http/Request/SetHttpMethodParameterOverrideCest.php new file mode 100644 index 00000000000..214c5c42b83 --- /dev/null +++ b/tests/unit/Http/Request/SetHttpMethodParameterOverrideCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class SetHttpMethodParameterOverrideCest +{ + /** + * Tests Phalcon\Http\Request :: setHttpMethodParameterOverride() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestSetHttpMethodParameterOverride(UnitTester $I) + { + $I->wantToTest("Http\Request - setHttpMethodParameterOverride()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Request/SetStrictHostCheckCest.php b/tests/unit/Http/Request/SetStrictHostCheckCest.php new file mode 100644 index 00000000000..18ac5baeb6c --- /dev/null +++ b/tests/unit/Http/Request/SetStrictHostCheckCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Request; + +use UnitTester; + +class SetStrictHostCheckCest +{ + /** + * Tests Phalcon\Http\Request :: setStrictHostCheck() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpRequestSetStrictHostCheck(UnitTester $I) + { + $I->wantToTest("Http\Request - setStrictHostCheck()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/RequestTest.php b/tests/unit/Http/RequestTest.php deleted file mode 100644 index 97895ea8bf0..00000000000 --- a/tests/unit/Http/RequestTest.php +++ /dev/null @@ -1,1232 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Http - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class RequestTest extends HttpBase -{ - /** - * Tests the getDI - * - * @author Nikolaos Dimopoulos - * @since 2014-10-23 - */ - public function testHttpRequestGetDI() - { - $request = $this->getRequestObject(); - - expect($request->getDI() instanceof DiInterface)->true(); - } - - /** - * Tests the instance of the object - */ - public function testHttpRequestInstanceOf() - { - $this->specify( - "The new object is not the correct class", - function () { - expect($this->getRequestObject() instanceof Request)->true(); - } - ); - } - - /** - * Tests getHeader empty - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testHttpRequestHeaderGetEmpty() - { - $this->specify( - "Empty header does not contain correct data", - function () { - $request = $this->getRequestObject(); - - expect($request->getHeader('LOL'))->isEmpty(); - } - ); - } - - /** - * Tests getHeader - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testHttpRequestHeaderGet() - { - $this->specify( - "Empty header does not contain correct data", - function () { - $request = $this->getRequestObject(); - $this->setServerVar('HTTP_LOL', 'zup'); - $actual = $request->getHeader('LOL'); - $this->unsetServerVar('HTTP_LOL'); - - expect($actual)->equals('zup'); - } - ); - } - - /** - * Tests getHeader - * - * @issue https://github.com/phalcon/cphalcon/issues/2294 - * @author Serghei Iakovlev - * @since 2016-10-19 - */ - public function testHttpRequestCustomHeaderGet() - { - $this->specify( - "getHeaders does not returns correct header values", - function () { - $_SERVER['HTTP_FOO'] = 'Bar'; - $_SERVER['HTTP_BLA_BLA'] = 'boo'; - $_SERVER['HTTP_AUTH'] = true; - - $request = $this->getRequestObject(); - - expect($request->getHeaders())->equals(['Foo' => 'Bar', 'Bla-Bla' => 'boo', 'Auth' => 1]); - } - ); - } - - /** - * Tests hasHeader - * - * @author limx <715557344@qq.com> - * @since 2017-10-26 - */ - public function testHttpRequestCustomHeaderHas() - { - $this->specify( - "hasHeader does not returns correct result", - function () { - $_SERVER['HTTP_FOO'] = 'Bar'; - $_SERVER['HTTP_AUTH'] = true; - - $request = $this->getRequestObject(); - - expect($request->hasHeader('HTTP_FOO'))->true(); - expect($request->hasHeader('AUTH'))->true(); - expect($request->hasHeader('HTTP_FOO'))->true(); - } - ); - } - - /** - * Tests isAjax default - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testHttpRequestIsAjaxDefault() - { - $this->specify( - "Default request is Ajax", - function () { - $request = $this->getRequestObject(); - - expect($request->isAjax())->false(); - } - ); - } - - /** - * Tests isAjax - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testHttpRequestIsAjax() - { - $this->specify( - "Request is not Ajax", - function () { - $request = $this->getRequestObject(); - $this->setServerVar('HTTP_X_REQUESTED_WITH', 'XMLHttpRequest'); - $actual = $request->isAjax(); - $this->unsetServerVar('HTTP_X_REQUESTED_WITH'); - - expect($actual)->true(); - } - ); - } - - /** - * Tests getScheme default - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testHttpRequestGetSchemeDefault() - { - $this->specify( - "Default scheme is not http", - function () { - $request = $this->getRequestObject(); - - expect($request->getScheme())->equals('http'); - } - ); - } - - /** - * Tests getScheme with HTTPS - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testHttpRequestGetScheme() - { - $this->specify( - "Scheme is not https", - function () { - $request = $this->getRequestObject(); - $this->setServerVar('HTTPS', 'on'); - $actual = $request->getScheme(); - $this->unsetServerVar('HTTPS'); - - expect($actual)->equals('https'); - } - ); - } - - /** - * Tests isSecure default - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testHttpRequestIsSecureDefault() - { - $this->specify( - "Default isSecure is true", - function () { - $request = $this->getRequestObject(); - - expect($request->isSecure())->false(); - } - ); - } - - /** - * Tests isSecure - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testHttpRequestIsSecure() - { - $this->specify( - "isSecure is not true", - function () { - $request = $this->getRequestObject(); - $this->setServerVar('HTTPS', 'on'); - $actual = $request->isSecure(); - $this->unsetServerVar('HTTPS'); - - expect($actual)->true(); - } - ); - } - - /** - * Tests isSoap default - * - * @author Nikolaos Dimopoulos - * @since 2014-10-23 - */ - public function testHttpRequestIsSoapDefault() - { - $this->specify( - "Default isSoap is true", - function () { - $request = $this->getRequestObject(); - - expect($request->isSoap())->false(); - } - ); - } - - /** - * Tests isSoapRequest - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testHttpRequestIsSoap() - { - $this->specify( - "isSoapRequest is not true", - function () { - $request = $this->getRequestObject(); - $this->setServerVar('CONTENT_TYPE', 'application/soap+xml'); - $actual = $request->isSoap(); - $this->unsetServerVar('CONTENT_TYPE'); - - expect($actual)->true(); - } - ); - } - - /** - * Tests getServerAddress default - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testHttpRequestGetServerAddressDefault() - { - $this->specify( - "default server address is not 127.0.0.1", - function () { - $request = $this->getRequestObject(); - - expect($request->getServerAddress())->equals('127.0.0.1'); - } - ); - } - - /** - * Tests getServerAddress - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testHttpRequestGetServerAddress() - { - $this->specify( - "server address does not contain correct IP", - function () { - $request = $this->getRequestObject(); - $this->setServerVar('SERVER_ADDR', '192.168.4.1'); - $actual = $request->getServerAddress(); - $this->unsetServerVar('SERVER_ADDR'); - - expect($actual)->equals('192.168.4.1'); - } - ); - } - - /** - * Tests getHttpHost - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testHttpRequestHttpHost() - { - $this->specify( - "http host with empty server values does not return empty string", - function () { - $request = $this->getRequestObject(); - $this->setServerVar('HTTP_HOST', ''); - $this->setServerVar('SERVER_NAME', ''); - $this->setServerVar('SERVER_ADDR', ''); - - expect(is_string($request->getHttpHost()))->true(); - expect($request->getHttpHost())->equals(''); - } - ); - - $this->specify( - "http host without required server values does not return empty string", - function () { - $request = $this->getRequestObject(); - unset($_SERVER['HTTP_HOST'], $_SERVER['SERVER_NAME'], $_SERVER['SERVER_ADDR']); - - expect(is_string($request->getHttpHost()))->true(); - expect($request->getHttpHost())->equals(''); - } - ); - - $this->specify( - "The Request::getHttpHost without strict validation does not return expected host", - function () { - $request = $this->getRequestObject(); - $this->setServerVar('SERVER_NAME', 'host@name'); - - expect($request->getHttpHost())->equals('host@name'); - } - ); - - $this->specify( - "http host without http does not contain correct data", - function () { - $request = $this->getRequestObject(); - $this->setServerVar('HTTPS', 'off'); - $this->setServerVar('SERVER_NAME', 'localhost'); - $this->setServerVar('SERVER_PORT', 80); - - expect($request->getHttpHost())->equals('localhost'); - } - ); - - $this->specify( - "http host with http does not contain correct data", - function () { - $request = $this->getRequestObject(); - $this->setServerVar('HTTPS', 'on'); - $this->setServerVar('SERVER_NAME', 'localhost'); - $this->setServerVar('SERVER_PORT', 80); - - expect($request->getHttpHost())->equals('localhost'); - } - ); - - $this->specify( - "http host with https and 443 port does not contain correct data", - function () { - $request = $this->getRequestObject(); - $this->setServerVar('HTTPS', 'on'); - $this->setServerVar('SERVER_NAME', 'localhost'); - $this->setServerVar('SERVER_PORT', 443); - - expect($request->getHttpHost())->equals('localhost'); - } - ); - - $this->specify( - "http host with SERVER_ADDR value does not return expected host name", - function () { - $request = $this->getRequestObject(); - $this->setServerVar('HTTP_HOST', ''); - $this->setServerVar('SERVER_NAME', ''); - $this->setServerVar('SERVER_ADDR', '8.8.8.8'); - - expect($request->getHttpHost())->equals('8.8.8.8'); - } - ); - - $this->specify( - "http host with SERVER_NAME value does not return expected host name", - function () { - $request = $this->getRequestObject(); - $this->setServerVar('HTTP_HOST', ''); - $this->setServerVar('SERVER_NAME', 'some.domain'); - $this->setServerVar('SERVER_ADDR', '8.8.8.8'); - - expect($request->getHttpHost())->equals('some.domain'); - } - ); - - $this->specify( - "http host with HTTP_HOST value does not return expected host name", - function () { - $request = $this->getRequestObject(); - $this->setServerVar('HTTP_HOST', 'example.com'); - $this->setServerVar('SERVER_NAME', 'some.domain'); - $this->setServerVar('SERVER_ADDR', '8.8.8.8'); - - expect($request->getHttpHost())->equals('example.com'); - } - ); - } - - /** - * Tests strict host check - * - * @author Serghei Iakovlev - * @since 2016-06-26 - */ - public function testHttpStrictHostCheck() - { - $this->specify( - "http host with strict param does not return does not return valid host name", - function () { - $request = $this->getRequestObject(); - $request->setStrictHostCheck(true); - $this->setServerVar('SERVER_NAME', 'LOCALHOST:80'); - - expect($request->getHttpHost())->equals('localhost'); - } - ); - - $this->specify( - "http host with strict param does not return does not return valid host name", - function () { - $request = $this->getRequestObject(); - $request->setStrictHostCheck(false); - $this->setServerVar('SERVER_NAME', 'LOCALHOST:80'); - - expect($request->getHttpHost())->equals('LOCALHOST:80'); - } - ); - - $this->specify( - "The Request::isStrictHostCheck does not return expected value", - function () { - $request = $this->getRequestObject(); - - expect($request->isStrictHostCheck())->false(); - - $request->setStrictHostCheck(true); - expect($request->isStrictHostCheck())->true(); - - $request->setStrictHostCheck(false); - expect($request->isStrictHostCheck())->false(); - } - ); - } - - /** - * Tests Request::getPort - * - * @author Serghei Iakovlev - * @since 2016-06-26 - */ - public function testHttpRequestPort() - { - $this->specify( - "http host with https on does not return expected port", - function () { - $request = $this->getRequestObject(); - $this->setServerVar('HTTPS', 'on'); - $this->setServerVar('HTTP_HOST', 'example.com'); - - expect($request->getPort())->equals(443); - } - ); - - $this->specify( - "http host with https off does not return expected port", - function () { - $request = $this->getRequestObject(); - $this->setServerVar('HTTPS', 'off'); - $this->setServerVar('HTTP_HOST', 'example.com'); - - expect($request->getPort())->equals(80); - } - ); - - $this->specify( - "http host with port on HTTP_HOST does not return expected port", - function () { - $request = $this->getRequestObject(); - $this->setServerVar('HTTPS', 'off'); - $this->setServerVar('HTTP_HOST', 'example.com:8080'); - - expect($request->getPort())->equals(8080); - - $this->setServerVar('HTTPS', 'on'); - $this->setServerVar('HTTP_HOST', 'example.com:8081'); - - expect($request->getPort())->equals(8081); - - unset($_SERVER['HTTPS']); - $this->setServerVar('HTTP_HOST', 'example.com:8082'); - - expect($request->getPort())->equals(8082); - } - ); - } - - /** - * Tests getHttpHost by using invalid host - * - * @author Serghei Iakovlev - * @since 2016-06-26 - * - * @expectedException \UnexpectedValueException - */ - public function testInvalidHttpRequestHttpHost() - { - $this->specify( - "The Request::getHttpHost does not throws exception on strict host validation", - function ($host) { - $request = $this->getRequestObject(); - $request->setStrictHostCheck(true); - - $this->setServerVar('HTTP_HOST', $host); - $request->getHttpHost(); - }, - [ - 'examples' => [ - ['foo±bar±baz'], - ['foo~bar~baz'], - [''], - ['foo=bar=baz'], - ['foobar/baz'], - ['foo@bar'], - ] - ] - ); - } - - /** - * Tests POST functions - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testHttpRequestInputPost() - { - $this->specify( - "hasPost for empty element returns incorrect results", - function () { - $this->hasEmpty('hasPost'); - } - ); - - $this->specify( - "hasPost for set element returns incorrect results", - function () { - $this->hasNotEmpty('hasPost', 'setPostVar'); - } - ); - - $this->specify( - "getPost for empty element returns incorrect results", - function () { - $this->getEmpty('getPost'); - } - ); - - $this->specify( - "getPost returns incorrect results", - function () { - $this->getNotEmpty('getPost', 'setPostVar'); - } - ); - - $this->specify( - "getPost does not return sanitized data", - function () { - $this->getSanitized('getPost', 'setPostVar'); - } - ); - - $this->specify( - "getPost with array as filter does not return sanitized data", - function () { - $this->getSanitizedArrayFilter('getPost', ['string'], 'setPostVar'); - } - ); - } - - /** - * Tests getPut with json content type. - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/13418 - * @author Serghei Iakovlev - * @since 2017-06-03 - */ - public function shouldGetDataReceivedByPutMethod() - { - $this->specify( - 'The getPuth method does not owrk as expected', - function () { - stream_wrapper_unregister('php'); - stream_wrapper_register('php', PhpStream::class); - - file_put_contents('php://input', 'fruit=orange&quantity=4'); - - $_SERVER['REQUEST_METHOD'] = 'PUT'; - - $request = new Request(); - - $data = file_get_contents('php://input'); - $expected = ['fruit' => 'orange', 'quantity' => '4']; - - parse_str($data, $actual); - - expect($actual)->equals($expected); - expect($request->getPut())->equals($expected); - - stream_wrapper_restore('php'); - } - ); - } - - /** - * Tests getPut with json content type. - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/13418 - * @author Serghei Iakovlev - * @since 2017-06-03 - */ - public function shouldGetDataReceivedByPutMethodAndJsonType() - { - $this->specify( - 'The getPuth method does not owrk as expected with json content type', - function () { - stream_wrapper_unregister('php'); - stream_wrapper_register('php', PhpStream::class); - - file_put_contents('php://input', '{"fruit": "orange", "quantity": "4"}'); - - $_SERVER['REQUEST_METHOD'] = 'PUT'; - $_SERVER['CONTENT_TYPE'] = 'application/json'; - - $request = new Request(); - - $data = json_decode(file_get_contents('php://input'), true); - $expected = ['fruit' => 'orange', 'quantity' => '4']; - - expect($data)->equals($expected); - expect($request->getPut())->equals($expected); - - stream_wrapper_restore('php'); - } - ); - } - - /** - * Tests GET functions - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testHttpRequestInputGet() - { - $this->specify( - "hasQuery for empty element returns incorrect results", - function () { - $this->hasEmpty('hasQuery'); - } - ); - - $this->specify( - "hasQuery for set element returns incorrect results", - function () { - $this->hasNotEmpty('hasQuery', 'setGetVar'); - } - ); - - $this->specify( - "getQuery for empty element returns incorrect results", - function () { - $this->getEmpty('getQuery'); - } - ); - - $this->specify( - "getQuery returns incorrect results", - function () { - $this->getNotEmpty('getQuery', 'setGetVar'); - } - ); - - $this->specify( - "getQuery does not return sanitized data", - function () { - $this->getSanitized('getQuery', 'setGetVar'); - } - ); - - $this->specify( - "getQuery with array as filter does not return sanitized data", - function () { - $this->getSanitizedArrayFilter('getQuery', ['string'], 'setGetVar'); - } - ); - } - - /** - * Tests REQUEST functions - * - * @author Nikolaos Dimopoulos - * @since 2014-10-04 - */ - public function testHttpRequestInputRequest() - { - $this->specify( - "has for empty element returns incorrect results", - function () { - $this->hasEmpty('has'); - } - ); - - $this->specify( - "has for set element returns incorrect results", - function () { - $this->hasNotEmpty('has', 'setRequestVar'); - } - ); - - $this->specify( - "get for empty element returns incorrect results", - function () { - $this->getEmpty('get'); - } - ); - - $this->specify( - "get returns incorrect results", - function () { - $this->getNotEmpty('get', 'setRequestVar'); - } - ); - - $this->specify( - "get does not return sanitized data", - function () { - $this->getSanitized('get', 'setRequestVar'); - } - ); - - $this->specify( - "get with array as filter does not return sanitized data", - function () { - $this->getSanitizedArrayFilter('get', ['string'], 'setRequestVar'); - } - ); - } - - public function testHttpRequestMethod() - { - $request = $this->getRequestObject(); - - $_SERVER['REQUEST_METHOD'] = 'POST'; - $this->assertEquals($request->getMethod(), 'POST'); - $this->assertTrue($request->isPost()); - $this->assertFalse($request->isGet()); - - $_SERVER['REQUEST_METHOD'] = 'GET'; - $this->assertEquals($request->getMethod(), 'GET'); - $this->assertTrue($request->isGet()); - $this->assertFalse($request->isPost()); - - $_SERVER['REQUEST_METHOD'] = 'PUT'; - $this->assertEquals($request->getMethod(), 'PUT'); - $this->assertTrue($request->isPut()); - - $_SERVER['REQUEST_METHOD'] = 'DELETE'; - $this->assertEquals($request->getMethod(), 'DELETE'); - $this->assertTrue($request->isDelete()); - - $_SERVER['REQUEST_METHOD'] = 'OPTIONS'; - $this->assertEquals($request->getMethod(), 'OPTIONS'); - $this->assertTrue($request->isOptions()); - - $_SERVER['REQUEST_METHOD'] = 'POST'; - $this->assertTrue($request->isMethod('POST')); - $this->assertTrue($request->isMethod(['GET', 'POST'])); - - $_SERVER['REQUEST_METHOD'] = 'GET'; - $this->assertTrue($request->isMethod('GET')); - $this->assertTrue($request->isMethod(['GET', 'POST'])); - - $_SERVER['REQUEST_METHOD'] = 'CONNECT'; - $this->assertEquals($request->getMethod(), 'CONNECT'); - $this->assertTrue($request->isConnect()); - $this->assertFalse($request->isGet()); - - $_SERVER['REQUEST_METHOD'] = 'TRACE'; - $this->assertEquals($request->getMethod(), 'TRACE'); - $this->assertTrue($request->isTrace()); - $this->assertFalse($request->isGet()); - - $_SERVER['REQUEST_METHOD'] = 'PURGE'; - $this->assertEquals($request->getMethod(), 'PURGE'); - $this->assertTrue($request->isPurge()); - $this->assertFalse($request->isGet()); - } - - /** - * Tests the ability to override the HTTP method - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/12478 - * @author Serghei Iakovelv - * @since 2016-12-18 - */ - public function shouldOverrideHttpRequestMethod() - { - $this->specify( - 'The request object gets http method incorrectly', - function ($header, $method, $expected) { - $_SERVER['REQUEST_METHOD'] = 'POST'; - $request = $this->getRequestObject(); - - $_SERVER[$header] = $method; - expect($request->getMethod())->equals($expected); - - $_SERVER[$header] = strtolower($method); - expect($request->getMethod())->equals($expected); - - $_SERVER[strtolower($header)] = $method; - expect($request->getMethod())->equals($expected); - }, - ['examples' => $this->overridedMethodProvider()] - ); - } - - protected function overridedMethodProvider() - { - return [ - ['HTTP_X_HTTP_METHOD_OVERRIDE', 'PUT', 'PUT' ], - ['HTTP_X_HTTP_METHOD_OVERRIDE', 'PAT', 'GET' ], - ['HTTP_X_HTTP_METHOD_OVERRIDE', 'GET', 'GET' ], - ['HTTP_X_HTTP_METHOD_OVERRIDE', 'GOT', 'GET' ], - ['HTTP_X_HTTP_METHOD_OVERRIDE', 'HEAD', 'HEAD' ], - ['HTTP_X_HTTP_METHOD_OVERRIDE', 'HED', 'GET' ], - ['HTTP_X_HTTP_METHOD_OVERRIDE', 'POST', 'POST' ], - ['HTTP_X_HTTP_METHOD_OVERRIDE', 'PAST', 'GET' ], - ['HTTP_X_HTTP_METHOD_OVERRIDE', 'DELETE', 'DELETE' ], - ['HTTP_X_HTTP_METHOD_OVERRIDE', 'DILETE', 'GET' ], - ['HTTP_X_HTTP_METHOD_OVERRIDE', 'OPTIONS', 'OPTIONS'], - ['HTTP_X_HTTP_METHOD_OVERRIDE', 'OPTION', 'GET' ], - ['HTTP_X_HTTP_METHOD_OVERRIDE', 'PATCH', 'PATCH' ], - ['HTTP_X_HTTP_METHOD_OVERRIDE', 'PUTCH', 'GET' ], - ['HTTP_X_HTTP_METHOD_OVERRIDE', 'PURGE', 'PURGE' ], - ['HTTP_X_HTTP_METHOD_OVERRIDE', 'PURG', 'GET' ], - ['HTTP_X_HTTP_METHOD_OVERRIDE', 'TRACE', 'TRACE' ], - ['HTTP_X_HTTP_METHOD_OVERRIDE', 'RACE', 'GET' ], - ['HTTP_X_HTTP_METHOD_OVERRIDE', 'CONNECT', 'CONNECT'], - ['HTTP_X_HTTP_METHOD_OVERRIDE', 'CONECT', 'GET' ], - ]; - } - - public function testHttpRequestContentType() - { - $request = $this->getRequestObject(); - - $this->setServerVar('CONTENT_TYPE', 'application/xhtml+xml'); - $contentType = $request->getContentType(); - $this->assertEquals($contentType, 'application/xhtml+xml'); - $this->unsetServerVar('CONTENT_TYPE'); - - $this->setServerVar('HTTP_CONTENT_TYPE', 'application/xhtml+xml'); - $contentType = $request->getContentType(); - $this->assertEquals($contentType, 'application/xhtml+xml'); - $this->unsetServerVar('HTTP_CONTENT_TYPE'); - } - - public function testHttpRequestAcceptableContent() - { - $request = $this->getRequestObject(); - - $_SERVER['HTTP_ACCEPT'] = 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8,application/json; level=2; q=0.7'; - $accept = $request->getAcceptableContent(); - $this->assertCount(5, $accept); - - $firstAccept = $accept[0]; - $this->assertEquals($firstAccept['accept'], 'text/html'); - $this->assertEquals($firstAccept['quality'], 1); - - $fourthAccept = $accept[3]; - $this->assertEquals($fourthAccept['accept'], '*/*'); - $this->assertEquals($fourthAccept['quality'], 0.8); - - $lastAccept = $accept[4]; - $this->assertEquals($lastAccept['accept'], 'application/json'); - $this->assertEquals($lastAccept['quality'], 0.7); - $this->assertEquals($lastAccept['level'], 2); - - $this->assertEquals($request->getBestAccept(), 'text/html'); - } - - public function testHttpRequestAcceptableCharsets() - { - $request = $this->getRequestObject(); - - $_SERVER['HTTP_ACCEPT_CHARSET'] = 'iso-8859-5,unicode-1-1;q=0.8'; - $accept = $request->getClientCharsets(); - $this->assertCount(2, $accept); - - $firstAccept = $accept[0]; - $this->assertEquals($firstAccept['charset'], 'iso-8859-5'); - $this->assertEquals($firstAccept['quality'], 1); - - $lastAccept = $accept[1]; - $this->assertEquals($lastAccept['charset'], 'unicode-1-1'); - $this->assertEquals($lastAccept['quality'], 0.8); - - $this->assertEquals($request->getBestCharset(), 'iso-8859-5'); - } - - public function testHttpRequestAcceptableLanguage() - { - $request = $this->getRequestObject(); - - $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'es,es-ar;q=0.8,en;q=0.5,en-us;q=0.3,de-de; q=0.9'; - $accept = $request->getLanguages(); - $this->assertCount(5, $accept); - - $firstAccept = $accept[0]; - $this->assertEquals($firstAccept['language'], 'es'); - $this->assertEquals($firstAccept['quality'], 1); - - $fourthAccept = $accept[3]; - $this->assertEquals($fourthAccept['language'], 'en-us'); - $this->assertEquals($fourthAccept['quality'], 0.3); - - $lastAccept = $accept[4]; - $this->assertEquals($lastAccept['language'], 'de-de'); - $this->assertEquals($lastAccept['quality'], 0.9); - - $this->assertEquals($request->getBestLanguage(), 'es'); - } - - public function testHttpRequestClientAddress() - { - $request = $this->getRequestObject(); - - $_SERVER['REMOTE_ADDR'] = '192.168.0.1'; - $_SERVER['HTTP_X_FORWARDED_FOR'] = '192.168.7.21'; - $this->assertEquals($request->getClientAddress(), '192.168.0.1'); - $this->assertEquals($request->getClientAddress(true), '192.168.7.21'); - - $_SERVER['REMOTE_ADDR'] = '86.45.89.47, 214.55.34.56'; - $this->assertEquals($request->getClientAddress(), '86.45.89.47'); - } - - /** - * @issue https://github.com/phalcon/cphalcon/issues/1265 - */ - public function testRequestGetValueByUsingSeveralMethods() - { - $request = $this->getRequestObject(); - - $_REQUEST = $_GET = $_POST = [ - 'string' => 'hello', - 'array' => ['string' => 'world'] - ]; - - // get - $this->assertEquals('hello', $request->get('string', 'string')); - $this->assertEquals('hello', $request->get('string', 'string', null, true, true)); - - $this->assertEquals(['string' => 'world'], $request->get('array', 'string')); - $this->assertEquals(null, $request->get('array', 'string', null, true, true)); - - // getQuery - $this->assertEquals('hello', $request->getQuery('string', 'string')); - $this->assertEquals('hello', $request->getQuery('string', 'string', null, true, true)); - - $this->assertEquals(['string' => 'world'], $request->getQuery('array', 'string')); - $this->assertEquals(null, $request->getQuery('array', 'string', null, true, true)); - - // getPost - $this->assertEquals('hello', $request->getPost('string', 'string')); - $this->assertEquals('hello', $request->getPost('string', 'string', null, true, true)); - - $this->assertEquals(['string' => 'world'], $request->getPost('array', 'string')); - $this->assertEquals(null, $request->getPost('array', 'string', null, true, true)); - } - - public function testRequestGetQuery() - { - $_REQUEST = $_GET = $_POST = [ - 'id' => 1, - 'num' => 'a1a', - 'age' => 'aa', - 'phone' => '' - ]; - - $this->specify( - "Request::getQuery does not return correct result", - function ($function) { - $request = $this->getRequestObject(); - - expect($request->$function('id', 'int', 100))->equals(1); - expect($request->$function('num', 'int', 100))->equals(1); - expect($request->$function('age', 'int', 100))->isEmpty(); - expect($request->$function('phone', 'int', 100))->isEmpty(); - expect($request->$function('phone', 'int', 100, true))->equals(100); - }, - ['examples' => [ - ['get', 'getQuery', 'getPost'] - ]] - ); - } - - /** - * Tests Request::hasFiles - * - * @author Serghei Iakovelv - * @since 2016-01-31 - */ - public function testRequestHasFiles() - { - $this->specify( - "Request::hasFiles does not return correct result", - function ($files, $all, $onlySuccessful) { - $request = $this->getRequestObject(); - - $_FILES = $files; - - expect($request->hasFiles(false))->equals($all); - expect($request->hasFiles(true))->equals($onlySuccessful); - }, - ['examples' => $this->filesProvider()] - ); - } - - /** - * Tests uploaded files - * - * @author Serghei Iakovelv - * @since 2016-01-31 - */ - public function testGetUploadedFiles() - { - $this->specify( - "Request does not handle uploaded files correctly", - function () { - $request = $this->getRequestObject(); - - $_FILES = [ - 'photo' => [ - 'name' => ['f0', 'f1', ['f2', 'f3'], [[[['f4']]]]], - 'type' => ['text/plain', 'text/csv', ['image/png', 'image/gif'], [[[['application/octet-stream']]]]], - 'tmp_name' => ['t0', 't1', ['t2', 't3'], [[[['t4']]]]], - 'error' => [0, 0, [0, 0], [[[[8]]]]], - 'size' => [10, 20, [30, 40], [[[[50]]]]], - ], - ]; - - $all = $request->getUploadedFiles(false); - $successful = $request->getUploadedFiles(true); - - expect($all)->count(5); - expect($successful)->count(4); - - for ($i=0; $i<=4; ++$i) { - expect($all[$i]->isUploadedFile())->false(); - } - - $data = ['photo.0', 'photo.1', 'photo.2.0', 'photo.2.1', 'photo.3.0.0.0.0']; - for ($i=0; $i<=4; ++$i) { - expect($all[$i]->getKey())->equals($data[$i]); - } - - expect($all[0]->getName())->equals('f0'); - expect($all[1]->getName())->equals('f1'); - expect($all[2]->getName())->equals('f2'); - expect($all[3]->getName())->equals('f3'); - expect($all[4]->getName())->equals('f4'); - - expect($all[0]->getTempName())->equals('t0'); - expect($all[1]->getTempName())->equals('t1'); - expect($all[2]->getTempName())->equals('t2'); - expect($all[3]->getTempName())->equals('t3'); - expect($all[4]->getTempName())->equals('t4'); - - expect($successful[0]->getName())->equals('f0'); - expect($successful[1]->getName())->equals('f1'); - expect($successful[2]->getName())->equals('f2'); - expect($successful[3]->getName())->equals('f3'); - - expect($successful[0]->getTempName())->equals('t0'); - expect($successful[1]->getTempName())->equals('t1'); - expect($successful[2]->getTempName())->equals('t2'); - expect($successful[3]->getTempName())->equals('t3'); - } - ); - } - - protected function filesProvider() - { - return [ - [ - [ - 'test' => [ - 'name' => 'name', - 'type' => 'text/plain', - 'size' => 1, - 'tmp_name' => 'tmp_name', - 'error' => 0, - ] - ], - 1, - 1, - ], - [ - [ - 'test' => [ - 'name' => ['name1', 'name2'], - 'type' => ['text/plain', 'text/plain'], - 'size' => [1, 1], - 'tmp_name' => ['tmp_name1', 'tmp_name2'], - 'error' => [0, 0], - ] - ], - 2, - 2, - ], - [ - [ - 'photo' => [ - 'name' => [ - 0 => '', - 1 => '', - 2 => [0 => '', 1 => '', 2 => ''], - 3 => [0 => ''], - 4 => [0 => [0 => '']], - 5 => [0 => [0 => [0 => [0 => '']]]], - ], - 'type' => [ - 0 => '', - 1 => '', - 2 => [0 => '', 1 => '', 2 => ''], - 3 => [0 => ''], - 4 => [0 => [0 => '']], - 5 => [0 => [0 => [0 => [0 => '']]]], - ], - 'tmp_name' => [ - 0 => '', - 1 => '', - 2 => [0 => '', 1 => '', 2 => ''], - 3 => [0 => ''], - 4 => [0 => [0 => '']], - 5 => [0 => [0 => [0 => [0 => '']]]], - ], - 'error' => [ - 0 => 4, - 1 => 4, - 2 => [0 => 4, 1 => 4, 2 => 4], - 3 => [0 => 4], - 4 => [0 => [0 => 4]], - 5 => [0 => [0 => [0 => [0 => 4]]]], - ], - 'size' => [ - 0 => '', - 1 => '', - 2 => [0 => '', 1 => '', 2 => ''], - 3 => [0 => ''], - 4 => [0 => [0 => '']], - 5 => [0 => [0 => [0 => [0 => '']]]], - ], - ], - 'test' => [ - 'name' => '', - 'type' => '', - 'tmp_name' => '', - 'error' => 4, - 'size' => 0, - ], - ], - 9, - 0, - ] - ]; - } -} diff --git a/tests/unit/Http/Response/AppendContentCest.php b/tests/unit/Http/Response/AppendContentCest.php new file mode 100644 index 00000000000..0fb7667b561 --- /dev/null +++ b/tests/unit/Http/Response/AppendContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class AppendContentCest +{ + /** + * Tests Phalcon\Http\Response :: appendContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseAppendContent(UnitTester $I) + { + $I->wantToTest("Http\Response - appendContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/ConstructCest.php b/tests/unit/Http/Response/ConstructCest.php new file mode 100644 index 00000000000..55cd082aed5 --- /dev/null +++ b/tests/unit/Http/Response/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Http\Response :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseConstruct(UnitTester $I) + { + $I->wantToTest("Http\Response - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Cookies/ConstructCest.php b/tests/unit/Http/Response/Cookies/ConstructCest.php new file mode 100644 index 00000000000..72df86d99f7 --- /dev/null +++ b/tests/unit/Http/Response/Cookies/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Cookies; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Http\Response\Cookies :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseCookiesConstruct(UnitTester $I) + { + $I->wantToTest("Http\Response\Cookies - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Cookies/DeleteCest.php b/tests/unit/Http/Response/Cookies/DeleteCest.php new file mode 100644 index 00000000000..f727698951f --- /dev/null +++ b/tests/unit/Http/Response/Cookies/DeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Cookies; + +use UnitTester; + +class DeleteCest +{ + /** + * Tests Phalcon\Http\Response\Cookies :: delete() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseCookiesDelete(UnitTester $I) + { + $I->wantToTest("Http\Response\Cookies - delete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Cookies/GetCest.php b/tests/unit/Http/Response/Cookies/GetCest.php new file mode 100644 index 00000000000..04216dd65a9 --- /dev/null +++ b/tests/unit/Http/Response/Cookies/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Cookies; + +use UnitTester; + +class GetCest +{ + /** + * Tests Phalcon\Http\Response\Cookies :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseCookiesGet(UnitTester $I) + { + $I->wantToTest("Http\Response\Cookies - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Cookies/GetCookiesCest.php b/tests/unit/Http/Response/Cookies/GetCookiesCest.php new file mode 100644 index 00000000000..0d6bc3a23f9 --- /dev/null +++ b/tests/unit/Http/Response/Cookies/GetCookiesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Cookies; + +use UnitTester; + +class GetCookiesCest +{ + /** + * Tests Phalcon\Http\Response\Cookies :: getCookies() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseCookiesGetCookies(UnitTester $I) + { + $I->wantToTest("Http\Response\Cookies - getCookies()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Cookies/GetDICest.php b/tests/unit/Http/Response/Cookies/GetDICest.php new file mode 100644 index 00000000000..8a13f9e0197 --- /dev/null +++ b/tests/unit/Http/Response/Cookies/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Cookies; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Http\Response\Cookies :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseCookiesGetDI(UnitTester $I) + { + $I->wantToTest("Http\Response\Cookies - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Cookies/HasCest.php b/tests/unit/Http/Response/Cookies/HasCest.php new file mode 100644 index 00000000000..1cc8c237e28 --- /dev/null +++ b/tests/unit/Http/Response/Cookies/HasCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Cookies; + +use UnitTester; + +class HasCest +{ + /** + * Tests Phalcon\Http\Response\Cookies :: has() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseCookiesHas(UnitTester $I) + { + $I->wantToTest("Http\Response\Cookies - has()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Cookies/IsUsingEncryptionCest.php b/tests/unit/Http/Response/Cookies/IsUsingEncryptionCest.php new file mode 100644 index 00000000000..fcc69232dd7 --- /dev/null +++ b/tests/unit/Http/Response/Cookies/IsUsingEncryptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Cookies; + +use UnitTester; + +class IsUsingEncryptionCest +{ + /** + * Tests Phalcon\Http\Response\Cookies :: isUsingEncryption() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseCookiesIsUsingEncryption(UnitTester $I) + { + $I->wantToTest("Http\Response\Cookies - isUsingEncryption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Cookies/ResetCest.php b/tests/unit/Http/Response/Cookies/ResetCest.php new file mode 100644 index 00000000000..49ef0cee5eb --- /dev/null +++ b/tests/unit/Http/Response/Cookies/ResetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Cookies; + +use UnitTester; + +class ResetCest +{ + /** + * Tests Phalcon\Http\Response\Cookies :: reset() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseCookiesReset(UnitTester $I) + { + $I->wantToTest("Http\Response\Cookies - reset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Cookies/SendCest.php b/tests/unit/Http/Response/Cookies/SendCest.php new file mode 100644 index 00000000000..ba86564ec89 --- /dev/null +++ b/tests/unit/Http/Response/Cookies/SendCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Cookies; + +use UnitTester; + +class SendCest +{ + /** + * Tests Phalcon\Http\Response\Cookies :: send() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseCookiesSend(UnitTester $I) + { + $I->wantToTest("Http\Response\Cookies - send()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Cookies/SetCest.php b/tests/unit/Http/Response/Cookies/SetCest.php new file mode 100644 index 00000000000..4af54984b00 --- /dev/null +++ b/tests/unit/Http/Response/Cookies/SetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Cookies; + +use UnitTester; + +class SetCest +{ + /** + * Tests Phalcon\Http\Response\Cookies :: set() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseCookiesSet(UnitTester $I) + { + $I->wantToTest("Http\Response\Cookies - set()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Cookies/SetDICest.php b/tests/unit/Http/Response/Cookies/SetDICest.php new file mode 100644 index 00000000000..842a8c8a040 --- /dev/null +++ b/tests/unit/Http/Response/Cookies/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Cookies; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Http\Response\Cookies :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseCookiesSetDI(UnitTester $I) + { + $I->wantToTest("Http\Response\Cookies - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Cookies/SetSignKeyCest.php b/tests/unit/Http/Response/Cookies/SetSignKeyCest.php new file mode 100644 index 00000000000..20830b23a1f --- /dev/null +++ b/tests/unit/Http/Response/Cookies/SetSignKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Cookies; + +use UnitTester; + +class SetSignKeyCest +{ + /** + * Tests Phalcon\Http\Response\Cookies :: setSignKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseCookiesSetSignKey(UnitTester $I) + { + $I->wantToTest("Http\Response\Cookies - setSignKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Cookies/UseEncryptionCest.php b/tests/unit/Http/Response/Cookies/UseEncryptionCest.php new file mode 100644 index 00000000000..10813591c2c --- /dev/null +++ b/tests/unit/Http/Response/Cookies/UseEncryptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Cookies; + +use UnitTester; + +class UseEncryptionCest +{ + /** + * Tests Phalcon\Http\Response\Cookies :: useEncryption() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseCookiesUseEncryption(UnitTester $I) + { + $I->wantToTest("Http\Response\Cookies - useEncryption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/CookiesCest.php b/tests/unit/Http/Response/CookiesCest.php new file mode 100644 index 00000000000..955efd5e867 --- /dev/null +++ b/tests/unit/Http/Response/CookiesCest.php @@ -0,0 +1,80 @@ + + * @author Phalcon Team + * @package Phalcon\Test\Unit\Http\Response + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class CookiesCest extends HttpBase +{ + /** + * Tests the internal cookies property. + * + * @test + * @issue https://github.com/phalcon/cphalcon/issues/12978 + * @author Phalcon Team + * @since 2017-09-02 + */ + public function shouldWorkWithoutInitializeInternalCookiesProperty(UnitTester $I) + { + $I->assertTrue((new Cookies())->send()); + } + + /** + * Tests getCookies is work. + * + * @author limx <715557344@qq.com> + */ + public function testGetCookies(UnitTester $I) + { + $cookies = new Cookies(); + + Di::reset(); + $di = new Di(); + $di->set('response', function () { + return new Response(); + }); + $di->set('session', function () { + return new SessionAdapter(); + }); + + $cookies->setDI($di); + + $cookies->set('x-token', '1bf0bc92ed7dcc80d337a5755f879878'); + $cookies->set('x-user-id', 1); + + $I->assertTrue(is_array($cookies->getCookies())); + + $cookieArray = $cookies->getCookies(); + $I->assertInstanceOf(CookieInterface::class, $cookieArray['x-token']); + $I->assertInstanceOf(CookieInterface::class, $cookieArray['x-user-id']); + + /** @var Cookie[] $cookieArray */ + $cookieArray = $cookies->getCookies(); + $I->assertEquals('1bf0bc92ed7dcc80d337a5755f879878', $cookieArray['x-token']); + $I->assertEquals(1, $cookieArray['x-user-id']->getValue()); + } +} diff --git a/tests/unit/Http/Response/CookiesTest.php b/tests/unit/Http/Response/CookiesTest.php deleted file mode 100644 index 0a300e77493..00000000000 --- a/tests/unit/Http/Response/CookiesTest.php +++ /dev/null @@ -1,98 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Http\Response - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class CookiesTest extends HttpBase -{ - /** - * Tests the internal cookies property. - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/12978 - * @author Serghei Iakovlev - * @since 2017-09-02 - */ - public function shouldWorkWithoutInitializeInternalCookiesProperty() - { - $this->specify( - "The internal cookies property is not initialized or iterable", - function () { - expect((new Cookies())->send())->true(); - } - ); - } - - /** - * Tests getCookies is work. - * @author limx <715557344@qq.com> - */ - public function testGetCookies() - { - $cookies = new Cookies(); - - Di::reset(); - $di = new Di(); - $di->set('response', function () { - return new Response(); - }); - $di->set('session', function () { - return new SessionAdapter(); - }); - - $cookies->setDI($di); - - $cookies->set('x-token', '1bf0bc92ed7dcc80d337a5755f879878'); - $cookies->set('x-user-id', 1); - - $this->specify( - "The cookies is not a array.", - function () use ($cookies) { - expect(is_array($cookies->getCookies()))->true(); - } - ); - - $this->specify( - "The cookie is not instance of CookieInterface", - function () use ($cookies) { - $cookieArray = $cookies->getCookies(); - expect($cookieArray['x-token'] instanceof CookieInterface)->true(); - expect($cookieArray['x-user-id'] instanceof CookieInterface)->true(); - } - ); - - $this->specify( - "The cookie is not correct.", - function () use ($cookies) { - /** @var Cookie[] $cookieArray */ - $cookieArray = $cookies->getCookies(); - expect($cookieArray['x-token']->getValue())->equals('1bf0bc92ed7dcc80d337a5755f879878'); - expect($cookieArray['x-user-id']->getValue())->equals(1); - } - ); - } -} diff --git a/tests/unit/Http/Response/GetContentCest.php b/tests/unit/Http/Response/GetContentCest.php new file mode 100644 index 00000000000..59fd238e8cf --- /dev/null +++ b/tests/unit/Http/Response/GetContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class GetContentCest +{ + /** + * Tests Phalcon\Http\Response :: getContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseGetContent(UnitTester $I) + { + $I->wantToTest("Http\Response - getContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/GetCookiesCest.php b/tests/unit/Http/Response/GetCookiesCest.php new file mode 100644 index 00000000000..afadafafd2d --- /dev/null +++ b/tests/unit/Http/Response/GetCookiesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class GetCookiesCest +{ + /** + * Tests Phalcon\Http\Response :: getCookies() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseGetCookies(UnitTester $I) + { + $I->wantToTest("Http\Response - getCookies()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/GetDICest.php b/tests/unit/Http/Response/GetDICest.php new file mode 100644 index 00000000000..952f0752eca --- /dev/null +++ b/tests/unit/Http/Response/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Http\Response :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseGetDI(UnitTester $I) + { + $I->wantToTest("Http\Response - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/GetHeadersCest.php b/tests/unit/Http/Response/GetHeadersCest.php new file mode 100644 index 00000000000..28b5e27b17c --- /dev/null +++ b/tests/unit/Http/Response/GetHeadersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class GetHeadersCest +{ + /** + * Tests Phalcon\Http\Response :: getHeaders() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseGetHeaders(UnitTester $I) + { + $I->wantToTest("Http\Response - getHeaders()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/GetReasonPhraseCest.php b/tests/unit/Http/Response/GetReasonPhraseCest.php new file mode 100644 index 00000000000..91a823130db --- /dev/null +++ b/tests/unit/Http/Response/GetReasonPhraseCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class GetReasonPhraseCest +{ + /** + * Tests Phalcon\Http\Response :: getReasonPhrase() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseGetReasonPhrase(UnitTester $I) + { + $I->wantToTest("Http\Response - getReasonPhrase()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/GetStatusCodeCest.php b/tests/unit/Http/Response/GetStatusCodeCest.php new file mode 100644 index 00000000000..bc8d77d93de --- /dev/null +++ b/tests/unit/Http/Response/GetStatusCodeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class GetStatusCodeCest +{ + /** + * Tests Phalcon\Http\Response :: getStatusCode() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseGetStatusCode(UnitTester $I) + { + $I->wantToTest("Http\Response - getStatusCode()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/HasHeaderCest.php b/tests/unit/Http/Response/HasHeaderCest.php new file mode 100644 index 00000000000..051f2a49df8 --- /dev/null +++ b/tests/unit/Http/Response/HasHeaderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class HasHeaderCest +{ + /** + * Tests Phalcon\Http\Response :: hasHeader() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseHasHeader(UnitTester $I) + { + $I->wantToTest("Http\Response - hasHeader()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Headers/GetCest.php b/tests/unit/Http/Response/Headers/GetCest.php new file mode 100644 index 00000000000..89fbc1ace31 --- /dev/null +++ b/tests/unit/Http/Response/Headers/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Headers; + +use UnitTester; + +class GetCest +{ + /** + * Tests Phalcon\Http\Response\Headers :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseHeadersGet(UnitTester $I) + { + $I->wantToTest("Http\Response\Headers - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Headers/HasCest.php b/tests/unit/Http/Response/Headers/HasCest.php new file mode 100644 index 00000000000..5475879252a --- /dev/null +++ b/tests/unit/Http/Response/Headers/HasCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Headers; + +use UnitTester; + +class HasCest +{ + /** + * Tests Phalcon\Http\Response\Headers :: has() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseHeadersHas(UnitTester $I) + { + $I->wantToTest("Http\Response\Headers - has()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Headers/RemoveCest.php b/tests/unit/Http/Response/Headers/RemoveCest.php new file mode 100644 index 00000000000..75fffafd927 --- /dev/null +++ b/tests/unit/Http/Response/Headers/RemoveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Headers; + +use UnitTester; + +class RemoveCest +{ + /** + * Tests Phalcon\Http\Response\Headers :: remove() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseHeadersRemove(UnitTester $I) + { + $I->wantToTest("Http\Response\Headers - remove()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Headers/ResetCest.php b/tests/unit/Http/Response/Headers/ResetCest.php new file mode 100644 index 00000000000..8d665328130 --- /dev/null +++ b/tests/unit/Http/Response/Headers/ResetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Headers; + +use UnitTester; + +class ResetCest +{ + /** + * Tests Phalcon\Http\Response\Headers :: reset() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseHeadersReset(UnitTester $I) + { + $I->wantToTest("Http\Response\Headers - reset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Headers/SendCest.php b/tests/unit/Http/Response/Headers/SendCest.php new file mode 100644 index 00000000000..9a36be4b03d --- /dev/null +++ b/tests/unit/Http/Response/Headers/SendCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Headers; + +use UnitTester; + +class SendCest +{ + /** + * Tests Phalcon\Http\Response\Headers :: send() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseHeadersSend(UnitTester $I) + { + $I->wantToTest("Http\Response\Headers - send()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Headers/SetCest.php b/tests/unit/Http/Response/Headers/SetCest.php new file mode 100644 index 00000000000..5216ef072e0 --- /dev/null +++ b/tests/unit/Http/Response/Headers/SetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Headers; + +use UnitTester; + +class SetCest +{ + /** + * Tests Phalcon\Http\Response\Headers :: set() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseHeadersSet(UnitTester $I) + { + $I->wantToTest("Http\Response\Headers - set()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Headers/SetRawCest.php b/tests/unit/Http/Response/Headers/SetRawCest.php new file mode 100644 index 00000000000..98277c6faeb --- /dev/null +++ b/tests/unit/Http/Response/Headers/SetRawCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Headers; + +use UnitTester; + +class SetRawCest +{ + /** + * Tests Phalcon\Http\Response\Headers :: setRaw() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseHeadersSetRaw(UnitTester $I) + { + $I->wantToTest("Http\Response\Headers - setRaw()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Headers/SetStateCest.php b/tests/unit/Http/Response/Headers/SetStateCest.php new file mode 100644 index 00000000000..b6cbef934c9 --- /dev/null +++ b/tests/unit/Http/Response/Headers/SetStateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Headers; + +use UnitTester; + +class SetStateCest +{ + /** + * Tests Phalcon\Http\Response\Headers :: __set_state() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseHeadersSetState(UnitTester $I) + { + $I->wantToTest("Http\Response\Headers - __set_state()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/Headers/ToArrayCest.php b/tests/unit/Http/Response/Headers/ToArrayCest.php new file mode 100644 index 00000000000..f40dc9c2072 --- /dev/null +++ b/tests/unit/Http/Response/Headers/ToArrayCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response\Headers; + +use UnitTester; + +class ToArrayCest +{ + /** + * Tests Phalcon\Http\Response\Headers :: toArray() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseHeadersToArray(UnitTester $I) + { + $I->wantToTest("Http\Response\Headers - toArray()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/HeadersCest.php b/tests/unit/Http/Response/HeadersCest.php new file mode 100644 index 00000000000..49576fa4fb4 --- /dev/null +++ b/tests/unit/Http/Response/HeadersCest.php @@ -0,0 +1,198 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use Phalcon\Http\Response\Headers; +use UnitTester; + +class HeadersCest +{ + /** + * Tests the instance of the object + * + * @author Phalcon Team + * @since 2014-10-05 + */ + public function testHttpResponseHeadersInstanceOf(UnitTester $I) + { + $headers = new Headers(); + $class = Headers::class; + $I->assertInstanceOf($class, $headers); + } + + /** + * Tests the get and set of the response headers + * + * @author Phalcon Team + * @since 2014-10-05 + */ + public function testHttpResponseHeadersGetSet(UnitTester $I) + { + $headers = new Headers(); + $headers->set('Content-Type', 'text/html'); + + $expected = 'text/html'; + $actual = $headers->get('Content-Type'); + $I->assertEquals($expected, $actual); + } + + /** + * Tests the has of the response headers + * + * @author Phalcon Team + * @since 2018-11-02 + */ + public function testHttpResponseHeadersHas(UnitTester $I) + { + $headers = new Headers(); + $headers->set('Content-Type', 'text/html'); + + $actual = $headers->has('Content-Type'); + $I->assertTrue($actual); + + $actual = $headers->has('unknown-header'); + $I->assertFalse($actual); + } + + /** + * Tests the set of the response status headers + * + * @issue https://github.com/phalcon/cphalcon/issues/12895 + * @author Phalcon Team + * @since 2017-06-17 + */ + public function shouldSetResponseStatusHeader(UnitTester $I) + { + $examples = [ + 'Unprocessable Entity' => 422, + 'Moved Permanently' => 301, + 'OK' => 200, + 'Service Unavailable' => 503, + 'Not Found' => 404, + 'Created' => 201, + 'Continue' => 100, + ]; + + foreach ($examples as $message => $code) { + $headers = new Headers(); + $headers->set('Status', $code); + + $headers = $I->getProtectedProperty($headers, '_headers'); + + $expected = 1; + $actual = count($headers); + $I->assertEquals($expected, $actual); + + $actual = isset($headers['Status']); + $I->assertTrue($actual); + + $expected = $code; + $actual = $headers['Status']; + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests the get of the response status headers + * + * @issue https://github.com/phalcon/cphalcon/issues/12895 + * @author Phalcon Team + * @since 2017-06-17 + */ + public function shouldGetResponseStatusHeader(UnitTester $I) + { + $examples = [ + 'Unprocessable Entity' => 422, + 'Moved Permanently' => 301, + 'OK' => 200, + 'Service Unavailable' => 503, + 'Not Found' => 404, + 'Created' => 201, + 'Continue' => 100, + ]; + + foreach ($examples as $message => $code) { + $headers = new Headers(); + $I->setProtectedProperty($headers, '_headers', ['Status' => $code]); + + $expected = $code; + $actual = $headers->get('Status'); + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests resetting the response headers + * + * @author Phalcon Team + * @since 2014-10-05 + */ + public function testHttpResponseHeadersReset(UnitTester $I) + { + $headers = new Headers(); + $headers->set('Content-Type', 'text/html'); + $headers->reset(); + + $actual = $headers->get('Content-Type'); + + $I->assertEmpty($actual); + } + + /** + * Tests removing a response header + * + * @author Phalcon Team + * @since 2014-10-05 + */ + public function testHttpResponseHeadersRemove(UnitTester $I) + { + $headers = new Headers(); + $headers->set('Content-Type', 'text/html'); + $headers->remove('Content-Type'); + + $actual = $headers->get('Content-Type'); + + $I->assertEmpty($actual); + } + + /** + * Tests setting a raw response header + * + * @author Phalcon Team + * @since 2014-10-05 + */ + public function testHttpResponseHeadersRaw(UnitTester $I) + { + $headers = new Headers(); + $headers->setRaw('Content-Type: text/html'); + + $actual = $headers->get('Content-Type: text/html'); + + $I->assertEmpty($actual); + } + + /** + * Tests toArray in response headers + * + * @author Phalcon Team + * @since 2014-10-05 + */ + public function testHttpResponseHeadersToArray(UnitTester $I) + { + $headers = new Headers(); + $headers->set('Content-Type', 'text/html'); + + $expected = $headers->toArray(); + $actual = ['Content-Type' => 'text/html']; + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Http/Response/HeadersTest.php b/tests/unit/Http/Response/HeadersTest.php deleted file mode 100644 index f3bc0d5328b..00000000000 --- a/tests/unit/Http/Response/HeadersTest.php +++ /dev/null @@ -1,245 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Http\Response - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class HeadersTest extends HttpBase -{ - /** - * Tests the instance of the object - * - * @author Nikolaos Dimopoulos - * @since 2014-10-05 - */ - public function testHttpResponseHeadersInstanceOf() - { - $this->specify( - "The new object is not the correct class", - function () { - $responseHeaders = new Headers(); - - expect($responseHeaders instanceof Headers)->true(); - } - ); - } - - /** - * Tests the get and set of the response headers - * - * @author Nikolaos Dimopoulos - * @since 2014-10-05 - */ - public function testHttpResponseHeadersGetSet() - { - $this->specify( - "Setting and Getting Response Headers is not correct", - function () { - $responseHeaders = new Headers(); - $responseHeaders->set('Content-Type', 'text/html'); - - $expected = 'text/html'; - $actual = $responseHeaders->get('Content-Type'); - - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests the has of the response headers - * - * @author Nikolaos Dimopoulos - * @since 2018-11-02 - */ - public function testHttpResponseHeadersHas() - { - $this->specify( - "Has Response Headers is not correct", - function () { - $responseHeaders = new Headers(); - $responseHeaders->set('Content-Type', 'text/html'); - - expect($responseHeaders->has('Content-Type'))->true(); - expect($responseHeaders->has('unknown-header'))->false(); - } - ); - } - - /** - * Tests the set of the response status headers - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/12895 - * @author Serghei Iakovlev - * @since 2017-06-17 - */ - public function shouldSetResponseStatusHeader() - { - $this->specify( - 'Setting Response Headers is not correct', - function ($code) { - $responseHeaders = new Headers(); - $responseHeaders->set('Status', $code); - - $headers = $this->tester->getProtectedProperty($responseHeaders, '_headers'); - - expect($headers)->count(1); - expect($headers)->hasKey('Status'); - expect($headers['Status'])->equals($code); - }, - [ - 'examples' => [ - ['Unprocessable Entity' => 422], - ['Moved Permanently' => 301], - ['OK' => 200], - ['Service Unavailable' => 503], - ['Not Found' => 404], - ['Created' => 201], - ['Continue' => 100], - ], - ] - ); - } - - /** - * Tests the get of the response status headers - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/12895 - * @author Serghei Iakovlev - * @since 2017-06-17 - */ - public function shouldGetResponseStatusHeader() - { - $this->specify( - 'Setting Response Headers is not correct', - function ($code) { - $responseHeaders = new Headers(); - $this->tester->setProtectedProperty($responseHeaders, '_headers', ['Status' => $code]); - - $responseHeaders->get('Status'); - - expect($responseHeaders->get('Status'))->equals($code); - }, - [ - 'examples' => [ - ['Unprocessable Entity' => 422], - ['Moved Permanently' => 301], - ['OK' => 200], - ['Service Unavailable' => 503], - ['Not Found' => 404], - ['Created' => 201], - ['Continue' => 100], - ], - ] - ); - } - - /** - * Tests resetting the response headers - * - * @author Nikolaos Dimopoulos - * @since 2014-10-05 - */ - public function testHttpResponseHeadersReset() - { - $this->specify( - "Resetting Response Headers is not correct", - function () { - $responseHeaders = new Headers(); - $responseHeaders->set('Content-Type', 'text/html'); - - $responseHeaders->reset(); - - $actual = $responseHeaders->get('Content-Type'); - - expect($actual)->isEmpty(); - } - ); - } - - /** - * Tests removing a response header - * - * @author Nikolaos Dimopoulos - * @since 2014-10-05 - */ - public function testHttpResponseHeadersRemove() - { - $this->specify( - "Removing Response Header is not correct", - function () { - $responseHeaders = new Headers(); - $responseHeaders->set('Content-Type', 'text/html'); - - $responseHeaders->remove('Content-Type'); - - $actual = $responseHeaders->get('Content-Type'); - - expect($actual)->isEmpty(); - } - ); - } - - /** - * Tests setting a raw response header - * - * @author Nikolaos Dimopoulos - * @since 2014-10-05 - */ - public function testHttpResponseHeadersRaw() - { - $this->specify( - "Setting a raw Response Header is not correct", - function () { - $responseHeaders = new Headers(); - $responseHeaders->setRaw('Content-Type: text/html'); - - $actual = $responseHeaders->get('Content-Type: text/html'); - - expect($actual)->isEmpty(); - } - ); - } - - /** - * Tests toArray in response headers - * - * @author Nikolaos Dimopoulos - * @since 2014-10-05 - */ - public function testHttpResponseHeadersToArray() - { - $this->specify( - "toArray in Response Headers is not correct", - function () { - $responseHeaders = new Headers(); - $responseHeaders->set('Content-Type', 'text/html'); - - $expected = $responseHeaders->toArray(); - $actual = ['Content-Type' => 'text/html']; - - expect($actual)->equals($expected); - } - ); - } -} diff --git a/tests/unit/Http/Response/IsSentCest.php b/tests/unit/Http/Response/IsSentCest.php new file mode 100644 index 00000000000..97a97226d3d --- /dev/null +++ b/tests/unit/Http/Response/IsSentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class IsSentCest +{ + /** + * Tests Phalcon\Http\Response :: isSent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseIsSent(UnitTester $I) + { + $I->wantToTest("Http\Response - isSent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/RedirectCest.php b/tests/unit/Http/Response/RedirectCest.php new file mode 100644 index 00000000000..0b0495dd336 --- /dev/null +++ b/tests/unit/Http/Response/RedirectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class RedirectCest +{ + /** + * Tests Phalcon\Http\Response :: redirect() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseRedirect(UnitTester $I) + { + $I->wantToTest("Http\Response - redirect()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/RemoveHeaderCest.php b/tests/unit/Http/Response/RemoveHeaderCest.php new file mode 100644 index 00000000000..553c3c40704 --- /dev/null +++ b/tests/unit/Http/Response/RemoveHeaderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class RemoveHeaderCest +{ + /** + * Tests Phalcon\Http\Response :: removeHeader() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseRemoveHeader(UnitTester $I) + { + $I->wantToTest("Http\Response - removeHeader()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/ResetHeadersCest.php b/tests/unit/Http/Response/ResetHeadersCest.php new file mode 100644 index 00000000000..8703c9425f2 --- /dev/null +++ b/tests/unit/Http/Response/ResetHeadersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class ResetHeadersCest +{ + /** + * Tests Phalcon\Http\Response :: resetHeaders() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseResetHeaders(UnitTester $I) + { + $I->wantToTest("Http\Response - resetHeaders()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/ResponseCest.php b/tests/unit/Http/Response/ResponseCest.php new file mode 100644 index 00000000000..85bda2bb7d9 --- /dev/null +++ b/tests/unit/Http/Response/ResponseCest.php @@ -0,0 +1,536 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http; + +use Phalcon\Http\Response; +use Phalcon\Http\Response\Headers; +use Phalcon\Test\Unit\Http\Helper\HttpBase; +use UnitTester; + +class ResponseCest extends HttpBase +{ + /** + * Tests the instance of the object + * + * @author Phalcon Team + * @since 2014-10-05 + */ + public function testHttpResponseInstanceOf(UnitTester $I) + { + $response = $this->getResponseObject(); + + $class = Response::class; + $I->assertInstanceOf($class, $response); + } + + /** + * Tests the setHeader + * + * @author Phalcon Team + * @since 2014-10-08 + */ + public function testHttpResponseSetHeader(UnitTester $I) + { + $response = $this->getResponseObject(); + $response->resetHeaders(); + $response->setHeader('Content-Type', 'text/html'); + $expected = Headers::__set_state( + [ + '_headers' => ['Content-Type' => 'text/html'], + ] + ); + $actual = $response->getHeaders(); + $I->assertEquals($expected, $actual); + + $response->setHeader('Content-Length', '1234'); + $expected = Headers::__set_state( + [ + '_headers' => [ + 'Content-Type' => 'text/html', + 'Content-Length' => '1234', + ], + ] + ); + $actual = $response->getHeaders(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests the hasHeader + * + * @author Phalcon Team + * @since 2014-10-08 + */ + public function testHttpResponseHasHeader(UnitTester $I) + { + $response = $this->getResponseObject(); + $response->resetHeaders(); + $response->setHeader('Content-Type', 'text/html'); + + $actual = $response->hasHeader('Content-Type'); + $I->assertTrue($actual); + + $actual = $response->hasHeader('some-unknown-header'); + $I->assertFalse($actual); + } + + /** + * Tests the setStatusCode + * + * @author Phalcon Team + * @since 2014-10-08 + */ + public function testHttpResponseSetStatusCode(UnitTester $I) + { + $response = $this->getResponseObject(); + $response->resetHeaders(); + $response->setStatusCode(404, "Not Found"); + $expected = Headers::__set_state( + [ + '_headers' => [ + 'HTTP/1.1 404 Not Found' => '', + 'Status' => '404 Not Found', + ], + ] + ); + $actual = $response->getHeaders(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests the Multiple Status Codes + * + * @issue https://github.com/phalcon/cphalcon/issues/1892 + * @author Kamil Skowron + * @since 2014-05-28 + */ + public function testMultipleHttpHeaders(UnitTester $I) + { + $response = $this->getResponseObject(); + $response->resetHeaders(); + $response->setStatusCode(200, 'OK'); + $response->setStatusCode(404, 'Not Found'); + $response->setStatusCode(409, 'Conflict'); + + $expected = Headers::__set_state( + [ + '_headers' => [ + 'HTTP/1.1 409 Conflict' => '', + 'Status' => '409 Conflict', + ], + ] + ); + $actual = $response->getHeaders(); + $I->assertEquals($expected, $actual); + } + + public function testSetStatusCodeDefaultMessage(UnitTester $I) + { + $response = $this->getResponseObject(); + $response->resetHeaders(); + + $response->setStatusCode(103); + $expected = Headers::__set_state( + [ + '_headers' => [ + 'HTTP/1.1 103 Early Hints' => '', + 'Status' => '103 Early Hints', + ], + ] + ); + $actual = $response->getHeaders(); + $I->assertEquals($expected, $actual); + + $response->setStatusCode(200); + $expected = Headers::__set_state( + [ + '_headers' => [ + 'HTTP/1.1 200 OK' => '', + 'Status' => '200 OK', + ], + ] + ); + $actual = $response->getHeaders(); + $I->assertEquals($expected, $actual); + + $response->setStatusCode(418); + $expected = Headers::__set_state( + [ + '_headers' => [ + "HTTP/1.1 418 I'm a teapot" => '', + 'Status' => "418 I'm a teapot", + ], + ] + ); + $actual = $response->getHeaders(); + $I->assertEquals($expected, $actual); + + $response->setStatusCode(418, 'My own message'); + $expected = Headers::__set_state( + [ + '_headers' => [ + "HTTP/1.1 418 My own message" => '', + 'Status' => "418 My own message", + ], + ] + ); + $actual = $response->getHeaders(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests the setRawHeader + * + * @author Phalcon Team + * @since 2014-10-08 + */ + public function testHttpResponseSetRawHeader(UnitTester $I) + { + $response = $this->getResponseObject(); + $response->resetHeaders(); + $response->setRawHeader("HTTP/1.1 404 Not Found"); + + $expected = Headers::__set_state( + [ + '_headers' => ['HTTP/1.1 404 Not Found' => ''], + ] + ); + $actual = $response->getHeaders(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests the setHeader + * + * @author Phalcon Team + * @since 2014-10-08 + */ + public function testHttpResponseSetHeaderContentType(UnitTester $I) + { + $response = $this->getResponseObject(); + $response->resetHeaders(); + $response->setHeader('Content-Type', 'text/html'); + $response->setHeader('Content-Length', '1234'); + $headers = $response->getHeaders()->toArray(); + + $I->assertArrayHasKey('Content-Type', $headers); + $I->assertArrayHasKey('Content-Length', $headers); + + $expected = 'text/html'; + $actual = $headers['Content-Type']; + $I->assertEquals($expected, $actual); + + $expected = '1234'; + $actual = $headers['Content-Length']; + $I->assertEquals($expected, $actual); + } + + /** + * Tests the setContentType + * + * @author Phalcon Team + * @since 2014-10-08 + */ + public function testHttpResponseSetContentType(UnitTester $I) + { + $response = $this->getResponseObject(); + $response->resetHeaders(); + $response->setContentType('application/json'); + + $expected = Headers::__set_state( + [ + '_headers' => ['Content-Type' => 'application/json'], + ] + ); + $actual = $response->getHeaders(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests the setContentLength + * + * @author Zamrony P. Juhara + * @since 2016-07-18 + */ + public function testHttpResponseSetContentLength(UnitTester $I) + { + $response = $this->getResponseObject(); + $response->resetHeaders(); + $response->setContentLength(100); + + $expected = Headers::__set_state( + [ + '_headers' => ['Content-Length' => 100], + ] + ); + $actual = $response->getHeaders(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests the setContentType with charset + * + * @author Phalcon Team + * @since 2014-10-08 + */ + public function testHttpResponseSetContentTypeWithCharset(UnitTester $I) + { + $response = $this->getResponseObject(); + $response->resetHeaders(); + $response->setContentType('application/json', 'utf-8'); + + $expected = Headers::__set_state( + [ + '_headers' => [ + 'Content-Type' => 'application/json; charset=utf-8', + ], + ] + ); + $actual = $response->getHeaders(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests setNotModified + * + * @author Phalcon Team + * @since 2014-10-08 + */ + public function testHttpResponseSetNotModified(UnitTester $I) + { + $response = $this->getResponseObject(); + $response->resetHeaders(); + $response->setNotModified(); + + $expected = Headers::__set_state( + [ + '_headers' => [ + 'HTTP/1.1 304 Not modified' => false, + 'Status' => '304 Not modified', + ], + ] + ); + $actual = $response->getHeaders(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests redirect locally + * + * @author Phalcon Team + * @since 2014-10-08 + */ + public function testHttpResponseRedirectLocalUrl(UnitTester $I) + { + $response = $this->getResponseObject(); + $response->resetHeaders(); + $response->redirect("some/local/uri"); + + $expected = Headers::__set_state( + [ + '_headers' => [ + 'Status' => '302 Found', + 'Location' => '/some/local/uri', + 'HTTP/1.1 302 Found' => null, + ], + ] + ); + $actual = $response->getHeaders(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests redirect remotely 302 + * + * @author Phalcon Team + * @since 2014-10-08 + */ + public function testHttpResponseRedirectRemoteUrl302(UnitTester $I) + { + $response = $this->getResponseObject(); + $response->resetHeaders(); + $response->redirect("http://google.com", true); + + $expected = Headers::__set_state( + [ + '_headers' => [ + 'Status' => '302 Found', + 'Location' => 'http://google.com', + 'HTTP/1.1 302 Found' => null, + ], + ] + ); + $actual = $response->getHeaders(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests redirect local with non standard code + * + * @issue https://github.com/phalcon/cphalcon/issues/11324 + * @author Phalcon Team + * @since 2016-01-19 + */ + public function testHttpResponseRedirectLocalUrlWithNonStandardCode(UnitTester $I) + { + $response = $this->getResponseObject(); + $response->resetHeaders(); + $response->redirect('new/place/', false, 309); + + $expected = Headers::__set_state( + [ + '_headers' => [ + 'Status' => '302 Found', + 'Location' => '/new/place/', + 'HTTP/1.1 302 Found' => null, + ], + ] + ); + $actual = $response->getHeaders(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests redirect remotely 301 + * + * @issue https://github.com/phalcon/cphalcon/issues/1182 + * @author Phalcon Team + * @since 2014-10-08 + */ + public function testHttpResponseRedirectRemoteUrl301(UnitTester $I) + { + $response = $this->getResponseObject(); + $response->resetHeaders(); + $response->redirect("http://google.com", true, 301); + + $expected = Headers::__set_state( + [ + '_headers' => [ + 'Status' => '301 Moved Permanently', + 'Location' => 'http://google.com', + 'HTTP/1.1 301 Moved Permanently' => null, + ], + ] + ); + $actual = $response->getHeaders(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests setContent + * + * @author Phalcon Team + * @since 2014-10-08 + */ + public function testHttpResponseSetContent(UnitTester $I) + { + $response = $this->getResponseObject(); + $response->setContent('

Hello'); + + $expected = '

Hello'; + $actual = $response->getContent(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests appendContent + * + * @author Phalcon Team + * @since 2014-10-08 + */ + public function testHttpResponseAppendContent(UnitTester $I) + { + $response = $this->getResponseObject(); + $response->setContent('

Hello'); + $response->appendContent('

'); + + $expected = '

Hello

'; + $actual = $response->getContent(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests setFileToSend + * + * @author Phalcon Team + * @since 2014-10-08 + */ + public function testHttpResponseSetFileToSend(UnitTester $I) + { + $response = $this->getResponseObject(); + + $filename = __FILE__; + $response->setFileToSend($filename); + + ob_start(); + $response->send(); + + $expected = file_get_contents($filename); + $actual = ob_get_clean(); + $I->assertEquals($expected, $actual); + + $actual = $response->isSent(); + $I->assertTrue($actual); + } + + /** + * Tests setCache + * + * @author Sid Roberts + * @since 2015-07-14 + */ + public function testHttpResponseSetCache(UnitTester $I) + { + $response = $this->getResponseObject(); + + $expiry = new \DateTime(); + $expiry->setTimezone(new \DateTimeZone("UTC")); + $expiry->modify("+60 minutes"); + + $response->setCache(60); + + $expected = Headers::__set_state( + [ + '_headers' => [ + "Expires" => $expiry->format("D, d M Y H:i:s") . " GMT", + "Cache-Control" => "max-age=3600", + ], + ] + ); + $actual = $response->getHeaders(); + $I->assertEquals($expected, $actual); + } + + /** + * Test the removeHeader + * + * @author Mohamad Rostami + */ + public function testHttpResponseRemoveHeaderContentType(UnitTester $I) + { + $response = $this->getResponseObject(); + $response->resetHeaders(); + $response->setHeader('Content-Type', 'text/html'); + $headers = $response->getHeaders()->toArray(); + + $I->assertArrayHasKey('Content-Type', $headers); + + $expected = 'text/html'; + $actual = $headers['Content-Type']; + $I->assertEquals($expected, $actual); + + $response->removeHeader('Content-Type'); + + $headers = $response->getHeaders()->toArray(); + $I->assertArrayNotHasKey('Content-Type', $headers); + } +} diff --git a/tests/unit/Http/Response/SendCest.php b/tests/unit/Http/Response/SendCest.php new file mode 100644 index 00000000000..c373aaf8eba --- /dev/null +++ b/tests/unit/Http/Response/SendCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class SendCest +{ + /** + * Tests Phalcon\Http\Response :: send() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseSend(UnitTester $I) + { + $I->wantToTest("Http\Response - send()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/SendCookiesCest.php b/tests/unit/Http/Response/SendCookiesCest.php new file mode 100644 index 00000000000..bd50abeb892 --- /dev/null +++ b/tests/unit/Http/Response/SendCookiesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class SendCookiesCest +{ + /** + * Tests Phalcon\Http\Response :: sendCookies() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseSendCookies(UnitTester $I) + { + $I->wantToTest("Http\Response - sendCookies()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/SendHeadersCest.php b/tests/unit/Http/Response/SendHeadersCest.php new file mode 100644 index 00000000000..6b15b49dfcb --- /dev/null +++ b/tests/unit/Http/Response/SendHeadersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class SendHeadersCest +{ + /** + * Tests Phalcon\Http\Response :: sendHeaders() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseSendHeaders(UnitTester $I) + { + $I->wantToTest("Http\Response - sendHeaders()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/SetCacheCest.php b/tests/unit/Http/Response/SetCacheCest.php new file mode 100644 index 00000000000..74dd5038c01 --- /dev/null +++ b/tests/unit/Http/Response/SetCacheCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class SetCacheCest +{ + /** + * Tests Phalcon\Http\Response :: setCache() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseSetCache(UnitTester $I) + { + $I->wantToTest("Http\Response - setCache()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/SetContentCest.php b/tests/unit/Http/Response/SetContentCest.php new file mode 100644 index 00000000000..380c465a9b6 --- /dev/null +++ b/tests/unit/Http/Response/SetContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class SetContentCest +{ + /** + * Tests Phalcon\Http\Response :: setContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseSetContent(UnitTester $I) + { + $I->wantToTest("Http\Response - setContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/SetContentLengthCest.php b/tests/unit/Http/Response/SetContentLengthCest.php new file mode 100644 index 00000000000..97157a70442 --- /dev/null +++ b/tests/unit/Http/Response/SetContentLengthCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class SetContentLengthCest +{ + /** + * Tests Phalcon\Http\Response :: setContentLength() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseSetContentLength(UnitTester $I) + { + $I->wantToTest("Http\Response - setContentLength()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/SetContentTypeCest.php b/tests/unit/Http/Response/SetContentTypeCest.php new file mode 100644 index 00000000000..c877803554c --- /dev/null +++ b/tests/unit/Http/Response/SetContentTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class SetContentTypeCest +{ + /** + * Tests Phalcon\Http\Response :: setContentType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseSetContentType(UnitTester $I) + { + $I->wantToTest("Http\Response - setContentType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/SetCookiesCest.php b/tests/unit/Http/Response/SetCookiesCest.php new file mode 100644 index 00000000000..472b1b881df --- /dev/null +++ b/tests/unit/Http/Response/SetCookiesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class SetCookiesCest +{ + /** + * Tests Phalcon\Http\Response :: setCookies() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseSetCookies(UnitTester $I) + { + $I->wantToTest("Http\Response - setCookies()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/SetDICest.php b/tests/unit/Http/Response/SetDICest.php new file mode 100644 index 00000000000..61754ff8708 --- /dev/null +++ b/tests/unit/Http/Response/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Http\Response :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseSetDI(UnitTester $I) + { + $I->wantToTest("Http\Response - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/SetEtagCest.php b/tests/unit/Http/Response/SetEtagCest.php new file mode 100644 index 00000000000..f712e6af22e --- /dev/null +++ b/tests/unit/Http/Response/SetEtagCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class SetEtagCest +{ + /** + * Tests Phalcon\Http\Response :: setEtag() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseSetEtag(UnitTester $I) + { + $I->wantToTest("Http\Response - setEtag()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/SetExpiresCest.php b/tests/unit/Http/Response/SetExpiresCest.php new file mode 100644 index 00000000000..7bb43b13503 --- /dev/null +++ b/tests/unit/Http/Response/SetExpiresCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class SetExpiresCest +{ + /** + * Tests Phalcon\Http\Response :: setExpires() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseSetExpires(UnitTester $I) + { + $I->wantToTest("Http\Response - setExpires()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/SetFileToSendCest.php b/tests/unit/Http/Response/SetFileToSendCest.php new file mode 100644 index 00000000000..1e531c82fb0 --- /dev/null +++ b/tests/unit/Http/Response/SetFileToSendCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class SetFileToSendCest +{ + /** + * Tests Phalcon\Http\Response :: setFileToSend() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseSetFileToSend(UnitTester $I) + { + $I->wantToTest("Http\Response - setFileToSend()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/SetHeaderCest.php b/tests/unit/Http/Response/SetHeaderCest.php new file mode 100644 index 00000000000..25c0ce10e5a --- /dev/null +++ b/tests/unit/Http/Response/SetHeaderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class SetHeaderCest +{ + /** + * Tests Phalcon\Http\Response :: setHeader() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseSetHeader(UnitTester $I) + { + $I->wantToTest("Http\Response - setHeader()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/SetHeadersCest.php b/tests/unit/Http/Response/SetHeadersCest.php new file mode 100644 index 00000000000..20af0866e8b --- /dev/null +++ b/tests/unit/Http/Response/SetHeadersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class SetHeadersCest +{ + /** + * Tests Phalcon\Http\Response :: setHeaders() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseSetHeaders(UnitTester $I) + { + $I->wantToTest("Http\Response - setHeaders()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/SetJsonContentCest.php b/tests/unit/Http/Response/SetJsonContentCest.php new file mode 100644 index 00000000000..b11dd617387 --- /dev/null +++ b/tests/unit/Http/Response/SetJsonContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class SetJsonContentCest +{ + /** + * Tests Phalcon\Http\Response :: setJsonContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseSetJsonContent(UnitTester $I) + { + $I->wantToTest("Http\Response - setJsonContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/SetLastModifiedCest.php b/tests/unit/Http/Response/SetLastModifiedCest.php new file mode 100644 index 00000000000..cc76e7b12c0 --- /dev/null +++ b/tests/unit/Http/Response/SetLastModifiedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class SetLastModifiedCest +{ + /** + * Tests Phalcon\Http\Response :: setLastModified() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseSetLastModified(UnitTester $I) + { + $I->wantToTest("Http\Response - setLastModified()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/SetNotModifiedCest.php b/tests/unit/Http/Response/SetNotModifiedCest.php new file mode 100644 index 00000000000..362cef52271 --- /dev/null +++ b/tests/unit/Http/Response/SetNotModifiedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class SetNotModifiedCest +{ + /** + * Tests Phalcon\Http\Response :: setNotModified() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseSetNotModified(UnitTester $I) + { + $I->wantToTest("Http\Response - setNotModified()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/SetRawHeaderCest.php b/tests/unit/Http/Response/SetRawHeaderCest.php new file mode 100644 index 00000000000..396783bb66b --- /dev/null +++ b/tests/unit/Http/Response/SetRawHeaderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class SetRawHeaderCest +{ + /** + * Tests Phalcon\Http\Response :: setRawHeader() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseSetRawHeader(UnitTester $I) + { + $I->wantToTest("Http\Response - setRawHeader()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/Response/SetStatusCodeCest.php b/tests/unit/Http/Response/SetStatusCodeCest.php new file mode 100644 index 00000000000..8405e13a039 --- /dev/null +++ b/tests/unit/Http/Response/SetStatusCodeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Http\Response; + +use UnitTester; + +class SetStatusCodeCest +{ + /** + * Tests Phalcon\Http\Response :: setStatusCode() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function httpResponseSetStatusCode(UnitTester $I) + { + $I->wantToTest("Http\Response - setStatusCode()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Http/ResponseTest.php b/tests/unit/Http/ResponseTest.php deleted file mode 100644 index 94ad9fc2bff..00000000000 --- a/tests/unit/Http/ResponseTest.php +++ /dev/null @@ -1,617 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @author Zamrony P. Juhara - * @package Phalcon\Test\Unit\Http - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ResponseTest extends HttpBase -{ - /** - * Tests the instance of the object - * - * @author Nikolaos Dimopoulos - * @since 2014-10-05 - */ - public function testHttpResponseInstanceOf() - { - $this->specify( - "The new object is not the correct class", - function () { - $response = $this->getResponseObject(); - - expect($response instanceof Response)->true(); - } - ); - } - - /** - * Tests the setHeader - * - * @author Nikolaos Dimopoulos - * @since 2014-10-08 - */ - public function testHttpResponseSetHeader() - { - $this->specify( - "setHeader is not setting the headers properly", - function () { - $response = $this->getResponseObject(); - $response->resetHeaders(); - $response->setHeader('Content-Type', 'text/html'); - $expected = Headers::__set_state( - [ - '_headers' => ['Content-Type' => 'text/html'] - ] - ); - expect($response->getHeaders())->equals($expected); - - $response->setHeader('Content-Length', '1234'); - $expected = Headers::__set_state( - [ - '_headers' => [ - 'Content-Type' => 'text/html', - 'Content-Length' => '1234' - ] - ] - ); - expect($response->getHeaders())->equals($expected); - } - ); - } - - /** - * Tests the hasHeader - * - * @author Nikolaos Dimopoulos - * @since 2014-10-08 - */ - public function testHttpResponseHasHeader() - { - $this->specify( - "hasHeader is not returning the correct value", - function () { - $response = $this->getResponseObject(); - $response->resetHeaders(); - $response->setHeader('Content-Type', 'text/html'); - - expect($response->hasHeader('Content-Type'))->true(); - expect($response->hasHeader('some-unknown-header'))->false(); - } - ); - } - - /** - * Tests the setStatusCode - * - * @author Nikolaos Dimopoulos - * @since 2014-10-08 - */ - public function testHttpResponseSetStatusCode() - { - $this->specify( - "setStatusCode is not setting the header status properly", - function () { - $response = $this->getResponseObject(); - $response->resetHeaders(); - $response->setStatusCode(404, "Not Found"); - $expected = Headers::__set_state( - [ - '_headers' => [ - 'HTTP/1.1 404 Not Found' => '', - 'Status' => '404 Not Found' - ] - ] - ); - expect($response->getHeaders())->equals($expected); - } - ); - } - - /** - * Tests the Multiple Status Codes - * - * @issue https://github.com/phalcon/cphalcon/issues/1892 - * @author Kamil Skowron - * @since 2014-05-28 - */ - public function testMultipleHttpHeaders() - { - $this->specify( - "setStatusCode is not setting the header status properly", - function () { - $response = $this->getResponseObject(); - $response->resetHeaders(); - $response->setStatusCode(200, 'OK'); - $response->setStatusCode(404, 'Not Found'); - $response->setStatusCode(409, 'Conflict'); - - $expected = Headers::__set_state( - [ - '_headers' => [ - 'HTTP/1.1 409 Conflict' => '', - 'Status' => '409 Conflict' - ] - ] - ); - - expect($response->getHeaders())->equals($expected); - } - ); - } - - public function testSetStatusCodeDefaultMessage() - { - $this->specify( - "setStatusCode is not setting the header status properly", - function () { - $response = $this->getResponseObject(); - $response->resetHeaders(); - - $response->setStatusCode(103); - $expected = Headers::__set_state( - [ - '_headers' => [ - 'HTTP/1.1 103 Early Hints' => '', - 'Status' => '103 Early Hints' - ] - ] - ); - - expect($response->getHeaders())->equals($expected); - - $response->setStatusCode(200); - $expected = Headers::__set_state( - [ - '_headers' => [ - 'HTTP/1.1 200 OK' => '', - 'Status' => '200 OK' - ] - ] - ); - - expect($response->getHeaders())->equals($expected); - - $response->setStatusCode(418); - $expected = Headers::__set_state( - [ - '_headers' => [ - "HTTP/1.1 418 I'm a teapot" => '', - 'Status' => "418 I'm a teapot" - ] - ] - ); - - expect($response->getHeaders())->equals($expected); - - $response->setStatusCode(418, 'My own message'); - $expected = Headers::__set_state( - [ - '_headers' => [ - "HTTP/1.1 418 My own message" => '', - 'Status' => "418 My own message" - ] - ] - ); - - expect($response->getHeaders())->equals($expected); - } - ); - } - - /** - * Tests the setRawHeader - * - * @author Nikolaos Dimopoulos - * @since 2014-10-08 - */ - public function testHttpResponseSetRawHeader() - { - $this->specify( - "setRawHeader is not setting the raw header properly", - function () { - $response = $this->getResponseObject(); - $response->resetHeaders(); - $response->setRawHeader("HTTP/1.1 404 Not Found"); - - $expected = Headers::__set_state( - [ - '_headers' => ['HTTP/1.1 404 Not Found' => ''] - ] - ); - expect($response->getHeaders())->equals($expected); - } - ); - } - - /** - * Tests the setHeader - * - * @author Nikolaos Dimopoulos - * @since 2014-10-08 - */ - public function testHttpResponseSetHeaderContentType() - { - $this->specify( - "setRawHeader is not setting the raw header properly", - function () { - $response = $this->getResponseObject(); - $response->resetHeaders(); - $response->setHeader('Content-Type', 'text/html'); - $response->setHeader('Content-Length', '1234'); - $headers = $response->getHeaders()->toArray(); - - $this->assertArrayHasKey('Content-Type', $headers); - $this->assertArrayHasKey('Content-Length', $headers); - - expect($headers['Content-Type'])->equals('text/html'); - expect($headers['Content-Length'])->equals('1234'); - } - ); - } - - /** - * Tests the setContentType - * - * @author Nikolaos Dimopoulos - * @since 2014-10-08 - */ - public function testHttpResponseSetContentType() - { - $this->specify( - "setContentType is not setting the header properly", - function () { - $response = $this->getResponseObject(); - $response->resetHeaders(); - $response->setContentType('application/json'); - - $expected = Headers::__set_state( - [ - '_headers' => ['Content-Type' => 'application/json'] - ] - ); - expect($response->getHeaders())->equals($expected); - } - ); - } - - /** - * Tests the setContentLength - * - * @author Zamrony P. Juhara - * @since 2016-07-18 - */ - public function testHttpResponseSetContentLength() - { - $this->specify( - "setContentLength is not setting the header properly", - function () { - $response = $this->getResponseObject(); - $response->resetHeaders(); - $response->setContentLength(100); - - $expected = Headers::__set_state( - [ - '_headers' => ['Content-Length' => 100] - ] - ); - expect($response->getHeaders())->equals($expected); - } - ); - } - - /** - * Tests the setContentType with charset - * - * @author Nikolaos Dimopoulos - * @since 2014-10-08 - */ - public function testHttpResponseSetContentTypeWithCharset() - { - $this->specify( - "setContentType with charset is not setting the header properly", - function () { - $response = $this->getResponseObject(); - $response->resetHeaders(); - $response->setContentType('application/json', 'utf-8'); - - $expected = Headers::__set_state( - [ - '_headers' => [ - 'Content-Type' => 'application/json; charset=utf-8' - ] - ] - ); - expect($response->getHeaders())->equals($expected); - } - ); - } - - /** - * Tests setNotModified - * - * @author Nikolaos Dimopoulos - * @since 2014-10-08 - */ - public function testHttpResponseSetNotModified() - { - $this->specify( - "setNotModified is not setting the header properly", - function () { - $response = $this->getResponseObject(); - $response->resetHeaders(); - $response->setNotModified(); - - $expected = Headers::__set_state( - [ - '_headers' => [ - 'HTTP/1.1 304 Not modified' => false, - 'Status' => '304 Not modified' - ] - ] - ); - expect($response->getHeaders())->equals($expected); - } - ); - } - - /** - * Tests redirect locally - * - * @author Nikolaos Dimopoulos - * @since 2014-10-08 - */ - public function testHttpResponseRedirectLocalUrl() - { - $this->specify( - "redirect is not redirecting local properly", - function () { - $response = $this->getResponseObject(); - $response->resetHeaders(); - $response->redirect("some/local/uri"); - - $expected = Headers::__set_state( - [ - '_headers' => [ - 'Status' => '302 Found', - 'Location' => '/some/local/uri', - 'HTTP/1.1 302 Found' => null, - ] - ] - ); - expect($response->getHeaders())->equals($expected); - } - ); - } - - /** - * Tests redirect remotely 302 - * - * @author Nikolaos Dimopoulos - * @since 2014-10-08 - */ - public function testHttpResponseRedirectRemoteUrl302() - { - $this->specify( - "redirect is not redirecting remote 302 properly", - function () { - $response = $this->getResponseObject(); - $response->resetHeaders(); - $response->redirect("http://google.com", true); - - $expected = Headers::__set_state( - [ - '_headers' => [ - 'Status' => '302 Found', - 'Location' => 'http://google.com', - 'HTTP/1.1 302 Found' => null, - ] - ] - ); - expect($response->getHeaders())->equals($expected); - } - ); - } - - /** - * Tests redirect local with non standard code - * - * @issue https://github.com/phalcon/cphalcon/issues/11324 - * @author Serghei Iakovlev - * @since 2016-01-19 - */ - public function testHttpResponseRedirectLocalUrlWithNonStandardCode() - { - $this->specify( - "redirect is not redirecting local with non standard code properly", - function () { - $response = $this->getResponseObject(); - $response->resetHeaders(); - $response->redirect('new/place/', false, 309); - - $expected = Headers::__set_state( - [ - '_headers' => [ - 'Status' => '302 Found', - 'Location' => '/new/place/', - 'HTTP/1.1 302 Found' => null, - ] - ] - ); - expect($response->getHeaders())->equals($expected); - } - ); - } - - /** - * Tests redirect remotely 301 - * - * @issue https://github.com/phalcon/cphalcon/issues/1182 - * @author Nikolaos Dimopoulos - * @since 2014-10-08 - */ - public function testHttpResponseRedirectRemoteUrl301() - { - $this->specify( - "redirect is not redirecting remote 301 properly", - function () { - $response = $this->getResponseObject(); - $response->resetHeaders(); - $response->redirect("http://google.com", true, 301); - - $expected = Headers::__set_state( - [ - '_headers' => [ - 'Status' => '301 Moved Permanently', - 'Location' => 'http://google.com', - 'HTTP/1.1 301 Moved Permanently' => null, - ] - ] - ); - expect($response->getHeaders())->equals($expected); - } - ); - } - - /** - * Tests setContent - * - * @author Nikolaos Dimopoulos - * @since 2014-10-08 - */ - public function testHttpResponseSetContent() - { - $this->specify( - "setContent is not producing the correct results", - function () { - $response = $this->getResponseObject(); - $response->setContent('

Hello'); - - expect($response->getContent())->equals('

Hello'); - } - ); - } - - /** - * Tests appendContent - * - * @author Nikolaos Dimopoulos - * @since 2014-10-08 - */ - public function testHttpResponseAppendContent() - { - $this->specify( - "appendContent is not producing the correct results", - function () { - $response = $this->getResponseObject(); - $response->setContent('

Hello'); - $response->appendContent('

'); - - expect($response->getContent())->equals('

Hello

'); - } - ); - } - - /** - * Tests setFileToSend - * - * @author Nikolaos Dimopoulos - * @since 2014-10-08 - */ - public function testHttpResponseSetFileToSend() - { - $this->specify( - "setFileToSend is not producing the correct results", - function () { - $response = $this->getResponseObject(); - - $filename = __FILE__; - $response->setFileToSend($filename); - - ob_start(); - $response->send(); - $actual = ob_get_clean(); - - expect($actual)->equals(file_get_contents($filename)); - expect($response->isSent())->true(); - } - ); - } - - /** - * Tests setCache - * - * @author Sid Roberts - * @since 2015-07-14 - */ - public function testHttpResponseSetCache() - { - $this->specify( - "setCache is not producing the correct results", - function () { - $response = $this->getResponseObject(); - - $expiry = new \DateTime(); - $expiry->setTimezone(new \DateTimeZone("UTC")); - $expiry->modify("+60 minutes"); - - $response->setCache(60); - - $expected = Headers::__set_state( - [ - '_headers' => [ - "Expires" => $expiry->format("D, d M Y H:i:s") . " GMT", - "Cache-Control" => "max-age=3600" - ] - ] - ); - expect($response->getHeaders())->equals($expected); - } - ); - } - - /** - * Test the removeHeader - * - * @author Mohamad Rostami - */ - public function testHttpResponseRemoveHeaderContentType() - { - $this->specify( - "removeHeader is not removing the header properly", - function () { - $response = $this->getResponseObject(); - $response->resetHeaders(); - $response->setHeader('Content-Type', 'text/html'); - $headers = $response->getHeaders()->toArray(); - - $this->assertArrayHasKey('Content-Type', $headers); - expect($headers['Content-Type'])->equals('text/html'); - - $response->removeHeader('Content-Type'); - - $headers = $response->getHeaders()->toArray(); - $this->assertArrayNotHasKey('Content-Type', $headers); - } - ); - } -} diff --git a/tests/unit/Image/Adapter/BackgroundCest.php b/tests/unit/Image/Adapter/BackgroundCest.php new file mode 100644 index 00000000000..771280550dc --- /dev/null +++ b/tests/unit/Image/Adapter/BackgroundCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use UnitTester; + +class BackgroundCest +{ + /** + * Tests Phalcon\Image\Adapter :: background() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterBackground(UnitTester $I) + { + $I->wantToTest("Image\Adapter - background()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/BlurCest.php b/tests/unit/Image/Adapter/BlurCest.php new file mode 100644 index 00000000000..0acbe0a24c6 --- /dev/null +++ b/tests/unit/Image/Adapter/BlurCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use UnitTester; + +class BlurCest +{ + /** + * Tests Phalcon\Image\Adapter :: blur() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterBlur(UnitTester $I) + { + $I->wantToTest("Image\Adapter - blur()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/CropCest.php b/tests/unit/Image/Adapter/CropCest.php new file mode 100644 index 00000000000..21f684fe816 --- /dev/null +++ b/tests/unit/Image/Adapter/CropCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use UnitTester; + +class CropCest +{ + /** + * Tests Phalcon\Image\Adapter :: crop() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterCrop(UnitTester $I) + { + $I->wantToTest("Image\Adapter - crop()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/FlipCest.php b/tests/unit/Image/Adapter/FlipCest.php new file mode 100644 index 00000000000..0dc9730fc41 --- /dev/null +++ b/tests/unit/Image/Adapter/FlipCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use UnitTester; + +class FlipCest +{ + /** + * Tests Phalcon\Image\Adapter :: flip() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterFlip(UnitTester $I) + { + $I->wantToTest("Image\Adapter - flip()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/BackgroundCest.php b/tests/unit/Image/Adapter/Gd/BackgroundCest.php new file mode 100644 index 00000000000..95b1f321d77 --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/BackgroundCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class BackgroundCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: background() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdBackground(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - background()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/BlurCest.php b/tests/unit/Image/Adapter/Gd/BlurCest.php new file mode 100644 index 00000000000..fd6c4b14842 --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/BlurCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class BlurCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: blur() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdBlur(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - blur()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/CheckCest.php b/tests/unit/Image/Adapter/Gd/CheckCest.php new file mode 100644 index 00000000000..6b2c8945e06 --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/CheckCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class CheckCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: check() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdCheck(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - check()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/ConstructCest.php b/tests/unit/Image/Adapter/Gd/ConstructCest.php new file mode 100644 index 00000000000..b08c27ddb18 --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdConstruct(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/CropCest.php b/tests/unit/Image/Adapter/Gd/CropCest.php new file mode 100644 index 00000000000..8f9cc158b3c --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/CropCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class CropCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: crop() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdCrop(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - crop()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/DestructCest.php b/tests/unit/Image/Adapter/Gd/DestructCest.php new file mode 100644 index 00000000000..a3b56aa0d5d --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/DestructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class DestructCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: __destruct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdDestruct(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - __destruct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/FlipCest.php b/tests/unit/Image/Adapter/Gd/FlipCest.php new file mode 100644 index 00000000000..03ccb18838c --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/FlipCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class FlipCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: flip() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdFlip(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - flip()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/GetHeightCest.php b/tests/unit/Image/Adapter/Gd/GetHeightCest.php new file mode 100644 index 00000000000..f5b685cced9 --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/GetHeightCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class GetHeightCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: getHeight() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdGetHeight(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - getHeight()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/GetImageCest.php b/tests/unit/Image/Adapter/Gd/GetImageCest.php new file mode 100644 index 00000000000..29eb77b7b08 --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/GetImageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class GetImageCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: getImage() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdGetImage(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - getImage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/GetMimeCest.php b/tests/unit/Image/Adapter/Gd/GetMimeCest.php new file mode 100644 index 00000000000..d103a94df2c --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/GetMimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class GetMimeCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: getMime() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdGetMime(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - getMime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/GetRealpathCest.php b/tests/unit/Image/Adapter/Gd/GetRealpathCest.php new file mode 100644 index 00000000000..f6b84d2936f --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/GetRealpathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class GetRealpathCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: getRealpath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdGetRealpath(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - getRealpath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/GetTypeCest.php b/tests/unit/Image/Adapter/Gd/GetTypeCest.php new file mode 100644 index 00000000000..4c807aaa7e0 --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/GetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class GetTypeCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: getType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdGetType(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - getType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/GetWidthCest.php b/tests/unit/Image/Adapter/Gd/GetWidthCest.php new file mode 100644 index 00000000000..ec3737569b0 --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/GetWidthCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class GetWidthCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: getWidth() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdGetWidth(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - getWidth()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/LiquidRescaleCest.php b/tests/unit/Image/Adapter/Gd/LiquidRescaleCest.php new file mode 100644 index 00000000000..ff4c1fce3d3 --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/LiquidRescaleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class LiquidRescaleCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: liquidRescale() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdLiquidRescale(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - liquidRescale()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/MaskCest.php b/tests/unit/Image/Adapter/Gd/MaskCest.php new file mode 100644 index 00000000000..47e44facbda --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/MaskCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class MaskCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: mask() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdMask(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - mask()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/PixelateCest.php b/tests/unit/Image/Adapter/Gd/PixelateCest.php new file mode 100644 index 00000000000..ade36253d6d --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/PixelateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class PixelateCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: pixelate() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdPixelate(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - pixelate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/ReflectionCest.php b/tests/unit/Image/Adapter/Gd/ReflectionCest.php new file mode 100644 index 00000000000..d7b475188df --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/ReflectionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class ReflectionCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: reflection() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdReflection(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - reflection()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/RenderCest.php b/tests/unit/Image/Adapter/Gd/RenderCest.php new file mode 100644 index 00000000000..f0d6471f37e --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class RenderCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: render() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdRender(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/ResizeCest.php b/tests/unit/Image/Adapter/Gd/ResizeCest.php new file mode 100644 index 00000000000..ce7d4817254 --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/ResizeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class ResizeCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: resize() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdResize(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - resize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/RotateCest.php b/tests/unit/Image/Adapter/Gd/RotateCest.php new file mode 100644 index 00000000000..b6c5565fb36 --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/RotateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class RotateCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: rotate() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdRotate(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - rotate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/SaveCest.php b/tests/unit/Image/Adapter/Gd/SaveCest.php new file mode 100644 index 00000000000..48cfe1aa708 --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/SaveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class SaveCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: save() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdSave(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - save()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/SharpenCest.php b/tests/unit/Image/Adapter/Gd/SharpenCest.php new file mode 100644 index 00000000000..820c6baf532 --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/SharpenCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class SharpenCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: sharpen() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdSharpen(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - sharpen()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/TextCest.php b/tests/unit/Image/Adapter/Gd/TextCest.php new file mode 100644 index 00000000000..0515a4ec81e --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/TextCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class TextCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: text() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdText(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - text()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Gd/WatermarkCest.php b/tests/unit/Image/Adapter/Gd/WatermarkCest.php new file mode 100644 index 00000000000..17c6c18866b --- /dev/null +++ b/tests/unit/Image/Adapter/Gd/WatermarkCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Gd; + +use UnitTester; + +class WatermarkCest +{ + /** + * Tests Phalcon\Image\Adapter\Gd :: watermark() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGdWatermark(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Gd - watermark()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/GdTest.php b/tests/unit/Image/Adapter/GdTest.php deleted file mode 100644 index 7a63ce632cb..00000000000 --- a/tests/unit/Image/Adapter/GdTest.php +++ /dev/null @@ -1,388 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Image\Adapter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class GdTest extends UnitTest -{ - /** - * executed before each test - */ - protected function _before() - { - parent::_before(); - - if (!function_exists('gd_info')) { - $this->markTestSkipped('Warning: gd extension is not loaded'); - } - } - - /** - * Tests create a new image - * - * @author Serghei Iakovlev - * @since 2016-02-19 - */ - public function testGdSave() - { - $this->specify( - "Gd::save does not create a new image", - function () { - $I = $this->tester; - - $image = new Gd(PATH_OUTPUT . 'tests/image/gd/new.jpg', 100, 100); - $image->save(); - - $I->amInPath(PATH_OUTPUT . 'tests/image/gd/'); - $I->seeFileFound('new.jpg'); - $I->deleteFile('new.jpg'); - } - ); - } - - /** - * Tests resize image - * - * @author Serghei Iakovlev - * @since 2016-02-19 - */ - public function testGdResize() - { - $this->specify( - "Gd::resize does not resize image correctly", - function () { - $I = $this->tester; - - $image = new Gd(PATH_DATA . 'assets/phalconphp.jpg'); - - // Resize to 200 pixels on the shortest side - $image->resize(200, 200)->save(PATH_OUTPUT . 'tests/image/gd/resize.jpg'); - - $I->amInPath(PATH_OUTPUT . 'tests/image/gd/'); - $I->seeFileFound('resize.jpg'); - - $tmp = imagecreatefromjpeg(PATH_OUTPUT . 'tests/image/gd/resize.jpg'); - $width = imagesx($tmp); - $height = imagesy($tmp); - - expect($width <= 200)->true(); - expect($height <= 200)->true(); - - expect($image->getWidth() <= 200)->true(); - expect($image->getHeight() <= 200)->true(); - - $I->deleteFile('resize.jpg'); - } - ); - } - - /** - * Tests crop image - * - * @author Serghei Iakovlev - * @since 2016-02-19 - */ - public function testGdCrop() - { - $this->specify( - "Gd::crop does not crop image correctly", - function () { - $I = $this->tester; - - $image = new Gd(PATH_DATA . 'assets/phalconphp.jpg'); - - // Crop the image to 200x200 pixels, from the center - $image->crop(200, 200)->save(PATH_OUTPUT . 'tests/image/gd/crop.jpg'); - - $I->amInPath(PATH_OUTPUT . 'tests/image/gd/'); - $I->seeFileFound('crop.jpg'); - - $tmp = imagecreatefromjpeg(PATH_OUTPUT . 'tests/image/gd/crop.jpg'); - $width = imagesx($tmp); - $height = imagesy($tmp); - - expect($width)->equals(200); - expect($height)->equals(200); - - expect($image->getWidth() == 200)->true(); - expect($image->getHeight() == 200)->true(); - - $I->deleteFile('crop.jpg'); - } - ); - } - - /** - * Tests rotate image - * - * @author Serghei Iakovlev - * @since 2016-02-19 - */ - public function testGdRotate() - { - $this->specify( - "Gd::rotate does not rotate image correctly", - function () { - $I = $this->tester; - - $image = new Gd(PATH_DATA . 'assets/phalconphp.jpg'); - - // Rotate 45 degrees clockwise - $image->rotate(45)->save(PATH_OUTPUT . 'tests/image/gd/rotate.jpg'); - - $I->amInPath(PATH_OUTPUT . 'tests/image/gd/'); - $I->seeFileFound('rotate.jpg'); - - $tmp = imagecreatefromjpeg(PATH_OUTPUT . 'tests/image/gd/rotate.jpg'); - $width = imagesx($tmp); - $height = imagesy($tmp); - - expect($width > 200)->true(); - expect($height > 200)->true(); - - expect($image->getWidth() > 200)->true(); - expect($image->getHeight() > 200)->true(); - - $I->deleteFile('rotate.jpg'); - } - ); - } - - /** - * Tests flip image - * - * @author Serghei Iakovlev - * @since 2016-02-19 - */ - public function testGdFlip() - { - $this->specify( - "Gd::flip does not flip image correctly", - function () { - $I = $this->tester; - - $image = new Gd(PATH_DATA . 'assets/phalconphp.jpg'); - - // Flip the image from top to bottom - $image->flip(Image::HORIZONTAL)->save(PATH_OUTPUT . 'tests/image/gd/flip.jpg'); - - $I->amInPath(PATH_OUTPUT . 'tests/image/gd/'); - $I->seeFileFound('flip.jpg'); - - $tmp = imagecreatefromjpeg(PATH_OUTPUT . 'tests/image/gd/flip.jpg'); - $width = imagesx($tmp); - $height = imagesy($tmp); - - expect($width > 200)->true(); - expect($height > 200)->true(); - - expect($image->getWidth() > 200)->true(); - expect($image->getHeight() > 200)->true(); - - $I->deleteFile('flip.jpg'); - } - ); - } - - /** - * Tests sharpen image - * - * @author Serghei Iakovlev - * @since 2016-02-19 - */ - public function testGdSharpen() - { - $this->specify( - "Gd::sharpen does not sharpe image correctly", - function () { - $I = $this->tester; - - $image = new Gd(PATH_DATA . 'assets/phalconphp.jpg'); - - // Sharpen the image by 20% - $image->sharpen(20)->save(PATH_OUTPUT . 'tests/image/gd/sharpen.jpg'); - - $I->amInPath(PATH_OUTPUT . 'tests/image/gd/'); - $I->seeFileFound('sharpen.jpg'); - - $tmp = imagecreatefromjpeg(PATH_OUTPUT . 'tests/image/gd/sharpen.jpg'); - $width = imagesx($tmp); - $height = imagesy($tmp); - - expect($width > 200)->true(); - expect($height > 200)->true(); - - expect($image->getWidth() > 200)->true(); - expect($image->getHeight() > 200)->true(); - - $I->deleteFile('sharpen.jpg'); - } - ); - } - - /** - * Tests reflection image - * - * @author Serghei Iakovlev - * @since 2016-02-19 - */ - public function testGdReflection() - { - $this->specify( - "Gd::reflection does not reflect image correctly", - function () { - $I = $this->tester; - - $image = new Gd(PATH_DATA . 'assets/phalconphp.jpg'); - - // Create a 50 pixel reflection that fades from 0-100% opacity - $image->reflection(50)->save(PATH_OUTPUT . 'tests/image/gd/reflection.jpg'); - - $I->amInPath(PATH_OUTPUT . 'tests/image/gd/'); - $I->seeFileFound('reflection.jpg'); - - $tmp = imagecreatefromjpeg(PATH_OUTPUT . 'tests/image/gd/reflection.jpg'); - $width = imagesx($tmp); - $height = imagesy($tmp); - - expect($width > 200)->true(); - expect($height > 200)->true(); - - expect($image->getWidth() > 200)->true(); - expect($image->getHeight() > 200)->true(); - - $I->deleteFile('reflection.jpg'); - } - ); - } - - /** - * Tests watermark - * - * @author Serghei Iakovlev - * @since 2016-02-19 - */ - public function testGdWatermark() - { - $this->specify( - "Gd::watermark does not create watermark correctly", - function () { - $I = $this->tester; - - $image = new Gd(PATH_DATA . 'assets/phalconphp.jpg'); - $mark = new Gd(PATH_DATA . 'assets/logo.png'); - - // Add a watermark to the bottom right of the image - $image->watermark($mark, true, true)->save(PATH_OUTPUT . 'tests/image/gd/watermark.jpg'); - - $I->amInPath(PATH_OUTPUT . 'tests/image/gd/'); - $I->seeFileFound('watermark.jpg'); - - $tmp = imagecreatefromjpeg(PATH_OUTPUT . 'tests/image/gd/watermark.jpg'); - $width = imagesx($tmp); - $height = imagesy($tmp); - - expect($width > 200)->true(); - expect($height > 200)->true(); - - expect($image->getWidth() > 200)->true(); - expect($image->getHeight() > 200)->true(); - - $I->deleteFile('watermark.jpg'); - } - ); - } - - /** - * Tests mask - * - * @author Serghei Iakovlev - * @since 2016-02-19 - */ - public function testGdMask() - { - $this->specify( - "Gd::mask does not create mask correctly", - function () { - $I = $this->tester; - - $image = new Gd(PATH_DATA . 'assets/phalconphp.jpg'); - $mask = new Gd(PATH_DATA . 'assets/logo.png'); - - // Add a watermark to the bottom right of the image - $image->mask($mask)->save(PATH_OUTPUT . 'tests/image/gd/mask.jpg'); - - $I->amInPath(PATH_OUTPUT . 'tests/image/gd/'); - $I->seeFileFound('mask.jpg'); - - $tmp = imagecreatefromjpeg(PATH_OUTPUT . 'tests/image/gd/mask.jpg'); - $width = imagesx($tmp); - $height = imagesy($tmp); - - expect($width > 200)->true(); - expect($height > 200)->true(); - - expect($image->getWidth() > 200)->true(); - expect($image->getHeight() > 200)->true(); - - $I->deleteFile('mask.jpg'); - } - ); - } - - /** - * Tests background - * - * @author Serghei Iakovlev - * @since 2016-02-19 - */ - public function testGdBackground() - { - $this->specify( - "Gd::background does not create background correctly", - function () { - $I = $this->tester; - - $image = new Gd(PATH_DATA . 'assets/phalconphp.jpg'); - - // Add a watermark to the bottom right of the image - $image->background('#000')->save(PATH_OUTPUT . 'tests/image/gd/background.jpg'); - - $I->amInPath(PATH_OUTPUT . 'tests/image/gd/'); - $I->seeFileFound('background.jpg'); - - $tmp = imagecreatefromjpeg(PATH_OUTPUT . 'tests/image/gd/background.jpg'); - $width = imagesx($tmp); - $height = imagesy($tmp); - - expect($width > 200)->true(); - expect($height > 200)->true(); - - expect($image->getWidth() > 200)->true(); - expect($image->getHeight() > 200)->true(); - - $I->deleteFile('background.jpg'); - } - ); - } -} diff --git a/tests/unit/Image/Adapter/GetHeightCest.php b/tests/unit/Image/Adapter/GetHeightCest.php new file mode 100644 index 00000000000..41e6b5a1fa8 --- /dev/null +++ b/tests/unit/Image/Adapter/GetHeightCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use UnitTester; + +class GetHeightCest +{ + /** + * Tests Phalcon\Image\Adapter :: getHeight() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGetHeight(UnitTester $I) + { + $I->wantToTest("Image\Adapter - getHeight()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/GetImageCest.php b/tests/unit/Image/Adapter/GetImageCest.php new file mode 100644 index 00000000000..83b64f8fa45 --- /dev/null +++ b/tests/unit/Image/Adapter/GetImageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use UnitTester; + +class GetImageCest +{ + /** + * Tests Phalcon\Image\Adapter :: getImage() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGetImage(UnitTester $I) + { + $I->wantToTest("Image\Adapter - getImage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/GetMimeCest.php b/tests/unit/Image/Adapter/GetMimeCest.php new file mode 100644 index 00000000000..1f8deedab26 --- /dev/null +++ b/tests/unit/Image/Adapter/GetMimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use UnitTester; + +class GetMimeCest +{ + /** + * Tests Phalcon\Image\Adapter :: getMime() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGetMime(UnitTester $I) + { + $I->wantToTest("Image\Adapter - getMime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/GetRealpathCest.php b/tests/unit/Image/Adapter/GetRealpathCest.php new file mode 100644 index 00000000000..ee88b21ea0e --- /dev/null +++ b/tests/unit/Image/Adapter/GetRealpathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use UnitTester; + +class GetRealpathCest +{ + /** + * Tests Phalcon\Image\Adapter :: getRealpath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGetRealpath(UnitTester $I) + { + $I->wantToTest("Image\Adapter - getRealpath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/GetTypeCest.php b/tests/unit/Image/Adapter/GetTypeCest.php new file mode 100644 index 00000000000..190800b9917 --- /dev/null +++ b/tests/unit/Image/Adapter/GetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use UnitTester; + +class GetTypeCest +{ + /** + * Tests Phalcon\Image\Adapter :: getType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGetType(UnitTester $I) + { + $I->wantToTest("Image\Adapter - getType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/GetWidthCest.php b/tests/unit/Image/Adapter/GetWidthCest.php new file mode 100644 index 00000000000..daea8473a95 --- /dev/null +++ b/tests/unit/Image/Adapter/GetWidthCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use UnitTester; + +class GetWidthCest +{ + /** + * Tests Phalcon\Image\Adapter :: getWidth() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterGetWidth(UnitTester $I) + { + $I->wantToTest("Image\Adapter - getWidth()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/BackgroundCest.php b/tests/unit/Image/Adapter/Imagick/BackgroundCest.php new file mode 100644 index 00000000000..0bd8462dbaa --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/BackgroundCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class BackgroundCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: background() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickBackground(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - background()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/BlurCest.php b/tests/unit/Image/Adapter/Imagick/BlurCest.php new file mode 100644 index 00000000000..b5cc5fc006f --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/BlurCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class BlurCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: blur() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickBlur(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - blur()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/CheckCest.php b/tests/unit/Image/Adapter/Imagick/CheckCest.php new file mode 100644 index 00000000000..c8ece21f299 --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/CheckCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class CheckCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: check() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickCheck(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - check()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/ConstructCest.php b/tests/unit/Image/Adapter/Imagick/ConstructCest.php new file mode 100644 index 00000000000..539affe22cc --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickConstruct(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/CropCest.php b/tests/unit/Image/Adapter/Imagick/CropCest.php new file mode 100644 index 00000000000..f34aacf7b40 --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/CropCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class CropCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: crop() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickCrop(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - crop()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/DestructCest.php b/tests/unit/Image/Adapter/Imagick/DestructCest.php new file mode 100644 index 00000000000..e9679ba82f3 --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/DestructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class DestructCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: __destruct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickDestruct(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - __destruct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/FlipCest.php b/tests/unit/Image/Adapter/Imagick/FlipCest.php new file mode 100644 index 00000000000..6b58e1e4a7c --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/FlipCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class FlipCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: flip() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickFlip(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - flip()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/GetHeightCest.php b/tests/unit/Image/Adapter/Imagick/GetHeightCest.php new file mode 100644 index 00000000000..890fec84afe --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/GetHeightCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class GetHeightCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: getHeight() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickGetHeight(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - getHeight()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/GetImageCest.php b/tests/unit/Image/Adapter/Imagick/GetImageCest.php new file mode 100644 index 00000000000..886517ab38e --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/GetImageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class GetImageCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: getImage() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickGetImage(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - getImage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/GetInternalImInstanceCest.php b/tests/unit/Image/Adapter/Imagick/GetInternalImInstanceCest.php new file mode 100644 index 00000000000..c924ffaacd4 --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/GetInternalImInstanceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class GetInternalImInstanceCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: getInternalImInstance() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickGetInternalImInstance(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - getInternalImInstance()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/GetMimeCest.php b/tests/unit/Image/Adapter/Imagick/GetMimeCest.php new file mode 100644 index 00000000000..2f6883c7798 --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/GetMimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class GetMimeCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: getMime() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickGetMime(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - getMime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/GetRealpathCest.php b/tests/unit/Image/Adapter/Imagick/GetRealpathCest.php new file mode 100644 index 00000000000..62d2b2c3dbe --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/GetRealpathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class GetRealpathCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: getRealpath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickGetRealpath(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - getRealpath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/GetTypeCest.php b/tests/unit/Image/Adapter/Imagick/GetTypeCest.php new file mode 100644 index 00000000000..c4136ba4118 --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/GetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class GetTypeCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: getType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickGetType(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - getType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/GetWidthCest.php b/tests/unit/Image/Adapter/Imagick/GetWidthCest.php new file mode 100644 index 00000000000..03e20c78150 --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/GetWidthCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class GetWidthCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: getWidth() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickGetWidth(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - getWidth()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/LiquidRescaleCest.php b/tests/unit/Image/Adapter/Imagick/LiquidRescaleCest.php new file mode 100644 index 00000000000..93457b5fa59 --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/LiquidRescaleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class LiquidRescaleCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: liquidRescale() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickLiquidRescale(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - liquidRescale()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/MaskCest.php b/tests/unit/Image/Adapter/Imagick/MaskCest.php new file mode 100644 index 00000000000..37f5f9ff10a --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/MaskCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class MaskCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: mask() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickMask(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - mask()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/PixelateCest.php b/tests/unit/Image/Adapter/Imagick/PixelateCest.php new file mode 100644 index 00000000000..314f6a0e7c7 --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/PixelateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class PixelateCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: pixelate() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickPixelate(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - pixelate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/ReflectionCest.php b/tests/unit/Image/Adapter/Imagick/ReflectionCest.php new file mode 100644 index 00000000000..9cfef1f2860 --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/ReflectionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class ReflectionCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: reflection() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickReflection(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - reflection()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/RenderCest.php b/tests/unit/Image/Adapter/Imagick/RenderCest.php new file mode 100644 index 00000000000..e3f3f1b8238 --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class RenderCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: render() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickRender(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/ResizeCest.php b/tests/unit/Image/Adapter/Imagick/ResizeCest.php new file mode 100644 index 00000000000..ac7728cb1b5 --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/ResizeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class ResizeCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: resize() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickResize(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - resize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/RotateCest.php b/tests/unit/Image/Adapter/Imagick/RotateCest.php new file mode 100644 index 00000000000..948196d8896 --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/RotateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class RotateCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: rotate() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickRotate(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - rotate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/SaveCest.php b/tests/unit/Image/Adapter/Imagick/SaveCest.php new file mode 100644 index 00000000000..6e57ca03ce9 --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/SaveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class SaveCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: save() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickSave(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - save()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/SetResourceLimitCest.php b/tests/unit/Image/Adapter/Imagick/SetResourceLimitCest.php new file mode 100644 index 00000000000..0b5e3f77cb1 --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/SetResourceLimitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class SetResourceLimitCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: setResourceLimit() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickSetResourceLimit(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - setResourceLimit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/SharpenCest.php b/tests/unit/Image/Adapter/Imagick/SharpenCest.php new file mode 100644 index 00000000000..5b03e84525b --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/SharpenCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class SharpenCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: sharpen() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickSharpen(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - sharpen()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/TextCest.php b/tests/unit/Image/Adapter/Imagick/TextCest.php new file mode 100644 index 00000000000..66a57afc7c6 --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/TextCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class TextCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: text() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickText(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - text()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/Imagick/WatermarkCest.php b/tests/unit/Image/Adapter/Imagick/WatermarkCest.php new file mode 100644 index 00000000000..e42223233d5 --- /dev/null +++ b/tests/unit/Image/Adapter/Imagick/WatermarkCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter\Imagick; + +use UnitTester; + +class WatermarkCest +{ + /** + * Tests Phalcon\Image\Adapter\Imagick :: watermark() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterImagickWatermark(UnitTester $I) + { + $I->wantToTest("Image\Adapter\Imagick - watermark()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/ImagickCest.php b/tests/unit/Image/Adapter/ImagickCest.php new file mode 100644 index 00000000000..26f6f88302a --- /dev/null +++ b/tests/unit/Image/Adapter/ImagickCest.php @@ -0,0 +1,299 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use Phalcon\Image; +use Phalcon\Image\Adapter\Imagick; +use UnitTester; +use function dataFolder; +use function outputFolder; + +class ImagickCest +{ + /** + * executed before each test + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('imagick'); + } + + /** + * Tests create a new image + * + * @author Phalcon Team + * @since 2016-03-03 + */ + public function testImagickSave(UnitTester $I) + { + $image = new Imagick(outputFolder('tests/image/imagick/new.jpg'), 100, 100); + $image->setResourceLimit(6, 1); + $image->save(); + + $I->amInPath(outputFolder('tests/image/imagick/')); + $I->seeFileFound('new.jpg'); + $I->safeDeleteFile('new.jpg'); + } + + /** + * Tests resize image + * + * @author Phalcon Team + * @since 2016-03-03 + */ + public function testImagickResize(UnitTester $I) + { + $image = new Imagick(dataFolder('assets/images/phalconphp.jpg')); + $image->setResourceLimit(6, 1); + + // Resize to 200 pixels on the shortest side + $image->resize(200, 200)->save(outputFolder('tests/image/imagick/resize.jpg')); + + $I->amInPath(outputFolder('tests/image/imagick/')); + $I->seeFileFound('resize.jpg'); + + $actual = $image->getWidth() <= 200; + $I->assertTrue($actual); + $actual = $image->getHeight() <= 200; + $I->assertTrue($actual); + + $I->safeDeleteFile('resize.jpg'); + } + + /** + * Tests liquid rescaling + * + * @author Phalcon Team + * @since 2016-03-03 + */ + public function testImagickLiquidRescale(UnitTester $I) + { + $I->skipTest('TODO: Check library error'); + $image = new Imagick(dataFolder('assets/images/phalconphp.jpg')); + $image->setResourceLimit(6, 1); + + // Resize to 200 pixels on the shortest side + $image->liquidRescale(200, 200)->save(outputFolder('tests/image/imagick/liquidRescale.jpg')); + + $I->amInPath(outputFolder('tests/image/imagick/')); + $I->seeFileFound('liquidRescale.jpg'); + + $actual = $image->getWidth() == 200; + $I->assertTrue($actual); + $actual = $image->getHeight() == 200; + $I->assertTrue($actual); + + $I->safeDeleteFile('liquidRescale.jpg'); + } + + /** + * Tests crop image + * + * @author Phalcon Team + * @since 2016-03-03 + */ + public function testImagickCrop(UnitTester $I) + { + $image = new Imagick(dataFolder('assets/images/phalconphp.jpg')); + $image->setResourceLimit(6, 1); + + // Crop the image to 200x200 pixels, from the center + $image->crop(200, 200)->save(outputFolder('tests/image/imagick/crop.jpg')); + + $I->amInPath(outputFolder('tests/image/imagick/')); + $I->seeFileFound('crop.jpg'); + + $actual = $image->getWidth() == 200; + $I->assertTrue($actual); + $actual = $image->getHeight() == 200; + $I->assertTrue($actual); + + $I->safeDeleteFile('crop.jpg'); + } + + /** + * Tests rotate image + * + * @author Phalcon Team + * @since 2016-03-03 + */ + public function testImagickRotate(UnitTester $I) + { + $image = new Imagick(dataFolder('assets/images/phalconphp.jpg')); + $image->setResourceLimit(6, 1); + + // Rotate 45 degrees clockwise + $image->rotate(45)->save(outputFolder('tests/image/imagick/rotate.jpg')); + + $I->amInPath(outputFolder('tests/image/imagick/')); + $I->seeFileFound('rotate.jpg'); + + $actual = $image->getWidth() > 200; + $I->assertTrue($actual); + $actual = $image->getHeight() > 200; + $I->assertTrue($actual); + + $I->safeDeleteFile('rotate.jpg'); + } + + /** + * Tests flip image + * + * @author Phalcon Team + * @since 2016-03-03 + */ + public function testImagickFlip(UnitTester $I) + { + $image = new Imagick(dataFolder('assets/images/phalconphp.jpg')); + $image->setResourceLimit(6, 1); + + // Flip the image from top to bottom + $image->flip(Image::HORIZONTAL)->save(outputFolder('tests/image/imagick/flip.jpg')); + + $I->amInPath(outputFolder('tests/image/imagick/')); + $I->seeFileFound('flip.jpg'); + + $actual = $image->getWidth() > 200; + $I->assertTrue($actual); + $actual = $image->getHeight() > 200; + $I->assertTrue($actual); + + $I->safeDeleteFile('flip.jpg'); + } + + /** + * Tests sharpen image + * + * @author Phalcon Team + * @since 2016-03-03 + */ + public function testImagickSharpen(UnitTester $I) + { + $image = new Imagick(dataFolder('assets/images/phalconphp.jpg')); + $image->setResourceLimit(6, 1); + + // Sharpen the image by 20% + $image->sharpen(20)->save(outputFolder('tests/image/imagick/sharpen.jpg')); + + $I->amInPath(outputFolder('tests/image/imagick/')); + $I->seeFileFound('sharpen.jpg'); + + $actual = $image->getWidth() > 200; + $I->assertTrue($actual); + $actual = $image->getHeight() > 200; + $I->assertTrue($actual); + + $I->safeDeleteFile('sharpen.jpg'); + } + + /** + * Tests reflection image + * + * @author Phalcon Team + * @since 2016-03-03 + */ + public function testImagickReflection(UnitTester $I) + { + $image = new Imagick(dataFolder('assets/images/phalconphp.jpg')); + $image->setResourceLimit(6, 1); + + // Create a 50 pixel reflection that fades from 0-100% opacity + $image->reflection(50)->save(outputFolder('tests/image/imagick/reflection.jpg')); + + $I->amInPath(outputFolder('tests/image/imagick/')); + $I->seeFileFound('reflection.jpg'); + + $actual = $image->getWidth() > 200; + $I->assertTrue($actual); + $actual = $image->getHeight() > 200; + $I->assertTrue($actual); + + $I->safeDeleteFile('reflection.jpg'); + } + + /** + * Tests watermark + * + * @author Phalcon Team + * @since 2016-03-03 + */ + public function testImagickWatermark(UnitTester $I) + { + $image = new Imagick(dataFolder('assets/images/phalconphp.jpg')); + $image->setResourceLimit(6, 1); + $mark = new Imagick(dataFolder('assets/images/logo.png')); + + // Add a watermark to the bottom right of the image + $image->watermark($mark, true, true)->save(outputFolder('tests/image/imagick/watermark.jpg')); + + $I->amInPath(outputFolder('tests/image/imagick/')); + $I->seeFileFound('watermark.jpg'); + + $actual = $image->getWidth() > 200; + $I->assertTrue($actual); + $actual = $image->getHeight() > 200; + $I->assertTrue($actual); + + $I->safeDeleteFile('watermark.jpg'); + } + + /** + * Tests mask + * + * @author Phalcon Team + * @since 2016-02-19 + */ + public function testImagickMask(UnitTester $I) + { + $image = new Imagick(dataFolder('assets/images/phalconphp.jpg')); + $image->setResourceLimit(6, 1); + $mask = new Imagick(dataFolder('assets/images/logo.png')); + + // Add a watermark to the bottom right of the image + $image->mask($mask)->save(outputFolder('tests/image/imagick/mask.jpg')); + + $I->amInPath(outputFolder('tests/image/imagick/')); + $I->seeFileFound('mask.jpg'); + + $actual = $image->getWidth() > 200; + $I->assertTrue($actual); + $actual = $image->getHeight() > 200; + $I->assertTrue($actual); + + $I->safeDeleteFile('mask.jpg'); + } + + /** + * Tests background + * + * @author Phalcon Team + * @since 2016-02-19 + */ + public function testImagickBackground(UnitTester $I) + { + $image = new Imagick(dataFolder('assets/images/phalconphp.jpg')); + $image->setResourceLimit(6, 1); + + // Add a watermark to the bottom right of the image + $image->background('#000')->save(outputFolder('tests/image/imagick/background.jpg')); + + $I->amInPath(outputFolder('tests/image/imagick/')); + $I->seeFileFound('background.jpg'); + + $actual = $image->getWidth() > 200; + $I->assertTrue($actual); + $actual = $image->getHeight() > 200; + $I->assertTrue($actual); + + $I->safeDeleteFile('background.jpg'); + } +} diff --git a/tests/unit/Image/Adapter/ImagickTest.php b/tests/unit/Image/Adapter/ImagickTest.php deleted file mode 100644 index 3c6a476f23c..00000000000 --- a/tests/unit/Image/Adapter/ImagickTest.php +++ /dev/null @@ -1,365 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Image\Adapter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ImagickTest extends UnitTest -{ - /** - * executed before each test - */ - protected function _before() - { - parent::_before(); - - if (!class_exists('imagick')) { - $this->markTestSkipped('Warning: imagick extension is not loaded'); - } - } - - /** - * Tests create a new image - * - * @author Serghei Iakovlev - * @since 2016-03-03 - */ - public function testImagickSave() - { - $this->specify( - "Imagick::save does not create a new image", - function () { - $I = $this->tester; - - $image = new Imagick(PATH_OUTPUT . 'tests/image/imagick/new.jpg', 100, 100); - $image->setResourceLimit(6, 1); - $image->save(); - - $I->amInPath(PATH_OUTPUT . 'tests/image/imagick/'); - $I->seeFileFound('new.jpg'); - $I->deleteFile('new.jpg'); - } - ); - } - - /** - * Tests resize image - * - * @author Serghei Iakovlev - * @since 2016-03-03 - */ - public function testImagickResize() - { - $this->specify( - "Imagick::resize does not resize image correctly", - function () { - $I = $this->tester; - - $image = new Imagick(PATH_DATA . 'assets/phalconphp.jpg'); - $image->setResourceLimit(6, 1); - - // Resize to 200 pixels on the shortest side - $image->resize(200, 200)->save(PATH_OUTPUT . 'tests/image/imagick/resize.jpg'); - - $I->amInPath(PATH_OUTPUT . 'tests/image/imagick/'); - $I->seeFileFound('resize.jpg'); - - expect($image->getWidth() <= 200)->true(); - expect($image->getHeight() <= 200)->true(); - - $I->deleteFile('resize.jpg'); - } - ); - } - - /** - * Tests liquid rescaling - * - * @author Serghei Iakovlev - * @since 2016-03-03 - */ - public function testImagickLiquidRescale() - { - $this->specify( - "Imagick::liquidRescale does not resize image correctly", - function () { - $I = $this->tester; - - $image = new Imagick(PATH_DATA . 'assets/phalconphp.jpg'); - $image->setResourceLimit(6, 1); - - // Resize to 200 pixels on the shortest side - $image->liquidRescale(200, 200)->save(PATH_OUTPUT . 'tests/image/imagick/liquidRescale.jpg'); - - $I->amInPath(PATH_OUTPUT . 'tests/image/imagick/'); - $I->seeFileFound('liquidRescale.jpg'); - - expect($image->getWidth() == 200)->true(); - expect($image->getHeight() == 200)->true(); - - $I->deleteFile('liquidRescale.jpg'); - } - ); - } - - /** - * Tests crop image - * - * @author Serghei Iakovlev - * @since 2016-03-03 - */ - public function testImagickCrop() - { - $this->specify( - "Imagick::crop does not crop image correctly", - function () { - $I = $this->tester; - - $image = new Imagick(PATH_DATA . 'assets/phalconphp.jpg'); - $image->setResourceLimit(6, 1); - - // Crop the image to 200x200 pixels, from the center - $image->crop(200, 200)->save(PATH_OUTPUT . 'tests/image/imagick/crop.jpg'); - - $I->amInPath(PATH_OUTPUT . 'tests/image/imagick/'); - $I->seeFileFound('crop.jpg'); - - expect($image->getWidth() == 200)->true(); - expect($image->getHeight() == 200)->true(); - - $I->deleteFile('crop.jpg'); - } - ); - } - - /** - * Tests rotate image - * - * @author Serghei Iakovlev - * @since 2016-03-03 - */ - public function testImagickRotate() - { - $this->specify( - "Imagick::rotate does not rotate image correctly", - function () { - $I = $this->tester; - - $image = new Imagick(PATH_DATA . 'assets/phalconphp.jpg'); - $image->setResourceLimit(6, 1); - - // Rotate 45 degrees clockwise - $image->rotate(45)->save(PATH_OUTPUT . 'tests/image/imagick/rotate.jpg'); - - $I->amInPath(PATH_OUTPUT . 'tests/image/imagick/'); - $I->seeFileFound('rotate.jpg'); - - expect($image->getWidth() > 200)->true(); - expect($image->getHeight() > 200)->true(); - - $I->deleteFile('rotate.jpg'); - } - ); - } - - /** - * Tests flip image - * - * @author Serghei Iakovlev - * @since 2016-03-03 - */ - public function testImagickFlip() - { - $this->specify( - "Imagick::flip does not flip image correctly", - function () { - $I = $this->tester; - - $image = new Imagick(PATH_DATA . 'assets/phalconphp.jpg'); - $image->setResourceLimit(6, 1); - - // Flip the image from top to bottom - $image->flip(Image::HORIZONTAL)->save(PATH_OUTPUT . 'tests/image/imagick/flip.jpg'); - - $I->amInPath(PATH_OUTPUT . 'tests/image/imagick/'); - $I->seeFileFound('flip.jpg'); - - expect($image->getWidth() > 200)->true(); - expect($image->getHeight() > 200)->true(); - - $I->deleteFile('flip.jpg'); - } - ); - } - - /** - * Tests sharpen image - * - * @author Serghei Iakovlev - * @since 2016-03-03 - */ - public function testImagickSharpen() - { - $this->specify( - "Imagick::sharpen does not sharpe image correctly", - function () { - $I = $this->tester; - - $image = new Imagick(PATH_DATA . 'assets/phalconphp.jpg'); - $image->setResourceLimit(6, 1); - - // Sharpen the image by 20% - $image->sharpen(20)->save(PATH_OUTPUT . 'tests/image/imagick/sharpen.jpg'); - - $I->amInPath(PATH_OUTPUT . 'tests/image/imagick/'); - $I->seeFileFound('sharpen.jpg'); - - expect($image->getWidth() > 200)->true(); - expect($image->getHeight() > 200)->true(); - - $I->deleteFile('sharpen.jpg'); - } - ); - } - - /** - * Tests reflection image - * - * @author Serghei Iakovlev - * @since 2016-03-03 - */ - public function testImagickReflection() - { - $this->specify( - "Imagick::reflection does not reflect image correctly", - function () { - $I = $this->tester; - - $image = new Imagick(PATH_DATA . 'assets/phalconphp.jpg'); - $image->setResourceLimit(6, 1); - - // Create a 50 pixel reflection that fades from 0-100% opacity - $image->reflection(50)->save(PATH_OUTPUT . 'tests/image/imagick/reflection.jpg'); - - $I->amInPath(PATH_OUTPUT . 'tests/image/imagick/'); - $I->seeFileFound('reflection.jpg'); - - expect($image->getWidth() > 200)->true(); - expect($image->getHeight() > 200)->true(); - - $I->deleteFile('reflection.jpg'); - } - ); - } - - /** - * Tests watermark - * - * @author Serghei Iakovlev - * @since 2016-03-03 - */ - public function testImagickWatermark() - { - $this->specify( - "Imagick::watermark does not create watermark correctly", - function () { - $I = $this->tester; - - $image = new Imagick(PATH_DATA . 'assets/phalconphp.jpg'); - $image->setResourceLimit(6, 1); - $mark = new Imagick(PATH_DATA . 'assets/logo.png'); - - // Add a watermark to the bottom right of the image - $image->watermark($mark, true, true)->save(PATH_OUTPUT . 'tests/image/imagick/watermark.jpg'); - - $I->amInPath(PATH_OUTPUT . 'tests/image/imagick/'); - $I->seeFileFound('watermark.jpg'); - - expect($image->getWidth() > 200)->true(); - expect($image->getHeight() > 200)->true(); - - $I->deleteFile('watermark.jpg'); - } - ); - } - - /** - * Tests mask - * - * @author Serghei Iakovlev - * @since 2016-02-19 - */ - public function testImagickMask() - { - $this->specify( - "Imagick::mask does not create mask correctly", - function () { - $I = $this->tester; - - $image = new Imagick(PATH_DATA . 'assets/phalconphp.jpg'); - $image->setResourceLimit(6, 1); - $mask = new Imagick(PATH_DATA . 'assets/logo.png'); - - // Add a watermark to the bottom right of the image - $image->mask($mask)->save(PATH_OUTPUT . 'tests/image/imagick/mask.jpg'); - - $I->amInPath(PATH_OUTPUT . 'tests/image/imagick/'); - $I->seeFileFound('mask.jpg'); - - expect($image->getWidth() > 200)->true(); - expect($image->getHeight() > 200)->true(); - - $I->deleteFile('mask.jpg'); - } - ); - } - - /** - * Tests background - * - * @author Serghei Iakovlev - * @since 2016-02-19 - */ - public function testImagickBackground() - { - $this->specify( - "Imagick::background does not create background correctly", - function () { - $I = $this->tester; - - $image = new Imagick(PATH_DATA . 'assets/phalconphp.jpg'); - $image->setResourceLimit(6, 1); - - // Add a watermark to the bottom right of the image - $image->background('#000')->save(PATH_OUTPUT . 'tests/image/imagick/background.jpg'); - - $I->amInPath(PATH_OUTPUT . 'tests/image/imagick/'); - $I->seeFileFound('background.jpg'); - - expect($image->getWidth() > 200)->true(); - expect($image->getHeight() > 200)->true(); - - $I->deleteFile('background.jpg'); - } - ); - } -} diff --git a/tests/unit/Image/Adapter/LiquidRescaleCest.php b/tests/unit/Image/Adapter/LiquidRescaleCest.php new file mode 100644 index 00000000000..0535f03ab82 --- /dev/null +++ b/tests/unit/Image/Adapter/LiquidRescaleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use UnitTester; + +class LiquidRescaleCest +{ + /** + * Tests Phalcon\Image\Adapter :: liquidRescale() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterLiquidRescale(UnitTester $I) + { + $I->wantToTest("Image\Adapter - liquidRescale()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/MaskCest.php b/tests/unit/Image/Adapter/MaskCest.php new file mode 100644 index 00000000000..f1bd266138d --- /dev/null +++ b/tests/unit/Image/Adapter/MaskCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use UnitTester; + +class MaskCest +{ + /** + * Tests Phalcon\Image\Adapter :: mask() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterMask(UnitTester $I) + { + $I->wantToTest("Image\Adapter - mask()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/PixelateCest.php b/tests/unit/Image/Adapter/PixelateCest.php new file mode 100644 index 00000000000..4c7bc7f9953 --- /dev/null +++ b/tests/unit/Image/Adapter/PixelateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use UnitTester; + +class PixelateCest +{ + /** + * Tests Phalcon\Image\Adapter :: pixelate() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterPixelate(UnitTester $I) + { + $I->wantToTest("Image\Adapter - pixelate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/ReflectionCest.php b/tests/unit/Image/Adapter/ReflectionCest.php new file mode 100644 index 00000000000..29dd45fec89 --- /dev/null +++ b/tests/unit/Image/Adapter/ReflectionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use UnitTester; + +class ReflectionCest +{ + /** + * Tests Phalcon\Image\Adapter :: reflection() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterReflection(UnitTester $I) + { + $I->wantToTest("Image\Adapter - reflection()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/RenderCest.php b/tests/unit/Image/Adapter/RenderCest.php new file mode 100644 index 00000000000..9a99871c7eb --- /dev/null +++ b/tests/unit/Image/Adapter/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use UnitTester; + +class RenderCest +{ + /** + * Tests Phalcon\Image\Adapter :: render() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterRender(UnitTester $I) + { + $I->wantToTest("Image\Adapter - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/ResizeCest.php b/tests/unit/Image/Adapter/ResizeCest.php new file mode 100644 index 00000000000..e1b33114cb4 --- /dev/null +++ b/tests/unit/Image/Adapter/ResizeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use UnitTester; + +class ResizeCest +{ + /** + * Tests Phalcon\Image\Adapter :: resize() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterResize(UnitTester $I) + { + $I->wantToTest("Image\Adapter - resize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/RotateCest.php b/tests/unit/Image/Adapter/RotateCest.php new file mode 100644 index 00000000000..61a6dcfc80d --- /dev/null +++ b/tests/unit/Image/Adapter/RotateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use UnitTester; + +class RotateCest +{ + /** + * Tests Phalcon\Image\Adapter :: rotate() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterRotate(UnitTester $I) + { + $I->wantToTest("Image\Adapter - rotate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/SaveCest.php b/tests/unit/Image/Adapter/SaveCest.php new file mode 100644 index 00000000000..d3edcaded41 --- /dev/null +++ b/tests/unit/Image/Adapter/SaveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use UnitTester; + +class SaveCest +{ + /** + * Tests Phalcon\Image\Adapter :: save() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterSave(UnitTester $I) + { + $I->wantToTest("Image\Adapter - save()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/SharpenCest.php b/tests/unit/Image/Adapter/SharpenCest.php new file mode 100644 index 00000000000..50ae42ff5cc --- /dev/null +++ b/tests/unit/Image/Adapter/SharpenCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use UnitTester; + +class SharpenCest +{ + /** + * Tests Phalcon\Image\Adapter :: sharpen() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterSharpen(UnitTester $I) + { + $I->wantToTest("Image\Adapter - sharpen()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/TextCest.php b/tests/unit/Image/Adapter/TextCest.php new file mode 100644 index 00000000000..04cdb0adf5c --- /dev/null +++ b/tests/unit/Image/Adapter/TextCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use UnitTester; + +class TextCest +{ + /** + * Tests Phalcon\Image\Adapter :: text() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterText(UnitTester $I) + { + $I->wantToTest("Image\Adapter - text()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Adapter/WatermarkCest.php b/tests/unit/Image/Adapter/WatermarkCest.php new file mode 100644 index 00000000000..3c94421785c --- /dev/null +++ b/tests/unit/Image/Adapter/WatermarkCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Adapter; + +use UnitTester; + +class WatermarkCest +{ + /** + * Tests Phalcon\Image\Adapter :: watermark() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function imageAdapterWatermark(UnitTester $I) + { + $I->wantToTest("Image\Adapter - watermark()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Image/Factory/LoadCest.php b/tests/unit/Image/Factory/LoadCest.php new file mode 100644 index 00000000000..b71b4f40e32 --- /dev/null +++ b/tests/unit/Image/Factory/LoadCest.php @@ -0,0 +1,76 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Image\Factory; + +use Phalcon\Image\Adapter\Imagick; +use Phalcon\Image\Factory; +use Phalcon\Test\Fixtures\Traits\FactoryTrait; +use UnitTester; + +class LoadCest +{ + use FactoryTrait; + + /** + * @param UnitTester $I + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('imagick'); + + $this->init(); + } + + /** + * Tests Phalcon\Image\Factory :: load() - Phalcon\Config + * + * @param UnitTester $I + * + * @author Wojciech Ślawski + * @since 2017-03-02 + */ + public function imageFactoryLoadConfig(UnitTester $I) + { + $options = $this->config->image; + /** @var Imagick $image */ + $image = Factory::load($options); + $class = Imagick::class; + $actual = $image; + $I->assertInstanceOf($class, $actual); + + $expected = realpath($options->file); + $actual = $image->getRealpath(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Image\Factory :: load() - array + * + * @param UnitTester $I + * + * @author Wojciech Ślawski + * @since 2017-03-02 + */ + public function imageFactoryLoadArray(UnitTester $I) + { + $options = $this->arrayConfig["image"]; + /** @var Imagick $image */ + $image = Factory::load($options); + $class = Imagick::class; + $actual = $image; + $I->assertInstanceOf($class, $actual); + + $expected = realpath($options["file"]); + $actual = $image->getRealpath(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Image/FactoryTest.php b/tests/unit/Image/FactoryTest.php deleted file mode 100644 index 87cf71a68b5..00000000000 --- a/tests/unit/Image/FactoryTest.php +++ /dev/null @@ -1,80 +0,0 @@ - - * @author Serghei Iakovlev - * @author Wojciech Ślawski - * @package Phalcon\Test\Unit\Image - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FactoryTest extends FactoryBase -{ - /** - * executed before each test - */ - protected function _before() - { - parent::_before(); - - if (!class_exists('imagick')) { - $this->markTestSkipped('Warning: imagick extension is not loaded'); - } - } - - /** - * Test factory using Phalcon\Config - * - * @author Wojciech Ślawski - * @since 2017-03-02 - */ - public function testConfigFactory() - { - $this->specify( - "Factory using Phalcon\\Config doesn't work properly", - function () { - $options = $this->config->image; - /** @var Imagick $image */ - $image = Factory::load($options); - expect($image)->isInstanceOf(Imagick::class); - expect($image->getRealpath())->equals(realpath($options->file)); - } - ); - } - - /** - * Test factory using array - * - * @author Wojciech Ślawski - * @since 2017-03-02 - */ - public function testArrayFactory() - { - $this->specify( - "Factory using array doesn't work properly", - function () { - $options = $this->arrayConfig["image"]; - /** @var Imagick $image */ - $image = Factory::load($options); - expect($image)->isInstanceOf(Imagick::class); - expect($image->getRealpath())->equals(realpath($options["file"])); - } - ); - } -} diff --git a/tests/unit/Kernel/PreComputeHashKeyCest.php b/tests/unit/Kernel/PreComputeHashKeyCest.php new file mode 100644 index 00000000000..0a0e6cacd37 --- /dev/null +++ b/tests/unit/Kernel/PreComputeHashKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Kernel; + +use UnitTester; + +class PreComputeHashKeyCest +{ + /** + * Tests Phalcon\Kernel :: preComputeHashKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function kernelPreComputeHashKey(UnitTester $I) + { + $I->wantToTest("Kernel - preComputeHashKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Loader/AutoLoadCest.php b/tests/unit/Loader/AutoLoadCest.php new file mode 100644 index 00000000000..b8d890ba0d5 --- /dev/null +++ b/tests/unit/Loader/AutoLoadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Loader; + +use UnitTester; + +class AutoLoadCest +{ + /** + * Tests Phalcon\Loader :: autoLoad() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loaderAutoLoad(UnitTester $I) + { + $I->wantToTest("Loader - autoLoad()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Loader/GetCheckedPathCest.php b/tests/unit/Loader/GetCheckedPathCest.php new file mode 100644 index 00000000000..8d346ffef0e --- /dev/null +++ b/tests/unit/Loader/GetCheckedPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Loader; + +use UnitTester; + +class GetCheckedPathCest +{ + /** + * Tests Phalcon\Loader :: getCheckedPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loaderGetCheckedPath(UnitTester $I) + { + $I->wantToTest("Loader - getCheckedPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Loader/GetClassesCest.php b/tests/unit/Loader/GetClassesCest.php new file mode 100644 index 00000000000..5526d911f58 --- /dev/null +++ b/tests/unit/Loader/GetClassesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Loader; + +use UnitTester; + +class GetClassesCest +{ + /** + * Tests Phalcon\Loader :: getClasses() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loaderGetClasses(UnitTester $I) + { + $I->wantToTest("Loader - getClasses()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Loader/GetDirsCest.php b/tests/unit/Loader/GetDirsCest.php new file mode 100644 index 00000000000..c93b7e5e2e4 --- /dev/null +++ b/tests/unit/Loader/GetDirsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Loader; + +use UnitTester; + +class GetDirsCest +{ + /** + * Tests Phalcon\Loader :: getDirs() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loaderGetDirs(UnitTester $I) + { + $I->wantToTest("Loader - getDirs()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Loader/GetEventsManagerCest.php b/tests/unit/Loader/GetEventsManagerCest.php new file mode 100644 index 00000000000..1fdd9b09e94 --- /dev/null +++ b/tests/unit/Loader/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Loader; + +use UnitTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Loader :: getEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loaderGetEventsManager(UnitTester $I) + { + $I->wantToTest("Loader - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Loader/GetExtensionsCest.php b/tests/unit/Loader/GetExtensionsCest.php new file mode 100644 index 00000000000..b20da4480ab --- /dev/null +++ b/tests/unit/Loader/GetExtensionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Loader; + +use UnitTester; + +class GetExtensionsCest +{ + /** + * Tests Phalcon\Loader :: getExtensions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loaderGetExtensions(UnitTester $I) + { + $I->wantToTest("Loader - getExtensions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Loader/GetFilesCest.php b/tests/unit/Loader/GetFilesCest.php new file mode 100644 index 00000000000..c746d48e689 --- /dev/null +++ b/tests/unit/Loader/GetFilesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Loader; + +use UnitTester; + +class GetFilesCest +{ + /** + * Tests Phalcon\Loader :: getFiles() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loaderGetFiles(UnitTester $I) + { + $I->wantToTest("Loader - getFiles()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Loader/GetFoundPathCest.php b/tests/unit/Loader/GetFoundPathCest.php new file mode 100644 index 00000000000..2cd3661678a --- /dev/null +++ b/tests/unit/Loader/GetFoundPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Loader; + +use UnitTester; + +class GetFoundPathCest +{ + /** + * Tests Phalcon\Loader :: getFoundPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loaderGetFoundPath(UnitTester $I) + { + $I->wantToTest("Loader - getFoundPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Loader/GetNamespacesCest.php b/tests/unit/Loader/GetNamespacesCest.php new file mode 100644 index 00000000000..9cd7ed040d4 --- /dev/null +++ b/tests/unit/Loader/GetNamespacesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Loader; + +use UnitTester; + +class GetNamespacesCest +{ + /** + * Tests Phalcon\Loader :: getNamespaces() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loaderGetNamespaces(UnitTester $I) + { + $I->wantToTest("Loader - getNamespaces()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Loader/LoadFilesCest.php b/tests/unit/Loader/LoadFilesCest.php new file mode 100644 index 00000000000..e94a8bb801f --- /dev/null +++ b/tests/unit/Loader/LoadFilesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Loader; + +use UnitTester; + +class LoadFilesCest +{ + /** + * Tests Phalcon\Loader :: loadFiles() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loaderLoadFiles(UnitTester $I) + { + $I->wantToTest("Loader - loadFiles()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Loader/LoaderCest.php b/tests/unit/Loader/LoaderCest.php new file mode 100644 index 00000000000..e3b8c152bd6 --- /dev/null +++ b/tests/unit/Loader/LoaderCest.php @@ -0,0 +1,401 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit; + +use Phalcon\Events\Manager; +use Phalcon\Loader; +use UnitTester; +use function dataFolder; + +class LoaderCest +{ + protected $loaders; + protected $includePath; + + public function testNamespaces(UnitTester $I) + { + $loader = new Loader(); + + $loader->registerNamespaces( + [ + 'Example\Namespaces\Base' => dataFolder('fixtures/Loader/Example/Namespaces/Base/'), + ] + ); + + $loader->registerNamespaces( + [ + 'Example\Namespaces\Adapter' => dataFolder('fixtures/Loader/Example/Namespaces/Adapter/'), + 'Example\Namespaces' => dataFolder('fixtures/Loader/Example/Namespaces/'), + ], + true + ); + + $loader->register(); + + $I->assertInstanceOf('Example\Namespaces\Adapter\Mongo', new \Example\Namespaces\Adapter\Mongo()); + $I->assertInstanceOf('Example\Namespaces\Adapter\Redis', new \Example\Namespaces\Adapter\Redis()); + $I->assertInstanceOf('Example\Namespaces\Engines\Gasoline', new \Example\Namespaces\Engines\Gasoline()); + $I->assertInstanceOf('Example\Namespaces\Example\Example', new \Example\Namespaces\Example\Example()); + + $loader->unregister(); + } + + public function testNamespacesExtensions(UnitTester $I) + { + $loader = new Loader(); + + $loader->setExtensions(['inc', 'php']); + $loader->registerNamespaces( + [ + 'Example\Namespaces\Base' => dataFolder('fixtures/Loader/Example/Namespaces/Base/'), + 'Example\Namespaces' => dataFolder('fixtures/Loader/Example/Namespaces/'), + ] + ); + + $loader->registerNamespaces( + [ + 'Example' => dataFolder('fixtures/Loader/Example/Namespaces/'), + ], + true + ); + + $loader->register(); + + $I->assertInstanceOf('Example\Namespaces\Engines\Alcohol', new \Example\Namespaces\Engines\Alcohol()); + + $loader->unregister(); + } + + public function testDirectories(UnitTester $I) + { + $loader = new Loader(); + + $loader->registerDirs( + [ + // missing trailing slash + dataFolder('fixtures/Loader/Example/Folders/Dialects'), + ] + ); + + $loader->registerDirs( + [ + dataFolder('fixtures/Loader/Example/Folders/Types/'), + ], + true + ); + + $loader->register(); + + $I->assertInstanceOf('Sqlite', new \Sqlite()); + $I->assertInstanceOf('Integer', new \Integer()); + + $loader->unregister(); + } + + public function testFiles(UnitTester $I) + { + // TEST CASE : Register the file and check if functions in the file is accessible + $I->assertFalse(function_exists('noClassFoo')); + $I->assertFalse(function_exists('noClassBar')); + $I->assertFalse(function_exists('noClass1Foo')); + $I->assertFalse(function_exists('noClass1Bar')); + $I->assertFalse(function_exists('noClass2Foo')); + $I->assertFalse(function_exists('noClass2Bar')); + + $loader = new Loader(); + $loader->registerFiles( + [ + dataFolder('fixtures/Loader/Example/Functions/FunctionsNoClass.php'), + dataFolder('fixtures/Loader/Example/Functions/FunctionsNoClassOne.php'), + ] + ); + $loader->registerFiles( + [ + dataFolder('fixtures/Loader/Example/Functions/FunctionsNoClassTwo.php'), + ], + true + ); + $loader->register(); + + $I->assertTrue(function_exists('noClassFoo')); + $I->assertTrue(function_exists('noClassBar')); + $I->assertTrue(function_exists('noClass1Foo')); + $I->assertTrue(function_exists('noClass1Bar')); + $I->assertTrue(function_exists('noClass2Foo')); + $I->assertTrue(function_exists('noClass2Bar')); + + // TEST CASE : We are going to un-register it, but the functions should still be accessible + $loader->unregister(); + + $I->assertTrue(function_exists('noClassFoo')); + $I->assertTrue(function_exists('noClassBar')); + $I->assertTrue(function_exists('noClass1Foo')); + $I->assertTrue(function_exists('noClass1Bar')); + $I->assertTrue(function_exists('noClass2Foo')); + $I->assertTrue(function_exists('noClass2Bar')); + } + + public function testNamespacesForMultipleDirectories(UnitTester $I) + { + $loader = new Loader(); + + $loader->registerNamespaces( + [ + "Example\\Namespaces\\Base" => dataFolder('fixtures/Loader/Example/Namespaces/Base/'), + ] + ); + + $expected = [ + "Example\\Namespaces\\Base" => [ + dataFolder('fixtures/Loader/Example/Namespaces/Base/'), + ], + ]; + $actual = $loader->getNamespaces(); + $I->assertEquals($expected, $actual); + + $loader->registerNamespaces( + [ + "Example\\Namespaces\\Adapter" => [ + dataFolder('fixtures/Loader/Example/Namespaces/Adapter/'), + dataFolder('fixtures/Loader/Example/Namespaces/Plugin/'), + ], + ], + true + ); + + $expected = [ + "Example\\Namespaces\\Base" => [ + dataFolder('fixtures/Loader/Example/Namespaces/Base/'), + ], + "Example\\Namespaces\\Adapter" => [ + dataFolder('fixtures/Loader/Example/Namespaces/Adapter/'), + dataFolder('fixtures/Loader/Example/Namespaces/Plugin/'), + ], + ]; + $actual = $loader->getNamespaces(); + $I->assertEquals($expected, $actual); + + $loader->register(); + + $I->assertInstanceOf('Example\Namespaces\Adapter\Mongo', new \Example\Namespaces\Adapter\Mongo()); + $I->assertInstanceOf('Example\Namespaces\Adapter\Another', new \Example\Namespaces\Adapter\Another()); + $I->assertInstanceOf('Example\Namespaces\Adapter\Redis', new \Example\Namespaces\Adapter\Redis()); + + $loader->unregister(); + } + + public function testDirectoriesExtensions(UnitTester $I) + { + /** + * @TODO: Check Extensions for this test + */ + $I->skipTest('TODO: Check Extensions for this test'); + $loader = new Loader(); + + $loader->setExtensions( + [ + 'inc', + 'php', + ] + ); + $loader->registerDirs( + [ + dataFolder('fixtures/Loader/Example/Folders/Dialects'), + dataFolder('fixtures/Loader/Example/Folders/Types'), + dataFolder('fixtures/Loader/Example/Namespaces/Adapter'), + ] + ); + + $loader->register(); + + $I->assertInstanceOf('Example\Namespaces\Adapter\File', new \Example\Namespaces\Adapter\File()); + + $loader->unregister(); + } + + public function testClasses(UnitTester $I) + { + $loader = new Loader(); + + $loader->registerClasses( + [ + 'One' => dataFolder('fixtures/Loader/Example/Classes/One.php'), + ] + ); + $loader->registerClasses( + [ + 'Two' => dataFolder('fixtures/Loader/Example/Classes/Two.php'), + ], + true + ); + $loader->register(); + + $I->assertInstanceOf('One', new \One()); + $I->assertInstanceOf('Two', new \Two()); + + $loader->unregister(); + } + + public function testEvents(UnitTester $I) + { + $loader = new Loader(); + + $loader->registerDirs( + [ + dataFolder('fixtures/Loader/Example/Events/'), + ] + ); + + $loader->registerClasses( + [ + 'OtherClass' => dataFolder('fixtures/Loader/Example/Events/Other/'), + ] + ); + + $loader->registerNamespaces( + [ + 'Other\OtherClass' => dataFolder('fixtures/Loader/Example/Events/Other/'), + ] + ); + + $eventsManager = new Manager(); + $trace = []; + + $eventsManager->attach( + 'loader', + function ($event, $loader) use (&$trace) { + /** @var \Phalcon\Events\Event $event */ + /** @var Loader $loader */ + if (!isset($trace[$event->getType()])) { + $trace[$event->getType()] = []; + } + $trace[$event->getType()][] = $loader->getCheckedPath(); + } + ); + + $loader->setEventsManager($eventsManager); + $loader->register(); + + $I->assertInstanceOf('LoaderEvent', new \LoaderEvent()); + + $expected = [ + 'beforeCheckClass' => [0 => null], + 'beforeCheckPath' => [0 => dataFolder('fixtures/Loader/Example/Events/LoaderEvent.php')], + 'pathFound' => [0 => dataFolder('fixtures/Loader/Example/Events/LoaderEvent.php')], + ]; + $actual = $trace; + $I->assertEquals($expected, $actual); + + $loader->unregister(); + } + + /** + * Tests Loader::setFileCheckingCallback + * + * @author Phalcon Team + * @since 2018-04-29 + * @issue https://github.com/phalcon/cphalcon/issues/13360 + * @issue https://github.com/phalcon/cphalcon/issues/10472 + */ + public function shouldNotFindFilesWithFalseCallback(UnitTester $I) + { + $loader = new Loader(); + $loader->setFileCheckingCallback( + function ($file) { + return false; + } + ); + + $loader->registerFiles( + [ + dataFolder('fixtures/Loader/Example/Functions/FunctionsNoClassThree.php'), + ] + ); + + $loader->registerNamespaces( + [ + 'Example' => dataFolder('fixtures/Loader/Example/'), + ], + true + ); + + $loader->register(); + + $I->assertFalse(function_exists('noClass3Foo')); + $I->assertFalse(function_exists('noClass3Bar')); + } + + /** + * Tests Loader::setFileCheckingCallback + * + * @author Phalcon Team + * @since 2018-04-29 + * @issue https://github.com/phalcon/cphalcon/issues/13360 + * @issue https://github.com/phalcon/cphalcon/issues/10472 + */ + public function shouldWorkWithCustomFileCheckCallback(UnitTester $I) + { + $loader = new Loader(); + $loader->setFileCheckingCallback('stream_resolve_include_path'); + + $loader->registerFiles( + [ + dataFolder('fixtures/Loader/Example/Functions/FunctionsNoClassThree.php'), + ] + ); + + $loader->registerNamespaces( + [ + 'Example\Namespaces' => dataFolder('fixtures/Loader/Example/Namespaces'), + ], + true + ); + + $loader->register(); + + $I->assertTrue(function_exists('noClass3Foo')); + $I->assertTrue(function_exists('noClass3Bar')); + $I->assertTrue(class_exists('\Example\Namespaces\Engines\Diesel')); + } + + /** + * executed before each test + */ + protected function _before(UnitTester $I) + { + $this->loaders = spl_autoload_functions(); + if (!is_array($this->loaders)) { + $this->loaders = []; + } + + $this->includePath = get_include_path(); + } + + /** + * executed after each test + */ + protected function _after(UnitTester $I) + { + $loaders = spl_autoload_functions(); + if (is_array($loaders)) { + foreach ($loaders as $loader) { + spl_autoload_unregister($loader); + } + } + + foreach ($this->loaders as $loader) { + spl_autoload_register($loader); + } + + set_include_path($this->includePath); + } +} diff --git a/tests/unit/Loader/RegisterCest.php b/tests/unit/Loader/RegisterCest.php new file mode 100644 index 00000000000..92eb36e28a6 --- /dev/null +++ b/tests/unit/Loader/RegisterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Loader; + +use UnitTester; + +class RegisterCest +{ + /** + * Tests Phalcon\Loader :: register() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loaderRegister(UnitTester $I) + { + $I->wantToTest("Loader - register()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Loader/RegisterClassesCest.php b/tests/unit/Loader/RegisterClassesCest.php new file mode 100644 index 00000000000..10e8e339b9b --- /dev/null +++ b/tests/unit/Loader/RegisterClassesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Loader; + +use UnitTester; + +class RegisterClassesCest +{ + /** + * Tests Phalcon\Loader :: registerClasses() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loaderRegisterClasses(UnitTester $I) + { + $I->wantToTest("Loader - registerClasses()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Loader/RegisterDirsCest.php b/tests/unit/Loader/RegisterDirsCest.php new file mode 100644 index 00000000000..bae2b7e2d66 --- /dev/null +++ b/tests/unit/Loader/RegisterDirsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Loader; + +use UnitTester; + +class RegisterDirsCest +{ + /** + * Tests Phalcon\Loader :: registerDirs() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loaderRegisterDirs(UnitTester $I) + { + $I->wantToTest("Loader - registerDirs()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Loader/RegisterFilesCest.php b/tests/unit/Loader/RegisterFilesCest.php new file mode 100644 index 00000000000..e4d83a5d14e --- /dev/null +++ b/tests/unit/Loader/RegisterFilesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Loader; + +use UnitTester; + +class RegisterFilesCest +{ + /** + * Tests Phalcon\Loader :: registerFiles() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loaderRegisterFiles(UnitTester $I) + { + $I->wantToTest("Loader - registerFiles()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Loader/RegisterNamespacesCest.php b/tests/unit/Loader/RegisterNamespacesCest.php new file mode 100644 index 00000000000..6b4e7793647 --- /dev/null +++ b/tests/unit/Loader/RegisterNamespacesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Loader; + +use UnitTester; + +class RegisterNamespacesCest +{ + /** + * Tests Phalcon\Loader :: registerNamespaces() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loaderRegisterNamespaces(UnitTester $I) + { + $I->wantToTest("Loader - registerNamespaces()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Loader/SetEventsManagerCest.php b/tests/unit/Loader/SetEventsManagerCest.php new file mode 100644 index 00000000000..ce76914eaf7 --- /dev/null +++ b/tests/unit/Loader/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Loader; + +use UnitTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Loader :: setEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loaderSetEventsManager(UnitTester $I) + { + $I->wantToTest("Loader - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Loader/SetExtensionsCest.php b/tests/unit/Loader/SetExtensionsCest.php new file mode 100644 index 00000000000..3fa5d176a56 --- /dev/null +++ b/tests/unit/Loader/SetExtensionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Loader; + +use UnitTester; + +class SetExtensionsCest +{ + /** + * Tests Phalcon\Loader :: setExtensions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loaderSetExtensions(UnitTester $I) + { + $I->wantToTest("Loader - setExtensions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Loader/SetFileCheckingCallbackCest.php b/tests/unit/Loader/SetFileCheckingCallbackCest.php new file mode 100644 index 00000000000..711b3d4c854 --- /dev/null +++ b/tests/unit/Loader/SetFileCheckingCallbackCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Loader; + +use UnitTester; + +class SetFileCheckingCallbackCest +{ + /** + * Tests Phalcon\Loader :: setFileCheckingCallback() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loaderSetFileCheckingCallback(UnitTester $I) + { + $I->wantToTest("Loader - setFileCheckingCallback()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Loader/UnregisterCest.php b/tests/unit/Loader/UnregisterCest.php new file mode 100644 index 00000000000..8543358d3a6 --- /dev/null +++ b/tests/unit/Loader/UnregisterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Loader; + +use UnitTester; + +class UnregisterCest +{ + /** + * Tests Phalcon\Loader :: unregister() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loaderUnregister(UnitTester $I) + { + $I->wantToTest("Loader - unregister()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/LoaderTest.php b/tests/unit/LoaderTest.php deleted file mode 100644 index d94ac878076..00000000000 --- a/tests/unit/LoaderTest.php +++ /dev/null @@ -1,390 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class LoaderTest extends UnitTest -{ - protected $loaders; - protected $includePath; - - /** - * executed before each test - */ - protected function _before() - { - parent::_before(); - - $this->loaders = spl_autoload_functions(); - if (!is_array($this->loaders)) { - $this->loaders = []; - } - - $this->includePath = get_include_path(); - } - - /** - * executed after each test - */ - protected function _after() - { - parent::_after(); - - $loaders = spl_autoload_functions(); - if (is_array($loaders)) { - foreach ($loaders as $loader) { - spl_autoload_unregister($loader); - } - } - - foreach ($this->loaders as $loader) { - spl_autoload_register($loader); - } - - set_include_path($this->includePath); - } - - public function testNamespaces() - { - $this->specify( - "The loader does not register namespaces correctly", - function () { - $loader = new Loader(); - - $loader->registerNamespaces([ - 'Example\Base' => PATH_DATA . 'vendor/Example/Base/', - ]); - - $loader->registerNamespaces([ - 'Example\Adapter' => PATH_DATA . 'vendor/Example/Adapter/', - 'Example' => PATH_DATA . 'vendor/Example/' - ], true); - - $loader->register(); - - expect(new \Example\Adapter\Some())->isInstanceOf('Example\Adapter\Some'); - expect(new \Example\Adapter\LeSome())->isInstanceOf('Example\Adapter\LeSome'); - expect(new \Example\Engines\LeEngine())->isInstanceOf('Example\Engines\LeEngine'); - expect(new \Example\Example\Example())->isInstanceOf('Example\Example\Example'); - - $loader->unregister(); - } - ); - } - - public function testNamespacesExtensions() - { - $this->specify( - "The loader does not register namespaces correctly with different extension", - function () { - $loader = new Loader(); - - $loader->setExtensions(['inc', 'php']); - $loader->registerNamespaces([ - 'Example\Base' => PATH_DATA . 'vendor/Example/Base/', - 'Example\Adapter' => PATH_DATA . 'vendor/Example/Adapter/', - ]); - - $loader->registerNamespaces([ - 'Example' => PATH_DATA . 'vendor/Example/' - ], true); - - $loader->register(); - - expect(new \Example\Engines\LeOtherEngine())->isInstanceOf('Example\Engines\LeOtherEngine'); - - $loader->unregister(); - } - ); - } - - public function testDirectories() - { - $this->specify( - "The loader does not load classes correctly with using directories strategy", - function () { - $loader = new Loader(); - - $loader->registerDirs([ - // missing trailing slash - PATH_DATA . 'vendor/Example/Dialects', - ]); - - $loader->registerDirs([ - PATH_DATA . 'vendor/', - PATH_DATA . 'vendor/Example/Types/', - ], true); - - $loader->register(); - - expect(new \LeDialect())->isInstanceOf('LeDialect'); - expect(new \SomeType())->isInstanceOf('SomeType'); - expect(new \Example\Adapter\SomeCool())->isInstanceOf('Example\Adapter\SomeCool'); - expect(new \Example\Adapter\LeCoolSome())->isInstanceOf('Example\Adapter\LeCoolSome'); - - $loader->unregister(); - } - ); - } - - public function testFiles() - { - $this->specify( - "The loader does not load files correctly when using the files strategy", - function () { - // TEST CASE : Register the file and check if functions in the file is accessible - expect(function_exists('noClassFoo'))->false(); - expect(function_exists('noClassBar'))->false(); - expect(function_exists('noClass1Foo'))->false(); - expect(function_exists('noClass1Bar'))->false(); - expect(function_exists('noClass2Foo'))->false(); - expect(function_exists('noClass2Bar'))->false(); - $loader = new Loader(); - $loader->registerFiles([ - PATH_DATA . 'vendor/Example/Other/NoClass.php', - PATH_DATA . 'vendor/Example/Other/NoClass1.php' - ]); - $loader->registerFiles([ - PATH_DATA . 'vendor/Example/Other/NoClass2.php' - ], true); - $loader->register(); - expect(function_exists('noClassFoo'))->true(); - expect(function_exists('noClassBar'))->true(); - expect(function_exists('noClass1Foo'))->true(); - expect(function_exists('noClass1Bar'))->true(); - expect(function_exists('noClass2Foo'))->true(); - expect(function_exists('noClass2Bar'))->true(); - // TEST CASE : We are going to un-register it, but the functions should still be accessible - $loader->unregister(); - expect(function_exists('noClassFoo'))->true(); - expect(function_exists('noClassBar'))->true(); - expect(function_exists('noClass1Foo'))->true(); - expect(function_exists('noClass1Bar'))->true(); - expect(function_exists('noClass2Foo'))->true(); - expect(function_exists('noClass2Bar'))->true(); - } - ); - } - - public function testNamespacesForMultipleDirectories() - { - $this->specify( - "The loader does not load classes correctly with using multiple directories strategy", - function () { - $loader = new Loader(); - - $loader->registerNamespaces(["Example\\Base" => PATH_DATA . 'vendor/Example/Base/']); - - expect($loader->getNamespaces())->equals(["Example\\Base" => [PATH_DATA . 'vendor/Example/Base/']]); - - $loader->registerNamespaces( - [ - "Example\\Adapter" => - [ - PATH_DATA . 'vendor/Example/Adapter/', - PATH_DATA . 'vendor/Example/Adapter2/', - ], - ], - true - ); - - expect($loader->getNamespaces())->equals([ - "Example\\Base" => [ - PATH_DATA . 'vendor/Example/Base/' - ], - "Example\\Adapter" => - [ - PATH_DATA . 'vendor/Example/Adapter/', - PATH_DATA . 'vendor/Example/Adapter2/', - ], - ]); - - $loader->register(); - - expect(new \Example\Adapter\Some())->isInstanceOf('Example\Adapter\Some'); - expect(new \Example\Adapter\Another())->isInstanceOf('Example\Adapter\Another'); - expect(new \Example\Adapter\LeSome())->isInstanceOf('Example\Adapter\LeSome'); - - $loader->unregister(); - } - ); - } - - public function testDirectoriesExtensions() - { - $this->specify( - "The loader does not load classes correctly with using directories strategy and different extension", - function () { - $loader = new Loader(); - - $loader->setExtensions(['inc', 'php']); - $loader->registerDirs([ - PATH_DATA . 'vendor/Example/Dialects/', - PATH_DATA . 'vendor/Example/Types/', - PATH_DATA . 'vendor/', - ]); - - $loader->register(); - - expect(new \Example\Adapter\LeAnotherSome())->isInstanceOf('Example\Adapter\LeAnotherSome'); - - $loader->unregister(); - } - ); - } - - public function testClasses() - { - $this->specify( - "The loader does not load classes correctly", - function () { - $loader = new Loader(); - - $loader->registerClasses(['MoiTest' => PATH_DATA . 'vendor/Example/Test/MoiTest.php']); - $loader->registerClasses(['LeTest' => PATH_DATA . 'vendor/Example/Test/LeTest.php'], true); - $loader->register(); - - expect(new \MoiTest())->isInstanceOf('MoiTest'); - expect(new \LeTest())->isInstanceOf('LeTest'); - - $loader->unregister(); - } - ); - } - - public function testEvents() - { - $this->specify( - "The loader does not fire events correctly", - function () { - $loader = new Loader(); - - $loader->registerDirs([ - PATH_DATA . 'vendor/Example/Other/' - ]); - - $loader->registerClasses([ - 'AvecTest' => PATH_DATA . 'vendor/Example/Other/Avec/' - ]); - - $loader->registerNamespaces([ - 'Avec\Test' => PATH_DATA . 'vendor/Example/Other/Avec/' - ]); - - $eventsManager = new Manager(); - $trace = []; - - $eventsManager->attach('loader', function ($event, $loader) use (&$trace) { - /** @var \Phalcon\Events\Event $event */ - /** @var Loader $loader */ - if (!isset($trace[$event->getType()])) { - $trace[$event->getType()] = []; - } - $trace[$event->getType()][] = $loader->getCheckedPath(); - }); - - $loader->setEventsManager($eventsManager); - - $loader->register(); - - expect(new \VousTest())->isInstanceOf('VousTest'); - expect($trace)->equals([ - 'beforeCheckClass' => [0 => null], - 'beforeCheckPath' => [0 => PATH_DATA . 'vendor/Example/Other/VousTest.php'], - 'pathFound' => [0 => PATH_DATA . 'vendor/Example/Other/VousTest.php'], - ]); - - $loader->unregister(); - } - ); - } - - /** - * Tests Loader::setFileCheckingCallback - * - * @test - * @author Serghei Iakovlev - * @since 2018-04-29 - * @issue https://github.com/phalcon/cphalcon/issues/13360 - * @issue https://github.com/phalcon/cphalcon/issues/10472 - */ - public function shouldNotFindFilesWithFalseCallback() - { - $this->specify( - 'File checking does not work as expected', - function () { - $loader = new Loader(); - $loader->setFileCheckingCallback(function ($file) { - return false; - }); - - $loader->registerFiles([ - PATH_DATA . 'vendor/Example/Other/NoClass3.php' - ]); - - $loader->registerNamespaces([ - 'Example' => PATH_DATA . 'vendor/Example/' - ], true); - - $loader->register(); - - expect(function_exists('noClass3Foo'))->false(); - expect(function_exists('noClass3Bar'))->false(); - } - ); - } - - /** - * Tests Loader::setFileCheckingCallback - * - * @test - * @author Serghei Iakovlev - * @since 2018-04-29 - * @issue https://github.com/phalcon/cphalcon/issues/13360 - * @issue https://github.com/phalcon/cphalcon/issues/10472 - */ - public function shouldWorkWithCustomFileCheckCallback() - { - $this->specify( - 'File checking does not work as expected', - function () { - $loader = new Loader(); - $loader->setFileCheckingCallback('stream_resolve_include_path'); - - $loader->registerFiles([ - PATH_DATA . 'vendor/Example/Other/NoClass3.php' - ]); - - $loader->registerNamespaces([ - 'Example' => PATH_DATA . 'vendor/Example/' - ], true); - - $loader->register(); - - expect(function_exists('noClass3Foo'))->true(); - expect(function_exists('noClass3Bar'))->true(); - expect(class_exists('\Example\Engines\LeEngine2'))->true(); - } - ); - } -} diff --git a/tests/unit/Logger/Adapter/AlertCest.php b/tests/unit/Logger/Adapter/AlertCest.php new file mode 100644 index 00000000000..3a8d8d1fa6c --- /dev/null +++ b/tests/unit/Logger/Adapter/AlertCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter; + +use UnitTester; + +class AlertCest +{ + /** + * Tests Phalcon\Logger\Adapter :: alert() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterAlert(UnitTester $I) + { + $I->wantToTest("Logger\Adapter - alert()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/BeginCest.php b/tests/unit/Logger/Adapter/BeginCest.php new file mode 100644 index 00000000000..d385191735e --- /dev/null +++ b/tests/unit/Logger/Adapter/BeginCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter; + +use UnitTester; + +class BeginCest +{ + /** + * Tests Phalcon\Logger\Adapter :: begin() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterBegin(UnitTester $I) + { + $I->wantToTest("Logger\Adapter - begin()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Blackhole/AlertCest.php b/tests/unit/Logger/Adapter/Blackhole/AlertCest.php new file mode 100644 index 00000000000..f7e7b4c6aed --- /dev/null +++ b/tests/unit/Logger/Adapter/Blackhole/AlertCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Blackhole; + +use UnitTester; + +class AlertCest +{ + /** + * Tests Phalcon\Logger\Adapter\Blackhole :: alert() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterBlackholeAlert(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Blackhole - alert()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Blackhole/BeginCest.php b/tests/unit/Logger/Adapter/Blackhole/BeginCest.php new file mode 100644 index 00000000000..20fe0060cb8 --- /dev/null +++ b/tests/unit/Logger/Adapter/Blackhole/BeginCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Blackhole; + +use UnitTester; + +class BeginCest +{ + /** + * Tests Phalcon\Logger\Adapter\Blackhole :: begin() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterBlackholeBegin(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Blackhole - begin()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Blackhole/CloseCest.php b/tests/unit/Logger/Adapter/Blackhole/CloseCest.php new file mode 100644 index 00000000000..2c58ba9e4dd --- /dev/null +++ b/tests/unit/Logger/Adapter/Blackhole/CloseCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Blackhole; + +use UnitTester; + +class CloseCest +{ + /** + * Tests Phalcon\Logger\Adapter\Blackhole :: close() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterBlackholeClose(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Blackhole - close()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Blackhole/CommitCest.php b/tests/unit/Logger/Adapter/Blackhole/CommitCest.php new file mode 100644 index 00000000000..b6cb3181206 --- /dev/null +++ b/tests/unit/Logger/Adapter/Blackhole/CommitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Blackhole; + +use UnitTester; + +class CommitCest +{ + /** + * Tests Phalcon\Logger\Adapter\Blackhole :: commit() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterBlackholeCommit(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Blackhole - commit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Blackhole/CriticalCest.php b/tests/unit/Logger/Adapter/Blackhole/CriticalCest.php new file mode 100644 index 00000000000..75b86790651 --- /dev/null +++ b/tests/unit/Logger/Adapter/Blackhole/CriticalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Blackhole; + +use UnitTester; + +class CriticalCest +{ + /** + * Tests Phalcon\Logger\Adapter\Blackhole :: critical() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterBlackholeCritical(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Blackhole - critical()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Blackhole/DebugCest.php b/tests/unit/Logger/Adapter/Blackhole/DebugCest.php new file mode 100644 index 00000000000..64542f17dd4 --- /dev/null +++ b/tests/unit/Logger/Adapter/Blackhole/DebugCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Blackhole; + +use UnitTester; + +class DebugCest +{ + /** + * Tests Phalcon\Logger\Adapter\Blackhole :: debug() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterBlackholeDebug(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Blackhole - debug()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Blackhole/EmergencyCest.php b/tests/unit/Logger/Adapter/Blackhole/EmergencyCest.php new file mode 100644 index 00000000000..89426b3f6d4 --- /dev/null +++ b/tests/unit/Logger/Adapter/Blackhole/EmergencyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Blackhole; + +use UnitTester; + +class EmergencyCest +{ + /** + * Tests Phalcon\Logger\Adapter\Blackhole :: emergency() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterBlackholeEmergency(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Blackhole - emergency()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Blackhole/ErrorCest.php b/tests/unit/Logger/Adapter/Blackhole/ErrorCest.php new file mode 100644 index 00000000000..c014b1ad991 --- /dev/null +++ b/tests/unit/Logger/Adapter/Blackhole/ErrorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Blackhole; + +use UnitTester; + +class ErrorCest +{ + /** + * Tests Phalcon\Logger\Adapter\Blackhole :: error() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterBlackholeError(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Blackhole - error()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Blackhole/GetFormatterCest.php b/tests/unit/Logger/Adapter/Blackhole/GetFormatterCest.php new file mode 100644 index 00000000000..be9e025b57a --- /dev/null +++ b/tests/unit/Logger/Adapter/Blackhole/GetFormatterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Blackhole; + +use UnitTester; + +class GetFormatterCest +{ + /** + * Tests Phalcon\Logger\Adapter\Blackhole :: getFormatter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterBlackholeGetFormatter(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Blackhole - getFormatter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Blackhole/GetLogLevelCest.php b/tests/unit/Logger/Adapter/Blackhole/GetLogLevelCest.php new file mode 100644 index 00000000000..3acb0a01399 --- /dev/null +++ b/tests/unit/Logger/Adapter/Blackhole/GetLogLevelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Blackhole; + +use UnitTester; + +class GetLogLevelCest +{ + /** + * Tests Phalcon\Logger\Adapter\Blackhole :: getLogLevel() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterBlackholeGetLogLevel(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Blackhole - getLogLevel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Blackhole/InfoCest.php b/tests/unit/Logger/Adapter/Blackhole/InfoCest.php new file mode 100644 index 00000000000..2152e641d12 --- /dev/null +++ b/tests/unit/Logger/Adapter/Blackhole/InfoCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Blackhole; + +use UnitTester; + +class InfoCest +{ + /** + * Tests Phalcon\Logger\Adapter\Blackhole :: info() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterBlackholeInfo(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Blackhole - info()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Blackhole/IsTransactionCest.php b/tests/unit/Logger/Adapter/Blackhole/IsTransactionCest.php new file mode 100644 index 00000000000..cef4cb57386 --- /dev/null +++ b/tests/unit/Logger/Adapter/Blackhole/IsTransactionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Blackhole; + +use UnitTester; + +class IsTransactionCest +{ + /** + * Tests Phalcon\Logger\Adapter\Blackhole :: isTransaction() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterBlackholeIsTransaction(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Blackhole - isTransaction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Blackhole/LogCest.php b/tests/unit/Logger/Adapter/Blackhole/LogCest.php new file mode 100644 index 00000000000..cd8dc8123fa --- /dev/null +++ b/tests/unit/Logger/Adapter/Blackhole/LogCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Blackhole; + +use UnitTester; + +class LogCest +{ + /** + * Tests Phalcon\Logger\Adapter\Blackhole :: log() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterBlackholeLog(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Blackhole - log()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Blackhole/LogInternalCest.php b/tests/unit/Logger/Adapter/Blackhole/LogInternalCest.php new file mode 100644 index 00000000000..8be329d9dc9 --- /dev/null +++ b/tests/unit/Logger/Adapter/Blackhole/LogInternalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Blackhole; + +use UnitTester; + +class LogInternalCest +{ + /** + * Tests Phalcon\Logger\Adapter\Blackhole :: logInternal() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterBlackholeLogInternal(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Blackhole - logInternal()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Blackhole/NoticeCest.php b/tests/unit/Logger/Adapter/Blackhole/NoticeCest.php new file mode 100644 index 00000000000..e9eb42bb407 --- /dev/null +++ b/tests/unit/Logger/Adapter/Blackhole/NoticeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Blackhole; + +use UnitTester; + +class NoticeCest +{ + /** + * Tests Phalcon\Logger\Adapter\Blackhole :: notice() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterBlackholeNotice(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Blackhole - notice()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Blackhole/RollbackCest.php b/tests/unit/Logger/Adapter/Blackhole/RollbackCest.php new file mode 100644 index 00000000000..028003e4566 --- /dev/null +++ b/tests/unit/Logger/Adapter/Blackhole/RollbackCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Blackhole; + +use UnitTester; + +class RollbackCest +{ + /** + * Tests Phalcon\Logger\Adapter\Blackhole :: rollback() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterBlackholeRollback(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Blackhole - rollback()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Blackhole/SetFormatterCest.php b/tests/unit/Logger/Adapter/Blackhole/SetFormatterCest.php new file mode 100644 index 00000000000..e10741abf41 --- /dev/null +++ b/tests/unit/Logger/Adapter/Blackhole/SetFormatterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Blackhole; + +use UnitTester; + +class SetFormatterCest +{ + /** + * Tests Phalcon\Logger\Adapter\Blackhole :: setFormatter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterBlackholeSetFormatter(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Blackhole - setFormatter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Blackhole/SetLogLevelCest.php b/tests/unit/Logger/Adapter/Blackhole/SetLogLevelCest.php new file mode 100644 index 00000000000..47a92110702 --- /dev/null +++ b/tests/unit/Logger/Adapter/Blackhole/SetLogLevelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Blackhole; + +use UnitTester; + +class SetLogLevelCest +{ + /** + * Tests Phalcon\Logger\Adapter\Blackhole :: setLogLevel() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterBlackholeSetLogLevel(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Blackhole - setLogLevel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Blackhole/WarningCest.php b/tests/unit/Logger/Adapter/Blackhole/WarningCest.php new file mode 100644 index 00000000000..9f4d4a5c3dd --- /dev/null +++ b/tests/unit/Logger/Adapter/Blackhole/WarningCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Blackhole; + +use UnitTester; + +class WarningCest +{ + /** + * Tests Phalcon\Logger\Adapter\Blackhole :: warning() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterBlackholeWarning(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Blackhole - warning()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/CloseCest.php b/tests/unit/Logger/Adapter/CloseCest.php new file mode 100644 index 00000000000..360a803c69b --- /dev/null +++ b/tests/unit/Logger/Adapter/CloseCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter; + +use UnitTester; + +class CloseCest +{ + /** + * Tests Phalcon\Logger\Adapter :: close() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterClose(UnitTester $I) + { + $I->wantToTest("Logger\Adapter - close()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/CommitCest.php b/tests/unit/Logger/Adapter/CommitCest.php new file mode 100644 index 00000000000..42f8b1e255f --- /dev/null +++ b/tests/unit/Logger/Adapter/CommitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter; + +use UnitTester; + +class CommitCest +{ + /** + * Tests Phalcon\Logger\Adapter :: commit() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterCommit(UnitTester $I) + { + $I->wantToTest("Logger\Adapter - commit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/CriticalCest.php b/tests/unit/Logger/Adapter/CriticalCest.php new file mode 100644 index 00000000000..89ac0e11d47 --- /dev/null +++ b/tests/unit/Logger/Adapter/CriticalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter; + +use UnitTester; + +class CriticalCest +{ + /** + * Tests Phalcon\Logger\Adapter :: critical() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterCritical(UnitTester $I) + { + $I->wantToTest("Logger\Adapter - critical()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/DebugCest.php b/tests/unit/Logger/Adapter/DebugCest.php new file mode 100644 index 00000000000..35b2711d47c --- /dev/null +++ b/tests/unit/Logger/Adapter/DebugCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter; + +use UnitTester; + +class DebugCest +{ + /** + * Tests Phalcon\Logger\Adapter :: debug() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterDebug(UnitTester $I) + { + $I->wantToTest("Logger\Adapter - debug()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/EmergencyCest.php b/tests/unit/Logger/Adapter/EmergencyCest.php new file mode 100644 index 00000000000..e09886e9600 --- /dev/null +++ b/tests/unit/Logger/Adapter/EmergencyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter; + +use UnitTester; + +class EmergencyCest +{ + /** + * Tests Phalcon\Logger\Adapter :: emergency() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterEmergency(UnitTester $I) + { + $I->wantToTest("Logger\Adapter - emergency()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/ErrorCest.php b/tests/unit/Logger/Adapter/ErrorCest.php new file mode 100644 index 00000000000..e5b2976e10a --- /dev/null +++ b/tests/unit/Logger/Adapter/ErrorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter; + +use UnitTester; + +class ErrorCest +{ + /** + * Tests Phalcon\Logger\Adapter :: error() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterError(UnitTester $I) + { + $I->wantToTest("Logger\Adapter - error()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/AlertCest.php b/tests/unit/Logger/Adapter/File/AlertCest.php new file mode 100644 index 00000000000..11746653a99 --- /dev/null +++ b/tests/unit/Logger/Adapter/File/AlertCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class AlertCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: alert() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileAlert(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - alert()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/BeginCest.php b/tests/unit/Logger/Adapter/File/BeginCest.php new file mode 100644 index 00000000000..16424a20c73 --- /dev/null +++ b/tests/unit/Logger/Adapter/File/BeginCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class BeginCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: begin() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileBegin(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - begin()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/CloseCest.php b/tests/unit/Logger/Adapter/File/CloseCest.php new file mode 100644 index 00000000000..73a6495e11b --- /dev/null +++ b/tests/unit/Logger/Adapter/File/CloseCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class CloseCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: close() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileClose(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - close()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/CommitCest.php b/tests/unit/Logger/Adapter/File/CommitCest.php new file mode 100644 index 00000000000..c8ef8df012e --- /dev/null +++ b/tests/unit/Logger/Adapter/File/CommitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class CommitCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: commit() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileCommit(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - commit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/ConstructCest.php b/tests/unit/Logger/Adapter/File/ConstructCest.php new file mode 100644 index 00000000000..dff61f6dcab --- /dev/null +++ b/tests/unit/Logger/Adapter/File/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileConstruct(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/CriticalCest.php b/tests/unit/Logger/Adapter/File/CriticalCest.php new file mode 100644 index 00000000000..d717c096beb --- /dev/null +++ b/tests/unit/Logger/Adapter/File/CriticalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class CriticalCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: critical() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileCritical(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - critical()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/DebugCest.php b/tests/unit/Logger/Adapter/File/DebugCest.php new file mode 100644 index 00000000000..6fe3ddd879e --- /dev/null +++ b/tests/unit/Logger/Adapter/File/DebugCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class DebugCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: debug() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileDebug(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - debug()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/EmergencyCest.php b/tests/unit/Logger/Adapter/File/EmergencyCest.php new file mode 100644 index 00000000000..49832bbcd84 --- /dev/null +++ b/tests/unit/Logger/Adapter/File/EmergencyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class EmergencyCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: emergency() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileEmergency(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - emergency()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/ErrorCest.php b/tests/unit/Logger/Adapter/File/ErrorCest.php new file mode 100644 index 00000000000..591a80ee53d --- /dev/null +++ b/tests/unit/Logger/Adapter/File/ErrorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class ErrorCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: error() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileError(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - error()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/GetFormatterCest.php b/tests/unit/Logger/Adapter/File/GetFormatterCest.php new file mode 100644 index 00000000000..b0a7e9eadad --- /dev/null +++ b/tests/unit/Logger/Adapter/File/GetFormatterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class GetFormatterCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: getFormatter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileGetFormatter(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - getFormatter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/GetLogLevelCest.php b/tests/unit/Logger/Adapter/File/GetLogLevelCest.php new file mode 100644 index 00000000000..fa33c6d3c38 --- /dev/null +++ b/tests/unit/Logger/Adapter/File/GetLogLevelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class GetLogLevelCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: getLogLevel() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileGetLogLevel(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - getLogLevel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/GetPathCest.php b/tests/unit/Logger/Adapter/File/GetPathCest.php new file mode 100644 index 00000000000..2c91c6e4947 --- /dev/null +++ b/tests/unit/Logger/Adapter/File/GetPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class GetPathCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: getPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileGetPath(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - getPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/InfoCest.php b/tests/unit/Logger/Adapter/File/InfoCest.php new file mode 100644 index 00000000000..07c471415fb --- /dev/null +++ b/tests/unit/Logger/Adapter/File/InfoCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class InfoCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: info() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileInfo(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - info()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/IsTransactionCest.php b/tests/unit/Logger/Adapter/File/IsTransactionCest.php new file mode 100644 index 00000000000..317053251c7 --- /dev/null +++ b/tests/unit/Logger/Adapter/File/IsTransactionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class IsTransactionCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: isTransaction() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileIsTransaction(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - isTransaction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/LogCest.php b/tests/unit/Logger/Adapter/File/LogCest.php new file mode 100644 index 00000000000..50a0695884d --- /dev/null +++ b/tests/unit/Logger/Adapter/File/LogCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class LogCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: log() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileLog(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - log()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/LogInternalCest.php b/tests/unit/Logger/Adapter/File/LogInternalCest.php new file mode 100644 index 00000000000..8c477ec3dbf --- /dev/null +++ b/tests/unit/Logger/Adapter/File/LogInternalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class LogInternalCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: logInternal() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileLogInternal(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - logInternal()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/NoticeCest.php b/tests/unit/Logger/Adapter/File/NoticeCest.php new file mode 100644 index 00000000000..556f87b7475 --- /dev/null +++ b/tests/unit/Logger/Adapter/File/NoticeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class NoticeCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: notice() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileNotice(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - notice()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/RollbackCest.php b/tests/unit/Logger/Adapter/File/RollbackCest.php new file mode 100644 index 00000000000..1ab9fc33f2f --- /dev/null +++ b/tests/unit/Logger/Adapter/File/RollbackCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class RollbackCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: rollback() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileRollback(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - rollback()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/SetFormatterCest.php b/tests/unit/Logger/Adapter/File/SetFormatterCest.php new file mode 100644 index 00000000000..0619163db10 --- /dev/null +++ b/tests/unit/Logger/Adapter/File/SetFormatterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class SetFormatterCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: setFormatter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileSetFormatter(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - setFormatter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/SetLogLevelCest.php b/tests/unit/Logger/Adapter/File/SetLogLevelCest.php new file mode 100644 index 00000000000..4d1ad60f234 --- /dev/null +++ b/tests/unit/Logger/Adapter/File/SetLogLevelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class SetLogLevelCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: setLogLevel() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileSetLogLevel(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - setLogLevel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/WakeupCest.php b/tests/unit/Logger/Adapter/File/WakeupCest.php new file mode 100644 index 00000000000..6e868cdaf31 --- /dev/null +++ b/tests/unit/Logger/Adapter/File/WakeupCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class WakeupCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: __wakeup() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileWakeup(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - __wakeup()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/File/WarningCest.php b/tests/unit/Logger/Adapter/File/WarningCest.php new file mode 100644 index 00000000000..ea1b2d70b9d --- /dev/null +++ b/tests/unit/Logger/Adapter/File/WarningCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\File; + +use UnitTester; + +class WarningCest +{ + /** + * Tests Phalcon\Logger\Adapter\File :: warning() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFileWarning(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\File - warning()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/FileCest.php b/tests/unit/Logger/Adapter/FileCest.php new file mode 100644 index 00000000000..8616fb4c561 --- /dev/null +++ b/tests/unit/Logger/Adapter/FileCest.php @@ -0,0 +1,624 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter; + +use Phalcon\Logger; +use Phalcon\Logger\Adapter\File; +use Phalcon\Logger\Exception; +use Phalcon\Logger\Formatter\Json; +use Phalcon\Logger\Formatter\Line; +use Phalcon\Logger\Multiple; +use UnitTester; + +class FileCest +{ + protected $logPath = ''; + + /** + * executed before each test + */ + public function _before(UnitTester $I) + { + $this->logPath = outputFolder('tests/logs/'); + } + + /** + * Tests the creation of the log file + * + * @author Nikos Dimopoulos + * @since 2014-09-13 + */ + public function testLoggerAdapterFileCreationDefault(UnitTester $I) + { + $fileName = $I->getNewFileName('log', 'log'); + + $logger = new File($this->logPath . $fileName); + $logger->log('Hello'); + $logger->close(); + + $I->amInPath($this->logPath); + $I->seeFileFound($fileName); + $I->safeDeleteFile($fileName); + } + + /** + * Tests the creation of the log file +w + * + * @author Nikos Dimopoulos + * @since 2014-09-13 + */ + public function testLoggerAdapterFileCreationWrite(UnitTester $I) + { + $fileName = $I->getNewFileName('log', 'log'); + $params = ['mode' => 'w']; + + $logger = new File($this->logPath . $fileName); + $logger->log('Hello'); + $logger->close(); + + $logger = new File($this->logPath . $fileName, $params); + $logger->log('New Contents'); + $logger->close(); + + $I->amInPath($this->logPath); + $I->openFile($fileName); + $I->seeInThisFile('New Contents'); + $I->safeDeleteFile($fileName); + } + + /** + * Tests if opening the file with r and logging throws exception + * + * @author Nikos Dimopoulos + * @since 2014-09-13 + * + * @expectedException \Phalcon\Logger\Exception + */ + public function testLoggerAdapterFileOpenReadThrowsException(UnitTester $I) + { + $fileName = $I->getNewFileName('log', 'log'); + $I->expectThrowable( + new Exception('Logger must be opened in append or write mode'), + function () use ($fileName) { + $params = ['mode' => 'r']; + + $logger = new File($this->logPath . $fileName); + $logger->log('Hello'); + $logger->close(); + + $logger = new File($this->logPath . $fileName, $params); + $logger->log('New Contents'); + $logger->close(); + } + ); + + $I->amInPath($this->logPath); + $I->safeDeleteFile($fileName); + } + + /** + * Tests how many lines the file has on creation + * + * @author Nikos Dimopoulos + * @since 2014-09-13 + */ + public function testLoggerAdapterFileNumberOfMessagesLogged(UnitTester $I) + { + $fileName = $I->getNewFileName('log', 'log'); + + $logger = new File($this->logPath . $fileName); + $logger->log('Hello'); + $logger->log('Goodbye'); + $logger->close(); + + $I->amInPath($this->logPath); + $I->openFile($fileName); + $expected = sprintf( + "[%s][DEBUG] Hello\n[%s][DEBUG] Goodbye", + date('D, d M y H:i:s O'), + date('D, d M y H:i:s O') + ); + $I->seeInThisFile($expected); + $I->safeDeleteFile($fileName); + } + + /** + * Tests default logging uses EMERGENCY + * + * @author Nikos Dimopoulos + * @since 2014-09-13 + */ + public function testLoggerAdapterFileDefaultLoggingUsesDebug(UnitTester $I) + { + $this->runLogging($I, 'Hello', null); + } + + /** + * Runs the various logging function testLoggerAdapterFiles + * + * @author Nikos Dimopoulos + * @since 2014-09-13 + * + * @param UnitTester $I + * @param mixed $level + * @param null $name + */ + protected function runLogging(UnitTester $I, $level, $name = null) + { + $fileName = $I->getNewFileName('log', 'log'); + $logger = new File($this->logPath . $fileName); + if (is_null($name)) { + $logger->log($level); + $name = 'DEBUG'; + } else { + $logger->log($level, 'Hello'); + } + $logger->close(); + + $I->amInPath($this->logPath); + $I->openFile($fileName); + $expected = sprintf( + "[%s][%s] Hello", + date('D, d M y H:i:s O'), + $name + ); + $I->seeInThisFile($expected); + $I->safeDeleteFile($fileName); + } + + /** + * Tests ERROR logging + * + * @author Nikos Dimopoulos + * @since 2012-09-17 + */ + public function testLoggerAdapterFileErrorLogging(UnitTester $I) + { + $this->runLogging($I, Logger::ERROR, 'ERROR'); + } + + /** + * Tests DEBUG logging + * + * @author Nikos Dimopoulos + * @since 2012-09-17 + */ + public function testLoggerAdapterFileDebugLogging(UnitTester $I) + { + $this->runLogging($I, Logger::DEBUG, 'DEBUG'); + } + + /** + * Tests NOTICE logging + * + * @author Nikos Dimopoulos + * @since 2012-09-17 + */ + public function testLoggerAdapterFileNoticeLogging(UnitTester $I) + { + $this->runLogging($I, Logger::NOTICE, 'NOTICE'); + } + + /** + * Tests INFO logging + * + * @author Nikos Dimopoulos + * @since 2012-09-17 + */ + public function testLoggerAdapterFileInfoLogging(UnitTester $I) + { + $this->runLogging($I, Logger::INFO, 'INFO'); + } + + /** + * Tests WARNING logging + * + * @author Nikos Dimopoulos + * @since 2012-09-17 + */ + public function testLoggerAdapterFileWarningLogging(UnitTester $I) + { + $this->runLogging($I, Logger::WARNING, 'WARNING'); + } + + /** + * Tests ALERT logging + * + * @author Nikos Dimopoulos + * @since 2012-09-17 + */ + public function testLoggerAdapterFileAlertLogging(UnitTester $I) + { + $this->runLogging($I, Logger::ALERT, 'ALERT'); + } + + /** + * Tests multiple loggers + * + * @issue https://github.com/phalcon/cphalcon/issues/2798 + * @author Phalcon Team + * @since 2016-01-28 + */ + public function testMultipleLoggers(UnitTester $I) + { + $file1 = $I->getNewFileName('log', 'log'); + $file2 = $I->getNewFileName('log', 'log'); + + $logger = new Multiple(); + + $logger->push(new File($this->logPath . $file1)); + $logger->push(new File($this->logPath . $file2)); + + $logger->setFormatter(new Json()); + + $expected = '{"type":"DEBUG","message":"This is a message","timestamp":' . time() . '}' . PHP_EOL; + $logger->log('This is a message'); + + $expected .= '{"type":"ERROR","message":"This is an error","timestamp":' . time() . '}' . PHP_EOL; + $logger->log("This is an error", Logger::ERROR); + + $expected .= '{"type":"ERROR","message":"This is another error","timestamp":' . time() . '}' . PHP_EOL; + $logger->error("This is another error"); + + $I->amInPath($this->logPath); + + $I->openFile($file1); + $I->seeFileContentsEqual($expected); + $I->safeDeleteFile($file1); + + $I->openFile($file2); + $I->seeFileContentsEqual($expected); + $I->safeDeleteFile($file2); + } + + /** + * Tests multiple log levels + * + * @author Nikos Dimopoulos + * @since 2012-09-17 + */ + public function testLoggerAdapterFileMultipleLogLevelsSetProperly(UnitTester $I) + { + $fileName = $I->getNewFileName('log', 'log'); + + $logger = new File($this->logPath . $fileName); + $logger->log(Logger::DEBUG, 'Hello Debug'); + $logger->log(Logger::NOTICE, 'Hello Notice'); + $logger->log(Logger::ERROR, 'Hello Error'); + $logger->log(Logger::ALERT, 'Hello Alert'); + $logger->log(Logger::WARNING, 'Hello Warning'); + $logger->log(Logger::INFO, 'Hello Info'); + $logger->log('Hello Default'); + $logger->close(); + + $I->amInPath($this->logPath); + $I->openFile($fileName); + + $expected = sprintf( + "[%s][DEBUG] Hello Debug\n[%s][NOTICE] Hello Notice\n[%s][ERROR] Hello Error\n" . + "[%s][ALERT] Hello Alert\n[%s][WARNING] Hello Warning\n[%s][INFO] Hello Info\n" . + "[%s][DEBUG] Hello Default\n", + date('D, d M y H:i:s O'), + date('D, d M y H:i:s O'), + date('D, d M y H:i:s O'), + date('D, d M y H:i:s O'), + date('D, d M y H:i:s O'), + date('D, d M y H:i:s O'), + date('D, d M y H:i:s O') + ); + $I->seeFileContentsEqual($expected); + $I->safeDeleteFile($fileName); + } + + /** + * Tests the creation of the log file with debug() + * + * @author Nikos Dimopoulos + * @since 2014-09-13 + */ + public function testLoggerAdapterFileCreationMessagesLog(UnitTester $I) + { + $levels = [ + 'debug', + 'error', + 'info', + 'notice', + 'warning', + 'alert', + ]; + + foreach ($levels as $level) { + $this->createOfLogFile($I, $level); + $this->numberOfMessagesLogged($I, $level); + $this->logging($I, $level); + } + } + + /** + * Runs the test for the creation of a file with logging + * + * @author Nikos Dimopoulos + * @since 2014-09-13 + * + * @param UnitTester $I + * @param string $function + */ + protected function createOfLogFile(UnitTester $I, $function) + { + $fileName = $I->getNewFileName('log', 'log'); + $logger = new File($this->logPath . $fileName); + $logger->$function('Hello'); + $logger->close(); + + $I->amInPath($this->logPath); + $I->seeFileFound($fileName); + $I->safeDeleteFile($fileName); + } + + /** + * Runs the test for how many lines the file has on creation + * + * @author Nikos Dimopoulos + * @since 2014-09-13 + * + * @param UnitTester $I + * @param string $function + */ + protected function numberOfMessagesLogged(UnitTester $I, $function) + { + $fileName = $I->getNewFileName('log', 'log'); + $logger = new File($this->logPath . $fileName); + $logger->$function('Hello'); + $logger->$function('Goodbye'); + $logger->close(); + + $I->amInPath($this->logPath); + $I->openFile($fileName); + $I->seeNumberNewLines(3); + $I->safeDeleteFile($fileName); + } + + /** + * Runs logging test + * + * @author Nikos Dimopoulos + * @since 2012-09-17 + * + * @param UnitTester $I + * @param $function + */ + protected function logging(UnitTester $I, $function) + { + $fileName = $I->getNewFileName('log', 'log'); + $logger = new File($this->logPath . $fileName); + $logger->$function('Hello'); + $logger->close(); + + $I->amInPath($this->logPath); + $contents = \file($this->logPath . $fileName); + $I->safeDeleteFile($fileName); + + $position = strpos($contents[0], '[' . strtoupper($function) . ']'); + $actual = ($position !== false); + $I->assertTrue($actual); + + $position = strpos($contents[0], 'Hello'); + $actual = ($position !== false); + $I->assertTrue($actual); + } + + /** + * Tests set/getFormat + * + * @author Nikos Dimopoulos + * @since 2012-09-17 + */ + public function testLoggerAdapterFileSetGetFormat(UnitTester $I) + { + $formatter = new Line(); + + $format = '%type%|%date%|%message%'; + $formatter->setFormat($format); + + $expected = $format; + $actual = $formatter->getFormat(); + + $I->assertEquals( + $expected, + $actual, + 'set/getFormat does not correctly set/get the format' + ); + } + + /** + * Tests new format logs correctly + * + * @author Nikos Dimopoulos + * @since 2012-09-17 + */ + public function testLoggerAdapterFileNewFormatLogsCorrectly(UnitTester $I) + { + $fileName = $I->getNewFileName('log', 'log'); + $logger = new File($this->logPath . $fileName); + $formatter = new Line('%type%|%date%|%message%'); + + $logger->setFormatter($formatter); + $logger->log('Hello'); + $logger->close(); + + $contents = \file($this->logPath . $fileName); + $message = explode('|', $contents[0]); + $I->safeDeleteFile($this->logPath . $fileName); + + $I->assertEquals( + 'DEBUG', + $message[0], + 'New format, type not set correctly' + ); + $I->assertEquals( + 'Hello' . PHP_EOL, + $message[2], + 'New format, message not set correctly' + ); + } + + /** + * Tests setting Json formatter + * + * @issue https://github.com/phalcon/cphalcon/issues/2262 + * @author Phalcon Team + * @since 2016-01-28 + */ + public function testLoggerAdapterFileSettingJsonFormatter(UnitTester $I) + { + $fileName = $I->getNewFileName('log', 'log'); + + $logger = new File($this->logPath . $fileName); + $logger->setFormatter(new Json()); + + $logger->log('This is a message'); + $logger->log("This is an error", Logger::ERROR); + $logger->error("This is another error"); + + $I->amInPath($this->logPath); + $I->openFile($fileName); + + $expected = sprintf( + '{"type":"DEBUG","message":"This is a message","timestamp":%s}' . PHP_EOL . + '{"type":"ERROR","message":"This is an error","timestamp":%s}' . PHP_EOL . + '{"type":"ERROR","message":"This is another error","timestamp":%s}', + time(), + time(), + time() + ); + $I->seeInThisFile($expected); + $I->safeDeleteFile($fileName); + } + + /** + * Tests new format logs correctly + * + * @author Nikos Dimopoulos + * @since 2012-09-17 + */ + public function testLoggerAdapterFileNewFormatFormatsDateCorrectly(UnitTester $I) + { + $fileName = $I->getNewFileName('log', 'log'); + $logger = new File($this->logPath . $fileName); + $formatter = new Line('%type%|%date%|%message%'); + + $logger->setFormatter($formatter); + $logger->log('Hello'); + $logger->close(); + + $contents = \file($this->logPath . $fileName); + $message = explode('|', $contents[0]); + $I->safeDeleteFile($this->logPath . $fileName); + + $date = new \DateTime($message[1]); + + $expected = date('Y-m-d H'); + $actual = $date->format('Y-m-d H'); + + $I->assertEquals( + $expected, + $actual, + 'Date format not set properly' + ); + } + + /** + * Tests the begin/commit + * + * @author Phalcon Team + * @since 2014-09-13 + */ + public function testLoggerAdapterFileCommit(UnitTester $I) + { + $fileName = $I->getNewFileName('log', 'log'); + $logger = new File($this->logPath . $fileName); + $logger->begin(); + $logger->log('Hello'); + $logger->commit(); + + $I->amInPath($this->logPath); + $I->openFile($fileName); + $I->seeNumberNewLines(2); + + $logger->close(); + $I->safeDeleteFile($fileName); + + $fileName = $I->getNewFileName('log', 'log'); + + $logger = new File($this->logPath . $fileName); + $logger->log('Hello'); + + $logger->begin(); + + $logger->log('Message 1'); + $logger->log('Message 2'); + $logger->log('Message 3'); + + $logger->commit(); + + $logger->close(); + + $contents = \file($this->logPath . $fileName); + $I->safeDeleteFile($this->logPath . $fileName); + + $expected = 4; + $actual = count($contents); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests the begin/rollback + * + * @author Phalcon Team + * @since 2014-09-13 + */ + public function testLoggerAdapterFileRollback(UnitTester $I) + { + $fileName = $I->getNewFileName('log', 'log'); + $logger = new File($this->logPath . $fileName); + $logger->log('Hello'); + + $logger->close(); + + $I->amInPath($this->logPath); + $I->openFile($fileName); + $I->seeFileContentsEqual(sprintf("[%s][DEBUG] Hello\n", date('D, d M y H:i:s O'))); + $I->safeDeleteFile($fileName); + + $fileName = $I->getNewFileName('log', 'log'); + + $logger = new File($this->logPath . $fileName); + $logger->log('Hello'); + + $logger->begin(); + + $logger->log('Message 1'); + $logger->log('Message 2'); + $logger->log('Message 3'); + + $logger->rollback(); + + $logger->close(); + + $I->amInPath($this->logPath); + $I->openFile($fileName); + + $I->seeFileContentsEqual(sprintf("[%s][DEBUG] Hello\n", date('D, d M y H:i:s O'))); + $I->safeDeleteFile($fileName); + } +} diff --git a/tests/unit/Logger/Adapter/FileTest.php b/tests/unit/Logger/Adapter/FileTest.php deleted file mode 100644 index 9c59c68dd1a..00000000000 --- a/tests/unit/Logger/Adapter/FileTest.php +++ /dev/null @@ -1,1002 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Logger\Adapter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FileTest extends UnitTest -{ - protected $logPath = ''; - - /** - * executed before each test - */ - public function _before() - { - parent::_before(); - - $this->logPath = PATH_OUTPUT . 'tests/logs/'; - } - - /** - * Tests the creation of the log file - * - * @author Nikos Dimopoulos - * @since 2014-09-13 - */ - public function testLoggerAdapterFileCreationDefault() - { - $this->specify( - "logging in a file does not create the file", - function () { - $I = $this->tester; - $fileName = $I->getNewFileName('log', 'log'); - - $logger = new File($this->logPath . $fileName); - $logger->log('Hello'); - $logger->close(); - - $I->amInPath($this->logPath); - $I->seeFileFound($fileName); - $I->deleteFile($fileName); - } - ); - } - - /** - * Tests the creation of the log file +w - * - * @author Nikos Dimopoulos - * @since 2014-09-13 - */ - public function testLoggerAdapterFileCreationWrite() - { - $this->specify( - "logging in a file with write mode does not create the file", - function () { - $I = $this->tester; - $fileName = $I->getNewFileName('log', 'log'); - $params = ['mode' => 'w']; - - $logger = new File($this->logPath . $fileName); - $logger->log('Hello'); - $logger->close(); - - $logger = new File($this->logPath . $fileName, $params); - $logger->log('New Contents'); - $logger->close(); - - $I->amInPath($this->logPath); - $I->openFile($fileName); - $I->seeInThisFile('New Contents'); - $I->deleteFile($fileName); - } - ); - } - - /** - * Tests if opening the file with r and logging throws exception - * - * @author Nikos Dimopoulos - * @since 2014-09-13 - * - * @expectedException \Phalcon\Logger\Exception - */ - public function testLoggerAdapterFileOpenReadThrowsException() - { - $I = $this->tester; - $fileName = $I->getNewFileName('log', 'log'); - - $this->specify( - "logging in a file with write mode does not create the file", - function () use ($fileName) { - $params = array('mode' => 'r'); - - $logger = new File($this->logPath . $fileName); - $logger->log('Hello'); - $logger->close(); - - $logger = new File($this->logPath . $fileName, $params); - $logger->log('New Contents'); - $logger->close(); - } - ); - - $I->amInPath($this->logPath); - $I->deleteFile($fileName); - } - - /** - * Tests how many lines the file has on creation - * - * @author Nikos Dimopoulos - * @since 2014-09-13 - */ - public function testLoggerAdapterFileNumberOfMessagesLogged() - { - $this->specify( - "Log does not contain correct number of messages", - function () { - $I = $this->tester; - $fileName = $I->getNewFileName('log', 'log'); - - $logger = new File($this->logPath . $fileName); - $logger->log('Hello'); - $logger->log('Goodbye'); - $logger->close(); - - $I->amInPath($this->logPath); - $I->openFile($fileName); - $expected = sprintf( - "[%s][DEBUG] Hello\n[%s][DEBUG] Goodbye", - date('D, d M y H:i:s O'), - date('D, d M y H:i:s O') - ); - $I->seeInThisFile($expected); - $I->deleteFile($fileName); - } - ); - } - - /** - * Tests default logging uses EMERGENCY - * - * @author Nikos Dimopoulos - * @since 2014-09-13 - */ - public function testLoggerAdapterFileDefaultLoggingUsesDebug() - { - $this->specify( - "default logging does not use debug", - function () { - $this->runLogging('Hello', null); - } - ); - } - - /** - * Tests ERROR logging - * - * @author Nikos Dimopoulos - * @since 2012-09-17 - */ - public function testLoggerAdapterFileErrorLogging() - { - $this->specify( - "ERROR logging not correct", - function () { - $this->runLogging(Logger::ERROR, 'ERROR'); - } - ); - } - - /** - * Tests DEBUG logging - * - * @author Nikos Dimopoulos - * @since 2012-09-17 - */ - public function testLoggerAdapterFileDebugLogging() - { - $this->specify( - "DEBUG logging not correct", - function () { - $this->runLogging(Logger::DEBUG, 'DEBUG'); - } - ); - } - - /** - * Tests NOTICE logging - * - * @author Nikos Dimopoulos - * @since 2012-09-17 - */ - public function testLoggerAdapterFileNoticeLogging() - { - $this->specify( - "NOTICE logging not correct", - function () { - $this->runLogging(Logger::NOTICE, 'NOTICE'); - } - ); - } - - /** - * Tests INFO logging - * - * @author Nikos Dimopoulos - * @since 2012-09-17 - */ - public function testLoggerAdapterFileInfoLogging() - { - $this->specify( - "INFO logging not correct", - function () { - $this->runLogging(Logger::INFO, 'INFO'); - } - ); - } - - /** - * Tests WARNING logging - * - * @author Nikos Dimopoulos - * @since 2012-09-17 - */ - public function testLoggerAdapterFileWarningLogging() - { - $this->specify( - "WARNING logging not correct", - function () { - $this->runLogging(Logger::WARNING, 'WARNING'); - } - ); - } - - /** - * Tests ALERT logging - * - * @author Nikos Dimopoulos - * @since 2012-09-17 - */ - public function testLoggerAdapterFileAlertLogging() - { - $this->specify( - "ALERT logging not correct", - function () { - $this->runLogging(Logger::ALERT, 'ALERT'); - } - ); - } - - /** - * Tests multiple loggers - * - * @issue https://github.com/phalcon/cphalcon/issues/2798 - * @author Serghei Iakovlev - * @since 2016-01-28 - */ - public function testMultipleLoggers() - { - $this->specify( - "Multiple logging does not works correctly", - function () { - $I = $this->tester; - $file1 = $I->getNewFileName('log', 'log'); - $file2 = $I->getNewFileName('log', 'log'); - - $logger = new Multiple(); - - $logger->push(new File($this->logPath . $file1)); - $logger->push(new File($this->logPath . $file2)); - - $logger->setFormatter(new Json()); - - $expected = '{"type":"DEBUG","message":"This is a message","timestamp":' . time() . '}' . PHP_EOL; - $logger->log('This is a message'); - - $expected .= '{"type":"ERROR","message":"This is an error","timestamp":' . time() . '}' . PHP_EOL; - $logger->log("This is an error", Logger::ERROR); - - $expected .= '{"type":"ERROR","message":"This is another error","timestamp":' . time() . '}' . PHP_EOL; - $logger->error("This is another error"); - - $I->amInPath($this->logPath); - - $I->openFile($file1); - $I->seeFileContentsEqual($expected); - $I->deleteFile($file1); - - $I->openFile($file2); - $I->seeFileContentsEqual($expected); - $I->deleteFile($file2); - } - ); - } - - /** - * Tests multiple log levels - * - * @author Nikos Dimopoulos - * @since 2012-09-17 - */ - public function testLoggerAdapterFileMultipleLogLevelsSetProperly() - { - $I = $this->tester; - $fileName = $I->getNewFileName('log', 'log'); - - $logger = new File($this->logPath . $fileName); - $logger->log(Logger::DEBUG, 'Hello Debug'); - $logger->log(Logger::NOTICE, 'Hello Notice'); - $logger->log(Logger::ERROR, 'Hello Error'); - $logger->log(Logger::ALERT, 'Hello Alert'); - $logger->log(Logger::WARNING, 'Hello Warning'); - $logger->log(Logger::INFO, 'Hello Info'); - $logger->log('Hello Default'); - $logger->close(); - - $I->amInPath($this->logPath); - $I->openFile($fileName); - - $expected = sprintf( - "[%s][DEBUG] Hello Debug\n[%s][NOTICE] Hello Notice\n[%s][ERROR] Hello Error\n" . - "[%s][ALERT] Hello Alert\n[%s][WARNING] Hello Warning\n[%s][INFO] Hello Info\n" . - "[%s][DEBUG] Hello Default\n", - date('D, d M y H:i:s O'), - date('D, d M y H:i:s O'), - date('D, d M y H:i:s O'), - date('D, d M y H:i:s O'), - date('D, d M y H:i:s O'), - date('D, d M y H:i:s O'), - date('D, d M y H:i:s O') - ); - $I->seeFileContentsEqual($expected); - - $I->deleteFile($fileName); - } - - /** - * Tests the creation of the log file with debug() - * - * @author Nikos Dimopoulos - * @since 2014-09-13 - */ - public function testLoggerAdapterFileDebugCreationOfLogFile() - { - $this->specify( - "Debug file was not correctly created", - function () { - $this->createOfLogFile('debug'); - } - ); - } - - /** - * Tests how many lines the file has on creation with debug() - * - * @author Nikos Dimopoulos - * @since 2014-09-13 - */ - public function testLoggerAdapterFileDebugNumberOfMessagesLogged() - { - $this->specify( - "Debug log does not contain correct number of messages", - function () { - $this->numberOfMessagesLogged('debug'); - } - ); - } - - /** - * Tests DEBUG logging with debug() - * - * @author Nikos Dimopoulos - * @since 2012-09-17 - */ - public function testLoggerAdapterFileDebugLogLogging() - { - $this->specify( - "Logging with debug not correct", - function () { - $this->logging('debug'); - } - ); - } - - /** - * Tests the creation of the log file with error() - * - * @author Nikos Dimopoulos - * @since 2014-09-13 - */ - public function testLoggerAdapterFileErrorCreationOfLogFile() - { - $this->specify( - "Error file was not correctly created", - function () { - $this->createOfLogFile('error'); - } - ); - } - - /** - * Tests how many lines the file has on creation with error() - * - * @author Nikos Dimopoulos - * @since 2014-09-13 - */ - public function testLoggerAdapterFileErrorNumberOfMessagesLogged() - { - $this->specify( - "Error log does not contain correct number of messages", - function () { - $this->numberOfMessagesLogged('error'); - } - ); - } - - /** - * Tests ERROR logging with error() - * - * @author Nikos Dimopoulos - * @since 2012-09-17 - */ - public function testLoggerAdapterFileErrorLogLogging() - { - $this->specify( - "Logging with error not correct", - function () { - $this->logging('error'); - } - ); - } - - /** - * Tests the creation of the log file with info() - * - * @author Nikos Dimopoulos - * @since 2014-09-13 - */ - public function testLoggerAdapterFileInfoCreationOfLogFile() - { - $this->specify( - "Info file was not correctly created", - function () { - $this->createOfLogFile('info'); - } - ); - } - - /** - * Tests how many lines the file has on creation with info() - * - * @author Nikos Dimopoulos - * @since 2014-09-13 - */ - public function testLoggerAdapterFileInfoNumberOfMessagesLogged() - { - $this->specify( - "Info log does not contain correct number of messages", - function () { - $this->numberOfMessagesLogged('info'); - } - ); - } - - /** - * Tests ERROR logging with info() - * - * @author Nikos Dimopoulos - * @since 2012-09-17 - */ - public function testLoggerAdapterFileInfoLogLogging() - { - $this->specify( - "Logging with info not correct", - function () { - $this->logging('info'); - } - ); - } - - /** - * Tests the creation of the log file with notice() - * - * @author Nikos Dimopoulos - * @since 2014-09-13 - */ - public function testLoggerAdapterFileNoticeCreationOfLogFile() - { - $this->specify( - "Notice file was not correctly created", - function () { - $this->createOfLogFile('notice'); - } - ); - } - - /** - * Tests how many lines the file has on creation with notice() - * - * @author Nikos Dimopoulos - * @since 2014-09-13 - */ - public function testLoggerAdapterFileNoticeNumberOfMessagesLogged() - { - $this->specify( - "Notice log does not contain correct number of messages", - function () { - $this->numberOfMessagesLogged('notice'); - } - ); - } - - /** - * Tests NOTICE logging with notice() - * - * @author Nikos Dimopoulos - * @since 2012-09-17 - */ - public function testLoggerAdapterFileNoticeLogLogging() - { - $this->specify( - "Logging with notice not correct", - function () { - $this->logging('notice'); - } - ); - } - - /** - * Tests the creation of the log file with warning() - * - * @author Nikos Dimopoulos - * @since 2014-09-13 - */ - public function testLoggerAdapterFileWarningCreationOfLogFile() - { - $this->specify( - "Warning file was not correctly created", - function () { - $this->createOfLogFile('warning'); - } - ); - } - - /** - * Tests how many lines the file has on creation with warning() - * - * @author Nikos Dimopoulos - * @since 2014-09-13 - */ - public function testLoggerAdapterFileWarningNumberOfMessagesLogged() - { - $this->specify( - "Warning log does not contain correct number of messages", - function () { - $this->numberOfMessagesLogged('warning'); - } - ); - } - - /** - * Tests WARNING logging with warning() - * - * @author Nikos Dimopoulos - * @since 2012-09-17 - */ - public function testLoggerAdapterFileWarningLogLogging() - { - $this->specify( - "Logging with warning not correct", - function () { - $this->logging('warning'); - } - ); - } - - /** - * Tests the creation of the log file with alert() - * - * @author Nikos Dimopoulos - * @since 2014-09-13 - */ - public function testLoggerAdapterFileAlertCreationOfLogFile() - { - $this->specify( - "Alert file was not correctly created", - function () { - $this->createOfLogFile('alert'); - } - ); - } - - /** - * Tests how many lines the file has on creation with alert() - * - * @author Nikos Dimopoulos - * @since 2014-09-13 - */ - public function testLoggerAdapterFileAlertNumberOfMessagesLogged() - { - $this->specify( - "Alert log does not contain correct number of messages", - function () { - $this->numberOfMessagesLogged('alert'); - } - ); - } - - /** - * Tests ALERT logging with alert() - * - * @author Nikos Dimopoulos - * @since 2012-09-17 - */ - public function testLoggerAdapterFileAlertLogLogging() - { - $this->specify( - "Logging with alert not correct", - function () { - $this->logging('alert'); - } - ); - } - - /** - * Tests set/getFormat - * - * @author Nikos Dimopoulos - * @since 2012-09-17 - */ - public function testLoggerAdapterFileSetGetFormat() - { - $formatter = new Line(); - - $format = '%type%|%date%|%message%'; - $formatter->setFormat($format); - - $actual = $formatter->getFormat(); - - $expected = $format; - - $this->assertEquals( - $expected, - $actual, - 'set/getFormat does not correctly set/get the format' - ); - } - - /** - * Tests new format logs correctly - * - * @author Nikos Dimopoulos - * @since 2012-09-17 - */ - public function testLoggerAdapterFileNewFormatLogsCorrectly() - { - $fileName = $this->tester->getNewFileName('log', 'log'); - - $logger = new File($this->logPath . $fileName); - - $formatter = new Line('%type%|%date%|%message%'); - - $logger->setFormatter($formatter); - $logger->log('Hello'); - $logger->close(); - - $contents = \file($this->logPath . $fileName); - $message = explode('|', $contents[0]); - $this->tester->cleanFile($this->logPath, $fileName); - - $this->assertEquals( - 'DEBUG', - $message[0], - 'New format, type not set correctly' - ); - $this->assertEquals( - 'Hello' . PHP_EOL, - $message[2], - 'New format, message not set correctly' - ); - } - - /** - * Tests setting Json formatter - * - * @issue https://github.com/phalcon/cphalcon/issues/2262 - * @author Serghei Iakovlev - * @since 2016-01-28 - */ - public function testLoggerAdapterFileSettingJsonFormatter() - { - $this->specify( - "logging in a file does not create the file", - function () { - $I = $this->tester; - $fileName = $I->getNewFileName('log', 'log'); - - $logger = new File($this->logPath . $fileName); - $logger->setFormatter(new Json()); - - $logger->log('This is a message'); - $logger->log("This is an error", Logger::ERROR); - $logger->error("This is another error"); - - $I->amInPath($this->logPath); - $I->openFile($fileName); - - $expected = sprintf( - '{"type":"DEBUG","message":"This is a message","timestamp":%s}' . PHP_EOL . - '{"type":"ERROR","message":"This is an error","timestamp":%s}' . PHP_EOL . - '{"type":"ERROR","message":"This is another error","timestamp":%s}', - time(), - time(), - time() - ); - $I->seeInThisFile($expected); - $I->deleteFile($fileName); - } - ); - } - - /** - * Tests new format logs correctly - * - * @author Nikos Dimopoulos - * @since 2012-09-17 - */ - public function testLoggerAdapterFileNewFormatFormatsDateCorrectly() - { - $fileName = $this->tester->getNewFileName('log', 'log'); - - $logger = new File($this->logPath . $fileName); - - $formatter = new Line('%type%|%date%|%message%'); - - $logger->setFormatter($formatter); - $logger->log('Hello'); - $logger->close(); - - $contents = \file($this->logPath . $fileName); - $message = explode('|', $contents[0]); - $this->tester->cleanFile($this->logPath, $fileName); - - $date = new \DateTime($message[1]); - - $expected = date('Y-m-d H'); - $actual = $date->format('Y-m-d H'); - - $this->assertEquals( - $expected, - $actual, - 'Date format not set properly' - ); - } - - /** - * Tests the begin/commit - * - * @author Nikolaos Dimopoulos - * @since 2014-09-13 - */ - public function testLoggerAdapterFileCommit() - { - $this->specify( - "Logging does not contain correct number of messages before commit", - function () { - $I = $this->tester; - $fileName = $I->getNewFileName('log', 'log'); - - $logger = new File($this->logPath . $fileName); - $logger->begin(); - $logger->log('Hello'); - $logger->commit(); - - $I->amInPath($this->logPath); - $I->openFile($fileName); - $I->seeNumberNewLines(2); - - $logger->close(); - $I->deleteFile($fileName); - } - ); - - $this->specify( - "Logging does not contain correct number of messages after commit", - function () { - $fileName = $this->tester->getNewFileName('log', 'log'); - - $logger = new File($this->logPath . $fileName); - $logger->log('Hello'); - - $logger->begin(); - - $logger->log('Message 1'); - $logger->log('Message 2'); - $logger->log('Message 3'); - - $logger->commit(); - - $logger->close(); - - $contents = \file($this->logPath . $fileName); - $this->tester->cleanFile($this->logPath, $fileName); - - $expected = 4; - $actual = count($contents); - - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests the begin/rollback - * - * @author Nikolaos Dimopoulos - * @since 2014-09-13 - */ - public function testLoggerAdapterFileRollback() - { - $this->specify( - "Logging does not contain correct number of messages before rollback", - function () { - $I = $this->tester; - $fileName = $I->getNewFileName('log', 'log'); - - $logger = new File($this->logPath . $fileName); - $logger->log('Hello'); - - $logger->close(); - - $I->amInPath($this->logPath); - $I->openFile($fileName); - $I->seeFileContentsEqual(sprintf("[%s][DEBUG] Hello\n", date('D, d M y H:i:s O'))); - $I->deleteFile($fileName); - } - ); - - $this->specify( - "Logging does not contain correct number of messages after rollback", - function () { - $I = $this->tester; - $fileName = $this->tester->getNewFileName('log', 'log'); - - $logger = new File($this->logPath . $fileName); - $logger->log('Hello'); - - $logger->begin(); - - $logger->log('Message 1'); - $logger->log('Message 2'); - $logger->log('Message 3'); - - $logger->rollback(); - - $logger->close(); - - $I->amInPath($this->logPath); - $I->openFile($fileName); - - $I->seeFileContentsEqual(sprintf("[%s][DEBUG] Hello\n", date('D, d M y H:i:s O'))); - $I->deleteFile($fileName); - } - ); - } - - - /** - * Runs the various logging function testLoggerAdapterFiles - * - * @author Nikos Dimopoulos - * @since 2014-09-13 - * - * @param mixed $level - * @param null $name - */ - protected function runLogging($level, $name = null) - { - $I = $this->tester; - $fileName = $I->getNewFileName('log', 'log'); - - $logger = new File($this->logPath . $fileName); - if (is_null($name)) { - $logger->log($level); - $name = 'DEBUG'; - } else { - $logger->log($level, 'Hello'); - } - $logger->close(); - - $I->amInPath($this->logPath); - $I->openFile($fileName); - $expected = sprintf( - "[%s][%s] Hello", - date('D, d M y H:i:s O'), - $name - ); - $I->seeInThisFile($expected); - $I->deleteFile($fileName); - } - - - /** - * Runs the test for the creation of a file with logging - * - * @author Nikos Dimopoulos - * @since 2014-09-13 - * - * @param string $function - */ - protected function createOfLogFile($function) - { - $I = $this->tester; - $fileName = $I->getNewFileName('log', 'log'); - - $logger = new File($this->logPath . $fileName); - $logger->$function('Hello'); - $logger->close(); - - $I->amInPath($this->logPath); - $I->seeFileFound($fileName); - $I->deleteFile($fileName); - } - - /** - * Runs the test for how many lines the file has on creation - * - * @author Nikos Dimopoulos - * @since 2014-09-13 - * - * @param string $function - */ - protected function numberOfMessagesLogged($function) - { - $I = $this->tester; - $fileName = $I->getNewFileName('log', 'log'); - - $logger = new File($this->logPath . $fileName); - $logger->$function('Hello'); - $logger->$function('Goodbye'); - $logger->close(); - - $I->amInPath($this->logPath); - $I->openFile($fileName); - $I->seeNumberNewLines(3); - $I->deleteFile($fileName); - } - - /** - * Runs logging test - * - * @author Nikos Dimopoulos - * @since 2012-09-17 - * - * @param $function - */ - protected function logging($function) - { - $I = $this->tester; - $fileName = $I->getNewFileName('log', 'log'); - - $logger = new File($this->logPath . $fileName); - $logger->$function('Hello'); - $logger->close(); - - $I->amInPath($this->logPath); - $contents = \file($this->logPath . $fileName); - $I->deleteFile($fileName); - - $position = strpos($contents[0], '[' . strtoupper($function) . ']'); - $actual = ($position !== false); - expect($actual)->true(); - - $position = strpos($contents[0], 'Hello'); - $actual = ($position !== false); - expect($actual)->true(); - } -} diff --git a/tests/unit/Logger/Adapter/Firephp/AlertCest.php b/tests/unit/Logger/Adapter/Firephp/AlertCest.php new file mode 100644 index 00000000000..83e73118ca4 --- /dev/null +++ b/tests/unit/Logger/Adapter/Firephp/AlertCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Firephp; + +use UnitTester; + +class AlertCest +{ + /** + * Tests Phalcon\Logger\Adapter\Firephp :: alert() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFirephpAlert(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Firephp - alert()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Firephp/BeginCest.php b/tests/unit/Logger/Adapter/Firephp/BeginCest.php new file mode 100644 index 00000000000..2d49d557a61 --- /dev/null +++ b/tests/unit/Logger/Adapter/Firephp/BeginCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Firephp; + +use UnitTester; + +class BeginCest +{ + /** + * Tests Phalcon\Logger\Adapter\Firephp :: begin() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFirephpBegin(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Firephp - begin()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Firephp/CloseCest.php b/tests/unit/Logger/Adapter/Firephp/CloseCest.php new file mode 100644 index 00000000000..5e467c89b29 --- /dev/null +++ b/tests/unit/Logger/Adapter/Firephp/CloseCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Firephp; + +use UnitTester; + +class CloseCest +{ + /** + * Tests Phalcon\Logger\Adapter\Firephp :: close() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFirephpClose(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Firephp - close()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Firephp/CommitCest.php b/tests/unit/Logger/Adapter/Firephp/CommitCest.php new file mode 100644 index 00000000000..a46520b0ad7 --- /dev/null +++ b/tests/unit/Logger/Adapter/Firephp/CommitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Firephp; + +use UnitTester; + +class CommitCest +{ + /** + * Tests Phalcon\Logger\Adapter\Firephp :: commit() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFirephpCommit(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Firephp - commit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Firephp/CriticalCest.php b/tests/unit/Logger/Adapter/Firephp/CriticalCest.php new file mode 100644 index 00000000000..6e4b0caadc7 --- /dev/null +++ b/tests/unit/Logger/Adapter/Firephp/CriticalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Firephp; + +use UnitTester; + +class CriticalCest +{ + /** + * Tests Phalcon\Logger\Adapter\Firephp :: critical() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFirephpCritical(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Firephp - critical()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Firephp/DebugCest.php b/tests/unit/Logger/Adapter/Firephp/DebugCest.php new file mode 100644 index 00000000000..aba91af3770 --- /dev/null +++ b/tests/unit/Logger/Adapter/Firephp/DebugCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Firephp; + +use UnitTester; + +class DebugCest +{ + /** + * Tests Phalcon\Logger\Adapter\Firephp :: debug() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFirephpDebug(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Firephp - debug()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Firephp/EmergencyCest.php b/tests/unit/Logger/Adapter/Firephp/EmergencyCest.php new file mode 100644 index 00000000000..5dbc34f7bd4 --- /dev/null +++ b/tests/unit/Logger/Adapter/Firephp/EmergencyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Firephp; + +use UnitTester; + +class EmergencyCest +{ + /** + * Tests Phalcon\Logger\Adapter\Firephp :: emergency() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFirephpEmergency(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Firephp - emergency()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Firephp/ErrorCest.php b/tests/unit/Logger/Adapter/Firephp/ErrorCest.php new file mode 100644 index 00000000000..6ed05bdd1cb --- /dev/null +++ b/tests/unit/Logger/Adapter/Firephp/ErrorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Firephp; + +use UnitTester; + +class ErrorCest +{ + /** + * Tests Phalcon\Logger\Adapter\Firephp :: error() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFirephpError(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Firephp - error()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Firephp/GetFormatterCest.php b/tests/unit/Logger/Adapter/Firephp/GetFormatterCest.php new file mode 100644 index 00000000000..d7be0ea8fc2 --- /dev/null +++ b/tests/unit/Logger/Adapter/Firephp/GetFormatterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Firephp; + +use UnitTester; + +class GetFormatterCest +{ + /** + * Tests Phalcon\Logger\Adapter\Firephp :: getFormatter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFirephpGetFormatter(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Firephp - getFormatter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Firephp/GetLogLevelCest.php b/tests/unit/Logger/Adapter/Firephp/GetLogLevelCest.php new file mode 100644 index 00000000000..9f71ffce236 --- /dev/null +++ b/tests/unit/Logger/Adapter/Firephp/GetLogLevelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Firephp; + +use UnitTester; + +class GetLogLevelCest +{ + /** + * Tests Phalcon\Logger\Adapter\Firephp :: getLogLevel() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFirephpGetLogLevel(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Firephp - getLogLevel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Firephp/InfoCest.php b/tests/unit/Logger/Adapter/Firephp/InfoCest.php new file mode 100644 index 00000000000..2b88477458c --- /dev/null +++ b/tests/unit/Logger/Adapter/Firephp/InfoCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Firephp; + +use UnitTester; + +class InfoCest +{ + /** + * Tests Phalcon\Logger\Adapter\Firephp :: info() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFirephpInfo(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Firephp - info()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Firephp/IsTransactionCest.php b/tests/unit/Logger/Adapter/Firephp/IsTransactionCest.php new file mode 100644 index 00000000000..e263484b725 --- /dev/null +++ b/tests/unit/Logger/Adapter/Firephp/IsTransactionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Firephp; + +use UnitTester; + +class IsTransactionCest +{ + /** + * Tests Phalcon\Logger\Adapter\Firephp :: isTransaction() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFirephpIsTransaction(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Firephp - isTransaction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Firephp/LogCest.php b/tests/unit/Logger/Adapter/Firephp/LogCest.php new file mode 100644 index 00000000000..976c19df00e --- /dev/null +++ b/tests/unit/Logger/Adapter/Firephp/LogCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Firephp; + +use UnitTester; + +class LogCest +{ + /** + * Tests Phalcon\Logger\Adapter\Firephp :: log() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFirephpLog(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Firephp - log()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Firephp/LogInternalCest.php b/tests/unit/Logger/Adapter/Firephp/LogInternalCest.php new file mode 100644 index 00000000000..cc77461653b --- /dev/null +++ b/tests/unit/Logger/Adapter/Firephp/LogInternalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Firephp; + +use UnitTester; + +class LogInternalCest +{ + /** + * Tests Phalcon\Logger\Adapter\Firephp :: logInternal() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFirephpLogInternal(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Firephp - logInternal()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Firephp/NoticeCest.php b/tests/unit/Logger/Adapter/Firephp/NoticeCest.php new file mode 100644 index 00000000000..959d9a98cdc --- /dev/null +++ b/tests/unit/Logger/Adapter/Firephp/NoticeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Firephp; + +use UnitTester; + +class NoticeCest +{ + /** + * Tests Phalcon\Logger\Adapter\Firephp :: notice() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFirephpNotice(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Firephp - notice()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Firephp/RollbackCest.php b/tests/unit/Logger/Adapter/Firephp/RollbackCest.php new file mode 100644 index 00000000000..89193d6c55f --- /dev/null +++ b/tests/unit/Logger/Adapter/Firephp/RollbackCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Firephp; + +use UnitTester; + +class RollbackCest +{ + /** + * Tests Phalcon\Logger\Adapter\Firephp :: rollback() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFirephpRollback(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Firephp - rollback()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Firephp/SetFormatterCest.php b/tests/unit/Logger/Adapter/Firephp/SetFormatterCest.php new file mode 100644 index 00000000000..c504708e7ff --- /dev/null +++ b/tests/unit/Logger/Adapter/Firephp/SetFormatterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Firephp; + +use UnitTester; + +class SetFormatterCest +{ + /** + * Tests Phalcon\Logger\Adapter\Firephp :: setFormatter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFirephpSetFormatter(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Firephp - setFormatter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Firephp/SetLogLevelCest.php b/tests/unit/Logger/Adapter/Firephp/SetLogLevelCest.php new file mode 100644 index 00000000000..b6f190d44c4 --- /dev/null +++ b/tests/unit/Logger/Adapter/Firephp/SetLogLevelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Firephp; + +use UnitTester; + +class SetLogLevelCest +{ + /** + * Tests Phalcon\Logger\Adapter\Firephp :: setLogLevel() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFirephpSetLogLevel(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Firephp - setLogLevel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Firephp/WarningCest.php b/tests/unit/Logger/Adapter/Firephp/WarningCest.php new file mode 100644 index 00000000000..1222e43ddb2 --- /dev/null +++ b/tests/unit/Logger/Adapter/Firephp/WarningCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Firephp; + +use UnitTester; + +class WarningCest +{ + /** + * Tests Phalcon\Logger\Adapter\Firephp :: warning() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterFirephpWarning(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Firephp - warning()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/FirephpCest.php b/tests/unit/Logger/Adapter/FirephpCest.php new file mode 100644 index 00000000000..13b40d01b48 --- /dev/null +++ b/tests/unit/Logger/Adapter/FirephpCest.php @@ -0,0 +1,54 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter; + +use Phalcon\Logger\Adapter\Firephp; +use UnitTester; + +class FirephpCest +{ + /** + * executed before each test + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('xdebug'); + } + + /** + * Tests logging by using Firephp + * + * @author Phalcon Team + * @since 2016-01-28 + */ + public function testLoggerAdapterFirephpCreationDefault(UnitTester $I) + { + $logger = new Firephp(); + $logger->getFormatter()->setShowBacktrace(false); + $logger->info('Some firephp simple test'); + + $headers = xdebug_get_headers(); + + $expected = 'X-Wf-Protocol-1: http://meta.wildfirehq.org/Protocol/JsonStream/0.2'; + $actual = $headers; + $I->assertContains($expected, $actual); + $expected = 'X-Wf-1-Plugin-1: http://meta.firephp.org/Wildfire/Plugin/FirePHP/Library-FirePHPCore/0.3'; + $actual = $headers; + $I->assertContains($expected, $actual); + $expected = 'X-Wf-Structure-1: http://meta.firephp.org/Wildfire/Structure/FirePHP/FirebugConsole/0.1'; + $actual = $headers; + $I->assertContains($expected, $actual); + $expected = 'X-Wf-1-1-1-1: 55|[{"Type":"INFO","Label":"Some firephp simple test"},""]|'; + $actual = $headers; + $I->assertContains($expected, $actual); + } +} diff --git a/tests/unit/Logger/Adapter/FirephpTest.php b/tests/unit/Logger/Adapter/FirephpTest.php deleted file mode 100644 index 40a92d2c715..00000000000 --- a/tests/unit/Logger/Adapter/FirephpTest.php +++ /dev/null @@ -1,63 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Logger\Adapter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FirephpTest extends UnitTest -{ - /** - * executed before each test - */ - public function _before() - { - parent::_before(); - - if (!extension_loaded('xdebug')) { - $this->markTestSkipped('Warning: xdebug extension is not loaded'); - } - } - - /** - * Tests logging by using Firephp - * - * @author Serghei Iakovlev - * @since 2016-01-28 - */ - public function testLoggerAdapterFirephpCreationDefault() - { - $this->specify( - 'logging by using Firephp does not work correctly', - function () { - $logger = new Firephp(); - $logger->getFormatter()->setShowBacktrace(false); - $logger->info('Some firephp simple test'); - - $headers = xdebug_get_headers(); - - expect($headers)->contains('X-Wf-Protocol-1: http://meta.wildfirehq.org/Protocol/JsonStream/0.2'); - expect($headers)->contains('X-Wf-1-Plugin-1: http://meta.firephp.org/Wildfire/Plugin/FirePHP/Library-FirePHPCore/0.3'); - expect($headers)->contains('X-Wf-Structure-1: http://meta.firephp.org/Wildfire/Structure/FirePHP/FirebugConsole/0.1'); - expect($headers)->contains('X-Wf-1-1-1-1: 55|[{"Type":"INFO","Label":"Some firephp simple test"},""]|'); - } - ); - } -} diff --git a/tests/unit/Logger/Adapter/GetFormatterCest.php b/tests/unit/Logger/Adapter/GetFormatterCest.php new file mode 100644 index 00000000000..d5fee91c0af --- /dev/null +++ b/tests/unit/Logger/Adapter/GetFormatterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter; + +use UnitTester; + +class GetFormatterCest +{ + /** + * Tests Phalcon\Logger\Adapter :: getFormatter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterGetFormatter(UnitTester $I) + { + $I->wantToTest("Logger\Adapter - getFormatter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/GetLogLevelCest.php b/tests/unit/Logger/Adapter/GetLogLevelCest.php new file mode 100644 index 00000000000..eef543a43f8 --- /dev/null +++ b/tests/unit/Logger/Adapter/GetLogLevelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter; + +use UnitTester; + +class GetLogLevelCest +{ + /** + * Tests Phalcon\Logger\Adapter :: getLogLevel() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterGetLogLevel(UnitTester $I) + { + $I->wantToTest("Logger\Adapter - getLogLevel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/InfoCest.php b/tests/unit/Logger/Adapter/InfoCest.php new file mode 100644 index 00000000000..52d53022761 --- /dev/null +++ b/tests/unit/Logger/Adapter/InfoCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter; + +use UnitTester; + +class InfoCest +{ + /** + * Tests Phalcon\Logger\Adapter :: info() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterInfo(UnitTester $I) + { + $I->wantToTest("Logger\Adapter - info()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/IsTransactionCest.php b/tests/unit/Logger/Adapter/IsTransactionCest.php new file mode 100644 index 00000000000..eb771865fd6 --- /dev/null +++ b/tests/unit/Logger/Adapter/IsTransactionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter; + +use UnitTester; + +class IsTransactionCest +{ + /** + * Tests Phalcon\Logger\Adapter :: isTransaction() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterIsTransaction(UnitTester $I) + { + $I->wantToTest("Logger\Adapter - isTransaction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/LogCest.php b/tests/unit/Logger/Adapter/LogCest.php new file mode 100644 index 00000000000..855885c0420 --- /dev/null +++ b/tests/unit/Logger/Adapter/LogCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter; + +use UnitTester; + +class LogCest +{ + /** + * Tests Phalcon\Logger\Adapter :: log() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterLog(UnitTester $I) + { + $I->wantToTest("Logger\Adapter - log()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/NoticeCest.php b/tests/unit/Logger/Adapter/NoticeCest.php new file mode 100644 index 00000000000..1076de1c557 --- /dev/null +++ b/tests/unit/Logger/Adapter/NoticeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter; + +use UnitTester; + +class NoticeCest +{ + /** + * Tests Phalcon\Logger\Adapter :: notice() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterNotice(UnitTester $I) + { + $I->wantToTest("Logger\Adapter - notice()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/RollbackCest.php b/tests/unit/Logger/Adapter/RollbackCest.php new file mode 100644 index 00000000000..b9d9bf1eca8 --- /dev/null +++ b/tests/unit/Logger/Adapter/RollbackCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter; + +use UnitTester; + +class RollbackCest +{ + /** + * Tests Phalcon\Logger\Adapter :: rollback() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterRollback(UnitTester $I) + { + $I->wantToTest("Logger\Adapter - rollback()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/SetFormatterCest.php b/tests/unit/Logger/Adapter/SetFormatterCest.php new file mode 100644 index 00000000000..0ea6e2c8391 --- /dev/null +++ b/tests/unit/Logger/Adapter/SetFormatterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter; + +use UnitTester; + +class SetFormatterCest +{ + /** + * Tests Phalcon\Logger\Adapter :: setFormatter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSetFormatter(UnitTester $I) + { + $I->wantToTest("Logger\Adapter - setFormatter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/SetLogLevelCest.php b/tests/unit/Logger/Adapter/SetLogLevelCest.php new file mode 100644 index 00000000000..e103478668b --- /dev/null +++ b/tests/unit/Logger/Adapter/SetLogLevelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter; + +use UnitTester; + +class SetLogLevelCest +{ + /** + * Tests Phalcon\Logger\Adapter :: setLogLevel() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSetLogLevel(UnitTester $I) + { + $I->wantToTest("Logger\Adapter - setLogLevel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Stream/AlertCest.php b/tests/unit/Logger/Adapter/Stream/AlertCest.php new file mode 100644 index 00000000000..07dfb274105 --- /dev/null +++ b/tests/unit/Logger/Adapter/Stream/AlertCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Stream; + +use UnitTester; + +class AlertCest +{ + /** + * Tests Phalcon\Logger\Adapter\Stream :: alert() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterStreamAlert(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Stream - alert()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Stream/BeginCest.php b/tests/unit/Logger/Adapter/Stream/BeginCest.php new file mode 100644 index 00000000000..b50ee9253e6 --- /dev/null +++ b/tests/unit/Logger/Adapter/Stream/BeginCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Stream; + +use UnitTester; + +class BeginCest +{ + /** + * Tests Phalcon\Logger\Adapter\Stream :: begin() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterStreamBegin(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Stream - begin()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Stream/CloseCest.php b/tests/unit/Logger/Adapter/Stream/CloseCest.php new file mode 100644 index 00000000000..ed83fe1c8d3 --- /dev/null +++ b/tests/unit/Logger/Adapter/Stream/CloseCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Stream; + +use UnitTester; + +class CloseCest +{ + /** + * Tests Phalcon\Logger\Adapter\Stream :: close() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterStreamClose(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Stream - close()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Stream/CommitCest.php b/tests/unit/Logger/Adapter/Stream/CommitCest.php new file mode 100644 index 00000000000..05fada3c7ed --- /dev/null +++ b/tests/unit/Logger/Adapter/Stream/CommitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Stream; + +use UnitTester; + +class CommitCest +{ + /** + * Tests Phalcon\Logger\Adapter\Stream :: commit() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterStreamCommit(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Stream - commit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Stream/ConstructCest.php b/tests/unit/Logger/Adapter/Stream/ConstructCest.php new file mode 100644 index 00000000000..fb95c43092a --- /dev/null +++ b/tests/unit/Logger/Adapter/Stream/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Stream; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Logger\Adapter\Stream :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterStreamConstruct(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Stream - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Stream/CriticalCest.php b/tests/unit/Logger/Adapter/Stream/CriticalCest.php new file mode 100644 index 00000000000..4ce1a6eae6d --- /dev/null +++ b/tests/unit/Logger/Adapter/Stream/CriticalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Stream; + +use UnitTester; + +class CriticalCest +{ + /** + * Tests Phalcon\Logger\Adapter\Stream :: critical() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterStreamCritical(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Stream - critical()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Stream/DebugCest.php b/tests/unit/Logger/Adapter/Stream/DebugCest.php new file mode 100644 index 00000000000..9217108981c --- /dev/null +++ b/tests/unit/Logger/Adapter/Stream/DebugCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Stream; + +use UnitTester; + +class DebugCest +{ + /** + * Tests Phalcon\Logger\Adapter\Stream :: debug() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterStreamDebug(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Stream - debug()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Stream/EmergencyCest.php b/tests/unit/Logger/Adapter/Stream/EmergencyCest.php new file mode 100644 index 00000000000..594e625ec08 --- /dev/null +++ b/tests/unit/Logger/Adapter/Stream/EmergencyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Stream; + +use UnitTester; + +class EmergencyCest +{ + /** + * Tests Phalcon\Logger\Adapter\Stream :: emergency() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterStreamEmergency(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Stream - emergency()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Stream/ErrorCest.php b/tests/unit/Logger/Adapter/Stream/ErrorCest.php new file mode 100644 index 00000000000..610d9d4be91 --- /dev/null +++ b/tests/unit/Logger/Adapter/Stream/ErrorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Stream; + +use UnitTester; + +class ErrorCest +{ + /** + * Tests Phalcon\Logger\Adapter\Stream :: error() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterStreamError(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Stream - error()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Stream/GetFormatterCest.php b/tests/unit/Logger/Adapter/Stream/GetFormatterCest.php new file mode 100644 index 00000000000..913ae60d595 --- /dev/null +++ b/tests/unit/Logger/Adapter/Stream/GetFormatterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Stream; + +use UnitTester; + +class GetFormatterCest +{ + /** + * Tests Phalcon\Logger\Adapter\Stream :: getFormatter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterStreamGetFormatter(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Stream - getFormatter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Stream/GetLogLevelCest.php b/tests/unit/Logger/Adapter/Stream/GetLogLevelCest.php new file mode 100644 index 00000000000..9aa535e3085 --- /dev/null +++ b/tests/unit/Logger/Adapter/Stream/GetLogLevelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Stream; + +use UnitTester; + +class GetLogLevelCest +{ + /** + * Tests Phalcon\Logger\Adapter\Stream :: getLogLevel() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterStreamGetLogLevel(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Stream - getLogLevel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Stream/InfoCest.php b/tests/unit/Logger/Adapter/Stream/InfoCest.php new file mode 100644 index 00000000000..9e801c578f1 --- /dev/null +++ b/tests/unit/Logger/Adapter/Stream/InfoCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Stream; + +use UnitTester; + +class InfoCest +{ + /** + * Tests Phalcon\Logger\Adapter\Stream :: info() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterStreamInfo(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Stream - info()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Stream/IsTransactionCest.php b/tests/unit/Logger/Adapter/Stream/IsTransactionCest.php new file mode 100644 index 00000000000..b9c6fa7e262 --- /dev/null +++ b/tests/unit/Logger/Adapter/Stream/IsTransactionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Stream; + +use UnitTester; + +class IsTransactionCest +{ + /** + * Tests Phalcon\Logger\Adapter\Stream :: isTransaction() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterStreamIsTransaction(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Stream - isTransaction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Stream/LogCest.php b/tests/unit/Logger/Adapter/Stream/LogCest.php new file mode 100644 index 00000000000..47b843a33d0 --- /dev/null +++ b/tests/unit/Logger/Adapter/Stream/LogCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Stream; + +use UnitTester; + +class LogCest +{ + /** + * Tests Phalcon\Logger\Adapter\Stream :: log() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterStreamLog(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Stream - log()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Stream/LogInternalCest.php b/tests/unit/Logger/Adapter/Stream/LogInternalCest.php new file mode 100644 index 00000000000..eb2f4ebab40 --- /dev/null +++ b/tests/unit/Logger/Adapter/Stream/LogInternalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Stream; + +use UnitTester; + +class LogInternalCest +{ + /** + * Tests Phalcon\Logger\Adapter\Stream :: logInternal() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterStreamLogInternal(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Stream - logInternal()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Stream/NoticeCest.php b/tests/unit/Logger/Adapter/Stream/NoticeCest.php new file mode 100644 index 00000000000..ac6a1802222 --- /dev/null +++ b/tests/unit/Logger/Adapter/Stream/NoticeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Stream; + +use UnitTester; + +class NoticeCest +{ + /** + * Tests Phalcon\Logger\Adapter\Stream :: notice() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterStreamNotice(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Stream - notice()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Stream/RollbackCest.php b/tests/unit/Logger/Adapter/Stream/RollbackCest.php new file mode 100644 index 00000000000..9ac98599055 --- /dev/null +++ b/tests/unit/Logger/Adapter/Stream/RollbackCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Stream; + +use UnitTester; + +class RollbackCest +{ + /** + * Tests Phalcon\Logger\Adapter\Stream :: rollback() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterStreamRollback(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Stream - rollback()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Stream/SetFormatterCest.php b/tests/unit/Logger/Adapter/Stream/SetFormatterCest.php new file mode 100644 index 00000000000..10e2e1b4901 --- /dev/null +++ b/tests/unit/Logger/Adapter/Stream/SetFormatterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Stream; + +use UnitTester; + +class SetFormatterCest +{ + /** + * Tests Phalcon\Logger\Adapter\Stream :: setFormatter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterStreamSetFormatter(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Stream - setFormatter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Stream/SetLogLevelCest.php b/tests/unit/Logger/Adapter/Stream/SetLogLevelCest.php new file mode 100644 index 00000000000..e5f2320c2fc --- /dev/null +++ b/tests/unit/Logger/Adapter/Stream/SetLogLevelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Stream; + +use UnitTester; + +class SetLogLevelCest +{ + /** + * Tests Phalcon\Logger\Adapter\Stream :: setLogLevel() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterStreamSetLogLevel(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Stream - setLogLevel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Stream/WarningCest.php b/tests/unit/Logger/Adapter/Stream/WarningCest.php new file mode 100644 index 00000000000..390848cc33e --- /dev/null +++ b/tests/unit/Logger/Adapter/Stream/WarningCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Stream; + +use UnitTester; + +class WarningCest +{ + /** + * Tests Phalcon\Logger\Adapter\Stream :: warning() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterStreamWarning(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Stream - warning()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Syslog/AlertCest.php b/tests/unit/Logger/Adapter/Syslog/AlertCest.php new file mode 100644 index 00000000000..92e06876df3 --- /dev/null +++ b/tests/unit/Logger/Adapter/Syslog/AlertCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Syslog; + +use UnitTester; + +class AlertCest +{ + /** + * Tests Phalcon\Logger\Adapter\Syslog :: alert() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSyslogAlert(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Syslog - alert()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Syslog/BeginCest.php b/tests/unit/Logger/Adapter/Syslog/BeginCest.php new file mode 100644 index 00000000000..8afc91513eb --- /dev/null +++ b/tests/unit/Logger/Adapter/Syslog/BeginCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Syslog; + +use UnitTester; + +class BeginCest +{ + /** + * Tests Phalcon\Logger\Adapter\Syslog :: begin() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSyslogBegin(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Syslog - begin()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Syslog/CloseCest.php b/tests/unit/Logger/Adapter/Syslog/CloseCest.php new file mode 100644 index 00000000000..f78234efe43 --- /dev/null +++ b/tests/unit/Logger/Adapter/Syslog/CloseCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Syslog; + +use UnitTester; + +class CloseCest +{ + /** + * Tests Phalcon\Logger\Adapter\Syslog :: close() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSyslogClose(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Syslog - close()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Syslog/CommitCest.php b/tests/unit/Logger/Adapter/Syslog/CommitCest.php new file mode 100644 index 00000000000..314ad5bc7bc --- /dev/null +++ b/tests/unit/Logger/Adapter/Syslog/CommitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Syslog; + +use UnitTester; + +class CommitCest +{ + /** + * Tests Phalcon\Logger\Adapter\Syslog :: commit() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSyslogCommit(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Syslog - commit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Syslog/ConstructCest.php b/tests/unit/Logger/Adapter/Syslog/ConstructCest.php new file mode 100644 index 00000000000..df712ccdd5a --- /dev/null +++ b/tests/unit/Logger/Adapter/Syslog/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Syslog; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Logger\Adapter\Syslog :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSyslogConstruct(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Syslog - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Syslog/CriticalCest.php b/tests/unit/Logger/Adapter/Syslog/CriticalCest.php new file mode 100644 index 00000000000..8852789f234 --- /dev/null +++ b/tests/unit/Logger/Adapter/Syslog/CriticalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Syslog; + +use UnitTester; + +class CriticalCest +{ + /** + * Tests Phalcon\Logger\Adapter\Syslog :: critical() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSyslogCritical(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Syslog - critical()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Syslog/DebugCest.php b/tests/unit/Logger/Adapter/Syslog/DebugCest.php new file mode 100644 index 00000000000..5b83e45d3b2 --- /dev/null +++ b/tests/unit/Logger/Adapter/Syslog/DebugCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Syslog; + +use UnitTester; + +class DebugCest +{ + /** + * Tests Phalcon\Logger\Adapter\Syslog :: debug() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSyslogDebug(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Syslog - debug()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Syslog/EmergencyCest.php b/tests/unit/Logger/Adapter/Syslog/EmergencyCest.php new file mode 100644 index 00000000000..5624b15af42 --- /dev/null +++ b/tests/unit/Logger/Adapter/Syslog/EmergencyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Syslog; + +use UnitTester; + +class EmergencyCest +{ + /** + * Tests Phalcon\Logger\Adapter\Syslog :: emergency() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSyslogEmergency(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Syslog - emergency()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Syslog/ErrorCest.php b/tests/unit/Logger/Adapter/Syslog/ErrorCest.php new file mode 100644 index 00000000000..bf05b4df179 --- /dev/null +++ b/tests/unit/Logger/Adapter/Syslog/ErrorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Syslog; + +use UnitTester; + +class ErrorCest +{ + /** + * Tests Phalcon\Logger\Adapter\Syslog :: error() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSyslogError(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Syslog - error()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Syslog/GetFormatterCest.php b/tests/unit/Logger/Adapter/Syslog/GetFormatterCest.php new file mode 100644 index 00000000000..79f5d4a1746 --- /dev/null +++ b/tests/unit/Logger/Adapter/Syslog/GetFormatterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Syslog; + +use UnitTester; + +class GetFormatterCest +{ + /** + * Tests Phalcon\Logger\Adapter\Syslog :: getFormatter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSyslogGetFormatter(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Syslog - getFormatter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Syslog/GetLogLevelCest.php b/tests/unit/Logger/Adapter/Syslog/GetLogLevelCest.php new file mode 100644 index 00000000000..efd5ae0ccfe --- /dev/null +++ b/tests/unit/Logger/Adapter/Syslog/GetLogLevelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Syslog; + +use UnitTester; + +class GetLogLevelCest +{ + /** + * Tests Phalcon\Logger\Adapter\Syslog :: getLogLevel() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSyslogGetLogLevel(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Syslog - getLogLevel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Syslog/InfoCest.php b/tests/unit/Logger/Adapter/Syslog/InfoCest.php new file mode 100644 index 00000000000..79c66560e14 --- /dev/null +++ b/tests/unit/Logger/Adapter/Syslog/InfoCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Syslog; + +use UnitTester; + +class InfoCest +{ + /** + * Tests Phalcon\Logger\Adapter\Syslog :: info() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSyslogInfo(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Syslog - info()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Syslog/IsTransactionCest.php b/tests/unit/Logger/Adapter/Syslog/IsTransactionCest.php new file mode 100644 index 00000000000..acd58dc88ec --- /dev/null +++ b/tests/unit/Logger/Adapter/Syslog/IsTransactionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Syslog; + +use UnitTester; + +class IsTransactionCest +{ + /** + * Tests Phalcon\Logger\Adapter\Syslog :: isTransaction() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSyslogIsTransaction(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Syslog - isTransaction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Syslog/LogCest.php b/tests/unit/Logger/Adapter/Syslog/LogCest.php new file mode 100644 index 00000000000..64fd565cfa2 --- /dev/null +++ b/tests/unit/Logger/Adapter/Syslog/LogCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Syslog; + +use UnitTester; + +class LogCest +{ + /** + * Tests Phalcon\Logger\Adapter\Syslog :: log() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSyslogLog(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Syslog - log()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Syslog/LogInternalCest.php b/tests/unit/Logger/Adapter/Syslog/LogInternalCest.php new file mode 100644 index 00000000000..797c742e71e --- /dev/null +++ b/tests/unit/Logger/Adapter/Syslog/LogInternalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Syslog; + +use UnitTester; + +class LogInternalCest +{ + /** + * Tests Phalcon\Logger\Adapter\Syslog :: logInternal() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSyslogLogInternal(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Syslog - logInternal()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Syslog/NoticeCest.php b/tests/unit/Logger/Adapter/Syslog/NoticeCest.php new file mode 100644 index 00000000000..5f2d51ec639 --- /dev/null +++ b/tests/unit/Logger/Adapter/Syslog/NoticeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Syslog; + +use UnitTester; + +class NoticeCest +{ + /** + * Tests Phalcon\Logger\Adapter\Syslog :: notice() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSyslogNotice(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Syslog - notice()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Syslog/RollbackCest.php b/tests/unit/Logger/Adapter/Syslog/RollbackCest.php new file mode 100644 index 00000000000..b844ff538a7 --- /dev/null +++ b/tests/unit/Logger/Adapter/Syslog/RollbackCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Syslog; + +use UnitTester; + +class RollbackCest +{ + /** + * Tests Phalcon\Logger\Adapter\Syslog :: rollback() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSyslogRollback(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Syslog - rollback()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Syslog/SetFormatterCest.php b/tests/unit/Logger/Adapter/Syslog/SetFormatterCest.php new file mode 100644 index 00000000000..536076f6381 --- /dev/null +++ b/tests/unit/Logger/Adapter/Syslog/SetFormatterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Syslog; + +use UnitTester; + +class SetFormatterCest +{ + /** + * Tests Phalcon\Logger\Adapter\Syslog :: setFormatter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSyslogSetFormatter(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Syslog - setFormatter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Syslog/SetLogLevelCest.php b/tests/unit/Logger/Adapter/Syslog/SetLogLevelCest.php new file mode 100644 index 00000000000..af48c79c042 --- /dev/null +++ b/tests/unit/Logger/Adapter/Syslog/SetLogLevelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Syslog; + +use UnitTester; + +class SetLogLevelCest +{ + /** + * Tests Phalcon\Logger\Adapter\Syslog :: setLogLevel() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSyslogSetLogLevel(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Syslog - setLogLevel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/Syslog/WarningCest.php b/tests/unit/Logger/Adapter/Syslog/WarningCest.php new file mode 100644 index 00000000000..d616127cde6 --- /dev/null +++ b/tests/unit/Logger/Adapter/Syslog/WarningCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter\Syslog; + +use UnitTester; + +class WarningCest +{ + /** + * Tests Phalcon\Logger\Adapter\Syslog :: warning() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterSyslogWarning(UnitTester $I) + { + $I->wantToTest("Logger\Adapter\Syslog - warning()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Adapter/WarningCest.php b/tests/unit/Logger/Adapter/WarningCest.php new file mode 100644 index 00000000000..fb75e7e53b4 --- /dev/null +++ b/tests/unit/Logger/Adapter/WarningCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Adapter; + +use UnitTester; + +class WarningCest +{ + /** + * Tests Phalcon\Logger\Adapter :: warning() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerAdapterWarning(UnitTester $I) + { + $I->wantToTest("Logger\Adapter - warning()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Factory/LoadCest.php b/tests/unit/Logger/Factory/LoadCest.php new file mode 100644 index 00000000000..91ee440b822 --- /dev/null +++ b/tests/unit/Logger/Factory/LoadCest.php @@ -0,0 +1,77 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Factory; + +use Phalcon\Logger\Adapter\File; +use Phalcon\Logger\Factory; +use Phalcon\Test\Fixtures\Traits\FactoryTrait; +use UnitTester; + +class LoadCest +{ + use FactoryTrait; + + public function _before(UnitTester $I) + { + $this->init(); + } + + /** + * Tests Phalcon\Logger\Factory :: load() - Config + * + * @param UnitTester $I + * + * @author Wojciech Ślawski + * @since 2017-03-02 + */ + public function loggerFactoryLoadConfig(UnitTester $I) + { + $I->wantToTest("Logger\Factory - load() - Config"); + $options = $this->config->logger; + $this->runTests($I, $options); + } + + /** + * Runs the tests based on different configurations + * + * @param UnitTester $I + * @param Config|array $options + */ + private function runTests(UnitTester $I, $options) + { + /** @var File $logger */ + $logger = Factory::load($options); + + $class = File::class; + $actual = $logger; + $I->assertInstanceOf($class, $actual); + + $expected = $options["name"]; + $actual = $logger->getPath(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Logger\Factory :: load() - array + * + * @param UnitTester $I + * + * @author Wojciech Ślawski + * @since 2017-03-02 + */ + public function loggerFactoryLoadArray(UnitTester $I) + { + $I->wantToTest("Logger\Factory - load() - array"); + $options = $this->arrayConfig["logger"]; + $this->runTests($I, $options); + } +} diff --git a/tests/unit/Logger/FactoryTest.php b/tests/unit/Logger/FactoryTest.php deleted file mode 100644 index a8beb8be857..00000000000 --- a/tests/unit/Logger/FactoryTest.php +++ /dev/null @@ -1,68 +0,0 @@ - - * @author Serghei Iakovlev - * @author Wojciech Ślawski - * @package Phalcon\Test\Unit\Annotations - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FactoryTest extends FactoryBase -{ - /** - * Test factory using Phalcon\Config - * - * @author Wojciech Ślawski - * @since 2017-03-02 - */ - public function testConfigFactory() - { - $this->specify( - "Factory using Phalcon\\Config doesn't work properly", - function () { - $options = $this->config->logger; - /** @var File $logger */ - $logger = Factory::load($options); - expect($logger)->isInstanceOf(File::class); - expect($logger->getPath())->equals($options->name); - } - ); - } - - /** - * Test factory using array - * - * @author Wojciech Ślawski - * @since 2017-03-02 - */ - public function testArrayFactory() - { - $this->specify( - "Factory using array doesn't work properly", - function () { - $options = $this->arrayConfig["logger"]; - /** @var File $logger */ - $logger = Factory::load($options); - expect($logger)->isInstanceOf(File::class); - expect($logger->getPath())->equals($options["name"]); - } - ); - } -} diff --git a/tests/unit/Logger/Formatter/Firephp/EnableLabelsCest.php b/tests/unit/Logger/Formatter/Firephp/EnableLabelsCest.php new file mode 100644 index 00000000000..21a2a768330 --- /dev/null +++ b/tests/unit/Logger/Formatter/Firephp/EnableLabelsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter\Firephp; + +use UnitTester; + +class EnableLabelsCest +{ + /** + * Tests Phalcon\Logger\Formatter\Firephp :: enableLabels() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterFirephpEnableLabels(UnitTester $I) + { + $I->wantToTest("Logger\Formatter\Firephp - enableLabels()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/Firephp/FormatCest.php b/tests/unit/Logger/Formatter/Firephp/FormatCest.php new file mode 100644 index 00000000000..129a7431b21 --- /dev/null +++ b/tests/unit/Logger/Formatter/Firephp/FormatCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter\Firephp; + +use UnitTester; + +class FormatCest +{ + /** + * Tests Phalcon\Logger\Formatter\Firephp :: format() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterFirephpFormat(UnitTester $I) + { + $I->wantToTest("Logger\Formatter\Firephp - format()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/Firephp/GetShowBacktraceCest.php b/tests/unit/Logger/Formatter/Firephp/GetShowBacktraceCest.php new file mode 100644 index 00000000000..b7599f9af5e --- /dev/null +++ b/tests/unit/Logger/Formatter/Firephp/GetShowBacktraceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter\Firephp; + +use UnitTester; + +class GetShowBacktraceCest +{ + /** + * Tests Phalcon\Logger\Formatter\Firephp :: getShowBacktrace() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterFirephpGetShowBacktrace(UnitTester $I) + { + $I->wantToTest("Logger\Formatter\Firephp - getShowBacktrace()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/Firephp/GetTypeStringCest.php b/tests/unit/Logger/Formatter/Firephp/GetTypeStringCest.php new file mode 100644 index 00000000000..8d9eb8c84cf --- /dev/null +++ b/tests/unit/Logger/Formatter/Firephp/GetTypeStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter\Firephp; + +use UnitTester; + +class GetTypeStringCest +{ + /** + * Tests Phalcon\Logger\Formatter\Firephp :: getTypeString() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterFirephpGetTypeString(UnitTester $I) + { + $I->wantToTest("Logger\Formatter\Firephp - getTypeString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/Firephp/InterpolateCest.php b/tests/unit/Logger/Formatter/Firephp/InterpolateCest.php new file mode 100644 index 00000000000..d64d3b35047 --- /dev/null +++ b/tests/unit/Logger/Formatter/Firephp/InterpolateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter\Firephp; + +use UnitTester; + +class InterpolateCest +{ + /** + * Tests Phalcon\Logger\Formatter\Firephp :: interpolate() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterFirephpInterpolate(UnitTester $I) + { + $I->wantToTest("Logger\Formatter\Firephp - interpolate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/Firephp/LabelsEnabledCest.php b/tests/unit/Logger/Formatter/Firephp/LabelsEnabledCest.php new file mode 100644 index 00000000000..a698603948a --- /dev/null +++ b/tests/unit/Logger/Formatter/Firephp/LabelsEnabledCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter\Firephp; + +use UnitTester; + +class LabelsEnabledCest +{ + /** + * Tests Phalcon\Logger\Formatter\Firephp :: labelsEnabled() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterFirephpLabelsEnabled(UnitTester $I) + { + $I->wantToTest("Logger\Formatter\Firephp - labelsEnabled()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/Firephp/SetShowBacktraceCest.php b/tests/unit/Logger/Formatter/Firephp/SetShowBacktraceCest.php new file mode 100644 index 00000000000..36f23b9004a --- /dev/null +++ b/tests/unit/Logger/Formatter/Firephp/SetShowBacktraceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter\Firephp; + +use UnitTester; + +class SetShowBacktraceCest +{ + /** + * Tests Phalcon\Logger\Formatter\Firephp :: setShowBacktrace() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterFirephpSetShowBacktrace(UnitTester $I) + { + $I->wantToTest("Logger\Formatter\Firephp - setShowBacktrace()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/FormatCest.php b/tests/unit/Logger/Formatter/FormatCest.php new file mode 100644 index 00000000000..d2c784599b9 --- /dev/null +++ b/tests/unit/Logger/Formatter/FormatCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter; + +use UnitTester; + +class FormatCest +{ + /** + * Tests Phalcon\Logger\Formatter :: format() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterFormat(UnitTester $I) + { + $I->wantToTest("Logger\Formatter - format()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/GetTypeStringCest.php b/tests/unit/Logger/Formatter/GetTypeStringCest.php new file mode 100644 index 00000000000..0ecbe2a424c --- /dev/null +++ b/tests/unit/Logger/Formatter/GetTypeStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter; + +use UnitTester; + +class GetTypeStringCest +{ + /** + * Tests Phalcon\Logger\Formatter :: getTypeString() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterGetTypeString(UnitTester $I) + { + $I->wantToTest("Logger\Formatter - getTypeString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/InterpolateCest.php b/tests/unit/Logger/Formatter/InterpolateCest.php new file mode 100644 index 00000000000..15d3a08f540 --- /dev/null +++ b/tests/unit/Logger/Formatter/InterpolateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter; + +use UnitTester; + +class InterpolateCest +{ + /** + * Tests Phalcon\Logger\Formatter :: interpolate() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterInterpolate(UnitTester $I) + { + $I->wantToTest("Logger\Formatter - interpolate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/Json/FormatCest.php b/tests/unit/Logger/Formatter/Json/FormatCest.php new file mode 100644 index 00000000000..445197b4216 --- /dev/null +++ b/tests/unit/Logger/Formatter/Json/FormatCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter\Json; + +use UnitTester; + +class FormatCest +{ + /** + * Tests Phalcon\Logger\Formatter\Json :: format() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterJsonFormat(UnitTester $I) + { + $I->wantToTest("Logger\Formatter\Json - format()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/Json/GetTypeStringCest.php b/tests/unit/Logger/Formatter/Json/GetTypeStringCest.php new file mode 100644 index 00000000000..5617f6fae16 --- /dev/null +++ b/tests/unit/Logger/Formatter/Json/GetTypeStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter\Json; + +use UnitTester; + +class GetTypeStringCest +{ + /** + * Tests Phalcon\Logger\Formatter\Json :: getTypeString() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterJsonGetTypeString(UnitTester $I) + { + $I->wantToTest("Logger\Formatter\Json - getTypeString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/Json/InterpolateCest.php b/tests/unit/Logger/Formatter/Json/InterpolateCest.php new file mode 100644 index 00000000000..9f673295a93 --- /dev/null +++ b/tests/unit/Logger/Formatter/Json/InterpolateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter\Json; + +use UnitTester; + +class InterpolateCest +{ + /** + * Tests Phalcon\Logger\Formatter\Json :: interpolate() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterJsonInterpolate(UnitTester $I) + { + $I->wantToTest("Logger\Formatter\Json - interpolate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/Line/ConstructCest.php b/tests/unit/Logger/Formatter/Line/ConstructCest.php new file mode 100644 index 00000000000..e406be64516 --- /dev/null +++ b/tests/unit/Logger/Formatter/Line/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter\Line; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Logger\Formatter\Line :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterLineConstruct(UnitTester $I) + { + $I->wantToTest("Logger\Formatter\Line - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/Line/FormatCest.php b/tests/unit/Logger/Formatter/Line/FormatCest.php new file mode 100644 index 00000000000..83510acb855 --- /dev/null +++ b/tests/unit/Logger/Formatter/Line/FormatCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter\Line; + +use UnitTester; + +class FormatCest +{ + /** + * Tests Phalcon\Logger\Formatter\Line :: format() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterLineFormat(UnitTester $I) + { + $I->wantToTest("Logger\Formatter\Line - format()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/Line/GetDateFormatCest.php b/tests/unit/Logger/Formatter/Line/GetDateFormatCest.php new file mode 100644 index 00000000000..f34af86f933 --- /dev/null +++ b/tests/unit/Logger/Formatter/Line/GetDateFormatCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter\Line; + +use UnitTester; + +class GetDateFormatCest +{ + /** + * Tests Phalcon\Logger\Formatter\Line :: getDateFormat() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterLineGetDateFormat(UnitTester $I) + { + $I->wantToTest("Logger\Formatter\Line - getDateFormat()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/Line/GetFormatCest.php b/tests/unit/Logger/Formatter/Line/GetFormatCest.php new file mode 100644 index 00000000000..38916586b1c --- /dev/null +++ b/tests/unit/Logger/Formatter/Line/GetFormatCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter\Line; + +use UnitTester; + +class GetFormatCest +{ + /** + * Tests Phalcon\Logger\Formatter\Line :: getFormat() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterLineGetFormat(UnitTester $I) + { + $I->wantToTest("Logger\Formatter\Line - getFormat()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/Line/GetTypeStringCest.php b/tests/unit/Logger/Formatter/Line/GetTypeStringCest.php new file mode 100644 index 00000000000..0c085429ffb --- /dev/null +++ b/tests/unit/Logger/Formatter/Line/GetTypeStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter\Line; + +use UnitTester; + +class GetTypeStringCest +{ + /** + * Tests Phalcon\Logger\Formatter\Line :: getTypeString() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterLineGetTypeString(UnitTester $I) + { + $I->wantToTest("Logger\Formatter\Line - getTypeString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/Line/InterpolateCest.php b/tests/unit/Logger/Formatter/Line/InterpolateCest.php new file mode 100644 index 00000000000..2a34b5ed7f8 --- /dev/null +++ b/tests/unit/Logger/Formatter/Line/InterpolateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter\Line; + +use UnitTester; + +class InterpolateCest +{ + /** + * Tests Phalcon\Logger\Formatter\Line :: interpolate() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterLineInterpolate(UnitTester $I) + { + $I->wantToTest("Logger\Formatter\Line - interpolate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/Line/SetDateFormatCest.php b/tests/unit/Logger/Formatter/Line/SetDateFormatCest.php new file mode 100644 index 00000000000..e13634a5243 --- /dev/null +++ b/tests/unit/Logger/Formatter/Line/SetDateFormatCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter\Line; + +use UnitTester; + +class SetDateFormatCest +{ + /** + * Tests Phalcon\Logger\Formatter\Line :: setDateFormat() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterLineSetDateFormat(UnitTester $I) + { + $I->wantToTest("Logger\Formatter\Line - setDateFormat()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/Line/SetFormatCest.php b/tests/unit/Logger/Formatter/Line/SetFormatCest.php new file mode 100644 index 00000000000..c3b26f6f636 --- /dev/null +++ b/tests/unit/Logger/Formatter/Line/SetFormatCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter\Line; + +use UnitTester; + +class SetFormatCest +{ + /** + * Tests Phalcon\Logger\Formatter\Line :: setFormat() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterLineSetFormat(UnitTester $I) + { + $I->wantToTest("Logger\Formatter\Line - setFormat()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/LineCest.php b/tests/unit/Logger/Formatter/LineCest.php new file mode 100644 index 00000000000..8ed69756ba2 --- /dev/null +++ b/tests/unit/Logger/Formatter/LineCest.php @@ -0,0 +1,69 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter; + +use Phalcon\Logger; +use Phalcon\Logger\Adapter\File; +use Phalcon\Logger\Formatter\Line; +use UnitTester; + +class LineCest +{ + protected $logPath = ''; + + /** + * executed before each test + */ + public function _before(UnitTester $I) + { + $this->logPath = outputFolder('tests/logs/'); + } + + /** + * Tests new format logs correctly + * + * @author Nikos Dimopoulos + * @since 2012-09-17 + */ + public function testLoggerFormatterLineNewFormatLogsCorrectly(UnitTester $I) + { + $fileName = $I->getNewFileName('log', 'log'); + + $logger = new File($this->logPath . $fileName); + $formatter = new Line('%type%|%date%|%message%'); + + $logger->setFormatter($formatter); + $logger->log('Hello'); + $logger->close(); + + $I->amInPath($this->logPath); + $I->openFile($fileName); + $I->seeInThisFile(sprintf('DEBUG|%s|Hello', date('D, d M y H:i:s O'))); + $I->safeDeleteFile($fileName); + } + + /** + * Tests adding newline at end of message + * + * @issue https://github.com/phalcon/cphalcon/issues/10631 + * @author Phalcon Team + * @since 2016-01-28 + */ + public function testLoggerFormatterLineNewLines(UnitTester $I) + { + $formatter = new Line(); + + $expected = '[Thu, 01 Jan 70 00:00:00 +0000][INFO] msg' . PHP_EOL; + $actual = $formatter->format('msg', Logger::INFO, 0); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Logger/Formatter/LineTest.php b/tests/unit/Logger/Formatter/LineTest.php deleted file mode 100644 index ad4b2e312d4..00000000000 --- a/tests/unit/Logger/Formatter/LineTest.php +++ /dev/null @@ -1,88 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Logger\Formatter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class LineTest extends UnitTest -{ - protected $logPath = ''; - - /** - * executed before each test - */ - public function _before() - { - parent::_before(); - - $this->logPath = PATH_OUTPUT . 'tests/logs/'; - } - - /** - * Tests new format logs correctly - * - * @author Nikos Dimopoulos - * @since 2012-09-17 - */ - public function testLoggerFormatterLineNewFormatLogsCorrectly() - { - $this->specify( - "Line formatted does not set format correctly", - function () { - $I = $this->tester; - $fileName = $I->getNewFileName('log', 'log'); - - $logger = new File($this->logPath . $fileName); - - $formatter = new Line('%type%|%date%|%message%'); - - $logger->setFormatter($formatter); - $logger->log('Hello'); - $logger->close(); - - $I->amInPath($this->logPath); - $I->openFile($fileName); - $I->seeInThisFile(sprintf('DEBUG|%s|Hello', date('D, d M y H:i:s O'))); - $I->deleteFile($fileName); - } - ); - } - - /** - * Tests adding newline at end of message - * - * @issue https://github.com/phalcon/cphalcon/issues/10631 - * @author Serghei Iakovlev - * @since 2016-01-28 - */ - public function testLoggerFormatterLineNewLines() - { - $this->specify( - "Line formatter does not add new line at end of message", - function () { - $formatter = new Line(); - expect($formatter->format('msg', Logger::INFO, 0))->equals('[Thu, 01 Jan 70 00:00:00 +0000][INFO] msg'.PHP_EOL); - } - ); - } -} diff --git a/tests/unit/Logger/Formatter/Syslog/FormatCest.php b/tests/unit/Logger/Formatter/Syslog/FormatCest.php new file mode 100644 index 00000000000..5dd90d65eac --- /dev/null +++ b/tests/unit/Logger/Formatter/Syslog/FormatCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter\Syslog; + +use UnitTester; + +class FormatCest +{ + /** + * Tests Phalcon\Logger\Formatter\Syslog :: format() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterSyslogFormat(UnitTester $I) + { + $I->wantToTest("Logger\Formatter\Syslog - format()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/Syslog/GetTypeStringCest.php b/tests/unit/Logger/Formatter/Syslog/GetTypeStringCest.php new file mode 100644 index 00000000000..cc06f6fcc4b --- /dev/null +++ b/tests/unit/Logger/Formatter/Syslog/GetTypeStringCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter\Syslog; + +use UnitTester; + +class GetTypeStringCest +{ + /** + * Tests Phalcon\Logger\Formatter\Syslog :: getTypeString() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterSyslogGetTypeString(UnitTester $I) + { + $I->wantToTest("Logger\Formatter\Syslog - getTypeString()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Formatter/Syslog/InterpolateCest.php b/tests/unit/Logger/Formatter/Syslog/InterpolateCest.php new file mode 100644 index 00000000000..fc39269b4ec --- /dev/null +++ b/tests/unit/Logger/Formatter/Syslog/InterpolateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Formatter\Syslog; + +use UnitTester; + +class InterpolateCest +{ + /** + * Tests Phalcon\Logger\Formatter\Syslog :: interpolate() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerFormatterSyslogInterpolate(UnitTester $I) + { + $I->wantToTest("Logger\Formatter\Syslog - interpolate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Item/ConstructCest.php b/tests/unit/Logger/Item/ConstructCest.php new file mode 100644 index 00000000000..882efd8ebad --- /dev/null +++ b/tests/unit/Logger/Item/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Item; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Logger\Item :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerItemConstruct(UnitTester $I) + { + $I->wantToTest("Logger\Item - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Item/GetContextCest.php b/tests/unit/Logger/Item/GetContextCest.php new file mode 100644 index 00000000000..470dd67c9fe --- /dev/null +++ b/tests/unit/Logger/Item/GetContextCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Item; + +use UnitTester; + +class GetContextCest +{ + /** + * Tests Phalcon\Logger\Item :: getContext() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerItemGetContext(UnitTester $I) + { + $I->wantToTest("Logger\Item - getContext()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Item/GetMessageCest.php b/tests/unit/Logger/Item/GetMessageCest.php new file mode 100644 index 00000000000..26ab1bba8fa --- /dev/null +++ b/tests/unit/Logger/Item/GetMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Item; + +use UnitTester; + +class GetMessageCest +{ + /** + * Tests Phalcon\Logger\Item :: getMessage() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerItemGetMessage(UnitTester $I) + { + $I->wantToTest("Logger\Item - getMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Item/GetTimeCest.php b/tests/unit/Logger/Item/GetTimeCest.php new file mode 100644 index 00000000000..fd7153dd1d1 --- /dev/null +++ b/tests/unit/Logger/Item/GetTimeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Item; + +use UnitTester; + +class GetTimeCest +{ + /** + * Tests Phalcon\Logger\Item :: getTime() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerItemGetTime(UnitTester $I) + { + $I->wantToTest("Logger\Item - getTime()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Item/GetTypeCest.php b/tests/unit/Logger/Item/GetTypeCest.php new file mode 100644 index 00000000000..c0a188ecaed --- /dev/null +++ b/tests/unit/Logger/Item/GetTypeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Item; + +use UnitTester; + +class GetTypeCest +{ + /** + * Tests Phalcon\Logger\Item :: getType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerItemGetType(UnitTester $I) + { + $I->wantToTest("Logger\Item - getType()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Multiple/AlertCest.php b/tests/unit/Logger/Multiple/AlertCest.php new file mode 100644 index 00000000000..2f87c7d8a6e --- /dev/null +++ b/tests/unit/Logger/Multiple/AlertCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Multiple; + +use UnitTester; + +class AlertCest +{ + /** + * Tests Phalcon\Logger\Multiple :: alert() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerMultipleAlert(UnitTester $I) + { + $I->wantToTest("Logger\Multiple - alert()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Multiple/CriticalCest.php b/tests/unit/Logger/Multiple/CriticalCest.php new file mode 100644 index 00000000000..7057f68d4b0 --- /dev/null +++ b/tests/unit/Logger/Multiple/CriticalCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Multiple; + +use UnitTester; + +class CriticalCest +{ + /** + * Tests Phalcon\Logger\Multiple :: critical() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerMultipleCritical(UnitTester $I) + { + $I->wantToTest("Logger\Multiple - critical()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Multiple/DebugCest.php b/tests/unit/Logger/Multiple/DebugCest.php new file mode 100644 index 00000000000..7ddf6ee86bb --- /dev/null +++ b/tests/unit/Logger/Multiple/DebugCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Multiple; + +use UnitTester; + +class DebugCest +{ + /** + * Tests Phalcon\Logger\Multiple :: debug() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerMultipleDebug(UnitTester $I) + { + $I->wantToTest("Logger\Multiple - debug()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Multiple/EmergencyCest.php b/tests/unit/Logger/Multiple/EmergencyCest.php new file mode 100644 index 00000000000..1647b6c68b0 --- /dev/null +++ b/tests/unit/Logger/Multiple/EmergencyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Multiple; + +use UnitTester; + +class EmergencyCest +{ + /** + * Tests Phalcon\Logger\Multiple :: emergency() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerMultipleEmergency(UnitTester $I) + { + $I->wantToTest("Logger\Multiple - emergency()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Multiple/ErrorCest.php b/tests/unit/Logger/Multiple/ErrorCest.php new file mode 100644 index 00000000000..c638bc83bb1 --- /dev/null +++ b/tests/unit/Logger/Multiple/ErrorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Multiple; + +use UnitTester; + +class ErrorCest +{ + /** + * Tests Phalcon\Logger\Multiple :: error() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerMultipleError(UnitTester $I) + { + $I->wantToTest("Logger\Multiple - error()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Multiple/GetFormatterCest.php b/tests/unit/Logger/Multiple/GetFormatterCest.php new file mode 100644 index 00000000000..1998ee67cf8 --- /dev/null +++ b/tests/unit/Logger/Multiple/GetFormatterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Multiple; + +use UnitTester; + +class GetFormatterCest +{ + /** + * Tests Phalcon\Logger\Multiple :: getFormatter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerMultipleGetFormatter(UnitTester $I) + { + $I->wantToTest("Logger\Multiple - getFormatter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Multiple/GetLogLevelCest.php b/tests/unit/Logger/Multiple/GetLogLevelCest.php new file mode 100644 index 00000000000..e5071f78d6b --- /dev/null +++ b/tests/unit/Logger/Multiple/GetLogLevelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Multiple; + +use UnitTester; + +class GetLogLevelCest +{ + /** + * Tests Phalcon\Logger\Multiple :: getLogLevel() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerMultipleGetLogLevel(UnitTester $I) + { + $I->wantToTest("Logger\Multiple - getLogLevel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Multiple/GetLoggersCest.php b/tests/unit/Logger/Multiple/GetLoggersCest.php new file mode 100644 index 00000000000..71c75bf1567 --- /dev/null +++ b/tests/unit/Logger/Multiple/GetLoggersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Multiple; + +use UnitTester; + +class GetLoggersCest +{ + /** + * Tests Phalcon\Logger\Multiple :: getLoggers() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerMultipleGetLoggers(UnitTester $I) + { + $I->wantToTest("Logger\Multiple - getLoggers()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Multiple/InfoCest.php b/tests/unit/Logger/Multiple/InfoCest.php new file mode 100644 index 00000000000..789550b0ffe --- /dev/null +++ b/tests/unit/Logger/Multiple/InfoCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Multiple; + +use UnitTester; + +class InfoCest +{ + /** + * Tests Phalcon\Logger\Multiple :: info() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerMultipleInfo(UnitTester $I) + { + $I->wantToTest("Logger\Multiple - info()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Multiple/LogCest.php b/tests/unit/Logger/Multiple/LogCest.php new file mode 100644 index 00000000000..7447caf93f3 --- /dev/null +++ b/tests/unit/Logger/Multiple/LogCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Multiple; + +use UnitTester; + +class LogCest +{ + /** + * Tests Phalcon\Logger\Multiple :: log() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerMultipleLog(UnitTester $I) + { + $I->wantToTest("Logger\Multiple - log()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Multiple/NoticeCest.php b/tests/unit/Logger/Multiple/NoticeCest.php new file mode 100644 index 00000000000..fa660d0e3ab --- /dev/null +++ b/tests/unit/Logger/Multiple/NoticeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Multiple; + +use UnitTester; + +class NoticeCest +{ + /** + * Tests Phalcon\Logger\Multiple :: notice() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerMultipleNotice(UnitTester $I) + { + $I->wantToTest("Logger\Multiple - notice()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Multiple/PushCest.php b/tests/unit/Logger/Multiple/PushCest.php new file mode 100644 index 00000000000..adce10ea9a7 --- /dev/null +++ b/tests/unit/Logger/Multiple/PushCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Multiple; + +use UnitTester; + +class PushCest +{ + /** + * Tests Phalcon\Logger\Multiple :: push() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerMultiplePush(UnitTester $I) + { + $I->wantToTest("Logger\Multiple - push()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Multiple/SetFormatterCest.php b/tests/unit/Logger/Multiple/SetFormatterCest.php new file mode 100644 index 00000000000..47456f7f424 --- /dev/null +++ b/tests/unit/Logger/Multiple/SetFormatterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Multiple; + +use UnitTester; + +class SetFormatterCest +{ + /** + * Tests Phalcon\Logger\Multiple :: setFormatter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerMultipleSetFormatter(UnitTester $I) + { + $I->wantToTest("Logger\Multiple - setFormatter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Multiple/SetLogLevelCest.php b/tests/unit/Logger/Multiple/SetLogLevelCest.php new file mode 100644 index 00000000000..115388ca432 --- /dev/null +++ b/tests/unit/Logger/Multiple/SetLogLevelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Multiple; + +use UnitTester; + +class SetLogLevelCest +{ + /** + * Tests Phalcon\Logger\Multiple :: setLogLevel() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerMultipleSetLogLevel(UnitTester $I) + { + $I->wantToTest("Logger\Multiple - setLogLevel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Logger/Multiple/WarningCest.php b/tests/unit/Logger/Multiple/WarningCest.php new file mode 100644 index 00000000000..d5a17142fb2 --- /dev/null +++ b/tests/unit/Logger/Multiple/WarningCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Logger\Multiple; + +use UnitTester; + +class WarningCest +{ + /** + * Tests Phalcon\Logger\Multiple :: warning() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function loggerMultipleWarning(UnitTester $I) + { + $I->wantToTest("Logger\Multiple - warning()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Messages/Message/ConstructCest.php b/tests/unit/Messages/Message/ConstructCest.php new file mode 100644 index 00000000000..ffc74d0f408 --- /dev/null +++ b/tests/unit/Messages/Message/ConstructCest.php @@ -0,0 +1,48 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Message; + +use Phalcon\Messages\Message; +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Messages\Message :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessageConstruct(UnitTester $I) + { + $I->wantToTest("Messages\Message - __construct()"); + $message = new Message('This is a message #1', 'MyField', 'MyType', 111); + + $expected = 'This is a message #1'; + $actual = $message->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = 'MyField'; + $actual = $message->getField(); + $I->assertEquals($expected, $actual); + + $expected = 'MyType'; + $actual = $message->getType(); + $I->assertEquals($expected, $actual); + + $expected = 111; + $actual = $message->getCode(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Message/GetCodeCest.php b/tests/unit/Messages/Message/GetCodeCest.php new file mode 100644 index 00000000000..ca6d56a8460 --- /dev/null +++ b/tests/unit/Messages/Message/GetCodeCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Message; + +use Phalcon\Messages\Message; +use UnitTester; + +class GetCodeCest +{ + /** + * Tests Phalcon\Messages\Message :: getCode() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessageGetCode(UnitTester $I) + { + $I->wantToTest("Messages\Message - getCode()"); + $message = new Message('This is a message #1', 'MyField', 'MyType', 111); + + $expected = 111; + $actual = $message->getCode(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Message/GetFieldCest.php b/tests/unit/Messages/Message/GetFieldCest.php new file mode 100644 index 00000000000..c527e8a5933 --- /dev/null +++ b/tests/unit/Messages/Message/GetFieldCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Message; + +use Phalcon\Messages\Message; +use UnitTester; + +class GetFieldCest +{ + /** + * Tests Phalcon\Messages\Message :: getField() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessageGetField(UnitTester $I) + { + $I->wantToTest("Messages\Message - getField()"); + $message = new Message('This is a message #1', 'MyField', 'MyType', 111); + + $expected = 'MyField'; + $actual = $message->getField(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Message/GetMessageCest.php b/tests/unit/Messages/Message/GetMessageCest.php new file mode 100644 index 00000000000..b9291f34455 --- /dev/null +++ b/tests/unit/Messages/Message/GetMessageCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Message; + +use Phalcon\Messages\Message; +use UnitTester; + +class GetMessageCest +{ + /** + * Tests Phalcon\Messages\Message :: getMessage() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessageGetMessage(UnitTester $I) + { + $I->wantToTest("Messages\Message - getMessage()"); + $message = new Message('This is a message #1', 'MyField', 'MyType', 111); + + $expected = 'This is a message #1'; + $actual = $message->getMessage(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Message/GetTypeCest.php b/tests/unit/Messages/Message/GetTypeCest.php new file mode 100644 index 00000000000..fdb678faa6e --- /dev/null +++ b/tests/unit/Messages/Message/GetTypeCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Message; + +use Phalcon\Messages\Message; +use UnitTester; + +class GetTypeCest +{ + /** + * Tests Phalcon\Messages\Message :: getType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessageGetType(UnitTester $I) + { + $I->wantToTest("Messages\Message - getType()"); + $message = new Message('This is a message #1', 'MyField', 'MyType', 111); + + $expected = 'MyType'; + $actual = $message->getType(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Message/JsonSerializeCest.php b/tests/unit/Messages/Message/JsonSerializeCest.php new file mode 100644 index 00000000000..3092bb74f8d --- /dev/null +++ b/tests/unit/Messages/Message/JsonSerializeCest.php @@ -0,0 +1,45 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Message; + +use Phalcon\Messages\Message; +use UnitTester; + +class JsonSerializeCest +{ + /** + * Tests Phalcon\Messages\Message :: jsonSerialize() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessageJsonSerialize(UnitTester $I) + { + $I->wantToTest("Messages\Message - jsonSerialize()"); + $message = new Message('This is a message #1', 'MyField', 'MyType', 111); + + $expected = '\JsonSerializable'; + $actual = $message; + $I->assertInstanceOf($expected, $actual); + + $expected = [ + 'field' => 'MyField', + 'message' => 'This is a message #1', + 'type' => 'MyType', + 'code' => 111, + ]; + $actual = $message->jsonSerialize(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Message/SetCodeCest.php b/tests/unit/Messages/Message/SetCodeCest.php new file mode 100644 index 00000000000..283a2bc4f79 --- /dev/null +++ b/tests/unit/Messages/Message/SetCodeCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Message; + +use Phalcon\Messages\Message; +use UnitTester; + +class SetCodeCest +{ + /** + * Tests Phalcon\Messages\Message :: setCode() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessageSetCode(UnitTester $I) + { + $I->wantToTest("Messages\Message - setCode()"); + $message = new Message('This is a message #1'); + $message->setCode(111); + + $expected = 111; + $actual = $message->getCode(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Message/SetFieldCest.php b/tests/unit/Messages/Message/SetFieldCest.php new file mode 100644 index 00000000000..d60bd16a823 --- /dev/null +++ b/tests/unit/Messages/Message/SetFieldCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Message; + +use Phalcon\Messages\Message; +use UnitTester; + +class SetFieldCest +{ + /** + * Tests Phalcon\Messages\Message :: setField() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessageSetField(UnitTester $I) + { + $I->wantToTest("Messages\Message - setField()"); + $message = new Message('This is a message #1'); + $message->setField('MyField'); + + $expected = 'MyField'; + $actual = $message->getField(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Message/SetMessageCest.php b/tests/unit/Messages/Message/SetMessageCest.php new file mode 100644 index 00000000000..d0bdffc3efb --- /dev/null +++ b/tests/unit/Messages/Message/SetMessageCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Message; + +use Phalcon\Messages\Message; +use UnitTester; + +class SetMessageCest +{ + /** + * Tests Phalcon\Messages\Message :: setMessage() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessageSetMessage(UnitTester $I) + { + $I->wantToTest("Messages\Message - setMessage()"); + $message = new Message('This is a message #1'); + $message->setMessage('This is a message #2'); + + $expected = 'This is a message #2'; + $actual = $message->getMessage(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Message/SetStateCest.php b/tests/unit/Messages/Message/SetStateCest.php new file mode 100644 index 00000000000..540c40704ef --- /dev/null +++ b/tests/unit/Messages/Message/SetStateCest.php @@ -0,0 +1,55 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Message; + +use Phalcon\Messages\Message; +use UnitTester; + +class SetStateCest +{ + /** + * Tests Phalcon\Messages\Message :: __set_state() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessageSetState(UnitTester $I) + { + $I->wantToTest("Messages\Message - __set_state()"); + $message = Message::__set_state( + [ + '_message' => 'This is a message #1', + '_field' => 'MyField', + '_type' => 'MyType', + '_code' => 111, + ] + ); + + $expected = 'This is a message #1'; + $actual = $message->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = 'MyField'; + $actual = $message->getField(); + $I->assertEquals($expected, $actual); + + $expected = 'MyType'; + $actual = $message->getType(); + $I->assertEquals($expected, $actual); + + $expected = 111; + $actual = $message->getCode(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Message/SetTypeCest.php b/tests/unit/Messages/Message/SetTypeCest.php new file mode 100644 index 00000000000..490fae0bd29 --- /dev/null +++ b/tests/unit/Messages/Message/SetTypeCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Message; + +use Phalcon\Messages\Message; +use UnitTester; + +class SetTypeCest +{ + /** + * Tests Phalcon\Messages\Message :: setType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessageSetType(UnitTester $I) + { + $I->wantToTest("Messages\Message - setType()"); + $message = new Message('This is a message #1'); + $message->setType('MyType'); + + $expected = 'MyType'; + $actual = $message->getType(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Message/ToStringCest.php b/tests/unit/Messages/Message/ToStringCest.php new file mode 100644 index 00000000000..91f9caf6c26 --- /dev/null +++ b/tests/unit/Messages/Message/ToStringCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Message; + +use Phalcon\Messages\Message; +use UnitTester; + +class ToStringCest +{ + /** + * Tests Phalcon\Messages\Message :: __toString() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessageToString(UnitTester $I) + { + $I->wantToTest("Messages\Message - __toString()"); + $message = new Message('This is a message #1', 'MyField', 'MyType', 111); + + $expected = 'This is a message #1'; + $actual = $message->__toString(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Messages/AppendMessageCest.php b/tests/unit/Messages/Messages/AppendMessageCest.php new file mode 100644 index 00000000000..10895ddeb15 --- /dev/null +++ b/tests/unit/Messages/Messages/AppendMessageCest.php @@ -0,0 +1,38 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Messages; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use UnitTester; + +class AppendMessageCest +{ + /** + * Tests Phalcon\Messages\Messages :: appendMessage() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessagesAppendMessage(UnitTester $I) + { + $I->wantToTest("Messages\Messages - appendMessage()"); + $messages = new Messages(); + $I->assertCount(0, $messages); + + $messages->appendMessage(new Message('error a', 'myField', 'MyValidator')); + + $I->assertCount(1, $messages); + } +} diff --git a/tests/unit/Messages/Messages/AppendMessagesCest.php b/tests/unit/Messages/Messages/AppendMessagesCest.php new file mode 100644 index 00000000000..4ae73fbcaf4 --- /dev/null +++ b/tests/unit/Messages/Messages/AppendMessagesCest.php @@ -0,0 +1,43 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Messages; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use UnitTester; + +class AppendMessagesCest +{ + /** + * Tests Phalcon\Messages\Messages :: appendMessages() - array + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessagesAppendMessagesArray(UnitTester $I) + { + $I->wantToTest("Messages\Messages - appendMessages()"); + $messages = new Messages(); + $messages->appendMessage(new Message('This is a message #3', 'MyField3', 'MyType3', 111)); + $I->assertCount(1, $messages); + + $newMessages = new Messages(); + $newMessages->appendMessage(new Message('This is a message #1', 'MyField1', 'MyType1', 111)); + $newMessages->appendMessage(new Message('This is a message #2', 'MyField2', 'MyType2', 222)); + $I->assertCount(2, $newMessages); + + $messages->appendMessages($newMessages); + $I->assertCount(3, $messages); + } +} diff --git a/tests/unit/Messages/Messages/ConstructCest.php b/tests/unit/Messages/Messages/ConstructCest.php new file mode 100644 index 00000000000..ffabe3ea985 --- /dev/null +++ b/tests/unit/Messages/Messages/ConstructCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Messages; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Messages\Messages :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessagesConstruct(UnitTester $I) + { + $I->wantToTest("Messages\Messages - __construct()"); + $messages = new Messages( + [ + new Message('This is a message #1', 'MyField1', 'MyType1', 111), + new Message('This is a message #2', 'MyField2', 'MyType2', 222), + ] + ); + + $I->assertCount(2, $messages); + } +} diff --git a/tests/unit/Messages/Messages/CountCest.php b/tests/unit/Messages/Messages/CountCest.php new file mode 100644 index 00000000000..c60688cc297 --- /dev/null +++ b/tests/unit/Messages/Messages/CountCest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Messages; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use UnitTester; + +class CountCest +{ + /** + * Tests Phalcon\Messages\Messages :: count() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessagesCount(UnitTester $I) + { + $I->wantToTest("Messages\Messages - count()"); + $messages = new Messages( + [ + new Message('This is a message #1', 'MyField1', 'MyType1', 111), + new Message('This is a message #2', 'MyField2', 'MyType2', 222), + ] + ); + + $expected = 2; + $actual = $messages->count(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Messages/CurrentCest.php b/tests/unit/Messages/Messages/CurrentCest.php new file mode 100644 index 00000000000..9ad5695a81f --- /dev/null +++ b/tests/unit/Messages/Messages/CurrentCest.php @@ -0,0 +1,52 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Messages; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use UnitTester; + +class CurrentCest +{ + /** + * Tests Phalcon\Messages\Messages :: current() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessagesCurrent(UnitTester $I) + { + $I->wantToTest("Messages\Messages - current()"); + $messages = new Messages( + [ + new Message('This is a message #1', 'MyField1', 'MyType1', 111), + new Message('This is a message #2', 'MyField2', 'MyType2', 222), + ] + ); + + $class = Message::class; + $actual = $messages->current(); + $I->assertInstanceOf($class, $actual); + + $expected = Message::__set_state( + [ + '_message' => 'This is a message #1', + '_field' => 'MyField1', + '_type' => 'MyType1', + '_code' => 111, + ] + ); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Messages/FilterCest.php b/tests/unit/Messages/Messages/FilterCest.php new file mode 100644 index 00000000000..6ff43553e08 --- /dev/null +++ b/tests/unit/Messages/Messages/FilterCest.php @@ -0,0 +1,66 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Messages; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use UnitTester; + +class FilterCest +{ + /** + * Tests Phalcon\Messages\Messages :: filter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessagesFilter(UnitTester $I) + { + $I->wantToTest("Messages\Messages - filter()"); + $messages = new Messages( + [ + new Message('Password: no number present', 'Password', 'MyType1', 111), + new Message('Password: no uppercase letter present', 'Password', 'MyType2', 222), + new Message('Email: not valid', 'Email', 'MyType3', 333), + ] + ); + + $actual = $messages; + $I->assertCount(3, $actual); + + $actual = $messages->filter('Password'); + $I->assertTrue(is_array($actual)); + $I->assertCount(2, $actual); + + $expected = [ + 0 => Message::__set_state( + [ + '_message' => 'Password: no number present', + '_field' => 'Password', + '_type' => 'MyType1', + '_code' => 111, + ] + ), + 1 => Message::__set_state( + [ + '_message' => 'Password: no uppercase letter present', + '_field' => 'Password', + '_type' => 'MyType2', + '_code' => 222, + ] + ), + ]; + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Messages/JsonSerializeCest.php b/tests/unit/Messages/Messages/JsonSerializeCest.php new file mode 100644 index 00000000000..02a317b9789 --- /dev/null +++ b/tests/unit/Messages/Messages/JsonSerializeCest.php @@ -0,0 +1,49 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Messages; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use UnitTester; + +class JsonSerializeCest +{ + /** + * Tests Phalcon\Messages\Messages :: jsonSerialize() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessagesJsonSerialize(UnitTester $I) + { + $I->wantToTest("Messages\Messages - jsonSerialize()"); + $messages = new Messages( + [ + new Message('This is a message #1', 'MyField1', 'MyType1', 111), + new Message('This is a message #2', 'MyField2', 'MyType2', 222), + ] + ); + $expected = '\JsonSerializable'; + $actual = $messages; + $I->assertInstanceOf($expected, $actual); + + $data = $messages->jsonSerialize(); + $condition = is_array($data); + $I->assertTrue($condition); + + $expected = 2; + $actual = count($data); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Messages/KeyCest.php b/tests/unit/Messages/Messages/KeyCest.php new file mode 100644 index 00000000000..8b4b881276b --- /dev/null +++ b/tests/unit/Messages/Messages/KeyCest.php @@ -0,0 +1,44 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Messages; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use UnitTester; + +class KeyCest +{ + /** + * Tests Phalcon\Messages\Messages :: key() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessagesKey(UnitTester $I) + { + $I->wantToTest("Messages\Messages - key()"); + $messages = new Messages( + [ + 0 => new Message('This is a message #1', 'MyField1', 'MyType1', 111), + 1 => new Message('This is a message #2', 'MyField2', 'MyType2', 222), + ] + ); + + $messages->next(); + + $expected = 1; + $actual = $messages->key(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Messages/NextCest.php b/tests/unit/Messages/Messages/NextCest.php new file mode 100644 index 00000000000..ca13fd7258d --- /dev/null +++ b/tests/unit/Messages/Messages/NextCest.php @@ -0,0 +1,54 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Messages; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use UnitTester; + +class NextCest +{ + /** + * Tests Phalcon\Messages\Messages :: next() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessagesNext(UnitTester $I) + { + $I->wantToTest("Messages\Messages - next()"); + $messages = new Messages( + [ + new Message('This is a message #1', 'MyField1', 'MyType1', 111), + new Message('This is a message #2', 'MyField2', 'MyType2', 222), + ] + ); + + $messages->next(); + + $class = Message::class; + $actual = $messages->current(); + $I->assertInstanceOf($class, $actual); + + $expected = Message::__set_state( + [ + '_message' => 'This is a message #2', + '_field' => 'MyField2', + '_type' => 'MyType2', + '_code' => 222, + ] + ); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Messages/OffsetExistsCest.php b/tests/unit/Messages/Messages/OffsetExistsCest.php new file mode 100644 index 00000000000..e12aaec4758 --- /dev/null +++ b/tests/unit/Messages/Messages/OffsetExistsCest.php @@ -0,0 +1,47 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Messages; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use UnitTester; + +class OffsetExistsCest +{ + /** + * Tests Phalcon\Messages\Messages :: offsetExists() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessagesOffsetExists(UnitTester $I) + { + $I->wantToTest("Messages\Messages - offsetExists()"); + $messages = new Messages( + [ + 1 => new Message('This is a message #1', 'MyField1', 'MyType1', 111), + 2 => new Message('This is a message #2', 'MyField2', 'MyType2', 222), + ] + ); + + $actual = $messages->offsetExists(0); + $I->assertFalse($actual); + + $actual = $messages->offsetExists(1); + $I->assertTrue($actual); + + $actual = $messages->offsetExists(2); + $I->assertTrue($actual); + } +} diff --git a/tests/unit/Messages/Messages/OffsetGetCest.php b/tests/unit/Messages/Messages/OffsetGetCest.php new file mode 100644 index 00000000000..5c18562dfd0 --- /dev/null +++ b/tests/unit/Messages/Messages/OffsetGetCest.php @@ -0,0 +1,54 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Messages; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use UnitTester; + +class OffsetGetCest +{ + /** + * Tests Phalcon\Messages\Messages :: offsetGet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessagesOffsetGet(UnitTester $I) + { + $I->wantToTest("Messages\Messages - offsetGet()"); + $messages = new Messages( + [ + 1 => new Message('This is a message #1', 'MyField1', 'MyType1', 111), + 2 => new Message('This is a message #2', 'MyField2', 'MyType2', 222), + ] + ); + + $message = $messages->offsetGet(2); + $class = Message::class; + $actual = $message; + $I->assertInstanceOf($class, $actual); + + $expected = Message::__set_state( + [ + '_message' => 'This is a message #2', + '_field' => 'MyField2', + '_type' => 'MyType2', + '_code' => 222, + ] + ); + $actual = $message; + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Messages/OffsetSetCest.php b/tests/unit/Messages/Messages/OffsetSetCest.php new file mode 100644 index 00000000000..baf4409b523 --- /dev/null +++ b/tests/unit/Messages/Messages/OffsetSetCest.php @@ -0,0 +1,62 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Messages; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use UnitTester; + +class OffsetSetCest +{ + /** + * Tests Phalcon\Messages\Messages :: offsetSet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessagesOffsetSet(UnitTester $I) + { + $I->wantToTest("Messages\Messages - offsetSet()"); + $messages = new Messages( + [ + 0 => new Message('This is a message #1', 'MyField1', 'MyType1', 111), + 1 => new Message('This is a message #2', 'MyField2', 'MyType2', 222), + ] + ); + + $messages->offsetSet( + 2, + new Message('This is a message #3', 'MyField3', 'MyType3', 777) + ); + + $expected = 3; + $I->assertCount($expected, $messages); + + $message = $messages->offsetGet(2); + $class = Message::class; + $actual = $message; + $I->assertInstanceOf($class, $actual); + + $expected = Message::__set_state( + [ + '_message' => 'This is a message #3', + '_field' => 'MyField3', + '_type' => 'MyType3', + '_code' => 777, + ] + ); + $actual = $message; + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Messages/OffsetUnsetCest.php b/tests/unit/Messages/Messages/OffsetUnsetCest.php new file mode 100644 index 00000000000..6ba6d0bebb9 --- /dev/null +++ b/tests/unit/Messages/Messages/OffsetUnsetCest.php @@ -0,0 +1,64 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Messages; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use UnitTester; + +class OffsetUnsetCest +{ + /** + * Tests Phalcon\Messages\Messages :: offsetUnset() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2017-02-12 + */ + public function messagesMessagesOffsetUnset(UnitTester $I) + { + $I->wantToTest("Messages\Messages - offsetUnset()"); + $messages = new Messages( + [ + 0 => new Message('This is a message #1', 'MyField1', 'MyType1', 111), + 1 => new Message('This is a message #2', 'MyField2', 'MyType2', 222), + ] + ); + + $I->assertCount(2, $messages); + + $messages->offsetUnset(0); + + $actual = $messages->offsetUnset(1); + $I->assertNull($actual); + + /** + * Unset discards the offset so we need to get 0 again + */ + $message = $messages->offsetGet(0); + $class = Message::class; + $actual = $message; + $I->assertInstanceOf($class, $actual); + + $expected = Message::__set_state( + [ + '_message' => 'This is a message #2', + '_field' => 'MyField2', + '_type' => 'MyType2', + '_code' => 222, + ] + ); + $actual = $message; + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Messages/RewindCest.php b/tests/unit/Messages/Messages/RewindCest.php new file mode 100644 index 00000000000..82c7c5eb88a --- /dev/null +++ b/tests/unit/Messages/Messages/RewindCest.php @@ -0,0 +1,64 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Messages; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use UnitTester; + +class RewindCest +{ + /** + * Tests Phalcon\Messages\Messages :: rewind() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessagesRewind(UnitTester $I) + { + $I->wantToTest("Messages\Messages - rewind()"); + $messages = new Messages( + [ + new Message('This is a message #1', 'MyField1', 'MyType1', 111), + new Message('This is a message #2', 'MyField2', 'MyType2', 222), + ] + ); + + $messages->next(); + + $class = Message::class; + $actual = $messages->current(); + $I->assertInstanceOf($class, $actual); + + $expected = 'This is a message #2'; + $actual = $actual->__toString(); + $I->assertEquals($expected, $actual); + + $messages->rewind(); + + $class = Message::class; + $actual = $messages->current(); + $I->assertInstanceOf($class, $actual); + + $expected = Message::__set_state( + [ + '_message' => 'This is a message #1', + '_field' => 'MyField1', + '_type' => 'MyType1', + '_code' => 111, + ] + ); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Messages/SetStateCest.php b/tests/unit/Messages/Messages/SetStateCest.php new file mode 100644 index 00000000000..cf8f6d971dd --- /dev/null +++ b/tests/unit/Messages/Messages/SetStateCest.php @@ -0,0 +1,91 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Messages; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use UnitTester; + +class SetStateCest +{ + /** + * Tests Phalcon\Messages\Messages :: __set_state() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessagesSetState(UnitTester $I) + { + $I->wantToTest("Messages\Messages - __set_state()"); + $messages = Messages::__set_state( + [ + '_position' => 0, + '_messages' => [ + 0 => Message::__set_state( + [ + '_message' => 'This is a message #1', + '_field' => 'MyField1', + '_type' => 'MyType1', + '_code' => 111, + ] + ), + 1 => Message::__set_state( + [ + '_message' => 'This is a message #2', + '_field' => 'MyField2', + '_type' => 'MyType2', + '_code' => 222, + ] + ), + ], + ] + ); + + $I->assertCount(2, $messages); + + $message = $messages[0]; + $expected = 'This is a message #1'; + $actual = $message->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = 'MyField1'; + $actual = $message->getField(); + $I->assertEquals($expected, $actual); + + $expected = 'MyType1'; + $actual = $message->getType(); + $I->assertEquals($expected, $actual); + + $expected = 111; + $actual = $message->getCode(); + $I->assertEquals($expected, $actual); + + $message = $messages[1]; + $expected = 'This is a message #2'; + $actual = $message->getMessage(); + $I->assertEquals($expected, $actual); + + $expected = 'MyField2'; + $actual = $message->getField(); + $I->assertEquals($expected, $actual); + + $expected = 'MyType2'; + $actual = $message->getType(); + $I->assertEquals($expected, $actual); + + $expected = 222; + $actual = $message->getCode(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Messages/Messages/ValidCest.php b/tests/unit/Messages/Messages/ValidCest.php new file mode 100644 index 00000000000..f79821b2d48 --- /dev/null +++ b/tests/unit/Messages/Messages/ValidCest.php @@ -0,0 +1,51 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Messages\Messages; + +use Phalcon\Messages\Message; +use Phalcon\Messages\Messages; +use UnitTester; + +class ValidCest +{ + /** + * Tests Phalcon\Messages\Messages :: valid() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function messagesMessagesValid(UnitTester $I) + { + $I->wantToTest("Messages\Messages - valid()"); + $messages = new Messages( + [ + new Message('This is a message #1', 'MyField1', 'MyType1', 111), + new Message('This is a message #2', 'MyField2', 'MyType2', 222), + ] + ); + + $messages->rewind(); + + $actual = $messages->valid(); + $I->assertTrue($actual); + + $messages->next(); + $actual = $messages->valid(); + $I->assertTrue($actual); + + $messages->next(); + $actual = $messages->valid(); + $I->assertFalse($actual); + } +} diff --git a/tests/unit/Messages/MessagesTest.php b/tests/unit/Messages/MessagesTest.php deleted file mode 100644 index 451fc1434df..00000000000 --- a/tests/unit/Messages/MessagesTest.php +++ /dev/null @@ -1,221 +0,0 @@ - - * @author Serghei Iakovlev - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Messages - * @group messages - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class MessagesTest extends UnitTest -{ - /** - * Tests append messages - * - * @test - * @author Serghei Iakovlev - * @since 2016-06-12 - */ - public function validationGroup() - { - $this->specify( - 'The Message Group does not work with Messages as expected', - function () { - $message1 = new Message('This a message #1', 'field1', 'Type1'); - $message2 = new Message('This a message #2', 'field2', 'Type2'); - $message3 = new Message('This a message #3', 'field3', 'Type3'); - - $messages = new Messages([$message1, $message2]); - - expect($messages)->count(2); - - expect(isset($messages[0]))->true(); - expect(isset($messages[1]))->true(); - - expect($messages[0])->equals($message1); - expect($messages[1])->equals($message2); - - $messages->appendMessage($message3); - - expect($messages[2])->equals($message3); - - expect($messages)->count(3); - - foreach ($messages as $position => $message) { - expect($messages[$position]->getMessage())->equals($message->getMessage()); - expect($messages[$position]->getField())->equals($message->getField()); - expect($messages[$position]->getType())->equals($message->getType()); - } - } - ); - } - - /** - * Tests unsetting a message by index - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/12455 - * @author Serghei Iakovlev - * @since 2017-02-12 - */ - public function unsettingByIndex() - { - $this->specify( - 'error', - function () { - $validation = new Validation(); - - $validation->appendMessage(new Message('error a', 'myField', 'MyValidator')); - - expect($validation->getMessages())->count(1); - expect($validation->getMessages()[0])->equals(Message::__set_state([ - '_message' => 'error a', - '_field' => 'myField', - '_type' => 'MyValidator', - '_code' => 0, - ])); - - $validation->appendMessage(new Message('error b', 'myField', 'MyValidator')); - - expect($validation->getMessages())->count(2); - expect($validation->getMessages()[1])->equals(Message::__set_state([ - '_message' => 'error b', - '_field' => 'myField', - '_type' => 'MyValidator', - '_code' => 0, - ])); - - $messages = $validation->getMessages(); - unset($messages[count($messages) - 1]); - - expect($validation->getMessages())->count(1); - expect($validation->getMessages()[0])->equals(Message::__set_state([ - '_message' => 'error a', - '_field' => 'myField', - '_type' => 'MyValidator', - '_code' => 0, - ])); - - $validation->appendMessage(new Message('error c', 'myField', 'MyValidator')); - - expect($validation->getMessages())->count(2); - expect($validation->getMessages()[1])->equals(Message::__set_state([ - '_message' => 'error c', - '_field' => 'myField', - '_type' => 'MyValidator', - '_code' => 0, - ])); - - expect($validation->getMessages())->equals(Messages::__set_state([ - '_position' => 0, - '_messages' => [ - 0 => Message::__set_state([ - '_message' => 'error a', - '_field' => 'myField', - '_type' => 'MyValidator', - '_code' => 0, - ]), - 1 => Message::__set_state([ - '_message' => 'error c', - '_field' => 'myField', - '_type' => 'MyValidator', - '_code' => 0, - ]), - ] - ])); - - $validation->appendMessage(new Message('error d', 'myField', 'MyValidator')); - $validation->appendMessage(new Message('error e', 'myField', 'MyValidator')); - - $messages = $validation->getMessages(); - $messages->offsetUnset(1); - - expect($validation->getMessages())->equals(Messages::__set_state([ - '_position' => 0, - '_messages' => [ - 0 => Message::__set_state([ - '_message' => 'error a', - '_field' => 'myField', - '_type' => 'MyValidator', - '_code' => 0, - ]), - 1 => Message::__set_state([ - '_message' => 'error d', - '_field' => 'myField', - '_type' => 'MyValidator', - '_code' => 0, - ]), - 2 => Message::__set_state([ - '_message' => 'error e', - '_field' => 'myField', - '_type' => 'MyValidator', - '_code' => 0, - ]), - ] - ])); - } - ); - } - - /** - * Tests JsonSerializable - * - * @test - * @author Nikolaos Dimopoulos - * @since 2018-10-18 - */ - public function shouldImplementJsonSerializable() - { - $this->specify( - 'The Messages do not implement JsonSerializable', - function () { - $message1 = new Message('This is a message #1', 'field1', 'Type1', 1); - $message2 = new Message('This is a message #2', 'field2', 'Type2', 2); - $message3 = new Message('This is a message #3', 'field3', 'Type3', 3); - expect($message1 instanceof \JsonSerializable)->true(); - - $messages = new Messages( - [ - $message1, - $message2, - $message3, - ] - ); - - expect($messages instanceof \JsonSerializable)->true(); - - $expected = [ - 'field' => 'field1', - 'message' => 'This is a message #1', - 'type' => 'Type1', - 'code' => 1, - ]; - - expect($message1->jsonSerialize())->equals($expected); - - $actual = $messages->jsonSerialize(); - expect(is_array($actual))->true(); - expect(count($actual))->equals(3); - } - ); - } -} diff --git a/tests/unit/Mvc/Application/ConstructCest.php b/tests/unit/Mvc/Application/ConstructCest.php new file mode 100644 index 00000000000..154faf205dc --- /dev/null +++ b/tests/unit/Mvc/Application/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Application; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Application :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcApplicationConstruct(UnitTester $I) + { + $I->wantToTest("Mvc\Application - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Application/GetDICest.php b/tests/unit/Mvc/Application/GetDICest.php new file mode 100644 index 00000000000..717b7992529 --- /dev/null +++ b/tests/unit/Mvc/Application/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Application; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Application :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcApplicationGetDI(UnitTester $I) + { + $I->wantToTest("Mvc\Application - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Application/GetDefaultModuleCest.php b/tests/unit/Mvc/Application/GetDefaultModuleCest.php new file mode 100644 index 00000000000..d3e6bdf6ddb --- /dev/null +++ b/tests/unit/Mvc/Application/GetDefaultModuleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Application; + +use UnitTester; + +class GetDefaultModuleCest +{ + /** + * Tests Phalcon\Mvc\Application :: getDefaultModule() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcApplicationGetDefaultModule(UnitTester $I) + { + $I->wantToTest("Mvc\Application - getDefaultModule()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Application/GetEventsManagerCest.php b/tests/unit/Mvc/Application/GetEventsManagerCest.php new file mode 100644 index 00000000000..61b9a2f0248 --- /dev/null +++ b/tests/unit/Mvc/Application/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Application; + +use UnitTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Application :: getEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcApplicationGetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\Application - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Application/GetModuleCest.php b/tests/unit/Mvc/Application/GetModuleCest.php new file mode 100644 index 00000000000..d48cc86f6e2 --- /dev/null +++ b/tests/unit/Mvc/Application/GetModuleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Application; + +use UnitTester; + +class GetModuleCest +{ + /** + * Tests Phalcon\Mvc\Application :: getModule() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcApplicationGetModule(UnitTester $I) + { + $I->wantToTest("Mvc\Application - getModule()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Application/GetModulesCest.php b/tests/unit/Mvc/Application/GetModulesCest.php new file mode 100644 index 00000000000..31d3f27692e --- /dev/null +++ b/tests/unit/Mvc/Application/GetModulesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Application; + +use UnitTester; + +class GetModulesCest +{ + /** + * Tests Phalcon\Mvc\Application :: getModules() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcApplicationGetModules(UnitTester $I) + { + $I->wantToTest("Mvc\Application - getModules()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Application/HandleCest.php b/tests/unit/Mvc/Application/HandleCest.php new file mode 100644 index 00000000000..e43b76552cd --- /dev/null +++ b/tests/unit/Mvc/Application/HandleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Application; + +use UnitTester; + +class HandleCest +{ + /** + * Tests Phalcon\Mvc\Application :: handle() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcApplicationHandle(UnitTester $I) + { + $I->wantToTest("Mvc\Application - handle()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Application/RegisterModulesCest.php b/tests/unit/Mvc/Application/RegisterModulesCest.php new file mode 100644 index 00000000000..c957949d197 --- /dev/null +++ b/tests/unit/Mvc/Application/RegisterModulesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Application; + +use UnitTester; + +class RegisterModulesCest +{ + /** + * Tests Phalcon\Mvc\Application :: registerModules() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcApplicationRegisterModules(UnitTester $I) + { + $I->wantToTest("Mvc\Application - registerModules()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Application/SendCookiesOnHandleRequestCest.php b/tests/unit/Mvc/Application/SendCookiesOnHandleRequestCest.php new file mode 100644 index 00000000000..5415a6a253e --- /dev/null +++ b/tests/unit/Mvc/Application/SendCookiesOnHandleRequestCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Application; + +use UnitTester; + +class SendCookiesOnHandleRequestCest +{ + /** + * Tests Phalcon\Mvc\Application :: sendCookiesOnHandleRequest() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcApplicationSendCookiesOnHandleRequest(UnitTester $I) + { + $I->wantToTest("Mvc\Application - sendCookiesOnHandleRequest()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Application/SendHeadersOnHandleRequestCest.php b/tests/unit/Mvc/Application/SendHeadersOnHandleRequestCest.php new file mode 100644 index 00000000000..b5581a4fc47 --- /dev/null +++ b/tests/unit/Mvc/Application/SendHeadersOnHandleRequestCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Application; + +use UnitTester; + +class SendHeadersOnHandleRequestCest +{ + /** + * Tests Phalcon\Mvc\Application :: sendHeadersOnHandleRequest() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcApplicationSendHeadersOnHandleRequest(UnitTester $I) + { + $I->wantToTest("Mvc\Application - sendHeadersOnHandleRequest()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Application/SetDICest.php b/tests/unit/Mvc/Application/SetDICest.php new file mode 100644 index 00000000000..7ecd7883b7b --- /dev/null +++ b/tests/unit/Mvc/Application/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Application; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Application :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcApplicationSetDI(UnitTester $I) + { + $I->wantToTest("Mvc\Application - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Application/SetDefaultModuleCest.php b/tests/unit/Mvc/Application/SetDefaultModuleCest.php new file mode 100644 index 00000000000..6222527eb7d --- /dev/null +++ b/tests/unit/Mvc/Application/SetDefaultModuleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Application; + +use UnitTester; + +class SetDefaultModuleCest +{ + /** + * Tests Phalcon\Mvc\Application :: setDefaultModule() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcApplicationSetDefaultModule(UnitTester $I) + { + $I->wantToTest("Mvc\Application - setDefaultModule()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Application/SetEventsManagerCest.php b/tests/unit/Mvc/Application/SetEventsManagerCest.php new file mode 100644 index 00000000000..ae9278c3456 --- /dev/null +++ b/tests/unit/Mvc/Application/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Application; + +use UnitTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Application :: setEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcApplicationSetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\Application - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Application/UnderscoreGetCest.php b/tests/unit/Mvc/Application/UnderscoreGetCest.php new file mode 100644 index 00000000000..cb8e83e1a9f --- /dev/null +++ b/tests/unit/Mvc/Application/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Application; + +use UnitTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Mvc\Application :: __get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcApplicationUnderscoreGet(UnitTester $I) + { + $I->wantToTest("Mvc\Application - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Application/UseImplicitViewCest.php b/tests/unit/Mvc/Application/UseImplicitViewCest.php new file mode 100644 index 00000000000..a6e040d19a0 --- /dev/null +++ b/tests/unit/Mvc/Application/UseImplicitViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Application; + +use UnitTester; + +class UseImplicitViewCest +{ + /** + * Tests Phalcon\Mvc\Application :: useImplicitView() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcApplicationUseImplicitView(UnitTester $I) + { + $I->wantToTest("Mvc\Application - useImplicitView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/AggregateCest.php b/tests/unit/Mvc/Collection/AggregateCest.php new file mode 100644 index 00000000000..4a986479b4d --- /dev/null +++ b/tests/unit/Mvc/Collection/AggregateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class AggregateCest +{ + /** + * Tests Phalcon\Mvc\Collection :: aggregate() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionAggregate(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - aggregate()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/AppendMessageCest.php b/tests/unit/Mvc/Collection/AppendMessageCest.php new file mode 100644 index 00000000000..a9a297d74f7 --- /dev/null +++ b/tests/unit/Mvc/Collection/AppendMessageCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class AppendMessageCest +{ + /** + * Tests Phalcon\Mvc\Collection :: appendMessage() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionAppendMessage(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - appendMessage()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Behavior/ConstructCest.php b/tests/unit/Mvc/Collection/Behavior/ConstructCest.php new file mode 100644 index 00000000000..8dd6e77405e --- /dev/null +++ b/tests/unit/Mvc/Collection/Behavior/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Behavior; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Collection\Behavior :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionBehaviorConstruct(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Behavior - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Behavior/MissingMethodCest.php b/tests/unit/Mvc/Collection/Behavior/MissingMethodCest.php new file mode 100644 index 00000000000..5af453b3880 --- /dev/null +++ b/tests/unit/Mvc/Collection/Behavior/MissingMethodCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Behavior; + +use UnitTester; + +class MissingMethodCest +{ + /** + * Tests Phalcon\Mvc\Collection\Behavior :: missingMethod() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionBehaviorMissingMethod(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Behavior - missingMethod()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Behavior/NotifyCest.php b/tests/unit/Mvc/Collection/Behavior/NotifyCest.php new file mode 100644 index 00000000000..606cdb8154a --- /dev/null +++ b/tests/unit/Mvc/Collection/Behavior/NotifyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Behavior; + +use UnitTester; + +class NotifyCest +{ + /** + * Tests Phalcon\Mvc\Collection\Behavior :: notify() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionBehaviorNotify(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Behavior - notify()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Behavior/SoftDelete/ConstructCest.php b/tests/unit/Mvc/Collection/Behavior/SoftDelete/ConstructCest.php new file mode 100644 index 00000000000..248811cc749 --- /dev/null +++ b/tests/unit/Mvc/Collection/Behavior/SoftDelete/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Behavior\SoftDelete; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Collection\Behavior\SoftDelete :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionBehaviorSoftdeleteConstruct(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Behavior\SoftDelete - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Behavior/SoftDelete/MissingMethodCest.php b/tests/unit/Mvc/Collection/Behavior/SoftDelete/MissingMethodCest.php new file mode 100644 index 00000000000..48263ba9630 --- /dev/null +++ b/tests/unit/Mvc/Collection/Behavior/SoftDelete/MissingMethodCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Behavior\SoftDelete; + +use UnitTester; + +class MissingMethodCest +{ + /** + * Tests Phalcon\Mvc\Collection\Behavior\SoftDelete :: missingMethod() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionBehaviorSoftdeleteMissingMethod(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Behavior\SoftDelete - missingMethod()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Behavior/SoftDelete/NotifyCest.php b/tests/unit/Mvc/Collection/Behavior/SoftDelete/NotifyCest.php new file mode 100644 index 00000000000..a0a86cc257d --- /dev/null +++ b/tests/unit/Mvc/Collection/Behavior/SoftDelete/NotifyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Behavior\SoftDelete; + +use UnitTester; + +class NotifyCest +{ + /** + * Tests Phalcon\Mvc\Collection\Behavior\SoftDelete :: notify() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionBehaviorSoftdeleteNotify(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Behavior\SoftDelete - notify()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Behavior/Timestampable/ConstructCest.php b/tests/unit/Mvc/Collection/Behavior/Timestampable/ConstructCest.php new file mode 100644 index 00000000000..e4347c4af88 --- /dev/null +++ b/tests/unit/Mvc/Collection/Behavior/Timestampable/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Behavior\Timestampable; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Collection\Behavior\Timestampable :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionBehaviorTimestampableConstruct(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Behavior\Timestampable - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Behavior/Timestampable/MissingMethodCest.php b/tests/unit/Mvc/Collection/Behavior/Timestampable/MissingMethodCest.php new file mode 100644 index 00000000000..97e8103f2c4 --- /dev/null +++ b/tests/unit/Mvc/Collection/Behavior/Timestampable/MissingMethodCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Behavior\Timestampable; + +use UnitTester; + +class MissingMethodCest +{ + /** + * Tests Phalcon\Mvc\Collection\Behavior\Timestampable :: missingMethod() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionBehaviorTimestampableMissingMethod(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Behavior\Timestampable - missingMethod()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Behavior/Timestampable/NotifyCest.php b/tests/unit/Mvc/Collection/Behavior/Timestampable/NotifyCest.php new file mode 100644 index 00000000000..d7a2afbc47a --- /dev/null +++ b/tests/unit/Mvc/Collection/Behavior/Timestampable/NotifyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Behavior\Timestampable; + +use UnitTester; + +class NotifyCest +{ + /** + * Tests Phalcon\Mvc\Collection\Behavior\Timestampable :: notify() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionBehaviorTimestampableNotify(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Behavior\Timestampable - notify()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/CloneResultCest.php b/tests/unit/Mvc/Collection/CloneResultCest.php new file mode 100644 index 00000000000..4037bcfbb8f --- /dev/null +++ b/tests/unit/Mvc/Collection/CloneResultCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class CloneResultCest +{ + /** + * Tests Phalcon\Mvc\Collection :: cloneResult() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionCloneResult(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - cloneResult()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/ConstructCest.php b/tests/unit/Mvc/Collection/ConstructCest.php new file mode 100644 index 00000000000..5beab029e97 --- /dev/null +++ b/tests/unit/Mvc/Collection/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Collection :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionConstruct(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/CountCest.php b/tests/unit/Mvc/Collection/CountCest.php new file mode 100644 index 00000000000..4c11e824b5a --- /dev/null +++ b/tests/unit/Mvc/Collection/CountCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class CountCest +{ + /** + * Tests Phalcon\Mvc\Collection :: count() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionCount(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - count()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/CreateCest.php b/tests/unit/Mvc/Collection/CreateCest.php new file mode 100644 index 00000000000..11046ac9628 --- /dev/null +++ b/tests/unit/Mvc/Collection/CreateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class CreateCest +{ + /** + * Tests Phalcon\Mvc\Collection :: create() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionCreate(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - create()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/CreateIfNotExistCest.php b/tests/unit/Mvc/Collection/CreateIfNotExistCest.php new file mode 100644 index 00000000000..88b0963140e --- /dev/null +++ b/tests/unit/Mvc/Collection/CreateIfNotExistCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class CreateIfNotExistCest +{ + /** + * Tests Phalcon\Mvc\Collection :: createIfNotExist() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionCreateIfNotExist(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - createIfNotExist()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/DeleteCest.php b/tests/unit/Mvc/Collection/DeleteCest.php new file mode 100644 index 00000000000..b7bd0cef637 --- /dev/null +++ b/tests/unit/Mvc/Collection/DeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class DeleteCest +{ + /** + * Tests Phalcon\Mvc\Collection :: delete() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionDelete(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - delete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Document/OffsetExistsCest.php b/tests/unit/Mvc/Collection/Document/OffsetExistsCest.php new file mode 100644 index 00000000000..25e4d0bf78b --- /dev/null +++ b/tests/unit/Mvc/Collection/Document/OffsetExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Document; + +use UnitTester; + +class OffsetExistsCest +{ + /** + * Tests Phalcon\Mvc\Collection\Document :: offsetExists() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionDocumentOffsetExists(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Document - offsetExists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Document/OffsetGetCest.php b/tests/unit/Mvc/Collection/Document/OffsetGetCest.php new file mode 100644 index 00000000000..d0d3c687949 --- /dev/null +++ b/tests/unit/Mvc/Collection/Document/OffsetGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Document; + +use UnitTester; + +class OffsetGetCest +{ + /** + * Tests Phalcon\Mvc\Collection\Document :: offsetGet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionDocumentOffsetGet(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Document - offsetGet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Document/OffsetSetCest.php b/tests/unit/Mvc/Collection/Document/OffsetSetCest.php new file mode 100644 index 00000000000..529f6ffcb49 --- /dev/null +++ b/tests/unit/Mvc/Collection/Document/OffsetSetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Document; + +use UnitTester; + +class OffsetSetCest +{ + /** + * Tests Phalcon\Mvc\Collection\Document :: offsetSet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionDocumentOffsetSet(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Document - offsetSet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Document/OffsetUnsetCest.php b/tests/unit/Mvc/Collection/Document/OffsetUnsetCest.php new file mode 100644 index 00000000000..e4576353e51 --- /dev/null +++ b/tests/unit/Mvc/Collection/Document/OffsetUnsetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Document; + +use UnitTester; + +class OffsetUnsetCest +{ + /** + * Tests Phalcon\Mvc\Collection\Document :: offsetUnset() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionDocumentOffsetUnset(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Document - offsetUnset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Document/ReadAttributeCest.php b/tests/unit/Mvc/Collection/Document/ReadAttributeCest.php new file mode 100644 index 00000000000..1db3aa8d609 --- /dev/null +++ b/tests/unit/Mvc/Collection/Document/ReadAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Document; + +use UnitTester; + +class ReadAttributeCest +{ + /** + * Tests Phalcon\Mvc\Collection\Document :: readAttribute() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionDocumentReadAttribute(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Document - readAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Document/ToArrayCest.php b/tests/unit/Mvc/Collection/Document/ToArrayCest.php new file mode 100644 index 00000000000..59ace4036ba --- /dev/null +++ b/tests/unit/Mvc/Collection/Document/ToArrayCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Document; + +use UnitTester; + +class ToArrayCest +{ + /** + * Tests Phalcon\Mvc\Collection\Document :: toArray() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionDocumentToArray(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Document - toArray()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Document/WriteAttributeCest.php b/tests/unit/Mvc/Collection/Document/WriteAttributeCest.php new file mode 100644 index 00000000000..d792cb52513 --- /dev/null +++ b/tests/unit/Mvc/Collection/Document/WriteAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Document; + +use UnitTester; + +class WriteAttributeCest +{ + /** + * Tests Phalcon\Mvc\Collection\Document :: writeAttribute() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionDocumentWriteAttribute(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Document - writeAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/FindByIdCest.php b/tests/unit/Mvc/Collection/FindByIdCest.php new file mode 100644 index 00000000000..21392f8e054 --- /dev/null +++ b/tests/unit/Mvc/Collection/FindByIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class FindByIdCest +{ + /** + * Tests Phalcon\Mvc\Collection :: findById() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionFindById(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - findById()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/FindCest.php b/tests/unit/Mvc/Collection/FindCest.php new file mode 100644 index 00000000000..27efadaca05 --- /dev/null +++ b/tests/unit/Mvc/Collection/FindCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class FindCest +{ + /** + * Tests Phalcon\Mvc\Collection :: find() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionFind(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - find()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/FindFirstCest.php b/tests/unit/Mvc/Collection/FindFirstCest.php new file mode 100644 index 00000000000..02103539cb2 --- /dev/null +++ b/tests/unit/Mvc/Collection/FindFirstCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class FindFirstCest +{ + /** + * Tests Phalcon\Mvc\Collection :: findFirst() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionFindFirst(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - findFirst()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/FireEventCancelCest.php b/tests/unit/Mvc/Collection/FireEventCancelCest.php new file mode 100644 index 00000000000..1afbee7a53d --- /dev/null +++ b/tests/unit/Mvc/Collection/FireEventCancelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class FireEventCancelCest +{ + /** + * Tests Phalcon\Mvc\Collection :: fireEventCancel() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionFireEventCancel(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - fireEventCancel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/FireEventCest.php b/tests/unit/Mvc/Collection/FireEventCest.php new file mode 100644 index 00000000000..61fc7e58fac --- /dev/null +++ b/tests/unit/Mvc/Collection/FireEventCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class FireEventCest +{ + /** + * Tests Phalcon\Mvc\Collection :: fireEvent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionFireEvent(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - fireEvent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/GetCollectionManagerCest.php b/tests/unit/Mvc/Collection/GetCollectionManagerCest.php new file mode 100644 index 00000000000..c260dfa2ed7 --- /dev/null +++ b/tests/unit/Mvc/Collection/GetCollectionManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class GetCollectionManagerCest +{ + /** + * Tests Phalcon\Mvc\Collection :: getCollectionManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionGetCollectionManager(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - getCollectionManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/GetConnectionCest.php b/tests/unit/Mvc/Collection/GetConnectionCest.php new file mode 100644 index 00000000000..15a8aea8549 --- /dev/null +++ b/tests/unit/Mvc/Collection/GetConnectionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class GetConnectionCest +{ + /** + * Tests Phalcon\Mvc\Collection :: getConnection() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionGetConnection(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - getConnection()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/GetConnectionServiceCest.php b/tests/unit/Mvc/Collection/GetConnectionServiceCest.php new file mode 100644 index 00000000000..87193939c94 --- /dev/null +++ b/tests/unit/Mvc/Collection/GetConnectionServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class GetConnectionServiceCest +{ + /** + * Tests Phalcon\Mvc\Collection :: getConnectionService() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionGetConnectionService(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - getConnectionService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/GetDICest.php b/tests/unit/Mvc/Collection/GetDICest.php new file mode 100644 index 00000000000..65ced77bc13 --- /dev/null +++ b/tests/unit/Mvc/Collection/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Collection :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionGetDI(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/GetDirtyStateCest.php b/tests/unit/Mvc/Collection/GetDirtyStateCest.php new file mode 100644 index 00000000000..24061bf62ab --- /dev/null +++ b/tests/unit/Mvc/Collection/GetDirtyStateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class GetDirtyStateCest +{ + /** + * Tests Phalcon\Mvc\Collection :: getDirtyState() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionGetDirtyState(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - getDirtyState()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/GetIdCest.php b/tests/unit/Mvc/Collection/GetIdCest.php new file mode 100644 index 00000000000..97bacb8bd5a --- /dev/null +++ b/tests/unit/Mvc/Collection/GetIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class GetIdCest +{ + /** + * Tests Phalcon\Mvc\Collection :: getId() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionGetId(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - getId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/GetMessagesCest.php b/tests/unit/Mvc/Collection/GetMessagesCest.php new file mode 100644 index 00000000000..57212c9d3a9 --- /dev/null +++ b/tests/unit/Mvc/Collection/GetMessagesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class GetMessagesCest +{ + /** + * Tests Phalcon\Mvc\Collection :: getMessages() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionGetMessages(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - getMessages()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/GetReservedAttributesCest.php b/tests/unit/Mvc/Collection/GetReservedAttributesCest.php new file mode 100644 index 00000000000..156fe51cf40 --- /dev/null +++ b/tests/unit/Mvc/Collection/GetReservedAttributesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class GetReservedAttributesCest +{ + /** + * Tests Phalcon\Mvc\Collection :: getReservedAttributes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionGetReservedAttributes(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - getReservedAttributes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/GetSourceCest.php b/tests/unit/Mvc/Collection/GetSourceCest.php new file mode 100644 index 00000000000..cb21938f196 --- /dev/null +++ b/tests/unit/Mvc/Collection/GetSourceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class GetSourceCest +{ + /** + * Tests Phalcon\Mvc\Collection :: getSource() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionGetSource(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - getSource()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Manager/AddBehaviorCest.php b/tests/unit/Mvc/Collection/Manager/AddBehaviorCest.php new file mode 100644 index 00000000000..b6512824526 --- /dev/null +++ b/tests/unit/Mvc/Collection/Manager/AddBehaviorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Manager; + +use UnitTester; + +class AddBehaviorCest +{ + /** + * Tests Phalcon\Mvc\Collection\Manager :: addBehavior() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionManagerAddBehavior(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Manager - addBehavior()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Manager/GetConnectionCest.php b/tests/unit/Mvc/Collection/Manager/GetConnectionCest.php new file mode 100644 index 00000000000..3ae24798252 --- /dev/null +++ b/tests/unit/Mvc/Collection/Manager/GetConnectionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Manager; + +use UnitTester; + +class GetConnectionCest +{ + /** + * Tests Phalcon\Mvc\Collection\Manager :: getConnection() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionManagerGetConnection(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Manager - getConnection()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Manager/GetConnectionServiceCest.php b/tests/unit/Mvc/Collection/Manager/GetConnectionServiceCest.php new file mode 100644 index 00000000000..1efb042b425 --- /dev/null +++ b/tests/unit/Mvc/Collection/Manager/GetConnectionServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Manager; + +use UnitTester; + +class GetConnectionServiceCest +{ + /** + * Tests Phalcon\Mvc\Collection\Manager :: getConnectionService() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionManagerGetConnectionService(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Manager - getConnectionService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Manager/GetCustomEventsManagerCest.php b/tests/unit/Mvc/Collection/Manager/GetCustomEventsManagerCest.php new file mode 100644 index 00000000000..4991d82c28e --- /dev/null +++ b/tests/unit/Mvc/Collection/Manager/GetCustomEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Manager; + +use UnitTester; + +class GetCustomEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Collection\Manager :: getCustomEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionManagerGetCustomEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Manager - getCustomEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Manager/GetDICest.php b/tests/unit/Mvc/Collection/Manager/GetDICest.php new file mode 100644 index 00000000000..5b76fc54471 --- /dev/null +++ b/tests/unit/Mvc/Collection/Manager/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Manager; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Collection\Manager :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionManagerGetDI(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Manager - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Manager/GetEventsManagerCest.php b/tests/unit/Mvc/Collection/Manager/GetEventsManagerCest.php new file mode 100644 index 00000000000..64f5d721fa3 --- /dev/null +++ b/tests/unit/Mvc/Collection/Manager/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Manager; + +use UnitTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Collection\Manager :: getEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionManagerGetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Manager - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Manager/GetLastInitializedCest.php b/tests/unit/Mvc/Collection/Manager/GetLastInitializedCest.php new file mode 100644 index 00000000000..2cc16dbfcb1 --- /dev/null +++ b/tests/unit/Mvc/Collection/Manager/GetLastInitializedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Manager; + +use UnitTester; + +class GetLastInitializedCest +{ + /** + * Tests Phalcon\Mvc\Collection\Manager :: getLastInitialized() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionManagerGetLastInitialized(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Manager - getLastInitialized()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Manager/GetServiceNameCest.php b/tests/unit/Mvc/Collection/Manager/GetServiceNameCest.php new file mode 100644 index 00000000000..02ec2b0c90b --- /dev/null +++ b/tests/unit/Mvc/Collection/Manager/GetServiceNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Manager; + +use UnitTester; + +class GetServiceNameCest +{ + /** + * Tests Phalcon\Mvc\Collection\Manager :: getServiceName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionManagerGetServiceName(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Manager - getServiceName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Manager/InitializeCest.php b/tests/unit/Mvc/Collection/Manager/InitializeCest.php new file mode 100644 index 00000000000..8b234cad5a3 --- /dev/null +++ b/tests/unit/Mvc/Collection/Manager/InitializeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Manager; + +use UnitTester; + +class InitializeCest +{ + /** + * Tests Phalcon\Mvc\Collection\Manager :: initialize() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionManagerInitialize(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Manager - initialize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Manager/IsInitializedCest.php b/tests/unit/Mvc/Collection/Manager/IsInitializedCest.php new file mode 100644 index 00000000000..727a34564b5 --- /dev/null +++ b/tests/unit/Mvc/Collection/Manager/IsInitializedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Manager; + +use UnitTester; + +class IsInitializedCest +{ + /** + * Tests Phalcon\Mvc\Collection\Manager :: isInitialized() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionManagerIsInitialized(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Manager - isInitialized()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Manager/IsUsingImplicitObjectIdsCest.php b/tests/unit/Mvc/Collection/Manager/IsUsingImplicitObjectIdsCest.php new file mode 100644 index 00000000000..5bc89310f27 --- /dev/null +++ b/tests/unit/Mvc/Collection/Manager/IsUsingImplicitObjectIdsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Manager; + +use UnitTester; + +class IsUsingImplicitObjectIdsCest +{ + /** + * Tests Phalcon\Mvc\Collection\Manager :: isUsingImplicitObjectIds() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionManagerIsUsingImplicitObjectIds(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Manager - isUsingImplicitObjectIds()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Manager/MissingMethodCest.php b/tests/unit/Mvc/Collection/Manager/MissingMethodCest.php new file mode 100644 index 00000000000..f77428df07a --- /dev/null +++ b/tests/unit/Mvc/Collection/Manager/MissingMethodCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Manager; + +use UnitTester; + +class MissingMethodCest +{ + /** + * Tests Phalcon\Mvc\Collection\Manager :: missingMethod() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionManagerMissingMethod(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Manager - missingMethod()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Manager/NotifyEventCest.php b/tests/unit/Mvc/Collection/Manager/NotifyEventCest.php new file mode 100644 index 00000000000..c14521ee2c2 --- /dev/null +++ b/tests/unit/Mvc/Collection/Manager/NotifyEventCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Manager; + +use UnitTester; + +class NotifyEventCest +{ + /** + * Tests Phalcon\Mvc\Collection\Manager :: notifyEvent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionManagerNotifyEvent(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Manager - notifyEvent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Manager/SetConnectionServiceCest.php b/tests/unit/Mvc/Collection/Manager/SetConnectionServiceCest.php new file mode 100644 index 00000000000..790caeed4e3 --- /dev/null +++ b/tests/unit/Mvc/Collection/Manager/SetConnectionServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Manager; + +use UnitTester; + +class SetConnectionServiceCest +{ + /** + * Tests Phalcon\Mvc\Collection\Manager :: setConnectionService() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionManagerSetConnectionService(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Manager - setConnectionService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Manager/SetCustomEventsManagerCest.php b/tests/unit/Mvc/Collection/Manager/SetCustomEventsManagerCest.php new file mode 100644 index 00000000000..2975d17b776 --- /dev/null +++ b/tests/unit/Mvc/Collection/Manager/SetCustomEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Manager; + +use UnitTester; + +class SetCustomEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Collection\Manager :: setCustomEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionManagerSetCustomEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Manager - setCustomEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Manager/SetDICest.php b/tests/unit/Mvc/Collection/Manager/SetDICest.php new file mode 100644 index 00000000000..103a0b1d424 --- /dev/null +++ b/tests/unit/Mvc/Collection/Manager/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Manager; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Collection\Manager :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionManagerSetDI(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Manager - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Manager/SetEventsManagerCest.php b/tests/unit/Mvc/Collection/Manager/SetEventsManagerCest.php new file mode 100644 index 00000000000..a1de455558f --- /dev/null +++ b/tests/unit/Mvc/Collection/Manager/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Manager; + +use UnitTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Collection\Manager :: setEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionManagerSetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Manager - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Manager/SetServiceNameCest.php b/tests/unit/Mvc/Collection/Manager/SetServiceNameCest.php new file mode 100644 index 00000000000..d8b63207a96 --- /dev/null +++ b/tests/unit/Mvc/Collection/Manager/SetServiceNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Manager; + +use UnitTester; + +class SetServiceNameCest +{ + /** + * Tests Phalcon\Mvc\Collection\Manager :: setServiceName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionManagerSetServiceName(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Manager - setServiceName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/Manager/UseImplicitObjectIdsCest.php b/tests/unit/Mvc/Collection/Manager/UseImplicitObjectIdsCest.php new file mode 100644 index 00000000000..f3799d24b3e --- /dev/null +++ b/tests/unit/Mvc/Collection/Manager/UseImplicitObjectIdsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection\Manager; + +use UnitTester; + +class UseImplicitObjectIdsCest +{ + /** + * Tests Phalcon\Mvc\Collection\Manager :: useImplicitObjectIds() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionManagerUseImplicitObjectIds(UnitTester $I) + { + $I->wantToTest("Mvc\Collection\Manager - useImplicitObjectIds()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/ReadAttributeCest.php b/tests/unit/Mvc/Collection/ReadAttributeCest.php new file mode 100644 index 00000000000..171510f7843 --- /dev/null +++ b/tests/unit/Mvc/Collection/ReadAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class ReadAttributeCest +{ + /** + * Tests Phalcon\Mvc\Collection :: readAttribute() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionReadAttribute(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - readAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/SaveCest.php b/tests/unit/Mvc/Collection/SaveCest.php new file mode 100644 index 00000000000..bde3c33e0c7 --- /dev/null +++ b/tests/unit/Mvc/Collection/SaveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class SaveCest +{ + /** + * Tests Phalcon\Mvc\Collection :: save() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionSave(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - save()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/SerializeCest.php b/tests/unit/Mvc/Collection/SerializeCest.php new file mode 100644 index 00000000000..2da6fb2ef30 --- /dev/null +++ b/tests/unit/Mvc/Collection/SerializeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class SerializeCest +{ + /** + * Tests Phalcon\Mvc\Collection :: serialize() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionSerialize(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - serialize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/SetConnectionServiceCest.php b/tests/unit/Mvc/Collection/SetConnectionServiceCest.php new file mode 100644 index 00000000000..70f14cb0ff9 --- /dev/null +++ b/tests/unit/Mvc/Collection/SetConnectionServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class SetConnectionServiceCest +{ + /** + * Tests Phalcon\Mvc\Collection :: setConnectionService() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionSetConnectionService(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - setConnectionService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/SetDICest.php b/tests/unit/Mvc/Collection/SetDICest.php new file mode 100644 index 00000000000..3cd24b12ec7 --- /dev/null +++ b/tests/unit/Mvc/Collection/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Collection :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionSetDI(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/SetDirtyStateCest.php b/tests/unit/Mvc/Collection/SetDirtyStateCest.php new file mode 100644 index 00000000000..0862301d5a6 --- /dev/null +++ b/tests/unit/Mvc/Collection/SetDirtyStateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class SetDirtyStateCest +{ + /** + * Tests Phalcon\Mvc\Collection :: setDirtyState() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionSetDirtyState(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - setDirtyState()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/SetIdCest.php b/tests/unit/Mvc/Collection/SetIdCest.php new file mode 100644 index 00000000000..090a6e62075 --- /dev/null +++ b/tests/unit/Mvc/Collection/SetIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class SetIdCest +{ + /** + * Tests Phalcon\Mvc\Collection :: setId() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionSetId(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - setId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/SkipOperationCest.php b/tests/unit/Mvc/Collection/SkipOperationCest.php new file mode 100644 index 00000000000..80ade381882 --- /dev/null +++ b/tests/unit/Mvc/Collection/SkipOperationCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class SkipOperationCest +{ + /** + * Tests Phalcon\Mvc\Collection :: skipOperation() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionSkipOperation(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - skipOperation()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/SummatoryCest.php b/tests/unit/Mvc/Collection/SummatoryCest.php new file mode 100644 index 00000000000..3459f0620dd --- /dev/null +++ b/tests/unit/Mvc/Collection/SummatoryCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class SummatoryCest +{ + /** + * Tests Phalcon\Mvc\Collection :: summatory() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionSummatory(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - summatory()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/ToArrayCest.php b/tests/unit/Mvc/Collection/ToArrayCest.php new file mode 100644 index 00000000000..041fd7fd484 --- /dev/null +++ b/tests/unit/Mvc/Collection/ToArrayCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class ToArrayCest +{ + /** + * Tests Phalcon\Mvc\Collection :: toArray() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionToArray(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - toArray()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/UnserializeCest.php b/tests/unit/Mvc/Collection/UnserializeCest.php new file mode 100644 index 00000000000..b1f9fe4a78d --- /dev/null +++ b/tests/unit/Mvc/Collection/UnserializeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class UnserializeCest +{ + /** + * Tests Phalcon\Mvc\Collection :: unserialize() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionUnserialize(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - unserialize()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/UpdateCest.php b/tests/unit/Mvc/Collection/UpdateCest.php new file mode 100644 index 00000000000..aeaaf79b103 --- /dev/null +++ b/tests/unit/Mvc/Collection/UpdateCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class UpdateCest +{ + /** + * Tests Phalcon\Mvc\Collection :: update() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionUpdate(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - update()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/ValidationHasFailedCest.php b/tests/unit/Mvc/Collection/ValidationHasFailedCest.php new file mode 100644 index 00000000000..4363d3059f5 --- /dev/null +++ b/tests/unit/Mvc/Collection/ValidationHasFailedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class ValidationHasFailedCest +{ + /** + * Tests Phalcon\Mvc\Collection :: validationHasFailed() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionValidationHasFailed(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - validationHasFailed()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Collection/WriteAttributeCest.php b/tests/unit/Mvc/Collection/WriteAttributeCest.php new file mode 100644 index 00000000000..bf3a9a839a4 --- /dev/null +++ b/tests/unit/Mvc/Collection/WriteAttributeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Collection; + +use UnitTester; + +class WriteAttributeCest +{ + /** + * Tests Phalcon\Mvc\Collection :: writeAttribute() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcCollectionWriteAttribute(UnitTester $I) + { + $I->wantToTest("Mvc\Collection - writeAttribute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Controller/ConstructCest.php b/tests/unit/Mvc/Controller/ConstructCest.php new file mode 100644 index 00000000000..341d6eb527a --- /dev/null +++ b/tests/unit/Mvc/Controller/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Controller; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Controller :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcControllerConstruct(UnitTester $I) + { + $I->wantToTest("Mvc\Controller - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Controller/GetDICest.php b/tests/unit/Mvc/Controller/GetDICest.php new file mode 100644 index 00000000000..1d2b1b2e767 --- /dev/null +++ b/tests/unit/Mvc/Controller/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Controller; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Controller :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcControllerGetDI(UnitTester $I) + { + $I->wantToTest("Mvc\Controller - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Controller/GetEventsManagerCest.php b/tests/unit/Mvc/Controller/GetEventsManagerCest.php new file mode 100644 index 00000000000..80be4b3feab --- /dev/null +++ b/tests/unit/Mvc/Controller/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Controller; + +use UnitTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Controller :: getEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcControllerGetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\Controller - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Controller/SetDICest.php b/tests/unit/Mvc/Controller/SetDICest.php new file mode 100644 index 00000000000..26cf7d204b3 --- /dev/null +++ b/tests/unit/Mvc/Controller/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Controller; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Controller :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcControllerSetDI(UnitTester $I) + { + $I->wantToTest("Mvc\Controller - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Controller/SetEventsManagerCest.php b/tests/unit/Mvc/Controller/SetEventsManagerCest.php new file mode 100644 index 00000000000..99ad7a1da13 --- /dev/null +++ b/tests/unit/Mvc/Controller/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Controller; + +use UnitTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Controller :: setEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcControllerSetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\Controller - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Controller/UnderscoreGetCest.php b/tests/unit/Mvc/Controller/UnderscoreGetCest.php new file mode 100644 index 00000000000..91a317d97de --- /dev/null +++ b/tests/unit/Mvc/Controller/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Controller; + +use UnitTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Mvc\Controller :: __get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcControllerUnderscoreGet(UnitTester $I) + { + $I->wantToTest("Mvc\Controller - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/CallActionMethodCest.php b/tests/unit/Mvc/Dispatcher/CallActionMethodCest.php new file mode 100644 index 00000000000..e47bc98f925 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/CallActionMethodCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class CallActionMethodCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: callActionMethod() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherCallActionMethod(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - callActionMethod()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/DispatchCest.php b/tests/unit/Mvc/Dispatcher/DispatchCest.php new file mode 100644 index 00000000000..0742dc0a1cc --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/DispatchCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class DispatchCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: dispatch() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherDispatch(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - dispatch()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/DispatcherAfterDispatchLoopTest.php b/tests/unit/Mvc/Dispatcher/DispatcherAfterDispatchLoopTest.php deleted file mode 100644 index 8aa3e8db537..00000000000 --- a/tests/unit/Mvc/Dispatcher/DispatcherAfterDispatchLoopTest.php +++ /dev/null @@ -1,251 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file docs/LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class DispatcherAfterDispatchLoopTest extends BaseDispatcher -{ - /** - * Tests the forwarding in the afterDispatchLoop event - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterDispatchLoopForward() - { - $this->specify( - 'Forwarding inside the "dispatch:afterDispatchLoop" event should have no effect', - function () { - $forwarded = false; - $dispatcher = $this->getDispatcher(); - - $dispatcher->getEventsManager()->attach('dispatch:afterDispatchLoop', function ($event, $dispatcher) use (&$forwarded) { - if ($forwarded === false) { - $dispatcher->forward(['action' => 'index2']); - $forwarded = true; - } - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests returning false inside an afterDispatchLoop event. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterDispatchLoopReturnFalse() - { - $this->specify( - 'Returning false inside the "dispatch:afterDispatchLoop" event should have no effect', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - - $dispatcher->getEventsManager()->attach('dispatch:afterDispatchLoop', function () use ($dispatcherListener) { - $dispatcherListener->trace('afterDispatchLoop: custom return false'); - return false; - }); - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop', - 'afterDispatchLoop: custom return false' - ]); - } - ); - } - - /** - * Tests exception handling to ensure exceptions can be properly handled when thrown from - * inside an "afterDispatchLoop" event and then ensure the exception is not bubbled when - * returning with false. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterDispatchLoopWithBeforeExceptionReturningFalse() - { - $this->specify( - 'Returning false inside a "dispatch:beforeException" event should cancel dispatching and prevent bubbling of the exception', - function () { - $dispatcher = $this->getDispatcher(); - - $dispatcher->getEventsManager()->attach('dispatch:afterDispatchLoop', function () { - throw new Exception('afterDispatch exception occurred'); - }); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () { - return false; - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop', - 'beforeException: afterDispatch exception occurred', - ]); - } - ); - } - - /** - * Tests exception handling to ensure exceptions can be properly handled via beforeException event and - * then will properly bubble up the stack if anything other than false is returned. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterDispatchLoopWithBeforeExceptionBubble() - { - $this->specify( - 'Returning anything other than false inside a "dispatch:beforeException" event should bubble the exception', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - - $dispatcher->getEventsManager()->attach('dispatch:afterDispatchLoop', function () { - throw new Exception('afterDispatchLoop exception occurred'); - }); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () use ($dispatcherListener) { - $dispatcherListener->trace('beforeException: custom before exception bubble'); - return null; - }); - - $caughtException = false; - try { - $dispatcher->dispatch(); - } catch (Exception $exception) { - $caughtException = true; - } - - expect($caughtException)->equals(true); - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop', - 'beforeException: afterDispatchLoop exception occurred', - 'beforeException: custom before exception bubble' - ]); - } - ); - } - - /** - * Tests dispatch forward handling inside the beforeException when an exception occurs in an "afterDispatchLoop" event. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterDispatchLoopWithBeforeExceptionForwardOnce() - { - $this->specify( - 'Forwarding inside a "dispatch:beforeException" event (and without returning false) should still throw an exception in the afterDispatchLoop event.', - function () { - $forwarded = false; - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - - $dispatcher->getEventsManager()->attach('dispatch:afterDispatchLoop', function () use (&$forwarded) { - if ($forwarded === false) { - $forwarded = true; - throw new Exception('afterDispatchLoop exception occurred'); - } - }); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function ($event, $dispatcher) use ($dispatcherListener) { - $dispatcherListener->trace('beforeException: custom before exception forward'); - $dispatcher->forward(['action' => 'index2']); - }); - - $caughtException = false; - try { - $dispatcher->dispatch(); - } catch (Exception $exception) { - $caughtException = true; - } - - expect($caughtException)->equals(true); - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop', - 'beforeException: afterDispatchLoop exception occurred', - 'beforeException: custom before exception forward' - ]); - } - ); - } -} diff --git a/tests/unit/Mvc/Dispatcher/DispatcherAfterDispatchTest.php b/tests/unit/Mvc/Dispatcher/DispatcherAfterDispatchTest.php deleted file mode 100644 index bf63caa84f1..00000000000 --- a/tests/unit/Mvc/Dispatcher/DispatcherAfterDispatchTest.php +++ /dev/null @@ -1,258 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file docs/LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class DispatcherAfterDispatchTest extends BaseDispatcher -{ - /** - * Tests the forwarding in the afterDispatch event - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterDispatchForwardOnce() - { - $this->specify( - 'Forwarding inside the "dispatch:afterDispatch" event should work the same regardless of returning false as this is the last dispatch operation', - function () { - $forwarded = false; - $dispatcher = $this->getDispatcher(); - - $dispatcher->getEventsManager()->attach('dispatch:afterDispatch', function ($event, $dispatcher) use (&$forwarded) { - if ($forwarded === false) { - $dispatcher->forward(['action' => 'index2']); - $forwarded = true; - } - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'index2Action', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests returning false inside a afterDispatch event. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterDispatchReturnFalse() - { - $this->specify( - 'Returning false inside the "dispatch:afterDispatch" event should work the same regardless of returning false as this is the last dispatch operation', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - - $dispatcher->getEventsManager()->attach('dispatch:afterDispatch', function () use ($dispatcherListener) { - $dispatcherListener->trace('afterDispatch: custom return false'); - return false; - }); - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatch: custom return false', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests exception handling to ensure exceptions can be properly handled when thrown from - * inside an "afterDispatch" event and then ensure the exception is not bubbled when - * returning with false. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterDispatchWithBeforeExceptionReturningFalse() - { - $this->specify( - 'Returning false inside a "dispatch:beforeException" event should cancel dispatching and prevent bubbling of the exception', - function () { - $dispatcher = $this->getDispatcher(); - - $dispatcher->getEventsManager()->attach('dispatch:afterDispatch', function () { - throw new Exception('afterDispatch exception occurred'); - }); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () { - return false; - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'beforeException: afterDispatch exception occurred', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests exception handling to ensure exceptions can be properly handled via beforeException event and - * then will properly bubble up the stack if anything other than false is returned. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterDispatchWithBeforeExceptionBubble() - { - $this->specify( - 'Returning anything other than false inside a "dispatch:beforeException" event should bubble the exception', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - - $dispatcher->getEventsManager()->attach('dispatch:afterDispatch', function () { - throw new Exception('afterDispatch exception occurred'); - }); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () use ($dispatcherListener) { - $dispatcherListener->trace('beforeException: custom before exception bubble'); - return null; - }); - - $caughtException = false; - try { - $dispatcher->dispatch(); - } catch (Exception $exception) { - $caughtException = true; - } - - expect($caughtException)->equals(true); - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'beforeException: afterDispatch exception occurred', - 'beforeException: custom before exception bubble' - ]); - } - ); - } - - /** - * Tests dispatch forward handling inside the beforeException when a afterDispatch exception occurs. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterDispatchWithBeforeExceptionForwardOnce() - { - $this->specify( - 'Forwarding inside a "dispatch:beforeException" event (and without returning false) should properly forward the dispatcher without the exception bubbling', - function () { - $forwarded = false; - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - - $dispatcher->getEventsManager()->attach('dispatch:afterDispatch', function () use (&$forwarded) { - if ($forwarded === false) { - $forwarded = true; - throw new Exception('afterDispatch exception occurred'); - } - }); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function ($event, $dispatcher) use ($dispatcherListener) { - $dispatcherListener->trace('beforeException: custom before exception forward'); - $dispatcher->forward(['action' => 'index2']); - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'beforeException: afterDispatch exception occurred', - 'beforeException: custom before exception forward', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'index2Action', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } -} diff --git a/tests/unit/Mvc/Dispatcher/DispatcherAfterExecuteRouteMethodTest.php b/tests/unit/Mvc/Dispatcher/DispatcherAfterExecuteRouteMethodTest.php deleted file mode 100644 index e6ffb4fcad5..00000000000 --- a/tests/unit/Mvc/Dispatcher/DispatcherAfterExecuteRouteMethodTest.php +++ /dev/null @@ -1,236 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file docs/LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class DispatcherAfterExecuteRouteMethodTest extends BaseDispatcher -{ - /** - * Tests the forwarding in the afterExecuteRoute event - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterExecuteRouteForwardOnce() - { - $this->specify( - 'Forwarding inside the afterExecuteRoute controller method should cancel the default route and forward immediately', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcher->setControllerName('dispatcher-test-after-execute-route-forward'); - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests returning false inside a afterExecuteRoute event. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterExecuteRouteReturnFalse() - { - $this->specify( - 'Returning false inside a controller\'s "afterExecuteRoute" method should immediately cancel dispatching', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcher->setControllerName('dispatcher-test-after-execute-route-return-false'); - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatchLoop', - ]); - } - ); - } - - /** - * Tests exception handling to ensure exceptions can be properly handled when thrown from - * inside a afterExecuteRoute event and then ensure the exception is not bubbled when - * returning with false. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterExecuteRouteWithBeforeExceptionReturningFalse() - { - $this->specify( - 'Returning false inside a "dispatch:beforeException" event should cancel dispatching and prevent bubbling of the exception', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcher->setControllerName('dispatcher-test-after-execute-route-exception'); - - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () { - return false; - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'beforeException: afterExecuteRoute exception occurred', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests exception handling to ensure exceptions can be properly handled via beforeException event and - * then will properly bubble up the stack if anything other than false is returned. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterExecuteRouteWithBeforeExceptionBubble() - { - $this->specify( - 'Returning anything other than false inside a "dispatch:beforeException" event should bubble the exception', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - $dispatcher->setControllerName('dispatcher-test-after-execute-route-exception'); - - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () use ($dispatcherListener) { - $dispatcherListener->trace('beforeException: custom before exception bubble'); - return null; - }); - - $caughtException = false; - try { - $dispatcher->dispatch(); - } catch (Exception $exception) { - $caughtException = true; - } - - expect($caughtException)->equals(true); - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'beforeException: afterExecuteRoute exception occurred', - 'beforeException: custom before exception bubble' - ]); - } - ); - } - - /** - * Tests dispatch forward handling inside the beforeException when a afterExecuteRoute exception occurs. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterExecuteRouteWithBeforeExceptionForwardOnce() - { - $this->specify( - 'Forwarding inside a "dispatch:beforeException" event (and without returning false) should properly forward the dispatcher without the exception bubbling', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - $dispatcher->setControllerName('dispatcher-test-after-execute-route-exception'); - - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function ($event, $dispatcher) use ($dispatcherListener) { - $dispatcherListener->trace('beforeException: custom before exception forward'); - $dispatcher->forward([ - 'controller' => 'dispatcher-test-default', - 'action' => 'index' - ]); - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'beforeException: afterExecuteRoute exception occurred', - 'beforeException: custom before exception forward', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } -} diff --git a/tests/unit/Mvc/Dispatcher/DispatcherAfterExecuteRouteTest.php b/tests/unit/Mvc/Dispatcher/DispatcherAfterExecuteRouteTest.php deleted file mode 100644 index 8c0d72069d5..00000000000 --- a/tests/unit/Mvc/Dispatcher/DispatcherAfterExecuteRouteTest.php +++ /dev/null @@ -1,248 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file docs/LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class DispatcherAfterExecuteRouteTest extends BaseDispatcher -{ - /** - * Tests the forwarding in the afterExecuteRoute event - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterExecuteRouteForwardOnce() - { - $this->specify( - 'Forwarding inside the afterExecuteRoute should cancel the default route and forward immediately', - function () { - $forwarded = false; - $dispatcher = $this->getDispatcher(); - - $dispatcher->getEventsManager()->attach('dispatch:afterExecuteRoute', function ($event, $dispatcher) use (&$forwarded) { - if ($forwarded === false) { - $dispatcher->forward(['action' => 'index2']); - $forwarded = true; - } - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'index2Action', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests returning false inside a afterExecuteRoute event. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterExecuteRouteReturnFalse() - { - $this->specify( - 'Returning false inside a "dispatch:afterExecuteRoute" event should immediately cancel dispatching', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - - $dispatcher->getEventsManager()->attach('dispatch:afterExecuteRoute', function () use ($dispatcherListener) { - $dispatcherListener->trace('afterExecuteRoute: custom return false'); - return false; - }); - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute: custom return false', - 'afterDispatchLoop', - ]); - } - ); - } - - /** - * Tests exception handling to ensure exceptions can be properly handled when thrown from - * inside a afterExecuteRoute event and then ensure the exception is not bubbled when - * returning with false. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterExecuteRouteWithBeforeExceptionReturningFalse() - { - $this->specify( - 'Returning false inside a "dispatch:beforeException" event should cancel dispatching and prevent bubbling of the exception', - function () { - $dispatcher = $this->getDispatcher(); - - $dispatcher->getEventsManager()->attach('dispatch:afterExecuteRoute', function () { - throw new Exception('afterExecuteRoute exception occurred'); - }); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () { - return false; - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'beforeException: afterExecuteRoute exception occurred', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests exception handling to ensure exceptions can be properly handled via beforeException event and - * then will properly bubble up the stack if anything other than false is returned. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterExecuteRouteWithBeforeExceptionBubble() - { - $this->specify( - 'Returning anything other than false inside a "dispatch:beforeException" event should bubble the exception', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - - $dispatcher->getEventsManager()->attach('dispatch:afterExecuteRoute', function () { - throw new Exception('afterExecuteRoute exception occurred'); - }); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () use ($dispatcherListener) { - $dispatcherListener->trace('beforeException: custom before exception bubble'); - return null; - }); - - $caughtException = false; - try { - $dispatcher->dispatch(); - } catch (Exception $exception) { - $caughtException = true; - } - - expect($caughtException)->equals(true); - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'beforeException: afterExecuteRoute exception occurred', - 'beforeException: custom before exception bubble' - ]); - } - ); - } - - /** - * Tests dispatch forward handling inside the beforeException when a afterExecuteRoute exception occurs. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterExecuteRouteWithBeforeExceptionForwardOnce() - { - $this->specify( - 'Forwarding inside a "dispatch:beforeException" event (and without returning false) should properly forward the dispatcher without the exception bubbling', - function () { - $forwarded = false; - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - - $dispatcher->getEventsManager()->attach('dispatch:afterExecuteRoute', function () use (&$forwarded) { - if ($forwarded === false) { - $forwarded = true; - throw new Exception('afterExecuteRoute exception occurred'); - } - }); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function ($event, $dispatcher) use ($dispatcherListener) { - $dispatcherListener->trace('beforeException: custom before exception forward'); - $dispatcher->forward(['action' => 'index2']); - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'beforeException: afterExecuteRoute exception occurred', - 'beforeException: custom before exception forward', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'index2Action', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } -} diff --git a/tests/unit/Mvc/Dispatcher/DispatcherAfterInitializeTest.php b/tests/unit/Mvc/Dispatcher/DispatcherAfterInitializeTest.php deleted file mode 100644 index 2268932100e..00000000000 --- a/tests/unit/Mvc/Dispatcher/DispatcherAfterInitializeTest.php +++ /dev/null @@ -1,238 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file docs/LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class DispatcherAfterInitializeTest extends BaseDispatcher -{ - /** - * Tests the forwarding in the afterInitialize event - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterInitializeForwardOnce() - { - $this->specify( - 'Forwarding inside the afterInitialize should cancel the default route and forward immediately', - function () { - $forwarded = false; - $dispatcher = $this->getDispatcher(); - - $dispatcher->getEventsManager()->attach('dispatch:afterInitialize', function ($event, $dispatcher) use (&$forwarded) { - if ($forwarded === false) { - $dispatcher->forward(['action' => 'index2']); - $forwarded = true; - } - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'index2Action', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests returning false inside a afterInitialize event. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterInitializeReturnFalse() - { - $this->specify( - 'Returning false inside a "dispatch:beforeExecuteRoute" event should immediately cancel dispatching', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - - $dispatcher->getEventsManager()->attach('dispatch:afterInitialize', function () use ($dispatcherListener) { - $dispatcherListener->trace('afterInitialize: custom return false'); - return false; - }); - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'afterInitialize: custom return false', - 'afterDispatchLoop', - ]); - } - ); - } - - /** - * Tests exception handling to ensure exceptions can be properly handled when thrown from - * inside a afterInitialize event and then ensure the exception is not bubbled when - * returning with false. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterInitializeWithBeforeExceptionReturningFalse() - { - $this->specify( - 'Returning false inside a "dispatch:beforeException" event should cancel dispatching and prevent bubbling of the exception', - function () { - $dispatcher = $this->getDispatcher(); - - $dispatcher->getEventsManager()->attach('dispatch:afterInitialize', function () { - throw new Exception('afterInitialize exception occurred'); - }); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () { - return false; - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'beforeException: afterInitialize exception occurred', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests exception handling to ensure exceptions can be properly handled via beforeException event and - * then will properly bubble up the stack if anything other than false is returned. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterInitializeWithBeforeExceptionBubble() - { - $this->specify( - 'Returning anything other than false inside a "dispatch:beforeException" event should bubble the exception', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - - $dispatcher->getEventsManager()->attach('dispatch:afterInitialize', function () { - throw new Exception('afterInitialize exception occurred'); - }); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () use ($dispatcherListener) { - $dispatcherListener->trace('beforeException: custom before exception bubble'); - return null; - }); - - $caughtException = false; - try { - $dispatcher->dispatch(); - } catch (Exception $exception) { - $caughtException = true; - } - - expect($caughtException)->equals(true); - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'beforeException: afterInitialize exception occurred', - 'beforeException: custom before exception bubble' - ]); - } - ); - } - - /** - * Tests dispatch forward handling inside the beforeException when a afterInitialize exception occurs. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testAfterInitializeWithBeforeExceptionForwardOnce() - { - $this->specify( - 'Forwarding inside a "dispatch:beforeException" event (and without returning false) should properly forward the dispatcher without the exception bubbling', - function () { - $forwarded = false; - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - - $dispatcher->getEventsManager()->attach('dispatch:afterInitialize', function () use (&$forwarded) { - if ($forwarded === false) { - $forwarded = true; - throw new Exception('afterInitialize exception occurred'); - } - }); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function ($event, $dispatcher) use ($dispatcherListener) { - $dispatcherListener->trace('beforeException: custom before exception forward'); - $dispatcher->forward(['action' => 'index2']); - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'beforeException: afterInitialize exception occurred', - 'beforeException: custom before exception forward', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'index2Action', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } -} diff --git a/tests/unit/Mvc/Dispatcher/DispatcherBeforeDispatchLoopTest.php b/tests/unit/Mvc/Dispatcher/DispatcherBeforeDispatchLoopTest.php deleted file mode 100644 index 13699765a3e..00000000000 --- a/tests/unit/Mvc/Dispatcher/DispatcherBeforeDispatchLoopTest.php +++ /dev/null @@ -1,293 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file docs/LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class DispatcherBeforeDispatchLoopTest extends BaseDispatcher -{ - /** - * Tests the forwarding in the beforeDispatchLoop event - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeDispatchLoopForward() - { - $this->specify( - 'Forwarding inside the beforeDispatchLoop should cancel the default route and forward immediately', - function () { - $dispatcher = $this->getDispatcher(); - - $dispatcher->getEventsManager()->attach('dispatch:beforeDispatchLoop', function ($event, $dispatcher) { - $dispatcher->forward(['action' => 'index2']); - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'index2Action', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests returning false inside a beforeDispatchLoop event. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeDispatchLoopReturnFalse() - { - $this->specify( - 'Returning false inside a "dispatch:beforeDispatchLoop" event should immediately cancel dispatching', - function () { - $dispatcher = $this->getDispatcher(); - - $dispatcher->getEventsManager()->attach('dispatch:beforeDispatchLoop', function () { - return false; - }); - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop' - ]); - } - ); - } - - /** - * Tests returning false inside a beforeDispatchLoop event with multiple returned items - * in event listeners. - * - * Currently, we only value the return from the last item; therefore, for libraries and plugins - * that hook into dispatcher events that need to cancel the event, the event should additionally - * be stopped() to ensure proper flow. - * - * This test case SHOULD be altered in 4.0 along with any other corresponding documentation - * changes for stopping. E.g. switching to event->stop() opposed to returning false. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeDispatchLoopBaselinePrePhalcon40MultipleReturnFalseMixed() - { - $this->specify( - 'Returning false inside a "dispatch:beforeDispatchLoop" event should immediately cancel dispatching', - function () { - $dispatcher = $this->getDispatcher(); - - $dispatcher->getEventsManager()->attach('dispatch:beforeDispatchLoop', function () { - return false; - }); - // Unfortunately, we really need to collect all responses or use the Event stopping property - // instead of return false. The following statement breaks the ability to stop the chain. - - $dispatcher->getEventsManager()->attach('dispatch:beforeDispatchLoop', function () { - return true; - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests returning false inside a beforeDispatchLoop event with multiple returned items - * in event listeners. - * - * Currently, we only value the return from the last item; therefore, for libraries and plugins - * that hook into dispatcher events that need to cancel the event, the event should additionally - * be stopped() to ensure proper flow. - * - * This test case SHOULD be altered in 4.0 along with any other corresponding documentation - * changes for stopping. E.g. switching to event->stop() opposed to returning false. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeDispatchLoopBaselinePrePhalcon40MultipleReturnFalse() - { - $this->specify( - 'Returning false inside a "dispatch:beforeDispatchLoop" event should immediately cancel dispatching', - function () { - $dispatcher = $this->getDispatcher(); - - $dispatcher->getEventsManager()->attach('dispatch:beforeDispatchLoop', function () { - return false; - }); - // Unfortunately, we really need to collect all responses or use the Event stopping property - // instead of return false. The following statement breaks the ability to stop the chain. - $dispatcher->getEventsManager()->attach('dispatch:beforeDispatchLoop', function () { - return false; - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - ]); - } - ); - } - - /** - * Tests exception handling to ensure exceptions can be properly handled when thrown from - * inside a beforeDispatchLoop event and then ensure the exception is not bubbled when - * returning with false. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeDispatchLoopWithBeforeExceptionReturningFalse() - { - $this->specify( - 'Returning false inside a "dispatch:beforeException" event should cancel dispatching and prevent bubbling of the exception', - function () { - $dispatcher = $this->getDispatcher(); - - $dispatcher->getEventsManager()->attach('dispatch:beforeDispatchLoop', function () { - throw new Exception('beforeDispatchLoop exception occurred'); - }); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () { - return false; - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeException: beforeDispatchLoop exception occurred' - ]); - } - ); - } - - /** - * Tests exception handling to ensure exceptions can be properly handled via beforeException event and - * then will properly bubble up the stack if anything other than false is returned. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeDispatchLoopWithBeforeExceptionBubble() - { - $this->specify( - 'Returning anything other than false inside a "dispatch:beforeException" event should bubble the exception', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - - $dispatcher->getEventsManager()->attach('dispatch:beforeDispatchLoop', function () { - throw new Exception('beforeDispatchLoop exception occurred'); - }); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () use ($dispatcherListener) { - $dispatcherListener->trace('beforeException: custom before exception bubble'); - return null; - }); - - $caughtException = false; - try { - $dispatcher->dispatch(); - } catch (Exception $exception) { - $caughtException = true; - } - - expect($caughtException)->equals(true); - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeException: beforeDispatchLoop exception occurred', - 'beforeException: custom before exception bubble' - ]); - } - ); - } - - /** - * Tests dispatch forward handling inside the beforeException when a beforeDispatchLoop exception occurs. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeDispatchLoopWithBeforeExceptionForward() - { - $this->specify( - 'Forwarding inside a "dispatch:beforeException" event (and without returning false) should properly forward the dispatcher without the exception bubbling', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - - $dispatcher->getEventsManager()->attach('dispatch:beforeDispatchLoop', function () { - throw new Exception('beforeDispatchLoop exception occurred'); - }); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function ($event, $dispatcher) use ($dispatcherListener) { - $dispatcherListener->trace('beforeException: custom before exception forward'); - $dispatcher->forward(['action' => 'index2']); - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeException: beforeDispatchLoop exception occurred', - 'beforeException: custom before exception forward', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'index2Action', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } -} diff --git a/tests/unit/Mvc/Dispatcher/DispatcherBeforeDispatchTest.php b/tests/unit/Mvc/Dispatcher/DispatcherBeforeDispatchTest.php deleted file mode 100644 index 96f6defcaf6..00000000000 --- a/tests/unit/Mvc/Dispatcher/DispatcherBeforeDispatchTest.php +++ /dev/null @@ -1,222 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file docs/LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class DispatcherBeforeDispatchTest extends BaseDispatcher -{ - /** - * Tests the forwarding in the beforeDispatch event - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeDispatchForwardOnce() - { - $this->specify( - 'Forwarding inside the beforeDispatch should cancel the default route and forward immediately', - function () { - $forwarded = false; - $dispatcher = $this->getDispatcher(); - - $dispatcher->getEventsManager()->attach('dispatch:beforeDispatch', function ($event, $dispatcher) use (&$forwarded) { - if ($forwarded === false) { - $dispatcher->forward(['action' => 'index2']); - $forwarded = true; - } - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'index2Action', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests returning false inside a beforeDispatch event. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeDispatchReturnFalse() - { - $this->specify( - 'Returning false inside a "dispatch:beforeDispatch" event should immediately cancel dispatching', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - - $dispatcher->getEventsManager()->attach('dispatch:beforeDispatch', function () use ($dispatcherListener) { - $dispatcherListener->trace('beforeDispatch: custom return false'); - return false; - }); - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeDispatch: custom return false', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests exception handling to ensure exceptions can be properly handled when thrown from - * inside a beforeDispatchLoop event and then ensure the exception is not bubbled when - * returning with false. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeDispatchWithBeforeExceptionReturningFalse() - { - $this->specify( - 'Returning false inside a "dispatch:beforeException" event should cancel dispatching and prevent bubbling of the exception', - function () { - $dispatcher = $this->getDispatcher(); - - $dispatcher->getEventsManager()->attach('dispatch:beforeDispatch', function () { - throw new Exception('beforeDispatch exception occurred'); - }); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () { - return false; - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeException: beforeDispatch exception occurred', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests exception handling to ensure exceptions can be properly handled via beforeException event and - * then will properly bubble up the stack if anything other than false is returned. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeDispatchWithBeforeExceptionBubble() - { - $this->specify( - 'Returning anything other than false inside a "dispatch:beforeException" event should bubble the exception', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - - $dispatcher->getEventsManager()->attach('dispatch:beforeDispatch', function () { - throw new Exception('beforeDispatch exception occurred'); - }); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () use ($dispatcherListener) { - $dispatcherListener->trace('beforeException: custom before exception bubble'); - return null; - }); - - $caughtException = false; - try { - $dispatcher->dispatch(); - } catch (Exception $exception) { - $caughtException = true; - } - - expect($caughtException)->equals(true); - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeException: beforeDispatch exception occurred', - 'beforeException: custom before exception bubble' - ]); - } - ); - } - - /** - * Tests dispatch forward handling inside the beforeException when a beforeDispatch exception occurs. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeDispatchWithBeforeExceptionForwardOnce() - { - $this->specify( - 'Forwarding inside a "dispatch:beforeException" event (and without returning false) should properly forward the dispatcher without the exception bubbling', - function () { - $forwarded = false; - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - - $dispatcher->getEventsManager()->attach('dispatch:beforeDispatch', function () use (&$forwarded) { - if ($forwarded === false) { - $forwarded = true; - throw new Exception('beforeDispatch exception occurred'); - } - }); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function ($event, $dispatcher) use ($dispatcherListener) { - $dispatcherListener->trace('beforeException: custom before exception forward'); - $dispatcher->forward(['action' => 'index2']); - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeException: beforeDispatch exception occurred', - 'beforeException: custom before exception forward', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'index2Action', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } -} diff --git a/tests/unit/Mvc/Dispatcher/DispatcherBeforeExecuteRouteMethodTest.php b/tests/unit/Mvc/Dispatcher/DispatcherBeforeExecuteRouteMethodTest.php deleted file mode 100644 index c874c22ba84..00000000000 --- a/tests/unit/Mvc/Dispatcher/DispatcherBeforeExecuteRouteMethodTest.php +++ /dev/null @@ -1,211 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file docs/LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class DispatcherBeforeExecuteRouteMethodTest extends BaseDispatcher -{ - /** - * Tests the forwarding in the beforeExecuteRoute method - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeExecuteRouteForwardOnce() - { - $this->specify( - 'Forwarding inside the beforeExecuteRoute should cancel the default route and forward immediately', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcher->setControllerName('dispatcher-test-before-execute-route-forward'); - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests returning false inside a beforeExecuteRoute method. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeExecuteRouteReturnFalse() - { - $this->specify( - 'Returning false inside a "beforeExecuteRoute" controller method should immediately cancel dispatching', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcher->setControllerName('dispatcher-test-before-execute-route-return-false'); - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'afterDispatchLoop', - ]); - } - ); - } - - /** - * Tests exception handling to ensure exceptions can be properly handled when thrown from - * inside a beforeExecuteRoute method and then ensure the exception is not bubbled when - * returning with false. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeExecuteRouteWithBeforeExceptionReturningFalse() - { - $this->specify( - 'Returning false inside a "dispatch:beforeException" event should cancel dispatching and prevent bubbling of the exception', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcher->setControllerName('dispatcher-test-before-execute-route-exception'); - - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () { - return false; - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'beforeException: beforeExecuteRoute exception occurred', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests exception handling to ensure exceptions can be properly handled via beforeException event and - * then will properly bubble up the stack if anything other than false is returned. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeExecuteRouteWithBeforeExceptionBubble() - { - $this->specify( - 'Returning anything other than false inside a "dispatch:beforeException" event should bubble the exception', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - $dispatcher->setControllerName('dispatcher-test-before-execute-route-exception'); - - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () use ($dispatcherListener) { - $dispatcherListener->trace('beforeException: custom before exception bubble'); - return null; - }); - - $caughtException = false; - try { - $dispatcher->dispatch(); - } catch (Exception $exception) { - $caughtException = true; - } - - expect($caughtException)->equals(true); - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'beforeException: beforeExecuteRoute exception occurred', - 'beforeException: custom before exception bubble' - ]); - } - ); - } - - /** - * Tests dispatch forward handling inside the beforeException when a beforeExecuteRoute method exception occurs. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeExecuteRouteWithBeforeExceptionForward() - { - $this->specify( - 'Forwarding inside a "dispatch:beforeException" event (and without returning false) should properly forward the dispatcher without the exception bubbling', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - $dispatcher->setControllerName('dispatcher-test-before-execute-route-exception'); - - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function ($event, $dispatcher) use ($dispatcherListener) { - $dispatcherListener->trace('beforeException: custom before exception forward'); - $dispatcher->forward([ - 'controller' => 'dispatcher-test-default', - 'action' => 'index' - ]); - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'beforeException: beforeExecuteRoute exception occurred', - 'beforeException: custom before exception forward', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } -} diff --git a/tests/unit/Mvc/Dispatcher/DispatcherBeforeExecuteRouteTest.php b/tests/unit/Mvc/Dispatcher/DispatcherBeforeExecuteRouteTest.php deleted file mode 100644 index 513b44f4042..00000000000 --- a/tests/unit/Mvc/Dispatcher/DispatcherBeforeExecuteRouteTest.php +++ /dev/null @@ -1,227 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file docs/LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class DispatcherBeforeExecuteRouteTest extends BaseDispatcher -{ - /** - * Tests the forwarding in the beforeExecuteRoute event - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeExecuteRouteForwardOnce() - { - $this->specify( - 'Forwarding inside the beforeExecuteRoute should cancel the default route and forward immediately', - function () { - $forwarded = false; - $dispatcher = $this->getDispatcher(); - - $dispatcher->getEventsManager()->attach('dispatch:beforeExecuteRoute', function ($event, $dispatcher) use (&$forwarded) { - if ($forwarded === false) { - $dispatcher->forward(['action' => 'index2']); - $forwarded = true; - } - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'index2Action', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests returning false inside a beforeExecuteRoute event. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeExecuteRouteReturnFalse() - { - $this->specify( - 'Returning false inside a "dispatch:beforeExecuteRoute" event should immediately cancel dispatching', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - - $dispatcher->getEventsManager()->attach('dispatch:beforeExecuteRoute', function () use ($dispatcherListener) { - $dispatcherListener->trace('beforeExecuteRoute: custom return false'); - return false; - }); - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute: custom return false', - 'afterDispatchLoop', - ]); - } - ); - } - - /** - * Tests exception handling to ensure exceptions can be properly handled when thrown from - * inside a beforeExecuteRoute event and then ensure the exception is not bubbled when - * returning with false. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeExecuteRouteWithBeforeExceptionReturningFalse() - { - $this->specify( - 'Returning false inside a "dispatch:beforeException" event should cancel dispatching and prevent bubbling of the exception', - function () { - $dispatcher = $this->getDispatcher(); - - $dispatcher->getEventsManager()->attach('dispatch:beforeExecuteRoute', function () { - throw new Exception('beforeExecuteRoute exception occurred'); - }); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () { - return false; - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeException: beforeExecuteRoute exception occurred', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests exception handling to ensure exceptions can be properly handled via beforeException event and - * then will properly bubble up the stack if anything other than false is returned. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeExecuteRouteWithBeforeExceptionBubble() - { - $this->specify( - 'Returning anything other than false inside a "dispatch:beforeException" event should bubble the exception', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - - $dispatcher->getEventsManager()->attach('dispatch:beforeExecuteRoute', function () { - throw new Exception('beforeExecuteRoute exception occurred'); - }); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () use ($dispatcherListener) { - $dispatcherListener->trace('beforeException: custom before exception bubble'); - return null; - }); - - $caughtException = false; - try { - $dispatcher->dispatch(); - } catch (Exception $exception) { - $caughtException = true; - } - - expect($caughtException)->equals(true); - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeException: beforeExecuteRoute exception occurred', - 'beforeException: custom before exception bubble' - ]); - } - ); - } - - /** - * Tests dispatch forward handling inside the beforeException when a beforeExecuteRoute exception occurs. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testBeforeExecuteRouteWithBeforeExceptionForwardOnce() - { - $this->specify( - 'Forwarding inside a "dispatch:beforeException" event (and without returning false) should properly forward the dispatcher without the exception bubbling', - function () { - $forwarded = false; - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - - $dispatcher->getEventsManager()->attach('dispatch:beforeExecuteRoute', function () use (&$forwarded) { - if ($forwarded === false) { - $forwarded = true; - throw new Exception('beforeExecuteRoute exception occurred'); - } - }); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function ($event, $dispatcher) use ($dispatcherListener) { - $dispatcherListener->trace('beforeException: custom before exception forward'); - $dispatcher->forward(['action' => 'index2']); - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeException: beforeExecuteRoute exception occurred', - 'beforeException: custom before exception forward', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'index2Action', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } -} diff --git a/tests/unit/Mvc/Dispatcher/DispatcherInitalizeMethodTest.php b/tests/unit/Mvc/Dispatcher/DispatcherInitalizeMethodTest.php deleted file mode 100644 index e1cd659b531..00000000000 --- a/tests/unit/Mvc/Dispatcher/DispatcherInitalizeMethodTest.php +++ /dev/null @@ -1,221 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file docs/LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class DispatcherInitalizeMethodTest extends BaseDispatcher -{ - /** - * Tests the forwarding in the initialize method - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testInitializeForward() - { - $this->specify( - 'Forwarding inside the initialize method is forbidden', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcher->setControllerName('dispatcher-test-initialize-forward'); - - $caughtException = false; - try { - $dispatcher->dispatch(); - } catch (Exception $exception) { - $caughtException = true; - } - - expect($caughtException)->equals(true); - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'beforeException: Forwarding inside a controller\'s initialize() method is forbidden' - ]); - } - ); - } - - /** - * Tests returning false inside an initialize method. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testInitializeReturnFalse() - { - $this->specify( - 'Returning false inside an "initialize" controller method should not do anything', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcher->setControllerName('dispatcher-test-initialize-return-false'); - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests exception handling to ensure exceptions can be properly handled when thrown from - * inside an initialize method and then ensure the exception is not bubbled when - * returning with false. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testInitializeWithBeforeExceptionReturningFalse() - { - $this->specify( - 'Returning false inside a "dispatch:beforeException" event should cancel dispatching and prevent bubbling of the exception', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcher->setControllerName('dispatcher-test-initialize-exception'); - - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () { - // Returning false should prevent the exception from bubbling up. - return false; - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'beforeException: initialize exception occurred', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests exception handling to ensure exceptions can be properly handled via beforeException event and - * then will properly bubble up the stack if anything other than false is returned. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testInitializeWithBeforeExceptionBubble() - { - $this->specify( - 'Returning anything other than false inside a "dispatch:beforeException" event should bubble the exception', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - $dispatcher->setControllerName('dispatcher-test-initialize-exception'); - - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function () use ($dispatcherListener) { - // Returning anything other then false should bubble the exception. - $dispatcherListener->trace('beforeException: custom before exception bubble'); - return null; - }); - - $caughtException = false; - try { - $dispatcher->dispatch(); - } catch (Exception $exception) { - $caughtException = true; - } - - expect($caughtException)->equals(true); - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'beforeException: initialize exception occurred', - 'beforeException: custom before exception bubble' - ]); - } - ); - } - - /** - * Tests dispatch forward handling inside the beforeException when an initialize method exception occurs. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testInitializeWithBeforeExceptionForward() - { - $this->specify( - 'Forwarding inside a "dispatch:beforeException" event (and without returning false) should properly forward the dispatcher without the exception bubbling', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcherListener = $this->getDispatcherListener(); - $dispatcher->setControllerName('dispatcher-test-initialize-exception'); - - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function ($event, $dispatcher) use ($dispatcherListener) { - $dispatcherListener->trace('beforeException: custom before exception forward'); - $dispatcher->forward([ - 'controller' => 'dispatcher-test-default', - 'action' => 'index' - ]); - }); - - $dispatcher->dispatch(); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'beforeException: initialize exception occurred', - 'beforeException: custom before exception forward', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } -} diff --git a/tests/unit/Mvc/Dispatcher/DispatcherTest.php b/tests/unit/Mvc/Dispatcher/DispatcherTest.php deleted file mode 100644 index 0e7158eff32..00000000000 --- a/tests/unit/Mvc/Dispatcher/DispatcherTest.php +++ /dev/null @@ -1,729 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file docs/LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class DispatcherTest extends BaseDispatcher -{ - /** - * Tests the default order of dispatch events for basic execution - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testDefaultDispatchLoopEvents() - { - $this->specify( - 'The order of dispatch events is not correct', - function () { - $dispatcher = $this->getDispatcher(); - $handler = $dispatcher->dispatch(); - - expect($dispatcher->getNamespaceName())->equals('Phalcon\Test\Unit\Mvc\Dispatcher\Helper'); - expect($dispatcher->getControllerName())->equals('dispatcher-test-default'); - expect($dispatcher->getActionName())->equals('index'); - expect($dispatcher->wasForwarded())->false(); - expect($dispatcher->getControllerClass())->equals(DispatcherTestDefaultController::class); - expect($handler)->isInstanceOf(DispatcherTestDefaultController::class); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests the default order of dispatch events for basic execution with no custom method handlers - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testDefaultDispatchLoopEventsWithNoHandlers() - { - $this->specify( - 'The order of dispatch events is not correct', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcher->setControllerName('dispatcher-test-default-simple'); - $handler = $dispatcher->dispatch(); - - expect($dispatcher->getNamespaceName())->equals('Phalcon\Test\Unit\Mvc\Dispatcher\Helper'); - expect($dispatcher->getControllerName())->equals('dispatcher-test-default-simple'); - expect($dispatcher->getActionName())->equals('index'); - expect($dispatcher->wasForwarded())->false(); - expect($dispatcher->getControllerClass())->equals(DispatcherTestDefaultSimpleController::class); - expect($handler)->isInstanceOf(DispatcherTestDefaultSimpleController::class); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - // See https://github.com/phalcon/cphalcon/pull/13112 - // We now fire the `afterInitialize` for all cases even when the controller does not - // have the `initialize()` method - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests the forwarding inside a controller's action. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testControllerActionLocalForward() - { - $this->specify( - 'Forwarding inside a Controller action should immediately begin the next dispatch cycle', - function () { - $dummyParams = [ - 'param1' => 1, - 'param2' => 2 - ]; - - $dispatcher = $this->getDispatcher(); - $dispatcher->setControllerName('dispatcher-test-default'); - $dispatcher->setActionName('forwardLocal'); - $dispatcher->setParams($dummyParams); - $handler = $dispatcher->dispatch(); - - expect($dispatcher->getNamespaceName())->equals('Phalcon\Test\Unit\Mvc\Dispatcher\Helper'); - expect($dispatcher->getControllerName())->equals('dispatcher-test-default'); - expect($dispatcher->getActionName())->equals('index2'); - expect($dispatcher->getParams())->equals($dummyParams); - expect($dispatcher->getControllerClass())->equals(DispatcherTestDefaultController::class); - expect($handler)->isInstanceOf(DispatcherTestDefaultController::class); - expect($dispatcher->getActiveController())->isInstanceOf(DispatcherTestDefaultController::class); - expect($dispatcher->getLastController())->isInstanceOf(DispatcherTestDefaultController::class); - - expect($dispatcher->wasForwarded())->true(); - expect($dispatcher->getPreviousNamespaceName())->equals('Phalcon\Test\Unit\Mvc\Dispatcher\Helper'); - expect($dispatcher->getPreviousControllerName())->equals('dispatcher-test-default'); - expect($dispatcher->getPreviousActionName())->equals('forwardLocal'); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'forwardLocalAction', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'index2Action', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests the forwarding inside a controller's action. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testControllerActionExternalForward() - { - $this->specify( - 'Forwarding inside a Controller action should immediately begin the next dispatch cycle', - function () { - $dummyParams = [ - 'param1' => 1, - 'param2' => 2 - ]; - - $dispatcher = $this->getDispatcher(); - $dispatcher->setControllerName('dispatcher-test-default-two'); - $dispatcher->setActionName('forwardExternal'); - $dispatcher->setParams($dummyParams); - $handler = $dispatcher->dispatch(); - - expect($dispatcher->getNamespaceName())->equals('Phalcon\Test\Unit\Mvc\Dispatcher\Helper'); - expect($dispatcher->getControllerName())->equals('dispatcher-test-default'); - expect($dispatcher->getActionName())->equals('index'); - expect($dispatcher->getParams())->equals($dummyParams); - expect($dispatcher->getControllerClass())->equals(DispatcherTestDefaultController::class); - expect($handler)->isInstanceOf(DispatcherTestDefaultController::class); - expect($dispatcher->getActiveController())->isInstanceOf(DispatcherTestDefaultController::class); - expect($dispatcher->getLastController())->isInstanceOf(DispatcherTestDefaultController::class); - - expect($dispatcher->wasForwarded())->true(); - expect($dispatcher->getPreviousNamespaceName())->equals('Phalcon\Test\Unit\Mvc\Dispatcher\Helper'); - expect($dispatcher->getPreviousControllerName())->equals('dispatcher-test-default-two'); - expect($dispatcher->getPreviousActionName())->equals('forwardExternal'); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'forwardExternalAction', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests the string return value from a dispatcher - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testControllerActionReturnValueString() - { - $this->specify( - 'Returning a string in the dispatcher should be properly saved in the dispatcher\'s return value', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcher->setActionName('returnString'); - $handler = $dispatcher->dispatch(); - - expect($dispatcher->getNamespaceName())->equals('Phalcon\Test\Unit\Mvc\Dispatcher\Helper'); - expect($dispatcher->getControllerName())->equals('dispatcher-test-default'); - expect($dispatcher->getActionName())->equals('returnString'); - expect($dispatcher->getReturnedValue())->equals(DispatcherTestDefaultController::RETURN_VALUE_STRING); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'returnStringAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests the int return value from a dispatcher - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testControllerActionReturnValueInt() - { - $this->specify( - 'Returning an integer in the dispatcher should be properly saved in the dispatcher\'s return value', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcher->setActionName('returnInt'); - $dispatcher->dispatch(); - - expect($dispatcher->getNamespaceName())->equals('Phalcon\Test\Unit\Mvc\Dispatcher\Helper'); - expect($dispatcher->getControllerName())->equals('dispatcher-test-default'); - expect($dispatcher->getActionName())->equals('returnInt'); - expect($dispatcher->getReturnedValue())->equals(DispatcherTestDefaultController::RETURN_VALUE_INT); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'returnIntAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests parameter passing and return value from the dispatcher - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testParamsAndReturnValue() - { - $this->specify( - 'Returning an integer in the dispatcher should be properly saved in the dispatcher\'s return value', - function () { - $multiply = [ 4, 6 ]; - - $dispatcher = $this->getDispatcher(); - $dispatcher->setActionName('multiply'); - $dispatcher->setParams($multiply); - $dispatcher->dispatch(); - - expect($dispatcher->getNamespaceName())->equals('Phalcon\Test\Unit\Mvc\Dispatcher\Helper'); - expect($dispatcher->getControllerName())->equals('dispatcher-test-default'); - expect($dispatcher->getActionName())->equals('multiply'); - expect($dispatcher->getParams())->equals($multiply); - expect($dispatcher->getReturnedValue())->equals(24); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'multiplyAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests cyclical routing - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testCyclicalRouting() - { - $this->specify( - 'Specifying an invalid handler should result in a Dispatch exception with code === `Dispatcher::EXCEPTION_HANDLER_NOT_FOUND`', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcher->getEventsManager()->attach('dispatch:beforeDispatch', function ($event, $dispatcher) { - $dispatcher->forward(['action' => 'index2']); - }); - - try { - $dispatcher->dispatch(); - } catch (Exception $exception) { - expect($exception->getCode())->equals(Dispatcher::EXCEPTION_CYCLIC_ROUTING); - } - } - ); - } - - /** - * Tests handler not found - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testHandlerNotFound() - { - $this->specify( - 'Specifying an non-existent handler should result in a Dispatch exception with code === `Dispatcher::EXCEPTION_HANDLER_NOT_FOUND`', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcher->setControllerName('Non-Existent-Dispatcher-Handler'); - - try { - $dispatcher->dispatch(); - } catch (Exception $exception) { - expect($exception->getCode())->equals(Dispatcher::EXCEPTION_HANDLER_NOT_FOUND); - } - } - ); - } - - /** - * Tests invalid handler specified - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testHandlerInvalid() - { - $this->specify( - 'Specifying an invalid handler should result in a Dispatch exception with code === `Dispatcher::EXCEPTION_INVALID_HANDLER`', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcher->setNamespaceName(null); - $dispatcher->setControllerName('Test'); - - $this->getDI()->setShared($dispatcher->getHandlerClass(), function () { - // Don't return an object - return 3; - }); - - try { - $dispatcher->dispatch(); - } catch (Exception $exception) { - expect($exception->getCode())->equals(Dispatcher::EXCEPTION_INVALID_HANDLER); - } - } - ); - } - - /** - * Tests invalid handler action specified - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testHandlerActionNotFound() - { - $this->specify( - 'Specifying an invalid handler action should result in a Dispatch exception with code === `Dispatcher::EXCEPTION_ACTION_NOT_FOUND`', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcher->setActionName('Invalid-Dispatcher-Action-Name'); - - try { - $dispatcher->dispatch(); - } catch (Exception $exception) { - expect($exception->getCode())->equals(Dispatcher::EXCEPTION_ACTION_NOT_FOUND); - } - } - ); - } - - /** - * Tests the last handler - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testLastHandler() - { - $this->specify( - 'The last handler should be the DispatcherTestDefaultController', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcher->dispatch(); - - expect($dispatcher->getLastController() instanceof DispatcherTestDefaultController)->equals(true); - } - ); - } - - /** - * Tests the last handler on a forward - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testLastHandlerForward() - { - $this->specify( - 'The last handler should be the DispatcherTestDefaultTwoController after forwarding', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcher->setActionName('forwardExternal'); - $dispatcher->dispatch(); - - expect($dispatcher->getLastController() instanceof DispatcherTestDefaultTwoController)->equals(true); - } - ); - } - - /** - * Tests dispatching without namespaces - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testNoNamespaces() - { - // Temporarilly load non-namespaced class - require_once __DIR__ . '/Helper/DispatcherTestDefaultNoNamespaceController.php'; - - $this->specify( - 'Dispatching without namespaces should work properly', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcher->setNamespaceName(null); - $dispatcher->setControllerName('dispatcher-test-default-no-namespace'); - $dispatcher->setActionName('index'); - $handler = $dispatcher->dispatch(); - - expect($dispatcher->getNamespaceName())->equals(null); - expect($dispatcher->getControllerName())->equals('dispatcher-test-default-no-namespace'); - expect($dispatcher->getActionName())->equals('index'); - expect($dispatcher->wasForwarded())->false(); - expect($dispatcher->getControllerClass())->equals(\DispatcherTestDefaultNoNamespaceController::class); - expect($handler)->isInstanceOf(\DispatcherTestDefaultNoNamespaceController::class); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests dispatching from a controller without namespace to one with namespace namespaces - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testMixingNamespaceForward() - { - // Temporarilly load non-namespaced class - require_once __DIR__ . '/Helper/DispatcherTestDefaultNoNamespaceController.php'; - - $this->specify( - 'Dispatching and forwarding between controllers with or without namespaces should work properly', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcher->setNamespaceName(null); - $dispatcher->setControllerName('dispatcher-test-default-no-namespace'); - $dispatcher->setActionName('forwardExternal'); - $handler = $dispatcher->dispatch(); - - expect($dispatcher->getNamespaceName())->equals('Phalcon\Test\Unit\Mvc\Dispatcher\Helper'); - expect($dispatcher->getControllerName())->equals('dispatcher-test-default'); - expect($dispatcher->getActionName())->equals('index'); - expect($dispatcher->getControllerClass())->equals(DispatcherTestDefaultController::class); - expect($handler)->isInstanceOf(DispatcherTestDefaultController::class); - expect($dispatcher->getActiveController())->isInstanceOf(DispatcherTestDefaultController::class); - expect($dispatcher->getLastController())->isInstanceOf(DispatcherTestDefaultController::class); - - expect($dispatcher->wasForwarded())->true(); - expect($dispatcher->getPreviousNamespaceName())->equals(null); - expect($dispatcher->getPreviousControllerName())->equals('dispatcher-test-default-no-namespace'); - expect($dispatcher->getPreviousActionName())->equals('forwardExternal'); - - expect($this->getDispatcherListener()->getTrace())->equals([ - 'beforeDispatchLoop', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'forwardExternalAction', - 'beforeDispatch', - 'beforeExecuteRoute', - 'beforeExecuteRoute-method', - 'initialize-method', - 'afterInitialize', - 'indexAction', - 'afterExecuteRoute', - 'afterExecuteRoute-method', - 'afterDispatch', - 'afterDispatchLoop' - ]); - } - ); - } - - /** - * Tests dispatcher resolve capability from defaults - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testDefaultResolve() - { - $this->specify( - 'Dispatching and forwarding between controllers with or without namespaces should work properly', - function () { - $dispatcher = $this->getDispatcher(); - $dispatcher->setNamespaceName('Foo'); - $dispatcher->setControllerName(null); - $dispatcher->setActionName(null); - - expect($dispatcher->getNamespaceName())->equals('Foo'); - expect($dispatcher->getControllerName())->equals(null); - expect($dispatcher->getActionName())->equals(null); - expect($dispatcher->getControllerClass())->equals('Foo\IndexController'); - } - ); - } - - /** - * Tests directly calling controller's action via the dispatcher manually - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testManualCallAction() - { - $this->specify( - 'Manually calling the dispatcher action should work similarly to dispaching without any events dispatch.', - function () { - $multiply = [ 5, 6 ]; - - $controller = new DispatcherTestDefaultController(); - $controller->setDI($this->getDI()); - - $returnValue = $this->getDispatcher()->callActionMethod($controller, 'multiplyAction', $multiply); - - expect($returnValue)->equals(30); - expect($this->getDispatcherListener()->getTrace())->equals([ - 'multiplyAction' - ]); - } - ); - } - - /** - * Tests the last handler when an exception occurs and is forwarded elsewhere - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testLastHandlerExceptionForward() - { - $this->specify( - 'Handling an exception with a new dispatch forward should not bubble the exception.', - function () { - $beforeExceptionHandled = false; - - $dispatcher = $this->getDispatcher(); - $dispatcher->setActionName('exception'); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function ($event, $dispatcher) use (&$beforeExceptionHandled) { - $beforeExceptionHandled = true; - - expect($dispatcher->getNamespaceName())->equals('Phalcon\Test\Unit\Mvc\Dispatcher\Helper'); - expect($dispatcher->getControllerName())->equals('dispatcher-test-default'); - expect($dispatcher->getActionName())->equals('exception'); - expect($dispatcher->getControllerClass())->equals(DispatcherTestDefaultController::class); - expect($dispatcher->getLastController())->isInstanceOf(DispatcherTestDefaultController::class); - - $dispatcher->forward([ - 'controller' => 'dispatcher-test-default-two', - 'action' => 'index' - ]); - - return false; - }); - - $handler = $dispatcher->dispatch(); - - expect($beforeExceptionHandled)->true(); - expect($dispatcher->getNamespaceName())->equals('Phalcon\Test\Unit\Mvc\Dispatcher\Helper'); - expect($dispatcher->getControllerName())->equals('dispatcher-test-default-two'); - expect($dispatcher->getActionName())->equals('index'); - expect($dispatcher->getControllerClass())->equals(DispatcherTestDefaultTwoController::class); - expect($dispatcher->getLastController())->isInstanceOf(DispatcherTestDefaultTwoController::class); - } - ); - } - - /** - * Tests throwing a new exception inside before exception. - * - * @author Mark Johnson - * @since 2017-10-07 - */ - public function testExceptionInBeforeException() - { - $this->specify( - 'Throwing a new exceptio in "beforeException" should bubble the exception.', - function () { - $beforeExceptionHandled = false; - $caughtException = false; - - $dispatcher = $this->getDispatcher(); - $dispatcher->setActionName('exception'); - $dispatcher->getEventsManager()->attach('dispatch:beforeException', function ($event, $dispatcher) use (&$beforeExceptionHandled) { - $beforeExceptionHandled = true; - - expect($dispatcher->getNamespaceName())->equals('Phalcon\Test\Unit\Mvc\Dispatcher\Helper'); - expect($dispatcher->getControllerName())->equals('dispatcher-test-default'); - expect($dispatcher->getActionName())->equals('exception'); - expect($dispatcher->getControllerClass())->equals(DispatcherTestDefaultController::class); - expect($dispatcher->getLastController())->isInstanceOf(DispatcherTestDefaultController::class); - - // Forwarding; however, will throw a new exception preventing this - $dispatcher->forward([ - 'controller' => 'dispatcher-test-default-two', - 'action' => 'index' - ]); - - throw new Exception('Custom error in before exception'); - }); - - try { - $handler = $dispatcher->dispatch(); - } catch (Exception $exception) { - $caughtException = true; - expect($exception->getMessage())->equals('Custom error in before exception'); - } finally { - expect($beforeExceptionHandled)->true(); - expect($caughtException)->true(); - - // The string properties get updated - expect($dispatcher->getNamespaceName())->equals('Phalcon\Test\Unit\Mvc\Dispatcher\Helper'); - expect($dispatcher->getControllerName())->equals('dispatcher-test-default-two'); - expect($dispatcher->getActionName())->equals('index'); - expect($dispatcher->getControllerClass())->equals(DispatcherTestDefaultTwoController::class); - - // But not the last controller since dispatching didn't take place - expect($dispatcher->getLastController())->isInstanceOf(DispatcherTestDefaultController::class); - } - } - ); - } -} diff --git a/tests/unit/Mvc/Dispatcher/ForwardCest.php b/tests/unit/Mvc/Dispatcher/ForwardCest.php new file mode 100644 index 00000000000..a9cab8ec498 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/ForwardCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class ForwardCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: forward() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherForward(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - forward()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetActionNameCest.php b/tests/unit/Mvc/Dispatcher/GetActionNameCest.php new file mode 100644 index 00000000000..6882977f328 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetActionNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetActionNameCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getActionName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetActionName(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getActionName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetActionSuffixCest.php b/tests/unit/Mvc/Dispatcher/GetActionSuffixCest.php new file mode 100644 index 00000000000..1910b207d4c --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetActionSuffixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetActionSuffixCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getActionSuffix() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetActionSuffix(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getActionSuffix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetActiveControllerCest.php b/tests/unit/Mvc/Dispatcher/GetActiveControllerCest.php new file mode 100644 index 00000000000..6cadb7d1c51 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetActiveControllerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetActiveControllerCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getActiveController() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetActiveController(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getActiveController()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetActiveMethodCest.php b/tests/unit/Mvc/Dispatcher/GetActiveMethodCest.php new file mode 100644 index 00000000000..bb4e43bc1c3 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetActiveMethodCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetActiveMethodCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getActiveMethod() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetActiveMethod(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getActiveMethod()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetBoundModelsCest.php b/tests/unit/Mvc/Dispatcher/GetBoundModelsCest.php new file mode 100644 index 00000000000..2330cd87abf --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetBoundModelsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetBoundModelsCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getBoundModels() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetBoundModels(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getBoundModels()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetControllerClassCest.php b/tests/unit/Mvc/Dispatcher/GetControllerClassCest.php new file mode 100644 index 00000000000..4d200c5bd95 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetControllerClassCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetControllerClassCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getControllerClass() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetControllerClass(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getControllerClass()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetControllerNameCest.php b/tests/unit/Mvc/Dispatcher/GetControllerNameCest.php new file mode 100644 index 00000000000..bb1d7f35af8 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetControllerNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetControllerNameCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getControllerName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetControllerName(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getControllerName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetDICest.php b/tests/unit/Mvc/Dispatcher/GetDICest.php new file mode 100644 index 00000000000..15c72384011 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetDI(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetDefaultNamespaceCest.php b/tests/unit/Mvc/Dispatcher/GetDefaultNamespaceCest.php new file mode 100644 index 00000000000..07c4253f63b --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetDefaultNamespaceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetDefaultNamespaceCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getDefaultNamespace() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetDefaultNamespace(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getDefaultNamespace()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetEventsManagerCest.php b/tests/unit/Mvc/Dispatcher/GetEventsManagerCest.php new file mode 100644 index 00000000000..6d0ebb889db --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetHandlerClassCest.php b/tests/unit/Mvc/Dispatcher/GetHandlerClassCest.php new file mode 100644 index 00000000000..6f6df57f6ea --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetHandlerClassCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetHandlerClassCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getHandlerClass() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetHandlerClass(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getHandlerClass()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetHandlerSuffixCest.php b/tests/unit/Mvc/Dispatcher/GetHandlerSuffixCest.php new file mode 100644 index 00000000000..2bb74067c43 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetHandlerSuffixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetHandlerSuffixCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getHandlerSuffix() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetHandlerSuffix(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getHandlerSuffix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetLastControllerCest.php b/tests/unit/Mvc/Dispatcher/GetLastControllerCest.php new file mode 100644 index 00000000000..b46c182e7d2 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetLastControllerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetLastControllerCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getLastController() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetLastController(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getLastController()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetModelBinderCest.php b/tests/unit/Mvc/Dispatcher/GetModelBinderCest.php new file mode 100644 index 00000000000..f4fd6960498 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetModelBinderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetModelBinderCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getModelBinder() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetModelBinder(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getModelBinder()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetModuleNameCest.php b/tests/unit/Mvc/Dispatcher/GetModuleNameCest.php new file mode 100644 index 00000000000..f7c6292656e --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetModuleNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetModuleNameCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getModuleName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetModuleName(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getModuleName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetNamespaceNameCest.php b/tests/unit/Mvc/Dispatcher/GetNamespaceNameCest.php new file mode 100644 index 00000000000..34dc1f20377 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetNamespaceNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetNamespaceNameCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getNamespaceName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetNamespaceName(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getNamespaceName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetParamCest.php b/tests/unit/Mvc/Dispatcher/GetParamCest.php new file mode 100644 index 00000000000..28d421faf76 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetParamCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetParamCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getParam() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetParam(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getParam()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetParamsCest.php b/tests/unit/Mvc/Dispatcher/GetParamsCest.php new file mode 100644 index 00000000000..99266443bb7 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetParamsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetParamsCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getParams() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetParams(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getParams()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetPreviousActionNameCest.php b/tests/unit/Mvc/Dispatcher/GetPreviousActionNameCest.php new file mode 100644 index 00000000000..0e0e63954d7 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetPreviousActionNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetPreviousActionNameCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getPreviousActionName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetPreviousActionName(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getPreviousActionName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetPreviousControllerNameCest.php b/tests/unit/Mvc/Dispatcher/GetPreviousControllerNameCest.php new file mode 100644 index 00000000000..23081291d71 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetPreviousControllerNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetPreviousControllerNameCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getPreviousControllerName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetPreviousControllerName(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getPreviousControllerName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetPreviousNamespaceNameCest.php b/tests/unit/Mvc/Dispatcher/GetPreviousNamespaceNameCest.php new file mode 100644 index 00000000000..728c36e3777 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetPreviousNamespaceNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetPreviousNamespaceNameCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getPreviousNamespaceName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetPreviousNamespaceName(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getPreviousNamespaceName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/GetReturnedValueCest.php b/tests/unit/Mvc/Dispatcher/GetReturnedValueCest.php new file mode 100644 index 00000000000..3469d8a539a --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/GetReturnedValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class GetReturnedValueCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: getReturnedValue() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherGetReturnedValue(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - getReturnedValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/HasParamCest.php b/tests/unit/Mvc/Dispatcher/HasParamCest.php new file mode 100644 index 00000000000..36fb61a0699 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/HasParamCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class HasParamCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: hasParam() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherHasParam(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - hasParam()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/Helper/BaseDispatcher.php b/tests/unit/Mvc/Dispatcher/Helper/BaseDispatcher.php deleted file mode 100644 index 5cfc36b2e46..00000000000 --- a/tests/unit/Mvc/Dispatcher/Helper/BaseDispatcher.php +++ /dev/null @@ -1,101 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher\Helper - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file docs/LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -abstract class BaseDispatcher extends UnitTest -{ - /** - * @var \Phalcon\Di - */ - private $di; - - /** - * Executed before each test. - * - * Ensure the depenendency injector and corresponding services including the - * dispatcher, response, and dispatcher listener are reset prior to each test. - */ - protected function _before() - { - parent::_before(); - - $dispatcherListener = new DispatcherListener(); - - Di::reset(); - $this->di = new Di(); - $this->di->setShared('response', new Response()); - $this->di->setShared('dispatcherListener', $dispatcherListener); - $this->di->setShared('dispatcher', function () use ($dispatcherListener) { - // New dispatcher instance - $dispatcher = new Dispatcher(); - - // Initialize defaults such that these don't need to be specified everywhere - $dispatcher->setNamespaceName('Phalcon\Test\Unit\Mvc\Dispatcher\Helper'); - $dispatcher->setControllerName('dispatcher-test-default'); - $dispatcher->setActionName('index'); - - // Ensure this gets called prior to any custom event listening which has a default priority of 100 - $eventsManager = new EventsManager(); - $eventsManager->attach('dispatch', $dispatcherListener, 200); - - $dispatcher->setEventsManager($eventsManager); - - return $dispatcher; - }); - } - - /** - * Returns the current Dependency Injector. - * - * @return \Phalcon\Di - */ - protected function getDI() - { - return $this->di; - } - - /** - * Returns the current dispatcher instance. - * - * @return \Phalcon\Mvc\Dispatcher - */ - protected function getDispatcher() - { - return $this->di->getShared('dispatcher'); - } - - /** - * Returns the current dispatcher listener instance. - * - * @return \Phalcon\Test\Unit\Mvc\Dispatcher\Helper\DispatcherListener - */ - protected function getDispatcherListener() - { - return $this->di->getShared('dispatcherListener'); - } -} diff --git a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteForwardController.php b/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteForwardController.php deleted file mode 100644 index eb154acbc9d..00000000000 --- a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestAfterExecuteRouteForwardController.php +++ /dev/null @@ -1,58 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher\Helper - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file docs/LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class DispatcherTestAfterExecuteRouteForwardController extends Controller -{ - /** - * Add tracing information into the current dispatch tracer - */ - protected function trace($text) - { - $this->getDI()->getShared('dispatcherListener')->trace($text); - } - - public function initialize() - { - $this->trace('initialize-method'); - } - - public function beforeExecuteRoute() - { - $this->trace('beforeExecuteRoute-method'); - } - - public function indexAction() - { - $this->trace('indexAction'); - } - - public function afterExecuteRoute() - { - $this->trace('afterExecuteRoute-method'); - - $this->getDI()->getShared('dispatcher')->forward([ - 'controller' => 'dispatcher-test-default', - 'action' => 'index' - ]); - } -} diff --git a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteExceptionController.php b/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteExceptionController.php deleted file mode 100644 index ae87ef7ff1b..00000000000 --- a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteExceptionController.php +++ /dev/null @@ -1,51 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher\Helper - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file docs/LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class DispatcherTestBeforeExecuteRouteExceptionController extends Controller -{ - /** - * Add tracing information into the current dispatch tracer - */ - protected function trace($text) - { - $this->getDI()->getShared('dispatcherListener')->trace($text); - } - - public function initialize() - { - $this->trace('initialize-method'); - } - - public function beforeExecuteRoute() - { - $this->trace('beforeExecuteRoute-method'); - - throw new Exception('beforeExecuteRoute exception occurred'); - } - - public function indexAction() - { - $this->trace('indexAction'); - } -} diff --git a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteForwardController.php b/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteForwardController.php deleted file mode 100644 index cc6811d8b3b..00000000000 --- a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteForwardController.php +++ /dev/null @@ -1,53 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher\Helper - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file docs/LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class DispatcherTestBeforeExecuteRouteForwardController extends Controller -{ - /** - * Add tracing information into the current dispatch tracer - */ - protected function trace($text) - { - $this->getDI()->getShared('dispatcherListener')->trace($text); - } - - public function initialize() - { - $this->trace('initialize-method'); - } - - public function beforeExecuteRoute() - { - $this->trace('beforeExecuteRoute-method'); - - $this->getDI()->getShared('dispatcher')->forward([ - 'controller' => 'dispatcher-test-default', - 'action' => 'index' - ]); - } - - public function indexAction() - { - $this->trace('indexAction'); - } -} diff --git a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteReturnFalseController.php b/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteReturnFalseController.php deleted file mode 100644 index 37a3e033bc0..00000000000 --- a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestBeforeExecuteRouteReturnFalseController.php +++ /dev/null @@ -1,50 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher\Helper - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file docs/LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class DispatcherTestBeforeExecuteRouteReturnFalseController extends Controller -{ - /** - * Add tracing information into the current dispatch tracer - */ - protected function trace($text) - { - $this->getDI()->getShared('dispatcherListener')->trace($text); - } - - public function initialize() - { - $this->trace('initialize-method'); - } - - public function beforeExecuteRoute() - { - $this->trace('beforeExecuteRoute-method'); - - return false; - } - - public function indexAction() - { - $this->trace('indexAction'); - } -} diff --git a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestDefaultSimpleController.php b/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestDefaultSimpleController.php deleted file mode 100644 index 52313edaec0..00000000000 --- a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestDefaultSimpleController.php +++ /dev/null @@ -1,38 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher\Helper - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file docs/LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class DispatcherTestDefaultSimpleController extends Controller -{ - /** - * Add tracing information into the current dispatch tracer - */ - protected function trace($text) - { - $this->getDI()->getShared('dispatcherListener')->trace($text); - } - - public function indexAction() - { - $this->trace('indexAction'); - } -} diff --git a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestInitializeForwardController.php b/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestInitializeForwardController.php deleted file mode 100644 index 1e64421af3a..00000000000 --- a/tests/unit/Mvc/Dispatcher/Helper/DispatcherTestInitializeForwardController.php +++ /dev/null @@ -1,58 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Mvc\Dispatcher\Helper - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file docs/LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class DispatcherTestInitializeForwardController extends Controller -{ - /** - * Add tracing information into the current dispatch tracer - */ - protected function trace($text) - { - $this->getDI()->getShared('dispatcherListener')->trace($text); - } - - public function beforeExecuteRoute() - { - $this->trace('beforeExecuteRoute-method'); - } - - public function initialize() - { - $this->trace('initialize-method'); - - $this->getDI()->getShared('dispatcher')->forward([ - 'controller' => 'dispatcher-test-default', - 'action' => 'index' - ]); - } - - public function afterExecuteRoute() - { - $this->trace('afterExecuteRoute-method'); - } - - public function indexAction() - { - $this->trace('indexAction'); - } -} diff --git a/tests/unit/Mvc/Dispatcher/IsFinishedCest.php b/tests/unit/Mvc/Dispatcher/IsFinishedCest.php new file mode 100644 index 00000000000..c60332b1cb8 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/IsFinishedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class IsFinishedCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: isFinished() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherIsFinished(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - isFinished()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/SetActionNameCest.php b/tests/unit/Mvc/Dispatcher/SetActionNameCest.php new file mode 100644 index 00000000000..551f9f3e2a6 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/SetActionNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class SetActionNameCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: setActionName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherSetActionName(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - setActionName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/SetActionSuffixCest.php b/tests/unit/Mvc/Dispatcher/SetActionSuffixCest.php new file mode 100644 index 00000000000..01730d119b8 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/SetActionSuffixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class SetActionSuffixCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: setActionSuffix() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherSetActionSuffix(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - setActionSuffix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/SetControllerNameCest.php b/tests/unit/Mvc/Dispatcher/SetControllerNameCest.php new file mode 100644 index 00000000000..0e4987cde2d --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/SetControllerNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class SetControllerNameCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: setControllerName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherSetControllerName(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - setControllerName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/SetControllerSuffixCest.php b/tests/unit/Mvc/Dispatcher/SetControllerSuffixCest.php new file mode 100644 index 00000000000..639d5930029 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/SetControllerSuffixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class SetControllerSuffixCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: setControllerSuffix() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherSetControllerSuffix(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - setControllerSuffix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/SetDICest.php b/tests/unit/Mvc/Dispatcher/SetDICest.php new file mode 100644 index 00000000000..226751573a3 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherSetDI(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/SetDefaultActionCest.php b/tests/unit/Mvc/Dispatcher/SetDefaultActionCest.php new file mode 100644 index 00000000000..3705035a8a6 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/SetDefaultActionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class SetDefaultActionCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: setDefaultAction() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherSetDefaultAction(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - setDefaultAction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/SetDefaultControllerCest.php b/tests/unit/Mvc/Dispatcher/SetDefaultControllerCest.php new file mode 100644 index 00000000000..28d71254e2a --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/SetDefaultControllerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class SetDefaultControllerCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: setDefaultController() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherSetDefaultController(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - setDefaultController()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/SetDefaultNamespaceCest.php b/tests/unit/Mvc/Dispatcher/SetDefaultNamespaceCest.php new file mode 100644 index 00000000000..fceef38bc34 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/SetDefaultNamespaceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class SetDefaultNamespaceCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: setDefaultNamespace() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherSetDefaultNamespace(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - setDefaultNamespace()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/SetEventsManagerCest.php b/tests/unit/Mvc/Dispatcher/SetEventsManagerCest.php new file mode 100644 index 00000000000..c8dbb98f744 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: setEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherSetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/SetHandlerSuffixCest.php b/tests/unit/Mvc/Dispatcher/SetHandlerSuffixCest.php new file mode 100644 index 00000000000..c198eb6708e --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/SetHandlerSuffixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class SetHandlerSuffixCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: setHandlerSuffix() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherSetHandlerSuffix(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - setHandlerSuffix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/SetModelBinderCest.php b/tests/unit/Mvc/Dispatcher/SetModelBinderCest.php new file mode 100644 index 00000000000..eaa28fc2321 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/SetModelBinderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class SetModelBinderCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: setModelBinder() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherSetModelBinder(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - setModelBinder()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/SetModuleNameCest.php b/tests/unit/Mvc/Dispatcher/SetModuleNameCest.php new file mode 100644 index 00000000000..fe4f77616c0 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/SetModuleNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class SetModuleNameCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: setModuleName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherSetModuleName(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - setModuleName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/SetNamespaceNameCest.php b/tests/unit/Mvc/Dispatcher/SetNamespaceNameCest.php new file mode 100644 index 00000000000..b1958051fe2 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/SetNamespaceNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class SetNamespaceNameCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: setNamespaceName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherSetNamespaceName(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - setNamespaceName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/SetParamCest.php b/tests/unit/Mvc/Dispatcher/SetParamCest.php new file mode 100644 index 00000000000..cd32e0f5d35 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/SetParamCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class SetParamCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: setParam() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherSetParam(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - setParam()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/SetParamsCest.php b/tests/unit/Mvc/Dispatcher/SetParamsCest.php new file mode 100644 index 00000000000..0f4986f240e --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/SetParamsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class SetParamsCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: setParams() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherSetParams(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - setParams()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/SetReturnedValueCest.php b/tests/unit/Mvc/Dispatcher/SetReturnedValueCest.php new file mode 100644 index 00000000000..e937d571c50 --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/SetReturnedValueCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class SetReturnedValueCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: setReturnedValue() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherSetReturnedValue(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - setReturnedValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Dispatcher/WasForwardedCest.php b/tests/unit/Mvc/Dispatcher/WasForwardedCest.php new file mode 100644 index 00000000000..7711d70a1ca --- /dev/null +++ b/tests/unit/Mvc/Dispatcher/WasForwardedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Dispatcher; + +use UnitTester; + +class WasForwardedCest +{ + /** + * Tests Phalcon\Mvc\Dispatcher :: wasForwarded() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcDispatcherWasForwarded(UnitTester $I) + { + $I->wantToTest("Mvc\Dispatcher - wasForwarded()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/MicroTest.php b/tests/unit/Mvc/MicroTest.php deleted file mode 100644 index a547b8da9d3..00000000000 --- a/tests/unit/Mvc/MicroTest.php +++ /dev/null @@ -1,679 +0,0 @@ - - * @since 2016-11-19 - */ - public function testAfterBindingEvent() - { - $this->specify( - 'afterBinding event should be fired', - function () { - $di = new FactoryDefault(); - $micro = new Micro($di); - $manager = new Manager(); - $manager->attach( - 'micro:afterBinding', - function (Event $event, Micro $micro) { - return false; - } - ); - $micro->setEventsManager($manager); - $micro->get( - '/test', - function () { - return 'test'; - } - ); - expect($micro->handle('/test'))->isEmpty(); - } - ); - } - - /** - * Tests after binding middleware - * - * @author Wojciech Ślawski - * @since 2016-11-19 - */ - public function testAfterBindingMiddleware() - { - $this->specify( - 'afterBinding middleware should be called', - function () { - $di = new FactoryDefault(); - $micro = new Micro($di); - $micro->afterBinding( - function () { - return false; - } - ); - $micro->get( - '/test', - function () { - return 'test'; - } - ); - expect($micro->handle('/test'))->equals('test'); - } - ); - } - - public function testStopMiddlewareOnAfterBindingClosure() - { - $this->specify( - "afterBinding middleware doesn't work as expected", - function () { - $di = new FactoryDefault(); - $micro = new Micro($di); - $micro->afterBinding( - function () use ($micro) { - $micro->stop(); - - return false; - } - ); - $micro->get( - '/test', - function () { - return 'test'; - } - ); - expect($micro->handle('/test'))->isEmpty(); - } - ); - } - - public function testStopMiddlewareOnAfterBindingClassFirst() - { - $this->specify( - "afterBinding middleware doesn't work as expected", - function () { - $di = new FactoryDefault(); - $micro = new Micro($di); - $middleware = new \MyMiddleware(); - $middlewareStop = new \MyMiddlewareStop(); - $micro->afterBinding($middlewareStop); - $micro->afterBinding($middleware); - $micro->afterBinding($middleware); - $micro->afterBinding($middleware); - $micro->get( - '/test', - function () { - return 'test'; - } - ); - expect($micro->handle('/test'))->isEmpty(); - expect($middlewareStop->getNumber())->equals(1); - expect($middleware->getNumber())->equals(0); - } - ); - } - - public function testStopMiddlewareOnAfterBindingClass() - { - $this->specify( - "afterBinding middleware doesn't work as expected", - function () { - $di = new FactoryDefault(); - $micro = new Micro($di); - $middleware = new \MyMiddleware(); - $middlewareStop = new \MyMiddlewareStop(); - $micro->afterBinding($middleware); - $micro->afterBinding($middleware); - $micro->afterBinding($middleware); - $micro->afterBinding($middlewareStop); - $micro->afterBinding($middleware); - $micro->get( - '/test', - function () { - return 'test'; - } - ); - expect($micro->handle('/test'))->isEmpty(); - expect($middleware->getNumber())->equals(3); - expect($middlewareStop->getNumber())->equals(1); - } - ); - } - - public function testMicroClass() - { - $this->specify( - "MVC Micro doesn't work as expected", - function () { - $handler = new \RestHandler(); - - $app = new Micro(); - - $app->get("/api/site", [$handler, "find"]); - $app->post("/api/site/save", [$handler, "save"]); - $app->delete("/api/site/delete/1", [$handler, "delete"]); - - //Getting the url from _url using GET - $_SERVER["REQUEST_METHOD"] = "GET"; - - $app->handle("/api/site"); - - expect($handler->getNumberAccess())->equals(1); - expect($handler->getTrace())->equals(["find"]); - - //Getting the url from _url using POST - $_SERVER["REQUEST_METHOD"] = "POST"; - - $app->handle("/api/site/save"); - - expect($handler->getNumberAccess())->equals(2); - expect($handler->getTrace())->equals(["find", "save"]); - - //Passing directly a URI - $_SERVER["REQUEST_METHOD"] = "DELETE"; - - $app->handle("/api/site/delete/1"); - - expect($handler->getNumberAccess())->equals(3); - expect($handler->getTrace())->equals(["find", "save", "delete"]); - } - ); - } - - /** - * Tests the notFound - * - * @issue T169 - * @author Nikos Dimopoulos - * @since 2012-11-06 - */ - public function testMicroNotFoundT169() - { - $this->specify( - "MVC Micro notFound doesn't work", - function () { - $handler = new \RestHandler(); - - $app = new Micro(); - - $app->get("/api/site", [$handler, "find"]); - $app->post("/api/site/save", [$handler, "save"]); - - $flag = false; - - $app->notFound( - function () use (&$flag) { - $flag = true; - } - ); - - $_SERVER["REQUEST_METHOD"] = "GET"; - - $app->handle("/fourohfour"); - - expect($flag)->true(); - } - ); - } - - public function testMicroBeforeHandlers() - { - $this->specify( - "Micro::before event handlers don't work as expected", - function () { - $trace = []; - - $app = new Micro(); - - $app->before( - function () use ($app, &$trace) { - $trace[] = 1; - $app->stop(); - - return false; - } - ); - - $app->before( - function () use ($app, &$trace) { - $trace[] = 1; - $app->stop(); - - return false; - } - ); - - $app->map( - "/blog", - function () use (&$trace) { - $trace[] = 1; - } - ); - - $app->handle("/blog"); - - expect($trace)->count(1); - } - ); - } - - public function testMicroAfterHandlers() - { - $this->specify( - "Micro::after event handlers don't work as expected", - function () { - $trace = []; - - $app = new Micro(); - - $app->after( - function () use (&$trace) { - $trace[] = 1; - } - ); - - $app->after( - function () use (&$trace) { - $trace[] = 1; - } - ); - - $app->map( - "/blog", - function () use (&$trace) { - $trace[] = 1; - } - ); - - $app->handle("/blog"); - - expect($trace)->count(3); - } - ); - } - - public function testMicroAfterHandlersIfOneStop() - { - $this->specify( - "Micro::finish event handlers don't work as expected", - function () { - $trace = array(); - - $app = new Micro(); - - $app->after( - function () use (&$trace) { - $trace[] = 1; - } - ); - - $app->after( - function () use ($app, &$trace) { - $trace[] = 1; - $app->stop(); - } - ); - - $app->after( - function () use (&$trace) { - $trace[] = 1; - } - ); - - $app->map( - '/blog', - function () use (&$trace) { - $trace[] = 1; - } - ); - - $app->handle('/blog'); - - expect($trace)->count(3); - } - ); - } - - public function testMicroFinishHandlers() - { - $this->specify( - "Micro::finish event handlers don't work as expected", - function () { - $trace = []; - - $app = new Micro(); - - $app->finish( - function () use (&$trace) { - $trace[] = 1; - } - ); - - $app->finish( - function () use (&$trace) { - $trace[] = 1; - } - ); - - $app->map( - "/blog", - function () use (&$trace) { - $trace[] = 1; - } - ); - - $app->handle("/blog"); - - expect($trace)->count(3); - } - ); - } - - public function testMicroFinishHandlersIfOneStop() - { - $this->specify( - "Micro::finish event handlers don't work as expected", - function () { - $trace = array(); - - $app = new Micro(); - - $app->finish( - function () use (&$trace) { - $trace[] = 1; - } - ); - - $app->finish( - function () use ($app, &$trace) { - $trace[] = 1; - $app->stop(); - } - ); - - $app->finish( - function () use (&$trace) { - $trace[] = 1; - } - ); - - $app->map( - '/blog', - function () use (&$trace) { - $trace[] = 1; - } - ); - - $app->handle('/blog'); - - expect($trace)->count(3); - } - ); - } - - public function testMicroEvents() - { - $this->specify( - "Micro event handlers don't work as expected", - function () { - $trace = []; - - $eventsManager = new Manager(); - - $eventsManager->attach( - 'micro', - function ($event) use (&$trace) { - $trace[$event->getType()] = true; - } - ); - - $app = new Micro(); - - $app->setEventsManager($eventsManager); - - $app->map( - "/blog", - function () { - } - ); - - $app->handle("/blog"); - - expect($trace)->equals( - [ - 'beforeHandleRoute' => true, - 'beforeExecuteRoute' => true, - 'afterExecuteRoute' => true, - 'afterHandleRoute' => true, - 'afterBinding' => true, - ] - ); - } - ); - } - - public function testMicroMiddlewareSimple() - { - $this->specify( - "Micro before/after/finish events don't work as expected", - function () { - $app = new Micro(); - - $app->map( - "/api/site", - function () { - return true; - } - ); - - $trace = 0; - - $app->before( - function () use (&$trace) { - $trace++; - } - ); - - $app->before( - function () use (&$trace) { - $trace++; - } - ); - - $app->after( - function () use (&$trace) { - $trace++; - } - ); - - $app->after( - function () use (&$trace) { - $trace++; - } - ); - - $app->finish( - function () use (&$trace) { - $trace++; - } - ); - - $app->finish( - function () use (&$trace) { - $trace++; - } - ); - - $app->handle("/api/site"); - - expect($trace)->equals(6); - } - ); - } - - public function testMicroMiddlewareClasses() - { - $this->specify( - "Micro middleware events don't work as expected", - function () { - $app = new Micro(); - - $app->map( - "/api/site", - function () { - return true; - } - ); - - $middleware = new \MyMiddleware(); - - $app->before($middleware); - $app->before($middleware); - - $app->after($middleware); - $app->after($middleware); - - $app->finish($middleware); - $app->finish($middleware); - - $app->handle("/api/site"); - - expect($middleware->getNumber())->equals(6); - } - ); - } - - public function testMicroStopMiddlewareOnBeforeClasses() - { - $this->specify( - "Micro middleware events don't work as expected", - function () { - $app = new Micro(); - - $app->map( - "/api/site", - function () { - return true; - } - ); - - $middleware = new \MyMiddlewareStop(); - - $app->before($middleware); - $app->before($middleware); - - $app->after($middleware); - $app->after($middleware); - - $app->finish($middleware); - $app->finish($middleware); - - $app->handle("/api/site"); - - expect($middleware->getNumber())->equals(1); - } - ); - } - - public function testMicroStopMiddlewareOnAfterAndFinishClasses() - { - $this->specify( - "Micro middleware events don't work as expected", - function () { - $app = new Micro(); - - $app->map( - '/api/site', - function () { - return true; - } - ); - - $middleware = new \MyMiddlewareStop(); - - $app->after($middleware); - $app->after($middleware); - - $app->finish($middleware); - $app->finish($middleware); - - $app->handle('/api/site'); - - expect($middleware->getNumber())->equals(2); - } - ); - } - - public function testMicroResponseAlreadySentError() - { - $this->specify( - "Micro::handle method doesn't work as expected", - function () { - $app = new Micro(); - $app->after( - function () use ($app) { - $content = $app->getReturnedValue(); - $app->response->setJsonContent($content)->send(); - } - ); - $app->map( - '/api', - function () { - return 'success'; - } - ); - expect($app->handle('/api'))->equals('success'); - } - ); - } - - public function testMicroCollectionVia() - { - $this->specify( - "Adding collection via doesn't work as exepected", - function () { - $app = new Micro(); - $collection = new Micro\Collection(); - $collection->setHandler(new \Test2Controller()); - $collection->mapVia( - "/test", - 'indexAction', - ["POST", "GET"], - "test" - ); - $app->mount($collection); - expect($app->getRouter()->getRouteByName("test")->getHttpMethods())->equals(["POST", "GET"]); - } - ); - } -} diff --git a/tests/unit/Mvc/Model/CriteriaTest.php b/tests/unit/Mvc/Model/CriteriaTest.php deleted file mode 100644 index 483df824a2c..00000000000 --- a/tests/unit/Mvc/Model/CriteriaTest.php +++ /dev/null @@ -1,102 +0,0 @@ -tester->getApplication()->getDI(); - - $di->set('modelsManager', function () { - return new Manager; - }); - - $di->set('modelsMetadata', function () { - return new Memory; - }); - - Di::setDefault($di); - } - - /** - * Tests Criteria::inWhere with empty array. - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/10676 - * @author Serghei Iakovlev - * @since 2016-08-11 - */ - public function shouldExecuteInWhereQueryWithEmptyArray() - { - $this->specify( - 'The Criteria::inWhere with empty array does not work as expected', - function () { - $criteria = Users::query()->inWhere(Users::class . '.id', []); - - expect($criteria->getWhere())->equals(Users::class . '.id != ' . Users::class . '.id'); - expect($criteria->execute())->isInstanceOf(Simple::class); - } - ); - } - - /** - * Tests work with limit / offset - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/12419 - * @author Serghei Iakovelv - * @since 2016-12-18 - */ - public function shouldCorrectHandleLimitAndOffset() - { - $this->specify( - 'The criteria object works with limit / offset incorrectly', - function ($limit, $offset, $expected) { - /** @var \Phalcon\Mvc\Model\Criteria $query */ - $query = Users::query(); - - $query->limit($limit, $offset); - - expect($query->getLimit())->equals($expected); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'mvc/model/criteria_test/limit_offset_provider.php' - ] - ); - } -} diff --git a/tests/unit/Mvc/Model/DynamicOperationsTest.php b/tests/unit/Mvc/Model/DynamicOperationsTest.php deleted file mode 100644 index 35ebd243e37..00000000000 --- a/tests/unit/Mvc/Model/DynamicOperationsTest.php +++ /dev/null @@ -1,302 +0,0 @@ - - * @author Serghei Iakovlev - * @author Wojciech Ślawski - * @package Phalcon\Test\Unit\Mvc\Model - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class DynamicOperationsTest extends UnitTest -{ - use ModelTrait; - - protected $oldDI; - protected $tracer = []; - - /** - * executed before each test - */ - protected function _before() - { - parent::_before(); - - $this->oldDI = Di::getDefault(); - } - - /** - * executed after each test - */ - protected function _after() - { - parent::_after(); - - if ($this->oldDI instanceof DiInterface) { - Di::reset(); - Di::setDefault($this->oldDI); - } - } - - /** - * Tests dynamic update create then update - * - * @test - * @author Wojciech Ślawski - * @issue https://github.com/phalcon/cphalcon/issues/12766 - * @since 2017-04-04 - */ - public function shouldSaveSnapshotWhenHavingPublicPropertyWithNullValue() - { - $this->specify( - 'Dynamic update does not work when model have a public property with null value', - function () { - $this->setUpConnectionAwareModelsManager(MysqlFactory::class); - - $robots = new Robots(); - $robots->name = 'Test'; - $robots->type = 'mechanical'; - $robots->datetime = (new \DateTime())->format('Y-m-d'); - $robots->text = 'text'; - - expect($robots->create())->true(); - expect($robots->year)->null(); - - $robots->year = date('Y'); - - expect($robots->update())->true(); - expect($robots->year)->equals(date('Y')); - - expect($robots->delete())->true(); - } - ); - } - - /** - * Tests dynamic update with default use case. - * - * @test - * @author Andres Gutierrez - * @since 2013-03-01 - */ - public function shouldWorkUsingDynamicUpdate() - { - $this->specify( - 'Dynamic update does not work as expected', - function () { - $this->setUpConnectionAwareModelsManager(MysqlFactory::class); - $this->setUpEventsManager(); - - $persona = Personas::findFirst(); - expect($persona->save())->true(); - - // For Personas::useDynamicUpdate(false) - // ------------------------------------ - // 1. Check table - // 2. Describe table - // 3. Personas::findFirst - // 4. Personas::save - // - // For Personas::useDynamicUpdate(true) - // ------------------------------------ - // 1. Check table - // 2. Describe table - // 3. Personas::findFirst - expect($this->tracer)->count(3); - - $persona->nombres = 'Other Name ' . mt_rand(0, 150000); - - expect($persona->getChangedFields())->equals(['nombres']); - expect($persona->save())->true(); - expect('UPDATE `personas` SET `nombres` = ? WHERE `cedula` = ?')->equals($this->tracer[3]); - - $persona->nombres = 'Other Name ' . mt_rand(0, 150000); - $persona->direccion = 'Address ' . mt_rand(0, 150000); - - expect($persona->getChangedFields())->equals(['nombres', 'direccion']); - expect($persona->save())->true(); - expect('UPDATE `personas` SET `nombres` = ?, `direccion` = ? WHERE `cedula` = ?')->equals($this->tracer[4]); - - // Cleanup for future tests in this class - $this->tracer = []; - } - ); - } - - /** - * Tests dynamic update with renamed model fields. - * - * @test - * @author Andres Gutierrez - * @since 2013-03-01 - */ - public function shouldWorkUsingDynamicUpdateForRenamedModelFields() - { - $this->specify( - 'Dynamic update for renamed model fields does not work as expected', - function () { - $this->setUpConnectionAwareModelsManager(MysqlFactory::class); - $this->setUpEventsManager(); - - $persona = Personers::findFirst(); - expect($persona->save())->true(); - - // For Personers::useDynamicUpdate(false) - // ------------------------------------ - // 1. Check table - // 2. Describe table - // 3. Personas::findFirst - // 4. Personas::save - // - // For Personers::useDynamicUpdate(true) - // ------------------------------------ - // 1. Check table - // 2. Describe table - // 3. Personas::findFirst - expect($this->tracer)->count(3); - - $persona->navnes = 'Other Name ' . mt_rand(0, 150000); - - expect($persona->getChangedFields())->equals(['navnes']); - expect($persona->save())->true(); - expect('UPDATE `personas` SET `nombres` = ? WHERE `cedula` = ?')->equals($this->tracer[3]); - - $persona->navnes = 'Other Name ' . mt_rand(0, 150000); - $persona->adresse = 'Address ' . mt_rand(0, 150000); - - expect($persona->getChangedFields())->equals(['navnes', 'adresse']); - expect($persona->save())->true(); - expect('UPDATE `personas` SET `nombres` = ?, `direccion` = ? WHERE `cedula` = ?')->equals($this->tracer[4]); - - // Cleanup for future tests in this class - $this->tracer = []; - } - ); - } - - /** - * Tests dynamic update soft delete with renamed model. - * - * @test - * @author limx <715557344@qq.com> - * @since 2018-02-24 - */ - public function shouldWorkUsingDynamicUpdateSoftDeleteForRenamedModel() - { - $this->specify( - 'Dynamic update soft delete for renamed model does not work as expected', - function () { - $this->setUpConnectionAwareModelsManager(MysqlFactory::class); - $this->setUpEventsManager(); - - $persona = Personers::findFirst(); - expect($persona->delete())->true(); - expect($persona->status)->equals('X'); - } - ); - } - - /** - * Tests dynamic update and rawvalue - * - * @test - * @author limingxinleo <715557344@qq.com> - * @issue https://github.com/phalcon/cphalcon/issues/13170 - * @since 2017-11-20 - */ - public function shouldWorkUsingDynamicUpdateForRawValue() - { - $this->specify( - 'Dynamic update does not work as expected for fields which raw values were assigned to', - function () { - $robot = new Robots(); - $robot->name = 'Test'; - $robot->type = 'mechanical'; - $robot->datetime = (new \DateTime())->format('Y-m-d'); - $robot->text = 'text'; - $robot->year = 1; - $robot->save(); - - $robot = Robots::findFirst([ - 'conditions' => 'year = ?0', - 'bind' => [1] - ]); - - $robot->year = new RawValue('year + 1'); - expect($robot->save())->true(); - - $robot = Robots::findFirst($robot->id); - expect($robot->year)->equals(2); - } - ); - } - - /** - * Setting up the Events Manager. - * - * @return void - */ - protected function setUpEventsManager() - { - if (!Di::getDefault()->has('eventsManager')) { - $eventsManager = new EventsManager(); - } else { - $eventsManager = Di::getDefault()->get('eventsManager'); - expect($eventsManager)->isInstanceOf(ManagerInterface::class); - } - - $that = $this; - - $eventsManager->attach( - 'db', - function (Event $event, AdapterInterface $connection) use ($that) { - if ($event->getType() == 'beforeQuery') { - $that->tracer[] = $connection->getSqlStatement(); - } - } - ); - - $connection = Di::getDefault()->get('db'); - expect($connection)->isInstanceOf(AdapterInterface::class); - - $connection->setEventsManager($eventsManager); - } - - /** - * Setting up the Models Manager. - * - * @param string $connection - * @return void - */ - protected function setUpConnectionAwareModelsManager($connection) - { - $factory = new $connection(); - $this->setUpModelsManager($factory->createConnection()); - } -} diff --git a/tests/unit/Mvc/Model/Helpers/Validation.php b/tests/unit/Mvc/Model/Helpers/Validation.php deleted file mode 100644 index f9445938d04..00000000000 --- a/tests/unit/Mvc/Model/Helpers/Validation.php +++ /dev/null @@ -1,277 +0,0 @@ -getShared('db'); - - $I->assertTrue($connection->delete('subscriptores')); - - $model = new Subscriptores(); - $model->assign( - [ - 'email' => 'fuego@hotmail.com', - 'created_at' => new RawValue('now()'), - 'status' => 'A' - ] - ); - $I->assertTrue($model->save()); - } - - protected function presenceOf(UnitTester $I) - { - $model = new Subscriptores(); - $model->assign( - [ - 'email' => 'diego@hotmail.com', - 'created_at' => null, - 'status' => 'A' - ] - ); - $I->assertFalse($model->save()); - - $expected = [ - Message::__set_state([ - '_message' => 'Field created_at is required', - '_field' => 'created_at', - '_type' => 'PresenceOf', - '_code' => 0, - ]) - ]; - - $I->assertEquals($expected, $model->getMessages()); - } - - protected function email(UnitTester $I) - { - $model = new Subscriptores(); - $model->assign( - [ - 'email' => 'fuego?=', - 'created_at' => new RawValue('now()'), - 'status' => 'A' - ] - ); - $I->assertFalse($model->save()); - - $expected = [ - Message::__set_state([ - '_message' => 'Field email must be an email address', - '_field' => 'email', - '_type' => 'Email', - '_code' => 0, - ]) - ]; - - $I->assertEquals($expected, $model->getMessages()); - } - - /** - * @issue https://github.com/phalcon/cphalcon/issues/1243 - * @param UnitTester $I - */ - protected function emailWithDot(UnitTester $I) - { - $model = new Subscriptores(); - $model->assign( - [ - 'email' => 'serghei.@yahoo.com', - 'created_at' => new RawValue('now()'), - 'status' => 'A' - ] - ); - $I->assertFalse($model->save()); - - $expected = [ - Message::__set_state([ - '_message' => 'Field email must be an email address', - '_field' => 'email', - '_type' => 'Email', - '_code' => 0, - ]) - ]; - - $I->assertEquals($expected, $model->getMessages()); - } - - protected function exclusionIn(UnitTester $I) - { - $model = new Subscriptores(); - $model->assign( - [ - 'email' => 'serghei@hotmail.com', - 'created_at' => new RawValue('now()'), - 'status' => 'P' - ] - ); - $I->assertFalse($model->save(), 'The ExclusionIn Validation failed'); - - $expected = [ - Message::__set_state([ - '_message' => 'Field status must not be a part of list: P, I, w', - '_field' => 'status', - '_type' => 'ExclusionIn', - '_code' => 0, - ]), - Message::__set_state([ - '_message' => 'Field status must be a part of list: A, y, Z', - '_field' => 'status', - '_type' => 'InclusionIn', - '_code' => 0, - ]), - ]; - - $I->assertEquals($expected, $model->getMessages()); - } - - protected function inclusionIn(UnitTester $I) - { - $model = new Subscriptores(); - $model->assign( - [ - 'email' => 'serghei@hotmail.com', - 'created_at' => new RawValue('now()'), - 'status' => 'R' - ] - ); - $I->assertFalse($model->save()); - - $expected = [ - Message::__set_state([ - '_message' => 'Field status must be a part of list: A, y, Z', - '_field' => 'status', - '_type' => 'InclusionIn', - '_code' => 0, - ]), - ]; - - $I->assertEquals($expected, $model->getMessages()); - } - - protected function uniqueness1(UnitTester $I) - { - $data = [ - 'email' => 'jurigag@hotmail.com', - 'created_at' => new RawValue('now()'), - 'status' => 'A' - ]; - - $model = new Subscriptores(); - $model->assign($data); - $I->assertTrue($model->save()); - - $model = new Subscriptores(); - $model->assign($data); - $I->assertFalse($model->save()); - - $expected = [ - Message::__set_state([ - '_message' => 'Field email must be unique', - '_field' => 'email', - '_type' => 'Uniqueness', - '_code' => 0, - ]), - ]; - - $I->assertEquals($expected, $model->getMessages()); - } - - /** - * @issue https://github.com/phalcon/cphalcon/issues/1527 - * @param UnitTester $I - */ - protected function uniqueness2(UnitTester $I) - { - $model = Subscriptores::findFirst(); - $model->assign($model->toArray()); - $model->save(); - - $I->assertTrue($model->validation()); - $I->assertEmpty($model->getMessages()); - } - - protected function regex(UnitTester $I) - { - $model = new Subscriptores(); - $model->assign( - [ - 'email' => 'andres@hotmail.com', - 'created_at' => new RawValue('now()'), - 'status' => 'y' - ] - ); - $I->assertFalse($model->save()); - - $expected = [ - Message::__set_state([ - '_message' => 'Field status does not match the required format', - '_field' => 'status', - '_type' => 'Regex', - '_code' => 0, - ]), - ]; - - $I->assertEquals($expected, $model->getMessages()); - } - - protected function tooLong(UnitTester $I) - { - $model = new Subscriptores(); - $model->assign( - [ - 'email' => str_repeat('a', 50) . '@hotmail.com', - 'created_at' => new RawValue('now()'), - 'status' => 'A' - ] - ); - $I->assertFalse($model->save()); - - $expected = [ - Message::__set_state([ - '_message' => 'Field email must not exceed 50 characters long', - '_field' => 'email', - '_type' => 'TooLong', - '_code' => 0, - ]), - ]; - - $I->assertEquals($expected, $model->getMessages()); - } - - protected function tooShort(UnitTester $I) - { - $model = new Subscriptores(); - $model->assign( - [ - 'email' => 'a@b.c', - 'created_at' => new RawValue('now()'), - 'status' => 'A' - ] - ); - $I->assertFalse($model->save()); - - $expected = [ - Message::__set_state([ - '_message' => 'Field email must be at least 7 characters long', - '_field' => 'email', - '_type' => 'TooShort', - '_code' => 0, - ]), - ]; - - $I->assertEquals($expected, $model->getMessages()); - } -} diff --git a/tests/unit/Mvc/Model/Manager/RelationsTest.php b/tests/unit/Mvc/Model/Manager/RelationsTest.php deleted file mode 100644 index d4d57cf3f83..00000000000 --- a/tests/unit/Mvc/Model/Manager/RelationsTest.php +++ /dev/null @@ -1,92 +0,0 @@ -specify( - 'Models manager detects belongsTo relationships wronng', - function ($connection) { - $manager = $this->setUpConnectionAwareModelsManager($connection); - - expect($manager->existsBelongsTo(RelationsRobots::class, RelationsRobotsParts::class))->false(); - expect($manager->existsBelongsTo(RelationsParts::class, RelationsRobotsParts::class))->false(); - - expect($manager->existsBelongsTo(RelationsRobotsParts::class, RelationsRobots::class))->true(); - expect($manager->existsBelongsTo(RelationsRobotsParts::class, RelationsParts::class))->true(); - }, - ['examples' => $this->connectionProvider()] - ); - } - - /** @test */ - public function shouldDetectHasManyRelations() - { - $this->specify( - 'Models manager detects hasMany relationships wronng', - function ($connection) { - $manager = $this->setUpConnectionAwareModelsManager($connection); - - expect($manager->existsHasMany(RelationsRobotsParts::class, RelationsRobots::class))->false(); - expect($manager->existsHasMany(RelationsRobotsParts::class, RelationsParts::class))->false(); - - expect($manager->existsHasMany(RelationsRobots::class, RelationsRobotsParts::class))->true(); - expect($manager->existsHasMany(RelationsParts::class, RelationsRobotsParts::class))->true(); - }, - ['examples' => $this->connectionProvider()] - ); - } - - /** @test */ - public function shouldDetectHasManyToManyRelations() - { - $this->specify( - 'Models manager detects hasManyToMany relationships wronng', - function ($connection) { - $manager = $this->setUpConnectionAwareModelsManager($connection); - - expect($manager->existsHasManyToMany(RelationsParts::class, RelationsRobots::class))->false(); - expect($manager->existsHasManyToMany(RelationsRobots::class, RelationsParts::class))->true(); - }, - ['examples' => $this->connectionProvider()] - ); - } - - /** - * @param string $connection - * @return \Phalcon\Mvc\Model\Manager - */ - protected function setUpConnectionAwareModelsManager($connection) - { - $factory = new $connection(); - $this->setUpModelsManager($factory->createConnection()); - - $di = Di::getDefault(); - - return $di->getShared('modelsManager'); - } - - protected function connectionProvider() - { - return [ - [MysqlFactory::class], - [SqliteFactory::class], - [PostgresqlFactory::class], - ]; - } -} diff --git a/tests/unit/Mvc/Model/ManagerTest.php b/tests/unit/Mvc/Model/ManagerTest.php deleted file mode 100644 index 5c8d701d6d3..00000000000 --- a/tests/unit/Mvc/Model/ManagerTest.php +++ /dev/null @@ -1,173 +0,0 @@ - - * @author Serghei Iakovlev - * @author Wojciech Ślawski - * @package Phalcon\Test\Unit\Mvc\Model - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ManagerTest extends UnitTest -{ - protected function setUpModelsManager() - { - $di = Di::getDefault(); - $db = $di->getShared('db'); - - Di::reset(); - - $di = new Di(); - $manager = new Manager(); - - $di->setShared('db', $db); - $di->setShared('modelsManager', $manager); - $di->setShared('modelsMetadata', Memory::class); - - Di::setDefault($di); - - return $manager; - } - - - /** - * Tests empty prefix for model - * - * @issue https://github.com/phalcon/cphalcon/issues/10328 - * @author Sid Roberts - * @since 2017-04-15 - */ - public function testShoudReturSourceWithoutPrefix() - { - $this->specify( - 'Models manager does not return valid mapped source for a model', - function () { - $robots = new Robots(); - - expect($robots->getModelsManager()->getModelSource($robots))->equals('robots'); - expect($robots->getSource())->equals('robots'); - } - ); - } - - /** - * Tests non-empty prefix for model - * - * @issue https://github.com/phalcon/cphalcon/issues/10328 - * @author Sid Roberts - * @since 2017-04-15 - */ - public function testShoudReturnSourceWithPrefix() - { - $this->specify( - 'Models manager does not return valid mapped source for a model', - function () { - $manager = new Manager(); - $manager->setModelPrefix('wp_'); - - $robots = new Robots(null, null, $manager); - - - expect($robots->getModelsManager()->getModelSource($robots))->equals('wp_robots'); - expect($robots->getSource())->equals('wp_robots'); - } - ); - } - - public function testAliasedNamespacesRelations() - { - $this->specify( - "Aliased namespaces should work in relations", - function () { - $modelsManager = $this->setUpModelsManager(); - $modelsManager->registerNamespaceAlias('AlbumORama', 'Phalcon\Test\Models\AlbumORama'); - - expect($modelsManager->getNamespaceAliases()) - ->equals(['AlbumORama' => 'Phalcon\Test\Models\AlbumORama']); - - foreach (Albums::find() as $album) { - expect($album->artist)->isInstanceOf('Phalcon\Test\Models\AlbumORama\Artists'); - } - } - ); - } - - /** - * Tests Model::getRelated with the desired fields - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/12972 - * @author Serghei Iakovlev - * @since 2017-10-02 - */ - public function shouldReturnDesiredFieldsFromRelatedModel() - { - $this->specify( - "The getRelated method doesn't work as expected with provided columns", - function () { - $parts = Relations\RobotsParts::findFirst(); - - $robot = $parts->getRobots(); - - expect($robot)->isInstanceOf('Phalcon\Mvc\Model\Row'); - expect($robot->toArray())->equals(['id' => 1, 'name' => 'Robotina']); - - $robot = $parts->getRobots(['columns'=>'id,type,name']); - - expect($robot)->isInstanceOf('Phalcon\Mvc\Model\Row'); - expect($robot->toArray())->equals(['id' => 1, 'type' => 'mechanical', 'name' => 'Robotina']); - } - ); - } - - /** - * Tests Manager::isVisibleModelProperty - * - * @author Serghei Iakovlev - * @since 2016-08-12 - */ - public function testModelPublicProperties() - { - $this->specify( - 'The Manager::isVisibleModelProperty does not check public property correctly', - function ($property, $expected) { - $modelsManager = $this->setUpModelsManager(); - - expect($modelsManager->isVisibleModelProperty(new Customers, $property))->equals($expected); - }, - [ - 'examples' => [ - ['id', true], - ['document_id', true], - ['customer_id', true], - ['first_name', true], - ['some_field', false], - ['', false], - ['protected_field', false], - ['private_field', false], - ] - ] - ); - } -} diff --git a/tests/unit/Mvc/Model/MetaData/ApcCest.php b/tests/unit/Mvc/Model/MetaData/ApcCest.php deleted file mode 100644 index 9b9ba40b747..00000000000 --- a/tests/unit/Mvc/Model/MetaData/ApcCest.php +++ /dev/null @@ -1,77 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Mvc\Model\Metadata - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ApcCest -{ - private $data; - - public function _before(UnitTester $I) - { - if (!function_exists('apc_fetch')) { - throw new SkippedTestError( - 'Warning: apc extension is not loaded' - ); - } - - $I->haveServiceInDi('modelsMetadata', function () { - return new Apc([ - 'prefix' => 'app\\', - 'lifetime' => 60 - ]); - }, true); - - $this->data = require PATH_FIXTURES . 'metadata/robots.php'; - apc_clear_cache('user'); - } - - public function apc(UnitTester $I) - { - $I->wantTo('fetch metadata from apc cache'); - - /** @var \Phalcon\Mvc\Model\MetaDataInterface $md */ - $md = $I->grabServiceFromDi('modelsMetadata'); - - $md->reset(); - $I->assertTrue($md->isEmpty()); - - Robots::findFirst(); - - $I->assertEquals( - $this->data['meta-robots-robots'], - apc_fetch('$PMM$app\meta-phalcon\test\models\robots-robots') - ); - - $I->assertEquals( - $this->data['map-robots'], - apc_fetch('$PMM$app\map-phalcon\test\models\robots') - ); - - $I->assertFalse($md->isEmpty()); - - $md->reset(); - $I->assertTrue($md->isEmpty()); - } -} diff --git a/tests/unit/Mvc/Model/MetaData/ApcuCest.php b/tests/unit/Mvc/Model/MetaData/ApcuCest.php deleted file mode 100644 index 43c5916e953..00000000000 --- a/tests/unit/Mvc/Model/MetaData/ApcuCest.php +++ /dev/null @@ -1,78 +0,0 @@ - - * @author Serghei Iakovlev - * @author Wojciech Ślawski - * @package Phalcon\Test\Unit\Mvc\Model\Metadata - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ApcuCest -{ - private $data; - - public function _before(UnitTester $I) - { - if (!function_exists('apc_fetch')) { - throw new SkippedTestError( - 'Warning: apc extension is not loaded' - ); - } - - $I->haveServiceInDi('modelsMetadata', function () { - return new Apcu([ - 'prefix' => 'app\\', - 'lifetime' => 60 - ]); - }, true); - - $this->data = require PATH_FIXTURES . 'metadata/robots.php'; - apcu_clear_cache(); - } - - public function apc(UnitTester $I) - { - $I->wantTo('fetch metadata from apc cache'); - - /** @var \Phalcon\Mvc\Model\MetaDataInterface $md */ - $md = $I->grabServiceFromDi('modelsMetadata'); - - $md->reset(); - $I->assertTrue($md->isEmpty()); - - Robots::findFirst(); - - $I->assertEquals( - $this->data['meta-robots-robots'], - apcu_fetch('$PMM$app\meta-phalcon\test\models\robots-robots') - ); - - $I->assertEquals( - $this->data['map-robots'], - apcu_fetch('$PMM$app\map-phalcon\test\models\robots') - ); - - $I->assertFalse($md->isEmpty()); - - $md->reset(); - $I->assertTrue($md->isEmpty()); - } -} diff --git a/tests/unit/Mvc/Model/MetaData/FilesCest.php b/tests/unit/Mvc/Model/MetaData/FilesCest.php deleted file mode 100644 index 8c1743e2564..00000000000 --- a/tests/unit/Mvc/Model/MetaData/FilesCest.php +++ /dev/null @@ -1,77 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Mvc\Model\Metadata - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FilesCest -{ - private $data; - - public function _before(UnitTester $I) - { - $I->haveServiceInDi('modelsMetadata', function () { - return new Files([ - 'metaDataDir' => PATH_CACHE, - ]); - }, true); - - $this->data = require PATH_FIXTURES . 'metadata/robots.php'; - } - - public function files(UnitTester $I) - { - $I->wantTo('fetch metadata from file cache'); - - /** @var \Phalcon\Mvc\Model\MetaDataInterface $md */ - $md = $I->grabServiceFromDi('modelsMetadata'); - - $md->reset(); - $I->assertTrue($md->isEmpty()); - - Robots::findFirst(); - - $I->amInPath(PATH_CACHE); - - $I->seeFileFound('meta-phalcon_test_models_robots-robots.php'); - - $I->assertEquals( - $this->data['meta-robots-robots'], - require PATH_CACHE . 'meta-phalcon_test_models_robots-robots.php' - ); - - $I->seeFileFound('map-phalcon_test_models_robots.php'); - - $I->assertEquals( - $this->data['map-robots'], - require PATH_CACHE . 'map-phalcon_test_models_robots.php' - ); - - $I->assertFalse($md->isEmpty()); - - $md->reset(); - $I->assertTrue($md->isEmpty()); - - $I->deleteFile('meta-phalcon_test_models_robots-robots.php'); - $I->deleteFile('map-phalcon_test_models_robots.php'); - } -} diff --git a/tests/unit/Mvc/Model/MetaData/LibmemcachedCest.php b/tests/unit/Mvc/Model/MetaData/LibmemcachedCest.php deleted file mode 100644 index 895d0c71fa0..00000000000 --- a/tests/unit/Mvc/Model/MetaData/LibmemcachedCest.php +++ /dev/null @@ -1,81 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Mvc\Model\Metadata - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class LibmemcachedCest -{ - private $data; - - public function _before(UnitTester $I) - { - if (!class_exists('Memcached')) { - throw new SkippedTestError( - 'Warning: Memcached class does not exist, test skipped' - ); - } - - $I->haveServiceInDi('modelsMetadata', function () { - return new Libmemcached([ - 'servers' => [ - [ - 'host' => TEST_MC_HOST, - 'port' => TEST_MC_PORT, - 'weight' => 1, - ] - ] - ]); - }, true); - - $this->data = require PATH_FIXTURES . 'metadata/robots.php'; - } - - public function memcached(UnitTester $I) - { - $I->wantTo('fetch metadata from memcached cache'); - - /** @var \Phalcon\Mvc\Model\MetaDataInterface $md */ - $md = $I->grabServiceFromDi('modelsMetadata'); - - $md->reset(); - $I->assertTrue($md->isEmpty()); - - Robots::findFirst(); - - $I->assertEquals( - $this->data['meta-robots-robots'], - $md->read("meta-phalcon\\test\\models\\robots-robots") - ); - - $I->assertEquals( - $this->data['map-robots'], - $md->read("map-phalcon\\test\\models\\robots") - ); - - $I->assertFalse($md->isEmpty()); - - $md->reset(); - $I->assertTrue($md->isEmpty()); - } -} diff --git a/tests/unit/Mvc/Model/MetaData/MemoryCest.php b/tests/unit/Mvc/Model/MetaData/MemoryCest.php deleted file mode 100644 index 1b48e3777b1..00000000000 --- a/tests/unit/Mvc/Model/MetaData/MemoryCest.php +++ /dev/null @@ -1,96 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Mvc\Model\Metadata - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class MemoryCest -{ - private $data; - - public function _before(UnitTester $I) - { - $I->haveServiceInDi('modelsMetadata', function () { - return new Memory; - }, true); - - $this->data = require PATH_FIXTURES . 'metadata/robots.php'; - } - - public function redis(UnitTester $I) - { - $I->wantTo('fetch metadata from memory'); - - /** @var \Phalcon\Mvc\Model\MetaDataInterface $md */ - $md = $I->grabServiceFromDi('modelsMetadata'); - - $md->reset(); - $I->assertTrue($md->isEmpty()); - - Robots::findFirst(); - - $I->assertFalse($md->isEmpty()); - - $md->reset(); - $I->assertTrue($md->isEmpty()); - } - - public function testMetadataManual(UnitTester $I) - { - /** @var \Phalcon\Mvc\Model\MetaDataInterface $metaData */ - $metaData = $I->grabServiceFromDi('modelsMetadata'); - - $di = $I->getApplication()->getDI(); - - $robotto = new Robotto(); - - //Robots - $pAttributes = array( - 0 => 'id', - 1 => 'name', - 2 => 'type', - 3 => 'year' - ); - - $attributes = $metaData->getAttributes($robotto); - $I->assertEquals($attributes, $pAttributes); - - $ppkAttributes = array( - 0 => 'id' - ); - - $pkAttributes = $metaData->getPrimaryKeyAttributes($robotto); - $I->assertEquals($ppkAttributes, $pkAttributes); - - $pnpkAttributes = array( - 0 => 'name', - 1 => 'type', - 2 => 'year' - ); - - $npkAttributes = $metaData->getNonPrimaryKeyAttributes($robotto); - $I->assertEquals($pnpkAttributes, $npkAttributes); - - $I->assertEquals($metaData->getIdentityField($robotto), 'id'); - } -} diff --git a/tests/unit/Mvc/Model/MetaData/RedisCest.php b/tests/unit/Mvc/Model/MetaData/RedisCest.php deleted file mode 100644 index 283036033db..00000000000 --- a/tests/unit/Mvc/Model/MetaData/RedisCest.php +++ /dev/null @@ -1,77 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Mvc\Model\Metadata - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class RedisCest -{ - private $data; - - public function _before(UnitTester $I) - { - if (!extension_loaded('redis')) { - throw new SkippedTestError( - 'Warning: redis extension is not loaded' - ); - } - - $I->haveServiceInDi('modelsMetadata', function () { - return new Redis([ - 'host' => env('TEST_RS_HOST', '127.0.0.1'), - 'port' => env('TEST_RS_PORT', 6379), - 'index' => env('TEST_RS_DB', 0), - ]); - }, true); - - $this->data = require PATH_FIXTURES . 'metadata/robots.php'; - } - - public function redis(UnitTester $I) - { - $I->wantTo('fetch metadata from redis database'); - - /** @var \Phalcon\Mvc\Model\MetaDataInterface $md */ - $md = $I->grabServiceFromDi('modelsMetadata'); - - $md->reset(); - $I->assertTrue($md->isEmpty()); - - Robots::findFirst(); - - $I->assertEquals( - $this->data['meta-robots-robots'], - $md->read("meta-phalcon\\test\\models\\robots-robots") - ); - - $I->assertEquals( - $this->data['map-robots'], - $md->read("map-phalcon\\test\\models\\robots") - ); - - $I->assertFalse($md->isEmpty()); - - $md->reset(); - $I->assertTrue($md->isEmpty()); - } -} diff --git a/tests/unit/Mvc/Model/MetaData/ResetCest.php b/tests/unit/Mvc/Model/MetaData/ResetCest.php deleted file mode 100644 index 1e3e7fc6a67..00000000000 --- a/tests/unit/Mvc/Model/MetaData/ResetCest.php +++ /dev/null @@ -1,52 +0,0 @@ - false]); - $I->haveServiceInDi('modelsMetadata', Model\MetaData\Memory::class); - } - - public function _after(UnitTester $I) - { - Model::setup(['columnRenaming' => true]); - } - - /** - * @issue https://github.com/phalcon/cphalcon/issues/1801 - * @param UnitTester $I - * @param Example $example - * - * @example { "factory": "\\Helper\\Db\\Connection\\MysqlFactory" } - * @example { "factory": "\\Helper\\Db\\Connection\\SqliteFactory" } - * @example { "factory": "\\Helper\\Db\\Connection\\PostgresqlFactory" } - */ - public function findAModelAfterDisablingColumnRenamingAndReset(UnitTester $I, Example $example) - { - $I->wantToTest("Find a model after disabling column renaming and reset"); - - $I->haveServiceInDi('db', function () use ($example) { - $className = $example['factory']; - $factory = new $className(); - - return $factory->createConnection(); - }); - - $robot1 = Robots::findFirst(1); - - $md = $I->grabServiceFromDi('modelsMetadata'); - $md->reset(); - - $robot2 = Robots::findFirst(1); - - $I->assertEquals($robot1, $robot2); - } -} diff --git a/tests/unit/Mvc/Model/MetaData/SessionCest.php b/tests/unit/Mvc/Model/MetaData/SessionCest.php deleted file mode 100644 index 46daedd772e..00000000000 --- a/tests/unit/Mvc/Model/MetaData/SessionCest.php +++ /dev/null @@ -1,75 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Mvc\Model\Metadata - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class SessionCest -{ - private $data; - - public function _before(UnitTester $I) - { - $I->haveServiceInDi('modelsMetadata', function () { - return new Session([ - 'prefix' => 'app', - ]); - }, true); - - $this->data = require PATH_FIXTURES . 'metadata/robots.php'; - - session_start(); - } - - public function _after(UnitTester $I) - { - session_destroy(); - } - - public function redis(UnitTester $I) - { - $I->wantTo('fetch metadata from session'); - - /** @var \Phalcon\Mvc\Model\MetaDataInterface $md */ - $md = $I->grabServiceFromDi('modelsMetadata'); - - $md->reset(); - $I->assertTrue($md->isEmpty()); - - Robots::findFirst(); - - $I->assertEquals( - $this->data['meta-robots-robots'], - $_SESSION['$PMM$app']["meta-phalcon\\test\\models\\robots-robots"] - ); - - $I->assertEquals( - $this->data['map-robots'], - $_SESSION['$PMM$app']["map-phalcon\\test\\models\\robots"] - ); - - $I->assertFalse($md->isEmpty()); - - $md->reset(); - $I->assertTrue($md->isEmpty()); - } -} diff --git a/tests/unit/Mvc/Model/MetaData/Strategy/AnnotationsTest.php b/tests/unit/Mvc/Model/MetaData/Strategy/AnnotationsTest.php deleted file mode 100644 index 9201a935bf3..00000000000 --- a/tests/unit/Mvc/Model/MetaData/Strategy/AnnotationsTest.php +++ /dev/null @@ -1,175 +0,0 @@ -setDI($di); - $metaData->setStrategy(new Annotations()); - - $di->setShared('modelsMetadata', $metaData); - - Di::setDefault($di); - - return $metaData; - } - - /** - * @author michanismus - * @since 2017-04-06 - */ - public function testModelMetaDataAnnotations() - { - $this->specify( - "Reading model metadata using annotations strategy failed", - function () { - - $model = new Robot(); - $metaData = $this->setUpModelsMetadata(); - - expect($metaData->getColumnMap($model))->equals([ - 'id' => 'id', - 'name' => 'name', - 'type' => 'type', - 'year' => 'year', - 'deleted' => 'deleted', - 'text' => 'description', - 'float' => 'float', - 'double' => 'double', - 'decimal' => 'decimal', - 'activated' => 'activated', - 'birthday' => 'birthday', - 'timestamp' => 'timestamp', - 'code' => 'code', - 'json' => 'json', - 'tinyblob' => 'tinyblob', - 'blob' => 'blob', - 'mediumblob' => 'mediumblob', - 'longblob' => 'longblob' - ]); - - expect($metaData->getReverseColumnMap($model))->equals([ - 'id' => 'id', - 'name' => 'name', - 'type' => 'type', - 'year' => 'year', - 'deleted' => 'deleted', - 'description' => 'text', - 'float' => 'float', - 'double' => 'double', - 'decimal' => 'decimal', - 'activated' => 'activated', - 'birthday' => 'birthday', - 'timestamp' => 'timestamp', - 'code' => 'code', - 'json' => 'json', - 'tinyblob' => 'tinyblob', - 'blob' => 'blob', - 'mediumblob' => 'mediumblob', - 'longblob' => 'longblob' - ]); - - expect($metaData->getIdentityField($model))->equals('id'); - expect($metaData->getPrimaryKeyAttributes($model))->equals(['id']); - - expect($metaData->getNonPrimaryKeyAttributes($model))->equals([ - 'name', 'type', 'year', 'deleted', 'text', 'float', 'double', - 'decimal', 'activated', 'birthday', 'timestamp', 'code', - 'json', 'tinyblob', 'blob', 'mediumblob', 'longblob' - ]); - - expect($metaData->getNotNullAttributes($model))->equals([ - 'id', 'name', 'type', 'year', 'text', 'float', 'double', - 'decimal', 'activated', 'birthday', 'timestamp', 'code' - ]); - - expect($metaData->getDataTypes($model))->equals([ - 'id' => Column::TYPE_BIGINTEGER, - 'name' => Column::TYPE_VARCHAR, - 'type' => Column::TYPE_VARCHAR, - 'year' => Column::TYPE_INTEGER, - 'deleted' => Column::TYPE_DATETIME, - 'text' => Column::TYPE_TEXT, - 'float' => Column::TYPE_FLOAT, - 'double' => Column::TYPE_DOUBLE, - 'decimal' => Column::TYPE_DECIMAL, - 'activated' => Column::TYPE_BOOLEAN, - 'birthday' => Column::TYPE_DATE, - 'timestamp' => Column::TYPE_TIMESTAMP, - 'code' => Column::TYPE_CHAR, - 'json' => Column::TYPE_JSON, - 'tinyblob' => Column::TYPE_TINYBLOB, - 'blob' => Column::TYPE_BLOB, - 'mediumblob' => Column::TYPE_MEDIUMBLOB, - 'longblob' => Column::TYPE_LONGBLOB - ]); - - expect($metaData->getDataTypesNumeric($model))->equals([ - 'id' => true, - 'year' => true, - 'float' => true, - 'double' => true, - 'decimal' => true - ]); - - expect($metaData->getBindTypes($model))->equals([ - 'id' => Column::BIND_PARAM_INT, - 'name' => Column::BIND_PARAM_STR, - 'type' => Column::BIND_PARAM_STR, - 'year' => Column::BIND_PARAM_INT, - 'deleted' => Column::BIND_PARAM_STR, - 'text' => Column::BIND_PARAM_STR, - 'float' => Column::BIND_PARAM_DECIMAL, - 'double' => Column::BIND_PARAM_DECIMAL, - 'decimal' => Column::BIND_PARAM_DECIMAL, - 'activated' => Column::BIND_PARAM_BOOL, - 'birthday' => Column::BIND_PARAM_STR, - 'timestamp' => Column::BIND_PARAM_STR, - 'code' => Column::BIND_PARAM_STR, - 'json' => Column::BIND_PARAM_STR, - 'tinyblob' => Column::BIND_PARAM_BLOB, - 'blob' => Column::BIND_PARAM_BLOB, - 'mediumblob' => Column::BIND_PARAM_BLOB, - 'longblob' => Column::BIND_PARAM_BLOB - ]); - - expect($metaData->getAutomaticCreateAttributes($model))->equals([ - 'deleted' - ]); - - expect($metaData->getAutomaticUpdateAttributes($model))->equals([ - 'float', 'longblob' - ]); - - expect($metaData->getEmptyStringAttributes($model))->equals([ - 'name', 'text' - ]); - - expect($metaData->getDefaultValues($model))->equals([ - 'type' => 'mechanical', - 'year' => '1900', - 'deleted' => null, - 'json' => null, - 'tinyblob' => null, - 'blob' => null, - 'mediumblob' => null, - 'longblob' => null - ]); - } - ); - } -} diff --git a/tests/unit/Mvc/Model/Query/BuilderOrderTest.php b/tests/unit/Mvc/Model/Query/BuilderOrderTest.php deleted file mode 100644 index e83a113d072..00000000000 --- a/tests/unit/Mvc/Model/Query/BuilderOrderTest.php +++ /dev/null @@ -1,114 +0,0 @@ - - * @package Phalcon\Test\Unit\Mvc\Model\Query - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -namespace Phalcon\Test\Unit\Mvc\Model\Query; - -use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Module\UnitTest; -use Phalcon\Test\Models\Robots; - -class BuilderOrderTest extends UnitTest -{ - /** - * @var \Phalcon\DiInterface - */ - private $di; - - protected function _before() - { - parent::_before(); - - /** @var \Phalcon\Mvc\Application $app */ - $app = $this->tester->getApplication(); - - $this->di = $app->getDI(); - } - - /** - * Tests Builder::orderBy to create correct PHQL query - * - * @test - * @author Sergii Svyrydenko - * @since 2017-11-03 - */ - public function shouldGenerateCorrectPhql() - { - $this->specify( - "Query Builders don't build the expected PHQL queries", - function ($orderBy, $expected) { - $di = $this->di; - $builder = new Builder(); - $query = "SELECT r.year, r.name AS robot_name FROM [" . Robots::class . "] AS [r] "; - - $phql = $builder->setDi($di) - ->from(['r' => Robots::class]) - ->columns(['r.year', 'r.name AS robot_name']) - ->orderBy($orderBy) - ->getPhql(); - expect($phql)->equals($query . $expected); - }, - [ - 'examples' => [ - ['robot_name DESC', 'ORDER BY robot_name DESC'], - ['r.name DESC', 'ORDER BY r.name DESC'], - [['r.name DESC'], 'ORDER BY r.name DESC'], - [['robot_name DESC'], 'ORDER BY [robot_name] DESC'], - [['robot_name DESC', 'r.name DESC'], 'ORDER BY [robot_name] DESC, r.name DESC'], - [[1, 'r.name DESC'], 'ORDER BY 1, r.name DESC'], - ] - ] - ); - } - - /** - * Tests Builder::orderBy to create correct SQL query - * - * @test - * @author Sergii Svyrydenko - * @since 2017-11-03 - */ - public function shouldGenerateCorrectSql() - { - $this->specify( - "Query Builders don't build the expected SQL queries", - function ($orderBy, $expected) { - $di = $this->di; - $builder = new Builder(); - $query = "SELECT `r`.`year` AS `year`, `r`.`name` AS `robot_name` FROM `robots` AS `r` "; - - $phql = $builder->setDi($di) - ->from(['r' => Robots::class]) - ->columns(['r.year', 'r.name AS robot_name']) - ->orderBy($orderBy) - ->getQuery(); - expect($phql->getSql()['sql'])->equals($query . $expected); - }, - [ - 'examples' => [ - ['robot_name DESC', 'ORDER BY `robot_name` DESC'], - ['r.name DESC', 'ORDER BY `r`.`name` DESC'], - [['r.name DESC'], 'ORDER BY `r`.`name` DESC'], - [['robot_name DESC'], 'ORDER BY `robot_name` DESC'], - [['robot_name DESC', 'r.name DESC'], 'ORDER BY `robot_name` DESC, `r`.`name` DESC'], - [[1, 'r.name DESC'], 'ORDER BY 1, `r`.`name` DESC'], - ] - ] - ); - } -} diff --git a/tests/unit/Mvc/Model/Query/BuilderTest.php b/tests/unit/Mvc/Model/Query/BuilderTest.php deleted file mode 100644 index 9f08454c04f..00000000000 --- a/tests/unit/Mvc/Model/Query/BuilderTest.php +++ /dev/null @@ -1,737 +0,0 @@ - - * @author Serghei Iakovlev - * @author Wojciech Ślawski - * @package Phalcon\Test\Unit\Mvc\Model - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class BuilderTest extends UnitTest -{ - /** - * @var \Phalcon\DiInterface - */ - private $di; - - protected function _before() - { - parent::_before(); - - /** @var \Phalcon\Mvc\Application $app */ - $app = $this->tester->getApplication(); - - $this->di = $app->getDI(); - } - - /** - * Tests merge bind types for Builder::where - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/11487 - */ - public function shouldMergeBinTypesForWhere() - { - $this->specify( - 'Query builder does not merge bind types as expected.', - function () { - $builder = new Builder(); - $builder->setDi($this->di); - - $builder - ->from(Robots::class) - ->where( - 'id = :id:', - [':id:' => 3], - [':id:' => \PDO::PARAM_INT] - ); - - $builder->where( - 'name = :name:', - [':name:' => 'Terminator'], - [':name:' => \PDO::PARAM_STR] - ); - - $actual = $builder->getQuery()->getBindTypes(); - $expected = [':id:' => 1, ':name:' => 2]; - - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests merge bind types for Builder::having - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/11487 - */ - public function shouldMergeBinTypesForHaving() - { - $this->specify( - 'Query builder does not merge bind types as expected.', - function () { - $builder = new Builder(); - $builder->setDi($this->di); - - $builder - ->from(Robots::class) - ->columns( - [ - 'COUNT(id)', - 'name' - ] - ) - ->groupBy('COUNT(id)') - ->having( - 'COUNT(id) > :cnt:', - [':cnt:' => 5], - [':cnt:' => \PDO::PARAM_INT] - ); - - $builder->having( - "CONCAT('is_', type) = :type:", - [':type:' => 'mechanical'], - [':type:' => \PDO::PARAM_STR] - ); - - $actual = $builder->getQuery()->getBindTypes(); - $expected = [':cnt:' => 1, ':type:' => 2]; - - expect($actual)->equals($expected); - } - ); - } - - public function testAction() - { - $this->specify( - "Query Builders don't build the expected queries", - function () { - $di = $this->di; - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].* FROM [" . Robots::class . "]"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from([Robots::class, RobotsParts::class]) - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].*, [" . RobotsParts::class . "].* FROM [" . Robots::class . "], [" . RobotsParts::class . "]"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->columns("*") - ->from(Robots::class) - ->getPhql(); - expect($phql)->equals("SELECT * FROM [" . Robots::class . "]"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->columns(["id", "name"]) - ->from(Robots::class) - ->getPhql(); - expect($phql)->equals("SELECT id, name FROM [" . Robots::class . "]"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->columns("id") - ->from(Robots::class) - ->getPhql(); - expect($phql)->equals("SELECT id FROM [" . Robots::class . "]"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->where("Robots.name = 'Voltron'") - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] WHERE Robots.name = 'Voltron'"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->where("Robots.name = 'Voltron'") - ->andWhere("Robots.id > 100") - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] WHERE (Robots.name = 'Voltron') AND (Robots.id > 100)"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->where("Robots.name = 'Voltron'") - ->orWhere("Robots.id > 100") - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] WHERE (Robots.name = 'Voltron') OR (Robots.id > 100)"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->where(100) - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] WHERE [" . Robots::class . "].[id] = 100"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->groupBy("Robots.name") - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] GROUP BY Robots.name"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->groupBy(["Robots.name", "Robots.id"]) - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] GROUP BY Robots.name, Robots.id"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->columns(["Robots.name", "SUM(Robots.price)"]) - ->from(Robots::class) - ->groupBy("Robots.name") - ->getPhql(); - expect($phql)->equals("SELECT Robots.name, SUM(Robots.price) FROM [" . Robots::class . "] GROUP BY Robots.name"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->columns(["Robots.name", "SUM(Robots.price)"]) - ->from(Robots::class) - ->groupBy("Robots.name") - ->having("SUM(Robots.price) > 1000") - ->getPhql(); - expect($phql)->equals("SELECT Robots.name, SUM(Robots.price) FROM [" . Robots::class . "] GROUP BY Robots.name HAVING SUM(Robots.price) > 1000"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->columns(["Robots.name", "SUM(Robots.price)"]) - ->from(Robots::class) - ->groupBy("Robots.name") - ->having("SUM(Robots.price) > 1000") - ->andHaving("SUM(Robots.price) < 2000") - ->getPhql(); - expect($phql)->equals("SELECT Robots.name, SUM(Robots.price) FROM [" . Robots::class . "] GROUP BY Robots.name HAVING (SUM(Robots.price) > 1000) AND (SUM(Robots.price) < 2000)"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->columns(["Robots.name", "SUM(Robots.price)"]) - ->from(Robots::class) - ->groupBy("Robots.name") - ->having("SUM(Robots.price) > 1000") - ->orHaving("SUM(Robots.price) < 500") - ->getPhql(); - expect($phql)->equals("SELECT Robots.name, SUM(Robots.price) FROM [" . Robots::class . "] GROUP BY Robots.name HAVING (SUM(Robots.price) > 1000) OR (SUM(Robots.price) < 500)"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->columns(["Robots.name", "SUM(Robots.price)"]) - ->from(Robots::class) - ->groupBy("Robots.name") - ->inHaving("SUM(Robots.price)", [1, 2, 3]) - ->getPhql(); - expect($phql)->equals("SELECT Robots.name, SUM(Robots.price) FROM [" . Robots::class . "] GROUP BY Robots.name HAVING SUM(Robots.price) IN (:AP0:, :AP1:, :AP2:)"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->columns(["Robots.name", "SUM(Robots.price)"]) - ->from(Robots::class) - ->groupBy("Robots.name") - ->notInHaving("SUM(Robots.price)", [1, 2, 3]) - ->getPhql(); - expect($phql)->equals("SELECT Robots.name, SUM(Robots.price) FROM [" . Robots::class . "] GROUP BY Robots.name HAVING SUM(Robots.price) NOT IN (:AP0:, :AP1:, :AP2:)"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->columns(["Robots.name", "SUM(Robots.price)"]) - ->from(Robots::class) - ->groupBy("Robots.name") - ->having("SUM(Robots.price) > 100") - ->inHaving("SUM(Robots.price)", [1, 2, 3], Builder::OPERATOR_OR) - ->getPhql(); - expect($phql)->equals("SELECT Robots.name, SUM(Robots.price) FROM [" . Robots::class . "] GROUP BY Robots.name HAVING (SUM(Robots.price) > 100) OR (SUM(Robots.price) IN (:AP0:, :AP1:, :AP2:))"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->columns(["Robots.name", "SUM(Robots.price)"]) - ->from(Robots::class) - ->groupBy("Robots.name") - ->having("SUM(Robots.price) > 100") - ->notInHaving("SUM(Robots.price)", [1, 2, 3], Builder::OPERATOR_OR) - ->getPhql(); - expect($phql)->equals("SELECT Robots.name, SUM(Robots.price) FROM [" . Robots::class . "] GROUP BY Robots.name HAVING (SUM(Robots.price) > 100) OR (SUM(Robots.price) NOT IN (:AP0:, :AP1:, :AP2:))"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->columns(["Robots.name", "SUM(Robots.price)"]) - ->from(Robots::class) - ->groupBy("Robots.name") - ->betweenHaving("SUM(Robots.price)", 100, 200) - ->getPhql(); - expect($phql)->equals("SELECT Robots.name, SUM(Robots.price) FROM [" . Robots::class . "] GROUP BY Robots.name HAVING SUM(Robots.price) BETWEEN :AP0: AND :AP1:"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->columns(["Robots.name", "SUM(Robots.price)"]) - ->from(Robots::class) - ->groupBy("Robots.name") - ->notBetweenHaving("SUM(Robots.price)", 100, 200) - ->getPhql(); - expect($phql)->equals("SELECT Robots.name, SUM(Robots.price) FROM [" . Robots::class . "] GROUP BY Robots.name HAVING SUM(Robots.price) NOT BETWEEN :AP0: AND :AP1:"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->join(RobotsParts::class) - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] JOIN [" . RobotsParts::class . "]"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->join(RobotsParts::class, null, "p") - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] JOIN [" . RobotsParts::class . "] AS [p]"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->join(RobotsParts::class, "Robots.id = RobotsParts.robots_id", "p") - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] JOIN [" . RobotsParts::class . "] AS [p] ON Robots.id = RobotsParts.robots_id"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->join(RobotsParts::class, "Robots.id = RobotsParts.robots_id", "p") - ->join(Parts::class, "Parts.id = RobotsParts.parts_id", "t") - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] JOIN [" . RobotsParts::class . "] AS [p] ON Robots.id = RobotsParts.robots_id JOIN [" . Parts::class . "] AS [t] ON Parts.id = RobotsParts.parts_id"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->leftJoin(RobotsParts::class, "Robots.id = RobotsParts.robots_id") - ->leftJoin(Parts::class, "Parts.id = RobotsParts.parts_id") - ->where("Robots.id > 0") - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] LEFT JOIN [" . RobotsParts::class . "] ON Robots.id = RobotsParts.robots_id LEFT JOIN [" . Parts::class . "] ON Parts.id = RobotsParts.parts_id WHERE Robots.id > 0"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->addFrom(Robots::class, "r") - ->getPhql(); - expect($phql)->equals("SELECT [r].* FROM [" . Robots::class . "] AS [r]"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->addFrom(Parts::class, "p") - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].*, [p].* FROM [" . Robots::class . "], [" . Parts::class . "] AS [p]"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(["r" => Robots::class]) - ->addFrom(Parts::class, "p") - ->getPhql(); - expect($phql)->equals("SELECT [r].*, [p].* FROM [" . Robots::class . "] AS [r], [" . Parts::class . "] AS [p]"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(["r" => Robots::class, "p" => Parts::class]) - ->getPhql(); - expect($phql)->equals("SELECT [r].*, [p].* FROM [" . Robots::class . "] AS [r], [" . Parts::class . "] AS [p]"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->orderBy("Robots.name") - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] ORDER BY Robots.name"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->orderBy([1, "Robots.name"]) - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] ORDER BY 1, Robots.name"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->limit(10) - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] LIMIT :APL0:"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->limit(10, 5) - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] LIMIT :APL0: OFFSET :APL1:"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->where("Robots.name = 'Voltron'") - ->betweenWhere("Robots.id", 0, 50) - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] WHERE (Robots.name = 'Voltron') AND (Robots.id BETWEEN :AP0: AND :AP1:)"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->where("Robots.name = 'Voltron'") - ->inWhere("Robots.id", [1, 2, 3]) - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] WHERE (Robots.name = 'Voltron') AND (Robots.id IN (:AP0:, :AP1:, :AP2:))"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->where("Robots.name = 'Voltron'") - ->betweenWhere("Robots.id", 0, 50, Builder::OPERATOR_OR) - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] WHERE (Robots.name = 'Voltron') OR (Robots.id BETWEEN :AP0: AND :AP1:)"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->where("Robots.name = 'Voltron'") - ->inWhere("Robots.id", [1, 2, 3], Builder::OPERATOR_OR) - ->getPhql(); - expect($phql)->equals("SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] WHERE (Robots.name = 'Voltron') OR (Robots.id IN (:AP0:, :AP1:, :AP2:))"); - } - ); - } - - public function testIssue701() - { - $this->specify( - "Query Builders don't work with mixed integer and string placeholders", - function () { - $di = $this->di; - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->from(Robots::class) - ->leftJoin(RobotsParts::class, "Robots.id = RobotsParts.robots_id") - ->leftJoin(Parts::class, "Parts.id = RobotsParts.parts_id") - ->where("Robots.id > :1: AND Robots.id < :2:", [1 => 0, 2 => 1000]); - - $params = $phql->getQuery()->getBindParams(); - expect($params[1])->equals(0); - expect($params[2])->equals(1000); - - $phql->andWhere( - "Robots.name = :name:", - [ - "name" => "Voltron", - ] - ); - - $params = $phql->getQuery()->getBindParams(); - expect($params[1])->equals(0); - expect($params[2])->equals(1000); - expect($params["name"])->equals("Voltron"); - } - ); - } - - public function testIssue1115() - { - $this->specify( - "Query Builders don't work with a HAVING statement", - function () { - $di = $this->di; - - $builder = new Builder(); - - $phql = $builder->setDi($di) - ->columns(["Robots.name"]) - ->from(Robots::class) - ->having("Robots.price > 1000") - ->getPhql(); - - expect($phql)->equals("SELECT Robots.name FROM [" . Robots::class . "] HAVING Robots.price > 1000"); - } - ); - } - - public function testSelectDistinctAll() - { - $this->specify( - "Query Builders don't work with SELECT ALL / SELECT DISTINCT statements", - function () { - $di = $this->di; - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->distinct(true) - ->columns(["Robots.name"]) - ->from(Robots::class) - ->getPhql(); - expect($phql)->equals("SELECT DISTINCT Robots.name FROM [" . Robots::class . "]"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->distinct(false) - ->columns(["Robots.name"]) - ->from(Robots::class) - ->getPhql(); - expect($phql)->equals("SELECT ALL Robots.name FROM [" . Robots::class . "]"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->distinct(true) - ->distinct(null) - ->columns(["Robots.name"]) - ->from(Robots::class) - ->getPhql(); - expect($phql)->equals("SELECT Robots.name FROM [" . Robots::class . "]"); - - $builder = new Builder(); - $phql = $builder->setDi($di) - ->distinct(true) - ->from(Robots::class) - ->getPhql(); - expect($phql)->equals("SELECT DISTINCT [" . Robots::class . "].* FROM [" . Robots::class . "]"); - } - ); - } - - /** - * Test checks passing query params and dependency injector into - * constructor - */ - public function testConstructor() - { - $this->specify( - "Query Builders don't work with params in the constructor", - function () { - $di = $this->di; - - $params = [ - "models" => Robots::class, - "columns" => ["id", "name", "status"], - "conditions" => "a > 5", - "group" => ["type", "source"], - "having" => "b < 5", - "order" => ["name", "created"], - "limit" => 10, - "offset" => 15, - ]; - - $builder = new Builder($params, $di); - - $expectedPhql = "SELECT id, name, status FROM [" . Robots::class . "] " - . "WHERE a > 5 GROUP BY [type], [source] " - . "HAVING b < 5 ORDER BY [name], [created] " - . "LIMIT :APL0: OFFSET :APL1:"; - - expect($expectedPhql)->equals($builder->getPhql()); - expect($di)->equals($builder->getDI()); - } - ); - } - - /** - * Test checks passing 'limit'/'offset' query param into constructor. - * limit key can take: - * - single numeric value - * - array of 2 values (limit, offset) - */ - public function testConstructorLimit() - { - $this->specify( - "Query Builders don't work with separate limit and offset in the constructor params", - function () { - // separate limit and offset - - $params = [ - "models" => Robots::class, - "limit" => 10, - "offset" => 15, - ]; - - $builderLimitAndOffset = new Builder($params); - - // separate limit with offset - - $params = [ - "models" => Robots::class, - "limit" => [10, 15], - ]; - - $builderLimitWithOffset = new Builder($params); - - $expectedPhql = "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] LIMIT :APL0: OFFSET :APL1:"; - - expect($builderLimitAndOffset->getPhql())->equals($expectedPhql); - expect($builderLimitWithOffset->getPhql())->equals($expectedPhql); - } - ); - } - - /** - * Test checks passing 'condition' query param into constructor. - * Conditions can now be passed as an string(as before) and - * as an array of 3 elements: - * - condition string for example "age > :age: AND created > :created:" - * - bind params for example array('age' => 18, 'created' => '2013-09-01') - * - bind types for example array('age' => PDO::PARAM_INT, 'created' => PDO::PARAM_STR) - * - * First two params are REQUIRED, bind types are optional. - */ - public function testConstructorConditions() - { - $this->specify( - "Query Builders don't work with conditions specified in the constructor params", - function () { - // ------------- test for setters(classic) way ---------------- - - $standardBuilder = new Builder(); - $standardBuilder->from(Robots::class) - ->where( - "year > :min: AND year < :max:", - ["min" => "2013-01-01", "max" => "2100-01-01"], - ["min" => \PDO::PARAM_STR, "max" => \PDO::PARAM_STR] - ); - - $standardResult = $standardBuilder->getQuery()->execute(); - - // --------------- test for single condition ------------------ - $params = [ - "models" => Robots::class, - "conditions" => [ - [ - "year > :min: AND year < :max:", - ["min" => "2013-01-01", "max" => "2100-01-01"], - ["min" => \PDO::PARAM_STR, "max" => \PDO::PARAM_STR], - ], - ], - ]; - - $builderWithSingleCondition = new Builder($params); - $singleConditionResult = $builderWithSingleCondition->getQuery()->execute(); - - // ------------- test for multiple conditions ---------------- - - $params = [ - "models" => Robots::class, - "conditions" => [ - [ - "year > :min:", - ["min" => "2000-01-01"], - ["min" => \PDO::PARAM_STR], - ], - [ - "year < :max:", - ["max" => "2100-01-01"], - ["max" => \PDO::PARAM_STR], - ], - ], - ]; - - // conditions are merged! - $builderMultipleConditions = new Builder($params); - $multipleConditionResult = $builderMultipleConditions->getQuery()->execute(); - - $expectedPhql = "SELECT [" . Robots::class . "].* FROM [" . Robots::class . "] WHERE year > :min: AND year < :max:"; - - /* ------------ ASSERTING --------- */ - - expect($standardBuilder->getPhql())->equals($expectedPhql); - expect($standardResult)->isInstanceOf("Phalcon\\Mvc\\Model\\Resultset\\Simple"); - - expect($builderWithSingleCondition->getPhql())->equals($expectedPhql); - expect($singleConditionResult)->isInstanceOf("Phalcon\\Mvc\\Model\\Resultset\\Simple"); - - expect($builderMultipleConditions->getPhql())->equals($expectedPhql); - expect($multipleConditionResult)->isInstanceOf("Phalcon\\Mvc\\Model\\Resultset\\Simple"); - } - ); - } - - public function testGroup() - { - $this->specify( - "Query Builders don't work with a GROUP BY statement", - function () { - $di = $this->di; - - $builder = new Builder(); - - $phql = $builder->setDi($di) - ->columns(["name", "SUM(price)"]) - ->from(Robots::class) - ->groupBy("id, name") - ->getPhql(); - - expect($phql)->equals("SELECT name, SUM(price) FROM [" . Robots::class . "] GROUP BY [id], [name]"); - } - ); - } - - /** - * Tests work with limit / offset - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/12419 - * @author Serghei Iakovelv - * @since 2016-12-18 - */ - public function shouldCorrectHandleLimitAndOffset() - { - $this->specify( - 'The builder object works with limit / offset incorrectly', - function ($limit, $offset, $expected) { - $builder = new Builder(null, $this->di); - $phql = $builder - ->columns(['name']) - ->from(Robots::class) - ->limit($limit, $offset) - ->getPhql(); - - /** Just prevent IDE to highlight this as not valid SQL dialect */ - expect($phql)->equals('SELECT name ' . "FROM {$expected}"); - }, - ['examples' => $this->limitOffsetProvider()] - ); - } - - protected function limitOffsetProvider() - { - return [ - [-7, null, "[" . Robots::class . "] LIMIT :APL0:" ], - ["-7234", null, "[" . Robots::class . "] LIMIT :APL0:" ], - ["18", null, "[" . Robots::class . "] LIMIT :APL0:" ], - ["18", 2, "[" . Robots::class . "] LIMIT :APL0: OFFSET :APL1:"], - ["-1000", -200, "[" . Robots::class . "] LIMIT :APL0: OFFSET :APL1:"], - ["1000", "-200", "[" . Robots::class . "] LIMIT :APL0: OFFSET :APL1:"], - ["0", "-200", "[" . Robots::class . "]" ], - ["%3CMETA%20HTTP-EQUIV%3D%22refresh%22%20CONT ENT%3D%220%3Burl%3Djavascript%3Aqss%3D7%22%3E", 50, "[" . Robots::class . "]"], - ]; - } -} diff --git a/tests/unit/Mvc/Model/QueryTest.php b/tests/unit/Mvc/Model/QueryTest.php deleted file mode 100644 index f7408995ed0..00000000000 --- a/tests/unit/Mvc/Model/QueryTest.php +++ /dev/null @@ -1,152 +0,0 @@ -tester->getApplication(); - $this->di = $app->getDI(); - } - - /** - * @test - */ - public function checkIfTransactionIsSet() - { - $this->specify( - "Check if transaction has been set", - function () { - $transaction = new Transaction($this->di); - $query = new Query(null, $this->di); - $query->setTransaction($transaction); - - expect($query->getTransaction(), $transaction); - } - ); - } - - public function testSelectParsing() - { - $this->specify( - "SELECT PHQL queries don't work as expected", - function ($phql, $expected) { - $query = new Query($phql); - $query->setDI($this->di); - - expect($query->parse())->equals($expected); - }, - [ - "examples" => require PATH_FIXTURES . 'query/select_parsing.php' - ] - ); - } - - /** - * Tests Query::parse insert - * - * @test - * @author Sergii Svyrydenko - * @since 2017-01-24 - */ - public function shouldInsertParsing() - { - $this->specify( - "INSERT PHQL queries don't execute insert query", - function ($params, $expected) { - $query = new Query($params['query']); - $query->setDI($this->di); - - expect($query->parse())->equals($expected); - }, - [ - 'examples' => include PATH_FIXTURES . 'mvc/model/query_test/data_to_insert_parsing.php' - ] - ); - } - - /** - * Tests Query::parse update - * - * @test - * @author Sergii Svyrydenko - * @since 2017-01-24 - */ - public function shouldUpdateParsing() - { - $this->specify( - "UPDATE PHQL queries don't execute update query", - function ($params, $expected) { - $query = new Query($params['query']); - $query->setDI($this->di); - - expect($query->parse())->equals($expected); - }, - [ - 'examples' => include PATH_FIXTURES . 'mvc/model/query_test/data_to_update_parsing.php' - ] - ); - } - - /** - * Tests Query::parse delete - * - * @test - * @author Sergii Svyrydenko - * @since 2017-01-24 - */ - public function shouldDeleteParsing() - { - $this->specify( - "DELETE PHQL queries don't work as expected", - function ($params, $expected) { - $query = new Query($params['query']); - $query->setDI($this->di); - - expect($query->parse())->equals($expected); - }, - [ - 'examples' => include PATH_FIXTURES . 'mvc/model/query_test/data_to_delete_parsing.php' - ] - ); - } -} diff --git a/tests/unit/Mvc/Model/RelationsTest.php b/tests/unit/Mvc/Model/RelationsTest.php deleted file mode 100644 index fd043c70c17..00000000000 --- a/tests/unit/Mvc/Model/RelationsTest.php +++ /dev/null @@ -1,88 +0,0 @@ -specify( - 'Unable to get related record properly using composite key', - function () { - $this->setUpConnectionAwareModelsManager( - SqlitetranslationsFactory::class - ); - - /** @var Language $entity */ - $entity = Language::findFirst(); - - expect($entity->lang)->equals('Dutch'); - expect($entity->locale)->equals('nl-be'); - - expect($entity->translations)->isInstanceOf(Simple::class); - expect($entity->getTranslations())->isInstanceOf(Simple::class); - - expect($entity->translations)->count(2); - - expect($entity->translations->getFirst())->isInstanceOf(LanguageI18n::class); - expect($entity->translations->getFirst()->locale)->equals('Belgium-1'); - } - ); - } - - /** - * @param string $connection - * @return \Phalcon\Mvc\Model\Manager - */ - protected function setUpConnectionAwareModelsManager($connection) - { - /** @var \Helper\Db\Connection\AbstractFactory $factory */ - $factory = new $connection(); - $this->setUpModelsManager($factory->createConnection()); - - $di = Di::getDefault(); - - return $di->getShared('modelsManager'); - } - - public function testRelationshipLoaded() - { - $this->specify( - 'Unable to test if "hasMany" relationship exist', - function () { - $hasManyModel = AlbumORama\Artists::findFirst(); - expect($hasManyModel->isRelationshipLoaded('albums'))->equals(false); - $hasManyModel->albums; - expect($hasManyModel->isRelationshipLoaded('albums'))->equals(true); - } - ); - - $this->specify( - 'Unable to test if "belongsTo" relationship exist', - function () { - - $belongsToModel = AlbumORama\Albums::findFirst(); - expect($belongsToModel->isRelationshipLoaded('artist'))->equals(false); - $belongsToModel->artist; - expect($belongsToModel->isRelationshipLoaded('artist'))->equals(true); - } - ); - } -} diff --git a/tests/unit/Mvc/Model/Resultset/ComplexTest.php b/tests/unit/Mvc/Model/Resultset/ComplexTest.php deleted file mode 100644 index 811f6524071..00000000000 --- a/tests/unit/Mvc/Model/Resultset/ComplexTest.php +++ /dev/null @@ -1,83 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Mvc\Model\Resultset - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ComplexTest extends UnitTest -{ - use ResultsetHelperTrait; - - /** - * executed before each test - */ - protected function _before() - { - parent::_before(); - - $this->setUpEnvironment(); - } - - /** - * Work with Complex Resultset by load data from the file cache (PHQL option). - * - * @test - * @author Andres Gutierrez - * @since 2012-12-28 - */ - public function shouldLoadResultsetFromCacheByUsingPhql() - { - $this->specify( - 'Complex Resultset does not work as expected (PHQL option)', - function () { - $cache = $this->getFileCache(); - $this->setUpModelsCache($cache); - - $modelsManager = Di::getDefault()->get('modelsManager'); - - $robots = $modelsManager->executeQuery( - 'SELECT r.*, p.* FROM ' . Robots::class . ' r JOIN ' . RobotsParts::class . ' p ' - ); - - expect($robots)->isInstanceOf(Complex::class); - expect($robots)->count(3); - expect($robots->count())->equals(3); - - $cache->save('test-resultset', $robots); - - $this->tester->amInPath(PATH_CACHE); - $this->tester->seeFileFound('test-resultset'); - - $robots = $cache->get('test-resultset'); - - expect($robots)->isInstanceOf(Complex::class); - expect($robots)->count(3); - expect($robots->count())->equals(3); - - $this->tester->deleteFile('test-resultset'); - } - ); - } -} diff --git a/tests/unit/Mvc/Model/Resultset/SimpleTest.php b/tests/unit/Mvc/Model/Resultset/SimpleTest.php deleted file mode 100644 index 6478f6f9060..00000000000 --- a/tests/unit/Mvc/Model/Resultset/SimpleTest.php +++ /dev/null @@ -1,293 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Mvc\Model\Resultset - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class SimpleTest extends UnitTest -{ - use ResultsetHelperTrait; - - /** - * executed before each test - */ - protected function _before() - { - parent::_before(); - - $this->setUpEnvironment(); - } - - /** - * Work with Simple Resultset by load data from the file cache (complete PHQL option). - * - * @test - * @author Andres Gutierrez - * @since 2012-11-20 - */ - public function shouldLoadResultsetFromCacheByUsingCompletePhql() - { - $this->specify( - 'Simple Resultset does not work as expected (complete PHQL option)', - function () { - $cache = $this->getFileCache(); - $this->setUpModelsCache($cache); - - $modelsManager = Di::getDefault()->get('modelsManager'); - - $robots = $modelsManager->executeQuery('SELECT * FROM ' . Robots::class); - - expect($robots)->isInstanceOf(Simple::class); - expect($robots)->count(3); - expect($robots->count())->equals(3); - - $cache->save('test-resultset', $robots); - - $this->tester->amInPath(PATH_CACHE); - $this->tester->seeFileFound('test-resultset'); - - $robots = $cache->get('test-resultset'); - - expect($robots)->isInstanceOf(Simple::class); - expect($robots)->count(3); - expect($robots->count())->equals(3); - - $this->tester->deleteFile('test-resultset'); - } - ); - } - - /** - * Work with Simple Resultset by load data from the file cache (incomplete PHQL option). - * - * @test - * @author Andres Gutierrez - * @since 2012-12-28 - */ - public function shouldLoadResultsetFromCacheByUsingIncompletePhql() - { - $this->specify( - 'Simple Resultset does not work as expected (incomplete PHQL option)', - function () { - $cache = $this->getFileCache(); - $this->setUpModelsCache($cache); - - $modelsManager = Di::getDefault()->get('modelsManager'); - - $robots = $modelsManager->executeQuery('SELECT id FROM ' . Robots::class); - - expect($robots)->isInstanceOf(Simple::class); - expect($robots)->count(3); - expect($robots->count())->equals(3); - - $cache->save('test-resultset', $robots); - - $this->tester->amInPath(PATH_CACHE); - $this->tester->seeFileFound('test-resultset'); - - $robots = $cache->get('test-resultset'); - - expect($robots)->isInstanceOf(Simple::class); - expect($robots)->count(3); - expect($robots->count())->equals(3); - - $this->tester->deleteFile('test-resultset'); - } - ); - } - - /** - * Work with Simple Resultset by load data from the file cache. - * - * @test - * @author Andres Gutierrez - * @since 2012-11-20 - */ - public function shouldLoadResultsetFromCache() - { - $this->specify( - 'Simple Resultset does not work as expected', - function () { - $cache = $this->getFileCache(); - $this->setUpModelsCache($cache); - - $robots = Robots::find(['order' => 'id']); - - expect($robots)->isInstanceOf(Simple::class); - expect($robots)->count(3); - expect($robots->count())->equals(3); - - $cache->save('test-resultset', $robots); - - $this->tester->amInPath(PATH_CACHE); - $this->tester->seeFileFound('test-resultset'); - - $robots = $cache->get('test-resultset'); - - expect($robots)->isInstanceOf(Simple::class); - expect($robots)->count(3); - expect($robots->count())->equals(3); - - $this->tester->deleteFile('test-resultset'); - } - ); - } - - /** - * Work with Simple Resultset with binding by load data from the file cache. - * - * @test - * @author Andres Gutierrez - * @since 2012-11-20 - */ - public function shouldLoadResultsetWithBindingFromCache() - { - $this->specify( - 'Simple Resultset with binding does not work as expected', - function () { - $cache = $this->getFileCache(); - $this->setUpModelsCache($cache); - - $initialId = 0; - $finalId = 4; - - $robots = Robots::find([ - 'conditions' => 'id > :id1: and id < :id2:', - 'bind' => ['id1' => $initialId, 'id2' => $finalId], - 'order' => 'id' - ]); - - expect($robots)->isInstanceOf(Simple::class); - expect($robots)->count(3); - expect($robots->count())->equals(3); - - $cache->save('test-resultset', $robots); - - $this->tester->amInPath(PATH_CACHE); - $this->tester->seeFileFound('test-resultset'); - - $robots = $cache->get('test-resultset'); - - expect($robots)->isInstanceOf(Simple::class); - expect($robots)->count(3); - expect($robots->count())->equals(3); - - $this->tester->deleteFile('test-resultset'); - } - ); - } - - /** - * Work with Simple Resultset by load data from cache (Libmemcached adapter). - * - * @test - * @author kjdev - * @since 2013-07-25 - */ - public function shouldLoadResultsetFromLibmemcached() - { - $this->specify( - 'Unable to test Simple Resultset by using Libmemcached adapter', - function () { - $cache = $this->getLibmemcachedCache(); - $this->setUpModelsCache($cache); - - $key = 'test-resultset-'.mt_rand(0, 9999); - - // Single - $people = People::findFirst([ - 'cache' => [ - 'key' => $key - ] - ]); - - expect($people)->isInstanceOf(People::class); - - $people = $cache->get($key); - expect($people->getFirst())->isInstanceOf(People::class); - - $people = $cache->get($key); - expect($people->getFirst())->isInstanceOf(People::class); - - // Re-get from the cache - $people = People::findFirst([ - 'cache' => [ - 'key' => $key - ] - ]); - - expect($people)->isInstanceOf(People::class); - - $key = 'test-resultset-'.mt_rand(0, 9999); - - // Multiple - $people = People::find([ - 'limit' => 35, - 'cache' => [ - 'key' => $key - ] - ]); - - $number = 0; - foreach ($people as $individual) { - expect($individual)->isInstanceOf(People::class); - $number++; - } - - expect($number)->equals(35); - - $people = $cache->get($key); - expect($people)->isInstanceOf(Simple::class); - - $number = 0; - foreach ($people as $individual) { - expect($individual)->isInstanceOf(People::class); - $number++; - } - - expect($number)->equals(35); - - $people = $cache->get($key); - expect($people)->isInstanceOf(Simple::class); - - // Re-get the data from the cache - $people = People::find([ - 'limit' => 35, - 'cache' => [ - 'key' => $key - ] - ]); - - $number = 0; - foreach ($people as $individual) { - expect($individual)->isInstanceOf(People::class); - $number++; - } - - expect($number)->equals(35); - } - ); - } -} diff --git a/tests/unit/Mvc/Model/ResultsetClassTest.php b/tests/unit/Mvc/Model/ResultsetClassTest.php deleted file mode 100644 index a3b5f9aaac2..00000000000 --- a/tests/unit/Mvc/Model/ResultsetClassTest.php +++ /dev/null @@ -1,95 +0,0 @@ - - * @package Phalcon\Test\Unit\Mvc\Model - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ResultsetClassTest extends UnitTest -{ - /** - * Checks if resultset class Simple is returned when getResultsetClass() method is not defined - * - * @author Eugene Smirnov - */ - public function testDefaultResultsetClass() - { - $this->specify( - 'Find() method should return the default resultset simple class if getResultsetClass() ' . - 'method is not presented in the model', - function () { - expect(Statistics\CityStats::find())->isInstanceOf(Simple::class); - } - ); - } - - /** - * Checks if custom resultset object is returned when getResultsetClass() method is presented in model - * - * @author Eugene Smirnov - */ - public function testCustomClassForResultset() - { - $this->specify( - 'Find() method should return custom resultset if getResultsetClass() method is presented in model', - function () { - expect(AgeStats::find())->isInstanceOf(Stats::class); - } - ); - } - - /** - * Checks if exception is thrown when custom resultset doesn't implement ResultsetInterface - * - * @author Eugene Smirnov - * - * @expectedException \Phalcon\Mvc\Model\Exception - * @expectedExceptionMessage Resultset class "Phalcon\Test\Models\Statistics\AgeStats" must be an implementation of Phalcon\Mvc\Model\ResultsetInterface - */ - public function testExceptionOnBadInterface() - { - $this->specify( - "Find() method should throw an exception if resultset doesn't implement interface", - function () { - Statistics\CountryStats::find(); - } - ); - } - - /** - * Checks if exception is thrown when resultset class doesn\'t exist - * - * @author Eugene Smirnov - * - * @expectedException \Phalcon\Mvc\Model\Exception - * @expectedExceptionMessage Resultset class "Not\Existing\Resultset\Class" not found - */ - public function testExceptionOnUnknownClass() - { - $this->specify( - "Find() method should throw an exception if resultset class doesn't exist", - function () { - Statistics\GenderStats::find(); - } - ); - } -} diff --git a/tests/unit/Mvc/Model/SnapshotTest.php b/tests/unit/Mvc/Model/SnapshotTest.php deleted file mode 100644 index 24f3b179ff9..00000000000 --- a/tests/unit/Mvc/Model/SnapshotTest.php +++ /dev/null @@ -1,556 +0,0 @@ - - * @author Serghei Iakovlev - * @author Wojciech Ślawski - * @package Phalcon\Test\Unit\Mvc\Model - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class SnapshotTest extends UnitTest -{ - use ModelTrait; - - /** - * Tests dynamic update for identityless models - * - * @test - * @author Serghei Iakovlev - * @issue https://github.com/phalcon/cphalcon/issues/13166 - * @since 2017-11-20 - */ - public function shouldSaveSnapshotForIdentitylessModel() - { - $this->specify( - "Snapshot does not work with identityless models on Creation/Save", - function () { - $requests = new Requests(); - - $requests->method = 'GET'; - $requests->uri = '/api/status'; - $requests->count = 1; - - expect($requests->save())->true(); - expect($requests->getChangedFields())->equals([]); - expect($requests->getSnapshotData())->notEmpty(); - expect($requests->getSnapshotData())->equals($requests->toArray()); - - expect($requests->method)->equals('GET'); - expect($requests->uri)->equals('/api/status'); - expect($requests->count)->equals(1); - } - ); - } - - /** @test */ - public function shouldWorkWithSimpleResultset() - { - $this->specify( - "Snapshot does not work with Simple Resultset as expected", - function () { - $modelsManager = $this->setUpModelsManager(); - $robots = $modelsManager->executeQuery('SELECT * FROM ' . Robots::class); - - /** @var Robots $robot */ - foreach ($robots as $robot) { - $robot->name = 'Some'; - $robot->year = 1999; - expect($robot->hasChanged('name'))->true(); - expect($robot->hasChanged('year'))->true(); - expect($robot->hasChanged('type'))->false(); - expect($robot->hasChanged())->true(); - expect($robot->getChangedFields())->equals(['name', 'year']); - } - - $robots = $modelsManager->executeQuery( - 'SELECT robot.*, parts.* FROM ' . Robots::class . ' robot JOIN ' . Robots::class . ' parts' - ); - - foreach ($robots as $row) { - $row->robot->name = 'Some'; - $row->robot->year = 1999; - - expect($row->robot->hasChanged('name'))->true(); - expect($row->robot->hasChanged('year'))->true(); - expect($row->robot->hasChanged('type'))->false(); - expect($row->robot->hasChanged())->true(); - expect($row->robot->getChangedFields())->equals(['name', 'year']); - - $this->assertTrue($row->parts->hasSnapshotData()); - } - } - ); - } - - /** @test */ - public function shouldWorkWithArrayOfModels() - { - $this->specify( - "Normal snapshots don't work", - function () { - $snapshots = [ - 1 => [ - 'id' => '1', - 'name' => 'Robotina', - 'type' => 'mechanical', - 'year' => '1972', - 'datetime' => '1972-01-01 00:00:00', - 'deleted' => null, - 'text' => 'text' - ], - 2 => [ - 'id' => '2', - 'name' => 'Astro Boy', - 'type' => 'mechanical', - 'year' => '1952', - 'datetime' => '1952-01-01 00:00:00', - 'deleted' => null, - 'text' => 'text' - ], - 3 => [ - 'id' => '3', - 'name' => 'Terminator', - 'type' => 'cyborg', - 'year' => '2029', - 'datetime' => '2029-01-01 00:00:00', - 'deleted' => null, - 'text' => 'text' - ] - ]; - - foreach (Robots::find(['order' => 'id']) as $robot) { - expect($robot->hasSnapshotData())->true(); - expect($snapshots[$robot->id])->equals($robot->getSnapshotData()); - } - - foreach (Robots::find(['order' => 'id']) as $robot) { - $robot->name = 'Some'; - $robot->year = 1999; - expect($robot->hasChanged('name'))->true(); - expect($robot->hasChanged('year'))->true(); - expect($robot->hasChanged('type'))->false(); - expect($robot->hasChanged())->true(); - } - - foreach (Robots::find(['order' => 'id']) as $robot) { - $robot->year = $robot->year; - expect($robot->hasChanged('year'))->false(); - expect($robot->hasChanged())->false(); - } - - foreach (Robots::find(['order' => 'id']) as $robot) { - $robot->name = 'Little'; - $robot->year = 2005; - expect($robot->getChangedFields())->equals(['name', 'year']); - } - } - ); - } - - /** @test */ - public function shouldWorkWithRenamedFileds() - { - $this->specify( - "Renamed snapshots don't work", - function () { - $snapshots = [ - 1 => [ - 'code' => '1', - 'theName' => 'Robotina', - 'theType' => 'mechanical', - 'theYear' => '1972', - 'theDatetime' => '1972-01-01 00:00:00', - 'theDeleted' => null, - 'theText' => 'text', - ], - 2 => [ - 'code' => '2', - 'theName' => 'Astro Boy', - 'theType' => 'mechanical', - 'theYear' => '1952', - 'theDatetime' => '1952-01-01 00:00:00', - 'theDeleted' => null, - 'theText' => 'text', - ], - 3 => [ - 'code' => '3', - 'theName' => 'Terminator', - 'theType' => 'cyborg', - 'theYear' => '2029', - 'theDatetime' => '2029-01-01 00:00:00', - 'theDeleted' => null, - 'theText' => 'text', - ] - ]; - - foreach (Robotters::find(['order' => 'code']) as $robot) { - expect($robot->hasSnapshotData())->true(); - expect($snapshots[$robot->code])->equals($robot->getSnapshotData()); - } - - foreach (Robotters::find(['order' => 'code']) as $robot) { - $robot->theName = 'Some'; - $robot->theYear = 1999; - expect($robot->hasChanged('theName'))->true(); - expect($robot->hasChanged('theYear'))->true(); - expect($robot->hasChanged('theType'))->false(); - expect($robot->hasChanged())->true(); - } - - foreach (Robotters::find(['order' => 'code']) as $robot) { - $robot->theYear = $robot->theYear; - expect($robot->hasChanged('theYear'))->false(); - expect($robot->hasChanged())->false(); - } - - foreach (Robotters::find(['order' => 'code']) as $robot) { - $robot->theName = 'Little'; - $robot->theYear = 2005; - expect($robot->getChangedFields())->equals(['theName', 'theYear']); - } - } - ); - } - - /** - * Test snapshots for changes from NULL to Zero - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/12628 - * @author Serghei Iakovlev - * @since 2017-02-26 - */ - public function shouldCorrectDetectChanges() - { - $this->specify( - "Snapshot does not work correctly with changed fields", - function () { - $this->setUpModelsManager(); - $robots = Robots::findFirst(); - - expect($robots->getChangedFields())->isEmpty(); - expect($robots->deleted)->null(); - expect($robots->hasChanged('deleted'))->false(); - - $robots->deleted = 0; - - expect($robots->getChangedFields())->notEmpty(); - expect($robots->deleted)->notNull(); - expect($robots->hasChanged('deleted'))->true(); - } - ); - } - - /** - * When model is created/updated snapshot should be set/updated - * - * @issue https://github.com/phalcon/cphalcon/issues/11007 - * @issue https://github.com/phalcon/cphalcon/issues/11818 - * @issue https://github.com/phalcon/cphalcon/issues/11424 - * @author Wojciech Ślawski - * @since 2017-03-03 - */ - public function testIssue11007() - { - $this->specify( - 'Snapshot is not created/updated when create/update operation was made', - function () { - $this->setUpModelsManager(); - $robots = new Robots( - [ - 'name' => 'test', - 'type' => 'mechanical', - 'year' => 2017, - 'datetime' => (new \DateTime())->format('Y-m-d'), - 'text' => 'asd', - ] - ); - - expect($robots->create())->true(); - expect($robots->getSnapshotData())->notEmpty(); - expect($robots->getSnapshotData())->equals($robots->toArray()); - - $robots->name = "testabc"; - expect($robots->hasChanged('name'))->true(); - expect($robots->update())->true(); - expect($robots->name)->equals("testabc"); - expect($robots->getSnapshotData())->notEmpty(); - expect($robots->getSnapshotData())->equals($robots->toArray()); - expect($robots->hasChanged('name'))->false(); - } - ); - } - - /** - * When model is refreshed snapshot should be updated - * - * @issue https://github.com/phalcon/cphalcon/issues/11007 - * @issue https://github.com/phalcon/cphalcon/issues/11818 - * @issue https://github.com/phalcon/cphalcon/issues/11424 - * @author Wojciech Ślawski - * @since 2017-03-03 - */ - public function testIssue11007Refresh() - { - $this->specify( - 'Snapshot is not updated when refresh operation was made', - function () { - $this->setUpModelsManager(); - $robots = new Robots( - [ - 'name' => 'test', - 'year' => 2017, - 'datetime' => (new \DateTime())->format('Y-m-d'), - 'text' => 'asd', - ] - ); - - expect($robots->create())->true(); - expect($robots->getSnapshotData())->notEmpty(); - expect($robots->getSnapshotData())->equals($robots->toArray()); - - expect($robots->refresh())->isInstanceOf(Robots::class); - expect($robots->type)->equals('mechanical'); - expect($robots->getSnapshotData())->notEmpty(); - expect($robots->getSnapshotData())->equals($robots->toArray()); - } - ); - } - - /** - * @author Wojciech Ślawski - * @since 2017-03-23 - */ - public function testNewInstanceUpdate() - { - $this->specify( - 'When updating model from new instance there is some problem', - function () { - $this->setUpModelsManager(); - $robots = Robots::findFirst(); - $robots = new Robots($robots->toArray()); - expect($robots->save())->true(); - } - ); - } - - /** - * Tests get updated fields new instance exception - * - * @author Wojciech Ślawski - * @since 2017-03-28 - * - * @expectedException \Phalcon\Mvc\Model\Exception - * @expectedExceptionMessage The record doesn't have a valid data snapshot - */ - public function testUpdatedFieldsNewException() - { - $this->specify( - 'When getting updated fields from not persistent instance there should be exception', - function () { - $robots = new Robots( - [ - 'name' => 'test', - 'year' => 2017, - 'datetime' => (new \DateTime())->format('Y-m-d'), - 'text' => 'asd', - ] - ); - - $robots->getUpdatedFields(); - } - ); - } - - /** - * Tests get updated fields deleted instance exception - * - * @author Wojciech Ślawski - * @since 2017-03-28 - * - * @expectedException \Phalcon\Mvc\Model\Exception - * @expectedExceptionMessage Change checking cannot be performed because the object has not been persisted or is deleted - */ - public function testUpdatedFieldsDeleteException() - { - $this->specify( - 'When getting updated fields from deleted instance there should be exception', - function () { - $robots = new Robots( - [ - 'name' => 'test', - 'year' => 2017, - 'datetime' => (new \DateTime())->format('Y-m-d'), - 'text' => 'asd', - ] - ); - - $robots->create(); - $robots->delete(); - - $robots->getUpdatedFields(); - } - ); - } - - /** - * Tests get updated fields - * - * @author Wojciech Ślawski - * @since 2017-03-28 - */ - public function testUpdatedFields() - { - $this->specify( - 'Getting updated fields is not working correctly', - function () { - $robots = Robots::findFirst(); - $robots->name = 'changedName'; - expect($robots->getSnapshotData())->notEmpty(); - expect($robots->hasChanged('name'))->true(); - expect($robots->hasUpdated('name'))->false(); - $robots->save(); - expect($robots->getSnapshotData())->notEmpty(); - expect($robots->hasChanged('name'))->false(); - expect($robots->hasUpdated('name'))->true(); - } - ); - } - - /** - * Tests get updated fields - * - * @author Wojciech Ślawski - * @since 2017-03-28 - */ - public function testDisabledSnapshotUpdate() - { - $this->specify( - 'Disabling snapshot update is not working', - function () { - $robots = Robots::findFirst(); - Model::setup( - [ - 'updateSnapshotOnSave' => false, - ] - ); - $robots->name = 'changedName'; - expect($robots->getSnapshotData())->notEmpty(); - expect($robots->hasChanged('name'))->true(); - $robots->save(); - expect($robots->getSnapshotData())->notEmpty(); - expect($robots->hasChanged('name'))->true(); - Model::setup( - [ - 'updateSnapshotOnSave' => true, - ] - ); - $robots->name = 'otherName'; - $robots->save(); - expect($robots->getSnapshotData())->notEmpty(); - expect($robots->hasChanged('name'))->false(); - } - ); - } - - /** - * When model is refreshed snapshot should be updated - * - * @issue https://github.com/phalcon/cphalcon/issues/12669 - * @author Wojciech Ślawski - * @since 2017-03-15 - */ - public function testIssue12669() - { - $this->specify( - 'hasChanged method for array argument is not working correctly', - function () { - $this->setUpModelsManager(); - $robots = new Robots( - [ - 'name' => 'test', - 'year' => 2017, - 'datetime' => (new \DateTime())->format('Y-m-d'), - 'text' => 'asd', - ] - ); - - expect($robots->create())->true(); - $robots->name = 'test2'; - expect($robots->hasChanged(['name', 'year']))->equals(true); - expect($robots->hasChanged(['text', 'year']))->equals(false); - expect($robots->hasChanged(['name', 'year'], true))->equals(false); - $robots->year = 2018; - expect($robots->hasChanged(['name', 'year'], true))->equals(true); - } - ); - } - - /** - * When model is refreshed snapshot should be updated - * - * @issue https://github.com/phalcon/cphalcon/issues/13173 - * @author Wojciech Ślawski - * @since 2017-12-05 - */ - public function testIssue13173() - { - $this->specify( - 'getUpdatesFields method is not working correctly with SoftDelete behavior', - function () { - $this->setUpModelsManager(); - $subscriber = new Subscribers(); - $subscriber->email = 'some@some.com'; - $subscriber->status = 'I'; - - expect($subscriber->save())->true(); - expect($subscriber->getUpdatedFields())->equals(['email', 'created_at', 'status', 'id']); - expect($subscriber->delete())->true(); - expect($subscriber->getUpdatedFields())->equals(['status']); - } - ); - } - - public function testIssue13202() - { - $this->specify( - "When using dynamic update saving model without changes getUpdatedFields shouldn't return full array", - function () { - $this->setUpModelsManager(); - $personas = Personas::findFirst(); - expect($personas->getChangedFields())->equals([]); - try { - $personas->getUpdatedFields(); - } catch (\Exception $e) { - expect($e->getMessage())->equals( - "Change checking cannot be performed because the object has not been persisted or is deleted" - ); - } - expect($personas->save())->true(); - expect($personas->getUpdatedFields())->equals([]); - } - ); - } -} diff --git a/tests/unit/Mvc/Model/Transaction/ManagerTest.php b/tests/unit/Mvc/Model/Transaction/ManagerTest.php deleted file mode 100644 index 745bd95e5b7..00000000000 --- a/tests/unit/Mvc/Model/Transaction/ManagerTest.php +++ /dev/null @@ -1,266 +0,0 @@ - - * @package Phalcon\Test\Unit\Mvc\Model\Transaction - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ManagerTest extends UnitTest -{ - use ModelTrait; - - /** - * Tests Manager::get - * - * @author Andres Gutierrez - * @since 2012-08-07 - * @test - */ - public function shouldGetANewTransactionOrAnAlreadyCreatedOnce() - { - $this->specify( - 'Unable to create a new transaction', - function ($connection) { - $manager = $this->setUpConnectionAwareModelsManager($connection); - - /** - * @var Manager $tm - * @var \Phalcon\Db\AdapterInterface $db - */ - $tm = $manager->getDI()->getShared('transactionManager'); - $db = $manager->getDI()->getShared('db'); - - $transaction = $tm->get(); - - expect($transaction)->isInstanceOf('Phalcon\Mvc\Model\Transaction'); - expect($tm->get(true))->same($transaction); - expect($tm->get(false))->same($transaction); - - expect($transaction->getConnection())->isInstanceOf('Phalcon\Db\AdapterInterface'); - expect($transaction->getConnection()->getConnectionId())->equals($db->getConnectionId()); - }, - ['examples' => $this->connectionProvider()] - ); - } - - /** - * Tests the transaction's rollback. - * - * @author Andres Gutierrez - * @since 2012-03-04 - * @test - */ - public function shouldRollbackNewInserts() - { - $this->specify( - "The transaction's rollback doesn't works as expected", - function ($connection) { - $manager = $this->setUpConnectionAwareModelsManager($connection); - - /** @var Manager $tm */ - $tm = $manager->getDI()->getShared('transactionManager'); - - $numPersonas = Personas::count(); - - $transaction = $tm->get(); - - for ($i = 0; $i < 10; $i++) { - $persona = new Personas(); - $persona->setTransaction($transaction); - $persona->cedula = 'T-Cx' . $i; - $persona->tipo_documento_id = 1; - $persona->nombres = 'LOST LOST'; - $persona->telefono = '2'; - $persona->cupo = 0; - $persona->estado = 'A'; - - expect($persona->save())->true(); - } - - try { - $transaction->rollback(); - $this->assertTrue( - false, - "The transaction's rollback didn't throw an expected exception. Emergency stop" - ); - } catch (Failed $e) { - expect($e->getMessage())->equals("Transaction aborted"); - } - - expect(Personas::count())->equals($numPersonas); - }, - ['examples' => $this->connectionProvider()] - ); - } - - /** - * Tests the transaction's commit. - * - * @author Andres Gutierrez - * @since 2012-03-04 - * @test - */ - public function shouldCommitNewInserts() - { - $this->specify( - "The transaction's commit doesn't works as expected", - function ($connection) { - $manager = $this->setUpConnectionAwareModelsManager($connection); - - /** - * @var Manager $tm - * @var \Phalcon\Db\AdapterInterface $db - */ - $tm = $manager->getDI()->getShared('transactionManager'); - $db = $manager->getDI()->getShared('db'); - - $db->delete("personas", "cedula LIKE 'T-Cx%'"); - - $numPersonas = Personas::count(); - $transaction = $tm->get(); - - for ($i = 0; $i < 10; $i++) { - $persona = new Personas(); - $persona->setDI($manager->getDI()); - $persona->setTransaction($transaction); - $persona->cedula = 'T-Cx' . $i; - $persona->tipo_documento_id = 1; - $persona->nombres = 'LOST LOST'; - $persona->telefono = '2'; - $persona->cupo = 0; - $persona->estado = 'A'; - - expect($persona->save() === true)->true(); - } - - expect($transaction->commit())->true(); - expect(Personas::count())->equals($numPersonas + 10); - }, - ['examples' => $this->connectionProvider()] - ); - } - - /** - * Tests transaction is removed when rolled back. - * - * @author Nochum Sossonko - * @since 2016-04-09 - */ - public function testTransactionRemovedOnRollback() - { - $this->specify( - "Test does not remove transaction when rolled back", - function ($connection) { - $this->setUpConnectionAwareModelsManager($connection); - - /** @var Manager $tm */ - $tm = Di::getDefault()->getShared('transactionManager'); - - $transaction = $tm->get(true); - - $select = new Select(); - $select->setTransaction($transaction); - $select->assign(['name' => 'Crack of Dawn']); - $select->create(); - - - expect($this->tester->getProtectedProperty($tm, '_number'))->equals(1); - expect($this->tester->getProtectedProperty($tm, '_transactions'))->count(1); - - try { - $transaction->rollback(); - } catch (Failed $e) { - // do nothing - } - - expect($this->tester->getProtectedProperty($tm, '_number'))->equals(0); - expect($this->tester->getProtectedProperty($tm, '_transactions'))->count(0); - }, - ['examples' => $this->connectionProvider()] - ); - } - - /** - * Tests transaction is removed when committed. - * - * @author Nochum Sossonko - * @since 2016-04-09 - */ - public function testTransactionRemovedOnCommit() - { - $this->specify( - "Test does not remove transaction when committed", - function ($connection) { - $this->setUpConnectionAwareModelsManager($connection); - - /** @var Manager $tm */ - $tm = Di::getDefault()->getShared('transactionManager'); - $transaction = $tm->get(true); - - $select = new Select(); - $select->setTransaction($transaction); - $select->assign(['name' => 'Crack of Dawn']); - $select->create(); - - expect($this->tester->getProtectedProperty($tm, '_number'))->equals(1); - expect($this->tester->getProtectedProperty($tm, '_transactions'))->count(1); - - $transaction->commit(); - - expect($this->tester->getProtectedProperty($tm, '_number'))->equals(0); - expect($this->tester->getProtectedProperty($tm, '_transactions'))->count(0); - }, - ['examples' => $this->connectionProvider()] - ); - } - - /** - * @param string $connection - * @return \Phalcon\Mvc\Model\Manager - */ - protected function setUpConnectionAwareModelsManager($connection) - { - $factory = new $connection(); - $manager = $this->setUpModelsManager($factory->createConnection()); - - $tm = new Manager(); - $tm->setDI($manager->getDI()); - - $manager->getDI()->set('transactionManager', $tm); - - return $manager; - } - - protected function connectionProvider() - { - return [ - [MysqlFactory::class], - [SqliteFactory::class], - [PostgresqlFactory::class], - ]; - } -} diff --git a/tests/unit/Mvc/Model/ValidationCest.php b/tests/unit/Mvc/Model/ValidationCest.php deleted file mode 100644 index 3a7f5813cf7..00000000000 --- a/tests/unit/Mvc/Model/ValidationCest.php +++ /dev/null @@ -1,100 +0,0 @@ -getShared('db'); - $di->remove('db'); - - $di->setShared('db', $db); - - Di::setDefault($di); - $this->checkConnection($connection); - - $this->success($I); - $this->presenceOf($I); - $this->email($I); - $this->emailWithDot($I); - $this->exclusionIn($I); - $this->inclusionIn($I); - $this->uniqueness1($I); - $this->uniqueness2($I); - $this->regex($I); - $this->tooLong($I); - $this->tooShort($I); - - $di->remove('db'); - $di->setShared('db', $connection); - } - - public function mysql(UnitTester $I) - { - $I->wantToTest("Model validation by using MySQL as RDBMS"); - - $db = function () { - return new Mysql([ - 'host' => env('TEST_DB_MYSQL_HOST', '127.0.0.1'), - 'username' => env('TEST_DB_MYSQL_USER', 'root'), - 'password' => env('TEST_DB_MYSQL_PASSWD', ''), - 'dbname' => env('TEST_DB_MYSQL_NAME', 'phalcon_test'), - 'port' => env('TEST_DB_MYSQL_PORT', 3306), - 'charset' => env('TEST_DB_MYSQL_CHARSET', 'utf8'), - ]); - }; - - $this->runTest($I, $db); - } - - public function postgresql(UnitTester $I) - { - $I->wantToTest("Model validation by using PostgreSQL as RDBMS"); - - $db = function () { - return new Postgresql([ - 'host' => env('TEST_DB_POSTGRESQL_HOST', '127.0.0.1'), - 'username' => env('TEST_DB_POSTGRESQL_USER', 'postgres'), - 'password' => env('TEST_DB_POSTGRESQL_PASSWD', ''), - 'dbname' => env('TEST_DB_POSTGRESQL_NAME', 'phalcon_test'), - 'port' => env('TEST_DB_POSTGRESQL_PORT', 5432), - 'schema' => env('TEST_DB_POSTGRESQL_SCHEMA', 'public'), - ]); - }; - - $this->runTest($I, $db); - } - - public function sqlite(UnitTester $I) - { - $I->wantToTest("Model validation by using SQLite as RDBMS"); - - $db = function () { - $connection = new Sqlite(['dbname' => env('TEST_DB_SQLITE_NAME', PATH_OUTPUT . 'phalcon_test.sqlite')]); - - /** @var \PDO $pdo */ - $pdo = $connection->getInternalHandler(); - $pdo->sqliteCreateFunction('now', function () { - return date('Y-m-d H:i:s'); - }); - - return $connection; - }; - - $this->runTest($I, $db); - } -} diff --git a/tests/unit/Mvc/ModelCest.php b/tests/unit/Mvc/ModelCest.php deleted file mode 100644 index b5599007d17..00000000000 --- a/tests/unit/Mvc/ModelCest.php +++ /dev/null @@ -1,65 +0,0 @@ - - * @author Serghei Iakovlev - * @author Wojciech Ślawski - * @package Phalcon\Test\Unit\Mvc - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ModelCest -{ - public function testModelsCacheSnapshot(UnitTester $I) - { - $I->wantToTest("Saving snapshot using simple resultset while using modelsCache"); - - $I->addServiceToContainer( - 'modelsCache', - function () { - return new File( - new Data( - [ - 'lifetime' => 20, - ] - ), - [ - 'cacheDir' => PATH_OUTPUT."tests/cache/", - ] - ); - }, - true - ); - - for ($i = 0; $i <= 1; $i++) { - $robot = Robots::findFirst( - [ - 'cache' => [ - 'key' => 'robots-cache', - ], - ] - ); - $I->assertInstanceOf(Robots::class, $robot); - $I->assertNotEmpty($robot->getSnapshotData()); - $I->assertEquals($robot->getSnapshotData(), $robot->toArray()); - $I->seeFileFound(PATH_OUTPUT."tests/cache/robots-cache"); - } - } -} diff --git a/tests/unit/Mvc/ModelCest.php_check b/tests/unit/Mvc/ModelCest.php_check new file mode 100644 index 00000000000..e308eb663b5 --- /dev/null +++ b/tests/unit/Mvc/ModelCest.php_check @@ -0,0 +1,65 @@ + + * @author Phalcon Team + * @author Wojciech Ślawski + * @package Phalcon\Test\Unit\Mvc + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class ModelCest +{ + public function testModelsCacheSnapshot(UnitTester $I) + { + $I->wantToTest("Saving snapshot using simple resultset while using modelsCache"); + + $I->addServiceToContainer( + 'modelsCache', + function () { + return new File( + new Data( + [ + 'lifetime' => 20, + ] + ), + [ + 'cacheDir' => cacheFolder(), + ] + ); + }, + true + ); + + for ($i = 0; $i <= 1; $i++) { + $robot = Robots::findFirst( + [ + 'cache' => [ + 'key' => 'robots-cache', + ], + ] + ); + $I->assertInstanceOf(Robots::class, $robot); + $I->assertNotEmpty($robot->getSnapshotData()); + $I->assertEquals($robot->getSnapshotData(), $robot->toArray()); + $I->seeFileFound(outputFolder('tests/cache/robots-cache')); + } + } +} diff --git a/tests/unit/Mvc/ModelTest.php b/tests/unit/Mvc/ModelTest.php deleted file mode 100644 index 5fd1016afb5..00000000000 --- a/tests/unit/Mvc/ModelTest.php +++ /dev/null @@ -1,922 +0,0 @@ - - * @author Serghei Iakovlev - * @author Wojciech Ślawski - * @package Phalcon\Test\Unit\Mvc - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ModelTest extends UnitTest -{ - use ModelTrait; - - public function testCamelCaseRelation() - { - $this->specify( - "CamelCase relation calls should be the same cache", - function () { - $modelsManager = $this->setUpModelsManager(); - - $modelsManager->registerNamespaceAlias('AlbumORama', 'Phalcon\Test\Models\AlbumORama'); - $album = Albums::findFirst(); - - $album->artist->name = 'NotArtist'; - expect($album->artist->name)->equals($album->Artist->name); - } - ); - } - - /** - * Tests find with empty conditions + bind and limit. - * - * @issue https://github.com/phalcon/cphalcon/issues/11919 - * @author Serghei Iakovlev - * @since 2016-07-29 - */ - public function testEmptyConditions() - { - if (!ini_get('opcache.enable_cli')) { - $this->markTestSkipped( - 'Warning: opcache.enable_cli must be set to "On"' - ); - } - - $this->specify( - 'The Model::find with empty conditions + bind and limit return wrong result', - function () { - $album = Albums::find([ - 'conditions' => '', - 'bind' => [], - 'limit' => 10 - ]); - - expect($album)->isInstanceOf(Simple::class); - expect($album->getFirst())->isInstanceOf(Albums::class); - expect($album->getFirst()->toArray())->equals([ - 'id' => 1, - 'artists_id' => 1, - 'name' => 'Born to Die', - ]); - } - ); - } - - /** - * Tests Model::hasMany by using multi relation column - * - * @issue https://github.com/phalcon/cphalcon/issues/12035 - * @author Serghei Iakovlev - * @since 2016-08-02 - */ - public function testMultiRelationColumn() - { - $this->specify( - 'The Model::hasMany by using multi relation column does not work as expected', - function () { - $list = Packages::find(); - foreach ($list as $item) { - expect($item)->isInstanceOf(Packages::class); - expect($item->details)->isInstanceOf(Simple::class); - expect($item->details->valid())->true(); - expect($item->details->count())->greaterOrEquals(2); - expect($item->details->getFirst())->isInstanceOf(PackageDetails::class); - } - } - ); - } - - /** - * Tests reusing Model relation - * - * @issue https://github.com/phalcon/cphalcon/issues/11991 - * @author Serghei Iakovlev - * @since 2016-08-03 - */ - public function testReusableRelation() - { - $this->specify( - 'Reusing relations does not work correctly', - function () { - $customers = Customers::find([ - 'document_id = :did: AND status = :status: AND customer_id <> :did:', - 'bind' => ['did' => 1, 'status' => 'A'] - ]); - - expect($customers)->isInstanceOf(Simple::class); - expect(count($customers))->equals(2); - - expect($customers[0]->user)->isInstanceOf(Users::class); - expect($customers[0]->user)->isInstanceOf(Users::class); - expect($customers[0]->user)->isInstanceOf(Users::class); - - expect($customers[1]->user)->isInstanceOf(Users::class); - expect($customers[1]->user)->isInstanceOf(Users::class); - expect($customers[1]->user)->isInstanceOf(Users::class); - - expect($customers->getFirst())->isInstanceOf(Customers::class); - - expect($customers[1]->user->name)->equals('Nikolaos Dimopoulos'); - expect($customers[1]->user->name)->equals('Nikolaos Dimopoulos'); - expect($customers[1]->user->name)->equals('Nikolaos Dimopoulos'); - - expect($customers->getFirst()->user->name)->equals('Nikolaos Dimopoulos'); - expect($customers->getFirst()->user->name)->equals('Nikolaos Dimopoulos'); - expect($customers->getFirst()->user->name)->equals('Nikolaos Dimopoulos'); - - expect($customers[0]->user->name)->equals('Nikolaos Dimopoulos'); - expect($customers[0]->user->name)->equals('Nikolaos Dimopoulos'); - expect($customers[0]->user->name)->equals('Nikolaos Dimopoulos'); - } - ); - } - - /** - * Tests virtual foreign keys. - * - * When having multiple virtual foreign keys, check of the first one should - * affect the check of the next one. - * - * @issue https://github.com/phalcon/cphalcon/issues/12071 - * @author Radek Crlik - * @since 2016-08-03 - */ - public function testInvalidVirtualForeignKeys() - { - $this->specify( - 'The Model::save with multiple virtual foreign keys and invalid entity', - function () { - $body = new Body(); - - $body->head_1_id = null; - $body->head_2_id = 999; - - // PDOException should'n be thrown - expect($body->save())->equals(false); - - expect($body->getMessages())->count(1); - expect($body->getMessages()[0]->getMessage())->equals('Second head does not exists'); - } - ); - } - - /** - * Tests serializing model while using cache and keeping snapshots - * - * The snapshot should be saved while using cache - * - * @issue https://github.com/phalcon/cphalcon/issues/12170 - * @issue https://github.com/phalcon/cphalcon/issues/12000 - * @author Wojciech Ślawski - * @since 2016-08-26 - */ - public function testSerializeSnapshotCache() - { - if (!extension_loaded('apc')) { - $this->markTestSkipped( - 'Warning: apc extension is not loaded' - ); - } - - if (!ini_get('apc.enabled') || (PHP_SAPI === 'cli' && !ini_get('apc.enable_cli'))) { - $this->markTestSkipped( - 'Warning: apc.enable_cli must be set to "On"' - ); - } - - if (extension_loaded('apcu') && version_compare(phpversion('apcu'), '5.1.6', '=')) { - throw new SkippedTestError( - 'Warning: APCu v5.1.6 was broken. See: https://github.com/krakjoe/apcu/issues/203' - ); - } - - $this->specify( - 'Snapshot data should be saved while saving model to cache', - function () { - $cache = new Apc(new Data(['lifetime' => 20])); - $robot = Robots::findFirst(); - expect($robot)->isInstanceOf(Robots::class); - expect($robot->getSnapshotData())->notEmpty(); - $cache->save('robot', $robot); - /** @var Robots $robot */ - $robot = $cache->get('robot'); - expect($robot)->isInstanceOf(Robots::class); - expect($robot->getSnapshotData())->notEmpty(); - expect($robot->getSnapshotData())->equals($robot->toArray()); - $robot->text = 'abc'; - $cache->save('robot', $robot); - /** @var Robots $robot */ - $robot = $cache->get('robot'); - expect($robot)->isInstanceOf(Robots::class); - expect($robot->getSnapshotData())->notEmpty(); - expect($robot->getSnapshotData())->notEquals($robot->toArray()); - } - ); - } - - /** - * @expectedException \Phalcon\Mvc\Model\Exception - * @expectedExceptionMessage Property 'serial' does not have a setter. - */ - public function testGettersAndSetters() - { - $this->specify( - "Model getters and setters don't work", - function () { - $robot = Boutique\Robots::findFirst(); - - $testText = "executeSetGet Test"; - $robot->assign(["text" => $testText]); - - expect($robot->text)->equals($testText . $robot::SETTER_EPILOGUE); - expect($robot->text)->equals($robot->getText()); - - $testText = "executeSetGet Test 2"; - $robot->text = $testText; - - expect($robot->text)->equals($testText . $robot::SETTER_EPILOGUE); - expect($robot->text)->equals($robot->getText()); - - $robot = new Boutique\Robots(); - $robot->serial = '1234'; - } - ); - } - - public function testSerialize() - { - $this->specify( - "Models aren't serialized or unserialized properly", - function () { - $robot = Robots::findFirst(); - - $serialized = serialize($robot); - $robot = unserialize($serialized); - - expect($robot->save())->true(); - } - ); - } - - public function testJsonSerialize() - { - $this->specify( - "Single models aren't JSON serialized or JSON unserialized properly", - function () { - // Single model object json serialization - $robot = Robots::findFirst(); - $json = json_encode($robot); - - expect(is_string($json))->true(); - expect(strlen($json) > 10)->true(); // make sure result is not "{ }" - expect($robot->toArray())->equals(json_decode($json, true)); - } - ); - - $this->specify( - "Model resultsets aren't JSON serialized or JSON unserialized properly", - function () { - // Result-set serialization - $robots = Robots::find(); - - $json = json_encode($robots); - - expect(is_string($json))->true(); - expect(strlen($json) > 50)->true(); // make sure result is not "{ }" - expect($robots->toArray())->equals(json_decode($json, true)); - } - ); - - $this->specify( - "Single row resultsets aren't JSON serialized or JSON unserialized properly", - function () { - $modelsManager = $this->setUpModelsManager(); - $robot = Robots::findFirst(); - - // Single row serialization - $result = $modelsManager->executeQuery("SELECT id FROM " . Robots::class . " LIMIT 1"); - - expect($result)->isInstanceOf('Phalcon\Mvc\Model\Resultset\Simple'); - - foreach ($result as $row) { - expect($row)->isInstanceOf('Phalcon\Mvc\Model\Row'); - expect($row->id)->equals($robot->id); - - $json = json_encode($row); - - expect(is_string($json))->true(); - expect(strlen($json) > 5)->true(); // make sure result is not "{ }" - expect($row->toArray())->equals(json_decode($json, true)); - } - } - ); - } - - public function testMassAssignmentNormal() - { - $this->specify( - "Models can't properly assign properties", - function () { - $robot = new Robots(); - - $robot->assign( - [ - "type" => "mechanical", - "year" => 2018, - ] - ); - - $success = $robot->save(); - - expect($success)->false(); - expect($robot->type)->equals("mechanical"); - expect($robot->year)->equals(2018); - - $robot = new Robots(); - - $robot->assign( - [ - "type" => "mechanical", - "year" => 2018, - ] - ); - - expect($robot->type)->equals("mechanical"); - expect($robot->year)->equals(2018); - - // not assigns nonexistent fields - $robot = new Robots(); - - $robot->assign( - [ - "field1" => "mechanical", - "field2" => 2018, - ] - ); - - expect(empty($robot->field1))->true(); - expect(empty($robot->field2))->true(); - - // white list - $robot = new Robots(); - - $robot->assign( - [ - "type" => "mechanical", - "year" => 2018, - ], - null, - ["type"] - ); - - expect($robot->type)->equals("mechanical"); - expect(empty($robot->year))->true(); - - // white list - $robot = new Robots(); - - $robot->assign( - [ - "typeFromClient" => "mechanical", - "yearFromClient" => 2018, - ], - [ - "typeFromClient" => "type", - "yearFromClient" => "year", - ], - ["type"] - ); - - expect($robot->type)->equals("mechanical"); - expect(empty($robot->year))->true(); - } - ); - } - - public function testMassAssignmentRenamed() - { - $this->specify( - "Models can't properly assign properties using a column map", - function () { - $robot = new Robotters(); - - $robot->assign( - [ - "theType" => "mechanical", - "theYear" => 2018, - ] - ); - - $success = $robot->save(); - - expect($success)->false(); - expect($robot->theType)->equals("mechanical"); - expect($robot->theYear)->equals(2018); - - // assign uses column renaming - $robot = new Robotters(); - - $robot->assign( - [ - "theType" => "mechanical", - "theYear" => 2018, - ] - ); - - expect($robot->theType)->equals("mechanical"); - expect($robot->theYear)->equals(2018); - - // not assigns nonexistent fields - $robot = new Robotters(); - - $robot->assign( - [ - "field1" => "mechanical", - "field2" => 2018, - ] - ); - - expect(empty($robot->field1))->true(); - expect(empty($robot->field2))->true(); - - // white list - $robot = new Robotters(); - $robot->assign( - [ - "theType" => "mechanical", - "theYear" => 2018 - ], - null, - ["theType"] - ); - - expect($robot->theType)->equals("mechanical"); - expect(empty($robot->theYear))->true(); - - // white list & custom mapping - $robot = new Robotters(); - - $robot->assign( - [ - "theTypeFromClient" => "mechanical", - "theYearFromClient" => 2018 - ], - [ - "theTypeFromClient" => "theType", - "theYearFromClient" => "theYear", - ], - ["theType"] - ); - - expect($robot->theType)->equals("mechanical"); - expect(empty($robot->theYear))->true(); - } - ); - } - - public function testFindersNormal() - { - $this->specify( - "Models can't be found properly", - function () { - $robot = Robots::findFirstById(1); - expect($robot)->isInstanceOf(Robots::class); - expect($robot->id)->equals(1); - - $robot = Robots::findFirstById(2); - expect($robot)->isInstanceOf(Robots::class); - expect($robot->id)->equals(2); - - $robots = Robots::findByType('mechanical'); - expect($robots)->count(2); - expect($robots[0]->id)->equals(1); - expect(Robots::countByType('mechanical'))->equals(2); - } - ); - } - - public function testFindersRenamed() - { - $this->specify( - "Models can't be found properly when using a column map", - function () { - $robot = Robotters::findFirstByCode(1); - expect($robot)->isInstanceOf(Robotters::class); - expect($robot->code)->equals(1); - - $robot = Robotters::findFirstByCode(2); - expect($robot)->isInstanceOf(Robotters::class); - expect($robot->code)->equals(2); - - $robots = Robotters::findByTheType('mechanical'); - expect($robots)->count(2); - expect($robots[0]->code)->equals(1); - expect(Robotters::countByTheType('mechanical'))->equals(2); - } - ); - } - - public function testBehaviorsTimestampable() - { - $this->specify( - "Timestampable model behavior doesn't work", - function () { - $subscriber = new Subscribers(); - - $subscriber->email = 'some@some.com'; - $subscriber->status = 'I'; - - expect($subscriber->save())->true(); - expect(preg_match('/[0-9]{4}-[0-9]{2}-[0-9]{2}/', $subscriber->created_at))->equals(1); - } - ); - } - - public function testBehaviorsSoftDelete() - { - $this->specify( - "Soft Delete model behavior doesn't work", - function () { - $number = Subscribers::count(); - - $subscriber = Subscribers::findFirst(); - - expect($subscriber->delete())->true(); - expect($subscriber->status)->equals('D'); - expect(Subscribers::count())->equals($number); - } - ); - } - - /** - * @issue https://github.com/phalcon/cphalcon/issues/12507 - */ - public function testFieldDefaultEmptyStringIsNull() - { - $this->specify( - 'The field default value is empty string and is determined to be null', - function () { - $personers = new Personers([ - 'borgerId' => 'id-' . time() . rand(1, 99), - 'slagBorgerId' => 1, - 'kredit' => 2.3, - 'status' => 'A', - ]); - - // test field for create - $personers->navnes = ''; - $created = $personers->create(); - - expect($created)->true(); - - // write something to not null default '' field - $personers->navnes = 'save something!'; - - $saved = $personers->save(); - expect($saved)->true(); - - // test field for update - $personers->navnes = ''; - $saved = $personers->save(); - - expect($saved)->true(); - - $personers->delete(); - } - ); - } - - - /** - * Tests setting code in message from validation messages - * - * @issue https://github.com/phalcon/cphalcon/issues/12645 - * @author Wojciech Ślawski - * @since 2017-03-03 - */ - public function testIssue12645() - { - $this->specify( - "Issue #12645 is not fixed", - function () { - $robots = new Validation\Robots( - [ - 'name' => 'asd', - 'type' => 'mechanical', - 'year' => 2017, - 'datetime' => (new \DateTime())->format('Y-m-d'), - 'text' => 'asd', - ] - ); - expect($robots->create())->false(); - /** @var Message $message */ - $message = $robots->getMessages()[0]; - expect($message)->isInstanceOf(Message::class); - expect($message->getCode())->equals(20); - } - ); - } - - /** - * Tests empty string value on not null - * - * @issue https://github.com/phalcon/cphalcon/issues/12688 - * @author Wojciech Ślawski - * @since 2017-03-09 - */ - public function testIssue12688() - { - $this->specify( - 'Issue 12688 is happening', - function () { - $robots = new Robots(); - $robots->name = ''; - $robots->assign( - [ - 'datetime' => (new DateTime())->format('Y-m-d'), - 'text' => 'text', - ] - ); - $robots->save(); - } - ); - } - - /** - * Tests disabling assign setters - * - * @issue https://github.com/phalcon/cphalcon/issues/12645 - * @author Wojciech Ślawski - * @since 2017-03-23 - */ - public function testAssignSettersDisabled() - { - $this->specify( - 'Disabling setters in assign is not working', - function () { - $robots = new Robots( - [ - 'name' => 'test', - ] - ); - expect($robots->wasSetterUsed)->true(); - Model::setup( - [ - 'disableAssignSetters' => true, - ] - ); - $robots = new Robots( - [ - 'name' => 'test', - ] - ); - expect($robots->wasSetterUsed)->false(); - Model::setup( - [ - 'disableAssignSetters' => false, - ] - ); - } - ); - } - - /** - * Test check allowEmptyStringValues - * - * @author Nikolay Sumrak - * @since 2017-11-16 - */ - public function testAllowEmptyStringFields() - { - $this->specify( - 'Allow empty string value', - function () { - Model::setup( - [ - 'notNullValidations' => true, - 'exceptionOnFailedSave' => false, - ] - ); - - $model = new ModelWithStringField(); - $model->field = ''; - $model->disallowEmptyStringValue(); - $status = $model->save(); - expect($status)->false(); - - $model->allowEmptyStringValue(); - $status = $model->save(); - expect($status)->true(); - - Model::setup( - [ - 'notNullValidations' => false, - 'exceptionOnFailedSave' => true, - ] - ); - } - ); - } - - /** - * @author Jakob Oberhummer - * @since 2017-12-18 - */ - public function testUseTransactionWithinFind() - { - $this->specify( - 'Transaction is passed as option parameter', - function () { - /** - * @var $transactionManager \Phalcon\Mvc\Model\Transaction\Manager - */ - $transactionManager = $this->setUpTransactionManager(); - $transaction = $transactionManager->getOrCreateTransaction(); - - $newSubscriber = new Subscribers(); - $newSubscriber->setTransaction($transaction); - $newSubscriber->email = 'transaction@example.com'; - $newSubscriber->status = 'I'; - $newSubscriber->save(); - - $subscriber = Subscribers::find( - [ - 'email = "transaction@example.com"', - 'transaction' => $transaction - ] - ); - - expect(\count($subscriber), 1); - } - ); - } - - /** - * @author Jakob Oberhummer - * @since 2017-12-18 - */ - public function testUseTransactionWithinFindFirst() - { - $this->specify( - 'Transaction is passed as option parameter', - function () { - /** - * @var $transactionManager \Phalcon\Mvc\Model\Transaction\Manager - */ - $transactionManager = $this->setUpTransactionManager(); - $transaction = $transactionManager->getOrCreateTransaction(); - - $newSubscriber = new Subscribers(); - $newSubscriber->setTransaction($transaction); - $newSubscriber->email = 'transaction@example.com'; - $newSubscriber->status = 'I'; - $newSubscriber->save(); - - $subscriber = Subscribers::findFirst( - [ - 'email = "transaction@example.com"', - 'transaction' => $transaction - ] - ); - - expect(\get_class($subscriber), 'Subscriber'); - } - ); - } - - /** - * @author Jakob Oberhummer - * @since 2017-12-18 - */ - public function testUseTransactionOutsideFind() - { - $this->specify( - 'Query outside of the creation transaction', - function () { - /** - * @var $transactionManager \Phalcon\Mvc\Model\Transaction\Manager - */ - $transactionManager = $this->setUpTransactionManager(); - $transaction = $transactionManager->getOrCreateTransaction(); - - $newSubscriber = new Subscribers(); - $newSubscriber->setTransaction($transaction); - $newSubscriber->email = 'transaction@example.com'; - $newSubscriber->status = 'I'; - $newSubscriber->save(); - - /** - * @var $transactionManager \Phalcon\Mvc\Model\Transaction\Manager - */ - $transactionManager = $this->setUpTransactionManager(); - $secondTransaction = $transactionManager->getOrCreateTransaction(); - - $subscriber = Subscribers::find( - [ - 'email = "transaction@example.com"', - 'transaction' => $secondTransaction - ] - ); - - expect(\count($subscriber), 0); - } - ); - } - - /** - * @author Jakob Oberhummer - * @since 2017-12-18 - */ - public function testUseTransactionOutsideFindFirst() - { - $this->specify( - 'Query outside of the creation transaction', - function () { - /** - * @var $transactionManager \Phalcon\Mvc\Model\Transaction\Manager - */ - $transactionManager = $this->setUpTransactionManager(); - $transaction = $transactionManager->getOrCreateTransaction(); - - $newSubscriber = new Subscribers(); - $newSubscriber->setTransaction($transaction); - $newSubscriber->email = 'transaction@example.com'; - $newSubscriber->status = 'I'; - $newSubscriber->save(); - - /** - * @var $transactionManager \Phalcon\Mvc\Model\Transaction\Manager - */ - $transactionManager = $this->setUpTransactionManager(); - $secondTransaction = $transactionManager->getOrCreateTransaction(); - - $subscriber = Subscribers::findFirst( - [ - 'email = "transaction@example.com"', - 'transaction' => $secondTransaction - ] - ); - - expect(false, $subscriber); - } - ); - } - - /** - * Tests binding of non-scalar values by casting to string and binding them. - * - * @issue https://github.com/phalcon/cphalcon/issues/13058 - * @author Cameron Hall - * @since 2018-11-06 - */ - public function testIssue13058() - { - $this->specify( - 'Issue 13058 is happening, non-scalar values are not being casted and bound.', - function () { - $robots = new Robots(); - $robots->name = ''; - $robots->datetime = new \Phalcon\Test\Db\DateTime(); - $robots->text = 'text'; - $result = $robots->save(); - expect($result)->true(); - } - ); - } -} diff --git a/tests/unit/Mvc/Router/AddCest.php b/tests/unit/Mvc/Router/AddCest.php new file mode 100644 index 00000000000..42f9b11b2ca --- /dev/null +++ b/tests/unit/Mvc/Router/AddCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class AddCest +{ + /** + * Tests Phalcon\Mvc\Router :: add() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAdd(UnitTester $I) + { + $I->wantToTest("Mvc\Router - add()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/AddConnectCest.php b/tests/unit/Mvc/Router/AddConnectCest.php new file mode 100644 index 00000000000..549bfa4450c --- /dev/null +++ b/tests/unit/Mvc/Router/AddConnectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class AddConnectCest +{ + /** + * Tests Phalcon\Mvc\Router :: addConnect() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAddConnect(UnitTester $I) + { + $I->wantToTest("Mvc\Router - addConnect()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/AddDeleteCest.php b/tests/unit/Mvc/Router/AddDeleteCest.php new file mode 100644 index 00000000000..e6e1e47300f --- /dev/null +++ b/tests/unit/Mvc/Router/AddDeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class AddDeleteCest +{ + /** + * Tests Phalcon\Mvc\Router :: addDelete() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAddDelete(UnitTester $I) + { + $I->wantToTest("Mvc\Router - addDelete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/AddGetCest.php b/tests/unit/Mvc/Router/AddGetCest.php new file mode 100644 index 00000000000..47115961067 --- /dev/null +++ b/tests/unit/Mvc/Router/AddGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class AddGetCest +{ + /** + * Tests Phalcon\Mvc\Router :: addGet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAddGet(UnitTester $I) + { + $I->wantToTest("Mvc\Router - addGet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/AddHeadCest.php b/tests/unit/Mvc/Router/AddHeadCest.php new file mode 100644 index 00000000000..0ca738d202d --- /dev/null +++ b/tests/unit/Mvc/Router/AddHeadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class AddHeadCest +{ + /** + * Tests Phalcon\Mvc\Router :: addHead() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAddHead(UnitTester $I) + { + $I->wantToTest("Mvc\Router - addHead()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/AddOptionsCest.php b/tests/unit/Mvc/Router/AddOptionsCest.php new file mode 100644 index 00000000000..f67db041a88 --- /dev/null +++ b/tests/unit/Mvc/Router/AddOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class AddOptionsCest +{ + /** + * Tests Phalcon\Mvc\Router :: addOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAddOptions(UnitTester $I) + { + $I->wantToTest("Mvc\Router - addOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/AddPatchCest.php b/tests/unit/Mvc/Router/AddPatchCest.php new file mode 100644 index 00000000000..12ac60991b8 --- /dev/null +++ b/tests/unit/Mvc/Router/AddPatchCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class AddPatchCest +{ + /** + * Tests Phalcon\Mvc\Router :: addPatch() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAddPatch(UnitTester $I) + { + $I->wantToTest("Mvc\Router - addPatch()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/AddPostCest.php b/tests/unit/Mvc/Router/AddPostCest.php new file mode 100644 index 00000000000..2954e5fb7af --- /dev/null +++ b/tests/unit/Mvc/Router/AddPostCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class AddPostCest +{ + /** + * Tests Phalcon\Mvc\Router :: addPost() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAddPost(UnitTester $I) + { + $I->wantToTest("Mvc\Router - addPost()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/AddPurgeCest.php b/tests/unit/Mvc/Router/AddPurgeCest.php new file mode 100644 index 00000000000..678342fd80f --- /dev/null +++ b/tests/unit/Mvc/Router/AddPurgeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class AddPurgeCest +{ + /** + * Tests Phalcon\Mvc\Router :: addPurge() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAddPurge(UnitTester $I) + { + $I->wantToTest("Mvc\Router - addPurge()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/AddPutCest.php b/tests/unit/Mvc/Router/AddPutCest.php new file mode 100644 index 00000000000..28f56f49f6b --- /dev/null +++ b/tests/unit/Mvc/Router/AddPutCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class AddPutCest +{ + /** + * Tests Phalcon\Mvc\Router :: addPut() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAddPut(UnitTester $I) + { + $I->wantToTest("Mvc\Router - addPut()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/AddTraceCest.php b/tests/unit/Mvc/Router/AddTraceCest.php new file mode 100644 index 00000000000..9f90de98f52 --- /dev/null +++ b/tests/unit/Mvc/Router/AddTraceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class AddTraceCest +{ + /** + * Tests Phalcon\Mvc\Router :: addTrace() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAddTrace(UnitTester $I) + { + $I->wantToTest("Mvc\Router - addTrace()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/AddCest.php b/tests/unit/Mvc/Router/Annotations/AddCest.php new file mode 100644 index 00000000000..b5b72a45725 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/AddCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class AddCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: add() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsAdd(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - add()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/AddConnectCest.php b/tests/unit/Mvc/Router/Annotations/AddConnectCest.php new file mode 100644 index 00000000000..b541e2039ec --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/AddConnectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class AddConnectCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: addConnect() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsAddConnect(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - addConnect()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/AddDeleteCest.php b/tests/unit/Mvc/Router/Annotations/AddDeleteCest.php new file mode 100644 index 00000000000..d311af0f754 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/AddDeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class AddDeleteCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: addDelete() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsAddDelete(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - addDelete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/AddGetCest.php b/tests/unit/Mvc/Router/Annotations/AddGetCest.php new file mode 100644 index 00000000000..839e22309ca --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/AddGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class AddGetCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: addGet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsAddGet(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - addGet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/AddHeadCest.php b/tests/unit/Mvc/Router/Annotations/AddHeadCest.php new file mode 100644 index 00000000000..c72aa642a55 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/AddHeadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class AddHeadCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: addHead() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsAddHead(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - addHead()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/AddModuleResourceCest.php b/tests/unit/Mvc/Router/Annotations/AddModuleResourceCest.php new file mode 100644 index 00000000000..5e4dbc0b48c --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/AddModuleResourceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class AddModuleResourceCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: addModuleResource() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsAddModuleResource(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - addModuleResource()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/AddOptionsCest.php b/tests/unit/Mvc/Router/Annotations/AddOptionsCest.php new file mode 100644 index 00000000000..4cbe9639731 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/AddOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class AddOptionsCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: addOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsAddOptions(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - addOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/AddPatchCest.php b/tests/unit/Mvc/Router/Annotations/AddPatchCest.php new file mode 100644 index 00000000000..61fa4876625 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/AddPatchCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class AddPatchCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: addPatch() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsAddPatch(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - addPatch()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/AddPostCest.php b/tests/unit/Mvc/Router/Annotations/AddPostCest.php new file mode 100644 index 00000000000..5833dcb16b1 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/AddPostCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class AddPostCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: addPost() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsAddPost(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - addPost()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/AddPurgeCest.php b/tests/unit/Mvc/Router/Annotations/AddPurgeCest.php new file mode 100644 index 00000000000..625d4214d32 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/AddPurgeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class AddPurgeCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: addPurge() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsAddPurge(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - addPurge()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/AddPutCest.php b/tests/unit/Mvc/Router/Annotations/AddPutCest.php new file mode 100644 index 00000000000..6265e58709f --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/AddPutCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class AddPutCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: addPut() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsAddPut(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - addPut()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/AddResourceCest.php b/tests/unit/Mvc/Router/Annotations/AddResourceCest.php new file mode 100644 index 00000000000..2517d537765 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/AddResourceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class AddResourceCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: addResource() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsAddResource(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - addResource()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/AddTraceCest.php b/tests/unit/Mvc/Router/Annotations/AddTraceCest.php new file mode 100644 index 00000000000..e6e099096ca --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/AddTraceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class AddTraceCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: addTrace() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsAddTrace(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - addTrace()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/AttachCest.php b/tests/unit/Mvc/Router/Annotations/AttachCest.php new file mode 100644 index 00000000000..9e745cc7932 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/AttachCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class AttachCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: attach() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsAttach(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - attach()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/ClearCest.php b/tests/unit/Mvc/Router/Annotations/ClearCest.php new file mode 100644 index 00000000000..7c9a79d1bf2 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/ClearCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class ClearCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: clear() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsClear(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - clear()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/ConstructCest.php b/tests/unit/Mvc/Router/Annotations/ConstructCest.php new file mode 100644 index 00000000000..d0cad411673 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsConstruct(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/GetActionNameCest.php b/tests/unit/Mvc/Router/Annotations/GetActionNameCest.php new file mode 100644 index 00000000000..81e78006d6e --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/GetActionNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class GetActionNameCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: getActionName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsGetActionName(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - getActionName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/GetControllerNameCest.php b/tests/unit/Mvc/Router/Annotations/GetControllerNameCest.php new file mode 100644 index 00000000000..da02807a4ea --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/GetControllerNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class GetControllerNameCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: getControllerName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsGetControllerName(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - getControllerName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/GetDICest.php b/tests/unit/Mvc/Router/Annotations/GetDICest.php new file mode 100644 index 00000000000..98c60c3f9c8 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsGetDI(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/GetDefaultsCest.php b/tests/unit/Mvc/Router/Annotations/GetDefaultsCest.php new file mode 100644 index 00000000000..f38890b78c7 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/GetDefaultsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class GetDefaultsCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: getDefaults() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsGetDefaults(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - getDefaults()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/GetEventsManagerCest.php b/tests/unit/Mvc/Router/Annotations/GetEventsManagerCest.php new file mode 100644 index 00000000000..f460ac2ee14 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: getEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsGetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/GetKeyRouteIdsCest.php b/tests/unit/Mvc/Router/Annotations/GetKeyRouteIdsCest.php new file mode 100644 index 00000000000..9e30e592ccb --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/GetKeyRouteIdsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class GetKeyRouteIdsCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: getKeyRouteIds() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsGetKeyRouteIds(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - getKeyRouteIds()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/GetKeyRouteNamesCest.php b/tests/unit/Mvc/Router/Annotations/GetKeyRouteNamesCest.php new file mode 100644 index 00000000000..75f15e31a20 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/GetKeyRouteNamesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class GetKeyRouteNamesCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: getKeyRouteNames() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsGetKeyRouteNames(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - getKeyRouteNames()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/GetMatchedRouteCest.php b/tests/unit/Mvc/Router/Annotations/GetMatchedRouteCest.php new file mode 100644 index 00000000000..890d14c72eb --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/GetMatchedRouteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class GetMatchedRouteCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: getMatchedRoute() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsGetMatchedRoute(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - getMatchedRoute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/GetMatchesCest.php b/tests/unit/Mvc/Router/Annotations/GetMatchesCest.php new file mode 100644 index 00000000000..f4d10462b59 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/GetMatchesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class GetMatchesCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: getMatches() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsGetMatches(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - getMatches()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/GetModuleNameCest.php b/tests/unit/Mvc/Router/Annotations/GetModuleNameCest.php new file mode 100644 index 00000000000..bf1eb8fc5b8 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/GetModuleNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class GetModuleNameCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: getModuleName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsGetModuleName(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - getModuleName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/GetNamespaceNameCest.php b/tests/unit/Mvc/Router/Annotations/GetNamespaceNameCest.php new file mode 100644 index 00000000000..d501801bda0 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/GetNamespaceNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class GetNamespaceNameCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: getNamespaceName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsGetNamespaceName(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - getNamespaceName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/GetParamsCest.php b/tests/unit/Mvc/Router/Annotations/GetParamsCest.php new file mode 100644 index 00000000000..3488beffc22 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/GetParamsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class GetParamsCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: getParams() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsGetParams(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - getParams()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/GetResourcesCest.php b/tests/unit/Mvc/Router/Annotations/GetResourcesCest.php new file mode 100644 index 00000000000..62a5167fa65 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/GetResourcesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class GetResourcesCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: getResources() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsGetResources(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - getResources()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/GetRouteByIdCest.php b/tests/unit/Mvc/Router/Annotations/GetRouteByIdCest.php new file mode 100644 index 00000000000..9be85470513 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/GetRouteByIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class GetRouteByIdCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: getRouteById() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsGetRouteById(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - getRouteById()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/GetRouteByNameCest.php b/tests/unit/Mvc/Router/Annotations/GetRouteByNameCest.php new file mode 100644 index 00000000000..28d671b1be5 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/GetRouteByNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class GetRouteByNameCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: getRouteByName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsGetRouteByName(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - getRouteByName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/GetRoutesCest.php b/tests/unit/Mvc/Router/Annotations/GetRoutesCest.php new file mode 100644 index 00000000000..73a482f1bdd --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/GetRoutesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class GetRoutesCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: getRoutes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsGetRoutes(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - getRoutes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/HandleCest.php b/tests/unit/Mvc/Router/Annotations/HandleCest.php new file mode 100644 index 00000000000..25f6b8c6421 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/HandleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class HandleCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: handle() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsHandle(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - handle()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/IsExactControllerNameCest.php b/tests/unit/Mvc/Router/Annotations/IsExactControllerNameCest.php new file mode 100644 index 00000000000..119e93f0dac --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/IsExactControllerNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class IsExactControllerNameCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: isExactControllerName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsIsExactControllerName(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - isExactControllerName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/MountCest.php b/tests/unit/Mvc/Router/Annotations/MountCest.php new file mode 100644 index 00000000000..6cd04484233 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/MountCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class MountCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: mount() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsMount(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - mount()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/NotFoundCest.php b/tests/unit/Mvc/Router/Annotations/NotFoundCest.php new file mode 100644 index 00000000000..f99d89b105c --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/NotFoundCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class NotFoundCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: notFound() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsNotFound(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - notFound()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/ProcessActionAnnotationCest.php b/tests/unit/Mvc/Router/Annotations/ProcessActionAnnotationCest.php new file mode 100644 index 00000000000..cb11ea79eec --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/ProcessActionAnnotationCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class ProcessActionAnnotationCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: processActionAnnotation() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsProcessActionAnnotation(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - processActionAnnotation()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/ProcessControllerAnnotationCest.php b/tests/unit/Mvc/Router/Annotations/ProcessControllerAnnotationCest.php new file mode 100644 index 00000000000..f9fd617c183 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/ProcessControllerAnnotationCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class ProcessControllerAnnotationCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: processControllerAnnotation() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsProcessControllerAnnotation(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - processControllerAnnotation()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/RemoveExtraSlashesCest.php b/tests/unit/Mvc/Router/Annotations/RemoveExtraSlashesCest.php new file mode 100644 index 00000000000..7119709f20a --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/RemoveExtraSlashesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class RemoveExtraSlashesCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: removeExtraSlashes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsRemoveExtraSlashes(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - removeExtraSlashes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/SetActionSuffixCest.php b/tests/unit/Mvc/Router/Annotations/SetActionSuffixCest.php new file mode 100644 index 00000000000..a79671b8e8f --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/SetActionSuffixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class SetActionSuffixCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: setActionSuffix() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsSetActionSuffix(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - setActionSuffix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/SetControllerSuffixCest.php b/tests/unit/Mvc/Router/Annotations/SetControllerSuffixCest.php new file mode 100644 index 00000000000..1d9d01b1a33 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/SetControllerSuffixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class SetControllerSuffixCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: setControllerSuffix() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsSetControllerSuffix(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - setControllerSuffix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/SetDICest.php b/tests/unit/Mvc/Router/Annotations/SetDICest.php new file mode 100644 index 00000000000..ad54e75de90 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsSetDI(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/SetDefaultActionCest.php b/tests/unit/Mvc/Router/Annotations/SetDefaultActionCest.php new file mode 100644 index 00000000000..ab119ba13c6 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/SetDefaultActionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class SetDefaultActionCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: setDefaultAction() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsSetDefaultAction(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - setDefaultAction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/SetDefaultControllerCest.php b/tests/unit/Mvc/Router/Annotations/SetDefaultControllerCest.php new file mode 100644 index 00000000000..64245912ec9 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/SetDefaultControllerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class SetDefaultControllerCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: setDefaultController() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsSetDefaultController(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - setDefaultController()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/SetDefaultModuleCest.php b/tests/unit/Mvc/Router/Annotations/SetDefaultModuleCest.php new file mode 100644 index 00000000000..5b43b3a0e9f --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/SetDefaultModuleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class SetDefaultModuleCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: setDefaultModule() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsSetDefaultModule(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - setDefaultModule()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/SetDefaultNamespaceCest.php b/tests/unit/Mvc/Router/Annotations/SetDefaultNamespaceCest.php new file mode 100644 index 00000000000..90ca368e355 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/SetDefaultNamespaceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class SetDefaultNamespaceCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: setDefaultNamespace() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsSetDefaultNamespace(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - setDefaultNamespace()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/SetDefaultsCest.php b/tests/unit/Mvc/Router/Annotations/SetDefaultsCest.php new file mode 100644 index 00000000000..ba26091adfd --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/SetDefaultsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class SetDefaultsCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: setDefaults() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsSetDefaults(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - setDefaults()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/SetEventsManagerCest.php b/tests/unit/Mvc/Router/Annotations/SetEventsManagerCest.php new file mode 100644 index 00000000000..b69b344aac3 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: setEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsSetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/SetKeyRouteIdsCest.php b/tests/unit/Mvc/Router/Annotations/SetKeyRouteIdsCest.php new file mode 100644 index 00000000000..e9a18ebd00a --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/SetKeyRouteIdsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class SetKeyRouteIdsCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: setKeyRouteIds() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsSetKeyRouteIds(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - setKeyRouteIds()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/SetKeyRouteNamesCest.php b/tests/unit/Mvc/Router/Annotations/SetKeyRouteNamesCest.php new file mode 100644 index 00000000000..648365a9a6b --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/SetKeyRouteNamesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class SetKeyRouteNamesCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: setKeyRouteNames() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsSetKeyRouteNames(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - setKeyRouteNames()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Annotations/WasMatchedCest.php b/tests/unit/Mvc/Router/Annotations/WasMatchedCest.php new file mode 100644 index 00000000000..12395ef5e87 --- /dev/null +++ b/tests/unit/Mvc/Router/Annotations/WasMatchedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Annotations; + +use UnitTester; + +class WasMatchedCest +{ + /** + * Tests Phalcon\Mvc\Router\Annotations :: wasMatched() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAnnotationsWasMatched(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Annotations - wasMatched()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/AnnotationsTest.php b/tests/unit/Mvc/Router/AnnotationsTest.php deleted file mode 100644 index d0f68f61ef6..00000000000 --- a/tests/unit/Mvc/Router/AnnotationsTest.php +++ /dev/null @@ -1,197 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Mvc\Router - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class AnnotationsTest extends UnitTest -{ - public function _getDI() - { - $di = new Di(); - - $di["request"] = new Request(); - $di["annotations"] = new Memory(); - - return $di; - } - - public function testRouterFullResources() - { - $this->specify( - "The Annotations Router doesn't work properly", - function ($uri, $method, $controller, $action, $params) { - $router = new Annotations(false); - - $router->setDI($this->_getDI()); - - $router->addResource("Robots", "/"); - $router->addResource("Products", "/products"); - $router->addResource("About", "/about"); - - $router->handle("/products"); - - expect($router->getRoutes())->count(6); - - $router = new Annotations(false); - - $router->setDI($this->_getDI()); - - $router->addResource("Robots", "/"); - $router->addResource("Products", "/products"); - $router->addResource("About", "/about"); - - $router->handle("/about"); - - expect($router->getRoutes())->count(5); - - $router = new Annotations(false); - - $router->setDI($this->_getDI()); - - $router->setDefaultNamespace("MyNamespace\\Controllers"); - - $router->addResource("NamespacedAnnotation", "/namespaced"); - - $router->handle("/namespaced"); - - expect($router->getRoutes())->count(1); - - $router = new Annotations(false); - - $router->setDI($this->_getDI()); - - $router->addResource("MyNamespace\\Controllers\\NamespacedAnnotation", "/namespaced"); - - $router->handle("/namespaced/"); - - $router = new Annotations(false); - - $router->setDI($this->_getDI()); - - $router->addResource("Robots"); - $router->addResource("Products"); - $router->addResource("About"); - $router->addResource("Main"); - - $router->handle("/"); - - expect($router->getRoutes())->count(9); - - $route = $router->getRouteByName("save-robot"); - expect(is_object($route))->true(); - expect($route)->isInstanceOf(Route::class); - - $route = $router->getRouteByName("save-product"); - expect(is_object($route))->true(); - expect($route)->isInstanceOf(Route::class); - - $_SERVER["REQUEST_METHOD"] = $method; - $router->handle($uri); - - expect($router->getControllerName())->equals($controller); - expect($router->getActionName())->equals($action); - expect($router->getParams())->equals($params); - expect($router->isExactControllerName())->true(); - }, - [ - 'examples' => [ - [ - "uri" => "/products/save", - "method" => "PUT", - "controller" => "products", - "action" => "save", - "params" => [], - ], - [ - "uri" => "/products/save", - "method" => "POST", - "controller" => "products", - "action" => "save", - "params" => [], - ], - [ - "uri" => "/products/edit/100", - "method" => "GET", - "controller" => "products", - "action" => "edit", - "params" => ["id" => "100"], - ], - [ - "uri" => "/products", - "method" => "GET", - "controller" => "products", - "action" => "index", - "params" => [], - ], - [ - "uri" => "/robots/edit/100", - "method" => "GET", - "controller" => "robots", - "action" => "edit", - "params" => ["id" => "100"], - ], - [ - "uri" => "/robots", - "method" => "GET", - "controller" => "robots", - "action" => "index", - "params" => [], - ], - [ - "uri" => "/robots/save", - "method" => "PUT", - "controller" => "robots", - "action" => "save", - "params" => [], - ], - [ - "uri" => "/about/team", - "method" => "GET", - "controller" => "about", - "action" => "team", - "params" => [], - ], - [ - "uri" => "/about/team", - "method" => "POST", - "controller" => "about", - "action" => "teampost", - "params" => [], - ], - [ - "uri" => "/", - "method" => "GET", - "controller" => "main", - "action" => "index", - "params" => [], - ], - ] - ] - ); - } -} diff --git a/tests/unit/Mvc/Router/AttachCest.php b/tests/unit/Mvc/Router/AttachCest.php new file mode 100644 index 00000000000..927df80f023 --- /dev/null +++ b/tests/unit/Mvc/Router/AttachCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class AttachCest +{ + /** + * Tests Phalcon\Mvc\Router :: attach() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterAttach(UnitTester $I) + { + $I->wantToTest("Mvc\Router - attach()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/ClearCest.php b/tests/unit/Mvc/Router/ClearCest.php new file mode 100644 index 00000000000..ec1a44af671 --- /dev/null +++ b/tests/unit/Mvc/Router/ClearCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class ClearCest +{ + /** + * Tests Phalcon\Mvc\Router :: clear() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterClear(UnitTester $I) + { + $I->wantToTest("Mvc\Router - clear()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/ConstructCest.php b/tests/unit/Mvc/Router/ConstructCest.php new file mode 100644 index 00000000000..f048c207f8c --- /dev/null +++ b/tests/unit/Mvc/Router/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Router :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterConstruct(UnitTester $I) + { + $I->wantToTest("Mvc\Router - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/GetActionNameCest.php b/tests/unit/Mvc/Router/GetActionNameCest.php new file mode 100644 index 00000000000..4a9889aea82 --- /dev/null +++ b/tests/unit/Mvc/Router/GetActionNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class GetActionNameCest +{ + /** + * Tests Phalcon\Mvc\Router :: getActionName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGetActionName(UnitTester $I) + { + $I->wantToTest("Mvc\Router - getActionName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/GetControllerNameCest.php b/tests/unit/Mvc/Router/GetControllerNameCest.php new file mode 100644 index 00000000000..a8409012989 --- /dev/null +++ b/tests/unit/Mvc/Router/GetControllerNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class GetControllerNameCest +{ + /** + * Tests Phalcon\Mvc\Router :: getControllerName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGetControllerName(UnitTester $I) + { + $I->wantToTest("Mvc\Router - getControllerName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/GetDICest.php b/tests/unit/Mvc/Router/GetDICest.php new file mode 100644 index 00000000000..c0ab172b3ba --- /dev/null +++ b/tests/unit/Mvc/Router/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Router :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGetDI(UnitTester $I) + { + $I->wantToTest("Mvc\Router - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/GetDefaultsCest.php b/tests/unit/Mvc/Router/GetDefaultsCest.php new file mode 100644 index 00000000000..2511910d1b1 --- /dev/null +++ b/tests/unit/Mvc/Router/GetDefaultsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class GetDefaultsCest +{ + /** + * Tests Phalcon\Mvc\Router :: getDefaults() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGetDefaults(UnitTester $I) + { + $I->wantToTest("Mvc\Router - getDefaults()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/GetEventsManagerCest.php b/tests/unit/Mvc/Router/GetEventsManagerCest.php new file mode 100644 index 00000000000..94b7a798ad4 --- /dev/null +++ b/tests/unit/Mvc/Router/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Router :: getEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\Router - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/GetKeyRouteIdsCest.php b/tests/unit/Mvc/Router/GetKeyRouteIdsCest.php new file mode 100644 index 00000000000..9d4f5a1b47b --- /dev/null +++ b/tests/unit/Mvc/Router/GetKeyRouteIdsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class GetKeyRouteIdsCest +{ + /** + * Tests Phalcon\Mvc\Router :: getKeyRouteIds() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGetKeyRouteIds(UnitTester $I) + { + $I->wantToTest("Mvc\Router - getKeyRouteIds()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/GetKeyRouteNamesCest.php b/tests/unit/Mvc/Router/GetKeyRouteNamesCest.php new file mode 100644 index 00000000000..e8cd00ed63b --- /dev/null +++ b/tests/unit/Mvc/Router/GetKeyRouteNamesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class GetKeyRouteNamesCest +{ + /** + * Tests Phalcon\Mvc\Router :: getKeyRouteNames() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGetKeyRouteNames(UnitTester $I) + { + $I->wantToTest("Mvc\Router - getKeyRouteNames()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/GetMatchedRouteCest.php b/tests/unit/Mvc/Router/GetMatchedRouteCest.php new file mode 100644 index 00000000000..a15dcc908fc --- /dev/null +++ b/tests/unit/Mvc/Router/GetMatchedRouteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class GetMatchedRouteCest +{ + /** + * Tests Phalcon\Mvc\Router :: getMatchedRoute() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGetMatchedRoute(UnitTester $I) + { + $I->wantToTest("Mvc\Router - getMatchedRoute()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/GetMatchesCest.php b/tests/unit/Mvc/Router/GetMatchesCest.php new file mode 100644 index 00000000000..773a3eca137 --- /dev/null +++ b/tests/unit/Mvc/Router/GetMatchesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class GetMatchesCest +{ + /** + * Tests Phalcon\Mvc\Router :: getMatches() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGetMatches(UnitTester $I) + { + $I->wantToTest("Mvc\Router - getMatches()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/GetModuleNameCest.php b/tests/unit/Mvc/Router/GetModuleNameCest.php new file mode 100644 index 00000000000..bc7314dfc4b --- /dev/null +++ b/tests/unit/Mvc/Router/GetModuleNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class GetModuleNameCest +{ + /** + * Tests Phalcon\Mvc\Router :: getModuleName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGetModuleName(UnitTester $I) + { + $I->wantToTest("Mvc\Router - getModuleName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/GetNamespaceNameCest.php b/tests/unit/Mvc/Router/GetNamespaceNameCest.php new file mode 100644 index 00000000000..df04e240bb1 --- /dev/null +++ b/tests/unit/Mvc/Router/GetNamespaceNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class GetNamespaceNameCest +{ + /** + * Tests Phalcon\Mvc\Router :: getNamespaceName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGetNamespaceName(UnitTester $I) + { + $I->wantToTest("Mvc\Router - getNamespaceName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/GetParamsCest.php b/tests/unit/Mvc/Router/GetParamsCest.php new file mode 100644 index 00000000000..54c68a69ddd --- /dev/null +++ b/tests/unit/Mvc/Router/GetParamsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class GetParamsCest +{ + /** + * Tests Phalcon\Mvc\Router :: getParams() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGetParams(UnitTester $I) + { + $I->wantToTest("Mvc\Router - getParams()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/GetRouteByIdCest.php b/tests/unit/Mvc/Router/GetRouteByIdCest.php new file mode 100644 index 00000000000..ebec67320dc --- /dev/null +++ b/tests/unit/Mvc/Router/GetRouteByIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class GetRouteByIdCest +{ + /** + * Tests Phalcon\Mvc\Router :: getRouteById() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGetRouteById(UnitTester $I) + { + $I->wantToTest("Mvc\Router - getRouteById()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/GetRouteByNameCest.php b/tests/unit/Mvc/Router/GetRouteByNameCest.php new file mode 100644 index 00000000000..e38ac9b07b6 --- /dev/null +++ b/tests/unit/Mvc/Router/GetRouteByNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class GetRouteByNameCest +{ + /** + * Tests Phalcon\Mvc\Router :: getRouteByName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGetRouteByName(UnitTester $I) + { + $I->wantToTest("Mvc\Router - getRouteByName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/GetRoutesCest.php b/tests/unit/Mvc/Router/GetRoutesCest.php new file mode 100644 index 00000000000..641524177c9 --- /dev/null +++ b/tests/unit/Mvc/Router/GetRoutesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class GetRoutesCest +{ + /** + * Tests Phalcon\Mvc\Router :: getRoutes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGetRoutes(UnitTester $I) + { + $I->wantToTest("Mvc\Router - getRoutes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Group/AddCest.php b/tests/unit/Mvc/Router/Group/AddCest.php new file mode 100644 index 00000000000..660de9174e9 --- /dev/null +++ b/tests/unit/Mvc/Router/Group/AddCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Group; + +use UnitTester; + +class AddCest +{ + /** + * Tests Phalcon\Mvc\Router\Group :: add() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGroupAdd(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Group - add()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Group/AddDeleteCest.php b/tests/unit/Mvc/Router/Group/AddDeleteCest.php new file mode 100644 index 00000000000..56655ec678e --- /dev/null +++ b/tests/unit/Mvc/Router/Group/AddDeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Group; + +use UnitTester; + +class AddDeleteCest +{ + /** + * Tests Phalcon\Mvc\Router\Group :: addDelete() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGroupAddDelete(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Group - addDelete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Group/AddGetCest.php b/tests/unit/Mvc/Router/Group/AddGetCest.php new file mode 100644 index 00000000000..881f01b9f3e --- /dev/null +++ b/tests/unit/Mvc/Router/Group/AddGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Group; + +use UnitTester; + +class AddGetCest +{ + /** + * Tests Phalcon\Mvc\Router\Group :: addGet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGroupAddGet(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Group - addGet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Group/AddHeadCest.php b/tests/unit/Mvc/Router/Group/AddHeadCest.php new file mode 100644 index 00000000000..8090043bdbd --- /dev/null +++ b/tests/unit/Mvc/Router/Group/AddHeadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Group; + +use UnitTester; + +class AddHeadCest +{ + /** + * Tests Phalcon\Mvc\Router\Group :: addHead() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGroupAddHead(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Group - addHead()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Group/AddOptionsCest.php b/tests/unit/Mvc/Router/Group/AddOptionsCest.php new file mode 100644 index 00000000000..e81035dd8cc --- /dev/null +++ b/tests/unit/Mvc/Router/Group/AddOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Group; + +use UnitTester; + +class AddOptionsCest +{ + /** + * Tests Phalcon\Mvc\Router\Group :: addOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGroupAddOptions(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Group - addOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Group/AddPatchCest.php b/tests/unit/Mvc/Router/Group/AddPatchCest.php new file mode 100644 index 00000000000..739610a5033 --- /dev/null +++ b/tests/unit/Mvc/Router/Group/AddPatchCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Group; + +use UnitTester; + +class AddPatchCest +{ + /** + * Tests Phalcon\Mvc\Router\Group :: addPatch() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGroupAddPatch(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Group - addPatch()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Group/AddPostCest.php b/tests/unit/Mvc/Router/Group/AddPostCest.php new file mode 100644 index 00000000000..33f654a32bb --- /dev/null +++ b/tests/unit/Mvc/Router/Group/AddPostCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Group; + +use UnitTester; + +class AddPostCest +{ + /** + * Tests Phalcon\Mvc\Router\Group :: addPost() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGroupAddPost(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Group - addPost()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Group/AddPutCest.php b/tests/unit/Mvc/Router/Group/AddPutCest.php new file mode 100644 index 00000000000..32fff69a96a --- /dev/null +++ b/tests/unit/Mvc/Router/Group/AddPutCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Group; + +use UnitTester; + +class AddPutCest +{ + /** + * Tests Phalcon\Mvc\Router\Group :: addPut() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGroupAddPut(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Group - addPut()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Group/BeforeMatchCest.php b/tests/unit/Mvc/Router/Group/BeforeMatchCest.php new file mode 100644 index 00000000000..3a8e2609648 --- /dev/null +++ b/tests/unit/Mvc/Router/Group/BeforeMatchCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Group; + +use UnitTester; + +class BeforeMatchCest +{ + /** + * Tests Phalcon\Mvc\Router\Group :: beforeMatch() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGroupBeforeMatch(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Group - beforeMatch()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Group/ClearCest.php b/tests/unit/Mvc/Router/Group/ClearCest.php new file mode 100644 index 00000000000..0370c90d9b2 --- /dev/null +++ b/tests/unit/Mvc/Router/Group/ClearCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Group; + +use UnitTester; + +class ClearCest +{ + /** + * Tests Phalcon\Mvc\Router\Group :: clear() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGroupClear(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Group - clear()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Group/ConstructCest.php b/tests/unit/Mvc/Router/Group/ConstructCest.php new file mode 100644 index 00000000000..b8fb39aedce --- /dev/null +++ b/tests/unit/Mvc/Router/Group/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Group; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Router\Group :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGroupConstruct(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Group - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Group/GetBeforeMatchCest.php b/tests/unit/Mvc/Router/Group/GetBeforeMatchCest.php new file mode 100644 index 00000000000..dc30e1bb0a3 --- /dev/null +++ b/tests/unit/Mvc/Router/Group/GetBeforeMatchCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Group; + +use UnitTester; + +class GetBeforeMatchCest +{ + /** + * Tests Phalcon\Mvc\Router\Group :: getBeforeMatch() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGroupGetBeforeMatch(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Group - getBeforeMatch()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Group/GetHostnameCest.php b/tests/unit/Mvc/Router/Group/GetHostnameCest.php new file mode 100644 index 00000000000..e1ebd8e40f9 --- /dev/null +++ b/tests/unit/Mvc/Router/Group/GetHostnameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Group; + +use UnitTester; + +class GetHostnameCest +{ + /** + * Tests Phalcon\Mvc\Router\Group :: getHostname() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGroupGetHostname(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Group - getHostname()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Group/GetPathsCest.php b/tests/unit/Mvc/Router/Group/GetPathsCest.php new file mode 100644 index 00000000000..d5004972c51 --- /dev/null +++ b/tests/unit/Mvc/Router/Group/GetPathsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Group; + +use UnitTester; + +class GetPathsCest +{ + /** + * Tests Phalcon\Mvc\Router\Group :: getPaths() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGroupGetPaths(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Group - getPaths()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Group/GetPrefixCest.php b/tests/unit/Mvc/Router/Group/GetPrefixCest.php new file mode 100644 index 00000000000..be4a8a70575 --- /dev/null +++ b/tests/unit/Mvc/Router/Group/GetPrefixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Group; + +use UnitTester; + +class GetPrefixCest +{ + /** + * Tests Phalcon\Mvc\Router\Group :: getPrefix() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGroupGetPrefix(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Group - getPrefix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Group/GetRoutesCest.php b/tests/unit/Mvc/Router/Group/GetRoutesCest.php new file mode 100644 index 00000000000..c8429409919 --- /dev/null +++ b/tests/unit/Mvc/Router/Group/GetRoutesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Group; + +use UnitTester; + +class GetRoutesCest +{ + /** + * Tests Phalcon\Mvc\Router\Group :: getRoutes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGroupGetRoutes(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Group - getRoutes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Group/SetHostnameCest.php b/tests/unit/Mvc/Router/Group/SetHostnameCest.php new file mode 100644 index 00000000000..6a1b4c126bd --- /dev/null +++ b/tests/unit/Mvc/Router/Group/SetHostnameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Group; + +use UnitTester; + +class SetHostnameCest +{ + /** + * Tests Phalcon\Mvc\Router\Group :: setHostname() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGroupSetHostname(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Group - setHostname()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Group/SetPathsCest.php b/tests/unit/Mvc/Router/Group/SetPathsCest.php new file mode 100644 index 00000000000..88fde8b0b04 --- /dev/null +++ b/tests/unit/Mvc/Router/Group/SetPathsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Group; + +use UnitTester; + +class SetPathsCest +{ + /** + * Tests Phalcon\Mvc\Router\Group :: setPaths() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGroupSetPaths(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Group - setPaths()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Group/SetPrefixCest.php b/tests/unit/Mvc/Router/Group/SetPrefixCest.php new file mode 100644 index 00000000000..177322f6376 --- /dev/null +++ b/tests/unit/Mvc/Router/Group/SetPrefixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Group; + +use UnitTester; + +class SetPrefixCest +{ + /** + * Tests Phalcon\Mvc\Router\Group :: setPrefix() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterGroupSetPrefix(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Group - setPrefix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/GroupCest.php b/tests/unit/Mvc/Router/GroupCest.php new file mode 100644 index 00000000000..10c83a8c639 --- /dev/null +++ b/tests/unit/Mvc/Router/GroupCest.php @@ -0,0 +1,210 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use Phalcon\Http\Request; +use Phalcon\Mvc\Router; +use Phalcon\Mvc\Router\Group; +use Phalcon\Mvc\Router\Route; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use UnitTester; + +class GroupCest +{ + use DiTrait; + + public function testGroups(UnitTester $I) + { + Route::reset(); + $router = new Router(false); + $blog = new Group( + [ + "module" => "blog", + "controller" => "index", + ] + ); + + $blog->setPrefix("/blog"); + $blog->add( + "/save", + [ + "action" => "save", + ] + ); + $blog->add( + "/edit/{id}", + [ + "action" => "edit", + ] + ); + $blog->add( + "/about", + [ + "controller" => "about", + "action" => "index", + ] + ); + $router->mount($blog); + + $routes = [ + "/blog/save" => [ + "module" => "blog", + "controller" => "index", + "action" => "save", + ], + "/blog/edit/1" => [ + "module" => "blog", + "controller" => "index", + "action" => "edit", + ], + "/blog/about" => [ + "module" => "blog", + "controller" => "about", + "action" => "index", + ], + ]; + + foreach ($routes as $route => $paths) { + $router->handle($route); + + $actual = $router->wasMatched(); + $I->assertTrue($actual); + + $expected = $paths["module"]; + $actual = $router->getModuleName(); + $I->assertEquals($expected, $actual); + $expected = $paths["controller"]; + $actual = $router->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = $paths["action"]; + $actual = $router->getActionName(); + $I->assertEquals($expected, $actual); + + $expected = $blog; + $actual = $router->getMatchedRoute()->getGroup(); + $I->assertEquals($expected, $actual); + } + } + + public function testHostnameRouteGroup(UnitTester $I) + { + $routes = $this->getHostnameRoutes(); + foreach ($routes as $route) { + $actualHost = $route[0]; + $expectedHost = $route[1]; + $controller = $route[2]; + + Route::reset(); + $this->newDi(); + $this->setDiRequest(); + $container = $this->getDi(); + + $router = new Router(false); + $router->setDI($container); + + $router->add( + "/edit", + [ + "controller" => "posts3", + "action" => "edit3", + ] + ); + + $group = new Group(); + $group->setHostname("my.phalconphp.com"); + $group->add( + "/edit", + [ + "controller" => "posts", + "action" => "edit", + ] + ); + $router->mount($group); + + $_SERVER["HTTP_HOST"] = $actualHost; + + $router->handle("/edit"); + + $expected = $controller; + $actual = $router->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = $expectedHost; + $actual = $router->getMatchedRoute()->getHostname(); + $I->assertEquals($expected, $actual); + } + } + + private function getHostnameRoutes(): array + { + return [ + ["localhost", null, "posts3"], + ["my.phalconphp.com", "my.phalconphp.com", "posts"], + [null, null, "posts3"], + ]; + } + + public function testHostnameRegexRouteGroup(UnitTester $I) + { + $routes = $this->getHostnameRoutesRegex(); + foreach ($routes as $route) { + $actualHost = $route[0]; + $expectedHost = $route[1]; + $controller = $route[2]; + + Route::reset(); + $this->newDi(); + $this->setDiRequest(); + $container = $this->getDi(); + + $router = new Router(false); + $router->setDI($container); + $router->add( + "/edit", + [ + "controller" => "posts3", + "action" => "edit3", + ] + ); + + $group = new Group(); + $group->setHostname("([a-z]+).phalconphp.com"); + $group->add( + "/edit", + [ + "controller" => "posts", + "action" => "edit", + ] + ); + $router->mount($group); + + $_SERVER["HTTP_HOST"] = $actualHost; + + $router->handle("/edit"); + + $expected = $controller; + $actual = $router->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = $expectedHost; + $actual = $router->getMatchedRoute()->getHostname(); + $I->assertEquals($expected, $actual); + } + } + + private function getHostnameRoutesRegex(): array + { + return [ + ["localhost", null, "posts3"], + ["my.phalconphp.com", "([a-z]+).phalconphp.com", "posts"], + [null, null, "posts3"], + ]; + } +} diff --git a/tests/unit/Mvc/Router/GroupTest.php b/tests/unit/Mvc/Router/GroupTest.php deleted file mode 100644 index 5ff7f160877..00000000000 --- a/tests/unit/Mvc/Router/GroupTest.php +++ /dev/null @@ -1,228 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Mvc\Router - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class GroupTest extends UnitTest -{ - public function testGroups() - { - $this->specify( - "Router Groups don't work properly", - function () { - \Phalcon\Mvc\Router\Route::reset(); - - $router = new \Phalcon\Mvc\Router(false); - - $blog = new \Phalcon\Mvc\Router\Group( - [ - "module" => "blog", - "controller" => "index", - ] - ); - - $blog->setPrefix("/blog"); - - $blog->add( - "/save", - [ - "action" => "save", - ] - ); - - $blog->add( - "/edit/{id}", - [ - "action" => "edit", - ] - ); - - $blog->add( - "/about", - [ - "controller" => "about", - "action" => "index", - ] - ); - - $router->mount($blog); - - $routes = [ - "/blog/save" => [ - "module" => "blog", - "controller" => "index", - "action" => "save", - ], - "/blog/edit/1" => [ - "module" => "blog", - "controller" => "index", - "action" => "edit" - ], - "/blog/about" => [ - "module" => "blog", - "controller" => "about", - "action" => "index", - ], - ]; - - foreach ($routes as $route => $paths) { - $router->handle($route); - - expect($router->wasMatched())->true(); - - expect($paths["module"])->equals($router->getModuleName()); - expect($paths["controller"])->equals($router->getControllerName()); - expect($paths["action"])->equals($router->getActionName()); - - expect($blog)->equals($router->getMatchedRoute()->getGroup()); - } - } - ); - } - - public function testHostnameRouteGroup() - { - $this->specify( - "Router Groups with hostname don't work properly", - function ($actualHost, $expectedHost, $controller) { - \Phalcon\Mvc\Router\Route::reset(); - - $di = new \Phalcon\DI(); - - $di->set( - "request", - function () { - return new \Phalcon\Http\Request(); - } - ); - - $router = new \Phalcon\Mvc\Router(false); - - $router->setDI($di); - - $router->add( - "/edit", - [ - "controller" => "posts3", - "action" => "edit3", - ] - ); - - $group = new \Phalcon\Mvc\Router\Group(); - - $group->setHostname("my.phalconphp.com"); - - $group->add( - "/edit", - [ - "controller" => "posts", - "action" => "edit", - ] - ); - - $router->mount($group); - - $_SERVER["HTTP_HOST"] = $actualHost; - - $router->handle("/edit"); - - expect($router->getControllerName())->equals($controller); - expect($router->getMatchedRoute()->getHostname())->equals($expectedHost); - }, - [ - "examples" => $this->hostnamedRoutesProvider(), - ] - ); - } - - protected function hostnamedRoutesProvider() - { - return [ - ["localhost", null, "posts3"], - ["my.phalconphp.com", "my.phalconphp.com", "posts"], - [null, null, "posts3"], - ]; - } - - public function testHostnameRegexRouteGroup() - { - $this->specify( - "Router Groups with regular expressions don't work properly", - function ($actualHost, $expectedHost, $controller) { - \Phalcon\Mvc\Router\Route::reset(); - - $di = new \Phalcon\DI(); - - $di->set( - "request", - function () { - return new \Phalcon\Http\Request(); - } - ); - - $router = new \Phalcon\Mvc\Router(false); - - $router->setDI($di); - - $router->add( - "/edit", - [ - "controller" => "posts3", - "action" => "edit3", - ] - ); - - $group = new \Phalcon\Mvc\Router\Group(); - - $group->setHostname("([a-z]+).phalconphp.com"); - - $group->add( - "/edit", - [ - "controller" => "posts", - "action" => "edit", - ] - ); - - $router->mount($group); - - $_SERVER["HTTP_HOST"] = $actualHost; - - $router->handle("/edit"); - - expect($router->getControllerName())->equals($controller); - expect($router->getMatchedRoute()->getHostname())->equals($expectedHost); - }, - [ - "examples" => $this->hostnamedRegexRoutesProvider(), - ] - ); - } - - protected function hostnamedRegexRoutesProvider() - { - return [ - ["localhost", null, "posts3"], - ["my.phalconphp.com", "([a-z]+).phalconphp.com", "posts"], - [null, null, "posts3"], - ]; - } -} diff --git a/tests/unit/Mvc/Router/HandleCest.php b/tests/unit/Mvc/Router/HandleCest.php new file mode 100644 index 00000000000..0cdf86c9ee3 --- /dev/null +++ b/tests/unit/Mvc/Router/HandleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class HandleCest +{ + /** + * Tests Phalcon\Mvc\Router :: handle() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterHandle(UnitTester $I) + { + $I->wantToTest("Mvc\Router - handle()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/IsExactControllerNameCest.php b/tests/unit/Mvc/Router/IsExactControllerNameCest.php new file mode 100644 index 00000000000..8c8dcfd6850 --- /dev/null +++ b/tests/unit/Mvc/Router/IsExactControllerNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class IsExactControllerNameCest +{ + /** + * Tests Phalcon\Mvc\Router :: isExactControllerName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterIsExactControllerName(UnitTester $I) + { + $I->wantToTest("Mvc\Router - isExactControllerName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/MountCest.php b/tests/unit/Mvc/Router/MountCest.php new file mode 100644 index 00000000000..1d96d77a92b --- /dev/null +++ b/tests/unit/Mvc/Router/MountCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class MountCest +{ + /** + * Tests Phalcon\Mvc\Router :: mount() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterMount(UnitTester $I) + { + $I->wantToTest("Mvc\Router - mount()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/NotFoundCest.php b/tests/unit/Mvc/Router/NotFoundCest.php new file mode 100644 index 00000000000..6ae74c94824 --- /dev/null +++ b/tests/unit/Mvc/Router/NotFoundCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class NotFoundCest +{ + /** + * Tests Phalcon\Mvc\Router :: notFound() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterNotFound(UnitTester $I) + { + $I->wantToTest("Mvc\Router - notFound()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/RemoveExtraSlashesCest.php b/tests/unit/Mvc/Router/RemoveExtraSlashesCest.php new file mode 100644 index 00000000000..a4b28a2a029 --- /dev/null +++ b/tests/unit/Mvc/Router/RemoveExtraSlashesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class RemoveExtraSlashesCest +{ + /** + * Tests Phalcon\Mvc\Router :: removeExtraSlashes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRemoveExtraSlashes(UnitTester $I) + { + $I->wantToTest("Mvc\Router - removeExtraSlashes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/BeforeMatchCest.php b/tests/unit/Mvc/Router/Route/BeforeMatchCest.php new file mode 100644 index 00000000000..b73abe10999 --- /dev/null +++ b/tests/unit/Mvc/Router/Route/BeforeMatchCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class BeforeMatchCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: beforeMatch() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteBeforeMatch(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - beforeMatch()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/CompilePatternCest.php b/tests/unit/Mvc/Router/Route/CompilePatternCest.php new file mode 100644 index 00000000000..844616bc151 --- /dev/null +++ b/tests/unit/Mvc/Router/Route/CompilePatternCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class CompilePatternCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: compilePattern() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteCompilePattern(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - compilePattern()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/ConstructCest.php b/tests/unit/Mvc/Router/Route/ConstructCest.php new file mode 100644 index 00000000000..867f7ca75e2 --- /dev/null +++ b/tests/unit/Mvc/Router/Route/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteConstruct(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/ConvertCest.php b/tests/unit/Mvc/Router/Route/ConvertCest.php new file mode 100644 index 00000000000..d75366acbc0 --- /dev/null +++ b/tests/unit/Mvc/Router/Route/ConvertCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class ConvertCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: convert() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteConvert(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - convert()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/ExtractNamedParamsCest.php b/tests/unit/Mvc/Router/Route/ExtractNamedParamsCest.php new file mode 100644 index 00000000000..bba13029c91 --- /dev/null +++ b/tests/unit/Mvc/Router/Route/ExtractNamedParamsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class ExtractNamedParamsCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: extractNamedParams() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteExtractNamedParams(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - extractNamedParams()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/GetBeforeMatchCest.php b/tests/unit/Mvc/Router/Route/GetBeforeMatchCest.php new file mode 100644 index 00000000000..28b6586f5a8 --- /dev/null +++ b/tests/unit/Mvc/Router/Route/GetBeforeMatchCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class GetBeforeMatchCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: getBeforeMatch() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteGetBeforeMatch(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - getBeforeMatch()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/GetCompiledPatternCest.php b/tests/unit/Mvc/Router/Route/GetCompiledPatternCest.php new file mode 100644 index 00000000000..480cd67815d --- /dev/null +++ b/tests/unit/Mvc/Router/Route/GetCompiledPatternCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class GetCompiledPatternCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: getCompiledPattern() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteGetCompiledPattern(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - getCompiledPattern()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/GetConvertersCest.php b/tests/unit/Mvc/Router/Route/GetConvertersCest.php new file mode 100644 index 00000000000..d2a1df16c11 --- /dev/null +++ b/tests/unit/Mvc/Router/Route/GetConvertersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class GetConvertersCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: getConverters() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteGetConverters(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - getConverters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/GetGroupCest.php b/tests/unit/Mvc/Router/Route/GetGroupCest.php new file mode 100644 index 00000000000..387e70584f7 --- /dev/null +++ b/tests/unit/Mvc/Router/Route/GetGroupCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class GetGroupCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: getGroup() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteGetGroup(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - getGroup()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/GetHostnameCest.php b/tests/unit/Mvc/Router/Route/GetHostnameCest.php new file mode 100644 index 00000000000..87aa29ff338 --- /dev/null +++ b/tests/unit/Mvc/Router/Route/GetHostnameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class GetHostnameCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: getHostname() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteGetHostname(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - getHostname()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/GetHttpMethodsCest.php b/tests/unit/Mvc/Router/Route/GetHttpMethodsCest.php new file mode 100644 index 00000000000..2a446560a82 --- /dev/null +++ b/tests/unit/Mvc/Router/Route/GetHttpMethodsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class GetHttpMethodsCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: getHttpMethods() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteGetHttpMethods(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - getHttpMethods()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/GetIdCest.php b/tests/unit/Mvc/Router/Route/GetIdCest.php new file mode 100644 index 00000000000..f9ecbcbd168 --- /dev/null +++ b/tests/unit/Mvc/Router/Route/GetIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class GetIdCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: getId() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteGetId(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - getId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/GetMatchCest.php b/tests/unit/Mvc/Router/Route/GetMatchCest.php new file mode 100644 index 00000000000..c465d0aabb9 --- /dev/null +++ b/tests/unit/Mvc/Router/Route/GetMatchCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class GetMatchCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: getMatch() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteGetMatch(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - getMatch()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/GetNameCest.php b/tests/unit/Mvc/Router/Route/GetNameCest.php new file mode 100644 index 00000000000..8ab8be60b76 --- /dev/null +++ b/tests/unit/Mvc/Router/Route/GetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class GetNameCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: getName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteGetName(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - getName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/GetPathsCest.php b/tests/unit/Mvc/Router/Route/GetPathsCest.php new file mode 100644 index 00000000000..b65c3a6235e --- /dev/null +++ b/tests/unit/Mvc/Router/Route/GetPathsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class GetPathsCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: getPaths() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteGetPaths(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - getPaths()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/GetPatternCest.php b/tests/unit/Mvc/Router/Route/GetPatternCest.php new file mode 100644 index 00000000000..6943a586819 --- /dev/null +++ b/tests/unit/Mvc/Router/Route/GetPatternCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class GetPatternCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: getPattern() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteGetPattern(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - getPattern()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/GetReversedPathsCest.php b/tests/unit/Mvc/Router/Route/GetReversedPathsCest.php new file mode 100644 index 00000000000..83fc87ec0cf --- /dev/null +++ b/tests/unit/Mvc/Router/Route/GetReversedPathsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class GetReversedPathsCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: getReversedPaths() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteGetReversedPaths(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - getReversedPaths()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/GetRouteIdCest.php b/tests/unit/Mvc/Router/Route/GetRouteIdCest.php new file mode 100644 index 00000000000..4a979668cc3 --- /dev/null +++ b/tests/unit/Mvc/Router/Route/GetRouteIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class GetRouteIdCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: getRouteId() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteGetRouteId(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - getRouteId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/GetRoutePathsCest.php b/tests/unit/Mvc/Router/Route/GetRoutePathsCest.php new file mode 100644 index 00000000000..1b40974427f --- /dev/null +++ b/tests/unit/Mvc/Router/Route/GetRoutePathsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class GetRoutePathsCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: getRoutePaths() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteGetRoutePaths(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - getRoutePaths()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/MatchCest.php b/tests/unit/Mvc/Router/Route/MatchCest.php new file mode 100644 index 00000000000..3074580004a --- /dev/null +++ b/tests/unit/Mvc/Router/Route/MatchCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class MatchCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: match() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteMatch(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - match()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/ReConfigureCest.php b/tests/unit/Mvc/Router/Route/ReConfigureCest.php new file mode 100644 index 00000000000..c035dde7163 --- /dev/null +++ b/tests/unit/Mvc/Router/Route/ReConfigureCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class ReConfigureCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: reConfigure() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteReConfigure(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - reConfigure()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/ResetCest.php b/tests/unit/Mvc/Router/Route/ResetCest.php new file mode 100644 index 00000000000..3d1b28a0627 --- /dev/null +++ b/tests/unit/Mvc/Router/Route/ResetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class ResetCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: reset() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteReset(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - reset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/SetGroupCest.php b/tests/unit/Mvc/Router/Route/SetGroupCest.php new file mode 100644 index 00000000000..7b6821d6587 --- /dev/null +++ b/tests/unit/Mvc/Router/Route/SetGroupCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class SetGroupCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: setGroup() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteSetGroup(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - setGroup()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/SetHostnameCest.php b/tests/unit/Mvc/Router/Route/SetHostnameCest.php new file mode 100644 index 00000000000..7c7dd7f4495 --- /dev/null +++ b/tests/unit/Mvc/Router/Route/SetHostnameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class SetHostnameCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: setHostname() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteSetHostname(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - setHostname()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/SetHttpMethodsCest.php b/tests/unit/Mvc/Router/Route/SetHttpMethodsCest.php new file mode 100644 index 00000000000..7a0ba0b4449 --- /dev/null +++ b/tests/unit/Mvc/Router/Route/SetHttpMethodsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class SetHttpMethodsCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: setHttpMethods() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteSetHttpMethods(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - setHttpMethods()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/SetNameCest.php b/tests/unit/Mvc/Router/Route/SetNameCest.php new file mode 100644 index 00000000000..cb869c38395 --- /dev/null +++ b/tests/unit/Mvc/Router/Route/SetNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class SetNameCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: setName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteSetName(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - setName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/Route/ViaCest.php b/tests/unit/Mvc/Router/Route/ViaCest.php new file mode 100644 index 00000000000..4fb7f7ba9db --- /dev/null +++ b/tests/unit/Mvc/Router/Route/ViaCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router\Route; + +use UnitTester; + +class ViaCest +{ + /** + * Tests Phalcon\Mvc\Router\Route :: via() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterRouteVia(UnitTester $I) + { + $I->wantToTest("Mvc\Router\Route - via()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/SetDICest.php b/tests/unit/Mvc/Router/SetDICest.php new file mode 100644 index 00000000000..47b4fb855d8 --- /dev/null +++ b/tests/unit/Mvc/Router/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Router :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterSetDI(UnitTester $I) + { + $I->wantToTest("Mvc\Router - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/SetDefaultActionCest.php b/tests/unit/Mvc/Router/SetDefaultActionCest.php new file mode 100644 index 00000000000..a79963ac3ca --- /dev/null +++ b/tests/unit/Mvc/Router/SetDefaultActionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class SetDefaultActionCest +{ + /** + * Tests Phalcon\Mvc\Router :: setDefaultAction() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterSetDefaultAction(UnitTester $I) + { + $I->wantToTest("Mvc\Router - setDefaultAction()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/SetDefaultControllerCest.php b/tests/unit/Mvc/Router/SetDefaultControllerCest.php new file mode 100644 index 00000000000..ffbd970fa90 --- /dev/null +++ b/tests/unit/Mvc/Router/SetDefaultControllerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class SetDefaultControllerCest +{ + /** + * Tests Phalcon\Mvc\Router :: setDefaultController() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterSetDefaultController(UnitTester $I) + { + $I->wantToTest("Mvc\Router - setDefaultController()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/SetDefaultModuleCest.php b/tests/unit/Mvc/Router/SetDefaultModuleCest.php new file mode 100644 index 00000000000..8412f6611ba --- /dev/null +++ b/tests/unit/Mvc/Router/SetDefaultModuleCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class SetDefaultModuleCest +{ + /** + * Tests Phalcon\Mvc\Router :: setDefaultModule() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterSetDefaultModule(UnitTester $I) + { + $I->wantToTest("Mvc\Router - setDefaultModule()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/SetDefaultNamespaceCest.php b/tests/unit/Mvc/Router/SetDefaultNamespaceCest.php new file mode 100644 index 00000000000..8a0eab1b12b --- /dev/null +++ b/tests/unit/Mvc/Router/SetDefaultNamespaceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class SetDefaultNamespaceCest +{ + /** + * Tests Phalcon\Mvc\Router :: setDefaultNamespace() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterSetDefaultNamespace(UnitTester $I) + { + $I->wantToTest("Mvc\Router - setDefaultNamespace()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/SetDefaultsCest.php b/tests/unit/Mvc/Router/SetDefaultsCest.php new file mode 100644 index 00000000000..d3b4e5df534 --- /dev/null +++ b/tests/unit/Mvc/Router/SetDefaultsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class SetDefaultsCest +{ + /** + * Tests Phalcon\Mvc\Router :: setDefaults() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterSetDefaults(UnitTester $I) + { + $I->wantToTest("Mvc\Router - setDefaults()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/SetEventsManagerCest.php b/tests/unit/Mvc/Router/SetEventsManagerCest.php new file mode 100644 index 00000000000..cf2df17101e --- /dev/null +++ b/tests/unit/Mvc/Router/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\Router :: setEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterSetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\Router - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/SetKeyRouteIdsCest.php b/tests/unit/Mvc/Router/SetKeyRouteIdsCest.php new file mode 100644 index 00000000000..cf737a9973b --- /dev/null +++ b/tests/unit/Mvc/Router/SetKeyRouteIdsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class SetKeyRouteIdsCest +{ + /** + * Tests Phalcon\Mvc\Router :: setKeyRouteIds() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterSetKeyRouteIds(UnitTester $I) + { + $I->wantToTest("Mvc\Router - setKeyRouteIds()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/SetKeyRouteNamesCest.php b/tests/unit/Mvc/Router/SetKeyRouteNamesCest.php new file mode 100644 index 00000000000..f5d19ea52cb --- /dev/null +++ b/tests/unit/Mvc/Router/SetKeyRouteNamesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class SetKeyRouteNamesCest +{ + /** + * Tests Phalcon\Mvc\Router :: setKeyRouteNames() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterSetKeyRouteNames(UnitTester $I) + { + $I->wantToTest("Mvc\Router - setKeyRouteNames()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Router/WasMatchedCest.php b/tests/unit/Mvc/Router/WasMatchedCest.php new file mode 100644 index 00000000000..532b2408e1d --- /dev/null +++ b/tests/unit/Mvc/Router/WasMatchedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Router; + +use UnitTester; + +class WasMatchedCest +{ + /** + * Tests Phalcon\Mvc\Router :: wasMatched() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcRouterWasMatched(UnitTester $I) + { + $I->wantToTest("Mvc\Router - wasMatched()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/RouterCest.php b/tests/unit/Mvc/RouterCest.php new file mode 100644 index 00000000000..32cc2d45517 --- /dev/null +++ b/tests/unit/Mvc/RouterCest.php @@ -0,0 +1,1186 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc; + +use Phalcon\Mvc\Router; +use Phalcon\Mvc\Router\Route; +use Phalcon\Test\Fixtures\Traits\RouterTrait; +use UnitTester; + +class RouterCest +{ + use RouterTrait; + + /** + * Tests routing by use Route::convert + * + * @author Andy Gutierrez + * @since 2012-12-25 + */ + public function testUsingRouteConverters(UnitTester $I) + { + $examples = $this->getMatchingWithConverted(); + foreach ($examples as $item) { + $route = $item[0]; + $params = $item[1]; + + $router = $this->getRouterAndSetData(); + $router->handle($route); + + $actual = $router->wasMatched(); + $I->assertTrue($actual); + + $expected = $params['controller']; + $actual = $router->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = $params['action']; + $actual = $router->getActionName(); + $I->assertEquals($expected, $actual); + } + } + + private function getMatchingWithConverted(): array + { + return [ + [ + '/some-controller/my-action-name/this-is-a-country', + [ + 'controller' => 'somecontroller', + 'action' => 'myactionname', + 'params' => ['this-is-a-country'], + ], + ], + [ + '/BINARY/1101', + [ + 'controller' => 'binary', + 'action' => 'index', + 'params' => [1011], + ], + ], + ]; + } + + /** + * Tests using callbacks before match route + * + * @author Andy Gutierrez + * @since 2013-01-08 + */ + public function testUsingCallbacksBeforeMatchRoute(UnitTester $I) + { + $router = $this->getRouter(false); + $trace = 0; + + $router + ->add('/static/route') + ->beforeMatch(function () use (&$trace) { + $trace++; + return false; + }) + ; + + $router + ->add('/static/route2') + ->beforeMatch(function () use (&$trace) { + $trace++; + return true; + }) + ; + + $router->handle("/"); + $actual = $router->wasMatched(); + $I->assertFalse($actual); + + $router->handle('/static/route'); + $actual = $router->wasMatched(); + $I->assertFalse($actual); + + $router->handle('/static/route2'); + $actual = $router->wasMatched(); + $I->assertTrue($actual); + + $I->assertEquals(2, $trace); + } + + /** + * Tests getting named route + * + * @author Andy Gutierrez + * @since 2012-08-27 + */ + public function testGettingNamedRoutes(UnitTester $I) + { + $I->skipTest('TODO - Check the getRouteById'); + $router = $this->getRouter(false); + $usersFind = $router->add('/api/users/find')->setHttpMethods('GET')->setName('usersFind'); + $usersAdd = $router->add('/api/users/add')->setHttpMethods('POST')->setName('usersAdd'); + + $expected = $usersAdd; + $actual = $router->getRouteByName('usersAdd'); + $I->assertEquals($expected, $actual); + + // second check when the same route goes from name lookup + $expected = $usersAdd; + $actual = $router->getRouteByName('usersAdd'); + $I->assertEquals($expected, $actual); + + $expected = $usersFind; + $actual = $router->getRouteById(0); + $I->assertEquals($expected, $actual); + } + + /** + * Tests removing extra slashes + * + * @author Andy Gutierrez + * @since 2012-12-16 + */ + public function testRemovingExtraSlashes(UnitTester $I) + { + $examples = $this->getMatchingWithExtraSlashes(); + foreach ($examples as $item) { + $route = $item[0]; + $params = $item[1]; + + $router = $this->getRouter(); + $router->removeExtraSlashes(true); + $router->handle($route); + + $actual = $router->wasMatched(); + $I->assertTrue($actual); + + $expected = $params['controller']; + $actual = $router->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = $params['action']; + $actual = $router->getActionName(); + $I->assertEquals($expected, $actual); + } + } + + private function getMatchingWithExtraSlashes(): array + { + return [ + [ + '/index/', + [ + 'controller' => 'index', + 'action' => '', + ], + ], + [ + '/session/start/', + [ + 'controller' => 'session', + 'action' => 'start', + ], + ], + [ + '/users/edit/100/', + [ + 'controller' => 'users', + 'action' => 'edit', + ], + ], + ]; + } + + /** + * Tests router + * + * @author Andy Gutierrez + * @since 2013-01-17 + */ + public function shouldMatchWithRouter(UnitTester $I) + { + $pathToRouterData = $this->getDataRouter(); + $examples = $this->getMatchingWithRouter(); + foreach ($examples as $params) { + $router = $this->getRouterAndSetRoutes($pathToRouterData); + $router->handle($params['uri']); + + $expected = $params['controller']; + $actual = $router->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = $params['action']; + $actual = $router->getActionName(); + $I->assertEquals($expected, $actual); + $expected = $params['params']; + $actual = $router->getParams(); + $I->assertEquals($expected, $actual); + } + } + + private function getDataRouter(): array + { + return [ + [ + 'methodName' => 'add', + '/', + [ + 'controller' => 'index', + 'action' => 'index', + ], + ], + [ + 'methodName' => 'add', + '/system/:controller/a/:action/:params', + [ + 'controller' => 1, + 'action' => 2, + 'params' => 3, + ], + ], + [ + 'methodName' => 'add', + '/([a-z]{2})/:controller', + [ + 'controller' => 2, + 'action' => 'index', + 'language' => 1, + ], + ], + [ + 'methodName' => 'add', + '/admin/:controller/:action/:int', + [ + 'controller' => 1, + 'action' => 2, + 'id' => 3, + ], + ], + [ + 'methodName' => 'add', + '/posts/([0-9]{4})/([0-9]{2})/([0-9]{2})/:params', + [ + 'controller' => 'posts', + 'action' => 'show', + 'year' => 1, + 'month' => 2, + 'day' => 3, + 'params' => 4, + ], + ], + [ + 'methodName' => 'add', + '/manual/([a-z]{2})/([a-z\.]+)\.html', + [ + 'controller' => 'manual', + 'action' => 'show', + 'language' => 1, + 'file' => 2, + ], + ], + [ + 'methodName' => 'add', + '/named-manual/{language:([a-z]{2})}/{file:[a-z\.]+}\.html', + [ + 'controller' => 'manual', + 'action' => 'show', + ], + ], + [ + 'methodName' => 'add', + '/very/static/route', + [ + 'controller' => 'static', + 'action' => 'route', + ], + ], + [ + 'methodName' => 'add', + '/feed/{lang:[a-z]+}/blog/{blog:[a-z\-]+}\.{type:[a-z\-]+}', + 'Feed::get', + ], + [ + 'methodName' => 'add', + '/posts/{year:[0-9]+}/s/{title:[a-z\-]+}', + 'Posts::show', + ], + [ + 'methodName' => 'add', + '/posts/delete/{id}', + 'Posts::delete', + ], + [ + 'methodName' => 'add', + '/show/{id:video([0-9]+)}/{title:[a-z\-]+}', + 'Videos::show', + ], + ]; + } + + private function getMatchingWithRouter(): array + { + return [ + [ + 'uri' => '', + 'controller' => null, + 'action' => null, + 'params' => [], + ], + [ + 'uri' => '/', + 'controller' => 'index', + 'action' => 'index', + 'params' => [], + ], + [ + 'uri' => '/documentation/index/hellao/aaadpqñda/bbbAdld/cc-ccc', + 'controller' => 'documentation', + 'action' => 'index', + 'params' => ['hellao', 'aaadpqñda', 'bbbAdld', 'cc-ccc'], + ], + [ + 'uri' => '/documentation/index/', + 'controller' => 'documentation', + 'action' => 'index', + 'params' => [], + ], + [ + 'uri' => '/documentation/index', + 'controller' => 'documentation', + 'action' => 'index', + 'params' => [], + ], + [ + 'uri' => '/documentation/', + 'controller' => 'documentation', + 'action' => null, + 'params' => [], + ], + [ + 'uri' => '/documentation', + 'controller' => 'documentation', + 'action' => null, + 'params' => [], + ], + [ + 'uri' => '/system/admin/a/edit/hellao/aaadp', + 'controller' => 'admin', + 'action' => 'edit', + 'params' => ['hellao', 'aaadp'], + ], + [ + 'uri' => '/es/news', + 'controller' => 'news', + 'action' => 'index', + 'params' => ['language' => 'es'], + ], + [ + 'uri' => '/admin/posts/edit/100', + 'controller' => 'posts', + 'action' => 'edit', + 'params' => ['id' => 100], + ], + [ + 'uri' => '/posts/2010/02/10/title/content', + 'controller' => 'posts', + 'action' => 'show', + 'params' => ['year' => '2010', 'month' => '02', 'day' => '10', 0 => 'title', 1 => 'content'], + ], + [ + 'uri' => '/manual/en/translate.adapter.html', + 'controller' => 'manual', + 'action' => 'show', + 'params' => ['language' => 'en', 'file' => 'translate.adapter'], + ], + [ + 'uri' => '/named-manual/en/translate.adapter.html', + 'controller' => 'manual', + 'action' => 'show', + 'params' => ['language' => 'en', 'file' => 'translate.adapter'], + ], + [ + 'uri' => '/posts/1999/s/le-nice-title', + 'controller' => 'posts', + 'action' => 'show', + 'params' => ['year' => '1999', 'title' => 'le-nice-title'], + ], + [ + 'uri' => '/feed/fr/blog/diaporema.json', + 'controller' => 'feed', + 'action' => 'get', + 'params' => ['lang' => 'fr', 'blog' => 'diaporema', 'type' => 'json'], + ], + [ + 'uri' => '/posts/delete/150', + 'controller' => 'posts', + 'action' => 'delete', + 'params' => ['id' => '150'], + ], + [ + 'uri' => '/very/static/route', + 'controller' => 'static', + 'action' => 'route', + 'params' => [], + ], + + ]; + } + + /** + * Tests router by using rote params + * + * @author Andy Gutierrez + * @since 2012-08-22 + */ + public function shouldMatchWithTheRouterByUsingHttpMethods(UnitTester $I) + { + $pathToRouterData = $this->getDataRouterHttp(); + $examples = $this->getMatchingWithRouterHttp(); + foreach ($examples as $params) { + $router = $this->getRouterAndSetRoutes($pathToRouterData); + $_SERVER['REQUEST_METHOD'] = $params['method']; + $router->handle($params['uri']); + + $expected = $params['controller']; + $actual = $router->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = $params['action']; + $actual = $router->getActionName(); + $I->assertEquals($expected, $actual); + $expected = $params['params']; + $actual = $router->getParams(); + $I->assertEquals($expected, $actual); + } + } + + private function getDataRouterHttp(): array + { + return [ + [ + 'methodName' => 'add', + '/docs/index', + [ + 'controller' => 'documentation2222', + 'action' => 'index', + ], + ], + [ + 'methodName' => 'addPost', + '/docs/index', + [ + 'controller' => 'documentation3', + 'action' => 'index', + ], + ], + [ + 'methodName' => 'addGet', + '/docs/index', + [ + 'controller' => 'documentation4', + 'action' => 'index', + ], + ], + [ + 'methodName' => 'addPut', + '/docs/index', + [ + 'controller' => 'documentation5', + 'action' => 'index', + ], + ], + [ + 'methodName' => 'addDelete', + '/docs/index', + [ + 'controller' => 'documentation6', + 'action' => 'index', + ], + ], + [ + 'methodName' => 'addOptions', + '/docs/index', + [ + 'controller' => 'documentation7', + 'action' => 'index', + ], + ], + [ + 'methodName' => 'addHead', + '/docs/index', + [ + 'controller' => 'documentation8', + 'action' => 'index', + ], + ], + [ + 'methodName' => 'addPurge', + '/docs/index', + [ + 'controller' => 'documentation9', + 'action' => 'index', + ], + ], + [ + 'methodName' => 'addTrace', + '/docs/index', + [ + 'controller' => 'documentation10', + 'action' => 'index', + ], + ], + [ + 'methodName' => 'addConnect', + '/docs/index', + [ + 'controller' => 'documentation11', + 'action' => 'index', + ], + ], + ]; + } + + private function getMatchingWithRouterHttp(): array + { + return [ + [ + 'method' => null, + 'uri' => '/documentation/index/hello', + 'controller' => 'documentation', + 'action' => 'index', + 'params' => ['hello'], + ], + [ + 'method' => 'POST', + 'uri' => '/docs/index', + 'controller' => 'documentation3', + 'action' => 'index', + 'params' => [], + ], + [ + 'method' => 'GET', + 'uri' => '/docs/index', + 'controller' => 'documentation4', + 'action' => 'index', + 'params' => [], + ], + [ + 'method' => 'PUT', + 'uri' => '/docs/index', + 'controller' => 'documentation5', + 'action' => 'index', + 'params' => [], + ], + [ + 'method' => 'DELETE', + 'uri' => '/docs/index', + 'controller' => 'documentation6', + 'action' => 'index', + 'params' => [], + ], + [ + 'method' => 'OPTIONS', + 'uri' => '/docs/index', + 'controller' => 'documentation7', + 'action' => 'index', + 'params' => [], + ], + [ + 'method' => 'HEAD', + 'uri' => '/docs/index', + 'controller' => 'documentation8', + 'action' => 'index', + 'params' => [], + ], + [ + 'method' => 'PURGE', + 'uri' => '/docs/index', + 'controller' => 'documentation9', + 'action' => 'index', + 'params' => [], + ], + [ + 'method' => 'TRACE', + 'uri' => '/docs/index', + 'controller' => 'documentation10', + 'action' => 'index', + 'params' => [], + ], + [ + 'method' => 'CONNECT', + 'uri' => '/docs/index', + 'controller' => 'documentation11', + 'action' => 'index', + 'params' => [], + ], + ]; + } + + /** + * Tests router by using http method + * + * @author Andy Gutierrez + * @since 2012-08-22 + */ + public function shouldMatchWithGotRouterParam(UnitTester $I) + { + $pathToRouterData = $this->getDataToRouter(); + $examples = $this->getMatchingWithToRouter(); + foreach ($examples as $params) { + $router = $this->getRouterAndSetRoutes($pathToRouterData); + $router->handle($params['uri']); + + $expected = $params['controller']; + $actual = $router->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = $params['action']; + $actual = $router->getActionName(); + $I->assertEquals($expected, $actual); + $expected = $params['params']; + $actual = $router->getParams(); + $I->assertEquals($expected, $actual); + } + } + + private function getDataToRouter(): array + { + return [ + [ + 'methodName' => 'add', + '/some/{name}', + ], + [ + 'methodName' => 'add', + '/some/{name}/{id:[0-9]+}', + ], + [ + 'methodName' => 'add', + '/some/{name}/{id:[0-9]+}/{date}', + ], + ]; + } + + private function getMatchingWithToRouter(): array + { + return [ + [ + 'uri' => '/some/hattie', + 'controller' => '', + 'action' => '', + 'params' => ['name' => 'hattie'], + ], + [ + 'uri' => '/some/hattie/100', + 'controller' => '', + 'action' => '', + 'params' => ['name' => 'hattie', 'id' => 100], + ], + [ + 'uri' => '/some/hattie/100/2011-01-02', + 'controller' => '', + 'action' => '', + 'params' => ['name' => 'hattie', 'id' => 100, 'date' => '2011-01-02'], + ], + ]; + } + + /** + * Tests adding a route to the router by using short path + * + * @author Andy Gutierrez + * @since 2012-01-16 + */ + public function testAddingRouteByUsingShortPaths(UnitTester $I) + { + $examples = $this->getMatchingWithPathProvider(); + foreach ($examples as $item) { + $route = $item[0]; + $path = $item[1]; + $expected = $item[2]; + $router = $this->getRouter(false); + $route = $router->add($route, $path); + + $actual = $route->getPaths(); + $I->assertEquals($expected, $actual); + } + } + + private function getMatchingWithPathProvider(): array + { + return [ + [ + '/route0', + 'Feed', + [ + 'controller' => 'feed', + ], + ], + [ + '/route1', + 'Feed::get', + [ + 'controller' => 'feed', + 'action' => 'get', + ], + ], + [ + '/route2', + 'News::Posts::show', + [ + 'module' => 'News', + 'controller' => 'posts', + 'action' => 'show', + ], + ], + [ + '/route3', + 'MyApp\Controllers\Posts::show', + [ + 'namespace' => 'MyApp\Controllers', + 'controller' => 'posts', + 'action' => 'show', + ], + ], + [ + '/route3', + 'MyApp\Controllers\::show', + [ + 'controller' => '', + 'action' => 'show', + ], + ], + [ + '/route3', + 'News::MyApp\Controllers\Posts::show', + [ + 'module' => 'News', + 'namespace' => 'MyApp\\Controllers', + 'controller' => 'posts', + 'action' => 'show', + ], + ], + [ + '/route3', + '\Posts::show', + [ + 'controller' => 'posts', + 'action' => 'show', + ], + ], + ]; + } + + /** + * @issue https://github.com/phalcon/cphalcon/issues/13326 + * @author Phalcon Team + * @since 2018-03-24 + */ + public function shouldAttachRoute(UnitTester $I) + { + $router = $this->getRouter(false); + $actual = $router->getRoutes(); + $I->assertCount(0, $actual); + + $router->attach( + new Route("/about", "About::index", ["GET", "HEAD"]), + Router::POSITION_FIRST + ); + + $actual = $router->getRoutes(); + $I->assertCount(1, $actual); + } + + /** + * Tests setting host name by using regexp + * + * @test + * @author Phalcon Team + * @since 2016-06-23 + */ + public function shouldMathWithHostnameRegex(UnitTester $I) + { +// $pathToRouterData = $this->getDataRouterHostName(); + $pathToRouterData = $this->getDataToHostnameRegex(); + $examples = $this->getMatchingWithHostnameRegex(); + foreach ($examples as $item) { + $expected = $item[0]; + $handle = $item[1]; + $hostname = $item[2]; + $router = $this->getRouterAndSetRoutesAndHostNames($pathToRouterData, false); + + $_SERVER['HTTP_HOST'] = $hostname; + $router->handle($handle); + + $actual = $router->getControllerName(); + $I->assertEquals($expected, $actual); + } + } + + private function getDataToHostnameRegex(): array + { + return [ + [ + 'methodName' => 'add', + '/edit', + [ + 'controller' => 'posts3', + 'action' => 'edit3', + ], + ], + [ + 'methodName' => 'add', + '/edit', + [ + 'controller' => 'posts', + 'action' => 'edit', + ], + 'hostname' => '([a-z]+).phalconphp.com', + ], + [ + 'methodName' => 'add', + '/edit', + [ + 'controller' => 'posts2', + 'action' => 'edit2', + ], + 'hostname' => 'mail.([a-z]+).com', + ], + [ + 'methodName' => 'add', + '/edit', + [ + 'controller' => 'posts4', + 'action' => 'edit2', + ], + 'hostname' => '([a-z]+).([a-z]+).net', + ], + ]; + } + + private function getMatchingWithHostnameRegex(): array + { + return [ + ['posts3', '/edit', 'localhost'], + ['posts', '/edit', 'my.phalconphp.com'], + ['posts3', '/edit', null], + ['posts2', '/edit', 'mail.example.com'], + ['posts3', '/edit', 'some-domain.com'], + ['posts4', '/edit', 'some.domain.net'], + ]; + } + + /** + * Tests setting host name by using regexp + * + * @issue https://github.com/phalcon/cphalcon/issues/2573 + * @author Phalcon Team + * @since 2016-06-26 + */ + public function shouldMathWithHostnameRegexWithHostPort111(UnitTester $I) + { + $I->skipTest('TODO - Check'); + $pathToRouterData = $this->getDataRegexRouterHostPort(); + $examples = $this->getMatchingWithRegexRouterHostPort(); + foreach ($examples as $item) { + $param = $item[0]; + $expected = $item[1]; + + $router = $this->getRouterAndSetRoutesAndHostNames($pathToRouterData, false); + $_SERVER['HTTP_HOST'] = $param['hostname'] . ($param['port'] ? ':' . $param['port'] : ''); + $router->handle($param['handle']); + + $actual = $router->getControllerName(); + $I->assertEquals($expected, $actual); + } + } + + private function getDataRegexRouterHostPort(): array + { + return [ + [ + 'methodName' => 'add', + '/edit', + [ + 'controller' => 'posts3', + 'action' => 'edit3', + ], + 'hostname' => '', + ], + [ + 'methodName' => 'add', + '/edit', + [ + 'controller' => 'posts', + 'action' => 'edit', + ], + 'hostname' => '', + ], + [ + 'methodName' => 'add', + '/edit', + [ + 'controller' => 'posts2', + 'action' => 'edit2', + ], + 'hostname' => '', + ], + [ + 'methodName' => 'add', + '/edit', + [ + 'controller' => 'posts4', + 'action' => 'edit2', + ], + 'hostname' => '', + ], + ]; + } + + private function getMatchingWithRegexRouterHostPort(): array + { + return [ + [ + [ + 'hostname' => 'localhost', + 'port' => null, + 'handle' => '/edit', + ], + 'posts3', + ], + [ + [ + 'hostname' => 'my.phalconphp.com', + 'port' => 80, + 'handle' => '/edit', + ], + 'posts', + ], + [ + [ + 'hostname' => 'my.phalconphp.com', + 'port' => 8080, + 'handle' => '/edit', + ], + 'posts', + ], + [ + [ + 'hostname' => null, + 'port' => 8080, + 'handle' => '/edit', + ], + 'posts3', + ], + [ + [ + 'hostname' => 'mail.example.com', + 'port' => 9090, + 'handle' => '/edit', + ], + 'posts2', + ], + [ + [ + 'hostname' => 'some-domain.com', + 'port' => 9000, + 'handle' => '/edit', + ], + 'posts3', + ], + [ + [ + 'hostname' => 'some.domain.net', + 'port' => 0, + 'handle' => '/edit', + ], + 'posts4', + ], + ]; + } + + /** + * Tests setting host name + * + * @author Andy Gutierrez + * @since 2013-04-15 + */ + public function shouldReturnCorrectController(UnitTester $I) + { + $pathToRouterData = $this->getDataRouterHostName(); + $examples = $this->getMatchingWithHostName(); + foreach ($examples as $item) { + $param = $item[0]; + $expected = $item[1]; + $router = $this->getRouterAndSetRoutesAndHostNames($pathToRouterData, false); + $_SERVER['HTTP_HOST'] = $param['hostname']; + $router->handle($param['handle']); + + $actual = $router->getControllerName(); + $I->assertEquals($expected, $actual); + } + } + + private function getDataRouterHostName(): array + { + return [ + [ + 'methodName' => 'add', + '/edit', + [ + 'controller' => 'posts3', + 'action' => 'edit3', + ], + ], + [ + 'methodName' => 'add', + '/edit', + [ + 'controller' => 'posts', + 'action' => 'edit', + ], + 'hostname' => 'my.phalconphp.com', + ], + [ + 'methodName' => 'add', + '/edit', + [ + 'controller' => 'posts2', + 'action' => 'edit2', + ], + 'hostname' => 'my2.phalconphp.com', + ], + ]; + } + + private function getMatchingWithHostName(): array + { + return [ + [ + [ + 'hostname' => 'localhost', + 'handle' => '/edit', + ], + 'posts3', + ], + [ + [ + 'hostname' => null, + 'handle' => '/edit', + ], + 'posts3', + ], + [ + [ + 'hostname' => 'my.phalconphp.com', + 'handle' => '/edit', + ], + 'posts', + ], + [ + [ + 'hostname' => 'my2.phalconphp.com', + 'handle' => '/edit', + ], + 'posts2', + ], + ]; + } + + /** + * Tests setting notFound handler + * + * @author Andy Gutierrez + * @since 2013-03-01 + */ + public function testSettingNotFoundPaths(UnitTester $I) + { + $router = $this->getRouter(false); + + $router->notFound( + [ + 'module' => 'module', + 'namespace' => 'namespace', + 'controller' => 'controller', + 'action' => 'action', + ] + ); + + $router->handle("/"); + + $expected = 'controller'; + $actual = $router->getControllerName(); + $I->assertEquals($expected, $actual); + $expected = 'action'; + $actual = $router->getActionName(); + $I->assertEquals($expected, $actual); + $expected = 'module'; + $actual = $router->getModuleName(); + $I->assertEquals($expected, $actual); + $expected = 'namespace'; + $actual = $router->getNamespaceName(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests get route by name method + * + * @author Wojciech Ślawski + * @since 2018-06-28 + */ + public function testGetRouteByName(UnitTester $I) + { + $router = $this->getRouter(false); + $router->add('/test', ['controller' => 'test', 'action' => 'test'])->setName('test'); + $router->add('/test2', ['controller' => 'test', 'action' => 'test'])->setName('test2'); + $router->add('/test3', ['controller' => 'test', 'action' => 'test'])->setName('test3'); + /** + * We reverse routes so we first check last added route + */ + foreach (array_reverse($router->getRoutes()) as $route) { + $expected = $router->getRouteByName($route->getName())->getName(); + $actual = $route->getName(); + $I->assertEquals($expected, $actual); + + $expected = $router->getRouteByName($route->getName()); + $actual = $route; + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests ge route by id method + * + * @author Wojciech Ślawski + * @since 2018-06-28 + */ + public function testGetRouteById(UnitTester $I) + { + $router = $this->getRouter(false); + $router->add('/test', ['controller' => 'test', 'action' => 'test']); + $router->add('/test2', ['controller' => 'test', 'action' => 'test']); + $router->add('/test3', ['controller' => 'test', 'action' => 'test']); + + /** + * We reverse routes so we first check last added route + */ + foreach (array_reverse($router->getRoutes()) as $route) { + $expected = $router->getRoutebyId($route->getId())->getId(); + $actual = $route->getId(); + $I->assertEquals($expected, $actual); + + $expected = $router->getRoutebyId($route->getId()); + $actual = $route; + $I->assertEquals($expected, $actual); + } + } + + /** + * executed before each test + */ + protected function _before(UnitTester $I) + { + Route::reset(); + } +} diff --git a/tests/unit/Mvc/RouterTest.php b/tests/unit/Mvc/RouterTest.php deleted file mode 100644 index cc218e00ebc..00000000000 --- a/tests/unit/Mvc/RouterTest.php +++ /dev/null @@ -1,447 +0,0 @@ - - * @since 2012-12-25 - */ - public function testUsingRouteConverters() - { - $this->specify( - 'The Route::convert doest not work as expected', - function ($route, $paths) { - $router = $this->getRouterAndSetData(); - - $router->handle($route); - - expect($router->wasMatched())->true(); - expect($router->getControllerName())->equals($paths['controller']); - expect($router->getActionName())->equals($paths['action']); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'mvc/router_test/matching_with_converted.php' - ] - ); - } - - /** - * Tests using callbacks before match route - * - * @author Andy Gutierrez - * @since 2013-01-08 - */ - public function testUsingCallbacksBeforeMatchRoute() - { - $this->specify( - 'The Route::beforeMatch does not use callback as expected', - function () { - $router= $this->getRouter(false); - $trace = 0; - - $router - ->add('/static/route') - ->beforeMatch(function () use (&$trace) { - $trace++; - return false; - }); - - $router - ->add('/static/route2') - ->beforeMatch(function () use (&$trace) { - $trace++; - return true; - }); - - $router->handle("/"); - expect($router->wasMatched())->false(); - - $router->handle('/static/route'); - expect($router->wasMatched())->false(); - - $router->handle('/static/route2'); - expect($router->wasMatched())->true(); - - expect($trace)->equals(2); - } - ); - } - - /** - * Tests getting named route - * - * @author Andy Gutierrez - * @since 2012-08-27 - */ - public function testGettingNamedRoutes() - { - $this->specify( - 'Getting named route does not return expect result', - function () { - $router= $this->getRouter(false); - - $usersFind = $router->add('/api/users/find')->setHttpMethods('GET')->setName('usersFind'); - $usersAdd = $router->add('/api/users/add')->setHttpMethods('POST')->setName('usersAdd'); - - expect($router->getRouteByName('usersAdd'), $usersAdd); - // second check when the same route goes from name lookup - expect($router->getRouteByName('usersAdd'), $usersAdd); - expect($router->getRouteById(0), $usersFind); - } - ); - } - - /** - * Tests removing extra slashes - * - * @author Andy Gutierrez - * @since 2012-12-16 - */ - public function testRemovingExtraSlashes() - { - $this->specify( - 'Removing extra slashes does not work as expected', - function ($route, $paths) { - $router= $this->getRouter(); - $router->removeExtraSlashes(true); - - $router->handle($route); - - expect($router->wasMatched())->true(); - expect($router->getControllerName())->equals($paths['controller']); - expect($router->getActionName())->equals($paths['action']); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'mvc/router_test/matching_with_extra_slashes.php' - ] - ); - } - - /** - * Tests router - * - * @test - * @author Andy Gutierrez - * @since 2013-01-17 - */ - public function shouldMatchWithRouter() - { - $pathToRouterData = include_once PATH_FIXTURES . 'mvc/router_test/data_to_router.php'; - $this->specify( - 'Router does not matched correctly', - function ($params) use ($pathToRouterData) { - $router = $this->getRouterAndSetRoutes($pathToRouterData); - $router->handle($params['uri']); - - expect($router->getControllerName())->equals($params['controller']); - expect($router->getActionName())->equals($params['action']); - expect($router->getParams())->equals($params['params']); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'mvc/router_test/matching_with_router.php' - ] - ); - } - - /** - * Tests router by using rote params - * - * @test - * @author Andy Gutierrez - * @since 2012-08-22 - */ - public function shouldMatchWithTheRouterByUsingHttpMethods() - { - $pathToRouterData = include_once PATH_FIXTURES . 'mvc/router_test/data_to_router_http.php'; - $this->specify( - 'Router does not matched correctly by using http method', - function ($params) use ($pathToRouterData) { - $router = $this->getRouterAndSetRoutes($pathToRouterData); - - $_SERVER['REQUEST_METHOD'] = $params['method']; - $router->handle($params['uri']); - - expect($router->getControllerName())->equals($params['controller']); - expect($router->getActionName())->equals($params['action']); - expect($router->getParams())->equals($params['params']); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'mvc/router_test/matching_with_router_http.php' - ] - ); - } - - /** - * Tests router by using http method - * - * @test - * @author Andy Gutierrez - * @since 2012-08-22 - */ - public function shouldMatchWithGotRouterParam() - { - $pathToRouterData = include_once PATH_FIXTURES . 'mvc/router_test/data_to_router_param.php'; - $this->specify( - 'Router does not matched correctly by using rote params', - function ($params) use ($pathToRouterData) { - $router = $this->getRouterAndSetRoutes($pathToRouterData); - - $router->handle($params['uri']); - - expect($router->getControllerName())->equals($params['controller']); - expect($router->getActionName())->equals($params['action']); - expect($router->getParams())->equals($params['params']); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'mvc/router_test/matching_with_got_router.php' - ] - ); - } - - /** - * Tests adding a route to the router by using short path - * - * @author Andy Gutierrez - * @since 2012-01-16 - */ - public function testAddingRouteByUsingShortPaths() - { - $this->specify( - 'Adding a route to the router by using short path does not produce expected paths', - function ($route, $path, $expected) { - $router = $this->getRouter(false); - $route = $router->add($route, $path); - - expect($route->getPaths())->equals($expected); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'mvc/router_test/matching_with_path_provider.php' - ] - ); - } - - /** - * @test - * @issue https://github.com/phalcon/cphalcon/issues/13326 - * @author Serghei Iakovlev - * @since 2018-03-24 - */ - public function shouldAttachRoute() - { - $this->specify( - 'Err', - function () { - $router = $this->getRouter(false); - expect($router->getRoutes())->count(0); - - $router->attach( - new Route("/about", "About::index", ["GET", "HEAD"]), - Router::POSITION_FIRST - ); - - expect($router->getRoutes())->count(1); - } - ); - } - - /** - * Tests setting host name by using regexp - * - * @test - * @author Serghei Iakovlev - * @since 2016-06-23 - */ - public function shouldMathWithHostnameRegex() - { - $pathToRouterData = include_once PATH_FIXTURES . 'mvc/router_test/data_to_router_with_hostname.php'; - $this->specify( - 'The Router::getControllerName does not return correct controller by using regexp in host name', - function ($expected, $handle, $hostname) use ($pathToRouterData) { - $router = $this->getRouterAndSetRoutesAndHostNames($pathToRouterData, false); - $_SERVER['HTTP_HOST'] = $hostname; - $router->handle($handle); - - expect($router->getControllerName())->equals($expected); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'mvc/router_test/matching_with_hostname_regex.php' - ] - ); - } - - /** - * Tests setting host name by using regexp - * - * @issue https://github.com/phalcon/cphalcon/issues/2573 - * @author Serghei Iakovlev - * @since 2016-06-26 - */ - public function shouldMathWithHostnameRegexWithHostPort111() - { - $pathToRouterData = include_once PATH_FIXTURES . 'mvc/router_test/data_to_regex_router_host_port.php'; - $this->specify( - 'The Router::getControllerName does not return correct controller by using regexp in host name', - function ($param, $expected) use ($pathToRouterData) { - $router = $this->getRouterAndSetRoutesAndHostNames($pathToRouterData, false); - $_SERVER['HTTP_HOST'] = $param['hostname'] . ($param['port'] ? ':' . $param['port'] : ''); - $router->handle($param['handle']); - - expect($router->getControllerName())->equals($expected); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'mvc/router_test/matching_with_regex_router_host_port.php' - ] - ); - } - - /** - * Tests setting host name - * - * @author Andy Gutierrez - * @since 2013-04-15 - */ - public function shouldReturnCorrectController() - { - $pathToRouterData = include_once PATH_FIXTURES . 'mvc/router_test/data_to_router_host_name.php'; - $this->specify( - 'The Router::getControllerName does not return correct controller by using host name', - function ($param, $expected) use ($pathToRouterData) { - $router = $this->getRouterAndSetRoutesAndHostNames($pathToRouterData, false); - $_SERVER['HTTP_HOST'] = $param['hostname']; - $router->handle($param['handle']); - - expect($router->getControllerName())->equals($expected); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'mvc/router_test/matching_with_host_name.php' - ] - ); - } - - /** - * Tests setting notFound handler - * - * @author Andy Gutierrez - * @since 2013-03-01 - */ - public function testSettingNotFoundPaths() - { - $this->specify( - 'Setting a group of paths to be returned when none of the defined routes are matched does not work as expected', - function () { - $router = $this->getRouter(false); - - $router->notFound( - [ - 'module' => 'module', - 'namespace' => 'namespace', - 'controller' => 'controller', - 'action' => 'action' - ] - ); - - $router->handle("/"); - - expect($router->getControllerName())->equals('controller'); - expect($router->getActionName())->equals('action'); - expect($router->getModuleName())->equals('module'); - expect($router->getNamespaceName())->equals('namespace'); - } - ); - } - - /** - * Tests get route by name method - * - * @author Wojciech Ślawski - * @since 2018-06-28 - */ - public function testGetRouteByName() - { - $this->specify( - "Router::getRouteByName is not working properly.", - function () { - $router = $this->getRouter(false); - $router->add('/test', ['controller' => 'test', 'action' => 'test'])->setName('test'); - $router->add('/test2', ['controller' => 'test', 'action' => 'test'])->setName('test2'); - $router->add('/test3', ['controller' => 'test', 'action' => 'test'])->setName('test3'); - /** - * We reverse routes so we first check last added route - */ - foreach (array_reverse($router->getRoutes()) as $route) { - expect($route->getName())->equals($router->getRouteByName($route->getName())->getName()); - expect($route)->equals($router->getRouteByName($route->getName())); - } - } - ); - } - - /** - * Tests ge route by id method - * - * @author Wojciech Ślawski - * @since 2018-06-28 - */ - public function testGetRouteById() - { - $this->specify( - "Router::getRouteById is not working properly", - function () { - $router = $this->getRouter(false); - $router->add('/test', ['controller' => 'test', 'action' => 'test']); - $router->add('/test2', ['controller' => 'test', 'action' => 'test']); - $router->add('/test3', ['controller' => 'test', 'action' => 'test']); - /** - * We reverse routes so we first check last added route - */ - foreach (array_reverse($router->getRoutes()) as $route) { - expect($route->getId())->equals($router->getRoutebyId($route->getId())->getId()); - expect($route)->equals($router->getRoutebyId($route->getId())); - } - } - ); - } -} diff --git a/tests/unit/Mvc/Url/GetBasePathCest.php b/tests/unit/Mvc/Url/GetBasePathCest.php new file mode 100644 index 00000000000..e2bf47549aa --- /dev/null +++ b/tests/unit/Mvc/Url/GetBasePathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Url; + +use UnitTester; + +class GetBasePathCest +{ + /** + * Tests Phalcon\Mvc\Url :: getBasePath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUrlGetBasePath(UnitTester $I) + { + $I->wantToTest("Mvc\Url - getBasePath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Url/GetBaseUriCest.php b/tests/unit/Mvc/Url/GetBaseUriCest.php new file mode 100644 index 00000000000..2584d73492f --- /dev/null +++ b/tests/unit/Mvc/Url/GetBaseUriCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Url; + +use UnitTester; + +class GetBaseUriCest +{ + /** + * Tests Phalcon\Mvc\Url :: getBaseUri() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUrlGetBaseUri(UnitTester $I) + { + $I->wantToTest("Mvc\Url - getBaseUri()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Url/GetCest.php b/tests/unit/Mvc/Url/GetCest.php new file mode 100644 index 00000000000..fd1c0373ad9 --- /dev/null +++ b/tests/unit/Mvc/Url/GetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Url; + +use UnitTester; + +class GetCest +{ + /** + * Tests Phalcon\Mvc\Url :: get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUrlGet(UnitTester $I) + { + $I->wantToTest("Mvc\Url - get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Url/GetDICest.php b/tests/unit/Mvc/Url/GetDICest.php new file mode 100644 index 00000000000..2c73035e36a --- /dev/null +++ b/tests/unit/Mvc/Url/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Url; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\Url :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUrlGetDI(UnitTester $I) + { + $I->wantToTest("Mvc\Url - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Url/GetStaticBaseUriCest.php b/tests/unit/Mvc/Url/GetStaticBaseUriCest.php new file mode 100644 index 00000000000..88044cc935b --- /dev/null +++ b/tests/unit/Mvc/Url/GetStaticBaseUriCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Url; + +use UnitTester; + +class GetStaticBaseUriCest +{ + /** + * Tests Phalcon\Mvc\Url :: getStaticBaseUri() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUrlGetStaticBaseUri(UnitTester $I) + { + $I->wantToTest("Mvc\Url - getStaticBaseUri()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Url/GetStaticCest.php b/tests/unit/Mvc/Url/GetStaticCest.php new file mode 100644 index 00000000000..350dd11060c --- /dev/null +++ b/tests/unit/Mvc/Url/GetStaticCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Url; + +use UnitTester; + +class GetStaticCest +{ + /** + * Tests Phalcon\Mvc\Url :: getStatic() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUrlGetStatic(UnitTester $I) + { + $I->wantToTest("Mvc\Url - getStatic()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Url/PathCest.php b/tests/unit/Mvc/Url/PathCest.php new file mode 100644 index 00000000000..c95866e3096 --- /dev/null +++ b/tests/unit/Mvc/Url/PathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Url; + +use UnitTester; + +class PathCest +{ + /** + * Tests Phalcon\Mvc\Url :: path() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUrlPath(UnitTester $I) + { + $I->wantToTest("Mvc\Url - path()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Url/SetBasePathCest.php b/tests/unit/Mvc/Url/SetBasePathCest.php new file mode 100644 index 00000000000..74717859f2e --- /dev/null +++ b/tests/unit/Mvc/Url/SetBasePathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Url; + +use UnitTester; + +class SetBasePathCest +{ + /** + * Tests Phalcon\Mvc\Url :: setBasePath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUrlSetBasePath(UnitTester $I) + { + $I->wantToTest("Mvc\Url - setBasePath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Url/SetBaseUriCest.php b/tests/unit/Mvc/Url/SetBaseUriCest.php new file mode 100644 index 00000000000..b524788e2e6 --- /dev/null +++ b/tests/unit/Mvc/Url/SetBaseUriCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Url; + +use UnitTester; + +class SetBaseUriCest +{ + /** + * Tests Phalcon\Mvc\Url :: setBaseUri() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUrlSetBaseUri(UnitTester $I) + { + $I->wantToTest("Mvc\Url - setBaseUri()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Url/SetDICest.php b/tests/unit/Mvc/Url/SetDICest.php new file mode 100644 index 00000000000..14f1d71e381 --- /dev/null +++ b/tests/unit/Mvc/Url/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Url; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\Url :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUrlSetDI(UnitTester $I) + { + $I->wantToTest("Mvc\Url - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/Url/SetStaticBaseUriCest.php b/tests/unit/Mvc/Url/SetStaticBaseUriCest.php new file mode 100644 index 00000000000..d9fb25b05b5 --- /dev/null +++ b/tests/unit/Mvc/Url/SetStaticBaseUriCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\Url; + +use UnitTester; + +class SetStaticBaseUriCest +{ + /** + * Tests Phalcon\Mvc\Url :: setStaticBaseUri() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUrlSetStaticBaseUri(UnitTester $I) + { + $I->wantToTest("Mvc\Url - setStaticBaseUri()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/UrlCest.php b/tests/unit/Mvc/UrlCest.php new file mode 100644 index 00000000000..e8c76276399 --- /dev/null +++ b/tests/unit/Mvc/UrlCest.php @@ -0,0 +1,344 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc; + +use Phalcon\Di; +use Phalcon\Mvc\Router; +use Phalcon\Mvc\Url; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Test\Fixtures\Traits\RouterTrait; +use UnitTester; + +class UrlCest +{ + use DiTrait; + use RouterTrait; + + /** + * executed before each test + */ + public function _before() + { + $this->newDi(); + $this->setDiUrl(); + $this->setupRoutes(); + } + + /** + * Depends on the RouterTrait + */ + private function setupRoutes() + { + $container = $this->getDi(); + $router = new Router(false); + $routerData = $this->getDataToSetDi(); + foreach ($routerData as $data) { + $this->getRouteAndSetRouteMethod($router, $data)->setName($data['setname']); + } + $router->removeExtraSlashes(true); + + $container->set('router', $router); + } + + private function getDataToSetDi(): array + { + return [ + [ + '/admin/:controller/p/:action', + [ + 'controller' => 1, + 'action' => 2, + ], + 'methodName' => 'add', + 'setname' => 'adminProducts', + ], + [ + '/api/classes/{class}', + 'methodName' => 'add', + 'setname' => 'classApi', + ], + [ + '/{year}/{month}/{title}', + 'methodName' => 'add', + 'setname' => 'blogPost', + ], + [ + '/wiki/{article:[a-z]+}', + 'methodName' => 'add', + 'setname' => 'wikipedia', + ], + [ + '/news/{country:[a-z]{2}}/([a-z+])/([a-z\-+])/{page}', + [ + 'section' => 2, + 'article' => 3, + ], + 'methodName' => 'add', + 'setname' => 'news', + ], + [ + '/([a-z]{2})/([a-zA-Z0-9_-]+)(/|)', + [ + 'lang' => 1, + 'module' => 'main', + 'controller' => 2, + 'action' => 'index', + ], + 'methodName' => 'add', + 'setname' => 'lang-controller', + ], + ]; + } + + /** + * Tests the base url + * + * @author Nikolaos Dimopoulos + * @since 2014-09-04 + */ + public function shouldGetCorrectUrlWithServer(UnitTester $I) + { + $examples = $this->getUrlToSetServer(); + foreach ($examples as $item) { + $params = $item[0]; + $expected = $item[1]; + + $_SERVER['PHP_SELF'] = $params['server_php_self']; + + $url = $this->getService('url'); + $actual = $url->get($params['get']); + $I->assertEquals($expected, $actual); + } + } + + private function getUrlToSetServer(): array + { + return [ + //Tests the base url + [ + [ + 'server_php_self' => '/index.php', + 'get' => null, + ], + '/', + ], + //Tests a different url + [ + [ + 'server_php_self' => '/index.php', + 'get' => 'classes/api/Some', + ], + '/classes/api/Some', + ], + ]; + } + + /** + * Tests the url with a controller and action + * + * @author Nikolaos Dimopoulos + * @since 2014-09-04 + */ + public function shouldCorrectSetBaseUri(UnitTester $I)//+ + { + $examples = $this->getUrlToSetBaseUri(); + foreach ($examples as $item) { + $params = $item[0]; + $expected = $item[1]; + + $url = $this->getService('url'); + $url->setBaseUri($params['base_url']); + + $actual = $url->get($params['param']); + $I->assertEquals($expected, $actual); + } + } + + private function getUrlToSetBaseUri(): array + { + return [ + //Tests the url with a controller and action + [ + [ + 'base_url' => '/', + 'param' => [ + 'for' => 'adminProducts', + 'controller' => 'products', + 'action' => 'index', + ], + ], + '/admin/products/p/index', + ], + //Tests the url with a controller + [ + [ + 'base_url' => '/', + 'param' => [ + 'for' => 'classApi', + 'class' => 'Some', + ], + ], + '/api/classes/Some', + ], + //Tests the url with a year/month/title + [ + [ + 'base_url' => '/', + 'param' => [ + 'for' => 'lang-controller', + 'lang' => 'de', + 'controller' => 'index', + ], + ], + '/de/index', + ], + //Tests the url for a different language + [ + [ + 'base_url' => '/', + 'param' => [ + 'for' => 'blogPost', + 'year' => '2010', + 'month' => '10', + 'title' => 'cloudflare-anade-recursos-a-tu-servidor', + ], + ], + '/2010/10/cloudflare-anade-recursos-a-tu-servidor', + ], + //Tests the url with external website + [ + [ + 'base_url' => '/', + 'param' => [ + 'for' => 'wikipedia', + 'article' => 'Television_news', + ], + ], + '/wiki/Television_news', + ], + ]; + } + + /** + * Tests the url with a controller and action + * + * @author Olivier Monaco + * @since 2015-02-03 + * @issue https://github.com/phalcon/cphalcon/issues/3315 + */ + public function shouldGetCorrectUrl(UnitTester $I) + { + $examples = $this->getUrlToSetWithoutDi(); + foreach ($examples as $item) { + $params = $item[0]; + $expected = $item[1]; + + $url = $this->getService('url'); + $url->setBaseUri($params['base_url']); + + $actual = $url->get($params['get']); + $I->assertEquals($expected, $actual); + } + } + + private function getUrlToSetWithoutDi(): array + { + return [ + [ + [ + 'base_url' => 'http://www.test.com', + 'get' => '', + ], + 'http://www.test.com', + ], + [ + [ + 'base_url' => 'http://www.test.com', + 'get' => '/', + ], + 'http://www.test.com/', + ], + [ + [ + 'base_url' => 'http://www.test.com', + 'get' => '/path', + ], + 'http://www.test.com/path', + ], + //Test urls that contains colons in schema definition and as parameter + [ + [ + 'base_url' => 'http://www.test.com', + 'get' => '/controller/action/param/colon:param', + ], + 'http://www.test.com/controller/action/param/colon:param', + ], + [ + [ + 'base_url' => 'base_url\' => \'http://www.test.com', + 'get' => 'http://www.example.com', + ], + 'http://www.example.com', + ], + [ + [ + 'base_url' => 'base_url\' => \'http://www.test.com', + 'get' => '//www.example.com', + ], + '//www.example.com', + ], + [ + [ + 'base_url' => 'base_url\' => \'http://www.test.com', + 'get' => 'schema:example.com', + ], + 'schema:example.com', + ], + ]; + } + + /** + * Test should avoid double slash when joining baseUri to provided uri + * + * @author Olivier Monaco + * @since 2015-02-03 + * @issue https://github.com/phalcon/cphalcon/issues/3315 + */ + public function shouldGetCorrectUrlWithGetParam(UnitTester $I) + { + $examples = $this->getUrlToSetWithoutDiTwoParam(); + foreach ($examples as $item) { + $params = $item[0]; + $expected = $item[1]; + + $url = $this->getService('url'); + $url->setBaseUri($params['base_url']); + + $actual = $url->get($params['get'], $params['second_get']); + $I->assertEquals($expected, $actual); + } + } + + private function getUrlToSetWithoutDiTwoParam(): array + { + return [ + [ + [ + 'base_url' => 'http://www.test.com/?_url=/', + 'get' => 'path', + 'second_get' => ['params' => 'one'], + ], + 'http://www.test.com/?_url=/path¶ms=one', + ], + ]; + } +} diff --git a/tests/unit/Mvc/UrlTest.php b/tests/unit/Mvc/UrlTest.php deleted file mode 100644 index 97992e86e2e..00000000000 --- a/tests/unit/Mvc/UrlTest.php +++ /dev/null @@ -1,173 +0,0 @@ -di = $this->setupDI(); - $this->url = new Url(); - } - - /** - * Tests the base url - * - * @test - * @author Nikolaos Dimopoulos - * @since 2014-09-04 - */ - public function shouldGetCorrectUrlWithServer()//+ - { - $this->specify( - 'The base url is not correct', - function ($params, $expected) { - $_SERVER['PHP_SELF'] = $params['server_php_self']; - $this->url->setDI($this->setupDI()); - - expect($this->url->get($params['get']))->equals($expected); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'mvc/url_test/url_to_set_server.php' - ] - ); - } - - /** - * Tests the url with a controller and action - * - * @test - * @author Nikolaos Dimopoulos - * @since 2014-09-04 - */ - public function shouldCorrectSetBaseUri()//+ - { - $this->specify( - 'URL with controller/action not correct', - function ($params, $expected) { - $this->url->setBaseUri($params['base_url']); - $this->url->setDI($this->setupDI()); - - expect($this->url->get($params['param']))->equals($expected); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'mvc/url_test/url_to_set_base_uri.php' - ] - ); - } - - /** - * Tests the url with a controller and action - * - * @test - * @author Olivier Monaco - * @since 2015-02-03 - * @issue https://github.com/phalcon/cphalcon/issues/3315 - */ - public function shouldGetCorrectUrl() - { - $this->specify( - 'Url::get with one param does not return expected value', - function ($params, $expected) { - $this->url->setBaseUri($params['base_url']); - - expect($this->url->get($params['get']))->equals($expected); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'mvc/url_test/url_to_set_without_di.php' - ] - ); - } - - /** - * Test should avoid double slash when joining baseUri to provided uri - * - * @test - * @author Olivier Monaco - * @since 2015-02-03 - * @issue https://github.com/phalcon/cphalcon/issues/3315 - */ - public function shouldGetCorrectUrlWithGetParam() - { - $this->specify( - 'Url::get with two param does not return expected value', - function ($params, $expected) { - $this->url->setBaseUri($params['base_url']); - - expect($this->url->get($params['get'], $params['second_get']))->equals($expected); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'mvc/url_test/url_to_set_without_di_two_param.php' - ] - ); - } - - /** - * Sets the environment - */ - protected function setupDI() - { - Di::reset(); - $di = new Di(); - $that = $this; - - $di->set( - 'router', - function () use ($that) { - $router = new Router(false); - $routerData = include PATH_FIXTURES . 'mvc/url_test/data_to_set_di.php'; - foreach ($routerData as $data) { - $that->getRouteAndSetRouteMethod($router, $data)->setName($data['setname']); - } - $router->removeExtraSlashes(true); - - return $router; - } - ); - - return $di; - } -} diff --git a/tests/unit/Mvc/User/Component/GetDICest.php b/tests/unit/Mvc/User/Component/GetDICest.php new file mode 100644 index 00000000000..3a524842924 --- /dev/null +++ b/tests/unit/Mvc/User/Component/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\User\Component; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\User\Component :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUserComponentGetDI(UnitTester $I) + { + $I->wantToTest("Mvc\User\Component - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/User/Component/GetEventsManagerCest.php b/tests/unit/Mvc/User/Component/GetEventsManagerCest.php new file mode 100644 index 00000000000..16658a2199f --- /dev/null +++ b/tests/unit/Mvc/User/Component/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\User\Component; + +use UnitTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\User\Component :: getEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUserComponentGetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\User\Component - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/User/Component/SetDICest.php b/tests/unit/Mvc/User/Component/SetDICest.php new file mode 100644 index 00000000000..a22497f2ffd --- /dev/null +++ b/tests/unit/Mvc/User/Component/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\User\Component; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\User\Component :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUserComponentSetDI(UnitTester $I) + { + $I->wantToTest("Mvc\User\Component - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/User/Component/SetEventsManagerCest.php b/tests/unit/Mvc/User/Component/SetEventsManagerCest.php new file mode 100644 index 00000000000..a59f4d78a33 --- /dev/null +++ b/tests/unit/Mvc/User/Component/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\User\Component; + +use UnitTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\User\Component :: setEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUserComponentSetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\User\Component - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/User/Component/UnderscoreGetCest.php b/tests/unit/Mvc/User/Component/UnderscoreGetCest.php new file mode 100644 index 00000000000..65f331545d5 --- /dev/null +++ b/tests/unit/Mvc/User/Component/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\User\Component; + +use UnitTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Mvc\User\Component :: __get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUserComponentUnderscoreGet(UnitTester $I) + { + $I->wantToTest("Mvc\User\Component - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/User/Module/GetDICest.php b/tests/unit/Mvc/User/Module/GetDICest.php new file mode 100644 index 00000000000..01ebaa412bc --- /dev/null +++ b/tests/unit/Mvc/User/Module/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\User\Module; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\User\Module :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUserModuleGetDI(UnitTester $I) + { + $I->wantToTest("Mvc\User\Module - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/User/Module/GetEventsManagerCest.php b/tests/unit/Mvc/User/Module/GetEventsManagerCest.php new file mode 100644 index 00000000000..7cc55fb10f5 --- /dev/null +++ b/tests/unit/Mvc/User/Module/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\User\Module; + +use UnitTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\User\Module :: getEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUserModuleGetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\User\Module - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/User/Module/SetDICest.php b/tests/unit/Mvc/User/Module/SetDICest.php new file mode 100644 index 00000000000..3ce860970f4 --- /dev/null +++ b/tests/unit/Mvc/User/Module/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\User\Module; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\User\Module :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUserModuleSetDI(UnitTester $I) + { + $I->wantToTest("Mvc\User\Module - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/User/Module/SetEventsManagerCest.php b/tests/unit/Mvc/User/Module/SetEventsManagerCest.php new file mode 100644 index 00000000000..b6ee5e2e9c5 --- /dev/null +++ b/tests/unit/Mvc/User/Module/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\User\Module; + +use UnitTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\User\Module :: setEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUserModuleSetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\User\Module - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/User/Module/UnderscoreGetCest.php b/tests/unit/Mvc/User/Module/UnderscoreGetCest.php new file mode 100644 index 00000000000..f1c6c72b413 --- /dev/null +++ b/tests/unit/Mvc/User/Module/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\User\Module; + +use UnitTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Mvc\User\Module :: __get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUserModuleUnderscoreGet(UnitTester $I) + { + $I->wantToTest("Mvc\User\Module - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/User/Plugin/GetDICest.php b/tests/unit/Mvc/User/Plugin/GetDICest.php new file mode 100644 index 00000000000..5df7d327eb8 --- /dev/null +++ b/tests/unit/Mvc/User/Plugin/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\User\Plugin; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\User\Plugin :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUserPluginGetDI(UnitTester $I) + { + $I->wantToTest("Mvc\User\Plugin - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/User/Plugin/GetEventsManagerCest.php b/tests/unit/Mvc/User/Plugin/GetEventsManagerCest.php new file mode 100644 index 00000000000..833d6adf29f --- /dev/null +++ b/tests/unit/Mvc/User/Plugin/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\User\Plugin; + +use UnitTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\User\Plugin :: getEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUserPluginGetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\User\Plugin - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/User/Plugin/SetDICest.php b/tests/unit/Mvc/User/Plugin/SetDICest.php new file mode 100644 index 00000000000..2b0202179c4 --- /dev/null +++ b/tests/unit/Mvc/User/Plugin/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\User\Plugin; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\User\Plugin :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUserPluginSetDI(UnitTester $I) + { + $I->wantToTest("Mvc\User\Plugin - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/User/Plugin/SetEventsManagerCest.php b/tests/unit/Mvc/User/Plugin/SetEventsManagerCest.php new file mode 100644 index 00000000000..d09702c608d --- /dev/null +++ b/tests/unit/Mvc/User/Plugin/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\User\Plugin; + +use UnitTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\User\Plugin :: setEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUserPluginSetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\User\Plugin - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/User/Plugin/UnderscoreGetCest.php b/tests/unit/Mvc/User/Plugin/UnderscoreGetCest.php new file mode 100644 index 00000000000..562c1394d5b --- /dev/null +++ b/tests/unit/Mvc/User/Plugin/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\User\Plugin; + +use UnitTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Mvc\User\Plugin :: __get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcUserPluginUnderscoreGet(UnitTester $I) + { + $I->wantToTest("Mvc\User\Plugin - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/CacheCest.php b/tests/unit/Mvc/View/CacheCest.php new file mode 100644 index 00000000000..e55323d2eb0 --- /dev/null +++ b/tests/unit/Mvc/View/CacheCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class CacheCest +{ + /** + * Tests Phalcon\Mvc\View :: cache() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewCache(UnitTester $I) + { + $I->wantToTest("Mvc\View - cache()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/CleanTemplateAfterCest.php b/tests/unit/Mvc/View/CleanTemplateAfterCest.php new file mode 100644 index 00000000000..9c327b48086 --- /dev/null +++ b/tests/unit/Mvc/View/CleanTemplateAfterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class CleanTemplateAfterCest +{ + /** + * Tests Phalcon\Mvc\View :: cleanTemplateAfter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewCleanTemplateAfter(UnitTester $I) + { + $I->wantToTest("Mvc\View - cleanTemplateAfter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/CleanTemplateBeforeCest.php b/tests/unit/Mvc/View/CleanTemplateBeforeCest.php new file mode 100644 index 00000000000..86ed2a0d15c --- /dev/null +++ b/tests/unit/Mvc/View/CleanTemplateBeforeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class CleanTemplateBeforeCest +{ + /** + * Tests Phalcon\Mvc\View :: cleanTemplateBefore() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewCleanTemplateBefore(UnitTester $I) + { + $I->wantToTest("Mvc\View - cleanTemplateBefore()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/ConstructCest.php b/tests/unit/Mvc/View/ConstructCest.php new file mode 100644 index 00000000000..8e27a9e0641 --- /dev/null +++ b/tests/unit/Mvc/View/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\View :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewConstruct(UnitTester $I) + { + $I->wantToTest("Mvc\View - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/DisableCest.php b/tests/unit/Mvc/View/DisableCest.php new file mode 100644 index 00000000000..a4ba0087079 --- /dev/null +++ b/tests/unit/Mvc/View/DisableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class DisableCest +{ + /** + * Tests Phalcon\Mvc\View :: disable() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewDisable(UnitTester $I) + { + $I->wantToTest("Mvc\View - disable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/DisableLevelCest.php b/tests/unit/Mvc/View/DisableLevelCest.php new file mode 100644 index 00000000000..e0a11332a6f --- /dev/null +++ b/tests/unit/Mvc/View/DisableLevelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class DisableLevelCest +{ + /** + * Tests Phalcon\Mvc\View :: disableLevel() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewDisableLevel(UnitTester $I) + { + $I->wantToTest("Mvc\View - disableLevel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/EnableCest.php b/tests/unit/Mvc/View/EnableCest.php new file mode 100644 index 00000000000..e9c8afc4d3b --- /dev/null +++ b/tests/unit/Mvc/View/EnableCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class EnableCest +{ + /** + * Tests Phalcon\Mvc\View :: enable() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEnable(UnitTester $I) + { + $I->wantToTest("Mvc\View - enable()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/ConstructCest.php b/tests/unit/Mvc/View/Engine/ConstructCest.php new file mode 100644 index 00000000000..80bbef8d059 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\View\Engine :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineConstruct(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/GetContentCest.php b/tests/unit/Mvc/View/Engine/GetContentCest.php new file mode 100644 index 00000000000..7cc70d05e16 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/GetContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine; + +use UnitTester; + +class GetContentCest +{ + /** + * Tests Phalcon\Mvc\View\Engine :: getContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineGetContent(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine - getContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/GetDICest.php b/tests/unit/Mvc/View/Engine/GetDICest.php new file mode 100644 index 00000000000..a85f8d2a8a1 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\View\Engine :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineGetDI(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/GetEventsManagerCest.php b/tests/unit/Mvc/View/Engine/GetEventsManagerCest.php new file mode 100644 index 00000000000..0c21aeed018 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine; + +use UnitTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\View\Engine :: getEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineGetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/GetViewCest.php b/tests/unit/Mvc/View/Engine/GetViewCest.php new file mode 100644 index 00000000000..3ab2b52547a --- /dev/null +++ b/tests/unit/Mvc/View/Engine/GetViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine; + +use UnitTester; + +class GetViewCest +{ + /** + * Tests Phalcon\Mvc\View\Engine :: getView() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineGetView(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine - getView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/PartialCest.php b/tests/unit/Mvc/View/Engine/PartialCest.php new file mode 100644 index 00000000000..08e367abd4d --- /dev/null +++ b/tests/unit/Mvc/View/Engine/PartialCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine; + +use UnitTester; + +class PartialCest +{ + /** + * Tests Phalcon\Mvc\View\Engine :: partial() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEnginePartial(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine - partial()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Php/ConstructCest.php b/tests/unit/Mvc/View/Engine/Php/ConstructCest.php new file mode 100644 index 00000000000..1414d71c917 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Php/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Php; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Php :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEnginePhpConstruct(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Php - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Php/GetContentCest.php b/tests/unit/Mvc/View/Engine/Php/GetContentCest.php new file mode 100644 index 00000000000..1e4f152b2e6 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Php/GetContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Php; + +use UnitTester; + +class GetContentCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Php :: getContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEnginePhpGetContent(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Php - getContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Php/GetDICest.php b/tests/unit/Mvc/View/Engine/Php/GetDICest.php new file mode 100644 index 00000000000..adcc5ad7d2d --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Php/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Php; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Php :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEnginePhpGetDI(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Php - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Php/GetEventsManagerCest.php b/tests/unit/Mvc/View/Engine/Php/GetEventsManagerCest.php new file mode 100644 index 00000000000..9af1622507c --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Php/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Php; + +use UnitTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Php :: getEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEnginePhpGetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Php - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Php/GetViewCest.php b/tests/unit/Mvc/View/Engine/Php/GetViewCest.php new file mode 100644 index 00000000000..d1fd8f520e6 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Php/GetViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Php; + +use UnitTester; + +class GetViewCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Php :: getView() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEnginePhpGetView(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Php - getView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Php/PartialCest.php b/tests/unit/Mvc/View/Engine/Php/PartialCest.php new file mode 100644 index 00000000000..88b54750d20 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Php/PartialCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Php; + +use UnitTester; + +class PartialCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Php :: partial() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEnginePhpPartial(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Php - partial()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Php/RenderCest.php b/tests/unit/Mvc/View/Engine/Php/RenderCest.php new file mode 100644 index 00000000000..204dfe5896b --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Php/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Php; + +use UnitTester; + +class RenderCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Php :: render() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEnginePhpRender(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Php - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Php/SetDICest.php b/tests/unit/Mvc/View/Engine/Php/SetDICest.php new file mode 100644 index 00000000000..c39549c5dcb --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Php/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Php; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Php :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEnginePhpSetDI(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Php - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Php/SetEventsManagerCest.php b/tests/unit/Mvc/View/Engine/Php/SetEventsManagerCest.php new file mode 100644 index 00000000000..ba3d828499c --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Php/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Php; + +use UnitTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Php :: setEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEnginePhpSetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Php - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Php/UnderscoreGetCest.php b/tests/unit/Mvc/View/Engine/Php/UnderscoreGetCest.php new file mode 100644 index 00000000000..09d20db962d --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Php/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Php; + +use UnitTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Php :: __get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEnginePhpUnderscoreGet(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Php - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/RenderCest.php b/tests/unit/Mvc/View/Engine/RenderCest.php new file mode 100644 index 00000000000..1a02b6e0d51 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine; + +use UnitTester; + +class RenderCest +{ + /** + * Tests Phalcon\Mvc\View\Engine :: render() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineRender(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/SetDICest.php b/tests/unit/Mvc/View/Engine/SetDICest.php new file mode 100644 index 00000000000..e9dd1daacb4 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\View\Engine :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineSetDI(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/SetEventsManagerCest.php b/tests/unit/Mvc/View/Engine/SetEventsManagerCest.php new file mode 100644 index 00000000000..63df709c5f7 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine; + +use UnitTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\View\Engine :: setEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineSetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/UnderscoreGetCest.php b/tests/unit/Mvc/View/Engine/UnderscoreGetCest.php new file mode 100644 index 00000000000..a24474d1733 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine; + +use UnitTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Mvc\View\Engine :: __get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineUnderscoreGet(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/CallMacroCest.php b/tests/unit/Mvc/View/Engine/Volt/CallMacroCest.php new file mode 100644 index 00000000000..7418f43c707 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/CallMacroCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt; + +use UnitTester; + +class CallMacroCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt :: callMacro() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCallMacro(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt - callMacro()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/AddExtensionCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/AddExtensionCest.php new file mode 100644 index 00000000000..0f23f7b89b7 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/AddExtensionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class AddExtensionCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: addExtension() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerAddExtension(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - addExtension()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/AddFilterCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/AddFilterCest.php new file mode 100644 index 00000000000..94fe74b1753 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/AddFilterCest.php @@ -0,0 +1,94 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use Phalcon\Mvc\View\Engine\Volt\Compiler; +use UnitTester; + +class AddFilterCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: addFilter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerAddFilter(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - addFilter()"); + $examples = $this->getVoltAddFilter(); + foreach ($examples as $item) { + $name = $item[0]; + $filter = $item[1]; + $voltName = $item[2]; + $expected = $item[3]; + + $volt = new Compiler(); + $volt->addFilter($name, $filter); + $actual = $volt->compileString($voltName); + $I->assertEquals($expected, $actual); + } + } + + /** + * @return array + */ + private function getVoltAddFilter(): array + { + return [ + ['reverse', 'strrev', '{{ "hello"|reverse }}', ''], + ]; + } + + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: addFilter() - closure + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerAddFilterClosure(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - addFilter() - closure"); + $examples = $this->getVoltAddFilterClosure(); + foreach ($examples as $item) { + $name = $item[0]; + $filter = $item[1]; + $voltName = $item[2]; + $expected = $item[3]; + + $volt = new Compiler(); + $volt->addFilter( + $name, + function ($arguments) use ($filter) { + return $filter . '(",", ' . $arguments . ')'; + } + ); + + $actual = $volt->compileString($voltName); + $I->assertEquals($expected, $actual); + } + } + + /** + * @return array + */ + private function getVoltAddFilterClosure(): array + { + return [ + ['separate', 'explode', '{{ "1,2,3,4"|separate }}', ''], + ]; + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/AddFunctionCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/AddFunctionCest.php new file mode 100644 index 00000000000..21f8f3e5295 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/AddFunctionCest.php @@ -0,0 +1,96 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use Phalcon\Mvc\View\Engine\Volt\Compiler; +use UnitTester; + +class AddFunctionCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: addFunction() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2017-01-17 + */ + public function mvcViewEngineVoltCompilerAddFunction(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - addFunction()"); + $examples = $this->getVoltAddFunction(); + foreach ($examples as $item) { + $name = $item[0]; + $funcName = $item[1]; + $voltName = $item[2]; + $expected = $item[3]; + + $volt = new Compiler(); + $volt->addFunction($name, $funcName); + + $actual = $volt->compileString($voltName); + $I->assertEquals($expected, $actual); + }; + } + + /** + * @return array + */ + private function getVoltAddFunction(): array + { + return [ + ['random', 'mt_rand', '{{ random() }}', ''], + ['strtotime', 'strtotime', '{{ strtotime("now") }}', ""], + ]; + } + + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: addFunction() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2017-01-17 + */ + public function mvcViewEngineVoltCompilerAddFunctionClosure(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - addFunction() - closure"); + $examples = $this->getVoltAddFunctionClosure(); + foreach ($examples as $item) { + $name = $item[0]; + $funcName = $item[1]; + $voltName = $item[2]; + $expected = $item[3]; + + $volt = new Compiler(); + $volt->addFunction( + $name, + function ($arguments) use ($funcName) { + return $funcName . '(' . $arguments . ')'; + } + ); + + $actual = $volt->compileString($voltName); + $I->assertEquals($expected, $actual); + }; + } + + /** + * @return array + */ + private function getVoltAddFunctionClosure(): array + { + return [ + ['shuffle', 'str_shuffle', '{{ shuffle("hello") }}', ''], + ]; + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/AttributeReaderCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/AttributeReaderCest.php new file mode 100644 index 00000000000..6051610991c --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/AttributeReaderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class AttributeReaderCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: attributeReader() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerAttributeReader(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - attributeReader()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileAutoEscapeCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileAutoEscapeCest.php new file mode 100644 index 00000000000..86b9ba89342 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileAutoEscapeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class CompileAutoEscapeCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compileAutoEscape() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerCompileAutoEscape(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - compileAutoEscape()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileCacheCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileCacheCest.php new file mode 100644 index 00000000000..4cdecf02f83 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileCacheCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class CompileCacheCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compileCache() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerCompileCache(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - compileCache()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileCallCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileCallCest.php new file mode 100644 index 00000000000..531fba62363 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileCallCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class CompileCallCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compileCall() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerCompileCall(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - compileCall()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileCaseCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileCaseCest.php new file mode 100644 index 00000000000..6674dd0f05d --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileCaseCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class CompileCaseCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compileCase() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerCompileCase(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - compileCase()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileCest.php new file mode 100644 index 00000000000..070540fa633 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileCest.php @@ -0,0 +1,107 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use Phalcon\Mvc\View\Engine\Volt\Compiler; +use UnitTester; + +class CompileCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compile() - extends + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2017-01-29 + */ + public function mvcViewEngineVoltCompilerCompileExtends(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - compile() - extends"); + $I->skipTest('TODO = figure out the paths of the extended files'); + $viewFile = dataFolder('fixtures/views/templates/c.volt'); + $compiledFile = $viewFile . '.php'; + + $volt = new Compiler(); + $volt->compile($viewFile); + + $expected = "[A[###[B]###]]"; + $actual = trim(file_get_contents($compiledFile)); + $I->assertEquals($expected, $actual); + $I->safeDeleteFile(dataFolder('fixtures/views/templates/a.volt%%e%%.php')); + $I->safeDeleteFile(dataFolder('fixtures/views/templates/b.volt%%e%%.php')); + $I->safeDeleteFile($compiledFile); + } + + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compile() - extends blocks + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerCompileExtendsBlocks(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - compile() - extends blocks"); + $I->skipTest('TODO = figure out the paths of the extended files'); + $viewFile = dataFolder('fixtures/views/compiler/children.volt'); + $compiledFile = $viewFile . '.php'; + $expected = '' + . '' + . '' + . 'Index - My Webpage
' + . '

Index

Welcome on my awesome homepage.

' + . ''; + + $volt = new Compiler(); + $volt->compile($viewFile); + + $actual = trim(file_get_contents($compiledFile)); + $I->assertEquals($expected, $actual); + $I->safeDeleteFile(dataFolder('fixtures/views/compiler/parent.volt%%e%%.php')); + $I->safeDeleteFile($compiledFile); + } + + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compile() - extends two + * blocks + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerCompileExtendsTwoBlocks(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - compile() - extends two blocks"); + $I->skipTest('TODO = figure out the paths of the extended files'); + $viewFile = dataFolder('fixtures/views/compiler/children2.volt'); + $compiledFile = $viewFile . '.php'; + $expected = '' + . '' + . ' ' + . ' Index - My Webpage ' + . '

Index

Welcome to my awesome homepage.

' + . '
'; + + $volt = new Compiler(); + $volt->compile($viewFile); + + $actual = trim(file_get_contents($compiledFile)); + $I->assertEquals($expected, $actual); + $I->safeDeleteFile(dataFolder('fixtures/views/compiler/parent.volt%%e%%.php')); + $I->safeDeleteFile($compiledFile); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileDoCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileDoCest.php new file mode 100644 index 00000000000..33635aa41b1 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileDoCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class CompileDoCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compileDo() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerCompileDo(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - compileDo()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileEchoCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileEchoCest.php new file mode 100644 index 00000000000..0fcababb32c --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileEchoCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class CompileEchoCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compileEcho() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerCompileEcho(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - compileEcho()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileElseIfCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileElseIfCest.php new file mode 100644 index 00000000000..102716df81a --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileElseIfCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class CompileElseIfCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compileElseIf() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerCompileElseIf(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - compileElseIf()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileFileCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileFileCest.php new file mode 100644 index 00000000000..319313982f9 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileFileCest.php @@ -0,0 +1,73 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use Phalcon\Mvc\View\Engine\Volt\Compiler; +use UnitTester; +use function dataFolder; + +class CompileFileCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compileFile() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2017-01-17 + */ + public function mvcViewEngineVoltCompilerCompileFile(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - compileFile()"); + $viewFile = dataFolder('fixtures/views/layouts/compiler.volt'); + $compileFile = $viewFile . '.php'; + $expected = ' +Clearly, the song is: getContent() ?>. +'; + + $volt = new Compiler(); + $volt->compileFile($viewFile, $compileFile); + + $actual = file_get_contents($compileFile); + $I->assertEquals($expected, $actual); + $I->safeDeleteFile($compileFile); + } + + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compileFile() + * + * @param UnitTester $I + * + * @issue https://github.com/phalcon/cphalcon/issues/13242 + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerCompileFileDefaultFilter(UnitTester $I) + { + $examples = [ + 'default' => "price) ? (10.0) : (\$robot->price)) ?>\n", + 'default_json_encode' => "\n", + ]; + + foreach ($examples as $view => $expected) { + $volt = new Compiler(); + $viewFile = sprintf('%sfixtures/views/filters/%s.volt', dataFolder(), $view); + $compiledFile = $viewFile . '.php'; + $volt->compileFile($viewFile, $compiledFile); + + $actual = file_get_contents($compiledFile); + $I->assertEquals($expected, $actual); + $I->safeDeleteFile($compiledFile); + } + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileForElseCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileForElseCest.php new file mode 100644 index 00000000000..54505101962 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileForElseCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class CompileForElseCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compileForElse() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerCompileForElse(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - compileForElse()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileForeachCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileForeachCest.php new file mode 100644 index 00000000000..b4d3ec66470 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileForeachCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class CompileForeachCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compileForeach() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerCompileForeach(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - compileForeach()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileIfCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileIfCest.php new file mode 100644 index 00000000000..7df45e13bda --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileIfCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class CompileIfCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compileIf() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerCompileIf(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - compileIf()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileIncludeCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileIncludeCest.php new file mode 100644 index 00000000000..1b801c374f2 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileIncludeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class CompileIncludeCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compileInclude() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerCompileInclude(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - compileInclude()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileMacroCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileMacroCest.php new file mode 100644 index 00000000000..cd62aa744f7 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileMacroCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class CompileMacroCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compileMacro() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerCompileMacro(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - compileMacro()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileReturnCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileReturnCest.php new file mode 100644 index 00000000000..80ed86be9cf --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileReturnCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class CompileReturnCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compileReturn() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerCompileReturn(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - compileReturn()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileSetCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileSetCest.php new file mode 100644 index 00000000000..0fb6c549046 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileSetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class CompileSetCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compileSet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerCompileSet(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - compileSet()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileStringCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileStringCest.php new file mode 100644 index 00000000000..70eca8caa3d --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileStringCest.php @@ -0,0 +1,282 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use Phalcon\Mvc\View\Engine\Volt\Compiler; +use Phalcon\Mvc\View\Exception; +use UnitTester; + +class CompileStringCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compileString() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2017-01-17 + */ + public function mvcViewEngineVoltCompilerCompileString(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - compileString()"); + $examples = $this->getVoltCompileString(); + foreach ($examples as $item) { + $param = $item[0]; + $expected = $item[1]; + $volt = new Compiler(); + + $actual = $volt->compileString($param); + $I->assertEquals($expected, $actual); + }; + } + + /** + * @return array + */ + private function getVoltCompileString(): array + { + return [ + ['', ''], + //Comments + ['{# hello #}', ''], + ['{# hello #}{# other comment #}', ''], + //Common Expressions + ['hello', 'hello'], + ['{{ "hello" }}', ""], + ['{{ "hello" }}{{ "hello" }}', ""], + ['{{ "hello" }}-{{ "hello" }}', "-"], + ['-{{ "hello" }}{{ "hello" }}-', "--"], + ['-{{ "hello" }}-{{ "hello" }}-', "---"], + ['Some = {{ 100+50 }}', "Some = "], + ['Some = {{ 100-50 }}', "Some = "], + ['Some = {{ 100*50 }}', "Some = "], + ['Some = {{ 100/50 }}', "Some = "], + ['Some = {{ 100%50 }}', "Some = "], + ['Some = {{ 100~50 }}', "Some = "], + //Unary operators + ['{{ -10 }}', ""], + ['{{ !10 }}', ""], + ['{{ !a }}', ''], + ['{{ not a }}', ''], + //Arrays + ['{% set a = [1, 2, 3, 4] %}', ''], + ['{% set a = ["hello", 2, 1.3, false, true, null] %}', ''], + [ + '{% set a = ["hello", 2, 3, false, true, null, [1, 2, "hola"]] %}', + '', + ], + [ + "{% set a = ['first': 1, 'second': 2, 'third': 3] %}", + ' 1, \'second\' => 2, \'third\' => 3]; ?>', + ], + //Array access + ['{{ a[0 ]}}', ''], + ['{{ a[0 ] [ 1]}}', ''], + ['{{ a[0] [ "hello"] }}', ''], + ['{{ a[0] [1.2] [false] [true] }}', ''], + //Attribute access + ['{{ a.b }}', 'b ?>'], + ['{{ a.b.c }}', 'b->c ?>'], + //Ranges + ['{{ 1..100 }}', ''], + ['{{ "Z".."A" }}', ''], + ["{{ 'a'..'z' }}", ''], + ["{{ 'a' .. 'z' }}", ''], + //Calling functions + ['{{ content() }}', 'getContent() ?>'], + ['{{ get_content() }}', 'getContent() ?>'], + ["{{ partial('hello/x') }}", 'partial(\'hello/x\') ?>'], + ['{{ dump(a) }}', ''], + ["{{ date('Y-m-d', time()) }}", ''], + ['{{ robots.getPart(a) }}', 'getPart($a) ?>'], + //Phalcon\Tag helpers + ["{{ link_to('hello', 'some-link') }}", 'tag->linkTo([\'hello\', \'some-link\']) ?>'], + [ + "{{ form('action': 'save/products', 'method': 'post') }}", + 'tag->form([\'action\' => \'save/products\', \'method\' => \'post\']) ?>', + ], + [ + '{{ stylesheet_link(config.cdn.css.bootstrap, config.cdn.local) }}', + 'tag->stylesheetLink($config->cdn->css->bootstrap, $config->cdn->local) ?>', + ], + ["{{ javascript_include('js/some.js') }}", 'tag->javascriptInclude(\'js/some.js\') ?>'], + ["{{ image('img/logo.png', 'width': 80) }}", "tag->image(['img/logo.png', 'width' => 80]) ?>"], + [ + "{{ email_field('email', 'class': 'form-control', 'placeholder': 'Email Address') }}", + "tag->emailField(['email', 'class' => 'form-control', 'placeholder' => 'Email Address']) ?>", + ], + //Filters + ['{{ "hello"|e }}', 'escaper->escapeHtml(\'hello\') ?>'], + ['{{ "hello"|escape }}', 'escaper->escapeHtml(\'hello\') ?>'], + ['{{ "hello"|trim }}', ''], + ['{{ "hello"|striptags }}', ''], + ['{{ "hello"|json_encode }}', ''], + ['{{ "hello"|url_encode }}', ''], + ['{{ "hello"|uppercase }}', ''], + ['{{ "hello"|lowercase }}', ''], + ['{{ ("hello" ~ "lol")|e|length }}', 'length($this->escaper->escapeHtml((\'hello\' . \'lol\'))) ?>'], + //Filters with parameters + ['{{ "My name is %s, %s"|format(name, "thanks") }}', ""], + [ + '{{ "some name"|convert_encoding("utf-8", "latin1") }}', + "convertEncoding('some name', 'utf-8', 'latin1') ?>", + ], + //if statement + ['{% if a==b %} hello {% endif %}', ' hello '], + ['{% if a!=b %} hello {% endif %}', ' hello '], + ['{% if a is not b %} hello {% endif %}', ' hello '], + ['{% if a hello '], + ['{% if a>b %} hello {% endif %}', ' $b) { ?> hello '], + ['{% if a>=b %} hello {% endif %}', '= $b) { ?> hello '], + ['{% if a<=b %} hello {% endif %}', ' hello '], + ['{% if a===b %} hello {% endif %}', ' hello '], + ['{% if a!==b %} hello {% endif %}', ' hello '], + ['{% if a==b and c==d %} hello {% endif %}', ' hello '], + ['{% if a==b or c==d %} hello {% endif %}', ' hello '], + ['{% if a is odd %} hello {% endif %}', ' hello '], + ['{% if a is even %} hello {% endif %}', ' hello '], + ['{% if a is empty %} hello {% endif %}', ' hello '], + ['{% if a is not empty %} hello {% endif %}', ' hello '], + ['{% if a is numeric %} hello {% endif %}', ' hello '], + ['{% if a is not numeric %} hello {% endif %}', ' hello '], + ['{% if a is scalar %} hello {% endif %}', ' hello '], + ['{% if a is not scalar %} hello {% endif %}', ' hello '], + [ + '{% if a is iterable %} hello {% endif %}', + ' hello ', + ], + [ + '{% if a is not iterable %} hello {% endif %}', + ' hello ', + ], + ['{% if a is sameas(false) %} hello {% endif %}', ' hello '], + ['{% if a is sameas(b) %} hello {% endif %}', ' hello '], + ['{% if a is divisibleby(3) %} hello {% endif %}', ' hello '], + ['{% if a is divisibleby(b) %} hello {% endif %}', ' hello '], + ['{% if a is defined %} hello {% endif %}', ' hello '], + ['{% if a is not defined %} hello {% endif %}', ' hello '], + [ + '{% if a==b %} hello {% else %} not hello {% endif %}', + ' hello not hello ', + ], + [ + '{% if a==b %} {% if c==d %} hello {% endif %} {% else %} not hello {% endif %}', + ' hello not hello ', + ], + [ + '{% if a==b %} {% if c==d %} hello {% else %} not hello {% endif %}{% endif %}', + ' hello not hello ', + ], + [ + '{% if a==b %} hello {% else %} {% if c==d %} not hello {% endif %} {% endif %}', + ' hello not hello ', + ], + [ + '{% if a is empty or a is defined %} hello {% else %} not hello {% endif %}', + ' hello not hello ', + ], + [ + '{% if a is even or b is odd %} hello {% else %} not hello {% endif %}', + ' hello not hello ', + ], + //for statement + ['{% for a in b %} hello {% endfor %}', ' hello '], + ['{% for a in b[0] %} hello {% endfor %}', ' hello '], + ['{% for a in b.c %} hello {% endfor %}', 'c as $a) { ?> hello '], + [ + '{% for key, value in [0, 1, 3, 5, 4] %} hello {% endfor %}', + ' $value) { ?> hello ', + ], + [ + '{% for key, value in [0, 1, 3, 5, 4] if key!=3 %} hello {% endfor %}', + ' $value) { if ($key != 3) { ?> hello ', + ], + ['{% for a in 1..10 %} hello {% endfor %}', ' hello '], + [ + '{% for a in 1..10 if a is even %} hello {% endfor %}', + ' hello ', + ], + [ + '{% for a in 1..10 %} {% for b in 1..10 %} hello {% endfor %} {% endfor %}', + ' hello ', + ], + ['{% for a in 1..10 %}{% break %}{% endfor %}', ''], + [ + '{% for a in 1..10 %}{% continue %}{% endfor %}', + '', + ], + //set statement + ['{% set a = 1 %}', ''], + ['{% set a = a-1 %}', ''], + ['{% set a = 1.2 %}', ''], + ['{% set a = 1.2+1*(20/b) and c %}', ''], + // Cache statement + [ + '{% cache somekey %} hello {% endcache %}', + 'di->get(\'viewCache\'); $_cacheKey[$somekey] = $_cache[$somekey]->start($somekey); if ($_cacheKey[$somekey] === null) { ?> hello save($somekey); } else { echo $_cacheKey[$somekey]; } ?>', + ], + [ + '{% set lifetime = 500 %}{% cache somekey lifetime %} hello {% endcache %}', + 'di->get(\'viewCache\'); $_cacheKey[$somekey] = $_cache[$somekey]->start($somekey, $lifetime); if ($_cacheKey[$somekey] === null) { ?> hello save($somekey, null, $lifetime); } else { echo $_cacheKey[$somekey]; } ?>', + ], + [ + '{% cache somekey 500 %} hello {% endcache %}', + 'di->get(\'viewCache\'); $_cacheKey[$somekey] = $_cache[$somekey]->start($somekey, 500); if ($_cacheKey[$somekey] === null) { ?> hello save($somekey, null, 500); } else { echo $_cacheKey[$somekey]; } ?>', + ], + //Autoescape mode + [ + '{{ "hello" }}{% autoescape true %}{{ "hello" }}{% autoescape false %}{{ "hello" }}{% endautoescape %}{{ "hello" }}{% endautoescape %}{{ "hello" }}', + "escaper->escapeHtml('hello') ?>escaper->escapeHtml('hello') ?>", + ], + //Mixed + ['{# some comment #}{{ "hello" }}{# other comment }}', ""], + ]; + } + + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compileString() - syntax + * error + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2017-01-17 + */ + public function mvcViewEngineVoltCompilerCompileStringSyntaxError(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - compileString() - syntax error"); + $examples = $this->getVoltCompileStringErrors(); + foreach ($examples as $item) { + $code = $item[0]; + $message = $item[1]; + $volt = new Compiler(); + $I->expectThrowable( + new Exception($message), + function () use ($volt, $code) { + $volt->compileString($code); + } + ); + } + } + + /** + * @return array + */ + private function getVoltCompileStringErrors(): array + { + return [ + ['{{ "hello"|unknown }}', 'Unknown filter "unknown" in eval code on line 1'], + ['{{ "hello"|unknown(1, 2, 3) }}', 'Unknown filter "unknown" in eval code on line 1'], + ['{{ "hello"|(a-1) }}', 'Unknown filter type in eval code on line 1'], + ]; + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileSwitchCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileSwitchCest.php new file mode 100644 index 00000000000..e9e9b671365 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/CompileSwitchCest.php @@ -0,0 +1,50 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use Phalcon\Mvc\View\Engine\Volt\Compiler; +use UnitTester; +use function dataFolder; + +class CompileSwitchCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: compileSwitch() - empty + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerCompileSwitchEmpty(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - compileSwitch()"); + + $viewFile = dataFolder('fixtures/views/switch-case/simple-usage.volt'); + $compileFile = $viewFile . '.php'; + $volt = new Compiler(); + $volt->compileFile($viewFile, $compileFile); + + $actual = file_get_contents($compileFile); + $expected = "\n" . + "\n" . + "Hello username\n" . + "\n" . + "!\n" . + "\n" . + "\n" . + "Who are you?\n" . + "\n"; + $I->assertEquals($expected, $actual); + $I->safeDeleteFile($compileFile); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/ConstructCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/ConstructCest.php new file mode 100644 index 00000000000..9b81dddcd7b --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerConstruct(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/ExpressionCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/ExpressionCest.php new file mode 100644 index 00000000000..c014dd6dc1d --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/ExpressionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class ExpressionCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: expression() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerExpression(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - expression()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/Filters/DefaultTest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/Filters/DefaultTest.php deleted file mode 100644 index f59b83ecdbd..00000000000 --- a/tests/unit/Mvc/View/Engine/Volt/Compiler/Filters/DefaultTest.php +++ /dev/null @@ -1,66 +0,0 @@ -specify( - 'Unable to parse "default" filter', - function () { - $volt = new Compiler(); - - $intermediate = $volt->parse('{{ robot.price|default(10.0) }}'); - - expect(is_array($intermediate))->true(); - expect($intermediate)->count(1); - } - ); - } - - /** - * @test - * @issue https://github.com/phalcon/cphalcon/issues/13242 - */ - public function shouldCompileDefaulFilter() - { - $this->specify( - 'Unable to compile "default" filter', - function () { - $volt = new Compiler(); - - $view = env('PATH_DATA') . 'views/filters/default.volt'; - $volt->compileFile($view, $view . '.php'); - - $compilation = file_get_contents($view . '.php'); - $expected = "price) ? (10.0) : (\$robot->price)) ?>\n"; - - expect($compilation)->same($expected); - - - $view = env('PATH_DATA') . 'views/filters/default_json_encode.volt'; - $volt->compileFile($view, $view . '.php'); - - $compilation = file_get_contents($view . '.php'); - $expected = "\n"; - - expect($compilation)->same($expected); - } - ); - } -} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/FireExtensionEventCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/FireExtensionEventCest.php new file mode 100644 index 00000000000..178d17770d6 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/FireExtensionEventCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class FireExtensionEventCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: fireExtensionEvent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerFireExtensionEvent(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - fireExtensionEvent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/FunctionCallCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/FunctionCallCest.php new file mode 100644 index 00000000000..16e00b9abee --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/FunctionCallCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class FunctionCallCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: functionCall() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerFunctionCall(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - functionCall()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/GetCompiledTemplatePathCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/GetCompiledTemplatePathCest.php new file mode 100644 index 00000000000..8720c5f10cc --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/GetCompiledTemplatePathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class GetCompiledTemplatePathCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: getCompiledTemplatePath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerGetCompiledTemplatePath(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - getCompiledTemplatePath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/GetDICest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/GetDICest.php new file mode 100644 index 00000000000..70173850fc3 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerGetDI(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/GetExtensionsCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/GetExtensionsCest.php new file mode 100644 index 00000000000..010ac45eaab --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/GetExtensionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class GetExtensionsCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: getExtensions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerGetExtensions(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - getExtensions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/GetFiltersCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/GetFiltersCest.php new file mode 100644 index 00000000000..facb640319a --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/GetFiltersCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class GetFiltersCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: getFilters() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerGetFilters(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - getFilters()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/GetFunctionsCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/GetFunctionsCest.php new file mode 100644 index 00000000000..ea21a6fbda9 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/GetFunctionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class GetFunctionsCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: getFunctions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerGetFunctions(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - getFunctions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/GetOptionCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/GetOptionCest.php new file mode 100644 index 00000000000..d60de6fc243 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/GetOptionCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class GetOptionCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: getOption() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerGetOption(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - getOption()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/GetOptionsCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/GetOptionsCest.php new file mode 100644 index 00000000000..1e854187ce9 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/GetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class GetOptionsCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: getOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerGetOptions(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - getOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/GetTemplatePathCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/GetTemplatePathCest.php new file mode 100644 index 00000000000..285beb83104 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/GetTemplatePathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class GetTemplatePathCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: getTemplatePath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerGetTemplatePath(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - getTemplatePath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/GetUniquePrefixCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/GetUniquePrefixCest.php new file mode 100644 index 00000000000..138b7bb4de6 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/GetUniquePrefixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class GetUniquePrefixCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: getUniquePrefix() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerGetUniquePrefix(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - getUniquePrefix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/ParseCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/ParseCest.php new file mode 100644 index 00000000000..341d7cd5361 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/ParseCest.php @@ -0,0 +1,318 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use Phalcon\Mvc\View\Engine\Volt\Compiler; +use Phalcon\Mvc\View\Exception; +use UnitTester; + +class ParseCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: parse() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2017-01-15 + */ + public function mvcViewEngineVoltCompilerParse(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - parse()"); + $examples = $this->getVoltParse(); + foreach ($examples as $item) { + $param = $item[0]; + $count = $item[1]; + $volt = new Compiler(); + $actual = $volt->parse($param); + + $I->assertTrue(is_array($actual)); + $I->assertCount($count, $actual); + } + } + + private function getVoltParse(): array + { + return [ + ['', 0], + //Comments + ['{# hello #}', 0], + ['{# hello #}{# other comment #}', 0], + //Common Expressions + ['hello', 1], + ['{{ 1 }}', 1], + ['{{ 1.2 }}', 1], + ['{{ false }}', 1], + ['{{ true }}', 1], + ['{{ null }}', 1], + ['{{ "hello" }}', 1], + ['{{ "\'hello\'" }}', 1], + ['{{ "hello" }}{{ "hello" }}', 2], + ['{{ "hello" }}-{{ "hello" }}', 3], + ['-{{ "hello" }}{{ "hello" }}-', 4], + ['-{{ "hello" }}-{{ "hello" }}-', 5], + ['Some = {{ 100+50 }}', 2], + ['Some = {{ 100-50 }}', 2], + ['Some = {{ 100*50 }}', 2], + ['Some = {{ 100/50 }}', 2], + ['Some = {{ 100%50 }}', 2], + ['Some = {{ 100~50 }}', 2], + ['{{ a[0 ]}}', 1], + ['{{ a[0 ][1]}}', 1], + ['{{ a[0]["hello"] }}', 1], + ['{{ a[0][1.2][false][true] }}', 1], + ['{{ a[0][1.2][false][true][b] }}', 1], + //Attribute access + ['{{ a.b }}', 1], + ['{{ a.b.c }}', 1], + ['{{ (a.b).c }}', 1], + ['{{ a.(b.c) }}', 1], + //Ranges + ['{{ 1..100 }}', 1], + ['{{ "Z".."A" }}', 1], + ["{{ 'a'..'z' }}", 1], + ["{{ 'a' .. 'z' }}", 1], + //Unary operators + ['{{ -10 }}', 1], + ['{{ !10 }}', 1], + ['{{ !a }}', 1], + ['{{ not a }}', 1], + ['{{ 10-- }}', 1], + ['{{ !!10 }}', 1], + //Calling functions + ['{{ contents() }}', 1], + ["{{ link_to('hello', 'some-link') }}", 1], + ["{{ form('action': 'save/products', 'method': 'post') }}", 1], + ["{{ form('action': 'save/products', 'method': other_func(1, 2, 3)) }}", 1], + ["{{ partial('hello/x') }}", 1], + ['{{ dump(a) }}', 1], + ["{{ date('Y-m-d', time()) }}", 1], + ['{{ flash.outputMessages() }}', 1], + ["{{ session.get('hello') }}", 1], + ["{{ user.session.get('hello') }}", 1], + ["{{ user.session.get(request.getPost('token')) }}", 1], + ["{{ a[0]('hello') }}", 1], + ["{{ [a[0]('hello').name]|keys }}", 1], + //Arrays + ['{{ [1, 2, 3, 4] }}', 1], + ['{{ ["hello", 2, 1.3, false, true, null] }}', 1], + ['{{ ["hello", 2, 3, false, true, null, [1, 2, "hola"]] }}', 1], + ["{{ ['first': 1, 'second': 2, 'third': 3] }}", 1], + //Filters + ['{{ "hello"|e }}', 1], + ['{{ ("hello" ~ "lol")|e|length }}', 1], + ['{{ (("hello" ~ "lol")|e|length)|trim }}', 1], + ['{{ "a".."z"|join(",") }}', 1], + ['{{ "My real name is %s"|format(name) }}', 1], + ['{{ robot.price|default(10.0) }}', 1], + //if statement + ['{% if a==b %} hello {% endif %}', 1], + ['{% if a!=b %} hello {% endif %}', 1], + ['{% if a!=b %} hello {% endif %}', 1], + ['{% if ab %} hello {% endif %}', 1], + ['{% if a<=b %} hello {% endif %}', 1], + ['{% if a>=b %} hello {% endif %}', 1], + ['{% if a===b %} hello {% endif %}', 1], + ['{% if a!==b %} hello {% endif %}', 1], + ['{% if a and b %} hello {% endif %}', 1], + ['{% if a or b %} hello {% endif %}', 1], + ['{% if a is defined %} hello {% endif %}', 1], + ['{% if a is not defined %} hello {% endif %}', 1], + ['{% if a is 100 %} hello {% endif %}', 1], + ['{% if a is not 100 %} hello {% endif %}', 1], + ['{% if a==b and c==d %} hello {% endif %}', 1], + ['{% if a==b or c==d %} hello {% endif %}', 1], + ['{% if a==b %} hello {% else %} not hello {% endif %}', 1], + ['{% if a==b %} {% if c==d %} hello {% endif %} {% else %} not hello {% endif %}', 1], + ['{% if a==b %} hello {% else %} {% if c==d %} not hello {% endif %} {% endif %}', 1], + //for statement + ['{% for a in b %} hello {% endfor %}', 1], + ['{% for a in b[0] %} hello {% endfor %}', 1], + ['{% for a in b.c %} hello {% endfor %}', 1], + ['{% for a in 1..10 %} hello {% endfor %}', 1], + ['{% for a in 1..10 if a < 5 and a > 7 %} hello {% endfor %}', 1], + ['{% for a in 1..10 %} {% for b in 1..10 %} hello {% endfor %} {% endfor %}', 1], + ['{% for k, v in [1, 2, 3] %} hello {% endfor %}', 1], + ['{% for k, v in [1, 2, 3] if v is odd %} hello {% endfor %}', 1], + ['{% for v in [1, 2, 3] %} {% break %} {% endfor %}', 1], + ['{% for v in [1, 2] %} {% continue %} {% endfor %}', 1], + //set statement + ['{% set a = 1 %}', 1], + ['{% set a = b %}', 1], + ['{% set a = 1.2 %}', 1], + ['{% set a = 1.2+1*(20/b) and c %}', 1], + ['{% set a[0] = 1 %}', 1], + ['{% set a[0][1] = 1 %}', 1], + ['{% set a.y = 1 %}', 1], + ['{% set a.y.x = 1 %}', 1], + ['{% set a[0].y = 1 %}', 1], + ['{% set a.y[0] = 1 %}', 1], + ['{% do 1 %}', 1], + ['{% do a + b %}', 1], + ['{% do a - 1.2 %}', 1], + ['{% do 1.2 + 1 * (20 / b) and c %}', 1], + ['{% do super()|e %}', 1], + //Autoescape + ['{% autoescape true %} {% endautoescape %}', 1], + ['{% autoescape false %} {% endautoescape %}', 1], + //Blocks + ['{% block hello %} {% endblock %}', 1], + ['{% block hello %}{% endblock %}', 1], + //Extends + ['{% extends "some/file.volt" %}', 1], + //Include + ['{% include "some/file.volt" %}', 1], + //Cache + ['{% cache sidebar %} hello {% endcache %}', 1], + ['{% cache sidebar 500 %} hello {% endcache %}', 1], + //Mixed + ['{# some comment #}{{ "hello" }}{# other comment }}', 1], + ]; + } + + /** + * /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: parse() - syntax error + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2017-01-15 + */ + public function mvcViewEngineVoltCompilerParseSyntaxError(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - parse() - syntax error"); + $examples = $this->getVoltSyntaxErrors(); + foreach ($examples as $item) { + $code = $item[0]; + $message = $item[1]; + $volt = new Compiler(); + $I->expectThrowable( + new Exception($message), + function () use ($volt, $code) { + $volt->parse($code); + } + ); + } + } + + /** + * @return array + */ + private function getVoltSyntaxErrors(): array + { + return [ + ['{{', 'Syntax error, unexpected EOF in eval code'], + ['{{ }}', 'Syntax error, unexpected EOF in eval code'], + ['{{ ++v }}', 'Syntax error, unexpected token ++ in eval code on line 1'], + [ + '{{ + ++v }}', + 'Syntax error, unexpected token ++ in eval code on line 2', + ], + [ + '{{ + + + if + for }}', + 'Syntax error, unexpected token IF in eval code on line 4', + ], + [ + '{% block some %} + {% for x in y %} + {{ ."hello".y }} + {% endfor %} + {% endblock %}', + 'Syntax error, unexpected token DOT in eval code on line 3', + ], + [ + '{# + + This is a multi-line comment + + #}{% block some %} + {# This is a single-line comment #} + {% for x in y %} + {{ "hello"++y }} + {% endfor %} + {% endblock %}', + 'Syntax error, unexpected token IDENTIFIER(y) in eval code on line 8', + ], + [ + '{# Hello #} + + {% for robot in robots %} + {{ link_to("hello", robot.id ~ ~ robot.name) }} + {% endfor %} + + ', + 'Syntax error, unexpected token ~ in eval code on line 4', + ], + [ + '\'{{ link_to("album/" ~ album.id ~ "/" ~ $album.uri, "\""") }}\'', + "Scanning error before 'album.uri, \" + * @since 2017-01-15 + */ + public function mvcViewEngineVoltCompilerParseExtendsWithError(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - parse() - extends with error"); + $examples = $this->getVoltExtendsError(); + foreach ($examples as $item) { + $code = $item[0]; + $message = $item[1]; + $volt = new Compiler(); + $I->expectThrowable( + new Exception($message), + function () use ($volt, $code) { + $volt->parse($code); + } + ); + } + } + + /** + * @return array + */ + private function getVoltExtendsError(): array + { + return [ + [ + '{{ "hello"}}{% extends "some/file.volt" %}', + 'Extends statement must be placed at the first line in the template in eval code on line 1', + ], + [ + '
{% extends "some/file.volt" %}{% set a = 1 %}
', + 'Extends statement must be placed at the first line in the template in eval code on line 1', + ], + ['{% extends "some/file.volt" %}{{ "hello"}}', 'Child templates only may contain blocks in eval code on line 1'], + [ + '{% extends "some/file.volt" %}{{% if true %}} {%endif%}', + 'Child templates only may contain blocks in eval code on line 1', + ], + ['{% extends "some/file.volt" %}{{% set a = 1 %}', 'Child templates only may contain blocks in eval code on line 1'], + ['{% extends "some/file.volt" %}{{% set a = 1 %}', 'Child templates only may contain blocks in eval code on line 1'], + ]; + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/ResolveTestCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/ResolveTestCest.php new file mode 100644 index 00000000000..38c6ad184f1 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/ResolveTestCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class ResolveTestCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: resolveTest() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerResolveTest(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - resolveTest()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/SetDICest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/SetDICest.php new file mode 100644 index 00000000000..bfde77bffc5 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerSetDI(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/SetOptionCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/SetOptionCest.php new file mode 100644 index 00000000000..8be3836aa83 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/SetOptionCest.php @@ -0,0 +1,54 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use Phalcon\Mvc\View\Engine\Volt\Compiler; +use UnitTester; + +class SetOptionCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: setOption() - autoescape + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2017-01-17 + */ + public function mvcViewEngineVoltCompilerSetOptionAutoescape(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - setOption() - autoescape"); + $examples = $this->getVoltSetOptionAutoescape(); + foreach ($examples as $item) { + $param = $item[0]; + $expected = $item[1]; + $volt = new Compiler(); + $volt->setOption('autoescape', true); + + $actual = $volt->compileString($param); + $I->assertEquals($expected, $actual); + }; + } + + /** + * @return array + */ + private function getVoltSetOptionAutoescape(): array + { + return [ + [ + '{{ "hello" }}{% autoescape true %}{{ "hello" }}{% autoescape false %}{{ "hello" }}{% endautoescape %}{{ "hello" }}{% endautoescape %}{{ "hello" }}', + "escaper->escapeHtml('hello') ?>escaper->escapeHtml('hello') ?>escaper->escapeHtml('hello') ?>escaper->escapeHtml('hello') ?>", + ], + ]; + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/SetOptionsCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/SetOptionsCest.php new file mode 100644 index 00000000000..ba5a924b383 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/SetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class SetOptionsCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: setOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerSetOptions(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - setOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/SetUniquePrefixCest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/SetUniquePrefixCest.php new file mode 100644 index 00000000000..a683adf81cd --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/Compiler/SetUniquePrefixCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt\Compiler; + +use UnitTester; + +class SetUniquePrefixCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt\Compiler :: setUniquePrefix() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltCompilerSetUniquePrefix(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt\Compiler - setUniquePrefix()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/Compiler/Statements/SwitchCaseTest.php b/tests/unit/Mvc/View/Engine/Volt/Compiler/Statements/SwitchCaseTest.php deleted file mode 100644 index c80958552a0..00000000000 --- a/tests/unit/Mvc/View/Engine/Volt/Compiler/Statements/SwitchCaseTest.php +++ /dev/null @@ -1,43 +0,0 @@ -specify( - "The Volt compiller desn't valid switch-case statement", - function () { - $volt = new Compiler(); - - $view = env('PATH_DATA') . 'views/switch-case/simple-usage.volt'; - $volt->compileFile($view, $view . '.php'); - - $compilation = file_get_contents($view . '.php'); - $expected = "\n" . - "\n" . - "Hello username\n" . - "\n" . - "!\n" . - "\n" . - "\n" . - "Who are you?\n" . - "\n"; - - expect($compilation)->same($expected); - } - ); - } -} diff --git a/tests/unit/Mvc/View/Engine/Volt/CompilerExceptionsTest.php b/tests/unit/Mvc/View/Engine/Volt/CompilerExceptionsTest.php deleted file mode 100644 index c2eca06c28c..00000000000 --- a/tests/unit/Mvc/View/Engine/Volt/CompilerExceptionsTest.php +++ /dev/null @@ -1,119 +0,0 @@ -volt = new Compiler(); - } - - /** - * Tests Compiler::parse - * - * @test - * @author Sergii Svyrydenko - * @since 2017-01-15 - */ - public function shouldThrowExceptionParseFunction() - { - $volt = $this->volt; - $this->specify( - "Volt parser doesn't throw the proper syntax error", - function ($code, $message) use ($volt) { - $this->expectException(Exception::class); - $this->expectExceptionMessage($message); - - $volt->parse($code); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'volt/compilerExceptionsTest/volt_syntax_error.php' - ] - ); - } - - /** - * Tests Compiler::compileString - * - * @test - * @author Sergii Svyrydenko - * @since 2017-01-15 - * - */ - - public function shouldThrowExceptionCompileStringFunction() - { - $volt = $this->volt; - $this->specify( - "Volt parser doesn't throw the proper runtime error", - function ($code, $message) use ($volt) { - $this->expectException(Exception::class); - $this->expectExceptionMessage($message); - - $volt->compileString($code); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'volt/compilerExceptionsTest/volt_compile_string.php' - ] - ); - } - - /** - * Tests Compiler::parse - * - * @test - * @author Sergii Svyrydenko - * @since 2017-01-15 - */ - public function testVoltExtendsError() - { - $volt = $this->volt; - $this->specify( - "Volt parser doesn't throw the proper extends error", - function ($code, $message) use ($volt) { - $this->expectException(Exception::class); - $this->expectExceptionMessage($message); - - $volt->parse($code); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'volt/compilerExceptionsTest/volt_extends_error.php' - ] - ); - } -} diff --git a/tests/unit/Mvc/View/Engine/Volt/CompilerFilesTest.php b/tests/unit/Mvc/View/Engine/Volt/CompilerFilesTest.php deleted file mode 100644 index 8241260b2ad..00000000000 --- a/tests/unit/Mvc/View/Engine/Volt/CompilerFilesTest.php +++ /dev/null @@ -1,144 +0,0 @@ -volt = new Compiler(); - - /** - * @todo this function has to be deleted after move all of integration tests to integration folder - */ - chdir(PROJECT_PATH); - } - - /** - * executed after each test - */ - protected function _after() - { - // Setting the doctype to XHTML5 for other tests to run smoothly - Tag::setDocType(Tag::XHTML5); - } - - /** - * Tests Compiler::compileFile test case to compile files - * - * @test - * @author Sergii Svyrydenko - * @since 2017-01-17 - */ - public function shouldCompileFiles() - { - $this->specify( - "Volt can't compile files properly", - function ($params, $expected) { - $this->volt->compileFile($params['compileFiles'][0], $params['compileFiles'][1]); - - expect(file_get_contents($params['contentPath']))->equals($expected); - - $this->silentRemoveFiles($params['removeFiles']); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'mvc/view/engine/volt/compiler_files_test/volt_compiler_file.php' - ] - ); - } - - /** - * Tests Compiler::compileFile test case to compile extended files - * - * @test - * @author Sergii Svyrydenko - * @since 2017-01-29 - */ - public function shouldCompileFileExtendsMultiple() - { - $this->volt->compile('tests/_data/views/templates/c.volt'); - - expect(trim(file_get_contents(PATH_DATA . 'views/templates/c.volt.php')))->equals("[A[###[B]###]]"); - - $this->silentRemoveFiles([ - PATH_DATA . 'views/templates/a.volt%%e%%.php', - PATH_DATA . 'views/templates/b.volt%%e%%.php', - PATH_DATA . 'views/templates/c.volt.php', - ]); - } - - /** - * Tests Compiler::compileFile test case to compile extended files with blocks - * - * @test - * @author Sergii Svyrydenko - * @since 2017-01-29 - */ - public function shouldCompileFileExtendsWithBlocks() - { - $data = include_once PATH_FIXTURES . 'mvc/view/engine/volt/compiler_files_test/volt_compiler_extends_block.php'; - $this->volt->compile($data['compileFile']); - - expect(file_get_contents($data['contentPath']))->equals($data['expected']); - - $this->silentRemoveFiles($data['removeFiles']); - } - - /** - * Tests Compiler::compileFile test case to compile extended files with blocks and two-way blocks - * - * @test - * @author Sergii Svyrydenko - * @since 2017-01-29 - */ - public function shouldCompileFileExtendsWithBlockAndTwoWayBlocks() - { - $this->specify( - "Volt can't compile files correctly", - function ($params, $expected) { - $this->volt->compile($params['compileFile']); - - expect(file_get_contents($params['contentPath']))->equals($expected); - - $this->silentRemoveFiles($params['removeFiles']); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'mvc/view/engine/volt/compiler_files_test/volt_compile_file_extends_multiple.php' - ] - ); - } -} diff --git a/tests/unit/Mvc/View/Engine/Volt/CompilerTest.php b/tests/unit/Mvc/View/Engine/Volt/CompilerTest.php deleted file mode 100644 index 89777b86990..00000000000 --- a/tests/unit/Mvc/View/Engine/Volt/CompilerTest.php +++ /dev/null @@ -1,219 +0,0 @@ -volt = new Compiler(); - } - - /** - * executed after each test - */ - protected function _after() - { - // Setting the doctype to XHTML5 for other tests to run smoothly - Tag::setDocType(Tag::XHTML5); - } - - /** - * Tests Compiler::parse - * - * @test - * @author Sergii Svyrydenko - * @since 2017-01-17 - */ - public function shouldReturnArrayParseFunction() - { - $this->specify( - "Volt parser doesn't work as expected", - function ($param, $count) { - $intermediate = $this->volt->parse($param); - - expect(is_array($intermediate))->true(); - expect($intermediate)->count($count); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'volt/compilerTest/test_volt_parser.php' - ] - ); - } - - /** - * Tests Compiler::compileString - * - * @test - * @author Sergii Svyrydenko - * @since 2017-01-17 - */ - public function shoulrReturnCompiledString() - { - $this->specify( - "Volt parser doesn't work as expected", - function ($param, $expect) { - $compilation = $this->volt->compileString($param); - - expect($compilation)->equals($expect); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'volt/compilerTest/volt_compile_string_equals.php' - ] - ); - } - - /** - * Tests Compiler::compileString with option autoescape from options - * - * @test - * @author Sergii Svyrydenko - * @since 2017-01-17 - */ - public function shouldEscapeStringFromOption() - { - $this->specify( - "Volt parser doesn't work as expected", - function ($param, $expect) { - $this->volt->setOption("autoescape", true); - - $compilation = $this->volt->compileString($param); - - expect($compilation)->equals($expect); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'volt/compilerTest/volt_compile_string_autoescape.php' - ] - ); - } - - /** - * Tests Compiler::addFunction test case linear function - * - * @test - * @author Sergii Svyrydenko - * @since 2017-01-17 - */ - public function shouldReturnSingleStringFunction() - { - $this->specify( - 'Custom functions should work', - function ($name, $funcName, $voltName, $result) { - $this->volt->addFunction($name, $funcName); - $compilation = $this->volt->compileString($voltName); - - expect($compilation)->equals($result); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'volt/compilerTest/volt_users_single_string_function.php' - ] - ); - } - - /** - * Tests Compiler::addFunction test case with closure - * - * @test - * @author Sergii Svyrydenko - * @since 2017-01-17 - */ - public function shouldReturnFunctionWithOneArgument() - { - $this->specify( - 'Custom functions with one argument should work', - function ($name, $funcName, $voltName, $result) { - $this->volt->addFunction($name, function ($arguments) use ($funcName) { - return $funcName . '(' . $arguments . ')'; - }); - $compilation = $this->volt->compileString($voltName); - - expect($compilation)->equals($result); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'volt/compilerTest/volt_users_function_with_closure.php' - ] - ); - } - - /** - * Tests Compiler::addFilter test case linear filter - * - * @test - * @author Sergii Svyrydenko - * @since 2017-01-17 - */ - public function shouldReturnStringWithAddedSingleStringFilter() - { - $this->specify( - "Custom linear filters should work", - function ($name, $filter, $voltName, $result) { - $this->volt->addFilter($name, $filter); - $compilation = $this->volt->compileString($voltName); - - expect($compilation)->equals($result); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'volt/compilerTest/volt_single_filter.php' - ] - ); - } - - /** - * Tests Compiler::addFilter test case with closure filter - * - * @test - * @author Sergii Svyrydenko - * @since 2017-01-17 - */ - public function shouldReturnStringWithAddedFilterWithClosure() - { - $this->specify( - "Custom linear filters should work", - function ($name, $filter, $voltName, $result) { - $this->volt->addFilter($name, function ($arguments) use ($filter) { - return $filter . '(",", '.$arguments.')'; - }); - $compilation = $this->volt->compileString($voltName); - - expect($compilation)->equals($result); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'volt/compilerTest/volt_closure_filter.php' - ] - ); - } -} diff --git a/tests/unit/Mvc/View/Engine/Volt/CompilerTrait.php b/tests/unit/Mvc/View/Engine/Volt/CompilerTrait.php deleted file mode 100644 index 10343726a52..00000000000 --- a/tests/unit/Mvc/View/Engine/Volt/CompilerTrait.php +++ /dev/null @@ -1,18 +0,0 @@ -cache as $file) { - if (file_exists(env('PATH_DATA') . $file)) { - unlink(env('PATH_DATA') . $file); - } - } - } -} diff --git a/tests/unit/Mvc/View/Engine/Volt/ConstructCest.php b/tests/unit/Mvc/View/Engine/Volt/ConstructCest.php new file mode 100644 index 00000000000..096aa377b8f --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltConstruct(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/ConvertEncodingCest.php b/tests/unit/Mvc/View/Engine/Volt/ConvertEncodingCest.php new file mode 100644 index 00000000000..2bee008f4b6 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/ConvertEncodingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt; + +use UnitTester; + +class ConvertEncodingCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt :: convertEncoding() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltConvertEncoding(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt - convertEncoding()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/GetCompilerCest.php b/tests/unit/Mvc/View/Engine/Volt/GetCompilerCest.php new file mode 100644 index 00000000000..f5889307664 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/GetCompilerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt; + +use UnitTester; + +class GetCompilerCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt :: getCompiler() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltGetCompiler(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt - getCompiler()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/GetContentCest.php b/tests/unit/Mvc/View/Engine/Volt/GetContentCest.php new file mode 100644 index 00000000000..30c7dfd24e8 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/GetContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt; + +use UnitTester; + +class GetContentCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt :: getContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltGetContent(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt - getContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/GetDICest.php b/tests/unit/Mvc/View/Engine/Volt/GetDICest.php new file mode 100644 index 00000000000..08b3d719e22 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltGetDI(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/GetEventsManagerCest.php b/tests/unit/Mvc/View/Engine/Volt/GetEventsManagerCest.php new file mode 100644 index 00000000000..77c35a4847d --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt; + +use UnitTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt :: getEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltGetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/GetOptionsCest.php b/tests/unit/Mvc/View/Engine/Volt/GetOptionsCest.php new file mode 100644 index 00000000000..50387f91063 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/GetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt; + +use UnitTester; + +class GetOptionsCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt :: getOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltGetOptions(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt - getOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/GetViewCest.php b/tests/unit/Mvc/View/Engine/Volt/GetViewCest.php new file mode 100644 index 00000000000..627e3bbc5a5 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/GetViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt; + +use UnitTester; + +class GetViewCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt :: getView() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltGetView(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt - getView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/IsIncludedCest.php b/tests/unit/Mvc/View/Engine/Volt/IsIncludedCest.php new file mode 100644 index 00000000000..35a141b3c0a --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/IsIncludedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt; + +use UnitTester; + +class IsIncludedCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt :: isIncluded() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltIsIncluded(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt - isIncluded()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/LengthCest.php b/tests/unit/Mvc/View/Engine/Volt/LengthCest.php new file mode 100644 index 00000000000..27978108da8 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/LengthCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt; + +use UnitTester; + +class LengthCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt :: length() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltLength(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt - length()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/PartialCest.php b/tests/unit/Mvc/View/Engine/Volt/PartialCest.php new file mode 100644 index 00000000000..6ca5f98225b --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/PartialCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt; + +use UnitTester; + +class PartialCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt :: partial() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltPartial(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt - partial()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/RenderCest.php b/tests/unit/Mvc/View/Engine/Volt/RenderCest.php new file mode 100644 index 00000000000..9e118eacda7 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt; + +use UnitTester; + +class RenderCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt :: render() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltRender(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/SetDICest.php b/tests/unit/Mvc/View/Engine/Volt/SetDICest.php new file mode 100644 index 00000000000..fb909082511 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltSetDI(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/SetEventsManagerCest.php b/tests/unit/Mvc/View/Engine/Volt/SetEventsManagerCest.php new file mode 100644 index 00000000000..cb1f852dae5 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt; + +use UnitTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt :: setEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltSetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/SetOptionsCest.php b/tests/unit/Mvc/View/Engine/Volt/SetOptionsCest.php new file mode 100644 index 00000000000..8d9703f0eae --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/SetOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt; + +use UnitTester; + +class SetOptionsCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt :: setOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltSetOptions(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt - setOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/SliceCest.php b/tests/unit/Mvc/View/Engine/Volt/SliceCest.php new file mode 100644 index 00000000000..814750e3a14 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/SliceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt; + +use UnitTester; + +class SliceCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt :: slice() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltSlice(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt - slice()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/SortCest.php b/tests/unit/Mvc/View/Engine/Volt/SortCest.php new file mode 100644 index 00000000000..3239d3a78b9 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/SortCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt; + +use UnitTester; + +class SortCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt :: sort() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltSort(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt - sort()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Engine/Volt/UnderscoreGetCest.php b/tests/unit/Mvc/View/Engine/Volt/UnderscoreGetCest.php new file mode 100644 index 00000000000..0b83fb6b705 --- /dev/null +++ b/tests/unit/Mvc/View/Engine/Volt/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Engine\Volt; + +use UnitTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Mvc\View\Engine\Volt :: __get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewEngineVoltUnderscoreGet(UnitTester $I) + { + $I->wantToTest("Mvc\View\Engine\Volt - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/ExistsCest.php b/tests/unit/Mvc/View/ExistsCest.php new file mode 100644 index 00000000000..b49f8482805 --- /dev/null +++ b/tests/unit/Mvc/View/ExistsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class ExistsCest +{ + /** + * Tests Phalcon\Mvc\View :: exists() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewExists(UnitTester $I) + { + $I->wantToTest("Mvc\View - exists()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/FinishCest.php b/tests/unit/Mvc/View/FinishCest.php new file mode 100644 index 00000000000..7acb7093f5e --- /dev/null +++ b/tests/unit/Mvc/View/FinishCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class FinishCest +{ + /** + * Tests Phalcon\Mvc\View :: finish() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewFinish(UnitTester $I) + { + $I->wantToTest("Mvc\View - finish()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/GetActionNameCest.php b/tests/unit/Mvc/View/GetActionNameCest.php new file mode 100644 index 00000000000..54af960fa4b --- /dev/null +++ b/tests/unit/Mvc/View/GetActionNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class GetActionNameCest +{ + /** + * Tests Phalcon\Mvc\View :: getActionName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewGetActionName(UnitTester $I) + { + $I->wantToTest("Mvc\View - getActionName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/GetActiveRenderPathCest.php b/tests/unit/Mvc/View/GetActiveRenderPathCest.php new file mode 100644 index 00000000000..4c1abf5684e --- /dev/null +++ b/tests/unit/Mvc/View/GetActiveRenderPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class GetActiveRenderPathCest +{ + /** + * Tests Phalcon\Mvc\View :: getActiveRenderPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewGetActiveRenderPath(UnitTester $I) + { + $I->wantToTest("Mvc\View - getActiveRenderPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/GetBasePathCest.php b/tests/unit/Mvc/View/GetBasePathCest.php new file mode 100644 index 00000000000..b860d2732a9 --- /dev/null +++ b/tests/unit/Mvc/View/GetBasePathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class GetBasePathCest +{ + /** + * Tests Phalcon\Mvc\View :: getBasePath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewGetBasePath(UnitTester $I) + { + $I->wantToTest("Mvc\View - getBasePath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/GetCacheCest.php b/tests/unit/Mvc/View/GetCacheCest.php new file mode 100644 index 00000000000..cc4d1e2faeb --- /dev/null +++ b/tests/unit/Mvc/View/GetCacheCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class GetCacheCest +{ + /** + * Tests Phalcon\Mvc\View :: getCache() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewGetCache(UnitTester $I) + { + $I->wantToTest("Mvc\View - getCache()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/GetContentCest.php b/tests/unit/Mvc/View/GetContentCest.php new file mode 100644 index 00000000000..9715e1c86c0 --- /dev/null +++ b/tests/unit/Mvc/View/GetContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class GetContentCest +{ + /** + * Tests Phalcon\Mvc\View :: getContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewGetContent(UnitTester $I) + { + $I->wantToTest("Mvc\View - getContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/GetControllerNameCest.php b/tests/unit/Mvc/View/GetControllerNameCest.php new file mode 100644 index 00000000000..384297d1ebe --- /dev/null +++ b/tests/unit/Mvc/View/GetControllerNameCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class GetControllerNameCest +{ + /** + * Tests Phalcon\Mvc\View :: getControllerName() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewGetControllerName(UnitTester $I) + { + $I->wantToTest("Mvc\View - getControllerName()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/GetCurrentRenderLevelCest.php b/tests/unit/Mvc/View/GetCurrentRenderLevelCest.php new file mode 100644 index 00000000000..2d31df60a87 --- /dev/null +++ b/tests/unit/Mvc/View/GetCurrentRenderLevelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class GetCurrentRenderLevelCest +{ + /** + * Tests Phalcon\Mvc\View :: getCurrentRenderLevel() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewGetCurrentRenderLevel(UnitTester $I) + { + $I->wantToTest("Mvc\View - getCurrentRenderLevel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/GetDICest.php b/tests/unit/Mvc/View/GetDICest.php new file mode 100644 index 00000000000..f640f92e127 --- /dev/null +++ b/tests/unit/Mvc/View/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\View :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewGetDI(UnitTester $I) + { + $I->wantToTest("Mvc\View - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/GetEventsManagerCest.php b/tests/unit/Mvc/View/GetEventsManagerCest.php new file mode 100644 index 00000000000..1e11cf0d32e --- /dev/null +++ b/tests/unit/Mvc/View/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\View :: getEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewGetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\View - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/GetLayoutCest.php b/tests/unit/Mvc/View/GetLayoutCest.php new file mode 100644 index 00000000000..34eb2b01750 --- /dev/null +++ b/tests/unit/Mvc/View/GetLayoutCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class GetLayoutCest +{ + /** + * Tests Phalcon\Mvc\View :: getLayout() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewGetLayout(UnitTester $I) + { + $I->wantToTest("Mvc\View - getLayout()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/GetLayoutsDirCest.php b/tests/unit/Mvc/View/GetLayoutsDirCest.php new file mode 100644 index 00000000000..04ee7b54e35 --- /dev/null +++ b/tests/unit/Mvc/View/GetLayoutsDirCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class GetLayoutsDirCest +{ + /** + * Tests Phalcon\Mvc\View :: getLayoutsDir() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewGetLayoutsDir(UnitTester $I) + { + $I->wantToTest("Mvc\View - getLayoutsDir()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/GetMainViewCest.php b/tests/unit/Mvc/View/GetMainViewCest.php new file mode 100644 index 00000000000..1958b794947 --- /dev/null +++ b/tests/unit/Mvc/View/GetMainViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class GetMainViewCest +{ + /** + * Tests Phalcon\Mvc\View :: getMainView() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewGetMainView(UnitTester $I) + { + $I->wantToTest("Mvc\View - getMainView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/GetParamsCest.php b/tests/unit/Mvc/View/GetParamsCest.php new file mode 100644 index 00000000000..2486e76742c --- /dev/null +++ b/tests/unit/Mvc/View/GetParamsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class GetParamsCest +{ + /** + * Tests Phalcon\Mvc\View :: getParams() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewGetParams(UnitTester $I) + { + $I->wantToTest("Mvc\View - getParams()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/GetParamsToViewCest.php b/tests/unit/Mvc/View/GetParamsToViewCest.php new file mode 100644 index 00000000000..ebd2870d4cf --- /dev/null +++ b/tests/unit/Mvc/View/GetParamsToViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class GetParamsToViewCest +{ + /** + * Tests Phalcon\Mvc\View :: getParamsToView() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewGetParamsToView(UnitTester $I) + { + $I->wantToTest("Mvc\View - getParamsToView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/GetPartialCest.php b/tests/unit/Mvc/View/GetPartialCest.php new file mode 100644 index 00000000000..08eb3553c44 --- /dev/null +++ b/tests/unit/Mvc/View/GetPartialCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class GetPartialCest +{ + /** + * Tests Phalcon\Mvc\View :: getPartial() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewGetPartial(UnitTester $I) + { + $I->wantToTest("Mvc\View - getPartial()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/GetPartialsDirCest.php b/tests/unit/Mvc/View/GetPartialsDirCest.php new file mode 100644 index 00000000000..592d7362bcb --- /dev/null +++ b/tests/unit/Mvc/View/GetPartialsDirCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class GetPartialsDirCest +{ + /** + * Tests Phalcon\Mvc\View :: getPartialsDir() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewGetPartialsDir(UnitTester $I) + { + $I->wantToTest("Mvc\View - getPartialsDir()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/GetRegisteredEnginesCest.php b/tests/unit/Mvc/View/GetRegisteredEnginesCest.php new file mode 100644 index 00000000000..c325e45b695 --- /dev/null +++ b/tests/unit/Mvc/View/GetRegisteredEnginesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class GetRegisteredEnginesCest +{ + /** + * Tests Phalcon\Mvc\View :: getRegisteredEngines() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewGetRegisteredEngines(UnitTester $I) + { + $I->wantToTest("Mvc\View - getRegisteredEngines()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/GetRenderCest.php b/tests/unit/Mvc/View/GetRenderCest.php new file mode 100644 index 00000000000..b6e5d45e0fd --- /dev/null +++ b/tests/unit/Mvc/View/GetRenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class GetRenderCest +{ + /** + * Tests Phalcon\Mvc\View :: getRender() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewGetRender(UnitTester $I) + { + $I->wantToTest("Mvc\View - getRender()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/GetRenderLevelCest.php b/tests/unit/Mvc/View/GetRenderLevelCest.php new file mode 100644 index 00000000000..fb9baa30758 --- /dev/null +++ b/tests/unit/Mvc/View/GetRenderLevelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class GetRenderLevelCest +{ + /** + * Tests Phalcon\Mvc\View :: getRenderLevel() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewGetRenderLevel(UnitTester $I) + { + $I->wantToTest("Mvc\View - getRenderLevel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/GetVarCest.php b/tests/unit/Mvc/View/GetVarCest.php new file mode 100644 index 00000000000..f6fe44464bf --- /dev/null +++ b/tests/unit/Mvc/View/GetVarCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class GetVarCest +{ + /** + * Tests Phalcon\Mvc\View :: getVar() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewGetVar(UnitTester $I) + { + $I->wantToTest("Mvc\View - getVar()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/GetViewsDirCest.php b/tests/unit/Mvc/View/GetViewsDirCest.php new file mode 100644 index 00000000000..9c3f81e473f --- /dev/null +++ b/tests/unit/Mvc/View/GetViewsDirCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class GetViewsDirCest +{ + /** + * Tests Phalcon\Mvc\View :: getViewsDir() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewGetViewsDir(UnitTester $I) + { + $I->wantToTest("Mvc\View - getViewsDir()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/IsCachingCest.php b/tests/unit/Mvc/View/IsCachingCest.php new file mode 100644 index 00000000000..68728e887a1 --- /dev/null +++ b/tests/unit/Mvc/View/IsCachingCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class IsCachingCest +{ + /** + * Tests Phalcon\Mvc\View :: isCaching() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewIsCaching(UnitTester $I) + { + $I->wantToTest("Mvc\View - isCaching()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/IsDisabledCest.php b/tests/unit/Mvc/View/IsDisabledCest.php new file mode 100644 index 00000000000..acc3d02147d --- /dev/null +++ b/tests/unit/Mvc/View/IsDisabledCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class IsDisabledCest +{ + /** + * Tests Phalcon\Mvc\View :: isDisabled() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewIsDisabled(UnitTester $I) + { + $I->wantToTest("Mvc\View - isDisabled()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/PartialCest.php b/tests/unit/Mvc/View/PartialCest.php new file mode 100644 index 00000000000..18114a1f96b --- /dev/null +++ b/tests/unit/Mvc/View/PartialCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class PartialCest +{ + /** + * Tests Phalcon\Mvc\View :: partial() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewPartial(UnitTester $I) + { + $I->wantToTest("Mvc\View - partial()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/PickCest.php b/tests/unit/Mvc/View/PickCest.php new file mode 100644 index 00000000000..58ad0eea72b --- /dev/null +++ b/tests/unit/Mvc/View/PickCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class PickCest +{ + /** + * Tests Phalcon\Mvc\View :: pick() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewPick(UnitTester $I) + { + $I->wantToTest("Mvc\View - pick()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/RegisterEnginesCest.php b/tests/unit/Mvc/View/RegisterEnginesCest.php new file mode 100644 index 00000000000..c4cd2ac5541 --- /dev/null +++ b/tests/unit/Mvc/View/RegisterEnginesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class RegisterEnginesCest +{ + /** + * Tests Phalcon\Mvc\View :: registerEngines() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewRegisterEngines(UnitTester $I) + { + $I->wantToTest("Mvc\View - registerEngines()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/RenderCest.php b/tests/unit/Mvc/View/RenderCest.php new file mode 100644 index 00000000000..1b8ad7a43ac --- /dev/null +++ b/tests/unit/Mvc/View/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class RenderCest +{ + /** + * Tests Phalcon\Mvc\View :: render() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewRender(UnitTester $I) + { + $I->wantToTest("Mvc\View - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/ResetCest.php b/tests/unit/Mvc/View/ResetCest.php new file mode 100644 index 00000000000..75ebeff34f1 --- /dev/null +++ b/tests/unit/Mvc/View/ResetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class ResetCest +{ + /** + * Tests Phalcon\Mvc\View :: reset() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewReset(UnitTester $I) + { + $I->wantToTest("Mvc\View - reset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/SetBasePathCest.php b/tests/unit/Mvc/View/SetBasePathCest.php new file mode 100644 index 00000000000..250a766df8c --- /dev/null +++ b/tests/unit/Mvc/View/SetBasePathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class SetBasePathCest +{ + /** + * Tests Phalcon\Mvc\View :: setBasePath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSetBasePath(UnitTester $I) + { + $I->wantToTest("Mvc\View - setBasePath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/SetContentCest.php b/tests/unit/Mvc/View/SetContentCest.php new file mode 100644 index 00000000000..5bce78c6b74 --- /dev/null +++ b/tests/unit/Mvc/View/SetContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class SetContentCest +{ + /** + * Tests Phalcon\Mvc\View :: setContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSetContent(UnitTester $I) + { + $I->wantToTest("Mvc\View - setContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/SetDICest.php b/tests/unit/Mvc/View/SetDICest.php new file mode 100644 index 00000000000..76947878e09 --- /dev/null +++ b/tests/unit/Mvc/View/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\View :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSetDI(UnitTester $I) + { + $I->wantToTest("Mvc\View - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/SetEventsManagerCest.php b/tests/unit/Mvc/View/SetEventsManagerCest.php new file mode 100644 index 00000000000..83b6cbd6d09 --- /dev/null +++ b/tests/unit/Mvc/View/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\View :: setEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\View - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/SetLayoutCest.php b/tests/unit/Mvc/View/SetLayoutCest.php new file mode 100644 index 00000000000..b81016641d3 --- /dev/null +++ b/tests/unit/Mvc/View/SetLayoutCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class SetLayoutCest +{ + /** + * Tests Phalcon\Mvc\View :: setLayout() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSetLayout(UnitTester $I) + { + $I->wantToTest("Mvc\View - setLayout()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/SetLayoutsDirCest.php b/tests/unit/Mvc/View/SetLayoutsDirCest.php new file mode 100644 index 00000000000..ba748d4c91b --- /dev/null +++ b/tests/unit/Mvc/View/SetLayoutsDirCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class SetLayoutsDirCest +{ + /** + * Tests Phalcon\Mvc\View :: setLayoutsDir() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSetLayoutsDir(UnitTester $I) + { + $I->wantToTest("Mvc\View - setLayoutsDir()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/SetMainViewCest.php b/tests/unit/Mvc/View/SetMainViewCest.php new file mode 100644 index 00000000000..fa2a829125b --- /dev/null +++ b/tests/unit/Mvc/View/SetMainViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class SetMainViewCest +{ + /** + * Tests Phalcon\Mvc\View :: setMainView() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSetMainView(UnitTester $I) + { + $I->wantToTest("Mvc\View - setMainView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/SetParamToViewCest.php b/tests/unit/Mvc/View/SetParamToViewCest.php new file mode 100644 index 00000000000..1249f42ddce --- /dev/null +++ b/tests/unit/Mvc/View/SetParamToViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class SetParamToViewCest +{ + /** + * Tests Phalcon\Mvc\View :: setParamToView() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSetParamToView(UnitTester $I) + { + $I->wantToTest("Mvc\View - setParamToView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/SetPartialsDirCest.php b/tests/unit/Mvc/View/SetPartialsDirCest.php new file mode 100644 index 00000000000..e46515e908c --- /dev/null +++ b/tests/unit/Mvc/View/SetPartialsDirCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class SetPartialsDirCest +{ + /** + * Tests Phalcon\Mvc\View :: setPartialsDir() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSetPartialsDir(UnitTester $I) + { + $I->wantToTest("Mvc\View - setPartialsDir()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/SetRenderLevelCest.php b/tests/unit/Mvc/View/SetRenderLevelCest.php new file mode 100644 index 00000000000..393748e8587 --- /dev/null +++ b/tests/unit/Mvc/View/SetRenderLevelCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class SetRenderLevelCest +{ + /** + * Tests Phalcon\Mvc\View :: setRenderLevel() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSetRenderLevel(UnitTester $I) + { + $I->wantToTest("Mvc\View - setRenderLevel()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/SetTemplateAfterCest.php b/tests/unit/Mvc/View/SetTemplateAfterCest.php new file mode 100644 index 00000000000..7bcfebed28a --- /dev/null +++ b/tests/unit/Mvc/View/SetTemplateAfterCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class SetTemplateAfterCest +{ + /** + * Tests Phalcon\Mvc\View :: setTemplateAfter() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSetTemplateAfter(UnitTester $I) + { + $I->wantToTest("Mvc\View - setTemplateAfter()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/SetTemplateBeforeCest.php b/tests/unit/Mvc/View/SetTemplateBeforeCest.php new file mode 100644 index 00000000000..7cc06230919 --- /dev/null +++ b/tests/unit/Mvc/View/SetTemplateBeforeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class SetTemplateBeforeCest +{ + /** + * Tests Phalcon\Mvc\View :: setTemplateBefore() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSetTemplateBefore(UnitTester $I) + { + $I->wantToTest("Mvc\View - setTemplateBefore()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/SetVarCest.php b/tests/unit/Mvc/View/SetVarCest.php new file mode 100644 index 00000000000..c316f33da4c --- /dev/null +++ b/tests/unit/Mvc/View/SetVarCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class SetVarCest +{ + /** + * Tests Phalcon\Mvc\View :: setVar() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSetVar(UnitTester $I) + { + $I->wantToTest("Mvc\View - setVar()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/SetVarsCest.php b/tests/unit/Mvc/View/SetVarsCest.php new file mode 100644 index 00000000000..972760674d3 --- /dev/null +++ b/tests/unit/Mvc/View/SetVarsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class SetVarsCest +{ + /** + * Tests Phalcon\Mvc\View :: setVars() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSetVars(UnitTester $I) + { + $I->wantToTest("Mvc\View - setVars()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/SetViewsDirCest.php b/tests/unit/Mvc/View/SetViewsDirCest.php new file mode 100644 index 00000000000..04f8714a460 --- /dev/null +++ b/tests/unit/Mvc/View/SetViewsDirCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class SetViewsDirCest +{ + /** + * Tests Phalcon\Mvc\View :: setViewsDir() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSetViewsDir(UnitTester $I) + { + $I->wantToTest("Mvc\View - setViewsDir()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/CacheCest.php b/tests/unit/Mvc/View/Simple/CacheCest.php new file mode 100644 index 00000000000..f1d0d0ff879 --- /dev/null +++ b/tests/unit/Mvc/View/Simple/CacheCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class CacheCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: cache() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleCache(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - cache()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/ConstructCest.php b/tests/unit/Mvc/View/Simple/ConstructCest.php new file mode 100644 index 00000000000..7e3e35a3f1d --- /dev/null +++ b/tests/unit/Mvc/View/Simple/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleConstruct(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/GetActiveRenderPathCest.php b/tests/unit/Mvc/View/Simple/GetActiveRenderPathCest.php new file mode 100644 index 00000000000..3a3612d7b3a --- /dev/null +++ b/tests/unit/Mvc/View/Simple/GetActiveRenderPathCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class GetActiveRenderPathCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: getActiveRenderPath() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleGetActiveRenderPath(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - getActiveRenderPath()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/GetCacheCest.php b/tests/unit/Mvc/View/Simple/GetCacheCest.php new file mode 100644 index 00000000000..7197dabbc90 --- /dev/null +++ b/tests/unit/Mvc/View/Simple/GetCacheCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class GetCacheCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: getCache() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleGetCache(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - getCache()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/GetCacheOptionsCest.php b/tests/unit/Mvc/View/Simple/GetCacheOptionsCest.php new file mode 100644 index 00000000000..b2c6f580584 --- /dev/null +++ b/tests/unit/Mvc/View/Simple/GetCacheOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class GetCacheOptionsCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: getCacheOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleGetCacheOptions(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - getCacheOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/GetContentCest.php b/tests/unit/Mvc/View/Simple/GetContentCest.php new file mode 100644 index 00000000000..dc342168256 --- /dev/null +++ b/tests/unit/Mvc/View/Simple/GetContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class GetContentCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: getContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleGetContent(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - getContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/GetDICest.php b/tests/unit/Mvc/View/Simple/GetDICest.php new file mode 100644 index 00000000000..7aa1b9df88f --- /dev/null +++ b/tests/unit/Mvc/View/Simple/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleGetDI(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/GetEventsManagerCest.php b/tests/unit/Mvc/View/Simple/GetEventsManagerCest.php new file mode 100644 index 00000000000..d19c470340c --- /dev/null +++ b/tests/unit/Mvc/View/Simple/GetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class GetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: getEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleGetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - getEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/GetParamsToViewCest.php b/tests/unit/Mvc/View/Simple/GetParamsToViewCest.php new file mode 100644 index 00000000000..29629cdaf6e --- /dev/null +++ b/tests/unit/Mvc/View/Simple/GetParamsToViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class GetParamsToViewCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: getParamsToView() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleGetParamsToView(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - getParamsToView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/GetRegisteredEnginesCest.php b/tests/unit/Mvc/View/Simple/GetRegisteredEnginesCest.php new file mode 100644 index 00000000000..e67f9358c6b --- /dev/null +++ b/tests/unit/Mvc/View/Simple/GetRegisteredEnginesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class GetRegisteredEnginesCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: getRegisteredEngines() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleGetRegisteredEngines(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - getRegisteredEngines()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/GetVarCest.php b/tests/unit/Mvc/View/Simple/GetVarCest.php new file mode 100644 index 00000000000..e7fde4a5fc8 --- /dev/null +++ b/tests/unit/Mvc/View/Simple/GetVarCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class GetVarCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: getVar() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleGetVar(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - getVar()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/GetViewsDirCest.php b/tests/unit/Mvc/View/Simple/GetViewsDirCest.php new file mode 100644 index 00000000000..11b54e2c565 --- /dev/null +++ b/tests/unit/Mvc/View/Simple/GetViewsDirCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class GetViewsDirCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: getViewsDir() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleGetViewsDir(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - getViewsDir()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/PartialCest.php b/tests/unit/Mvc/View/Simple/PartialCest.php new file mode 100644 index 00000000000..20bea954516 --- /dev/null +++ b/tests/unit/Mvc/View/Simple/PartialCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class PartialCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: partial() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimplePartial(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - partial()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/RegisterEnginesCest.php b/tests/unit/Mvc/View/Simple/RegisterEnginesCest.php new file mode 100644 index 00000000000..6f7933ec5d2 --- /dev/null +++ b/tests/unit/Mvc/View/Simple/RegisterEnginesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class RegisterEnginesCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: registerEngines() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleRegisterEngines(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - registerEngines()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/RenderCest.php b/tests/unit/Mvc/View/Simple/RenderCest.php new file mode 100644 index 00000000000..ba13c15586f --- /dev/null +++ b/tests/unit/Mvc/View/Simple/RenderCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class RenderCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: render() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleRender(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - render()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/SetCacheOptionsCest.php b/tests/unit/Mvc/View/Simple/SetCacheOptionsCest.php new file mode 100644 index 00000000000..92240707753 --- /dev/null +++ b/tests/unit/Mvc/View/Simple/SetCacheOptionsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class SetCacheOptionsCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: setCacheOptions() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleSetCacheOptions(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - setCacheOptions()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/SetContentCest.php b/tests/unit/Mvc/View/Simple/SetContentCest.php new file mode 100644 index 00000000000..87ee33de301 --- /dev/null +++ b/tests/unit/Mvc/View/Simple/SetContentCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class SetContentCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: setContent() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleSetContent(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - setContent()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/SetDICest.php b/tests/unit/Mvc/View/Simple/SetDICest.php new file mode 100644 index 00000000000..d9faddbdd46 --- /dev/null +++ b/tests/unit/Mvc/View/Simple/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleSetDI(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/SetEventsManagerCest.php b/tests/unit/Mvc/View/Simple/SetEventsManagerCest.php new file mode 100644 index 00000000000..7371f8996a3 --- /dev/null +++ b/tests/unit/Mvc/View/Simple/SetEventsManagerCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class SetEventsManagerCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: setEventsManager() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleSetEventsManager(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - setEventsManager()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/SetParamToViewCest.php b/tests/unit/Mvc/View/Simple/SetParamToViewCest.php new file mode 100644 index 00000000000..e4649b5d61b --- /dev/null +++ b/tests/unit/Mvc/View/Simple/SetParamToViewCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class SetParamToViewCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: setParamToView() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleSetParamToView(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - setParamToView()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/SetVarCest.php b/tests/unit/Mvc/View/Simple/SetVarCest.php new file mode 100644 index 00000000000..e920c9bdfa8 --- /dev/null +++ b/tests/unit/Mvc/View/Simple/SetVarCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class SetVarCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: setVar() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleSetVar(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - setVar()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/SetVarsCest.php b/tests/unit/Mvc/View/Simple/SetVarsCest.php new file mode 100644 index 00000000000..f826b4cbda4 --- /dev/null +++ b/tests/unit/Mvc/View/Simple/SetVarsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class SetVarsCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: setVars() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleSetVars(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - setVars()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/SetViewsDirCest.php b/tests/unit/Mvc/View/Simple/SetViewsDirCest.php new file mode 100644 index 00000000000..265ccf045f4 --- /dev/null +++ b/tests/unit/Mvc/View/Simple/SetViewsDirCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class SetViewsDirCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: setViewsDir() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleSetViewsDir(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - setViewsDir()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/UnderscoreGetCest.php b/tests/unit/Mvc/View/Simple/UnderscoreGetCest.php new file mode 100644 index 00000000000..1f7583ae02d --- /dev/null +++ b/tests/unit/Mvc/View/Simple/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: __get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleUnderscoreGet(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/Simple/UnderscoreSetCest.php b/tests/unit/Mvc/View/Simple/UnderscoreSetCest.php new file mode 100644 index 00000000000..4911ca1e285 --- /dev/null +++ b/tests/unit/Mvc/View/Simple/UnderscoreSetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View\Simple; + +use UnitTester; + +class UnderscoreSetCest +{ + /** + * Tests Phalcon\Mvc\View\Simple :: __set() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewSimpleUnderscoreSet(UnitTester $I) + { + $I->wantToTest("Mvc\View\Simple - __set()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/SimpleCest.php b/tests/unit/Mvc/View/SimpleCest.php new file mode 100644 index 00000000000..41928a1fa76 --- /dev/null +++ b/tests/unit/Mvc/View/SimpleCest.php @@ -0,0 +1,225 @@ +newDi(); + $this->setDiViewSimple(); + } + + /** + * Tests render + * + * @author Kamil Skowron + * @since 2014-05-28 + */ + public function testRenderStandard(UnitTester $I) + { + $container = $this->getDi(); + $view = $container->get('viewSimple'); + + $expected = 'We are here'; + $actual = $view->render('simple/index'); + $I->assertEquals($expected, $actual); + + $expected = 'We are here'; + $actual = $view->getContent(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests the rendering with registered engine + * + * @author Kamil Skowron + * @since 2014-05-28 + */ + public function testRenderWithRegisteredEngine(UnitTester $I) + { + $container = $this->getDi(); + $view = $container->get('viewSimple'); + + $view->setParamToView('name', 'FooBar'); + $view->registerEngines(['.mhtml' => Volt::class]); + + $expected = 'Hello FooBar'; + $actual = $view->render('mustache/index'); + $I->assertEquals($expected, $actual); + + $I->amInPath(dataFolder('fixtures/views/mustache')); + $I->seeFileFound('index.mhtml.php'); + $I->safeDeleteFile('index.mhtml.php'); + } + + /** + * Tests the Simple::getRegisteredEngines + * + * @author Kamil Skowron + * @since 2014-05-28 + */ + public function testGetRegisteredEngines(UnitTester $I) + { + $container = $this->getDi(); + $view = $container->get('viewSimple'); + $expected = [ + '.mhtml' => Mustache::class, + '.phtml' => Php::class, + '.twig' => Twig::class, + '.volt' => Volt::class, + ]; + + $view->registerEngines($expected); + + $actual = $view->getRegisteredEngines(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests render with missing view + * + * @author Kamil Skowron + * @since 2014-05-28 + */ + public function testMissingView(UnitTester $I) + { + $I->expectThrowable( + new Exception( + sprintf( + "View '%sfixtures/views/unknown/view' was not found in the views directory", + dataFolder() + ) + ), + function () { + $container = $this->getDi(); + $view = $container->get('viewSimple'); + $view->render('unknown/view'); + } + ); + } + + /** + * Tests render with filename without registered + * + * @author Kamil Skowron + * @since 2014-05-28 + */ + public function testRenderWithFilenameWithEngineWithoutEngineRegistered(UnitTester $I) + { + $I->expectThrowable( + new Exception( + sprintf( + "View '%sfixtures/views/unknown/view' was not found in the views directory", + dataFolder() + ) + ), + function () { + $container = $this->getDi(); + $view = $container->get('viewSimple'); + $view->setParamToView('name', 'FooBar'); + $view->render('unknown/view'); + } + ); + } + + /** + * Tests render with variables + * + * @author Kamil Skowron + * @since 2014-05-28 + */ + public function testRenderWithVariables(UnitTester $I) + { + $container = $this->getDi(); + $view = $container->get('viewSimple'); + + $expected = 'here'; + $actual = $view->render('currentrender/other'); + $I->assertEquals($expected, $actual); + + $view->setParamToView('a_cool_var', 'le-this'); + + $expected = '

le-this

'; + $actual = $view->render('currentrender/another'); + $I->assertEquals($expected, $actual); + } + + /** + * Tests render with partials + * + * @author Kamil Skowron + * @since 2014-05-28 + */ + public function testRenderWithPartials(UnitTester $I) + { + $I->skipTest('TODO = Check me'); + $container = $this->getDi(); + $view = $container->get('viewSimple'); + + $expectedParams = ['cool_var' => 'FooBar']; + + $this->renderPartialBuffered($view, 'partials/_partial1', $expectedParams); + expect($view->getContent())->equals('Hey, this is a partial, also FooBar'); + + $view->setVars($expectedParams); + +// expect($view->render('test5/index'))->equals('Hey, this is a partial, also FooBar'); +// expect($view->render('test9/index'))->equals('Hey, this is a partial, also FooBar
Hey, this is a second partial, also FooBar'); + } + + /** + * Tests the View setters and getters + * + * @author Kamil Skowron + * @since 2014-05-28 + */ + public function testSettersAndGetters(UnitTester $I) + { + $I->skipTest('TODO = Check me'); + $container = $this->getDi(); + $view = $container->get('viewSimple'); + + $view->foo = 'bar'; + expect('bar')->equals($view->foo); + + expect($view)->equals($view->setVar('foo1', 'bar1')); + expect('bar1')->equals($view->getVar('foo1')); + + $expectedVars = ['foo2' => 'bar2', 'foo3' => 'bar3']; + expect($view)->equals($view->setVars($expectedVars)); + expect('bar2')->equals($view->foo2); + expect('bar3')->equals($view->foo3); + expect($view)->equals($view->setVars($expectedVars, false)); + + expect($view)->equals($view->setParamToView('foo4', 'bar4')); + + $expectedParamsToView = ['foo2' => 'bar2', 'foo3' => 'bar3', 'foo4' => 'bar4']; + expect($expectedParamsToView)->equals($view->getParamsToView()); + + expect($view)->equals($view->setContent('

hello

')); + expect('

hello

')->equals($view->getContent()); + + $view->setViewsDir(dataFolder('views' . DIRECTORY_SEPARATOR)); + expect(dataFolder('views' . DIRECTORY_SEPARATOR))->equals($view->getViewsDir()); + + $expectedCacheOptions = ['lifetime' => 86400, 'key' => 'simple-cache']; + + verify_not($view->getCacheOptions()); + expect($view)->equals($view->setCacheOptions($expectedCacheOptions)); + expect($expectedCacheOptions)->equals($view->getCacheOptions()); + } +} diff --git a/tests/unit/Mvc/View/SimpleTest.php b/tests/unit/Mvc/View/SimpleTest.php deleted file mode 100644 index 149ae165f25..00000000000 --- a/tests/unit/Mvc/View/SimpleTest.php +++ /dev/null @@ -1,277 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Mvc\View - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class SimpleTest extends UnitTest -{ - use ViewTrait; - - /** - * Tests render - * - * @author Kamil Skowron - * @since 2014-05-28 - */ - public function testRenderStandard() - { - $this->specify( - 'The view rendering does not work as expected', - function () { - $view = new Simple; - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - - expect($view->render('test2/index'))->equals('We are here'); - expect($view->getContent())->equals('We are here'); - } - ); - } - - /** - * Tests the rendering with registered engine - * - * @author Kamil Skowron - * @since 2014-05-28 - */ - public function testRenderWithRegisteredEngine() - { - $this->specify( - 'The rendering with registered engine does not work as expected', - function () { - $view = new Simple; - - $view->setDI(Di::getDefault()); - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - - $view->setParamToView('name', 'FooBar'); - $view->registerEngines(['.mhtml' => VoltEngine::class]); - - expect($view->render('test4/index'))->equals('Hello FooBar'); - - $this->tester->amInPath(PATH_DATA . 'views/test4'); - $this->tester->seeFileFound('index.mhtml.php'); - $this->tester->deleteFile('index.mhtml.php'); - } - ); - } - - /** - * Tests the rendering with registered engine - * - * @author Kamil Skowron - * @since 2014-05-28 - */ - public function testRenderWithFilenameWithEngineExtension() - { - $this->specify( - 'The rendering with registered engine does not work as expected', - function () { - $view = new Simple; - - $view->setDI(Di::getDefault()); - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - - $view->setParamToView('name', 'FooBar'); - $view->registerEngines(['.mhtml' => VoltEngine::class]); - - expect($view->render('test4/index.mhtml'))->equals('Hello FooBar'); - - $this->tester->amInPath(PATH_DATA . 'views/test4'); - $this->tester->seeFileFound('index.mhtml.php'); - $this->tester->deleteFile('index.mhtml.php'); - } - ); - } - - /** - * Tests the Simple::getRegisteredEngines - * - * @author Kamil Skowron - * @since 2014-05-28 - */ - public function testGetRegisteredEngines() - { - $this->specify( - 'Unable to get all registered engines', - function () { - $expected = [ - '.mhtml' => MustacheEngine::class, - '.phtml' => PhpEngine::class, - '.twig' => TwigEngine::class, - '.volt' => VoltEngine::class, - ]; - - $view = new Simple; - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - - $view->registerEngines($expected); - expect($view->getRegisteredEngines())->equals($expected); - } - ); - } - - /** - * Tests render with missing view - * - * @author Kamil Skowron - * @since 2014-05-28 - * - * @expectedException \Phalcon\Mvc\View\Exception - * @expectedExceptionMessageRegExp #View '.*views[\\/]test1/index' was not found in the views directory# - */ - public function testMissingView() - { - $this->specify( - 'The View component does not throw Exception in case of missing view', - function () { - $view = new Simple(); - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - $view->render('test1/index'); - } - ); - } - - /** - * Tests render with filename without registered - * - * @author Kamil Skowron - * @since 2014-05-28 - * - * @expectedException \Phalcon\Mvc\View\Exception - * @expectedExceptionMessageRegExp #View '.*views[\\/]test4/index\.mhtml' was not found in the views directory# - */ - public function testRenderWithFilenameWithEngineWithoutEngineRegistered() - { - $this->specify( - 'Render with filename without registered engine does not throw Exception', - function () { - $view = new Simple(); - - $view->setDI(Di::getDefault()); - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - - $view->setParamToView('name', 'FooBar'); - - $view->render('test4/index.mhtml'); - } - ); - } - - /** - * Tests render with variables - * - * @author Kamil Skowron - * @since 2014-05-28 - */ - public function testRenderWithVariables() - { - $this->specify( - 'Render with variables does not work as expected', - function () { - $view = new Simple; - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - - expect($view->render('test3/other'))->equals('here'); - - $view->setParamToView('a_cool_var', 'le-this'); - expect($view->render('test3/another'))->equals('

le-this

'); - } - ); - } - - /** - * Tests render with partials - * - * @author Kamil Skowron - * @since 2014-05-28 - */ - public function testRenderWithPartials() - { - $this->specify( - 'Render with partials does not work as expected', - function () { - $view = new Simple; - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - $expectedParams= ['cool_var' => 'FooBar']; - - $this->renderPartialBuffered($view, 'partials/_partial1', $expectedParams); - expect($view->getContent())->equals('Hey, this is a partial, also FooBar'); - - $view->setVars($expectedParams); - - expect($view->render('test5/index'))->equals('Hey, this is a partial, also FooBar'); - expect($view->render('test9/index'))->equals('Hey, this is a partial, also FooBar
Hey, this is a second partial, also FooBar'); - } - ); - } - - /** - * Tests the View setters and getters - * - * @author Kamil Skowron - * @since 2014-05-28 - */ - public function testSettersAndGetters() - { - $this->specify( - 'The View setters and getters does not work as expected', - function () { - $view = new Simple; - - $view->foo = 'bar'; - expect('bar')->equals($view->foo); - - expect($view)->equals($view->setVar('foo1', 'bar1')); - expect('bar1')->equals($view->getVar('foo1')); - - $expectedVars = array('foo2' => 'bar2', 'foo3' => 'bar3'); - expect($view)->equals($view->setVars($expectedVars)); - expect('bar2')->equals($view->foo2); - expect('bar3')->equals($view->foo3); - expect($view)->equals($view->setVars($expectedVars, false)); - - expect($view)->equals($view->setParamToView('foo4', 'bar4')); - - $expectedParamsToView = ['foo2' => 'bar2', 'foo3' => 'bar3', 'foo4' => 'bar4']; - expect($expectedParamsToView)->equals($view->getParamsToView()); - - expect($view)->equals($view->setContent('

hello

')); - expect('

hello

')->equals($view->getContent()); - - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - expect(PATH_DATA . 'views' . DIRECTORY_SEPARATOR)->equals($view->getViewsDir()); - - $expectedCacheOptions = ['lifetime' => 86400, 'key' => 'simple-cache']; - - verify_not($view->getCacheOptions()); - expect($view)->equals($view->setCacheOptions($expectedCacheOptions)); - expect($expectedCacheOptions)->equals($view->getCacheOptions()); - } - ); - } -} diff --git a/tests/unit/Mvc/View/StartCest.php b/tests/unit/Mvc/View/StartCest.php new file mode 100644 index 00000000000..c3033f8a00e --- /dev/null +++ b/tests/unit/Mvc/View/StartCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class StartCest +{ + /** + * Tests Phalcon\Mvc\View :: start() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewStart(UnitTester $I) + { + $I->wantToTest("Mvc\View - start()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/UnderscoreGetCest.php b/tests/unit/Mvc/View/UnderscoreGetCest.php new file mode 100644 index 00000000000..7c8138ebf50 --- /dev/null +++ b/tests/unit/Mvc/View/UnderscoreGetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Mvc\View :: __get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewUnderscoreGet(UnitTester $I) + { + $I->wantToTest("Mvc\View - __get()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/UnderscoreIssetCest.php b/tests/unit/Mvc/View/UnderscoreIssetCest.php new file mode 100644 index 00000000000..9cf46cae7ad --- /dev/null +++ b/tests/unit/Mvc/View/UnderscoreIssetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class UnderscoreIssetCest +{ + /** + * Tests Phalcon\Mvc\View :: __isset() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewUnderscoreIsset(UnitTester $I) + { + $I->wantToTest("Mvc\View - __isset()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/View/UnderscoreSetCest.php b/tests/unit/Mvc/View/UnderscoreSetCest.php new file mode 100644 index 00000000000..9587f2ea179 --- /dev/null +++ b/tests/unit/Mvc/View/UnderscoreSetCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Mvc\View; + +use UnitTester; + +class UnderscoreSetCest +{ + /** + * Tests Phalcon\Mvc\View :: __set() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function mvcViewUnderscoreSet(UnitTester $I) + { + $I->wantToTest("Mvc\View - __set()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Mvc/ViewEnginesCest.php b/tests/unit/Mvc/ViewEnginesCest.php new file mode 100644 index 00000000000..c9b4823002a --- /dev/null +++ b/tests/unit/Mvc/ViewEnginesCest.php @@ -0,0 +1,372 @@ +newDi(); + $this->setDiView(); + $this->level = ob_get_level(); + } + + public function _after(UnitTester $I) + { + while (ob_get_level() > $this->level) { + ob_end_flush(); + } + } + + /** + * Tests View::render test template engines in function + * + * @author Sergii Svyrydenko + * @since 2017-01-29 + */ + public function shouldRenderVoltEngineBuiltInFunctions(UnitTester $I) + { + $examples = $this->getViewBuiltinFunction(); + foreach ($examples as $item) { + $params = $item[0]; + $expected = $item[1]; + $view = $this->getService('view'); + $view->registerEngines($params['engines']); + foreach ($params['setVar'] as $var) { + $view->setVar($var[0], $var[1]); + } + $view->start(); + $view->render($params['render'][0], $params['render'][1]); + $view->finish(); + + $actual = $view->getContent(); + $I->assertEquals($expected, $actual); + $I->safeDeleteFile(dataFolder('fixtures/views/builtinfunction/index.volt.php')); + } + } + + private function getViewBuiltinFunction(): array + { + return [ + [ + [ + 'engines' => [ + '.volt' => 'Phalcon\Mvc\View\Engine\Volt', + ], + 'setVar' => [ + ['arr', [1, 2, 3, 4]], + ['obj', new IteratorObject([1, 2, 3, 4])], + ['str', 'hello'], + ['no_str', 1234], + ], + 'render' => ['builtinfunction', 'index'], + 'removeFiles' => [], + ], + 'Length Array: 4Length Object: 4Length String: 5Length No String: 4' . + 'Slice Array: 1,2,3,4Slice Array: 2,3Slice Array: 1,2,3' . + 'Slice Object: 2,3,4Slice Object: 2,3Slice Object: 1,2Slice String: hel' . + 'Slice String: elSlice String: lloSlice No String: 123Slice No String: 23' . + 'Slice No String: 34', + ], + ]; + } + + /** + * Tests Mustache template engine + * + * @author Phalcon Team + * @since 2012-08-17 + */ + public function shouldWorkWithMustacheEngine(UnitTester $I) + { + $data = $this->getMustacheEngine(); + + $errorMessage = $data['errorMessage']; + $engine = $data['engines']; + $params = $data['params']; + + $view = $this->getService('view'); + + $view->registerEngines($engine); + $this->setParamAndCheckData($I, $errorMessage, $params, $view); + } + + private function getMustacheEngine(): array + { + return [ + 'errorMessage' => 'Engine mustache does not work', + 'engines' => ['.mhtml' => Mustache::class], + 'params' => [ + [ + 'paramToView' => ['name', 'Sonny'], + 'renderLevel' => View::LEVEL_ACTION_VIEW, + 'render' => ['mustache', 'index'], + 'expected' => 'Hello Sonny', + ], + // [ + // 'paramToView' => ['some_eval', true], + // 'renderLevel' => View::LEVEL_LAYOUT, + // 'render' => ['mustache', 'index'], + // 'expected' => "Well, this is the view content: Hello Sonny.\n", + // ], + ], + ]; + } + + /** + * Set params and check expected data after render view + * + * @param UnitTester $I + * @param string $errorMessage + * @param array $params + * @param View $view + */ + private function setParamAndCheckData(UnitTester $I, string $errorMessage, array $params, View $view) + { + foreach ($params as $param) { + $view->setParamToView($param['paramToView'][0], $param['paramToView'][1]); + + $view->start(); + $view->setRenderLevel($param['renderLevel']); + $view->render($param['render'][0], $param['render'][1]); + $view->finish(); + + $I->assertEquals( + $param['expected'], + $view->getContent(), + $errorMessage + ); + } + } + + /** + * Tests the View::registerEngines + * + * @author Kamil Skowron + * @since 2014-05-28 + */ + public function shouldRegisterEngines(UnitTester $I) + { + $engines = $this->getViewRegisterEngines(); + + $view = $this->getService('view'); + $view->registerEngines($engines); + + $expected = $engines; + $actual = $view->getRegisteredEngines(); + $I->assertEquals($expected, $actual); + } + +// /** +// * Tests the mix Mustache with PHP Engines +// * +// * @test +// * @author Phalcon Team +// * @since 2012-08-17 +// */ +// public function shouldWorkMixPhpMustacheEnginesPartial(UnitTester $I) +// { +// $this->specify( +// 'The engine does not work as expected', +// function ($errorMessage, $engines, $params) { +// $this->view->setDI(Di::getDefault()); +// $this->view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); +// $this->view->registerEngines($engines); +// +// $this->setParamAndCheckData($errorMessage, $params, $this->view); +// }, +// [ +// 'examples' => include PATH_FIXTURES . 'mvc/view_engines_test/view_set_php_mustache_partial.php' +// ] +// ); +// } +// +// /** +// * Tests the mix Mustache with PHP Engines +// * +// * @test +// * @author Phalcon Team +// * @since 2012-08-17 +// */ +// public function shouldWorkMixPhpTwigEnginesPartial(UnitTester $I) +// { +// $this->specify( +// 'The engine does not work as expected', +// function ($errorMessage, $engines, $params) { +// $this->view->setDI(Di::getDefault()); +// $this->view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); +// $this->view->registerEngines($engines); +// +// $this->setParamAndCheckData($errorMessage, $params, $this->view); +// }, +// [ +// 'examples' => include PATH_FIXTURES . 'mvc/view_engines_test/view_set_php_twig_partial.php' +// ] +// ); +// } + + private function getViewRegisterEngines(): array + { + return [ + '.mhtml' => MustacheEngine::class, + '.phtml' => PhpEngine::class, + '.twig' => TwigEngine::class, + '.volt' => VoltEngine::class, + ]; + } + + /** + * Tests Twig template engine + * + * @author Phalcon Team + * @since 2012-08-17 + */ + public function shouldWorkWithTwigEngine(UnitTester $I) + { + $data = $this->getTwigEngine(); + + $errorMessage = $data['errorMessage']; + $engine = $data['engines']; + $params = $data['params']; + + $view = $this->getService('view'); + + $view->registerEngines($engine); + $this->setParamAndCheckData($I, $errorMessage, $params, $view); + } + + private function getTwigEngine(): array + { + return [ + 'errorMessage' => 'Engine twig does not work', + 'engines' => ['.twig' => Twig::class], + 'params' => [ + [ + 'paramToView' => ['song', 'Rock n roll'], + 'renderLevel' => View::LEVEL_ACTION_VIEW, + 'render' => ['twig', 'index'], + 'expected' => 'Hello Rock n roll!', + ], + // [ + // 'paramToView' => ['some_eval', true], + // 'renderLevel' => View::LEVEL_LAYOUT, + // 'render' => ['twig', 'index'], + // 'expected' => "Clearly, the song is: Hello Rock n roll!.\n", + // ], + ], + ]; + } + + /** + * Tests the mix Twig with PHP Engines + * + * @author Phalcon Team + * @since 2012-08-17 + */ + public function shouldWorkMixPhpTwigEngines(UnitTester $I) + { + $I->skipTest('TODO - Check Layout'); + $data = $this->getTwigPhpEngine(); + + $errorMessage = $data['errorMessage']; + $engine = $data['engines']; + $params = $data['params']; + + $view = $this->getService('view'); + + $view->registerEngines($engine); + $this->setParamAndCheckData($I, $errorMessage, $params, $view); + } + + private function getTwigPhpEngine(): array + { + return [ + 'errorMessage' => 'Mix PHP with Twig does nor work', + 'engines' => [ + '.twig' => Twig::class, + '.phtml' => Php::class, + ], + 'params' => [ + [ + 'paramToView' => ['name', 'Sonny'], + 'renderLevel' => View::LEVEL_LAYOUT, + 'render' => ['twigphp', 'index'], + 'expected' => 'Well, this is the view content: Hello Sonny.', + ], + ], + ]; + } + + /** + * Tests the mix Mustache with PHP Engines + * + * @author Phalcon Team + * @since 2012-08-17 + */ + public function shouldWorkMixPhpMustacheEngines(UnitTester $I) + { + $I->skipTest('TODO - Check Layout'); + $data = $this->getPhpMustache(); + + $errorMessage = $data['errorMessage']; + $engine = $data['engines']; + $params = $data['params']; + + $view = $this->getService('view'); + + $view->registerEngines($engine); + $this->setParamAndCheckData($I, $errorMessage, $params, $view); + } + + private function getPhpMustache(): array + { + return [ + 'errorMessage' => 'Mix PHP with Mustache does not work', + 'engines' => [ + '.mhtml' => Mustache::class, + '.phtml' => Php::class, + ], + 'params' => [ + [ + 'paramToView' => ['name', 'Sonny'], + 'renderLevel' => View::LEVEL_LAYOUT, + 'render' => ['test6', 'index'], + 'expected' => 'Well, this is the view content: Hello Sonny.', + ], + ], + ]; + } +} diff --git a/tests/unit/Mvc/ViewEnginesTest.php b/tests/unit/Mvc/ViewEnginesTest.php deleted file mode 100644 index a64e3df6a66..00000000000 --- a/tests/unit/Mvc/ViewEnginesTest.php +++ /dev/null @@ -1,239 +0,0 @@ - - * @since 2017-01-29 - */ - public function shouldRenderVoltEngineBuiltInFunctions() - { - $this->specify( - 'Function setVar does not work as expected', - function ($params, $expected) { - $this->view->setDI(Di::getDefault()); - $this->view->setViewsDir(PATH_DATA . 'views/'); - $this->view->registerEngines($params['engines']); - foreach ($params['setVar'] as $var) { - $this->view->setVar($var[0], $var[1]); - } - $this->view->start(); - $this->view->render($params['render'][0], $params['render'][1]); - $this->view->finish(); - - $this->assertEquals($this->view->getContent(), $expected); - - $this->silentRemoveFiles([ - PATH_DATA . 'views/test11/index.volt.php', - ]); - }, - [ - 'examples' => include PATH_FIXTURES . 'mvc/view_engines_test/view_built_in_function.php' - ] - ); - } - - /** - * Tests the View::registerEngines - * - * @test - * @author Kamil Skowron - * @since 2014-05-28 - */ - public function shouldRegisterEngines() - { - $this->specify( - 'Unable to get all registered engines', - function ($engineSet) { - $this->view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - $this->view->registerEngines($engineSet); - - expect($this->view->getRegisteredEngines())->equals($engineSet); - }, - [ - 'examples' => include PATH_FIXTURES . 'mvc/view_engines_test/view_register_engines.php' - ] - ); - } - - /** - * Tests Mustache template engine - * - * @test - * @author Andres Gutierrez - * @since 2012-08-17 - */ - public function shouldWorkWithMustacheEngine() - { - $this->specify( - 'Mustache engine does not work as expected', - function ($errorMessage, $engine, $params) { - $view = new View(); - $view->setDI(Di::getDefault()); - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - - $view->registerEngines($engine); - $this->setParamAndCheckData($errorMessage, $params, $view); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'mvc/view/engine/mustache.php' - ] - ); - } - - /** - * Tests Twig template engine - * - * @test - * @author Andres Gutierrez - * @since 2012-08-17 - */ - public function shouldWorkWithTwigEngine() - { - $this->specify( - 'Twig engine does not work as expected', - function ($errorMessage, $engine, $params) { - $view = new View(); - $view->setDI(Di::getDefault()); - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - - $view->registerEngines($engine); - $this->setParamAndCheckData($errorMessage, $params, $view); - }, - [ - 'examples' => include_once PATH_FIXTURES . 'mvc/view/engine/twig.php' - ] - ); - } - - /** - * Tests the mix Twig with PHP Engines - * - * @test - * @author Andres Gutierrez - * @since 2012-08-17 - */ - public function shouldWorkMixPhpTwigEngines() - { - $this->specify( - 'The engine does not work as expected', - function ($errorMessage, $engines, $params) { - $this->view->setDI(Di::getDefault()); - $this->view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - $this->view->registerEngines($engines); - - $this->setParamAndCheckData($errorMessage, $params, $this->view); - }, - [ - 'examples' => include PATH_FIXTURES . 'mvc/view_engines_test/view_set_php_twig.php' - ] - ); - } - - /** - * Tests the mix Mustache with PHP Engines - * - * @test - * @author Andres Gutierrez - * @since 2012-08-17 - */ - public function shouldWorkMixPhpMustacheEngines() - { - $this->specify( - 'The engine does not work as expected', - function ($errorMessage, $engines, $params) { - $this->view->setDI(Di::getDefault()); - $this->view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - $this->view->registerEngines($engines); - - $this->setParamAndCheckData($errorMessage, $params, $this->view); - }, - [ - 'examples' => include PATH_FIXTURES . 'mvc/view_engines_test/view_set_php_mustache.php' - ] - ); - } - - /** - * Tests the mix Mustache with PHP Engines - * - * @test - * @author Andres Gutierrez - * @since 2012-08-17 - */ - public function shouldWorkMixPhpMustacheEnginesPartial() - { - $this->specify( - 'The engine does not work as expected', - function ($errorMessage, $engines, $params) { - $this->view->setDI(Di::getDefault()); - $this->view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - $this->view->registerEngines($engines); - - $this->setParamAndCheckData($errorMessage, $params, $this->view); - }, - [ - 'examples' => include PATH_FIXTURES . 'mvc/view_engines_test/view_set_php_mustache_partial.php' - ] - ); - } - - /** - * Tests the mix Mustache with PHP Engines - * - * @test - * @author Andres Gutierrez - * @since 2012-08-17 - */ - public function shouldWorkMixPhpTwigEnginesPartial() - { - $this->specify( - 'The engine does not work as expected', - function ($errorMessage, $engines, $params) { - $this->view->setDI(Di::getDefault()); - $this->view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - $this->view->registerEngines($engines); - - $this->setParamAndCheckData($errorMessage, $params, $this->view); - }, - [ - 'examples' => include PATH_FIXTURES . 'mvc/view_engines_test/view_set_php_twig_partial.php' - ] - ); - } -} diff --git a/tests/unit/Mvc/ViewTest.php b/tests/unit/Mvc/ViewTest.php deleted file mode 100644 index 79e2af9fca7..00000000000 --- a/tests/unit/Mvc/ViewTest.php +++ /dev/null @@ -1,700 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Mvc - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class ViewTest extends UnitTest -{ - use ViewTrait; - - /** - * Tests using partials with the mix Twig with PHP Engines - * - * @author Andres Gutierrez - * @since 2013-01-07 - */ - public function testOverrideLayout() - { - $this->specify( - 'Overriding the layout does not work as expected', - function () { - $view = new View; - $view->setDI(Di::getDefault()); - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - - $view->start(); - $view->setLayout('test6'); - $view->render('test3', 'other'); - $view->finish(); - - expect($view->getContent())->equals("Well, this is the view content: here.\n"); - } - ); - } - - /** - * Test using different layout and pick - * - * @author Andres Gutierrez - * @since 2013-01-07 - */ - public function testLayoutAndPick() - { - $this->specify( - 'Using different layout and pick does not work as expected', - function () { - $view = new View; - $view->setDI(Di::getDefault()); - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - - $view->start(); - $view->setLayout('test6'); - $view->pick('test3/other'); - $view->render('test3', 'another'); - $view->finish(); - - expect($view->getContent())->equals("Well, this is the view content: here.\n"); - - - $view->start(); - $view->setLayout('test6'); - $view->pick(['test3/other']); - $view->render('test3', 'another'); - $view->finish(); - - expect($view->getContent())->equals("Well, this is the view content: here.\n"); - } - ); - } - - /** - * Tests render with missing partial - * - * @author Kamil Skowron - * @since 2014-05-28 - * - * @expectedException \Phalcon\Mvc\View\Exception - * @expectedExceptionMessage View 'partials/missing' was not found in any of the views directory - */ - public function testMissingPartial() - { - $this->specify( - 'Using missing partial does not throw exception', - function () { - $view = new View; - $view->setDI(Di::getDefault()); - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - - $view->start(); - $view->render('test5', 'missing'); - $view->finish(); - } - ); - } - - /** - * Tests View::exists - * - * @author Kamil Skowron - * @since 2014-05-28 - */ - public function testExists() - { - $this->specify( - 'The View component does don detect views correctly', - function () { - $view = new View; - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - - expect($view->exists('test2/index'))->true(); - expect($view->exists('test3/other'))->true(); - expect($view->exists('does_not_exist'))->false(); - } - ); - } - - /** - * Tests View::render - * - * @author Andres Gutierrez - * @since 2012-03-05 - */ - public function testStandardRender() - { - $this->specify( - 'The View component does not work as expected', - function () { - $view = new View; - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - - $view->start(); - $view->render('test2', 'index'); - $view->finish(); - - expect($view->getContent())->equals("We are here\n"); - - $view->start(); - $view->render('test3', 'other'); - $view->finish(); - expect($view->getContent())->equals("lolhere\n"); - - $view->setParamToView('a_cool_var', 'le-this'); - - $view->start(); - $view->render('test3', 'another'); - $view->finish(); - - expect($view->getContent())->equals("lol

le-this

\n"); - - $view->setTemplateAfter('test'); - - $view->start(); - $view->render('test3', 'other'); - $view->finish(); - - expect($view->getContent())->equals("zuplolhere\n"); - - $view->cleanTemplateAfter(); - - $view->setRenderLevel(View::LEVEL_MAIN_LAYOUT); - - $view->start(); - $view->render('test3', 'other'); - $view->finish(); - - expect($view->getContent())->equals("lolhere\n"); - - $view->setRenderLevel(View::LEVEL_LAYOUT); - - $view->start(); - $view->render('test3', 'other'); - $view->finish(); - - expect($view->getContent())->equals('lolhere'); - - $view->setRenderLevel(View::LEVEL_ACTION_VIEW); - - $view->start(); - $view->render('test3', 'other'); - $view->finish(); - - expect($view->getContent())->equals('here'); - - $view->setRenderLevel(View::LEVEL_MAIN_LAYOUT); - $view->start(); - $view->pick('test3/yup'); - $view->render('test3', 'other'); - $view->finish(); - - expect($view->getContent())->equals("lolyup\n"); - - $view->setRenderLevel(View::LEVEL_NO_RENDER); - $view->start(); - $view->pick('test3/yup'); - $view->render('test3', 'other'); - $view->finish(); - - expect($view->getContent())->equals(''); - } - ); - } - - /** - * Tests View::render with params - * - * @author Serghei Iakovlev - * @since 2017-09-24 - * @issue https://github.com/phalcon/cphalcon/issues/13046 - */ - public function shouldRenderWithParams() - { - $this->specify( - "The View component doesn't render view with params", - function () { - $view = new View(); - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - - $view->start(); - $view->render('test2', 'params', ['name' => 'Sam', 'age' => 20]); - $view->finish(); - - expect($view->getContent())->equals("My name is Sam and I am 20 years old\n"); - } - ); - } - - /** - * Tests View::setMainView - * - * @author Kamil Skowron - * @since 2014-05-28 - */ - public function testOverrideMainView() - { - $this->specify( - 'The setting main view does not work as expected', - function () { - $view = new View; - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - - $view->setMainView('html5'); - - $view->start(); - $view->render('test2', 'index'); - $view->finish(); - - expect($view->getContent())->equals("We are here\n"); - } - ); - } - - /** - * Tests rendering with partials - * - * @author Andres Gutierrez - * @since 2012-05-28 - */ - public function testRenderingWithPartials() - { - $this->specify( - 'The rendering with partials does not work as expected', - function () { - $view = new View; - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - $view->setParamToView('cool_var', 'le-this'); - - $view->start(); - $view->render('test5', 'index'); - $view->finish(); - - expect($view->getContent())->equals("Hey, this is a partial, also le-this\n"); - - $view->start(); - $view->render('test9', 'index'); - $view->finish(); - - expect($view->getContent()) - ->equals("Hey, this is a partial, also le-this
Hey, this is a second partial, also le-this\n"); - - $view->start(); - $view->render('test5', 'subpartial'); - $view->finish(); - - expect($view->getContent())->equals("Including Hey, this is a partial, also le-this\n"); - - $view->setMainView('html5'); - - $view->start(); - $view->render('test5', 'index'); - $view->finish(); - - expect($view->getContent()) - ->equals("Hey, this is a partial, also le-this\n"); - expect($view->getPartial('partials/_partial1', ['cool_var' => 'le-this'])) - ->equals('Hey, this is a partial, also le-this'); - } - ); - } - - /** - * Tests View::getRender - * - * @author Andres Gutierrez - * @since 2012-26-12 - */ - public function testGetRender() - { - $this->specify( - 'The rendering does not work as expected', - function () { - $view = new View; - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - - expect($view->getRender('test5', 'index', ['cool_var' => 'le-this'])) - ->equals("Hey, this is a partial, also le-this\n"); - } - ); - } - - public function testSettersAndGetters() - { - $this->specify( - "View getters and setters don't work", - function () { - $view = new View(); - - expect($view)->equals($view->setBasePath(PATH_DATA)); - - $view->foo = "bar"; - expect("bar")->equals($view->foo); - - expect($view)->equals($view->setVar("foo1", "bar1")); - expect("bar1")->equals($view->getVar("foo1")); - - $expectedVars = ["foo2" => "bar2", "foo3" => "bar3"]; - expect($view)->equals($view->setVars($expectedVars)); - expect("bar2")->equals($view->foo2); - expect("bar3")->equals($view->foo3); - expect($view)->equals($view->setVars($expectedVars, false)); - - expect($view)->equals($view->setParamToView("foo4", "bar4")); - - $expectedParamsToView = ["foo2" => "bar2", "foo3" => "bar3", "foo4" => "bar4"]; - expect($expectedParamsToView)->equals($view->getParamsToView()); - - expect($view)->equals($view->setContent("

hello

")); - expect("

hello

")->equals($view->getContent()); - - expect($view)->equals($view->setViewsDir("views/")); - expect("views/")->equals($view->getViewsDir()); - - expect($view)->equals($view->setLayoutsDir("views/layouts/")); - expect("views/layouts/")->equals($view->getLayoutsDir()); - - expect($view)->equals($view->setPartialsDir("views/partials/")); - expect("views/partials/")->equals($view->getPartialsDir()); - - expect($view)->equals($view->disableLevel(View::LEVEL_MAIN_LAYOUT)); - expect($view)->equals($view->setRenderLevel(View::LEVEL_ACTION_VIEW)); - expect(View::LEVEL_ACTION_VIEW)->equals($view->getRenderLevel()); - - expect($view)->equals($view->setMainView("html5")); - expect("html5")->equals($view->getMainView()); - - expect($view)->equals($view->setLayout("test2")); - expect("test2")->equals($view->getLayout()); - - expect($view)->equals($view->setTemplateBefore("before")); - expect($view)->equals($view->setTemplateAfter("after")); - expect($view)->equals($view->cleanTemplateBefore()); - expect($view)->equals($view->cleanTemplateAfter()); - - $view->start(); - $view->render("test2", "index"); - $view->finish(); - - expect("test2")->equals($view->getControllerName()); - expect("index")->equals($view->getActionName()); - } - ); - } - - /** - * @covers \Phalcon\Mvc\View::__isset - */ - public function testViewParamIsset() - { - $this->specify( - "Setting View parameters doesn't work", - function () { - $view = new View(); - - $view->setViewsDir(PATH_DATA . "views" . DIRECTORY_SEPARATOR); - - $view->set_param = "something"; - - $content = $view->getRender("test16", "index"); - - expect($content)->equals("1" . PHP_EOL); - } - ); - } - - public function testDisableLevels() - { - $this->specify( - "Disabling view levels doesn't work as expected", - function () { - $view = $this->_getViewDisabled(); - - expect($view->getContent())->equals('
Action
' . PHP_EOL); - - $view = $this->_getViewDisabled(View::LEVEL_ACTION_VIEW); - - expect($view->getContent())->equals('
' . PHP_EOL); - - $view = $this->_getViewDisabled(View::LEVEL_BEFORE_TEMPLATE); - - expect($view->getContent())->equals('
Action
' . PHP_EOL); - - $view = $this->_getViewDisabled(View::LEVEL_LAYOUT); - - expect($view->getContent())->equals('
Action
' . PHP_EOL); - - $view = $this->_getViewDisabled(View::LEVEL_AFTER_TEMPLATE); - - expect($view->getContent())->equals('
Action
' . PHP_EOL); - - $view = $this->_getViewDisabled(View::LEVEL_MAIN_LAYOUT); - - expect($view->getContent())->equals('
Action
'); - - $view = $this->_getViewDisabled( - [ - View::LEVEL_BEFORE_TEMPLATE => true, - View::LEVEL_LAYOUT => true, - View::LEVEL_AFTER_TEMPLATE => true, - View::LEVEL_MAIN_LAYOUT => true, - ] - ); - - expect($view->getContent())->equals('
Action
'); - } - ); - } - - protected function _getViewDisabled($level = null) - { - $view = new View(); - - $view->setViewsDir(PATH_DATA . "views" . DIRECTORY_SEPARATOR); - - $view->setTemplateAfter("after"); - $view->setTemplateBefore("before"); - - if ($level !== null) { - $view->disableLevel($level); - } - - $view->start(); - $view->render("test13", "index"); - $view->finish(); - - return $view; - } - - public function testCacheDI() - { - $this->specify( - "Views are not cached properly", - function () { - $this->clearCache(); - - $date = date("r"); - $content = '' . $date . '' . PHP_EOL; - - $di = $this->_getDi(); - $view = new View(); - $view->setDI($di); - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - $view->setVar("date", $date); - - //First hit - $view->start(); - $view->cache(true); - $view->render('test8', 'index'); - $view->finish(); - expect($view->getContent())->equals($content); - - $view->reset(); - - //Second hit - $view->start(); - $view->cache(true); - $view->render('test8', 'index'); - $view->finish(); - expect($view->getContent())->equals($content); - - $view->reset(); - - sleep(1); - - $view->setVar("date", date("r")); - - //Third hit after 1 second - $view->start(); - $view->cache(true); - $view->render('test8', 'index'); - $view->finish(); - expect($view->getContent())->equals($content); - - $view->reset(); - - //Four hit - $view->start(); - $view->cache(true); - $view->render('test8', 'index'); - $view->finish(); - expect($view->getContent())->equals($content); - } - ); - } - - public function testViewCacheIndependency() - { - $this->specify( - "Views are not cached properly (2)", - function () { - $this->clearCache(); - - $date = date("r"); - $content = ''.$date.''.PHP_EOL; - - $di = $this->_getDi(); - $view = new View(); - $view->setDI($di); - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - $view->setVar("date", $date); - - //First hit - $view->start(); - $view->cache(true); - $view->render('test8', 'index'); - $view->finish(); - expect($view->getContent())->equals($content); - - $di2 = $this->_getDi(); - $view2 = new View(); - $view2->setDI($di2); - $view2->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - - //Second hit - $view2->start(); - $view2->cache(true); - $view2->render('test8', 'index'); - $view2->finish(); - expect($view2->getContent())->equals($content); - } - ); - } - - public function testViewOptions() - { - $this->specify( - "Views are not cached properly when passing options to the constructor", - function () { - $this->clearCache(); - - $config = array( - 'cache' => array( - 'service' => 'otherCache', - ) - ); - $date = date("r"); - $content = ''.$date.''.PHP_EOL; - - $di = $this->_getDi('otherCache'); - $view = new View($config); - $view->setDI($di); - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - $view->setVar("date", $date); - - $view->start(); - $view->cache(true); - $view->render('test8', 'other'); - $view->finish(); - expect($view->getContent())->equals($content); - - $view->reset(); - - sleep(1); - - $view->setVar("date", date("r")); - - $view->start(); - $view->cache(true); - $view->render('test8', 'other'); - $view->finish(); - expect($view->getContent())->equals($content); - } - ); - } - - public function testCacheMethods() - { - $this->specify( - "View methods don't return the View instance", - function () { - $di = $this->_getDi(); - $view = new View(); - $view->setDI($di); - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - - expect($view->start())->equals($view); - expect($view->cache(true))->equals($view); - expect($view->render('test2', 'index'))->equals($view); - expect($view->finish())->equals($view); - } - ); - } - - /** - * Tests params view scope - * - * @issue https://github.com/phalcon/cphalcon/issues/12648 - * @issue https://github.com/phalcon/cphalcon/pull/13288 - * @author Wojciech Ślawski - * @since 2017-03-17 - */ - public function testIssue12648() - { - $this->specify( - "View params are available in local scope", - function () { - $this->clearCache(); - $di = $this->_getDi(); - $view = new View(); - $view->setDI($di); - $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); - $view->setParamToView('a_cool_var', 'test'); - - $content = $view->setRenderLevel(View::LEVEL_ACTION_VIEW)->getRender('test3', 'another'); - expect($content)->equals("lol

test

\n"); - - // FIXME: This test need to be refactored to not use try/catch - try { - echo $a_cool_var; - $this->fail('Variable a_cool_var is defined and is set to "' . $a_cool_var . '"'); - } catch (\PHPUnit\Framework\Exception $e) { - expect($e->getMessage())->contains("Undefined variable: a_cool_var"); - } - } - ); - } - - private function _getDi($service = 'viewCache', $lifetime = 60) - { - $di = new Di(); - - $frontendCache = new FrontendCache( - array( - 'lifetime' => $lifetime - ) - ); - - $backendCache = new BackendCache( - $frontendCache, - array( - 'cacheDir' => PATH_CACHE - ) - ); - - $di->set($service, $backendCache); - - return $di; - } -} diff --git a/tests/unit/Mvc/ViewTest.php_check b/tests/unit/Mvc/ViewTest.php_check new file mode 100644 index 00000000000..34f2d101364 --- /dev/null +++ b/tests/unit/Mvc/ViewTest.php_check @@ -0,0 +1,700 @@ + + * @author Serghei Iakovlev + * @package Phalcon\Test\Unit\Mvc + * + * The contents of this file are subject to the New BSD License that is + * bundled with this package in the file LICENSE.txt + * + * If you did not receive a copy of the license and are unable to obtain it + * through the world-wide-web, please send an email to license@phalconphp.com + * so that we can send you a copy immediately. + */ +class ViewTest extends UnitTest +{ + use ViewTrait; + + /** + * Tests using partials with the mix Twig with PHP Engines + * + * @author Phalcon Team + * @since 2013-01-07 + */ + public function testOverrideLayout() + { + $this->specify( + 'Overriding the layout does not work as expected', + function () { + $view = new View; + $view->setDI(Di::getDefault()); + $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); + + $view->start(); + $view->setLayout('test6'); + $view->render('test3', 'other'); + $view->finish(); + + expect($view->getContent())->equals("Well, this is the view content: here.\n"); + } + ); + } + + /** + * Test using different layout and pick + * + * @author Phalcon Team + * @since 2013-01-07 + */ + public function testLayoutAndPick() + { + $this->specify( + 'Using different layout and pick does not work as expected', + function () { + $view = new View; + $view->setDI(Di::getDefault()); + $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); + + $view->start(); + $view->setLayout('test6'); + $view->pick('test3/other'); + $view->render('test3', 'another'); + $view->finish(); + + expect($view->getContent())->equals("Well, this is the view content: here.\n"); + + + $view->start(); + $view->setLayout('test6'); + $view->pick(['test3/other']); + $view->render('test3', 'another'); + $view->finish(); + + expect($view->getContent())->equals("Well, this is the view content: here.\n"); + } + ); + } + + /** + * Tests render with missing partial + * + * @author Kamil Skowron + * @since 2014-05-28 + * + * @expectedException \Phalcon\Mvc\View\Exception + * @expectedExceptionMessage View 'partials/missing' was not found in any of the views directory + */ + public function testMissingPartial() + { + $this->specify( + 'Using missing partial does not throw exception', + function () { + $view = new View; + $view->setDI(Di::getDefault()); + $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); + + $view->start(); + $view->render('test5', 'missing'); + $view->finish(); + } + ); + } + + /** + * Tests View::exists + * + * @author Kamil Skowron + * @since 2014-05-28 + */ + public function testExists() + { + $this->specify( + 'The View component does don detect views correctly', + function () { + $view = new View; + $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); + + expect($view->exists('test2/index'))->true(); + expect($view->exists('test3/other'))->true(); + expect($view->exists('does_not_exist'))->false(); + } + ); + } + + /** + * Tests View::render + * + * @author Phalcon Team + * @since 2012-03-05 + */ + public function testStandardRender() + { + $this->specify( + 'The View component does not work as expected', + function () { + $view = new View; + $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); + + $view->start(); + $view->render('test2', 'index'); + $view->finish(); + + expect($view->getContent())->equals("We are here\n"); + + $view->start(); + $view->render('test3', 'other'); + $view->finish(); + expect($view->getContent())->equals("lolhere\n"); + + $view->setParamToView('a_cool_var', 'le-this'); + + $view->start(); + $view->render('test3', 'another'); + $view->finish(); + + expect($view->getContent())->equals("lol

le-this

\n"); + + $view->setTemplateAfter('test'); + + $view->start(); + $view->render('test3', 'other'); + $view->finish(); + + expect($view->getContent())->equals("zuplolhere\n"); + + $view->cleanTemplateAfter(); + + $view->setRenderLevel(View::LEVEL_MAIN_LAYOUT); + + $view->start(); + $view->render('test3', 'other'); + $view->finish(); + + expect($view->getContent())->equals("lolhere\n"); + + $view->setRenderLevel(View::LEVEL_LAYOUT); + + $view->start(); + $view->render('test3', 'other'); + $view->finish(); + + expect($view->getContent())->equals('lolhere'); + + $view->setRenderLevel(View::LEVEL_ACTION_VIEW); + + $view->start(); + $view->render('test3', 'other'); + $view->finish(); + + expect($view->getContent())->equals('here'); + + $view->setRenderLevel(View::LEVEL_MAIN_LAYOUT); + $view->start(); + $view->pick('test3/yup'); + $view->render('test3', 'other'); + $view->finish(); + + expect($view->getContent())->equals("lolyup\n"); + + $view->setRenderLevel(View::LEVEL_NO_RENDER); + $view->start(); + $view->pick('test3/yup'); + $view->render('test3', 'other'); + $view->finish(); + + expect($view->getContent())->equals(''); + } + ); + } + + /** + * Tests View::render with params + * + * @author Serghei Iakovlev + * @since 2017-09-24 + * @issue https://github.com/phalcon/cphalcon/issues/13046 + */ + public function shouldRenderWithParams() + { + $this->specify( + "The View component doesn't render view with params", + function () { + $view = new View(); + $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); + + $view->start(); + $view->render('test2', 'params', ['name' => 'Sam', 'age' => 20]); + $view->finish(); + + expect($view->getContent())->equals("My name is Sam and I am 20 years old\n"); + } + ); + } + + /** + * Tests View::setMainView + * + * @author Kamil Skowron + * @since 2014-05-28 + */ + public function testOverrideMainView() + { + $this->specify( + 'The setting main view does not work as expected', + function () { + $view = new View; + $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); + + $view->setMainView('html5'); + + $view->start(); + $view->render('test2', 'index'); + $view->finish(); + + expect($view->getContent())->equals("We are here\n"); + } + ); + } + + /** + * Tests rendering with partials + * + * @author Phalcon Team + * @since 2012-05-28 + */ + public function testRenderingWithPartials() + { + $this->specify( + 'The rendering with partials does not work as expected', + function () { + $view = new View; + $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); + $view->setParamToView('cool_var', 'le-this'); + + $view->start(); + $view->render('test5', 'index'); + $view->finish(); + + expect($view->getContent())->equals("Hey, this is a partial, also le-this\n"); + + $view->start(); + $view->render('test9', 'index'); + $view->finish(); + + expect($view->getContent()) + ->equals("Hey, this is a partial, also le-this
Hey, this is a second partial, also le-this\n"); + + $view->start(); + $view->render('test5', 'subpartial'); + $view->finish(); + + expect($view->getContent())->equals("Including Hey, this is a partial, also le-this\n"); + + $view->setMainView('html5'); + + $view->start(); + $view->render('test5', 'index'); + $view->finish(); + + expect($view->getContent()) + ->equals("Hey, this is a partial, also le-this\n"); + expect($view->getPartial('partials/_partial1', ['cool_var' => 'le-this'])) + ->equals('Hey, this is a partial, also le-this'); + } + ); + } + + /** + * Tests View::getRender + * + * @author Phalcon Team + * @since 2012-26-12 + */ + public function testGetRender() + { + $this->specify( + 'The rendering does not work as expected', + function () { + $view = new View; + $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); + + expect($view->getRender('test5', 'index', ['cool_var' => 'le-this'])) + ->equals("Hey, this is a partial, also le-this\n"); + } + ); + } + + public function testSettersAndGetters() + { + $this->specify( + "View getters and setters don't work", + function () { + $view = new View(); + + expect($view)->equals($view->setBasePath(PATH_DATA)); + + $view->foo = "bar"; + expect("bar")->equals($view->foo); + + expect($view)->equals($view->setVar("foo1", "bar1")); + expect("bar1")->equals($view->getVar("foo1")); + + $expectedVars = ["foo2" => "bar2", "foo3" => "bar3"]; + expect($view)->equals($view->setVars($expectedVars)); + expect("bar2")->equals($view->foo2); + expect("bar3")->equals($view->foo3); + expect($view)->equals($view->setVars($expectedVars, false)); + + expect($view)->equals($view->setParamToView("foo4", "bar4")); + + $expectedParamsToView = ["foo2" => "bar2", "foo3" => "bar3", "foo4" => "bar4"]; + expect($expectedParamsToView)->equals($view->getParamsToView()); + + expect($view)->equals($view->setContent("

hello

")); + expect("

hello

")->equals($view->getContent()); + + expect($view)->equals($view->setViewsDir("views/")); + expect("views/")->equals($view->getViewsDir()); + + expect($view)->equals($view->setLayoutsDir("views/layouts/")); + expect("views/layouts/")->equals($view->getLayoutsDir()); + + expect($view)->equals($view->setPartialsDir("views/partials/")); + expect("views/partials/")->equals($view->getPartialsDir()); + + expect($view)->equals($view->disableLevel(View::LEVEL_MAIN_LAYOUT)); + expect($view)->equals($view->setRenderLevel(View::LEVEL_ACTION_VIEW)); + expect(View::LEVEL_ACTION_VIEW)->equals($view->getRenderLevel()); + + expect($view)->equals($view->setMainView("html5")); + expect("html5")->equals($view->getMainView()); + + expect($view)->equals($view->setLayout("test2")); + expect("test2")->equals($view->getLayout()); + + expect($view)->equals($view->setTemplateBefore("before")); + expect($view)->equals($view->setTemplateAfter("after")); + expect($view)->equals($view->cleanTemplateBefore()); + expect($view)->equals($view->cleanTemplateAfter()); + + $view->start(); + $view->render("test2", "index"); + $view->finish(); + + expect("test2")->equals($view->getControllerName()); + expect("index")->equals($view->getActionName()); + } + ); + } + + /** + * @covers \Phalcon\Mvc\View::__isset + */ + public function testViewParamIsset() + { + $this->specify( + "Setting View parameters doesn't work", + function () { + $view = new View(); + + $view->setViewsDir(PATH_DATA . "views" . DIRECTORY_SEPARATOR); + + $view->set_param = "something"; + + $content = $view->getRender("test16", "index"); + + expect($content)->equals("1" . PHP_EOL); + } + ); + } + + public function testDisableLevels() + { + $this->specify( + "Disabling view levels doesn't work as expected", + function () { + $view = $this->_getViewDisabled(); + + expect($view->getContent())->equals('
Action
' . PHP_EOL); + + $view = $this->_getViewDisabled(View::LEVEL_ACTION_VIEW); + + expect($view->getContent())->equals('
' . PHP_EOL); + + $view = $this->_getViewDisabled(View::LEVEL_BEFORE_TEMPLATE); + + expect($view->getContent())->equals('
Action
' . PHP_EOL); + + $view = $this->_getViewDisabled(View::LEVEL_LAYOUT); + + expect($view->getContent())->equals('
Action
' . PHP_EOL); + + $view = $this->_getViewDisabled(View::LEVEL_AFTER_TEMPLATE); + + expect($view->getContent())->equals('
Action
' . PHP_EOL); + + $view = $this->_getViewDisabled(View::LEVEL_MAIN_LAYOUT); + + expect($view->getContent())->equals('
Action
'); + + $view = $this->_getViewDisabled( + [ + View::LEVEL_BEFORE_TEMPLATE => true, + View::LEVEL_LAYOUT => true, + View::LEVEL_AFTER_TEMPLATE => true, + View::LEVEL_MAIN_LAYOUT => true, + ] + ); + + expect($view->getContent())->equals('
Action
'); + } + ); + } + + protected function _getViewDisabled($level = null) + { + $view = new View(); + + $view->setViewsDir(PATH_DATA . "views" . DIRECTORY_SEPARATOR); + + $view->setTemplateAfter("after"); + $view->setTemplateBefore("before"); + + if ($level !== null) { + $view->disableLevel($level); + } + + $view->start(); + $view->render("test13", "index"); + $view->finish(); + + return $view; + } + + public function testCacheDI() + { + $this->specify( + "Views are not cached properly", + function () { + $this->clearCache(); + + $date = date("r"); + $content = '' . $date . '' . PHP_EOL; + + $di = $this->_getDi(); + $view = new View(); + $view->setDI($di); + $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); + $view->setVar("date", $date); + + //First hit + $view->start(); + $view->cache(true); + $view->render('test8', 'index'); + $view->finish(); + expect($view->getContent())->equals($content); + + $view->reset(); + + //Second hit + $view->start(); + $view->cache(true); + $view->render('test8', 'index'); + $view->finish(); + expect($view->getContent())->equals($content); + + $view->reset(); + + sleep(1); + + $view->setVar("date", date("r")); + + //Third hit after 1 second + $view->start(); + $view->cache(true); + $view->render('test8', 'index'); + $view->finish(); + expect($view->getContent())->equals($content); + + $view->reset(); + + //Four hit + $view->start(); + $view->cache(true); + $view->render('test8', 'index'); + $view->finish(); + expect($view->getContent())->equals($content); + } + ); + } + + public function testViewCacheIndependency() + { + $this->specify( + "Views are not cached properly (2)", + function () { + $this->clearCache(); + + $date = date("r"); + $content = ''.$date.''.PHP_EOL; + + $di = $this->_getDi(); + $view = new View(); + $view->setDI($di); + $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); + $view->setVar("date", $date); + + //First hit + $view->start(); + $view->cache(true); + $view->render('test8', 'index'); + $view->finish(); + expect($view->getContent())->equals($content); + + $di2 = $this->_getDi(); + $view2 = new View(); + $view2->setDI($di2); + $view2->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); + + //Second hit + $view2->start(); + $view2->cache(true); + $view2->render('test8', 'index'); + $view2->finish(); + expect($view2->getContent())->equals($content); + } + ); + } + + public function testViewOptions() + { + $this->specify( + "Views are not cached properly when passing options to the constructor", + function () { + $this->clearCache(); + + $config = array( + 'cache' => array( + 'service' => 'otherCache', + ) + ); + $date = date("r"); + $content = ''.$date.''.PHP_EOL; + + $di = $this->_getDi('otherCache'); + $view = new View($config); + $view->setDI($di); + $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); + $view->setVar("date", $date); + + $view->start(); + $view->cache(true); + $view->render('test8', 'other'); + $view->finish(); + expect($view->getContent())->equals($content); + + $view->reset(); + + sleep(1); + + $view->setVar("date", date("r")); + + $view->start(); + $view->cache(true); + $view->render('test8', 'other'); + $view->finish(); + expect($view->getContent())->equals($content); + } + ); + } + + public function testCacheMethods() + { + $this->specify( + "View methods don't return the View instance", + function () { + $di = $this->_getDi(); + $view = new View(); + $view->setDI($di); + $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); + + expect($view->start())->equals($view); + expect($view->cache(true))->equals($view); + expect($view->render('test2', 'index'))->equals($view); + expect($view->finish())->equals($view); + } + ); + } + + /** + * Tests params view scope + * + * @issue https://github.com/phalcon/cphalcon/issues/12648 + * @issue https://github.com/phalcon/cphalcon/pull/13288 + * @author Wojciech Ślawski + * @since 2017-03-17 + */ + public function testIssue12648() + { + $this->specify( + "View params are available in local scope", + function () { + $this->clearCache(); + $di = $this->_getDi(); + $view = new View(); + $view->setDI($di); + $view->setViewsDir(PATH_DATA . 'views' . DIRECTORY_SEPARATOR); + $view->setParamToView('a_cool_var', 'test'); + + $content = $view->setRenderLevel(View::LEVEL_ACTION_VIEW)->getRender('test3', 'another'); + expect($content)->equals("lol

test

\n"); + + // FIXME: This test need to be refactored to not use try/catch + try { + echo $a_cool_var; + $this->fail('Variable a_cool_var is defined and is set to "' . $a_cool_var . '"'); + } catch (\PHPUnit\Framework\Exception $e) { + expect($e->getMessage())->contains("Undefined variable: a_cool_var"); + } + } + ); + } + + private function _getDi($service = 'viewCache', $lifetime = 60) + { + $di = new Di(); + + $frontendCache = new FrontendCache( + array( + 'lifetime' => $lifetime + ) + ); + + $backendCache = new BackendCache( + $frontendCache, + array( + 'cacheDir' => cacheFolder() + ) + ); + + $di->set($service, $backendCache); + + return $di; + } +} diff --git a/tests/unit/Paginator/Adapter/NativeArrayTest.php b/tests/unit/Paginator/Adapter/NativeArrayTest.php deleted file mode 100644 index b5a840ed284..00000000000 --- a/tests/unit/Paginator/Adapter/NativeArrayTest.php +++ /dev/null @@ -1,116 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Paginator\Adapter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class NativeArrayTest extends UnitTest -{ - - /** - * Tests NativeArray constructor - * - * @author Serghei Iakovlev - * @since 2016-03-03 - */ - public function testShouldCreatePaginator() - { - $this->specify( - "NativeArray does not create expected object", - function () { - $paginator = new NativeArray( - [ - 'data' => array_fill(0, 30, 'banana'), - 'limit' => 25, - 'page' => 1 - ] - ); - - $page = $paginator->getPaginate(); - - expect($page)->isInstanceOf('stdClass'); - expect($page->items)->count(25); - - expect($page->previous)->equals(1); - expect($page->before)->equals(1); - expect($page->next)->equals(2); - expect($page->last)->equals(2); - expect($page->limit)->equals(25); - - /** - * Now check by calling 'paginate()' - */ - $page = $paginator->paginate(); - - expect($page)->isInstanceOf('stdClass'); - expect($page->items)->count(25); - - expect($page->previous)->equals(1); - expect($page->before)->equals(1); - expect($page->next)->equals(2); - expect($page->last)->equals(2); - expect($page->limit)->equals(25); - - expect($page->current)->equals(1); - expect($page->total_pages)->equals(2); - - expect($page->current)->equals(1); - expect($page->total_pages)->equals(2); - } - ); - } - - /** - * Tests NativeArray::setCurrentPage - * - * @author Serghei Iakovlev - * @since 2016-03-03 - */ - public function testShouldSetCurrentPage() - { - $this->specify( - "NativeArray::setCurrentPage does not work correctly", - function () { - $paginator = new NativeArray( - [ - 'data' => array_fill(0, 30, 'banana'), - 'limit' => 25, - 'page' => 1 - ] - ); - - $paginator->setCurrentPage(2); - - $page = $paginator->getPaginate(); - - expect($page)->isInstanceOf('stdClass'); - expect($page->items)->count(5); - - expect($page->before)->equals(1); - expect($page->next)->equals(2); - expect($page->last)->equals(2); - - expect($page->current)->equals(2); - expect($page->total_pages)->equals(2); - } - ); - } -} diff --git a/tests/unit/Paginator/Adapter/QueryBuilderTest.php b/tests/unit/Paginator/Adapter/QueryBuilderTest.php deleted file mode 100644 index be4d2b68cf8..00000000000 --- a/tests/unit/Paginator/Adapter/QueryBuilderTest.php +++ /dev/null @@ -1,173 +0,0 @@ - - * @author Serghei Iakovlev - * @author Wojciech Ślawski - * @package Phalcon\Test\Unit\Paginator\Adapter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class QueryBuilderTest extends UnitTest -{ - use ModelTrait; - - /** - * Tests query builder pagination with having and group - * - * @author Wojciech Ślawski - * @since 2017-03-15 - */ - public function testIssue12111WithGroup() - { - $this->specify( - "Query builder paginator adapter doesn't work correctly with having", - function () { - $modelsManager = $this->setUpModelsManager(); - $builder = $modelsManager->createBuilder() - ->columns("name, COUNT(*) as stock_count") - ->from(['Stock' => Stock::class]) - ->groupBy('name') - ->having('SUM(Stock.stock) > 0'); - - $paginate = (new QueryBuilder( - [ - "builder" => $builder, - "limit" => 1, - "page" => 2 - ] - ))->getPaginate(); - - expect($paginate->total_pages)->equals(2); - expect($paginate->total_items)->equals(2); - } - ); - } - - /** - * Tests query builder pagination with having not throwing exception when should - * - * @author Wojciech Ślawski - * @since 2017-03-15 - * @expectedException \Phalcon\Paginator\Exception - * @expectedExceptionMessage When having is set there should be columns option provided for which calculate row count - */ - public function testIssue12111WithoutGroupException() - { - $this->specify( - "Query builder paginator adapter doesn't throw exception when no columns option is set", - function () { - $modelsManager = $this->setUpModelsManager(); - $builder = $modelsManager->createBuilder() - ->columns("COUNT(*) as stock_count") - ->from(['Stock' => Stock::class]) - ->having('SUM(Stock.stock) > 0'); - - $paginate = (new QueryBuilder( - [ - "builder" => $builder, - "limit" => 1, - "page" => 2 - ] - ))->getPaginate(); - } - ); - } - - /** - * Tests query builder pagination with having and without group - * - * @author Wojciech Ślawski - * @since 2017-03-15 - */ - public function testIssue12111WithoutGroup() - { - $this->specify( - "Query builder paginator adapter doesn't throw exception when no columns option is set", - function () { - $di = Di::getDefault(); - $db = $di->getShared('db'); - /* - * There is no clean way to rewrite query builder's query in the strict mode: - * if we remove all nonaggregated columns, we will get "Unknown column 'Stock.stock' in 'having clause'", - * otherwise "In aggregated query without GROUP BY, expression #1 of SELECT list contains nonaggregated column 'phalcon_test.Stock.stock'" - */ - $db->query("SET SESSION sql_mode='STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION'"); - - $modelsManager = $this->setUpModelsManager(); - $builder = $modelsManager->createBuilder() - ->columns("*, COUNT(*) as stock_count") - ->from(['Stock' => Stock::class]) - ->having('stock > 0'); - - $paginate = (new QueryBuilder( - [ - "builder" => $builder, - "limit" => 1, - "page" => 2, - "columns" => "id,stock" - ] - ))->getPaginate(); - - expect($paginate->total_pages)->equals(2); - expect($paginate->total_items)->equals(2); - } - ); - } - - /** - * Tests query builder pagination with having and group with a different db service than 'db' - * - * @author David Napierata - * @since 2017-07-18 - */ - public function testIssue12957() - { - $this->specify( - "Query builder paginator doesn't work correctly with a different db service", - function () { - $modelsManager = $this->setUpModelsManager(); - $di = $modelsManager->getDI(); - $di->set( - 'dbTwo', - $di->get('db') - ); - $builder = $modelsManager->createBuilder() - ->columns("COUNT(*) as robos_count") - ->from(['Robos' => Robos::class]) - ->groupBy('type') - ->having('MAX(Robos.year) > 1970'); - - $paginate = (new QueryBuilder( - [ - "builder" => $builder, - "limit" => 1, - "page" => 2 - ] - ))->getPaginate(); - - expect($paginate->total_pages)->equals(2); - expect($paginate->total_items)->equals(2); - } - ); - } -} diff --git a/tests/unit/Paginator/FactoryTest.php b/tests/unit/Paginator/FactoryTest.php deleted file mode 100644 index a192aae7434..00000000000 --- a/tests/unit/Paginator/FactoryTest.php +++ /dev/null @@ -1,81 +0,0 @@ - - * @author Serghei Iakovlev - * @author Wojciech Ślawski - * @package Phalcon\Test\Unit\Annotations - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FactoryTest extends FactoryBase -{ - use ModelTrait; - - /** - * Test factory using Phalcon\Config - * - * @author Wojciech Ślawski - * @since 2017-03-02 - */ - public function testConfigFactory() - { - $this->specify( - "Factory using Phalcon\\Config doesn't work properly", - function () { - $options = $this->config->paginator; - $options->builder = $this->setUpModelsManager()->createBuilder() - ->columns("id,name") - ->from("Robots") - ->orderBy("name"); - /** @var QueryBuilder $paginator */ - $paginator = Factory::load($options); - expect($paginator)->isInstanceOf(QueryBuilder::class); - expect($paginator->getLimit())->equals($options->limit); - expect($paginator->getCurrentPage())->equals($options->page); - } - ); - } - - /** - * Test factory using array - * - * @author Wojciech Ślawski - * @since 2017-03-02 - */ - public function testArrayFactory() - { - $this->specify( - "Factory using array doesn't work properly", - function () { - $options = $this->arrayConfig["paginator"]; - $options["builder"] = $this->setUpModelsManager()->createBuilder() - ->columns("id,name") - ->from("Robots") - ->orderBy("name"); - /** @var QueryBuilder $paginator */ - $paginator = Factory::load($options); - expect($paginator)->isInstanceOf(QueryBuilder::class); - expect($paginator->getLimit())->equals($options["limit"]); - expect($paginator->getCurrentPage())->equals($options["page"]); - } - ); - } -} diff --git a/tests/unit/Queue/Beanstalk/ChooseCest.php b/tests/unit/Queue/Beanstalk/ChooseCest.php new file mode 100644 index 00000000000..7bf2480f622 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/ChooseCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class ChooseCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: choose() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkChoose(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - choose()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/ConnectCest.php b/tests/unit/Queue/Beanstalk/ConnectCest.php new file mode 100644 index 00000000000..6b5b7daca71 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/ConnectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class ConnectCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: connect() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkConnect(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - connect()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/ConstructCest.php b/tests/unit/Queue/Beanstalk/ConstructCest.php new file mode 100644 index 00000000000..4c655a51fbf --- /dev/null +++ b/tests/unit/Queue/Beanstalk/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkConstruct(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/DisconnectCest.php b/tests/unit/Queue/Beanstalk/DisconnectCest.php new file mode 100644 index 00000000000..a80b7ead0bc --- /dev/null +++ b/tests/unit/Queue/Beanstalk/DisconnectCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class DisconnectCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: disconnect() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkDisconnect(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - disconnect()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/IgnoreCest.php b/tests/unit/Queue/Beanstalk/IgnoreCest.php new file mode 100644 index 00000000000..30f3a9278b9 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/IgnoreCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class IgnoreCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: ignore() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkIgnore(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - ignore()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/Job/BuryCest.php b/tests/unit/Queue/Beanstalk/Job/BuryCest.php new file mode 100644 index 00000000000..d9b99677076 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/Job/BuryCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk\Job; + +use UnitTester; + +class BuryCest +{ + /** + * Tests Phalcon\Queue\Beanstalk\Job :: bury() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkJobBury(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk\Job - bury()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/Job/ConstructCest.php b/tests/unit/Queue/Beanstalk/Job/ConstructCest.php new file mode 100644 index 00000000000..d0a5607e4e9 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/Job/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk\Job; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Queue\Beanstalk\Job :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkJobConstruct(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk\Job - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/Job/DeleteCest.php b/tests/unit/Queue/Beanstalk/Job/DeleteCest.php new file mode 100644 index 00000000000..1724b70121b --- /dev/null +++ b/tests/unit/Queue/Beanstalk/Job/DeleteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk\Job; + +use UnitTester; + +class DeleteCest +{ + /** + * Tests Phalcon\Queue\Beanstalk\Job :: delete() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkJobDelete(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk\Job - delete()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/Job/GetBodyCest.php b/tests/unit/Queue/Beanstalk/Job/GetBodyCest.php new file mode 100644 index 00000000000..14a304caaa2 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/Job/GetBodyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk\Job; + +use UnitTester; + +class GetBodyCest +{ + /** + * Tests Phalcon\Queue\Beanstalk\Job :: getBody() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkJobGetBody(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk\Job - getBody()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/Job/GetIdCest.php b/tests/unit/Queue/Beanstalk/Job/GetIdCest.php new file mode 100644 index 00000000000..896c750d19c --- /dev/null +++ b/tests/unit/Queue/Beanstalk/Job/GetIdCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk\Job; + +use UnitTester; + +class GetIdCest +{ + /** + * Tests Phalcon\Queue\Beanstalk\Job :: getId() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkJobGetId(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk\Job - getId()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/Job/KickCest.php b/tests/unit/Queue/Beanstalk/Job/KickCest.php new file mode 100644 index 00000000000..aa2a7e1ff97 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/Job/KickCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk\Job; + +use UnitTester; + +class KickCest +{ + /** + * Tests Phalcon\Queue\Beanstalk\Job :: kick() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkJobKick(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk\Job - kick()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/Job/ReleaseCest.php b/tests/unit/Queue/Beanstalk/Job/ReleaseCest.php new file mode 100644 index 00000000000..7d5beca2e34 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/Job/ReleaseCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk\Job; + +use UnitTester; + +class ReleaseCest +{ + /** + * Tests Phalcon\Queue\Beanstalk\Job :: release() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkJobRelease(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk\Job - release()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/Job/StatsCest.php b/tests/unit/Queue/Beanstalk/Job/StatsCest.php new file mode 100644 index 00000000000..f560d805a69 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/Job/StatsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk\Job; + +use UnitTester; + +class StatsCest +{ + /** + * Tests Phalcon\Queue\Beanstalk\Job :: stats() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkJobStats(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk\Job - stats()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/Job/TouchCest.php b/tests/unit/Queue/Beanstalk/Job/TouchCest.php new file mode 100644 index 00000000000..5e6336dae0b --- /dev/null +++ b/tests/unit/Queue/Beanstalk/Job/TouchCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk\Job; + +use UnitTester; + +class TouchCest +{ + /** + * Tests Phalcon\Queue\Beanstalk\Job :: touch() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkJobTouch(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk\Job - touch()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/Job/WakeupCest.php b/tests/unit/Queue/Beanstalk/Job/WakeupCest.php new file mode 100644 index 00000000000..d50c0700b65 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/Job/WakeupCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk\Job; + +use UnitTester; + +class WakeupCest +{ + /** + * Tests Phalcon\Queue\Beanstalk\Job :: __wakeup() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkJobWakeup(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk\Job - __wakeup()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/JobCest.php b/tests/unit/Queue/Beanstalk/JobCest.php new file mode 100644 index 00000000000..3efadf3bd6c --- /dev/null +++ b/tests/unit/Queue/Beanstalk/JobCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use Phalcon\Test\Fixtures\Traits\BeanstalkTrait; +use UnitTester; + +class JobCest +{ + use BeanstalkTrait; + + /** + * Tests getting status + * + * @author Phalcon Team + * @since 2016-01-17 + */ + public function testStats(UnitTester $I) + { + $this->client->choose('beanstalk-test'); + $this->client->put('doSomething'); + $this->client->watch('beanstalk-test'); + + $job = $this->client->peekReady(); + $jobStats = $job->stats(); + + $I->assertTrue(is_array($jobStats)); + $I->assertTrue(isset($jobStats['tube'])); + $I->assertTrue($jobStats['tube'] === 'beanstalk-test'); + } +} diff --git a/tests/unit/Queue/Beanstalk/JobPeekCest.php b/tests/unit/Queue/Beanstalk/JobPeekCest.php new file mode 100644 index 00000000000..e6ff614bc79 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/JobPeekCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class JobPeekCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: jobPeek() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkJobPeek(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - jobPeek()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/JobTest.php b/tests/unit/Queue/Beanstalk/JobTest.php deleted file mode 100644 index 5414017e047..00000000000 --- a/tests/unit/Queue/Beanstalk/JobTest.php +++ /dev/null @@ -1,50 +0,0 @@ - - * @author Serghei Iakovlev - * @package Phalcon\Test\Unit\Queue\Beanstalk - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class JobTest extends BeanstalkBase -{ - /** - * Tests getting status - * - * @author Serghei Iakovlev - * @since 2016-01-17 - */ - public function testStats() - { - $this->specify( - "Unable get status", - function () { - $this->client->choose('beanstalk-test'); - $this->client->put('doSomething'); - $this->client->watch('beanstalk-test'); - - $job = $this->client->peekReady(); - $jobStats = $job->stats(); - - verify(is_array($jobStats)); - $this->assertArrayHasKey('tube', $jobStats); - verify($jobStats['tube'] === 'beanstalk-test'); - } - ); - } -} diff --git a/tests/unit/Queue/Beanstalk/KickCest.php b/tests/unit/Queue/Beanstalk/KickCest.php new file mode 100644 index 00000000000..e586a6e4b38 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/KickCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class KickCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: kick() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkKick(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - kick()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/ListTubeUsedCest.php b/tests/unit/Queue/Beanstalk/ListTubeUsedCest.php new file mode 100644 index 00000000000..bcf9a1b10a8 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/ListTubeUsedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class ListTubeUsedCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: listTubeUsed() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkListTubeUsed(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - listTubeUsed()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/ListTubesCest.php b/tests/unit/Queue/Beanstalk/ListTubesCest.php new file mode 100644 index 00000000000..b6e478c8350 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/ListTubesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class ListTubesCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: listTubes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkListTubes(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - listTubes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/ListTubesWatchedCest.php b/tests/unit/Queue/Beanstalk/ListTubesWatchedCest.php new file mode 100644 index 00000000000..87f6a58a832 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/ListTubesWatchedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class ListTubesWatchedCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: listTubesWatched() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkListTubesWatched(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - listTubesWatched()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/PauseTubeCest.php b/tests/unit/Queue/Beanstalk/PauseTubeCest.php new file mode 100644 index 00000000000..2da4567562e --- /dev/null +++ b/tests/unit/Queue/Beanstalk/PauseTubeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class PauseTubeCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: pauseTube() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkPauseTube(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - pauseTube()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/PeekBuriedCest.php b/tests/unit/Queue/Beanstalk/PeekBuriedCest.php new file mode 100644 index 00000000000..c833ae74bb1 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/PeekBuriedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class PeekBuriedCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: peekBuried() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkPeekBuried(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - peekBuried()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/PeekDelayedCest.php b/tests/unit/Queue/Beanstalk/PeekDelayedCest.php new file mode 100644 index 00000000000..8a8dab31f1d --- /dev/null +++ b/tests/unit/Queue/Beanstalk/PeekDelayedCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class PeekDelayedCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: peekDelayed() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkPeekDelayed(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - peekDelayed()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/PeekReadyCest.php b/tests/unit/Queue/Beanstalk/PeekReadyCest.php new file mode 100644 index 00000000000..5396a364bd6 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/PeekReadyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class PeekReadyCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: peekReady() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkPeekReady(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - peekReady()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/PutCest.php b/tests/unit/Queue/Beanstalk/PutCest.php new file mode 100644 index 00000000000..4037d82faa4 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/PutCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class PutCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: put() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkPut(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - put()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/QuitCest.php b/tests/unit/Queue/Beanstalk/QuitCest.php new file mode 100644 index 00000000000..db3d21c14dd --- /dev/null +++ b/tests/unit/Queue/Beanstalk/QuitCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class QuitCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: quit() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkQuit(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - quit()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/ReadCest.php b/tests/unit/Queue/Beanstalk/ReadCest.php new file mode 100644 index 00000000000..561c1b9dccf --- /dev/null +++ b/tests/unit/Queue/Beanstalk/ReadCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class ReadCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: read() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkRead(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - read()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/ReadStatusCest.php b/tests/unit/Queue/Beanstalk/ReadStatusCest.php new file mode 100644 index 00000000000..0a33c835063 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/ReadStatusCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class ReadStatusCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: readStatus() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkReadStatus(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - readStatus()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/ReadYamlCest.php b/tests/unit/Queue/Beanstalk/ReadYamlCest.php new file mode 100644 index 00000000000..1d1803a399d --- /dev/null +++ b/tests/unit/Queue/Beanstalk/ReadYamlCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class ReadYamlCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: readYaml() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkReadYaml(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - readYaml()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/ReserveCest.php b/tests/unit/Queue/Beanstalk/ReserveCest.php new file mode 100644 index 00000000000..45d964b0e97 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/ReserveCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class ReserveCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: reserve() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkReserve(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - reserve()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/StatsCest.php b/tests/unit/Queue/Beanstalk/StatsCest.php new file mode 100644 index 00000000000..913d77656b2 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/StatsCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class StatsCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: stats() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkStats(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - stats()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/StatsTubeCest.php b/tests/unit/Queue/Beanstalk/StatsTubeCest.php new file mode 100644 index 00000000000..c8b17871d16 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/StatsTubeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class StatsTubeCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: statsTube() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkStatsTube(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - statsTube()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/WatchCest.php b/tests/unit/Queue/Beanstalk/WatchCest.php new file mode 100644 index 00000000000..308f0640485 --- /dev/null +++ b/tests/unit/Queue/Beanstalk/WatchCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class WatchCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: watch() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkWatch(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - watch()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/Beanstalk/WriteCest.php b/tests/unit/Queue/Beanstalk/WriteCest.php new file mode 100644 index 00000000000..479933c7ffa --- /dev/null +++ b/tests/unit/Queue/Beanstalk/WriteCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue\Beanstalk; + +use UnitTester; + +class WriteCest +{ + /** + * Tests Phalcon\Queue\Beanstalk :: write() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function queueBeanstalkWrite(UnitTester $I) + { + $I->wantToTest("Queue\Beanstalk - write()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Queue/BeanstalkCest.php b/tests/unit/Queue/BeanstalkCest.php new file mode 100644 index 00000000000..dfc19e78c16 --- /dev/null +++ b/tests/unit/Queue/BeanstalkCest.php @@ -0,0 +1,511 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Queue; + +use Phalcon\Queue\Beanstalk; +use Phalcon\Queue\Beanstalk\Exception; +use Phalcon\Queue\Beanstalk\Job; +use Phalcon\Test\Fixtures\Traits\BeanstalkTrait; +use UnitTester; + +class BeanstalkCest +{ + use BeanstalkTrait; + + const TUBE_NAME_1 = 'beanstalk-test-1'; + const TUBE_NAME_2 = 'beanstalk-test-2'; + const TUBE_NAME_DEFAULT = 'default'; + const JOB_CLASS = 'Phalcon\Queue\Beanstalk\Job'; + + /** + * Tests Beanstalk connection + * + * @author Phalcon Team + * @since 2016-04-11 + */ + public function testShouldConnectAndDisconnect(UnitTester $I) + { + $this->client->disconnect(); + + $I->assertFalse($this->client->disconnect()); + $I->assertTrue(is_resource($this->client->connect())); + $I->assertTrue($this->client->disconnect()); + } + + /** + * Tests Beanstalk::getBody + * + * @author Kamil Skowron + * @since 2014-05-28 + */ + public function testShouldGetBody(UnitTester $I) + { + $expected = ['processVideo' => 4871]; + + $this->client->put($expected); + while (($job = $this->client->peekReady()) !== false) { + $actual = $job->getBody(); + $job->delete(); + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests changing the active tube. + * use command + * + * @author Phalcon Team + * @since 2016-01-17 + */ + public function testShouldChooseTube(UnitTester $I) + { + $expected = self::TUBE_NAME_1; + $actual = $this->client->choose(self::TUBE_NAME_1); + $I->assertEquals($expected, $actual); + + $expected = self::TUBE_NAME_DEFAULT; + $actual = $this->client->choose(self::TUBE_NAME_DEFAULT); + $I->assertEquals($expected, $actual); + } + + /** + * Tests getting status + * + * @author Sid Roberts + * @since 2015-05-11 + */ + public function testShouldGetStats(UnitTester $I) + { + $I->assertTrue(is_array($this->client->stats())); + + $this->client->choose(self::TUBE_NAME_1); + $tubeStats = $this->client->statsTube(self::TUBE_NAME_1); + + $I->assertTrue(is_array($tubeStats)); + $I->assertArrayHasKey('name', $tubeStats); + $I->assertSame(self::TUBE_NAME_1, $tubeStats['name']); + + $this->client->choose(self::TUBE_NAME_DEFAULT); + + $I->assertFalse($this->client->statsTube('beanstalk-test-does-not-exist')); + } + + public function testShouldReleaseKickAndBury(UnitTester $I) + { + $this->client->choose(self::TUBE_NAME_1); + + $task = 'doSomething'; + $I->assertNotFalse($this->client->put($task)); + $I->assertNotFalse($this->client->watch(self::TUBE_NAME_1)); + + $job = $this->client->reserve(0); + + $I->assertInstanceOf(self::JOB_CLASS, $job); + $I->assertEquals($task, $job->getBody()); + $I->assertTrue($job->touch()); + + // Release the job; it moves to the ready queue + $I->assertTrue($job->release()); + $job = $this->client->reserve(0); + + $I->assertTrue($job !== false); + $I->assertEquals($task, $job->getBody()); + + // Bury the job + $I->assertTrue($job->bury()); + $job = $this->client->peekBuried(); + + $I->assertTrue($job !== false); + $I->assertEquals($task, $job->getBody()); + + // Kick the job, it should move to the ready queue again + // kick-job is supported since 1.8 + if (false !== $job->kick()) { + $job = $this->client->peekReady(); + + $I->assertTrue($job !== false); + $I->assertEquals($task, $job->getBody()); + $I->assertTrue($job->delete()); + } else { + $I->assertTrue($job->delete()); + } + } + + /** + * Test exceeded the maximum number of characters in the tube name + * + * @author Dmitry Korolev + * @since 2016-02-23 + * @expectedException \Phalcon\Queue\Beanstalk\Exception + * @expectedExceptionMessage BAD_FORMAT + */ + public function testShouldChooseException(UnitTester $I) + { + $I->expectThrowable( + new Exception('BAD_FORMAT'), + function () { + $this->client->choose(str_pad(self::TUBE_NAME_1, 201, 'over')); + } + ); + } + + /** + * watch command + * + * @author Dmitry Korolev + * @since 2016-02-23 + */ + public function testShouldWatch(UnitTester $I) + { + $countWatchTubes = $this->client->watch(self::TUBE_NAME_1); + + $I->assertNotEquals(false, $countWatchTubes); + $I->assertEquals($countWatchTubes, 2); + } + + /** + * choose -> put -> watch -> reserve -> delete + * + * @depends testShouldChooseTube + * @depends testShouldWatch + * + * @author Dmitry Korolev + * @since 2016-02-23 + */ + public function testShouldPutAndReserveAndDelete(UnitTester $I) + { + $this->client->choose(self::TUBE_NAME_1); + $jobId = $this->client->put('testPutInTube'); + $I->assertNotEquals(false, $jobId); + + $this->client->watch(self::TUBE_NAME_1); + $job = $this->client->reserve(); + $I->assertInstanceOf(self::JOB_CLASS, $job); + $I->assertEquals($jobId, $job->getId()); + + $I->assertTrue($job->delete()); + } + + /** + * @depends testShouldPutAndReserveAndDelete + * + * @author Dmitry Korolev + * @since 2016-02-23 + */ + public function testShouldPutAndPeekReady(UnitTester $I) + { + $this->client->choose(self::TUBE_NAME_1); + $jobId = $this->client->put('testPutInTube'); + + $job = $this->client->peekReady(); + $I->assertInstanceOf(self::JOB_CLASS, $job); + $I->assertEquals($jobId, $job->getId()); + + $I->assertTrue($job->delete()); + } + + /** + * choose -> put -> watch -> reserve-with-timeout -> delete + * + * @todo bad test, but have so far + * + * @depends testShouldChooseTube + * @depends testShouldWatch + * + * @author Dmitry Korolev + * @since 2016-02-23 + */ + public function testShouldPutAndReserveTimeoutAndDelete(UnitTester $I) + { + $this->client->choose(self::TUBE_NAME_1); + $jobId = $this->client->put('testPutInTube'); + + $this->client->watch(self::TUBE_NAME_1); + $job = $this->client->reserve(2); + $I->assertInstanceOf(self::JOB_CLASS, $job); + $I->assertEquals($jobId, $job->getId()); + + $I->assertTrue($job->delete()); + } + + /** + * many tubes watch + * choose -> put -> choose -> put -> watch,watch -> reserve -> delete + * + * @depends testShouldChooseTube + * @depends testShouldWatch + * + * @author Dmitry Korolev + * @since 2016-02-23 + */ + public function testShouldPutAndReserveManyTubesAndDelete(UnitTester $I) + { + $tubes = [self::TUBE_NAME_1, self::TUBE_NAME_2]; + + $jobsId = []; + foreach ($tubes as $tube) { + $this->client->choose($tube); + $jobId = $this->client->put('testPutInTube'); + $I->assertNotEquals(false, $jobId); + $jobsId[] = $jobId; + } + + $jobs = []; + foreach ($tubes as $tubeWatch) { + $this->client->watch($tubeWatch); + } + + while ($job = $this->client->reserve(1)) { + $jobs[] = $job; + } + + $I->assertCount(count($tubes), $jobs); + + foreach ($jobs as $k => $job) { + $I->assertInstanceOf(self::JOB_CLASS, $jobs[$k]); + $I->assertEquals($jobsId[$k], $jobs[$k]->getId()); + $I->assertTrue($jobs[$k]->delete()); + } + } + + /** + * @depends testShouldPutAndReserveAndDelete + * + * @author Dmitry Korolev + * @since 2016-02-23 + */ + public function testShouldPutAndReserveJobAndBackReady(UnitTester $I) + { + $this->client->choose(self::TUBE_NAME_1); + $jobId = $this->client->put('testPutInTube'); + + $I->assertEquals('ready', (new Job($this->client, $jobId, ''))->stats()['state']); + $this->client->watch(self::TUBE_NAME_1); + $job = $this->client->reserve(); + $I->assertInstanceOf(self::JOB_CLASS, $job); + $I->assertEquals($jobId, $job->getId()); + + $I->assertEquals('reserved', $job->stats()['state']); + $I->assertEquals(1, $job->stats()['reserves']); + + $I->assertTrue($job->release()); + $I->assertEquals('ready', $job->stats()['state']); + $I->assertEquals(1, $job->stats()['releases']); + + $I->assertTrue($job->delete()); + } + + + /** + * @depends testShouldPutAndReserveAndDelete + * + * @author Dmitry Korolev + * @since 2016-02-23 + */ + public function testShouldPutAndReserveJobAndBackReadyDelay(UnitTester $I) + { + $this->client->choose(self::TUBE_NAME_1); + $jobId = $this->client->put('testPutInTube'); + + $I->assertEquals('ready', (new Job($this->client, $jobId, ''))->stats()['state']); + + $this->client->watch(self::TUBE_NAME_1); + $job = $this->client->reserve(); + $I->assertEquals('reserved', $job->stats()['state']); + $I->assertEquals(1, $job->stats()['reserves']); + + $I->assertTrue($job->release(Beanstalk::DEFAULT_PRIORITY, 3)); + $I->assertEquals('delayed', $job->stats()['state']); + $I->assertEquals(1, $job->stats()['releases']); + $I->assertEquals(3, $job->stats()['delay']); + sleep(4); + $I->assertEquals(4, $job->stats()['age']); + $I->assertEquals('ready', $job->stats()['state']); + $I->assertTrue($job->delete()); + } + + /** + * @depends testShouldPutAndReserveAndDelete + * + * @author Dmitry Korolev + * @since 2016-02-23 + */ + public function testShouldPutBuriedAfterPeekBuriedAndKick(UnitTester $I) + { + $this->client->choose(self::TUBE_NAME_1); + $jobId = $this->client->put('testPutInTube'); + + $I->assertEquals('ready', (new Job($this->client, $jobId, ''))->stats()['state']); + + $this->client->watch(self::TUBE_NAME_1); + $job = $this->client->reserve(); + + $I->assertTrue($job->bury(Beanstalk::DEFAULT_PRIORITY)); + $I->assertEquals('buried', $job->stats()['state']); + $I->assertEquals(1, $job->stats()['buries']); + + $this->client->watch(self::TUBE_NAME_1); + $job = $this->client->peekBuried(); + + $I->assertInstanceOf(self::JOB_CLASS, $job); + $I->assertEquals($jobId, $job->getId()); + + $I->assertTrue($job->kick()); + $I->assertEquals('ready', $job->stats()['state']); + $I->assertEquals(1, $job->stats()['kicks']); + + $I->assertTrue($job->delete()); + } + + /** + * @depends testShouldPutAndReserveAndDelete + * + * @author Dmitry Korolev + * @since 2016-02-23 + */ + public function testShouldPutDelay(UnitTester $I) + { + $this->client->choose(self::TUBE_NAME_1); + $jobId = $this->client->put('testPutInTube', ['delay' => 2]); + $job = new Job($this->client, $jobId, ''); + $I->assertEquals('delayed', $job->stats()['state']); + sleep(3); + $I->assertEquals('ready', $job->stats()['state']); + + $this->client->watch(self::TUBE_NAME_1); + + $job = $this->client->reserve(); + $I->assertTrue($job->delete()); + + $this->client->put('testPutInTube', ['delay' => 2]); + $job = $this->client->peekDelayed(); + $I->assertTrue($job->delete()); + } + + /** + * @depends testShouldPutAndReserveAndDelete + * @depends testShouldPutDelay + * + * @author Dmitry Korolev + * @since 2016-02-23 + */ + public function testShouldPutDelayAfterKick(UnitTester $I) + { + $this->client->choose(self::TUBE_NAME_1); + $jobId = $this->client->put('testPutInTube', ['delay' => 3]); + $job = new Job($this->client, $jobId, ''); + + $I->assertTrue($job->kick()); + $I->assertEquals('ready', $job->stats()['state']); + + $this->client->watch(self::TUBE_NAME_1); + $job = $this->client->reserve(); + $I->assertTrue($job->delete()); + } + + /** + * @depends testShouldPutBuriedAfterPeekBuriedAndKick + * @depends testShouldPutDelay + * + * @author Dmitry Korolev + * @since 2016-02-23 + */ + public function testShouldPutDelayAndPutBuriedAfterKick(UnitTester $I) + { + $this->client->choose(self::TUBE_NAME_1); + $this->client->put('testPutInTube', ['delay' => 3]); + $this->client->watch(self::TUBE_NAME_1); + $job = $this->client->reserve(); + $I->assertTrue($job->bury(Beanstalk::DEFAULT_PRIORITY)); + $I->assertTrue($job->kick()); + $I->assertEquals('ready', $job->stats()['state']); + $I->assertTrue($job->delete()); + } + + /** + * @depends testShouldPutDelayAfterKick + * @depends testShouldPutDelayAndPutBuriedAfterKick + * + * @author Dmitry Korolev + * @since 2016-02-23 + */ + public function testShouldPutDelayKickAndBuryKick(UnitTester $I) + { + $this->client->choose(self::TUBE_NAME_1); + $jobId = $this->client->put('testPutInTube', ['delay' => 3]); + $job = new Job($this->client, $jobId, ''); + + $I->assertEquals(1, $this->client->kick(1)); + $I->assertEquals('ready', $job->stats()['state']); + + $this->client->watch(self::TUBE_NAME_1); + $job = $this->client->reserve(); + + $I->assertTrue($job->bury(Beanstalk::DEFAULT_PRIORITY)); + $I->assertEquals(1, $this->client->kick(1)); + $I->assertEquals('ready', $job->stats()['state']); + $I->assertTrue($job->delete()); + } + + /** + * @depends testShouldPutAndReserveAndDelete + * + * @author Dmitry Korolev + * @since 2016-02-23 + */ + public function testShouldPutAndTouch(UnitTester $I) + { + $this->client->choose(self::TUBE_NAME_1); + $this->client->put('testPutInTube', ['ttr' => 10]); + + $this->client->watch(self::TUBE_NAME_1); + $job = $this->client->reserve(); + sleep(2); + $I->assertEquals(7, $job->stats()['time-left']); + $I->assertTrue($job->touch()); + $I->assertEquals(9, $job->stats()['time-left']); + $I->assertTrue($job->delete()); + } + + /** + * list-tubes command + * + * @depends testShouldPutAndReserveAndDelete + * + * @author Dmitry Korolev + * @since 2016-02-23 + */ + public function testShouldListTubes(UnitTester $I) + { + $this->client->choose(self::TUBE_NAME_1); + $tubes = $this->client->listTubes(); + $I->assertContains(self::TUBE_NAME_1, $tubes); + } + + /** + * @depends testShouldPutAndReserveAndDelete + * + * @author Dmitry Korolev + * @since 2016-02-23 + */ + public function testShouldPutAndPeek(UnitTester $I) + { + $this->client->choose(self::TUBE_NAME_1); + $jobId = $this->client->put('testPutInTube'); + + $I->assertNotEquals(false, $jobId); + $job = $this->client->jobPeek($jobId); + $I->assertInstanceOf(self::JOB_CLASS, $job); + $I->assertEquals($jobId, $job->getId()); + $I->assertTrue($job->delete()); + } +} diff --git a/tests/unit/Queue/BeanstalkTest.php b/tests/unit/Queue/BeanstalkTest.php deleted file mode 100644 index f4f67ccd60c..00000000000 --- a/tests/unit/Queue/BeanstalkTest.php +++ /dev/null @@ -1,532 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Queue - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class BeanstalkTest extends BeanstalkBase -{ - const TUBE_NAME_1 = 'beanstalk-test-1'; - const TUBE_NAME_2 = 'beanstalk-test-2'; - const TUBE_NAME_DEFAULT = 'default'; - const JOB_CLASS = 'Phalcon\Queue\Beanstalk\Job'; - - /** - * Tests Beanstalk connection - * - * @author Serghei Iakovlev - * @since 2016-04-11 - */ - public function testShouldConnectAndDisconnect() - { - $this->specify( - "The Beanstalk connection does not work as expected", - function () { - $this->client->disconnect(); - - expect($this->client->disconnect())->false(); - expect(is_resource($this->client->connect()))->true(); - expect($this->client->disconnect())->true(); - } - ); - } - - /** - * Tests Beanstalk::getBody - * - * @author Kamil Skowron - * @since 2014-05-28 - */ - public function testShouldGetBody() - { - $this->specify( - "The getBody method does not return expected message", - function () { - $expected = ['processVideo' => 4871]; - - $this->client->put($expected); - while (($job = $this->client->peekReady()) !== false) { - $actual = $job->getBody(); - $job->delete(); - - expect($actual)->equals($expected); - } - } - ); - } - - /** - * Tests changing the active tube. - * use command - * - * @author Serghei Iakovlev - * @since 2016-01-17 - */ - public function testShouldChooseTube() - { - $this->specify( - "Unable to change the active tube", - function () { - expect($this->client->choose(self::TUBE_NAME_1))->equals(self::TUBE_NAME_1); - expect($this->client->choose(self::TUBE_NAME_DEFAULT))->equals(self::TUBE_NAME_DEFAULT); - } - ); - } - - /** - * Tests getting status - * - * @author Sid Roberts - * @since 2015-05-11 - */ - public function testShouldGetStats() - { - $this->specify( - "Unable get status", - function () { - expect(is_array($this->client->stats()))->true(); - - $this->client->choose(self::TUBE_NAME_1); - $tubeStats = $this->client->statsTube(self::TUBE_NAME_1); - - expect(is_array($tubeStats))->true(); - $this->assertArrayHasKey('name', $tubeStats); - $this->assertSame(self::TUBE_NAME_1, $tubeStats['name']); - - $this->client->choose(self::TUBE_NAME_DEFAULT); - - expect($this->client->statsTube('beanstalk-test-does-not-exist'))->false(); - } - ); - } - - public function testShouldReleaseKickAndBury() - { - $this->specify( - "Incorrect work with job queue", - function () { - $this->client->choose(self::TUBE_NAME_1); - - $task = 'doSomething'; - verify($this->client->put($task) !== false); - verify($this->client->watch(self::TUBE_NAME_1) !== false); - - $job = $this->client->reserve(0); - - $this->assertInstanceOf(self::JOB_CLASS, $job); - $this->assertEquals($task, $job->getBody()); - $this->assertTrue($job->touch()); - - // Release the job; it moves to the ready queue - $this->assertTrue($job->release()); - $job = $this->client->reserve(0); - - $this->assertTrue($job !== false); - $this->assertEquals($task, $job->getBody()); - - // Bury the job - $this->assertTrue($job->bury()); - $job = $this->client->peekBuried(); - - $this->assertTrue($job !== false); - $this->assertEquals($task, $job->getBody()); - - // Kick the job, it should move to the ready queue again - // kick-job is supported since 1.8 - if (false !== $job->kick()) { - $job = $this->client->peekReady(); - - $this->assertTrue($job !== false); - $this->assertEquals($task, $job->getBody()); - } - - $this->assertTrue($job->delete()); - } - ); - } - - /** - * Test exceeded the maximum number of characters in the tube name - * - * @author Dmitry Korolev - * @since 2016-02-23 - * @expectedException \Phalcon\Queue\Beanstalk\Exception - * @expectedExceptionMessage BAD_FORMAT - */ - public function testShouldChooseException() - { - $this->client->choose(str_pad(self::TUBE_NAME_1, 201, 'over')); - } - - /** - * watch command - * - * @author Dmitry Korolev - * @since 2016-02-23 - */ - public function testShouldWatch() - { - $countWatchTubes = $this->client->watch(self::TUBE_NAME_1); - - $this->assertNotEquals(false, $countWatchTubes); - $this->assertEquals($countWatchTubes, 2); - } - - /** - * choose -> put -> watch -> reserve -> delete - * - * @depends testShouldChooseTube - * @depends testShouldWatch - * - * @author Dmitry Korolev - * @since 2016-02-23 - */ - public function testShouldPutAndReserveAndDelete() - { - $this->client->choose(self::TUBE_NAME_1); - $jobId = $this->client->put('testPutInTube'); - $this->assertNotEquals(false, $jobId); - - $this->client->watch(self::TUBE_NAME_1); - $job = $this->client->reserve(); - $this->assertInstanceOf(self::JOB_CLASS, $job); - $this->assertEquals($jobId, $job->getId()); - - $this->assertTrue($job->delete()); - } - - /** - * @depends testShouldPutAndReserveAndDelete - * - * @author Dmitry Korolev - * @since 2016-02-23 - */ - public function testShouldPutAndPeekReady() - { - $this->client->choose(self::TUBE_NAME_1); - $jobId = $this->client->put('testPutInTube'); - - $job = $this->client->peekReady(); - $this->assertInstanceOf(self::JOB_CLASS, $job); - $this->assertEquals($jobId, $job->getId()); - - $this->assertTrue($job->delete()); - } - - /** - * choose -> put -> watch -> reserve-with-timeout -> delete - * - * @todo bad test, but have so far - * - * @depends testShouldChooseTube - * @depends testShouldWatch - * - * @author Dmitry Korolev - * @since 2016-02-23 - */ - public function testShouldPutAndReserveTimeoutAndDelete() - { - $this->client->choose(self::TUBE_NAME_1); - $jobId = $this->client->put('testPutInTube'); - - $this->client->watch(self::TUBE_NAME_1); - $job = $this->client->reserve(2); - $this->assertInstanceOf(self::JOB_CLASS, $job); - $this->assertEquals($jobId, $job->getId()); - - $this->assertTrue($job->delete()); - } - - /** - * many tubes watch - * choose -> put -> choose -> put -> watch,watch -> reserve -> delete - * - * @depends testShouldChooseTube - * @depends testShouldWatch - * - * @author Dmitry Korolev - * @since 2016-02-23 - */ - public function testShouldPutAndReserveManyTubesAndDelete() - { - $tubes = [self::TUBE_NAME_1,self::TUBE_NAME_2]; - - $jobsId = []; - foreach ($tubes as $tube) { - $this->client->choose($tube); - $jobId = $this->client->put('testPutInTube'); - $this->assertNotEquals(false, $jobId); - $jobsId[] = $jobId; - } - - $jobs = []; - foreach ($tubes as $tubeWatch) { - $this->client->watch($tubeWatch); - } - - while ($job = $this->client->reserve(1)) { - $jobs[] = $job; - } - - $this->assertCount(count($tubes), $jobs); - - foreach ($jobs as $k => $job) { - $this->assertInstanceOf(self::JOB_CLASS, $jobs[$k]); - $this->assertEquals($jobsId[$k], $jobs[$k]->getId()); - $this->assertTrue($jobs[$k]->delete()); - } - } - - /** - * @depends testShouldPutAndReserveAndDelete - * - * @author Dmitry Korolev - * @since 2016-02-23 - */ - public function testShouldPutAndReserveJobAndBackReady() - { - $this->client->choose(self::TUBE_NAME_1); - $jobId = $this->client->put('testPutInTube'); - - $this->assertEquals('ready', (new Job($this->client, $jobId, ''))->stats()['state']); - $this->client->watch(self::TUBE_NAME_1); - $job = $this->client->reserve(); - $this->assertInstanceOf(self::JOB_CLASS, $job); - $this->assertEquals($jobId, $job->getId()); - - $this->assertEquals('reserved', $job->stats()['state']); - $this->assertEquals(1, $job->stats()['reserves']); - - $this->assertTrue($job->release()); - $this->assertEquals('ready', $job->stats()['state']); - $this->assertEquals(1, $job->stats()['releases']); - - $this->assertTrue($job->delete()); - } - - - /** - * @depends testShouldPutAndReserveAndDelete - * - * @author Dmitry Korolev - * @since 2016-02-23 - */ - public function testShouldPutAndReserveJobAndBackReadyDelay() - { - $this->client->choose(self::TUBE_NAME_1); - $jobId = $this->client->put('testPutInTube'); - - $this->assertEquals('ready', (new Job($this->client, $jobId, ''))->stats()['state']); - - $this->client->watch(self::TUBE_NAME_1); - $job = $this->client->reserve(); - $this->assertEquals('reserved', $job->stats()['state']); - $this->assertEquals(1, $job->stats()['reserves']); - - $this->assertTrue($job->release(Beanstalk::DEFAULT_PRIORITY, 3)); - $this->assertEquals('delayed', $job->stats()['state']); - $this->assertEquals(1, $job->stats()['releases']); - $this->assertEquals(3, $job->stats()['delay']); - sleep(4); - $this->assertEquals(4, $job->stats()['age']); - $this->assertEquals('ready', $job->stats()['state']); - $this->assertTrue($job->delete()); - } - - /** - * @depends testShouldPutAndReserveAndDelete - * - * @author Dmitry Korolev - * @since 2016-02-23 - */ - public function testShouldPutBuriedAfterPeekBuriedAndKick() - { - $this->client->choose(self::TUBE_NAME_1); - $jobId = $this->client->put('testPutInTube'); - - $this->assertEquals('ready', (new Job($this->client, $jobId, ''))->stats()['state']); - - $this->client->watch(self::TUBE_NAME_1); - $job = $this->client->reserve(); - - $this->assertTrue($job->bury(Beanstalk::DEFAULT_PRIORITY)); - $this->assertEquals('buried', $job->stats()['state']); - $this->assertEquals(1, $job->stats()['buries']); - - $this->client->watch(self::TUBE_NAME_1); - $job = $this->client->peekBuried(); - - $this->assertInstanceOf(self::JOB_CLASS, $job); - $this->assertEquals($jobId, $job->getId()); - - $this->assertTrue($job->kick()); - $this->assertEquals('ready', $job->stats()['state']); - $this->assertEquals(1, $job->stats()['kicks']); - - $this->assertTrue($job->delete()); - } - - /** - * @depends testShouldPutAndReserveAndDelete - * - * @author Dmitry Korolev - * @since 2016-02-23 - */ - public function testShouldPutDelay() - { - $this->client->choose(self::TUBE_NAME_1); - $jobId = $this->client->put('testPutInTube', ['delay' => 2]); - $job = new Job($this->client, $jobId, ''); - $this->assertEquals('delayed', $job->stats()['state']); - sleep(3); - $this->assertEquals('ready', $job->stats()['state']); - - $this->client->watch(self::TUBE_NAME_1); - - $job = $this->client->reserve(); - $this->assertTrue($job->delete()); - - $this->client->put('testPutInTube', ['delay' => 2]); - $job = $this->client->peekDelayed(); - $this->assertTrue($job->delete()); - } - - /** - * @depends testShouldPutAndReserveAndDelete - * @depends testShouldPutDelay - * - * @author Dmitry Korolev - * @since 2016-02-23 - */ - public function testShouldPutDelayAfterKick() - { - $this->client->choose(self::TUBE_NAME_1); - $jobId = $this->client->put('testPutInTube', ['delay' => 3]); - $job = new Job($this->client, $jobId, ''); - - $this->assertTrue($job->kick()); - $this->assertEquals('ready', $job->stats()['state']); - - $this->client->watch(self::TUBE_NAME_1); - $job = $this->client->reserve(); - $this->assertTrue($job->delete()); - } - - /** - * @depends testShouldPutBuriedAfterPeekBuriedAndKick - * @depends testShouldPutDelay - * - * @author Dmitry Korolev - * @since 2016-02-23 - */ - public function testShouldPutDelayAndPutBuriedAfterKick() - { - $this->client->choose(self::TUBE_NAME_1); - $this->client->put('testPutInTube', ['delay' => 3]); - $this->client->watch(self::TUBE_NAME_1); - $job = $this->client->reserve(); - $this->assertTrue($job->bury(Beanstalk::DEFAULT_PRIORITY)); - $this->assertTrue($job->kick()); - $this->assertEquals('ready', $job->stats()['state']); - $this->assertTrue($job->delete()); - } - - /** - * @depends testShouldPutDelayAfterKick - * @depends testShouldPutDelayAndPutBuriedAfterKick - * - * @author Dmitry Korolev - * @since 2016-02-23 - */ - public function testShouldPutDelayKickAndBuryKick() - { - $this->client->choose(self::TUBE_NAME_1); - $jobId = $this->client->put('testPutInTube', ['delay' => 3]); - $job = new Job($this->client, $jobId, ''); - - $this->assertEquals(1, $this->client->kick(1)); - $this->assertEquals('ready', $job->stats()['state']); - - $this->client->watch(self::TUBE_NAME_1); - $job = $this->client->reserve(); - - $this->assertTrue($job->bury(Beanstalk::DEFAULT_PRIORITY)); - $this->assertEquals(1, $this->client->kick(1)); - $this->assertEquals('ready', $job->stats()['state']); - $this->assertTrue($job->delete()); - } - - /** - * @depends testShouldPutAndReserveAndDelete - * - * @author Dmitry Korolev - * @since 2016-02-23 - */ - public function testShouldPutAndTouch() - { - $this->client->choose(self::TUBE_NAME_1); - $this->client->put('testPutInTube', ['ttr' => 10]); - - $this->client->watch(self::TUBE_NAME_1); - $job = $this->client->reserve(); - sleep(2); - $this->assertEquals(7, $job->stats()['time-left']); - $this->assertTrue($job->touch()); - $this->assertEquals(9, $job->stats()['time-left']); - $this->assertTrue($job->delete()); - } - - /** - * list-tubes command - * - * @depends testShouldPutAndReserveAndDelete - * - * @author Dmitry Korolev - * @since 2016-02-23 - */ - public function testShouldListTubes() - { - $this->client->choose(self::TUBE_NAME_1); - $tubes = $this->client->listTubes(); - $this->assertContains(self::TUBE_NAME_1, $tubes); - } - - /** - * @depends testShouldPutAndReserveAndDelete - * - * @author Dmitry Korolev - * @since 2016-02-23 - */ - public function testShouldPutAndPeek() - { - $this->client->choose(self::TUBE_NAME_1); - $jobId = $this->client->put('testPutInTube'); - - $this->assertNotEquals(false, $jobId); - $job = $this->client->jobPeek($jobId); - $this->assertInstanceOf(self::JOB_CLASS, $job); - $this->assertEquals($jobId, $job->getId()); - $this->assertTrue($job->delete()); - } -} diff --git a/tests/unit/Queue/Helper/BeanstalkBase.php b/tests/unit/Queue/Helper/BeanstalkBase.php deleted file mode 100644 index 8566e964041..00000000000 --- a/tests/unit/Queue/Helper/BeanstalkBase.php +++ /dev/null @@ -1,58 +0,0 @@ - - * @author Serghei Iakovlev - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ - -class BeanstalkBase extends UnitTest -{ - /** - * @var Beanstalk - */ - protected $client = null; - - /** - * executed before each test - */ - protected function _before() - { - parent::_before(); - - if (!extension_loaded('yaml')) { - $this->markTestSkipped('Warning: yaml extension is not loaded'); - } - - if (!defined('TEST_BT_HOST') || !defined('TEST_BT_PORT')) { - $this->markTestSkipped('TEST_BT_HOST and/or TEST_BT_PORT env variables are not defined'); - } - - $this->client = new Beanstalk([ - 'host' => TEST_BT_HOST, - 'port' => TEST_BT_PORT - ]); - - try { - @$this->client->connect(); - } catch (\Exception $e) { - $this->markTestSkipped($e->getMessage()); - } - } -} diff --git a/tests/unit/Registry/ConstructCest.php b/tests/unit/Registry/ConstructCest.php new file mode 100644 index 00000000000..9289cdc2196 --- /dev/null +++ b/tests/unit/Registry/ConstructCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Registry; + +use Phalcon\Registry; +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Registry :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function registryConstruct(UnitTester $I) + { + $I->wantToTest('Registry - construct'); + $registry = new Registry(); + + $class = Registry::class; + $actual = $registry; + $I->assertInstanceOf($class, $actual); + } +} diff --git a/tests/unit/Registry/CountCest.php b/tests/unit/Registry/CountCest.php new file mode 100644 index 00000000000..f8903b5b53b --- /dev/null +++ b/tests/unit/Registry/CountCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Registry; + +use Phalcon\Registry; +use UnitTester; + +class CountCest +{ + /** + * Tests Phalcon\Registry :: count() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function registryCount(UnitTester $I) + { + $I->wantToTest('Registry - count()'); + $registry = new Registry(); + $registry->offsetSet('one', 1); + $registry->offsetSet('two', 2); + $registry->offsetSet('three', 3); + + $expected = 3; + $actual = $registry->count(); + $I->assertEquals($expected, $actual); + $I->assertCount($expected, $registry); + } +} diff --git a/tests/unit/Registry/CurrentCest.php b/tests/unit/Registry/CurrentCest.php new file mode 100644 index 00000000000..8adb061d2c9 --- /dev/null +++ b/tests/unit/Registry/CurrentCest.php @@ -0,0 +1,44 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Registry; + +use Phalcon\Registry; +use UnitTester; + +class CurrentCest +{ + /** + * Tests Phalcon\Registry :: current() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function registryCurrent(UnitTester $I) + { + $I->wantToTest('Registry - current()'); + $registry = new Registry(); + $registry->offsetSet('one', 1); + $registry->offsetSet('two', 2); + $registry->offsetSet('three', 3); + + $expected = 1; + $actual = $registry->current(); + $I->assertEquals($expected, $actual); + + $registry->next(); + $expected = 2; + $actual = $registry->current(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Registry/KeyCest.php b/tests/unit/Registry/KeyCest.php new file mode 100644 index 00000000000..e545781aacf --- /dev/null +++ b/tests/unit/Registry/KeyCest.php @@ -0,0 +1,44 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Registry; + +use Phalcon\Registry; +use UnitTester; + +class KeyCest +{ + /** + * Tests Phalcon\Registry :: key() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function registryKey(UnitTester $I) + { + $I->wantToTest('Registry - key()'); + $registry = new Registry(); + $registry->offsetSet('one', 1); + $registry->offsetSet('two', 2); + $registry->offsetSet('three', 3); + + $expected = 'one'; + $actual = $registry->key(); + $I->assertEquals($expected, $actual); + + $registry->next(); + $expected = 'two'; + $actual = $registry->key(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Registry/NextCest.php b/tests/unit/Registry/NextCest.php new file mode 100644 index 00000000000..4b8003229dc --- /dev/null +++ b/tests/unit/Registry/NextCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Registry; + +use Phalcon\Registry; +use UnitTester; + +class NextCest +{ + /** + * Tests Phalcon\Registry :: next() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function registryNext(UnitTester $I) + { + $I->wantToTest('Registry - next()'); + $registry = new Registry(); + $registry->offsetSet('one', 1); + $registry->offsetSet('two', 2); + $registry->offsetSet('three', 3); + + $registry->next(); + $expected = 'two'; + $actual = $registry->key(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Registry/OffsetExistsCest.php b/tests/unit/Registry/OffsetExistsCest.php new file mode 100644 index 00000000000..2f5e443747c --- /dev/null +++ b/tests/unit/Registry/OffsetExistsCest.php @@ -0,0 +1,39 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Registry; + +use Phalcon\Registry; +use UnitTester; + +class OffsetExistsCest +{ + /** + * Tests Phalcon\Registry :: offsetExists() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function registryOffsetExists(UnitTester $I) + { + $I->wantToTest('Registry - offsetExists()'); + $registry = new Registry(); + $registry->offsetSet('one', 1); + + $actual = $registry->offsetExists('one'); + $I->assertTrue($actual); + + $actual = $registry->offsetExists('unknown'); + $I->assertFalse($actual); + } +} diff --git a/tests/unit/Registry/OffsetGetCest.php b/tests/unit/Registry/OffsetGetCest.php new file mode 100644 index 00000000000..1b34ef6374e --- /dev/null +++ b/tests/unit/Registry/OffsetGetCest.php @@ -0,0 +1,39 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Registry; + +use Phalcon\Registry; +use UnitTester; + +class OffsetGetCest +{ + /** + * Tests Phalcon\Registry :: offsetGet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function registryOffsetGet(UnitTester $I) + { + $I->wantToTest('Registry - offsetGet()'); + $registry = new Registry(); + $registry->offsetSet('one', 1); + $registry->offsetSet('two', 2); + $registry->offsetSet('three', 3); + + $expected = 3; + $actual = $registry->offsetGet('three'); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Registry/OffsetSetCest.php b/tests/unit/Registry/OffsetSetCest.php new file mode 100644 index 00000000000..138879ad4fc --- /dev/null +++ b/tests/unit/Registry/OffsetSetCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Registry; + +use Phalcon\Registry; +use UnitTester; + +class OffsetSetCest +{ + /** + * Tests Phalcon\Registry :: offsetSet() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function registryOffsetSet(UnitTester $I) + { + $I->wantToTest('Registry - offsetSet()'); + $registry = new Registry(); + $registry->offsetSet('one', 1); + $registry->offsetSet('two', 2); + $registry->offsetSet('three', 3); + + $I->assertCount(3, $registry); + } +} diff --git a/tests/unit/Registry/OffsetUnsetCest.php b/tests/unit/Registry/OffsetUnsetCest.php new file mode 100644 index 00000000000..c67dadff624 --- /dev/null +++ b/tests/unit/Registry/OffsetUnsetCest.php @@ -0,0 +1,41 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Registry; + +use Phalcon\Registry; +use UnitTester; + +class OffsetUnsetCest +{ + /** + * Tests Phalcon\Registry :: offsetUnset() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function registryOffsetUnset(UnitTester $I) + { + $I->wantToTest('Registry - offsetUnset()'); + $registry = new Registry(); + $registry->offsetSet('one', 1); + $registry->offsetSet('two', 2); + $registry->offsetSet('three', 3); + + $I->assertCount(3, $registry); + + $registry->offsetUnset('two'); + + $I->assertCount(2, $registry); + } +} diff --git a/tests/unit/Registry/RewindCest.php b/tests/unit/Registry/RewindCest.php new file mode 100644 index 00000000000..d1b19c32efb --- /dev/null +++ b/tests/unit/Registry/RewindCest.php @@ -0,0 +1,48 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Registry; + +use Phalcon\Registry; +use UnitTester; + +class RewindCest +{ + /** + * Tests Phalcon\Registry :: rewind() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function registryRewind(UnitTester $I) + { + $I->wantToTest('Registry - rewind()'); + $registry = new Registry(); + $registry->offsetSet('one', 1); + $registry->offsetSet('two', 2); + $registry->offsetSet('three', 3); + + $registry->next(); + $registry->next(); + + $expected = 3; + $actual = $registry->current(); + $I->assertEquals($expected, $actual); + + $registry->rewind(); + + $expected = 1; + $actual = $registry->current(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Registry/UnderscoreGetCest.php b/tests/unit/Registry/UnderscoreGetCest.php new file mode 100644 index 00000000000..8ee433b9270 --- /dev/null +++ b/tests/unit/Registry/UnderscoreGetCest.php @@ -0,0 +1,43 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Registry; + +use Phalcon\Registry; +use UnitTester; + +class UnderscoreGetCest +{ + /** + * Tests Phalcon\Registry :: __get() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function registryUnderscoreGet(UnitTester $I) + { + $I->wantToTest('Registry - __get()'); + $registry = new Registry(); + $registry->offsetSet('one', 1); + $registry->offsetSet('two', 2); + $registry->offsetSet('three', 3); + + $expected = 3; + $actual = $registry->three; + $I->assertEquals($expected, $actual); + + $expected = 2; + $actual = $registry['two']; + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Registry/UnderscoreIssetCest.php b/tests/unit/Registry/UnderscoreIssetCest.php new file mode 100644 index 00000000000..054922f1ef8 --- /dev/null +++ b/tests/unit/Registry/UnderscoreIssetCest.php @@ -0,0 +1,39 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Registry; + +use Phalcon\Registry; +use UnitTester; + +class UnderscoreIssetCest +{ + /** + * Tests Phalcon\Registry :: __isset() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function registryUnderscoreIsset(UnitTester $I) + { + $I->wantToTest('Registry - __isset()'); + $registry = new Registry(); + $registry->offsetSet('one', 1); + + $actual = isset($registry['one']); + $I->assertTrue($actual); + + $actual = isset($registry['unknown']); + $I->assertFalse($actual); + } +} diff --git a/tests/unit/Registry/UnderscoreSetCest.php b/tests/unit/Registry/UnderscoreSetCest.php new file mode 100644 index 00000000000..590a5683b65 --- /dev/null +++ b/tests/unit/Registry/UnderscoreSetCest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Registry; + +use Phalcon\Registry; +use UnitTester; + +class UnderscoreSetCest +{ + /** + * Tests Phalcon\Registry :: __set() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function registryUnderscoreSet(UnitTester $I) + { + $I->wantToTest('Registry - __set()'); + $registry = new Registry(); + $registry->one = 1; + $registry->two = 2; + $registry['three'] = 3; + + $I->assertCount(3, $registry); + } +} diff --git a/tests/unit/Registry/UnderscoreUnsetCest.php b/tests/unit/Registry/UnderscoreUnsetCest.php new file mode 100644 index 00000000000..0effea2c543 --- /dev/null +++ b/tests/unit/Registry/UnderscoreUnsetCest.php @@ -0,0 +1,45 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Registry; + +use Phalcon\Registry; +use UnitTester; + +class UnderscoreUnsetCest +{ + /** + * Tests Phalcon\Registry :: __unset() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function registryUnderscoreUnset(UnitTester $I) + { + $I->wantToTest('Registry - __unset()'); + $registry = new Registry(); + $registry->one = 1; + $registry->two = 2; + $registry->three = 3; + + $I->assertCount(3, $registry); + + unset($registry->two); + + $I->assertCount(2, $registry); + + unset($registry['one']); + + $I->assertCount(1, $registry); + } +} diff --git a/tests/unit/Registry/ValidCest.php b/tests/unit/Registry/ValidCest.php new file mode 100644 index 00000000000..c39b647d60d --- /dev/null +++ b/tests/unit/Registry/ValidCest.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Registry; + +use Phalcon\Registry; +use UnitTester; + +class ValidCest +{ + /** + * Tests Phalcon\Registry :: valid() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function registryValid(UnitTester $I) + { + $I->wantToTest('Registry - valid()'); + $registry = new Registry(); + $registry->offsetSet('one', 1); + + $registry->rewind(); + + $actual = $registry->valid(); + $I->assertTrue($actual); + + $registry->next(); + $actual = $registry->valid(); + $I->assertFalse($actual); + } +} diff --git a/tests/unit/Security/CheckHashCest.php b/tests/unit/Security/CheckHashCest.php new file mode 100644 index 00000000000..f724b4dd032 --- /dev/null +++ b/tests/unit/Security/CheckHashCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use UnitTester; + +class CheckHashCest +{ + /** + * Tests Phalcon\Security :: checkHash() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityCheckHash(UnitTester $I) + { + $I->wantToTest("Security - checkHash()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/CheckTokenCest.php b/tests/unit/Security/CheckTokenCest.php new file mode 100644 index 00000000000..dd757f23cf5 --- /dev/null +++ b/tests/unit/Security/CheckTokenCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use UnitTester; + +class CheckTokenCest +{ + /** + * Tests Phalcon\Security :: checkToken() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityCheckToken(UnitTester $I) + { + $I->wantToTest("Security - checkToken()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/ComputeHmacCest.php b/tests/unit/Security/ComputeHmacCest.php new file mode 100644 index 00000000000..86c6e97fc3e --- /dev/null +++ b/tests/unit/Security/ComputeHmacCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use UnitTester; + +class ComputeHmacCest +{ + /** + * Tests Phalcon\Security :: computeHmac() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityComputeHmac(UnitTester $I) + { + $I->wantToTest("Security - computeHmac()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/ConstructCest.php b/tests/unit/Security/ConstructCest.php new file mode 100644 index 00000000000..1ea6408c4c1 --- /dev/null +++ b/tests/unit/Security/ConstructCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use UnitTester; + +class ConstructCest +{ + /** + * Tests Phalcon\Security :: __construct() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityConstruct(UnitTester $I) + { + $I->wantToTest("Security - __construct()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/DestroyTokenCest.php b/tests/unit/Security/DestroyTokenCest.php new file mode 100644 index 00000000000..20de10ec199 --- /dev/null +++ b/tests/unit/Security/DestroyTokenCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use UnitTester; + +class DestroyTokenCest +{ + /** + * Tests Phalcon\Security :: destroyToken() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityDestroyToken(UnitTester $I) + { + $I->wantToTest("Security - destroyToken()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/GetDICest.php b/tests/unit/Security/GetDICest.php new file mode 100644 index 00000000000..240f15366a3 --- /dev/null +++ b/tests/unit/Security/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Security :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityGetDI(UnitTester $I) + { + $I->wantToTest("Security - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/GetDefaultHashCest.php b/tests/unit/Security/GetDefaultHashCest.php new file mode 100644 index 00000000000..0547d82801f --- /dev/null +++ b/tests/unit/Security/GetDefaultHashCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use UnitTester; + +class GetDefaultHashCest +{ + /** + * Tests Phalcon\Security :: getDefaultHash() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityGetDefaultHash(UnitTester $I) + { + $I->wantToTest("Security - getDefaultHash()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/GetRandomBytesCest.php b/tests/unit/Security/GetRandomBytesCest.php new file mode 100644 index 00000000000..003c8ca0229 --- /dev/null +++ b/tests/unit/Security/GetRandomBytesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use UnitTester; + +class GetRandomBytesCest +{ + /** + * Tests Phalcon\Security :: getRandomBytes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityGetRandomBytes(UnitTester $I) + { + $I->wantToTest("Security - getRandomBytes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/GetRandomCest.php b/tests/unit/Security/GetRandomCest.php new file mode 100644 index 00000000000..1a7f6e8d15a --- /dev/null +++ b/tests/unit/Security/GetRandomCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use UnitTester; + +class GetRandomCest +{ + /** + * Tests Phalcon\Security :: getRandom() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityGetRandom(UnitTester $I) + { + $I->wantToTest("Security - getRandom()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/GetSaltBytesCest.php b/tests/unit/Security/GetSaltBytesCest.php new file mode 100644 index 00000000000..b1aa01931d6 --- /dev/null +++ b/tests/unit/Security/GetSaltBytesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use UnitTester; + +class GetSaltBytesCest +{ + /** + * Tests Phalcon\Security :: getSaltBytes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityGetSaltBytes(UnitTester $I) + { + $I->wantToTest("Security - getSaltBytes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/GetSessionTokenCest.php b/tests/unit/Security/GetSessionTokenCest.php new file mode 100644 index 00000000000..ecf6d6cfacd --- /dev/null +++ b/tests/unit/Security/GetSessionTokenCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use UnitTester; + +class GetSessionTokenCest +{ + /** + * Tests Phalcon\Security :: getSessionToken() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityGetSessionToken(UnitTester $I) + { + $I->wantToTest("Security - getSessionToken()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/GetTokenCest.php b/tests/unit/Security/GetTokenCest.php new file mode 100644 index 00000000000..c8f357eaafd --- /dev/null +++ b/tests/unit/Security/GetTokenCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use UnitTester; + +class GetTokenCest +{ + /** + * Tests Phalcon\Security :: getToken() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityGetToken(UnitTester $I) + { + $I->wantToTest("Security - getToken()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/GetTokenKeyCest.php b/tests/unit/Security/GetTokenKeyCest.php new file mode 100644 index 00000000000..c77fd5d019d --- /dev/null +++ b/tests/unit/Security/GetTokenKeyCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use UnitTester; + +class GetTokenKeyCest +{ + /** + * Tests Phalcon\Security :: getTokenKey() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityGetTokenKey(UnitTester $I) + { + $I->wantToTest("Security - getTokenKey()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/GetWorkFactorCest.php b/tests/unit/Security/GetWorkFactorCest.php new file mode 100644 index 00000000000..ccc6980b6cb --- /dev/null +++ b/tests/unit/Security/GetWorkFactorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use UnitTester; + +class GetWorkFactorCest +{ + /** + * Tests Phalcon\Security :: getWorkFactor() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityGetWorkFactor(UnitTester $I) + { + $I->wantToTest("Security - getWorkFactor()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/HashCest.php b/tests/unit/Security/HashCest.php new file mode 100644 index 00000000000..983cb78b2df --- /dev/null +++ b/tests/unit/Security/HashCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use UnitTester; + +class HashCest +{ + /** + * Tests Phalcon\Security :: hash() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityHash(UnitTester $I) + { + $I->wantToTest("Security - hash()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/IsLegacyHashCest.php b/tests/unit/Security/IsLegacyHashCest.php new file mode 100644 index 00000000000..d312a7a5633 --- /dev/null +++ b/tests/unit/Security/IsLegacyHashCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use UnitTester; + +class IsLegacyHashCest +{ + /** + * Tests Phalcon\Security :: isLegacyHash() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityIsLegacyHash(UnitTester $I) + { + $I->wantToTest("Security - isLegacyHash()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/Random/Base58Cest.php b/tests/unit/Security/Random/Base58Cest.php new file mode 100644 index 00000000000..f77898884f8 --- /dev/null +++ b/tests/unit/Security/Random/Base58Cest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security\Random; + +use UnitTester; + +class Base58Cest +{ + /** + * Tests Phalcon\Security\Random :: base58() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityRandomBase58(UnitTester $I) + { + $I->wantToTest("Security\Random - base58()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/Random/Base62Cest.php b/tests/unit/Security/Random/Base62Cest.php new file mode 100644 index 00000000000..f8613949745 --- /dev/null +++ b/tests/unit/Security/Random/Base62Cest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security\Random; + +use UnitTester; + +class Base62Cest +{ + /** + * Tests Phalcon\Security\Random :: base62() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityRandomBase62(UnitTester $I) + { + $I->wantToTest("Security\Random - base62()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/Random/Base64Cest.php b/tests/unit/Security/Random/Base64Cest.php new file mode 100644 index 00000000000..5f4e08f511c --- /dev/null +++ b/tests/unit/Security/Random/Base64Cest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security\Random; + +use UnitTester; + +class Base64Cest +{ + /** + * Tests Phalcon\Security\Random :: base64() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityRandomBase64(UnitTester $I) + { + $I->wantToTest("Security\Random - base64()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/Random/Base64SafeCest.php b/tests/unit/Security/Random/Base64SafeCest.php new file mode 100644 index 00000000000..ee50e869779 --- /dev/null +++ b/tests/unit/Security/Random/Base64SafeCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security\Random; + +use UnitTester; + +class Base64SafeCest +{ + /** + * Tests Phalcon\Security\Random :: base64Safe() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityRandomBase64Safe(UnitTester $I) + { + $I->wantToTest("Security\Random - base64Safe()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/Random/BytesCest.php b/tests/unit/Security/Random/BytesCest.php new file mode 100644 index 00000000000..14ae22baa41 --- /dev/null +++ b/tests/unit/Security/Random/BytesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security\Random; + +use UnitTester; + +class BytesCest +{ + /** + * Tests Phalcon\Security\Random :: bytes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityRandomBytes(UnitTester $I) + { + $I->wantToTest("Security\Random - bytes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/Random/HexCest.php b/tests/unit/Security/Random/HexCest.php new file mode 100644 index 00000000000..dc6d7009ee6 --- /dev/null +++ b/tests/unit/Security/Random/HexCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security\Random; + +use UnitTester; + +class HexCest +{ + /** + * Tests Phalcon\Security\Random :: hex() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityRandomHex(UnitTester $I) + { + $I->wantToTest("Security\Random - hex()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/Random/NumberCest.php b/tests/unit/Security/Random/NumberCest.php new file mode 100644 index 00000000000..78bba849f78 --- /dev/null +++ b/tests/unit/Security/Random/NumberCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security\Random; + +use UnitTester; + +class NumberCest +{ + /** + * Tests Phalcon\Security\Random :: number() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityRandomNumber(UnitTester $I) + { + $I->wantToTest("Security\Random - number()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/Random/UuidCest.php b/tests/unit/Security/Random/UuidCest.php new file mode 100644 index 00000000000..3004abbfe5c --- /dev/null +++ b/tests/unit/Security/Random/UuidCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security\Random; + +use UnitTester; + +class UuidCest +{ + /** + * Tests Phalcon\Security\Random :: uuid() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securityRandomUuid(UnitTester $I) + { + $I->wantToTest("Security\Random - uuid()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/RandomCest.php b/tests/unit/Security/RandomCest.php new file mode 100644 index 00000000000..173ecbca85d --- /dev/null +++ b/tests/unit/Security/RandomCest.php @@ -0,0 +1,329 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use Phalcon\Security\Random; +use UnitTester; + +class RandomCest +{ + /** + * Tests the random number generation + * + * @author Phalcon Team + * @since 2015-08-17 + */ + public function testRandomNumber(UnitTester $I) + { + $lens = [ + 2, + 100, + 9, + 8777, + 123456789, + 1, + 9999999999999, + ]; + + $random = new Random(); + + foreach ($lens as $len) { + $actual = $random->number($len); + $I->assertLessOrEquals($len, $actual); + $I->assertGreaterOrEquals(0, $actual); + } + } + + /** + * Tests the random UUID v4 generation + * + * @author Phalcon Team + * @since 2015-08-17 + */ + public function testRandomUuid(UnitTester $I) + { + $random = new Random(); + + $isValid = function ($uuid) { + return ( + preg_match( + '/^\{?[0-9a-f]{8}\-?[0-9a-f]{4}\-?[0-9a-f]{4}\-?[0-9a-f]{4}\-?[0-9a-f]{12}\}?$/i', + $uuid + ) === 1); + }; + + for ($i = 0; $i <= 10; $i++) { + $uuid = $random->uuid(); + + $I->assertTrue($isValid($uuid)); + + $expected = 4; + $actual = substr($uuid, 14, 1); + $I->assertEquals($expected, $actual); + + $actual = in_array(substr($uuid, 19, 1), ['8', '9', 'a', 'b']); + $I->assertTrue($actual); + } + } + + /** + * Tests the random base58 generation + * + * @author Phalcon Team + * @since 2015-08-20 + */ + public function testRandomBase58(UnitTester $I) + { + $examples = [null, 2, 12, 16, 24, 48, 100]; + + foreach ($examples as $len) { + $random = new Random(); + + $isValid = function ($base58) { + $alphabet = array_merge( + range("A", "H"), + range("J", "N"), + range("P", "Z"), + range("a", "k"), + range("m", "z"), + range("1", "9") + ); + + return (preg_match('#^[^' . join('', $alphabet) . ']+$#i', $base58) === 0); + }; + + $base58 = $random->base58($len); + + $expected = ($len === null) ? 16 : $len; + $actual = strlen($base58); + $I->assertEquals($expected, $actual); + $I->assertTrue($isValid($actual)); + } + } + + /** + * Tests the random base62 generation + * + * @issue https://github.com/phalcon/cphalcon/issues/12105 + * @author Phalcon Team + * @since 2017-05-21 + */ + public function testRandomBase62(UnitTester $I) + { + $examples = [null, 2, 12, 16, 24, 48, 100]; + + foreach ($examples as $len) { + $random = new Random(); + + $isValid = function ($base62) { + return (preg_match("#^[^a-z0-9]+$#i", $base62) === 0); + }; + + $base62 = $random->base62($len); + + $expected = ($len === null) ? 16 : $len; + $actual = strlen($base62); + $I->assertEquals($expected, $actual); + $I->assertTrue($isValid($actual)); + } + } + + /** + * Tests the random base64 generation + * + * @author Phalcon Team + * @since 2015-08-17 + */ + public function testRandomBase64(UnitTester $I) + { + $examples = [null, 2, 12, 16, 24, 48, 100]; + + foreach ($examples as $len) { + $random = new Random(); + + $isValid = function ($base64) { + return (preg_match("#[^a-z0-9+_=/-]+#i", $base64) === 0); + }; + + $base64 = $random->base64($len); + + $expected = ($len === null) ? 16 : $len; + $actual = strlen($base64); + $I->assertTrue($this->checkSize($base64, $expected)); + $I->assertTrue($isValid($actual)); + } + } + + /** + * Size formula: 4 * ($n / 3) and this need to be rounded up to a multiple + * of 4. + * + * @param string $string + * @param int $n + * + * @return bool + */ + protected function checkSize($string, $n) + { + if (round(4 * ($n / 3)) % 4 === 0) { + $len = round(4 * ($n / 3)); + } else { + $len = round((4 * ($n / 3) + 4 / 2) / 4) * 4; + } + + return strlen($string) == $len; + } + + /** + * Tests the random base64 generation + * + * @author Phalcon Team + * @since 2015-08-17 + */ + public function testRandomBase64Safe(UnitTester $I) + { + $examples = [ + [null, false, 'a-z0-9_-'], + [null, true, 'a-z0-9_=-'], + [2, false, 'a-z0-9_-'], + [2, true, 'a-z0-9_=-'], + [12, false, 'a-z0-9_-'], + [12, true, 'a-z0-9_=-'], + [16, false, 'a-z0-9_-'], + [16, true, 'a-z0-9_=-'], + [24, false, 'a-z0-9_-'], + [24, true, 'a-z0-9_=-'], + [48, false, 'a-z0-9_-'], + [48, true, 'a-z0-9_=-'], + [100, false, 'a-z0-9_-'], + [100, true, 'a-z0-9_=-'], + ]; + + foreach ($examples as $example) { + $len = $example[0]; + $padding = $example[1]; + $pattern = $example[2]; + + $random = new Random(); + + $isValid = function ($base64) use ($pattern) { + return (preg_match("#[^$pattern]+#i", $base64) === 0); + }; + + $actual = $random->base64Safe($len, $padding); + $I->assertTrue($isValid($actual)); + } + } + + /** + * Tests the random hex generation + * + * @author Phalcon Team + * @since 2015-08-17 + */ + public function testRandomHex(UnitTester $I) + { + $lens = [ + 3, + 6, + 130, + 19, + 710, + 943087, + ]; + + $random = new Random(); + + $checkSize = function ($hex, $len) { + return strlen($hex) == $len * 2; + }; + + $isValid = function ($hex) { + return (preg_match("#^[^0-9a-f]+$#i", $hex) === 0); + }; + + foreach ($lens as $len) { + $hex = $random->hex($len); + + $actual = $checkSize($hex, $len); + $I->assertTrue($actual); + + $actual = $isValid($hex); + $I->assertTrue($actual); + } + + $hex = $random->hex(); + + $actual = $checkSize($hex, 16); + $I->assertTrue($actual); + + $actual = $isValid($hex); + $I->assertTrue($actual); + } + + /** + * Tests the random bytes string generation + * + * @author Phalcon Team + * @since 2015-08-17 + */ + public function testRandomByte(UnitTester $I) + { + $lens = [ + 3, + 6, + 19, + 222, + 100, + 9090909, + 12312312, + ]; + + $random = new Random(); + $isValid = function ($bytes) { + return (preg_match('#^[^\x00-\xFF]+$#', $bytes) === 0); + }; + + foreach ($lens as $len) { + $bytes = $random->bytes($len); + + $expected = $len; + $actual = strlen($bytes); + $I->assertEquals($expected, $actual); + $I->assertTrue($isValid($bytes)); + } + + $bytes = $random->bytes(); + + $expected = 16; + $actual = strlen($bytes); + $I->assertEquals($expected, $actual); + $I->assertTrue($isValid($bytes)); + } + + /** + * executed before each test + */ + public function _before(UnitTester $I) + { + if (!function_exists('random_bytes') && + !extension_loaded('openssl') && + !extension_loaded('libsodium') && + !file_exists('/dev/urandom')) { + $I->skipTest( + 'Warning: libsodium and openssl extensions is not loaded or ' . + '/dev/urandom file does not exist or ' . + 'random_bytes function does not exists' + ); + } + } +} diff --git a/tests/unit/Security/RandomTest.php b/tests/unit/Security/RandomTest.php deleted file mode 100644 index 803df68f7b7..00000000000 --- a/tests/unit/Security/RandomTest.php +++ /dev/null @@ -1,376 +0,0 @@ - - * @package Phalcon\Test\Unit\Security - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class RandomTest extends UnitTest -{ - /** - * executed before each test - */ - protected function _before() - { - if (!function_exists('random_bytes') && !extension_loaded('openssl') && !extension_loaded('libsodium') && !file_exists('/dev/urandom')) { - $this->markTestSkipped( - 'Warning: libsodium and openssl extensions is not loaded, /dev/urandom file does not exists and random_bytes function does not exists' - ); - } - } - - /** - * Tests the random number generation - * - * @author Serghei Iakovlev - * @since 2015-08-17 - */ - public function testRandomNumber() - { - $this->specify( - "number does not generated correct length of number", - function () { - $lens = [ - 2, - 100, - 9, - 8777, - 123456789, - 1, - 9999999999999 - ]; - - $random = new Random(); - - foreach ($lens as $len) { - $actual = $random->number($len); - - expect($actual)->lessOrEquals($len); - expect($actual)->greaterOrEquals(0); - } - } - ); - } - - /** - * Tests the random UUID v4 generation - * - * @author Serghei Iakovlev - * @since 2015-08-17 - */ - public function testRandomUuid() - { - $this->specify( - "uuid does not created a properly formatted UUID", - function () { - $random = new Random(); - - $isValid = function ($uuid) { - return (preg_match('/^\{?[0-9a-f]{8}\-?[0-9a-f]{4}\-?[0-9a-f]{4}\-?[0-9a-f]{4}\-?[0-9a-f]{12}\}?$/i', $uuid) === 1); - }; - - for ($i = 0; $i <= 10; $i++) { - $actual = $random->uuid(); - - expect($isValid($actual))->true(); - expect(substr($actual, 14, 1))->equals(4); - expect(in_array(substr($actual, 19, 1), ['8', '9', 'a', 'b']))->true(); - } - } - ); - } - - /** - * Tests the random base58 generation - * - * @author Serghei Iakovlev - * @since 2015-08-20 - */ - public function testRandomBase58() - { - $this->specify( - "base58 does not generate a valid string", - function ($len) { - $random = new Random(); - - $isValid = function ($base58) { - $alphabet = array_merge( - range("A", "H"), - range("J", "N"), - range("P", "Z"), - range("a", "k"), - range("m", "z"), - range("1", "9") - ); - - return (preg_match('#^[^'.join('', $alphabet).']+$#i', $base58) === 0); - }; - - $actual = $random->base58($len); - - if ($len === null) { - expect(strlen($actual))->equals(16); - } else { - expect(strlen($actual))->equals($len); - } - - expect($isValid($actual))->true(); - }, - [ - 'examples' => [ - [null], - [2], - [12], - [16], - [24], - [48], - [100], - ] - ] - ); - } - - /** - * Tests the random base62 generation - * - * @issue https://github.com/phalcon/cphalcon/issues/12105 - * @author Serghei Iakovlev - * @since 2017-05-21 - */ - public function testRandomBase62() - { - $this->specify( - 'base62 does not generate a valid string', - function ($len) { - $random = new Random(); - - $isValid = function ($base62) { - return (preg_match("#^[^a-z0-9]+$#i", $base62) === 0); - }; - - $actual = $random->base62($len); - - if ($len === null) { - expect(strlen($actual))->equals(16); - } else { - expect(strlen($actual))->equals($len); - } - - expect($isValid($actual))->true(); - }, - [ - 'examples' => [ - [null], - [2], - [12], - [16], - [24], - [48], - [100], - ] - ] - ); - } - - /** - * Tests the random base64 generation - * - * @author Serghei Iakovlev - * @since 2015-08-17 - */ - public function testRandomBase64() - { - $this->specify( - "base64 does not generate a valid string", - function ($len) { - $random = new Random(); - - $isValid = function ($base64) { - return (preg_match("#[^a-z0-9+_=/-]+#i", $base64) === 0); - }; - - $actual = $random->base64($len); - - if ($len === null) { - expect($this->checkSize($actual, 16))->true(); - } else { - expect($this->checkSize($actual, $len))->true(); - } - - expect($isValid($actual))->true(); - }, - [ - 'examples' => [ - [null], - [2], - [12], - [16], - [24], - [48], - [100], - ] - ] - ); - } - - /** - * Tests the random base64 generation - * - * @author Serghei Iakovlev - * @since 2015-08-17 - */ - public function testRandomBase64Safe() - { - $this->specify( - "base64Safe does not generate a valid string", - function ($len, $padding, $pattern) { - $random = new Random(); - - $isValid = function ($base64) use ($pattern) { - return (preg_match("#[^$pattern]+#i", $base64) === 0); - }; - - $actual = $random->base64Safe($len, $padding); - expect($isValid($actual))->true(); - }, - [ - 'examples' => [ - [null, false, 'a-z0-9_-' ], - [null, true, 'a-z0-9_=-'], - [2, false, 'a-z0-9_-' ], - [2, true, 'a-z0-9_=-'], - [12, false, 'a-z0-9_-' ], - [12, true, 'a-z0-9_=-'], - [16, false, 'a-z0-9_-' ], - [16, true, 'a-z0-9_=-'], - [24, false, 'a-z0-9_-' ], - [24, true, 'a-z0-9_=-'], - [48, false, 'a-z0-9_-' ], - [48, true, 'a-z0-9_=-'], - [100, false, 'a-z0-9_-' ], - [100, true, 'a-z0-9_=-'], - ] - ] - ); - } - - /** - * Tests the random hex generation - * - * @author Serghei Iakovlev - * @since 2015-08-17 - */ - public function testRandomHex() - { - $this->specify( - "hex does not generate a valid string", - function () { - $lens = [ - 3, - 6, - 130, - 19, - 710, - 943087 - ]; - - $random = new Random(); - - $checkSize = function ($hex, $len) { - return strlen($hex) == $len * 2; - }; - - $isValid = function ($hex) { - return (preg_match("#^[^0-9a-f]+$#i", $hex) === 0); - }; - - foreach ($lens as $len) { - $actual = $random->hex($len); - - expect($checkSize($actual, $len))->true(); - expect($isValid($actual))->true(); - } - - $actual = $random->hex(); - expect($checkSize($actual, 16))->true(); - expect($isValid($actual))->true(); - } - ); - } - - /** - * Tests the random bytes string generation - * - * @author Serghei Iakovlev - * @since 2015-08-17 - */ - public function testRandomByte() - { - $this->specify( - "bytes does not generate a valid string", - function () { - $lens = [ - 3, - 6, - 19, - 222, - 100, - 9090909, - 12312312 - ]; - - $random = new Random(); - - $isValid = function ($bytes) { - return (preg_match('#^[^\x00-\xFF]+$#', $bytes) === 0); - }; - - foreach ($lens as $len) { - $actual = $random->bytes($len); - - expect(strlen($actual))->equals($len); - expect($isValid($actual))->true(); - } - - $actual = $random->bytes(); - expect(strlen($actual))->equals(16); - expect($isValid($actual))->true(); - } - ); - } - - /** - * Size formula: 4 * ($n / 3) and this need to be rounded up to a multiple of 4. - * - * @param string $string - * @param int $n - * - * @return bool - */ - protected function checkSize($string, $n) - { - if (round(4 * ($n / 3)) % 4 === 0) { - $len = round(4 * ($n / 3)); - } else { - $len = round((4 * ($n / 3) + 4 / 2) / 4) * 4; - } - - return strlen($string) == $len; - } -} diff --git a/tests/unit/Security/SecurityCest.php b/tests/unit/Security/SecurityCest.php new file mode 100644 index 00000000000..1df502368d4 --- /dev/null +++ b/tests/unit/Security/SecurityCest.php @@ -0,0 +1,252 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use Phalcon\Di; +use Phalcon\Http\Request; +use Phalcon\Security; +use Phalcon\Test\Fixtures\Traits\DiTrait; +use UnitTester; + +class SecurityCest +{ + use DiTrait; + + /** + * executed before each test + */ + public function _before(UnitTester $I) + { + $I->checkExtensionIsLoaded('openssl'); + + $this->newDi(); +// $this->setDiEscaper(); +// $this->setDiUrl(); + $this->setDiSession(); + } + + /** + * Tests the Security constants + * + * @author Phalcon Team + * @since 2015-12-19 + */ + public function testSecurityConstants(UnitTester $I) + { + $I->assertEquals(0, Security::CRYPT_DEFAULT); + $I->assertEquals(1, Security::CRYPT_STD_DES); + $I->assertEquals(2, Security::CRYPT_EXT_DES); + $I->assertEquals(3, Security::CRYPT_MD5); + $I->assertEquals(4, Security::CRYPT_BLOWFISH); + $I->assertEquals(5, Security::CRYPT_BLOWFISH_A); + $I->assertEquals(6, Security::CRYPT_BLOWFISH_X); + $I->assertEquals(7, Security::CRYPT_BLOWFISH_Y); + $I->assertEquals(8, Security::CRYPT_SHA256); + $I->assertEquals(9, Security::CRYPT_SHA512); + } + + /** + * Tests the HMAC computation + * + * @author Phalcon Team + * @since 2014-09-12 + */ + public function testSecurityComputeHMAC(UnitTester $I) + { + $security = new Security(); + + $data = []; + for ($i = 1; $i < 256; ++$i) { + $data[] = str_repeat('a', $i); + } + $keys = [ + substr(md5('test', true), 0, strlen(md5('test', true)) / 2), + md5('test', true), + md5('test', true) . md5('test', true), + ]; + + foreach ($data as $index => $text) { + $expected = hash_hmac('md5', $text, $keys[0]); + $actual = $security->computeHmac($text, $keys[0], 'md5'); + $I->assertEquals($expected, $actual); + $expected = hash_hmac('md5', $text, $keys[1]); + $actual = $security->computeHmac($text, $keys[1], 'md5'); + $I->assertEquals($expected, $actual); + $expected = hash_hmac('md5', $text, $keys[2]); + $actual = $security->computeHmac($text, $keys[2], 'md5'); + $I->assertEquals($expected, $actual); + } + } + + /** + * Tests the security defaults + */ + public function testSecurityDefaults(UnitTester $I) + { + $security = new Security(); + + $expected = null; + $actual = $security->getDefaultHash(); + $I->assertEquals($expected, $actual); + + $expected = 16; + $actual = $security->getRandomBytes(); + $I->assertEquals($expected, $actual); + + $security->setDefaultHash(1); + $expected = 1; + $actual = $security->getDefaultHash(); + $I->assertEquals($expected, $actual); + + $security->setRandomBytes(22); + $expected = 22; + $actual = $security->getRandomBytes(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Security::getToken and Security::getTokenKey for generating only + * one token per request + */ + public function testOneTokenPerRequest(UnitTester $I) + { + /** + * @TODO - Check Segfault + */ + $I->skipTest('TODO: Check segfault'); + $container = $this->getDi(); + $security = new Security(); + $security->setDI($container); + + $tokenKey = $security->getTokenKey(); + $token = $security->getToken(); + + $expected = $tokenKey; + $actual = $security->getTokenKey(); + $I->assertEquals($expected, $actual); + + $expected = $token; + $actual = $security->getToken(); + $I->assertEquals($expected, $actual); + + $expected = $token; + $actual = $security->getSessionToken(); + $I->assertEquals($expected, $actual); + + $security->destroyToken(); + + $expected = $tokenKey; + $actual = $security->getTokenKey(); + $I->assertNotEquals($expected, $actual); + + $expected = $token; + $actual = $security->getToken(); + $I->asserNottEquals($expected, $actual); + + $expected = $token; + $actual = $security->getSessionToken(); + $I->assertNotEquals($expected, $actual); + + $security->destroyToken(); + } + + /** + * Tests Security::checkToken + */ + public function testCheckToken(UnitTester $I) + { + /** + * @TODO - Check Segfault + */ + $I->skipTest('TODO: Check segfault'); + $container = $this->getDi(); + $security = new Security(); + $security->setDI($container); + + // Random token and token key check + $tokenKey = $security->getTokenKey(); + $token = $security->getToken(); + $_POST = [$tokenKey => $token]; + $I->assertTrue($security->checkToken(null, null, false)); + $I->assertTrue($security->checkToken()); + $I->assertFalse($security->checkToken()); + + // Destroy token check + $tokenKey = $security->getTokenKey(); + $token = $security->getToken(); + $security->destroyToken(); + + $_POST = [$tokenKey => $token]; + $I->assertFalse($security->checkToken()); + + // Custom token key check + $token = $security->getToken(); + $_POST = ['custom_key' => $token]; + $I->assertFalse($security->checkToken(null, null, false)); + $I->assertFalse($security->checkToken('other_custom_key', null, false)); + $I->assertTrue($security->checkToken('custom_key')); + + // Custom token value check + $token = $security->getToken(); + $_POST = []; + $I->assertFalse($security->checkToken(null, null, false)); + $I->assertFalse($security->checkToken('some_random_key', 'some_random_value', false)); + $I->assertTrue($security->checkToken('custom_key', $token)); + } + + /** + * Tests Security::getSaltBytes + */ + public function testGetSaltBytes(UnitTester $I) + { + $security = new Security(); + + $I->assertGreaterOrEquals(16, strlen($security->getSaltBytes())); + $I->assertGreaterOrEquals(22, strlen($security->getSaltBytes(22))); + } + + /** + * Tests Security::hash + */ + public function testHash(UnitTester $I) + { + $security = new Security(); + $password = 'SomePasswordValue'; + + $security->setDefaultHash(Security::CRYPT_DEFAULT); + $I->assertTrue($security->checkHash($password, $security->hash($password))); + + $security->setDefaultHash(Security::CRYPT_STD_DES); + $I->assertTrue($security->checkHash($password, $security->hash($password))); + + $security->setDefaultHash(Security::CRYPT_EXT_DES); + $I->assertTrue($security->checkHash($password, $security->hash($password))); + + $security->setDefaultHash(Security::CRYPT_BLOWFISH); + $I->assertTrue($security->checkHash($password, $security->hash($password))); + + $security->setDefaultHash(Security::CRYPT_BLOWFISH_A); + $I->assertTrue($security->checkHash($password, $security->hash($password))); + + $security->setDefaultHash(Security::CRYPT_BLOWFISH_X); + $I->assertTrue($security->checkHash($password, $security->hash($password))); + + $security->setDefaultHash(Security::CRYPT_BLOWFISH_Y); + $I->assertTrue($security->checkHash($password, $security->hash($password))); + + $security->setDefaultHash(Security::CRYPT_SHA256); + $I->assertTrue($security->checkHash($password, $security->hash($password))); + + $security->setDefaultHash(Security::CRYPT_SHA512); + $I->assertTrue($security->checkHash($password, $security->hash($password))); + } +} diff --git a/tests/unit/Security/SetDICest.php b/tests/unit/Security/SetDICest.php new file mode 100644 index 00000000000..cb9c43ba502 --- /dev/null +++ b/tests/unit/Security/SetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Security :: setDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securitySetDI(UnitTester $I) + { + $I->wantToTest("Security - setDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/SetDefaultHashCest.php b/tests/unit/Security/SetDefaultHashCest.php new file mode 100644 index 00000000000..acb38973478 --- /dev/null +++ b/tests/unit/Security/SetDefaultHashCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use UnitTester; + +class SetDefaultHashCest +{ + /** + * Tests Phalcon\Security :: setDefaultHash() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securitySetDefaultHash(UnitTester $I) + { + $I->wantToTest("Security - setDefaultHash()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/SetRandomBytesCest.php b/tests/unit/Security/SetRandomBytesCest.php new file mode 100644 index 00000000000..01468030b2c --- /dev/null +++ b/tests/unit/Security/SetRandomBytesCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use UnitTester; + +class SetRandomBytesCest +{ + /** + * Tests Phalcon\Security :: setRandomBytes() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securitySetRandomBytes(UnitTester $I) + { + $I->wantToTest("Security - setRandomBytes()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Security/SetWorkFactorCest.php b/tests/unit/Security/SetWorkFactorCest.php new file mode 100644 index 00000000000..2a8d2df42ce --- /dev/null +++ b/tests/unit/Security/SetWorkFactorCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Security; + +use UnitTester; + +class SetWorkFactorCest +{ + /** + * Tests Phalcon\Security :: setWorkFactor() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function securitySetWorkFactor(UnitTester $I) + { + $I->wantToTest("Security - setWorkFactor()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/SecurityTest.php b/tests/unit/SecurityTest.php deleted file mode 100644 index 21ca0becc55..00000000000 --- a/tests/unit/SecurityTest.php +++ /dev/null @@ -1,288 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class SecurityTest extends UnitTest -{ - /** - * executed before each test - */ - protected function _before() - { - if (!extension_loaded('openssl')) { - $this->markTestSkipped('Warning: openssl extension is not loaded'); - } - } - - /** - * Tests the Security constants - * - * @author Serghei Iakovlev - * @since 2015-12-19 - */ - public function testSecurityConstants() - { - $this->specify( - 'Security constants are not correct', - function () { - expect(Security::CRYPT_DEFAULT)->equals(0); - expect(Security::CRYPT_STD_DES)->equals(1); - expect(Security::CRYPT_EXT_DES)->equals(2); - expect(Security::CRYPT_MD5)->equals(3); - expect(Security::CRYPT_BLOWFISH)->equals(4); - expect(Security::CRYPT_BLOWFISH_A)->equals(5); - expect(Security::CRYPT_BLOWFISH_X)->equals(6); - expect(Security::CRYPT_BLOWFISH_Y)->equals(7); - expect(Security::CRYPT_SHA256)->equals(8); - expect(Security::CRYPT_SHA512)->equals(9); - } - ); - } - - /** - * Tests the HMAC computation - * - * @author Nikolaos Dimopoulos - * @since 2014-09-12 - */ - public function testSecurityComputeHMAC() - { - $this->specify( - 'The HMAC computation values are not identical', - function ($key) { - $security = new Security(); - - $data = []; - for ($i = 1; $i < 256; ++$i) { - $data[] = str_repeat('a', $i); - } - - foreach ($data as $text) { - expect($security->computeHmac($text, $key, 'md5'))->equals(hash_hmac('md5', $text, $key)); - } - }, - [ - 'examples' => [ - [ - substr(md5('test', true), 0, strlen(md5('test', true)) / 2) - ], - [ - md5('test', true) - ], - [ - md5('test', true) . md5('test', true) - ], - ] - ] - ); - } - - /** - * Tests the security defaults - */ - public function testSecurityDefaults() - { - $this->specify( - 'Security defaults are not correct', - function () { - $s = new Security(); - expect($s->getDefaultHash())->equals(null); - expect($s->getRandomBytes())->equals(16); - - $s->setDefaultHash(1); - expect($s->getDefaultHash())->equals(1); - - $s->setRandomBytes(22); - expect($s->getRandomBytes())->equals(22); - } - ); - } - - /** - * Tests Security::getToken and Security::getTokenKey for generating only one token per request - */ - public function testOneTokenPerRequest() - { - $this->specify( - "The Security::getToken and Security::getTokenKey must return only one token per request", - function () { - $di = $this->setupDI(); - - $s = new Security(); - $s->setDI($di); - - $tokenKey = $s->getTokenKey(); - $token = $s->getToken(); - - expect($tokenKey)->equals($s->getTokenKey()); - expect($token)->equals($s->getToken()); - expect($token)->equals($s->getSessionToken()); - - $s->destroyToken(); - - expect($tokenKey)->notEquals($s->getTokenKey()); - expect($token)->notEquals($s->getToken()); - expect($token)->notEquals($s->getSessionToken()); - - $s->destroyToken(); - } - ); - } - - /** - * Tests Security::checkToken - */ - public function testCheckToken() - { - $this->specify( - 'The Security::checkToken works incorrectly', - function () { - $di = $this->setupDI(); - - $s = new Security(); - $s->setDI($di); - - // Random token and token key check - $tokenKey = $s->getTokenKey(); - $token = $s->getToken(); - - $_POST = [$tokenKey => $token]; - - expect($s->checkToken(null, null, false))->true(); - expect($s->checkToken())->true(); - expect($s->checkToken())->false(); - - // Destroy token check - $tokenKey = $s->getTokenKey(); - $token = $s->getToken(); - - $s->destroyToken(); - - $_POST = [$tokenKey => $token]; - - expect($s->checkToken())->false(); - - // Custom token key check - $token = $s->getToken(); - - $_POST = ['custom_key' => $token]; - - expect($s->checkToken(null, null, false))->false(); - expect($s->checkToken('other_custom_key', null, false))->false(); - expect($s->checkToken('custom_key'))->true(); - - // Custom token value check - $token = $s->getToken(); - - $_POST = []; - - expect($s->checkToken(null, null, false))->false(); - expect($s->checkToken('some_random_key', 'some_random_value', false))->false(); - expect($s->checkToken('custom_key', $token))->true(); - } - ); - } - - /** - * Tests Security::getSaltBytes - */ - public function testGetSaltBytes() - { - $this->specify( - 'The Security::getSaltBytes works incorrectly', - function () { - $s = new Security(); - - expect(strlen($s->getSaltBytes()))->greaterOrEquals(16); - expect(strlen($s->getSaltBytes(22)))->greaterOrEquals(22); - } - ); - } - - /** - * Tests Security::hash - */ - public function testHash() - { - $this->specify( - 'The Security::hash works incorrectly', - function () { - $s = new Security(); - - $password = 'SomePasswordValue'; - - $s->setDefaultHash(Security::CRYPT_DEFAULT); - expect($s->checkHash($password, $s->hash($password)))->true(); - - $s->setDefaultHash(Security::CRYPT_STD_DES); - expect($s->checkHash($password, $s->hash($password)))->true(); - - $s->setDefaultHash(Security::CRYPT_EXT_DES); - expect($s->checkHash($password, $s->hash($password)))->true(); - - $s->setDefaultHash(Security::CRYPT_BLOWFISH); - expect($s->checkHash($password, $s->hash($password)))->true(); - - $s->setDefaultHash(Security::CRYPT_BLOWFISH_A); - expect($s->checkHash($password, $s->hash($password)))->true(); - - $s->setDefaultHash(Security::CRYPT_BLOWFISH_X); - expect($s->checkHash($password, $s->hash($password)))->true(); - - $s->setDefaultHash(Security::CRYPT_BLOWFISH_Y); - expect($s->checkHash($password, $s->hash($password)))->true(); - - $s->setDefaultHash(Security::CRYPT_SHA256); - expect($s->checkHash($password, $s->hash($password)))->true(); - - $s->setDefaultHash(Security::CRYPT_SHA512); - expect($s->checkHash($password, $s->hash($password)))->true(); - } - ); - } - - /** - * Set up the environment. - * - * @return Di - */ - private function setupDI() - { - Di::reset(); - - $di = new Di(); - - $di->setShared('session', function () { - return new MemorySession(); - }); - - $di->setShared('request', function () { - return new Request(); - }); - - return $di; - } -} diff --git a/tests/unit/Session/Adapter/FilesTest.php b/tests/unit/Session/Adapter/FilesTest.php deleted file mode 100644 index 15fbb528ec2..00000000000 --- a/tests/unit/Session/Adapter/FilesTest.php +++ /dev/null @@ -1,308 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Session\Adapter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FilesTest extends UnitTest -{ - protected $sessionConfig = []; - - /** - * executed before each test - */ - protected function _before() - { - parent::_before(); - - $this->sessionConfig = [ - 'save_handler' => ini_get('session.save_handler'), - 'save_path' => ini_get('session.save_path'), - 'serialize_handler' => ini_get('session.serialize_handler'), - ]; - - if (!isset($_SESSION)) { - $_SESSION = []; - } - } - - /** - * executed after each test - */ - protected function _after() - { - parent::_after(); - - if (PHP_SESSION_ACTIVE == session_status()) { - session_destroy(); - } - - foreach ($this->sessionConfig as $key => $val) { - ini_set($key, $val); - } - } - - public function testSessionName() - { - $this->specify( - 'The Files Adapter is handling the named session incorrectly', - function () { - $session = new Files(); - $session->setName('NAMEFOO'); - - expect($session->getName())->equals('NAMEFOO'); - expect(session_name())->equals('NAMEFOO'); - - session_name('NAMEBAR'); - expect($session->getName())->equals('NAMEBAR'); - } - ); - } - - /** - * Tests session start - * - * @author Serghei Iakovlev - * @since 2016-01-20 - */ - public function testSessionStart() - { - $this->specify( - 'Headers not sent yet but the session can not be started', - function () { - $session = new Files(); - - expect($session->start())->true(); - expect($session->isStarted())->true(); - expect($session->status())->equals(Adapter::SESSION_ACTIVE); - } - ); - } - - /** - * Tests session start - * - * @issue https://github.com/phalcon/cphalcon/issues/10238 - * @author Serghei Iakovlev - * @author Dreamszhu - * @since 2016-01-20 - */ - public function testSessionFilesGet() - { - $this->specify( - 'Session getter does not work correctly', - function () { - $session = new Files(); - - session_start(); - - $session->set('some', 'value'); - - expect($session->get('some'))->equals('value'); - expect($session->has('some'))->true(); - expect($session->get('undefined', 'my-default'))->equals('my-default'); - - expect($session->get('some', null, true))->equals('value'); - expect($session->has('some'))->false(); - - $session->set('some_zero', 0); - expect($session->get('some_zero') === 0)->true(); - expect($session->get('some_zero') === null)->false(); - - $session->set('some_false', false); - expect($session->get('some_false') === null)->false(); - expect($session->get('some_false') === false)->true(); - } - ); - } - - /** - * Tests session write - * - * @author Serghei Iakovlev - * @since 2016-01-24 - */ - public function testSessionFilesWrite() - { - $this->specify( - 'Files session does not write data correctly', - function () { - $I = $this->tester; - $path = PATH_OUTPUT . sprintf('tests%ssession%s', DIRECTORY_SEPARATOR, DIRECTORY_SEPARATOR); - - ini_set('session.save_handler', 'files'); - ini_set('session.save_path', $path); - ini_set('session.serialize_handler', 'php'); - - $session = new Files(); - $session->start(); - - $session->set('some', 'write-value'); - - expect($id = $session->getId())->notEmpty(); - - $file = sprintf('%ssess_%s', $path, $id); - unset($session); - - $I->openFile($file); - $I->seeInThisFile('some|s:11:"write-value";'); - - $I->deleteFile($file); - } - ); - } - - /** - * Tests session write with magic __set - * - * @author Serghei Iakovlev - * @since 2016-01-24 - */ - public function testSessionFilesWriteMagic() - { - $this->specify( - 'Files session does not write data correctly with magic __set', - function () { - $I = $this->tester; - $path = PATH_OUTPUT . sprintf('tests%ssession%s', DIRECTORY_SEPARATOR, DIRECTORY_SEPARATOR); - - ini_set('session.save_handler', 'files'); - ini_set('session.save_path', $path); - ini_set('session.serialize_handler', 'php'); - - $session = new Files(); - $session->start(); - - $session->some = 'write-magic-value'; - - expect($id = $session->getId())->notEmpty(); - - $file = sprintf('%ssess_%s', $path, $id); - unset($session); - - $I->openFile($file); - $I->seeInThisFile('some|s:17:"write-magic-value";'); - - $I->deleteFile($file); - } - ); - } - - /** - * Tests session read - * - * @author Serghei Iakovlev - * @since 2016-01-24 - */ - public function testSessionFilesRead() - { - $this->specify( - 'Files session does not read data correctly', - function () { - $I = $this->tester; - $id = md5(microtime(true)); - $path = PATH_OUTPUT . sprintf('tests%ssession%s', DIRECTORY_SEPARATOR, DIRECTORY_SEPARATOR); - $file = sprintf('%ssess_%s', $path, $id); - - $session = new Files(); - $session->setId($id); - $session->start(); - - $_SESSION['some'] = 'read-value'; - - expect($session->has('some'))->true(); - expect($session->get('some'))->equals('read-value'); - - $session->destroy(); - - $I->dontSeeFileFound($file); - } - ); - } - - /** - * Tests session read with magic __get - * - * @author Serghei Iakovlev - * @since 2016-01-24 - */ - public function testSessionFilesReadMagic() - { - $this->specify( - 'Files session does not read data correctly with magic __get', - function () { - $I = $this->tester; - $id = md5(microtime(true)); - $path = PATH_OUTPUT . sprintf('tests%ssession%s', DIRECTORY_SEPARATOR, DIRECTORY_SEPARATOR); - $file = sprintf('%ssess_%s', $path, $id); - - $session = new Files(); - $session->setId($id); - $session->start(); - - $_SESSION['some'] = 'read-magic-value'; - - expect(isset($session->some))->true(); - expect($session->some)->equals('read-magic-value'); - - unset($session->some); - expect(isset($session->some))->false(); - - $session->destroy(); - - $I->dontSeeFileFound($file); - } - ); - } - - /** - * Tests the destroy with cleanning $_SESSION - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/12326 - * @issue https://github.com/phalcon/cphalcon/issues/12835 - * @author Serghei Iakovelev - * @since 2017-05-08 - */ - public function destroyDataFromSessionSuperGlobal() - { - $this->specify( - 'The files adapter does not clear session superglobal after destroy', - function () { - $session = new Files([ - 'uniqueId' => 'session', - 'lifetime' => 3600, - ]); - - $session->start(); - - $session->test1 = __METHOD__; - expect($_SESSION)->hasKey('session#test1'); - expect($_SESSION['session#test1'])->contains(__METHOD__); - - // @deprecated See: https://github.com/phalcon/cphalcon/issues/12833 - $session->destroy(true); - expect($_SESSION)->hasntKey('session#test1'); - } - ); - } -} diff --git a/tests/unit/Session/Adapter/LibmemcachedTest.php b/tests/unit/Session/Adapter/LibmemcachedTest.php deleted file mode 100644 index 7e299545310..00000000000 --- a/tests/unit/Session/Adapter/LibmemcachedTest.php +++ /dev/null @@ -1,169 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Session\Adapter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class LibmemcachedTest extends UnitTest -{ - /** - * executed before each test - */ - public function _before() - { - parent::_before(); - - if (!extension_loaded('memcached')) { - $this->markTestSkipped('Warning: memcached extension is not loaded'); - } - - if (!isset($_SESSION)) { - $_SESSION = []; - } - } - - /** - * executed after each test - */ - protected function _after() - { - parent::_after(); - - if (PHP_SESSION_ACTIVE == session_status()) { - session_destroy(); - } - } - - /** - * Tests read and write - * - * @author Sid Roberts - * @since 2015-07-17 - */ - public function testReadAndWriteSession() - { - $this->specify( - "The session cannot be read or written from", - function () { - $sessionID = "abcdef123456"; - - $session = new Libmemcached([ - 'servers' => [ - [ - 'host' => env('TEST_MC_HOST', '127.0.0.1'), - 'port' => env('TEST_MC_PORT', 11211), - ] - ], - 'client' => [] - ]); - - $data = serialize( - [ - 'abc' => '123', - 'def' => '678', - 'xyz' => 'zyx' - ] - ); - - $session->write($sessionID, $data); - - expect($session->read($sessionID))->equals($data); - } - ); - } - - /** - * Tests the destroy - * - * @author Sid Roberts - * @since 2015-07-17 - */ - public function testDestroySession() - { - $this->specify( - "The session cannot be destroyed", - function () { - $sessionID = "abcdef123456"; - - $session = new Libmemcached([ - 'servers' => [ - [ - 'host' => env('TEST_MC_HOST', '127.0.0.1'), - 'port' => env('TEST_MC_PORT', 11211), - ] - ], - 'client' => [] - ]); - - $data = serialize( - [ - 'abc' => '123', - 'def' => '678', - 'xyz' => 'zyx' - ] - ); - - $session->write($sessionID, $data); - $session->destroy($sessionID); - - expect($session->read($sessionID))->equals(null); - } - ); - } - - /** - * Tests the destroy with cleanning $_SESSION - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/12326 - * @issue https://github.com/phalcon/cphalcon/issues/12835 - * @author Serghei Iakovelev - * @since 2017-05-08 - */ - public function destroyDataFromSessionSuperGlobal() - { - $this->specify( - 'The libmemcached adapter does not clear session superglobal after destroy', - function () { - $session = new Libmemcached([ - 'servers' => [ - [ - 'host' => env('TEST_MC_HOST', '127.0.0.1'), - 'port' => env('TEST_MC_PORT', 11211), - ], - ], - 'client' => [], - 'uniqueId' => 'session', - 'lifetime' => 3600, - ]); - - $session->start(); - - $session->test1 = __METHOD__; - expect($_SESSION)->hasKey('session#test1'); - expect($_SESSION['session#test1'])->contains(__METHOD__); - - $session->destroy(); - expect($_SESSION)->hasntKey('session#test1'); - } - ); - } -} diff --git a/tests/unit/Session/Adapter/RedisTest.php b/tests/unit/Session/Adapter/RedisTest.php deleted file mode 100644 index 5e7038890f8..00000000000 --- a/tests/unit/Session/Adapter/RedisTest.php +++ /dev/null @@ -1,164 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Session\Adapter - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class RedisTest extends UnitTest -{ - /** - * executed before each test - */ - public function _before() - { - parent::_before(); - - if (!extension_loaded('redis')) { - $this->markTestSkipped('Warning: redis extension is not loaded'); - } - - if (!isset($_SESSION)) { - $_SESSION = []; - } - } - - /** - * executed after each test - */ - protected function _after() - { - parent::_after(); - - if (PHP_SESSION_ACTIVE == session_status()) { - session_destroy(); - } - } - - /** - * Tests read and write - * - * @author Sid Roberts - * @since 2015-07-17 - */ - public function testReadAndWriteSession() - { - $this->specify( - "The session cannot be read or written from", - function () { - $sessionID = "abcdef123456"; - - $session = new Redis( - [ - 'host' => env('TEST_RS_HOST', '127.0.0.1'), - 'port' => env('TEST_RS_PORT', 6379), - 'index' => env('TEST_RS_DB', 0), - ] - ); - - $data = serialize( - [ - "abc" => "123", - "def" => "678", - "xyz" => "zyx" - ] - ); - - $session->write($sessionID, $data); - - expect($session->read($sessionID))->equals($data); - } - ); - } - - /** - * Tests the destroy - * - * @author Sid Roberts - * @since 2015-07-17 - */ - public function testDestroySession() - { - $this->specify( - "The session cannot be destroyed", - function () { - $sessionID = "abcdef123456"; - - $session = new Redis( - [ - 'host' => env('TEST_RS_HOST', '127.0.0.1'), - 'port' => env('TEST_RS_PORT', 6379), - 'index' => env('TEST_RS_DB', 0), - ] - ); - - $data = serialize( - [ - "abc" => "123", - "def" => "678", - "xyz" => "zyx" - ] - ); - - $session->write($sessionID, $data); - $session->destroy($sessionID); - - expect($session->read($sessionID))->equals(null); - } - ); - } - - /** - * Tests the destroy with cleanning $_SESSION - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/12326 - * @issue https://github.com/phalcon/cphalcon/issues/12835 - * @author Serghei Iakovelev - * @since 2017-05-08 - */ - public function destroyDataFromSessionSuperGlobal() - { - $this->specify( - 'The redis adapter does not clear session superglobal after destroy', - function () { - $session = new Redis( - [ - 'host' => env('TEST_RS_HOST', '127.0.0.1'), - 'port' => env('TEST_RS_PORT', 6379), - 'index' => env('TEST_RS_DB', 0), - 'uniqueId' => 'session', - 'lifetime' => 3600, - 'prefix' => '_DESTROY:', - ] - ); - - $session->start(); - - $session->test1 = __METHOD__; - expect($_SESSION)->hasKey('session#test1'); - expect($_SESSION['session#test1'])->contains(__METHOD__); - - $session->destroy(); - expect($_SESSION)->hasntKey('session#test1'); - } - ); - } -} diff --git a/tests/unit/Session/BagTest.php b/tests/unit/Session/BagTest.php deleted file mode 100644 index fa05e6777ea..00000000000 --- a/tests/unit/Session/BagTest.php +++ /dev/null @@ -1,145 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Session - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class BagTest extends UnitTest -{ - /** - * executed before each test - */ - protected function _before() - { - parent::_before(); - - FactoryDefault::reset(); - new FactoryDefault; - - if (session_status() === PHP_SESSION_NONE) { - session_start(); - } - } - - /** - * executed after each test - */ - protected function _after() - { - parent::_after(); - - if (session_status() === PHP_SESSION_ACTIVE) { - session_destroy(); - } - } - - /** - * Tests read and write - * - * @author Kamil Skowron - * @since 2015-07-17 - */ - public function testBagGetAndSet() - { - $this->specify( - "Session bag incorrectly handling writing and reading", - function () { - // Using getters and setters - $bag = new Bag('test1'); - $bag->set('a', ['b' => 'c']); - expect($bag->get('a'))->equals(['b' => 'c']); - expect($_SESSION['test1']['a'])->same(['b' => 'c']); - - // Using direct access - $bag = new Bag('test2'); - $bag->{'a'} = ['b' => 'c']; - expect($bag->{'a'})->equals(['b' => 'c']); - expect($_SESSION['test2']['a'])->same(['b' => 'c']); - } - ); - } - - /** - * Tests write empty array - * - * @author Kamil Skowron - * @since 2015-07-17 - */ - public function testBagSetEmptyArray() - { - $this->specify( - "Setting an empty array to Session Bag do not return the same", - function () { - $bag = new Bag('container'); - $value = []; - $bag->a = $value; - - expect($bag->a)->same($value); - } - ); - } - - /** - * Delete a value in a bag (not initialized internally) - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/12647 - * @author Fabio Mora - * @since 2017-02-21 - */ - public function shouldDeleteInitializeInternalData() - { - $this->specify( - "Delete a value in a non initialized bag has failed", - function () { - $reflectionClass = new ReflectionClass(Bag::class); - $_data = $reflectionClass->getProperty('_data'); - $_data->setAccessible(true); - $_initialized = $reflectionClass->getProperty('_initialized'); - $_initialized->setAccessible(true); - - // Setup a bag with a value - $bag = new Bag('fruit'); - $bag->set('apples', 10); - - expect($bag->get('apples'))->same(10); - expect($_data->getValue($bag))->same(['apples' => 10]); - expect($_initialized->getValue($bag))->true(); - - // Emulate a reset of the internal status (e.g. as would be done by a sleep/wakeup handler) - $serializedBag = serialize($bag); - unset($bag); - - $bag = unserialize($serializedBag); - $_data->setValue($bag, null); - $_initialized->setValue($bag, false); - - // Delete - expect($_initialized->getValue($bag))->false(); - expect($bag->remove('apples'))->true(); - expect($bag->get('apples'))->null(); - expect($_initialized->getValue($bag))->true(); - } - ); - } -} diff --git a/tests/unit/Session/FactoryTest.php b/tests/unit/Session/FactoryTest.php deleted file mode 100644 index d691d3647a6..00000000000 --- a/tests/unit/Session/FactoryTest.php +++ /dev/null @@ -1,68 +0,0 @@ - - * @author Serghei Iakovlev - * @author Wojciech Ślawski - * @package Phalcon\Test\Unit\Annotations - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class FactoryTest extends FactoryBase -{ - /** - * Test factory using Phalcon\Config - * - * @author Wojciech Ślawski - * @since 2017-03-02 - */ - public function testConfigFactory() - { - $this->specify( - "Factory using Phalcon\\Config doesn't work properly", - function () { - $options = $this->config->session; - /** @var Memcache $session */ - $session = Factory::load($options); - expect($session)->isInstanceOf(Memcache::class); - expect(array_intersect_assoc($session->getOptions(), $options->toArray()))->equals($session->getOptions()); - } - ); - } - - /** - * Test factory using array - * - * @author Wojciech Ślawski - * @since 2017-03-02 - */ - public function testArrayFactory() - { - $this->specify( - "Factory using array doesn't work properly", - function () { - $options = $this->arrayConfig['session']; - /** @var Memcache $session */ - $session = Factory::load($options); - expect($session)->isInstanceOf(Memcache::class); - expect(array_intersect_assoc($session->getOptions(), $options))->equals($session->getOptions()); - } - ); - } -} diff --git a/tests/unit/Tag/AppendTitleCest.php b/tests/unit/Tag/AppendTitleCest.php new file mode 100644 index 00000000000..1ba02efe09b --- /dev/null +++ b/tests/unit/Tag/AppendTitleCest.php @@ -0,0 +1,165 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagSetup; +use UnitTester; + +class AppendTitleCest extends TagSetup +{ + /** + * Tests Phalcon\Tag :: appendTitle() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2012-09-05 + */ + public function tagAppendTitle(UnitTester $I) + { + $I->wantToTest("Tag - appendTitle()"); + Tag::resetInput(); + Tag::setTitle('Title'); + Tag::appendTitle('Class'); + + $expected = "Title"; + $actual = Tag::getTitle(false, false); + $I->assertEquals($expected, $actual); + + $expected = "TitleClass"; + $actual = Tag::getTitle(false, true); + $I->assertEquals($expected, $actual); + + $expected = "TitleClass" . PHP_EOL; + $actual = Tag::renderTitle(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: appendTitle() - separator + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2012-09-05 + */ + public function tagAppendTitleSeparator(UnitTester $I) + { + $I->wantToTest("Tag - appendTitle() - separator"); + Tag::resetInput(); + Tag::setTitle('Title'); + Tag::setTitleSeparator('|'); + Tag::appendTitle('Class'); + + $expected = "Title"; + $actual = Tag::getTitle(false, false); + $I->assertEquals($expected, $actual); + + $expected = "Title|Class"; + $actual = Tag::getTitle(false, true); + $I->assertEquals($expected, $actual); + + $expected = "Title|Class" . PHP_EOL; + $actual = Tag::renderTitle(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: appendTitle() - double call + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2012-09-05 + */ + public function tagAppendTitleDoubleCall(UnitTester $I) + { + $I->wantToTest("Tag - appendTitle() - double call"); + Tag::resetInput(); + Tag::setTitle('Main'); + Tag::setTitleSeparator(' - '); + Tag::appendTitle('Category'); + Tag::appendTitle('Title'); + + $expected = "Main"; + $actual = Tag::getTitle(false, false); + $I->assertEquals($expected, $actual); + + $expected = "Main - Category - Title"; + $actual = Tag::getTitle(false, true); + $I->assertEquals($expected, $actual); + + $expected = "Main - Category - Title" . PHP_EOL; + $actual = Tag::renderTitle(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: appendTitle() - array + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2012-09-05 + */ + public function tagAppendTitleArray(UnitTester $I) + { + $I->wantToTest("Tag - appendTitle() - array"); + Tag::resetInput(); + Tag::setTitle('Main'); + Tag::setTitleSeparator(' - '); + Tag::appendTitle(['Category', 'Title']); + + $expected = "Main"; + $actual = Tag::getTitle(false, false); + $I->assertEquals($expected, $actual); + + $expected = "Main - Category - Title"; + $actual = Tag::getTitle(false, true); + $I->assertEquals($expected, $actual); + + $expected = "Main - Category - Title" . PHP_EOL; + $actual = Tag::renderTitle(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: appendTitle() - empty array + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2012-09-05 + */ + public function tagAppendTitleEmptyArray(UnitTester $I) + { + $I->wantToTest("Tag - appendTitle() - empty array"); + Tag::resetInput(); + Tag::setTitle('Main'); + Tag::setTitleSeparator(' - '); + Tag::appendTitle('Category'); + Tag::appendTitle([]); + + $expected = "Main"; + $actual = Tag::getTitle(false, false); + $I->assertEquals($expected, $actual); + + $expected = "Main"; + $actual = Tag::getTitle(false, true); + $I->assertEquals($expected, $actual); + + $expected = "Main" . PHP_EOL; + $actual = Tag::renderTitle(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Tag/CheckFieldCest.php b/tests/unit/Tag/CheckFieldCest.php new file mode 100644 index 00000000000..46059699605 --- /dev/null +++ b/tests/unit/Tag/CheckFieldCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use UnitTester; + +class CheckFieldCest +{ + /** + * Tests Phalcon\Tag :: checkField() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function tagCheckField(UnitTester $I) + { + $I->wantToTest("Tag - checkField()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Tag/ColorFieldCest.php b/tests/unit/Tag/ColorFieldCest.php new file mode 100644 index 00000000000..bc180b4868d --- /dev/null +++ b/tests/unit/Tag/ColorFieldCest.php @@ -0,0 +1,21 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagHelper; + +class ColorFieldCest extends TagHelper +{ + protected $function = 'colorField'; + protected $inputType = 'color'; +} diff --git a/tests/unit/Tag/DateFieldCest.php b/tests/unit/Tag/DateFieldCest.php new file mode 100644 index 00000000000..c3e8eece7e2 --- /dev/null +++ b/tests/unit/Tag/DateFieldCest.php @@ -0,0 +1,21 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagHelper; + +class DateFieldCest extends TagHelper +{ + protected $function = 'dateField'; + protected $inputType = 'date'; +} diff --git a/tests/unit/Tag/DateTimeFieldCest.php b/tests/unit/Tag/DateTimeFieldCest.php new file mode 100644 index 00000000000..585ea991360 --- /dev/null +++ b/tests/unit/Tag/DateTimeFieldCest.php @@ -0,0 +1,21 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagHelper; + +class DateTimeFieldCest extends TagHelper +{ + protected $function = 'dateTimeField'; + protected $inputType = 'datetime'; +} diff --git a/tests/unit/Tag/DateTimeLocalFieldCest.php b/tests/unit/Tag/DateTimeLocalFieldCest.php new file mode 100644 index 00000000000..a664adaa090 --- /dev/null +++ b/tests/unit/Tag/DateTimeLocalFieldCest.php @@ -0,0 +1,21 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagHelper; + +class DateTimeLocalFieldCest extends TagHelper +{ + protected $function = 'dateTimeLocalField'; + protected $inputType = 'datetime-local'; +} diff --git a/tests/unit/Tag/DisplayToCest.php b/tests/unit/Tag/DisplayToCest.php new file mode 100644 index 00000000000..5e9977875db --- /dev/null +++ b/tests/unit/Tag/DisplayToCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use UnitTester; + +class DisplayToCest +{ + /** + * Tests Phalcon\Tag :: displayTo() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function tagDisplayTo(UnitTester $I) + { + $I->wantToTest("Tag - displayTo()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Tag/EmailFieldCest.php b/tests/unit/Tag/EmailFieldCest.php new file mode 100644 index 00000000000..b4fa0310b86 --- /dev/null +++ b/tests/unit/Tag/EmailFieldCest.php @@ -0,0 +1,21 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagHelper; + +class EmailFieldCest extends TagHelper +{ + protected $function = 'emailField'; + protected $inputType = 'email'; +} diff --git a/tests/unit/Tag/EndFormCest.php b/tests/unit/Tag/EndFormCest.php new file mode 100644 index 00000000000..3b8192f03ae --- /dev/null +++ b/tests/unit/Tag/EndFormCest.php @@ -0,0 +1,35 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagSetup; +use UnitTester; + +class EndFormCest extends TagSetup +{ + /** + * Tests Phalcon\Tag :: endForm() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function tagEndForm(UnitTester $I) + { + $I->wantToTest("Tag - endForm()"); + $expected = ''; + $actual = Tag::endForm(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Tag/FileFieldCest.php b/tests/unit/Tag/FileFieldCest.php new file mode 100644 index 00000000000..8147168ebf0 --- /dev/null +++ b/tests/unit/Tag/FileFieldCest.php @@ -0,0 +1,21 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagHelper; + +class FileFieldCest extends TagHelper +{ + protected $function = 'fileField'; + protected $inputType = 'file'; +} diff --git a/tests/unit/Tag/FormCest.php b/tests/unit/Tag/FormCest.php new file mode 100644 index 00000000000..26f8407910f --- /dev/null +++ b/tests/unit/Tag/FormCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use UnitTester; + +class FormCest +{ + /** + * Tests Phalcon\Tag :: form() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function tagForm(UnitTester $I) + { + $I->wantToTest("Tag - form()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Tag/FriendlyTitleCest.php b/tests/unit/Tag/FriendlyTitleCest.php new file mode 100644 index 00000000000..365db629892 --- /dev/null +++ b/tests/unit/Tag/FriendlyTitleCest.php @@ -0,0 +1,212 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Tag\Exception; +use Phalcon\Test\Fixtures\Helpers\TagSetup; +use UnitTester; + +class FriendlyTitleCest extends TagSetup +{ + /** + * Tests Phalcon\Tag :: friendlyTitle() - string as a parameter and no + * separator + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-11 + */ + public function testFriendlyTitleStringParameterNoSeparator(UnitTester $I) + { + $options = 'This is a Test'; + $expected = 'this-is-a-test'; + $actual = Tag::friendlyTitle($options); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: friendlyTitle() - string as a parameter and a + * separator + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-11 + */ + public function testFriendlyTitleStringParameterSeparator(UnitTester $I) + { + $options = 'This is a Test'; + $expected = 'this_is_a_test'; + $actual = Tag::friendlyTitle($options, '_'); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: friendlyTitle() - string as a parameter lowercase + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-11 + */ + public function testFriendlyTitleStringParameterLowercase(UnitTester $I) + { + $options = 'This is a Test'; + $expected = 'this_is_a_test'; + $actual = Tag::friendlyTitle($options, '_', true); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: friendlyTitle() - string as a parameter uppercase + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-11 + */ + public function testFriendlyTitleStringParameterUppercase(UnitTester $I) + { + $options = 'This is a Test'; + $expected = 'This_is_a_Test'; + $actual = Tag::friendlyTitle($options, '_', false); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: friendlyTitle() - string as a parameter with + * replace as string + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-11 + */ + public function testFriendlyTitleStringParameterReplaceString(UnitTester $I) + { + $options = 'This is a Test'; + $expected = 'th_s_s_a_test'; + $actual = Tag::friendlyTitle($options, '_', true, 'i'); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: friendlyTitle() - string as a parameter with + * replace as array + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-11 + */ + public function testFriendlyTitleStringParameterReplaceArray(UnitTester $I) + { + $options = 'This is a Test'; + $expected = 't_s_s_a_test'; + $actual = Tag::friendlyTitle( + $options, + '_', + true, + ['i', 'h'] + ); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: friendlyTitle() - special characters and escaping + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-11 + */ + public function testFriendlyTitleWithSpecialCharactersAndEscaping(UnitTester $I) + { + $options = "Mess'd up --text-- just (to) stress /test/ ?our! " + . "`little` \\clean\\ url fun.ction!?-->"; + $expected = 'messd-up-text-just-to-stress-test-our-little-' + . 'clean-url-function'; + $actual = Tag::friendlyTitle($options); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: friendlyTitle() - accented characters and replace + * string + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-11 + */ + public function testFriendlyTitleWithAccentedCharactersAndReplaceString(UnitTester $I) + { + $options = "Perché l'erba è verde?"; + $expected = 'perche-l-erba-e-verde'; + $actual = Tag::friendlyTitle($options, "-", true, "'"); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: friendlyTitle() - accented characters and replace + * array + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-11 + */ + public function testFriendlyTitleWithAccentedCharactersAndReplaceArray(UnitTester $I) + { + $options = "Perché l'erba è verde?"; + $expected = 'P_rch_l_rb_v_rd'; + $actual = Tag::friendlyTitle( + $options, + "_", + false, + ['e', 'a'] + ); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: friendlyTitle() - string as a parameter with + * replace as boolean + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-11 + */ + public function testFriendlyTitleStringParameterReplaceBoolean(UnitTester $I) + { + $I->expectThrowable( + new Exception('Parameter replace must be an array or a string'), + function () { + Tag::resetInput(); + $options = 'This is a Test'; + $expected = 't_s_s_a_test'; + $actual = Tag::friendlyTitle($options, '_', true, true); + } + ); + } +} diff --git a/tests/unit/Tag/GetDICest.php b/tests/unit/Tag/GetDICest.php new file mode 100644 index 00000000000..ce89d1ecc56 --- /dev/null +++ b/tests/unit/Tag/GetDICest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use UnitTester; + +class GetDICest +{ + /** + * Tests Phalcon\Tag :: getDI() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function tagGetDI(UnitTester $I) + { + $I->wantToTest("Tag - getDI()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Tag/GetDocTypeCest.php b/tests/unit/Tag/GetDocTypeCest.php new file mode 100644 index 00000000000..9b8d01e65fc --- /dev/null +++ b/tests/unit/Tag/GetDocTypeCest.php @@ -0,0 +1,163 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagSetup; +use UnitTester; + +class GetDocTypeCest extends TagSetup +{ + /** + * Tests Phalcon\Tag :: getDocType() - 3.2 + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function testDoctypeSet32Final(UnitTester $I) + { + $this->runDoctypeTest($I, Tag::HTML32); + } + + + /** + * Tests Phalcon\Tag :: getDocType() - 4.01 Strict + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-04 + */ + public function testDoctypeSet401(UnitTester $I) + { + $this->runDoctypeTest($I, Tag::HTML401_STRICT); + } + + /** + * Tests Phalcon\Tag :: getDocType() - 4.01 Transitional + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-04 + */ + public function testDoctypeSet401Transitional(UnitTester $I) + { + $this->runDoctypeTest($I, Tag::HTML401_TRANSITIONAL); + } + + /** + * Tests Phalcon\Tag :: getDocType() - 4.01 Frameset + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-04 + */ + public function testDoctypeSet401Frameset(UnitTester $I) + { + $this->runDoctypeTest($I, Tag::HTML401_FRAMESET); + } + + /** + * Tests Phalcon\Tag :: getDocType() - 5 + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-04 + */ + public function testDoctypeSet5(UnitTester $I) + { + $this->runDoctypeTest($I, Tag::HTML5); + } + + /** + * Tests Phalcon\Tag :: getDocType() - 1.0 Strict + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-04 + */ + public function testDoctypeSet10Strict(UnitTester $I) + { + $this->runDoctypeTest($I, Tag::XHTML10_STRICT); + } + + /** + * Tests Phalcon\Tag :: getDocType() - 1.0 Transitional + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-04 + */ + public function testDoctypeSet10Transitional(UnitTester $I) + { + $this->runDoctypeTest($I, Tag::XHTML10_TRANSITIONAL); + } + + /** + * Tests Phalcon\Tag :: getDocType() - 1.0 Frameset + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-04 + */ + public function testDoctypeSet10Frameset(UnitTester $I) + { + $this->runDoctypeTest($I, Tag::XHTML10_FRAMESET); + } + + /** + * Tests Phalcon\Tag :: getDocType() - 1.1 + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-04 + */ + public function testDoctypeSet11(UnitTester $I) + { + $this->runDoctypeTest($I, Tag::XHTML11); + } + + /** + * Tests Phalcon\Tag :: getDocType() - 2.0 + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-04 + */ + public function testDoctypeSet20(UnitTester $I) + { + $this->runDoctypeTest($I, Tag::XHTML20); + } + + /** + * Tests Phalcon\Tag :: getDocType() - wrong setting + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-04 + */ + public function testDoctypeSetWrongParameter(UnitTester $I) + { + $this->runDoctypeTest($I, 99); + } +} diff --git a/tests/unit/Tag/GetEscaperCest.php b/tests/unit/Tag/GetEscaperCest.php new file mode 100644 index 00000000000..e25f056abd1 --- /dev/null +++ b/tests/unit/Tag/GetEscaperCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use UnitTester; + +class GetEscaperCest +{ + /** + * Tests Phalcon\Tag :: getEscaper() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function tagGetEscaper(UnitTester $I) + { + $I->wantToTest("Tag - getEscaper()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Tag/GetEscaperServiceCest.php b/tests/unit/Tag/GetEscaperServiceCest.php new file mode 100644 index 00000000000..9208d4a121e --- /dev/null +++ b/tests/unit/Tag/GetEscaperServiceCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use UnitTester; + +class GetEscaperServiceCest +{ + /** + * Tests Phalcon\Tag :: getEscaperService() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function tagGetEscaperService(UnitTester $I) + { + $I->wantToTest("Tag - getEscaperService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Tag/GetTitleCest.php b/tests/unit/Tag/GetTitleCest.php new file mode 100644 index 00000000000..937b624df75 --- /dev/null +++ b/tests/unit/Tag/GetTitleCest.php @@ -0,0 +1,41 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use UnitTester; + +class GetTitleCest +{ + /** + * Tests Phalcon\Tag :: getTitle() - with malicious code + * + * @param UnitTester $I + * + * @issue https://github.com/phalcon/cphalcon/issues/11185 + + * @author Phalcon Team + * @since 2016-01-13 + */ + public function tagGetTitleWithMaliciousContent(UnitTester $I) + { + $I->wantToTest("Tag - getTitle() - with malicious code"); + Tag::resetInput(); + $value = "Hello "; + + Tag::setTitle($value); + $expected = 'Hello </title><script>alert('' + . 'Got your nose!');</script><title>'; + $actual = Tag::getTitle(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Tag/GetTitleSeparatorCest.php b/tests/unit/Tag/GetTitleSeparatorCest.php new file mode 100644 index 00000000000..8be8adfe78e --- /dev/null +++ b/tests/unit/Tag/GetTitleSeparatorCest.php @@ -0,0 +1,31 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use UnitTester; + +class GetTitleSeparatorCest +{ + /** + * Tests Phalcon\Tag :: getTitleSeparator() + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + public function tagGetTitleSeparator(UnitTester $I) + { + $I->wantToTest("Tag - getTitleSeparator()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Tag/GetUrlServiceCest.php b/tests/unit/Tag/GetUrlServiceCest.php new file mode 100644 index 00000000000..027796c7122 --- /dev/null +++ b/tests/unit/Tag/GetUrlServiceCest.php @@ -0,0 +1,31 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use UnitTester; + +class GetUrlServiceCest +{ + /** + * Tests Phalcon\Tag :: getUrlService() + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + public function tagGetUrlService(UnitTester $I) + { + $I->wantToTest("Tag - getUrlService()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Tag/GetValueCest.php b/tests/unit/Tag/GetValueCest.php new file mode 100644 index 00000000000..c85a2e88fb0 --- /dev/null +++ b/tests/unit/Tag/GetValueCest.php @@ -0,0 +1,31 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use UnitTester; + +class GetValueCest +{ + /** + * Tests Phalcon\Tag :: getValue() + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + public function tagGetValue(UnitTester $I) + { + $I->wantToTest("Tag - getValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Tag/HasValueCest.php b/tests/unit/Tag/HasValueCest.php new file mode 100644 index 00000000000..6bc094862a6 --- /dev/null +++ b/tests/unit/Tag/HasValueCest.php @@ -0,0 +1,31 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use UnitTester; + +class HasValueCest +{ + /** + * Tests Phalcon\Tag :: hasValue() + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2018-11-13 + */ + public function tagHasValue(UnitTester $I) + { + $I->wantToTest("Tag - hasValue()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Tag/HiddenFieldCest.php b/tests/unit/Tag/HiddenFieldCest.php new file mode 100644 index 00000000000..65c49cd2de1 --- /dev/null +++ b/tests/unit/Tag/HiddenFieldCest.php @@ -0,0 +1,21 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagHelper; + +class HiddenFieldCest extends TagHelper +{ + protected $function = 'hiddenField'; + protected $inputType = 'hidden'; +} diff --git a/tests/unit/Tag/ImageCest.php b/tests/unit/Tag/ImageCest.php new file mode 100644 index 00000000000..9ea3eb24ae8 --- /dev/null +++ b/tests/unit/Tag/ImageCest.php @@ -0,0 +1,311 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagSetup; +use UnitTester; + +class ImageCest extends TagSetup +{ + /** + * Tests Phalcon\Tag :: image() - string as a parameter + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagImageStringParameter(UnitTester $I) + { + $I->wantToTest("Tag :: image() - string as a parameter"); + $options = 'img/hello.gif'; + $expected = '<img src="/img/hello.gif"'; + + $this->testFieldParameter($I, 'image', $options, $expected); + $this->testFieldParameter($I, 'image', $options, $expected, true); + } + + /** + * Tests Phalcon\Tag :: image() - array as a parameter + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagImageArrayParameter(UnitTester $I) + { + $I->wantToTest("Tag :: image() - array as a parameter"); + $options = [ + 'img/hello.gif', + 'class' => 'x_class', + ]; + $expected = '<img src="/img/hello.gif" class="x_class"'; + + $this->testFieldParameter($I, 'image', $options, $expected); + $this->testFieldParameter($I, 'image', $options, $expected, true); + } + + /** + * Tests Phalcon\Tag :: image() - array as a parameters and src in it + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagImageArrayParameterWithSrc(UnitTester $I) + { + $I->wantToTest("Tag :: image() - array as a parameters and src in it"); + $options = [ + 'img/hello.gif', + 'src' => 'img/goodbye.gif', + 'class' => 'x_class', + ]; + $expected = '<img src="/img/goodbye.gif" class="x_class"'; + + $this->testFieldParameter($I, 'image', $options, $expected); + $this->testFieldParameter($I, 'image', $options, $expected, true); + } + + /** + * Tests Phalcon\Tag :: image() - name and no src in parameter + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagImageArrayParameterWithNameNoSrc(UnitTester $I) + { + $I->wantToTest("Tag :: image() - name and no src in parameter"); + $options = [ + 'img/hello.gif', + 'class' => 'x_class', + ]; + $expected = '<img src="/img/hello.gif" class="x_class"'; + + $this->testFieldParameter($I, 'image', $options, $expected); + $this->testFieldParameter($I, 'image', $options, $expected, true); + } + + /** + * Tests Phalcon\Tag :: image() - setDefault + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagImageWithSetDefault(UnitTester $I) + { + $I->wantToTest("Tag :: image() - setDefault()"); + $options = [ + 'img/hello.gif', + 'class' => 'x_class', + ]; + $expected = '<img src="/img/hello.gif" class="x_class"'; + + $this->testFieldParameter($I, 'image', $options, $expected, false, 'setDefault'); + $this->testFieldParameter($I, 'image', $options, $expected, true, 'setDefault'); + } + + /** + * Tests Phalcon\Tag :: image() - displayTo + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagImageWithDisplayTo(UnitTester $I) + { + $I->wantToTest("Tag :: image() - displayTo()"); + $options = [ + 'img/hello.gif', + 'class' => 'x_class', + ]; + $expected = '<img src="/img/hello.gif" class="x_class"'; + + $this->testFieldParameter($I, 'image', $options, $expected, false, 'displayTo'); + $this->testFieldParameter($I, 'image', $options, $expected, true, 'displayTo'); + } + + /** + * Tests Phalcon\Tag :: image() - setDefault and element not present + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagImageWithSetDefaultElementNotPresent(UnitTester $I) + { + $I->wantToTest("Tag :: image() - setDefault() and element not present"); + $options = [ + 'img/hello.gif', + 'class' => 'x_class', + ]; + $expected = '<img src="/img/hello.gif" class="x_class"'; + + $this->testFieldParameter($I, 'image', $options, $expected, false, 'setDefault'); + $this->testFieldParameter($I, 'image', $options, $expected, true, 'setDefault'); + } + + /** + * Tests Phalcon\Tag :: image() - displayTo and element not present + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagImageWithDisplayToElementNotPresent(UnitTester $I) + { + $I->wantToTest("Tag :: image() - displayTo() and element not present"); + $options = [ + 'img/hello.gif', + 'class' => 'x_class', + ]; + $expected = '<img src="/img/hello.gif" class="x_class"'; + + $this->testFieldParameter($I, 'image', $options, $expected, false, 'displayTo'); + $this->testFieldParameter($I, 'image', $options, $expected, true, 'displayTo'); + } + + /** + * Tests Phalcon\Tag :: image() - string parameter and local link + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagImageStringParameterLocalLink(UnitTester $I) + { + $I->wantToTest("Tag :: image() - string parameter and local link"); + $options = 'img/hello.gif'; + $expected = '<img src="/img/hello.gif" />'; + + Tag::setDocType(Tag::XHTML10_STRICT); + $actual = Tag::image($options, true); + + $I->assertEquals($expected, $actual); + + $options = 'img/hello.gif'; + $expected = '<img src="/img/hello.gif">'; + + Tag::setDocType(Tag::HTML5); + $actual = Tag::image($options, true); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: image() - string parameter and remote link + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagImageStringParameterRemoteLink(UnitTester $I) + { + $I->wantToTest("Tag :: image() - string parameter and remote link"); + $options = 'http://phalconphp.com/img/hello.gif'; + $expected = '<img src="http://phalconphp.com/img/hello.gif" />'; + + Tag::setDocType(Tag::XHTML10_STRICT); + $actual = Tag::image($options, false); + + $I->assertEquals($expected, $actual); + + $options = 'http://phalconphp.com/img/hello.gif'; + $expected = '<img src="http://phalconphp.com/img/hello.gif">'; + + Tag::setDocType(Tag::HTML5); + $actual = Tag::image($options, false); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: image() - array parameter and local link + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagImageArrayParameterLocalLink(UnitTester $I) + { + $I->wantToTest("Tag :: image() - array parameter and local link"); + $options = [ + 'img/hello.gif', + 'alt' => 'Hello', + ]; + $expected = '<img src="/img/hello.gif" alt="Hello" />'; + + Tag::setDocType(Tag::XHTML10_STRICT); + $actual = Tag::image($options, true); + + $I->assertEquals($expected, $actual); + + $options = [ + 'img/hello.gif', + 'alt' => 'Hello', + ]; + $expected = '<img src="/img/hello.gif" alt="Hello">'; + + Tag::setDocType(Tag::HTML5); + $actual = Tag::image($options, true); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: image() - array parameter and remote link + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagImageArrayParameterRemoteLink(UnitTester $I) + { + $I->wantToTest("Tag :: image() - array parameter and remote link"); + $options = [ + 'http://phalconphp.com/img/hello.gif', + 'alt' => 'Hello', + ]; + $expected = '<img src="http://phalconphp.com/img/hello.gif" ' + . 'alt="Hello" />'; + + Tag::setDocType(Tag::XHTML10_STRICT); + $actual = Tag::image($options, false); + + $I->assertEquals($expected, $actual); + + $options = [ + 'http://phalconphp.com/img/hello.gif', + 'alt' => 'Hello', + ]; + $expected = '<img src="http://phalconphp.com/img/hello.gif" ' + . 'alt="Hello">'; + + Tag::setDocType(Tag::HTML5); + $actual = Tag::image($options, false); + + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Tag/ImageInputCest.php b/tests/unit/Tag/ImageInputCest.php new file mode 100644 index 00000000000..e17d686b97f --- /dev/null +++ b/tests/unit/Tag/ImageInputCest.php @@ -0,0 +1,386 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagSetup; +use UnitTester; + +class ImageInputCest extends TagSetup +{ + /** + * Tests Phalcon\Tag :: imageInput() - string as a parameter + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagImageInputStringParameter(UnitTester $I) + { + $I->wantToTest("Tag :: imageInput() - string as a parameter"); + $options = 'x_name'; + $expected = '<input type="image" value="x_name"'; + + $this->testFieldParameter( + $I, + 'imageInput', + $options, + $expected, + false + ); + + $options = 'x_name'; + $expected = '<input type="image" value="x_name"'; + + $this->testFieldParameter( + $I, + 'imageInput', + $options, + $expected, + true + ); + } + + /** + * Tests Phalcon\Tag :: imageInput() - array as a parameter + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagImageInputArrayParameter(UnitTester $I) + { + $I->wantToTest("Tag :: imageInput() - array as a parameter"); + $options = [ + 'x_name', + 'class' => 'x_class', + ]; + $expected = '<input type="image" value="x_name" ' + . 'class="x_class"'; + + $this->testFieldParameter( + $I, + 'imageInput', + $options, + $expected, + false + ); + + $options = [ + 'x_name', + 'class' => 'x_class', + ]; + $expected = '<input type="image" value="x_name" ' + . 'class="x_class"'; + + $this->testFieldParameter( + $I, + 'imageInput', + $options, + $expected, + true + ); + } + + /** + * Tests Phalcon\Tag :: imageInput() - array as a parameters and id in it + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagImageInputArrayParameterWithId(UnitTester $I) + { + $I->wantToTest("Tag :: imageInput() - array as a parameters and id in it"); + $options = [ + 'x_name', + 'id' => 'x_id', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = '<input type="image" id="x_id" value="x_name" ' + . 'class="x_class" size="10"'; + + $this->testFieldParameter( + $I, + 'imageInput', + $options, + $expected, + true + ); + + $options = [ + 'x_name', + 'id' => 'x_id', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = '<input type="image" id="x_id" value="x_name" ' + . 'class="x_class" size="10"'; + + $this->testFieldParameter( + $I, + 'imageInput', + $options, + $expected, + true + ); + } + + /** + * Tests Phalcon\Tag :: imageInput() - name and no id in parameter + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagImageInputArrayParameterWithNameNoId(UnitTester $I) + { + $I->wantToTest("Tag :: imageInput() - name and no id in parameter"); + $options = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = '<input type="image" name="x_other" ' + . 'value="x_name" class="x_class" size="10"'; + + $this->testFieldParameter( + $I, + 'imageInput', + $options, + $expected, + false + ); + + $options = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = '<input type="image" name="x_other" ' + . 'value="x_name" class="x_class" size="10"'; + + $this->testFieldParameter( + $I, + 'imageInput', + $options, + $expected, + true + ); + } + + /** + * Tests Phalcon\Tag :: imageInput() - setDefault + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagImageInputWithSetDefault(UnitTester $I) + { + $I->wantToTest("Tag :: imageInput() - setDefault()"); + $options = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = '<input type="image" name="x_other" ' + . 'value="x_name" class="x_class" size="10"'; + + $this->testFieldParameter( + $I, + 'imageInput', + $options, + $expected, + false, + 'setDefault' + ); + + $options = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = '<input type="image" ' + . 'name="x_other" value="x_name" class="x_class" ' + . 'size="10"'; + + $this->testFieldParameter( + $I, + 'imageInput', + $options, + $expected, + true, + 'setDefault' + ); + } + + /** + * Tests Phalcon\Tag :: imageInput() - displayTo + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagImageInputWithDisplayTo(UnitTester $I) + { + $I->wantToTest("Tag :: imageInput() - displayTo()"); + $options = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = '<input type="image" ' + . 'name="x_other" value="x_name" class="x_class" ' + . 'size="10"'; + + $this->testFieldParameter( + $I, + 'imageInput', + $options, + $expected, + false, + 'displayTo' + ); + + $options = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = '<input type="image" ' + . 'name="x_other" value="x_name" class="x_class" ' + . 'size="10"'; + + $this->testFieldParameter( + $I, + 'imageInput', + $options, + $expected, + true, + 'displayTo' + ); + } + + /** + * Tests Phalcon\Tag :: imageInput() - setDefault and element not present + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagImageInputWithSetDefaultElementNotPresent(UnitTester $I) + { + $I->wantToTest("Tag :: imageInput() - setDefault() and element not present"); + $options = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = '<input type="image" ' + . 'name="x_other" value="x_name" class="x_class" ' + . 'size="10"'; + + $this->testFieldParameter( + $I, + 'imageInput', + $options, + $expected, + false, + 'setDefault' + ); + + $options = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = '<input type="image" ' + . 'name="x_other" value="x_name" class="x_class" ' + . 'size="10"'; + + $this->testFieldParameter( + $I, + 'imageInput', + $options, + $expected, + true, + 'setDefault' + ); + } + + /** + * Tests Phalcon\Tag :: imageInput() - displayTo and element not present + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-05 + */ + public function tagImageInputWithDisplayToElementNotPresent(UnitTester $I) + { + $I->wantToTest("Tag :: imageInput() - displayTo() and element not present"); + $options = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = '<input type="image" ' + . 'name="x_other" value="x_name" class="x_class" ' + . 'size="10"'; + + $this->testFieldParameter( + $I, + 'imageInput', + $options, + $expected, + false, + 'displayTo' + ); + + $options = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = '<input type="image" ' + . 'name="x_other" value="x_name" class="x_class" ' + . 'size="10"'; + + $this->testFieldParameter( + $I, + 'imageInput', + $options, + $expected, + true, + 'displayTo' + ); + } +} diff --git a/tests/unit/Tag/JavascriptIncludeCest.php b/tests/unit/Tag/JavascriptIncludeCest.php new file mode 100644 index 00000000000..b78eccf91e6 --- /dev/null +++ b/tests/unit/Tag/JavascriptIncludeCest.php @@ -0,0 +1,111 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagSetup; +use UnitTester; + +class JavascriptIncludeCest extends TagSetup +{ + /** + * Tests Phalcon\Tag :: javascriptInclude() - string as a parameter local + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-29 + */ + public function tagJavascriptIncludeLocal(UnitTester $I) + { + $I->wantToTest("Tag - javascriptInclude() - string as a parameter local"); + $options = 'js/phalcon.js'; + $expected = '<script type="text/javascript" src="/js/phalcon.js"></script>' . PHP_EOL; + $actual = Tag::javascriptInclude($options); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: javascriptInclude() - array as a parameter local + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-29 + */ + public function tagJavascriptIncludeWithArrayLocal(UnitTester $I) + { + $I->wantToTest("Tag - javascriptInclude()"); + $options = ['js/phalcon.js']; + $expected = '<script type="text/javascript" src="/js/phalcon.js"></script>' . PHP_EOL; + $actual = Tag::javascriptInclude($options); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: javascriptInclude() - string as the second + * parameter - local + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-29 + */ + public function tagJavascriptIncludeWithStringAsSecondParameterLocal(UnitTester $I) + { + $I->wantToTest("Tag - javascriptInclude() - string as the second parameter - local"); + $options = ['js/phalcon.js']; + $expected = '<script type="text/javascript" src="/js/phalcon.js"></script>' . PHP_EOL; + $actual = Tag::javascriptInclude($options, 'hello'); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: javascriptInclude() - remote link + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-29 + */ + public function tagJavascriptIncludeRemote(UnitTester $I) + { + $I->wantToTest("Tag - javascriptInclude() - remote link"); + $options = 'http://my.local.com/js/phalcon.js'; + $expected = '<script type="text/javascript" src="http://my.local.com/js/phalcon.js"></script>' . PHP_EOL; + $actual = Tag::javascriptInclude($options, false); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: javascriptInclude() - array parameter for a remote + * link + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-29 + */ + public function tagJavascriptIncludeWithArrayRemote(UnitTester $I) + { + $I->wantToTest("Tag - javascriptInclude() - array parameter for a remote"); + $options = ['http://my.local.com/js/phalcon.js']; + $expected = '<script type="text/javascript" src="http://my.local.com/js/phalcon.js"></script>' . PHP_EOL; + $actual = Tag::javascriptInclude($options, false); + + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Tag/LinkToCest.php b/tests/unit/Tag/LinkToCest.php new file mode 100644 index 00000000000..1c96399ec68 --- /dev/null +++ b/tests/unit/Tag/LinkToCest.php @@ -0,0 +1,227 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagSetup; +use UnitTester; + +class LinkToCest extends TagSetup +{ + /** + * Tests Phalcon\Tag :: linkTo() - string as URL and name + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-29 + */ + public function tagLinkToWithStringAsURLAndName(UnitTester $I) + { + $I->wantToTest("Tag - linkTo() - string as URL and name"); + $url = 'x_url'; + $name = 'x_name'; + + $expected = '<a href="/x_url">x_name</a>'; + $actual = Tag::linkTo($url, $name); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: linkTo() - string as URL and name + * + * @param UnitTester $I + * + * @issue https://github.com/phalcon/cphalcon/issues/2002 + * @author Phalcon Team <team@phalconphp.com> + * @author Dreamszhu <dreamsxin@qq.com> + * @since 2014-03-10 + */ + public function tagLinkToWithQueryParam(UnitTester $I) + { + $I->wantToTest("Tag - linkTo() - string as URL and name"); + $actual = Tag::linkTo( + [ + 'signup/register', + 'Register Here!', + 'class' => 'btn-primary', + 'query' => [ + 'from' => 'github', + 'token' => '123456', + ], + ] + ); + + $expected = '<a href="/signup/register?from=github&token=123456" class="btn-primary">Register Here!</a>'; + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: linkTo() - empty string as URL and string as name + * parameter + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-29 + */ + public function tagLinkToWithEmptyStringAsURLAndStringAsName(UnitTester $I) + { + $I->wantToTest("Tag - linkTo() - empty string as URL and string as name parameter"); + $url = ''; + $name = 'x_name'; + + $expected = '<a href="/">x_name</a>'; + $actual = Tag::linkTo($url, $name); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: linkTo() - array as a parameter + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-29 + */ + public function tagLinkToArrayParameter(UnitTester $I) + { + $I->wantToTest("Tag - linkTo() - array as a parameter"); + $options = [ + 'x_url', + 'x_name', + ]; + $expected = '<a href="/x_url">x_name</a>'; + $actual = Tag::linkTo($options); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: linkTo() - named array as a parameter + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2014-09-29 + */ + public function tagLinkToNamedArrayParameter(UnitTester $I) + { + $I->wantToTest("Tag - linkTo() - named array as a parameter"); + $options = [ + 'action' => 'x_url', + 'text' => 'x_name', + 'class' => 'x_class', + ]; + $expected = '<a href="/x_url" class="x_class">x_name</a>'; + $actual = Tag::linkTo($options); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: linkTo() - complex local URL + * + * @param UnitTester $I + * + * @issue https://github.com/phalcon/cphalcon/issues/1679 + * @author Phalcon Team <team@phalconphp.com> + * @author Dreamszhu <dreamsxin@qq.com> + * @since 2014-09-29 + */ + public function tagLinkToWithComplexLocalUrl(UnitTester $I) + { + $I->wantToTest("Tag - linkTo() - complex local URL"); + Tag::resetInput(); + $url = "x_action/x_param"; + $name = 'x_name'; + $actual = Tag::linkTo($url, $name); + $expected = '<a href="/x_action/x_param">x_name</a>'; + + $I->assertEquals($expected, $actual); + + Tag::resetInput(); + $options = [ + "x_action/x_param", + 'x_name', + ]; + $actual = Tag::linkTo($options); + $expected = '<a href="/x_action/x_param">x_name</a>'; + + $I->assertEquals($expected, $actual); + + Tag::resetInput(); + $options = [ + "x_action/x_param", + 'x_name', + 'class' => 'x_class', + ]; + $actual = Tag::linkTo($options); + $expected = '<a href="/x_action/x_param" class="x_class">x_name</a>'; + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: linkTo() - complex remote URL + * + * @param UnitTester $I + * + * @issue https://github.com/phalcon/cphalcon/issues/1679 + * @author Phalcon Team <team@phalconphp.com> + * @author Dreamszhu <dreamsxin@qq.com> + * @since 2014-09-29 + */ + public function tagLinkToWithComplexRemoteUrl(UnitTester $I) + { + $I->wantToTest("Tag - linkTo() - complex remote URL"); + Tag::resetInput(); + $url = "http://phalconphp.com/en/"; + $name = 'x_name'; + $actual = Tag::linkTo($url, $name, false); + $expected = '<a href="http://phalconphp.com/en/">x_name</a>'; + + $I->assertEquals($expected, $actual); + + Tag::resetInput(); + $options = [ + "http://phalconphp.com/en/", + 'x_name', + false, + ]; + $actual = Tag::linkTo($options); + $expected = '<a href="http://phalconphp.com/en/">x_name</a>'; + + $I->assertEquals($expected, $actual); + + Tag::resetInput(); + $options = [ + "http://phalconphp.com/en/", + 'text' => 'x_name', + 'local' => false, + ]; + $actual = Tag::linkTo($options); + $expected = '<a href="http://phalconphp.com/en/">x_name</a>'; + + $I->assertEquals($expected, $actual); + + Tag::resetInput(); + $url = "mailto:someone@phalconphp.com"; + $name = 'someone@phalconphp.com'; + $actual = Tag::linkTo($url, $name, false); + $expected = '<a href="mailto:someone@phalconphp.com">someone@phalconphp.com</a>'; + + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Tag/MonthFieldCest.php b/tests/unit/Tag/MonthFieldCest.php new file mode 100644 index 00000000000..40bbb7aaa8e --- /dev/null +++ b/tests/unit/Tag/MonthFieldCest.php @@ -0,0 +1,21 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagHelper; + +class MonthFieldCest extends TagHelper +{ + protected $function = 'monthField'; + protected $inputType = 'month'; +} diff --git a/tests/unit/Tag/NumericFieldCest.php b/tests/unit/Tag/NumericFieldCest.php new file mode 100644 index 00000000000..659b036d93a --- /dev/null +++ b/tests/unit/Tag/NumericFieldCest.php @@ -0,0 +1,21 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagHelper; + +class NumericFieldCest extends TagHelper +{ + protected $function = 'numericField'; + protected $inputType = 'number'; +} diff --git a/tests/unit/Tag/PasswordFieldCest.php b/tests/unit/Tag/PasswordFieldCest.php new file mode 100644 index 00000000000..d42e3ce15e6 --- /dev/null +++ b/tests/unit/Tag/PasswordFieldCest.php @@ -0,0 +1,21 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagHelper; + +class PasswordFieldCest extends TagHelper +{ + protected $function = 'passwordField'; + protected $inputType = 'password'; +} diff --git a/tests/unit/Tag/PrependTitleCest.php b/tests/unit/Tag/PrependTitleCest.php new file mode 100644 index 00000000000..d193e68986b --- /dev/null +++ b/tests/unit/Tag/PrependTitleCest.php @@ -0,0 +1,164 @@ +<?php + +/** + * This file is part of the Phalcon Framework. + * + * (c) Phalcon Team <team@phalconphp.com> + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use UnitTester; + +class PrependTitleCest +{ + /** + * Tests Phalcon\Tag :: prependTitle() + * + * @param UnitTester $I + * + * @author Phalcon Team <team@phalconphp.com> + * @since 2012-09-05 + */ + public function tagPrependTitle(UnitTester $I) + { + $I->wantToTest("Tag - prependTitle()"); + Tag::resetInput(); + Tag::setTitle('Title'); + Tag::prependTitle('Class'); + + $expected = "Title"; + $actual = Tag::getTitle(false, false); + $I->assertEquals($expected, $actual); + + $expected = "ClassTitle"; + $actual = Tag::getTitle(true, false); + $I->assertEquals($expected, $actual); + + $expected = "<title>ClassTitle" . PHP_EOL; + $actual = Tag::renderTitle(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: prependTitle() - separator + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2012-09-05 + */ + public function tagPrependTitleSeparator(UnitTester $I) + { + $I->wantToTest("Tag - prependTitle() - separator"); + Tag::resetInput(); + Tag::setTitle('Title'); + Tag::setTitleSeparator('|'); + Tag::prependTitle('Class'); + + $expected = "Title"; + $actual = Tag::getTitle(false, false); + $I->assertEquals($expected, $actual); + + $expected = "Class|Title"; + $actual = Tag::getTitle(true, false); + $I->assertEquals($expected, $actual); + + $expected = "Class|Title" . PHP_EOL; + $actual = Tag::renderTitle(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: prependTitle() - double call + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2012-09-05 + */ + public function tagPrependTitleDoubleCall(UnitTester $I) + { + $I->wantToTest("Tag - prependTitle() - double call"); + Tag::resetInput(); + Tag::setTitle('Main'); + Tag::setTitleSeparator(' - '); + Tag::prependTitle('Category'); + Tag::prependTitle('Title'); + + $expected = "Main"; + $actual = Tag::getTitle(false, false); + $I->assertEquals($expected, $actual); + + $expected = "Title - Category - Main"; + $actual = Tag::getTitle(true, false); + $I->assertEquals($expected, $actual); + + $expected = "Title - Category - Main" . PHP_EOL; + $actual = Tag::renderTitle(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: prependTitle() - array + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2012-09-05 + */ + public function tagPrependTitleArray(UnitTester $I) + { + $I->wantToTest("Tag - prependTitle() - array"); + Tag::resetInput(); + Tag::setTitle('Main'); + Tag::setTitleSeparator(' - '); + Tag::prependTitle(['Category', 'Title']); + + $expected = "Main"; + $actual = Tag::getTitle(false, false); + $I->assertEquals($expected, $actual); + + $expected = "Title - Category - Main"; + $actual = Tag::getTitle(true, false); + $I->assertEquals($expected, $actual); + + $expected = "Title - Category - Main" . PHP_EOL; + $actual = Tag::renderTitle(); + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: prependTitle() - empty array + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2012-09-05 + */ + public function tagPrependTitleEmptyArray(UnitTester $I) + { + $I->wantToTest("Tag - prependTitle() - empty array"); + Tag::resetInput(); + Tag::setTitle('Main'); + Tag::setTitleSeparator(' - '); + Tag::prependTitle('Category'); + Tag::prependTitle([]); + + $expected = "Main"; + $actual = Tag::getTitle(false, false); + $I->assertEquals($expected, $actual); + + $expected = "Main"; + $actual = Tag::getTitle(true, false); + $I->assertEquals($expected, $actual); + + $expected = "Main" . PHP_EOL; + $actual = Tag::renderTitle(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Tag/RadioFieldCest.php b/tests/unit/Tag/RadioFieldCest.php new file mode 100644 index 00000000000..cf07ff18d1d --- /dev/null +++ b/tests/unit/Tag/RadioFieldCest.php @@ -0,0 +1,29 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use UnitTester; + +class RadioFieldCest +{ + /** + * Tests Phalcon\Tag :: radioField() + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testRadioField(UnitTester $I) + { + $I->wantToTest("Tag - radioField()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Tag/RangeFieldCest.php b/tests/unit/Tag/RangeFieldCest.php new file mode 100644 index 00000000000..2d431d2616b --- /dev/null +++ b/tests/unit/Tag/RangeFieldCest.php @@ -0,0 +1,21 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagHelper; + +class RangeFieldCest extends TagHelper +{ + protected $function = 'rangeField'; + protected $inputType = 'range'; +} diff --git a/tests/unit/Tag/RenderAttributesCest.php b/tests/unit/Tag/RenderAttributesCest.php new file mode 100644 index 00000000000..7dd113916a4 --- /dev/null +++ b/tests/unit/Tag/RenderAttributesCest.php @@ -0,0 +1,28 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use UnitTester; + +class RenderAttributesCest +{ + /** + * Tests Phalcon\Tag :: renderAttributes() + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testRenderAttributes(UnitTester $I) + { + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Tag/RenderTitleCest.php b/tests/unit/Tag/RenderTitleCest.php new file mode 100644 index 00000000000..0582f365b0a --- /dev/null +++ b/tests/unit/Tag/RenderTitleCest.php @@ -0,0 +1,39 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use UnitTester; + +class RenderTitleCest +{ + /** + * Tests Phalcon\Tag :: renderTitle() - with malicious code + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-01 + */ + public function tatRenderTitleWithMaliciousContent(UnitTester $I) + { + $I->wantToTest("Tag - renderTitle() - with malicious code"); + Tag::resetInput(); + $value = "Hello "; + + Tag::setTitle($value); + $expected = '<title>Hello </title><script>alert('' + . 'Got your nose!');</script><title>' . PHP_EOL; + $actual = Tag::renderTitle(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Tag/ResetInputCest.php b/tests/unit/Tag/ResetInputCest.php new file mode 100644 index 00000000000..50c4b49219d --- /dev/null +++ b/tests/unit/Tag/ResetInputCest.php @@ -0,0 +1,130 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagSetup; +use UnitTester; + +class ResetInputCest extends TagSetup +{ + /** + * Tests Phalcon\Tag :: resetInput() + * + * Note: The Tag::resetInput should not clear $_POST data. + * + * @param UnitTester $I + * + * @issue https://github.com/phalcon/cphalcon/issues/11319 + * @issue https://github.com/phalcon/cphalcon/issues/12099 + * @author Phalcon Team + * @since 2016-01-20 + */ + public function tagResetInputShouldNotClearPOST(UnitTester $I) + { + $I->wantToTest("Tag - resetInput() - should not clear POST data"); + $_POST = ['a' => '1', 'b' => '2']; + Tag::resetInput(); + $expected = ['a' => '1', 'b' => '2']; + $actual = $_POST; + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: resetInput() - setDefault + * + * @param UnitTester $I + * + * @issue https://github.com/phalcon/cphalcon/issues/53 + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagResetInputSetDefault(UnitTester $I) + { + $I->wantToTest("Tag - resetInput() - setDefault()"); + Tag::setDocType(Tag::XHTML10_STRICT); + + $options = 'x_name'; + $expected = ''; + Tag::setDefault('x_name', 'x_other'); + $actual = Tag::textField($options); + Tag::resetInput(); + + $I->assertEquals($expected, $actual); + + $expected = ''; + $actual = Tag::textField($options); + + $I->assertEquals($expected, $actual); + + Tag::setDocType(Tag::HTML5); + + $options = 'x_name'; + $expected = ''; + Tag::setDefault('x_name', 'x_other'); + $actual = Tag::textField($options); + Tag::resetInput(); + + $I->assertEquals($expected, $actual); + + $expected = ''; + $actual = Tag::textField($options); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: resetInput() - displayTo + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagResetInputDisplayTo(UnitTester $I) + { + $I->wantToTest("Tag - resetInput() - displayTo()"); + Tag::setDocType(Tag::XHTML10_STRICT); + + $options = 'x_name'; + $expected = ''; + Tag::displayTo('x_name', 'x_other'); + $actual = Tag::textField($options); + Tag::resetInput(); + + $I->assertEquals($expected, $actual); + + $expected = ''; + $actual = Tag::textField($options); + + $I->assertEquals($expected, $actual); + + Tag::setDocType(Tag::HTML5); + + $options = 'x_name'; + $expected = ''; + Tag::displayTo('x_name', 'x_other'); + $actual = Tag::textField($options); + Tag::resetInput(); + + $I->assertEquals($expected, $actual); + + $expected = ''; + $actual = Tag::textField($options); + + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Tag/SearchFieldCest.php b/tests/unit/Tag/SearchFieldCest.php new file mode 100644 index 00000000000..40290aa66bc --- /dev/null +++ b/tests/unit/Tag/SearchFieldCest.php @@ -0,0 +1,21 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagHelper; + +class SearchFieldCest extends TagHelper +{ + protected $function = 'searchField'; + protected $inputType = 'search'; +} diff --git a/tests/unit/Tag/Select/SelectFieldCest.php b/tests/unit/Tag/Select/SelectFieldCest.php new file mode 100644 index 00000000000..304d1a919a7 --- /dev/null +++ b/tests/unit/Tag/Select/SelectFieldCest.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag\Select; + +use UnitTester; + +class SelectFieldCest +{ + /** + * Tests Phalcon\Tag\Select :: selectField() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function tagSelectSelectField(UnitTester $I) + { + $I->wantToTest("Tag\Select - selectField()"); + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Tag/SelectCest.php b/tests/unit/Tag/SelectCest.php new file mode 100644 index 00000000000..9a8a6777dd4 --- /dev/null +++ b/tests/unit/Tag/SelectCest.php @@ -0,0 +1,28 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use UnitTester; + +class SelectCest +{ + /** + * Tests Phalcon\Tag :: select() + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testSelect(UnitTester $I) + { + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Tag/SelectStaticCest.php b/tests/unit/Tag/SelectStaticCest.php new file mode 100644 index 00000000000..01bbd59c067 --- /dev/null +++ b/tests/unit/Tag/SelectStaticCest.php @@ -0,0 +1,618 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagSetup; +use UnitTester; + +class SelectStaticCest extends TagSetup +{ + /** + * Tests Phalcon\Tag :: selectStatic() - string as a parameter + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSelectStaticStringParameter(UnitTester $I) + { + $I->wantToTest("Tag - selectStatic() - string as a parameter"); + Tag::resetInput(); + $name = 'x_name'; + $options = [ + 'A' => 'Active', + 'I' => 'Inactive', + ]; + $expected = ''; + + $actual = Tag::selectStatic($name, $options); + Tag::resetInput(); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: selectStatic() - array as a parameter + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSelectStaticArrayParameter(UnitTester $I) + { + $I->wantToTest("Tag - selectStatic() - array as a parameter"); + Tag::resetInput(); + $params = [ + 'x_name', + 'class' => 'x_class', + ]; + $options = [ + 'A' => 'Active', + 'I' => 'Inactive', + ]; + $expected = ''; + + $actual = Tag::selectStatic($params, $options); + Tag::resetInput(); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: selectStatic() - array as a parameters and id in it + * + * @param UnitTester $I + * + * @issue https://github.com/phalcon/cphalcon/issues/54 + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSelectStaticArrayParameterWithId(UnitTester $I) + { + $I->wantToTest("Tag - selectStatic() - array as a parameters and id"); + Tag::resetInput(); + $params = [ + 'x_name', + 'id' => 'x_id', + 'class' => 'x_class', + ]; + $options = [ + 'A' => 'Active', + 'I' => 'Inactive', + ]; + $expected = ''; + + $actual = Tag::selectStatic($params, $options); + Tag::resetInput(); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: selectStatic() - name and no id in parameter + * + * @param UnitTester $I + * + * @issue https://github.com/phalcon/cphalcon/issues/54 + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSelectStaticArrayParameterWithNameNoId(UnitTester $I) + { + $I->wantToTest("Tag - selectStatic() - name and no id in parameter"); + Tag::resetInput(); + $params = [ + 'x_name', + 'id' => 'x_id', + 'class' => 'x_class', + ]; + $options = [ + 'A' => 'Active', + 'I' => 'Inactive', + ]; + $expected = ''; + + $actual = Tag::selectStatic($params, $options); + Tag::resetInput(); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: selectStatic() - value in parameters + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSelectStaticArrayParameterWithValue(UnitTester $I) + { + $I->wantToTest("Tag - selectStatic() - value in parameters"); + Tag::resetInput(); + $params = [ + 'x_name', + 'value' => 'I', + 'class' => 'x_class', + ]; + $options = [ + 'A' => 'Active', + 'I' => 'Inactive', + ]; + $expected = ''; + + $actual = Tag::selectStatic($params, $options); + Tag::resetInput(); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: selectStatic() - setDefault + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSelectStaticWithSetDefault(UnitTester $I) + { + $I->wantToTest("Tag - selectStatic() - setDefault()"); + Tag::resetInput(); + $params = [ + 'x_name', + 'class' => 'x_class', + 'size' => '10', + ]; + $options = [ + 'A' => 'Active', + 'I' => 'Inactive', + ]; + $expected = ''; + Tag::setDefault('x_name', 'I'); + $actual = Tag::selectStatic($params, $options); + Tag::resetInput(); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: selectStatic() - displayTo + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSelectStaticWithDisplayTo(UnitTester $I) + { + $I->wantToTest("Tag - selectStatic() - displayTo()"); + Tag::resetInput(); + $params = [ + 'x_name', + 'class' => 'x_class', + 'size' => '10', + ]; + $options = [ + 'A' => 'Active', + 'I' => 'Inactive', + ]; + $expected = ''; + Tag::displayTo('x_name', 'I'); + $actual = Tag::selectStatic($params, $options); + Tag::resetInput(); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: selectStatic() - setDefault and element not present + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSelectStaticWithSetDefaultElementNotPresent(UnitTester $I) + { + $I->wantToTest("Tag - selectStatic() - setDefault() and element not present"); + Tag::resetInput(); + $params = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $options = [ + 'A' => 'Active', + 'I' => 'Inactive', + ]; + $expected = ''; + Tag::setDefault('x_name', 'Z'); + $actual = Tag::selectStatic($params, $options); + Tag::resetInput(); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: selectStatic() - displayTo and element not present + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSelectStaticWithDisplayToElementNotPresent(UnitTester $I) + { + $I->wantToTest("Tag - selectStatic() - displayTo() and element not present"); + Tag::resetInput(); + $params = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $options = [ + 'A' => 'Active', + 'I' => 'Inactive', + ]; + $expected = ''; + Tag::displayTo('x_name', 'Z'); + $actual = Tag::selectStatic($params, $options); + Tag::resetInput(); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: selectStatic() - opt group array as a parameter + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSelectStaticOptGroupArrayParameter(UnitTester $I) + { + $I->wantToTest("Tag - selectStatic() - opt group array as a parameter"); + Tag::resetInput(); + $params = [ + "x_name", + [ + "Active" => [ + 'A1' => 'A One', + 'A2' => 'A Two', + ], + "B" => "B One", + ], + ]; + $expected = ''; + + $actual = Tag::selectStatic($params); + Tag::resetInput(); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: selectStatic() - array as a parameters and id in it + * + * @param UnitTester $I + * + * @issue https://github.com/phalcon/cphalcon/issues/54 + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSelectStaticOptGroupArrayParameterWithId(UnitTester $I) + { + $I->wantToTest("Tag - selectStatic() - opt group array as a parameters and id"); + Tag::resetInput(); + $params = [ + 'x_name', + 'id' => 'x_id', + 'class' => 'x_class', + ]; + $options = [ + "Active" => [ + 'A1' => 'A One', + 'A2' => 'A Two', + ], + "B" => "B One", + ]; + $expected = ''; + + $actual = Tag::selectStatic($params, $options); + Tag::resetInput(); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: selectStatic() - opt group name and no id in + * parameter + * + * @param UnitTester $I + * + * @issue https://github.com/phalcon/cphalcon/issues/54 + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSelectStaticOptGroupArrayParameterWithNameNoId(UnitTester $I) + { + $I->wantToTest("Tag - selectStatic() - name and no id in parameter"); + Tag::resetInput(); + $params = [ + 'x_name', + 'id' => 'x_id', + 'class' => 'x_class', + ]; + $options = [ + "Active" => [ + 'A1' => 'A One', + 'A2' => 'A Two', + ], + "B" => "B One", + ]; + $expected = ''; + + $actual = Tag::selectStatic($params, $options); + Tag::resetInput(); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: selectStatic() - value in parameters + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSelectStaticOptGroupArrayParameterWithValue(UnitTester $I) + { + $I->wantToTest("Tag - selectStatic() - opt group value in parameters"); + Tag::resetInput(); + $params = [ + 'x_name', + 'value' => 'A1', + 'class' => 'x_class', + ]; + $options = [ + "Active" => [ + 'A1' => 'A One', + 'A2' => 'A Two', + ], + "B" => "B One", + ]; + $expected = ''; + + $actual = Tag::selectStatic($params, $options); + Tag::resetInput(); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: selectStatic() - setDefault + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSelectStaticOptGroupWithSetDefault(UnitTester $I) + { + $I->wantToTest("Tag - selectStatic() - opt group setDefault()"); + Tag::resetInput(); + $params = [ + 'x_name', + 'class' => 'x_class', + 'size' => '10', + ]; + $options = [ + "Active" => [ + 'A1' => 'A One', + 'A2' => 'A Two', + ], + "B" => "B One", + ]; + $expected = ''; + + Tag::setDefault('x_name', 'A2'); + $actual = Tag::selectStatic($params, $options); + Tag::resetInput(); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: selectStatic() - displayTo + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSelectStaticOptGroupWithDisplayTo(UnitTester $I) + { + $I->wantToTest("Tag - selectStatic() - opt group displayTo()"); + Tag::resetInput(); + $params = [ + 'x_name', + 'class' => 'x_class', + 'size' => '10', + ]; + $options = [ + "Active" => [ + 'A1' => 'A One', + 'A2' => 'A Two', + ], + "B" => "B One", + ]; + $expected = ''; + + Tag::displayTo('x_name', 'A2'); + $actual = Tag::selectStatic($params, $options); + Tag::resetInput(); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: selectStatic() - setDefault and element not present + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSelectStaticOptGroupWithSetDefaultElementNotPresent(UnitTester $I) + { + $I->wantToTest("Tag - selectStatic() - opt group setDefault() and element not present"); + Tag::resetInput(); + $params = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $options = [ + "Active" => [ + 'A1' => 'A One', + 'A2' => 'A Two', + ], + "B" => "B One", + ]; + + $expected = ''; + + Tag::setDefault('x_name', 'I'); + $actual = Tag::selectStatic($params, $options); + Tag::resetInput(); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: selectStatic() - displayTo and element not present + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSelectStaticOptGroupWithDisplayToElementNotPresent(UnitTester $I) + { + $I->wantToTest("Tag - selectStatic() - opt group displayTo() and element not present"); + Tag::resetInput(); + $params = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $options = [ + "Active" => [ + 'A1' => 'A One', + 'A2' => 'A Two', + ], + "B" => "B One", + ]; + $expected = ''; + + Tag::displayTo('x_name', 'I'); + $actual = Tag::selectStatic($params, $options); + Tag::resetInput(); + + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Tag/SetAutoescapeCest.php b/tests/unit/Tag/SetAutoescapeCest.php new file mode 100644 index 00000000000..0ef1215c737 --- /dev/null +++ b/tests/unit/Tag/SetAutoescapeCest.php @@ -0,0 +1,28 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use UnitTester; + +class SetAutoescapeCest +{ + /** + * Tests Phalcon\Tag :: setAutoescape() + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testSetAutoescape(UnitTester $I) + { + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Tag/SetDICest.php b/tests/unit/Tag/SetDICest.php new file mode 100644 index 00000000000..77a694a0a17 --- /dev/null +++ b/tests/unit/Tag/SetDICest.php @@ -0,0 +1,28 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use UnitTester; + +class SetDICest +{ + /** + * Tests Phalcon\Tag :: setDI() + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testSetDI(UnitTester $I) + { + $I->skipTest("Need implementation"); + } +} diff --git a/tests/unit/Tag/SetDefaultCest.php b/tests/unit/Tag/SetDefaultCest.php new file mode 100644 index 00000000000..67b91ac174c --- /dev/null +++ b/tests/unit/Tag/SetDefaultCest.php @@ -0,0 +1,45 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagSetup; +use UnitTester; + +class SetDefaultCest extends TagSetup +{ + /** + * Tests Phalcon\Tag :: setDefault() + * + * @param UnitTester $I + * + * @issue https://github.com/phalcon/cphalcon/issues/2402 + * @author Dmitry Patsura + * @since 2014-05-10 + */ + public function tagSetDefault(UnitTester $I) + { + $I->wantToTest("Tag - setDefault()"); + Tag::setDefault('property1', 'testVal1'); + Tag::setDefault('property2', 'testVal2'); + Tag::setDefault('property3', 'testVal3'); + + $I->assertTrue(Tag::hasValue('property1')); + $I->assertTrue(Tag::hasValue('property2')); + $I->assertTrue(Tag::hasValue('property3')); + $I->assertFalse(Tag::hasValue('property4')); + + $I->assertEquals('testVal1', Tag::getValue('property1')); + $I->assertEquals('testVal2', Tag::getValue('property2')); + $I->assertEquals('testVal3', Tag::getValue('property3')); + } +} diff --git a/tests/unit/Tag/SetDefaultsCest.php b/tests/unit/Tag/SetDefaultsCest.php new file mode 100644 index 00000000000..8a8ece00439 --- /dev/null +++ b/tests/unit/Tag/SetDefaultsCest.php @@ -0,0 +1,48 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagSetup; +use UnitTester; + +class SetDefaultsCest extends TagSetup +{ + /** + * Tests Phalcon\Tag :: setDefaults() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function tagSetDefaults(UnitTester $I) + { + $I->wantToTest("Tag - setDefaults()"); + $data = [ + 'property1' => 'testVal1', + 'property2' => 'testVal2', + 'property3' => 'testVal3', + ]; + + Tag::setDefaults($data); + + $I->assertTrue(Tag::hasValue('property1')); + $I->assertTrue(Tag::hasValue('property2')); + $I->assertTrue(Tag::hasValue('property3')); + $I->assertFalse(Tag::hasValue('property4')); + + $I->assertEquals('testVal1', Tag::getValue('property1')); + $I->assertEquals('testVal2', Tag::getValue('property2')); + $I->assertEquals('testVal3', Tag::getValue('property3')); + } +} diff --git a/tests/unit/Tag/SetDocTypeCest.php b/tests/unit/Tag/SetDocTypeCest.php new file mode 100644 index 00000000000..1f67a33b47d --- /dev/null +++ b/tests/unit/Tag/SetDocTypeCest.php @@ -0,0 +1,33 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagSetup; +use UnitTester; + +class SetDocTypeCest extends TagSetup +{ + /** + * Tests Phalcon\Tag :: setDocType() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function tagSetDocType(UnitTester $I) + { + $I->wantToTest("Tag - setDocType()"); + $this->runDoctypeTest($I, Tag::HTML32); + } +} diff --git a/tests/unit/Tag/SetTitleCest.php b/tests/unit/Tag/SetTitleCest.php new file mode 100644 index 00000000000..79b443dace3 --- /dev/null +++ b/tests/unit/Tag/SetTitleCest.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use UnitTester; + +class SetTitleCest +{ + /** + * Tests Phalcon\Tag :: setTitle() + * + * @author Phalcon Team + * @since 2018-11-13 + */ + public function testSetTitle(UnitTester $I) + { + $I->wantToTest("Tag - setTitle()"); + Tag::resetInput(); + $value = 'This is my title'; + Tag::setTitle($value); + + $expected = "{$value}" . PHP_EOL; + $actual = Tag::renderTitle(); + $I->assertEquals($expected, $actual); + + $expected = "{$value}"; + $actual = Tag::getTitle(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Tag/SetTitleSeparatorCest.php b/tests/unit/Tag/SetTitleSeparatorCest.php new file mode 100644 index 00000000000..0726bb3a328 --- /dev/null +++ b/tests/unit/Tag/SetTitleSeparatorCest.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use UnitTester; + +class SetTitleSeparatorCest +{ + /** + * Tests Phalcon\Tag :: setTitleSeparator() + * + * @author Phalcon Team + * @since 2012-09-05 + * @since 2018-11-13 + */ + public function testSetTitleSeparator(UnitTester $I) + { + $I->wantToTest("Tag - setTitleSeparator()"); + Tag::resetInput(); + Tag::setTitleSeparator('-'); + + $expected = "-"; + $actual = Tag::getTitleSeparator(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Tag/StylesheetLinkCest.php b/tests/unit/Tag/StylesheetLinkCest.php new file mode 100644 index 00000000000..e36d70e4afe --- /dev/null +++ b/tests/unit/Tag/StylesheetLinkCest.php @@ -0,0 +1,202 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagSetup; +use UnitTester; + +class StylesheetLinkCest extends TagSetup +{ + /** + * Tests Phalcon\Tag :: stylesheetLink() - string parameter for a local link + * + * @param UnitTester $I + * + * @issue https://github.com/phalcon/cphalcon/issues/1486 + * @author Phalcon Team + * @author Dreamszhu + * @since 2014-09-12 + */ + public function tagStylesheetLinkStringParameterLocal(UnitTester $I) + { + $I->wantToTest("Tag - stylesheetLink() - string parameter for a local link"); + Tag::resetInput(); + $options = 'css/phalcon.css'; + $expected = '' + . PHP_EOL; + + Tag::setDocType(Tag::XHTML10_STRICT); + $actual = Tag::stylesheetLink($options); + + $I->assertEquals($expected, $actual); + + Tag::resetInput(); + $options = 'css/phalcon.css'; + $expected = '' + . PHP_EOL; + + Tag::setDocType(Tag::HTML5); + $actual = Tag::stylesheetLink($options); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: stylesheetLink() - array parameter for a local link + * + * @param UnitTester $I + * + * @issue https://github.com/phalcon/cphalcon/issues/1486 + * @author Phalcon Team + * @author Dreamszhu + * @since 2014-09-12 + */ + public function tagStylesheetLinkArrayParameterLocal(UnitTester $I) + { + $I->wantToTest("Tag - stylesheetLink() - array parameter for a local link"); + Tag::resetInput(); + $options = ['css/phalcon.css']; + $expected = '' + . PHP_EOL; + + Tag::setDocType(Tag::XHTML10_STRICT); + $actual = Tag::stylesheetLink($options); + + $I->assertEquals($expected, $actual); + + Tag::resetInput(); + $options = ['css/phalcon.css']; + $expected = '' + . PHP_EOL; + + Tag::setDocType(Tag::HTML5); + $actual = Tag::stylesheetLink($options); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: stylesheetLink() - string parameter for a remote + * link + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-12 + */ + public function tagStylesheetLinkStringParameterRemote(UnitTester $I) + { + $I->wantToTest("Tag - stylesheetLink() - string parameter for a remote"); + Tag::resetInput(); + $options = 'http://phalconphp.com/css/phalcon.css'; + $expected = '' + . PHP_EOL; + + Tag::setDocType(Tag::XHTML10_STRICT); + $actual = Tag::stylesheetLink($options, false); + + $I->assertEquals($expected, $actual); + + Tag::resetInput(); + $options = 'http://phalconphp.com/css/phalcon.css'; + $expected = '' + . PHP_EOL; + + Tag::setDocType(Tag::HTML5); + $actual = Tag::stylesheetLink($options, false); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: stylesheetLink() - array parameter for a remote link + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-12 + */ + public function tagStylesheetLinkArrayParameterRemote(UnitTester $I) + { + $I->wantToTest("Tag - stylesheetLink() - array parameter for a remote link"); + Tag::resetInput(); + $options = ['http://phalconphp.com/css/phalcon.css']; + $expected = '' + . PHP_EOL; + + Tag::setDocType(Tag::XHTML10_STRICT); + $actual = Tag::stylesheetLink($options, false); + + $I->assertEquals($expected, $actual); + + Tag::resetInput(); + $options = ['http://phalconphp.com/css/phalcon.css']; + $expected = '' + . PHP_EOL; + + Tag::setDocType(Tag::HTML5); + $actual = Tag::stylesheetLink($options, false); + + $I->assertEquals($expected, $actual); + } + + /** + * Tests Phalcon\Tag :: stylesheetLink() - overriding the rel link local + * + * @param UnitTester $I + * + * @issue https://github.com/phalcon/cphalcon/issues/2142 + * @author Phalcon Team + * @author Dreamszhu + * @since 2014-09-12 + */ + public function tagStylesheetLinkOverrideRelLink(UnitTester $I) + { + $I->wantToTest("Tag - stylesheetLink() - overriding the rel link local"); + Tag::resetInput(); + $options = [ + 'css/phalcon.css', + 'rel' => 'stylesheet/less', + ]; + $expected = '' + . PHP_EOL; + + Tag::setDocType(Tag::XHTML10_STRICT); + $actual = Tag::stylesheetLink($options); + + $I->assertEquals($expected, $actual); + + Tag::resetInput(); + $options = [ + 'css/phalcon.css', + 'rel' => 'stylesheet/less', + ]; + $expected = '' + . PHP_EOL; + + Tag::setDocType(Tag::HTML5); + $actual = Tag::stylesheetLink($options); + + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Tag/SubmitButtonCest.php b/tests/unit/Tag/SubmitButtonCest.php new file mode 100644 index 00000000000..4a3a3ca5b48 --- /dev/null +++ b/tests/unit/Tag/SubmitButtonCest.php @@ -0,0 +1,194 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Test\Fixtures\Helpers\TagSetup; +use UnitTester; + +class SubmitButtonCest extends TagSetup +{ + /** + * Tests Phalcon\Tag :: submitButton() - string as a parameter + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSubmitButtonStringParameter(UnitTester $I) + { + $I->wantToTest("Tag - submitButton() - string as parameter"); + $options = 'x_name'; + $expected = 'testFieldParameter($I, 'submitButton', $options, $expected); + $this->testFieldParameter($I, 'submitButton', $options, $expected, true); + } + + /** + * Tests Phalcon\Tag :: submitButton() - array as a parameter + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSubmitButtonArrayParameter(UnitTester $I) + { + $I->wantToTest("Tag - submitButton() - array as parameter"); + $options = [ + 'x_name', + 'class' => 'x_class', + ]; + $expected = 'testFieldParameter($I, 'submitButton', $options, $expected); + $this->testFieldParameter($I, 'submitButton', $options, $expected, true); + } + + /** + * Tests Phalcon\Tag :: submitButton() - array as parameter and id in it + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSubmitButtonArrayParameterWithId(UnitTester $I) + { + $I->wantToTest("Tag - submitButton() - array as parameter with id"); + $options = [ + 'x_name', + 'id' => 'x_id', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = 'testFieldParameter($I, 'submitButton', $options, $expected); + $this->testFieldParameter($I, 'submitButton', $options, $expected, true); + } + + /** + * Tests Phalcon\Tag :: submitButton() - name and no id in parameter + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSubmitButtonArrayParameterWithNameNoId(UnitTester $I) + { + $I->wantToTest("Tag - submitButton() - name and no id in parameters"); + $options = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = 'testFieldParameter($I, 'submitButton', $options, $expected); + $this->testFieldParameter($I, 'submitButton', $options, $expected, true); + } + + /** + * Tests Phalcon\Tag :: submitButton() - setDefault + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSubmitButtonWithSetDefault(UnitTester $I) + { + $I->wantToTest("Tag - submitButton() - setDefault()"); + $options = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = 'testFieldParameter($I, 'submitButton', $options, $expected, false, 'setDefault'); + $this->testFieldParameter($I, 'submitButton', $options, $expected, true, 'setDefault'); + } + + /** + * Tests Phalcon\Tag :: submitButton() - displayTo + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSubmitButtonWithDisplayTo(UnitTester $I) + { + $I->wantToTest("Tag - submitButton() - displayTo()"); + $options = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = 'testFieldParameter($I, 'submitButton', $options, $expected, false, 'displayTo'); + $this->testFieldParameter($I, 'submitButton', $options, $expected, true, 'displayTo'); + } + + /** + * Tests Phalcon\Tag :: submitButton() - setDefault and element not present + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSubmitButtonWithSetDefaultElementNotPresent(UnitTester $I) + { + $I->wantToTest("Tag - submitButton() - setDefault() and element not present"); + $options = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = 'testFieldParameter($I, 'submitButton', $options, $expected, false, 'setDefault'); + $this->testFieldParameter($I, 'submitButton', $options, $expected, true, 'setDefault'); + } + + /** + * Tests Phalcon\Tag :: submitButton() - displayTo and element not present + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagSubmitButtonWithDisplayToElementNotPresent(UnitTester $I) + { + $I->wantToTest("Tag - submitButton() - displayTo() and element not present"); + $options = [ + 'x_name', + 'name' => 'x_other', + 'class' => 'x_class', + 'size' => '10', + ]; + $expected = 'testFieldParameter($I, 'submitButton', $options, $expected, false, 'displayTo'); + $this->testFieldParameter($I, 'submitButton', $options, $expected, true, 'displayTo'); + } +} diff --git a/tests/unit/Tag/TagCheckFieldTest.php b/tests/unit/Tag/TagCheckFieldTest.php deleted file mode 100644 index 7732ef82d55..00000000000 --- a/tests/unit/Tag/TagCheckFieldTest.php +++ /dev/null @@ -1,436 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Tag - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class TagCheckFieldTest extends UnitTest -{ - /** - * Tests checkField with string as a parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testCheckFieldStringParameter() - { - $this->specify( - "checkField with string parameter returns invalid HTML Strict", - function () { - $options = 'x_name'; - $expected = 'tester->testFieldParameter( - 'checkField', - $options, - $expected, - false - ); - } - ); - $this->specify( - "checkField with string parameter returns invalid HTML XHTML", - function () { - $options = 'x_name'; - $expected = 'tester->testFieldParameter( - 'checkField', - $options, - $expected, - true - ); - } - ); - } - /** - * Tests checkField with array as a parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testCheckFieldArrayParameter() - { - $this->specify( - "checkField with array parameter returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'class' => 'x_class', - ]; - $expected = 'tester->testFieldParameter( - 'checkField', - $options, - $expected, - false - ); - } - ); - $this->specify( - "checkField with array parameter returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'class' => 'x_class', - ]; - $expected = 'tester->testFieldParameter( - 'checkField', - $options, - $expected, - true - ); - } - ); - } - /** - * Tests checkField with array as a parameters and id in it - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testCheckFieldArrayParameterWithId() - { - $this->specify( - "checkField with array parameter with id returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'id' => 'x_id', - 'class' => 'x_class', - 'size' => '10' - ]; - $expected = 'tester->testFieldParameter( - 'checkField', - $options, - $expected, - true - ); - } - ); - $this->specify( - "checkField with array parameter with id returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'id' => 'x_id', - 'class' => 'x_class', - 'size' => '10' - ]; - $expected = 'tester->testFieldParameter( - 'checkField', - $options, - $expected, - true - ); - } - ); - } - /** - * Tests checkField with name and no id in parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testCheckFieldArrayParameterWithNameNoId() - { - $this->specify( - "checkField with array parameter with name no id returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'checkField', - $options, - $expected, - false - ); - } - ); - $this->specify( - "checkField with array parameter with name no id returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'checkField', - $options, - $expected, - false - ); - } - ); - } - /** - * Tests checkField with setDefault - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testCheckFieldWithSetDefault() - { - $this->specify( - "checkField with setDefault returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'checkField', - $options, - $expected, - false, - 'setDefault' - ); - } - ); - $this->specify( - "checkField with setDefault returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'checkField', - $options, - $expected, - true, - 'setDefault' - ); - } - ); - } - /** - * Tests checkField with displayTo - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testCheckFieldWithDisplayTo() - { - $this->specify( - "checkField with displayTo returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'checkField', - $options, - $expected, - false, - 'displayTo' - ); - } - ); - $this->specify( - "checkField with displayTo returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'checkField', - $options, - $expected, - true, - 'displayTo' - ); - } - ); - } - /** - * Tests checkField with setDefault and element not present - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testCheckFieldWithSetDefaultElementNotPresent() - { - $this->specify( - "checkField with setDefault and element not present returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'checkField', - $options, - $expected, - false, - 'setDefault' - ); - } - ); - $this->specify( - "checkField with setDefault and element not present returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'checkField', - $options, - $expected, - true, - 'setDefault' - ); - } - ); - } - /** - * Tests checkField with displayTo and element not present - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testCheckFieldWithDisplayToElementNotPresent() - { - $this->specify( - "checkField with displayTo and element not present returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'checkField', - $options, - $expected, - false, - 'displayTo' - ); - } - ); - $this->specify( - "checkField with displayTo and element not present returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'checkField', - $options, - $expected, - true, - 'displayTo' - ); - } - ); - } - - /** - * Tests checkField with setDefault and with a value of zero - * - * @test - * @issue https://github.com/phalcon/cphalcon/issues/12316 - * @author Serghei Iakovlev - * @since 2016-12-19 - */ - public function shouldGenerateCheckFieldAsCheckedWhenValueIsZeroAndDefaultIsZero() - { - $this->specify( - 'The checkbox cannot have value 0 and be checked', - function ($value, $default, $expected) { - Tag::resetInput(); - Tag::setDocType(Tag::HTML5); - Tag::setDefault("demo-0", $default); - - expect(Tag::checkField(['demo-0', 'value' => $value]))->equals($expected); - }, - ['examples' => $this->nullableValueProvider()] - ); - } - - protected function nullableValueProvider() - { - return [ - [ 0, "0", ''], - [ 0, 0, ''], - ["0", 0, ''], - ["0", "0", ''], - ]; - } -} diff --git a/tests/unit/Tag/TagColorFieldTest.php b/tests/unit/Tag/TagColorFieldTest.php deleted file mode 100644 index 51312acf4a7..00000000000 --- a/tests/unit/Tag/TagColorFieldTest.php +++ /dev/null @@ -1,433 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Tag - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class TagColorFieldTest extends UnitTest -{ - /** - * Tests colorField with string as a parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testColorFieldStringParameter() - { - $this->specify( - "colorField with string parameter returns invalid HTML Strict", - function () { - $options = 'x_name'; - $expected = 'tester->testFieldParameter( - 'colorField', - $options, - $expected, - false - ); - } - ); - - $this->specify( - "colorField with string parameter returns invalid HTML XHTML", - function () { - $options = 'x_name'; - $expected = 'tester->testFieldParameter( - 'colorField', - $options, - $expected, - true - ); - } - ); - } - - /** - * Tests colorField with array as a parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testColorFieldArrayParameter() - { - $this->specify( - "colorField with array parameter returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'class' => 'x_class', - ]; - $expected = 'tester->testFieldParameter( - 'colorField', - $options, - $expected, - false - ); - } - ); - - $this->specify( - "colorField with array parameter returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'class' => 'x_class', - ]; - $expected = 'tester->testFieldParameter( - 'colorField', - $options, - $expected, - true - ); - } - ); - } - - /** - * Tests colorField with array as a parameters and id in it - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testColorFieldArrayParameterWithId() - { - $this->specify( - "colorField with array parameter with id returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'id' => 'x_id', - 'class' => 'x_class', - 'size' => '10' - ]; - $expected = 'tester->testFieldParameter( - 'colorField', - $options, - $expected, - true - ); - } - ); - - $this->specify( - "colorField with array parameter with id returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'id' => 'x_id', - 'class' => 'x_class', - 'size' => '10' - ]; - $expected = 'tester->testFieldParameter( - 'colorField', - $options, - $expected, - true - ); - } - ); - } - - /** - * Tests colorField with name and no id in parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testColorFieldArrayParameterWithNameNoId() - { - $this->specify( - "colorField with array parameter with name no id returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'colorField', - $options, - $expected, - false - ); - } - ); - - $this->specify( - "colorField with array parameter with name no id returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'colorField', - $options, - $expected, - false - ); - } - ); - } - - /** - * Tests colorField with setDefault - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testColorFieldWithSetDefault() - { - $this->specify( - "colorField with setDefault returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'colorField', - $options, - $expected, - false, - 'setDefault' - ); - } - ); - - $this->specify( - "colorField with setDefault returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'colorField', - $options, - $expected, - true, - 'setDefault' - ); - } - ); - } - - /** - * Tests colorField with displayTo - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testColorFieldWithDisplayTo() - { - $this->specify( - "colorField with displayTo returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'colorField', - $options, - $expected, - false, - 'displayTo' - ); - } - ); - - $this->specify( - "colorField with displayTo returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'colorField', - $options, - $expected, - true, - 'displayTo' - ); - } - ); - } - - /** - * Tests colorField with setDefault and element not present - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testColorFieldWithSetDefaultElementNotPresent() - { - $this->specify( - "colorField with setDefault and element not present returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'colorField', - $options, - $expected, - false, - 'setDefault' - ); - } - ); - - $this->specify( - "colorField with setDefault and element not present returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'colorField', - $options, - $expected, - true, - 'setDefault' - ); - } - ); - } - - /** - * Tests colorField with displayTo and element not present - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testColorFieldWithDisplayToElementNotPresent() - { - $this->specify( - "colorField with displayTo and element not present returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'colorField', - $options, - $expected, - false, - 'displayTo' - ); - } - ); - - $this->specify( - "colorField with displayTo and element not present returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'colorField', - $options, - $expected, - true, - 'displayTo' - ); - } - ); - } -} diff --git a/tests/unit/Tag/TagDateFieldTest.php b/tests/unit/Tag/TagDateFieldTest.php deleted file mode 100644 index 162fdf71d53..00000000000 --- a/tests/unit/Tag/TagDateFieldTest.php +++ /dev/null @@ -1,433 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Tag - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class TagDateFieldTest extends UnitTest -{ - /** - * Tests dateField with string as a parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateFieldStringParameter() - { - $this->specify( - "dateField with string parameter returns invalid HTML Strict", - function () { - $options = 'x_name'; - $expected = 'tester->testFieldParameter( - 'dateField', - $options, - $expected, - false - ); - } - ); - - $this->specify( - "dateField with string parameter returns invalid HTML XHTML", - function () { - $options = 'x_name'; - $expected = 'tester->testFieldParameter( - 'dateField', - $options, - $expected, - true - ); - } - ); - } - - /** - * Tests dateField with array as a parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateFieldArrayParameter() - { - $this->specify( - "dateField with array parameter returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'class' => 'x_class', - ]; - $expected = 'tester->testFieldParameter( - 'dateField', - $options, - $expected, - false - ); - } - ); - - $this->specify( - "dateField with array parameter returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'class' => 'x_class', - ]; - $expected = 'tester->testFieldParameter( - 'dateField', - $options, - $expected, - true - ); - } - ); - } - - /** - * Tests dateField with array as a parameters and id in it - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateFieldArrayParameterWithId() - { - $this->specify( - "dateField with array parameter with id returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'id' => 'x_id', - 'class' => 'x_class', - 'size' => '10' - ]; - $expected = 'tester->testFieldParameter( - 'dateField', - $options, - $expected, - true - ); - } - ); - - $this->specify( - "dateField with array parameter with id returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'id' => 'x_id', - 'class' => 'x_class', - 'size' => '10' - ]; - $expected = 'tester->testFieldParameter( - 'dateField', - $options, - $expected, - true - ); - } - ); - } - - /** - * Tests dateField with name and no id in parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateFieldArrayParameterWithNameNoId() - { - $this->specify( - "dateField with array parameter with name no id returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateField', - $options, - $expected, - false - ); - } - ); - - $this->specify( - "dateField with array parameter with name no id returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateField', - $options, - $expected, - false - ); - } - ); - } - - /** - * Tests dateField with setDefault - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateFieldWithSetDefault() - { - $this->specify( - "dateField with setDefault returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateField', - $options, - $expected, - false, - 'setDefault' - ); - } - ); - - $this->specify( - "dateField with setDefault returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateField', - $options, - $expected, - true, - 'setDefault' - ); - } - ); - } - - /** - * Tests dateField with displayTo - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateFieldWithDisplayTo() - { - $this->specify( - "dateField with displayTo returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateField', - $options, - $expected, - false, - 'displayTo' - ); - } - ); - - $this->specify( - "dateField with displayTo returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateField', - $options, - $expected, - true, - 'displayTo' - ); - } - ); - } - - /** - * Tests dateField with setDefault and element not present - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateFieldWithSetDefaultElementNotPresent() - { - $this->specify( - "dateField with setDefault and element not present returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateField', - $options, - $expected, - false, - 'setDefault' - ); - } - ); - - $this->specify( - "dateField with setDefault and element not present returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateField', - $options, - $expected, - true, - 'setDefault' - ); - } - ); - } - - /** - * Tests dateField with displayTo and element not present - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateFieldWithDisplayToElementNotPresent() - { - $this->specify( - "dateField with displayTo and element not present returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateField', - $options, - $expected, - false, - 'displayTo' - ); - } - ); - - $this->specify( - "dateField with displayTo and element not present returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateField', - $options, - $expected, - true, - 'displayTo' - ); - } - ); - } -} diff --git a/tests/unit/Tag/TagDateTimeFieldTest.php b/tests/unit/Tag/TagDateTimeFieldTest.php deleted file mode 100644 index 5a6876947c3..00000000000 --- a/tests/unit/Tag/TagDateTimeFieldTest.php +++ /dev/null @@ -1,433 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Tag - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class TagDateTimeFieldTest extends UnitTest -{ - /** - * Tests dateTimeField with string as a parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateTimeFieldStringParameter() - { - $this->specify( - "dateTimeField with string parameter returns invalid HTML Strict", - function () { - $options = 'x_name'; - $expected = 'tester->testFieldParameter( - 'dateTimeField', - $options, - $expected, - false - ); - } - ); - - $this->specify( - "dateTimeField with string parameter returns invalid HTML XHTML", - function () { - $options = 'x_name'; - $expected = 'tester->testFieldParameter( - 'dateTimeField', - $options, - $expected, - true - ); - } - ); - } - - /** - * Tests dateTimeField with array as a parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateTimeFieldArrayParameter() - { - $this->specify( - "dateTimeField with array parameter returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'class' => 'x_class', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeField', - $options, - $expected, - false - ); - } - ); - - $this->specify( - "dateTimeField with array parameter returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'class' => 'x_class', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeField', - $options, - $expected, - true - ); - } - ); - } - - /** - * Tests dateTimeField with array as a parameters and id in it - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateTimeFieldArrayParameterWithId() - { - $this->specify( - "dateTimeField with array parameter with id returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'id' => 'x_id', - 'class' => 'x_class', - 'size' => '10' - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeField', - $options, - $expected, - true - ); - } - ); - - $this->specify( - "dateTimeField with array parameter with id returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'id' => 'x_id', - 'class' => 'x_class', - 'size' => '10' - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeField', - $options, - $expected, - true - ); - } - ); - } - - /** - * Tests dateTimeField with name and no id in parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateTimeFieldArrayParameterWithNameNoId() - { - $this->specify( - "dateTimeField with array parameter with name no id returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeField', - $options, - $expected, - false - ); - } - ); - - $this->specify( - "dateTimeField with array parameter with name no id returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeField', - $options, - $expected, - false - ); - } - ); - } - - /** - * Tests dateTimeField with setDefault - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateTimeFieldWithSetDefault() - { - $this->specify( - "dateTimeField with setDefault returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeField', - $options, - $expected, - false, - 'setDefault' - ); - } - ); - - $this->specify( - "dateTimeField with setDefault returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeField', - $options, - $expected, - true, - 'setDefault' - ); - } - ); - } - - /** - * Tests dateTimeField with displayTo - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateTimeFieldWithDisplayTo() - { - $this->specify( - "dateTimeField with displayTo returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeField', - $options, - $expected, - false, - 'displayTo' - ); - } - ); - - $this->specify( - "dateTimeField with displayTo returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeField', - $options, - $expected, - true, - 'displayTo' - ); - } - ); - } - - /** - * Tests dateTimeField with setDefault and element not present - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateTimeFieldWithSetDefaultElementNotPresent() - { - $this->specify( - "dateTimeField with setDefault and element not present returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeField', - $options, - $expected, - false, - 'setDefault' - ); - } - ); - - $this->specify( - "dateTimeField with setDefault and element not present returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeField', - $options, - $expected, - true, - 'setDefault' - ); - } - ); - } - - /** - * Tests dateTimeField with displayTo and element not present - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateTimeFieldWithDisplayToElementNotPresent() - { - $this->specify( - "dateTimeField with displayTo and element not present returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeField', - $options, - $expected, - false, - 'displayTo' - ); - } - ); - - $this->specify( - "dateTimeField with displayTo and element not present returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeField', - $options, - $expected, - true, - 'displayTo' - ); - } - ); - } -} diff --git a/tests/unit/Tag/TagDateTimeLocalFieldTest.php b/tests/unit/Tag/TagDateTimeLocalFieldTest.php deleted file mode 100644 index c7af3af2edd..00000000000 --- a/tests/unit/Tag/TagDateTimeLocalFieldTest.php +++ /dev/null @@ -1,435 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Tag - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class TagDateTimeLocalFieldTest extends UnitTest -{ - /** - * Tests dateTimeLocalField with string as a parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateTimeLocalFieldStringParameter() - { - $this->specify( - "dateTimeLocalField with string parameter returns invalid HTML Strict", - function () { - $options = 'x_name'; - $expected = 'tester->testFieldParameter( - 'dateTimeLocalField', - $options, - $expected, - false - ); - } - ); - - $this->specify( - "dateTimeLocalField with string parameter returns invalid HTML XHTML", - function () { - $options = 'x_name'; - $expected = 'tester->testFieldParameter( - 'dateTimeLocalField', - $options, - $expected, - true - ); - } - ); - } - - /** - * Tests dateTimeLocalField with array as a parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateTimeLocalFieldArrayParameter() - { - $this->specify( - "dateTimeLocalField with array parameter returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'class' => 'x_class', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeLocalField', - $options, - $expected, - false - ); - } - ); - - $this->specify( - "dateTimeLocalField with array parameter returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'class' => 'x_class', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeLocalField', - $options, - $expected, - true - ); - } - ); - } - - /** - * Tests dateTimeLocalField with array as a parameters and id in it - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateTimeLocalFieldArrayParameterWithId() - { - $this->specify( - "dateTimeLocalField with array parameter with id returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'id' => 'x_id', - 'class' => 'x_class', - 'size' => '10' - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeLocalField', - $options, - $expected, - true - ); - } - ); - - $this->specify( - "dateTimeLocalField with array parameter with id returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'id' => 'x_id', - 'class' => 'x_class', - 'size' => '10' - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeLocalField', - $options, - $expected, - true - ); - } - ); - } - - /** - * Tests dateTimeLocalField with name and no id in parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateTimeLocalFieldArrayParameterWithNameNoId() - { - $this->specify( - "dateTimeLocalField with array parameter with name no id returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeLocalField', - $options, - $expected, - false - ); - } - ); - - $this->specify( - "dateTimeLocalField with array parameter with name no id returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeLocalField', - $options, - $expected, - false - ); - } - ); - } - - /** - * Tests dateTimeLocalField with setDefault - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateTimeLocalFieldWithSetDefault() - { - $this->specify( - "dateTimeLocalField with setDefault returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeLocalField', - $options, - $expected, - false, - 'setDefault' - ); - } - ); - - $this->specify( - "dateTimeLocalField with setDefault returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeLocalField', - $options, - $expected, - true, - 'setDefault' - ); - } - ); - } - - /** - * Tests dateTimeLocalField with displayTo - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateTimeLocalFieldWithDisplayTo() - { - $this->specify( - "dateTimeLocalField with displayTo returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeLocalField', - $options, - $expected, - false, - 'displayTo' - ); - } - ); - - $this->specify( - "dateTimeLocalField with displayTo returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeLocalField', - $options, - $expected, - true, - 'displayTo' - ); - } - ); - } - - /** - * Tests dateTimeLocalField with setDefault and element not present - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateTimeLocalFieldWithSetDefaultElementNotPresent() - { - $this->specify( - "dateTimeLocalField with setDefault and element not present returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeLocalField', - $options, - $expected, - false, - 'setDefault' - ); - } - ); - - $this->specify( - "dateTimeLocalField with setDefault and element not present returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeLocalField', - $options, - $expected, - true, - 'setDefault' - ); - } - ); - } - - /** - * Tests dateTimeLocalField with displayTo and element not present - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDateTimeLocalFieldWithDisplayToElementNotPresent() - { - $this->specify( - "dateTimeLocalField with displayTo and element not present returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeLocalField', - $options, - $expected, - false, - 'displayTo' - ); - } - ); - - $this->specify( - "dateTimeLocalField with displayTo and element not present returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'dateTimeLocalField', - $options, - $expected, - true, - 'displayTo' - ); - } - ); - } -} diff --git a/tests/unit/Tag/TagDoctypeTest.php b/tests/unit/Tag/TagDoctypeTest.php deleted file mode 100644 index 460a1065908..00000000000 --- a/tests/unit/Tag/TagDoctypeTest.php +++ /dev/null @@ -1,306 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Tag - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class TagDoctypeTest extends UnitTest -{ - /** - * executed after each test - */ - protected function _after() - { - // Setting the doctype to HTML5 for other tests to run smoothly - Tag::setDocType(Tag::HTML5); - } - - /** - * Tests the setting the doctype 3.2 - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testDoctypeSet32Final() - { - $this->specify( - "setDoctype to 3.2 is not correct", - function () { - $this->runDoctypeTest(Tag::HTML32); - } - ); - } - - /** - * Tests the setting the doctype 4.01 Strict - * - * @author Nikolaos Dimopoulos - * @since 2014-09-04 - */ - public function testDoctypeSet401() - { - $this->specify( - "setDoctype to HTML 4.01 Strict is not correct", - function () { - $this->runDoctypeTest(Tag::HTML401_STRICT); - } - ); - } - - /** - * Tests the setting the doctype 4.01 Transitional - * - * @author Nikolaos Dimopoulos - * @since 2014-09-04 - */ - public function testDoctypeSet401Transitional() - { - $this->specify( - "setDoctype to HTML 4.01 Transitional is not correct", - function () { - $this->runDoctypeTest(Tag::HTML401_TRANSITIONAL); - } - ); - } - - /** - * Tests the setting the doctype 4.01 Frameset - * - * @author Nikolaos Dimopoulos - * @since 2014-09-04 - */ - public function testDoctypeSet401Frameset() - { - $this->specify( - "setDoctype to HTML 4.01 Frameset is not correct", - function () { - $this->runDoctypeTest(Tag::HTML401_FRAMESET); - } - ); - } - - /** - * Tests the setting the doctype 5 - * - * @author Nikolaos Dimopoulos - * @since 2014-09-04 - */ - public function testDoctypeSet5() - { - $this->specify( - "setDoctype to HTLM5 is not correct", - function () { - $this->runDoctypeTest(Tag::HTML5); - } - ); - } - - /** - * Tests the setting the doctype 1.0 Strict - * - * @author Nikolaos Dimopoulos - * @since 2014-09-04 - */ - public function testDoctypeSet10Strict() - { - $this->specify( - "setDoctype to XHTML 1.0 Strict is not correct", - function () { - $this->runDoctypeTest(Tag::XHTML10_STRICT); - } - ); - } - - /** - * Tests the setting the doctype 1.0 Transitional - * - * @author Nikolaos Dimopoulos - * @since 2014-09-04 - */ - public function testDoctypeSet10Transitional() - { - $this->specify( - "setDoctype to XHTML 1.0 Transitional is not correct", - function () { - $this->runDoctypeTest(Tag::XHTML10_TRANSITIONAL); - } - ); - } - - /** - * Tests the setting the doctype 1.0 Frameset - * - * @author Nikolaos Dimopoulos - * @since 2014-09-04 - */ - public function testDoctypeSet10Frameset() - { - $this->specify( - "setDoctype to XHTML 1.0 Frameset is not correct", - function () { - $this->runDoctypeTest(Tag::XHTML10_FRAMESET); - } - ); - } - - /** - * Tests the setting the doctype 1.1 - * - * @author Nikolaos Dimopoulos - * @since 2014-09-04 - */ - public function testDoctypeSet11() - { - $this->specify( - "setDoctype to XHTML 1.1 is not correct", - function () { - $this->runDoctypeTest(Tag::XHTML11); - } - ); - } - - /** - * Tests the setting the doctype 2.0 - * - * @author Nikolaos Dimopoulos - * @since 2014-09-04 - */ - public function testDoctypeSet20() - { - $this->specify( - "setDoctype to XHTML 2.0 is not correct", - function () { - $this->runDoctypeTest(Tag::XHTML20); - } - ); - } - - /** - * Tests the setting the doctype to a wrong setting - * - * @author Nikolaos Dimopoulos - * @since 2014-09-04 - */ - public function testDoctypeSetWrongParameter() - { - $this->specify( - "setDoctype to a wrong setting is not correct", - function () { - $this->runDoctypeTest(99); - } - ); - } - - /** - * Runs a doctype test, one for each doctype - * - * @param integer $doctype - */ - protected function runDoctypeTest($doctype) - { - Tag::resetInput(); - Tag::setDocType($doctype); - - $expected = $this->docTypeToString($doctype); - $actual = Tag::getDocType(); - - Tag::setDocType(Tag::HTML5); - - expect($actual)->equals($expected); - } - - /** - * Converts a doctype code to a string output - * - * @author Nikolaos Dimopoulos - * @since 2014-09-04 - * - * @param $doctype - * - * @return string - */ - private function docTypeToString($doctype) - { - $tab = "\t"; - - switch ($doctype) { - case 1: - return '' . PHP_EOL; - case 2: - return '' . PHP_EOL; - case 3: - return '' . PHP_EOL; - case 4: - return '' . - PHP_EOL; - case 6: - return '' . - PHP_EOL; - case 7: - return '' . - PHP_EOL; - case 8: - return '' . - PHP_EOL; - case 9: - return '' . - PHP_EOL; - case 10: - return '' . - PHP_EOL; - default: - return '' . PHP_EOL; - } - } -} diff --git a/tests/unit/Tag/TagEmailFieldTest.php b/tests/unit/Tag/TagEmailFieldTest.php deleted file mode 100644 index 25257deea92..00000000000 --- a/tests/unit/Tag/TagEmailFieldTest.php +++ /dev/null @@ -1,433 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Tag - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class TagEmailFieldTest extends UnitTest -{ - /** - * Tests emailField with string as a parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testEmailFieldStringParameter() - { - $this->specify( - "emailField with string parameter returns invalid HTML Strict", - function () { - $options = 'x_name'; - $expected = 'tester->testFieldParameter( - 'emailField', - $options, - $expected, - false - ); - } - ); - - $this->specify( - "emailField with string parameter returns invalid HTML XHTML", - function () { - $options = 'x_name'; - $expected = 'tester->testFieldParameter( - 'emailField', - $options, - $expected, - true - ); - } - ); - } - - /** - * Tests emailField with array as a parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testEmailFieldArrayParameter() - { - $this->specify( - "emailField with array parameter returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'class' => 'x_class', - ]; - $expected = 'tester->testFieldParameter( - 'emailField', - $options, - $expected, - false - ); - } - ); - - $this->specify( - "emailField with array parameter returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'class' => 'x_class', - ]; - $expected = 'tester->testFieldParameter( - 'emailField', - $options, - $expected, - true - ); - } - ); - } - - /** - * Tests emailField with array as a parameters and id in it - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testEmailFieldArrayParameterWithId() - { - $this->specify( - "emailField with array parameter with id returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'id' => 'x_id', - 'class' => 'x_class', - 'size' => '10' - ]; - $expected = 'tester->testFieldParameter( - 'emailField', - $options, - $expected, - true - ); - } - ); - - $this->specify( - "emailField with array parameter with id returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'id' => 'x_id', - 'class' => 'x_class', - 'size' => '10' - ]; - $expected = 'tester->testFieldParameter( - 'emailField', - $options, - $expected, - true - ); - } - ); - } - - /** - * Tests emailField with name and no id in parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testEmailFieldArrayParameterWithNameNoId() - { - $this->specify( - "emailField with array parameter with name no id returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'emailField', - $options, - $expected, - false - ); - } - ); - - $this->specify( - "emailField with array parameter with name no id returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'emailField', - $options, - $expected, - false - ); - } - ); - } - - /** - * Tests emailField with setDefault - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testEmailFieldWithSetDefault() - { - $this->specify( - "emailField with setDefault returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'emailField', - $options, - $expected, - false, - 'setDefault' - ); - } - ); - - $this->specify( - "emailField with setDefault returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'emailField', - $options, - $expected, - true, - 'setDefault' - ); - } - ); - } - - /** - * Tests emailField with displayTo - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testEmailFieldWithDisplayTo() - { - $this->specify( - "emailField with displayTo returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'emailField', - $options, - $expected, - false, - 'displayTo' - ); - } - ); - - $this->specify( - "emailField with displayTo returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'emailField', - $options, - $expected, - true, - 'displayTo' - ); - } - ); - } - - /** - * Tests emailField with setDefault and element not present - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testEmailFieldWithSetDefaultElementNotPresent() - { - $this->specify( - "emailField with setDefault and element not present returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'emailField', - $options, - $expected, - false, - 'setDefault' - ); - } - ); - - $this->specify( - "emailField with setDefault and element not present returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'emailField', - $options, - $expected, - true, - 'setDefault' - ); - } - ); - } - - /** - * Tests emailField with displayTo and element not present - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testEmailFieldWithDisplayToElementNotPresent() - { - $this->specify( - "emailField with displayTo and element not present returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'emailField', - $options, - $expected, - false, - 'displayTo' - ); - } - ); - - $this->specify( - "emailField with displayTo and element not present returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'emailField', - $options, - $expected, - true, - 'displayTo' - ); - } - ); - } -} diff --git a/tests/unit/Tag/TagFileFieldTest.php b/tests/unit/Tag/TagFileFieldTest.php deleted file mode 100644 index 51393b5ead6..00000000000 --- a/tests/unit/Tag/TagFileFieldTest.php +++ /dev/null @@ -1,433 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Tag - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class TagFileFieldTest extends UnitTest -{ - /** - * Tests fileField with string as a parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testFileFieldStringParameter() - { - $this->specify( - "fileField with string parameter returns invalid HTML Strict", - function () { - $options = 'x_name'; - $expected = 'tester->testFieldParameter( - 'fileField', - $options, - $expected, - false - ); - } - ); - - $this->specify( - "fileField with string parameter returns invalid HTML XHTML", - function () { - $options = 'x_name'; - $expected = 'tester->testFieldParameter( - 'fileField', - $options, - $expected, - true - ); - } - ); - } - - /** - * Tests fileField with array as a parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testFileFieldArrayParameter() - { - $this->specify( - "fileField with array parameter returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'class' => 'x_class', - ]; - $expected = 'tester->testFieldParameter( - 'fileField', - $options, - $expected, - false - ); - } - ); - - $this->specify( - "fileField with array parameter returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'class' => 'x_class', - ]; - $expected = 'tester->testFieldParameter( - 'fileField', - $options, - $expected, - true - ); - } - ); - } - - /** - * Tests fileField with array as a parameters and id in it - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testFileFieldArrayParameterWithId() - { - $this->specify( - "fileField with array parameter with id returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'id' => 'x_id', - 'class' => 'x_class', - 'size' => '10' - ]; - $expected = 'tester->testFieldParameter( - 'fileField', - $options, - $expected, - true - ); - } - ); - - $this->specify( - "fileField with array parameter with id returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'id' => 'x_id', - 'class' => 'x_class', - 'size' => '10' - ]; - $expected = 'tester->testFieldParameter( - 'fileField', - $options, - $expected, - true - ); - } - ); - } - - /** - * Tests fileField with name and no id in parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testFileFieldArrayParameterWithNameNoId() - { - $this->specify( - "fileField with array parameter with name no id returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'fileField', - $options, - $expected, - false - ); - } - ); - - $this->specify( - "fileField with array parameter with name no id returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'fileField', - $options, - $expected, - false - ); - } - ); - } - - /** - * Tests fileField with setDefault - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testFileFieldWithSetDefault() - { - $this->specify( - "fileField with setDefault returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'fileField', - $options, - $expected, - false, - 'setDefault' - ); - } - ); - - $this->specify( - "fileField with setDefault returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'fileField', - $options, - $expected, - true, - 'setDefault' - ); - } - ); - } - - /** - * Tests fileField with displayTo - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testFileFieldWithDisplayTo() - { - $this->specify( - "fileField with displayTo returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'fileField', - $options, - $expected, - false, - 'displayTo' - ); - } - ); - - $this->specify( - "fileField with displayTo returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'fileField', - $options, - $expected, - true, - 'displayTo' - ); - } - ); - } - - /** - * Tests fileField with setDefault and element not present - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testFileFieldWithSetDefaultElementNotPresent() - { - $this->specify( - "fileField with setDefault and element not present returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'fileField', - $options, - $expected, - false, - 'setDefault' - ); - } - ); - - $this->specify( - "fileField with setDefault and element not present returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'fileField', - $options, - $expected, - true, - 'setDefault' - ); - } - ); - } - - /** - * Tests fileField with displayTo and element not present - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testFileFieldWithDisplayToElementNotPresent() - { - $this->specify( - "fileField with displayTo and element not present returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'fileField', - $options, - $expected, - false, - 'displayTo' - ); - } - ); - - $this->specify( - "fileField with displayTo and element not present returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'fileField', - $options, - $expected, - true, - 'displayTo' - ); - } - ); - } -} diff --git a/tests/unit/Tag/TagFriendlyTitleTest.php b/tests/unit/Tag/TagFriendlyTitleTest.php deleted file mode 100644 index beceebfec9f..00000000000 --- a/tests/unit/Tag/TagFriendlyTitleTest.php +++ /dev/null @@ -1,251 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Tag - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class TagFriendlyTitleTest extends UnitTest -{ - /** - * Tests friendlyTitle with string as a parameter and no separator - * - * @author Nikolaos Dimopoulos - * @since 2014-09-11 - */ - public function testFriendlyTitleStringParameterNoSeparator() - { - $this->specify( - "friendlyTitle with string parameter and no separator returns incorrect text", - function () { - Tag::resetInput(); - $options = 'This is a Test'; - $expected = 'this-is-a-test'; - $actual = Tag::friendlyTitle($options); - - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests friendlyTitle with string as a parameter and a separator - * - * @author Nikolaos Dimopoulos - * @since 2014-09-11 - */ - public function testFriendlyTitleStringParameterSeparator() - { - $this->specify( - "friendlyTitle with string parameter and a separator returns incorrect text", - function () { - Tag::resetInput(); - $options = 'This is a Test'; - $expected = 'this_is_a_test'; - $actual = Tag::friendlyTitle($options, '_'); - - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests friendlyTitle with string as a parameter lowercase - * - * @author Nikolaos Dimopoulos - * @since 2014-09-11 - */ - public function testFriendlyTitleStringParameterLowercase() - { - $this->specify( - "friendlyTitle with string parameter lowercase returns incorrect text", - function () { - Tag::resetInput(); - $options = 'This is a Test'; - $expected = 'this_is_a_test'; - $actual = Tag::friendlyTitle($options, '_', true); - - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests friendlyTitle with string as a parameter uppercase - * - * @author Nikolaos Dimopoulos - * @since 2014-09-11 - */ - public function testFriendlyTitleStringParameterUppercase() - { - $this->specify( - "friendlyTitle with string parameter uppercase returns incorrect text", - function () { - Tag::resetInput(); - $options = 'This is a Test'; - $expected = 'This_is_a_Test'; - $actual = Tag::friendlyTitle($options, '_', false); - - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests friendlyTitle with string as a parameter with replace as string - * - * @author Nikolaos Dimopoulos - * @since 2014-09-11 - */ - public function testFriendlyTitleStringParameterReplaceString() - { - $this->specify( - "friendlyTitle with string parameter with replace returns incorrect text", - function () { - Tag::resetInput(); - $options = 'This is a Test'; - $expected = 'th_s_s_a_test'; - $actual = Tag::friendlyTitle($options, '_', true, 'i'); - - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests friendlyTitle with string as a parameter with replace as array - * - * @author Nikolaos Dimopoulos - * @since 2014-09-11 - */ - public function testFriendlyTitleStringParameterReplaceArray() - { - $this->specify( - "friendlyTitle with string parameter with replace array returns incorrect text", - function () { - Tag::resetInput(); - $options = 'This is a Test'; - $expected = 't_s_s_a_test'; - $actual = Tag::friendlyTitle( - $options, - '_', - true, - ['i', 'h'] - ); - - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests friendlyTitle with special characters and escaping - * - * @author Nikolaos Dimopoulos - * @since 2014-09-11 - */ - public function testFriendlyTitleWithSpecialCharactersAndEscaping() - { - $this->specify( - "friendlyTitle with special characters and escaping returns incorrect text", - function () { - Tag::resetInput(); - $options = "Mess'd up --text-- just (to) stress /test/ ?our! " - . "`little` \\clean\\ url fun.ction!?-->"; - $expected = 'messd-up-text-just-to-stress-test-our-little-' - . 'clean-url-function'; - $actual = Tag::friendlyTitle($options); - - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests friendlyTitle with accented characters and replace string - * - * @author Nikolaos Dimopoulos - * @since 2014-09-11 - */ - public function testFriendlyTitleWithAccentedCharactersAndReplaceString() - { - $this->specify( - "friendlyTitle with accented characters and replace string returns incorrect text", - function () { - Tag::resetInput(); - $options = "Perché l'erba è verde?"; - $expected = 'perche-l-erba-e-verde'; - $actual = Tag::friendlyTitle($options, "-", true, "'"); - - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests friendlyTitle with accented characters and replace array - * - * @author Nikolaos Dimopoulos - * @since 2014-09-11 - */ - public function testFriendlyTitleWithAccentedCharactersAndReplaceArray() - { - $this->specify( - "friendlyTitle with accented characters and replace array returns incorrect text", - function () { - Tag::resetInput(); - $options = "Perché l'erba è verde?"; - $expected = 'P_rch_l_rb_v_rd'; - $actual = Tag::friendlyTitle( - $options, - "_", - false, - ['e', 'a'] - ); - - expect($actual)->equals($expected); - } - ); - } - - /** - * Tests friendlyTitle with string as a parameter with replace as boolean - * - * @author Nikolaos Dimopoulos - * @since 2014-09-11 - * - * @expectedException \Phalcon\Tag\Exception - * @expectedExceptionMessage Parameter replace must be an array or a string - */ - public function testFriendlyTitleStringParameterReplaceBoolean() - { - $this->specify( - "friendlyTitle with string parameter with replace array returns incorrect text", - function () { - Tag::resetInput(); - $options = 'This is a Test'; - $expected = 't_s_s_a_test'; - $actual = Tag::friendlyTitle($options, '_', true, true); - - expect($actual)->equals($expected); - } - ); - } -} diff --git a/tests/unit/Tag/TagHiddenFieldTest.php b/tests/unit/Tag/TagHiddenFieldTest.php deleted file mode 100644 index 7c7df5b3f8d..00000000000 --- a/tests/unit/Tag/TagHiddenFieldTest.php +++ /dev/null @@ -1,433 +0,0 @@ - - * @author Nikolaos Dimopoulos - * @package Phalcon\Test\Unit\Tag - * - * The contents of this file are subject to the New BSD License that is - * bundled with this package in the file LICENSE.txt - * - * If you did not receive a copy of the license and are unable to obtain it - * through the world-wide-web, please send an email to license@phalconphp.com - * so that we can send you a copy immediately. - */ -class TagHiddenFieldTest extends UnitTest -{ - /** - * Tests hiddenField with string as a parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testHiddenFieldStringParameter() - { - $this->specify( - "hiddenField with string parameter returns invalid HTML Strict", - function () { - $options = 'x_name'; - $expected = 'tester->testFieldParameter( - 'hiddenField', - $options, - $expected, - false - ); - } - ); - - $this->specify( - "hiddenField with string parameter returns invalid HTML XHTML", - function () { - $options = 'x_name'; - $expected = 'tester->testFieldParameter( - 'hiddenField', - $options, - $expected, - true - ); - } - ); - } - - /** - * Tests hiddenField with array as a parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testHiddenFieldArrayParameter() - { - $this->specify( - "hiddenField with array parameter returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'class' => 'x_class', - ]; - $expected = 'tester->testFieldParameter( - 'hiddenField', - $options, - $expected, - false - ); - } - ); - - $this->specify( - "hiddenField with array parameter returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'class' => 'x_class', - ]; - $expected = 'tester->testFieldParameter( - 'hiddenField', - $options, - $expected, - true - ); - } - ); - } - - /** - * Tests hiddenField with array as a parameters and id in it - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testHiddenFieldArrayParameterWithId() - { - $this->specify( - "hiddenField with array parameter with id returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'id' => 'x_id', - 'class' => 'x_class', - 'size' => '10' - ]; - $expected = 'tester->testFieldParameter( - 'hiddenField', - $options, - $expected, - true - ); - } - ); - - $this->specify( - "hiddenField with array parameter with id returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'id' => 'x_id', - 'class' => 'x_class', - 'size' => '10' - ]; - $expected = 'tester->testFieldParameter( - 'hiddenField', - $options, - $expected, - true - ); - } - ); - } - - /** - * Tests hiddenField with name and no id in parameter - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testHiddenFieldArrayParameterWithNameNoId() - { - $this->specify( - "hiddenField with array parameter with name no id returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'hiddenField', - $options, - $expected, - false - ); - } - ); - - $this->specify( - "hiddenField with array parameter with name no id returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'hiddenField', - $options, - $expected, - false - ); - } - ); - } - - /** - * Tests hiddenField with setDefault - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testHiddenFieldWithSetDefault() - { - $this->specify( - "hiddenField with setDefault returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'hiddenField', - $options, - $expected, - false, - 'setDefault' - ); - } - ); - - $this->specify( - "hiddenField with setDefault returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'hiddenField', - $options, - $expected, - true, - 'setDefault' - ); - } - ); - } - - /** - * Tests hiddenField with displayTo - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testHiddenFieldWithDisplayTo() - { - $this->specify( - "hiddenField with displayTo returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'hiddenField', - $options, - $expected, - false, - 'displayTo' - ); - } - ); - - $this->specify( - "hiddenField with displayTo returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'hiddenField', - $options, - $expected, - true, - 'displayTo' - ); - } - ); - } - - /** - * Tests hiddenField with setDefault and element not present - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testHiddenFieldWithSetDefaultElementNotPresent() - { - $this->specify( - "hiddenField with setDefault and element not present returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'hiddenField', - $options, - $expected, - false, - 'setDefault' - ); - } - ); - - $this->specify( - "hiddenField with setDefault and element not present returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'hiddenField', - $options, - $expected, - true, - 'setDefault' - ); - } - ); - } - - /** - * Tests hiddenField with displayTo and element not present - * - * @author Nikolaos Dimopoulos - * @since 2014-09-05 - */ - public function testHiddenFieldWithDisplayToElementNotPresent() - { - $this->specify( - "hiddenField with displayTo and element not present returns invalid HTML Strict", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'hiddenField', - $options, - $expected, - false, - 'displayTo' - ); - } - ); - - $this->specify( - "hiddenField with displayTo and element not present returns invalid HTML XHTML", - function () { - $options = [ - 'x_name', - 'name' => 'x_other', - 'class' => 'x_class', - 'size' => '10', - ]; - $expected = 'tester->testFieldParameter( - 'hiddenField', - $options, - $expected, - true, - 'displayTo' - ); - } - ); - } -} diff --git a/tests/unit/Tag/TagHtmlCest.php b/tests/unit/Tag/TagHtmlCest.php new file mode 100644 index 00000000000..b0edafa4edc --- /dev/null +++ b/tests/unit/Tag/TagHtmlCest.php @@ -0,0 +1,180 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +namespace Phalcon\Test\Unit\Tag; + +use Phalcon\Tag; +use Phalcon\Test\Fixtures\Helpers\TagSetup; +use UnitTester; + +class TagHtmlCest extends TagSetup +{ + /** + * Tests Phalcon\Tag :: tagHtml() - name parameter + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2014-09-05 + */ + public function tagTagHtmlName(UnitTester $I) + { + $I->wantToTest("Tag - tagHtml() - name parameter"); + Tag::resetInput(); + $name = 'aside'; + $expected = '